From afe038a7fd1e763d34a8a77c805dab49ce7a79f4 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Wed, 15 Nov 2023 16:54:41 -0500 Subject: [PATCH 001/155] added symmetric hohlraum. Changed the way neumann cells work. ALl old test cases are now broken --- ...e_structured_symmterichohlraum_2d_mesh.py} | 36 +-- include/common/globalconstants.hpp | 6 +- include/problems/problembase.hpp | 5 + include/problems/symmetrichohlraum.hpp | 37 +++ src/common/mesh.cpp | 51 ---- src/problems/problembase.cpp | 11 + src/problems/symmetrichohlraum.cpp | 236 ++++++++++++++++++ src/solvers/snsolver.cpp | 6 +- 8 files changed, 316 insertions(+), 72 deletions(-) rename examples/meshes/{create_structured_hohlraum_2d_mesh.py => create_structured_symmterichohlraum_2d_mesh.py} (73%) create mode 100644 include/problems/symmetrichohlraum.hpp create mode 100644 src/problems/symmetrichohlraum.cpp diff --git a/examples/meshes/create_structured_hohlraum_2d_mesh.py b/examples/meshes/create_structured_symmterichohlraum_2d_mesh.py similarity index 73% rename from examples/meshes/create_structured_hohlraum_2d_mesh.py rename to examples/meshes/create_structured_symmterichohlraum_2d_mesh.py index 5decf507..a49008a9 100644 --- a/examples/meshes/create_structured_hohlraum_2d_mesh.py +++ b/examples/meshes/create_structured_symmterichohlraum_2d_mesh.py @@ -23,9 +23,9 @@ def main(): parser = OptionParser() parser.add_option("-o", "--output_name", dest="output_name", default="struct_2dmesh") parser.add_option("-c", "--char_length", dest="char_length", default=0.01) - parser.add_option("-s", "--start_pt", dest="start_pt", nargs=2, default=(0,0)) - parser.add_option("-l", "--length", dest="length", nargs=2, default=(1,1)) - parser.add_option("-b", "--boundary", dest="b_type", default="void") + parser.add_option("-s", "--start_pt", dest="start_pt", nargs=2, default=(-0.65,-0.65)) + parser.add_option("-l", "--length", dest="length", nargs=2, default=(1.3,1.3)) + parser.add_option("-b", "--boundary", dest="b_type", default="dirichletNeumann") (options, args) = parser.parse_args() options.output_name = str(options.output_name) @@ -56,20 +56,22 @@ def main(): geom.add_physical(void, label="void") elif options.b_type == "dirichletNeumann": - dirichlet = list() - wall_low = list() - wall_up = list() - wall_low.append(domain.lines[0]) - wall_up.append(domain.lines[2]) - - dirichlet.append(domain.lines[1]) - dirichlet.append(domain.lines[3]) - - geom.add_physical(dirichlet, label="dirichlet") - geom.add_physical(wall_low, label="wall_low") - geom.add_physical(wall_up, label="wall_up") - print("| Neumann marker has tag wall_low and wall_up") - print("| Dirichlet marker has tag dirichlet") + dirichlet_wall_up = list() + dirichlet_wall_low = list() + neumann_wall_left = list() + neumann_wall_right = list() + dirichlet_wall_low.append(domain.lines[0]) + dirichlet_wall_up.append(domain.lines[2]) + + neumann_wall_left.append(domain.lines[1]) + neumann_wall_right.append(domain.lines[3]) + + geom.add_physical(dirichlet_wall_up, label="dirichlet_wall_low") + geom.add_physical(dirichlet_wall_low, label="dirichlet_wall_up") + geom.add_physical(neumann_wall_left, label="neumann_wall_left") + geom.add_physical(neumann_wall_right, label="neumann_wall_right") + print("| Neumann marker has tag neumann_wall_left and neumann_wall_right") + print("| Dirichlet marker has tag dirichlet_wall_up and dirichlet_wall_low") else: print("Boundary condition not yet implemented") diff --git a/include/common/globalconstants.hpp b/include/common/globalconstants.hpp index 1c7dd338..971cd98b 100644 --- a/include/common/globalconstants.hpp +++ b/include/common/globalconstants.hpp @@ -102,7 +102,8 @@ enum PROBLEM_NAME { PROBLEM_RadiationCT, PROBLEM_Meltingcube, PROBLEM_Meltingcube1D, - PROBLEM_Hohlraum + PROBLEM_Hohlraum, + PROBLEM_SymmetricHohlraum }; inline std::map Problem_Map{ { "LINESOURCE", PROBLEM_Linesource }, @@ -116,7 +117,8 @@ inline std::map Problem_Map{ { "LINESOURCE", PROBLEM_ { "RADIATIONCT", PROBLEM_RadiationCT }, { "MELTINGCUBE", PROBLEM_Meltingcube }, { "MELTINGCUBE_1D", PROBLEM_Meltingcube1D }, - { "HOHLRAUM", PROBLEM_Hohlraum } }; + { "HOHLRAUM", PROBLEM_Hohlraum }, + { "SYMMETRIC_HOHLRAUM", PROBLEM_SymmetricHohlraum} }; // Kernel name enum KERNEL_NAME { KERNEL_Isotropic, KERNEL_Isotropic1D }; diff --git a/include/problems/problembase.hpp b/include/problems/problembase.hpp index ba42cd41..6f7d6b0b 100644 --- a/include/problems/problembase.hpp +++ b/include/problems/problembase.hpp @@ -85,6 +85,11 @@ class ProblemBase */ virtual VectorVector SetupIC() = 0; + /** + * @brief Returns the Dirichlet Boundary value for given cell index + */ + virtual Vector GetGhostCellValue(int idx_cell); + /*! @brief Exact analytical solution for the Line Source Test Case. Returns 0 for all other test cases. @return exact solution at x,y,t,scatteringXS */ // Default is set to 0. ~> if no analytical solution is available. diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp new file mode 100644 index 00000000..ef9028a0 --- /dev/null +++ b/include/problems/symmetrichohlraum.hpp @@ -0,0 +1,37 @@ +#ifndef SYMMETRIC_HOHLRAUM_H +#define SYMMETRIC_HOHLRAUM_H + +#include "problems/problembase.hpp" + +class SymmetricHohlraum : public ProblemBase +{ + private: + SymmetricHohlraum() = delete; + Vector _scatteringXS; /*!< @brief Vector of scattering crosssections */ + Vector _totalXS; /*!< @brief Vector of total crosssections */ + std::map _ghostCells; /*!< @brief Vector of ghost cells for boundary conditions */ + void SetGhostCells(); /*!< @brief Sets vector of ghost cells for boundary conditions */ + + public: + SymmetricHohlraum( Config* settings, Mesh* mesh ); + virtual ~SymmetricHohlraum(); + virtual std::vector GetExternalSource( const Vector& energies ) override; + virtual VectorVector SetupIC() override; + VectorVector GetScatteringXS( const Vector& energies ) override final; + VectorVector GetTotalXS( const Vector& energies ) override final; + Vector GetGhostCellValue(int idx_cell) override final; +}; + +class SymmetricHohlraum_Moment : public SymmetricHohlraum +{ + private: + SymmetricHohlraum_Moment() = delete; + + public: + SymmetricHohlraum_Moment( Config* settings, Mesh* mesh ); + ~SymmetricHohlraum_Moment(); + std::vector GetExternalSource( const Vector& energies ) override final; + VectorVector SetupIC() override final; +}; + +#endif // SYMMETRIC_HOHLRAUM_H diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 1e43d967..250bb4ba 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -332,63 +332,12 @@ void Mesh::ComputeLimiter( std::cout << "r <0.0 \n"; // if this happens there is a bug or a deformend mesh } localLimiter[idx_nbr] = std::min( r, 1.0 ); // LimiterBarthJespersen( r ); - // double epsVenka = ( 1 * sqrt( _cellAreas[idx_cell] ) ); - // epsVenka = epsVenka * epsVenka * epsVenka; - // double dMax = maxSol - sol[idx_cell][idx_sys]; - // double dMin = minSol - sol[idx_cell][idx_sys]; - //// venkat limiter - // if( gaussPt > 0.0 ) { - // localLimiter[idx_nbr] = ( 1 / gaussPt ) * ( ( dMax * dMax + epsVenka * epsVenka ) * gaussPt + 2 * gaussPt * gaussPt * dMax ) / - // ( dMax * dMax + 2 * gaussPt * gaussPt + dMax * gaussPt + epsVenka * epsVenka ); - //} - // else if( gaussPt < 0.0 ) { - // localLimiter[idx_nbr] = ( 1 / gaussPt ) * ( ( dMin * dMin + epsVenka * epsVenka ) * gaussPt + 2 * gaussPt * gaussPt * dMin ) / - // ( dMin * dMin + 2 * gaussPt * gaussPt + dMin * gaussPt + epsVenka * epsVenka ); - //} - // else { - // localLimiter[idx_nbr] = 1.0; - //} } // get smallest limiter limiter[idx_cell][idx_sys] = localLimiter[0]; for( unsigned idx_nbr = 0; idx_nbr < _cellNeighbors[idx_cell].size(); idx_nbr++ ) { if( localLimiter[idx_nbr] < limiter[idx_cell][idx_sys] ) limiter[idx_cell][idx_sys] = localLimiter[idx_nbr]; } - // check maximum principle - // for( unsigned idx_nbr = 0; idx_nbr < _cellNeighbors[idx_cell].size(); idx_nbr++ ) { - // double currLim = limiter[idx_cell][idx_sys]; - // // double dy = solDy[idx_cell][idx_sys]; - // // double dx = solDx[idx_cell][idx_sys]; - // // double rijx = _cellInterfaceMidPoints[idx_cell][idx_nbr][0]; - // // double rijy = _cellInterfaceMidPoints[idx_cell][idx_nbr][1]; - // // double cmx = _cellMidPoints[idx_cell][0]; - // // double cmy = _cellMidPoints[idx_cell][1]; - // // double curSol = sol[idx_cell][idx_sys]; - // double gaussPt = solDx[idx_cell][idx_sys] * ( _cellInterfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + - // solDy[idx_cell][idx_sys] * ( _cellInterfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ); - - // double psiL = sol[idx_cell][idx_sys] + currLim * gaussPt; - // // double psiL2 = curSol + currLim * ( dx * ( rijx - cmx ) + dy * ( rijy - cmy ) ); - - // if( psiL > maxSol ) { - // // std::cout << "max principle hurt\n"; - // // gaussPt = solDx[idx_cell][idx_sys] * ( _nodes[_cells[idx_cell][idx_nbr]][0] - _cellMidPoints[idx_cell][0] ) + - // // solDy[idx_cell][idx_sys] * ( _nodes[_cells[idx_cell][idx_nbr]][1] - _cellMidPoints[idx_cell][1] ); - // // std::cout << "gaussPt" << gaussPt << "\n"; - // // std::cout << "enumMax" << maxSol - sol[idx_cell][idx_sys] << "\n"; - // // std::cout << "enumMin" << minSol - sol[idx_cell][idx_sys] << "\n"; - // // std::cout << "minSol" << minSol << "psiL" << psiL << "maxSol" << maxSol << "\n"; - // // limiter[idx_cell][idx_sys] = 0.0; - // } - // if( psiL < minSol ) { - // // std::cout << "min principle hurt\n"; - // // std::cout << "gaussPt" << gaussPt << "\n"; - // // std::cout << "enumMax" << maxSol - sol[idx_cell][idx_sys] << "\n"; - // // std::cout << "enumMin" << minSol - sol[idx_cell][idx_sys] << "\n"; - // // std::cout << "minSol" << minSol << "psiL" << psiL << "maxSol" << maxSol << "\n"; - // // limiter[idx_cell][idx_sys] = 0.0; - // } - //} } } } diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index e570329d..86cc3ffe 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -3,6 +3,7 @@ #include "problems/aircavity1d.hpp" #include "problems/checkerboard.hpp" #include "problems/hohlraum.hpp" +#include "problems/symmetrichohlraum.hpp" #include "problems/linesource.hpp" #include "problems/meltingcube.hpp" #include "problems/phantomimage.hpp" @@ -82,6 +83,12 @@ ProblemBase* ProblemBase::Create( Config* settings, Mesh* mesh ) { else return new Hohlraum( settings, mesh ); } break; + case PROBLEM_SymmetricHohlraum: { + if( settings->GetIsMomentSolver() ) + return new SymmetricHohlraum_Moment( settings, mesh ); + else + return new SymmetricHohlraum( settings, mesh ); + } break; default: ErrorMessages::Error( "No valid physical problem chosen. Please check your config file", CURRENT_FUNCTION ); return nullptr; } @@ -101,3 +108,7 @@ Vector ProblemBase::GetStoppingPower( const Vector& /* energies */ ) { ErrorMessages::Error( "Not yet implemented", CURRENT_FUNCTION ); return Vector( 1, -1.0 ); } + +Vector ProblemBase::GetGhostCellValue(int idx_cell){ + return Vector(1u, 0.0); +} diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp new file mode 100644 index 00000000..4f2cc6db --- /dev/null +++ b/src/problems/symmetrichohlraum.cpp @@ -0,0 +1,236 @@ +#include "problems/symmetrichohlraum.hpp" +#include "common/config.hpp" +#include "common/io.hpp" +#include "common/mesh.hpp" +#include "quadratures/qgausslegendretensorized.hpp" +#include "quadratures/quadraturebase.hpp" +#include "solvers/csdpn_starmap_constants.hpp" +#include "toolboxes/errormessages.hpp" +#include "toolboxes/interpolation.hpp" +#include "toolboxes/textprocessingtoolbox.hpp" +#include "velocitybasis/sphericalbase.hpp" +#include "velocitybasis/sphericalharmonics.hpp" + +SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { + _scatteringXS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default + _totalXS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default + +#pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { + // Assumption: Domain size is 1.3x1.3 + double x = _mesh->GetCellMidPoints()[idx_cell][0]; + double y = _mesh->GetCellMidPoints()[idx_cell][1]; + + // red area left + if( x < -0.6 && y > -0.4 && y < 0.4 ) { + _scatteringXS[idx_cell] = 95.0; + _totalXS[idx_cell] = 100.0; + } + // red area right + if( x > 0.6 && y > -0.4 && y < 0.4 ) { + _scatteringXS[idx_cell] = 95.0; + _totalXS[idx_cell] = 100.0; + } + // green area 1 (lower boundary) + if( x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35 ) { + _scatteringXS[idx_cell] = 90.0; + _totalXS[idx_cell] = 100.0; + } + // green area 2 (upper boundary) + if( x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35 ) { + _scatteringXS[idx_cell] = 90.0; + _totalXS[idx_cell] = 100.0; + } + // green area 3 (left boundary) + if( x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35 ) { + _scatteringXS[idx_cell] = 90.0; + _totalXS[idx_cell] = 100.0; + } + // green area 4 (right boundary) + if(x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4 ) { + _scatteringXS[idx_cell] = 90.0; + _totalXS[idx_cell] = 100.0; + } + // blue checkered area + if( x > -0.15 && x < 0.15 && y > -0.35 && y < 0.35 ) { + _scatteringXS[idx_cell] = 50.0; + _totalXS[idx_cell] = 100.0; + } + // black area (upper and lower boundary) + if( y > 0.6 || y < -0.6 ) { + _scatteringXS[idx_cell] = 0.0; + _totalXS[idx_cell] = 100.0; + } + } + SetGhostCells(); +} + +SymmetricHohlraum::~SymmetricHohlraum() {} + +std::vector SymmetricHohlraum::GetExternalSource( const Vector& energies ) { + VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); + return std::vector( 1u, Q ); +} + +VectorVector SymmetricHohlraum::SetupIC() { + VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-10 ) ); + VectorVector cellMids = _mesh->GetCellMidPoints(); + + for( unsigned j = 0; j < cellMids.size(); ++j ) { + psi[j] = 1e-4; // zero initial condition + } + return psi; +} + +void SymmetricHohlraum::SetGhostCells(){ + // Loop over all cells. If its a Dirichlet boundary, add cell to dict with {cell_idx, boundary_value} + auto cellBoundaries = _mesh->GetBoundaryTypes(); + std::map ghostCellMap; + + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector vq = quad->GetPoints(); + unsigned nq = quad->GetNq(); + + Vector left_inflow(nq, 0.0); + Vector right_inflow(nq, 0.0); + Vector vertical_flow(nq, 0.0); + + for(unsigned idx_q = 0; idx_q < nq; idx_q++){ + if (vq[idx_q][0] > 0.0) left_inflow[idx_q] = 1.0; + if (vq[idx_q][0] < 0.0) right_inflow[idx_q] = 1.0; + } + + for (unsigned idx_cell =0; idx_cell<_mesh->GetNumCells(); idx_cell ++){ + double x = _mesh->GetCellMidPoints()[idx_cell][0]; + double y = _mesh->GetCellMidPoints()[idx_cell][1]; + + if (cellBoundaries[idx_cell]== BOUNDARY_TYPE::NEUMANN){ + if (y < -0.6) ghostCellMap.insert({idx_cell, vertical_flow}); + else if (y > 0.6) ghostCellMap.insert({idx_cell, vertical_flow}); + else if (x < -0.6) ghostCellMap.insert({idx_cell, left_inflow}); + else if (x > 0.6) ghostCellMap.insert({idx_cell, right_inflow}); + } + } + _ghostCells = ghostCellMap; + + delete quad; +} + +Vector SymmetricHohlraum::GetGhostCellValue(int idx_cell){ + return _ghostCells[idx_cell]; +} + +VectorVector SymmetricHohlraum::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } + +VectorVector SymmetricHohlraum::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } + +SymmetricHohlraum_Moment::SymmetricHohlraum_Moment( Config* settings, Mesh* mesh ) : SymmetricHohlraum( settings, mesh ) {} + +SymmetricHohlraum_Moment::~SymmetricHohlraum_Moment() {} + +std::vector SymmetricHohlraum_Moment::GetExternalSource( const Vector& energies ) { + // In case of PN, spherical basis is per default SPHERICAL_HARMONICS + + double integrationFactor = ( 4 * M_PI ); + if( _settings->GetDim() == 2 ) { + integrationFactor = M_PI; + } + SphericalBase* tempBase = SphericalBase::Create( _settings ); + unsigned ntotalEquations = tempBase->GetBasisSize(); + + VectorVector Q( _mesh->GetNumCells(), Vector( ntotalEquations, 0.0 ) ); // zero could lead to problems? + VectorVector cellMids = _mesh->GetCellMidPoints(); + + Vector uIC( ntotalEquations, 0 ); + + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS || _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS_ROTATED ) { + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector quadPointsSphere = quad->GetPointsSphere(); + Vector w = quad->GetWeights(); + + double my, phi; + VectorVector moments = VectorVector( quad->GetNq(), Vector( tempBase->GetBasisSize(), 0.0 ) ); + + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + my = quadPointsSphere[idx_quad][0]; + phi = quadPointsSphere[idx_quad][1]; + moments[idx_quad] = tempBase->ComputeSphericalBasis( my, phi ); + } + // Integrate <1*m> to get factors for monomial basis in isotropic scattering + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + uIC += w[idx_quad] * moments[idx_quad]; + } + delete quad; + } + double kinetic_density = 0.0; //_settings->GetSourceMagnitude(); + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( cellMids[j][0] < 0.05 ) { + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS || _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS_ROTATED ) { + Q[j] = kinetic_density * uIC / uIC[0] / integrationFactor; // Remember scaling + } + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + Q[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) + } + } + } + delete tempBase; // Only temporally needed + return std::vector( 1u, Q ); +} + +VectorVector SymmetricHohlraum_Moment::SetupIC() { + double integrationFactor = ( 4 * M_PI ); + if( _settings->GetDim() == 2 ) { + integrationFactor = M_PI; + } + // In case of PN, spherical basis is per default SPHERICAL_HARMONICS + SphericalBase* tempBase = SphericalBase::Create( _settings ); + unsigned ntotalEquations = tempBase->GetBasisSize(); + + VectorVector initialSolution( _mesh->GetNumCells(), Vector( ntotalEquations, 0 ) ); // zero could lead to problems? + VectorVector cellMids = _mesh->GetCellMidPoints(); + + Vector tempIC( ntotalEquations, 0 ); + + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS || _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS_ROTATED ) { + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector quadPointsSphere = quad->GetPointsSphere(); + Vector w = quad->GetWeights(); + + double my, phi; + VectorVector moments = VectorVector( quad->GetNq(), Vector( tempBase->GetBasisSize(), 0.0 ) ); + + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + my = quadPointsSphere[idx_quad][0]; + phi = quadPointsSphere[idx_quad][1]; + moments[idx_quad] = tempBase->ComputeSphericalBasis( my, phi ); + } + // Integrate <1*m> to get factors for monomial basis in isotropic scattering + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + tempIC += w[idx_quad] * moments[idx_quad]; + } + delete quad; + } + // Initial condition is dirac impulse at (x,y) = (0,0) ==> constant in angle ==> all moments - exept first - are zero. + double kinetic_density = 1e-4; + // std::vector _boundaryCells; + for( unsigned j = 0; j < cellMids.size(); ++j ) { + + // boundary condition: Source on left side + if( cellMids[j][0] < 0.0 && ( cellMids[j][1] > 0.0 && cellMids[j][1] < 1.3 ) ) { // test case uses ghost cells + kinetic_density = _settings->GetSourceMagnitude(); + _mesh->SetBoundaryType( j, DIRICHLET ); + } + else { + kinetic_density = 1e-4; + } + + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS || _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS_ROTATED ) { + initialSolution[j] = kinetic_density * tempIC / tempIC[0] / integrationFactor; // Remember scaling + } + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + initialSolution[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) + } + } + delete tempBase; // Only temporally needed + return initialSolution; +} diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index fe8bb7de..a160bc6a 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -131,9 +131,11 @@ void SNSolver::FluxUpdatePseudo2D() { // Loop over all neighbor cells (edges) of cell j and compute numerical fluxes for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { // store flux contribution on psiNew_sigmaS to save memory - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ){ + //std::cout << "here\n" ; _solNew[idx_cell][idx_quad] += - _g->Flux( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _sol[idx_cell][idx_quad], _normals[idx_cell][idx_nbr] ); + _g->Flux( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _problem->GetGhostCellValue(idx_cell)[idx_quad], _normals[idx_cell][idx_nbr] ); + } else { unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell From d546b94bbe07d9f299e41984b8a20def4210d563 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Thu, 16 Nov 2023 14:47:28 -0500 Subject: [PATCH 002/155] created lattice test case and mesh generator --- .../create_lattice_mesh_unstructured.py | 50 ++++ examples/meshes/create_structured_2dmesh.py | 2 +- include/common/globalconstants.hpp | 6 +- include/problems/lattice.hpp | 61 +++++ include/problems/problembase.hpp | 2 +- include/problems/symmetrichohlraum.hpp | 2 +- src/problems/lattice.cpp | 213 ++++++++++++++++++ src/problems/problembase.cpp | 11 +- src/problems/symmetrichohlraum.cpp | 2 +- src/solvers/snsolver.cpp | 2 +- 10 files changed, 342 insertions(+), 9 deletions(-) create mode 100644 examples/meshes/create_lattice_mesh_unstructured.py create mode 100644 include/problems/lattice.hpp create mode 100644 src/problems/lattice.cpp diff --git a/examples/meshes/create_lattice_mesh_unstructured.py b/examples/meshes/create_lattice_mesh_unstructured.py new file mode 100644 index 00000000..032de31b --- /dev/null +++ b/examples/meshes/create_lattice_mesh_unstructured.py @@ -0,0 +1,50 @@ +import pygmsh as pg +import numpy as np +import itertools +import os +from optparse import OptionParser + + +def add_block(x0,y0,length,char_length,geom): + coords = np.array([ + [x0, y0, 0.0], + [x0+length, y0, 0.0], + [x0+length, y0+length, 0.0], + [x0, y0+length, 0.0] + ]) + return geom.add_polygon(coords, char_length) + + + +def main(): + print("---------- Start Creating the mesh ------------") + print("Parsing options") + # --- parse options --- + parser = OptionParser() + parser.add_option("-o", "--output_name", dest="output_name", default="lattice_unstructured") + parser.add_option("-c", "--char_length", dest="char_length", default= 0.075) + (options, args) = parser.parse_args() + + options.output_name = str(options.output_name) + options.char_length = float(options.char_length) + char_length = options.char_length + geom = pg.opencascade.Geometry() + domain = add_block(-3.5, -3.5, 7, char_length, geom) + xpos = ypos = [1-3.5, 2-3.5, 3-3.5, 4-3.5, 5-3.5] + pattern = list(itertools.product(xpos, ypos))[::2] + pattern.pop(7) + boxes = [domain] + for pos in pattern: + boxes.append(add_block(pos[0], pos[1], 1, char_length, geom)) + geom.boolean_fragments(boxes,[]) + geom.add_physical(domain.lines, label="void") + + mesh_code = geom.get_code() + with open( options.output_name +".geo","w") as mesh_file: + mesh_file.write(mesh_code) + os.system('gmsh ' + options.output_name +'.geo -2 -format su2 -save_all') + os.system('rm ' + options.output_name +'.geo') + print("---------- Successfully created the mesh ------------") + +if __name__ == '__main__': + main() diff --git a/examples/meshes/create_structured_2dmesh.py b/examples/meshes/create_structured_2dmesh.py index 969f1089..5decf507 100644 --- a/examples/meshes/create_structured_2dmesh.py +++ b/examples/meshes/create_structured_2dmesh.py @@ -25,7 +25,7 @@ def main(): parser.add_option("-c", "--char_length", dest="char_length", default=0.01) parser.add_option("-s", "--start_pt", dest="start_pt", nargs=2, default=(0,0)) parser.add_option("-l", "--length", dest="length", nargs=2, default=(1,1)) - parser.add_option("-b", "--boundary", dest="b_type", default="dirichletNeumann") + parser.add_option("-b", "--boundary", dest="b_type", default="void") (options, args) = parser.parse_args() options.output_name = str(options.output_name) diff --git a/include/common/globalconstants.hpp b/include/common/globalconstants.hpp index 971cd98b..7117ec7e 100644 --- a/include/common/globalconstants.hpp +++ b/include/common/globalconstants.hpp @@ -103,7 +103,8 @@ enum PROBLEM_NAME { PROBLEM_Meltingcube, PROBLEM_Meltingcube1D, PROBLEM_Hohlraum, - PROBLEM_SymmetricHohlraum + PROBLEM_SymmetricHohlraum, + PROBLEM_Lattice }; inline std::map Problem_Map{ { "LINESOURCE", PROBLEM_Linesource }, @@ -118,7 +119,8 @@ inline std::map Problem_Map{ { "LINESOURCE", PROBLEM_ { "MELTINGCUBE", PROBLEM_Meltingcube }, { "MELTINGCUBE_1D", PROBLEM_Meltingcube1D }, { "HOHLRAUM", PROBLEM_Hohlraum }, - { "SYMMETRIC_HOHLRAUM", PROBLEM_SymmetricHohlraum} }; + { "SYMMETRIC_HOHLRAUM", PROBLEM_SymmetricHohlraum}, + { "LATTICE", PROBLEM_Lattice} }; // Kernel name enum KERNEL_NAME { KERNEL_Isotropic, KERNEL_Isotropic1D }; diff --git a/include/problems/lattice.hpp b/include/problems/lattice.hpp new file mode 100644 index 00000000..fde68bbd --- /dev/null +++ b/include/problems/lattice.hpp @@ -0,0 +1,61 @@ +#ifndef LATTICE_H +#define LATTICE_H + +#include "problembase.hpp" + +class SphericalBase; + +class Lattice_SN : public ProblemBase +{ + private: + Vector _scatteringXS; /*!< @brief Vector of scattering crosssections */ + Vector _totalXS; /*!< @brief Vector of total crosssections */ + + Lattice_SN() = delete; + + bool isAbsorption( const Vector& pos ) const; /*!< @return True if pos is in absorption region, False otherwise */ + bool isSource( const Vector& pos ) const; /*!< @return True if pos is in source region, False otherwise */ + + public: + Lattice_SN( Config* settings, Mesh* mesh ); + virtual ~Lattice_SN(); + + virtual VectorVector GetScatteringXS( const Vector& energies ) override; + virtual VectorVector GetTotalXS( const Vector& energies ) override; + virtual std::vector GetExternalSource( const Vector& energies ) override; + virtual VectorVector SetupIC() override; +}; + +class Lattice_Moment : public ProblemBase +{ + private: + Vector _scatteringXS; /*!< @brief Vector of scattering crosssections len: numCells */ + Vector _totalXS; /*!< @brief Vector of total crosssections. len: numCells*/ + + Lattice_Moment() = delete; + + bool isAbsorption( const Vector& pos ) const; /*!< @return True if pos is in absorption region, False otherwise */ + bool isSource( const Vector& pos ) const; /*!< @return True if pos is in source region, False otherwise */ + + /*! + * @brief Gets the global index for given order l of Legendre polynomials and given + * order k of Legendre functions. + * Note: This is code doubling from PNSolver::GlobalIndex + * @param l order of Legendre polynomial + * @param k order of Legendre function + * @returns globalIndex + */ + int GlobalIndex( int l, int k ) const; + + public: + Lattice_Moment( Config* settings, Mesh* mesh ); + virtual ~Lattice_Moment(); + + virtual VectorVector GetScatteringXS( const Vector& energies ) override; + virtual VectorVector GetTotalXS( const Vector& energies ) override; + virtual std::vector GetExternalSource( const Vector& energies ) override; + virtual VectorVector SetupIC() override; +}; + + +#endif // LATTICE_H diff --git a/include/problems/problembase.hpp b/include/problems/problembase.hpp index 6f7d6b0b..f964c5fc 100644 --- a/include/problems/problembase.hpp +++ b/include/problems/problembase.hpp @@ -88,7 +88,7 @@ class ProblemBase /** * @brief Returns the Dirichlet Boundary value for given cell index */ - virtual Vector GetGhostCellValue(int idx_cell); + virtual Vector GetGhostCellValue(int idx_cell, const Vector& cell_sol); /*! @brief Exact analytical solution for the Line Source Test Case. Returns 0 for all other test cases. @return exact solution at x,y,t,scatteringXS diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp index ef9028a0..768e5bff 100644 --- a/include/problems/symmetrichohlraum.hpp +++ b/include/problems/symmetrichohlraum.hpp @@ -19,7 +19,7 @@ class SymmetricHohlraum : public ProblemBase virtual VectorVector SetupIC() override; VectorVector GetScatteringXS( const Vector& energies ) override final; VectorVector GetTotalXS( const Vector& energies ) override final; - Vector GetGhostCellValue(int idx_cell) override final; + Vector GetGhostCellValue(int idx_cell, const Vector& cell_sol) override final; }; class SymmetricHohlraum_Moment : public SymmetricHohlraum diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp new file mode 100644 index 00000000..0cd4913b --- /dev/null +++ b/src/problems/lattice.cpp @@ -0,0 +1,213 @@ +#include "problems/lattice.hpp" +#include "common/config.hpp" +#include "common/mesh.hpp" +#include "quadratures/quadraturebase.hpp" +#include "toolboxes/textprocessingtoolbox.hpp" +#include "velocitybasis/sphericalbase.hpp" +#include "velocitybasis/sphericalharmonics.hpp" + +// ---- Checkerboard Sn ---- +// Constructor for Ckeckerboard case with Sn +Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { + + // Initialise crosssections to 1 + _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); + _totalXS = Vector( _mesh->GetNumCells(), 1.0 ); + + // For absorption cells: set scattering XS to 0 and absorption to 10 + auto cellMids = _mesh->GetCellMidPoints(); + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( isAbsorption( cellMids[j] ) ) { + _scatteringXS[j] = 0.0; + _totalXS[j] = 10.0; + } + } +} + +Lattice_SN::~Lattice_SN() {} + +VectorVector Lattice_SN::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } + +VectorVector Lattice_SN::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } + +std::vector Lattice_SN::GetExternalSource( const Vector& /*energies*/ ) { + VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); + auto cellMids = _mesh->GetCellMidPoints(); + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( isSource( cellMids[j] ) ) Q[j] = _settings->GetSourceMagnitude(); // isotropic source + } + return std::vector( 1u, Q ); +} + +VectorVector Lattice_SN::SetupIC() { + VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-10 ) ); + return psi; +} + +bool Lattice_SN::isAbsorption( const Vector& pos ) const { + // Check whether pos is inside absorbing squares + double xy_corrector =-3.5; + std::vector lbounds{ 1+xy_corrector, 2+xy_corrector, 3+xy_corrector, 4+xy_corrector, 5+xy_corrector }; + std::vector ubounds{ 2+xy_corrector, 3+xy_corrector, 4+xy_corrector, 5+xy_corrector, 6+xy_corrector }; + for( unsigned k = 0; k < lbounds.size(); ++k ) { + for( unsigned l = 0; l < lbounds.size(); ++l ) { + if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; + if( pos[0] >= lbounds[k] && pos[0] <= ubounds[k] && pos[1] >= lbounds[l] && pos[1] <= ubounds[l] ) { + return true; + } + } + } + return false; +} + +bool Lattice_SN::isSource( const Vector& pos ) const { + // Check whether pos is part of source region + if( pos[0] >= 3-3.5 && pos[0] <= 4-3.5 && pos[1] >= 3-3.5 && pos[1] <= 4-3.5 ) + return true; + else + return false; +} + +// ---- Checkerboard Moments ---- + +// Constructor for checkerboard case with Pn +Lattice_Moment::Lattice_Moment( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { + + // Initialise crosssections = 1 (scattering) + _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); + _totalXS = Vector( _mesh->GetNumCells(), 1.0 ); + + // for absorption regions change crosssections to all absorption + auto cellMids = _mesh->GetCellMidPoints(); + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( isAbsorption( cellMids[j] ) ) { + _scatteringXS[j] = 0.0; + _totalXS[j] = 10.0; + } + } +} + +Lattice_Moment::~Lattice_Moment() {} + +VectorVector Lattice_Moment::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } + +VectorVector Lattice_Moment::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } + +std::vector Lattice_Moment::GetExternalSource( const Vector& /*energies*/ ) { + // In case of PN, spherical basis is per default SPHERICAL_HARMONICS + + double integrationFactor = ( 4 * M_PI ); + if( _settings->GetDim() == 2 ) { + integrationFactor = M_PI; + } + SphericalBase* tempBase = SphericalBase::Create( _settings ); + unsigned ntotalEquations = tempBase->GetBasisSize(); + + VectorVector Q( _mesh->GetNumCells(), Vector( ntotalEquations, 0.0 ) ); // zero could lead to problems? + VectorVector cellMids = _mesh->GetCellMidPoints(); + + Vector uIC( ntotalEquations, 0 ); + + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector quadPointsSphere = quad->GetPointsSphere(); + Vector w = quad->GetWeights(); + + double my, phi; + VectorVector moments = VectorVector( quad->GetNq(), Vector( tempBase->GetBasisSize(), 0.0 ) ); + + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + my = quadPointsSphere[idx_quad][0]; + phi = quadPointsSphere[idx_quad][1]; + moments[idx_quad] = tempBase->ComputeSphericalBasis( my, phi ); + } + // Integrate <1*m> to get factors for monomial basis in isotropic scattering + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + uIC += w[idx_quad] * moments[idx_quad]; + } + delete quad; + } + double kinetic_density = _settings->GetSourceMagnitude(); + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( isSource( cellMids[j] ) ) { + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { + Q[j] = kinetic_density * uIC / uIC[0] / integrationFactor; // Remember scaling + } + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + Q[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) + } + } + } + delete tempBase; // Only temporally needed + return std::vector( 1u, Q ); +} + +VectorVector Lattice_Moment::SetupIC() { + double integrationFactor = ( 4 * M_PI ); + if( _settings->GetDim() == 2 ) { + integrationFactor = M_PI; + } + // In case of PN, spherical basis is per default SPHERICAL_HARMONICS + SphericalBase* tempBase = SphericalBase::Create( _settings ); + unsigned ntotalEquations = tempBase->GetBasisSize(); + + VectorVector initialSolution( _mesh->GetNumCells(), Vector( ntotalEquations, 0 ) ); // zero could lead to problems? + VectorVector cellMids = _mesh->GetCellMidPoints(); + + Vector tempIC( ntotalEquations, 0 ); + + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector quadPointsSphere = quad->GetPointsSphere(); + Vector w = quad->GetWeights(); + + double my, phi; + VectorVector moments = VectorVector( quad->GetNq(), Vector( tempBase->GetBasisSize(), 0.0 ) ); + + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + my = quadPointsSphere[idx_quad][0]; + phi = quadPointsSphere[idx_quad][1]; + moments[idx_quad] = tempBase->ComputeSphericalBasis( my, phi ); + } + // Integrate <1*m> to get factors for monomial basis in isotropic scattering + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + tempIC += w[idx_quad] * moments[idx_quad]; + } + delete quad; + } + // Initial condition is dirac impulse at (x,y) = (0,0) ==> constant in angle ==> all moments - exept first - are zero. + double kinetic_density = 1e-4; + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { + initialSolution[j] = kinetic_density * tempIC / tempIC[0] / integrationFactor; // Remember scaling + } + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + initialSolution[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) + } + } + delete tempBase; // Only temporally needed + return initialSolution; +} + +bool Lattice_Moment::isAbsorption( const Vector& pos ) const { + // Check whether pos is in absorption region + std::vector lbounds{ 1, 2, 3, 4, 5 }; + std::vector ubounds{ 2, 3, 4, 5, 6 }; + for( unsigned k = 0; k < lbounds.size(); ++k ) { + for( unsigned l = 0; l < lbounds.size(); ++l ) { + if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; + if( pos[0] >= lbounds[k] && pos[0] <= ubounds[k] && pos[1] >= lbounds[l] && pos[1] <= ubounds[l] ) { + return true; + } + } + } + return false; +} + +bool Lattice_Moment::isSource( const Vector& pos ) const { + // Check whether pos is in source region + if( pos[0] >= 3 && pos[0] <= 4 && pos[1] >= 3 && pos[1] <= 4 ) + return true; + else + return false; +} diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index 86cc3ffe..2ea118b4 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -3,6 +3,7 @@ #include "problems/aircavity1d.hpp" #include "problems/checkerboard.hpp" #include "problems/hohlraum.hpp" +#include "problems/lattice.hpp" #include "problems/symmetrichohlraum.hpp" #include "problems/linesource.hpp" #include "problems/meltingcube.hpp" @@ -89,6 +90,12 @@ ProblemBase* ProblemBase::Create( Config* settings, Mesh* mesh ) { else return new SymmetricHohlraum( settings, mesh ); } break; + case PROBLEM_Lattice: { + if( settings->GetIsMomentSolver() ) + return new Lattice_Moment( settings, mesh ); + else + return new Lattice_SN( settings, mesh ); + } break; default: ErrorMessages::Error( "No valid physical problem chosen. Please check your config file", CURRENT_FUNCTION ); return nullptr; } @@ -109,6 +116,6 @@ Vector ProblemBase::GetStoppingPower( const Vector& /* energies */ ) { return Vector( 1, -1.0 ); } -Vector ProblemBase::GetGhostCellValue(int idx_cell){ - return Vector(1u, 0.0); +Vector ProblemBase::GetGhostCellValue(int idx_cell, const Vector& cell_sol){ + return cell_sol; } diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 4f2cc6db..4b08a0fc 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -116,7 +116,7 @@ void SymmetricHohlraum::SetGhostCells(){ delete quad; } -Vector SymmetricHohlraum::GetGhostCellValue(int idx_cell){ +Vector SymmetricHohlraum::GetGhostCellValue(int idx_cell, const Vector& cell_sol){ return _ghostCells[idx_cell]; } diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index a160bc6a..72db0b48 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -134,7 +134,7 @@ void SNSolver::FluxUpdatePseudo2D() { if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ){ //std::cout << "here\n" ; _solNew[idx_cell][idx_quad] += - _g->Flux( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _problem->GetGhostCellValue(idx_cell)[idx_quad], _normals[idx_cell][idx_nbr] ); + _g->Flux( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _problem->GetGhostCellValue(idx_cell,_sol[idx_cell])[idx_quad], _normals[idx_cell][idx_nbr] ); } else { unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell From 154b6bb312962768309d784c100833537c4060f8 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Fri, 17 Nov 2023 12:07:02 -0500 Subject: [PATCH 003/155] startet new scalar outputs --- include/common/config.hpp | 4 + include/common/globalconstants.hpp | 25 ++- include/problems/lattice.hpp | 6 + include/problems/problembase.hpp | 4 +- include/problems/symmetrichohlraum.hpp | 8 +- include/quadratures/quadraturebase.hpp | 6 +- include/solvers/snsolver.hpp | 100 ++++++--- include/solvers/solverbase.hpp | 38 ++++ src/common/config.cpp | 132 ++++++++++-- src/problems/lattice.cpp | 36 +++- src/problems/problembase.cpp | 267 ++++++++++++++++--------- src/problems/symmetrichohlraum.cpp | 4 +- src/solvers/snsolver.cpp | 1 - src/solvers/solverbase.cpp | 38 +++- 14 files changed, 505 insertions(+), 164 deletions(-) diff --git a/include/common/config.hpp b/include/common/config.hpp index ad42c2da..8cce1008 100644 --- a/include/common/config.hpp +++ b/include/common/config.hpp @@ -246,6 +246,10 @@ class Config // Initialize the cmdline and file logger void InitLogger(); + // Helper functions + template + K findKey(const std::map& myMap, const V& valueToFind); + public: /*! * @brief Constructor of the class which reads the input file. diff --git a/include/common/globalconstants.hpp b/include/common/globalconstants.hpp index 7117ec7e..4541516a 100644 --- a/include/common/globalconstants.hpp +++ b/include/common/globalconstants.hpp @@ -163,17 +163,28 @@ inline std::map Optimizer_Map{ { "NEWTON", NEWTON } { "ML", ML } }; // Volume output -enum VOLUME_OUTPUT { ANALYTIC, MINIMAL, MOMENTS, DUAL_MOMENTS, MEDICAL }; +enum VOLUME_OUTPUT { ANALYTIC, MINIMAL, MOMENTS, DUAL_MOMENTS, MEDICAL, MOMENT_TIME_TRACE }; inline std::map VolOutput_Map{ - { "ANALYTIC", ANALYTIC }, { "MINIMAL", MINIMAL }, { "MOMENTS", MOMENTS }, { "DUAL_MOMENTS", DUAL_MOMENTS }, { "MEDICAL", MEDICAL } }; + { "ANALYTIC", ANALYTIC }, { "MINIMAL", MINIMAL }, { "MOMENTS", MOMENTS }, { "DUAL_MOMENTS", DUAL_MOMENTS }, { "MEDICAL", MEDICAL }, { "MOMENT_TIME_TRACE", MOMENT_TIME_TRACE } }; -// Scalar output -enum SCALAR_OUTPUT { ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT }; - -inline std::map ScalarOutput_Map{ - { "ITER", ITER }, { "MASS", MASS }, { "RMS_FLUX", RMS_FLUX }, { "VTK_OUTPUT", VTK_OUTPUT }, { "CSV_OUTPUT", CSV_OUTPUT } }; +// Scalar output +enum SCALAR_OUTPUT { ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, + FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION , TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL }; + +inline std::map ScalarOutput_Map{{ "ITER", ITER }, { "MASS", MASS }, { "RMS_FLUX", RMS_FLUX }, + { "VTK_OUTPUT", VTK_OUTPUT }, { "CSV_OUTPUT", CSV_OUTPUT }, + { "FINAL_TIME_OUTFLOW", FINAL_TIME_OUTFLOW }, + { "TOTAL_OUTFLOW", TOTAL_OUTFLOW }, + { "MAX_OUTFLOW", MAX_OUTFLOW }, + { "FINAL_TIME_PARTICLE_ABSORPTION", FINAL_TIME_PARTICLE_ABSORPTION }, + { "TOTAL_PARTICLE_ABSORPTION", TOTAL_PARTICLE_ABSORPTION }, + { "MAX_PARTICLE_ABSORPTION", MAX_PARTICLE_ABSORPTION } , + { "TOTAL_PARTICLE_ABSORPTION_CENTER", TOTAL_PARTICLE_ABSORPTION_CENTER } , + { "TOTAL_PARTICLE_ABSORPTION_VERTICAL", TOTAL_PARTICLE_ABSORPTION_VERTICAL } , + { "TOTAL_PARTICLE_ABSORPTION_HORIZONTAL", TOTAL_PARTICLE_ABSORPTION_HORIZONTAL } , + }; // Spherical Basis Name enum SPHERICAL_BASIS_NAME { SPHERICAL_HARMONICS, SPHERICAL_MONOMIALS, SPHERICAL_MONOMIALS_ROTATED }; diff --git a/include/problems/lattice.hpp b/include/problems/lattice.hpp index fde68bbd..3702e7c6 100644 --- a/include/problems/lattice.hpp +++ b/include/problems/lattice.hpp @@ -16,6 +16,9 @@ class Lattice_SN : public ProblemBase bool isAbsorption( const Vector& pos ) const; /*!< @return True if pos is in absorption region, False otherwise */ bool isSource( const Vector& pos ) const; /*!< @return True if pos is in source region, False otherwise */ + protected: + void SetGhostCells() override ; /*!< @brief Sets vector of ghost cells for boundary conditions */ + public: Lattice_SN( Config* settings, Mesh* mesh ); virtual ~Lattice_SN(); @@ -24,6 +27,9 @@ class Lattice_SN : public ProblemBase virtual VectorVector GetTotalXS( const Vector& energies ) override; virtual std::vector GetExternalSource( const Vector& energies ) override; virtual VectorVector SetupIC() override; + + const Vector& GetGhostCellValue(int idx_cell, const Vector& cell_sol) override final; + }; class Lattice_Moment : public ProblemBase diff --git a/include/problems/problembase.hpp b/include/problems/problembase.hpp index f964c5fc..e52d4b56 100644 --- a/include/problems/problembase.hpp +++ b/include/problems/problembase.hpp @@ -17,6 +17,8 @@ class ProblemBase std::vector _density; /*!< @brief vector with patient densities */ std::vector _stoppingPower; /*!< @brief vector with stopping powers*/ + std::map _ghostCells; /*!< @brief Vector of ghost cells for boundary conditions */ + virtual void SetGhostCells() ; /*!< @brief Sets vector of ghost cells for boundary conditions */ ProblemBase() = delete; @@ -88,7 +90,7 @@ class ProblemBase /** * @brief Returns the Dirichlet Boundary value for given cell index */ - virtual Vector GetGhostCellValue(int idx_cell, const Vector& cell_sol); + virtual const Vector& GetGhostCellValue(int idx_cell, const Vector& cell_sol); /*! @brief Exact analytical solution for the Line Source Test Case. Returns 0 for all other test cases. @return exact solution at x,y,t,scatteringXS diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp index 768e5bff..aec225a5 100644 --- a/include/problems/symmetrichohlraum.hpp +++ b/include/problems/symmetrichohlraum.hpp @@ -9,8 +9,9 @@ class SymmetricHohlraum : public ProblemBase SymmetricHohlraum() = delete; Vector _scatteringXS; /*!< @brief Vector of scattering crosssections */ Vector _totalXS; /*!< @brief Vector of total crosssections */ - std::map _ghostCells; /*!< @brief Vector of ghost cells for boundary conditions */ - void SetGhostCells(); /*!< @brief Sets vector of ghost cells for boundary conditions */ + + protected: + void SetGhostCells() override ; /*!< @brief Sets vector of ghost cells for boundary conditions */ public: SymmetricHohlraum( Config* settings, Mesh* mesh ); @@ -19,13 +20,14 @@ class SymmetricHohlraum : public ProblemBase virtual VectorVector SetupIC() override; VectorVector GetScatteringXS( const Vector& energies ) override final; VectorVector GetTotalXS( const Vector& energies ) override final; - Vector GetGhostCellValue(int idx_cell, const Vector& cell_sol) override final; + const Vector& GetGhostCellValue(int idx_cell, const Vector& cell_sol) override final; }; class SymmetricHohlraum_Moment : public SymmetricHohlraum { private: SymmetricHohlraum_Moment() = delete; + // TODO void SetGhostCells() override final; /*!< @brief Sets vector of ghost cells for boundary conditions */ public: SymmetricHohlraum_Moment( Config* settings, Mesh* mesh ); diff --git a/include/quadratures/quadraturebase.hpp b/include/quadratures/quadraturebase.hpp index 9a9312b2..2f60c7ff 100644 --- a/include/quadratures/quadraturebase.hpp +++ b/include/quadratures/quadraturebase.hpp @@ -64,11 +64,11 @@ class QuadratureBase inline std::string GetName() const { return _name; } /*! @returns std::string _name: name of the quadrature */ inline unsigned GetOrder() const { return _order; } /*! @returns unsigned _order: order of the quadrature */ inline unsigned GetNq() const { return _nq; } /*! @returns unsigned _nq: number of gridpoints of the quadrature */ - inline VectorVector GetPoints() const { return _pointsKarth; } /*! @returns VectorVector _points: coordinates of gridpoints of the quadrature */ - inline VectorVector GetPointsSphere() const { + inline VectorVector& GetPoints() const { return _pointsKarth; } /*! @returns VectorVector _points: coordinates of gridpoints of the quadrature */ + inline VectorVector& GetPointsSphere() const { return _pointsSphere; } /*! @returns VectorVector _pointsSphere: "---- " in spherical coordinates (my, phi)*/ - inline Vector GetWeights() const { return _weights; } /*! @returns Vector _weights: weights of gridpoints of the quadrature */ + inline Vector& GetWeights() const { return _weights; } /*! @returns Vector _weights: weights of gridpoints of the quadrature */ /*! @returns VectorVectorU _connectivity: connectivity of gridpoints of the quadrature */ inline VectorVectorU GetConnectivity() const { return _connectivity; } diff --git a/include/solvers/snsolver.hpp b/include/solvers/snsolver.hpp index 28fc5bc0..79d4a5a7 100644 --- a/include/solvers/snsolver.hpp +++ b/include/solvers/snsolver.hpp @@ -3,41 +3,85 @@ #include "solvers/solverbase.hpp" -class SNSolver : public SolverBase -{ - protected: - Matrix _scatteringKernel; /*!< @brief scattering kernel for the quadrature */ +class SNSolver : public SolverBase { + protected: + Matrix _scatteringKernel; /*!< @brief scattering kernel for the quadrature */ - // quadrature related numbers + // quadrature related numbers - VectorVector _quadPoints; /*!< @brief quadrature points, dim(_quadPoints) = (_nq,spatialDim) */ - Vector _weights; /*!< @brief quadrature weights, dim(_weights) = (_nq) */ + VectorVector _quadPoints; /*!< @brief quadrature points, dim(_quadPoints) = + (_nq,spatialDim) */ + Vector _weights; /*!< @brief quadrature weights, dim(_weights) = (_nq) */ - public: - /*! @brief SNSolver constructor - * @param settings stores all needed information - */ - SNSolver( Config* settings ); + public: + /*! @brief SNSolver constructor + * @param settings stores all needed information + */ + SNSolver(Config* settings); - virtual ~SNSolver() {} + virtual ~SNSolver() {} - protected: - // IO - void virtual PrepareVolumeOutput() override; - void virtual WriteVolumeOutput( unsigned idx_pseudoTime ) override; + protected: + // IO + void virtual PrepareVolumeOutput() override; + void virtual WriteVolumeOutput(unsigned idx_pseudoTime) override; - // Solver - void virtual FVMUpdate( unsigned idx_energy ) override; - void virtual FluxUpdate() override; - void virtual IterPreprocessing( unsigned idx_pseudotime ) override; - void virtual IterPostprocessing( unsigned idx_pseudotime ) override; + // Solver + void virtual FVMUpdate(unsigned idx_energy) override; + void virtual FluxUpdate() override; + void virtual IterPreprocessing(unsigned idx_pseudotime) override; + void virtual IterPostprocessing(unsigned idx_pseudotime) override; - // Helper - void ComputeRadFlux() override; - void FluxUpdatePseudo1D(); // Helper - void FluxUpdatePseudo2D(); // Helper + // Helper + void ComputeRadFlux() override; + void FluxUpdatePseudo1D(); // Helper + void FluxUpdatePseudo2D(); // Helper - // --- Member variables --- + // --- Member variables --- + + // Scalar output helper functions + /** + * @brief Computes Problemspecific Scalar QOI + * + */ + + virtual Vector& GetFinalTimeOutflow() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetTotalOutflow(const VectorVector& sol) override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetMaxOutflow(const VectorVector& sol) override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetFinalTimeAbsorption( + const VectorVector& sol) override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetTotalAbsorption(const VectorVector& sol) override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetMaxAbsorption(const VectorVector& sol) override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetTotalAbsorptionCenter( + const VectorVector& sol) override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetTotalAbsorptionVertical( + const VectorVector& sol) override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetTotalAbsorptionHorizontal( + const VectorVector& sol) override final; }; -#endif // SNSOLVER_H +#endif // SNSOLVER_H diff --git a/include/solvers/solverbase.hpp b/include/solvers/solverbase.hpp index 7ed4b4fa..7608aa02 100644 --- a/include/solvers/solverbase.hpp +++ b/include/solvers/solverbase.hpp @@ -142,6 +142,44 @@ class SolverBase /*! @brief Post Solver Screen and Logger Output */ void DrawPostSolverOutput(); + // Scalar output helper functions + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetFinalTimeOutflow( const VectorVector& sol, const VectorVector& sol _quadPoints ); + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetTotalOutflow( const VectorVector& sol ); + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetMaxOutflow( const VectorVector& sol ); + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetFinalTimeAbsorption( const VectorVector& sol ); + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetTotalAbsorption( const VectorVector& sol ); + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetMaxAbsorption( const VectorVector& sol ); + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetTotalAbsorptionCenter( const VectorVector& sol ); + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetTotalAbsorptionVertical( const VectorVector& sol ); + /** + * @brief Computes Problemspecific Scalar QOI + */ + virtual Vector& GetTotalAbsorptionHorizontal( const VectorVector& sol ); + public: /*! @brief Solver constructor * @param settings config class that stores all needed config information */ diff --git a/src/common/config.cpp b/src/common/config.cpp index 6dda8ea1..442175be 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -615,7 +615,11 @@ void Config::SetPostprocessing() { for( unsigned short idx_volOutput = 0; idx_volOutput < _nVolumeOutput; idx_volOutput++ ) { switch( _solverName ) { case SN_SOLVER: + if (_problemName == PROBLEM_SymmetricHohlraum) + supportedGroups = { MINIMAL, ANALYTIC, MOMENT_TIME_TRACE }; + else supportedGroups = { MINIMAL, ANALYTIC }; + if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { ErrorMessages::Error( "SN_SOLVER only supports volume output MINIMAL and ANALYTIC.\nPlease check your .cfg file.", CURRENT_FUNCTION ); @@ -628,18 +632,21 @@ void Config::SetPostprocessing() { break; case MN_SOLVER: // Fallthrough case MN_SOLVER_NORMALIZED: - supportedGroups = { MINIMAL, MOMENTS, DUAL_MOMENTS, ANALYTIC }; + if (_problemName == PROBLEM_SymmetricHohlraum) + supportedGroups = { MINIMAL, MOMENTS, DUAL_MOMENTS , MOMENT_TIME_TRACE }; + else if ( _problemName == PROBLEM_Linesource ) + supportedGroups = { MINIMAL, ANALYTIC, MOMENTS, DUAL_MOMENTS }; + else + supportedGroups = { MINIMAL, MOMENTS, DUAL_MOMENTS }; if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { - + std::string supportedGroupStr = ""; + for (unsigned i=0; i,supportedGroups.size(); i++) { + supportedGroupStr+= findKey(VolOutput_Map, supportedGroups[i]) + ", "; + } ErrorMessages::Error( - "MN_SOLVER only supports volume output ANALYTIC, MINIMAL, MOMENTS and DUAL_MOMENTS.\nPlease check your .cfg file.", + "MN_SOLVER supports volume outputs" + supportedGroupStr +".\nPlease check your .cfg file.", CURRENT_FUNCTION ); - } - if( _volumeOutput[idx_volOutput] == ANALYTIC && _problemName != PROBLEM_Linesource ) { - ErrorMessages::Error( "Analytical solution (VOLUME_OUTPUT=ANALYTIC) is only available for the PROBLEM=LINESOURCE.\nPlease " - "check your .cfg file.", - CURRENT_FUNCTION ); - } + } break; case PN_SOLVER: supportedGroups = { MINIMAL, MOMENTS, ANALYTIC }; @@ -654,7 +661,7 @@ void Config::SetPostprocessing() { CURRENT_FUNCTION ); } break; - case CSD_SN_SOLVER: // Fallthrough + case CSD_SN_SOLVER: supportedGroups = { MINIMAL, MEDICAL }; if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { @@ -684,7 +691,7 @@ void Config::SetPostprocessing() { ErrorMessages::Error( "Solver output check not implemented for this Solver.\nThis is the fault of the coder.", CURRENT_FUNCTION ); } } - + // Set default volume output if( _nVolumeOutput == 0 ) { // If no specific output is chosen, use "MINIMAL" _nVolumeOutput = 1; @@ -712,7 +719,48 @@ void Config::SetPostprocessing() { CURRENT_FUNCTION ); } } - + // Check if the choice of screen output is compatible to the problem + for( unsigned short idx_screenOutput = 0; idx_screenOutput < _nScreenOutput; idx_screenOutput++ ) { + std::vector legalOutputs; + std::vector::iterator it; + switch (_problemName){ + case PROBLEM_Lattice: + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION }; + it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); + if (it != legalOutputs.end()){ + std::string foundKey = findKey(ScalarOutput_Map, _screenOutput[idx_screenOutput]); + ErrorMessages::Error( "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION\n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + case PROBLEM_SymmetricHohlraum: + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL}; + it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); + + if (it != legalOutputs.end()){ + std::string foundKey = findKey(ScalarOutput_Map, _screenOutput[idx_screenOutput]); + ErrorMessages::Error( "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL\n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + default: + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT}; + it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); + + if (it != legalOutputs.end()){ + std::string foundKey = findKey(ScalarOutput_Map, _screenOutput[idx_screenOutput]); + ErrorMessages::Error( "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT\n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + } + } // Set ITER always to index 0 . Assume only one instance of iter is chosen if( _nScreenOutput > 0 ) { std::vector::iterator it; @@ -728,11 +776,12 @@ void Config::SetPostprocessing() { _screenOutput.push_back( MASS ); _screenOutput.push_back( VTK_OUTPUT ); } + } // History Output Postprocessing { - // Check for doublicates in VOLUME OUTPUT + // Check for doublicates in HISTORY OUTPUT std::map dublicate_map; for( unsigned short idx_screenOutput = 0; idx_screenOutput < _nHistoryOutput; idx_screenOutput++ ) { @@ -751,6 +800,50 @@ void Config::SetPostprocessing() { } } + // Check if the choice of history output is compatible to the problem + for( unsigned short idx_screenOutput = 0; idx_screenOutput < _nHistoryOutput; idx_screenOutput++ ) { + std::vector legalOutputs; + std::vector::iterator it; + + switch (_problemName){ + case PROBLEM_Lattice: + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION }; + it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); + if (it != legalOutputs.end()){ + std::string foundKey = findKey(ScalarOutput_Map, _historyOutput[idx_screenOutput]); + ErrorMessages::Error( "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION\n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + case PROBLEM_SymmetricHohlraum: + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL}; + it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); + + if (it != legalOutputs.end()){ + std::string foundKey = findKey(ScalarOutput_Map, _historyOutput[idx_screenOutput]); + ErrorMessages::Error( "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL\n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + default: + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT}; + it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); + + if (it != legalOutputs.end()){ + std::string foundKey = findKey(ScalarOutput_Map, _historyOutput[idx_screenOutput]); + ErrorMessages::Error( "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT\n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + } + } + // Set ITER always to index 0 . Assume only one instance of iter is chosen if( _nHistoryOutput > 0 ) { std::vector::iterator it; @@ -1079,3 +1172,16 @@ void Config::InitLogger() { spdlog::flush_every( std::chrono::seconds( 5 ) ); } } + + +// Function to find the key for a given value in a map +template +K Config::findKey(const std::map& myMap, const V& valueToFind) { + for (const auto& pair : myMap) { + if (pair.second == valueToFind) { + return pair.first; // Return the key if the value is found + } + } + // If the value is not found, you can return a default value or throw an exception + throw std::out_of_range("Value not found in the map"); +} \ No newline at end of file diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index 0cd4913b..9d67c312 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -22,6 +22,8 @@ Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh ) : ProblemBase( settings, _totalXS[j] = 10.0; } } + SetGhostCells(); + } Lattice_SN::~Lattice_SN() {} @@ -68,6 +70,33 @@ bool Lattice_SN::isSource( const Vector& pos ) const { return false; } + +void Lattice_SN::SetGhostCells(){ + // Loop over all cells. If its a Dirichlet boundary, add cell to dict with {cell_idx, boundary_value} + auto cellBoundaries = _mesh->GetBoundaryTypes(); + std::map ghostCellMap; + + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector vq = quad->GetPoints(); + unsigned nq = quad->GetNq(); + + Vector void_ghostcell(nq, 0.0); + + for (unsigned idx_cell =0; idx_cell<_mesh->GetNumCells(); idx_cell ++){ + if (cellBoundaries[idx_cell]== BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET){ + ghostCellMap.insert({idx_cell, void_ghostcell}); + } + } + _ghostCells = ghostCellMap; + + delete quad; +} + +const Vector& Lattice_SN::GetGhostCellValue(int idx_cell, const Vector& cell_sol){ //re-write to use pointers + return _ghostCells[idx_cell]; +} + + // ---- Checkerboard Moments ---- // Constructor for checkerboard case with Pn @@ -191,8 +220,9 @@ VectorVector Lattice_Moment::SetupIC() { bool Lattice_Moment::isAbsorption( const Vector& pos ) const { // Check whether pos is in absorption region - std::vector lbounds{ 1, 2, 3, 4, 5 }; - std::vector ubounds{ 2, 3, 4, 5, 6 }; + double xy_corrector =-3.5; + std::vector lbounds{ 1+xy_corrector, 2+xy_corrector, 3+xy_corrector, 4+xy_corrector, 5+xy_corrector }; + std::vector ubounds{ 2+xy_corrector, 3+xy_corrector, 4+xy_corrector, 5+xy_corrector, 6+xy_corrector }; for( unsigned k = 0; k < lbounds.size(); ++k ) { for( unsigned l = 0; l < lbounds.size(); ++l ) { if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; @@ -206,7 +236,7 @@ bool Lattice_Moment::isAbsorption( const Vector& pos ) const { bool Lattice_Moment::isSource( const Vector& pos ) const { // Check whether pos is in source region - if( pos[0] >= 3 && pos[0] <= 4 && pos[1] >= 3 && pos[1] <= 4 ) + if( pos[0] >= 3-3.5 && pos[0] <= 4-3.5 && pos[1] >= 3-3.5 && pos[1] <= 4 -3.5) return true; else return false; diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index 2ea118b4..682a1a20 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -1,121 +1,200 @@ #include "problems/problembase.hpp" + #include "common/config.hpp" +#include "common/mesh.hpp" #include "problems/aircavity1d.hpp" #include "problems/checkerboard.hpp" #include "problems/hohlraum.hpp" #include "problems/lattice.hpp" -#include "problems/symmetrichohlraum.hpp" #include "problems/linesource.hpp" #include "problems/meltingcube.hpp" #include "problems/phantomimage.hpp" #include "problems/radiationctimage.hpp" #include "problems/starmapvalidation.hpp" +#include "problems/symmetrichohlraum.hpp" #include "toolboxes/errormessages.hpp" -ProblemBase::ProblemBase( Config* settings, Mesh* mesh ) { - _settings = settings; - _mesh = mesh; +ProblemBase::ProblemBase(Config* settings, Mesh* mesh) { + _settings = settings; + _mesh = mesh; + SetGhostCells(); } ProblemBase::~ProblemBase() {} -ProblemBase* ProblemBase::Create( Config* settings, Mesh* mesh ) { - - // Choose problem type - switch( settings->GetProblemName() ) { - case PROBLEM_Linesource: { - if( settings->GetIsMomentSolver() ) - return new LineSource_Moment( settings, mesh ); - else - return new LineSource_SN( settings, mesh ); - } break; - case PROBLEM_Linesource1D: { - if( settings->GetIsMomentSolver() ) - return new LineSource_Moment_1D( settings, mesh ); - else - return new LineSource_SN_1D( settings, mesh ); - } break; - case PROBLEM_Checkerboard: { - if( settings->GetIsMomentSolver() ) - return new Checkerboard_Moment( settings, mesh ); - else - return new Checkerboard_SN( settings, mesh ); - } break; - case PROBLEM_Checkerboard1D: { - if( settings->GetIsMomentSolver() ) - return new Checkerboard_Moment_1D( settings, mesh ); - else - return new Checkerboard_SN_1D( settings, mesh ); - } break; - case PROBLEM_Aircavity1D: { - if( settings->GetIsMomentSolver() ) - return new AirCavity1D_Moment( settings, mesh ); - else - return new AirCavity1D( settings, mesh ); - } break; - case PROBLEM_StarmapValidation: { - if( settings->GetIsMomentSolver() ) - return new StarMapValidation_Moment( settings, mesh ); - else - return new StarMapValidation_SN( settings, mesh ); - } break; - case PROBLEM_Phantomimage: return new PhantomImage( settings, mesh ); - case PROBLEM_RadiationCT: { - if( settings->GetIsMomentSolver() ) - return new RadiationCTImage_Moment( settings, mesh ); - else - return new RadiationCTImage( settings, mesh ); - } break; - case PROBLEM_Meltingcube: { - if( settings->GetIsMomentSolver() ) - return new MeltingCube_Moment( settings, mesh ); - else - return new MeltingCube_SN( settings, mesh ); - } break; - case PROBLEM_Meltingcube1D: { - if( settings->GetIsMomentSolver() ) - return new MeltingCube_Moment_1D( settings, mesh ); - else - return new MeltingCube_SN_1D( settings, mesh ); - } break; - case PROBLEM_Hohlraum: { - if( settings->GetIsMomentSolver() ) - return new Hohlraum_Moment( settings, mesh ); - else - return new Hohlraum( settings, mesh ); - } break; - case PROBLEM_SymmetricHohlraum: { - if( settings->GetIsMomentSolver() ) - return new SymmetricHohlraum_Moment( settings, mesh ); - else - return new SymmetricHohlraum( settings, mesh ); - } break; - case PROBLEM_Lattice: { - if( settings->GetIsMomentSolver() ) - return new Lattice_Moment( settings, mesh ); - else - return new Lattice_SN( settings, mesh ); - } break; - - default: ErrorMessages::Error( "No valid physical problem chosen. Please check your config file", CURRENT_FUNCTION ); return nullptr; - } +ProblemBase* ProblemBase::Create(Config* settings, Mesh* mesh) { + // Choose problem type + switch (settings->GetProblemName()) { + case PROBLEM_Linesource: { + if (settings->GetIsMomentSolver()) + return new LineSource_Moment(settings, mesh); + else + return new LineSource_SN(settings, mesh); + } break; + case PROBLEM_Linesource1D: { + if (settings->GetIsMomentSolver()) + return new LineSource_Moment_1D(settings, mesh); + else + return new LineSource_SN_1D(settings, mesh); + } break; + case PROBLEM_Checkerboard: { + if (settings->GetIsMomentSolver()) + return new Checkerboard_Moment(settings, mesh); + else + return new Checkerboard_SN(settings, mesh); + } break; + case PROBLEM_Checkerboard1D: { + if (settings->GetIsMomentSolver()) + return new Checkerboard_Moment_1D(settings, mesh); + else + return new Checkerboard_SN_1D(settings, mesh); + } break; + case PROBLEM_Aircavity1D: { + if (settings->GetIsMomentSolver()) + return new AirCavity1D_Moment(settings, mesh); + else + return new AirCavity1D(settings, mesh); + } break; + case PROBLEM_StarmapValidation: { + if (settings->GetIsMomentSolver()) + return new StarMapValidation_Moment(settings, mesh); + else + return new StarMapValidation_SN(settings, mesh); + } break; + case PROBLEM_Phantomimage: + return new PhantomImage(settings, mesh); + case PROBLEM_RadiationCT: { + if (settings->GetIsMomentSolver()) + return new RadiationCTImage_Moment(settings, mesh); + else + return new RadiationCTImage(settings, mesh); + } break; + case PROBLEM_Meltingcube: { + if (settings->GetIsMomentSolver()) + return new MeltingCube_Moment(settings, mesh); + else + return new MeltingCube_SN(settings, mesh); + } break; + case PROBLEM_Meltingcube1D: { + if (settings->GetIsMomentSolver()) + return new MeltingCube_Moment_1D(settings, mesh); + else + return new MeltingCube_SN_1D(settings, mesh); + } break; + case PROBLEM_Hohlraum: { + if (settings->GetIsMomentSolver()) + return new Hohlraum_Moment(settings, mesh); + else + return new Hohlraum(settings, mesh); + } break; + case PROBLEM_SymmetricHohlraum: { + if (settings->GetIsMomentSolver()) + return new SymmetricHohlraum_Moment(settings, mesh); + else + return new SymmetricHohlraum(settings, mesh); + } break; + case PROBLEM_Lattice: { + if (settings->GetIsMomentSolver()) + return new Lattice_Moment(settings, mesh); + else + return new Lattice_SN(settings, mesh); + } break; + + default: + ErrorMessages::Error( + "No valid physical problem chosen. Please check your config file", + CURRENT_FUNCTION); + return nullptr; + } } // Default densities = 1 -std::vector ProblemBase::GetDensity( const VectorVector& cellMidPoints ) { return std::vector( cellMidPoints.size(), 1.0 ); } +std::vector ProblemBase::GetDensity(const VectorVector& cellMidPoints) { + return std::vector(cellMidPoints.size(), 1.0); +} -// Legacy code: Scattering crossection loaded from database ENDF with physics class -> later overwritten with ICRU data -VectorVector ProblemBase::GetScatteringXSE( const Vector& /*energies*/, const Vector& /*angles*/ ) { - ErrorMessages::Error( "Not yet implemented", CURRENT_FUNCTION ); - return VectorVector( 1, Vector( 1, 0 ) ); +// Legacy code: Scattering crossection loaded from database ENDF with physics +// class -> later overwritten with ICRU data +VectorVector ProblemBase::GetScatteringXSE(const Vector& /*energies*/, + const Vector& /*angles*/) { + ErrorMessages::Error("Not yet implemented", CURRENT_FUNCTION); + return VectorVector(1, Vector(1, 0)); } // Stopping powers from phyics class or default = -1 -Vector ProblemBase::GetStoppingPower( const Vector& /* energies */ ) { - ErrorMessages::Error( "Not yet implemented", CURRENT_FUNCTION ); - return Vector( 1, -1.0 ); +Vector ProblemBase::GetStoppingPower(const Vector& /* energies */) { + ErrorMessages::Error("Not yet implemented", CURRENT_FUNCTION); + return Vector(1, -1.0); +} + +void ProblemBase::SetGhostCells() { + // Loop over all cells. If its a Dirichlet boundary, add cell to dict with + // {cell_idx, boundary_value} + auto cellBoundaries = _mesh->GetBoundaryTypes(); + std::map ghostCellMap; + + Vector dummyGhostCell(1, 0.0); + + for (unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++) { + if (cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || + cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET) { + // TODO: Refactor Boundary Conditions: We only have Ghost Cells with + // Dirichlet conditions right now + ghostCellMap.insert({idx_cell, dummyGhostCell}); + } + _ghostCells = ghostCellMap; + } +} + +const Vector& ProblemBase::GetGhostCellValue(int idx_cell, + const Vector& cell_sol) { + return cell_sol; +} + +// Needs to go to Solver, not to Problem +double ProblemBase::GetFinalTimeOutflow(const VectorVector& sol, + const VectorVector& sol quadPoints, + const VectorVector& sol quadPoints) { + for (std::map::iterator it = _ghostCells.begin(); + it != _ghostCells.end(); ++it) { // Iterate over boundaries + int idx_cell = it->first; // Get Boundary cell index + for (unsigned idx_nbr = 0; idx_nbr < _mesh->GetNeighbours[idx_cell].size(); + ++idx_nbr) { + if (_mesh->GetNeighbours[idx_cell][idx_nbr] == + _nCells) { // Find face that points outward + for (unsigned idx_quad = 0; idx_quad < quadPoints.size(); ++idx_quad) { + double fluxOut = + _mesh->GetNormals()[idx_cell][idx_nbr] * quadPoints[idx_quad]; + if (fluxOut > 0.0) { + fluxOut* sol[idx_cell][idx_quad] + } + } + } + } + } + return 0; +} + +double ProblemBase::GetTotalOutflow(const VectorVector& sol) { return 0; } + +double ProblemBase::GetMaxOutflow(const VectorVector& sol) { return 0; } + +double ProblemBase::GetFinalTimeAbsorption(const VectorVector& sol) { + return 0; +} + +double ProblemBase::GetTotalAbsorption(const VectorVector& sol) { return 0; } + +double ProblemBase::GetMaxAbsorption(const VectorVector& sol) { return 0; } + +double ProblemBase::GetTotalAbsorptionCenter(const VectorVector& sol) { + return 0; +} + +double ProblemBase::GetTotalAbsorptionVertical(const VectorVector& sol) { + return 0; } -Vector ProblemBase::GetGhostCellValue(int idx_cell, const Vector& cell_sol){ - return cell_sol; +double ProblemBase::GetTotalAbsorptionHorizontal(const VectorVector& sol) { + return 0; } diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 4b08a0fc..1f975ff5 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -104,7 +104,7 @@ void SymmetricHohlraum::SetGhostCells(){ double x = _mesh->GetCellMidPoints()[idx_cell][0]; double y = _mesh->GetCellMidPoints()[idx_cell][1]; - if (cellBoundaries[idx_cell]== BOUNDARY_TYPE::NEUMANN){ + if (cellBoundaries[idx_cell]== BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET){ if (y < -0.6) ghostCellMap.insert({idx_cell, vertical_flow}); else if (y > 0.6) ghostCellMap.insert({idx_cell, vertical_flow}); else if (x < -0.6) ghostCellMap.insert({idx_cell, left_inflow}); @@ -116,7 +116,7 @@ void SymmetricHohlraum::SetGhostCells(){ delete quad; } -Vector SymmetricHohlraum::GetGhostCellValue(int idx_cell, const Vector& cell_sol){ +const Vector& SymmetricHohlraum::GetGhostCellValue(int idx_cell, const Vector& cell_sol){ return _ghostCells[idx_cell]; } diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index 72db0b48..0418867e 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -132,7 +132,6 @@ void SNSolver::FluxUpdatePseudo2D() { for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { // store flux contribution on psiNew_sigmaS to save memory if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ){ - //std::cout << "here\n" ; _solNew[idx_cell][idx_quad] += _g->Flux( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _problem->GetGhostCellValue(idx_cell,_sol[idx_cell])[idx_quad], _normals[idx_cell][idx_nbr] ); } diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index ea804c15..8377703e 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -228,14 +228,19 @@ void SolverBase::PrepareScreenOutput() { // Different procedure, depending on the Group... switch( _settings->GetScreenOutput()[idx_field] ) { case MASS: _screenOutputFieldNames[idx_field] = "Mass"; break; - case ITER: _screenOutputFieldNames[idx_field] = "Iter"; break; - case RMS_FLUX: _screenOutputFieldNames[idx_field] = "RMS flux"; break; - case VTK_OUTPUT: _screenOutputFieldNames[idx_field] = "VTK out"; break; - case CSV_OUTPUT: _screenOutputFieldNames[idx_field] = "CSV out"; break; + case FINAL_TIME_OUTFLOW: _screenOutputFieldNames[idx_field] = "Final time outflow"; break; + case TOTAL_OUTFLOW: _screenOutputFieldNames[idx_field] = "Cumulated outflow"; break; + case MAX_OUTFLOW: _screenOutputFieldNames[idx_field] = "Max outflow"; break; + case FINAL_TIME_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Final time absorption"; break; + case TOTAL_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Cumulated absorption"; break; + case MAX_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Max absorption"; break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFieldNames[idx_field] = "Cumulated absorption center"; break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFieldNames[idx_field] = "Cumulated absorption vertical wall"; break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFieldNames[idx_field] = "Cumulated absorption horizontal wall"; break; default: ErrorMessages::Error( "Screen output field not defined!", CURRENT_FUNCTION ); break; } @@ -278,6 +283,17 @@ void SolverBase::WriteScalarOutput( unsigned iteration ) { _screenOutputFields[idx_field] = 1; } break; + + case FINAL_TIME_OUTFLOW: _screenOutputFields[idx_field] = _problem->GetFinalTimeOutflow(_sol); break; + case TOTAL_OUTFLOW: _screenOutputFields[idx_field] = _problem->GetTotalOutflow(_sol); break; + case MAX_OUTFLOW: _screenOutputFields[idx_field] = _problem->GetMaxOutflow(_sol); break; + case FINAL_TIME_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _problem->GetFinalTimeAbsorption(_sol); break; + case TOTAL_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _problem->GetTotalAbsorption(_sol); break; + case MAX_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _problem->GetMaxAbsorption(_sol); break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionCenter(_sol); break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionVertical(_sol); break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionHorizontal(_sol); break; + default: ErrorMessages::Error( "Screen output group not defined!", CURRENT_FUNCTION ); break; } } @@ -405,15 +421,19 @@ void SolverBase::PrepareHistoryOutput() { // Different procedure, depending on the Group... switch( _settings->GetHistoryOutput()[idx_field] ) { case MASS: _historyOutputFieldNames[idx_field] = "Mass"; break; - case ITER: _historyOutputFieldNames[idx_field] = "Iter"; break; - case RMS_FLUX: _historyOutputFieldNames[idx_field] = "RMS_flux"; break; - case VTK_OUTPUT: _historyOutputFieldNames[idx_field] = "VTK_out"; break; - case CSV_OUTPUT: _historyOutputFieldNames[idx_field] = "CSV_out"; break; - + case FINAL_TIME_OUTFLOW: _screenOutputFieldNames[idx_field] = "Final_time_outflow"; break; + case TOTAL_OUTFLOW: _screenOutputFieldNames[idx_field] = "Cumulated_outflow"; break; + case MAX_OUTFLOW: _screenOutputFieldNames[idx_field] = "Max_outflow"; break; + case FINAL_TIME_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Final_time_absorption"; break; + case TOTAL_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Cumulated_absorption"; break; + case MAX_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Max_absorption"; break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFieldNames[idx_field] = "Cumulated_absorption_center"; break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFieldNames[idx_field] = "Cumulated_absorption_vertical_wall"; break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFieldNames[idx_field] = "Cumulated_absorption_horizontal_wall"; break; default: ErrorMessages::Error( "History output field not defined!", CURRENT_FUNCTION ); break; } } From 848e640f70303791f29809a2626bec34d640f0ee Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Fri, 17 Nov 2023 13:58:39 -0500 Subject: [PATCH 004/155] first QOIs work --- include/problems/problembase.hpp | 221 +++-- include/quadratures/quadraturebase.hpp | 177 ++-- include/solvers/mnsolver.hpp | 161 +-- include/solvers/pnsolver.hpp | 323 +++--- include/solvers/snsolver.hpp | 41 +- include/solvers/solverbase.hpp | 150 +-- src/common/config.cpp | 1253 +++++++++++++----------- src/problems/lattice.cpp | 230 +++-- src/problems/problembase.cpp | 263 +++-- src/solvers/mnsolver.cpp | 572 ++++++----- src/solvers/pnsolver.cpp | 805 ++++++++------- src/solvers/snsolver.cpp | 440 ++++++--- src/solvers/solverbase.cpp | 754 ++++++++------ 13 files changed, 3145 insertions(+), 2245 deletions(-) diff --git a/include/problems/problembase.hpp b/include/problems/problembase.hpp index e52d4b56..fce27bfb 100644 --- a/include/problems/problembase.hpp +++ b/include/problems/problembase.hpp @@ -10,108 +10,125 @@ class Mesh; class ProblemBase { - - protected: - Config* _settings; /*!< @brief pointer to settings */ - Mesh* _mesh; /*!< @brief pointer to mesh */ - - std::vector _density; /*!< @brief vector with patient densities */ - std::vector _stoppingPower; /*!< @brief vector with stopping powers*/ - std::map _ghostCells; /*!< @brief Vector of ghost cells for boundary conditions */ - virtual void SetGhostCells() ; /*!< @brief Sets vector of ghost cells for boundary conditions */ - - ProblemBase() = delete; - - public: - /** - * @brief GetScatteringXS gives back vector (each energy) of vectors (each grid cell) - * of scattering cross sections for materials defined by density and energies - * in vector energy - * @param energies is the energy the cross section is queried for - */ - virtual VectorVector GetScatteringXS( const Vector& energies ) = 0; - - /** - * @brief GetTotalXS gives back vector of vectors of total cross sections for - * materials defined by density and energies in vector energy - * @param energies is the energy the cross section is queried for - */ - virtual VectorVector GetTotalXS( const Vector& energies ) = 0; - - /** - * @brief GetTotalXSE gives back vector of total cross sections for - * energies in vector energy - */ - virtual Vector GetTotalXSE( const Vector& /*energies*/ ) { return Vector( 1 ); } - - /** - * @brief GetScatteringXSE gives back vector (each energy) of scattering cross sections for energies - * in vector energy - * @param energies is the energy the cross section is queried for - * @param angles are the queried angles - */ - virtual std::vector GetScatteringXSE( const Vector& energies, const Matrix& angles ) { - return std::vector( energies.size(), Matrix( angles.rows(), angles.columns() ) ); - } - - /** - * @brief GetScatteringXSE gives back vector (each energy) of scattering cross sections for energies - * in vector energy - * @param energies is the energy the cross section is queried for - * @param angles are the queried angles - */ - virtual VectorVector GetScatteringXSE( const Vector& energies, const Vector& angles ); - - /** - * @brief GetExternalSource gives back vector of vectors of source terms for each - * energy, cell and angle - * @param energies is the energy the cross section is queried for - */ - virtual std::vector GetExternalSource( const Vector& energies ) = 0; - - /** - * @brief GetStoppingPower gives back vector of vectors of stopping powers for - * materials defined by density and energies in vector energy - * @param energies is vector with energies - */ - virtual Vector GetStoppingPower( const Vector& energies ); - - /** - * @brief GetDensity gives back vector of densities for every spatial cell - * @param cellMidPoints is vector with cell mid points - */ - virtual std::vector GetDensity( const VectorVector& cellMidPoints ); - - /** - * @brief Setup the initial condition for the flux psi - */ - virtual VectorVector SetupIC() = 0; - - /** - * @brief Returns the Dirichlet Boundary value for given cell index - */ - virtual const Vector& GetGhostCellValue(int idx_cell, const Vector& cell_sol); - - /*! @brief Exact analytical solution for the Line Source Test Case. Returns 0 for all other test cases. - @return exact solution at x,y,t,scatteringXS - */ // Default is set to 0. ~> if no analytical solution is available. - double virtual GetAnalyticalSolution( double /*x*/, double /*y*/, double /*t*/, double /*scatteringXS*/ ) { return 0.0; } - - /** - * @brief Physics constructor - * @param settings stores all needed user information - * @param mesh for the test case - */ - ProblemBase( Config* settings, Mesh* mesh ); - virtual ~ProblemBase(); - - /** - * @brief Create constructor - * @param settings stores all needed information - * @param mesh for the test case - * @return pointer to ProblemBase - */ - static ProblemBase* Create( Config* settings, Mesh* mesh ); +protected: + Config *_settings; /*!< @brief pointer to settings */ + Mesh *_mesh; /*!< @brief pointer to mesh */ + + std::vector _density; /*!< @brief vector with patient densities */ + std::vector _stoppingPower; /*!< @brief vector with stopping powers*/ + std::map + _ghostCells; /*!< @brief Vector of ghost cells for boundary conditions */ + virtual void SetGhostCells(); /*!< @brief Sets vector of ghost cells for + boundary conditions */ + + ProblemBase() = delete; + +public: + /** + * @brief GetScatteringXS gives back vector (each energy) of vectors (each + * grid cell) of scattering cross sections for materials defined by density + * and energies in vector energy + * @param energies is the energy the cross section is queried for + */ + virtual VectorVector GetScatteringXS(const Vector &energies) = 0; + + /** + * @brief GetTotalXS gives back vector of vectors of total cross sections for + * materials defined by density and energies in vector energy + * @param energies is the energy the cross section is queried for + */ + virtual VectorVector GetTotalXS(const Vector &energies) = 0; + + /** + * @brief GetTotalXSE gives back vector of total cross sections for + * energies in vector energy + */ + virtual Vector GetTotalXSE(const Vector & /*energies*/) { return Vector(1); } + + /** + * @brief GetScatteringXSE gives back vector (each energy) of scattering cross + * sections for energies in vector energy + * @param energies is the energy the cross section is queried for + * @param angles are the queried angles + */ + virtual std::vector GetScatteringXSE(const Vector &energies, + const Matrix &angles) + { + return std::vector(energies.size(), + Matrix(angles.rows(), angles.columns())); + } + + /** + * @brief GetScatteringXSE gives back vector (each energy) of scattering cross + * sections for energies in vector energy + * @param energies is the energy the cross section is queried for + * @param angles are the queried angles + */ + virtual VectorVector GetScatteringXSE(const Vector &energies, + const Vector &angles); + + /** + * @brief GetExternalSource gives back vector of vectors of source terms for + * each energy, cell and angle + * @param energies is the energy the cross section is queried for + */ + virtual std::vector GetExternalSource( + const Vector &energies) = 0; + + /** + * @brief GetStoppingPower gives back vector of vectors of stopping powers for + * materials defined by density and energies in vector energy + * @param energies is vector with energies + */ + virtual Vector GetStoppingPower(const Vector &energies); + + /** + * @brief GetDensity gives back vector of densities for every spatial cell + * @param cellMidPoints is vector with cell mid points + */ + virtual std::vector GetDensity(const VectorVector &cellMidPoints); + + /** + * @brief Setup the initial condition for the flux psi + */ + virtual VectorVector SetupIC() = 0; + + /** + * @brief Returns the Value of the ghost cell with index idx_cell + */ + virtual const Vector &GetGhostCellValue(int idx_cell, const Vector &cell_sol); + + /** + * @brief Returns the pointer to ghostcell map + */ + std::map &GetGhostCells() { return _ghostCells; }; + + /*! @brief Exact analytical solution for the Line Source Test Case. Returns 0 + for all other test cases. + @return exact solution at x,y,t,scatteringXS + */ + // Default is set to 0. ~> if no analytical solution is available. + double virtual GetAnalyticalSolution(double /*x*/, double /*y*/, double /*t*/, + double /*scatteringXS*/) + { + return 0.0; + } + + /** + * @brief Physics constructor + * @param settings stores all needed user information + * @param mesh for the test case + */ + ProblemBase(Config *settings, Mesh *mesh); + virtual ~ProblemBase(); + + /** + * @brief Create constructor + * @param settings stores all needed information + * @param mesh for the test case + * @return pointer to ProblemBase + */ + static ProblemBase *Create(Config *settings, Mesh *mesh); }; #endif diff --git a/include/quadratures/quadraturebase.hpp b/include/quadratures/quadraturebase.hpp index 2f60c7ff..c9aa7a4d 100644 --- a/include/quadratures/quadraturebase.hpp +++ b/include/quadratures/quadraturebase.hpp @@ -13,93 +13,94 @@ class Config; class QuadratureBase { - public: - /*! @brief Constructor using settings class. This is the recommended constructor. - * @param settings Settings class storing all important options. - */ - QuadratureBase( Config* settings ); - /*! @brief Constructor using directly the order of the quadrature. Not applicable for GaussLegendre, that need additional options. - It sets member _settings = nulltpr.*/ - QuadratureBase( unsigned order ); - virtual ~QuadratureBase() {} - - // Aux functions - void PrintWeights(); /*!< @brief prints: Weight vector */ - void PrintPoints(); /*!< @brief prints: Point vectorVector */ - void PrintPointsAndWeights(); /*!< @brief prints: Point vectorVector with corresponding weight vector */ - - /*! @brief sums up all entries of the weight vector. - * @returns sum of all weights */ - double SumUpWeights(); - - /*! @brief Integrates f(x,y,z) with the quadrature. - * @param f density function that depends on a three spatial dimensions. - * @returns result of the quadrature rule */ - virtual double Integrate( double ( *f )( double, double, double ) ); - - /*! @brief Integrates f(x,y,z) with the quadrature. - * @param f density function that depends on a spherical coordinates. - * @returns result of the quadrature rule */ - virtual double IntegrateSpherical( double ( *f )( double, double ) ); - - /*! @brief Integrates vector valued f(x,y,z) with the quadrature. Each dimension is integrated by itself. - * @param f density function that depends on a three spatial dimensions. - * @param len lenght of vector - * @returns result of the quadrature rule (vector valued) */ - virtual std::vector Integrate( std::vector ( *f )( double, double, double ), unsigned len ); - - // Quadrature Hub - /*! @brief Creates a quadrature rule with a given name and a given order. - * @param settings Settings to handle quadrature options - * @returns Quadrature* quadrature: returns pointer to instance of the given derived quadrature class */ - static QuadratureBase* Create( Config* settings ); - - /*! @brief Creates a quadrature rule with a given name and a given order. - * @param name name of quadrature as enum - * @param quadOrder order of quadrature - * @returns pointer to instance of the given derived quadrature class */ - static QuadratureBase* Create( QUAD_NAME name, unsigned quadOrder ); - - // Getter - inline std::string GetName() const { return _name; } /*! @returns std::string _name: name of the quadrature */ - inline unsigned GetOrder() const { return _order; } /*! @returns unsigned _order: order of the quadrature */ - inline unsigned GetNq() const { return _nq; } /*! @returns unsigned _nq: number of gridpoints of the quadrature */ - inline VectorVector& GetPoints() const { return _pointsKarth; } /*! @returns VectorVector _points: coordinates of gridpoints of the quadrature */ - inline VectorVector& GetPointsSphere() const { - return _pointsSphere; - } /*! @returns VectorVector _pointsSphere: "---- " in spherical coordinates (my, phi)*/ - inline Vector& GetWeights() const { return _weights; } /*! @returns Vector _weights: weights of gridpoints of the quadrature */ - - /*! @returns VectorVectorU _connectivity: connectivity of gridpoints of the quadrature */ - inline VectorVectorU GetConnectivity() const { return _connectivity; } - /*!< @brief Returns approved Dimensions for this quadrature */ - inline std::vector GetSupportedDims() const { return _supportedDimensions; } - /*!< @brief Scales the quadrature weights according to the intervall [-velocityScaling , velocityScaling] in 1D - Scales the radius of the velocity sphere by velocityScaling in 2D and 3D */ - virtual void ScalePointsAndWeights( double velocityScaling ); - - protected: - // Setter - inline void SetOrder( unsigned order ) { _order = order; } /*! @brief sets: order of the quadrature */ - virtual void SetName() = 0; /*!< @brief Sets: name of the quadrature */ - virtual void SetNq() = 0; /*!< @brief sets: number of gridpoints of the quadrature */ - virtual void SetConnectivity() = 0; /*!< @brief sets: Connectivity Adjacency Matrix as VektorVektor*/ - - /*! @brief Computes the a vector (length: nq) of (coordinates of) gridpoints used for the quadrature rule. - * Computes the a vector (length: nq) of weights for the gridpoints. The indices match the gridpoints VectorVector. - * Sets computed values for _points and _weights. */ - virtual void SetPointsAndWeights() = 0; - - // Member variables - Config* _settings; /*!< @brief pointer to settings class that manages the solver */ - std::string _name; /*!< @brief name of the quadrature */ - unsigned _order; /*!< @brief order of the quadrature */ - unsigned _nq; /*!< @brief number of gridpoints of the quadrature */ - VectorVector _pointsKarth; /*!< @brief gridpoints of the quadrature */ - VectorVector _pointsSphere; /*!< @brief (my,phi,r)gridpoints of the quadrature in spherical cordinates */ - Vector _weights; /*!< @brief weights of the gridpoints of the quadrature */ - VectorVectorU _connectivity; /*!< @brief connectivity of the gripoints of the quadrature */ - std::vector _supportedDimensions; /*!< @brief number of spatial dimensions, for which the quadrature is build */ +public: + /*! @brief Constructor using settings class. This is the recommended constructor. + * @param settings Settings class storing all important options. + */ + QuadratureBase(Config *settings); + /*! @brief Constructor using directly the order of the quadrature. Not applicable for GaussLegendre, that need additional options. + It sets member _settings = nulltpr.*/ + QuadratureBase(unsigned order); + virtual ~QuadratureBase() {} + + // Aux functions + void PrintWeights(); /*!< @brief prints: Weight vector */ + void PrintPoints(); /*!< @brief prints: Point vectorVector */ + void PrintPointsAndWeights(); /*!< @brief prints: Point vectorVector with corresponding weight vector */ + + /*! @brief sums up all entries of the weight vector. + * @returns sum of all weights */ + double SumUpWeights(); + + /*! @brief Integrates f(x,y,z) with the quadrature. + * @param f density function that depends on a three spatial dimensions. + * @returns result of the quadrature rule */ + virtual double Integrate(double (*f)(double, double, double)); + + /*! @brief Integrates f(x,y,z) with the quadrature. + * @param f density function that depends on a spherical coordinates. + * @returns result of the quadrature rule */ + virtual double IntegrateSpherical(double (*f)(double, double)); + + /*! @brief Integrates vector valued f(x,y,z) with the quadrature. Each dimension is integrated by itself. + * @param f density function that depends on a three spatial dimensions. + * @param len lenght of vector + * @returns result of the quadrature rule (vector valued) */ + virtual std::vector Integrate(std::vector (*f)(double, double, double), unsigned len); + + // Quadrature Hub + /*! @brief Creates a quadrature rule with a given name and a given order. + * @param settings Settings to handle quadrature options + * @returns Quadrature* quadrature: returns pointer to instance of the given derived quadrature class */ + static QuadratureBase *Create(Config *settings); + + /*! @brief Creates a quadrature rule with a given name and a given order. + * @param name name of quadrature as enum + * @param quadOrder order of quadrature + * @returns pointer to instance of the given derived quadrature class */ + static QuadratureBase *Create(QUAD_NAME name, unsigned quadOrder); + + // Getter + inline std::string GetName() const { return _name; } /*! @returns std::string _name: name of the quadrature */ + inline unsigned GetOrder() const { return _order; } /*! @returns unsigned _order: order of the quadrature */ + inline unsigned GetNq() const { return _nq; } /*! @returns unsigned _nq: number of gridpoints of the quadrature */ + inline VectorVector &GetPoints() { return _pointsKarth; } /*! @returns VectorVector _points: coordinates of gridpoints of the quadrature */ + inline VectorVector &GetPointsSphere() + { + return _pointsSphere; + } /*! @returns VectorVector _pointsSphere: "---- " in spherical coordinates (my, phi)*/ + inline Vector &GetWeights() { return _weights; } /*! @returns Vector _weights: weights of gridpoints of the quadrature */ + + /*! @returns VectorVectorU _connectivity: connectivity of gridpoints of the quadrature */ + inline VectorVectorU GetConnectivity() const { return _connectivity; } + /*!< @brief Returns approved Dimensions for this quadrature */ + inline std::vector GetSupportedDims() const { return _supportedDimensions; } + /*!< @brief Scales the quadrature weights according to the intervall [-velocityScaling , velocityScaling] in 1D + Scales the radius of the velocity sphere by velocityScaling in 2D and 3D */ + virtual void ScalePointsAndWeights(double velocityScaling); + +protected: + // Setter + inline void SetOrder(unsigned order) { _order = order; } /*! @brief sets: order of the quadrature */ + virtual void SetName() = 0; /*!< @brief Sets: name of the quadrature */ + virtual void SetNq() = 0; /*!< @brief sets: number of gridpoints of the quadrature */ + virtual void SetConnectivity() = 0; /*!< @brief sets: Connectivity Adjacency Matrix as VektorVektor*/ + + /*! @brief Computes the a vector (length: nq) of (coordinates of) gridpoints used for the quadrature rule. + * Computes the a vector (length: nq) of weights for the gridpoints. The indices match the gridpoints VectorVector. + * Sets computed values for _points and _weights. */ + virtual void SetPointsAndWeights() = 0; + + // Member variables + Config *_settings; /*!< @brief pointer to settings class that manages the solver */ + std::string _name; /*!< @brief name of the quadrature */ + unsigned _order; /*!< @brief order of the quadrature */ + unsigned _nq; /*!< @brief number of gridpoints of the quadrature */ + VectorVector _pointsKarth; /*!< @brief gridpoints of the quadrature */ + VectorVector _pointsSphere; /*!< @brief (my,phi,r)gridpoints of the quadrature in spherical cordinates */ + Vector _weights; /*!< @brief weights of the gridpoints of the quadrature */ + VectorVectorU _connectivity; /*!< @brief connectivity of the gripoints of the quadrature */ + std::vector _supportedDimensions; /*!< @brief number of spatial dimensions, for which the quadrature is build */ }; -#endif // QUADRATURE_H +#endif // QUADRATURE_H diff --git a/include/solvers/mnsolver.hpp b/include/solvers/mnsolver.hpp index dc2b749b..0d11ac26 100644 --- a/include/solvers/mnsolver.hpp +++ b/include/solvers/mnsolver.hpp @@ -9,67 +9,102 @@ class OptimizerBase; class MNSolver : public SolverBase { - public: - /** - * @brief MNSolver constructor - * @param settings Config class that stores all needed information - */ - MNSolver( Config* settings ); - - /*! @brief MNSolver destructor */ - virtual ~MNSolver(); - - protected: - // --- Private member variables --- - unsigned _nSystem; /*!< @brief Total number of equations in the system */ - unsigned short _polyDegreeBasis; /*!< @brief Max polynomial degree of the basis */ - VectorVector _kineticDensity; /*!< @brief Kinetic density at the grid cells. dim: _nCells x _nq */ - - // Moment basis - SphericalBase* _basis; /*!< @brief Class to compute and store current spherical harmonics basis */ - VectorVector _momentBasis; /*!< @brief Moment Vector pre-computed at each quadrature point: dim= _nq x _nTotalEntries */ - - // Scattering - Vector _scatterMatDiag; /*!< @brief Diagonal of the scattering matrix (its a diagonal matrix by construction) */ - - // Quadrature related members - VectorVector _quadPoints; /*!< @brief quadrature points, dim(_quadPoints) = (_nq,spatialDim) */ - Vector _weights; /*!< @brief quadrature weights, dim(_weights) = (_nq) */ - VectorVector _quadPointsSphere; /*!< @brief (my,phi), dim(_quadPoints) = (_nq,2) */ - - // Entropy Optimization related members - EntropyBase* _entropy; /*!< @brief Class to handle entropy functionals */ - VectorVector _alpha; /*!< @brief Lagrange Multipliers for Minimal Entropy problem for each gridCell - Layout: _nCells x _nTotalEntries*/ - OptimizerBase* _optimizer; /*!< @brief Class to solve minimal entropy problem */ - - // ---- Private Member functions --- - - // IO - void PrepareVolumeOutput() override; - void WriteVolumeOutput( unsigned idx_iter ) override; - - // Solver - virtual void FVMUpdate( unsigned idx_iter ) override; - virtual void FluxUpdate() override; - virtual void IterPreprocessing( unsigned /*idx_iter*/ ) override; - virtual void IterPostprocessing( unsigned /*idx_iter*/ ) override; - - void FluxUpdatePseudo1D(); // Helper - void FluxUpdatePseudo2D(); // Helper - - /*! @brief Corrects the solution _sol[idx_cell] to be realizable w.r.t. the reconstructed entropy (eta'(alpha*m)) - @param idx_cell cell where the correction happens*/ - void ComputeRealizableSolution( unsigned idx_cell ); - - // Initialization of the solver - /*! @brief Pre-Compute Moments at all quadrature points. */ - void ComputeMoments(); - /*! @brief Function for computing and setting up EV matrix for scattering kernel */ - void ComputeScatterMatrix(); - - // Helper - /*! @brief Computes the radiative flux from the solution vector of the moment system */ - void ComputeRadFlux() override; +public: + /** + * @brief MNSolver constructor + * @param settings Config class that stores all needed information + */ + MNSolver(Config *settings); + + /*! @brief MNSolver destructor */ + virtual ~MNSolver(); + +protected: + // --- Private member variables --- + unsigned _nSystem; /*!< @brief Total number of equations in the system */ + unsigned short _polyDegreeBasis; /*!< @brief Max polynomial degree of the basis */ + VectorVector _kineticDensity; /*!< @brief Kinetic density at the grid cells. dim: _nCells x _nq */ + + // Moment basis + SphericalBase *_basis; /*!< @brief Class to compute and store current spherical harmonics basis */ + VectorVector _momentBasis; /*!< @brief Moment Vector pre-computed at each quadrature point: dim= _nq x _nTotalEntries */ + + // Scattering + Vector _scatterMatDiag; /*!< @brief Diagonal of the scattering matrix (its a diagonal matrix by construction) */ + + // Quadrature related members + VectorVector _quadPoints; /*!< @brief quadrature points, dim(_quadPoints) = (_nq,spatialDim) */ + Vector _weights; /*!< @brief quadrature weights, dim(_weights) = (_nq) */ + VectorVector _quadPointsSphere; /*!< @brief (my,phi), dim(_quadPoints) = (_nq,2) */ + + // Entropy Optimization related members + EntropyBase *_entropy; /*!< @brief Class to handle entropy functionals */ + VectorVector _alpha; /*!< @brief Lagrange Multipliers for Minimal Entropy problem for each gridCell + Layout: _nCells x _nTotalEntries*/ + OptimizerBase *_optimizer; /*!< @brief Class to solve minimal entropy problem */ + + // ---- Private Member functions --- + + // IO + void PrepareVolumeOutput() override; + void WriteVolumeOutput(unsigned idx_iter) override; + + // Solver + virtual void FVMUpdate(unsigned idx_iter) override; + virtual void FluxUpdate() override; + virtual void IterPreprocessing(unsigned /*idx_iter*/) override; + virtual void IterPostprocessing(unsigned /*idx_iter*/) override; + + void FluxUpdatePseudo1D(); // Helper + void FluxUpdatePseudo2D(); // Helper + + /*! @brief Corrects the solution _sol[idx_cell] to be realizable w.r.t. the reconstructed entropy (eta'(alpha*m)) + @param idx_cell cell where the correction happens*/ + void ComputeRealizableSolution(unsigned idx_cell); + + // Initialization of the solver + /*! @brief Pre-Compute Moments at all quadrature points. */ + void ComputeMoments(); + /*! @brief Function for computing and setting up EV matrix for scattering kernel */ + void ComputeScatterMatrix(); + + // Helper + /*! @brief Computes the radiative flux from the solution vector of the moment system */ + void ComputeRadFlux() override; + + // Output helper functions + double GetCurrentOutflow() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalOutflow(unsigned iteration) override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetMaxOutflow() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetFinalTimeAbsorption() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorption() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetMaxAbsorption() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionCenter() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionVertical() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionHorizontal() override final; }; -#endif // MNSOLVER_H +#endif // MNSOLVER_H diff --git a/include/solvers/pnsolver.hpp b/include/solvers/pnsolver.hpp index df5052c0..42193d0a 100644 --- a/include/solvers/pnsolver.hpp +++ b/include/solvers/pnsolver.hpp @@ -5,149 +5,184 @@ class PNSolver : public SolverBase { - public: - /*! @brief PNSolver constructor - * @param settings stores all needed information - */ - PNSolver( Config* settings ); - - /*! @brief PNSolver destructor */ - virtual ~PNSolver() {} - - protected: - unsigned _nSystem; /*!< @brief total number of equations in the system */ - unsigned _polyDegreeBasis; /*!< @brief maximal degree of the spherical harmonics basis*/ - - // System Matrix for x, y and z flux - // ==> not needed after computation of A+ and A- ==> maybe safe only temporarly and remove as member? - SymMatrix _Ax; /*!< @brief Flux Jacbioan in x direction */ - SymMatrix _Ay; /*!< @brief Flux Jacbioan in x direction */ - SymMatrix _Az; /*!< @brief Flux Jacbioan in x direction */ - - // Upwinding Matrices - Matrix _AxPlus; /*!< @brief Flux Jacbioan in x direction, positive part */ - Matrix _AxMinus; /*!< @brief Flux Jacbioan in x direction, negative part */ - Matrix _AxAbs; /*!< @brief Flux Jacbioan in x direction, absolute part */ - Matrix _AyPlus; /*!< @brief Flux Jacbioan in y direction, positive part */ - Matrix _AyMinus; /*!< @brief Flux Jacbioan in y direction, negative part */ - Matrix _AyAbs; /*!< @brief Flux Jacbioan in y direction, absolute part */ - Matrix _AzPlus; /*!< @brief Flux Jacbioan in z direction, positive part */ - Matrix _AzMinus; /*!< @brief Flux Jacbioan in z direction, negative part */ - Matrix _AzAbs; /*!< @brief Flux Jacbioan in z direction, absolute part */ - - Vector _scatterMatDiag; /*!< @brief diagonal of the scattering matrix (its a diagonal matrix by construction). Contains eigenvalues of the - scattering kernel. */ - - // ---- Member functions ---- - - // IO - void PrepareVolumeOutput() override; - void WriteVolumeOutput( unsigned idx_pseudoTime ) override; - - // Solver - void FVMUpdate( unsigned idx_energy ) override; - void FluxUpdate() override; - void IterPreprocessing( unsigned idx_pseudotime ) override; - void IterPostprocessing( unsigned idx_pseudotime ) override; - - // Helper - void ComputeRadFlux() override; - - // Initialization of the Solver - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double AParam( int l, int k ) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double BParam( int l, int k ) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double CParam( int l, int k ) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double DParam( int l, int k ) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double EParam( int l, int k ) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double FParam( int l, int k ) const; - - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double CTilde( int l, int k ) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double DTilde( int l, int k ) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double ETilde( int l, int k ) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double FTilde( int l, int k ) const; - - /*! @brief mathematical + index functions. Helper functions for setting up system matrix. - * @param k: arbitrary integer - */ - int Sgn( int k ) const; - /*! @brief mathematical + index functions. Helper functions for setting up system matrix. - * @param k arbitrary integer - */ - int kPlus( int k ) const; - /*! @brief mathematical + index functions. Helper functions for setting up system matrix. - * @param k arbitrary integer - */ - int kMinus( int k ) const; - - /*! @brief computes the global index of the moment corresponding to basis function (l,k) - * @param l degree l, it must hold: 0 <= l <=_nq - * @param k order k, it must hold: -l <=k <= l - * @returns global index - */ - int GlobalIndex( int l, int k ) const; - - /*! @brief Checks, if index invariant for global index holds - * @returns True, if invariant holds, else false - */ - bool CheckIndex( int l, int k ) const; - - /*! @brief Function for computing and setting up system matrices */ - void ComputeSystemMatrices(); - /*! @brief Function for computing and setting up flux matrices for upwinding */ - void ComputeFluxComponents(); - /*! @brief Function for computing and setting up EV matrix for scattering kernel */ - void ComputeScatterMatrix(); - /*! @brief Computes Legedre polinomial of oder l at point x */ - double LegendrePoly( double x, int l ); - - /*! @brief Sets Entries of FluxMatrices to zero, if they are below double precision, - * to prevent floating point inaccuracies later in the solver */ - void CleanFluxMatrices(); - - /*! @brief Flux update version for Pseudo1D */ - void FluxUpdatePseudo1D(); - /*! @brief Flux update version for Pseudo2D */ - void FluxUpdatePseudo2D(); +public: + /*! @brief PNSolver constructor + * @param settings stores all needed information + */ + PNSolver(Config *settings); + + /*! @brief PNSolver destructor */ + virtual ~PNSolver() {} + +protected: + unsigned _nSystem; /*!< @brief total number of equations in the system */ + unsigned _polyDegreeBasis; /*!< @brief maximal degree of the spherical harmonics basis*/ + + // System Matrix for x, y and z flux + // ==> not needed after computation of A+ and A- ==> maybe safe only temporarly and remove as member? + SymMatrix _Ax; /*!< @brief Flux Jacbioan in x direction */ + SymMatrix _Ay; /*!< @brief Flux Jacbioan in x direction */ + SymMatrix _Az; /*!< @brief Flux Jacbioan in x direction */ + + // Upwinding Matrices + Matrix _AxPlus; /*!< @brief Flux Jacbioan in x direction, positive part */ + Matrix _AxMinus; /*!< @brief Flux Jacbioan in x direction, negative part */ + Matrix _AxAbs; /*!< @brief Flux Jacbioan in x direction, absolute part */ + Matrix _AyPlus; /*!< @brief Flux Jacbioan in y direction, positive part */ + Matrix _AyMinus; /*!< @brief Flux Jacbioan in y direction, negative part */ + Matrix _AyAbs; /*!< @brief Flux Jacbioan in y direction, absolute part */ + Matrix _AzPlus; /*!< @brief Flux Jacbioan in z direction, positive part */ + Matrix _AzMinus; /*!< @brief Flux Jacbioan in z direction, negative part */ + Matrix _AzAbs; /*!< @brief Flux Jacbioan in z direction, absolute part */ + + Vector _scatterMatDiag; /*!< @brief diagonal of the scattering matrix (its a diagonal matrix by construction). Contains eigenvalues of the + scattering kernel. */ + + // ---- Member functions ---- + + // IO + void PrepareVolumeOutput() override; + void WriteVolumeOutput(unsigned idx_pseudoTime) override; + + // Solver + void FVMUpdate(unsigned idx_energy) override; + void FluxUpdate() override; + void IterPreprocessing(unsigned idx_pseudotime) override; + void IterPostprocessing(unsigned idx_pseudotime) override; + + // Helper + void ComputeRadFlux() override; + + // Initialization of the Solver + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double AParam(int l, int k) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double BParam(int l, int k) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double CParam(int l, int k) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double DParam(int l, int k) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double EParam(int l, int k) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double FParam(int l, int k) const; + + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double CTilde(int l, int k) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double DTilde(int l, int k) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double ETilde(int l, int k) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double FTilde(int l, int k) const; + + /*! @brief mathematical + index functions. Helper functions for setting up system matrix. + * @param k: arbitrary integer + */ + int Sgn(int k) const; + /*! @brief mathematical + index functions. Helper functions for setting up system matrix. + * @param k arbitrary integer + */ + int kPlus(int k) const; + /*! @brief mathematical + index functions. Helper functions for setting up system matrix. + * @param k arbitrary integer + */ + int kMinus(int k) const; + + /*! @brief computes the global index of the moment corresponding to basis function (l,k) + * @param l degree l, it must hold: 0 <= l <=_nq + * @param k order k, it must hold: -l <=k <= l + * @returns global index + */ + int GlobalIndex(int l, int k) const; + + /*! @brief Checks, if index invariant for global index holds + * @returns True, if invariant holds, else false + */ + bool CheckIndex(int l, int k) const; + + /*! @brief Function for computing and setting up system matrices */ + void ComputeSystemMatrices(); + /*! @brief Function for computing and setting up flux matrices for upwinding */ + void ComputeFluxComponents(); + /*! @brief Function for computing and setting up EV matrix for scattering kernel */ + void ComputeScatterMatrix(); + /*! @brief Computes Legedre polinomial of oder l at point x */ + double LegendrePoly(double x, int l); + + /*! @brief Sets Entries of FluxMatrices to zero, if they are below double precision, + * to prevent floating point inaccuracies later in the solver */ + void CleanFluxMatrices(); + + /*! @brief Flux update version for Pseudo1D */ + void FluxUpdatePseudo1D(); + /*! @brief Flux update version for Pseudo2D */ + void FluxUpdatePseudo2D(); + + // Output helper functions + double GetCurrentOutflow() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalOutflow(unsigned iteration) override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetMaxOutflow() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetFinalTimeAbsorption() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorption() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetMaxAbsorption() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionCenter() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionVertical() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionHorizontal() override final; }; -#endif // PNSOLVER_H +#endif // PNSOLVER_H diff --git a/include/solvers/snsolver.hpp b/include/solvers/snsolver.hpp index 79d4a5a7..15e2507e 100644 --- a/include/solvers/snsolver.hpp +++ b/include/solvers/snsolver.hpp @@ -3,25 +3,26 @@ #include "solvers/solverbase.hpp" -class SNSolver : public SolverBase { - protected: +class SNSolver : public SolverBase +{ +protected: Matrix _scatteringKernel; /*!< @brief scattering kernel for the quadrature */ // quadrature related numbers VectorVector _quadPoints; /*!< @brief quadrature points, dim(_quadPoints) = (_nq,spatialDim) */ - Vector _weights; /*!< @brief quadrature weights, dim(_weights) = (_nq) */ + Vector _weights; /*!< @brief quadrature weights, dim(_weights) = (_nq) */ - public: +public: /*! @brief SNSolver constructor * @param settings stores all needed information */ - SNSolver(Config* settings); + SNSolver(Config *settings); virtual ~SNSolver() {} - protected: +protected: // IO void virtual PrepareVolumeOutput() override; void virtual WriteVolumeOutput(unsigned idx_pseudoTime) override; @@ -34,8 +35,8 @@ class SNSolver : public SolverBase { // Helper void ComputeRadFlux() override; - void FluxUpdatePseudo1D(); // Helper - void FluxUpdatePseudo2D(); // Helper + void FluxUpdatePseudo1D(); // Helper + void FluxUpdatePseudo2D(); // Helper // --- Member variables --- @@ -45,43 +46,39 @@ class SNSolver : public SolverBase { * */ - virtual Vector& GetFinalTimeOutflow() override final; + double GetCurrentOutflow() override final; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetTotalOutflow(const VectorVector& sol) override final; + double GetTotalOutflow(unsigned iteration) override final; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetMaxOutflow(const VectorVector& sol) override final; + double GetMaxOutflow() override final; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetFinalTimeAbsorption( - const VectorVector& sol) override final; + double GetFinalTimeAbsorption() override final; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetTotalAbsorption(const VectorVector& sol) override final; + double GetTotalAbsorption() override final; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetMaxAbsorption(const VectorVector& sol) override final; + double GetMaxAbsorption() override final; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetTotalAbsorptionCenter( - const VectorVector& sol) override final; + double GetTotalAbsorptionCenter() override final; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetTotalAbsorptionVertical( - const VectorVector& sol) override final; + double GetTotalAbsorptionVertical() override final; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetTotalAbsorptionHorizontal( - const VectorVector& sol) override final; + double GetTotalAbsorptionHorizontal() override final; }; -#endif // SNSOLVER_H +#endif // SNSOLVER_H diff --git a/include/solvers/solverbase.hpp b/include/solvers/solverbase.hpp index 7608aa02..8123c8a4 100644 --- a/include/solvers/solverbase.hpp +++ b/include/solvers/solverbase.hpp @@ -19,183 +19,205 @@ class Reconstructor; /*! @brief Base class for all solvers. */ class SolverBase { - protected: - NumericalFluxBase* _g; /*!< @brief class for numerical flux */ - Config* _settings; /*!< @brief config class for global information */ - ProblemBase* _problem; /*!< @brief problem class for initial conditions */ +protected: + NumericalFluxBase *_g; /*!< @brief class for numerical flux */ + Config *_settings; /*!< @brief config class for global information */ + ProblemBase *_problem; /*!< @brief problem class for initial conditions */ // --------- Often used variables of member classes for faster access ---- // Time or Energystepping - unsigned _maxIter; /*!< @brief number of time steps, for non CSD, this equals _nEnergies, for _csd, _maxIter = _nEnergies-1*/ - unsigned _nEnergies; /*!< @brief number of energysteps, number of nodal energy values for CSD */ + unsigned _maxIter; /*!< @brief number of time steps, for non CSD, this equals + _nEnergies, for _csd, _maxIter = _nEnergies-1*/ + unsigned _nEnergies; /*!< @brief number of energysteps, number of nodal energy + values for CSD */ double _dE; /*!< @brief energy/time step size */ Vector _energies; /*!< @brief energy groups used in the simulation [keV] */ // Mesh related members - Mesh* _mesh; /*!< @brief mesh object for writing out information */ - unsigned _nCells; /*!< @brief number of spatial cells */ - std::vector _boundaryCells; /*!< @brief boundary type for all cells, dim(_boundary) = (_NCells) */ - std::vector _areas; /*!< @brief surface area of all spatial cells, dim(_areas) = _NCells */ + Mesh *_mesh; /*!< @brief mesh object for writing out information */ + unsigned _nCells; /*!< @brief number of spatial cells */ + std::vector + _boundaryCells; /*!< @brief boundary type for all cells, dim(_boundary) = + (_NCells) */ + std::vector _areas; /*!< @brief surface area of all spatial cells, + dim(_areas) = _NCells */ std::vector> - _normals; /*!< @brief edge normals multiplied by edge length, dim(_normals) = (_NCells,nEdgesPerCell,spatialDim) */ - std::vector> _neighbors; /*!< @brief edge neighbor cell ids, dim(_neighbors) = (_NCells,nEdgesPerCell) */ + _normals; /*!< @brief edge normals multiplied by edge length, + dim(_normals) = (_NCells,nEdgesPerCell,spatialDim) */ + std::vector> + _neighbors; /*!< @brief edge neighbor cell ids, dim(_neighbors) = + (_NCells,nEdgesPerCell) */ // slope related params - Reconstructor* _reconstructor; /*!< @brief reconstructor object for high-order scheme */ + Reconstructor *_reconstructor; /*!< @brief reconstructor object for high-order scheme */ unsigned _reconsOrder; /*!< @brief reconstruction order (current: 1 & 2) */ VectorVector _cellMidPoints; /*!< @brief middle point locations of elements */ std::vector> _interfaceMidPoints; /*!< @brief middle point locations of edges */ std::vector _density; /*!< @brief patient density, dim(_density) = _nCells (only for csdsolver) */ Vector _s; /*!< @brief stopping power, dim(_s) = _maxIter (only for csdsolver) */ - Vector _sMid; /*!< @brief stopping power at intermediate time steps, dim(_s) = _maxIter (only for csdsolver) */ + Vector _sMid; /*!< @brief stopping power at intermediate time steps, dim(_s) = + _maxIter (only for csdsolver) */ std::vector _Q; /*!< @brief external source term. Dim(_Q) = _maxIter x (_nCells x _nSystem) */ VectorVector _sigmaS; /*!< @brief scattering cross section for all energies. len: _nEnergies x _nCells */ - VectorVector _sigmaT; /*!< @brief total cross section for all energies. len: _nEnergies x _nCells*/ + VectorVector _sigmaT; /*!< @brief total cross section for all energies. len:_nEnergies x _nCells*/ // quadrature related numbers - QuadratureBase* _quadrature; /*!< @brief pointer to quadrature class */ + QuadratureBase *_quadrature; /*!< @brief pointer to quadrature class */ unsigned _nq; /*!< @brief number of quadrature points */ // Solution related members VectorVector _sol; /*!< @brief solution of the PDE, e.g. angular flux or moments */ - VectorVector _solNew; /*!< @brief VectorVector to store the new flux and later the new solution per iteration */ + VectorVector _solNew; /*!< @brief VectorVector to store the new flux and later + the new solution per iteration */ Vector _fluxNew; /*!< @brief Vector to store the new Flux. Dim _nCells */ Vector _flux; /*!< @brief Vector to store the old Flux. Dim _nCells*/ - // solution gradient and limiter for each cell and each system var. dim: _nCells x nSys. nSys depents on the solver (either moments or quadpts) + // solution gradient and limiter for each cell and each system var. dim: + // _nCells x nSys. nSys depents on the solver (either moments or quadpts) VectorVector _solDx; /*!< @brief solution gradient in x direction*/ VectorVector _solDy; /*!< @brief solution gradient in y direction*/ VectorVector _limiter; /*! < @brief slope limiter at cell and system pt */ - std::vector _solverOutput; /*!< @brief LEGACY: Outputfield for solver ==> Will be replaced by _outputFields in the near future */ + std::vector _solverOutput; /*!< @brief LEGACY: Outputfield for solver ==> Will be + replaced by _outputFields in the near future */ // Output related members - std::vector>> _outputFields; /*!< @brief Solver Output: dimensions (GroupID,FieldID,CellID).*/ - std::vector> _outputFieldNames; /*!< @brief Names of the outputFields: dimensions (GroupID,FieldID) */ - // we will have to add a further dimension for quadPoints and weights once we start with multilevel SN + std::vector>> _outputFields; /*!< @brief Solver Output: dimensions + (GroupID,FieldID,CellID).*/ + std::vector> _outputFieldNames; /*!< @brief Names of the outputFields: dimensions + (GroupID,FieldID) */ - // Output related members std::vector _screenOutputFields; /*!< @brief Solver Output: dimensions (FieldID). */ std::vector _screenOutputFieldNames; /*!< @brief Names of the outputFields: dimensions (FieldID) */ - // Output related members std::vector _historyOutputFields; /*!< @brief Solver Output: dimensions (FieldID). */ std::vector _historyOutputFieldNames; /*!< @brief Names of the outputFields: dimensions (FieldID) */ + Vector _timeDependentOutflow; /*!< @brief Outflow over boundary at each time step */ // ---- Member functions ---- // Solver - /*! @brief Performs preprocessing steps before the pseudo time iteration is started*/ + /*! @brief Performs preprocessing steps before the pseudo time iteration is + * started*/ virtual void SolverPreprocessing(); /*! @brief Performs preprocessing for the current solver iteration @param idx_iter current (peudo) time iteration */ - virtual void IterPreprocessing( unsigned idx_iter ) = 0; + virtual void IterPreprocessing(unsigned idx_iter) = 0; /*! @brief Performs postprocessing for the current solver iteration */ - virtual void IterPostprocessing( unsigned idx_pseudotime ) = 0; - /*! @brief Constructs the flux update for the current iteration and stores it in psiNew*/ + virtual void IterPostprocessing(unsigned idx_pseudotime) = 0; + /*! @brief Constructs the flux update for the current iteration and stores it + * in psiNew*/ virtual void FluxUpdate() = 0; /*! @brief Computes the finite Volume update step for the current iteration @param idx_iter current (peudo) time iteration */ - virtual void FVMUpdate( unsigned idx_iter ) = 0; + virtual void FVMUpdate(unsigned idx_iter) = 0; /*! @brief Computes the finite Volume update step for the current iteration @param idx_iter current (peudo) time iteration */ - virtual void RKUpdate( VectorVector sol0, VectorVector sol_rk ); + virtual void RKUpdate(VectorVector sol0, VectorVector sol_rk); // Helper - /*! @brief ComputeTimeStep calculates the maximal stable time step using the cfl number + /*! @brief ComputeTimeStep calculates the maximal stable time step using the + cfl number @param cfl Courant-Friedrichs-Levy condition number */ - double ComputeTimeStep( double cfl ) const; - /*! @brief Computes the flux of the solution to check conservation properties */ + double ComputeTimeStep(double cfl) const; + /*! @brief Computes the flux of the solution to check conservation properties + */ virtual void ComputeRadFlux() = 0; // IO - /*! @brief Initializes the output groups and fields of this solver and names the fields */ + /*! @brief Initializes the output groups and fields of this solver and names + * the fields */ virtual void PrepareVolumeOutput() = 0; - /*! @brief Function that prepares VTK export and csv export of the current solver iteration + /*! @brief Function that prepares VTK export and csv export of the current + solver iteration @param idx_iter current (pseudo) time iteration */ - virtual void WriteVolumeOutput( unsigned idx_iter ) = 0; - /*! @brief Save Output solution at given energy (pseudo time) to VTK file. Write frequency is given by - option VOLUME_OUTPUT_FREQUENCY. Always prints last iteration without iteration affix. + virtual void WriteVolumeOutput(unsigned idx_iter) = 0; + /*! @brief Save Output solution at given energy (pseudo time) to VTK file. + Write frequency is given by option VOLUME_OUTPUT_FREQUENCY. Always prints + last iteration without iteration affix. @param idx_iter current (pseudo) time iteration */ - void PrintVolumeOutput( int idx_iter ) const; - /*! @brief Initialized the output fields and their Names for the screenoutput */ + void PrintVolumeOutput(int idx_iter) const; + /*! @brief Initialized the output fields and their Names for the screenoutput + */ void PrepareScreenOutput(); /*! @brief Function that writes screen and history output fields @param idx_iter current (pseudo) time iteration */ - void WriteScalarOutput( unsigned idx_iter ); - /*! @brief Prints ScreenOutputFields to Screen and to logger. Write frequency is given by - option SCREEN_OUTPUT_FREQUENCY. Always prints last iteration. + void WriteScalarOutput(unsigned idx_iter); + /*! @brief Prints ScreenOutputFields to Screen and to logger. Write frequency + is given by option SCREEN_OUTPUT_FREQUENCY. Always prints last iteration. @param idx_iter current (pseudo) time iteration */ - void PrintScreenOutput( unsigned idx_iter ); - /*! @brief Initialized the historyOutputFields and their Names for history output. Write frequency is given by - option HISTORY_OUTPUT_FREQUENCY. Always prints last iteration. */ + void PrintScreenOutput(unsigned idx_iter); + /*! @brief Initialized the historyOutputFields and their Names for history + output. Write frequency is given by option HISTORY_OUTPUT_FREQUENCY. Always + prints last iteration. */ void PrepareHistoryOutput(); /*! @brief Prints HistoryOutputFields to logger @param idx_iter current (pseudo) time iteration */ - void PrintHistoryOutput( unsigned idx_iter ); + void PrintHistoryOutput(unsigned idx_iter); /*! @brief Pre Solver Screen and Logger Output */ void DrawPreSolverOutput(); /*! @brief Post Solver Screen and Logger Output */ void DrawPostSolverOutput(); // Scalar output helper functions - /** + /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetFinalTimeOutflow( const VectorVector& sol, const VectorVector& sol _quadPoints ); + virtual double GetCurrentOutflow() = 0; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetTotalOutflow( const VectorVector& sol ); + virtual double GetTotalOutflow(unsigned iteration) = 0; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetMaxOutflow( const VectorVector& sol ); + virtual double GetMaxOutflow() = 0; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetFinalTimeAbsorption( const VectorVector& sol ); + virtual double GetFinalTimeAbsorption() = 0; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetTotalAbsorption( const VectorVector& sol ); - /** + virtual double GetTotalAbsorption() = 0; + /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetMaxAbsorption( const VectorVector& sol ); + virtual double GetMaxAbsorption() = 0; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetTotalAbsorptionCenter( const VectorVector& sol ); + virtual double GetTotalAbsorptionCenter() = 0; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetTotalAbsorptionVertical( const VectorVector& sol ); + virtual double GetTotalAbsorptionVertical() = 0; /** * @brief Computes Problemspecific Scalar QOI */ - virtual Vector& GetTotalAbsorptionHorizontal( const VectorVector& sol ); + virtual double GetTotalAbsorptionHorizontal() = 0; - public: +public: /*! @brief Solver constructor * @param settings config class that stores all needed config information */ - SolverBase( Config* settings ); + SolverBase(Config *settings); virtual ~SolverBase(); /*! @brief Create constructor * @param settings config class that stores all needed config information * @return pointer to SolverBase */ - static SolverBase* Create( Config* settings ); + static SolverBase *Create(Config *settings); - /*! @brief Solve functions runs main iteration loop. Components of the solve loop are pure virtual and subclassed by the child solvers. */ + /*! @brief Solve functions runs main iteration loop. Components of the solve + * loop are pure virtual and subclassed by the child solvers. */ virtual void Solve(); /*! @brief Save Output solution to VTK file */ - void PrintVolumeOutput() const; // Only for debugging purposes. + void PrintVolumeOutput() const; // Only for debugging purposes. }; -#endif // SOLVER_H +#endif // SOLVER_H diff --git a/src/common/config.cpp b/src/common/config.cpp index 442175be..666b03a2 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -23,14 +23,15 @@ using namespace std; -Config::Config( string case_filename ) { +Config::Config(string case_filename) +{ /*--- Set the case name to the base config file name without extension ---*/ - auto cwd = std::filesystem::current_path(); - auto relPath = std::filesystem::relative( std::filesystem::path( case_filename ), cwd ); - _fileName = relPath.filename().string(); - _inputDir = cwd.string() + "/" + relPath.parent_path().string(); + auto cwd = std::filesystem::current_path(); + auto relPath = std::filesystem::relative(std::filesystem::path(case_filename), cwd); + _fileName = relPath.filename().string(); + _inputDir = cwd.string() + "/" + relPath.parent_path().string(); _baseConfig = true; @@ -47,7 +48,7 @@ Config::Config( string case_filename ) { /*--- Parsing the config file ---*/ - SetConfigParsing( case_filename ); + SetConfigParsing(case_filename); /*--- Set the default values for all of the options that weren't set ---*/ @@ -72,11 +73,13 @@ Config::Config( string case_filename ) { SetOutput(); } -Config::~Config( void ) { +Config::~Config(void) +{ // Delete all introduced arrays! // delete _option map values proberly - for( auto const& x : _optionMap ) { + for (auto const &x : _optionMap) + { delete x.second; //_optionMap.erase( x.first ); } @@ -85,117 +88,135 @@ Config::~Config( void ) { // ---- Add Options ---- // Simple Options -void Config::AddBoolOption( const string name, bool& option_field, bool default_value ) { +void Config::AddBoolOption(const string name, bool &option_field, bool default_value) +{ // Check if the key is already in the map. If this fails, it is coder error // and not user error, so throw. - assert( _optionMap.find( name ) == _optionMap.end() ); + assert(_optionMap.find(name) == _optionMap.end()); // Add this option to the list of all the options - _allOptions.insert( pair( name, true ) ); + _allOptions.insert(pair(name, true)); // Create the parser for a bool option with a reference to the option_field and the desired // default value. This will take the string in the config file, convert it to a bool, and // place that bool in the memory location specified by the reference. - OptionBase* val = new OptionBool( name, option_field, default_value ); + OptionBase *val = new OptionBool(name, option_field, default_value); // Create an association between the option name ("CFL") and the parser generated above. // During configuration, the parsing script will get the option name, and use this map // to find how to parse that option. - _optionMap.insert( pair( name, val ) ); + _optionMap.insert(pair(name, val)); } -void Config::AddDoubleOption( const string name, double& option_field, double default_value ) { - assert( _optionMap.find( name ) == _optionMap.end() ); - _allOptions.insert( pair( name, true ) ); - OptionBase* val = new OptionDouble( name, option_field, default_value ); - _optionMap.insert( pair( name, val ) ); +void Config::AddDoubleOption(const string name, double &option_field, double default_value) +{ + assert(_optionMap.find(name) == _optionMap.end()); + _allOptions.insert(pair(name, true)); + OptionBase *val = new OptionDouble(name, option_field, default_value); + _optionMap.insert(pair(name, val)); } -void Config::AddIntegerOption( const string name, int& option_field, int default_value ) { - assert( _optionMap.find( name ) == _optionMap.end() ); - _allOptions.insert( pair( name, true ) ); - OptionBase* val = new OptionInt( name, option_field, default_value ); - _optionMap.insert( pair( name, val ) ); +void Config::AddIntegerOption(const string name, int &option_field, int default_value) +{ + assert(_optionMap.find(name) == _optionMap.end()); + _allOptions.insert(pair(name, true)); + OptionBase *val = new OptionInt(name, option_field, default_value); + _optionMap.insert(pair(name, val)); } -void Config::AddLongOption( const string name, long& option_field, long default_value ) { - assert( _optionMap.find( name ) == _optionMap.end() ); - _allOptions.insert( pair( name, true ) ); - OptionBase* val = new OptionLong( name, option_field, default_value ); - _optionMap.insert( pair( name, val ) ); +void Config::AddLongOption(const string name, long &option_field, long default_value) +{ + assert(_optionMap.find(name) == _optionMap.end()); + _allOptions.insert(pair(name, true)); + OptionBase *val = new OptionLong(name, option_field, default_value); + _optionMap.insert(pair(name, val)); } -void Config::AddStringOption( const string name, string& option_field, string default_value ) { - assert( _optionMap.find( name ) == _optionMap.end() ); - _allOptions.insert( pair( name, true ) ); - OptionBase* val = new OptionString( name, option_field, default_value ); - _optionMap.insert( pair( name, val ) ); +void Config::AddStringOption(const string name, string &option_field, string default_value) +{ + assert(_optionMap.find(name) == _optionMap.end()); + _allOptions.insert(pair(name, true)); + OptionBase *val = new OptionString(name, option_field, default_value); + _optionMap.insert(pair(name, val)); } -void Config::AddUnsignedLongOption( const string name, unsigned long& option_field, unsigned long default_value ) { - assert( _optionMap.find( name ) == _optionMap.end() ); - _allOptions.insert( pair( name, true ) ); - OptionBase* val = new OptionULong( name, option_field, default_value ); - _optionMap.insert( pair( name, val ) ); +void Config::AddUnsignedLongOption(const string name, unsigned long &option_field, unsigned long default_value) +{ + assert(_optionMap.find(name) == _optionMap.end()); + _allOptions.insert(pair(name, true)); + OptionBase *val = new OptionULong(name, option_field, default_value); + _optionMap.insert(pair(name, val)); } -void Config::AddUnsignedShortOption( const string name, unsigned short& option_field, unsigned short default_value ) { - assert( _optionMap.find( name ) == _optionMap.end() ); - _allOptions.insert( pair( name, true ) ); - OptionBase* val = new OptionUShort( name, option_field, default_value ); - _optionMap.insert( pair( name, val ) ); +void Config::AddUnsignedShortOption(const string name, unsigned short &option_field, unsigned short default_value) +{ + assert(_optionMap.find(name) == _optionMap.end()); + _allOptions.insert(pair(name, true)); + OptionBase *val = new OptionUShort(name, option_field, default_value); + _optionMap.insert(pair(name, val)); } // enum types work differently than all of the others because there are a small number of valid // string entries for the type. One must also provide a list of all the valid strings of that type. -template void Config::AddEnumOption( const string name, Tenum& option_field, const map& enum_map, Tenum default_value ) { - assert( _optionMap.find( name ) == _optionMap.end() ); - _allOptions.insert( pair( name, true ) ); - OptionBase* val = new OptionEnum( name, enum_map, option_field, default_value ); - _optionMap.insert( pair( name, val ) ); +template +void Config::AddEnumOption(const string name, Tenum &option_field, const map &enum_map, Tenum default_value) +{ + assert(_optionMap.find(name) == _optionMap.end()); + _allOptions.insert(pair(name, true)); + OptionBase *val = new OptionEnum(name, enum_map, option_field, default_value); + _optionMap.insert(pair(name, val)); return; } // List Options -void Config::AddStringListOption( const string name, unsigned short& num_marker, std::vector& option_field ) { - assert( _optionMap.find( name ) == _optionMap.end() ); - _allOptions.insert( pair( name, true ) ); - OptionBase* val = new OptionStringList( name, num_marker, option_field ); - _optionMap.insert( pair( name, val ) ); +void Config::AddStringListOption(const string name, unsigned short &num_marker, std::vector &option_field) +{ + assert(_optionMap.find(name) == _optionMap.end()); + _allOptions.insert(pair(name, true)); + OptionBase *val = new OptionStringList(name, num_marker, option_field); + _optionMap.insert(pair(name, val)); } template -void Config::AddEnumListOption( const std::string name, - unsigned short& input_size, - std::vector& option_field, - const map& enum_map ) { +void Config::AddEnumListOption(const std::string name, + unsigned short &input_size, + std::vector &option_field, + const map &enum_map) +{ input_size = 0; - assert( _optionMap.find( name ) == _optionMap.end() ); - _allOptions.insert( pair( name, true ) ); - OptionBase* val = new OptionEnumList( name, enum_map, option_field, input_size ); - _optionMap.insert( pair( name, val ) ); + assert(_optionMap.find(name) == _optionMap.end()); + _allOptions.insert(pair(name, true)); + OptionBase *val = new OptionEnumList(name, enum_map, option_field, input_size); + _optionMap.insert(pair(name, val)); } // ---- Getter Functions ---- -BOUNDARY_TYPE Config::GetBoundaryType( std::string name ) const { - for( unsigned i = 0; i < _boundaries.size(); ++i ) { - if( name == _boundaries[i].first ) return _boundaries[i].second; +BOUNDARY_TYPE Config::GetBoundaryType(std::string name) const +{ + for (unsigned i = 0; i < _boundaries.size(); ++i) + { + if (name == _boundaries[i].first) + return _boundaries[i].second; } return BOUNDARY_TYPE::INVALID; } // ---- Setter Functions ---- -void Config::SetDefault() { +void Config::SetDefault() +{ /*--- Set the default values for all of the options that weren't set ---*/ - for( map::iterator iter = _allOptions.begin(); iter != _allOptions.end(); ++iter ) { - if( _optionMap[iter->first]->GetValue().size() == 0 ) _optionMap[iter->first]->SetDefault(); + for (map::iterator iter = _allOptions.begin(); iter != _allOptions.end(); ++iter) + { + if (_optionMap[iter->first]->GetValue().size() == 0) + _optionMap[iter->first]->SetDefault(); } } -void Config::SetConfigOptions() { +void Config::SetConfigOptions() +{ /* BEGIN_CONFIG_OPTIONS */ @@ -204,253 +225,261 @@ void Config::SetConfigOptions() { // File Structure related options /*! @brief OUTPUT_DIR \n DESCRIPTION: Relative Directory of output files \n DEFAULT "/out" @ingroup Config.*/ - AddStringOption( "OUTPUT_DIR", _outputDir, string( "/out" ) ); + AddStringOption("OUTPUT_DIR", _outputDir, string("/out")); /*! @brief OUTPUT_FILE \n DESCRIPTION: Name of output file \n DEFAULT "output" @ingroup Config.*/ - AddStringOption( "OUTPUT_FILE", _outputFile, string( "output" ) ); + AddStringOption("OUTPUT_FILE", _outputFile, string("output")); /*! @brief LOG_DIR \n DESCRIPTION: Relative Directory of log files \n DEFAULT "/out" @ingroup Config.*/ - AddStringOption( "LOG_DIR", _logDir, string( "/out/logs" ) ); + AddStringOption("LOG_DIR", _logDir, string("/out/logs")); /*! @brief LOG_DIR \n DESCRIPTION: Name of log files \n DEFAULT "/out" @ingroup Config.*/ - AddStringOption( "LOG_FILE", _logFileName, string( "use_date" ) ); + AddStringOption("LOG_FILE", _logFileName, string("use_date")); /*! @brief MESH_FILE \n DESCRIPTION: Name of mesh file \n DEFAULT "" \ingroup Config.*/ - AddStringOption( "MESH_FILE", _meshFile, string( "mesh.su2" ) ); + AddStringOption("MESH_FILE", _meshFile, string("mesh.su2")); /*! @brief MESH_FILE \n DESCRIPTION: Name of mesh file \n DEFAULT "" \ingroup Config.*/ - AddStringOption( "CT_FILE", _ctFile, string( "/home/pia/kitrt/examples/meshes/phantom.png" ) ); + AddStringOption("CT_FILE", _ctFile, string("/home/pia/kitrt/examples/meshes/phantom.png")); // Quadrature relatated options /*! @brief QUAD_TYPE \n DESCRIPTION: Type of Quadrature rule \n Options: see @link QUAD_NAME \endlink \n DEFAULT: QUAD_MonteCarlo * \ingroup Config */ - AddEnumOption( "QUAD_TYPE", _quadName, Quadrature_Map, QUAD_MonteCarlo ); + AddEnumOption("QUAD_TYPE", _quadName, Quadrature_Map, QUAD_MonteCarlo); /*!\brief QUAD_ORDER \n DESCRIPTION: Order of Quadrature rule \n DEFAULT 2 \ingroup Config.*/ - AddUnsignedShortOption( "QUAD_ORDER", _quadOrder, 1 ); + AddUnsignedShortOption("QUAD_ORDER", _quadOrder, 1); // Solver related options /*! @brief MAX_MOMENT_ORDER \n: DESCRIPTON: Specifies the maximal order of Moments for PN and SN Solver */ - AddUnsignedShortOption( "MAX_MOMENT_SOLVER", _maxMomentDegree, 1 ); + AddUnsignedShortOption("MAX_MOMENT_SOLVER", _maxMomentDegree, 1); /*! @brief CFL \n DESCRIPTION: CFL number \n DEFAULT 1.0 @ingroup Config.*/ - AddDoubleOption( "CFL_NUMBER", _CFL, 1.0 ); + AddDoubleOption("CFL_NUMBER", _CFL, 1.0); /*! @brief TIME_FINAL \n DESCRIPTION: Final time for simulation \n DEFAULT 1.0 @ingroup Config.*/ - AddDoubleOption( "TIME_FINAL", _tEnd, 1.0 ); + AddDoubleOption("TIME_FINAL", _tEnd, 1.0); /*! @brief Problem \n DESCRIPTION: Type of problem setting \n DEFAULT PROBLEM_ElectronRT @ingroup Config.*/ - AddEnumOption( "PROBLEM", _problemName, Problem_Map, PROBLEM_Linesource ); + AddEnumOption("PROBLEM", _problemName, Problem_Map, PROBLEM_Linesource); /*! @brief Solver \n DESCRIPTION: Solver used for problem \n DEFAULT SN_SOLVER @ingroup Config. */ - AddEnumOption( "SOLVER", _solverName, Solver_Map, SN_SOLVER ); + AddEnumOption("SOLVER", _solverName, Solver_Map, SN_SOLVER); /*! @brief RECONS_ORDER \n DESCRIPTION: Reconstruction order for solver (spatial flux) \n DEFAULT 1 \ingroup Config.*/ - AddUnsignedShortOption( "RECONS_ORDER", _reconsOrder, 1 ); + AddUnsignedShortOption("RECONS_ORDER", _reconsOrder, 1); /*! @brief CleanFluxMatrices \n DESCRIPTION: If true, very low entries (10^-10 or smaller) of the flux matrices will be set to zero, * to improve floating point accuracy \n DEFAULT false \ingroup Config */ - AddBoolOption( "CLEAN_FLUX_MATRICES", _cleanFluxMat, false ); + AddBoolOption("CLEAN_FLUX_MATRICES", _cleanFluxMat, false); /*! @brief Realizability Step for MN solver \n DESCRIPTION: If true, MN solvers use a realizability reconstruction step in each time step. Also * applicable in regression sampling \n DEFAULT false \ingroup Config */ - AddBoolOption( "REALIZABILITY_RECONSTRUCTION", _realizabilityRecons, false ); + AddBoolOption("REALIZABILITY_RECONSTRUCTION", _realizabilityRecons, false); /*! @brief Runge Kutta Staes \n DESCRIPTION: Sets number of Runge Kutta Stages for time integration \n DEFAULT 1 \ingroup Config */ - AddUnsignedShortOption( "RUNGE_KUTTA_STAGES", _rungeKuttaStages, 1 ); + AddUnsignedShortOption("RUNGE_KUTTA_STAGES", _rungeKuttaStages, 1); // Problem Relateed Options /*! @brief MaterialDir \n DESCRIPTION: Relative Path to the data directory (used in the ICRU database class), starting from the directory of the * cfg file . \n DEFAULT "../data/material/" \ingroup Config */ - AddStringOption( "DATA_DIR", _dataDir, string( "../data/" ) ); + AddStringOption("DATA_DIR", _dataDir, string("../data/")); /*! @brief HydogenFile \n DESCRIPTION: If the continuous slowing down approximation is used, this referes to the cross section file for hydrogen. * . \n DEFAULT "h.dat" \ingroup Config */ - AddStringOption( "HYDROGEN_FILE", _hydrogenFile, string( "ENDL_H.txt" ) ); + AddStringOption("HYDROGEN_FILE", _hydrogenFile, string("ENDL_H.txt")); /*! @brief OxygenFile \n DESCRIPTION: If the continuous slowing down approximation is used, this referes to the cross section file for oxygen. * . \n DEFAULT "o.dat" \ingroup Config */ - AddStringOption( "OXYGEN_FILE", _oxygenFile, string( "ENDL_O.txt" ) ); + AddStringOption("OXYGEN_FILE", _oxygenFile, string("ENDL_O.txt")); /*! @brief StoppingPowerFile \n DESCRIPTION: Only temporary added. \ingroup Config */ - AddStringOption( "STOPPING_POWER_FILE", _stoppingPowerFile, string( "stopping_power.txt" ) ); + AddStringOption("STOPPING_POWER_FILE", _stoppingPowerFile, string("stopping_power.txt")); /*! @brief SN_ALL_GAUSS_PTS \n DESCRIPTION: If true, the SN Solver uses all Gauss Quadrature Points for 2d. \n DEFAULT false \ingroup Config */ - AddBoolOption( "SN_ALL_GAUSS_PTS", _allGaussPts, false ); + AddBoolOption("SN_ALL_GAUSS_PTS", _allGaussPts, false); // Linesource Testcase Options /*! @brief SCATTER_COEFF \n DESCRIPTION: Sets the scattering coefficient for the Linesource test case. \n DEFAULT 1.0 \ingroup Config */ - AddDoubleOption( "SCATTER_COEFF", _sigmaS, 1.0 ); + AddDoubleOption("SCATTER_COEFF", _sigmaS, 1.0); // Checkerboard Testcase Options /*! @brief SCATTER_COEFF \n DESCRIPTION: Sets the Source magnitude for the checkerboard testcase. \n DEFAULT 1.0 \ingroup Config */ - AddDoubleOption( "SOURCE_MAGNITUDE", _magQ, 1.0 ); + AddDoubleOption("SOURCE_MAGNITUDE", _magQ, 1.0); // CSD related options /*! @brief MAX_ENERGY_CSD \n DESCRIPTION: Sets maximum energy for the CSD simulation.\n DEFAULT \ingroup Config */ - AddDoubleOption( "MAX_ENERGY_CSD", _maxEnergyCSD, 5.0 ); + AddDoubleOption("MAX_ENERGY_CSD", _maxEnergyCSD, 5.0); // Entropy related options /*! @brief Entropy Functional \n DESCRIPTION: Entropy functional used for the MN_Solver \n DEFAULT QUADRTATIC @ingroup Config. */ - AddEnumOption( "ENTROPY_FUNCTIONAL", _entropyName, Entropy_Map, QUADRATIC ); + AddEnumOption("ENTROPY_FUNCTIONAL", _entropyName, Entropy_Map, QUADRATIC); /*! @brief Optimizer Name \n DESCRIPTION: Optimizer used to determine the minimal Entropy reconstruction \n DEFAULT NEWTON \ingroup Config */ - AddEnumOption( "ENTROPY_OPTIMIZER", _entropyOptimizerName, Optimizer_Map, NEWTON ); + AddEnumOption("ENTROPY_OPTIMIZER", _entropyOptimizerName, Optimizer_Map, NEWTON); /*! @brief Sets Flag for dynamic ansatz for normalized mn entropy closure \n DESCRIPTION: True = enable ansatz, False = disable ansatz \n DEFAULT * false \ingroup Config */ - AddBoolOption( "ENTROPY_DYNAMIC_CLOSURE", _entropyDynamicClosure, true ); + AddBoolOption("ENTROPY_DYNAMIC_CLOSURE", _entropyDynamicClosure, true); // Newton optimizer related options /*! @brief Regularization Parameter \n DESCRIPTION: Regularization Parameter for the regularized entropy closure. Must not be negative \n DEFAULT * 1e-2 \ingroup Config */ - AddDoubleOption( "REGULARIZER_GAMMA", _regularizerGamma, 1e-2 ); + AddDoubleOption("REGULARIZER_GAMMA", _regularizerGamma, 1e-2); /*! @brief Newton Optimizer Epsilon \n DESCRIPTION: Convergencce Epsilon for Newton Optimizer \n DEFAULT 1e-3 \ingroup Config */ - AddDoubleOption( "NEWTON_EPSILON", _optimizerEpsilon, 0.001 ); + AddDoubleOption("NEWTON_EPSILON", _optimizerEpsilon, 0.001); /*! @brief Max Iter Newton Optmizers \n DESCRIPTION: Max number of newton iterations \n DEFAULT 10 \ingroup Config */ - AddUnsignedLongOption( "NEWTON_ITER", _newtonIter, 1000 ); + AddUnsignedLongOption("NEWTON_ITER", _newtonIter, 1000); /*! @brief Step Size Newton Optmizers \n DESCRIPTION: Step size for Newton optimizer \n DEFAULT 10 \ingroup Config */ - AddDoubleOption( "NEWTON_STEP_SIZE", _newtonStepSize, 1 ); + AddDoubleOption("NEWTON_STEP_SIZE", _newtonStepSize, 1); /*! @brief Max Iter for line search in Newton Optmizers \n DESCRIPTION: Max number of line search iter for newton optimizer \n DEFAULT 10 * \ingroup Config */ - AddUnsignedLongOption( "NEWTON_LINE_SEARCH_ITER", _newtonLineSearchIter, 1000 ); + AddUnsignedLongOption("NEWTON_LINE_SEARCH_ITER", _newtonLineSearchIter, 1000); /*! @brief Newton Fast mode \n DESCRIPTION: If true, we skip the Newton optimizer for Quadratic entropy and set alpha = u \n DEFAULT false * \ingroup Config */ - AddBoolOption( "NEWTON_FAST_MODE", _newtonFastMode, false ); + AddBoolOption("NEWTON_FAST_MODE", _newtonFastMode, false); // Neural Entropy Closure options /*! @brief Neural Model \n DESCRIPTION: Specifies the neural netwok architecture \n DEFAULT 11 (values: 11=input convex, 12 non-convex) * \ingroup Config */ - AddUnsignedShortOption( "NEURAL_MODEL_MK", _neuralModel, 11 ); + AddUnsignedShortOption("NEURAL_MODEL_MK", _neuralModel, 11); /*! @brief Neural Model Gamma \n DESCRIPTION: Specifies regularization parameter for neural networks \n DEFAULT 0 (values: 0,1,2,3) \ingroup Config */ - AddUnsignedShortOption( "NEURAL_MODEL_GAMMA", _neuralGamma, 0 ); + AddUnsignedShortOption("NEURAL_MODEL_GAMMA", _neuralGamma, 0); /*! @brief NEURAL_MODEL_ENFORCE_ROTATION_SYMMETRY \n DESCRIPTION: Flag to enforce rotational symmetry \n DEFAULT false \ingroup Config */ - AddBoolOption( "NEURAL_MODEL_ENFORCE_ROTATION_SYMMETRY", _enforceNeuralRotationalSymmetry, false ); + AddBoolOption("NEURAL_MODEL_ENFORCE_ROTATION_SYMMETRY", _enforceNeuralRotationalSymmetry, false); // Mesh related options // Boundary Markers /*!\brief BC_DIRICHLET\n DESCRIPTION: Dirichlet wall boundary marker(s) \ingroup Config*/ - AddStringListOption( "BC_DIRICHLET", _nMarkerDirichlet, _MarkerDirichlet ); - AddStringListOption( "BC_NEUMANN", _nMarkerNeumann, _MarkerNeumann ); - AddUnsignedShortOption( "SPATIAL_DIM", _dim, 3 ); + AddStringListOption("BC_DIRICHLET", _nMarkerDirichlet, _MarkerDirichlet); + AddStringListOption("BC_NEUMANN", _nMarkerNeumann, _MarkerNeumann); + AddUnsignedShortOption("SPATIAL_DIM", _dim, 3); /*! @brief Scattering kernel \n DESCRIPTION: Describes used scattering kernel \n DEFAULT KERNEL_Isotropic \ingroup Config */ - AddEnumOption( "KERNEL", _kernelName, Kernel_Map, KERNEL_Isotropic ); + AddEnumOption("KERNEL", _kernelName, Kernel_Map, KERNEL_Isotropic); /*! @brief Spherical Basis \n DESCRIPTION: Describes the chosen set of basis functions for on the unit sphere (e.g. for Moment methods) \n DEFAULT * SPHERICAL_HARMONICS \ingroup Config */ - AddEnumOption( "SPHERICAL_BASIS", _sphericalBasisName, SphericalBasis_Map, SPHERICAL_HARMONICS ); + AddEnumOption("SPHERICAL_BASIS", _sphericalBasisName, SphericalBasis_Map, SPHERICAL_HARMONICS); // Output related options /*! @brief Volume output \n DESCRIPTION: Describes output groups to write to vtk \ingroup Config */ - AddEnumListOption( "VOLUME_OUTPUT", _nVolumeOutput, _volumeOutput, VolOutput_Map ); + AddEnumListOption("VOLUME_OUTPUT", _nVolumeOutput, _volumeOutput, VolOutput_Map); /*! @brief Volume output Frequency \n DESCRIPTION: Describes output write frequency \n DEFAULT 0 ,i.e. only last value \ingroup Config */ - AddUnsignedShortOption( "VOLUME_OUTPUT_FREQUENCY", _volumeOutputFrequency, 0 ); + AddUnsignedShortOption("VOLUME_OUTPUT_FREQUENCY", _volumeOutputFrequency, 0); /*! @brief Screen output \n DESCRIPTION: Describes screen output fields \ingroup Config */ - AddEnumListOption( "SCREEN_OUTPUT", _nScreenOutput, _screenOutput, ScalarOutput_Map ); + AddEnumListOption("SCREEN_OUTPUT", _nScreenOutput, _screenOutput, ScalarOutput_Map); /*! @brief Screen output Frequency \n DESCRIPTION: Describes screen output write frequency \n DEFAULT 1 \ingroup Config */ - AddUnsignedShortOption( "SCREEN_OUTPUT_FREQUENCY", _screenOutputFrequency, 1 ); + AddUnsignedShortOption("SCREEN_OUTPUT_FREQUENCY", _screenOutputFrequency, 1); /*! @brief History output \n DESCRIPTION: Describes history output fields \ingroup Config */ - AddEnumListOption( "HISTORY_OUTPUT", _nHistoryOutput, _historyOutput, ScalarOutput_Map ); + AddEnumListOption("HISTORY_OUTPUT", _nHistoryOutput, _historyOutput, ScalarOutput_Map); /*! @brief History output Frequency \n DESCRIPTION: Describes history output write frequency \n DEFAULT 1 \ingroup Config */ - AddUnsignedShortOption( "HISTORY_OUTPUT_FREQUENCY", _historyOutputFrequency, 1 ); + AddUnsignedShortOption("HISTORY_OUTPUT_FREQUENCY", _historyOutputFrequency, 1); // Data generator related options /*! @brief Choice of sampling method \n DESCRIPTION: Choose between creating a regression and a classification dataset. \ingroup Config */ - AddEnumOption( "SAMPLER_NAME", _sampler, SamplerName_MAP, REGRESSION_SAMPLER ); + AddEnumOption("SAMPLER_NAME", _sampler, SamplerName_MAP, REGRESSION_SAMPLER); /*! @brief Size of training data set \n DESCRIPTION: Size of training data set \n DEFAULT 1 \ingroup Config */ - AddUnsignedLongOption( "TRAINING_SET_SIZE", _tainingSetSize, 1 ); + AddUnsignedLongOption("TRAINING_SET_SIZE", _tainingSetSize, 1); /*! @brief Determines, if TRAINING_SET_SIZE is counted by dimension \n DESCRIPTION: Determines, if TRAINING_SET_SIZE is counted by dimension \n * DEFAULT true \ingroup Config */ - AddBoolOption( "SIZE_BY_DIMENSION", _sizeByDimension, true ); + AddBoolOption("SIZE_BY_DIMENSION", _sizeByDimension, true); /*! @brief Size of training data set \n DESCRIPTION: Size of training data set \n DEFAULT 10 \ingroup Config */ - AddUnsignedLongOption( "MAX_VALUE_FIRST_MOMENT", _maxValFirstMoment, 10 ); + AddUnsignedLongOption("MAX_VALUE_FIRST_MOMENT", _maxValFirstMoment, 10); /*! @brief Data generator mode \n DESCRIPTION: Check, if data generator mode is active. If yes, no solver is called, but instead the data * generator is executed \n DEFAULT false \ingroup Config */ - AddBoolOption( "DATA_GENERATOR_MODE", _dataGeneratorMode, false ); + AddBoolOption("DATA_GENERATOR_MODE", _dataGeneratorMode, false); /*! @brief Distance to 0 of the sampled moments to the boundary of the realizable set \n DESCRIPTION: Distance to the boundary of the * realizable set \n DEFAULT 0.1 \ingroup Config */ - AddDoubleOption( "REALIZABLE_SET_EPSILON_U0", _RealizableSetEpsilonU0, 0.1 ); + AddDoubleOption("REALIZABLE_SET_EPSILON_U0", _RealizableSetEpsilonU0, 0.1); /*! @brief norm(u_1)/u_0 is enforced to be smaller than _RealizableSetEpsilonU1 \n DESCRIPTION: Distance to the boundary of the realizable set \n * DEFAULT 0.1 \ingroup Config */ - AddDoubleOption( "REALIZABLE_SET_EPSILON_U1", _RealizableSetEpsilonU1, 0.9 ); + AddDoubleOption("REALIZABLE_SET_EPSILON_U1", _RealizableSetEpsilonU1, 0.9); /*! @brief Flag for sampling of normalized moments, i.e. u_0 =1 \n DESCRIPTION: Flag for sampling of normalized moments, i.e. u_0 =1 \n * DEFAULT False \ingroup Config */ - AddBoolOption( "NORMALIZED_SAMPLING", _normalizedSampling, false ); + AddBoolOption("NORMALIZED_SAMPLING", _normalizedSampling, false); /*! @brief Flag for sampling the space of Legendre multipliers instead of the moments \n DESCRIPTION: Sample alpha instead of u \n DEFAULT False * \ingroup Config */ - AddBoolOption( "ALPHA_SAMPLING", _alphaSampling, false ); + AddBoolOption("ALPHA_SAMPLING", _alphaSampling, false); /*! @brief Switch for sampling distribution \n DESCRIPTION: Uniform (true) or trunctaded normal (false) \n DEFAULT true * \ingroup Config */ - AddBoolOption( "UNIFORM_SAMPLING", _sampleUniform, true ); + AddBoolOption("UNIFORM_SAMPLING", _sampleUniform, true); /*! @brief Boundary for the sampling region of the Lagrange multipliers \n DESCRIPTION: Norm sampling boundary for alpha \n DEFAULT 20.0 * \ingroup Config */ - AddDoubleOption( "ALPHA_SAMPLING_BOUND", _alphaBound, 20.0 ); + AddDoubleOption("ALPHA_SAMPLING_BOUND", _alphaBound, 20.0); /*! @brief Rejection sampling threshold based on the minimal Eigenvalue of the Hessian of the entropy functions \n DESCRIPTION: Rejection * sampling threshold \n DEFAULT 1e-8 \ingroup Config */ - AddDoubleOption( "MIN_EIGENVALUE_THRESHOLD", _minEVAlphaSampling, 1e-8 ); + AddDoubleOption("MIN_EIGENVALUE_THRESHOLD", _minEVAlphaSampling, 1e-8); /*! @brief Boundary for the velocity integral \n DESCRIPTION: Upper boundary for the velocity integral \n DEFAULT 5.0 * \ingroup Config */ - AddDoubleOption( "MAX_VELOCITY", _maxSamplingVelocity, 5.0 ); + AddDoubleOption("MAX_VELOCITY", _maxSamplingVelocity, 5.0); ///*! @brief Boundary for the velocity integral \n DESCRIPTION: Lower boundary for the velocity integral \n DEFAULT 5.0 * \ingroup Config */ // AddDoubleOption( "MIN_VELOCITY", _minSamplingVelocity, -5.0 ); /*! @brief Boundary for the sampling temperature \n DESCRIPTION: Upper boundary for the sampling temperature \n DEFAULT 1.0 * \ingroup Config */ - AddDoubleOption( "MAX_TEMPERATURE", _maxSamplingTemperature, 1 ); + AddDoubleOption("MAX_TEMPERATURE", _maxSamplingTemperature, 1); /*! @brief Boundary for the sampling temperature \n DESCRIPTION: Lower boundary for the sampling temperature \n DEFAULT 0.1 * \ingroup Config */ - AddDoubleOption( "MIN_TEMPERATURE", _minSamplingTemperature, 0.1 ); + AddDoubleOption("MIN_TEMPERATURE", _minSamplingTemperature, 0.1); /*! @brief Number of temperature samples \n DESCRIPTION: Number of temperature samples for the sampler \n DEFAULT 10 * \ingroup Config */ - AddUnsignedShortOption( "N_TEMPERATURES", _nTemperatures, 10 ); + AddUnsignedShortOption("N_TEMPERATURES", _nTemperatures, 10); } -void Config::SetConfigParsing( string case_filename ) { +void Config::SetConfigParsing(string case_filename) +{ string text_line, option_name; ifstream case_file; vector option_value; /*--- Read the configuration file ---*/ - case_file.open( case_filename, ios::in ); + case_file.open(case_filename, ios::in); - if( case_file.fail() ) { - ErrorMessages::Error( "The configuration file (.cfg) is missing!!", CURRENT_FUNCTION ); + if (case_file.fail()) + { + ErrorMessages::Error("The configuration file (.cfg) is missing!!", CURRENT_FUNCTION); } string errorString; - int err_count = 0; // How many errors have we found in the config file - int max_err_count = 30; // Maximum number of errors to print before stopping + int err_count = 0; // How many errors have we found in the config file + int max_err_count = 30; // Maximum number of errors to print before stopping map included_options; /*--- Parse the configuration file and set the options ---*/ - while( getline( case_file, text_line ) ) { + while (getline(case_file, text_line)) + { - if( err_count >= max_err_count ) { - errorString.append( "too many errors. Stopping parse" ); + if (err_count >= max_err_count) + { + errorString.append("too many errors. Stopping parse"); cout << errorString << endl; - throw( 1 ); + throw(1); } - if( TokenizeString( text_line, option_name, option_value ) ) { + if (TokenizeString(text_line, option_name, option_value)) + { /*--- See if it's a python option ---*/ - if( _optionMap.find( option_name ) == _optionMap.end() ) { + if (_optionMap.find(option_name) == _optionMap.end()) + { string newString; - newString.append( option_name ); - newString.append( ": invalid option name" ); - newString.append( ". Check current KiT-RT options in config_template.cfg." ); - newString.append( "\n" ); - errorString.append( newString ); + newString.append(option_name); + newString.append(": invalid option name"); + newString.append(". Check current KiT-RT options in config_template.cfg."); + newString.append("\n"); + errorString.append(newString); err_count++; continue; } /*--- Option exists, check if the option has already been in the config file ---*/ - if( included_options.find( option_name ) != included_options.end() ) { + if (included_options.find(option_name) != included_options.end()) + { string newString; - newString.append( option_name ); - newString.append( ": option appears twice" ); - newString.append( "\n" ); - errorString.append( newString ); + newString.append(option_name); + newString.append(": option appears twice"); + newString.append("\n"); + errorString.append(newString); err_count++; continue; } /*--- New found option. Add it to the map, and delete from all options ---*/ - included_options.insert( pair( option_name, true ) ); - _allOptions.erase( option_name ); + included_options.insert(pair(option_name, true)); + _allOptions.erase(option_name); /*--- Set the value and check error ---*/ - string out = _optionMap[option_name]->SetValue( option_value ); - if( out.compare( "" ) != 0 ) { - errorString.append( out ); - errorString.append( "\n" ); + string out = _optionMap[option_name]->SetValue(option_value); + if (out.compare("") != 0) + { + errorString.append(out); + errorString.append("\n"); err_count++; } } @@ -458,67 +487,82 @@ void Config::SetConfigParsing( string case_filename ) { /*--- See if there were any errors parsing the config file ---*/ - if( errorString.size() != 0 ) { - ErrorMessages::ParsingError( errorString, CURRENT_FUNCTION ); + if (errorString.size() != 0) + { + ErrorMessages::ParsingError(errorString, CURRENT_FUNCTION); } case_file.close(); } -void Config::SetPointersNull( void ) { +void Config::SetPointersNull(void) +{ // All pointer valued options should be set to NULL here } -void Config::SetPostprocessing() { +void Config::SetPostprocessing() +{ // append '/' to all dirs to allow for simple path addition - if( _logDir[_logDir.size() - 1] != '/' ) _logDir.append( "/" ); - if( _outputDir[_outputDir.size() - 1] != '/' ) _outputDir.append( "/" ); - if( _inputDir[_inputDir.size() - 1] != '/' ) _inputDir.append( "/" ); + if (_logDir[_logDir.size() - 1] != '/') + _logDir.append("/"); + if (_outputDir[_outputDir.size() - 1] != '/') + _outputDir.append("/"); + if (_inputDir[_inputDir.size() - 1] != '/') + _inputDir.append("/"); // setup relative paths - _logDir = std::filesystem::path( _inputDir ).append( _logDir ).lexically_normal(); - _outputDir = std::filesystem::path( _inputDir ).append( _outputDir ).lexically_normal(); - _meshFile = std::filesystem::path( _inputDir ).append( _meshFile ).lexically_normal(); - _outputFile = std::filesystem::path( _outputDir ).append( _outputFile ).lexically_normal(); - _ctFile = std::filesystem::path( _inputDir ).append( _ctFile ).lexically_normal(); - _hydrogenFile = std::filesystem::path( _inputDir ).append( _hydrogenFile ).lexically_normal(); - _oxygenFile = std::filesystem::path( _inputDir ).append( _oxygenFile ).lexically_normal(); - _stoppingPowerFile = std::filesystem::path( _inputDir ).append( _stoppingPowerFile ).lexically_normal(); - _dataDir = std::filesystem::path( _inputDir ).append( _dataDir ).lexically_normal(); + _logDir = std::filesystem::path(_inputDir).append(_logDir).lexically_normal(); + _outputDir = std::filesystem::path(_inputDir).append(_outputDir).lexically_normal(); + _meshFile = std::filesystem::path(_inputDir).append(_meshFile).lexically_normal(); + _outputFile = std::filesystem::path(_outputDir).append(_outputFile).lexically_normal(); + _ctFile = std::filesystem::path(_inputDir).append(_ctFile).lexically_normal(); + _hydrogenFile = std::filesystem::path(_inputDir).append(_hydrogenFile).lexically_normal(); + _oxygenFile = std::filesystem::path(_inputDir).append(_oxygenFile).lexically_normal(); + _stoppingPowerFile = std::filesystem::path(_inputDir).append(_stoppingPowerFile).lexically_normal(); + _dataDir = std::filesystem::path(_inputDir).append(_dataDir).lexically_normal(); // create directories if they dont exist - if( !std::filesystem::exists( _outputDir ) ) std::filesystem::create_directory( _outputDir ); + if (!std::filesystem::exists(_outputDir)) + std::filesystem::create_directory(_outputDir); // init logger InitLogger(); // Regroup Boundary Conditions to std::vector> _boundaries; - for( int i = 0; i < _nMarkerDirichlet; i++ ) { - _boundaries.push_back( std::pair( _MarkerDirichlet[i], DIRICHLET ) ); + for (int i = 0; i < _nMarkerDirichlet; i++) + { + _boundaries.push_back(std::pair(_MarkerDirichlet[i], DIRICHLET)); } - for( int i = 0; i < _nMarkerNeumann; i++ ) { - _boundaries.push_back( std::pair( _MarkerNeumann[i], NEUMANN ) ); + for (int i = 0; i < _nMarkerNeumann; i++) + { + _boundaries.push_back(std::pair(_MarkerNeumann[i], NEUMANN)); } // Set option ISCSD - switch( _solverName ) { - case CSD_SN_SOLVER: // Fallthrough - case CSD_PN_SOLVER: // Fallthrough - case CSD_MN_SOLVER: // Fallthrough - _csd = true; - break; - default: _csd = false; + switch (_solverName) + { + case CSD_SN_SOLVER: // Fallthrough + case CSD_PN_SOLVER: // Fallthrough + case CSD_MN_SOLVER: // Fallthrough + _csd = true; + break; + default: + _csd = false; } // Set option MomentSolver - switch( _solverName ) { - case MN_SOLVER: - case MN_SOLVER_NORMALIZED: - case CSD_MN_SOLVER: - case PN_SOLVER: - case CSD_PN_SOLVER: _isMomentSolver = true; break; - default: _isMomentSolver = false; + switch (_solverName) + { + case MN_SOLVER: + case MN_SOLVER_NORMALIZED: + case CSD_MN_SOLVER: + case PN_SOLVER: + case CSD_PN_SOLVER: + _isMomentSolver = true; + break; + default: + _isMomentSolver = false; } // Check, if mesh file exists @@ -535,54 +579,61 @@ void Config::SetPostprocessing() { // Quadrature Postprocessing { - QuadratureBase* quad = QuadratureBase::Create( this ); + QuadratureBase *quad = QuadratureBase::Create(this); std::vector supportedDims = quad->GetSupportedDims(); - if( std::find( supportedDims.begin(), supportedDims.end(), _dim ) == supportedDims.end() ) { + if (std::find(supportedDims.begin(), supportedDims.end(), _dim) == supportedDims.end()) + { // Dimension not supported - std::string msg = "Chosen spatial dimension not supported for this Quadrature.\nChosen spatial dimension " + std::to_string( _dim ) + "."; - ErrorMessages::Error( msg, CURRENT_FUNCTION ); + std::string msg = "Chosen spatial dimension not supported for this Quadrature.\nChosen spatial dimension " + std::to_string(_dim) + "."; + ErrorMessages::Error(msg, CURRENT_FUNCTION); } delete quad; } // Optimizer Postprocessing { - if( ( _entropyOptimizerName == REDUCED_NEWTON || _entropyOptimizerName == REDUCED_PART_REGULARIZED_NEWTON ) && - _entropyName != MAXWELL_BOLTZMANN ) { - std::string msg = "Reduction of the optimization problen only possible with Maxwell Boltzmann Entropy" + std::to_string( _dim ) + "."; - ErrorMessages::Error( msg, CURRENT_FUNCTION ); + if ((_entropyOptimizerName == REDUCED_NEWTON || _entropyOptimizerName == REDUCED_PART_REGULARIZED_NEWTON) && + _entropyName != MAXWELL_BOLTZMANN) + { + std::string msg = "Reduction of the optimization problen only possible with Maxwell Boltzmann Entropy" + std::to_string(_dim) + "."; + ErrorMessages::Error(msg, CURRENT_FUNCTION); } } // --- Solver setup --- { - if( GetSolverName() == PN_SOLVER && GetSphericalBasisName() != SPHERICAL_HARMONICS ) { + if (GetSolverName() == PN_SOLVER && GetSphericalBasisName() != SPHERICAL_HARMONICS) + { ErrorMessages::Error( "PN Solver only works with spherical harmonics basis.\nThis should be the default setting for option SPHERICAL_BASIS.", - CURRENT_FUNCTION ); + CURRENT_FUNCTION); } - if( GetSolverName() == CSD_MN_SOLVER && GetSphericalBasisName() != SPHERICAL_HARMONICS ) { - ErrorMessages::Error( "CSD_MN_SOLVER only works with Spherical Harmonics currently.", CURRENT_FUNCTION ); + if (GetSolverName() == CSD_MN_SOLVER && GetSphericalBasisName() != SPHERICAL_HARMONICS) + { + ErrorMessages::Error("CSD_MN_SOLVER only works with Spherical Harmonics currently.", CURRENT_FUNCTION); } - if( GetReconsOrder() > 2 ) { - ErrorMessages::Error( "Solvers only work with 1st and 2nd order spatial fluxes.", CURRENT_FUNCTION ); + if (GetReconsOrder() > 2) + { + ErrorMessages::Error("Solvers only work with 1st and 2nd order spatial fluxes.", CURRENT_FUNCTION); } - if( GetOptimizerName() == ML && GetSolverName() != MN_SOLVER_NORMALIZED ) { - ErrorMessages::Error( "ML Optimizer only works with normalized MN Solver.", CURRENT_FUNCTION ); + if (GetOptimizerName() == ML && GetSolverName() != MN_SOLVER_NORMALIZED) + { + ErrorMessages::Error("ML Optimizer only works with normalized MN Solver.", CURRENT_FUNCTION); } - if( GetSolverName() == PN_SOLVER || GetSolverName() == CSD_PN_SOLVER ) { - _dim = 3; - auto log = spdlog::get( "event" ); - auto logCSV = spdlog::get( "tabular" ); + if (GetSolverName() == PN_SOLVER || GetSolverName() == CSD_PN_SOLVER) + { + _dim = 3; + auto log = spdlog::get("event"); + auto logCSV = spdlog::get("tabular"); log->info( - "| Spherical harmonics based solver currently use 3D Spherical functions and a projection. Thus spatial dimension is set to 3." ); + "| Spherical harmonics based solver currently use 3D Spherical functions and a projection. Thus spatial dimension is set to 3."); logCSV->info( - "| Spherical harmonics based solver currently use 3D Spherical functions and a projection. Thus spatial dimension is set to 3." ); + "| Spherical harmonics based solver currently use 3D Spherical functions and a projection. Thus spatial dimension is set to 3."); } } @@ -593,109 +644,126 @@ void Config::SetPostprocessing() { // Check for doublicates in VOLUME OUTPUT std::map dublicate_map; - for( unsigned short idx_volOutput = 0; idx_volOutput < _nVolumeOutput; idx_volOutput++ ) { - std::map::iterator it = dublicate_map.find( _volumeOutput[idx_volOutput] ); - if( it == dublicate_map.end() ) { - dublicate_map.insert( std::pair( _volumeOutput[idx_volOutput], 0 ) ); + for (unsigned short idx_volOutput = 0; idx_volOutput < _nVolumeOutput; idx_volOutput++) + { + std::map::iterator it = dublicate_map.find(_volumeOutput[idx_volOutput]); + if (it == dublicate_map.end()) + { + dublicate_map.insert(std::pair(_volumeOutput[idx_volOutput], 0)); } - else { + else + { it->second++; } } - for( auto& e : dublicate_map ) { - if( e.second > 0 ) { - ErrorMessages::Error( "Each output group for option VOLUME_OUTPUT can only be set once.\nPlease check your .cfg file.", - CURRENT_FUNCTION ); + for (auto &e : dublicate_map) + { + if (e.second > 0) + { + ErrorMessages::Error("Each output group for option VOLUME_OUTPUT can only be set once.\nPlease check your .cfg file.", + CURRENT_FUNCTION); } } // Check, if the choice of volume output is compatible to the solver std::vector supportedGroups; - for( unsigned short idx_volOutput = 0; idx_volOutput < _nVolumeOutput; idx_volOutput++ ) { - switch( _solverName ) { - case SN_SOLVER: - if (_problemName == PROBLEM_SymmetricHohlraum) - supportedGroups = { MINIMAL, ANALYTIC, MOMENT_TIME_TRACE }; - else - supportedGroups = { MINIMAL, ANALYTIC }; - - if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { - ErrorMessages::Error( "SN_SOLVER only supports volume output MINIMAL and ANALYTIC.\nPlease check your .cfg file.", - CURRENT_FUNCTION ); - } - if( _volumeOutput[idx_volOutput] == ANALYTIC && _problemName != PROBLEM_Linesource ) { - ErrorMessages::Error( "Analytical solution (VOLUME_OUTPUT=ANALYTIC) is only available for the PROBLEM=LINESOURCE.\nPlease " - "check your .cfg file.", - CURRENT_FUNCTION ); - } - break; - case MN_SOLVER: // Fallthrough - case MN_SOLVER_NORMALIZED: - if (_problemName == PROBLEM_SymmetricHohlraum) - supportedGroups = { MINIMAL, MOMENTS, DUAL_MOMENTS , MOMENT_TIME_TRACE }; - else if ( _problemName == PROBLEM_Linesource ) - supportedGroups = { MINIMAL, ANALYTIC, MOMENTS, DUAL_MOMENTS }; - else - supportedGroups = { MINIMAL, MOMENTS, DUAL_MOMENTS }; - if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { - std::string supportedGroupStr = ""; - for (unsigned i=0; i,supportedGroups.size(); i++) { - supportedGroupStr+= findKey(VolOutput_Map, supportedGroups[i]) + ", "; - } - ErrorMessages::Error( - "MN_SOLVER supports volume outputs" + supportedGroupStr +".\nPlease check your .cfg file.", - CURRENT_FUNCTION ); - } - break; - case PN_SOLVER: - supportedGroups = { MINIMAL, MOMENTS, ANALYTIC }; - if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { - - ErrorMessages::Error( "PN_SOLVER only supports volume output ANALYTIC, MINIMAL and MOMENTS.\nPlease check your .cfg file.", - CURRENT_FUNCTION ); - } - if( _volumeOutput[idx_volOutput] == ANALYTIC && _problemName != PROBLEM_Linesource ) { - ErrorMessages::Error( "Analytical solution (VOLUME_OUTPUT=ANALYTIC) is only available for the PROBLEM=LINESOURCE.\nPlease " - "check your .cfg file.", - CURRENT_FUNCTION ); - } - break; - case CSD_SN_SOLVER: - supportedGroups = { MINIMAL, MEDICAL }; - if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { + for (unsigned short idx_volOutput = 0; idx_volOutput < _nVolumeOutput; idx_volOutput++) + { + switch (_solverName) + { + case SN_SOLVER: + if (_problemName == PROBLEM_SymmetricHohlraum) + supportedGroups = {MINIMAL, ANALYTIC, MOMENT_TIME_TRACE}; + else + supportedGroups = {MINIMAL, ANALYTIC}; - ErrorMessages::Error( "CSD_SN_SOLVER types only supports volume output MEDICAL and MINIMAL.\nPlease check your .cfg file.", - CURRENT_FUNCTION ); - } - break; - case CSD_PN_SOLVER: - supportedGroups = { MINIMAL, MEDICAL, MOMENTS }; - if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { - - ErrorMessages::Error( - "CSD_PN_SOLVER types only supports volume output MEDICAL, MOMENTS and MINIMAL.\nPlease check your .cfg file.", - CURRENT_FUNCTION ); - } - break; - case CSD_MN_SOLVER: - supportedGroups = { MINIMAL, MEDICAL, MOMENTS, DUAL_MOMENTS }; - if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { - - ErrorMessages::Error( "CSD_MN_SOLVER types only supports volume output MEDICAL, MOMENTS, DUAL_MOMENTS and MINIMAL.\nPlease " - "check your .cfg file.", - CURRENT_FUNCTION ); + if (supportedGroups.end() == std::find(supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput])) + { + ErrorMessages::Error("SN_SOLVER only supports volume output MINIMAL and ANALYTIC.\nPlease check your .cfg file.", + CURRENT_FUNCTION); + } + if (_volumeOutput[idx_volOutput] == ANALYTIC && _problemName != PROBLEM_Linesource) + { + ErrorMessages::Error("Analytical solution (VOLUME_OUTPUT=ANALYTIC) is only available for the PROBLEM=LINESOURCE.\nPlease " + "check your .cfg file.", + CURRENT_FUNCTION); + } + break; + case MN_SOLVER: // Fallthrough + case MN_SOLVER_NORMALIZED: + if (_problemName == PROBLEM_SymmetricHohlraum) + supportedGroups = {MINIMAL, MOMENTS, DUAL_MOMENTS, MOMENT_TIME_TRACE}; + else if (_problemName == PROBLEM_Linesource) + supportedGroups = {MINIMAL, ANALYTIC, MOMENTS, DUAL_MOMENTS}; + else + supportedGroups = {MINIMAL, MOMENTS, DUAL_MOMENTS}; + if (supportedGroups.end() == std::find(supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput])) + { + std::string supportedGroupStr = ""; + for (unsigned i = 0; i, supportedGroups.size(); i++) + { + supportedGroupStr += findKey(VolOutput_Map, supportedGroups[i]) + ", "; } - break; - default: - ErrorMessages::Error( "Solver output check not implemented for this Solver.\nThis is the fault of the coder.", CURRENT_FUNCTION ); + ErrorMessages::Error( + "MN_SOLVER supports volume outputs" + supportedGroupStr + ".\nPlease check your .cfg file.", + CURRENT_FUNCTION); + } + break; + case PN_SOLVER: + supportedGroups = {MINIMAL, MOMENTS, ANALYTIC}; + if (supportedGroups.end() == std::find(supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput])) + { + + ErrorMessages::Error("PN_SOLVER only supports volume output ANALYTIC, MINIMAL and MOMENTS.\nPlease check your .cfg file.", + CURRENT_FUNCTION); + } + if (_volumeOutput[idx_volOutput] == ANALYTIC && _problemName != PROBLEM_Linesource) + { + ErrorMessages::Error("Analytical solution (VOLUME_OUTPUT=ANALYTIC) is only available for the PROBLEM=LINESOURCE.\nPlease " + "check your .cfg file.", + CURRENT_FUNCTION); + } + break; + case CSD_SN_SOLVER: + supportedGroups = {MINIMAL, MEDICAL}; + if (supportedGroups.end() == std::find(supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput])) + { + + ErrorMessages::Error("CSD_SN_SOLVER types only supports volume output MEDICAL and MINIMAL.\nPlease check your .cfg file.", + CURRENT_FUNCTION); + } + break; + case CSD_PN_SOLVER: + supportedGroups = {MINIMAL, MEDICAL, MOMENTS}; + if (supportedGroups.end() == std::find(supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput])) + { + + ErrorMessages::Error( + "CSD_PN_SOLVER types only supports volume output MEDICAL, MOMENTS and MINIMAL.\nPlease check your .cfg file.", + CURRENT_FUNCTION); + } + break; + case CSD_MN_SOLVER: + supportedGroups = {MINIMAL, MEDICAL, MOMENTS, DUAL_MOMENTS}; + if (supportedGroups.end() == std::find(supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput])) + { + + ErrorMessages::Error("CSD_MN_SOLVER types only supports volume output MEDICAL, MOMENTS, DUAL_MOMENTS and MINIMAL.\nPlease " + "check your .cfg file.", + CURRENT_FUNCTION); + } + break; + default: + ErrorMessages::Error("Solver output check not implemented for this Solver.\nThis is the fault of the coder.", CURRENT_FUNCTION); } } - + // Set default volume output - if( _nVolumeOutput == 0 ) { // If no specific output is chosen, use "MINIMAL" + if (_nVolumeOutput == 0) + { // If no specific output is chosen, use "MINIMAL" _nVolumeOutput = 1; - _volumeOutput.push_back( MINIMAL ); + _volumeOutput.push_back(MINIMAL); } } @@ -704,79 +772,90 @@ void Config::SetPostprocessing() { // Check for doublicates in SCALAR OUTPUT std::map dublicate_map; - for( unsigned short idx_screenOutput = 0; idx_screenOutput < _nScreenOutput; idx_screenOutput++ ) { - std::map::iterator it = dublicate_map.find( _screenOutput[idx_screenOutput] ); - if( it == dublicate_map.end() ) { - dublicate_map.insert( std::pair( _screenOutput[idx_screenOutput], 0 ) ); + for (unsigned short idx_screenOutput = 0; idx_screenOutput < _nScreenOutput; idx_screenOutput++) + { + std::map::iterator it = dublicate_map.find(_screenOutput[idx_screenOutput]); + if (it == dublicate_map.end()) + { + dublicate_map.insert(std::pair(_screenOutput[idx_screenOutput], 0)); } - else { + else + { it->second++; } } - for( auto& e : dublicate_map ) { - if( e.second > 0 ) { - ErrorMessages::Error( "Each output field for option SCREEN_OUTPUT can only be set once.\nPlease check your .cfg file.", - CURRENT_FUNCTION ); + for (auto &e : dublicate_map) + { + if (e.second > 0) + { + ErrorMessages::Error("Each output field for option SCREEN_OUTPUT can only be set once.\nPlease check your .cfg file.", + CURRENT_FUNCTION); } } // Check if the choice of screen output is compatible to the problem - for( unsigned short idx_screenOutput = 0; idx_screenOutput < _nScreenOutput; idx_screenOutput++ ) { + for (unsigned short idx_screenOutput = 0; idx_screenOutput < _nScreenOutput; idx_screenOutput++) + { std::vector legalOutputs; std::vector::iterator it; - switch (_problemName){ - case PROBLEM_Lattice: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION }; - it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); - if (it != legalOutputs.end()){ - std::string foundKey = findKey(ScalarOutput_Map, _screenOutput[idx_screenOutput]); - ErrorMessages::Error( "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION\n" - "Please check your .cfg file.", - CURRENT_FUNCTION ); - } - break; - case PROBLEM_SymmetricHohlraum: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL}; - it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); - - if (it != legalOutputs.end()){ - std::string foundKey = findKey(ScalarOutput_Map, _screenOutput[idx_screenOutput]); - ErrorMessages::Error( "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL\n" - "Please check your .cfg file.", - CURRENT_FUNCTION ); - } - break; - default: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT}; - it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); - - if (it != legalOutputs.end()){ - std::string foundKey = findKey(ScalarOutput_Map, _screenOutput[idx_screenOutput]); - ErrorMessages::Error( "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT\n" - "Please check your .cfg file.", - CURRENT_FUNCTION ); - } - break; + switch (_problemName) + { + case PROBLEM_Lattice: + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION}; + it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); + if (it == legalOutputs.end()) + { + std::string foundKey = findKey(ScalarOutput_Map, _screenOutput[idx_screenOutput]); + ErrorMessages::Error("Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION\n" + "Please check your .cfg file.", + CURRENT_FUNCTION); + } + break; + case PROBLEM_SymmetricHohlraum: + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL}; + it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); + + if (it == legalOutputs.end()) + { + std::string foundKey = findKey(ScalarOutput_Map, _screenOutput[idx_screenOutput]); + ErrorMessages::Error("Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL\n" + "Please check your .cfg file.", + CURRENT_FUNCTION); + } + break; + default: + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT}; + it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); + + if (it == legalOutputs.end()) + { + std::string foundKey = findKey(ScalarOutput_Map, _screenOutput[idx_screenOutput]); + ErrorMessages::Error("Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT\n" + "Please check your .cfg file.", + CURRENT_FUNCTION); + } + break; } } // Set ITER always to index 0 . Assume only one instance of iter is chosen - if( _nScreenOutput > 0 ) { + if (_nScreenOutput > 0) + { std::vector::iterator it; - it = find( _screenOutput.begin(), _screenOutput.end(), ITER ); - _screenOutput.erase( it ); - _screenOutput.insert( _screenOutput.begin(), ITER ); + it = find(_screenOutput.begin(), _screenOutput.end(), ITER); + _screenOutput.erase(it); + _screenOutput.insert(_screenOutput.begin(), ITER); } // Set default screen output - if( _nScreenOutput == 0 ) { + if (_nScreenOutput == 0) + { _nScreenOutput = 4; - _screenOutput.push_back( ITER ); - _screenOutput.push_back( RMS_FLUX ); - _screenOutput.push_back( MASS ); - _screenOutput.push_back( VTK_OUTPUT ); + _screenOutput.push_back(ITER); + _screenOutput.push_back(RMS_FLUX); + _screenOutput.push_back(MASS); + _screenOutput.push_back(VTK_OUTPUT); } - } // History Output Postprocessing @@ -784,252 +863,302 @@ void Config::SetPostprocessing() { // Check for doublicates in HISTORY OUTPUT std::map dublicate_map; - for( unsigned short idx_screenOutput = 0; idx_screenOutput < _nHistoryOutput; idx_screenOutput++ ) { - std::map::iterator it = dublicate_map.find( _historyOutput[idx_screenOutput] ); - if( it == dublicate_map.end() ) { - dublicate_map.insert( std::pair( _historyOutput[idx_screenOutput], 0 ) ); + for (unsigned short idx_screenOutput = 0; idx_screenOutput < _nHistoryOutput; idx_screenOutput++) + { + std::map::iterator it = dublicate_map.find(_historyOutput[idx_screenOutput]); + if (it == dublicate_map.end()) + { + dublicate_map.insert(std::pair(_historyOutput[idx_screenOutput], 0)); } - else { + else + { it->second++; } } - for( auto& e : dublicate_map ) { - if( e.second > 0 ) { - ErrorMessages::Error( "Each output field for option SCREEN_OUTPUT can only be set once.\nPlease check your .cfg file.", - CURRENT_FUNCTION ); + for (auto &e : dublicate_map) + { + if (e.second > 0) + { + ErrorMessages::Error("Each output field for option HISTORY_OUTPUT can only be set once.\nPlease check your .cfg file.", + CURRENT_FUNCTION); } } // Check if the choice of history output is compatible to the problem - for( unsigned short idx_screenOutput = 0; idx_screenOutput < _nHistoryOutput; idx_screenOutput++ ) { + for (unsigned short idx_screenOutput = 0; idx_screenOutput < _nHistoryOutput; idx_screenOutput++) + { std::vector legalOutputs; std::vector::iterator it; - switch (_problemName){ - case PROBLEM_Lattice: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION }; - it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); - if (it != legalOutputs.end()){ - std::string foundKey = findKey(ScalarOutput_Map, _historyOutput[idx_screenOutput]); - ErrorMessages::Error( "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION\n" - "Please check your .cfg file.", - CURRENT_FUNCTION ); - } - break; - case PROBLEM_SymmetricHohlraum: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL}; - it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); - - if (it != legalOutputs.end()){ - std::string foundKey = findKey(ScalarOutput_Map, _historyOutput[idx_screenOutput]); - ErrorMessages::Error( "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL\n" - "Please check your .cfg file.", - CURRENT_FUNCTION ); - } - break; - default: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT}; - it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); - - if (it != legalOutputs.end()){ - std::string foundKey = findKey(ScalarOutput_Map, _historyOutput[idx_screenOutput]); - ErrorMessages::Error( "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT\n" - "Please check your .cfg file.", - CURRENT_FUNCTION ); - } - break; + switch (_problemName) + { + case PROBLEM_Lattice: + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION}; + it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); + if (it == legalOutputs.end()) + { + std::string foundKey = findKey(ScalarOutput_Map, _historyOutput[idx_screenOutput]); + ErrorMessages::Error("Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION\n" + "Please check your .cfg file.", + CURRENT_FUNCTION); + } + break; + case PROBLEM_SymmetricHohlraum: + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL}; + it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); + + if (it == legalOutputs.end()) + { + std::string foundKey = findKey(ScalarOutput_Map, _historyOutput[idx_screenOutput]); + ErrorMessages::Error("Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL\n" + "Please check your .cfg file.", + CURRENT_FUNCTION); + } + break; + default: + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT}; + it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); + + if (it == legalOutputs.end()) + { + std::string foundKey = findKey(ScalarOutput_Map, _historyOutput[idx_screenOutput]); + ErrorMessages::Error("Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT\n" + "Please check your .cfg file.", + CURRENT_FUNCTION); + } + break; } } // Set ITER always to index 0 . Assume only one instance of iter is chosen - if( _nHistoryOutput > 0 ) { + if (_nHistoryOutput > 0) + { std::vector::iterator it; - it = find( _historyOutput.begin(), _historyOutput.end(), ITER ); - _historyOutput.erase( it ); - _historyOutput.insert( _historyOutput.begin(), ITER ); + it = find(_historyOutput.begin(), _historyOutput.end(), ITER); + _historyOutput.erase(it); + _historyOutput.insert(_historyOutput.begin(), ITER); } // Set default screen output - if( _nHistoryOutput == 0 ) { + if (_nHistoryOutput == 0) + { _nHistoryOutput = 4; - _historyOutput.push_back( ITER ); - _historyOutput.push_back( RMS_FLUX ); - _historyOutput.push_back( MASS ); - _historyOutput.push_back( VTK_OUTPUT ); + _historyOutput.push_back(ITER); + _historyOutput.push_back(RMS_FLUX); + _historyOutput.push_back(MASS); + _historyOutput.push_back(VTK_OUTPUT); } } // Mesh postprocessing { - if( _dim < (unsigned short)1 || _dim > (unsigned short)3 ) { - std::string msg = "Dimension " + std::to_string( _dim ) + "not supported.\n"; - ErrorMessages::Error( msg, CURRENT_FUNCTION ); + if (_dim < (unsigned short)1 || _dim > (unsigned short)3) + { + std::string msg = "Dimension " + std::to_string(_dim) + "not supported.\n"; + ErrorMessages::Error(msg, CURRENT_FUNCTION); } } // Data generator postprocessing { - if( _alphaBound <= 0 ) { - std::string msg = "Norm boundary for alpha sampling must be positive.\n Current choice: " + std::to_string( _alphaSampling ) + + if (_alphaBound <= 0) + { + std::string msg = "Norm boundary for alpha sampling must be positive.\n Current choice: " + std::to_string(_alphaSampling) + ". Check choice of ALPHA_SAMPLING_BOUND."; - ErrorMessages::Error( msg, CURRENT_FUNCTION ); + ErrorMessages::Error(msg, CURRENT_FUNCTION); } - if( _minEVAlphaSampling <= 0 ) { + if (_minEVAlphaSampling <= 0) + { std::string msg = - "Minimal Eigenvalue threshold of the entropy hession must be positive.\n Current choice: " + std::to_string( _alphaSampling ) + + "Minimal Eigenvalue threshold of the entropy hession must be positive.\n Current choice: " + std::to_string(_alphaSampling) + ". Check choice of MIN_EIGENVALUE_THRESHOLD."; - ErrorMessages::Error( msg, CURRENT_FUNCTION ); + ErrorMessages::Error(msg, CURRENT_FUNCTION); } } // Optimizer postprocessing { - if( _regularizerGamma <= 0.0 ) { - ErrorMessages::Error( "REGULARIZER_GAMMA must be positive.", CURRENT_FUNCTION ); + if (_regularizerGamma <= 0.0) + { + ErrorMessages::Error("REGULARIZER_GAMMA must be positive.", CURRENT_FUNCTION); } - if( _entropyOptimizerName == ML ) { + if (_entropyOptimizerName == ML) + { // set regularizer gamma to the correct value - switch( _neuralGamma ) { - case 0: _regularizerGamma = 0; break; - case 1: _regularizerGamma = 0.1; break; - case 2: _regularizerGamma = 0.01; break; - case 3: _regularizerGamma = 0.001; break; + switch (_neuralGamma) + { + case 0: + _regularizerGamma = 0; + break; + case 1: + _regularizerGamma = 0.1; + break; + case 2: + _regularizerGamma = 0.01; + break; + case 3: + _regularizerGamma = 0.001; + break; } } - if( _entropyOptimizerName == NEWTON ) { + if (_entropyOptimizerName == NEWTON) + { _regularizerGamma = 0.0; } } } -void Config::SetOutput() { +void Config::SetOutput() +{ // Set Output for settings, i.e. feedback on what has been chosen } -bool Config::TokenizeString( string& str, string& option_name, vector& option_value ) { - const string delimiters( " (){}:,\t\n\v\f\r" ); +bool Config::TokenizeString(string &str, string &option_name, vector &option_value) +{ + const string delimiters(" (){}:,\t\n\v\f\r"); // check for comments or empty string string::size_type pos, last_pos; - pos = str.find_first_of( "%" ); - if( ( str.length() == 0 ) || ( pos == 0 ) ) { + pos = str.find_first_of("%"); + if ((str.length() == 0) || (pos == 0)) + { // str is empty or a comment line, so no option here return false; } - if( pos != string::npos ) { + if (pos != string::npos) + { // remove comment at end if necessary - str.erase( pos ); + str.erase(pos); } // look for line composed on only delimiters (usually whitespace) - pos = str.find_first_not_of( delimiters ); - if( pos == string::npos ) { + pos = str.find_first_not_of(delimiters); + if (pos == string::npos) + { return false; } // find the equals sign and split string string name_part, value_part; - pos = str.find( "=" ); - if( pos == string::npos ) { + pos = str.find("="); + if (pos == string::npos) + { string errmsg = "Error in Config::TokenizeString(): line in the configuration file with no \"=\" sign. "; - errmsg += "\nLook for: \n str.length() = " + std::to_string( str.length() ); - spdlog::error( errmsg ); - throw( -1 ); + errmsg += "\nLook for: \n str.length() = " + std::to_string(str.length()); + spdlog::error(errmsg); + throw(-1); } - name_part = str.substr( 0, pos ); - value_part = str.substr( pos + 1, string::npos ); + name_part = str.substr(0, pos); + value_part = str.substr(pos + 1, string::npos); // the first_part should consist of one string with no interior delimiters - last_pos = name_part.find_first_not_of( delimiters, 0 ); - pos = name_part.find_first_of( delimiters, last_pos ); - if( ( name_part.length() == 0 ) || ( last_pos == string::npos ) ) { + last_pos = name_part.find_first_not_of(delimiters, 0); + pos = name_part.find_first_of(delimiters, last_pos); + if ((name_part.length() == 0) || (last_pos == string::npos)) + { string errmsg = "Error in Config::TokenizeString(): "; errmsg += "line in the configuration file with no name before the \"=\" sign.\n"; - spdlog::error( errmsg ); - throw( -1 ); + spdlog::error(errmsg); + throw(-1); } - if( pos == string::npos ) pos = name_part.length(); - option_name = name_part.substr( last_pos, pos - last_pos ); - last_pos = name_part.find_first_not_of( delimiters, pos ); - if( last_pos != string::npos ) { + if (pos == string::npos) + pos = name_part.length(); + option_name = name_part.substr(last_pos, pos - last_pos); + last_pos = name_part.find_first_not_of(delimiters, pos); + if (last_pos != string::npos) + { string errmsg = "Error in Config::TokenizeString(): "; errmsg += "two or more options before an \"=\" sign in the configuration file."; - spdlog::error( errmsg ); - throw( -1 ); + spdlog::error(errmsg); + throw(-1); } - TextProcessingToolbox::StringToUpperCase( option_name ); + TextProcessingToolbox::StringToUpperCase(option_name); // now fill the option value vector option_value.clear(); - last_pos = value_part.find_first_not_of( delimiters, 0 ); - pos = value_part.find_first_of( delimiters, last_pos ); - while( string::npos != pos || string::npos != last_pos ) { + last_pos = value_part.find_first_not_of(delimiters, 0); + pos = value_part.find_first_of(delimiters, last_pos); + while (string::npos != pos || string::npos != last_pos) + { // add token to the vector - option_value.push_back( value_part.substr( last_pos, pos - last_pos ) ); + option_value.push_back(value_part.substr(last_pos, pos - last_pos)); // skip delimiters - last_pos = value_part.find_first_not_of( delimiters, pos ); + last_pos = value_part.find_first_not_of(delimiters, pos); // find next "non-delimiter" - pos = value_part.find_first_of( delimiters, last_pos ); + pos = value_part.find_first_of(delimiters, last_pos); } - if( option_value.size() == 0 ) { + if (option_value.size() == 0) + { string errmsg = "Error in Config::TokenizeString(): "; errmsg += "option " + option_name + " in configuration file with no value assigned.\n"; - spdlog::error( errmsg ); - throw( -1 ); + spdlog::error(errmsg); + throw(-1); } // look for ';' DV delimiters attached to values vector::iterator it; it = option_value.begin(); - while( it != option_value.end() ) { - if( it->compare( ";" ) == 0 ) { + while (it != option_value.end()) + { + if (it->compare(";") == 0) + { it++; continue; } - pos = it->find( ';' ); - if( pos != string::npos ) { - string before_semi = it->substr( 0, pos ); - string after_semi = it->substr( pos + 1, string::npos ); - if( before_semi.empty() ) { + pos = it->find(';'); + if (pos != string::npos) + { + string before_semi = it->substr(0, pos); + string after_semi = it->substr(pos + 1, string::npos); + if (before_semi.empty()) + { *it = ";"; it++; - option_value.insert( it, after_semi ); + option_value.insert(it, after_semi); } - else { + else + { *it = before_semi; it++; vector to_insert; - to_insert.push_back( ";" ); - if( !after_semi.empty() ) to_insert.push_back( after_semi ); - option_value.insert( it, to_insert.begin(), to_insert.end() ); + to_insert.push_back(";"); + if (!after_semi.empty()) + to_insert.push_back(after_semi); + option_value.insert(it, to_insert.begin(), to_insert.end()); } - it = option_value.begin(); // go back to beginning; not efficient + it = option_value.begin(); // go back to beginning; not efficient continue; } - else { + else + { it++; } } // remove any consecutive ";" - it = option_value.begin(); + it = option_value.begin(); bool semi_at_prev = false; - while( it != option_value.end() ) { - if( semi_at_prev ) { - if( it->compare( ";" ) == 0 ) { - option_value.erase( it ); - it = option_value.begin(); + while (it != option_value.end()) + { + if (semi_at_prev) + { + if (it->compare(";") == 0) + { + option_value.erase(it); + it = option_value.begin(); semi_at_prev = false; continue; } } - if( it->compare( ";" ) == 0 ) { + if (it->compare(";") == 0) + { semi_at_prev = true; } - else { + else + { semi_at_prev = false; } it++; @@ -1038,7 +1167,8 @@ bool Config::TokenizeString( string& str, string& option_name, vector& o return true; } -void Config::InitLogger() { +void Config::InitLogger() +{ // Declare Logger spdlog::level::level_enum terminalLogLvl; @@ -1047,138 +1177,153 @@ void Config::InitLogger() { // Choose Logger #ifdef BUILD_TESTING terminalLogLvl = spdlog::level::err; - fileLogLvl = spdlog::level::info; + fileLogLvl = spdlog::level::info; #elif NDEBUG terminalLogLvl = spdlog::level::info; - fileLogLvl = spdlog::level::info; + fileLogLvl = spdlog::level::info; #else terminalLogLvl = spdlog::level::debug; - fileLogLvl = spdlog::level::debug; + fileLogLvl = spdlog::level::debug; #endif // create log dir if not existent - if( !std::filesystem::exists( _logDir ) ) { - std::filesystem::create_directory( _logDir ); + if (!std::filesystem::exists(_logDir)) + { + std::filesystem::create_directory(_logDir); } - if( !spdlog::get( "event" ) ) { + if (!spdlog::get("event")) + { // create sinks if level is not off std::vector sinks; - if( terminalLogLvl != spdlog::level::off ) { + if (terminalLogLvl != spdlog::level::off) + { // create spdlog terminal sink auto terminalSink = std::make_shared(); - terminalSink->set_level( terminalLogLvl ); - terminalSink->set_pattern( "%v" ); - sinks.push_back( terminalSink ); + terminalSink->set_level(terminalLogLvl); + terminalSink->set_pattern("%v"); + sinks.push_back(terminalSink); } - if( fileLogLvl != spdlog::level::off ) { + if (fileLogLvl != spdlog::level::off) + { // define filename on root int pe; - MPI_Comm_rank( MPI_COMM_WORLD, &pe ); + MPI_Comm_rank(MPI_COMM_WORLD, &pe); char cfilename[1024]; - if( pe == 0 ) { + if (pe == 0) + { // get date and time - time_t now = time( nullptr ); + time_t now = time(nullptr); struct tm tstruct; char buf[80]; - tstruct = *localtime( &now ); - strftime( buf, sizeof( buf ), "%Y-%m-%d_%X", &tstruct ); + tstruct = *localtime(&now); + strftime(buf, sizeof(buf), "%Y-%m-%d_%X", &tstruct); // set filename std::string filename; - if( _logFileName.compare( "use_date" ) == 0 ) { - _logFileName = buf; // set filename to date and time + if (_logFileName.compare("use_date") == 0) + { + _logFileName = buf; // set filename to date and time } filename = _logFileName; // in case of existing files append '_#' int ctr = 0; - if( std::filesystem::exists( _logDir + filename ) ) { - filename += "_" + std::to_string( ++ctr ); + if (std::filesystem::exists(_logDir + filename)) + { + filename += "_" + std::to_string(++ctr); } - while( std::filesystem::exists( _logDir + filename ) ) { + while (std::filesystem::exists(_logDir + filename)) + { filename.pop_back(); - filename += std::to_string( ++ctr ); + filename += std::to_string(++ctr); } - strncpy( cfilename, filename.c_str(), sizeof( cfilename ) ); - cfilename[sizeof( cfilename ) - 1] = 0; + strncpy(cfilename, filename.c_str(), sizeof(cfilename)); + cfilename[sizeof(cfilename) - 1] = 0; } - MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); - MPI_Barrier( MPI_COMM_WORLD ); + MPI_Bcast(&cfilename, sizeof(cfilename), MPI_CHAR, 0, MPI_COMM_WORLD); + MPI_Barrier(MPI_COMM_WORLD); // create spdlog file sink - auto fileSink = std::make_shared( _logDir + cfilename ); - fileSink->set_level( fileLogLvl ); - fileSink->set_pattern( "%Y-%m-%d %H:%M:%S.%f | %v" ); - sinks.push_back( fileSink ); + auto fileSink = std::make_shared(_logDir + cfilename); + fileSink->set_level(fileLogLvl); + fileSink->set_pattern("%Y-%m-%d %H:%M:%S.%f | %v"); + sinks.push_back(fileSink); } // register all sinks - auto event_logger = std::make_shared( "event", begin( sinks ), end( sinks ) ); - spdlog::register_logger( event_logger ); - spdlog::flush_every( std::chrono::seconds( 5 ) ); + auto event_logger = std::make_shared("event", begin(sinks), end(sinks)); + spdlog::register_logger(event_logger); + spdlog::flush_every(std::chrono::seconds(5)); } - if( !spdlog::get( "tabular" ) ) { + if (!spdlog::get("tabular")) + { // create sinks if level is not off std::vector sinks; - if( fileLogLvl != spdlog::level::off ) { + if (fileLogLvl != spdlog::level::off) + { // define filename on root int pe; - MPI_Comm_rank( MPI_COMM_WORLD, &pe ); + MPI_Comm_rank(MPI_COMM_WORLD, &pe); char cfilename[1024]; - if( pe == 0 ) { + if (pe == 0) + { // get date and time - time_t now = time( nullptr ); + time_t now = time(nullptr); struct tm tstruct; char buf[80]; - tstruct = *localtime( &now ); - strftime( buf, sizeof( buf ), "%Y-%m-%d_%X.csv", &tstruct ); + tstruct = *localtime(&now); + strftime(buf, sizeof(buf), "%Y-%m-%d_%X.csv", &tstruct); // set filename std::string filename; - if( _logFileName.compare( "use_date" ) == 0 ) - filename = buf; // set filename to date and time + if (_logFileName.compare("use_date") == 0) + filename = buf; // set filename to date and time else filename = _logFileName + ".csv"; // in case of existing files append '_#' int ctr = 0; - if( std::filesystem::exists( _logDir + filename ) ) { - filename += "_" + std::to_string( ++ctr ); + if (std::filesystem::exists(_logDir + filename)) + { + filename += "_" + std::to_string(++ctr); } - while( std::filesystem::exists( _logDir + filename ) ) { + while (std::filesystem::exists(_logDir + filename)) + { filename.pop_back(); - filename += std::to_string( ++ctr ); + filename += std::to_string(++ctr); } - strncpy( cfilename, filename.c_str(), sizeof( cfilename ) ); - cfilename[sizeof( cfilename ) - 1] = 0; + strncpy(cfilename, filename.c_str(), sizeof(cfilename)); + cfilename[sizeof(cfilename) - 1] = 0; } - MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); - MPI_Barrier( MPI_COMM_WORLD ); + MPI_Bcast(&cfilename, sizeof(cfilename), MPI_CHAR, 0, MPI_COMM_WORLD); + MPI_Barrier(MPI_COMM_WORLD); // create spdlog file sink - auto fileSink = std::make_shared( _logDir + cfilename ); - fileSink->set_level( fileLogLvl ); - fileSink->set_pattern( "%Y-%m-%d %H:%M:%S.%f ,%v" ); - sinks.push_back( fileSink ); + auto fileSink = std::make_shared(_logDir + cfilename); + fileSink->set_level(fileLogLvl); + fileSink->set_pattern("%Y-%m-%d %H:%M:%S.%f ,%v"); + sinks.push_back(fileSink); } // register all sinks - auto tabular_logger = std::make_shared( "tabular", begin( sinks ), end( sinks ) ); - spdlog::register_logger( tabular_logger ); - spdlog::flush_every( std::chrono::seconds( 5 ) ); + auto tabular_logger = std::make_shared("tabular", begin(sinks), end(sinks)); + spdlog::register_logger(tabular_logger); + spdlog::flush_every(std::chrono::seconds(5)); } } - // Function to find the key for a given value in a map template -K Config::findKey(const std::map& myMap, const V& valueToFind) { - for (const auto& pair : myMap) { - if (pair.second == valueToFind) { +K Config::findKey(const std::map &myMap, const V &valueToFind) +{ + for (const auto &pair : myMap) + { + if (pair.second == valueToFind) + { return pair.first; // Return the key if the value is found } } diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index 9d67c312..c248de99 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -8,53 +8,64 @@ // ---- Checkerboard Sn ---- // Constructor for Ckeckerboard case with Sn -Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { +Lattice_SN::Lattice_SN(Config *settings, Mesh *mesh) : ProblemBase(settings, mesh) +{ // Initialise crosssections to 1 - _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); - _totalXS = Vector( _mesh->GetNumCells(), 1.0 ); + _scatteringXS = Vector(_mesh->GetNumCells(), 1.0); + _totalXS = Vector(_mesh->GetNumCells(), 1.0); // For absorption cells: set scattering XS to 0 and absorption to 10 auto cellMids = _mesh->GetCellMidPoints(); - for( unsigned j = 0; j < cellMids.size(); ++j ) { - if( isAbsorption( cellMids[j] ) ) { + for (unsigned j = 0; j < cellMids.size(); ++j) + { + if (isAbsorption(cellMids[j])) + { _scatteringXS[j] = 0.0; - _totalXS[j] = 10.0; + _totalXS[j] = 10.0; } } SetGhostCells(); - } Lattice_SN::~Lattice_SN() {} -VectorVector Lattice_SN::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } +VectorVector Lattice_SN::GetScatteringXS(const Vector &energies) { return VectorVector(energies.size(), _scatteringXS); } -VectorVector Lattice_SN::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } +VectorVector Lattice_SN::GetTotalXS(const Vector &energies) { return VectorVector(energies.size(), _totalXS); } -std::vector Lattice_SN::GetExternalSource( const Vector& /*energies*/ ) { - VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); +std::vector Lattice_SN::GetExternalSource(const Vector & /*energies*/) +{ + VectorVector Q(_mesh->GetNumCells(), Vector(1u, 0.0)); auto cellMids = _mesh->GetCellMidPoints(); - for( unsigned j = 0; j < cellMids.size(); ++j ) { - if( isSource( cellMids[j] ) ) Q[j] = _settings->GetSourceMagnitude(); // isotropic source + for (unsigned j = 0; j < cellMids.size(); ++j) + { + if (isSource(cellMids[j])) + Q[j] = _settings->GetSourceMagnitude(); // isotropic source } - return std::vector( 1u, Q ); + return std::vector(1u, Q); } -VectorVector Lattice_SN::SetupIC() { - VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-10 ) ); +VectorVector Lattice_SN::SetupIC() +{ + VectorVector psi(_mesh->GetNumCells(), Vector(_settings->GetNQuadPoints(), 1e-10)); return psi; } -bool Lattice_SN::isAbsorption( const Vector& pos ) const { +bool Lattice_SN::isAbsorption(const Vector &pos) const +{ // Check whether pos is inside absorbing squares - double xy_corrector =-3.5; - std::vector lbounds{ 1+xy_corrector, 2+xy_corrector, 3+xy_corrector, 4+xy_corrector, 5+xy_corrector }; - std::vector ubounds{ 2+xy_corrector, 3+xy_corrector, 4+xy_corrector, 5+xy_corrector, 6+xy_corrector }; - for( unsigned k = 0; k < lbounds.size(); ++k ) { - for( unsigned l = 0; l < lbounds.size(); ++l ) { - if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; - if( pos[0] >= lbounds[k] && pos[0] <= ubounds[k] && pos[1] >= lbounds[l] && pos[1] <= ubounds[l] ) { + double xy_corrector = -3.5; + std::vector lbounds{1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector}; + std::vector ubounds{2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector}; + for (unsigned k = 0; k < lbounds.size(); ++k) + { + for (unsigned l = 0; l < lbounds.size(); ++l) + { + if ((l + k) % 2 == 1 || (k == 2 && l == 2) || (k == 2 && l == 4)) + continue; + if (pos[0] >= lbounds[k] && pos[0] <= ubounds[k] && pos[1] >= lbounds[l] && pos[1] <= ubounds[l]) + { return true; } } @@ -62,28 +73,31 @@ bool Lattice_SN::isAbsorption( const Vector& pos ) const { return false; } -bool Lattice_SN::isSource( const Vector& pos ) const { +bool Lattice_SN::isSource(const Vector &pos) const +{ // Check whether pos is part of source region - if( pos[0] >= 3-3.5 && pos[0] <= 4-3.5 && pos[1] >= 3-3.5 && pos[1] <= 4-3.5 ) + if (pos[0] >= 3 - 3.5 && pos[0] <= 4 - 3.5 && pos[1] >= 3 - 3.5 && pos[1] <= 4 - 3.5) return true; else return false; } - -void Lattice_SN::SetGhostCells(){ +void Lattice_SN::SetGhostCells() +{ // Loop over all cells. If its a Dirichlet boundary, add cell to dict with {cell_idx, boundary_value} auto cellBoundaries = _mesh->GetBoundaryTypes(); std::map ghostCellMap; - QuadratureBase* quad = QuadratureBase::Create( _settings ); + QuadratureBase *quad = QuadratureBase::Create(_settings); VectorVector vq = quad->GetPoints(); unsigned nq = quad->GetNq(); Vector void_ghostcell(nq, 0.0); - for (unsigned idx_cell =0; idx_cell<_mesh->GetNumCells(); idx_cell ++){ - if (cellBoundaries[idx_cell]== BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET){ + for (unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++) + { + if (cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET) + { ghostCellMap.insert({idx_cell, void_ghostcell}); } } @@ -92,141 +106,166 @@ void Lattice_SN::SetGhostCells(){ delete quad; } -const Vector& Lattice_SN::GetGhostCellValue(int idx_cell, const Vector& cell_sol){ //re-write to use pointers +const Vector &Lattice_SN::GetGhostCellValue(int idx_cell, const Vector &cell_sol) +{ // re-write to use pointers return _ghostCells[idx_cell]; } - // ---- Checkerboard Moments ---- // Constructor for checkerboard case with Pn -Lattice_Moment::Lattice_Moment( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { +Lattice_Moment::Lattice_Moment(Config *settings, Mesh *mesh) : ProblemBase(settings, mesh) +{ // Initialise crosssections = 1 (scattering) - _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); - _totalXS = Vector( _mesh->GetNumCells(), 1.0 ); + _scatteringXS = Vector(_mesh->GetNumCells(), 1.0); + _totalXS = Vector(_mesh->GetNumCells(), 1.0); // for absorption regions change crosssections to all absorption auto cellMids = _mesh->GetCellMidPoints(); - for( unsigned j = 0; j < cellMids.size(); ++j ) { - if( isAbsorption( cellMids[j] ) ) { + for (unsigned j = 0; j < cellMids.size(); ++j) + { + if (isAbsorption(cellMids[j])) + { _scatteringXS[j] = 0.0; - _totalXS[j] = 10.0; + _totalXS[j] = 10.0; } } } Lattice_Moment::~Lattice_Moment() {} -VectorVector Lattice_Moment::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } +VectorVector Lattice_Moment::GetScatteringXS(const Vector &energies) { return VectorVector(energies.size(), _scatteringXS); } -VectorVector Lattice_Moment::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } +VectorVector Lattice_Moment::GetTotalXS(const Vector &energies) { return VectorVector(energies.size(), _totalXS); } -std::vector Lattice_Moment::GetExternalSource( const Vector& /*energies*/ ) { +std::vector Lattice_Moment::GetExternalSource(const Vector & /*energies*/) +{ // In case of PN, spherical basis is per default SPHERICAL_HARMONICS - double integrationFactor = ( 4 * M_PI ); - if( _settings->GetDim() == 2 ) { + double integrationFactor = (4 * M_PI); + if (_settings->GetDim() == 2) + { integrationFactor = M_PI; } - SphericalBase* tempBase = SphericalBase::Create( _settings ); + SphericalBase *tempBase = SphericalBase::Create(_settings); unsigned ntotalEquations = tempBase->GetBasisSize(); - VectorVector Q( _mesh->GetNumCells(), Vector( ntotalEquations, 0.0 ) ); // zero could lead to problems? + VectorVector Q(_mesh->GetNumCells(), Vector(ntotalEquations, 0.0)); // zero could lead to problems? VectorVector cellMids = _mesh->GetCellMidPoints(); - Vector uIC( ntotalEquations, 0 ); + Vector uIC(ntotalEquations, 0); - if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { - QuadratureBase* quad = QuadratureBase::Create( _settings ); + if (_settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS) + { + QuadratureBase *quad = QuadratureBase::Create(_settings); VectorVector quadPointsSphere = quad->GetPointsSphere(); - Vector w = quad->GetWeights(); + Vector w = quad->GetWeights(); double my, phi; - VectorVector moments = VectorVector( quad->GetNq(), Vector( tempBase->GetBasisSize(), 0.0 ) ); + VectorVector moments = VectorVector(quad->GetNq(), Vector(tempBase->GetBasisSize(), 0.0)); - for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { - my = quadPointsSphere[idx_quad][0]; - phi = quadPointsSphere[idx_quad][1]; - moments[idx_quad] = tempBase->ComputeSphericalBasis( my, phi ); + for (unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++) + { + my = quadPointsSphere[idx_quad][0]; + phi = quadPointsSphere[idx_quad][1]; + moments[idx_quad] = tempBase->ComputeSphericalBasis(my, phi); } // Integrate <1*m> to get factors for monomial basis in isotropic scattering - for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + for (unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++) + { uIC += w[idx_quad] * moments[idx_quad]; } delete quad; } double kinetic_density = _settings->GetSourceMagnitude(); - for( unsigned j = 0; j < cellMids.size(); ++j ) { - if( isSource( cellMids[j] ) ) { - if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { - Q[j] = kinetic_density * uIC / uIC[0] / integrationFactor; // Remember scaling + for (unsigned j = 0; j < cellMids.size(); ++j) + { + if (isSource(cellMids[j])) + { + if (_settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS) + { + Q[j] = kinetic_density * uIC / uIC[0] / integrationFactor; // Remember scaling } - if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { - Q[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) + if (_settings->GetSphericalBasisName() == SPHERICAL_HARMONICS) + { + Q[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) } } } - delete tempBase; // Only temporally needed - return std::vector( 1u, Q ); + delete tempBase; // Only temporally needed + return std::vector(1u, Q); } -VectorVector Lattice_Moment::SetupIC() { - double integrationFactor = ( 4 * M_PI ); - if( _settings->GetDim() == 2 ) { +VectorVector Lattice_Moment::SetupIC() +{ + double integrationFactor = (4 * M_PI); + if (_settings->GetDim() == 2) + { integrationFactor = M_PI; } // In case of PN, spherical basis is per default SPHERICAL_HARMONICS - SphericalBase* tempBase = SphericalBase::Create( _settings ); + SphericalBase *tempBase = SphericalBase::Create(_settings); unsigned ntotalEquations = tempBase->GetBasisSize(); - VectorVector initialSolution( _mesh->GetNumCells(), Vector( ntotalEquations, 0 ) ); // zero could lead to problems? + VectorVector initialSolution(_mesh->GetNumCells(), Vector(ntotalEquations, 0)); // zero could lead to problems? VectorVector cellMids = _mesh->GetCellMidPoints(); - Vector tempIC( ntotalEquations, 0 ); + Vector tempIC(ntotalEquations, 0); - if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { - QuadratureBase* quad = QuadratureBase::Create( _settings ); + if (_settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS) + { + QuadratureBase *quad = QuadratureBase::Create(_settings); VectorVector quadPointsSphere = quad->GetPointsSphere(); - Vector w = quad->GetWeights(); + Vector w = quad->GetWeights(); double my, phi; - VectorVector moments = VectorVector( quad->GetNq(), Vector( tempBase->GetBasisSize(), 0.0 ) ); + VectorVector moments = VectorVector(quad->GetNq(), Vector(tempBase->GetBasisSize(), 0.0)); - for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { - my = quadPointsSphere[idx_quad][0]; - phi = quadPointsSphere[idx_quad][1]; - moments[idx_quad] = tempBase->ComputeSphericalBasis( my, phi ); + for (unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++) + { + my = quadPointsSphere[idx_quad][0]; + phi = quadPointsSphere[idx_quad][1]; + moments[idx_quad] = tempBase->ComputeSphericalBasis(my, phi); } // Integrate <1*m> to get factors for monomial basis in isotropic scattering - for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + for (unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++) + { tempIC += w[idx_quad] * moments[idx_quad]; } delete quad; } // Initial condition is dirac impulse at (x,y) = (0,0) ==> constant in angle ==> all moments - exept first - are zero. double kinetic_density = 1e-4; - for( unsigned j = 0; j < cellMids.size(); ++j ) { - if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { - initialSolution[j] = kinetic_density * tempIC / tempIC[0] / integrationFactor; // Remember scaling + for (unsigned j = 0; j < cellMids.size(); ++j) + { + if (_settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS) + { + initialSolution[j] = kinetic_density * tempIC / tempIC[0] / integrationFactor; // Remember scaling } - if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { - initialSolution[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) + if (_settings->GetSphericalBasisName() == SPHERICAL_HARMONICS) + { + initialSolution[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) } } - delete tempBase; // Only temporally needed + delete tempBase; // Only temporally needed return initialSolution; } -bool Lattice_Moment::isAbsorption( const Vector& pos ) const { +bool Lattice_Moment::isAbsorption(const Vector &pos) const +{ // Check whether pos is in absorption region - double xy_corrector =-3.5; - std::vector lbounds{ 1+xy_corrector, 2+xy_corrector, 3+xy_corrector, 4+xy_corrector, 5+xy_corrector }; - std::vector ubounds{ 2+xy_corrector, 3+xy_corrector, 4+xy_corrector, 5+xy_corrector, 6+xy_corrector }; - for( unsigned k = 0; k < lbounds.size(); ++k ) { - for( unsigned l = 0; l < lbounds.size(); ++l ) { - if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; - if( pos[0] >= lbounds[k] && pos[0] <= ubounds[k] && pos[1] >= lbounds[l] && pos[1] <= ubounds[l] ) { + double xy_corrector = -3.5; + std::vector lbounds{1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector}; + std::vector ubounds{2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector}; + for (unsigned k = 0; k < lbounds.size(); ++k) + { + for (unsigned l = 0; l < lbounds.size(); ++l) + { + if ((l + k) % 2 == 1 || (k == 2 && l == 2) || (k == 2 && l == 4)) + continue; + if (pos[0] >= lbounds[k] && pos[0] <= ubounds[k] && pos[1] >= lbounds[l] && pos[1] <= ubounds[l]) + { return true; } } @@ -234,9 +273,10 @@ bool Lattice_Moment::isAbsorption( const Vector& pos ) const { return false; } -bool Lattice_Moment::isSource( const Vector& pos ) const { +bool Lattice_Moment::isSource(const Vector &pos) const +{ // Check whether pos is in source region - if( pos[0] >= 3-3.5 && pos[0] <= 4-3.5 && pos[1] >= 3-3.5 && pos[1] <= 4 -3.5) + if (pos[0] >= 3 - 3.5 && pos[0] <= 4 - 3.5 && pos[1] >= 3 - 3.5 && pos[1] <= 4 - 3.5) return true; else return false; diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index 682a1a20..cec04b4b 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -14,7 +14,8 @@ #include "problems/symmetrichohlraum.hpp" #include "toolboxes/errormessages.hpp" -ProblemBase::ProblemBase(Config* settings, Mesh* mesh) { +ProblemBase::ProblemBase(Config *settings, Mesh *mesh) +{ _settings = settings; _mesh = mesh; SetGhostCells(); @@ -22,112 +23,142 @@ ProblemBase::ProblemBase(Config* settings, Mesh* mesh) { ProblemBase::~ProblemBase() {} -ProblemBase* ProblemBase::Create(Config* settings, Mesh* mesh) { +ProblemBase *ProblemBase::Create(Config *settings, Mesh *mesh) +{ // Choose problem type - switch (settings->GetProblemName()) { - case PROBLEM_Linesource: { - if (settings->GetIsMomentSolver()) - return new LineSource_Moment(settings, mesh); - else - return new LineSource_SN(settings, mesh); - } break; - case PROBLEM_Linesource1D: { - if (settings->GetIsMomentSolver()) - return new LineSource_Moment_1D(settings, mesh); - else - return new LineSource_SN_1D(settings, mesh); - } break; - case PROBLEM_Checkerboard: { - if (settings->GetIsMomentSolver()) - return new Checkerboard_Moment(settings, mesh); - else - return new Checkerboard_SN(settings, mesh); - } break; - case PROBLEM_Checkerboard1D: { - if (settings->GetIsMomentSolver()) - return new Checkerboard_Moment_1D(settings, mesh); - else - return new Checkerboard_SN_1D(settings, mesh); - } break; - case PROBLEM_Aircavity1D: { - if (settings->GetIsMomentSolver()) - return new AirCavity1D_Moment(settings, mesh); - else - return new AirCavity1D(settings, mesh); - } break; - case PROBLEM_StarmapValidation: { - if (settings->GetIsMomentSolver()) - return new StarMapValidation_Moment(settings, mesh); - else - return new StarMapValidation_SN(settings, mesh); - } break; - case PROBLEM_Phantomimage: - return new PhantomImage(settings, mesh); - case PROBLEM_RadiationCT: { - if (settings->GetIsMomentSolver()) - return new RadiationCTImage_Moment(settings, mesh); - else - return new RadiationCTImage(settings, mesh); - } break; - case PROBLEM_Meltingcube: { - if (settings->GetIsMomentSolver()) - return new MeltingCube_Moment(settings, mesh); - else - return new MeltingCube_SN(settings, mesh); - } break; - case PROBLEM_Meltingcube1D: { - if (settings->GetIsMomentSolver()) - return new MeltingCube_Moment_1D(settings, mesh); - else - return new MeltingCube_SN_1D(settings, mesh); - } break; - case PROBLEM_Hohlraum: { - if (settings->GetIsMomentSolver()) - return new Hohlraum_Moment(settings, mesh); - else - return new Hohlraum(settings, mesh); - } break; - case PROBLEM_SymmetricHohlraum: { - if (settings->GetIsMomentSolver()) - return new SymmetricHohlraum_Moment(settings, mesh); - else - return new SymmetricHohlraum(settings, mesh); - } break; - case PROBLEM_Lattice: { - if (settings->GetIsMomentSolver()) - return new Lattice_Moment(settings, mesh); - else - return new Lattice_SN(settings, mesh); - } break; + switch (settings->GetProblemName()) + { + case PROBLEM_Linesource: + { + if (settings->GetIsMomentSolver()) + return new LineSource_Moment(settings, mesh); + else + return new LineSource_SN(settings, mesh); + } + break; + case PROBLEM_Linesource1D: + { + if (settings->GetIsMomentSolver()) + return new LineSource_Moment_1D(settings, mesh); + else + return new LineSource_SN_1D(settings, mesh); + } + break; + case PROBLEM_Checkerboard: + { + if (settings->GetIsMomentSolver()) + return new Checkerboard_Moment(settings, mesh); + else + return new Checkerboard_SN(settings, mesh); + } + break; + case PROBLEM_Checkerboard1D: + { + if (settings->GetIsMomentSolver()) + return new Checkerboard_Moment_1D(settings, mesh); + else + return new Checkerboard_SN_1D(settings, mesh); + } + break; + case PROBLEM_Aircavity1D: + { + if (settings->GetIsMomentSolver()) + return new AirCavity1D_Moment(settings, mesh); + else + return new AirCavity1D(settings, mesh); + } + break; + case PROBLEM_StarmapValidation: + { + if (settings->GetIsMomentSolver()) + return new StarMapValidation_Moment(settings, mesh); + else + return new StarMapValidation_SN(settings, mesh); + } + break; + case PROBLEM_Phantomimage: + return new PhantomImage(settings, mesh); + case PROBLEM_RadiationCT: + { + if (settings->GetIsMomentSolver()) + return new RadiationCTImage_Moment(settings, mesh); + else + return new RadiationCTImage(settings, mesh); + } + break; + case PROBLEM_Meltingcube: + { + if (settings->GetIsMomentSolver()) + return new MeltingCube_Moment(settings, mesh); + else + return new MeltingCube_SN(settings, mesh); + } + break; + case PROBLEM_Meltingcube1D: + { + if (settings->GetIsMomentSolver()) + return new MeltingCube_Moment_1D(settings, mesh); + else + return new MeltingCube_SN_1D(settings, mesh); + } + break; + case PROBLEM_Hohlraum: + { + if (settings->GetIsMomentSolver()) + return new Hohlraum_Moment(settings, mesh); + else + return new Hohlraum(settings, mesh); + } + break; + case PROBLEM_SymmetricHohlraum: + { + if (settings->GetIsMomentSolver()) + return new SymmetricHohlraum_Moment(settings, mesh); + else + return new SymmetricHohlraum(settings, mesh); + } + break; + case PROBLEM_Lattice: + { + if (settings->GetIsMomentSolver()) + return new Lattice_Moment(settings, mesh); + else + return new Lattice_SN(settings, mesh); + } + break; - default: - ErrorMessages::Error( - "No valid physical problem chosen. Please check your config file", - CURRENT_FUNCTION); - return nullptr; + default: + ErrorMessages::Error( + "No valid physical problem chosen. Please check your config file", + CURRENT_FUNCTION); + return nullptr; } } // Default densities = 1 -std::vector ProblemBase::GetDensity(const VectorVector& cellMidPoints) { +std::vector ProblemBase::GetDensity(const VectorVector &cellMidPoints) +{ return std::vector(cellMidPoints.size(), 1.0); } // Legacy code: Scattering crossection loaded from database ENDF with physics // class -> later overwritten with ICRU data -VectorVector ProblemBase::GetScatteringXSE(const Vector& /*energies*/, - const Vector& /*angles*/) { +VectorVector ProblemBase::GetScatteringXSE(const Vector & /*energies*/, + const Vector & /*angles*/) +{ ErrorMessages::Error("Not yet implemented", CURRENT_FUNCTION); return VectorVector(1, Vector(1, 0)); } // Stopping powers from phyics class or default = -1 -Vector ProblemBase::GetStoppingPower(const Vector& /* energies */) { +Vector ProblemBase::GetStoppingPower(const Vector & /* energies */) +{ ErrorMessages::Error("Not yet implemented", CURRENT_FUNCTION); return Vector(1, -1.0); } -void ProblemBase::SetGhostCells() { +void ProblemBase::SetGhostCells() +{ // Loop over all cells. If its a Dirichlet boundary, add cell to dict with // {cell_idx, boundary_value} auto cellBoundaries = _mesh->GetBoundaryTypes(); @@ -135,9 +166,11 @@ void ProblemBase::SetGhostCells() { Vector dummyGhostCell(1, 0.0); - for (unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++) { + for (unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++) + { if (cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || - cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET) { + cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET) + { // TODO: Refactor Boundary Conditions: We only have Ghost Cells with // Dirichlet conditions right now ghostCellMap.insert({idx_cell, dummyGhostCell}); @@ -146,55 +179,7 @@ void ProblemBase::SetGhostCells() { } } -const Vector& ProblemBase::GetGhostCellValue(int idx_cell, - const Vector& cell_sol) { +const Vector &ProblemBase::GetGhostCellValue(int idx_cell, const Vector &cell_sol) +{ return cell_sol; } - -// Needs to go to Solver, not to Problem -double ProblemBase::GetFinalTimeOutflow(const VectorVector& sol, - const VectorVector& sol quadPoints, - const VectorVector& sol quadPoints) { - for (std::map::iterator it = _ghostCells.begin(); - it != _ghostCells.end(); ++it) { // Iterate over boundaries - int idx_cell = it->first; // Get Boundary cell index - for (unsigned idx_nbr = 0; idx_nbr < _mesh->GetNeighbours[idx_cell].size(); - ++idx_nbr) { - if (_mesh->GetNeighbours[idx_cell][idx_nbr] == - _nCells) { // Find face that points outward - for (unsigned idx_quad = 0; idx_quad < quadPoints.size(); ++idx_quad) { - double fluxOut = - _mesh->GetNormals()[idx_cell][idx_nbr] * quadPoints[idx_quad]; - if (fluxOut > 0.0) { - fluxOut* sol[idx_cell][idx_quad] - } - } - } - } - } - return 0; -} - -double ProblemBase::GetTotalOutflow(const VectorVector& sol) { return 0; } - -double ProblemBase::GetMaxOutflow(const VectorVector& sol) { return 0; } - -double ProblemBase::GetFinalTimeAbsorption(const VectorVector& sol) { - return 0; -} - -double ProblemBase::GetTotalAbsorption(const VectorVector& sol) { return 0; } - -double ProblemBase::GetMaxAbsorption(const VectorVector& sol) { return 0; } - -double ProblemBase::GetTotalAbsorptionCenter(const VectorVector& sol) { - return 0; -} - -double ProblemBase::GetTotalAbsorptionVertical(const VectorVector& sol) { - return 0; -} - -double ProblemBase::GetTotalAbsorptionHorizontal(const VectorVector& sol) { - return 0; -} diff --git a/src/solvers/mnsolver.cpp b/src/solvers/mnsolver.cpp index 7b5246df..e3059c96 100644 --- a/src/solvers/mnsolver.cpp +++ b/src/solvers/mnsolver.cpp @@ -15,422 +15,548 @@ #include "spdlog/spdlog.h" #include -MNSolver::MNSolver( Config* settings ) : SolverBase( settings ) { +MNSolver::MNSolver(Config *settings) : SolverBase(settings) +{ _polyDegreeBasis = settings->GetMaxMomentDegree(); - _basis = SphericalBase::Create( _settings ); - _nSystem = _basis->GetBasisSize(); - + _basis = SphericalBase::Create(_settings); + _nSystem = _basis->GetBasisSize(); // build quadrature object and store quadrature points and weights _quadPoints = _quadrature->GetPoints(); - _weights = _quadrature->GetWeights(); + _weights = _quadrature->GetWeights(); //_nq = _quadrature->GetNq(); _quadPointsSphere = _quadrature->GetPointsSphere(); //_settings->SetNQuadPoints( _nq ); // Initialize Entropy - _entropy = EntropyBase::Create( _settings ); + _entropy = EntropyBase::Create(_settings); // Initialize Optimizer - _optimizer = OptimizerBase::Create( _settings ); + _optimizer = OptimizerBase::Create(_settings); // Initialize lagrange Multiplier - _alpha = VectorVector( _nCells, Vector( _nSystem, 0.0 ) ); + _alpha = VectorVector(_nCells, Vector(_nSystem, 0.0)); // Initialize kinetic density at grid cells - _kineticDensity = VectorVector( _nCells, Vector( _nq, 0.0 ) ); + _kineticDensity = VectorVector(_nCells, Vector(_nq, 0.0)); // Limiter variables - _solDx = VectorVector( _nCells, Vector( _nq, 0.0 ) ); - _solDy = VectorVector( _nCells, Vector( _nq, 0.0 ) ); - _limiter = VectorVector( _nCells, Vector( _nq, 0.0 ) ); + _solDx = VectorVector(_nCells, Vector(_nq, 0.0)); + _solDy = VectorVector(_nCells, Vector(_nq, 0.0)); + _limiter = VectorVector(_nCells, Vector(_nq, 0.0)); // Initialize and Pre-Compute Moments at quadrature points - _momentBasis = VectorVector( _nq, Vector( _nSystem, 0.0 ) ); + _momentBasis = VectorVector(_nq, Vector(_nSystem, 0.0)); ComputeMoments(); // Initialize Scatter Matrix -- - _scatterMatDiag = Vector( _nSystem, 0.0 ); + _scatterMatDiag = Vector(_nSystem, 0.0); ComputeScatterMatrix(); } -MNSolver::~MNSolver() { +MNSolver::~MNSolver() +{ delete _entropy; delete _optimizer; delete _basis; } -void MNSolver::ComputeScatterMatrix() { +void MNSolver::ComputeScatterMatrix() +{ // --- Isotropic --- - if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + if (_settings->GetSphericalBasisName() == SPHERICAL_HARMONICS) + { _scatterMatDiag[0] = 1.0; - for( unsigned idx_diag = 1; idx_diag < _nSystem; idx_diag++ ) { - _scatterMatDiag[idx_diag] = 0.0; // SPHERICAL_HARMONICS are orthogonal basis + for (unsigned idx_diag = 1; idx_diag < _nSystem; idx_diag++) + { + _scatterMatDiag[idx_diag] = 0.0; // SPHERICAL_HARMONICS are orthogonal basis } } - else { // SPHERICAL_MONOMIALS - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + else + { // SPHERICAL_MONOMIALS + for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) + { _scatterMatDiag[idx_sys] = 0.0; - for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { + for (unsigned idx_quad = 0; idx_quad < _nq; idx_quad++) + { _scatterMatDiag[idx_sys] += _momentBasis[idx_quad][idx_sys] * _weights[idx_quad]; } - if( _settings->GetDim() == 1 ) { + if (_settings->GetDim() == 1) + { _scatterMatDiag[idx_sys] /= 2; } - else if( _settings->GetDim() == 2 ) { + else if (_settings->GetDim() == 2) + { _scatterMatDiag[idx_sys] /= M_PI; } - else { // 3D + else + { // 3D _scatterMatDiag[idx_sys] /= 4.0 * M_PI; } } } } -void MNSolver::ComputeMoments() { +void MNSolver::ComputeMoments() +{ double my, phi; - for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { - my = _quadPointsSphere[idx_quad][0]; - phi = _quadPointsSphere[idx_quad][1]; - _momentBasis[idx_quad] = _basis->ComputeSphericalBasis( my, phi ); + for (unsigned idx_quad = 0; idx_quad < _nq; idx_quad++) + { + my = _quadPointsSphere[idx_quad][0]; + phi = _quadPointsSphere[idx_quad][1]; + _momentBasis[idx_quad] = _basis->ComputeSphericalBasis(my, phi); } } -void MNSolver::ComputeRealizableSolution( unsigned idx_cell ) { +void MNSolver::ComputeRealizableSolution(unsigned idx_cell) +{ // double entropyReconstruction = 0.0; - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { // reset solution + for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) + { // reset solution _sol[idx_cell][idx_sys] = 0.0; } - _optimizer->ReconstructMoments( _sol[idx_cell], _alpha[idx_cell], _momentBasis ); + _optimizer->ReconstructMoments(_sol[idx_cell], _alpha[idx_cell], _momentBasis); } -void MNSolver::IterPreprocessing( unsigned /*idx_pseudotime*/ ) { +void MNSolver::IterPreprocessing(unsigned /*idx_pseudotime*/) +{ // ------- Entropy closure Step ---------------- - Vector alpha_norm_dummy( _nCells, 0 ); // ONLY FOR DEBUGGING! THIS SLOWS DOWN THE CODE + Vector alpha_norm_dummy(_nCells, 0); // ONLY FOR DEBUGGING! THIS SLOWS DOWN THE CODE - _optimizer->SolveMultiCell( _alpha, _sol, _momentBasis, alpha_norm_dummy ); // parallel + _optimizer->SolveMultiCell(_alpha, _sol, _momentBasis, alpha_norm_dummy); // parallel // ------- Solution reconstruction step ---- #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { + for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) + { + for (unsigned idx_quad = 0; idx_quad < _nq; idx_quad++) + { // compute the kinetic density at all grid cells - _kineticDensity[idx_cell][idx_quad] = _entropy->EntropyPrimeDual( blaze::dot( _alpha[idx_cell], _momentBasis[idx_quad] ) ); + _kineticDensity[idx_cell][idx_quad] = _entropy->EntropyPrimeDual(blaze::dot(_alpha[idx_cell], _momentBasis[idx_quad])); } - if( _settings->GetRealizabilityReconstruction() ) ComputeRealizableSolution( idx_cell ); + if (_settings->GetRealizabilityReconstruction()) + ComputeRealizableSolution(idx_cell); } // ------ Compute slope limiters and cell gradients --- - if( _reconsOrder > 1 ) { - _mesh->ComputeSlopes( _nq, _solDx, _solDy, _kineticDensity ); // parallel - _mesh->ComputeLimiter( _nq, _solDx, _solDy, _kineticDensity, _limiter ); // parallel + if (_reconsOrder > 1) + { + _mesh->ComputeSlopes(_nq, _solDx, _solDy, _kineticDensity); // parallel + _mesh->ComputeLimiter(_nq, _solDx, _solDy, _kineticDensity, _limiter); // parallel } } -void MNSolver::IterPostprocessing( unsigned /*idx_iter*/ ) { +void MNSolver::IterPostprocessing(unsigned /*idx_iter*/) +{ // --- Compute Flux for solution and Screen Output --- ComputeRadFlux(); } -void MNSolver::ComputeRadFlux() { +void MNSolver::ComputeRadFlux() +{ double firstMomentScaleFactor = 4 * M_PI; - if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D ) { + if (_settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || + _settings->GetProblemName() == PROBLEM_Checkerboard1D) + { firstMomentScaleFactor = 2.0; } - if( _settings->GetDim() == 2 ) { + if (_settings->GetDim() == 2) + { firstMomentScaleFactor = M_PI; } #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { _fluxNew[idx_cell] = _sol[idx_cell][0] * firstMomentScaleFactor; } } -void MNSolver::FluxUpdate() { +void MNSolver::FluxUpdate() +{ // Loop over all spatial cells - if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D ) { + if (_settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || + _settings->GetProblemName() == PROBLEM_Checkerboard1D) + { FluxUpdatePseudo1D(); } - else { + else + { FluxUpdatePseudo2D(); } } -void MNSolver::FluxUpdatePseudo1D() { +void MNSolver::FluxUpdatePseudo1D() +{ // Loop over the grid cells #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) + { // Dirichlet Boundaries stayd - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) + continue; double solL, solR, kineticFlux; - Vector flux( _nSystem, 0.0 ); - for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { - kineticFlux = 0.0; // reset temorary flux - - for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); idx_nbr++ ) { - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { + Vector flux(_nSystem, 0.0); + for (unsigned idx_quad = 0; idx_quad < _nq; idx_quad++) + { + kineticFlux = 0.0; // reset temorary flux + + for (unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); idx_nbr++) + { + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells) + { // Boundary cells are first order and mirror ghost cells solL = _kineticDensity[idx_cell][idx_quad]; solR = solL; } - else { + else + { // interior cell - unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell - if( _reconsOrder == 1 ) { + unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell + if (_reconsOrder == 1) + { solL = _kineticDensity[idx_cell][idx_quad]; solR = _kineticDensity[_neighbors[idx_cell][idx_nbr]][idx_quad]; } - else if( _reconsOrder == 2 ) { + else if (_reconsOrder == 2) + { solL = _kineticDensity[idx_cell][idx_quad] + _limiter[idx_cell][idx_quad] * - ( _solDx[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + - _solDy[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); + (_solDx[idx_cell][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0]) + + _solDy[idx_cell][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1])); solR = _kineticDensity[nbr_glob][idx_quad] + _limiter[nbr_glob][idx_quad] * - ( _solDx[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + - _solDy[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); + (_solDx[nbr_glob][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0]) + + _solDy[nbr_glob][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1])); } - else { - ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); + else + { + ErrorMessages::Error("Reconstruction order not supported.", CURRENT_FUNCTION); } } // Kinetic flux - kineticFlux += _g->Flux1D( _quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr] ); + kineticFlux += _g->Flux1D(_quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr]); } // Solution flux - flux += _momentBasis[idx_quad] * ( _weights[idx_quad] * kineticFlux ); + flux += _momentBasis[idx_quad] * (_weights[idx_quad] * kineticFlux); } _solNew[idx_cell] = flux; } } -void MNSolver::FluxUpdatePseudo2D() { +void MNSolver::FluxUpdatePseudo2D() +{ // Loop over the grid cells #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) + { // Dirichlet Boundaries stayd - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) + continue; double solL, solR, kineticFlux; - Vector flux( _nSystem, 0.0 ); - for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { - kineticFlux = 0.0; // reset temorary flux - for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); idx_nbr++ ) { - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { + Vector flux(_nSystem, 0.0); + for (unsigned idx_quad = 0; idx_quad < _nq; idx_quad++) + { + kineticFlux = 0.0; // reset temorary flux + for (unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); idx_nbr++) + { + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells) + { // Boundary cells are first order and mirror ghost cells solL = _kineticDensity[idx_cell][idx_quad]; solR = solL; } - else { + else + { // interior cell - unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell - if( _reconsOrder == 1 ) { + unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell + if (_reconsOrder == 1) + { solL = _kineticDensity[idx_cell][idx_quad]; solR = _kineticDensity[_neighbors[idx_cell][idx_nbr]][idx_quad]; } - else if( _reconsOrder == 2 ) { + else if (_reconsOrder == 2) + { solL = _kineticDensity[idx_cell][idx_quad] + _limiter[idx_cell][idx_quad] * - ( _solDx[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + - _solDy[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); + (_solDx[idx_cell][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0]) + + _solDy[idx_cell][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1])); solR = _kineticDensity[nbr_glob][idx_quad] + _limiter[nbr_glob][idx_quad] * - ( _solDx[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + - _solDy[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); + (_solDx[nbr_glob][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0]) + + _solDy[nbr_glob][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1])); } - else { - ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); + else + { + ErrorMessages::Error("Reconstruction order not supported.", CURRENT_FUNCTION); } } // Kinetic flux - kineticFlux += _g->Flux( _quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr] ); + kineticFlux += _g->Flux(_quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr]); } // Solution flux - flux += _momentBasis[idx_quad] * ( _weights[idx_quad] * kineticFlux ); + flux += _momentBasis[idx_quad] * (_weights[idx_quad] * kineticFlux); } _solNew[idx_cell] = flux; } } -void MNSolver::FVMUpdate( unsigned idx_iter ) { +void MNSolver::FVMUpdate(unsigned idx_iter) +{ // Loop over the grid cells #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) + { // Dirichlet Boundaries stay - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) + continue; // Flux update - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) + { _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] /* old solution */ - - ( _dE / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ + - (_dE / _areas[idx_cell]) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ + _dE * _sigmaS[idx_iter][idx_cell] * _sol[idx_cell][0] * _scatterMatDiag[idx_sys] /* scattering gain */ - - _dE * ( _sigmaT[idx_iter][idx_cell] ) * _sol[idx_cell][idx_sys]; /* scattering and absorbtion loss */ + - _dE * (_sigmaT[idx_iter][idx_cell]) * _sol[idx_cell][idx_sys]; /* scattering and absorbtion loss */ } // Source Term _solNew[idx_cell] += _dE * _Q[0][idx_cell]; } } -void MNSolver::PrepareVolumeOutput() { +void MNSolver::PrepareVolumeOutput() +{ unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); - _outputFieldNames.resize( nGroups ); - _outputFields.resize( nGroups ); + _outputFieldNames.resize(nGroups); + _outputFields.resize(nGroups); // Prepare all OutputGroups ==> Specified in option VOLUME_OUTPUT #pragma omp parallel for - for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { + for (unsigned idx_group = 0; idx_group < nGroups; idx_group++) + { // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch( _settings->GetVolumeOutput()[idx_group] ) { - case MINIMAL: - // Currently only one entry ==> rad flux - _outputFields[idx_group].resize( 1 ); - _outputFieldNames[idx_group].resize( 1 ); - _outputFields[idx_group][0].resize( _nCells ); - _outputFieldNames[idx_group][0] = "radiation flux density"; - break; - case MOMENTS: - // As many entries as there are moments in the system - _outputFields[idx_group].resize( _nSystem ); - _outputFieldNames[idx_group].resize( _nSystem ); - if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { - if( _settings->GetDim() == 3 ) { - for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { // 3D - for( int idx_k = -idx_l; idx_k <= idx_l; idx_k++ ) { - _outputFields[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )].resize( _nCells ); - _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )] = - std::string( "u_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); - } + switch (_settings->GetVolumeOutput()[idx_group]) + { + case MINIMAL: + // Currently only one entry ==> rad flux + _outputFields[idx_group].resize(1); + _outputFieldNames[idx_group].resize(1); + _outputFields[idx_group][0].resize(_nCells); + _outputFieldNames[idx_group][0] = "radiation flux density"; + break; + case MOMENTS: + // As many entries as there are moments in the system + _outputFields[idx_group].resize(_nSystem); + _outputFieldNames[idx_group].resize(_nSystem); + if (_settings->GetSphericalBasisName() == SPHERICAL_HARMONICS) + { + if (_settings->GetDim() == 3) + { + for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) + { // 3D + for (int idx_k = -idx_l; idx_k <= idx_l; idx_k++) + { + _outputFields[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)].resize(_nCells); + _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)] = + std::string("u_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); } } - else if( _settings->GetDim() == 2 ) { - unsigned count = 0; - for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { - for( int idx_k = -idx_l; idx_k <= idx_l; idx_k++ ) { - if( ( idx_l + idx_k ) % 2 == 0 ) { - _outputFields[idx_group][count].resize( _nCells ); - _outputFieldNames[idx_group][count] = - std::string( "u_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); - count++; - } + } + else if (_settings->GetDim() == 2) + { + unsigned count = 0; + for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) + { + for (int idx_k = -idx_l; idx_k <= idx_l; idx_k++) + { + if ((idx_l + idx_k) % 2 == 0) + { + _outputFields[idx_group][count].resize(_nCells); + _outputFieldNames[idx_group][count] = + std::string("u_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); + count++; } } } - else if( _settings->GetDim() == 1 ) { - for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { - _outputFields[idx_group][idx_l].resize( _nCells ); - _outputFieldNames[idx_group][idx_l] = std::string( "u_" + std::to_string( idx_l ) + "^0" ); - } + } + else if (_settings->GetDim() == 1) + { + for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) + { + _outputFields[idx_group][idx_l].resize(_nCells); + _outputFieldNames[idx_group][idx_l] = std::string("u_" + std::to_string(idx_l) + "^0"); } } - else { - for( unsigned idx_l = 0; idx_l <= _polyDegreeBasis; idx_l++ ) { - unsigned maxOrder_k = _basis->GetCurrDegreeSize( idx_l ); - for( unsigned idx_k = 0; idx_k < maxOrder_k; idx_k++ ) { - _outputFields[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )].resize( _nCells ); - _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )] = - std::string( "u_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); - } + } + else + { + for (unsigned idx_l = 0; idx_l <= _polyDegreeBasis; idx_l++) + { + unsigned maxOrder_k = _basis->GetCurrDegreeSize(idx_l); + for (unsigned idx_k = 0; idx_k < maxOrder_k; idx_k++) + { + _outputFields[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)].resize(_nCells); + _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)] = + std::string("u_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); } } - break; - case DUAL_MOMENTS: - // As many entries as there are moments in the system - _outputFields[idx_group].resize( _nSystem ); - _outputFieldNames[idx_group].resize( _nSystem ); - if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { - if( _settings->GetDim() == 3 ) { - for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { - for( int idx_k = -idx_l; idx_k <= idx_l; idx_k++ ) { - _outputFields[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )].resize( _nCells ); - _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )] = - std::string( "alpha_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); - } + } + break; + case DUAL_MOMENTS: + // As many entries as there are moments in the system + _outputFields[idx_group].resize(_nSystem); + _outputFieldNames[idx_group].resize(_nSystem); + if (_settings->GetSphericalBasisName() == SPHERICAL_HARMONICS) + { + if (_settings->GetDim() == 3) + { + for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) + { + for (int idx_k = -idx_l; idx_k <= idx_l; idx_k++) + { + _outputFields[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)].resize(_nCells); + _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)] = + std::string("alpha_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); } } - else if( _settings->GetDim() == 2 ) { - unsigned count = 0; - for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { - for( int idx_k = -idx_l; idx_k <= idx_l; idx_k++ ) { - if( ( idx_l + idx_k ) % 2 == 0 ) { - _outputFields[idx_group][count].resize( _nCells ); - _outputFieldNames[idx_group][count] = - std::string( "alpha_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); - count++; - } + } + else if (_settings->GetDim() == 2) + { + unsigned count = 0; + for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) + { + for (int idx_k = -idx_l; idx_k <= idx_l; idx_k++) + { + if ((idx_l + idx_k) % 2 == 0) + { + _outputFields[idx_group][count].resize(_nCells); + _outputFieldNames[idx_group][count] = + std::string("alpha_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); + count++; } } } - else if( _settings->GetDim() == 1 ) { - for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { - _outputFields[idx_group][idx_l].resize( _nCells ); - _outputFieldNames[idx_group][idx_l] = std::string( "alpha_" + std::to_string( idx_l ) + "^0" ); - } + } + else if (_settings->GetDim() == 1) + { + for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) + { + _outputFields[idx_group][idx_l].resize(_nCells); + _outputFieldNames[idx_group][idx_l] = std::string("alpha_" + std::to_string(idx_l) + "^0"); } } - else { // SPHERICAL_MONOMIALS - for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { - unsigned maxOrder_k = _basis->GetCurrDegreeSize( idx_l ); - for( unsigned idx_k = 0; idx_k < maxOrder_k; idx_k++ ) { - _outputFields[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )].resize( _nCells ); - _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )] = - std::string( "alpha_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); - } + } + else + { // SPHERICAL_MONOMIALS + for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) + { + unsigned maxOrder_k = _basis->GetCurrDegreeSize(idx_l); + for (unsigned idx_k = 0; idx_k < maxOrder_k; idx_k++) + { + _outputFields[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)].resize(_nCells); + _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)] = + std::string("alpha_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); } } - break; - case ANALYTIC: - // one entry per cell - _outputFields[idx_group].resize( 1 ); - _outputFieldNames[idx_group].resize( 1 ); - _outputFields[idx_group][0].resize( _nCells ); - _outputFieldNames[idx_group][0] = std::string( "analytic radiation flux density" ); - break; - default: ErrorMessages::Error( "Volume Output Group not defined for MN Solver!", CURRENT_FUNCTION ); break; + } + break; + case ANALYTIC: + // one entry per cell + _outputFields[idx_group].resize(1); + _outputFieldNames[idx_group].resize(1); + _outputFields[idx_group][0].resize(_nCells); + _outputFieldNames[idx_group][0] = std::string("analytic radiation flux density"); + break; + default: + ErrorMessages::Error("Volume Output Group not defined for MN Solver!", CURRENT_FUNCTION); + break; } } } -void MNSolver::WriteVolumeOutput( unsigned idx_iter ) { +void MNSolver::WriteVolumeOutput(unsigned idx_iter) +{ unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); // Check if volume output fields are written to file this iteration - if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || - ( idx_iter == _nEnergies - 1 ) /* need sol at last iteration */ ) { + if ((_settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0) || + (idx_iter == _nEnergies - 1) /* need sol at last iteration */) + { #pragma omp parallel for - for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { - switch( _settings->GetVolumeOutput()[idx_group] ) { - case MINIMAL: - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - _outputFields[idx_group][0][idx_cell] = _fluxNew[idx_cell]; - } - break; - case MOMENTS: - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - _outputFields[idx_group][idx_sys][idx_cell] = _sol[idx_cell][idx_sys]; - } - } - break; - case DUAL_MOMENTS: - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - _outputFields[idx_group][idx_sys][idx_cell] = _alpha[idx_cell][idx_sys]; - } + for (unsigned idx_group = 0; idx_group < nGroups; idx_group++) + { + switch (_settings->GetVolumeOutput()[idx_group]) + { + case MINIMAL: + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { + _outputFields[idx_group][0][idx_cell] = _fluxNew[idx_cell]; + } + break; + case MOMENTS: + for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) + { + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { + _outputFields[idx_group][idx_sys][idx_cell] = _sol[idx_cell][idx_sys]; } - break; - case ANALYTIC: - // Compute total "mass" of the system ==> to check conservation properties - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - double time = idx_iter * _dE; - _outputFields[idx_group][0][idx_cell] = _problem->GetAnalyticalSolution( - _mesh->GetCellMidPoints()[idx_cell][0], _mesh->GetCellMidPoints()[idx_cell][1], time, _sigmaS[idx_iter][idx_cell] ); + } + break; + case DUAL_MOMENTS: + for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) + { + for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) + { + _outputFields[idx_group][idx_sys][idx_cell] = _alpha[idx_cell][idx_sys]; } - break; - default: ErrorMessages::Error( "Volume Output Group not defined for MN Solver!", CURRENT_FUNCTION ); break; + } + break; + case ANALYTIC: + // Compute total "mass" of the system ==> to check conservation properties + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { + double time = idx_iter * _dE; + _outputFields[idx_group][0][idx_cell] = _problem->GetAnalyticalSolution( + _mesh->GetCellMidPoints()[idx_cell][0], _mesh->GetCellMidPoints()[idx_cell][1], time, _sigmaS[idx_iter][idx_cell]); + } + break; + default: + ErrorMessages::Error("Volume Output Group not defined for MN Solver!", CURRENT_FUNCTION); + break; } } } } + +double MNSolver::GetCurrentOutflow() +{ + return 0.0; +} + +double MNSolver::GetTotalOutflow(unsigned iteration) +{ + if (iteration == 0) + { + _timeDependentOutflow[iteration] = GetCurrentOutflow() * _dE; + } + else + { + _timeDependentOutflow[iteration] = _timeDependentOutflow[iteration - 1] + GetCurrentOutflow() * _dE; + } + return _timeDependentOutflow[iteration]; +} + +double MNSolver::GetMaxOutflow() { return 0; } + +double MNSolver::GetFinalTimeAbsorption() { return 0; } + +double MNSolver::GetTotalAbsorption() { return 0; } + +double MNSolver::GetMaxAbsorption() { return 0; } + +double MNSolver::GetTotalAbsorptionCenter() { return 0; } + +double MNSolver::GetTotalAbsorptionVertical() { return 0; } + +double MNSolver::GetTotalAbsorptionHorizontal() { return 0; } diff --git a/src/solvers/pnsolver.cpp b/src/solvers/pnsolver.cpp index 55b7535a..cc9adc72 100644 --- a/src/solvers/pnsolver.cpp +++ b/src/solvers/pnsolver.cpp @@ -13,32 +13,33 @@ #include #include -PNSolver::PNSolver( Config* settings ) : SolverBase( settings ) { +PNSolver::PNSolver(Config *settings) : SolverBase(settings) +{ _polyDegreeBasis = settings->GetMaxMomentDegree(); - _nSystem = GlobalIndex( int( _polyDegreeBasis ), int( _polyDegreeBasis ) ) + 1; + _nSystem = GlobalIndex(int(_polyDegreeBasis), int(_polyDegreeBasis)) + 1; // Initialize System Matrices - _Ax = SymMatrix( _nSystem ); - _Ay = SymMatrix( _nSystem ); - _Az = SymMatrix( _nSystem ); - - _AxPlus = Matrix( _nSystem, _nSystem, 0 ); - _AxMinus = Matrix( _nSystem, _nSystem, 0 ); - _AxAbs = Matrix( _nSystem, _nSystem, 0 ); - _AyPlus = Matrix( _nSystem, _nSystem, 0 ); - _AyMinus = Matrix( _nSystem, _nSystem, 0 ); - _AyAbs = Matrix( _nSystem, _nSystem, 0 ); - _AzPlus = Matrix( _nSystem, _nSystem, 0 ); - _AzMinus = Matrix( _nSystem, _nSystem, 0 ); - _AzAbs = Matrix( _nSystem, _nSystem, 0 ); + _Ax = SymMatrix(_nSystem); + _Ay = SymMatrix(_nSystem); + _Az = SymMatrix(_nSystem); + + _AxPlus = Matrix(_nSystem, _nSystem, 0); + _AxMinus = Matrix(_nSystem, _nSystem, 0); + _AxAbs = Matrix(_nSystem, _nSystem, 0); + _AyPlus = Matrix(_nSystem, _nSystem, 0); + _AyMinus = Matrix(_nSystem, _nSystem, 0); + _AyAbs = Matrix(_nSystem, _nSystem, 0); + _AzPlus = Matrix(_nSystem, _nSystem, 0); + _AzMinus = Matrix(_nSystem, _nSystem, 0); + _AzAbs = Matrix(_nSystem, _nSystem, 0); // Limiter variables - _solDx = VectorVector( _nCells, Vector( _nSystem, 0.0 ) ); - _solDy = VectorVector( _nCells, Vector( _nSystem, 0.0 ) ); - _limiter = VectorVector( _nCells, Vector( _nSystem, 0.0 ) ); + _solDx = VectorVector(_nCells, Vector(_nSystem, 0.0)); + _solDy = VectorVector(_nCells, Vector(_nSystem, 0.0)); + _limiter = VectorVector(_nCells, Vector(_nSystem, 0.0)); // Initialize Scatter Matrix - _scatterMatDiag = Vector( _nSystem, 0 ); + _scatterMatDiag = Vector(_nSystem, 0); // Fill System Matrices ComputeSystemMatrices(); @@ -51,23 +52,27 @@ PNSolver::PNSolver( Config* settings ) : SolverBase( settings ) { // AdaptTimeStep(); - if( settings->GetCleanFluxMat() ) CleanFluxMatrices(); + if (settings->GetCleanFluxMat()) + CleanFluxMatrices(); // Compute moments of initial condition // TODO } -void PNSolver::IterPreprocessing( unsigned /*idx_iter*/ ) { +void PNSolver::IterPreprocessing(unsigned /*idx_iter*/) +{ // ------ Compute slope limiters and cell gradients --- - if( _reconsOrder > 1 ) { - _mesh->ComputeSlopes( _nSystem, _solDx, _solDy, _sol ); - _mesh->ComputeLimiter( _nSystem, _solDx, _solDy, _sol, _limiter ); + if (_reconsOrder > 1) + { + _mesh->ComputeSlopes(_nSystem, _solDx, _solDy, _sol); + _mesh->ComputeLimiter(_nSystem, _solDx, _solDy, _sol, _limiter); } } -void PNSolver::IterPostprocessing( unsigned /*idx_iter*/ ) { +void PNSolver::IterPostprocessing(unsigned /*idx_iter*/) +{ // --- Update Solution --- //_sol = _solNew; @@ -75,157 +80,187 @@ void PNSolver::IterPostprocessing( unsigned /*idx_iter*/ ) { ComputeRadFlux(); } -void PNSolver::ComputeRadFlux() { +void PNSolver::ComputeRadFlux() +{ double firstMomentScaleFactor = 4 * M_PI; - if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D ) { + if (_settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || + _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D) + { firstMomentScaleFactor = 2.0; } #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { _fluxNew[idx_cell] = _sol[idx_cell][0] * firstMomentScaleFactor; } } -void PNSolver::FluxUpdate() { +void PNSolver::FluxUpdate() +{ // Loop over all spatial cells - if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D ) { + if (_settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || + _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D) + { FluxUpdatePseudo1D(); } - else { + else + { FluxUpdatePseudo2D(); } } -void PNSolver::FluxUpdatePseudo1D() { +void PNSolver::FluxUpdatePseudo1D() +{ #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - Vector solL( _nSystem, 0.0 ); - Vector solR( _nSystem, 0.0 ); + for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) + { + Vector solL(_nSystem, 0.0); + Vector solR(_nSystem, 0.0); // Dirichlet cells stay at IC, farfield assumption - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) + continue; // Reset temporary variable psiNew - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) + { _solNew[idx_cell][idx_sys] = 0.0; } // Loop over all neighbor cells (edges) of cell j and compute numerical fluxes - for( unsigned idx_neighbor = 0; idx_neighbor < _neighbors[idx_cell].size(); idx_neighbor++ ) { + for (unsigned idx_neighbor = 0; idx_neighbor < _neighbors[idx_cell].size(); idx_neighbor++) + { // Compute flux contribution and store in psiNew to save memory - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_neighbor] == _nCells ) - _solNew[idx_cell] += _g->Flux1D( _AzPlus, _AzMinus, _sol[idx_cell], _sol[idx_cell], _normals[idx_cell][idx_neighbor] ); - else { - unsigned int nbr_glob = _neighbors[idx_cell][idx_neighbor]; // global idx of neighbor cell - switch( _reconsOrder ) { - // first order solver - case 1: - _solNew[idx_cell] += _g->Flux1D( - _AzPlus, _AzMinus, _sol[idx_cell], _sol[_neighbors[idx_cell][idx_neighbor]], _normals[idx_cell][idx_neighbor] ); - break; - // second order solver - case 2: - // left status of interface - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { - solL[idx_sys] = - _sol[idx_cell][idx_sys] + - _limiter[idx_cell][idx_sys] * - ( _solDx[idx_cell][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[idx_cell][0] ) + - _solDy[idx_cell][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[idx_cell][1] ) ); - solR[idx_sys] = - _sol[nbr_glob][idx_sys] + - _limiter[nbr_glob][idx_sys] * - ( _solDx[nbr_glob][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[nbr_glob][0] ) + - _solDy[nbr_glob][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[nbr_glob][1] ) ); - } - // flux evaluation - _solNew[idx_cell] += _g->Flux1D( _AzPlus, _AzMinus, solL, solR, _normals[idx_cell][idx_neighbor] ); - break; - // default: first order solver - default: ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); break; + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_neighbor] == _nCells) + _solNew[idx_cell] += _g->Flux1D(_AzPlus, _AzMinus, _sol[idx_cell], _sol[idx_cell], _normals[idx_cell][idx_neighbor]); + else + { + unsigned int nbr_glob = _neighbors[idx_cell][idx_neighbor]; // global idx of neighbor cell + switch (_reconsOrder) + { + // first order solver + case 1: + _solNew[idx_cell] += _g->Flux1D( + _AzPlus, _AzMinus, _sol[idx_cell], _sol[_neighbors[idx_cell][idx_neighbor]], _normals[idx_cell][idx_neighbor]); + break; + // second order solver + case 2: + // left status of interface + for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) + { + solL[idx_sys] = + _sol[idx_cell][idx_sys] + + _limiter[idx_cell][idx_sys] * + (_solDx[idx_cell][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[idx_cell][0]) + + _solDy[idx_cell][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[idx_cell][1])); + solR[idx_sys] = + _sol[nbr_glob][idx_sys] + + _limiter[nbr_glob][idx_sys] * + (_solDx[nbr_glob][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[nbr_glob][0]) + + _solDy[nbr_glob][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[nbr_glob][1])); + } + // flux evaluation + _solNew[idx_cell] += _g->Flux1D(_AzPlus, _AzMinus, solL, solR, _normals[idx_cell][idx_neighbor]); + break; + // default: first order solver + default: + ErrorMessages::Error("Reconstruction order not supported.", CURRENT_FUNCTION); + break; } } } } } -void PNSolver::FluxUpdatePseudo2D() { +void PNSolver::FluxUpdatePseudo2D() +{ #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - Vector solL( _nSystem, 0.0 ); - Vector solR( _nSystem, 0.0 ); + for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) + { + Vector solL(_nSystem, 0.0); + Vector solR(_nSystem, 0.0); // Dirichlet cells stay at IC, farfield assumption - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) + continue; // Reset temporary variable psiNew - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) + { _solNew[idx_cell][idx_sys] = 0.0; } // Loop over all neighbor cells (edges) of cell j and compute numerical fluxes - for( unsigned idx_neighbor = 0; idx_neighbor < _neighbors[idx_cell].size(); idx_neighbor++ ) { + for (unsigned idx_neighbor = 0; idx_neighbor < _neighbors[idx_cell].size(); idx_neighbor++) + { // Compute flux contribution and store in psiNew to save memory - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_neighbor] == _nCells ) + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_neighbor] == _nCells) _solNew[idx_cell] += _g->Flux( - _AxPlus, _AxMinus, _AyPlus, _AyMinus, _AzPlus, _AzMinus, _sol[idx_cell], _sol[idx_cell], _normals[idx_cell][idx_neighbor] ); - else { - unsigned int nbr_glob = _neighbors[idx_cell][idx_neighbor]; // global idx of neighbor cell - switch( _reconsOrder ) { - // first order solver - case 1: - _solNew[idx_cell] += _g->Flux( _AxPlus, - _AxMinus, - _AyPlus, - _AyMinus, - _AzPlus, - _AzMinus, - _sol[idx_cell], - _sol[_neighbors[idx_cell][idx_neighbor]], - _normals[idx_cell][idx_neighbor] ); - break; - // second order solver - case 2: - // left status of interface - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { - solL[idx_sys] = - _sol[idx_cell][idx_sys] + - _limiter[idx_cell][idx_sys] * - ( _solDx[idx_cell][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[idx_cell][0] ) + - _solDy[idx_cell][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[idx_cell][1] ) ); - solR[idx_sys] = - _sol[nbr_glob][idx_sys] + - _limiter[nbr_glob][idx_sys] * - ( _solDx[nbr_glob][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[nbr_glob][0] ) + - _solDy[nbr_glob][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[nbr_glob][1] ) ); - } - // flux evaluation - _solNew[idx_cell] += - _g->Flux( _AxPlus, _AxMinus, _AyPlus, _AyMinus, _AzPlus, _AzMinus, solL, solR, _normals[idx_cell][idx_neighbor] ); - break; - // default: first order solver - default: ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); break; + _AxPlus, _AxMinus, _AyPlus, _AyMinus, _AzPlus, _AzMinus, _sol[idx_cell], _sol[idx_cell], _normals[idx_cell][idx_neighbor]); + else + { + unsigned int nbr_glob = _neighbors[idx_cell][idx_neighbor]; // global idx of neighbor cell + switch (_reconsOrder) + { + // first order solver + case 1: + _solNew[idx_cell] += _g->Flux(_AxPlus, + _AxMinus, + _AyPlus, + _AyMinus, + _AzPlus, + _AzMinus, + _sol[idx_cell], + _sol[_neighbors[idx_cell][idx_neighbor]], + _normals[idx_cell][idx_neighbor]); + break; + // second order solver + case 2: + // left status of interface + for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) + { + solL[idx_sys] = + _sol[idx_cell][idx_sys] + + _limiter[idx_cell][idx_sys] * + (_solDx[idx_cell][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[idx_cell][0]) + + _solDy[idx_cell][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[idx_cell][1])); + solR[idx_sys] = + _sol[nbr_glob][idx_sys] + + _limiter[nbr_glob][idx_sys] * + (_solDx[nbr_glob][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[nbr_glob][0]) + + _solDy[nbr_glob][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[nbr_glob][1])); + } + // flux evaluation + _solNew[idx_cell] += + _g->Flux(_AxPlus, _AxMinus, _AyPlus, _AyMinus, _AzPlus, _AzMinus, solL, solR, _normals[idx_cell][idx_neighbor]); + break; + // default: first order solver + default: + ErrorMessages::Error("Reconstruction order not supported.", CURRENT_FUNCTION); + break; } } } } } -void PNSolver::FVMUpdate( unsigned idx_energy ) { +void PNSolver::FVMUpdate(unsigned idx_energy) +{ // Loop over all spatial cells #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) + { // Dirichlet cells stay at IC, farfield assumption - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) + continue; // Flux update - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { - _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] - ( _dE / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ + for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) + { + _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] - (_dE / _areas[idx_cell]) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ - _dE * _sol[idx_cell][idx_sys] * - ( _sigmaS[idx_energy][idx_cell] * _scatterMatDiag[idx_sys] /* scattering influence */ - + _sigmaT[idx_energy][idx_cell] ); + (_sigmaS[idx_energy][idx_cell] * _scatterMatDiag[idx_sys] /* scattering influence */ + + _sigmaT[idx_energy][idx_cell]); /* total xs influence */ } // Source Term @@ -233,163 +268,188 @@ void PNSolver::FVMUpdate( unsigned idx_energy ) { } } -void PNSolver::ComputeSystemMatrices() { - int idx_col = 0; +void PNSolver::ComputeSystemMatrices() +{ + int idx_col = 0; unsigned idx_row = 0; // loop over columns of A - for( int idx_lOrder = 0; idx_lOrder <= int( _polyDegreeBasis ); idx_lOrder++ ) { // index of legendre polynom - for( int idx_kOrder = -idx_lOrder; idx_kOrder <= idx_lOrder; idx_kOrder++ ) { // second index of legendre function - idx_row = unsigned( GlobalIndex( idx_lOrder, idx_kOrder ) ); + for (int idx_lOrder = 0; idx_lOrder <= int(_polyDegreeBasis); idx_lOrder++) + { // index of legendre polynom + for (int idx_kOrder = -idx_lOrder; idx_kOrder <= idx_lOrder; idx_kOrder++) + { // second index of legendre function + idx_row = unsigned(GlobalIndex(idx_lOrder, idx_kOrder)); // flux matrix in direction x { - if( idx_kOrder != -1 ) { + if (idx_kOrder != -1) + { - if( CheckIndex( idx_lOrder - 1, kMinus( idx_kOrder ) ) ) { - idx_col = GlobalIndex( idx_lOrder - 1, kMinus( idx_kOrder ) ); - _Ax( idx_row, unsigned( idx_col ) ) = 0.5 * CTilde( idx_lOrder - 1, std::abs( idx_kOrder ) - 1 ); + if (CheckIndex(idx_lOrder - 1, kMinus(idx_kOrder))) + { + idx_col = GlobalIndex(idx_lOrder - 1, kMinus(idx_kOrder)); + _Ax(idx_row, unsigned(idx_col)) = 0.5 * CTilde(idx_lOrder - 1, std::abs(idx_kOrder) - 1); } - if( CheckIndex( idx_lOrder + 1, kMinus( idx_kOrder ) ) ) { - idx_col = GlobalIndex( idx_lOrder + 1, kMinus( idx_kOrder ) ); - _Ax( idx_row, unsigned( idx_col ) ) = -0.5 * DTilde( idx_lOrder + 1, std::abs( idx_kOrder ) - 1 ); + if (CheckIndex(idx_lOrder + 1, kMinus(idx_kOrder))) + { + idx_col = GlobalIndex(idx_lOrder + 1, kMinus(idx_kOrder)); + _Ax(idx_row, unsigned(idx_col)) = -0.5 * DTilde(idx_lOrder + 1, std::abs(idx_kOrder) - 1); } } - if( CheckIndex( idx_lOrder - 1, kPlus( idx_kOrder ) ) ) { - idx_col = GlobalIndex( idx_lOrder - 1, kPlus( idx_kOrder ) ); - _Ax( idx_row, unsigned( idx_col ) ) = -0.5 * ETilde( idx_lOrder - 1, std::abs( idx_kOrder ) + 1 ); + if (CheckIndex(idx_lOrder - 1, kPlus(idx_kOrder))) + { + idx_col = GlobalIndex(idx_lOrder - 1, kPlus(idx_kOrder)); + _Ax(idx_row, unsigned(idx_col)) = -0.5 * ETilde(idx_lOrder - 1, std::abs(idx_kOrder) + 1); } - if( CheckIndex( idx_lOrder + 1, kPlus( idx_kOrder ) ) ) { - idx_col = GlobalIndex( idx_lOrder + 1, kPlus( idx_kOrder ) ); - _Ax( idx_row, unsigned( idx_col ) ) = 0.5 * FTilde( idx_lOrder + 1, std::abs( idx_kOrder ) + 1 ); + if (CheckIndex(idx_lOrder + 1, kPlus(idx_kOrder))) + { + idx_col = GlobalIndex(idx_lOrder + 1, kPlus(idx_kOrder)); + _Ax(idx_row, unsigned(idx_col)) = 0.5 * FTilde(idx_lOrder + 1, std::abs(idx_kOrder) + 1); } } // flux matrix in direction y { - if( idx_kOrder != 1 ) { - if( CheckIndex( idx_lOrder - 1, -kMinus( idx_kOrder ) ) ) { - idx_col = GlobalIndex( idx_lOrder - 1, -kMinus( idx_kOrder ) ); - _Ay( idx_row, unsigned( idx_col ) ) = -0.5 * Sgn( idx_kOrder ) * CTilde( idx_lOrder - 1, std::abs( idx_kOrder ) - 1 ); + if (idx_kOrder != 1) + { + if (CheckIndex(idx_lOrder - 1, -kMinus(idx_kOrder))) + { + idx_col = GlobalIndex(idx_lOrder - 1, -kMinus(idx_kOrder)); + _Ay(idx_row, unsigned(idx_col)) = -0.5 * Sgn(idx_kOrder) * CTilde(idx_lOrder - 1, std::abs(idx_kOrder) - 1); } - if( CheckIndex( idx_lOrder + 1, -kMinus( idx_kOrder ) ) ) { - idx_col = GlobalIndex( idx_lOrder + 1, -kMinus( idx_kOrder ) ); - _Ay( idx_row, unsigned( idx_col ) ) = 0.5 * Sgn( idx_kOrder ) * DTilde( idx_lOrder + 1, std::abs( idx_kOrder ) - 1 ); + if (CheckIndex(idx_lOrder + 1, -kMinus(idx_kOrder))) + { + idx_col = GlobalIndex(idx_lOrder + 1, -kMinus(idx_kOrder)); + _Ay(idx_row, unsigned(idx_col)) = 0.5 * Sgn(idx_kOrder) * DTilde(idx_lOrder + 1, std::abs(idx_kOrder) - 1); } } - if( CheckIndex( idx_lOrder - 1, -kPlus( idx_kOrder ) ) ) { - idx_col = GlobalIndex( idx_lOrder - 1, -kPlus( idx_kOrder ) ); - _Ay( idx_row, unsigned( idx_col ) ) = -0.5 * Sgn( idx_kOrder ) * ETilde( idx_lOrder - 1, std::abs( idx_kOrder ) + 1 ); + if (CheckIndex(idx_lOrder - 1, -kPlus(idx_kOrder))) + { + idx_col = GlobalIndex(idx_lOrder - 1, -kPlus(idx_kOrder)); + _Ay(idx_row, unsigned(idx_col)) = -0.5 * Sgn(idx_kOrder) * ETilde(idx_lOrder - 1, std::abs(idx_kOrder) + 1); } - if( CheckIndex( idx_lOrder + 1, -kPlus( idx_kOrder ) ) ) { - idx_col = GlobalIndex( idx_lOrder + 1, -kPlus( idx_kOrder ) ); - _Ay( idx_row, unsigned( idx_col ) ) = 0.5 * Sgn( idx_kOrder ) * FTilde( idx_lOrder + 1, std::abs( idx_kOrder ) + 1 ); + if (CheckIndex(idx_lOrder + 1, -kPlus(idx_kOrder))) + { + idx_col = GlobalIndex(idx_lOrder + 1, -kPlus(idx_kOrder)); + _Ay(idx_row, unsigned(idx_col)) = 0.5 * Sgn(idx_kOrder) * FTilde(idx_lOrder + 1, std::abs(idx_kOrder) + 1); } } // flux matrix in direction z { - if( CheckIndex( idx_lOrder - 1, idx_kOrder ) ) { - idx_col = GlobalIndex( idx_lOrder - 1, idx_kOrder ); - _Az( idx_row, unsigned( idx_col ) ) = AParam( idx_lOrder - 1, idx_kOrder ); + if (CheckIndex(idx_lOrder - 1, idx_kOrder)) + { + idx_col = GlobalIndex(idx_lOrder - 1, idx_kOrder); + _Az(idx_row, unsigned(idx_col)) = AParam(idx_lOrder - 1, idx_kOrder); } - if( CheckIndex( idx_lOrder + 1, idx_kOrder ) ) { - idx_col = GlobalIndex( idx_lOrder + 1, idx_kOrder ); - _Az( idx_row, unsigned( idx_col ) ) = BParam( idx_lOrder + 1, idx_kOrder ); + if (CheckIndex(idx_lOrder + 1, idx_kOrder)) + { + idx_col = GlobalIndex(idx_lOrder + 1, idx_kOrder); + _Az(idx_row, unsigned(idx_col)) = BParam(idx_lOrder + 1, idx_kOrder); } } } } } -void PNSolver::ComputeFluxComponents() { - Vector eigenValues( _nSystem, 0 ); - Vector eigenValuesX( _nSystem, 0 ); - Vector eigenValuesY( _nSystem, 0 ); +void PNSolver::ComputeFluxComponents() +{ + Vector eigenValues(_nSystem, 0); + Vector eigenValuesX(_nSystem, 0); + Vector eigenValuesY(_nSystem, 0); - MatrixCol eigenVectors( _nSystem, _nSystem, 0 ); // ColumnMatrix for _AxPlus * eigenVectors Multiplication via SIMD + MatrixCol eigenVectors(_nSystem, _nSystem, 0); // ColumnMatrix for _AxPlus * eigenVectors Multiplication via SIMD // --- For x Direction --- { - blaze::eigen( _Ax, eigenValues, eigenVectors ); // Compute Eigenvalues and Eigenvectors + blaze::eigen(_Ax, eigenValues, eigenVectors); // Compute Eigenvalues and Eigenvectors // Compute Flux Matrices A+ and A- - for( unsigned idx_ij = 0; idx_ij < _nSystem; idx_ij++ ) { - if( eigenValues[idx_ij] >= 0 ) { - _AxPlus( idx_ij, idx_ij ) = eigenValues[idx_ij]; // positive part of Diagonal Matrix stored in _AxPlus - _AxAbs( idx_ij, idx_ij ) = eigenValues[idx_ij]; + for (unsigned idx_ij = 0; idx_ij < _nSystem; idx_ij++) + { + if (eigenValues[idx_ij] >= 0) + { + _AxPlus(idx_ij, idx_ij) = eigenValues[idx_ij]; // positive part of Diagonal Matrix stored in _AxPlus + _AxAbs(idx_ij, idx_ij) = eigenValues[idx_ij]; } - else { - _AxMinus( idx_ij, idx_ij ) = eigenValues[idx_ij]; // negative part of Diagonal Matrix stored in _AxMinus - _AxAbs( idx_ij, idx_ij ) = -eigenValues[idx_ij]; + else + { + _AxMinus(idx_ij, idx_ij) = eigenValues[idx_ij]; // negative part of Diagonal Matrix stored in _AxMinus + _AxAbs(idx_ij, idx_ij) = -eigenValues[idx_ij]; } } - _AxPlus = eigenVectors * _AxPlus; // col*row minimum performance + _AxPlus = eigenVectors * _AxPlus; // col*row minimum performance _AxMinus = eigenVectors * _AxMinus; - _AxAbs = eigenVectors * _AxAbs; - blaze::transpose( eigenVectors ); - _AxPlus = _AxPlus * eigenVectors; // row*col maximum performance + _AxAbs = eigenVectors * _AxAbs; + blaze::transpose(eigenVectors); + _AxPlus = _AxPlus * eigenVectors; // row*col maximum performance _AxMinus = _AxMinus * eigenVectors; - _AxAbs = _AxAbs * eigenVectors; + _AxAbs = _AxAbs * eigenVectors; // eigenValuesX = eigenValues; } // --- For y Direction ------- { - blaze::eigen( _Ay, eigenValues, eigenVectors ); // Compute Eigenvalues and Eigenvectors + blaze::eigen(_Ay, eigenValues, eigenVectors); // Compute Eigenvalues and Eigenvectors // Compute Flux Matrices A+ and A- - for( unsigned idx_ij = 0; idx_ij < _nSystem; idx_ij++ ) { - if( eigenValues[idx_ij] >= 0 ) { - _AyPlus( idx_ij, idx_ij ) = eigenValues[idx_ij]; // positive part of Diagonal Matrix stored in _AxPlus - _AyAbs( idx_ij, idx_ij ) = eigenValues[idx_ij]; + for (unsigned idx_ij = 0; idx_ij < _nSystem; idx_ij++) + { + if (eigenValues[idx_ij] >= 0) + { + _AyPlus(idx_ij, idx_ij) = eigenValues[idx_ij]; // positive part of Diagonal Matrix stored in _AxPlus + _AyAbs(idx_ij, idx_ij) = eigenValues[idx_ij]; } - else { - _AyMinus( idx_ij, idx_ij ) = eigenValues[idx_ij]; // negative part of Diagonal Matrix stored in _AxMinus - _AyAbs( idx_ij, idx_ij ) = -eigenValues[idx_ij]; + else + { + _AyMinus(idx_ij, idx_ij) = eigenValues[idx_ij]; // negative part of Diagonal Matrix stored in _AxMinus + _AyAbs(idx_ij, idx_ij) = -eigenValues[idx_ij]; } } - _AyPlus = eigenVectors * _AyPlus; + _AyPlus = eigenVectors * _AyPlus; _AyMinus = eigenVectors * _AyMinus; - _AyAbs = eigenVectors * _AyAbs; - blaze::transpose( eigenVectors ); - _AyPlus = _AyPlus * eigenVectors; + _AyAbs = eigenVectors * _AyAbs; + blaze::transpose(eigenVectors); + _AyPlus = _AyPlus * eigenVectors; _AyMinus = _AyMinus * eigenVectors; - _AyAbs = _AyAbs * eigenVectors; + _AyAbs = _AyAbs * eigenVectors; // eigenValuesY = eigenValues; } // --- For z Direction ------- { - blaze::eigen( _Az, eigenValues, eigenVectors ); // Compute Eigenvalues and Eigenvectors + blaze::eigen(_Az, eigenValues, eigenVectors); // Compute Eigenvalues and Eigenvectors // Compute Flux Matrices A+ and A- - for( unsigned idx_ij = 0; idx_ij < _nSystem; idx_ij++ ) { - if( eigenValues[idx_ij] >= 0 ) { - _AzPlus( idx_ij, idx_ij ) = eigenValues[idx_ij]; // positive part of Diagonal Matrix stored in _AxPlus - _AzAbs( idx_ij, idx_ij ) = eigenValues[idx_ij]; + for (unsigned idx_ij = 0; idx_ij < _nSystem; idx_ij++) + { + if (eigenValues[idx_ij] >= 0) + { + _AzPlus(idx_ij, idx_ij) = eigenValues[idx_ij]; // positive part of Diagonal Matrix stored in _AxPlus + _AzAbs(idx_ij, idx_ij) = eigenValues[idx_ij]; } - else { - _AzMinus( idx_ij, idx_ij ) = eigenValues[idx_ij]; // negative part of Diagonal Matrix stored in _AxMinus - _AzAbs( idx_ij, idx_ij ) = -eigenValues[idx_ij]; + else + { + _AzMinus(idx_ij, idx_ij) = eigenValues[idx_ij]; // negative part of Diagonal Matrix stored in _AxMinus + _AzAbs(idx_ij, idx_ij) = -eigenValues[idx_ij]; } } - _AzPlus = eigenVectors * _AzPlus; + _AzPlus = eigenVectors * _AzPlus; _AzMinus = eigenVectors * _AzMinus; - _AzAbs = eigenVectors * _AzAbs; - blaze::transpose( eigenVectors ); - _AzPlus = _AzPlus * eigenVectors; + _AzAbs = eigenVectors * _AzAbs; + blaze::transpose(eigenVectors); + _AzPlus = _AzPlus * eigenVectors; _AzMinus = _AzMinus * eigenVectors; - _AzAbs = _AzAbs * eigenVectors; + _AzAbs = _AzAbs * eigenVectors; } // Compute Spectral Radius @@ -405,204 +465,289 @@ void PNSolver::ComputeFluxComponents() { // std::cout << "Spectral Radius combined " << blaze::max( blaze::abs( eigenValues + eigenValuesX + eigenValuesY ) ) << "\n"; } -void PNSolver::ComputeScatterMatrix() { +void PNSolver::ComputeScatterMatrix() +{ // --- Isotropic --- _scatterMatDiag[0] = -1; - for( unsigned idx_diag = 1; idx_diag < _nSystem; idx_diag++ ) { + for (unsigned idx_diag = 1; idx_diag < _nSystem; idx_diag++) + { _scatterMatDiag[idx_diag] = 0.0; } } -double PNSolver::LegendrePoly( double x, int l ) { // Legacy. TO BE DELETED +double PNSolver::LegendrePoly(double x, int l) +{ // Legacy. TO BE DELETED // Pre computed low order polynomials for faster computation - switch( l ) { - case 0: return 1; - case 1: return x; - case 2: // 0.5*(3*x*x - 1) - return 1.5 * x * x - 0.5; - case 3: // 0.5* (5*x*x*x -3 *x) - return 2.5 * x * x * x - 1.5 * x; - case 4: // 1/8*(35x^4-30x^2 + 3) - return 4.375 * x * x * x * x - 3.75 * x * x + 0.375; - case 5: // 1/8(63x^5-70x^3 + 15*x ) - return 7.875 * x * x * x * x * x - 8.75 * x * x * x + 1.875 * x; - case 6: // 1/16(231x^6-315x^4+105x^2-5) - return 14.4375 * x * x * x * x * x * x - 19.6875 * x * x * x * x + 6.5625 * x * x - 3.125; - default: ErrorMessages::Error( "Legendre Polynomials only implemented up to order 6", CURRENT_FUNCTION ); return 0; + switch (l) + { + case 0: + return 1; + case 1: + return x; + case 2: // 0.5*(3*x*x - 1) + return 1.5 * x * x - 0.5; + case 3: // 0.5* (5*x*x*x -3 *x) + return 2.5 * x * x * x - 1.5 * x; + case 4: // 1/8*(35x^4-30x^2 + 3) + return 4.375 * x * x * x * x - 3.75 * x * x + 0.375; + case 5: // 1/8(63x^5-70x^3 + 15*x ) + return 7.875 * x * x * x * x * x - 8.75 * x * x * x + 1.875 * x; + case 6: // 1/16(231x^6-315x^4+105x^2-5) + return 14.4375 * x * x * x * x * x * x - 19.6875 * x * x * x * x + 6.5625 * x * x - 3.125; + default: + ErrorMessages::Error("Legendre Polynomials only implemented up to order 6", CURRENT_FUNCTION); + return 0; } } -void PNSolver::PrepareVolumeOutput() { +void PNSolver::PrepareVolumeOutput() +{ unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); - _outputFieldNames.resize( nGroups ); - _outputFields.resize( nGroups ); + _outputFieldNames.resize(nGroups); + _outputFields.resize(nGroups); // Prepare all OutputGroups ==> Specified in option VOLUME_OUTPUT - for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { + for (unsigned idx_group = 0; idx_group < nGroups; idx_group++) + { // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch( _settings->GetVolumeOutput()[idx_group] ) { - case MINIMAL: - // Currently only one entry ==> rad flux - _outputFields[idx_group].resize( 1 ); - _outputFieldNames[idx_group].resize( 1 ); - - _outputFields[idx_group][0].resize( _nCells ); - _outputFieldNames[idx_group][0] = "radiation flux density"; - break; - - case MOMENTS: - // As many entries as there are moments in the system - _outputFields[idx_group].resize( _nSystem ); - _outputFieldNames[idx_group].resize( _nSystem ); - - for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { - for( int idx_k = -idx_l; idx_k <= idx_l; idx_k++ ) { - _outputFields[idx_group][GlobalIndex( idx_l, idx_k )].resize( _nCells ); + switch (_settings->GetVolumeOutput()[idx_group]) + { + case MINIMAL: + // Currently only one entry ==> rad flux + _outputFields[idx_group].resize(1); + _outputFieldNames[idx_group].resize(1); + + _outputFields[idx_group][0].resize(_nCells); + _outputFieldNames[idx_group][0] = "radiation flux density"; + break; + + case MOMENTS: + // As many entries as there are moments in the system + _outputFields[idx_group].resize(_nSystem); + _outputFieldNames[idx_group].resize(_nSystem); + + for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) + { + for (int idx_k = -idx_l; idx_k <= idx_l; idx_k++) + { + _outputFields[idx_group][GlobalIndex(idx_l, idx_k)].resize(_nCells); - _outputFieldNames[idx_group][GlobalIndex( idx_l, idx_k )] = - std::string( "u_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); - } + _outputFieldNames[idx_group][GlobalIndex(idx_l, idx_k)] = + std::string("u_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); } - break; - case ANALYTIC: - // one entry per cell - _outputFields[idx_group].resize( 1 ); - _outputFieldNames[idx_group].resize( 1 ); - _outputFields[idx_group][0].resize( _nCells ); - _outputFieldNames[idx_group][0] = std::string( "analytic radiation flux density" ); - break; - default: ErrorMessages::Error( "Volume Output Group not defined for PN Solver!", CURRENT_FUNCTION ); break; + } + break; + case ANALYTIC: + // one entry per cell + _outputFields[idx_group].resize(1); + _outputFieldNames[idx_group].resize(1); + _outputFields[idx_group][0].resize(_nCells); + _outputFieldNames[idx_group][0] = std::string("analytic radiation flux density"); + break; + default: + ErrorMessages::Error("Volume Output Group not defined for PN Solver!", CURRENT_FUNCTION); + break; } } } -void PNSolver::WriteVolumeOutput( unsigned idx_iter ) { +void PNSolver::WriteVolumeOutput(unsigned idx_iter) +{ unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); - if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || - ( idx_iter == _nEnergies - 1 ) /* need sol at last iteration */ ) { - for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { - switch( _settings->GetVolumeOutput()[idx_group] ) { - case MINIMAL: - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - _outputFields[idx_group][0][idx_cell] = _fluxNew[idx_cell]; - } - break; - case MOMENTS: - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - _outputFields[idx_group][idx_sys][idx_cell] = _sol[idx_cell][idx_sys]; - } + if ((_settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0) || + (idx_iter == _nEnergies - 1) /* need sol at last iteration */) + { + for (unsigned idx_group = 0; idx_group < nGroups; idx_group++) + { + switch (_settings->GetVolumeOutput()[idx_group]) + { + case MINIMAL: + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { + _outputFields[idx_group][0][idx_cell] = _fluxNew[idx_cell]; + } + break; + case MOMENTS: + for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) + { + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { + _outputFields[idx_group][idx_sys][idx_cell] = _sol[idx_cell][idx_sys]; } - break; - case ANALYTIC: - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + } + break; + case ANALYTIC: + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { - double time = idx_iter * _dE; + double time = idx_iter * _dE; - _outputFields[idx_group][0][idx_cell] = _outputFields[idx_group][0][idx_cell] = _problem->GetAnalyticalSolution( - _mesh->GetCellMidPoints()[idx_cell][0], _mesh->GetCellMidPoints()[idx_cell][1], time, _sigmaS[idx_iter][idx_cell] ); - } - break; + _outputFields[idx_group][0][idx_cell] = _outputFields[idx_group][0][idx_cell] = _problem->GetAnalyticalSolution( + _mesh->GetCellMidPoints()[idx_cell][0], _mesh->GetCellMidPoints()[idx_cell][1], time, _sigmaS[idx_iter][idx_cell]); + } + break; - default: ErrorMessages::Error( "Volume Output Group not defined for PN Solver!", CURRENT_FUNCTION ); break; + default: + ErrorMessages::Error("Volume Output Group not defined for PN Solver!", CURRENT_FUNCTION); + break; } } } } -void PNSolver::CleanFluxMatrices() { - for( unsigned idx_row = 0; idx_row < _nSystem; idx_row++ ) { - for( unsigned idx_col = 0; idx_col < _nSystem; idx_col++ ) { - if( std::abs( _AxAbs( idx_row, idx_col ) ) < 0.00000000001 ) _AxAbs( idx_row, idx_col ) = 0.0; - if( std::abs( _AxPlus( idx_row, idx_col ) ) < 0.00000000001 ) _AxPlus( idx_row, idx_col ) = 0.0; - if( std::abs( _AxMinus( idx_row, idx_col ) ) < 0.00000000001 ) _AxMinus( idx_row, idx_col ) = 0.0; - - if( std::abs( _AyAbs( idx_row, idx_col ) ) < 0.00000000001 ) _AyAbs( idx_row, idx_col ) = 0.0; - if( std::abs( _AyPlus( idx_row, idx_col ) ) < 0.00000000001 ) _AyPlus( idx_row, idx_col ) = 0.0; - if( std::abs( _AyMinus( idx_row, idx_col ) ) < 0.00000000001 ) _AyMinus( idx_row, idx_col ) = 0.0; - - if( std::abs( _AzAbs( idx_row, idx_col ) ) < 0.00000000001 ) _AzAbs( idx_row, idx_col ) = 0.0; - if( std::abs( _AzPlus( idx_row, idx_col ) ) < 0.00000000001 ) _AzPlus( idx_row, idx_col ) = 0.0; - if( std::abs( _AzMinus( idx_row, idx_col ) ) < 0.00000000001 ) _AzMinus( idx_row, idx_col ) = 0.0; +void PNSolver::CleanFluxMatrices() +{ + for (unsigned idx_row = 0; idx_row < _nSystem; idx_row++) + { + for (unsigned idx_col = 0; idx_col < _nSystem; idx_col++) + { + if (std::abs(_AxAbs(idx_row, idx_col)) < 0.00000000001) + _AxAbs(idx_row, idx_col) = 0.0; + if (std::abs(_AxPlus(idx_row, idx_col)) < 0.00000000001) + _AxPlus(idx_row, idx_col) = 0.0; + if (std::abs(_AxMinus(idx_row, idx_col)) < 0.00000000001) + _AxMinus(idx_row, idx_col) = 0.0; + + if (std::abs(_AyAbs(idx_row, idx_col)) < 0.00000000001) + _AyAbs(idx_row, idx_col) = 0.0; + if (std::abs(_AyPlus(idx_row, idx_col)) < 0.00000000001) + _AyPlus(idx_row, idx_col) = 0.0; + if (std::abs(_AyMinus(idx_row, idx_col)) < 0.00000000001) + _AyMinus(idx_row, idx_col) = 0.0; + + if (std::abs(_AzAbs(idx_row, idx_col)) < 0.00000000001) + _AzAbs(idx_row, idx_col) = 0.0; + if (std::abs(_AzPlus(idx_row, idx_col)) < 0.00000000001) + _AzPlus(idx_row, idx_col) = 0.0; + if (std::abs(_AzMinus(idx_row, idx_col)) < 0.00000000001) + _AzMinus(idx_row, idx_col) = 0.0; } } } -double PNSolver::CTilde( int l, int k ) const { - if( k < 0 ) return 0.0; - if( k == 0 ) - return std::sqrt( 2 ) * CParam( l, k ); +double PNSolver::CTilde(int l, int k) const +{ + if (k < 0) + return 0.0; + if (k == 0) + return std::sqrt(2) * CParam(l, k); else - return CParam( l, k ); + return CParam(l, k); } -double PNSolver::DTilde( int l, int k ) const { - if( k < 0 ) return 0.0; - if( k == 0 ) - return std::sqrt( 2 ) * DParam( l, k ); +double PNSolver::DTilde(int l, int k) const +{ + if (k < 0) + return 0.0; + if (k == 0) + return std::sqrt(2) * DParam(l, k); else - return DParam( l, k ); + return DParam(l, k); } -double PNSolver::ETilde( int l, int k ) const { - if( k == 1 ) - return std::sqrt( 2 ) * EParam( l, k ); +double PNSolver::ETilde(int l, int k) const +{ + if (k == 1) + return std::sqrt(2) * EParam(l, k); else - return EParam( l, k ); + return EParam(l, k); } -double PNSolver::FTilde( int l, int k ) const { - if( k == 1 ) - return std::sqrt( 2 ) * FParam( l, k ); +double PNSolver::FTilde(int l, int k) const +{ + if (k == 1) + return std::sqrt(2) * FParam(l, k); else - return FParam( l, k ); + return FParam(l, k); } -double PNSolver::AParam( int l, int k ) const { - return std::sqrt( double( ( l - k + 1 ) * ( l + k + 1 ) ) / double( ( 2 * l + 3 ) * ( 2 * l + 1 ) ) ); +double PNSolver::AParam(int l, int k) const +{ + return std::sqrt(double((l - k + 1) * (l + k + 1)) / double((2 * l + 3) * (2 * l + 1))); } -double PNSolver::BParam( int l, int k ) const { return std::sqrt( double( ( l - k ) * ( l + k ) ) / double( ( ( 2 * l + 1 ) * ( 2 * l - 1 ) ) ) ); } +double PNSolver::BParam(int l, int k) const { return std::sqrt(double((l - k) * (l + k)) / double(((2 * l + 1) * (2 * l - 1)))); } -double PNSolver::CParam( int l, int k ) const { - return std::sqrt( double( ( l + k + 1 ) * ( l + k + 2 ) ) / double( ( ( 2 * l + 3 ) * ( 2 * l + 1 ) ) ) ); +double PNSolver::CParam(int l, int k) const +{ + return std::sqrt(double((l + k + 1) * (l + k + 2)) / double(((2 * l + 3) * (2 * l + 1)))); } -double PNSolver::DParam( int l, int k ) const { - return std::sqrt( double( ( l - k ) * ( l - k - 1 ) ) / double( ( ( 2 * l + 1 ) * ( 2 * l - 1 ) ) ) ); +double PNSolver::DParam(int l, int k) const +{ + return std::sqrt(double((l - k) * (l - k - 1)) / double(((2 * l + 1) * (2 * l - 1)))); } -double PNSolver::EParam( int l, int k ) const { - return std::sqrt( double( ( l - k + 1 ) * ( l - k + 2 ) ) / double( ( ( 2 * l + 3 ) * ( 2 * l + 1 ) ) ) ); +double PNSolver::EParam(int l, int k) const +{ + return std::sqrt(double((l - k + 1) * (l - k + 2)) / double(((2 * l + 3) * (2 * l + 1)))); } -double PNSolver::FParam( int l, int k ) const { return std::sqrt( double( ( l + k ) * ( l + k - 1 ) ) / double( ( 2 * l + 1 ) * ( 2 * l - 1 ) ) ); } +double PNSolver::FParam(int l, int k) const { return std::sqrt(double((l + k) * (l + k - 1)) / double((2 * l + 1) * (2 * l - 1))); } -int PNSolver::kPlus( int k ) const { return k + Sgn( k ); } +int PNSolver::kPlus(int k) const { return k + Sgn(k); } -int PNSolver::kMinus( int k ) const { return k - Sgn( k ); } +int PNSolver::kMinus(int k) const { return k - Sgn(k); } -int PNSolver::GlobalIndex( int l, int k ) const { - int numIndicesPrevLevel = l * l; // number of previous indices untill level l-1 - int prevIndicesThisLevel = k + l; // number of previous indices in current level +int PNSolver::GlobalIndex(int l, int k) const +{ + int numIndicesPrevLevel = l * l; // number of previous indices untill level l-1 + int prevIndicesThisLevel = k + l; // number of previous indices in current level return numIndicesPrevLevel + prevIndicesThisLevel; } -bool PNSolver::CheckIndex( int l, int k ) const { - if( l >= 0 && l <= int( _polyDegreeBasis ) ) { - if( k >= -l && k <= l ) return true; +bool PNSolver::CheckIndex(int l, int k) const +{ + if (l >= 0 && l <= int(_polyDegreeBasis)) + { + if (k >= -l && k <= l) + return true; } return false; } -int PNSolver::Sgn( int k ) const { - if( k >= 0 ) +int PNSolver::Sgn(int k) const +{ + if (k >= 0) return 1; else return -1; } + +double PNSolver::GetCurrentOutflow() +{ + + return 0.0; +} + +double PNSolver::GetTotalOutflow(unsigned iteration) +{ + if (iteration == 0) + { + _timeDependentOutflow[iteration] = GetCurrentOutflow() * _dE; + } + else + { + _timeDependentOutflow[iteration] = _timeDependentOutflow[iteration - 1] + GetCurrentOutflow() * _dE; + } + return _timeDependentOutflow[iteration]; +} + +double PNSolver::GetMaxOutflow() { return 0; } + +double PNSolver::GetFinalTimeAbsorption() { return 0; } + +double PNSolver::GetTotalAbsorption() { return 0; } + +double PNSolver::GetMaxAbsorption() { return 0; } + +double PNSolver::GetTotalAbsorptionCenter() { return 0; } + +double PNSolver::GetTotalAbsorptionVertical() { return 0; } + +double PNSolver::GetTotalAbsorptionHorizontal() { return 0; } diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index 0418867e..b00acc40 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -1,42 +1,49 @@ #include "solvers/snsolver.hpp" + #include "common/config.hpp" #include "common/io.hpp" #include "common/mesh.hpp" #include "fluxes/numericalflux.hpp" #include "kernels/scatteringkernelbase.hpp" -#include "problems/problembase.hpp" #include "quadratures/quadraturebase.hpp" #include "toolboxes/errormessages.hpp" #include "toolboxes/textprocessingtoolbox.hpp" // externals -#include "spdlog/spdlog.h" -#include #include -SNSolver::SNSolver( Config* settings ) : SolverBase( settings ) { +#include + +#include "spdlog/spdlog.h" + +SNSolver::SNSolver(Config *settings) : SolverBase(settings) +{ _quadPoints = _quadrature->GetPoints(); - _weights = _quadrature->GetWeights(); + _weights = _quadrature->GetWeights(); - ScatteringKernel* k = ScatteringKernel::CreateScatteringKernel( settings->GetKernelName(), _quadrature ); - _scatteringKernel = k->GetScatteringKernel(); + ScatteringKernel *k = ScatteringKernel::CreateScatteringKernel( + settings->GetKernelName(), _quadrature); + _scatteringKernel = k->GetScatteringKernel(); delete k; // Limiter variables - _solDx = VectorVector( _nCells, Vector( _nq, 0.0 ) ); - _solDy = VectorVector( _nCells, Vector( _nq, 0.0 ) ); - _limiter = VectorVector( _nCells, Vector( _nq, 0.0 ) ); + _solDx = VectorVector(_nCells, Vector(_nq, 0.0)); + _solDy = VectorVector(_nCells, Vector(_nq, 0.0)); + _limiter = VectorVector(_nCells, Vector(_nq, 0.0)); } -void SNSolver::IterPreprocessing( unsigned /*idx_iter*/ ) { +void SNSolver::IterPreprocessing(unsigned /*idx_iter*/) +{ // Slope Limiter computation - if( _reconsOrder > 1 ) { - _mesh->ComputeSlopes( _nq, _solDx, _solDy, _sol ); - _mesh->ComputeLimiter( _nq, _solDx, _solDy, _sol, _limiter ); + if (_reconsOrder > 1) + { + _mesh->ComputeSlopes(_nq, _solDx, _solDy, _sol); + _mesh->ComputeLimiter(_nq, _solDx, _solDy, _sol, _limiter); } } -void SNSolver::IterPostprocessing( unsigned /*idx_iter*/ ) { +void SNSolver::IterPostprocessing(unsigned /*idx_iter*/) +{ // --- Update Solution --- //_sol = _solNew; @@ -44,71 +51,108 @@ void SNSolver::IterPostprocessing( unsigned /*idx_iter*/ ) { ComputeRadFlux(); } -void SNSolver::ComputeRadFlux() { +void SNSolver::ComputeRadFlux() +{ double firstMomentScaleFactor = 4 * M_PI; - if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D ) { + if (_settings->GetProblemName() == PROBLEM_Aircavity1D || + _settings->GetProblemName() == PROBLEM_Linesource1D || + _settings->GetProblemName() == PROBLEM_Checkerboard1D || + _settings->GetProblemName() == PROBLEM_Meltingcube1D) + { firstMomentScaleFactor = 2.0; } #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - _fluxNew[idx_cell] = blaze::dot( _sol[idx_cell], _weights ) / firstMomentScaleFactor; + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { + _fluxNew[idx_cell] = + blaze::dot(_sol[idx_cell], _weights) / firstMomentScaleFactor; } } -void SNSolver::FluxUpdate() { - if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D ) { +void SNSolver::FluxUpdate() +{ + if (_settings->GetProblemName() == PROBLEM_Aircavity1D || + _settings->GetProblemName() == PROBLEM_Linesource1D || + _settings->GetProblemName() == PROBLEM_Checkerboard1D || + _settings->GetProblemName() == PROBLEM_Meltingcube1D) + { FluxUpdatePseudo1D(); } - else { + else + { FluxUpdatePseudo2D(); } } -void SNSolver::FluxUpdatePseudo1D() { +void SNSolver::FluxUpdatePseudo1D() +{ // Loop over all spatial cells #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { double solL; double solR; // Dirichlet cells stay at IC, farfield assumption - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) + continue; // Loop over all ordinates - for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { + for (unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad) + { // Reset temporary variable _solNew[idx_cell][idx_quad] = 0.0; - // Loop over all neighbor cells (edges) of cell j and compute numerical fluxes - for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { + // Loop over all neighbor cells (edges) of cell j and compute numerical + // fluxes + for (unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); + ++idx_nbr) + { // store flux contribution on psiNew_sigmaS to save memory - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && + _neighbors[idx_cell][idx_nbr] == _nCells) _solNew[idx_cell][idx_quad] += - _g->Flux1D( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _sol[idx_cell][idx_quad], _normals[idx_cell][idx_nbr] ); - else { - unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell - - switch( _reconsOrder ) { - // first order solver - case 1: - _solNew[idx_cell][idx_quad] += - _g->Flux1D( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _sol[nbr_glob][idx_quad], _normals[idx_cell][idx_nbr] ); - break; - // second order solver - case 2: - // left status of interface - solL = _sol[idx_cell][idx_quad] + - _limiter[idx_cell][idx_quad] * - ( _solDx[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + - _solDy[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); - solR = _sol[nbr_glob][idx_quad] + - _limiter[nbr_glob][idx_quad] * - ( _solDx[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + - _solDy[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); - // flux evaluation - _solNew[idx_cell][idx_quad] += _g->Flux1D( _quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr] ); - break; - // higher order solver - default: ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); break; + _g->Flux1D(_quadPoints[idx_quad], _sol[idx_cell][idx_quad], + _sol[idx_cell][idx_quad], _normals[idx_cell][idx_nbr]); + else + { + unsigned int nbr_glob = + _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell + + switch (_reconsOrder) + { + // first order solver + case 1: + _solNew[idx_cell][idx_quad] += _g->Flux1D( + _quadPoints[idx_quad], _sol[idx_cell][idx_quad], + _sol[nbr_glob][idx_quad], _normals[idx_cell][idx_nbr]); + break; + // second order solver + case 2: + // left status of interface + solL = _sol[idx_cell][idx_quad] + + _limiter[idx_cell][idx_quad] * + (_solDx[idx_cell][idx_quad] * + (_interfaceMidPoints[idx_cell][idx_nbr][0] - + _cellMidPoints[idx_cell][0]) + + _solDy[idx_cell][idx_quad] * + (_interfaceMidPoints[idx_cell][idx_nbr][1] - + _cellMidPoints[idx_cell][1])); + solR = _sol[nbr_glob][idx_quad] + + _limiter[nbr_glob][idx_quad] * + (_solDx[nbr_glob][idx_quad] * + (_interfaceMidPoints[idx_cell][idx_nbr][0] - + _cellMidPoints[nbr_glob][0]) + + _solDy[nbr_glob][idx_quad] * + (_interfaceMidPoints[idx_cell][idx_nbr][1] - + _cellMidPoints[nbr_glob][1])); + // flux evaluation + _solNew[idx_cell][idx_quad] += + _g->Flux1D(_quadPoints[idx_quad], solL, solR, + _normals[idx_cell][idx_nbr]); + break; + // higher order solver + default: + ErrorMessages::Error("Reconstruction order not supported.", + CURRENT_FUNCTION); + break; } } } @@ -116,50 +160,78 @@ void SNSolver::FluxUpdatePseudo1D() { } } -void SNSolver::FluxUpdatePseudo2D() { +void SNSolver::FluxUpdatePseudo2D() +{ // Loop over all spatial cells #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { double solL; double solR; // Dirichlet cells stay at IC, farfield assumption - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) + continue; // Loop over all ordinates - for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { + for (unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad) + { // Reset temporary variable _solNew[idx_cell][idx_quad] = 0.0; - // Loop over all neighbor cells (edges) of cell j and compute numerical fluxes - for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { + // Loop over all neighbor cells (edges) of cell j and compute numerical + // fluxes + for (unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); + ++idx_nbr) + { // store flux contribution on psiNew_sigmaS to save memory - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ){ - _solNew[idx_cell][idx_quad] += - _g->Flux( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _problem->GetGhostCellValue(idx_cell,_sol[idx_cell])[idx_quad], _normals[idx_cell][idx_nbr] ); + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && + _neighbors[idx_cell][idx_nbr] == _nCells) + { + _solNew[idx_cell][idx_quad] += _g->Flux( + _quadPoints[idx_quad], _sol[idx_cell][idx_quad], + _problem->GetGhostCellValue(idx_cell, _sol[idx_cell])[idx_quad], + _normals[idx_cell][idx_nbr]); } - else { - unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell - - switch( _reconsOrder ) { - // first order solver - case 1: - _solNew[idx_cell][idx_quad] += - _g->Flux( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _sol[nbr_glob][idx_quad], _normals[idx_cell][idx_nbr] ); - break; - // second order solver - case 2: - // left status of interface - solL = _sol[idx_cell][idx_quad] + - _limiter[idx_cell][idx_quad] * - ( _solDx[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + - _solDy[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); - solR = _sol[nbr_glob][idx_quad] + - _limiter[nbr_glob][idx_quad] * - ( _solDx[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + - _solDy[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); - - // flux evaluation - _solNew[idx_cell][idx_quad] += _g->Flux( _quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr] ); - break; - default: ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); break; + else + { + unsigned int nbr_glob = + _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell + + switch (_reconsOrder) + { + // first order solver + case 1: + _solNew[idx_cell][idx_quad] += _g->Flux( + _quadPoints[idx_quad], _sol[idx_cell][idx_quad], + _sol[nbr_glob][idx_quad], _normals[idx_cell][idx_nbr]); + break; + // second order solver + case 2: + // left status of interface + solL = _sol[idx_cell][idx_quad] + + _limiter[idx_cell][idx_quad] * + (_solDx[idx_cell][idx_quad] * + (_interfaceMidPoints[idx_cell][idx_nbr][0] - + _cellMidPoints[idx_cell][0]) + + _solDy[idx_cell][idx_quad] * + (_interfaceMidPoints[idx_cell][idx_nbr][1] - + _cellMidPoints[idx_cell][1])); + solR = _sol[nbr_glob][idx_quad] + + _limiter[nbr_glob][idx_quad] * + (_solDx[nbr_glob][idx_quad] * + (_interfaceMidPoints[idx_cell][idx_nbr][0] - + _cellMidPoints[nbr_glob][0]) + + _solDy[nbr_glob][idx_quad] * + (_interfaceMidPoints[idx_cell][idx_nbr][1] - + _cellMidPoints[nbr_glob][1])); + + // flux evaluation + _solNew[idx_cell][idx_quad] += + _g->Flux(_quadPoints[idx_quad], solL, solR, + _normals[idx_cell][idx_nbr]); + break; + default: + ErrorMessages::Error("Reconstruction order not supported.", + CURRENT_FUNCTION); + break; } } } @@ -167,29 +239,40 @@ void SNSolver::FluxUpdatePseudo2D() { } } -void SNSolver::FVMUpdate( unsigned idx_energy ) { +void SNSolver::FVMUpdate(unsigned idx_energy) +{ #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { // Dirichlet cells stay at IC, farfield assumption - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) + continue; // loop over all ordinates - for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { - // time update angular flux with numerical flux and total scattering cross section - _solNew[idx_cell][idx_quad] = _sol[idx_cell][idx_quad] - ( _dE / _areas[idx_cell] ) * _solNew[idx_cell][idx_quad] - - _dE * _sigmaT[idx_energy][idx_cell] * _sol[idx_cell][idx_quad]; + for (unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad) + { + // time update angular flux with numerical flux and total scattering cross + // section + _solNew[idx_cell][idx_quad] = + _sol[idx_cell][idx_quad] - + (_dE / _areas[idx_cell]) * _solNew[idx_cell][idx_quad] - + _dE * _sigmaT[idx_energy][idx_cell] * _sol[idx_cell][idx_quad]; } // compute scattering effects - _solNew[idx_cell] += _dE * _sigmaS[idx_energy][idx_cell] * _scatteringKernel * _sol[idx_cell]; // multiply scattering matrix with psi + _solNew[idx_cell] += _dE * _sigmaS[idx_energy][idx_cell] * + _scatteringKernel * + _sol[idx_cell]; // multiply scattering matrix with psi // Source Term - if( _Q.size() == 1u ) { // constant source for all energies - if( _Q[0][idx_cell].size() == 1u ) // isotropic source + if (_Q.size() == 1u) + { // constant source for all energies + if (_Q[0][idx_cell].size() == 1u) // isotropic source _solNew[idx_cell] += _dE * _Q[0][idx_cell][0]; else _solNew[idx_cell] += _dE * _Q[0][idx_cell]; } - else { - if( _Q[0][idx_cell].size() == 1u ) // isotropic source + else + { + if (_Q[0][idx_cell].size() == 1u) // isotropic source _solNew[idx_cell] += _dE * _Q[idx_energy][idx_cell][0]; else _solNew[idx_cell] += _dE * _Q[idx_energy][idx_cell]; @@ -197,61 +280,138 @@ void SNSolver::FVMUpdate( unsigned idx_energy ) { } } -void SNSolver::PrepareVolumeOutput() { +void SNSolver::PrepareVolumeOutput() +{ unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); - _outputFieldNames.resize( nGroups ); - _outputFields.resize( nGroups ); + _outputFieldNames.resize(nGroups); + _outputFields.resize(nGroups); // Prepare all OutputGroups ==> Specified in option VOLUME_OUTPUT - for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { + for (unsigned idx_group = 0; idx_group < nGroups; idx_group++) + { // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch( _settings->GetVolumeOutput()[idx_group] ) { - case MINIMAL: - // Currently only one entry ==> rad flux - _outputFields[idx_group].resize( 1 ); - _outputFieldNames[idx_group].resize( 1 ); + switch (_settings->GetVolumeOutput()[idx_group]) + { + case MINIMAL: + // Currently only one entry ==> rad flux + _outputFields[idx_group].resize(1); + _outputFieldNames[idx_group].resize(1); - _outputFields[idx_group][0].resize( _nCells ); - _outputFieldNames[idx_group][0] = "radiation flux density"; - break; + _outputFields[idx_group][0].resize(_nCells); + _outputFieldNames[idx_group][0] = "radiation flux density"; + break; + + case ANALYTIC: + // one entry per cell + _outputFields[idx_group].resize(1); + _outputFieldNames[idx_group].resize(1); + _outputFields[idx_group][0].resize(_nCells); + _outputFieldNames[idx_group][0] = + std::string("analytic radiation flux density"); + break; + + default: + ErrorMessages::Error("Volume Output Group not defined for SN Solver!", + CURRENT_FUNCTION); + break; + } + } +} +void SNSolver::WriteVolumeOutput(unsigned idx_pseudoTime) +{ + unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); + if ((_settings->GetVolumeOutputFrequency() != 0 && + idx_pseudoTime % (unsigned)_settings->GetVolumeOutputFrequency() == 0) || + (idx_pseudoTime == _nEnergies - 1) /* need sol at last iteration */) + { + for (unsigned idx_group = 0; idx_group < nGroups; idx_group++) + { + switch (_settings->GetVolumeOutput()[idx_group]) + { + case MINIMAL: + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { + _outputFields[idx_group][0][idx_cell] = _fluxNew[idx_cell]; + } + break; case ANALYTIC: - // one entry per cell - _outputFields[idx_group].resize( 1 ); - _outputFieldNames[idx_group].resize( 1 ); - _outputFields[idx_group][0].resize( _nCells ); - _outputFieldNames[idx_group][0] = std::string( "analytic radiation flux density" ); + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { + double time = idx_pseudoTime * _dE; + _outputFields[idx_group][0][idx_cell] = + _problem->GetAnalyticalSolution( + _mesh->GetCellMidPoints()[idx_cell][0], + _mesh->GetCellMidPoints()[idx_cell][1], time, + _sigmaS[idx_pseudoTime][idx_cell]); + } break; - default: ErrorMessages::Error( "Volume Output Group not defined for SN Solver!", CURRENT_FUNCTION ); break; + default: + ErrorMessages::Error("Volume Output Group not defined for SN Solver!", + CURRENT_FUNCTION); + break; + } } } } -void SNSolver::WriteVolumeOutput( unsigned idx_pseudoTime ) { - unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); - if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_pseudoTime % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || - ( idx_pseudoTime == _nEnergies - 1 ) /* need sol at last iteration */ ) { - for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { - switch( _settings->GetVolumeOutput()[idx_group] ) { - case MINIMAL: - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - _outputFields[idx_group][0][idx_cell] = _fluxNew[idx_cell]; - } - break; - case ANALYTIC: - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - double time = idx_pseudoTime * _dE; - _outputFields[idx_group][0][idx_cell] = _problem->GetAnalyticalSolution( - _mesh->GetCellMidPoints()[idx_cell][0], _mesh->GetCellMidPoints()[idx_cell][1], time, _sigmaS[idx_pseudoTime][idx_cell] ); - } - break; +// Needs to go to Solver, not to Problem +double SNSolver::GetCurrentOutflow() +{ + double finalTimeOutflow = 0.0; + std::map &ghostCells = _problem->GetGhostCells(); - default: ErrorMessages::Error( "Volume Output Group not defined for SN Solver!", CURRENT_FUNCTION ); break; + // Iterate over boundaries + for (std::map::iterator it = ghostCells.begin(); it != ghostCells.end(); ++it) + { + int idx_cell = it->first; // Get Boundary cell index + for (unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); + ++idx_nbr) + { + // Find face that points outward + if (_neighbors[idx_cell][idx_nbr] == _nCells) + { + for (unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad) + { + double fluxOut = _normals[idx_cell][idx_nbr][0] * _quadPoints[idx_quad][0] + _normals[idx_cell][idx_nbr][1] * _quadPoints[idx_quad][1]; + if (fluxOut > 0.0) + { + finalTimeOutflow += fluxOut * _sol[idx_cell][idx_quad]; + } + } } } } + return finalTimeOutflow; +} + +double SNSolver::GetTotalOutflow(unsigned iteration) +{ + if (iteration == 0) + { + _timeDependentOutflow[iteration] = GetCurrentOutflow() * _dE; + } + else + { + _timeDependentOutflow[iteration] = _timeDependentOutflow[iteration - 1] + GetCurrentOutflow() * _dE; + } + return _timeDependentOutflow[iteration]; } + +double SNSolver::GetMaxOutflow() { return 0; } + +double SNSolver::GetFinalTimeAbsorption() { return 0; } + +double SNSolver::GetTotalAbsorption() { return 0; } + +double SNSolver::GetMaxAbsorption() { return 0; } + +double SNSolver::GetTotalAbsorptionCenter() { return 0; } + +double SNSolver::GetTotalAbsorptionVertical() { return 0; } + +double SNSolver::GetTotalAbsorptionHorizontal() { return 0; } diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 8377703e..20579cc3 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -17,54 +17,60 @@ #include -SolverBase::SolverBase( Config* settings ) { +SolverBase::SolverBase(Config *settings) +{ _settings = settings; // @TODO save parameters from settings class // build mesh and store and store frequently used params - _mesh = LoadSU2MeshFromFile( settings ); - _areas = _mesh->GetCellAreas(); + _mesh = LoadSU2MeshFromFile(settings); + _areas = _mesh->GetCellAreas(); _neighbors = _mesh->GetNeighbours(); - _normals = _mesh->GetNormals(); - _nCells = _mesh->GetNumCells(); - _settings->SetNCells( _nCells ); + _normals = _mesh->GetNormals(); + _nCells = _mesh->GetNumCells(); + _settings->SetNCells(_nCells); // build quadrature object and store frequently used params - _quadrature = QuadratureBase::Create( settings ); - _nq = _quadrature->GetNq(); - _settings->SetNQuadPoints( _nq ); + _quadrature = QuadratureBase::Create(settings); + _nq = _quadrature->GetNq(); + _settings->SetNQuadPoints(_nq); // build slope related params - _reconstructor = new Reconstructor( settings ); - _reconsOrder = _reconstructor->GetReconsOrder(); + _reconstructor = new Reconstructor(settings); + _reconsOrder = _reconstructor->GetReconsOrder(); _interfaceMidPoints = _mesh->GetInterfaceMidPoints(); _cellMidPoints = _mesh->GetCellMidPoints(); // set time step or energy step - _dE = ComputeTimeStep( _settings->GetCFL() ); + _dE = ComputeTimeStep(_settings->GetCFL()); - if( _settings->GetIsCSD() ) { + if (_settings->GetIsCSD()) + { // carefull: This gets overwritten by almost all subsolvers - double minE = 5e-5; // 2.231461e-01; // 5e-5; + double minE = 5e-5; // 2.231461e-01; // 5e-5; double maxE = _settings->GetMaxEnergyCSD(); - _nEnergies = std::ceil( ( maxE - minE ) / _dE ); - _energies = blaze::linspace( _nEnergies, minE, maxE ); + _nEnergies = std::ceil((maxE - minE) / _dE); + _energies = blaze::linspace(_nEnergies, minE, maxE); } - else { // Not CSD Solver - _nEnergies = unsigned( settings->GetTEnd() / _dE ); - _energies = blaze::linspace( _nEnergies, 0.0, settings->GetTEnd() ); // go upward from 0 to T_end + else + { // Not CSD Solver + _nEnergies = unsigned(settings->GetTEnd() / _dE); + _energies = blaze::linspace(_nEnergies, 0.0, settings->GetTEnd()); // go upward from 0 to T_end } // setup problem and store frequently used params - _problem = ProblemBase::Create( _settings, _mesh ); - _sol = _problem->SetupIC(); - _solNew = _sol; // setup temporary sol variable - if( !_settings->GetIsCSD() ) { - _sigmaT = _problem->GetTotalXS( _energies ); - _sigmaS = _problem->GetScatteringXS( _energies ); - _Q = _problem->GetExternalSource( _energies ); + + _problem = ProblemBase::Create(_settings, _mesh); + _sol = _problem->SetupIC(); + + _solNew = _sol; // setup temporary sol variable + if (!_settings->GetIsCSD()) + { + _sigmaT = _problem->GetTotalXS(_energies); + _sigmaS = _problem->GetScatteringXS(_energies); + _Q = _problem->GetExternalSource(_energies); } // setup numerical flux @@ -74,20 +80,24 @@ SolverBase::SolverBase( Config* settings ) { _boundaryCells = _mesh->GetBoundaryTypes(); // Solver Output - _solverOutput.resize( _nCells ); // LEGACY! Only used for CSD SN + _solverOutput.resize(_nCells); // LEGACY! Only used for CSD SN + + PrepareScreenOutput(); // Screen Output + PrepareHistoryOutput(); // History Output - PrepareScreenOutput(); // Screen Output - PrepareHistoryOutput(); // History Output + // initialize QOI helper variables + _timeDependentOutflow = Vector(_maxIter, 0.0); // initialize Helper Variables - _fluxNew = Vector( _nCells, 0 ); - _flux = Vector( _nCells, 0 ); + _fluxNew = Vector(_nCells, 0); + _flux = Vector(_nCells, 0); // write density - _density = _problem->GetDensity( _mesh->GetCellMidPoints() ); + _density = _problem->GetDensity(_mesh->GetCellMidPoints()); } -SolverBase::~SolverBase() { +SolverBase::~SolverBase() +{ delete _quadrature; delete _mesh; delete _problem; @@ -95,23 +105,34 @@ SolverBase::~SolverBase() { delete _g; } -SolverBase* SolverBase::Create( Config* settings ) { - switch( settings->GetSolverName() ) { - case SN_SOLVER: return new SNSolver( settings ); - case PN_SOLVER: return new PNSolver( settings ); - case MN_SOLVER: return new MNSolver( settings ); - case MN_SOLVER_NORMALIZED: return new MNSolverNormalized( settings ); - case CSD_SN_SOLVER: return new CSDSNSolver( settings ); - case CSD_PN_SOLVER: return new CSDPNSolver( settings ); - case CSD_MN_SOLVER: return new CSDMNSolver( settings ); - - default: ErrorMessages::Error( "Creator for the chosen solver does not yet exist. This is is the fault of the coder!", CURRENT_FUNCTION ); +SolverBase *SolverBase::Create(Config *settings) +{ + switch (settings->GetSolverName()) + { + case SN_SOLVER: + return new SNSolver(settings); + case PN_SOLVER: + return new PNSolver(settings); + case MN_SOLVER: + return new MNSolver(settings); + case MN_SOLVER_NORMALIZED: + return new MNSolverNormalized(settings); + case CSD_SN_SOLVER: + return new CSDSNSolver(settings); + case CSD_PN_SOLVER: + return new CSDPNSolver(settings); + case CSD_MN_SOLVER: + return new CSDMNSolver(settings); + + default: + ErrorMessages::Error("Creator for the chosen solver does not yet exist. This is is the fault of the coder!", CURRENT_FUNCTION); } - ErrorMessages::Error( "Creator for the chosen solver does not yet exist. This is is the fault of the coder!", CURRENT_FUNCTION ); - return nullptr; // This code is never reached. Just to disable compiler warnings. + ErrorMessages::Error("Creator for the chosen solver does not yet exist. This is is the fault of the coder!", CURRENT_FUNCTION); + return nullptr; // This code is never reached. Just to disable compiler warnings. } -void SolverBase::Solve() { +void SolverBase::Solve() +{ // --- Preprocessing --- @@ -121,8 +142,9 @@ void SolverBase::Solve() { // Adjust maxIter, depending if we have a normal run or a csd Run _maxIter = _nEnergies; - if( _settings->GetIsCSD() ) { - _maxIter = _nEnergies - 1; // Since CSD does not go the last energy step + if (_settings->GetIsCSD()) + { + _maxIter = _nEnergies - 1; // Since CSD does not go the last energy step } // Preprocessing before first pseudo time step @@ -132,33 +154,40 @@ void SolverBase::Solve() { VectorVector solRK0 = _sol; // Loop over energies (pseudo-time of continuous slowing down approach) - for( unsigned iter = 0; iter < _maxIter; iter++ ) { - if( rkStages == 2 ) solRK0 = _sol; - for( unsigned rkStep = 0; rkStep < rkStages; ++rkStep ) { + for (unsigned iter = 0; iter < _maxIter; iter++) + { + if (rkStages == 2) + solRK0 = _sol; + for (unsigned rkStep = 0; rkStep < rkStages; ++rkStep) + { // --- Prepare Boundaries and temp variables - IterPreprocessing( iter + rkStep ); + IterPreprocessing(iter + rkStep); // --- Compute Fluxes --- FluxUpdate(); // --- Finite Volume Update --- - FVMUpdate( iter + rkStep ); + FVMUpdate(iter + rkStep); // --- Update Solution within Runge Kutta Stages _sol = _solNew; } + // --- Iter Postprocessing --- - IterPostprocessing( iter ); + IterPostprocessing(iter); // --- Runge Kutta Timestep --- - if( rkStages == 2 ) RKUpdate( solRK0, _sol ); + if (rkStages == 2) + RKUpdate(solRK0, _sol); // --- Solver Output --- - WriteVolumeOutput( iter ); - WriteScalarOutput( iter ); - PrintScreenOutput( iter ); - PrintHistoryOutput( iter ); - PrintVolumeOutput( iter ); + WriteVolumeOutput(iter); + WriteScalarOutput(iter); + // --- Update Fluxes (not sure if needed) + _flux = _fluxNew; + PrintScreenOutput(iter); + PrintHistoryOutput(iter); + PrintVolumeOutput(iter); } // --- Postprocessing --- @@ -166,135 +195,206 @@ void SolverBase::Solve() { DrawPostSolverOutput(); } -void SolverBase::RKUpdate( VectorVector sol_0, VectorVector sol_rk ) { +void SolverBase::RKUpdate(VectorVector sol_0, VectorVector sol_rk) +{ #pragma omp parallel for - for( unsigned i = 0; i < _nCells; ++i ) { - _sol[i] = 0.5 * ( sol_0[i] + sol_rk[i] ); + for (unsigned i = 0; i < _nCells; ++i) + { + _sol[i] = 0.5 * (sol_0[i] + sol_rk[i]); } } -void SolverBase::PrintVolumeOutput() const { ExportVTK( _settings->GetOutputFile(), _outputFields, _outputFieldNames, _mesh ); } +void SolverBase::PrintVolumeOutput() const { ExportVTK(_settings->GetOutputFile(), _outputFields, _outputFieldNames, _mesh); } -void SolverBase::PrintVolumeOutput( int currEnergy ) const { - if( _settings->GetVolumeOutputFrequency() != 0 && currEnergy % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) { - ExportVTK( _settings->GetOutputFile() + "_" + std::to_string( currEnergy ), _outputFields, _outputFieldNames, _mesh ); +void SolverBase::PrintVolumeOutput(int currEnergy) const +{ + if (_settings->GetVolumeOutputFrequency() != 0 && currEnergy % (unsigned)_settings->GetVolumeOutputFrequency() == 0) + { + ExportVTK(_settings->GetOutputFile() + "_" + std::to_string(currEnergy), _outputFields, _outputFieldNames, _mesh); } - if( currEnergy == (int)_maxIter - 1 ) { // Last iteration write without suffix. - ExportVTK( _settings->GetOutputFile(), _outputFields, _outputFieldNames, _mesh ); + if (currEnergy == (int)_maxIter - 1) + { // Last iteration write without suffix. + ExportVTK(_settings->GetOutputFile(), _outputFields, _outputFieldNames, _mesh); } } // --- Helper --- -double SolverBase::ComputeTimeStep( double cfl ) const { +double SolverBase::ComputeTimeStep(double cfl) const +{ // for pseudo 1D, set timestep to dx double dx, dy; - switch( _settings->GetProblemName() ) { - case PROBLEM_Checkerboard1D: - dx = 7.0 / (double)_nCells; - dy = 0.3; - return cfl * ( dx * dy ) / ( dx + dy ); - break; - case PROBLEM_Linesource1D: // Fallthrough - case PROBLEM_Meltingcube1D: // Fallthrough - case PROBLEM_Aircavity1D: - dx = 3.0 / (double)_nCells; - dy = 0.3; - return cfl * ( dx * dy ) / ( dx + dy ); - break; - default: break; // 2d as normal + switch (_settings->GetProblemName()) + { + case PROBLEM_Checkerboard1D: + dx = 7.0 / (double)_nCells; + dy = 0.3; + return cfl * (dx * dy) / (dx + dy); + break; + case PROBLEM_Linesource1D: // Fallthrough + case PROBLEM_Meltingcube1D: // Fallthrough + case PROBLEM_Aircavity1D: + dx = 3.0 / (double)_nCells; + dy = 0.3; + return cfl * (dx * dy) / (dx + dy); + break; + default: + break; // 2d as normal } // 2D case double maxEdge = -1.0; - for( unsigned j = 0; j < _nCells; j++ ) { - for( unsigned l = 0; l < _normals[j].size(); l++ ) { - double currentEdge = _areas[j] / norm( _normals[j][l] ); - if( currentEdge > maxEdge ) maxEdge = currentEdge; + for (unsigned j = 0; j < _nCells; j++) + { + for (unsigned l = 0; l < _normals[j].size(); l++) + { + double currentEdge = _areas[j] / norm(_normals[j][l]); + if (currentEdge > maxEdge) + maxEdge = currentEdge; } } return cfl * maxEdge; } // --- IO ---- -void SolverBase::PrepareScreenOutput() { +void SolverBase::PrepareScreenOutput() +{ unsigned nFields = (unsigned)_settings->GetNScreenOutput(); - _screenOutputFieldNames.resize( nFields ); - _screenOutputFields.resize( nFields ); + _screenOutputFieldNames.resize(nFields); + _screenOutputFields.resize(nFields); // Prepare all output Fields ==> Specified in option SCREEN_OUTPUT - for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { + for (unsigned idx_field = 0; idx_field < nFields; idx_field++) + { // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch( _settings->GetScreenOutput()[idx_field] ) { - case MASS: _screenOutputFieldNames[idx_field] = "Mass"; break; - case ITER: _screenOutputFieldNames[idx_field] = "Iter"; break; - case RMS_FLUX: _screenOutputFieldNames[idx_field] = "RMS flux"; break; - case VTK_OUTPUT: _screenOutputFieldNames[idx_field] = "VTK out"; break; - case CSV_OUTPUT: _screenOutputFieldNames[idx_field] = "CSV out"; break; - case FINAL_TIME_OUTFLOW: _screenOutputFieldNames[idx_field] = "Final time outflow"; break; - case TOTAL_OUTFLOW: _screenOutputFieldNames[idx_field] = "Cumulated outflow"; break; - case MAX_OUTFLOW: _screenOutputFieldNames[idx_field] = "Max outflow"; break; - case FINAL_TIME_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Final time absorption"; break; - case TOTAL_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Cumulated absorption"; break; - case MAX_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Max absorption"; break; - case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFieldNames[idx_field] = "Cumulated absorption center"; break; - case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFieldNames[idx_field] = "Cumulated absorption vertical wall"; break; - case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFieldNames[idx_field] = "Cumulated absorption horizontal wall"; break; - - default: ErrorMessages::Error( "Screen output field not defined!", CURRENT_FUNCTION ); break; + switch (_settings->GetScreenOutput()[idx_field]) + { + case MASS: + _screenOutputFieldNames[idx_field] = "Mass"; + break; + case ITER: + _screenOutputFieldNames[idx_field] = "Iter"; + break; + case RMS_FLUX: + _screenOutputFieldNames[idx_field] = "RMS flux"; + break; + case VTK_OUTPUT: + _screenOutputFieldNames[idx_field] = "VTK out"; + break; + case CSV_OUTPUT: + _screenOutputFieldNames[idx_field] = "CSV out"; + break; + case FINAL_TIME_OUTFLOW: + _screenOutputFieldNames[idx_field] = "Final time outflow"; + break; + case TOTAL_OUTFLOW: + _screenOutputFieldNames[idx_field] = "Cumulated outflow"; + break; + case MAX_OUTFLOW: + _screenOutputFieldNames[idx_field] = "Max outflow"; + break; + case FINAL_TIME_PARTICLE_ABSORPTION: + _screenOutputFieldNames[idx_field] = "Final time absorption"; + break; + case TOTAL_PARTICLE_ABSORPTION: + _screenOutputFieldNames[idx_field] = "Cumulated absorption"; + break; + case MAX_PARTICLE_ABSORPTION: + _screenOutputFieldNames[idx_field] = "Max absorption"; + break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: + _screenOutputFieldNames[idx_field] = "Cumulated absorption center"; + break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: + _screenOutputFieldNames[idx_field] = "Cumulated absorption vertical wall"; + break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: + _screenOutputFieldNames[idx_field] = "Cumulated absorption horizontal wall"; + break; + + default: + ErrorMessages::Error("Screen output field not defined!", CURRENT_FUNCTION); + break; } } } -void SolverBase::WriteScalarOutput( unsigned iteration ) { +void SolverBase::WriteScalarOutput(unsigned iteration) +{ unsigned nFields = (unsigned)_settings->GetNScreenOutput(); - double mass = 0.0; + double mass = 0.0; // -- Screen Output - for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { + for (unsigned idx_field = 0; idx_field < nFields; idx_field++) + { // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch( _settings->GetScreenOutput()[idx_field] ) { - case MASS: - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - mass += _fluxNew[idx_cell] * _areas[idx_cell]; - } - _screenOutputFields[idx_field] = mass; - break; - - case ITER: _screenOutputFields[idx_field] = iteration; break; + switch (_settings->GetScreenOutput()[idx_field]) + { + case MASS: + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { + mass += _fluxNew[idx_cell] * _areas[idx_cell]; + } + _screenOutputFields[idx_field] = mass; + break; - case RMS_FLUX: _screenOutputFields[idx_field] = blaze::l2Norm( _fluxNew - _flux ); break; + case ITER: + _screenOutputFields[idx_field] = iteration; + break; - case VTK_OUTPUT: - _screenOutputFields[idx_field] = 0; - if( ( _settings->GetVolumeOutputFrequency() != 0 && iteration % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || - ( iteration == _maxIter - 1 ) /* need sol at last iteration */ ) { - _screenOutputFields[idx_field] = 1; - } - break; + case RMS_FLUX: + _screenOutputFields[idx_field] = blaze::l2Norm(_fluxNew - _flux); + break; - case CSV_OUTPUT: - _screenOutputFields[idx_field] = 0; - if( ( _settings->GetHistoryOutputFrequency() != 0 && iteration % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) || - ( iteration == _maxIter - 1 ) /* need sol at last iteration */ ) { - _screenOutputFields[idx_field] = 1; - } - break; - - case FINAL_TIME_OUTFLOW: _screenOutputFields[idx_field] = _problem->GetFinalTimeOutflow(_sol); break; - case TOTAL_OUTFLOW: _screenOutputFields[idx_field] = _problem->GetTotalOutflow(_sol); break; - case MAX_OUTFLOW: _screenOutputFields[idx_field] = _problem->GetMaxOutflow(_sol); break; - case FINAL_TIME_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _problem->GetFinalTimeAbsorption(_sol); break; - case TOTAL_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _problem->GetTotalAbsorption(_sol); break; - case MAX_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _problem->GetMaxAbsorption(_sol); break; - case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionCenter(_sol); break; - case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionVertical(_sol); break; - case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionHorizontal(_sol); break; - - default: ErrorMessages::Error( "Screen output group not defined!", CURRENT_FUNCTION ); break; + case VTK_OUTPUT: + _screenOutputFields[idx_field] = 0; + if ((_settings->GetVolumeOutputFrequency() != 0 && iteration % (unsigned)_settings->GetVolumeOutputFrequency() == 0) || + (iteration == _maxIter - 1) /* need sol at last iteration */) + { + _screenOutputFields[idx_field] = 1; + } + break; + case CSV_OUTPUT: + _screenOutputFields[idx_field] = 0; + if ((_settings->GetHistoryOutputFrequency() != 0 && iteration % (unsigned)_settings->GetHistoryOutputFrequency() == 0) || + (iteration == _maxIter - 1) /* need sol at last iteration */) + { + _screenOutputFields[idx_field] = 1; + } + break; + case FINAL_TIME_OUTFLOW: + _screenOutputFields[idx_field] = GetCurrentOutflow(); + break; + case TOTAL_OUTFLOW: + _screenOutputFields[idx_field] = GetTotalOutflow(iteration); + break; + case MAX_OUTFLOW: + _screenOutputFields[idx_field] = GetMaxOutflow(); + break; + case FINAL_TIME_PARTICLE_ABSORPTION: + _screenOutputFields[idx_field] = GetFinalTimeAbsorption(); + break; + case TOTAL_PARTICLE_ABSORPTION: + _screenOutputFields[idx_field] = GetTotalAbsorption(); + break; + case MAX_PARTICLE_ABSORPTION: + _screenOutputFields[idx_field] = GetMaxAbsorption(); + break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: + _screenOutputFields[idx_field] = GetTotalAbsorptionCenter(); + break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: + _screenOutputFields[idx_field] = GetTotalAbsorptionVertical(); + break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: + _screenOutputFields[idx_field] = GetTotalAbsorptionHorizontal(); + break; + default: + ErrorMessages::Error("Screen output group not defined!", CURRENT_FUNCTION); + break; } } @@ -302,248 +402,340 @@ void SolverBase::WriteScalarOutput( unsigned iteration ) { nFields = (unsigned)_settings->GetNHistoryOutput(); std::vector screenOutputFields = _settings->GetScreenOutput(); - for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { + for (unsigned idx_field = 0; idx_field < nFields; idx_field++) + { // Check first, if the field was already filled by screenoutput writer! std::vector::iterator itScreenOutput = - std::find( screenOutputFields.begin(), screenOutputFields.end(), _settings->GetHistoryOutput()[idx_field] ); + std::find(screenOutputFields.begin(), screenOutputFields.end(), _settings->GetHistoryOutput()[idx_field]); // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch( _settings->GetHistoryOutput()[idx_field] ) { - case MASS: - if( screenOutputFields.end() == itScreenOutput ) { - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - mass += _fluxNew[idx_cell] * _areas[idx_cell]; - } - _historyOutputFields[idx_field] = mass; - } - else { - _historyOutputFields[idx_field] = *itScreenOutput; + switch (_settings->GetHistoryOutput()[idx_field]) + { + case MASS: + if (screenOutputFields.end() == itScreenOutput) + { + for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) + { + mass += _fluxNew[idx_cell] * _areas[idx_cell]; } - break; - - case ITER: _historyOutputFields[idx_field] = iteration; break; + _historyOutputFields[idx_field] = mass; + } + else + { + _historyOutputFields[idx_field] = *itScreenOutput; + } + break; - case RMS_FLUX: - if( screenOutputFields.end() == itScreenOutput ) { - _screenOutputFields[idx_field] = blaze::l2Norm( _fluxNew - _flux ); - } - else { - _historyOutputFields[idx_field] = *itScreenOutput; - } - break; + case ITER: + _historyOutputFields[idx_field] = iteration; + break; - case VTK_OUTPUT: - _historyOutputFields[idx_field] = 0; - if( ( _settings->GetVolumeOutputFrequency() != 0 && iteration % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || - ( iteration == _maxIter - 1 ) /* need sol at last iteration */ ) { - _historyOutputFields[idx_field] = 1; - } - break; + case RMS_FLUX: + if (screenOutputFields.end() == itScreenOutput) + { + _screenOutputFields[idx_field] = blaze::l2Norm(_fluxNew - _flux); + } + else + { + _historyOutputFields[idx_field] = *itScreenOutput; + } + break; - case CSV_OUTPUT: - _historyOutputFields[idx_field] = 0; - if( ( _settings->GetHistoryOutputFrequency() != 0 && iteration % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) || - ( iteration == _maxIter - 1 ) /* need sol at last iteration */ ) { - _historyOutputFields[idx_field] = 1; - } - break; + case VTK_OUTPUT: + _historyOutputFields[idx_field] = 0; + if ((_settings->GetVolumeOutputFrequency() != 0 && iteration % (unsigned)_settings->GetVolumeOutputFrequency() == 0) || + (iteration == _maxIter - 1) /* need sol at last iteration */) + { + _historyOutputFields[idx_field] = 1; + } + break; - default: ErrorMessages::Error( "History output group not defined!", CURRENT_FUNCTION ); break; + case CSV_OUTPUT: + _historyOutputFields[idx_field] = 0; + if ((_settings->GetHistoryOutputFrequency() != 0 && iteration % (unsigned)_settings->GetHistoryOutputFrequency() == 0) || + (iteration == _maxIter - 1) /* need sol at last iteration */) + { + _historyOutputFields[idx_field] = 1; + } + break; + case FINAL_TIME_OUTFLOW: + _historyOutputFields[idx_field] = GetCurrentOutflow(); + break; + case TOTAL_OUTFLOW: + _historyOutputFields[idx_field] = GetTotalOutflow(iteration); + break; + case MAX_OUTFLOW: + _historyOutputFields[idx_field] = GetMaxOutflow(); + break; + case FINAL_TIME_PARTICLE_ABSORPTION: + _historyOutputFields[idx_field] = GetFinalTimeAbsorption(); + break; + case TOTAL_PARTICLE_ABSORPTION: + _historyOutputFields[idx_field] = GetTotalAbsorption(); + break; + case MAX_PARTICLE_ABSORPTION: + _historyOutputFields[idx_field] = GetMaxAbsorption(); + break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: + _historyOutputFields[idx_field] = GetTotalAbsorptionCenter(); + break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: + _historyOutputFields[idx_field] = GetTotalAbsorptionVertical(); + break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: + _historyOutputFields[idx_field] = GetTotalAbsorptionHorizontal(); + break; + default: + ErrorMessages::Error("History output group not defined!", CURRENT_FUNCTION); + break; } } - _flux = _fluxNew; } -void SolverBase::PrintScreenOutput( unsigned iteration ) { +void SolverBase::PrintScreenOutput(unsigned iteration) +{ int rank; - MPI_Comm_rank( MPI_COMM_WORLD, &rank ); - auto log = spdlog::get( "event" ); + MPI_Comm_rank(MPI_COMM_WORLD, &rank); + auto log = spdlog::get("event"); - unsigned strLen = 10; // max width of one column + unsigned strLen = 10; // max width of one column char paddingChar = ' '; // assemble the line to print std::string lineToPrint = "| "; std::string tmp; - for( unsigned idx_field = 0; idx_field < _settings->GetNScreenOutput(); idx_field++ ) { - tmp = std::to_string( _screenOutputFields[idx_field] ); + for (unsigned idx_field = 0; idx_field < _settings->GetNScreenOutput(); idx_field++) + { + tmp = std::to_string(_screenOutputFields[idx_field]); // Format outputs correctly - std::vector integerFields = { ITER }; - std::vector scientificFields = { RMS_FLUX, MASS }; - std::vector booleanFields = { VTK_OUTPUT, CSV_OUTPUT }; + std::vector integerFields = {ITER}; + std::vector scientificFields = {RMS_FLUX, MASS}; + std::vector booleanFields = {VTK_OUTPUT, CSV_OUTPUT}; - if( !( integerFields.end() == std::find( integerFields.begin(), integerFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { - tmp = std::to_string( (int)_screenOutputFields[idx_field] ); + if (!(integerFields.end() == std::find(integerFields.begin(), integerFields.end(), _settings->GetScreenOutput()[idx_field]))) + { + tmp = std::to_string((int)_screenOutputFields[idx_field]); } - else if( !( booleanFields.end() == std::find( booleanFields.begin(), booleanFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { + else if (!(booleanFields.end() == std::find(booleanFields.begin(), booleanFields.end(), _settings->GetScreenOutput()[idx_field]))) + { tmp = "no"; - if( (bool)_screenOutputFields[idx_field] ) tmp = "yes"; + if ((bool)_screenOutputFields[idx_field]) + tmp = "yes"; } - else if( !( scientificFields.end() == - std::find( scientificFields.begin(), scientificFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { + else if (!(scientificFields.end() == + std::find(scientificFields.begin(), scientificFields.end(), _settings->GetScreenOutput()[idx_field]))) + { std::stringstream ss; ss << _screenOutputFields[idx_field]; tmp = ss.str(); - tmp.erase( std::remove( tmp.begin(), tmp.end(), '+' ), tmp.end() ); // removing the '+' sign + tmp.erase(std::remove(tmp.begin(), tmp.end(), '+'), tmp.end()); // removing the '+' sign } - if( strLen > tmp.size() ) // Padding - tmp.insert( 0, strLen - tmp.size(), paddingChar ); - else if( strLen < tmp.size() ) // Cutting - tmp.resize( strLen ); + if (strLen > tmp.size()) // Padding + tmp.insert(0, strLen - tmp.size(), paddingChar); + else if (strLen < tmp.size()) // Cutting + tmp.resize(strLen); lineToPrint += tmp + " |"; } - if( rank == 0 ) { - if( _settings->GetScreenOutputFrequency() != 0 && iteration % (unsigned)_settings->GetScreenOutputFrequency() == 0 ) { - log->info( lineToPrint ); + if (rank == 0) + { + if (_settings->GetScreenOutputFrequency() != 0 && iteration % (unsigned)_settings->GetScreenOutputFrequency() == 0) + { + log->info(lineToPrint); } - else if( iteration == _maxIter - 1 ) { // Always print last iteration - log->info( lineToPrint ); + else if (iteration == _maxIter - 1) + { // Always print last iteration + log->info(lineToPrint); } } } -void SolverBase::PrepareHistoryOutput() { +void SolverBase::PrepareHistoryOutput() +{ unsigned nFields = (unsigned)_settings->GetNHistoryOutput(); - _historyOutputFieldNames.resize( nFields ); - _historyOutputFields.resize( nFields ); + _historyOutputFieldNames.resize(nFields); + _historyOutputFields.resize(nFields); // Prepare all output Fields ==> Specified in option SCREEN_OUTPUT - for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { + for (unsigned idx_field = 0; idx_field < nFields; idx_field++) + { // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch( _settings->GetHistoryOutput()[idx_field] ) { - case MASS: _historyOutputFieldNames[idx_field] = "Mass"; break; - case ITER: _historyOutputFieldNames[idx_field] = "Iter"; break; - case RMS_FLUX: _historyOutputFieldNames[idx_field] = "RMS_flux"; break; - case VTK_OUTPUT: _historyOutputFieldNames[idx_field] = "VTK_out"; break; - case CSV_OUTPUT: _historyOutputFieldNames[idx_field] = "CSV_out"; break; - case FINAL_TIME_OUTFLOW: _screenOutputFieldNames[idx_field] = "Final_time_outflow"; break; - case TOTAL_OUTFLOW: _screenOutputFieldNames[idx_field] = "Cumulated_outflow"; break; - case MAX_OUTFLOW: _screenOutputFieldNames[idx_field] = "Max_outflow"; break; - case FINAL_TIME_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Final_time_absorption"; break; - case TOTAL_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Cumulated_absorption"; break; - case MAX_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Max_absorption"; break; - case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFieldNames[idx_field] = "Cumulated_absorption_center"; break; - case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFieldNames[idx_field] = "Cumulated_absorption_vertical_wall"; break; - case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFieldNames[idx_field] = "Cumulated_absorption_horizontal_wall"; break; - default: ErrorMessages::Error( "History output field not defined!", CURRENT_FUNCTION ); break; + switch (_settings->GetHistoryOutput()[idx_field]) + { + case MASS: + _historyOutputFieldNames[idx_field] = "Mass"; + break; + case ITER: + _historyOutputFieldNames[idx_field] = "Iter"; + break; + case RMS_FLUX: + _historyOutputFieldNames[idx_field] = "RMS_flux"; + break; + case VTK_OUTPUT: + _historyOutputFieldNames[idx_field] = "VTK_out"; + break; + case CSV_OUTPUT: + _historyOutputFieldNames[idx_field] = "CSV_out"; + break; + case FINAL_TIME_OUTFLOW: + _historyOutputFieldNames[idx_field] = "Final_time_outflow"; + break; + case TOTAL_OUTFLOW: + _historyOutputFieldNames[idx_field] = "Cumulated_outflow"; + break; + case MAX_OUTFLOW: + _historyOutputFieldNames[idx_field] = "Max_outflow"; + break; + case FINAL_TIME_PARTICLE_ABSORPTION: + _historyOutputFieldNames[idx_field] = "Final_time_absorption"; + break; + case TOTAL_PARTICLE_ABSORPTION: + _historyOutputFieldNames[idx_field] = "Cumulated_absorption"; + break; + case MAX_PARTICLE_ABSORPTION: + _historyOutputFieldNames[idx_field] = "Max_absorption"; + break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: + _historyOutputFieldNames[idx_field] = "Cumulated_absorption_center"; + break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: + _historyOutputFieldNames[idx_field] = "Cumulated_absorption_vertical_wall"; + break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: + _historyOutputFieldNames[idx_field] = "Cumulated_absorption_horizontal_wall"; + break; + default: + ErrorMessages::Error("History output field not defined!", CURRENT_FUNCTION); + break; } } } -void SolverBase::PrintHistoryOutput( unsigned iteration ) { +void SolverBase::PrintHistoryOutput(unsigned iteration) +{ int rank; - MPI_Comm_rank( MPI_COMM_WORLD, &rank ); - auto log = spdlog::get( "tabular" ); + MPI_Comm_rank(MPI_COMM_WORLD, &rank); + auto log = spdlog::get("tabular"); // assemble the line to print std::string lineToPrint = ""; std::string tmp; - for( int idx_field = 0; idx_field < _settings->GetNScreenOutput() - 1; idx_field++ ) { - tmp = std::to_string( _screenOutputFields[idx_field] ); + for (int idx_field = 0; idx_field < _settings->GetNScreenOutput() - 1; idx_field++) + { + tmp = std::to_string(_screenOutputFields[idx_field]); lineToPrint += tmp + ","; } - tmp = std::to_string( _screenOutputFields[_settings->GetNScreenOutput() - 1] ); - lineToPrint += tmp; // Last element without comma - - if( rank == 0 ) { - if( _settings->GetHistoryOutputFrequency() != 0 && iteration % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) { - log->info( lineToPrint ); + tmp = std::to_string(_screenOutputFields[_settings->GetNScreenOutput() - 1]); + lineToPrint += tmp; // Last element without comma + + if (rank == 0) + { + if (_settings->GetHistoryOutputFrequency() != 0 && iteration % (unsigned)_settings->GetHistoryOutputFrequency() == 0) + { + log->info(lineToPrint); } - else if( iteration == _nEnergies - 1 ) { // Always print last iteration - log->info( lineToPrint ); + else if (iteration == _nEnergies - 1) + { // Always print last iteration + log->info(lineToPrint); } } } -void SolverBase::DrawPreSolverOutput() { +void SolverBase::DrawPreSolverOutput() +{ // MPI int rank; - MPI_Comm_rank( MPI_COMM_WORLD, &rank ); + MPI_Comm_rank(MPI_COMM_WORLD, &rank); // Logger - auto log = spdlog::get( "event" ); - auto logCSV = spdlog::get( "tabular" ); + auto log = spdlog::get("event"); + auto logCSV = spdlog::get("tabular"); std::string hLine = "--"; - if( rank == 0 ) { - unsigned strLen = 10; // max width of one column + if (rank == 0) + { + unsigned strLen = 10; // max width of one column char paddingChar = ' '; // Assemble Header for Screen Output std::string lineToPrint = "| "; - std::string tmpLine = "------------"; - for( unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++ ) { + std::string tmpLine = "------------"; + for (unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++) + { std::string tmp = _screenOutputFieldNames[idxFields]; - if( strLen > tmp.size() ) // Padding - tmp.insert( 0, strLen - tmp.size(), paddingChar ); - else if( strLen < tmp.size() ) // Cutting - tmp.resize( strLen ); + if (strLen > tmp.size()) // Padding + tmp.insert(0, strLen - tmp.size(), paddingChar); + else if (strLen < tmp.size()) // Cutting + tmp.resize(strLen); lineToPrint += tmp + " |"; hLine += tmpLine; } - log->info( "---------------------------- Solver Starts -----------------------------" ); - log->info( "| The simulation will run for {} iterations.", _nEnergies ); - log->info( "| The spatial grid contains {} cells.", _nCells ); - log->info( hLine ); - log->info( lineToPrint ); - log->info( hLine ); + log->info("---------------------------- Solver Starts -----------------------------"); + log->info("| The simulation will run for {} iterations.", _nEnergies); + log->info("| The spatial grid contains {} cells.", _nCells); + log->info(hLine); + log->info(lineToPrint); + log->info(hLine); std::string lineToPrintCSV = ""; - for( int idxFields = 0; idxFields < _settings->GetNHistoryOutput() - 1; idxFields++ ) { + for (int idxFields = 0; idxFields < _settings->GetNHistoryOutput() - 1; idxFields++) + { std::string tmp = _historyOutputFieldNames[idxFields]; lineToPrintCSV += tmp + ","; } lineToPrintCSV += _historyOutputFieldNames[_settings->GetNHistoryOutput() - 1]; - logCSV->info( lineToPrintCSV ); + logCSV->info(lineToPrintCSV); } } -void SolverBase::DrawPostSolverOutput() { +void SolverBase::DrawPostSolverOutput() +{ // MPI int rank; - MPI_Comm_rank( MPI_COMM_WORLD, &rank ); + MPI_Comm_rank(MPI_COMM_WORLD, &rank); // Logger - auto log = spdlog::get( "event" ); + auto log = spdlog::get("event"); std::string hLine = "--"; - if( rank == 0 ) { - unsigned strLen = 10; // max width of one column + if (rank == 0) + { + unsigned strLen = 10; // max width of one column char paddingChar = ' '; // Assemble Header for Screen Output std::string lineToPrint = "| "; - std::string tmpLine = "------------"; - for( unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++ ) { + std::string tmpLine = "------------"; + for (unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++) + { std::string tmp = _screenOutputFieldNames[idxFields]; - if( strLen > tmp.size() ) // Padding - tmp.insert( 0, strLen - tmp.size(), paddingChar ); - else if( strLen < tmp.size() ) // Cutting - tmp.resize( strLen ); + if (strLen > tmp.size()) // Padding + tmp.insert(0, strLen - tmp.size(), paddingChar); + else if (strLen < tmp.size()) // Cutting + tmp.resize(strLen); lineToPrint += tmp + " |"; hLine += tmpLine; } - log->info( hLine ); + log->info(hLine); #ifndef BUILD_TESTING - log->info( "| The volume output files have been stored at " + _settings->GetOutputFile() ); - log->info( "| The log files have been stored at " + _settings->GetLogDir() + _settings->GetLogFile() ); + log->info("| The volume output files have been stored at " + _settings->GetOutputFile()); + log->info("| The log files have been stored at " + _settings->GetLogDir() + _settings->GetLogFile()); #endif - log->info( "--------------------------- Solver Finished ----------------------------" ); + log->info("--------------------------- Solver Finished ----------------------------"); } } From 09537db6536b41eace6e7b8d2e389b1112612e02 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Fri, 17 Nov 2023 15:52:17 -0500 Subject: [PATCH 005/155] finished lattice QOI --- include/common/globalconstants.hpp | 268 ++++++---- include/solvers/mnsolver.hpp | 176 +++--- include/solvers/pnsolver.hpp | 338 ++++++------ include/solvers/snsolver.hpp | 110 ++-- include/solvers/solverbase.hpp | 95 ++-- src/common/config.cpp | 4 +- src/problems/lattice.cpp | 231 ++++---- src/problems/symmetrichohlraum.cpp | 48 +- src/solvers/csdmnsolver.cpp | 18 +- src/solvers/csdpnsolver.cpp | 18 +- src/solvers/csdsnsolver.cpp | 16 +- src/solvers/mnsolver.cpp | 573 ++++++++------------ src/solvers/pnsolver.cpp | 811 ++++++++++++---------------- src/solvers/snsolver.cpp | 438 ++++++--------- src/solvers/solverbase.cpp | 832 +++++++++++++---------------- 15 files changed, 1722 insertions(+), 2254 deletions(-) diff --git a/include/common/globalconstants.hpp b/include/common/globalconstants.hpp index 4541516a..5ef94fef 100644 --- a/include/common/globalconstants.hpp +++ b/include/common/globalconstants.hpp @@ -15,46 +15,53 @@ // --- Definition for global constants goes here --- -static const long double PI = 3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679; -static const long double EULER = 2.7182818284590452353602874713526624977572470936999595749669676277240766303535475945713821785251664274; -static const long double INV_SQRT_2PI = 1.0 / std::sqrt( 2.0 * PI ); - -static const long double AVOGADRO_CONSTANT = 6.02214129e23; // 1/mol -static const long double ELECTRON_MASS = 9.10938291e-31; // kg -static const long double ELECTRON_ENERGY = 0.51099895; // MeV -static const long double ELECTRON_RADIUS = 2.8179403262e-15; // m -static const long double ELECTRON_MASS_ENERGY_EQUIVALENT = 8.18710506e-14; // J -static const long double ELECTRON_VOLT = 1.602176565e-19; // J -static const long double ELECTRIC_CONSTANT = 8.854187817e-12; // F/m -static const long double ELEMENTARY_CHARGE = 1.602176565e-19; // C -static const long double PLANCK_CONSTANT = 6.62606957e-34; // J s -static const long double BOHR_RADIUS = 5.2917721092e-11; // m - -static const std::vector H2OMassFractions{ 0.111894, 0.888106 }; -static const std::vector H2OAtomicNumbers{ 1.0, 8.0 }; -static const std::vector H2OAtomicWeights{ 1.008, 15.999 }; -static const long double H2OAtomicWeight = 2 * H2OAtomicWeights[0] + H2OAtomicWeights[1]; -static const long double H2OElectronDensity = 3.3428847e23; // 1/cm3 -static const long double H2OMassDensity = 1.0; // g/cm3 -static const long double H2OMolecularDensity = AVOGADRO_CONSTANT * H2OMassDensity / H2OAtomicWeight; // 1/cm3 - -static const long double C1 = 2.0 * PI * std::pow( ELEMENTARY_CHARGE, 4u ) / std::pow( 4.0 * PI * ELECTRIC_CONSTANT, 2u ); -static const long double C2 = C1 / 16.0; -static const long double SQRT05E = std::sqrt( 0.5 * EULER ); -static const long double aH = PLANCK_CONSTANT * PLANCK_CONSTANT * ELECTRIC_CONSTANT / ( PI * ELECTRON_MASS * ELEMENTARY_CHARGE * ELEMENTARY_CHARGE ); +static const long double PI = 3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679; +static const long double EULER = 2.7182818284590452353602874713526624977572470936999595749669676277240766303535475945713821785251664274; +static const long double INV_SQRT_2PI = 1.0 / std::sqrt(2.0 * PI); + +static const long double AVOGADRO_CONSTANT = 6.02214129e23; // 1/mol +static const long double ELECTRON_MASS = 9.10938291e-31; // kg +static const long double ELECTRON_ENERGY = 0.51099895; // MeV +static const long double ELECTRON_RADIUS = 2.8179403262e-15; // m +static const long double ELECTRON_MASS_ENERGY_EQUIVALENT = 8.18710506e-14; // J +static const long double ELECTRON_VOLT = 1.602176565e-19; // J +static const long double ELECTRIC_CONSTANT = 8.854187817e-12; // F/m +static const long double ELEMENTARY_CHARGE = 1.602176565e-19; // C +static const long double PLANCK_CONSTANT = 6.62606957e-34; // J s +static const long double BOHR_RADIUS = 5.2917721092e-11; // m + +static const std::vector H2OMassFractions{0.111894, 0.888106}; +static const std::vector H2OAtomicNumbers{1.0, 8.0}; +static const std::vector H2OAtomicWeights{1.008, 15.999}; +static const long double H2OAtomicWeight = 2 * H2OAtomicWeights[0] + H2OAtomicWeights[1]; +static const long double H2OElectronDensity = 3.3428847e23; // 1/cm3 +static const long double H2OMassDensity = 1.0; // g/cm3 +static const long double H2OMolecularDensity = AVOGADRO_CONSTANT * H2OMassDensity / H2OAtomicWeight; // 1/cm3 + +static const long double C1 = 2.0 * PI * std::pow(ELEMENTARY_CHARGE, 4u) / std::pow(4.0 * PI * ELECTRIC_CONSTANT, 2u); +static const long double C2 = C1 / 16.0; +static const long double SQRT05E = std::sqrt(0.5 * EULER); +static const long double aH = PLANCK_CONSTANT * PLANCK_CONSTANT * ELECTRIC_CONSTANT / (PI * ELECTRON_MASS * ELEMENTARY_CHARGE * ELEMENTARY_CHARGE); const unsigned int MAX_STRING_SIZE = 200; /*!< @brief Maximum size for strings. */ // --- Definition of enums goes here --- -enum BOUNDARY_TYPE { DIRICHLET, NEUMANN, NONE, INVALID }; +enum BOUNDARY_TYPE +{ + DIRICHLET, + NEUMANN, + NONE, + INVALID +}; // --- Definition of enums for EnumOptions goes here --- /*! @brief Enum for all currently available quadratures in rtsn. * Option enums are written in capital letters with underscores as spaces (e.g option "time integration" has option enum "TIME_INTEGRATION") */ -enum QUAD_NAME { +enum QUAD_NAME +{ QUAD_MonteCarlo, QUAD_GaussLegendreTensorized, QUAD_GaussLegendre1D, @@ -74,23 +81,24 @@ enum QUAD_NAME { /*! @brief Conversion Map String to enum */ -inline std::map Quadrature_Map{ { "MONTE_CARLO", QUAD_MonteCarlo }, - { "GAUSS_LEGENDRE_TENSORIZED", QUAD_GaussLegendreTensorized }, - { "GAUSS_LEGENDRE_TENSORIZED_2D", QUAD_GaussLegendreTensorized2D }, - { "PRODUCT", QUAD_Product }, - { "GAUSS_LEGENDRE_1D", QUAD_GaussLegendre1D }, - { "LEVEL_SYMMETRIC", QUAD_LevelSymmetric }, - { "LEBEDEV", QUAD_Lebedev }, - { "LDFESA", QUAD_LDFESA }, - { "MIDPOINT_1D", QUAD_Midpoint1D }, - { "MIDPOINT_2D", QUAD_Midpoint2D }, - { "MIDPOINT_3D", QUAD_Midpoint3D }, - { "RECTANGULAR_1D", QUAD_Rectangular1D }, - { "RECTANGULAR_2D", QUAD_Rectangular2D }, - { "RECTANGULAR_3D", QUAD_Rectangular3D } }; +inline std::map Quadrature_Map{{"MONTE_CARLO", QUAD_MonteCarlo}, + {"GAUSS_LEGENDRE_TENSORIZED", QUAD_GaussLegendreTensorized}, + {"GAUSS_LEGENDRE_TENSORIZED_2D", QUAD_GaussLegendreTensorized2D}, + {"PRODUCT", QUAD_Product}, + {"GAUSS_LEGENDRE_1D", QUAD_GaussLegendre1D}, + {"LEVEL_SYMMETRIC", QUAD_LevelSymmetric}, + {"LEBEDEV", QUAD_Lebedev}, + {"LDFESA", QUAD_LDFESA}, + {"MIDPOINT_1D", QUAD_Midpoint1D}, + {"MIDPOINT_2D", QUAD_Midpoint2D}, + {"MIDPOINT_3D", QUAD_Midpoint3D}, + {"RECTANGULAR_1D", QUAD_Rectangular1D}, + {"RECTANGULAR_2D", QUAD_Rectangular2D}, + {"RECTANGULAR_3D", QUAD_Rectangular3D}}; // Problem name -enum PROBLEM_NAME { +enum PROBLEM_NAME +{ PROBLEM_Linesource, PROBLEM_Linesource1D, PROBLEM_Checkerboard, @@ -107,28 +115,33 @@ enum PROBLEM_NAME { PROBLEM_Lattice }; -inline std::map Problem_Map{ { "LINESOURCE", PROBLEM_Linesource }, - { "LINESOURCE_1D", PROBLEM_Linesource1D }, - { "CHECKERBOARD", PROBLEM_Checkerboard }, - { "CHECKERBOARD_1D", PROBLEM_Checkerboard1D }, - { "STARMAP_VALIDATION", PROBLEM_StarmapValidation }, - { "AIRCAVITY_1D", PROBLEM_Aircavity1D }, - { "WATERPHANTOM", PROBLEM_Phantomimage }, - { "WATERPHANTOM_1D", PROBLEM_Waterphantom1D }, - { "RADIATIONCT", PROBLEM_RadiationCT }, - { "MELTINGCUBE", PROBLEM_Meltingcube }, - { "MELTINGCUBE_1D", PROBLEM_Meltingcube1D }, - { "HOHLRAUM", PROBLEM_Hohlraum }, - { "SYMMETRIC_HOHLRAUM", PROBLEM_SymmetricHohlraum}, - { "LATTICE", PROBLEM_Lattice} }; +inline std::map Problem_Map{{"LINESOURCE", PROBLEM_Linesource}, + {"LINESOURCE_1D", PROBLEM_Linesource1D}, + {"CHECKERBOARD", PROBLEM_Checkerboard}, + {"CHECKERBOARD_1D", PROBLEM_Checkerboard1D}, + {"STARMAP_VALIDATION", PROBLEM_StarmapValidation}, + {"AIRCAVITY_1D", PROBLEM_Aircavity1D}, + {"WATERPHANTOM", PROBLEM_Phantomimage}, + {"WATERPHANTOM_1D", PROBLEM_Waterphantom1D}, + {"RADIATIONCT", PROBLEM_RadiationCT}, + {"MELTINGCUBE", PROBLEM_Meltingcube}, + {"MELTINGCUBE_1D", PROBLEM_Meltingcube1D}, + {"HOHLRAUM", PROBLEM_Hohlraum}, + {"SYMMETRIC_HOHLRAUM", PROBLEM_SymmetricHohlraum}, + {"LATTICE", PROBLEM_Lattice}}; // Kernel name -enum KERNEL_NAME { KERNEL_Isotropic, KERNEL_Isotropic1D }; +enum KERNEL_NAME +{ + KERNEL_Isotropic, + KERNEL_Isotropic1D +}; -inline std::map Kernel_Map{ { "ISOTROPIC", KERNEL_Isotropic }, { "ISOTROPIC_1D", KERNEL_Isotropic1D } }; +inline std::map Kernel_Map{{"ISOTROPIC", KERNEL_Isotropic}, {"ISOTROPIC_1D", KERNEL_Isotropic1D}}; // Solver name -enum SOLVER_NAME { +enum SOLVER_NAME +{ SN_SOLVER, PN_SOLVER, MN_SOLVER, @@ -138,63 +151,112 @@ enum SOLVER_NAME { CSD_MN_SOLVER, }; -inline std::map Solver_Map{ { "SN_SOLVER", SN_SOLVER }, - { "PN_SOLVER", PN_SOLVER }, - { "MN_SOLVER", MN_SOLVER }, - { "MN_SOLVER_NORMALIZED", MN_SOLVER_NORMALIZED }, - { "CSD_SN_SOLVER", CSD_SN_SOLVER }, - { "CSD_PN", CSD_PN_SOLVER }, - { "CSD_MN", CSD_MN_SOLVER } }; +inline std::map Solver_Map{{"SN_SOLVER", SN_SOLVER}, + {"PN_SOLVER", PN_SOLVER}, + {"MN_SOLVER", MN_SOLVER}, + {"MN_SOLVER_NORMALIZED", MN_SOLVER_NORMALIZED}, + {"CSD_SN_SOLVER", CSD_SN_SOLVER}, + {"CSD_PN", CSD_PN_SOLVER}, + {"CSD_MN", CSD_MN_SOLVER}}; // Entropy functional -enum ENTROPY_NAME { QUADRATIC, MAXWELL_BOLTZMANN, BOSE_EINSTEIN, FERMI_DIRAC }; +enum ENTROPY_NAME +{ + QUADRATIC, + MAXWELL_BOLTZMANN, + BOSE_EINSTEIN, + FERMI_DIRAC +}; inline std::map Entropy_Map{ - { "QUADRATIC", QUADRATIC }, { "MAXWELL_BOLTZMANN", MAXWELL_BOLTZMANN }, { "BOSE_EINSTEIN", BOSE_EINSTEIN }, { "FERMI_DIRAC", FERMI_DIRAC } }; + {"QUADRATIC", QUADRATIC}, {"MAXWELL_BOLTZMANN", MAXWELL_BOLTZMANN}, {"BOSE_EINSTEIN", BOSE_EINSTEIN}, {"FERMI_DIRAC", FERMI_DIRAC}}; // Optimizer -enum OPTIMIZER_NAME { NEWTON, REGULARIZED_NEWTON, PART_REGULARIZED_NEWTON, REDUCED_NEWTON, REDUCED_PART_REGULARIZED_NEWTON, ML }; +enum OPTIMIZER_NAME +{ + NEWTON, + REGULARIZED_NEWTON, + PART_REGULARIZED_NEWTON, + REDUCED_NEWTON, + REDUCED_PART_REGULARIZED_NEWTON, + ML +}; -inline std::map Optimizer_Map{ { "NEWTON", NEWTON }, - { "REGULARIZED_NEWTON", REGULARIZED_NEWTON }, - { "PART_REGULARIZED_NEWTON", PART_REGULARIZED_NEWTON }, - { "REDUCED_NEWTON", REDUCED_NEWTON }, - { "REDUCED_PART_REGULARIZED_NEWTON", REDUCED_PART_REGULARIZED_NEWTON }, - { "ML", ML } }; +inline std::map Optimizer_Map{{"NEWTON", NEWTON}, + {"REGULARIZED_NEWTON", REGULARIZED_NEWTON}, + {"PART_REGULARIZED_NEWTON", PART_REGULARIZED_NEWTON}, + {"REDUCED_NEWTON", REDUCED_NEWTON}, + {"REDUCED_PART_REGULARIZED_NEWTON", REDUCED_PART_REGULARIZED_NEWTON}, + {"ML", ML}}; // Volume output -enum VOLUME_OUTPUT { ANALYTIC, MINIMAL, MOMENTS, DUAL_MOMENTS, MEDICAL, MOMENT_TIME_TRACE }; +enum VOLUME_OUTPUT +{ + ANALYTIC, + MINIMAL, + MOMENTS, + DUAL_MOMENTS, + MEDICAL, + MOMENT_TIME_TRACE +}; inline std::map VolOutput_Map{ - { "ANALYTIC", ANALYTIC }, { "MINIMAL", MINIMAL }, { "MOMENTS", MOMENTS }, { "DUAL_MOMENTS", DUAL_MOMENTS }, { "MEDICAL", MEDICAL }, { "MOMENT_TIME_TRACE", MOMENT_TIME_TRACE } }; - + {"ANALYTIC", ANALYTIC}, {"MINIMAL", MINIMAL}, {"MOMENTS", MOMENTS}, {"DUAL_MOMENTS", DUAL_MOMENTS}, {"MEDICAL", MEDICAL}, {"MOMENT_TIME_TRACE", MOMENT_TIME_TRACE}}; // Scalar output -enum SCALAR_OUTPUT { ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, - FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION , TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL }; - -inline std::map ScalarOutput_Map{{ "ITER", ITER }, { "MASS", MASS }, { "RMS_FLUX", RMS_FLUX }, - { "VTK_OUTPUT", VTK_OUTPUT }, { "CSV_OUTPUT", CSV_OUTPUT }, - { "FINAL_TIME_OUTFLOW", FINAL_TIME_OUTFLOW }, - { "TOTAL_OUTFLOW", TOTAL_OUTFLOW }, - { "MAX_OUTFLOW", MAX_OUTFLOW }, - { "FINAL_TIME_PARTICLE_ABSORPTION", FINAL_TIME_PARTICLE_ABSORPTION }, - { "TOTAL_PARTICLE_ABSORPTION", TOTAL_PARTICLE_ABSORPTION }, - { "MAX_PARTICLE_ABSORPTION", MAX_PARTICLE_ABSORPTION } , - { "TOTAL_PARTICLE_ABSORPTION_CENTER", TOTAL_PARTICLE_ABSORPTION_CENTER } , - { "TOTAL_PARTICLE_ABSORPTION_VERTICAL", TOTAL_PARTICLE_ABSORPTION_VERTICAL } , - { "TOTAL_PARTICLE_ABSORPTION_HORIZONTAL", TOTAL_PARTICLE_ABSORPTION_HORIZONTAL } , - }; +enum SCALAR_OUTPUT +{ + ITER, + MASS, + RMS_FLUX, + VTK_OUTPUT, + CSV_OUTPUT, + CUR_OUTFLOW, + TOTAL_OUTFLOW, + MAX_OUTFLOW, + CUR_PARTICLE_ABSORPTION, + TOTAL_PARTICLE_ABSORPTION, + MAX_PARTICLE_ABSORPTION, + TOTAL_PARTICLE_ABSORPTION_CENTER, + TOTAL_PARTICLE_ABSORPTION_VERTICAL, + TOTAL_PARTICLE_ABSORPTION_HORIZONTAL +}; + +inline std::map ScalarOutput_Map{ + {"ITER", ITER}, + {"MASS", MASS}, + {"RMS_FLUX", RMS_FLUX}, + {"VTK_OUTPUT", VTK_OUTPUT}, + {"CSV_OUTPUT", CSV_OUTPUT}, + {"CUR_OUTFLOW", CUR_OUTFLOW}, + {"TOTAL_OUTFLOW", TOTAL_OUTFLOW}, + {"MAX_OUTFLOW", MAX_OUTFLOW}, + {"CUR_PARTICLE_ABSORPTION", CUR_PARTICLE_ABSORPTION}, + {"TOTAL_PARTICLE_ABSORPTION", TOTAL_PARTICLE_ABSORPTION}, + {"MAX_PARTICLE_ABSORPTION", MAX_PARTICLE_ABSORPTION}, + {"TOTAL_PARTICLE_ABSORPTION_CENTER", TOTAL_PARTICLE_ABSORPTION_CENTER}, + {"TOTAL_PARTICLE_ABSORPTION_VERTICAL", TOTAL_PARTICLE_ABSORPTION_VERTICAL}, + {"TOTAL_PARTICLE_ABSORPTION_HORIZONTAL", TOTAL_PARTICLE_ABSORPTION_HORIZONTAL}, +}; // Spherical Basis Name -enum SPHERICAL_BASIS_NAME { SPHERICAL_HARMONICS, SPHERICAL_MONOMIALS, SPHERICAL_MONOMIALS_ROTATED }; +enum SPHERICAL_BASIS_NAME +{ + SPHERICAL_HARMONICS, + SPHERICAL_MONOMIALS, + SPHERICAL_MONOMIALS_ROTATED +}; -inline std::map SphericalBasis_Map{ { "SPHERICAL_HARMONICS", SPHERICAL_HARMONICS }, - { "SPHERICAL_MONOMIALS", SPHERICAL_MONOMIALS }, - { "SPHERICAL_MONOMIALS_ROTATED", SPHERICAL_MONOMIALS_ROTATED } }; +inline std::map SphericalBasis_Map{{"SPHERICAL_HARMONICS", SPHERICAL_HARMONICS}, + {"SPHERICAL_MONOMIALS", SPHERICAL_MONOMIALS}, + {"SPHERICAL_MONOMIALS_ROTATED", SPHERICAL_MONOMIALS_ROTATED}}; // Datasampler Name -enum SAMPLER_NAME { CLASSIFICATION_SAMPLER, REGRESSION_SAMPLER }; +enum SAMPLER_NAME +{ + CLASSIFICATION_SAMPLER, + REGRESSION_SAMPLER +}; -inline std::map SamplerName_MAP{ { "CLASSIFICATION_SAMPLER", CLASSIFICATION_SAMPLER }, - { "REGRESSION_SAMPLER", REGRESSION_SAMPLER } }; -#endif // GLOBAL_CONSTANTS_H +inline std::map SamplerName_MAP{{"CLASSIFICATION_SAMPLER", CLASSIFICATION_SAMPLER}, + {"REGRESSION_SAMPLER", REGRESSION_SAMPLER}}; +#endif // GLOBAL_CONSTANTS_H diff --git a/include/solvers/mnsolver.hpp b/include/solvers/mnsolver.hpp index 0d11ac26..a5e73e88 100644 --- a/include/solvers/mnsolver.hpp +++ b/include/solvers/mnsolver.hpp @@ -9,102 +9,82 @@ class OptimizerBase; class MNSolver : public SolverBase { -public: - /** - * @brief MNSolver constructor - * @param settings Config class that stores all needed information - */ - MNSolver(Config *settings); - - /*! @brief MNSolver destructor */ - virtual ~MNSolver(); - -protected: - // --- Private member variables --- - unsigned _nSystem; /*!< @brief Total number of equations in the system */ - unsigned short _polyDegreeBasis; /*!< @brief Max polynomial degree of the basis */ - VectorVector _kineticDensity; /*!< @brief Kinetic density at the grid cells. dim: _nCells x _nq */ - - // Moment basis - SphericalBase *_basis; /*!< @brief Class to compute and store current spherical harmonics basis */ - VectorVector _momentBasis; /*!< @brief Moment Vector pre-computed at each quadrature point: dim= _nq x _nTotalEntries */ - - // Scattering - Vector _scatterMatDiag; /*!< @brief Diagonal of the scattering matrix (its a diagonal matrix by construction) */ - - // Quadrature related members - VectorVector _quadPoints; /*!< @brief quadrature points, dim(_quadPoints) = (_nq,spatialDim) */ - Vector _weights; /*!< @brief quadrature weights, dim(_weights) = (_nq) */ - VectorVector _quadPointsSphere; /*!< @brief (my,phi), dim(_quadPoints) = (_nq,2) */ - - // Entropy Optimization related members - EntropyBase *_entropy; /*!< @brief Class to handle entropy functionals */ - VectorVector _alpha; /*!< @brief Lagrange Multipliers for Minimal Entropy problem for each gridCell - Layout: _nCells x _nTotalEntries*/ - OptimizerBase *_optimizer; /*!< @brief Class to solve minimal entropy problem */ - - // ---- Private Member functions --- - - // IO - void PrepareVolumeOutput() override; - void WriteVolumeOutput(unsigned idx_iter) override; - - // Solver - virtual void FVMUpdate(unsigned idx_iter) override; - virtual void FluxUpdate() override; - virtual void IterPreprocessing(unsigned /*idx_iter*/) override; - virtual void IterPostprocessing(unsigned /*idx_iter*/) override; - - void FluxUpdatePseudo1D(); // Helper - void FluxUpdatePseudo2D(); // Helper - - /*! @brief Corrects the solution _sol[idx_cell] to be realizable w.r.t. the reconstructed entropy (eta'(alpha*m)) - @param idx_cell cell where the correction happens*/ - void ComputeRealizableSolution(unsigned idx_cell); - - // Initialization of the solver - /*! @brief Pre-Compute Moments at all quadrature points. */ - void ComputeMoments(); - /*! @brief Function for computing and setting up EV matrix for scattering kernel */ - void ComputeScatterMatrix(); - - // Helper - /*! @brief Computes the radiative flux from the solution vector of the moment system */ - void ComputeRadFlux() override; - - // Output helper functions - double GetCurrentOutflow() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalOutflow(unsigned iteration) override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetMaxOutflow() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetFinalTimeAbsorption() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorption() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetMaxAbsorption() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionCenter() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionVertical() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionHorizontal() override final; + public: + /** + * @brief MNSolver constructor + * @param settings Config class that stores all needed information + */ + MNSolver( Config* settings ); + + /*! @brief MNSolver destructor */ + virtual ~MNSolver(); + + protected: + // --- Private member variables --- + unsigned _nSystem; /*!< @brief Total number of equations in the system */ + unsigned short _polyDegreeBasis; /*!< @brief Max polynomial degree of the basis */ + VectorVector _kineticDensity; /*!< @brief Kinetic density at the grid cells. dim: _nCells x _nq */ + + // Moment basis + SphericalBase* _basis; /*!< @brief Class to compute and store current spherical harmonics basis */ + VectorVector _momentBasis; /*!< @brief Moment Vector pre-computed at each quadrature point: dim= _nq x _nTotalEntries */ + + // Scattering + Vector _scatterMatDiag; /*!< @brief Diagonal of the scattering matrix (its a diagonal matrix by construction) */ + + // Quadrature related members + VectorVector _quadPoints; /*!< @brief quadrature points, dim(_quadPoints) = (_nq,spatialDim) */ + Vector _weights; /*!< @brief quadrature weights, dim(_weights) = (_nq) */ + VectorVector _quadPointsSphere; /*!< @brief (my,phi), dim(_quadPoints) = (_nq,2) */ + + // Entropy Optimization related members + EntropyBase* _entropy; /*!< @brief Class to handle entropy functionals */ + VectorVector _alpha; /*!< @brief Lagrange Multipliers for Minimal Entropy problem for each gridCell + Layout: _nCells x _nTotalEntries*/ + OptimizerBase* _optimizer; /*!< @brief Class to solve minimal entropy problem */ + + // ---- Private Member functions --- + + // IO + void PrepareVolumeOutput() override; + void WriteVolumeOutput( unsigned idx_iter ) override; + + // Solver + virtual void FVMUpdate( unsigned idx_iter ) override; + virtual void FluxUpdate() override; + virtual void IterPreprocessing( unsigned idx_iter ) override; + virtual void IterPostprocessing( unsigned idx_iter ) override; + + void FluxUpdatePseudo1D(); // Helper + void FluxUpdatePseudo2D(); // Helper + + /*! @brief Corrects the solution _sol[idx_cell] to be realizable w.r.t. the reconstructed entropy (eta'(alpha*m)) + @param idx_cell cell where the correction happens*/ + void ComputeRealizableSolution( unsigned idx_cell ); + + // Initialization of the solver + /*! @brief Pre-Compute Moments at all quadrature points. */ + void ComputeMoments(); + /*! @brief Function for computing and setting up EV matrix for scattering kernel */ + void ComputeScatterMatrix(); + + // Helper + /*! @brief Computes the radiative flux from the solution vector of the moment system */ + void ComputeRadFlux() override; + + // Output helper functions + double GetCurrentOutflow() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionCenter() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionVertical() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionHorizontal() override final; }; -#endif // MNSOLVER_H +#endif // MNSOLVER_H diff --git a/include/solvers/pnsolver.hpp b/include/solvers/pnsolver.hpp index 42193d0a..ea627465 100644 --- a/include/solvers/pnsolver.hpp +++ b/include/solvers/pnsolver.hpp @@ -5,184 +5,164 @@ class PNSolver : public SolverBase { -public: - /*! @brief PNSolver constructor - * @param settings stores all needed information - */ - PNSolver(Config *settings); - - /*! @brief PNSolver destructor */ - virtual ~PNSolver() {} - -protected: - unsigned _nSystem; /*!< @brief total number of equations in the system */ - unsigned _polyDegreeBasis; /*!< @brief maximal degree of the spherical harmonics basis*/ - - // System Matrix for x, y and z flux - // ==> not needed after computation of A+ and A- ==> maybe safe only temporarly and remove as member? - SymMatrix _Ax; /*!< @brief Flux Jacbioan in x direction */ - SymMatrix _Ay; /*!< @brief Flux Jacbioan in x direction */ - SymMatrix _Az; /*!< @brief Flux Jacbioan in x direction */ - - // Upwinding Matrices - Matrix _AxPlus; /*!< @brief Flux Jacbioan in x direction, positive part */ - Matrix _AxMinus; /*!< @brief Flux Jacbioan in x direction, negative part */ - Matrix _AxAbs; /*!< @brief Flux Jacbioan in x direction, absolute part */ - Matrix _AyPlus; /*!< @brief Flux Jacbioan in y direction, positive part */ - Matrix _AyMinus; /*!< @brief Flux Jacbioan in y direction, negative part */ - Matrix _AyAbs; /*!< @brief Flux Jacbioan in y direction, absolute part */ - Matrix _AzPlus; /*!< @brief Flux Jacbioan in z direction, positive part */ - Matrix _AzMinus; /*!< @brief Flux Jacbioan in z direction, negative part */ - Matrix _AzAbs; /*!< @brief Flux Jacbioan in z direction, absolute part */ - - Vector _scatterMatDiag; /*!< @brief diagonal of the scattering matrix (its a diagonal matrix by construction). Contains eigenvalues of the - scattering kernel. */ - - // ---- Member functions ---- - - // IO - void PrepareVolumeOutput() override; - void WriteVolumeOutput(unsigned idx_pseudoTime) override; - - // Solver - void FVMUpdate(unsigned idx_energy) override; - void FluxUpdate() override; - void IterPreprocessing(unsigned idx_pseudotime) override; - void IterPostprocessing(unsigned idx_pseudotime) override; - - // Helper - void ComputeRadFlux() override; - - // Initialization of the Solver - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double AParam(int l, int k) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double BParam(int l, int k) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double CParam(int l, int k) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double DParam(int l, int k) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double EParam(int l, int k) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double FParam(int l, int k) const; - - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double CTilde(int l, int k) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double DTilde(int l, int k) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double ETilde(int l, int k) const; - /*! @brief parameter functions for setting up system matrix - * @param l degree , it must hold: 0 <= l <=_nq - * @param k order , it must hold: -l <=k <= l - */ - double FTilde(int l, int k) const; - - /*! @brief mathematical + index functions. Helper functions for setting up system matrix. - * @param k: arbitrary integer - */ - int Sgn(int k) const; - /*! @brief mathematical + index functions. Helper functions for setting up system matrix. - * @param k arbitrary integer - */ - int kPlus(int k) const; - /*! @brief mathematical + index functions. Helper functions for setting up system matrix. - * @param k arbitrary integer - */ - int kMinus(int k) const; - - /*! @brief computes the global index of the moment corresponding to basis function (l,k) - * @param l degree l, it must hold: 0 <= l <=_nq - * @param k order k, it must hold: -l <=k <= l - * @returns global index - */ - int GlobalIndex(int l, int k) const; - - /*! @brief Checks, if index invariant for global index holds - * @returns True, if invariant holds, else false - */ - bool CheckIndex(int l, int k) const; - - /*! @brief Function for computing and setting up system matrices */ - void ComputeSystemMatrices(); - /*! @brief Function for computing and setting up flux matrices for upwinding */ - void ComputeFluxComponents(); - /*! @brief Function for computing and setting up EV matrix for scattering kernel */ - void ComputeScatterMatrix(); - /*! @brief Computes Legedre polinomial of oder l at point x */ - double LegendrePoly(double x, int l); - - /*! @brief Sets Entries of FluxMatrices to zero, if they are below double precision, - * to prevent floating point inaccuracies later in the solver */ - void CleanFluxMatrices(); - - /*! @brief Flux update version for Pseudo1D */ - void FluxUpdatePseudo1D(); - /*! @brief Flux update version for Pseudo2D */ - void FluxUpdatePseudo2D(); - - // Output helper functions - double GetCurrentOutflow() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalOutflow(unsigned iteration) override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetMaxOutflow() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetFinalTimeAbsorption() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorption() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetMaxAbsorption() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionCenter() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionVertical() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionHorizontal() override final; + public: + /*! @brief PNSolver constructor + * @param settings stores all needed information + */ + PNSolver( Config* settings ); + + /*! @brief PNSolver destructor */ + virtual ~PNSolver() {} + + protected: + unsigned _nSystem; /*!< @brief total number of equations in the system */ + unsigned _polyDegreeBasis; /*!< @brief maximal degree of the spherical harmonics basis*/ + + // System Matrix for x, y and z flux + // ==> not needed after computation of A+ and A- ==> maybe safe only temporarly and remove as member? + SymMatrix _Ax; /*!< @brief Flux Jacbioan in x direction */ + SymMatrix _Ay; /*!< @brief Flux Jacbioan in x direction */ + SymMatrix _Az; /*!< @brief Flux Jacbioan in x direction */ + + // Upwinding Matrices + Matrix _AxPlus; /*!< @brief Flux Jacbioan in x direction, positive part */ + Matrix _AxMinus; /*!< @brief Flux Jacbioan in x direction, negative part */ + Matrix _AxAbs; /*!< @brief Flux Jacbioan in x direction, absolute part */ + Matrix _AyPlus; /*!< @brief Flux Jacbioan in y direction, positive part */ + Matrix _AyMinus; /*!< @brief Flux Jacbioan in y direction, negative part */ + Matrix _AyAbs; /*!< @brief Flux Jacbioan in y direction, absolute part */ + Matrix _AzPlus; /*!< @brief Flux Jacbioan in z direction, positive part */ + Matrix _AzMinus; /*!< @brief Flux Jacbioan in z direction, negative part */ + Matrix _AzAbs; /*!< @brief Flux Jacbioan in z direction, absolute part */ + + Vector _scatterMatDiag; /*!< @brief diagonal of the scattering matrix (its a diagonal matrix by construction). Contains eigenvalues of the + scattering kernel. */ + + // ---- Member functions ---- + + // IO + void PrepareVolumeOutput() override; + void WriteVolumeOutput( unsigned idx_iter ) override; + + // Solver + void FVMUpdate( unsigned idx_iter ) override; + void FluxUpdate() override; + void IterPreprocessing( unsigned idx_iter ) override; + void IterPostprocessing( unsigned idx_iter ) override; + + // Helper + void ComputeRadFlux() override; + + // Initialization of the Solver + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double AParam( int l, int k ) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double BParam( int l, int k ) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double CParam( int l, int k ) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double DParam( int l, int k ) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double EParam( int l, int k ) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double FParam( int l, int k ) const; + + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double CTilde( int l, int k ) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double DTilde( int l, int k ) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double ETilde( int l, int k ) const; + /*! @brief parameter functions for setting up system matrix + * @param l degree , it must hold: 0 <= l <=_nq + * @param k order , it must hold: -l <=k <= l + */ + double FTilde( int l, int k ) const; + + /*! @brief mathematical + index functions. Helper functions for setting up system matrix. + * @param k: arbitrary integer + */ + int Sgn( int k ) const; + /*! @brief mathematical + index functions. Helper functions for setting up system matrix. + * @param k arbitrary integer + */ + int kPlus( int k ) const; + /*! @brief mathematical + index functions. Helper functions for setting up system matrix. + * @param k arbitrary integer + */ + int kMinus( int k ) const; + + /*! @brief computes the global index of the moment corresponding to basis function (l,k) + * @param l degree l, it must hold: 0 <= l <=_nq + * @param k order k, it must hold: -l <=k <= l + * @returns global index + */ + int GlobalIndex( int l, int k ) const; + + /*! @brief Checks, if index invariant for global index holds + * @returns True, if invariant holds, else false + */ + bool CheckIndex( int l, int k ) const; + + /*! @brief Function for computing and setting up system matrices */ + void ComputeSystemMatrices(); + /*! @brief Function for computing and setting up flux matrices for upwinding */ + void ComputeFluxComponents(); + /*! @brief Function for computing and setting up EV matrix for scattering kernel */ + void ComputeScatterMatrix(); + /*! @brief Computes Legedre polinomial of oder l at point x */ + double LegendrePoly( double x, int l ); + + /*! @brief Sets Entries of FluxMatrices to zero, if they are below double precision, + * to prevent floating point inaccuracies later in the solver */ + void CleanFluxMatrices(); + + /*! @brief Flux update version for Pseudo1D */ + void FluxUpdatePseudo1D(); + /*! @brief Flux update version for Pseudo2D */ + void FluxUpdatePseudo2D(); + + // Output helper functions + double GetCurrentOutflow() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionCenter() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionVertical() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionHorizontal() override final; }; -#endif // PNSOLVER_H +#endif // PNSOLVER_H diff --git a/include/solvers/snsolver.hpp b/include/solvers/snsolver.hpp index 15e2507e..ffa6e5d9 100644 --- a/include/solvers/snsolver.hpp +++ b/include/solvers/snsolver.hpp @@ -5,80 +5,60 @@ class SNSolver : public SolverBase { -protected: - Matrix _scatteringKernel; /*!< @brief scattering kernel for the quadrature */ + protected: + Matrix _scatteringKernel; /*!< @brief scattering kernel for the quadrature */ - // quadrature related numbers + // quadrature related numbers - VectorVector _quadPoints; /*!< @brief quadrature points, dim(_quadPoints) = - (_nq,spatialDim) */ - Vector _weights; /*!< @brief quadrature weights, dim(_weights) = (_nq) */ + VectorVector _quadPoints; /*!< @brief quadrature points, dim(_quadPoints) = + (_nq,spatialDim) */ + Vector _weights; /*!< @brief quadrature weights, dim(_weights) = (_nq) */ -public: - /*! @brief SNSolver constructor - * @param settings stores all needed information - */ - SNSolver(Config *settings); + public: + /*! @brief SNSolver constructor + * @param settings stores all needed information + */ + SNSolver( Config* settings ); - virtual ~SNSolver() {} + virtual ~SNSolver() {} -protected: - // IO - void virtual PrepareVolumeOutput() override; - void virtual WriteVolumeOutput(unsigned idx_pseudoTime) override; + protected: + // IO + void virtual PrepareVolumeOutput() override; + void virtual WriteVolumeOutput( unsigned idx_iter ) override; - // Solver - void virtual FVMUpdate(unsigned idx_energy) override; - void virtual FluxUpdate() override; - void virtual IterPreprocessing(unsigned idx_pseudotime) override; - void virtual IterPostprocessing(unsigned idx_pseudotime) override; + // Solver + void virtual FVMUpdate( unsigned idx_iter ) override; + void virtual FluxUpdate() override; + void virtual IterPreprocessing( unsigned idx_iter ) override; + void virtual IterPostprocessing( unsigned idx_iter ) override; - // Helper - void ComputeRadFlux() override; - void FluxUpdatePseudo1D(); // Helper - void FluxUpdatePseudo2D(); // Helper + // Helper + void ComputeRadFlux() override; + void FluxUpdatePseudo1D(); // Helper + void FluxUpdatePseudo2D(); // Helper - // --- Member variables --- + // --- Member variables --- - // Scalar output helper functions - /** - * @brief Computes Problemspecific Scalar QOI - * - */ + // Scalar output helper functions + /** + * @brief Computes Problemspecific Scalar QOI + * + */ - double GetCurrentOutflow() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalOutflow(unsigned iteration) override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetMaxOutflow() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetFinalTimeAbsorption() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorption() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetMaxAbsorption() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionCenter() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionVertical() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionHorizontal() override final; + double GetCurrentOutflow() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionCenter() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionVertical() override final; + /** + * @brief Computes Problemspecific Scalar QOI + */ + double GetTotalAbsorptionHorizontal() override final; }; -#endif // SNSOLVER_H +#endif // SNSOLVER_H diff --git a/include/solvers/solverbase.hpp b/include/solvers/solverbase.hpp index 8123c8a4..c3e5d3e8 100644 --- a/include/solvers/solverbase.hpp +++ b/include/solvers/solverbase.hpp @@ -19,38 +19,35 @@ class Reconstructor; /*! @brief Base class for all solvers. */ class SolverBase { -protected: - NumericalFluxBase *_g; /*!< @brief class for numerical flux */ - Config *_settings; /*!< @brief config class for global information */ - ProblemBase *_problem; /*!< @brief problem class for initial conditions */ + protected: + NumericalFluxBase* _g; /*!< @brief class for numerical flux */ + Config* _settings; /*!< @brief config class for global information */ + ProblemBase* _problem; /*!< @brief problem class for initial conditions */ // --------- Often used variables of member classes for faster access ---- // Time or Energystepping - unsigned _maxIter; /*!< @brief number of time steps, for non CSD, this equals - _nEnergies, for _csd, _maxIter = _nEnergies-1*/ + unsigned _nIter; /*!< @brief number of time steps, for non CSD, this equals + _nEnergies, for _csd, _maxIter = _nEnergies-1*/ unsigned _nEnergies; /*!< @brief number of energysteps, number of nodal energy values for CSD */ - double _dE; /*!< @brief energy/time step size */ + double _dT; /*!< @brief energy/time step size */ Vector _energies; /*!< @brief energy groups used in the simulation [keV] */ // Mesh related members - Mesh *_mesh; /*!< @brief mesh object for writing out information */ - unsigned _nCells; /*!< @brief number of spatial cells */ - std::vector - _boundaryCells; /*!< @brief boundary type for all cells, dim(_boundary) = - (_NCells) */ - std::vector _areas; /*!< @brief surface area of all spatial cells, - dim(_areas) = _NCells */ - std::vector> - _normals; /*!< @brief edge normals multiplied by edge length, - dim(_normals) = (_NCells,nEdgesPerCell,spatialDim) */ - std::vector> - _neighbors; /*!< @brief edge neighbor cell ids, dim(_neighbors) = - (_NCells,nEdgesPerCell) */ + Mesh* _mesh; /*!< @brief mesh object for writing out information */ + unsigned _nCells; /*!< @brief number of spatial cells */ + std::vector _boundaryCells; /*!< @brief boundary type for all cells, dim(_boundary) = + (_NCells) */ + std::vector _areas; /*!< @brief surface area of all spatial cells, + dim(_areas) = _NCells */ + std::vector> _normals; /*!< @brief edge normals multiplied by edge length, + dim(_normals) = (_NCells,nEdgesPerCell,spatialDim) */ + std::vector> _neighbors; /*!< @brief edge neighbor cell ids, dim(_neighbors) = + (_NCells,nEdgesPerCell) */ // slope related params - Reconstructor *_reconstructor; /*!< @brief reconstructor object for high-order scheme */ + Reconstructor* _reconstructor; /*!< @brief reconstructor object for high-order scheme */ unsigned _reconsOrder; /*!< @brief reconstruction order (current: 1 & 2) */ VectorVector _cellMidPoints; /*!< @brief middle point locations of elements */ std::vector> _interfaceMidPoints; /*!< @brief middle point locations of edges */ @@ -65,15 +62,15 @@ class SolverBase VectorVector _sigmaT; /*!< @brief total cross section for all energies. len:_nEnergies x _nCells*/ // quadrature related numbers - QuadratureBase *_quadrature; /*!< @brief pointer to quadrature class */ + QuadratureBase* _quadrature; /*!< @brief pointer to quadrature class */ unsigned _nq; /*!< @brief number of quadrature points */ // Solution related members - VectorVector _sol; /*!< @brief solution of the PDE, e.g. angular flux or moments */ - VectorVector _solNew; /*!< @brief VectorVector to store the new flux and later - the new solution per iteration */ - Vector _fluxNew; /*!< @brief Vector to store the new Flux. Dim _nCells */ - Vector _flux; /*!< @brief Vector to store the old Flux. Dim _nCells*/ + VectorVector _sol; /*!< @brief solution of the PDE, e.g. angular flux or moments */ + VectorVector _solNew; /*!< @brief VectorVector to store the new flux and later + the new solution per iteration */ + Vector _scalarFluxNew; /*!< @brief Vector to store the new Flux. Dim _nCells */ + Vector _scalarFlux; /*!< @brief Vector to store the old Flux. Dim _nCells*/ // solution gradient and limiter for each cell and each system var. dim: // _nCells x nSys. nSys depents on the solver (either moments or quadpts) @@ -96,7 +93,9 @@ class SolverBase std::vector _historyOutputFields; /*!< @brief Solver Output: dimensions (FieldID). */ std::vector _historyOutputFieldNames; /*!< @brief Names of the outputFields: dimensions (FieldID) */ - Vector _timeDependentOutflow; /*!< @brief Outflow over boundary at each time step */ + Vector _timeDependentOutflow; /*!< @brief Outflow over boundary at each time step */ + Vector _timeDependentAbsorption; /*!< @brief Absorption of particles at problem specific regions at each time step */ + // ---- Member functions ---- // Solver @@ -105,24 +104,24 @@ class SolverBase virtual void SolverPreprocessing(); /*! @brief Performs preprocessing for the current solver iteration @param idx_iter current (peudo) time iteration */ - virtual void IterPreprocessing(unsigned idx_iter) = 0; + virtual void IterPreprocessing( unsigned idx_iter ) = 0; /*! @brief Performs postprocessing for the current solver iteration */ - virtual void IterPostprocessing(unsigned idx_pseudotime) = 0; + virtual void IterPostprocessing( unsigned idx_iter ) = 0; /*! @brief Constructs the flux update for the current iteration and stores it * in psiNew*/ virtual void FluxUpdate() = 0; /*! @brief Computes the finite Volume update step for the current iteration @param idx_iter current (peudo) time iteration */ - virtual void FVMUpdate(unsigned idx_iter) = 0; + virtual void FVMUpdate( unsigned idx_iter ) = 0; /*! @brief Computes the finite Volume update step for the current iteration @param idx_iter current (peudo) time iteration */ - virtual void RKUpdate(VectorVector sol0, VectorVector sol_rk); + virtual void RKUpdate( VectorVector sol0, VectorVector sol_rk ); // Helper /*! @brief ComputeTimeStep calculates the maximal stable time step using the cfl number @param cfl Courant-Friedrichs-Levy condition number */ - double ComputeTimeStep(double cfl) const; + double ComputeTimeStep( double cfl ) const; /*! @brief Computes the flux of the solution to check conservation properties */ virtual void ComputeRadFlux() = 0; @@ -134,30 +133,30 @@ class SolverBase /*! @brief Function that prepares VTK export and csv export of the current solver iteration @param idx_iter current (pseudo) time iteration */ - virtual void WriteVolumeOutput(unsigned idx_iter) = 0; + virtual void WriteVolumeOutput( unsigned idx_iter ) = 0; /*! @brief Save Output solution at given energy (pseudo time) to VTK file. Write frequency is given by option VOLUME_OUTPUT_FREQUENCY. Always prints last iteration without iteration affix. @param idx_iter current (pseudo) time iteration */ - void PrintVolumeOutput(int idx_iter) const; + void PrintVolumeOutput( int idx_iter ) const; /*! @brief Initialized the output fields and their Names for the screenoutput */ void PrepareScreenOutput(); /*! @brief Function that writes screen and history output fields @param idx_iter current (pseudo) time iteration */ - void WriteScalarOutput(unsigned idx_iter); + void WriteScalarOutput( unsigned idx_iter ); /*! @brief Prints ScreenOutputFields to Screen and to logger. Write frequency is given by option SCREEN_OUTPUT_FREQUENCY. Always prints last iteration. @param idx_iter current (pseudo) time iteration */ - void PrintScreenOutput(unsigned idx_iter); + void PrintScreenOutput( unsigned idx_iter ); /*! @brief Initialized the historyOutputFields and their Names for history output. Write frequency is given by option HISTORY_OUTPUT_FREQUENCY. Always prints last iteration. */ void PrepareHistoryOutput(); /*! @brief Prints HistoryOutputFields to logger @param idx_iter current (pseudo) time iteration */ - void PrintHistoryOutput(unsigned idx_iter); + void PrintHistoryOutput( unsigned idx_iter ); /*! @brief Pre Solver Screen and Logger Output */ void DrawPreSolverOutput(); /*! @brief Post Solver Screen and Logger Output */ @@ -171,23 +170,23 @@ class SolverBase /** * @brief Computes Problemspecific Scalar QOI */ - virtual double GetTotalOutflow(unsigned iteration) = 0; + double GetTotalOutflow( unsigned idx_iter ); /** * @brief Computes Problemspecific Scalar QOI */ - virtual double GetMaxOutflow() = 0; + double GetMaxOutflow( unsigned idx_iter ); /** * @brief Computes Problemspecific Scalar QOI */ - virtual double GetFinalTimeAbsorption() = 0; + double GetCurrentAbsorption( unsigned idx_iter ); /** * @brief Computes Problemspecific Scalar QOI */ - virtual double GetTotalAbsorption() = 0; + double GetTotalAbsorption( unsigned idx_iter ); /** * @brief Computes Problemspecific Scalar QOI */ - virtual double GetMaxAbsorption() = 0; + double GetMaxAbsorption( unsigned idx_iter ); /** * @brief Computes Problemspecific Scalar QOI */ @@ -201,23 +200,23 @@ class SolverBase */ virtual double GetTotalAbsorptionHorizontal() = 0; -public: + public: /*! @brief Solver constructor * @param settings config class that stores all needed config information */ - SolverBase(Config *settings); + SolverBase( Config* settings ); virtual ~SolverBase(); /*! @brief Create constructor * @param settings config class that stores all needed config information * @return pointer to SolverBase */ - static SolverBase *Create(Config *settings); + static SolverBase* Create( Config* settings ); /*! @brief Solve functions runs main iteration loop. Components of the solve * loop are pure virtual and subclassed by the child solvers. */ virtual void Solve(); /*! @brief Save Output solution to VTK file */ - void PrintVolumeOutput() const; // Only for debugging purposes. + void PrintVolumeOutput() const; // Only for debugging purposes. }; -#endif // SOLVER_H +#endif // SOLVER_H diff --git a/src/common/config.cpp b/src/common/config.cpp index 666b03a2..748c3374 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -800,7 +800,7 @@ void Config::SetPostprocessing() switch (_problemName) { case PROBLEM_Lattice: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION}; + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION}; it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); if (it == legalOutputs.end()) { @@ -893,7 +893,7 @@ void Config::SetPostprocessing() switch (_problemName) { case PROBLEM_Lattice: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION}; + legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION}; it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); if (it == legalOutputs.end()) { diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index c248de99..48d2eecd 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -8,21 +8,18 @@ // ---- Checkerboard Sn ---- // Constructor for Ckeckerboard case with Sn -Lattice_SN::Lattice_SN(Config *settings, Mesh *mesh) : ProblemBase(settings, mesh) -{ +Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { // Initialise crosssections to 1 - _scatteringXS = Vector(_mesh->GetNumCells(), 1.0); - _totalXS = Vector(_mesh->GetNumCells(), 1.0); + _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); + _totalXS = Vector( _mesh->GetNumCells(), 1.0 ); // For absorption cells: set scattering XS to 0 and absorption to 10 auto cellMids = _mesh->GetCellMidPoints(); - for (unsigned j = 0; j < cellMids.size(); ++j) - { - if (isAbsorption(cellMids[j])) - { + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( isAbsorption( cellMids[j] ) ) { _scatteringXS[j] = 0.0; - _totalXS[j] = 10.0; + _totalXS[j] = 10.0; } } SetGhostCells(); @@ -30,42 +27,33 @@ Lattice_SN::Lattice_SN(Config *settings, Mesh *mesh) : ProblemBase(settings, mes Lattice_SN::~Lattice_SN() {} -VectorVector Lattice_SN::GetScatteringXS(const Vector &energies) { return VectorVector(energies.size(), _scatteringXS); } +VectorVector Lattice_SN::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } -VectorVector Lattice_SN::GetTotalXS(const Vector &energies) { return VectorVector(energies.size(), _totalXS); } +VectorVector Lattice_SN::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } -std::vector Lattice_SN::GetExternalSource(const Vector & /*energies*/) -{ - VectorVector Q(_mesh->GetNumCells(), Vector(1u, 0.0)); +std::vector Lattice_SN::GetExternalSource( const Vector& /*energies*/ ) { + VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); auto cellMids = _mesh->GetCellMidPoints(); - for (unsigned j = 0; j < cellMids.size(); ++j) - { - if (isSource(cellMids[j])) - Q[j] = _settings->GetSourceMagnitude(); // isotropic source + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( isSource( cellMids[j] ) ) Q[j] = _settings->GetSourceMagnitude(); // isotropic source } - return std::vector(1u, Q); + return std::vector( 1u, Q ); } -VectorVector Lattice_SN::SetupIC() -{ - VectorVector psi(_mesh->GetNumCells(), Vector(_settings->GetNQuadPoints(), 1e-10)); +VectorVector Lattice_SN::SetupIC() { + VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-10 ) ); return psi; } -bool Lattice_SN::isAbsorption(const Vector &pos) const -{ +bool Lattice_SN::isAbsorption( const Vector& pos ) const { // Check whether pos is inside absorbing squares double xy_corrector = -3.5; - std::vector lbounds{1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector}; - std::vector ubounds{2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector}; - for (unsigned k = 0; k < lbounds.size(); ++k) - { - for (unsigned l = 0; l < lbounds.size(); ++l) - { - if ((l + k) % 2 == 1 || (k == 2 && l == 2) || (k == 2 && l == 4)) - continue; - if (pos[0] >= lbounds[k] && pos[0] <= ubounds[k] && pos[1] >= lbounds[l] && pos[1] <= ubounds[l]) - { + std::vector lbounds{ 1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector }; + std::vector ubounds{ 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector }; + for( unsigned k = 0; k < lbounds.size(); ++k ) { + for( unsigned l = 0; l < lbounds.size(); ++l ) { + if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; + if( pos[0] >= lbounds[k] && pos[0] <= ubounds[k] && pos[1] >= lbounds[l] && pos[1] <= ubounds[l] ) { return true; } } @@ -73,32 +61,28 @@ bool Lattice_SN::isAbsorption(const Vector &pos) const return false; } -bool Lattice_SN::isSource(const Vector &pos) const -{ +bool Lattice_SN::isSource( const Vector& pos ) const { // Check whether pos is part of source region - if (pos[0] >= 3 - 3.5 && pos[0] <= 4 - 3.5 && pos[1] >= 3 - 3.5 && pos[1] <= 4 - 3.5) + if( pos[0] >= 3 - 3.5 && pos[0] <= 4 - 3.5 && pos[1] >= 3 - 3.5 && pos[1] <= 4 - 3.5 ) return true; else return false; } -void Lattice_SN::SetGhostCells() -{ +void Lattice_SN::SetGhostCells() { // Loop over all cells. If its a Dirichlet boundary, add cell to dict with {cell_idx, boundary_value} auto cellBoundaries = _mesh->GetBoundaryTypes(); std::map ghostCellMap; - QuadratureBase *quad = QuadratureBase::Create(_settings); - VectorVector vq = quad->GetPoints(); - unsigned nq = quad->GetNq(); + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector vq = quad->GetPoints(); + unsigned nq = quad->GetNq(); - Vector void_ghostcell(nq, 0.0); + Vector void_ghostcell( nq, 0.0 ); - for (unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++) - { - if (cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET) - { - ghostCellMap.insert({idx_cell, void_ghostcell}); + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { + if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { + ghostCellMap.insert( { idx_cell, void_ghostcell } ); } } _ghostCells = ghostCellMap; @@ -106,166 +90,140 @@ void Lattice_SN::SetGhostCells() delete quad; } -const Vector &Lattice_SN::GetGhostCellValue(int idx_cell, const Vector &cell_sol) -{ // re-write to use pointers +const Vector& Lattice_SN::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { // re-write to use pointers return _ghostCells[idx_cell]; } // ---- Checkerboard Moments ---- // Constructor for checkerboard case with Pn -Lattice_Moment::Lattice_Moment(Config *settings, Mesh *mesh) : ProblemBase(settings, mesh) -{ +Lattice_Moment::Lattice_Moment( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { // Initialise crosssections = 1 (scattering) - _scatteringXS = Vector(_mesh->GetNumCells(), 1.0); - _totalXS = Vector(_mesh->GetNumCells(), 1.0); + _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); + _totalXS = Vector( _mesh->GetNumCells(), 1.0 ); // for absorption regions change crosssections to all absorption auto cellMids = _mesh->GetCellMidPoints(); - for (unsigned j = 0; j < cellMids.size(); ++j) - { - if (isAbsorption(cellMids[j])) - { + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( isAbsorption( cellMids[j] ) ) { _scatteringXS[j] = 0.0; - _totalXS[j] = 10.0; + _totalXS[j] = 10.0; } } } Lattice_Moment::~Lattice_Moment() {} -VectorVector Lattice_Moment::GetScatteringXS(const Vector &energies) { return VectorVector(energies.size(), _scatteringXS); } +VectorVector Lattice_Moment::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } -VectorVector Lattice_Moment::GetTotalXS(const Vector &energies) { return VectorVector(energies.size(), _totalXS); } +VectorVector Lattice_Moment::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } -std::vector Lattice_Moment::GetExternalSource(const Vector & /*energies*/) -{ +std::vector Lattice_Moment::GetExternalSource( const Vector& /*energies*/ ) { // In case of PN, spherical basis is per default SPHERICAL_HARMONICS - double integrationFactor = (4 * M_PI); - if (_settings->GetDim() == 2) - { + double integrationFactor = ( 4 * M_PI ); + if( _settings->GetDim() == 2 ) { integrationFactor = M_PI; } - SphericalBase *tempBase = SphericalBase::Create(_settings); + SphericalBase* tempBase = SphericalBase::Create( _settings ); unsigned ntotalEquations = tempBase->GetBasisSize(); - VectorVector Q(_mesh->GetNumCells(), Vector(ntotalEquations, 0.0)); // zero could lead to problems? + VectorVector Q( _mesh->GetNumCells(), Vector( ntotalEquations, 0.0 ) ); // zero could lead to problems? VectorVector cellMids = _mesh->GetCellMidPoints(); - Vector uIC(ntotalEquations, 0); + Vector uIC( ntotalEquations, 0 ); - if (_settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS) - { - QuadratureBase *quad = QuadratureBase::Create(_settings); + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { + QuadratureBase* quad = QuadratureBase::Create( _settings ); VectorVector quadPointsSphere = quad->GetPointsSphere(); - Vector w = quad->GetWeights(); + Vector w = quad->GetWeights(); double my, phi; - VectorVector moments = VectorVector(quad->GetNq(), Vector(tempBase->GetBasisSize(), 0.0)); + VectorVector moments = VectorVector( quad->GetNq(), Vector( tempBase->GetBasisSize(), 0.0 ) ); - for (unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++) - { - my = quadPointsSphere[idx_quad][0]; - phi = quadPointsSphere[idx_quad][1]; - moments[idx_quad] = tempBase->ComputeSphericalBasis(my, phi); + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + my = quadPointsSphere[idx_quad][0]; + phi = quadPointsSphere[idx_quad][1]; + moments[idx_quad] = tempBase->ComputeSphericalBasis( my, phi ); } // Integrate <1*m> to get factors for monomial basis in isotropic scattering - for (unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++) - { + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { uIC += w[idx_quad] * moments[idx_quad]; } delete quad; } double kinetic_density = _settings->GetSourceMagnitude(); - for (unsigned j = 0; j < cellMids.size(); ++j) - { - if (isSource(cellMids[j])) - { - if (_settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS) - { - Q[j] = kinetic_density * uIC / uIC[0] / integrationFactor; // Remember scaling + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( isSource( cellMids[j] ) ) { + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { + Q[j] = kinetic_density * uIC / uIC[0] / integrationFactor; // Remember scaling } - if (_settings->GetSphericalBasisName() == SPHERICAL_HARMONICS) - { - Q[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + Q[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) } } } - delete tempBase; // Only temporally needed - return std::vector(1u, Q); + delete tempBase; // Only temporally needed + return std::vector( 1u, Q ); } -VectorVector Lattice_Moment::SetupIC() -{ - double integrationFactor = (4 * M_PI); - if (_settings->GetDim() == 2) - { +VectorVector Lattice_Moment::SetupIC() { + double integrationFactor = ( 4 * M_PI ); + if( _settings->GetDim() == 2 ) { integrationFactor = M_PI; } // In case of PN, spherical basis is per default SPHERICAL_HARMONICS - SphericalBase *tempBase = SphericalBase::Create(_settings); + SphericalBase* tempBase = SphericalBase::Create( _settings ); unsigned ntotalEquations = tempBase->GetBasisSize(); - VectorVector initialSolution(_mesh->GetNumCells(), Vector(ntotalEquations, 0)); // zero could lead to problems? + VectorVector initialSolution( _mesh->GetNumCells(), Vector( ntotalEquations, 0 ) ); // zero could lead to problems? VectorVector cellMids = _mesh->GetCellMidPoints(); - Vector tempIC(ntotalEquations, 0); + Vector tempIC( ntotalEquations, 0 ); - if (_settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS) - { - QuadratureBase *quad = QuadratureBase::Create(_settings); + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { + QuadratureBase* quad = QuadratureBase::Create( _settings ); VectorVector quadPointsSphere = quad->GetPointsSphere(); - Vector w = quad->GetWeights(); + Vector w = quad->GetWeights(); double my, phi; - VectorVector moments = VectorVector(quad->GetNq(), Vector(tempBase->GetBasisSize(), 0.0)); + VectorVector moments = VectorVector( quad->GetNq(), Vector( tempBase->GetBasisSize(), 0.0 ) ); - for (unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++) - { - my = quadPointsSphere[idx_quad][0]; - phi = quadPointsSphere[idx_quad][1]; - moments[idx_quad] = tempBase->ComputeSphericalBasis(my, phi); + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + my = quadPointsSphere[idx_quad][0]; + phi = quadPointsSphere[idx_quad][1]; + moments[idx_quad] = tempBase->ComputeSphericalBasis( my, phi ); } // Integrate <1*m> to get factors for monomial basis in isotropic scattering - for (unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++) - { + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { tempIC += w[idx_quad] * moments[idx_quad]; } delete quad; } // Initial condition is dirac impulse at (x,y) = (0,0) ==> constant in angle ==> all moments - exept first - are zero. double kinetic_density = 1e-4; - for (unsigned j = 0; j < cellMids.size(); ++j) - { - if (_settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS) - { - initialSolution[j] = kinetic_density * tempIC / tempIC[0] / integrationFactor; // Remember scaling + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { + initialSolution[j] = kinetic_density * tempIC / tempIC[0] / integrationFactor; // Remember scaling } - if (_settings->GetSphericalBasisName() == SPHERICAL_HARMONICS) - { - initialSolution[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + initialSolution[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) } } - delete tempBase; // Only temporally needed + delete tempBase; // Only temporally needed return initialSolution; } -bool Lattice_Moment::isAbsorption(const Vector &pos) const -{ +bool Lattice_Moment::isAbsorption( const Vector& pos ) const { // Check whether pos is in absorption region double xy_corrector = -3.5; - std::vector lbounds{1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector}; - std::vector ubounds{2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector}; - for (unsigned k = 0; k < lbounds.size(); ++k) - { - for (unsigned l = 0; l < lbounds.size(); ++l) - { - if ((l + k) % 2 == 1 || (k == 2 && l == 2) || (k == 2 && l == 4)) - continue; - if (pos[0] >= lbounds[k] && pos[0] <= ubounds[k] && pos[1] >= lbounds[l] && pos[1] <= ubounds[l]) - { + std::vector lbounds{ 1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector }; + std::vector ubounds{ 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector }; + for( unsigned k = 0; k < lbounds.size(); ++k ) { + for( unsigned l = 0; l < lbounds.size(); ++l ) { + if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; + if( pos[0] >= lbounds[k] && pos[0] <= ubounds[k] && pos[1] >= lbounds[l] && pos[1] <= ubounds[l] ) { return true; } } @@ -273,10 +231,9 @@ bool Lattice_Moment::isAbsorption(const Vector &pos) const return false; } -bool Lattice_Moment::isSource(const Vector &pos) const -{ +bool Lattice_Moment::isSource( const Vector& pos ) const { // Check whether pos is in source region - if (pos[0] >= 3 - 3.5 && pos[0] <= 4 - 3.5 && pos[1] >= 3 - 3.5 && pos[1] <= 4 - 3.5) + if( pos[0] >= 3 - 3.5 && pos[0] <= 4 - 3.5 && pos[1] >= 3 - 3.5 && pos[1] <= 4 - 3.5 ) return true; else return false; diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 1f975ff5..6fe7360b 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -18,7 +18,7 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh ) : ProblemBa #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { // Assumption: Domain size is 1.3x1.3 - double x = _mesh->GetCellMidPoints()[idx_cell][0]; + double x = _mesh->GetCellMidPoints()[idx_cell][0]; double y = _mesh->GetCellMidPoints()[idx_cell][1]; // red area left @@ -47,7 +47,7 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh ) : ProblemBa _totalXS[idx_cell] = 100.0; } // green area 4 (right boundary) - if(x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4 ) { + if( x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4 ) { _scatteringXS[idx_cell] = 90.0; _totalXS[idx_cell] = 100.0; } @@ -77,38 +77,42 @@ VectorVector SymmetricHohlraum::SetupIC() { VectorVector cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { - psi[j] = 1e-4; // zero initial condition + psi[j] = 1e-4; // zero initial condition } return psi; } -void SymmetricHohlraum::SetGhostCells(){ +void SymmetricHohlraum::SetGhostCells() { // Loop over all cells. If its a Dirichlet boundary, add cell to dict with {cell_idx, boundary_value} auto cellBoundaries = _mesh->GetBoundaryTypes(); std::map ghostCellMap; - QuadratureBase* quad = QuadratureBase::Create( _settings ); - VectorVector vq = quad->GetPoints(); - unsigned nq = quad->GetNq(); + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector vq = quad->GetPoints(); + unsigned nq = quad->GetNq(); - Vector left_inflow(nq, 0.0); - Vector right_inflow(nq, 0.0); - Vector vertical_flow(nq, 0.0); + Vector left_inflow( nq, 0.0 ); + Vector right_inflow( nq, 0.0 ); + Vector vertical_flow( nq, 0.0 ); - for(unsigned idx_q = 0; idx_q < nq; idx_q++){ - if (vq[idx_q][0] > 0.0) left_inflow[idx_q] = 1.0; - if (vq[idx_q][0] < 0.0) right_inflow[idx_q] = 1.0; + for( unsigned idx_q = 0; idx_q < nq; idx_q++ ) { + if( vq[idx_q][0] > 0.0 ) left_inflow[idx_q] = 1.0; + if( vq[idx_q][0] < 0.0 ) right_inflow[idx_q] = 1.0; } - for (unsigned idx_cell =0; idx_cell<_mesh->GetNumCells(); idx_cell ++){ - double x = _mesh->GetCellMidPoints()[idx_cell][0]; + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { + double x = _mesh->GetCellMidPoints()[idx_cell][0]; double y = _mesh->GetCellMidPoints()[idx_cell][1]; - if (cellBoundaries[idx_cell]== BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET){ - if (y < -0.6) ghostCellMap.insert({idx_cell, vertical_flow}); - else if (y > 0.6) ghostCellMap.insert({idx_cell, vertical_flow}); - else if (x < -0.6) ghostCellMap.insert({idx_cell, left_inflow}); - else if (x > 0.6) ghostCellMap.insert({idx_cell, right_inflow}); + if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { + if( y < -0.6 ) + ghostCellMap.insert( { idx_cell, vertical_flow } ); + else if( y > 0.6 ) + ghostCellMap.insert( { idx_cell, vertical_flow } ); + else if( x < -0.6 ) + ghostCellMap.insert( { idx_cell, left_inflow } ); + else if( x > 0.6 ) + ghostCellMap.insert( { idx_cell, right_inflow } ); } } _ghostCells = ghostCellMap; @@ -116,9 +120,7 @@ void SymmetricHohlraum::SetGhostCells(){ delete quad; } -const Vector& SymmetricHohlraum::GetGhostCellValue(int idx_cell, const Vector& cell_sol){ - return _ghostCells[idx_cell]; -} +const Vector& SymmetricHohlraum::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { return _ghostCells[idx_cell]; } VectorVector SymmetricHohlraum::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } diff --git a/src/solvers/csdmnsolver.cpp b/src/solvers/csdmnsolver.cpp index 01025aba..268b5272 100644 --- a/src/solvers/csdmnsolver.cpp +++ b/src/solvers/csdmnsolver.cpp @@ -123,10 +123,10 @@ void CSDMNSolver::IterPostprocessing( unsigned idx_iter ) { #pragma omp parallel for for( unsigned j = 0; j < _nCells; ++j ) { if( idx_iter > 0 && idx_iter < _nEnergies - 1 ) { - _dose[j] += _dE * ( _sol[j][0] * _sMid[idx_iter] ) / _density[j]; // update dose with trapezoidal rule // diss Kerstin + _dose[j] += _dT * ( _sol[j][0] * _sMid[idx_iter] ) / _density[j]; // update dose with trapezoidal rule // diss Kerstin } else { - _dose[j] += 0.5 * _dE * ( _sol[j][0] * _sMid[idx_iter] ) / _density[j]; + _dose[j] += 0.5 * _dT * ( _sol[j][0] * _sMid[idx_iter] ) / _density[j]; } } } @@ -186,7 +186,7 @@ void CSDMNSolver::FluxUpdate() { void CSDMNSolver::FVMUpdate( unsigned idx_energy ) { bool implicitScattering = true; // transform energy difference - _dE = fabs( _eTrafo[idx_energy + 1] - _eTrafo[idx_energy] ); + _dT = fabs( _eTrafo[idx_energy + 1] - _eTrafo[idx_energy] ); // loop over all spatial cells #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { @@ -197,13 +197,13 @@ void CSDMNSolver::FVMUpdate( unsigned idx_energy ) { int idx_sys = _basis->GetGlobalIndexBasis( idx_l, idx_k ); if( implicitScattering ) { _solNew[idx_cell][idx_sys] = - _sol[idx_cell][idx_sys] - ( _dE / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys]; /* cell averaged flux */ - _solNew[idx_cell][idx_sys] = _solNew[idx_cell][idx_sys] / ( 1.0 + _dE * _sigmaTAtEnergy[idx_l] ); /* implicit scattering */ + _sol[idx_cell][idx_sys] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys]; /* cell averaged flux */ + _solNew[idx_cell][idx_sys] = _solNew[idx_cell][idx_sys] / ( 1.0 + _dT * _sigmaTAtEnergy[idx_l] ); /* implicit scattering */ } else { _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] - - ( _dE / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ - - _dE * _sol[idx_cell][idx_sys] * _sigmaTAtEnergy[idx_l]; /* scattering */ + ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ + - _dT * _sol[idx_cell][idx_sys] * _sigmaTAtEnergy[idx_l]; /* scattering */ } } // Source Term TODO @@ -304,13 +304,13 @@ void CSDMNSolver::WriteVolumeOutput( unsigned idx_pseudoTime ) { unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); double maxDose; if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_pseudoTime % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || - ( idx_pseudoTime == _maxIter - 1 ) /* need sol at last iteration */ ) { + ( idx_pseudoTime == _nIter - 1 ) /* need sol at last iteration */ ) { for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { switch( _settings->GetVolumeOutput()[idx_group] ) { case MINIMAL: for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - _outputFields[idx_group][0][idx_cell] = _fluxNew[idx_cell]; + _outputFields[idx_group][0][idx_cell] = _scalarFluxNew[idx_cell]; } break; diff --git a/src/solvers/csdpnsolver.cpp b/src/solvers/csdpnsolver.cpp index 9ad9a0f2..507bf7e1 100644 --- a/src/solvers/csdpnsolver.cpp +++ b/src/solvers/csdpnsolver.cpp @@ -102,10 +102,10 @@ void CSDPNSolver::IterPostprocessing( unsigned idx_iter ) { // -- Compute Dose for( unsigned j = 0; j < _nCells; ++j ) { if( idx_iter > 0 && idx_iter < _nEnergies - 1 ) { - _dose[j] += _dE * ( _sol[j][0] * _sMid[idx_iter] ) / _density[j]; // update dose with trapezoidal rule // diss Kerstin + _dose[j] += _dT * ( _sol[j][0] * _sMid[idx_iter] ) / _density[j]; // update dose with trapezoidal rule // diss Kerstin } else { - _dose[j] += 0.5 * _dE * ( _sol[j][0] * _sMid[idx_iter] ) / _density[j]; + _dose[j] += 0.5 * _dT * ( _sol[j][0] * _sMid[idx_iter] ) / _density[j]; } } } @@ -193,7 +193,7 @@ void CSDPNSolver::FluxUpdate() { void CSDPNSolver::FVMUpdate( unsigned idx_energy ) { bool implicitScattering = true; // transform energy difference - _dE = fabs( _eTrafo[idx_energy + 1] - _eTrafo[idx_energy] ); + _dT = fabs( _eTrafo[idx_energy + 1] - _eTrafo[idx_energy] ); // loop over all spatial cells #pragma omp parallel for @@ -205,13 +205,13 @@ void CSDPNSolver::FVMUpdate( unsigned idx_energy ) { int idx_sys = GlobalIndex( idx_l, idx_k ); if( implicitScattering ) { _solNew[idx_cell][idx_sys] = - _sol[idx_cell][idx_sys] - ( _dE / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys]; /* cell averaged flux */ - _solNew[idx_cell][idx_sys] = _solNew[idx_cell][idx_sys] / ( 1.0 + _dE * _sigmaTAtEnergy[idx_l] ); /* implicit scattering */ + _sol[idx_cell][idx_sys] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys]; /* cell averaged flux */ + _solNew[idx_cell][idx_sys] = _solNew[idx_cell][idx_sys] / ( 1.0 + _dT * _sigmaTAtEnergy[idx_l] ); /* implicit scattering */ } else { _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] - - ( _dE / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ - - _dE * _sol[idx_cell][idx_sys] * _sigmaTAtEnergy[idx_l]; /* scattering */ + ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ + - _dT * _sol[idx_cell][idx_sys] * _sigmaTAtEnergy[idx_l]; /* scattering */ } } // Source Term @@ -276,13 +276,13 @@ void CSDPNSolver::WriteVolumeOutput( unsigned idx_pseudoTime ) { unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); double maxDose; if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_pseudoTime % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || - ( idx_pseudoTime == _maxIter - 1 ) /* need sol at last iteration */ ) { + ( idx_pseudoTime == _nIter - 1 ) /* need sol at last iteration */ ) { for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { switch( _settings->GetVolumeOutput()[idx_group] ) { case MINIMAL: for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - _outputFields[idx_group][0][idx_cell] = _fluxNew[idx_cell]; + _outputFields[idx_group][0][idx_cell] = _scalarFluxNew[idx_cell]; } break; diff --git a/src/solvers/csdsnsolver.cpp b/src/solvers/csdsnsolver.cpp index 0f11fd7a..5bf7ec64 100644 --- a/src/solvers/csdsnsolver.cpp +++ b/src/solvers/csdsnsolver.cpp @@ -98,7 +98,7 @@ void CSDSNSolver::IterPreprocessing( unsigned idx_pseudotime ) { _mesh->ComputeLimiter( _nq, _solDx, _solDy, solDivRho, _limiter ); } - _dE = fabs( _eTrafo[idx_pseudotime + 1] - _eTrafo[idx_pseudotime] ); + _dT = fabs( _eTrafo[idx_pseudotime + 1] - _eTrafo[idx_pseudotime] ); Vector sigmaSAtEnergy( _polyDegreeBasis + 1, 0.0 ); Vector sigmaTAtEnergy( _polyDegreeBasis + 1, 0.0 ); @@ -122,7 +122,7 @@ void CSDSNSolver::IterPreprocessing( unsigned idx_pseudotime ) { unsigned counter = 0; for( unsigned l = 0; l <= _polyDegreeBasis; ++l ) { for( int m = -l; m <= l; ++m ) { - u[counter] = u[counter] / ( 1.0 + _dE * sigmaTAtEnergy[l] ); + u[counter] = u[counter] / ( 1.0 + _dT * sigmaTAtEnergy[l] ); counter++; } } @@ -151,12 +151,12 @@ void CSDSNSolver::IterPostprocessing( unsigned idx_pseudotime ) { // -- Compute Dose #pragma omp parallel for for( unsigned j = 0; j < _nCells; ++j ) { - _fluxNew[j] = dot( _sol[j], _weights ); // unscaled rad flux + _scalarFluxNew[j] = dot( _sol[j], _weights ); // unscaled rad flux if( n > 0 && n < _nEnergies - 1 ) { - _dose[j] += _dE * ( _fluxNew[j] * _sMid[n] ) / _density[j]; // update dose with trapezoidal rule // diss Kerstin + _dose[j] += _dT * ( _scalarFluxNew[j] * _sMid[n] ) / _density[j]; // update dose with trapezoidal rule // diss Kerstin } else { - _dose[j] += 0.5 * _dE * ( _fluxNew[j] * _sMid[n] ) / _density[j]; + _dose[j] += 0.5 * _dT * ( _scalarFluxNew[j] * _sMid[n] ) / _density[j]; } } } @@ -212,7 +212,7 @@ void CSDSNSolver::FVMUpdate( unsigned /*idx_energy*/ ) { // loop over all ordinates for( unsigned i = 0; i < _nq; ++i ) { // time update angular flux with numerical flux and total scattering cross section - _solNew[j][i] = _sol[j][i] - _dE * _solNew[j][i]; + _solNew[j][i] = _sol[j][i] - _dT * _solNew[j][i]; } } } @@ -260,13 +260,13 @@ void CSDSNSolver::WriteVolumeOutput( unsigned idx_pseudoTime ) { unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); double maxDose; if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_pseudoTime % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || - ( idx_pseudoTime == _maxIter - 1 ) /* need sol at last iteration */ ) { + ( idx_pseudoTime == _nIter - 1 ) /* need sol at last iteration */ ) { for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { switch( _settings->GetVolumeOutput()[idx_group] ) { case MINIMAL: for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - _outputFields[idx_group][0][idx_cell] = _fluxNew[idx_cell]; + _outputFields[idx_group][0][idx_cell] = _scalarFluxNew[idx_cell]; } break; diff --git a/src/solvers/mnsolver.cpp b/src/solvers/mnsolver.cpp index e3059c96..7680f458 100644 --- a/src/solvers/mnsolver.cpp +++ b/src/solvers/mnsolver.cpp @@ -15,545 +15,428 @@ #include "spdlog/spdlog.h" #include -MNSolver::MNSolver(Config *settings) : SolverBase(settings) -{ +MNSolver::MNSolver( Config* settings ) : SolverBase( settings ) { _polyDegreeBasis = settings->GetMaxMomentDegree(); - _basis = SphericalBase::Create(_settings); - _nSystem = _basis->GetBasisSize(); + _basis = SphericalBase::Create( _settings ); + _nSystem = _basis->GetBasisSize(); // build quadrature object and store quadrature points and weights _quadPoints = _quadrature->GetPoints(); - _weights = _quadrature->GetWeights(); + _weights = _quadrature->GetWeights(); //_nq = _quadrature->GetNq(); _quadPointsSphere = _quadrature->GetPointsSphere(); //_settings->SetNQuadPoints( _nq ); // Initialize Entropy - _entropy = EntropyBase::Create(_settings); + _entropy = EntropyBase::Create( _settings ); // Initialize Optimizer - _optimizer = OptimizerBase::Create(_settings); + _optimizer = OptimizerBase::Create( _settings ); // Initialize lagrange Multiplier - _alpha = VectorVector(_nCells, Vector(_nSystem, 0.0)); + _alpha = VectorVector( _nCells, Vector( _nSystem, 0.0 ) ); // Initialize kinetic density at grid cells - _kineticDensity = VectorVector(_nCells, Vector(_nq, 0.0)); + _kineticDensity = VectorVector( _nCells, Vector( _nq, 0.0 ) ); // Limiter variables - _solDx = VectorVector(_nCells, Vector(_nq, 0.0)); - _solDy = VectorVector(_nCells, Vector(_nq, 0.0)); - _limiter = VectorVector(_nCells, Vector(_nq, 0.0)); + _solDx = VectorVector( _nCells, Vector( _nq, 0.0 ) ); + _solDy = VectorVector( _nCells, Vector( _nq, 0.0 ) ); + _limiter = VectorVector( _nCells, Vector( _nq, 0.0 ) ); // Initialize and Pre-Compute Moments at quadrature points - _momentBasis = VectorVector(_nq, Vector(_nSystem, 0.0)); + _momentBasis = VectorVector( _nq, Vector( _nSystem, 0.0 ) ); ComputeMoments(); // Initialize Scatter Matrix -- - _scatterMatDiag = Vector(_nSystem, 0.0); + _scatterMatDiag = Vector( _nSystem, 0.0 ); ComputeScatterMatrix(); } -MNSolver::~MNSolver() -{ +MNSolver::~MNSolver() { delete _entropy; delete _optimizer; delete _basis; } -void MNSolver::ComputeScatterMatrix() -{ +void MNSolver::ComputeScatterMatrix() { // --- Isotropic --- - if (_settings->GetSphericalBasisName() == SPHERICAL_HARMONICS) - { + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { _scatterMatDiag[0] = 1.0; - for (unsigned idx_diag = 1; idx_diag < _nSystem; idx_diag++) - { - _scatterMatDiag[idx_diag] = 0.0; // SPHERICAL_HARMONICS are orthogonal basis + for( unsigned idx_diag = 1; idx_diag < _nSystem; idx_diag++ ) { + _scatterMatDiag[idx_diag] = 0.0; // SPHERICAL_HARMONICS are orthogonal basis } } - else - { // SPHERICAL_MONOMIALS - for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) - { + else { // SPHERICAL_MONOMIALS + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { _scatterMatDiag[idx_sys] = 0.0; - for (unsigned idx_quad = 0; idx_quad < _nq; idx_quad++) - { + for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { _scatterMatDiag[idx_sys] += _momentBasis[idx_quad][idx_sys] * _weights[idx_quad]; } - if (_settings->GetDim() == 1) - { + if( _settings->GetDim() == 1 ) { _scatterMatDiag[idx_sys] /= 2; } - else if (_settings->GetDim() == 2) - { + else if( _settings->GetDim() == 2 ) { _scatterMatDiag[idx_sys] /= M_PI; } - else - { // 3D + else { // 3D _scatterMatDiag[idx_sys] /= 4.0 * M_PI; } } } } -void MNSolver::ComputeMoments() -{ +void MNSolver::ComputeMoments() { double my, phi; - for (unsigned idx_quad = 0; idx_quad < _nq; idx_quad++) - { - my = _quadPointsSphere[idx_quad][0]; - phi = _quadPointsSphere[idx_quad][1]; - _momentBasis[idx_quad] = _basis->ComputeSphericalBasis(my, phi); + for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { + my = _quadPointsSphere[idx_quad][0]; + phi = _quadPointsSphere[idx_quad][1]; + _momentBasis[idx_quad] = _basis->ComputeSphericalBasis( my, phi ); } } -void MNSolver::ComputeRealizableSolution(unsigned idx_cell) -{ +void MNSolver::ComputeRealizableSolution( unsigned idx_cell ) { // double entropyReconstruction = 0.0; - for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) - { // reset solution + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { // reset solution _sol[idx_cell][idx_sys] = 0.0; } - _optimizer->ReconstructMoments(_sol[idx_cell], _alpha[idx_cell], _momentBasis); + _optimizer->ReconstructMoments( _sol[idx_cell], _alpha[idx_cell], _momentBasis ); } -void MNSolver::IterPreprocessing(unsigned /*idx_pseudotime*/) -{ +void MNSolver::IterPreprocessing( unsigned /*idx_pseudotime*/ ) { // ------- Entropy closure Step ---------------- - Vector alpha_norm_dummy(_nCells, 0); // ONLY FOR DEBUGGING! THIS SLOWS DOWN THE CODE + Vector alpha_norm_dummy( _nCells, 0 ); // ONLY FOR DEBUGGING! THIS SLOWS DOWN THE CODE - _optimizer->SolveMultiCell(_alpha, _sol, _momentBasis, alpha_norm_dummy); // parallel + _optimizer->SolveMultiCell( _alpha, _sol, _momentBasis, alpha_norm_dummy ); // parallel // ------- Solution reconstruction step ---- #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) - { - for (unsigned idx_quad = 0; idx_quad < _nq; idx_quad++) - { + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { // compute the kinetic density at all grid cells - _kineticDensity[idx_cell][idx_quad] = _entropy->EntropyPrimeDual(blaze::dot(_alpha[idx_cell], _momentBasis[idx_quad])); + _kineticDensity[idx_cell][idx_quad] = _entropy->EntropyPrimeDual( blaze::dot( _alpha[idx_cell], _momentBasis[idx_quad] ) ); } - if (_settings->GetRealizabilityReconstruction()) - ComputeRealizableSolution(idx_cell); + if( _settings->GetRealizabilityReconstruction() ) ComputeRealizableSolution( idx_cell ); } // ------ Compute slope limiters and cell gradients --- - if (_reconsOrder > 1) - { - _mesh->ComputeSlopes(_nq, _solDx, _solDy, _kineticDensity); // parallel - _mesh->ComputeLimiter(_nq, _solDx, _solDy, _kineticDensity, _limiter); // parallel + if( _reconsOrder > 1 ) { + _mesh->ComputeSlopes( _nq, _solDx, _solDy, _kineticDensity ); // parallel + _mesh->ComputeLimiter( _nq, _solDx, _solDy, _kineticDensity, _limiter ); // parallel } } -void MNSolver::IterPostprocessing(unsigned /*idx_iter*/) -{ +void MNSolver::IterPostprocessing( unsigned idx_iter ) { // --- Compute Flux for solution and Screen Output --- ComputeRadFlux(); + _timeDependentOutflow[idx_iter] = GetCurrentOutflow(); + _timeDependentAbsorption[idx_iter] = GetCurrentAbsorption( idx_iter ); } -void MNSolver::ComputeRadFlux() -{ +void MNSolver::ComputeRadFlux() { double firstMomentScaleFactor = 4 * M_PI; - if (_settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D) - { + if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || + _settings->GetProblemName() == PROBLEM_Checkerboard1D ) { firstMomentScaleFactor = 2.0; } - if (_settings->GetDim() == 2) - { + if( _settings->GetDim() == 2 ) { firstMomentScaleFactor = M_PI; } #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { - _fluxNew[idx_cell] = _sol[idx_cell][0] * firstMomentScaleFactor; + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + _scalarFluxNew[idx_cell] = _sol[idx_cell][0] * firstMomentScaleFactor; } } -void MNSolver::FluxUpdate() -{ +void MNSolver::FluxUpdate() { // Loop over all spatial cells - if (_settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D) - { + if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || + _settings->GetProblemName() == PROBLEM_Checkerboard1D ) { FluxUpdatePseudo1D(); } - else - { + else { FluxUpdatePseudo2D(); } } -void MNSolver::FluxUpdatePseudo1D() -{ +void MNSolver::FluxUpdatePseudo1D() { // Loop over the grid cells #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) - { + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { // Dirichlet Boundaries stayd - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) - continue; + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; double solL, solR, kineticFlux; - Vector flux(_nSystem, 0.0); - for (unsigned idx_quad = 0; idx_quad < _nq; idx_quad++) - { - kineticFlux = 0.0; // reset temorary flux - - for (unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); idx_nbr++) - { - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells) - { + Vector flux( _nSystem, 0.0 ); + for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { + kineticFlux = 0.0; // reset temorary flux + + for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); idx_nbr++ ) { + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { // Boundary cells are first order and mirror ghost cells solL = _kineticDensity[idx_cell][idx_quad]; solR = solL; } - else - { + else { // interior cell - unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell - if (_reconsOrder == 1) - { + unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell + if( _reconsOrder == 1 ) { solL = _kineticDensity[idx_cell][idx_quad]; solR = _kineticDensity[_neighbors[idx_cell][idx_nbr]][idx_quad]; } - else if (_reconsOrder == 2) - { + else if( _reconsOrder == 2 ) { solL = _kineticDensity[idx_cell][idx_quad] + _limiter[idx_cell][idx_quad] * - (_solDx[idx_cell][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0]) + - _solDy[idx_cell][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1])); + ( _solDx[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + + _solDy[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); solR = _kineticDensity[nbr_glob][idx_quad] + _limiter[nbr_glob][idx_quad] * - (_solDx[nbr_glob][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0]) + - _solDy[nbr_glob][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1])); + ( _solDx[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + + _solDy[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); } - else - { - ErrorMessages::Error("Reconstruction order not supported.", CURRENT_FUNCTION); + else { + ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); } } // Kinetic flux - kineticFlux += _g->Flux1D(_quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr]); + kineticFlux += _g->Flux1D( _quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr] ); } // Solution flux - flux += _momentBasis[idx_quad] * (_weights[idx_quad] * kineticFlux); + flux += _momentBasis[idx_quad] * ( _weights[idx_quad] * kineticFlux ); } _solNew[idx_cell] = flux; } } -void MNSolver::FluxUpdatePseudo2D() -{ +void MNSolver::FluxUpdatePseudo2D() { // Loop over the grid cells #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) - { + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { // Dirichlet Boundaries stayd - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) - continue; + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; double solL, solR, kineticFlux; - Vector flux(_nSystem, 0.0); - for (unsigned idx_quad = 0; idx_quad < _nq; idx_quad++) - { - kineticFlux = 0.0; // reset temorary flux - for (unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); idx_nbr++) - { - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells) - { + Vector flux( _nSystem, 0.0 ); + for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { + kineticFlux = 0.0; // reset temorary flux + for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); idx_nbr++ ) { + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { // Boundary cells are first order and mirror ghost cells solL = _kineticDensity[idx_cell][idx_quad]; solR = solL; } - else - { + else { // interior cell - unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell - if (_reconsOrder == 1) - { + unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell + if( _reconsOrder == 1 ) { solL = _kineticDensity[idx_cell][idx_quad]; solR = _kineticDensity[_neighbors[idx_cell][idx_nbr]][idx_quad]; } - else if (_reconsOrder == 2) - { + else if( _reconsOrder == 2 ) { solL = _kineticDensity[idx_cell][idx_quad] + _limiter[idx_cell][idx_quad] * - (_solDx[idx_cell][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0]) + - _solDy[idx_cell][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1])); + ( _solDx[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + + _solDy[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); solR = _kineticDensity[nbr_glob][idx_quad] + _limiter[nbr_glob][idx_quad] * - (_solDx[nbr_glob][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0]) + - _solDy[nbr_glob][idx_quad] * (_interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1])); + ( _solDx[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + + _solDy[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); } - else - { - ErrorMessages::Error("Reconstruction order not supported.", CURRENT_FUNCTION); + else { + ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); } } // Kinetic flux - kineticFlux += _g->Flux(_quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr]); + kineticFlux += _g->Flux( _quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr] ); } // Solution flux - flux += _momentBasis[idx_quad] * (_weights[idx_quad] * kineticFlux); + flux += _momentBasis[idx_quad] * ( _weights[idx_quad] * kineticFlux ); } _solNew[idx_cell] = flux; } } -void MNSolver::FVMUpdate(unsigned idx_iter) -{ +void MNSolver::FVMUpdate( unsigned idx_iter ) { // Loop over the grid cells #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) - { + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { // Dirichlet Boundaries stay - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) - continue; + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // Flux update - for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) - { + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] /* old solution */ - - (_dE / _areas[idx_cell]) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ - + _dE * _sigmaS[idx_iter][idx_cell] * _sol[idx_cell][0] * _scatterMatDiag[idx_sys] /* scattering gain */ - - _dE * (_sigmaT[idx_iter][idx_cell]) * _sol[idx_cell][idx_sys]; /* scattering and absorbtion loss */ + - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ + + _dT * _sigmaS[idx_iter][idx_cell] * _sol[idx_cell][0] * _scatterMatDiag[idx_sys] /* scattering gain */ + - _dT * ( _sigmaT[idx_iter][idx_cell] ) * _sol[idx_cell][idx_sys]; /* scattering and absorbtion loss */ } // Source Term - _solNew[idx_cell] += _dE * _Q[0][idx_cell]; + _solNew[idx_cell] += _dT * _Q[0][idx_cell]; } } -void MNSolver::PrepareVolumeOutput() -{ +void MNSolver::PrepareVolumeOutput() { unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); - _outputFieldNames.resize(nGroups); - _outputFields.resize(nGroups); + _outputFieldNames.resize( nGroups ); + _outputFields.resize( nGroups ); // Prepare all OutputGroups ==> Specified in option VOLUME_OUTPUT #pragma omp parallel for - for (unsigned idx_group = 0; idx_group < nGroups; idx_group++) - { + for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch (_settings->GetVolumeOutput()[idx_group]) - { - case MINIMAL: - // Currently only one entry ==> rad flux - _outputFields[idx_group].resize(1); - _outputFieldNames[idx_group].resize(1); - _outputFields[idx_group][0].resize(_nCells); - _outputFieldNames[idx_group][0] = "radiation flux density"; - break; - case MOMENTS: - // As many entries as there are moments in the system - _outputFields[idx_group].resize(_nSystem); - _outputFieldNames[idx_group].resize(_nSystem); - if (_settings->GetSphericalBasisName() == SPHERICAL_HARMONICS) - { - if (_settings->GetDim() == 3) - { - for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) - { // 3D - for (int idx_k = -idx_l; idx_k <= idx_l; idx_k++) - { - _outputFields[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)].resize(_nCells); - _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)] = - std::string("u_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); + switch( _settings->GetVolumeOutput()[idx_group] ) { + case MINIMAL: + // Currently only one entry ==> rad flux + _outputFields[idx_group].resize( 1 ); + _outputFieldNames[idx_group].resize( 1 ); + _outputFields[idx_group][0].resize( _nCells ); + _outputFieldNames[idx_group][0] = "radiation flux density"; + break; + case MOMENTS: + // As many entries as there are moments in the system + _outputFields[idx_group].resize( _nSystem ); + _outputFieldNames[idx_group].resize( _nSystem ); + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + if( _settings->GetDim() == 3 ) { + for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { // 3D + for( int idx_k = -idx_l; idx_k <= idx_l; idx_k++ ) { + _outputFields[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )].resize( _nCells ); + _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )] = + std::string( "u_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); + } } } - } - else if (_settings->GetDim() == 2) - { - unsigned count = 0; - for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) - { - for (int idx_k = -idx_l; idx_k <= idx_l; idx_k++) - { - if ((idx_l + idx_k) % 2 == 0) - { - _outputFields[idx_group][count].resize(_nCells); - _outputFieldNames[idx_group][count] = - std::string("u_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); - count++; + else if( _settings->GetDim() == 2 ) { + unsigned count = 0; + for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { + for( int idx_k = -idx_l; idx_k <= idx_l; idx_k++ ) { + if( ( idx_l + idx_k ) % 2 == 0 ) { + _outputFields[idx_group][count].resize( _nCells ); + _outputFieldNames[idx_group][count] = + std::string( "u_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); + count++; + } } } } - } - else if (_settings->GetDim() == 1) - { - for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) - { - _outputFields[idx_group][idx_l].resize(_nCells); - _outputFieldNames[idx_group][idx_l] = std::string("u_" + std::to_string(idx_l) + "^0"); + else if( _settings->GetDim() == 1 ) { + for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { + _outputFields[idx_group][idx_l].resize( _nCells ); + _outputFieldNames[idx_group][idx_l] = std::string( "u_" + std::to_string( idx_l ) + "^0" ); + } } } - } - else - { - for (unsigned idx_l = 0; idx_l <= _polyDegreeBasis; idx_l++) - { - unsigned maxOrder_k = _basis->GetCurrDegreeSize(idx_l); - for (unsigned idx_k = 0; idx_k < maxOrder_k; idx_k++) - { - _outputFields[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)].resize(_nCells); - _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)] = - std::string("u_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); + else { + for( unsigned idx_l = 0; idx_l <= _polyDegreeBasis; idx_l++ ) { + unsigned maxOrder_k = _basis->GetCurrDegreeSize( idx_l ); + for( unsigned idx_k = 0; idx_k < maxOrder_k; idx_k++ ) { + _outputFields[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )].resize( _nCells ); + _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )] = + std::string( "u_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); + } } } - } - break; - case DUAL_MOMENTS: - // As many entries as there are moments in the system - _outputFields[idx_group].resize(_nSystem); - _outputFieldNames[idx_group].resize(_nSystem); - if (_settings->GetSphericalBasisName() == SPHERICAL_HARMONICS) - { - if (_settings->GetDim() == 3) - { - for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) - { - for (int idx_k = -idx_l; idx_k <= idx_l; idx_k++) - { - _outputFields[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)].resize(_nCells); - _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)] = - std::string("alpha_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); + break; + case DUAL_MOMENTS: + // As many entries as there are moments in the system + _outputFields[idx_group].resize( _nSystem ); + _outputFieldNames[idx_group].resize( _nSystem ); + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + if( _settings->GetDim() == 3 ) { + for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { + for( int idx_k = -idx_l; idx_k <= idx_l; idx_k++ ) { + _outputFields[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )].resize( _nCells ); + _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )] = + std::string( "alpha_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); + } } } - } - else if (_settings->GetDim() == 2) - { - unsigned count = 0; - for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) - { - for (int idx_k = -idx_l; idx_k <= idx_l; idx_k++) - { - if ((idx_l + idx_k) % 2 == 0) - { - _outputFields[idx_group][count].resize(_nCells); - _outputFieldNames[idx_group][count] = - std::string("alpha_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); - count++; + else if( _settings->GetDim() == 2 ) { + unsigned count = 0; + for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { + for( int idx_k = -idx_l; idx_k <= idx_l; idx_k++ ) { + if( ( idx_l + idx_k ) % 2 == 0 ) { + _outputFields[idx_group][count].resize( _nCells ); + _outputFieldNames[idx_group][count] = + std::string( "alpha_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); + count++; + } } } } - } - else if (_settings->GetDim() == 1) - { - for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) - { - _outputFields[idx_group][idx_l].resize(_nCells); - _outputFieldNames[idx_group][idx_l] = std::string("alpha_" + std::to_string(idx_l) + "^0"); + else if( _settings->GetDim() == 1 ) { + for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { + _outputFields[idx_group][idx_l].resize( _nCells ); + _outputFieldNames[idx_group][idx_l] = std::string( "alpha_" + std::to_string( idx_l ) + "^0" ); + } } } - } - else - { // SPHERICAL_MONOMIALS - for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) - { - unsigned maxOrder_k = _basis->GetCurrDegreeSize(idx_l); - for (unsigned idx_k = 0; idx_k < maxOrder_k; idx_k++) - { - _outputFields[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)].resize(_nCells); - _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis(idx_l, idx_k)] = - std::string("alpha_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); + else { // SPHERICAL_MONOMIALS + for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { + unsigned maxOrder_k = _basis->GetCurrDegreeSize( idx_l ); + for( unsigned idx_k = 0; idx_k < maxOrder_k; idx_k++ ) { + _outputFields[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )].resize( _nCells ); + _outputFieldNames[idx_group][_basis->GetGlobalIndexBasis( idx_l, idx_k )] = + std::string( "alpha_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); + } } } - } - break; - case ANALYTIC: - // one entry per cell - _outputFields[idx_group].resize(1); - _outputFieldNames[idx_group].resize(1); - _outputFields[idx_group][0].resize(_nCells); - _outputFieldNames[idx_group][0] = std::string("analytic radiation flux density"); - break; - default: - ErrorMessages::Error("Volume Output Group not defined for MN Solver!", CURRENT_FUNCTION); - break; + break; + case ANALYTIC: + // one entry per cell + _outputFields[idx_group].resize( 1 ); + _outputFieldNames[idx_group].resize( 1 ); + _outputFields[idx_group][0].resize( _nCells ); + _outputFieldNames[idx_group][0] = std::string( "analytic radiation flux density" ); + break; + default: ErrorMessages::Error( "Volume Output Group not defined for MN Solver!", CURRENT_FUNCTION ); break; } } } -void MNSolver::WriteVolumeOutput(unsigned idx_iter) -{ +void MNSolver::WriteVolumeOutput( unsigned idx_iter ) { unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); // Check if volume output fields are written to file this iteration - if ((_settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0) || - (idx_iter == _nEnergies - 1) /* need sol at last iteration */) - { + if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || + ( idx_iter == _nEnergies - 1 ) /* need sol at last iteration */ ) { #pragma omp parallel for - for (unsigned idx_group = 0; idx_group < nGroups; idx_group++) - { - switch (_settings->GetVolumeOutput()[idx_group]) - { - case MINIMAL: - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { - _outputFields[idx_group][0][idx_cell] = _fluxNew[idx_cell]; - } - break; - case MOMENTS: - for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) - { - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { - _outputFields[idx_group][idx_sys][idx_cell] = _sol[idx_cell][idx_sys]; + for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { + switch( _settings->GetVolumeOutput()[idx_group] ) { + case MINIMAL: + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + _outputFields[idx_group][0][idx_cell] = _scalarFluxNew[idx_cell]; } - } - break; - case DUAL_MOMENTS: - for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) - { - for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) - { - _outputFields[idx_group][idx_sys][idx_cell] = _alpha[idx_cell][idx_sys]; + break; + case MOMENTS: + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + _outputFields[idx_group][idx_sys][idx_cell] = _sol[idx_cell][idx_sys]; + } } - } - break; - case ANALYTIC: - // Compute total "mass" of the system ==> to check conservation properties - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { - double time = idx_iter * _dE; - _outputFields[idx_group][0][idx_cell] = _problem->GetAnalyticalSolution( - _mesh->GetCellMidPoints()[idx_cell][0], _mesh->GetCellMidPoints()[idx_cell][1], time, _sigmaS[idx_iter][idx_cell]); - } - break; - default: - ErrorMessages::Error("Volume Output Group not defined for MN Solver!", CURRENT_FUNCTION); - break; + break; + case DUAL_MOMENTS: + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + _outputFields[idx_group][idx_sys][idx_cell] = _alpha[idx_cell][idx_sys]; + } + } + break; + case ANALYTIC: + // Compute total "mass" of the system ==> to check conservation properties + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + double time = idx_iter * _dT; + _outputFields[idx_group][0][idx_cell] = _problem->GetAnalyticalSolution( + _mesh->GetCellMidPoints()[idx_cell][0], _mesh->GetCellMidPoints()[idx_cell][1], time, _sigmaS[idx_iter][idx_cell] ); + } + break; + default: ErrorMessages::Error( "Volume Output Group not defined for MN Solver!", CURRENT_FUNCTION ); break; } } } } -double MNSolver::GetCurrentOutflow() -{ - return 0.0; -} - -double MNSolver::GetTotalOutflow(unsigned iteration) -{ - if (iteration == 0) - { - _timeDependentOutflow[iteration] = GetCurrentOutflow() * _dE; - } - else - { - _timeDependentOutflow[iteration] = _timeDependentOutflow[iteration - 1] + GetCurrentOutflow() * _dE; - } - return _timeDependentOutflow[iteration]; -} - -double MNSolver::GetMaxOutflow() { return 0; } - -double MNSolver::GetFinalTimeAbsorption() { return 0; } - -double MNSolver::GetTotalAbsorption() { return 0; } - -double MNSolver::GetMaxAbsorption() { return 0; } +double MNSolver::GetCurrentOutflow() { return 0.0; } double MNSolver::GetTotalAbsorptionCenter() { return 0; } diff --git a/src/solvers/pnsolver.cpp b/src/solvers/pnsolver.cpp index cc9adc72..5bd10d7c 100644 --- a/src/solvers/pnsolver.cpp +++ b/src/solvers/pnsolver.cpp @@ -13,33 +13,32 @@ #include #include -PNSolver::PNSolver(Config *settings) : SolverBase(settings) -{ +PNSolver::PNSolver( Config* settings ) : SolverBase( settings ) { _polyDegreeBasis = settings->GetMaxMomentDegree(); - _nSystem = GlobalIndex(int(_polyDegreeBasis), int(_polyDegreeBasis)) + 1; + _nSystem = GlobalIndex( int( _polyDegreeBasis ), int( _polyDegreeBasis ) ) + 1; // Initialize System Matrices - _Ax = SymMatrix(_nSystem); - _Ay = SymMatrix(_nSystem); - _Az = SymMatrix(_nSystem); - - _AxPlus = Matrix(_nSystem, _nSystem, 0); - _AxMinus = Matrix(_nSystem, _nSystem, 0); - _AxAbs = Matrix(_nSystem, _nSystem, 0); - _AyPlus = Matrix(_nSystem, _nSystem, 0); - _AyMinus = Matrix(_nSystem, _nSystem, 0); - _AyAbs = Matrix(_nSystem, _nSystem, 0); - _AzPlus = Matrix(_nSystem, _nSystem, 0); - _AzMinus = Matrix(_nSystem, _nSystem, 0); - _AzAbs = Matrix(_nSystem, _nSystem, 0); + _Ax = SymMatrix( _nSystem ); + _Ay = SymMatrix( _nSystem ); + _Az = SymMatrix( _nSystem ); + + _AxPlus = Matrix( _nSystem, _nSystem, 0 ); + _AxMinus = Matrix( _nSystem, _nSystem, 0 ); + _AxAbs = Matrix( _nSystem, _nSystem, 0 ); + _AyPlus = Matrix( _nSystem, _nSystem, 0 ); + _AyMinus = Matrix( _nSystem, _nSystem, 0 ); + _AyAbs = Matrix( _nSystem, _nSystem, 0 ); + _AzPlus = Matrix( _nSystem, _nSystem, 0 ); + _AzMinus = Matrix( _nSystem, _nSystem, 0 ); + _AzAbs = Matrix( _nSystem, _nSystem, 0 ); // Limiter variables - _solDx = VectorVector(_nCells, Vector(_nSystem, 0.0)); - _solDy = VectorVector(_nCells, Vector(_nSystem, 0.0)); - _limiter = VectorVector(_nCells, Vector(_nSystem, 0.0)); + _solDx = VectorVector( _nCells, Vector( _nSystem, 0.0 ) ); + _solDy = VectorVector( _nCells, Vector( _nSystem, 0.0 ) ); + _limiter = VectorVector( _nCells, Vector( _nSystem, 0.0 ) ); // Initialize Scatter Matrix - _scatterMatDiag = Vector(_nSystem, 0); + _scatterMatDiag = Vector( _nSystem, 0 ); // Fill System Matrices ComputeSystemMatrices(); @@ -52,404 +51,345 @@ PNSolver::PNSolver(Config *settings) : SolverBase(settings) // AdaptTimeStep(); - if (settings->GetCleanFluxMat()) - CleanFluxMatrices(); + if( settings->GetCleanFluxMat() ) CleanFluxMatrices(); // Compute moments of initial condition // TODO } -void PNSolver::IterPreprocessing(unsigned /*idx_iter*/) -{ +void PNSolver::IterPreprocessing( unsigned /*idx_iter*/ ) { // ------ Compute slope limiters and cell gradients --- - if (_reconsOrder > 1) - { - _mesh->ComputeSlopes(_nSystem, _solDx, _solDy, _sol); - _mesh->ComputeLimiter(_nSystem, _solDx, _solDy, _sol, _limiter); + if( _reconsOrder > 1 ) { + _mesh->ComputeSlopes( _nSystem, _solDx, _solDy, _sol ); + _mesh->ComputeLimiter( _nSystem, _solDx, _solDy, _sol, _limiter ); } } -void PNSolver::IterPostprocessing(unsigned /*idx_iter*/) -{ - // --- Update Solution --- - //_sol = _solNew; - +void PNSolver::IterPostprocessing( unsigned idx_iter ) { // --- Compute Flux for solution and Screen Output --- ComputeRadFlux(); + + _timeDependentOutflow[idx_iter] = GetCurrentOutflow(); + _timeDependentAbsorption[idx_iter] = GetCurrentAbsorption( idx_iter ); } -void PNSolver::ComputeRadFlux() -{ +void PNSolver::ComputeRadFlux() { double firstMomentScaleFactor = 4 * M_PI; - if (_settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D) - { + if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || + _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D ) { firstMomentScaleFactor = 2.0; } #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { - _fluxNew[idx_cell] = _sol[idx_cell][0] * firstMomentScaleFactor; + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + _scalarFluxNew[idx_cell] = _sol[idx_cell][0] * firstMomentScaleFactor; } } -void PNSolver::FluxUpdate() -{ +void PNSolver::FluxUpdate() { // Loop over all spatial cells - if (_settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D) - { + if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || + _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D ) { FluxUpdatePseudo1D(); } - else - { + else { FluxUpdatePseudo2D(); } } -void PNSolver::FluxUpdatePseudo1D() -{ +void PNSolver::FluxUpdatePseudo1D() { #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) - { - Vector solL(_nSystem, 0.0); - Vector solR(_nSystem, 0.0); + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + Vector solL( _nSystem, 0.0 ); + Vector solR( _nSystem, 0.0 ); // Dirichlet cells stay at IC, farfield assumption - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) - continue; + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // Reset temporary variable psiNew - for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) - { + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { _solNew[idx_cell][idx_sys] = 0.0; } // Loop over all neighbor cells (edges) of cell j and compute numerical fluxes - for (unsigned idx_neighbor = 0; idx_neighbor < _neighbors[idx_cell].size(); idx_neighbor++) - { + for( unsigned idx_neighbor = 0; idx_neighbor < _neighbors[idx_cell].size(); idx_neighbor++ ) { // Compute flux contribution and store in psiNew to save memory - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_neighbor] == _nCells) - _solNew[idx_cell] += _g->Flux1D(_AzPlus, _AzMinus, _sol[idx_cell], _sol[idx_cell], _normals[idx_cell][idx_neighbor]); - else - { - unsigned int nbr_glob = _neighbors[idx_cell][idx_neighbor]; // global idx of neighbor cell - switch (_reconsOrder) - { - // first order solver - case 1: - _solNew[idx_cell] += _g->Flux1D( - _AzPlus, _AzMinus, _sol[idx_cell], _sol[_neighbors[idx_cell][idx_neighbor]], _normals[idx_cell][idx_neighbor]); - break; - // second order solver - case 2: - // left status of interface - for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) - { - solL[idx_sys] = - _sol[idx_cell][idx_sys] + - _limiter[idx_cell][idx_sys] * - (_solDx[idx_cell][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[idx_cell][0]) + - _solDy[idx_cell][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[idx_cell][1])); - solR[idx_sys] = - _sol[nbr_glob][idx_sys] + - _limiter[nbr_glob][idx_sys] * - (_solDx[nbr_glob][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[nbr_glob][0]) + - _solDy[nbr_glob][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[nbr_glob][1])); - } - // flux evaluation - _solNew[idx_cell] += _g->Flux1D(_AzPlus, _AzMinus, solL, solR, _normals[idx_cell][idx_neighbor]); - break; - // default: first order solver - default: - ErrorMessages::Error("Reconstruction order not supported.", CURRENT_FUNCTION); - break; + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_neighbor] == _nCells ) + _solNew[idx_cell] += _g->Flux1D( _AzPlus, _AzMinus, _sol[idx_cell], _sol[idx_cell], _normals[idx_cell][idx_neighbor] ); + else { + unsigned int nbr_glob = _neighbors[idx_cell][idx_neighbor]; // global idx of neighbor cell + switch( _reconsOrder ) { + // first order solver + case 1: + _solNew[idx_cell] += _g->Flux1D( + _AzPlus, _AzMinus, _sol[idx_cell], _sol[_neighbors[idx_cell][idx_neighbor]], _normals[idx_cell][idx_neighbor] ); + break; + // second order solver + case 2: + // left status of interface + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + solL[idx_sys] = + _sol[idx_cell][idx_sys] + + _limiter[idx_cell][idx_sys] * + ( _solDx[idx_cell][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[idx_cell][0] ) + + _solDy[idx_cell][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[idx_cell][1] ) ); + solR[idx_sys] = + _sol[nbr_glob][idx_sys] + + _limiter[nbr_glob][idx_sys] * + ( _solDx[nbr_glob][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[nbr_glob][0] ) + + _solDy[nbr_glob][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[nbr_glob][1] ) ); + } + // flux evaluation + _solNew[idx_cell] += _g->Flux1D( _AzPlus, _AzMinus, solL, solR, _normals[idx_cell][idx_neighbor] ); + break; + // default: first order solver + default: ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); break; } } } } } -void PNSolver::FluxUpdatePseudo2D() -{ +void PNSolver::FluxUpdatePseudo2D() { #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) - { - Vector solL(_nSystem, 0.0); - Vector solR(_nSystem, 0.0); + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + Vector solL( _nSystem, 0.0 ); + Vector solR( _nSystem, 0.0 ); // Dirichlet cells stay at IC, farfield assumption - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) - continue; + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // Reset temporary variable psiNew - for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) - { + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { _solNew[idx_cell][idx_sys] = 0.0; } // Loop over all neighbor cells (edges) of cell j and compute numerical fluxes - for (unsigned idx_neighbor = 0; idx_neighbor < _neighbors[idx_cell].size(); idx_neighbor++) - { + for( unsigned idx_neighbor = 0; idx_neighbor < _neighbors[idx_cell].size(); idx_neighbor++ ) { // Compute flux contribution and store in psiNew to save memory - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_neighbor] == _nCells) + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_neighbor] == _nCells ) _solNew[idx_cell] += _g->Flux( - _AxPlus, _AxMinus, _AyPlus, _AyMinus, _AzPlus, _AzMinus, _sol[idx_cell], _sol[idx_cell], _normals[idx_cell][idx_neighbor]); - else - { - unsigned int nbr_glob = _neighbors[idx_cell][idx_neighbor]; // global idx of neighbor cell - switch (_reconsOrder) - { - // first order solver - case 1: - _solNew[idx_cell] += _g->Flux(_AxPlus, - _AxMinus, - _AyPlus, - _AyMinus, - _AzPlus, - _AzMinus, - _sol[idx_cell], - _sol[_neighbors[idx_cell][idx_neighbor]], - _normals[idx_cell][idx_neighbor]); - break; - // second order solver - case 2: - // left status of interface - for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) - { - solL[idx_sys] = - _sol[idx_cell][idx_sys] + - _limiter[idx_cell][idx_sys] * - (_solDx[idx_cell][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[idx_cell][0]) + - _solDy[idx_cell][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[idx_cell][1])); - solR[idx_sys] = - _sol[nbr_glob][idx_sys] + - _limiter[nbr_glob][idx_sys] * - (_solDx[nbr_glob][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[nbr_glob][0]) + - _solDy[nbr_glob][idx_sys] * (_interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[nbr_glob][1])); - } - // flux evaluation - _solNew[idx_cell] += - _g->Flux(_AxPlus, _AxMinus, _AyPlus, _AyMinus, _AzPlus, _AzMinus, solL, solR, _normals[idx_cell][idx_neighbor]); - break; - // default: first order solver - default: - ErrorMessages::Error("Reconstruction order not supported.", CURRENT_FUNCTION); - break; + _AxPlus, _AxMinus, _AyPlus, _AyMinus, _AzPlus, _AzMinus, _sol[idx_cell], _sol[idx_cell], _normals[idx_cell][idx_neighbor] ); + else { + unsigned int nbr_glob = _neighbors[idx_cell][idx_neighbor]; // global idx of neighbor cell + switch( _reconsOrder ) { + // first order solver + case 1: + _solNew[idx_cell] += _g->Flux( _AxPlus, + _AxMinus, + _AyPlus, + _AyMinus, + _AzPlus, + _AzMinus, + _sol[idx_cell], + _sol[_neighbors[idx_cell][idx_neighbor]], + _normals[idx_cell][idx_neighbor] ); + break; + // second order solver + case 2: + // left status of interface + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + solL[idx_sys] = + _sol[idx_cell][idx_sys] + + _limiter[idx_cell][idx_sys] * + ( _solDx[idx_cell][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[idx_cell][0] ) + + _solDy[idx_cell][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[idx_cell][1] ) ); + solR[idx_sys] = + _sol[nbr_glob][idx_sys] + + _limiter[nbr_glob][idx_sys] * + ( _solDx[nbr_glob][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][0] - _cellMidPoints[nbr_glob][0] ) + + _solDy[nbr_glob][idx_sys] * ( _interfaceMidPoints[idx_cell][idx_neighbor][1] - _cellMidPoints[nbr_glob][1] ) ); + } + // flux evaluation + _solNew[idx_cell] += + _g->Flux( _AxPlus, _AxMinus, _AyPlus, _AyMinus, _AzPlus, _AzMinus, solL, solR, _normals[idx_cell][idx_neighbor] ); + break; + // default: first order solver + default: ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); break; } } } } } -void PNSolver::FVMUpdate(unsigned idx_energy) -{ +void PNSolver::FVMUpdate( unsigned idx_energy ) { // Loop over all spatial cells #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++) - { + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { // Dirichlet cells stay at IC, farfield assumption - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) - continue; + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // Flux update - for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) - { - _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] - (_dE / _areas[idx_cell]) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ - - _dE * _sol[idx_cell][idx_sys] * - (_sigmaS[idx_energy][idx_cell] * _scatterMatDiag[idx_sys] /* scattering influence */ - + _sigmaT[idx_energy][idx_cell]); + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ + - _dT * _sol[idx_cell][idx_sys] * + ( _sigmaS[idx_energy][idx_cell] * _scatterMatDiag[idx_sys] /* scattering influence */ + + _sigmaT[idx_energy][idx_cell] ); /* total xs influence */ } // Source Term - _solNew[idx_cell] += _dE * _Q[0][idx_cell]; + _solNew[idx_cell] += _dT * _Q[0][idx_cell]; } } -void PNSolver::ComputeSystemMatrices() -{ - int idx_col = 0; +void PNSolver::ComputeSystemMatrices() { + int idx_col = 0; unsigned idx_row = 0; // loop over columns of A - for (int idx_lOrder = 0; idx_lOrder <= int(_polyDegreeBasis); idx_lOrder++) - { // index of legendre polynom - for (int idx_kOrder = -idx_lOrder; idx_kOrder <= idx_lOrder; idx_kOrder++) - { // second index of legendre function - idx_row = unsigned(GlobalIndex(idx_lOrder, idx_kOrder)); + for( int idx_lOrder = 0; idx_lOrder <= int( _polyDegreeBasis ); idx_lOrder++ ) { // index of legendre polynom + for( int idx_kOrder = -idx_lOrder; idx_kOrder <= idx_lOrder; idx_kOrder++ ) { // second index of legendre function + idx_row = unsigned( GlobalIndex( idx_lOrder, idx_kOrder ) ); // flux matrix in direction x { - if (idx_kOrder != -1) - { + if( idx_kOrder != -1 ) { - if (CheckIndex(idx_lOrder - 1, kMinus(idx_kOrder))) - { - idx_col = GlobalIndex(idx_lOrder - 1, kMinus(idx_kOrder)); - _Ax(idx_row, unsigned(idx_col)) = 0.5 * CTilde(idx_lOrder - 1, std::abs(idx_kOrder) - 1); + if( CheckIndex( idx_lOrder - 1, kMinus( idx_kOrder ) ) ) { + idx_col = GlobalIndex( idx_lOrder - 1, kMinus( idx_kOrder ) ); + _Ax( idx_row, unsigned( idx_col ) ) = 0.5 * CTilde( idx_lOrder - 1, std::abs( idx_kOrder ) - 1 ); } - if (CheckIndex(idx_lOrder + 1, kMinus(idx_kOrder))) - { - idx_col = GlobalIndex(idx_lOrder + 1, kMinus(idx_kOrder)); - _Ax(idx_row, unsigned(idx_col)) = -0.5 * DTilde(idx_lOrder + 1, std::abs(idx_kOrder) - 1); + if( CheckIndex( idx_lOrder + 1, kMinus( idx_kOrder ) ) ) { + idx_col = GlobalIndex( idx_lOrder + 1, kMinus( idx_kOrder ) ); + _Ax( idx_row, unsigned( idx_col ) ) = -0.5 * DTilde( idx_lOrder + 1, std::abs( idx_kOrder ) - 1 ); } } - if (CheckIndex(idx_lOrder - 1, kPlus(idx_kOrder))) - { - idx_col = GlobalIndex(idx_lOrder - 1, kPlus(idx_kOrder)); - _Ax(idx_row, unsigned(idx_col)) = -0.5 * ETilde(idx_lOrder - 1, std::abs(idx_kOrder) + 1); + if( CheckIndex( idx_lOrder - 1, kPlus( idx_kOrder ) ) ) { + idx_col = GlobalIndex( idx_lOrder - 1, kPlus( idx_kOrder ) ); + _Ax( idx_row, unsigned( idx_col ) ) = -0.5 * ETilde( idx_lOrder - 1, std::abs( idx_kOrder ) + 1 ); } - if (CheckIndex(idx_lOrder + 1, kPlus(idx_kOrder))) - { - idx_col = GlobalIndex(idx_lOrder + 1, kPlus(idx_kOrder)); - _Ax(idx_row, unsigned(idx_col)) = 0.5 * FTilde(idx_lOrder + 1, std::abs(idx_kOrder) + 1); + if( CheckIndex( idx_lOrder + 1, kPlus( idx_kOrder ) ) ) { + idx_col = GlobalIndex( idx_lOrder + 1, kPlus( idx_kOrder ) ); + _Ax( idx_row, unsigned( idx_col ) ) = 0.5 * FTilde( idx_lOrder + 1, std::abs( idx_kOrder ) + 1 ); } } // flux matrix in direction y { - if (idx_kOrder != 1) - { - if (CheckIndex(idx_lOrder - 1, -kMinus(idx_kOrder))) - { - idx_col = GlobalIndex(idx_lOrder - 1, -kMinus(idx_kOrder)); - _Ay(idx_row, unsigned(idx_col)) = -0.5 * Sgn(idx_kOrder) * CTilde(idx_lOrder - 1, std::abs(idx_kOrder) - 1); + if( idx_kOrder != 1 ) { + if( CheckIndex( idx_lOrder - 1, -kMinus( idx_kOrder ) ) ) { + idx_col = GlobalIndex( idx_lOrder - 1, -kMinus( idx_kOrder ) ); + _Ay( idx_row, unsigned( idx_col ) ) = -0.5 * Sgn( idx_kOrder ) * CTilde( idx_lOrder - 1, std::abs( idx_kOrder ) - 1 ); } - if (CheckIndex(idx_lOrder + 1, -kMinus(idx_kOrder))) - { - idx_col = GlobalIndex(idx_lOrder + 1, -kMinus(idx_kOrder)); - _Ay(idx_row, unsigned(idx_col)) = 0.5 * Sgn(idx_kOrder) * DTilde(idx_lOrder + 1, std::abs(idx_kOrder) - 1); + if( CheckIndex( idx_lOrder + 1, -kMinus( idx_kOrder ) ) ) { + idx_col = GlobalIndex( idx_lOrder + 1, -kMinus( idx_kOrder ) ); + _Ay( idx_row, unsigned( idx_col ) ) = 0.5 * Sgn( idx_kOrder ) * DTilde( idx_lOrder + 1, std::abs( idx_kOrder ) - 1 ); } } - if (CheckIndex(idx_lOrder - 1, -kPlus(idx_kOrder))) - { - idx_col = GlobalIndex(idx_lOrder - 1, -kPlus(idx_kOrder)); - _Ay(idx_row, unsigned(idx_col)) = -0.5 * Sgn(idx_kOrder) * ETilde(idx_lOrder - 1, std::abs(idx_kOrder) + 1); + if( CheckIndex( idx_lOrder - 1, -kPlus( idx_kOrder ) ) ) { + idx_col = GlobalIndex( idx_lOrder - 1, -kPlus( idx_kOrder ) ); + _Ay( idx_row, unsigned( idx_col ) ) = -0.5 * Sgn( idx_kOrder ) * ETilde( idx_lOrder - 1, std::abs( idx_kOrder ) + 1 ); } - if (CheckIndex(idx_lOrder + 1, -kPlus(idx_kOrder))) - { - idx_col = GlobalIndex(idx_lOrder + 1, -kPlus(idx_kOrder)); - _Ay(idx_row, unsigned(idx_col)) = 0.5 * Sgn(idx_kOrder) * FTilde(idx_lOrder + 1, std::abs(idx_kOrder) + 1); + if( CheckIndex( idx_lOrder + 1, -kPlus( idx_kOrder ) ) ) { + idx_col = GlobalIndex( idx_lOrder + 1, -kPlus( idx_kOrder ) ); + _Ay( idx_row, unsigned( idx_col ) ) = 0.5 * Sgn( idx_kOrder ) * FTilde( idx_lOrder + 1, std::abs( idx_kOrder ) + 1 ); } } // flux matrix in direction z { - if (CheckIndex(idx_lOrder - 1, idx_kOrder)) - { - idx_col = GlobalIndex(idx_lOrder - 1, idx_kOrder); - _Az(idx_row, unsigned(idx_col)) = AParam(idx_lOrder - 1, idx_kOrder); + if( CheckIndex( idx_lOrder - 1, idx_kOrder ) ) { + idx_col = GlobalIndex( idx_lOrder - 1, idx_kOrder ); + _Az( idx_row, unsigned( idx_col ) ) = AParam( idx_lOrder - 1, idx_kOrder ); } - if (CheckIndex(idx_lOrder + 1, idx_kOrder)) - { - idx_col = GlobalIndex(idx_lOrder + 1, idx_kOrder); - _Az(idx_row, unsigned(idx_col)) = BParam(idx_lOrder + 1, idx_kOrder); + if( CheckIndex( idx_lOrder + 1, idx_kOrder ) ) { + idx_col = GlobalIndex( idx_lOrder + 1, idx_kOrder ); + _Az( idx_row, unsigned( idx_col ) ) = BParam( idx_lOrder + 1, idx_kOrder ); } } } } } -void PNSolver::ComputeFluxComponents() -{ - Vector eigenValues(_nSystem, 0); - Vector eigenValuesX(_nSystem, 0); - Vector eigenValuesY(_nSystem, 0); +void PNSolver::ComputeFluxComponents() { + Vector eigenValues( _nSystem, 0 ); + Vector eigenValuesX( _nSystem, 0 ); + Vector eigenValuesY( _nSystem, 0 ); - MatrixCol eigenVectors(_nSystem, _nSystem, 0); // ColumnMatrix for _AxPlus * eigenVectors Multiplication via SIMD + MatrixCol eigenVectors( _nSystem, _nSystem, 0 ); // ColumnMatrix for _AxPlus * eigenVectors Multiplication via SIMD // --- For x Direction --- { - blaze::eigen(_Ax, eigenValues, eigenVectors); // Compute Eigenvalues and Eigenvectors + blaze::eigen( _Ax, eigenValues, eigenVectors ); // Compute Eigenvalues and Eigenvectors // Compute Flux Matrices A+ and A- - for (unsigned idx_ij = 0; idx_ij < _nSystem; idx_ij++) - { - if (eigenValues[idx_ij] >= 0) - { - _AxPlus(idx_ij, idx_ij) = eigenValues[idx_ij]; // positive part of Diagonal Matrix stored in _AxPlus - _AxAbs(idx_ij, idx_ij) = eigenValues[idx_ij]; + for( unsigned idx_ij = 0; idx_ij < _nSystem; idx_ij++ ) { + if( eigenValues[idx_ij] >= 0 ) { + _AxPlus( idx_ij, idx_ij ) = eigenValues[idx_ij]; // positive part of Diagonal Matrix stored in _AxPlus + _AxAbs( idx_ij, idx_ij ) = eigenValues[idx_ij]; } - else - { - _AxMinus(idx_ij, idx_ij) = eigenValues[idx_ij]; // negative part of Diagonal Matrix stored in _AxMinus - _AxAbs(idx_ij, idx_ij) = -eigenValues[idx_ij]; + else { + _AxMinus( idx_ij, idx_ij ) = eigenValues[idx_ij]; // negative part of Diagonal Matrix stored in _AxMinus + _AxAbs( idx_ij, idx_ij ) = -eigenValues[idx_ij]; } } - _AxPlus = eigenVectors * _AxPlus; // col*row minimum performance + _AxPlus = eigenVectors * _AxPlus; // col*row minimum performance _AxMinus = eigenVectors * _AxMinus; - _AxAbs = eigenVectors * _AxAbs; - blaze::transpose(eigenVectors); - _AxPlus = _AxPlus * eigenVectors; // row*col maximum performance + _AxAbs = eigenVectors * _AxAbs; + blaze::transpose( eigenVectors ); + _AxPlus = _AxPlus * eigenVectors; // row*col maximum performance _AxMinus = _AxMinus * eigenVectors; - _AxAbs = _AxAbs * eigenVectors; + _AxAbs = _AxAbs * eigenVectors; // eigenValuesX = eigenValues; } // --- For y Direction ------- { - blaze::eigen(_Ay, eigenValues, eigenVectors); // Compute Eigenvalues and Eigenvectors + blaze::eigen( _Ay, eigenValues, eigenVectors ); // Compute Eigenvalues and Eigenvectors // Compute Flux Matrices A+ and A- - for (unsigned idx_ij = 0; idx_ij < _nSystem; idx_ij++) - { - if (eigenValues[idx_ij] >= 0) - { - _AyPlus(idx_ij, idx_ij) = eigenValues[idx_ij]; // positive part of Diagonal Matrix stored in _AxPlus - _AyAbs(idx_ij, idx_ij) = eigenValues[idx_ij]; + for( unsigned idx_ij = 0; idx_ij < _nSystem; idx_ij++ ) { + if( eigenValues[idx_ij] >= 0 ) { + _AyPlus( idx_ij, idx_ij ) = eigenValues[idx_ij]; // positive part of Diagonal Matrix stored in _AxPlus + _AyAbs( idx_ij, idx_ij ) = eigenValues[idx_ij]; } - else - { - _AyMinus(idx_ij, idx_ij) = eigenValues[idx_ij]; // negative part of Diagonal Matrix stored in _AxMinus - _AyAbs(idx_ij, idx_ij) = -eigenValues[idx_ij]; + else { + _AyMinus( idx_ij, idx_ij ) = eigenValues[idx_ij]; // negative part of Diagonal Matrix stored in _AxMinus + _AyAbs( idx_ij, idx_ij ) = -eigenValues[idx_ij]; } } - _AyPlus = eigenVectors * _AyPlus; + _AyPlus = eigenVectors * _AyPlus; _AyMinus = eigenVectors * _AyMinus; - _AyAbs = eigenVectors * _AyAbs; - blaze::transpose(eigenVectors); - _AyPlus = _AyPlus * eigenVectors; + _AyAbs = eigenVectors * _AyAbs; + blaze::transpose( eigenVectors ); + _AyPlus = _AyPlus * eigenVectors; _AyMinus = _AyMinus * eigenVectors; - _AyAbs = _AyAbs * eigenVectors; + _AyAbs = _AyAbs * eigenVectors; // eigenValuesY = eigenValues; } // --- For z Direction ------- { - blaze::eigen(_Az, eigenValues, eigenVectors); // Compute Eigenvalues and Eigenvectors + blaze::eigen( _Az, eigenValues, eigenVectors ); // Compute Eigenvalues and Eigenvectors // Compute Flux Matrices A+ and A- - for (unsigned idx_ij = 0; idx_ij < _nSystem; idx_ij++) - { - if (eigenValues[idx_ij] >= 0) - { - _AzPlus(idx_ij, idx_ij) = eigenValues[idx_ij]; // positive part of Diagonal Matrix stored in _AxPlus - _AzAbs(idx_ij, idx_ij) = eigenValues[idx_ij]; + for( unsigned idx_ij = 0; idx_ij < _nSystem; idx_ij++ ) { + if( eigenValues[idx_ij] >= 0 ) { + _AzPlus( idx_ij, idx_ij ) = eigenValues[idx_ij]; // positive part of Diagonal Matrix stored in _AxPlus + _AzAbs( idx_ij, idx_ij ) = eigenValues[idx_ij]; } - else - { - _AzMinus(idx_ij, idx_ij) = eigenValues[idx_ij]; // negative part of Diagonal Matrix stored in _AxMinus - _AzAbs(idx_ij, idx_ij) = -eigenValues[idx_ij]; + else { + _AzMinus( idx_ij, idx_ij ) = eigenValues[idx_ij]; // negative part of Diagonal Matrix stored in _AxMinus + _AzAbs( idx_ij, idx_ij ) = -eigenValues[idx_ij]; } } - _AzPlus = eigenVectors * _AzPlus; + _AzPlus = eigenVectors * _AzPlus; _AzMinus = eigenVectors * _AzMinus; - _AzAbs = eigenVectors * _AzAbs; - blaze::transpose(eigenVectors); - _AzPlus = _AzPlus * eigenVectors; + _AzAbs = eigenVectors * _AzAbs; + blaze::transpose( eigenVectors ); + _AzPlus = _AzPlus * eigenVectors; _AzMinus = _AzMinus * eigenVectors; - _AzAbs = _AzAbs * eigenVectors; + _AzAbs = _AzAbs * eigenVectors; } // Compute Spectral Radius @@ -465,286 +405,209 @@ void PNSolver::ComputeFluxComponents() // std::cout << "Spectral Radius combined " << blaze::max( blaze::abs( eigenValues + eigenValuesX + eigenValuesY ) ) << "\n"; } -void PNSolver::ComputeScatterMatrix() -{ +void PNSolver::ComputeScatterMatrix() { // --- Isotropic --- _scatterMatDiag[0] = -1; - for (unsigned idx_diag = 1; idx_diag < _nSystem; idx_diag++) - { + for( unsigned idx_diag = 1; idx_diag < _nSystem; idx_diag++ ) { _scatterMatDiag[idx_diag] = 0.0; } } -double PNSolver::LegendrePoly(double x, int l) -{ // Legacy. TO BE DELETED +double PNSolver::LegendrePoly( double x, int l ) { // Legacy. TO BE DELETED // Pre computed low order polynomials for faster computation - switch (l) - { - case 0: - return 1; - case 1: - return x; - case 2: // 0.5*(3*x*x - 1) - return 1.5 * x * x - 0.5; - case 3: // 0.5* (5*x*x*x -3 *x) - return 2.5 * x * x * x - 1.5 * x; - case 4: // 1/8*(35x^4-30x^2 + 3) - return 4.375 * x * x * x * x - 3.75 * x * x + 0.375; - case 5: // 1/8(63x^5-70x^3 + 15*x ) - return 7.875 * x * x * x * x * x - 8.75 * x * x * x + 1.875 * x; - case 6: // 1/16(231x^6-315x^4+105x^2-5) - return 14.4375 * x * x * x * x * x * x - 19.6875 * x * x * x * x + 6.5625 * x * x - 3.125; - default: - ErrorMessages::Error("Legendre Polynomials only implemented up to order 6", CURRENT_FUNCTION); - return 0; + switch( l ) { + case 0: return 1; + case 1: return x; + case 2: // 0.5*(3*x*x - 1) + return 1.5 * x * x - 0.5; + case 3: // 0.5* (5*x*x*x -3 *x) + return 2.5 * x * x * x - 1.5 * x; + case 4: // 1/8*(35x^4-30x^2 + 3) + return 4.375 * x * x * x * x - 3.75 * x * x + 0.375; + case 5: // 1/8(63x^5-70x^3 + 15*x ) + return 7.875 * x * x * x * x * x - 8.75 * x * x * x + 1.875 * x; + case 6: // 1/16(231x^6-315x^4+105x^2-5) + return 14.4375 * x * x * x * x * x * x - 19.6875 * x * x * x * x + 6.5625 * x * x - 3.125; + default: ErrorMessages::Error( "Legendre Polynomials only implemented up to order 6", CURRENT_FUNCTION ); return 0; } } -void PNSolver::PrepareVolumeOutput() -{ +void PNSolver::PrepareVolumeOutput() { unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); - _outputFieldNames.resize(nGroups); - _outputFields.resize(nGroups); + _outputFieldNames.resize( nGroups ); + _outputFields.resize( nGroups ); // Prepare all OutputGroups ==> Specified in option VOLUME_OUTPUT - for (unsigned idx_group = 0; idx_group < nGroups; idx_group++) - { + for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch (_settings->GetVolumeOutput()[idx_group]) - { - case MINIMAL: - // Currently only one entry ==> rad flux - _outputFields[idx_group].resize(1); - _outputFieldNames[idx_group].resize(1); - - _outputFields[idx_group][0].resize(_nCells); - _outputFieldNames[idx_group][0] = "radiation flux density"; - break; - - case MOMENTS: - // As many entries as there are moments in the system - _outputFields[idx_group].resize(_nSystem); - _outputFieldNames[idx_group].resize(_nSystem); - - for (int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++) - { - for (int idx_k = -idx_l; idx_k <= idx_l; idx_k++) - { - _outputFields[idx_group][GlobalIndex(idx_l, idx_k)].resize(_nCells); + switch( _settings->GetVolumeOutput()[idx_group] ) { + case MINIMAL: + // Currently only one entry ==> rad flux + _outputFields[idx_group].resize( 1 ); + _outputFieldNames[idx_group].resize( 1 ); + + _outputFields[idx_group][0].resize( _nCells ); + _outputFieldNames[idx_group][0] = "radiation flux density"; + break; + + case MOMENTS: + // As many entries as there are moments in the system + _outputFields[idx_group].resize( _nSystem ); + _outputFieldNames[idx_group].resize( _nSystem ); + + for( int idx_l = 0; idx_l <= (int)_polyDegreeBasis; idx_l++ ) { + for( int idx_k = -idx_l; idx_k <= idx_l; idx_k++ ) { + _outputFields[idx_group][GlobalIndex( idx_l, idx_k )].resize( _nCells ); - _outputFieldNames[idx_group][GlobalIndex(idx_l, idx_k)] = - std::string("u_" + std::to_string(idx_l) + "^" + std::to_string(idx_k)); + _outputFieldNames[idx_group][GlobalIndex( idx_l, idx_k )] = + std::string( "u_" + std::to_string( idx_l ) + "^" + std::to_string( idx_k ) ); + } } - } - break; - case ANALYTIC: - // one entry per cell - _outputFields[idx_group].resize(1); - _outputFieldNames[idx_group].resize(1); - _outputFields[idx_group][0].resize(_nCells); - _outputFieldNames[idx_group][0] = std::string("analytic radiation flux density"); - break; - default: - ErrorMessages::Error("Volume Output Group not defined for PN Solver!", CURRENT_FUNCTION); - break; + break; + case ANALYTIC: + // one entry per cell + _outputFields[idx_group].resize( 1 ); + _outputFieldNames[idx_group].resize( 1 ); + _outputFields[idx_group][0].resize( _nCells ); + _outputFieldNames[idx_group][0] = std::string( "analytic radiation flux density" ); + break; + default: ErrorMessages::Error( "Volume Output Group not defined for PN Solver!", CURRENT_FUNCTION ); break; } } } -void PNSolver::WriteVolumeOutput(unsigned idx_iter) -{ +void PNSolver::WriteVolumeOutput( unsigned idx_iter ) { unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); - if ((_settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0) || - (idx_iter == _nEnergies - 1) /* need sol at last iteration */) - { - for (unsigned idx_group = 0; idx_group < nGroups; idx_group++) - { - switch (_settings->GetVolumeOutput()[idx_group]) - { - case MINIMAL: - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { - _outputFields[idx_group][0][idx_cell] = _fluxNew[idx_cell]; - } - break; - case MOMENTS: - for (unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++) - { - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { - _outputFields[idx_group][idx_sys][idx_cell] = _sol[idx_cell][idx_sys]; + if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || + ( idx_iter == _nEnergies - 1 ) /* need sol at last iteration */ ) { + for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { + switch( _settings->GetVolumeOutput()[idx_group] ) { + case MINIMAL: + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + _outputFields[idx_group][0][idx_cell] = _scalarFluxNew[idx_cell]; } - } - break; - case ANALYTIC: - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { + break; + case MOMENTS: + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + _outputFields[idx_group][idx_sys][idx_cell] = _sol[idx_cell][idx_sys]; + } + } + break; + case ANALYTIC: + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - double time = idx_iter * _dE; + double time = idx_iter * _dT; - _outputFields[idx_group][0][idx_cell] = _outputFields[idx_group][0][idx_cell] = _problem->GetAnalyticalSolution( - _mesh->GetCellMidPoints()[idx_cell][0], _mesh->GetCellMidPoints()[idx_cell][1], time, _sigmaS[idx_iter][idx_cell]); - } - break; + _outputFields[idx_group][0][idx_cell] = _outputFields[idx_group][0][idx_cell] = _problem->GetAnalyticalSolution( + _mesh->GetCellMidPoints()[idx_cell][0], _mesh->GetCellMidPoints()[idx_cell][1], time, _sigmaS[idx_iter][idx_cell] ); + } + break; - default: - ErrorMessages::Error("Volume Output Group not defined for PN Solver!", CURRENT_FUNCTION); - break; + default: ErrorMessages::Error( "Volume Output Group not defined for PN Solver!", CURRENT_FUNCTION ); break; } } } } -void PNSolver::CleanFluxMatrices() -{ - for (unsigned idx_row = 0; idx_row < _nSystem; idx_row++) - { - for (unsigned idx_col = 0; idx_col < _nSystem; idx_col++) - { - if (std::abs(_AxAbs(idx_row, idx_col)) < 0.00000000001) - _AxAbs(idx_row, idx_col) = 0.0; - if (std::abs(_AxPlus(idx_row, idx_col)) < 0.00000000001) - _AxPlus(idx_row, idx_col) = 0.0; - if (std::abs(_AxMinus(idx_row, idx_col)) < 0.00000000001) - _AxMinus(idx_row, idx_col) = 0.0; - - if (std::abs(_AyAbs(idx_row, idx_col)) < 0.00000000001) - _AyAbs(idx_row, idx_col) = 0.0; - if (std::abs(_AyPlus(idx_row, idx_col)) < 0.00000000001) - _AyPlus(idx_row, idx_col) = 0.0; - if (std::abs(_AyMinus(idx_row, idx_col)) < 0.00000000001) - _AyMinus(idx_row, idx_col) = 0.0; - - if (std::abs(_AzAbs(idx_row, idx_col)) < 0.00000000001) - _AzAbs(idx_row, idx_col) = 0.0; - if (std::abs(_AzPlus(idx_row, idx_col)) < 0.00000000001) - _AzPlus(idx_row, idx_col) = 0.0; - if (std::abs(_AzMinus(idx_row, idx_col)) < 0.00000000001) - _AzMinus(idx_row, idx_col) = 0.0; +void PNSolver::CleanFluxMatrices() { + for( unsigned idx_row = 0; idx_row < _nSystem; idx_row++ ) { + for( unsigned idx_col = 0; idx_col < _nSystem; idx_col++ ) { + if( std::abs( _AxAbs( idx_row, idx_col ) ) < 0.00000000001 ) _AxAbs( idx_row, idx_col ) = 0.0; + if( std::abs( _AxPlus( idx_row, idx_col ) ) < 0.00000000001 ) _AxPlus( idx_row, idx_col ) = 0.0; + if( std::abs( _AxMinus( idx_row, idx_col ) ) < 0.00000000001 ) _AxMinus( idx_row, idx_col ) = 0.0; + + if( std::abs( _AyAbs( idx_row, idx_col ) ) < 0.00000000001 ) _AyAbs( idx_row, idx_col ) = 0.0; + if( std::abs( _AyPlus( idx_row, idx_col ) ) < 0.00000000001 ) _AyPlus( idx_row, idx_col ) = 0.0; + if( std::abs( _AyMinus( idx_row, idx_col ) ) < 0.00000000001 ) _AyMinus( idx_row, idx_col ) = 0.0; + + if( std::abs( _AzAbs( idx_row, idx_col ) ) < 0.00000000001 ) _AzAbs( idx_row, idx_col ) = 0.0; + if( std::abs( _AzPlus( idx_row, idx_col ) ) < 0.00000000001 ) _AzPlus( idx_row, idx_col ) = 0.0; + if( std::abs( _AzMinus( idx_row, idx_col ) ) < 0.00000000001 ) _AzMinus( idx_row, idx_col ) = 0.0; } } } -double PNSolver::CTilde(int l, int k) const -{ - if (k < 0) - return 0.0; - if (k == 0) - return std::sqrt(2) * CParam(l, k); +double PNSolver::CTilde( int l, int k ) const { + if( k < 0 ) return 0.0; + if( k == 0 ) + return std::sqrt( 2 ) * CParam( l, k ); else - return CParam(l, k); + return CParam( l, k ); } -double PNSolver::DTilde(int l, int k) const -{ - if (k < 0) - return 0.0; - if (k == 0) - return std::sqrt(2) * DParam(l, k); +double PNSolver::DTilde( int l, int k ) const { + if( k < 0 ) return 0.0; + if( k == 0 ) + return std::sqrt( 2 ) * DParam( l, k ); else - return DParam(l, k); + return DParam( l, k ); } -double PNSolver::ETilde(int l, int k) const -{ - if (k == 1) - return std::sqrt(2) * EParam(l, k); +double PNSolver::ETilde( int l, int k ) const { + if( k == 1 ) + return std::sqrt( 2 ) * EParam( l, k ); else - return EParam(l, k); + return EParam( l, k ); } -double PNSolver::FTilde(int l, int k) const -{ - if (k == 1) - return std::sqrt(2) * FParam(l, k); +double PNSolver::FTilde( int l, int k ) const { + if( k == 1 ) + return std::sqrt( 2 ) * FParam( l, k ); else - return FParam(l, k); + return FParam( l, k ); } -double PNSolver::AParam(int l, int k) const -{ - return std::sqrt(double((l - k + 1) * (l + k + 1)) / double((2 * l + 3) * (2 * l + 1))); +double PNSolver::AParam( int l, int k ) const { + return std::sqrt( double( ( l - k + 1 ) * ( l + k + 1 ) ) / double( ( 2 * l + 3 ) * ( 2 * l + 1 ) ) ); } -double PNSolver::BParam(int l, int k) const { return std::sqrt(double((l - k) * (l + k)) / double(((2 * l + 1) * (2 * l - 1)))); } +double PNSolver::BParam( int l, int k ) const { return std::sqrt( double( ( l - k ) * ( l + k ) ) / double( ( ( 2 * l + 1 ) * ( 2 * l - 1 ) ) ) ); } -double PNSolver::CParam(int l, int k) const -{ - return std::sqrt(double((l + k + 1) * (l + k + 2)) / double(((2 * l + 3) * (2 * l + 1)))); +double PNSolver::CParam( int l, int k ) const { + return std::sqrt( double( ( l + k + 1 ) * ( l + k + 2 ) ) / double( ( ( 2 * l + 3 ) * ( 2 * l + 1 ) ) ) ); } -double PNSolver::DParam(int l, int k) const -{ - return std::sqrt(double((l - k) * (l - k - 1)) / double(((2 * l + 1) * (2 * l - 1)))); +double PNSolver::DParam( int l, int k ) const { + return std::sqrt( double( ( l - k ) * ( l - k - 1 ) ) / double( ( ( 2 * l + 1 ) * ( 2 * l - 1 ) ) ) ); } -double PNSolver::EParam(int l, int k) const -{ - return std::sqrt(double((l - k + 1) * (l - k + 2)) / double(((2 * l + 3) * (2 * l + 1)))); +double PNSolver::EParam( int l, int k ) const { + return std::sqrt( double( ( l - k + 1 ) * ( l - k + 2 ) ) / double( ( ( 2 * l + 3 ) * ( 2 * l + 1 ) ) ) ); } -double PNSolver::FParam(int l, int k) const { return std::sqrt(double((l + k) * (l + k - 1)) / double((2 * l + 1) * (2 * l - 1))); } +double PNSolver::FParam( int l, int k ) const { return std::sqrt( double( ( l + k ) * ( l + k - 1 ) ) / double( ( 2 * l + 1 ) * ( 2 * l - 1 ) ) ); } -int PNSolver::kPlus(int k) const { return k + Sgn(k); } +int PNSolver::kPlus( int k ) const { return k + Sgn( k ); } -int PNSolver::kMinus(int k) const { return k - Sgn(k); } +int PNSolver::kMinus( int k ) const { return k - Sgn( k ); } -int PNSolver::GlobalIndex(int l, int k) const -{ - int numIndicesPrevLevel = l * l; // number of previous indices untill level l-1 - int prevIndicesThisLevel = k + l; // number of previous indices in current level +int PNSolver::GlobalIndex( int l, int k ) const { + int numIndicesPrevLevel = l * l; // number of previous indices untill level l-1 + int prevIndicesThisLevel = k + l; // number of previous indices in current level return numIndicesPrevLevel + prevIndicesThisLevel; } -bool PNSolver::CheckIndex(int l, int k) const -{ - if (l >= 0 && l <= int(_polyDegreeBasis)) - { - if (k >= -l && k <= l) - return true; +bool PNSolver::CheckIndex( int l, int k ) const { + if( l >= 0 && l <= int( _polyDegreeBasis ) ) { + if( k >= -l && k <= l ) return true; } return false; } -int PNSolver::Sgn(int k) const -{ - if (k >= 0) +int PNSolver::Sgn( int k ) const { + if( k >= 0 ) return 1; else return -1; } -double PNSolver::GetCurrentOutflow() -{ - - return 0.0; -} - -double PNSolver::GetTotalOutflow(unsigned iteration) -{ - if (iteration == 0) - { - _timeDependentOutflow[iteration] = GetCurrentOutflow() * _dE; - } - else - { - _timeDependentOutflow[iteration] = _timeDependentOutflow[iteration - 1] + GetCurrentOutflow() * _dE; - } - return _timeDependentOutflow[iteration]; -} - -double PNSolver::GetMaxOutflow() { return 0; } - -double PNSolver::GetFinalTimeAbsorption() { return 0; } - -double PNSolver::GetTotalAbsorption() { return 0; } - -double PNSolver::GetMaxAbsorption() { return 0; } +double PNSolver::GetCurrentOutflow() { return 0.0; } double PNSolver::GetTotalAbsorptionCenter() { return 0; } diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index b00acc40..2056f328 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -16,143 +16,103 @@ #include "spdlog/spdlog.h" -SNSolver::SNSolver(Config *settings) : SolverBase(settings) -{ +SNSolver::SNSolver( Config* settings ) : SolverBase( settings ) { _quadPoints = _quadrature->GetPoints(); - _weights = _quadrature->GetWeights(); + _weights = _quadrature->GetWeights(); - ScatteringKernel *k = ScatteringKernel::CreateScatteringKernel( - settings->GetKernelName(), _quadrature); - _scatteringKernel = k->GetScatteringKernel(); + ScatteringKernel* k = ScatteringKernel::CreateScatteringKernel( settings->GetKernelName(), _quadrature ); + _scatteringKernel = k->GetScatteringKernel(); delete k; // Limiter variables - _solDx = VectorVector(_nCells, Vector(_nq, 0.0)); - _solDy = VectorVector(_nCells, Vector(_nq, 0.0)); - _limiter = VectorVector(_nCells, Vector(_nq, 0.0)); + _solDx = VectorVector( _nCells, Vector( _nq, 0.0 ) ); + _solDy = VectorVector( _nCells, Vector( _nq, 0.0 ) ); + _limiter = VectorVector( _nCells, Vector( _nq, 0.0 ) ); } -void SNSolver::IterPreprocessing(unsigned /*idx_iter*/) -{ +void SNSolver::IterPreprocessing( unsigned /*idx_iter*/ ) { // Slope Limiter computation - if (_reconsOrder > 1) - { - _mesh->ComputeSlopes(_nq, _solDx, _solDy, _sol); - _mesh->ComputeLimiter(_nq, _solDx, _solDy, _sol, _limiter); + if( _reconsOrder > 1 ) { + _mesh->ComputeSlopes( _nq, _solDx, _solDy, _sol ); + _mesh->ComputeLimiter( _nq, _solDx, _solDy, _sol, _limiter ); } } -void SNSolver::IterPostprocessing(unsigned /*idx_iter*/) -{ - // --- Update Solution --- - //_sol = _solNew; +void SNSolver::IterPostprocessing( unsigned idx_iter ) { // --- Compute Flux for solution and Screen Output --- ComputeRadFlux(); + + _timeDependentOutflow[idx_iter] = GetCurrentOutflow(); + _timeDependentAbsorption[idx_iter] = GetCurrentAbsorption( idx_iter ); } -void SNSolver::ComputeRadFlux() -{ +void SNSolver::ComputeRadFlux() { double firstMomentScaleFactor = 4 * M_PI; - if (_settings->GetProblemName() == PROBLEM_Aircavity1D || - _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D || - _settings->GetProblemName() == PROBLEM_Meltingcube1D) - { + if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || + _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D ) { firstMomentScaleFactor = 2.0; } #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { - _fluxNew[idx_cell] = - blaze::dot(_sol[idx_cell], _weights) / firstMomentScaleFactor; + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + _scalarFluxNew[idx_cell] = blaze::dot( _sol[idx_cell], _weights ) / firstMomentScaleFactor; } } -void SNSolver::FluxUpdate() -{ - if (_settings->GetProblemName() == PROBLEM_Aircavity1D || - _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D || - _settings->GetProblemName() == PROBLEM_Meltingcube1D) - { +void SNSolver::FluxUpdate() { + if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || + _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D ) { FluxUpdatePseudo1D(); } - else - { + else { FluxUpdatePseudo2D(); } } -void SNSolver::FluxUpdatePseudo1D() -{ +void SNSolver::FluxUpdatePseudo1D() { // Loop over all spatial cells #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { double solL; double solR; // Dirichlet cells stay at IC, farfield assumption - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) - continue; + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // Loop over all ordinates - for (unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad) - { + for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { // Reset temporary variable _solNew[idx_cell][idx_quad] = 0.0; // Loop over all neighbor cells (edges) of cell j and compute numerical // fluxes - for (unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); - ++idx_nbr) - { + for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { // store flux contribution on psiNew_sigmaS to save memory - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && - _neighbors[idx_cell][idx_nbr] == _nCells) + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) _solNew[idx_cell][idx_quad] += - _g->Flux1D(_quadPoints[idx_quad], _sol[idx_cell][idx_quad], - _sol[idx_cell][idx_quad], _normals[idx_cell][idx_nbr]); - else - { - unsigned int nbr_glob = - _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell - - switch (_reconsOrder) - { - // first order solver - case 1: - _solNew[idx_cell][idx_quad] += _g->Flux1D( - _quadPoints[idx_quad], _sol[idx_cell][idx_quad], - _sol[nbr_glob][idx_quad], _normals[idx_cell][idx_nbr]); - break; - // second order solver - case 2: - // left status of interface - solL = _sol[idx_cell][idx_quad] + - _limiter[idx_cell][idx_quad] * - (_solDx[idx_cell][idx_quad] * - (_interfaceMidPoints[idx_cell][idx_nbr][0] - - _cellMidPoints[idx_cell][0]) + - _solDy[idx_cell][idx_quad] * - (_interfaceMidPoints[idx_cell][idx_nbr][1] - - _cellMidPoints[idx_cell][1])); - solR = _sol[nbr_glob][idx_quad] + - _limiter[nbr_glob][idx_quad] * - (_solDx[nbr_glob][idx_quad] * - (_interfaceMidPoints[idx_cell][idx_nbr][0] - - _cellMidPoints[nbr_glob][0]) + - _solDy[nbr_glob][idx_quad] * - (_interfaceMidPoints[idx_cell][idx_nbr][1] - - _cellMidPoints[nbr_glob][1])); - // flux evaluation - _solNew[idx_cell][idx_quad] += - _g->Flux1D(_quadPoints[idx_quad], solL, solR, - _normals[idx_cell][idx_nbr]); - break; - // higher order solver - default: - ErrorMessages::Error("Reconstruction order not supported.", - CURRENT_FUNCTION); - break; + _g->Flux1D( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _sol[idx_cell][idx_quad], _normals[idx_cell][idx_nbr] ); + else { + unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell + + switch( _reconsOrder ) { + // first order solver + case 1: + _solNew[idx_cell][idx_quad] += + _g->Flux1D( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _sol[nbr_glob][idx_quad], _normals[idx_cell][idx_nbr] ); + break; + // second order solver + case 2: + // left status of interface + solL = _sol[idx_cell][idx_quad] + + _limiter[idx_cell][idx_quad] * + ( _solDx[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + + _solDy[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); + solR = _sol[nbr_glob][idx_quad] + + _limiter[nbr_glob][idx_quad] * + ( _solDx[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + + _solDy[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); + // flux evaluation + _solNew[idx_cell][idx_quad] += _g->Flux1D( _quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr] ); + break; + // higher order solver + default: ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); break; } } } @@ -160,78 +120,53 @@ void SNSolver::FluxUpdatePseudo1D() } } -void SNSolver::FluxUpdatePseudo2D() -{ +void SNSolver::FluxUpdatePseudo2D() { // Loop over all spatial cells #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { double solL; double solR; // Dirichlet cells stay at IC, farfield assumption - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) - continue; + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // Loop over all ordinates - for (unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad) - { + for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { // Reset temporary variable _solNew[idx_cell][idx_quad] = 0.0; // Loop over all neighbor cells (edges) of cell j and compute numerical // fluxes - for (unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); - ++idx_nbr) - { + for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { // store flux contribution on psiNew_sigmaS to save memory - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && - _neighbors[idx_cell][idx_nbr] == _nCells) - { - _solNew[idx_cell][idx_quad] += _g->Flux( - _quadPoints[idx_quad], _sol[idx_cell][idx_quad], - _problem->GetGhostCellValue(idx_cell, _sol[idx_cell])[idx_quad], - _normals[idx_cell][idx_nbr]); + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { + _solNew[idx_cell][idx_quad] += _g->Flux( _quadPoints[idx_quad], + _sol[idx_cell][idx_quad], + _problem->GetGhostCellValue( idx_cell, _sol[idx_cell] )[idx_quad], + _normals[idx_cell][idx_nbr] ); } - else - { - unsigned int nbr_glob = - _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell - - switch (_reconsOrder) - { - // first order solver - case 1: - _solNew[idx_cell][idx_quad] += _g->Flux( - _quadPoints[idx_quad], _sol[idx_cell][idx_quad], - _sol[nbr_glob][idx_quad], _normals[idx_cell][idx_nbr]); - break; - // second order solver - case 2: - // left status of interface - solL = _sol[idx_cell][idx_quad] + - _limiter[idx_cell][idx_quad] * - (_solDx[idx_cell][idx_quad] * - (_interfaceMidPoints[idx_cell][idx_nbr][0] - - _cellMidPoints[idx_cell][0]) + - _solDy[idx_cell][idx_quad] * - (_interfaceMidPoints[idx_cell][idx_nbr][1] - - _cellMidPoints[idx_cell][1])); - solR = _sol[nbr_glob][idx_quad] + - _limiter[nbr_glob][idx_quad] * - (_solDx[nbr_glob][idx_quad] * - (_interfaceMidPoints[idx_cell][idx_nbr][0] - - _cellMidPoints[nbr_glob][0]) + - _solDy[nbr_glob][idx_quad] * - (_interfaceMidPoints[idx_cell][idx_nbr][1] - - _cellMidPoints[nbr_glob][1])); - - // flux evaluation - _solNew[idx_cell][idx_quad] += - _g->Flux(_quadPoints[idx_quad], solL, solR, - _normals[idx_cell][idx_nbr]); - break; - default: - ErrorMessages::Error("Reconstruction order not supported.", - CURRENT_FUNCTION); - break; + else { + unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell + + switch( _reconsOrder ) { + // first order solver + case 1: + _solNew[idx_cell][idx_quad] += + _g->Flux( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _sol[nbr_glob][idx_quad], _normals[idx_cell][idx_nbr] ); + break; + // second order solver + case 2: + // left status of interface + solL = _sol[idx_cell][idx_quad] + + _limiter[idx_cell][idx_quad] * + ( _solDx[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + + _solDy[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); + solR = _sol[nbr_glob][idx_quad] + + _limiter[nbr_glob][idx_quad] * + ( _solDx[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + + _solDy[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); + + // flux evaluation + _solNew[idx_cell][idx_quad] += _g->Flux( _quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr] ); + break; + default: ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); break; } } } @@ -239,147 +174,111 @@ void SNSolver::FluxUpdatePseudo2D() } } -void SNSolver::FVMUpdate(unsigned idx_energy) -{ +void SNSolver::FVMUpdate( unsigned idx_iter ) { #pragma omp parallel for - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { // Dirichlet cells stay at IC, farfield assumption - if (_boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET) - continue; + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // loop over all ordinates - for (unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad) - { + for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { // time update angular flux with numerical flux and total scattering cross // section - _solNew[idx_cell][idx_quad] = - _sol[idx_cell][idx_quad] - - (_dE / _areas[idx_cell]) * _solNew[idx_cell][idx_quad] - - _dE * _sigmaT[idx_energy][idx_cell] * _sol[idx_cell][idx_quad]; + _solNew[idx_cell][idx_quad] = _sol[idx_cell][idx_quad] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_quad] - + _dT * _sigmaT[idx_iter][idx_cell] * _sol[idx_cell][idx_quad]; } // compute scattering effects - _solNew[idx_cell] += _dE * _sigmaS[idx_energy][idx_cell] * - _scatteringKernel * - _sol[idx_cell]; // multiply scattering matrix with psi + _solNew[idx_cell] += _dT * _sigmaS[idx_iter][idx_cell] * _scatteringKernel * _sol[idx_cell]; // multiply scattering matrix with psi // Source Term - if (_Q.size() == 1u) - { // constant source for all energies - if (_Q[0][idx_cell].size() == 1u) // isotropic source - _solNew[idx_cell] += _dE * _Q[0][idx_cell][0]; + if( _Q.size() == 1u ) { // constant source for all energies + if( _Q[0][idx_cell].size() == 1u ) // isotropic source + _solNew[idx_cell] += _dT * _Q[0][idx_cell][0]; else - _solNew[idx_cell] += _dE * _Q[0][idx_cell]; + _solNew[idx_cell] += _dT * _Q[0][idx_cell]; } - else - { - if (_Q[0][idx_cell].size() == 1u) // isotropic source - _solNew[idx_cell] += _dE * _Q[idx_energy][idx_cell][0]; + else { + if( _Q[0][idx_cell].size() == 1u ) // isotropic source + _solNew[idx_cell] += _dT * _Q[idx_iter][idx_cell][0]; else - _solNew[idx_cell] += _dE * _Q[idx_energy][idx_cell]; + _solNew[idx_cell] += _dT * _Q[idx_iter][idx_cell]; } } } -void SNSolver::PrepareVolumeOutput() -{ +void SNSolver::PrepareVolumeOutput() { unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); - _outputFieldNames.resize(nGroups); - _outputFields.resize(nGroups); + _outputFieldNames.resize( nGroups ); + _outputFields.resize( nGroups ); // Prepare all OutputGroups ==> Specified in option VOLUME_OUTPUT - for (unsigned idx_group = 0; idx_group < nGroups; idx_group++) - { + for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch (_settings->GetVolumeOutput()[idx_group]) - { - case MINIMAL: - // Currently only one entry ==> rad flux - _outputFields[idx_group].resize(1); - _outputFieldNames[idx_group].resize(1); - - _outputFields[idx_group][0].resize(_nCells); - _outputFieldNames[idx_group][0] = "radiation flux density"; - break; - - case ANALYTIC: - // one entry per cell - _outputFields[idx_group].resize(1); - _outputFieldNames[idx_group].resize(1); - _outputFields[idx_group][0].resize(_nCells); - _outputFieldNames[idx_group][0] = - std::string("analytic radiation flux density"); - break; - - default: - ErrorMessages::Error("Volume Output Group not defined for SN Solver!", - CURRENT_FUNCTION); - break; + switch( _settings->GetVolumeOutput()[idx_group] ) { + case MINIMAL: + // Currently only one entry ==> rad flux + _outputFields[idx_group].resize( 1 ); + _outputFieldNames[idx_group].resize( 1 ); + + _outputFields[idx_group][0].resize( _nCells ); + _outputFieldNames[idx_group][0] = "radiation flux density"; + break; + + case ANALYTIC: + // one entry per cell + _outputFields[idx_group].resize( 1 ); + _outputFieldNames[idx_group].resize( 1 ); + _outputFields[idx_group][0].resize( _nCells ); + _outputFieldNames[idx_group][0] = std::string( "analytic radiation flux density" ); + break; + + default: ErrorMessages::Error( "Volume Output Group not defined for SN Solver!", CURRENT_FUNCTION ); break; } } } -void SNSolver::WriteVolumeOutput(unsigned idx_pseudoTime) -{ +void SNSolver::WriteVolumeOutput( unsigned idx_iter ) { unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); - if ((_settings->GetVolumeOutputFrequency() != 0 && - idx_pseudoTime % (unsigned)_settings->GetVolumeOutputFrequency() == 0) || - (idx_pseudoTime == _nEnergies - 1) /* need sol at last iteration */) - { - for (unsigned idx_group = 0; idx_group < nGroups; idx_group++) - { - switch (_settings->GetVolumeOutput()[idx_group]) - { - case MINIMAL: - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { - _outputFields[idx_group][0][idx_cell] = _fluxNew[idx_cell]; - } - break; - case ANALYTIC: - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { - double time = idx_pseudoTime * _dE; - _outputFields[idx_group][0][idx_cell] = - _problem->GetAnalyticalSolution( - _mesh->GetCellMidPoints()[idx_cell][0], - _mesh->GetCellMidPoints()[idx_cell][1], time, - _sigmaS[idx_pseudoTime][idx_cell]); - } - break; + if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || + ( idx_iter == _nEnergies - 1 ) /* need sol at last iteration */ ) { + for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { + switch( _settings->GetVolumeOutput()[idx_group] ) { + case MINIMAL: + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + _outputFields[idx_group][0][idx_cell] = _scalarFluxNew[idx_cell]; + } + break; + case ANALYTIC: + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + double time = idx_iter * _dT; + _outputFields[idx_group][0][idx_cell] = _problem->GetAnalyticalSolution( + _mesh->GetCellMidPoints()[idx_cell][0], _mesh->GetCellMidPoints()[idx_cell][1], time, _sigmaS[idx_iter][idx_cell] ); + } + break; - default: - ErrorMessages::Error("Volume Output Group not defined for SN Solver!", - CURRENT_FUNCTION); - break; + default: ErrorMessages::Error( "Volume Output Group not defined for SN Solver!", CURRENT_FUNCTION ); break; } } } } // Needs to go to Solver, not to Problem -double SNSolver::GetCurrentOutflow() -{ - double finalTimeOutflow = 0.0; - std::map &ghostCells = _problem->GetGhostCells(); +double SNSolver::GetCurrentOutflow() { + double finalTimeOutflow = 0.0; + std::map& ghostCells = _problem->GetGhostCells(); // Iterate over boundaries - for (std::map::iterator it = ghostCells.begin(); it != ghostCells.end(); ++it) - { - int idx_cell = it->first; // Get Boundary cell index - for (unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); - ++idx_nbr) - { + for( std::map::iterator it = ghostCells.begin(); it != ghostCells.end(); ++it ) { + int idx_cell = it->first; // Get Boundary cell index + for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { // Find face that points outward - if (_neighbors[idx_cell][idx_nbr] == _nCells) - { - for (unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad) - { - double fluxOut = _normals[idx_cell][idx_nbr][0] * _quadPoints[idx_quad][0] + _normals[idx_cell][idx_nbr][1] * _quadPoints[idx_quad][1]; - if (fluxOut > 0.0) - { + if( _neighbors[idx_cell][idx_nbr] == _nCells ) { + for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { + double fluxOut = + _normals[idx_cell][idx_nbr][0] * _quadPoints[idx_quad][0] + _normals[idx_cell][idx_nbr][1] * _quadPoints[idx_quad][1]; + if( fluxOut > 0.0 ) { finalTimeOutflow += fluxOut * _sol[idx_cell][idx_quad]; } } @@ -389,27 +288,6 @@ double SNSolver::GetCurrentOutflow() return finalTimeOutflow; } -double SNSolver::GetTotalOutflow(unsigned iteration) -{ - if (iteration == 0) - { - _timeDependentOutflow[iteration] = GetCurrentOutflow() * _dE; - } - else - { - _timeDependentOutflow[iteration] = _timeDependentOutflow[iteration - 1] + GetCurrentOutflow() * _dE; - } - return _timeDependentOutflow[iteration]; -} - -double SNSolver::GetMaxOutflow() { return 0; } - -double SNSolver::GetFinalTimeAbsorption() { return 0; } - -double SNSolver::GetTotalAbsorption() { return 0; } - -double SNSolver::GetMaxAbsorption() { return 0; } - double SNSolver::GetTotalAbsorptionCenter() { return 0; } double SNSolver::GetTotalAbsorptionVertical() { return 0; } diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 20579cc3..5446f8f1 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -17,60 +17,63 @@ #include -SolverBase::SolverBase(Config *settings) -{ +SolverBase::SolverBase( Config* settings ) { _settings = settings; // @TODO save parameters from settings class // build mesh and store and store frequently used params - _mesh = LoadSU2MeshFromFile(settings); - _areas = _mesh->GetCellAreas(); + _mesh = LoadSU2MeshFromFile( settings ); + _areas = _mesh->GetCellAreas(); _neighbors = _mesh->GetNeighbours(); - _normals = _mesh->GetNormals(); - _nCells = _mesh->GetNumCells(); - _settings->SetNCells(_nCells); + _normals = _mesh->GetNormals(); + _nCells = _mesh->GetNumCells(); + _settings->SetNCells( _nCells ); // build quadrature object and store frequently used params - _quadrature = QuadratureBase::Create(settings); - _nq = _quadrature->GetNq(); - _settings->SetNQuadPoints(_nq); + _quadrature = QuadratureBase::Create( settings ); + _nq = _quadrature->GetNq(); + _settings->SetNQuadPoints( _nq ); // build slope related params - _reconstructor = new Reconstructor(settings); - _reconsOrder = _reconstructor->GetReconsOrder(); + _reconstructor = new Reconstructor( settings ); + _reconsOrder = _reconstructor->GetReconsOrder(); _interfaceMidPoints = _mesh->GetInterfaceMidPoints(); _cellMidPoints = _mesh->GetCellMidPoints(); // set time step or energy step - _dE = ComputeTimeStep(_settings->GetCFL()); + _dT = ComputeTimeStep( _settings->GetCFL() ); - if (_settings->GetIsCSD()) - { + if( _settings->GetIsCSD() ) { // carefull: This gets overwritten by almost all subsolvers - double minE = 5e-5; // 2.231461e-01; // 5e-5; + double minE = 5e-5; // 2.231461e-01; // 5e-5; double maxE = _settings->GetMaxEnergyCSD(); - _nEnergies = std::ceil((maxE - minE) / _dE); - _energies = blaze::linspace(_nEnergies, minE, maxE); + _nEnergies = std::ceil( ( maxE - minE ) / _dT ); + _energies = blaze::linspace( _nEnergies, minE, maxE ); } - else - { // Not CSD Solver - _nEnergies = unsigned(settings->GetTEnd() / _dE); - _energies = blaze::linspace(_nEnergies, 0.0, settings->GetTEnd()); // go upward from 0 to T_end + else { // Not CSD Solver + _nEnergies = unsigned( settings->GetTEnd() / _dT ); + _energies = blaze::linspace( _nEnergies, 0.0, settings->GetTEnd() ); // go upward from 0 to T_end } + + // Adjust maxIter, depending if we have a normal run or a csd Run + _nIter = _nEnergies; + if( _settings->GetIsCSD() ) { + _nIter = _nEnergies - 1; // Since CSD does not go the last energy step + } + // setup problem and store frequently used params - _problem = ProblemBase::Create(_settings, _mesh); - _sol = _problem->SetupIC(); + _problem = ProblemBase::Create( _settings, _mesh ); + _sol = _problem->SetupIC(); - _solNew = _sol; // setup temporary sol variable - if (!_settings->GetIsCSD()) - { - _sigmaT = _problem->GetTotalXS(_energies); - _sigmaS = _problem->GetScatteringXS(_energies); - _Q = _problem->GetExternalSource(_energies); + _solNew = _sol; // setup temporary sol variable + if( !_settings->GetIsCSD() ) { + _sigmaT = _problem->GetTotalXS( _energies ); + _sigmaS = _problem->GetScatteringXS( _energies ); + _Q = _problem->GetExternalSource( _energies ); } // setup numerical flux @@ -80,24 +83,24 @@ SolverBase::SolverBase(Config *settings) _boundaryCells = _mesh->GetBoundaryTypes(); // Solver Output - _solverOutput.resize(_nCells); // LEGACY! Only used for CSD SN + _solverOutput.resize( _nCells ); // LEGACY! Only used for CSD SN - PrepareScreenOutput(); // Screen Output - PrepareHistoryOutput(); // History Output - - // initialize QOI helper variables - _timeDependentOutflow = Vector(_maxIter, 0.0); + PrepareScreenOutput(); // Screen Output + PrepareHistoryOutput(); // History Output // initialize Helper Variables - _fluxNew = Vector(_nCells, 0); - _flux = Vector(_nCells, 0); + _scalarFluxNew = Vector( _nCells, 0 ); + _scalarFlux = Vector( _nCells, 0 ); // write density - _density = _problem->GetDensity(_mesh->GetCellMidPoints()); + _density = _problem->GetDensity( _mesh->GetCellMidPoints() ); + + // initialize QOI helper variables + _timeDependentAbsorption = Vector( _nIter, 0.0 ); + _timeDependentOutflow = Vector( _nIter, 0 ); } -SolverBase::~SolverBase() -{ +SolverBase::~SolverBase() { delete _quadrature; delete _mesh; delete _problem; @@ -105,34 +108,23 @@ SolverBase::~SolverBase() delete _g; } -SolverBase *SolverBase::Create(Config *settings) -{ - switch (settings->GetSolverName()) - { - case SN_SOLVER: - return new SNSolver(settings); - case PN_SOLVER: - return new PNSolver(settings); - case MN_SOLVER: - return new MNSolver(settings); - case MN_SOLVER_NORMALIZED: - return new MNSolverNormalized(settings); - case CSD_SN_SOLVER: - return new CSDSNSolver(settings); - case CSD_PN_SOLVER: - return new CSDPNSolver(settings); - case CSD_MN_SOLVER: - return new CSDMNSolver(settings); - - default: - ErrorMessages::Error("Creator for the chosen solver does not yet exist. This is is the fault of the coder!", CURRENT_FUNCTION); +SolverBase* SolverBase::Create( Config* settings ) { + switch( settings->GetSolverName() ) { + case SN_SOLVER: return new SNSolver( settings ); + case PN_SOLVER: return new PNSolver( settings ); + case MN_SOLVER: return new MNSolver( settings ); + case MN_SOLVER_NORMALIZED: return new MNSolverNormalized( settings ); + case CSD_SN_SOLVER: return new CSDSNSolver( settings ); + case CSD_PN_SOLVER: return new CSDPNSolver( settings ); + case CSD_MN_SOLVER: return new CSDMNSolver( settings ); + + default: ErrorMessages::Error( "Creator for the chosen solver does not yet exist. This is is the fault of the coder!", CURRENT_FUNCTION ); } - ErrorMessages::Error("Creator for the chosen solver does not yet exist. This is is the fault of the coder!", CURRENT_FUNCTION); - return nullptr; // This code is never reached. Just to disable compiler warnings. + ErrorMessages::Error( "Creator for the chosen solver does not yet exist. This is is the fault of the coder!", CURRENT_FUNCTION ); + return nullptr; // This code is never reached. Just to disable compiler warnings. } -void SolverBase::Solve() -{ +void SolverBase::Solve() { // --- Preprocessing --- @@ -140,13 +132,6 @@ void SolverBase::Solve() DrawPreSolverOutput(); - // Adjust maxIter, depending if we have a normal run or a csd Run - _maxIter = _nEnergies; - if (_settings->GetIsCSD()) - { - _maxIter = _nEnergies - 1; // Since CSD does not go the last energy step - } - // Preprocessing before first pseudo time step SolverPreprocessing(); unsigned rkStages = _settings->GetRKStages(); @@ -154,40 +139,36 @@ void SolverBase::Solve() VectorVector solRK0 = _sol; // Loop over energies (pseudo-time of continuous slowing down approach) - for (unsigned iter = 0; iter < _maxIter; iter++) - { - if (rkStages == 2) - solRK0 = _sol; - for (unsigned rkStep = 0; rkStep < rkStages; ++rkStep) - { + for( unsigned iter = 0; iter < _nIter; iter++ ) { + if( rkStages == 2 ) solRK0 = _sol; + for( unsigned rkStep = 0; rkStep < rkStages; ++rkStep ) { // --- Prepare Boundaries and temp variables - IterPreprocessing(iter + rkStep); + IterPreprocessing( iter + rkStep ); // --- Compute Fluxes --- FluxUpdate(); // --- Finite Volume Update --- - FVMUpdate(iter + rkStep); + FVMUpdate( iter + rkStep ); // --- Update Solution within Runge Kutta Stages _sol = _solNew; } // --- Iter Postprocessing --- - IterPostprocessing(iter); + IterPostprocessing( iter ); // --- Runge Kutta Timestep --- - if (rkStages == 2) - RKUpdate(solRK0, _sol); + if( rkStages == 2 ) RKUpdate( solRK0, _sol ); // --- Solver Output --- - WriteVolumeOutput(iter); - WriteScalarOutput(iter); - // --- Update Fluxes (not sure if needed) - _flux = _fluxNew; - PrintScreenOutput(iter); - PrintHistoryOutput(iter); - PrintVolumeOutput(iter); + WriteVolumeOutput( iter ); + WriteScalarOutput( iter ); + // --- Update Scalar Fluxes + _scalarFlux = _scalarFluxNew; + PrintScreenOutput( iter ); + PrintHistoryOutput( iter ); + PrintVolumeOutput( iter ); } // --- Postprocessing --- @@ -195,206 +176,132 @@ void SolverBase::Solve() DrawPostSolverOutput(); } -void SolverBase::RKUpdate(VectorVector sol_0, VectorVector sol_rk) -{ +void SolverBase::RKUpdate( VectorVector sol_0, VectorVector sol_rk ) { #pragma omp parallel for - for (unsigned i = 0; i < _nCells; ++i) - { - _sol[i] = 0.5 * (sol_0[i] + sol_rk[i]); + for( unsigned i = 0; i < _nCells; ++i ) { + _sol[i] = 0.5 * ( sol_0[i] + sol_rk[i] ); } } -void SolverBase::PrintVolumeOutput() const { ExportVTK(_settings->GetOutputFile(), _outputFields, _outputFieldNames, _mesh); } +void SolverBase::PrintVolumeOutput() const { ExportVTK( _settings->GetOutputFile(), _outputFields, _outputFieldNames, _mesh ); } -void SolverBase::PrintVolumeOutput(int currEnergy) const -{ - if (_settings->GetVolumeOutputFrequency() != 0 && currEnergy % (unsigned)_settings->GetVolumeOutputFrequency() == 0) - { - ExportVTK(_settings->GetOutputFile() + "_" + std::to_string(currEnergy), _outputFields, _outputFieldNames, _mesh); +void SolverBase::PrintVolumeOutput( int currEnergy ) const { + if( _settings->GetVolumeOutputFrequency() != 0 && currEnergy % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) { + ExportVTK( _settings->GetOutputFile() + "_" + std::to_string( currEnergy ), _outputFields, _outputFieldNames, _mesh ); } - if (currEnergy == (int)_maxIter - 1) - { // Last iteration write without suffix. - ExportVTK(_settings->GetOutputFile(), _outputFields, _outputFieldNames, _mesh); + if( currEnergy == (int)_nIter - 1 ) { // Last iteration write without suffix. + ExportVTK( _settings->GetOutputFile(), _outputFields, _outputFieldNames, _mesh ); } } // --- Helper --- -double SolverBase::ComputeTimeStep(double cfl) const -{ +double SolverBase::ComputeTimeStep( double cfl ) const { // for pseudo 1D, set timestep to dx double dx, dy; - switch (_settings->GetProblemName()) - { - case PROBLEM_Checkerboard1D: - dx = 7.0 / (double)_nCells; - dy = 0.3; - return cfl * (dx * dy) / (dx + dy); - break; - case PROBLEM_Linesource1D: // Fallthrough - case PROBLEM_Meltingcube1D: // Fallthrough - case PROBLEM_Aircavity1D: - dx = 3.0 / (double)_nCells; - dy = 0.3; - return cfl * (dx * dy) / (dx + dy); - break; - default: - break; // 2d as normal + switch( _settings->GetProblemName() ) { + case PROBLEM_Checkerboard1D: + dx = 7.0 / (double)_nCells; + dy = 0.3; + return cfl * ( dx * dy ) / ( dx + dy ); + break; + case PROBLEM_Linesource1D: // Fallthrough + case PROBLEM_Meltingcube1D: // Fallthrough + case PROBLEM_Aircavity1D: + dx = 3.0 / (double)_nCells; + dy = 0.3; + return cfl * ( dx * dy ) / ( dx + dy ); + break; + default: break; // 2d as normal } // 2D case double maxEdge = -1.0; - for (unsigned j = 0; j < _nCells; j++) - { - for (unsigned l = 0; l < _normals[j].size(); l++) - { - double currentEdge = _areas[j] / norm(_normals[j][l]); - if (currentEdge > maxEdge) - maxEdge = currentEdge; + for( unsigned j = 0; j < _nCells; j++ ) { + for( unsigned l = 0; l < _normals[j].size(); l++ ) { + double currentEdge = _areas[j] / norm( _normals[j][l] ); + if( currentEdge > maxEdge ) maxEdge = currentEdge; } } return cfl * maxEdge; } // --- IO ---- -void SolverBase::PrepareScreenOutput() -{ +void SolverBase::PrepareScreenOutput() { unsigned nFields = (unsigned)_settings->GetNScreenOutput(); - _screenOutputFieldNames.resize(nFields); - _screenOutputFields.resize(nFields); + _screenOutputFieldNames.resize( nFields ); + _screenOutputFields.resize( nFields ); // Prepare all output Fields ==> Specified in option SCREEN_OUTPUT - for (unsigned idx_field = 0; idx_field < nFields; idx_field++) - { + for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch (_settings->GetScreenOutput()[idx_field]) - { - case MASS: - _screenOutputFieldNames[idx_field] = "Mass"; - break; - case ITER: - _screenOutputFieldNames[idx_field] = "Iter"; - break; - case RMS_FLUX: - _screenOutputFieldNames[idx_field] = "RMS flux"; - break; - case VTK_OUTPUT: - _screenOutputFieldNames[idx_field] = "VTK out"; - break; - case CSV_OUTPUT: - _screenOutputFieldNames[idx_field] = "CSV out"; - break; - case FINAL_TIME_OUTFLOW: - _screenOutputFieldNames[idx_field] = "Final time outflow"; - break; - case TOTAL_OUTFLOW: - _screenOutputFieldNames[idx_field] = "Cumulated outflow"; - break; - case MAX_OUTFLOW: - _screenOutputFieldNames[idx_field] = "Max outflow"; - break; - case FINAL_TIME_PARTICLE_ABSORPTION: - _screenOutputFieldNames[idx_field] = "Final time absorption"; - break; - case TOTAL_PARTICLE_ABSORPTION: - _screenOutputFieldNames[idx_field] = "Cumulated absorption"; - break; - case MAX_PARTICLE_ABSORPTION: - _screenOutputFieldNames[idx_field] = "Max absorption"; - break; - case TOTAL_PARTICLE_ABSORPTION_CENTER: - _screenOutputFieldNames[idx_field] = "Cumulated absorption center"; - break; - case TOTAL_PARTICLE_ABSORPTION_VERTICAL: - _screenOutputFieldNames[idx_field] = "Cumulated absorption vertical wall"; - break; - case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: - _screenOutputFieldNames[idx_field] = "Cumulated absorption horizontal wall"; - break; - - default: - ErrorMessages::Error("Screen output field not defined!", CURRENT_FUNCTION); - break; + switch( _settings->GetScreenOutput()[idx_field] ) { + case MASS: _screenOutputFieldNames[idx_field] = "Mass"; break; + case ITER: _screenOutputFieldNames[idx_field] = "Iter"; break; + case RMS_FLUX: _screenOutputFieldNames[idx_field] = "RMS flux"; break; + case VTK_OUTPUT: _screenOutputFieldNames[idx_field] = "VTK out"; break; + case CSV_OUTPUT: _screenOutputFieldNames[idx_field] = "CSV out"; break; + case CUR_OUTFLOW: _screenOutputFieldNames[idx_field] = "Cur. outflow"; break; + case TOTAL_OUTFLOW: _screenOutputFieldNames[idx_field] = "Cum. outflow"; break; + case MAX_OUTFLOW: _screenOutputFieldNames[idx_field] = "Max outflow"; break; + case CUR_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Cur. absorption"; break; + case TOTAL_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Cum. absorption"; break; + case MAX_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Max absorption"; break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFieldNames[idx_field] = "Cum. absorption center"; break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFieldNames[idx_field] = "Cum. absorption vertical wall"; break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFieldNames[idx_field] = "Cum. absorption horizontal wall"; break; + + default: ErrorMessages::Error( "Screen output field not defined!", CURRENT_FUNCTION ); break; } } } -void SolverBase::WriteScalarOutput(unsigned iteration) -{ +void SolverBase::WriteScalarOutput( unsigned idx_iter ) { unsigned nFields = (unsigned)_settings->GetNScreenOutput(); - double mass = 0.0; + double mass = 0.0; // -- Screen Output - for (unsigned idx_field = 0; idx_field < nFields; idx_field++) - { + for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch (_settings->GetScreenOutput()[idx_field]) - { - case MASS: - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { - mass += _fluxNew[idx_cell] * _areas[idx_cell]; - } - _screenOutputFields[idx_field] = mass; - break; + switch( _settings->GetScreenOutput()[idx_field] ) { + case MASS: + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + mass += _scalarFluxNew[idx_cell] * _areas[idx_cell]; + } + _screenOutputFields[idx_field] = mass; + break; - case ITER: - _screenOutputFields[idx_field] = iteration; - break; + case ITER: _screenOutputFields[idx_field] = idx_iter; break; - case RMS_FLUX: - _screenOutputFields[idx_field] = blaze::l2Norm(_fluxNew - _flux); - break; + case RMS_FLUX: _screenOutputFields[idx_field] = blaze::l2Norm( _scalarFluxNew - _scalarFlux ); break; - case VTK_OUTPUT: - _screenOutputFields[idx_field] = 0; - if ((_settings->GetVolumeOutputFrequency() != 0 && iteration % (unsigned)_settings->GetVolumeOutputFrequency() == 0) || - (iteration == _maxIter - 1) /* need sol at last iteration */) - { - _screenOutputFields[idx_field] = 1; - } - break; - case CSV_OUTPUT: - _screenOutputFields[idx_field] = 0; - if ((_settings->GetHistoryOutputFrequency() != 0 && iteration % (unsigned)_settings->GetHistoryOutputFrequency() == 0) || - (iteration == _maxIter - 1) /* need sol at last iteration */) - { - _screenOutputFields[idx_field] = 1; - } - break; - case FINAL_TIME_OUTFLOW: - _screenOutputFields[idx_field] = GetCurrentOutflow(); - break; - case TOTAL_OUTFLOW: - _screenOutputFields[idx_field] = GetTotalOutflow(iteration); - break; - case MAX_OUTFLOW: - _screenOutputFields[idx_field] = GetMaxOutflow(); - break; - case FINAL_TIME_PARTICLE_ABSORPTION: - _screenOutputFields[idx_field] = GetFinalTimeAbsorption(); - break; - case TOTAL_PARTICLE_ABSORPTION: - _screenOutputFields[idx_field] = GetTotalAbsorption(); - break; - case MAX_PARTICLE_ABSORPTION: - _screenOutputFields[idx_field] = GetMaxAbsorption(); - break; - case TOTAL_PARTICLE_ABSORPTION_CENTER: - _screenOutputFields[idx_field] = GetTotalAbsorptionCenter(); - break; - case TOTAL_PARTICLE_ABSORPTION_VERTICAL: - _screenOutputFields[idx_field] = GetTotalAbsorptionVertical(); - break; - case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: - _screenOutputFields[idx_field] = GetTotalAbsorptionHorizontal(); - break; - default: - ErrorMessages::Error("Screen output group not defined!", CURRENT_FUNCTION); - break; + case VTK_OUTPUT: + _screenOutputFields[idx_field] = 0; + if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || + ( idx_iter == _nIter - 1 ) /* need sol at last iteration */ ) { + _screenOutputFields[idx_field] = 1; + } + break; + case CSV_OUTPUT: + _screenOutputFields[idx_field] = 0; + if( ( _settings->GetHistoryOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) || + ( idx_iter == _nIter - 1 ) /* need sol at last iteration */ ) { + _screenOutputFields[idx_field] = 1; + } + break; + case CUR_OUTFLOW: _screenOutputFields[idx_field] = _timeDependentOutflow[idx_iter]; break; + case TOTAL_OUTFLOW: _screenOutputFields[idx_field] = GetTotalOutflow( idx_iter ); break; + case MAX_OUTFLOW: _screenOutputFields[idx_field] = GetMaxOutflow( idx_iter ); break; + case CUR_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _timeDependentAbsorption[idx_iter]; break; + case TOTAL_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = GetTotalAbsorption( idx_iter ); break; + case MAX_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = GetMaxAbsorption( idx_iter ); break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFields[idx_field] = GetTotalAbsorptionCenter(); break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFields[idx_field] = GetTotalAbsorptionVertical(); break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFields[idx_field] = GetTotalAbsorptionHorizontal(); break; + default: ErrorMessages::Error( "Screen output group not defined!", CURRENT_FUNCTION ); break; } } @@ -402,341 +309,318 @@ void SolverBase::WriteScalarOutput(unsigned iteration) nFields = (unsigned)_settings->GetNHistoryOutput(); std::vector screenOutputFields = _settings->GetScreenOutput(); - for (unsigned idx_field = 0; idx_field < nFields; idx_field++) - { + for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { // Check first, if the field was already filled by screenoutput writer! std::vector::iterator itScreenOutput = - std::find(screenOutputFields.begin(), screenOutputFields.end(), _settings->GetHistoryOutput()[idx_field]); + std::find( screenOutputFields.begin(), screenOutputFields.end(), _settings->GetHistoryOutput()[idx_field] ); // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch (_settings->GetHistoryOutput()[idx_field]) - { - case MASS: - if (screenOutputFields.end() == itScreenOutput) - { - for (unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell) - { - mass += _fluxNew[idx_cell] * _areas[idx_cell]; + switch( _settings->GetHistoryOutput()[idx_field] ) { + case MASS: + if( screenOutputFields.end() == itScreenOutput ) { + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + mass += _scalarFluxNew[idx_cell] * _areas[idx_cell]; + } + _historyOutputFields[idx_field] = mass; } - _historyOutputFields[idx_field] = mass; - } - else - { - _historyOutputFields[idx_field] = *itScreenOutput; - } - break; + else { + _historyOutputFields[idx_field] = *itScreenOutput; + } + break; - case ITER: - _historyOutputFields[idx_field] = iteration; - break; + case ITER: _historyOutputFields[idx_field] = idx_iter; break; - case RMS_FLUX: - if (screenOutputFields.end() == itScreenOutput) - { - _screenOutputFields[idx_field] = blaze::l2Norm(_fluxNew - _flux); - } - else - { - _historyOutputFields[idx_field] = *itScreenOutput; - } - break; + case RMS_FLUX: + if( screenOutputFields.end() == itScreenOutput ) { + _screenOutputFields[idx_field] = blaze::l2Norm( _scalarFluxNew - _scalarFlux ); + } + else { + _historyOutputFields[idx_field] = *itScreenOutput; + } + break; - case VTK_OUTPUT: - _historyOutputFields[idx_field] = 0; - if ((_settings->GetVolumeOutputFrequency() != 0 && iteration % (unsigned)_settings->GetVolumeOutputFrequency() == 0) || - (iteration == _maxIter - 1) /* need sol at last iteration */) - { - _historyOutputFields[idx_field] = 1; - } - break; + case VTK_OUTPUT: + _historyOutputFields[idx_field] = 0; + if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || + ( idx_iter == _nIter - 1 ) /* need sol at last iteration */ ) { + _historyOutputFields[idx_field] = 1; + } + break; - case CSV_OUTPUT: - _historyOutputFields[idx_field] = 0; - if ((_settings->GetHistoryOutputFrequency() != 0 && iteration % (unsigned)_settings->GetHistoryOutputFrequency() == 0) || - (iteration == _maxIter - 1) /* need sol at last iteration */) - { - _historyOutputFields[idx_field] = 1; - } - break; - case FINAL_TIME_OUTFLOW: - _historyOutputFields[idx_field] = GetCurrentOutflow(); - break; - case TOTAL_OUTFLOW: - _historyOutputFields[idx_field] = GetTotalOutflow(iteration); - break; - case MAX_OUTFLOW: - _historyOutputFields[idx_field] = GetMaxOutflow(); - break; - case FINAL_TIME_PARTICLE_ABSORPTION: - _historyOutputFields[idx_field] = GetFinalTimeAbsorption(); - break; - case TOTAL_PARTICLE_ABSORPTION: - _historyOutputFields[idx_field] = GetTotalAbsorption(); - break; - case MAX_PARTICLE_ABSORPTION: - _historyOutputFields[idx_field] = GetMaxAbsorption(); - break; - case TOTAL_PARTICLE_ABSORPTION_CENTER: - _historyOutputFields[idx_field] = GetTotalAbsorptionCenter(); - break; - case TOTAL_PARTICLE_ABSORPTION_VERTICAL: - _historyOutputFields[idx_field] = GetTotalAbsorptionVertical(); - break; - case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: - _historyOutputFields[idx_field] = GetTotalAbsorptionHorizontal(); - break; - default: - ErrorMessages::Error("History output group not defined!", CURRENT_FUNCTION); - break; + case CSV_OUTPUT: + _historyOutputFields[idx_field] = 0; + if( ( _settings->GetHistoryOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) || + ( idx_iter == _nIter - 1 ) /* need sol at last iteration */ ) { + _historyOutputFields[idx_field] = 1; + } + break; + case CUR_OUTFLOW: _historyOutputFields[idx_field] = _timeDependentOutflow[idx_iter]; break; + case TOTAL_OUTFLOW: _historyOutputFields[idx_field] = GetTotalOutflow( idx_iter ); break; + case MAX_OUTFLOW: _historyOutputFields[idx_field] = GetMaxOutflow( idx_iter ); break; + case CUR_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _timeDependentAbsorption[idx_iter]; break; + case TOTAL_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = GetTotalAbsorption( idx_iter ); break; + case MAX_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = GetMaxAbsorption( idx_iter ); break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _historyOutputFields[idx_field] = GetTotalAbsorptionCenter(); break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFields[idx_field] = GetTotalAbsorptionVertical(); break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFields[idx_field] = GetTotalAbsorptionHorizontal(); break; + default: ErrorMessages::Error( "History output group not defined!", CURRENT_FUNCTION ); break; } } } -void SolverBase::PrintScreenOutput(unsigned iteration) -{ +void SolverBase::PrintScreenOutput( unsigned idx_iter ) { int rank; - MPI_Comm_rank(MPI_COMM_WORLD, &rank); - auto log = spdlog::get("event"); + MPI_Comm_rank( MPI_COMM_WORLD, &rank ); + auto log = spdlog::get( "event" ); - unsigned strLen = 10; // max width of one column + unsigned strLen = 10; // max width of one column char paddingChar = ' '; // assemble the line to print std::string lineToPrint = "| "; std::string tmp; - for (unsigned idx_field = 0; idx_field < _settings->GetNScreenOutput(); idx_field++) - { - tmp = std::to_string(_screenOutputFields[idx_field]); + for( unsigned idx_field = 0; idx_field < _settings->GetNScreenOutput(); idx_field++ ) { + tmp = std::to_string( _screenOutputFields[idx_field] ); // Format outputs correctly - std::vector integerFields = {ITER}; - std::vector scientificFields = {RMS_FLUX, MASS}; - std::vector booleanFields = {VTK_OUTPUT, CSV_OUTPUT}; + std::vector integerFields = { ITER }; + std::vector scientificFields = { RMS_FLUX, MASS }; + std::vector booleanFields = { VTK_OUTPUT, CSV_OUTPUT }; - if (!(integerFields.end() == std::find(integerFields.begin(), integerFields.end(), _settings->GetScreenOutput()[idx_field]))) - { - tmp = std::to_string((int)_screenOutputFields[idx_field]); + if( !( integerFields.end() == std::find( integerFields.begin(), integerFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { + tmp = std::to_string( (int)_screenOutputFields[idx_field] ); } - else if (!(booleanFields.end() == std::find(booleanFields.begin(), booleanFields.end(), _settings->GetScreenOutput()[idx_field]))) - { + else if( !( booleanFields.end() == std::find( booleanFields.begin(), booleanFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { tmp = "no"; - if ((bool)_screenOutputFields[idx_field]) - tmp = "yes"; + if( (bool)_screenOutputFields[idx_field] ) tmp = "yes"; } - else if (!(scientificFields.end() == - std::find(scientificFields.begin(), scientificFields.end(), _settings->GetScreenOutput()[idx_field]))) - { + else if( !( scientificFields.end() == + std::find( scientificFields.begin(), scientificFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { std::stringstream ss; ss << _screenOutputFields[idx_field]; tmp = ss.str(); - tmp.erase(std::remove(tmp.begin(), tmp.end(), '+'), tmp.end()); // removing the '+' sign + tmp.erase( std::remove( tmp.begin(), tmp.end(), '+' ), tmp.end() ); // removing the '+' sign } - if (strLen > tmp.size()) // Padding - tmp.insert(0, strLen - tmp.size(), paddingChar); - else if (strLen < tmp.size()) // Cutting - tmp.resize(strLen); + if( strLen > tmp.size() ) // Padding + tmp.insert( 0, strLen - tmp.size(), paddingChar ); + else if( strLen < tmp.size() ) // Cutting + tmp.resize( strLen ); lineToPrint += tmp + " |"; } - if (rank == 0) - { - if (_settings->GetScreenOutputFrequency() != 0 && iteration % (unsigned)_settings->GetScreenOutputFrequency() == 0) - { - log->info(lineToPrint); + if( rank == 0 ) { + if( _settings->GetScreenOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetScreenOutputFrequency() == 0 ) { + log->info( lineToPrint ); } - else if (iteration == _maxIter - 1) - { // Always print last iteration - log->info(lineToPrint); + else if( idx_iter == _nIter - 1 ) { // Always print last iteration + log->info( lineToPrint ); } } } -void SolverBase::PrepareHistoryOutput() -{ +void SolverBase::PrepareHistoryOutput() { unsigned nFields = (unsigned)_settings->GetNHistoryOutput(); - _historyOutputFieldNames.resize(nFields); - _historyOutputFields.resize(nFields); + _historyOutputFieldNames.resize( nFields ); + _historyOutputFields.resize( nFields ); // Prepare all output Fields ==> Specified in option SCREEN_OUTPUT - for (unsigned idx_field = 0; idx_field < nFields; idx_field++) - { + for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { // Prepare all Output Fields per group // Different procedure, depending on the Group... - switch (_settings->GetHistoryOutput()[idx_field]) - { - case MASS: - _historyOutputFieldNames[idx_field] = "Mass"; - break; - case ITER: - _historyOutputFieldNames[idx_field] = "Iter"; - break; - case RMS_FLUX: - _historyOutputFieldNames[idx_field] = "RMS_flux"; - break; - case VTK_OUTPUT: - _historyOutputFieldNames[idx_field] = "VTK_out"; - break; - case CSV_OUTPUT: - _historyOutputFieldNames[idx_field] = "CSV_out"; - break; - case FINAL_TIME_OUTFLOW: - _historyOutputFieldNames[idx_field] = "Final_time_outflow"; - break; - case TOTAL_OUTFLOW: - _historyOutputFieldNames[idx_field] = "Cumulated_outflow"; - break; - case MAX_OUTFLOW: - _historyOutputFieldNames[idx_field] = "Max_outflow"; - break; - case FINAL_TIME_PARTICLE_ABSORPTION: - _historyOutputFieldNames[idx_field] = "Final_time_absorption"; - break; - case TOTAL_PARTICLE_ABSORPTION: - _historyOutputFieldNames[idx_field] = "Cumulated_absorption"; - break; - case MAX_PARTICLE_ABSORPTION: - _historyOutputFieldNames[idx_field] = "Max_absorption"; - break; - case TOTAL_PARTICLE_ABSORPTION_CENTER: - _historyOutputFieldNames[idx_field] = "Cumulated_absorption_center"; - break; - case TOTAL_PARTICLE_ABSORPTION_VERTICAL: - _historyOutputFieldNames[idx_field] = "Cumulated_absorption_vertical_wall"; - break; - case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: - _historyOutputFieldNames[idx_field] = "Cumulated_absorption_horizontal_wall"; - break; - default: - ErrorMessages::Error("History output field not defined!", CURRENT_FUNCTION); - break; + switch( _settings->GetHistoryOutput()[idx_field] ) { + case MASS: _historyOutputFieldNames[idx_field] = "Mass"; break; + case ITER: _historyOutputFieldNames[idx_field] = "Iter"; break; + case RMS_FLUX: _historyOutputFieldNames[idx_field] = "RMS_flux"; break; + case VTK_OUTPUT: _historyOutputFieldNames[idx_field] = "VTK_out"; break; + case CSV_OUTPUT: _historyOutputFieldNames[idx_field] = "CSV_out"; break; + case CUR_OUTFLOW: _historyOutputFieldNames[idx_field] = "Final_time_outflow"; break; + case TOTAL_OUTFLOW: _historyOutputFieldNames[idx_field] = "Cumulated_outflow"; break; + case MAX_OUTFLOW: _historyOutputFieldNames[idx_field] = "Max_outflow"; break; + case CUR_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Final_time_absorption"; break; + case TOTAL_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Cumulated_absorption"; break; + case MAX_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Max_absorption"; break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_center"; break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_vertical_wall"; break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_horizontal_wall"; break; + default: ErrorMessages::Error( "History output field not defined!", CURRENT_FUNCTION ); break; } } } -void SolverBase::PrintHistoryOutput(unsigned iteration) -{ +void SolverBase::PrintHistoryOutput( unsigned idx_iter ) { int rank; - MPI_Comm_rank(MPI_COMM_WORLD, &rank); - auto log = spdlog::get("tabular"); + MPI_Comm_rank( MPI_COMM_WORLD, &rank ); + auto log = spdlog::get( "tabular" ); // assemble the line to print std::string lineToPrint = ""; std::string tmp; - for (int idx_field = 0; idx_field < _settings->GetNScreenOutput() - 1; idx_field++) - { - tmp = std::to_string(_screenOutputFields[idx_field]); + for( int idx_field = 0; idx_field < _settings->GetNScreenOutput() - 1; idx_field++ ) { + tmp = std::to_string( _screenOutputFields[idx_field] ); lineToPrint += tmp + ","; } - tmp = std::to_string(_screenOutputFields[_settings->GetNScreenOutput() - 1]); - lineToPrint += tmp; // Last element without comma - - if (rank == 0) - { - if (_settings->GetHistoryOutputFrequency() != 0 && iteration % (unsigned)_settings->GetHistoryOutputFrequency() == 0) - { - log->info(lineToPrint); + tmp = std::to_string( _screenOutputFields[_settings->GetNScreenOutput() - 1] ); + lineToPrint += tmp; // Last element without comma + + if( rank == 0 ) { + if( _settings->GetHistoryOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) { + log->info( lineToPrint ); } - else if (iteration == _nEnergies - 1) - { // Always print last iteration - log->info(lineToPrint); + else if( idx_iter == _nEnergies - 1 ) { // Always print last iteration + log->info( lineToPrint ); } } } -void SolverBase::DrawPreSolverOutput() -{ +void SolverBase::DrawPreSolverOutput() { // MPI int rank; - MPI_Comm_rank(MPI_COMM_WORLD, &rank); + MPI_Comm_rank( MPI_COMM_WORLD, &rank ); // Logger - auto log = spdlog::get("event"); - auto logCSV = spdlog::get("tabular"); + auto log = spdlog::get( "event" ); + auto logCSV = spdlog::get( "tabular" ); std::string hLine = "--"; - if (rank == 0) - { - unsigned strLen = 10; // max width of one column + if( rank == 0 ) { + unsigned strLen = 10; // max width of one column char paddingChar = ' '; // Assemble Header for Screen Output std::string lineToPrint = "| "; - std::string tmpLine = "------------"; - for (unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++) - { + std::string tmpLine = "------------"; + for( unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++ ) { std::string tmp = _screenOutputFieldNames[idxFields]; - if (strLen > tmp.size()) // Padding - tmp.insert(0, strLen - tmp.size(), paddingChar); - else if (strLen < tmp.size()) // Cutting - tmp.resize(strLen); + if( strLen > tmp.size() ) // Padding + tmp.insert( 0, strLen - tmp.size(), paddingChar ); + else if( strLen < tmp.size() ) // Cutting + tmp.resize( strLen ); lineToPrint += tmp + " |"; hLine += tmpLine; } - log->info("---------------------------- Solver Starts -----------------------------"); - log->info("| The simulation will run for {} iterations.", _nEnergies); - log->info("| The spatial grid contains {} cells.", _nCells); - log->info(hLine); - log->info(lineToPrint); - log->info(hLine); + log->info( "---------------------------- Solver Starts -----------------------------" ); + log->info( "| The simulation will run for {} iterations.", _nEnergies ); + log->info( "| The spatial grid contains {} cells.", _nCells ); + log->info( hLine ); + log->info( lineToPrint ); + log->info( hLine ); std::string lineToPrintCSV = ""; - for (int idxFields = 0; idxFields < _settings->GetNHistoryOutput() - 1; idxFields++) - { + for( int idxFields = 0; idxFields < _settings->GetNHistoryOutput() - 1; idxFields++ ) { std::string tmp = _historyOutputFieldNames[idxFields]; lineToPrintCSV += tmp + ","; } lineToPrintCSV += _historyOutputFieldNames[_settings->GetNHistoryOutput() - 1]; - logCSV->info(lineToPrintCSV); + logCSV->info( lineToPrintCSV ); } } -void SolverBase::DrawPostSolverOutput() -{ +void SolverBase::DrawPostSolverOutput() { // MPI int rank; - MPI_Comm_rank(MPI_COMM_WORLD, &rank); + MPI_Comm_rank( MPI_COMM_WORLD, &rank ); // Logger - auto log = spdlog::get("event"); + auto log = spdlog::get( "event" ); std::string hLine = "--"; - if (rank == 0) - { - unsigned strLen = 10; // max width of one column + if( rank == 0 ) { + unsigned strLen = 10; // max width of one column char paddingChar = ' '; // Assemble Header for Screen Output std::string lineToPrint = "| "; - std::string tmpLine = "------------"; - for (unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++) - { + std::string tmpLine = "------------"; + for( unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++ ) { std::string tmp = _screenOutputFieldNames[idxFields]; - if (strLen > tmp.size()) // Padding - tmp.insert(0, strLen - tmp.size(), paddingChar); - else if (strLen < tmp.size()) // Cutting - tmp.resize(strLen); + if( strLen > tmp.size() ) // Padding + tmp.insert( 0, strLen - tmp.size(), paddingChar ); + else if( strLen < tmp.size() ) // Cutting + tmp.resize( strLen ); lineToPrint += tmp + " |"; hLine += tmpLine; } - log->info(hLine); + log->info( hLine ); #ifndef BUILD_TESTING - log->info("| The volume output files have been stored at " + _settings->GetOutputFile()); - log->info("| The log files have been stored at " + _settings->GetLogDir() + _settings->GetLogFile()); + log->info( "| The volume output files have been stored at " + _settings->GetOutputFile() ); + log->info( "| The log files have been stored at " + _settings->GetLogDir() + _settings->GetLogFile() ); #endif - log->info("--------------------------- Solver Finished ----------------------------"); + log->info( "--------------------------- Solver Finished ----------------------------" ); } } void SolverBase::SolverPreprocessing() {} + +double SolverBase::GetTotalOutflow( unsigned idx_iter ) { + double totalOutflow = 0.0; + for( unsigned i = 0; i < idx_iter + 1; i++ ) { + totalOutflow += _timeDependentOutflow[i] * _dT; + } + return totalOutflow; +} + +double SolverBase::GetMaxOutflow( unsigned idx_iter ) { + // NOT WHAT IT IS IN SLIDES! + double maxOutflow = 0.0; + + for( unsigned i = 0; i < idx_iter + 1; i++ ) { + if( _timeDependentOutflow[idx_iter] > maxOutflow ) { + maxOutflow = _timeDependentOutflow[idx_iter]; + } + } + return maxOutflow; +} + +double SolverBase::GetCurrentAbsorption( unsigned idx_iter ) { + double total_absorption = 0.0; + if( _settings->GetProblemName() == PROBLEM_Lattice ) { + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + // Assumption: Domain size is 7x7 + double x = _mesh->GetCellMidPoints()[idx_cell][0]; + double y = _mesh->GetCellMidPoints()[idx_cell][1]; + double xy_corrector = -3.5; + std::vector lbounds{ 1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector }; + std::vector ubounds{ 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector }; + + for( unsigned k = 0; k < lbounds.size(); ++k ) { + for( unsigned l = 0; l < lbounds.size(); ++l ) { + if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; + if( x >= lbounds[k] && x <= ubounds[k] && y >= lbounds[l] && y <= ubounds[l] ) { + total_absorption += _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) * _areas[idx_cell]; + } + } + } + } + } + + return total_absorption; +} + +double SolverBase::GetTotalAbsorption( unsigned idx_iter ) { + double totalAbsorption = 0.0; + for( unsigned i = 0; i < idx_iter + 1; i++ ) { + totalAbsorption += _timeDependentAbsorption[i] * _dT; + } + return totalAbsorption; +} +double SolverBase::GetMaxAbsorption( unsigned idx_iter ) { + double maxAbsorption = 0.0; + for( unsigned i = 0; i < idx_iter + 1; i++ ) { + if( _timeDependentOutflow[idx_iter] > maxAbsorption ) { + maxAbsorption = _timeDependentOutflow[idx_iter]; + } + } + return maxAbsorption; +} From b74991b6535fe38a39c4a71c83dc4d3f3a3a520a Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Tue, 21 Nov 2023 13:30:24 -0500 Subject: [PATCH 006/155] added hohlraum qois --- include/common/globalconstants.hpp | 256 ++-- include/common/mesh.hpp | 8 +- include/solvers/mnsolver.hpp | 20 +- include/solvers/pnsolver.hpp | 19 +- include/solvers/snsolver.hpp | 17 +- include/solvers/solverbase.hpp | 39 +- include/toolboxes/textprocessingtoolbox.hpp | 19 +- src/common/config.cpp | 1340 +++++++++---------- src/common/mesh.cpp | 29 +- src/solvers/csdmnsolver.cpp | 5 +- src/solvers/csdpnsolver.cpp | 4 +- src/solvers/csdsnsolver.cpp | 12 +- src/solvers/mnsolver.cpp | 32 +- src/solvers/pnsolver.cpp | 33 +- src/solvers/snsolver.cpp | 74 +- src/solvers/solverbase.cpp | 235 +++- 16 files changed, 1097 insertions(+), 1045 deletions(-) diff --git a/include/common/globalconstants.hpp b/include/common/globalconstants.hpp index 5ef94fef..c8d0fd18 100644 --- a/include/common/globalconstants.hpp +++ b/include/common/globalconstants.hpp @@ -15,53 +15,46 @@ // --- Definition for global constants goes here --- -static const long double PI = 3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679; -static const long double EULER = 2.7182818284590452353602874713526624977572470936999595749669676277240766303535475945713821785251664274; -static const long double INV_SQRT_2PI = 1.0 / std::sqrt(2.0 * PI); - -static const long double AVOGADRO_CONSTANT = 6.02214129e23; // 1/mol -static const long double ELECTRON_MASS = 9.10938291e-31; // kg -static const long double ELECTRON_ENERGY = 0.51099895; // MeV -static const long double ELECTRON_RADIUS = 2.8179403262e-15; // m -static const long double ELECTRON_MASS_ENERGY_EQUIVALENT = 8.18710506e-14; // J -static const long double ELECTRON_VOLT = 1.602176565e-19; // J -static const long double ELECTRIC_CONSTANT = 8.854187817e-12; // F/m -static const long double ELEMENTARY_CHARGE = 1.602176565e-19; // C -static const long double PLANCK_CONSTANT = 6.62606957e-34; // J s -static const long double BOHR_RADIUS = 5.2917721092e-11; // m - -static const std::vector H2OMassFractions{0.111894, 0.888106}; -static const std::vector H2OAtomicNumbers{1.0, 8.0}; -static const std::vector H2OAtomicWeights{1.008, 15.999}; -static const long double H2OAtomicWeight = 2 * H2OAtomicWeights[0] + H2OAtomicWeights[1]; -static const long double H2OElectronDensity = 3.3428847e23; // 1/cm3 -static const long double H2OMassDensity = 1.0; // g/cm3 -static const long double H2OMolecularDensity = AVOGADRO_CONSTANT * H2OMassDensity / H2OAtomicWeight; // 1/cm3 - -static const long double C1 = 2.0 * PI * std::pow(ELEMENTARY_CHARGE, 4u) / std::pow(4.0 * PI * ELECTRIC_CONSTANT, 2u); -static const long double C2 = C1 / 16.0; -static const long double SQRT05E = std::sqrt(0.5 * EULER); -static const long double aH = PLANCK_CONSTANT * PLANCK_CONSTANT * ELECTRIC_CONSTANT / (PI * ELECTRON_MASS * ELEMENTARY_CHARGE * ELEMENTARY_CHARGE); +static const long double PI = 3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679; +static const long double EULER = 2.7182818284590452353602874713526624977572470936999595749669676277240766303535475945713821785251664274; +static const long double INV_SQRT_2PI = 1.0 / std::sqrt( 2.0 * PI ); + +static const long double AVOGADRO_CONSTANT = 6.02214129e23; // 1/mol +static const long double ELECTRON_MASS = 9.10938291e-31; // kg +static const long double ELECTRON_ENERGY = 0.51099895; // MeV +static const long double ELECTRON_RADIUS = 2.8179403262e-15; // m +static const long double ELECTRON_MASS_ENERGY_EQUIVALENT = 8.18710506e-14; // J +static const long double ELECTRON_VOLT = 1.602176565e-19; // J +static const long double ELECTRIC_CONSTANT = 8.854187817e-12; // F/m +static const long double ELEMENTARY_CHARGE = 1.602176565e-19; // C +static const long double PLANCK_CONSTANT = 6.62606957e-34; // J s +static const long double BOHR_RADIUS = 5.2917721092e-11; // m + +static const std::vector H2OMassFractions{ 0.111894, 0.888106 }; +static const std::vector H2OAtomicNumbers{ 1.0, 8.0 }; +static const std::vector H2OAtomicWeights{ 1.008, 15.999 }; +static const long double H2OAtomicWeight = 2 * H2OAtomicWeights[0] + H2OAtomicWeights[1]; +static const long double H2OElectronDensity = 3.3428847e23; // 1/cm3 +static const long double H2OMassDensity = 1.0; // g/cm3 +static const long double H2OMolecularDensity = AVOGADRO_CONSTANT * H2OMassDensity / H2OAtomicWeight; // 1/cm3 + +static const long double C1 = 2.0 * PI * std::pow( ELEMENTARY_CHARGE, 4u ) / std::pow( 4.0 * PI * ELECTRIC_CONSTANT, 2u ); +static const long double C2 = C1 / 16.0; +static const long double SQRT05E = std::sqrt( 0.5 * EULER ); +static const long double aH = PLANCK_CONSTANT * PLANCK_CONSTANT * ELECTRIC_CONSTANT / ( PI * ELECTRON_MASS * ELEMENTARY_CHARGE * ELEMENTARY_CHARGE ); const unsigned int MAX_STRING_SIZE = 200; /*!< @brief Maximum size for strings. */ // --- Definition of enums goes here --- -enum BOUNDARY_TYPE -{ - DIRICHLET, - NEUMANN, - NONE, - INVALID -}; +enum BOUNDARY_TYPE { DIRICHLET, NEUMANN, NONE, INVALID }; // --- Definition of enums for EnumOptions goes here --- /*! @brief Enum for all currently available quadratures in rtsn. * Option enums are written in capital letters with underscores as spaces (e.g option "time integration" has option enum "TIME_INTEGRATION") */ -enum QUAD_NAME -{ +enum QUAD_NAME { QUAD_MonteCarlo, QUAD_GaussLegendreTensorized, QUAD_GaussLegendre1D, @@ -81,24 +74,23 @@ enum QUAD_NAME /*! @brief Conversion Map String to enum */ -inline std::map Quadrature_Map{{"MONTE_CARLO", QUAD_MonteCarlo}, - {"GAUSS_LEGENDRE_TENSORIZED", QUAD_GaussLegendreTensorized}, - {"GAUSS_LEGENDRE_TENSORIZED_2D", QUAD_GaussLegendreTensorized2D}, - {"PRODUCT", QUAD_Product}, - {"GAUSS_LEGENDRE_1D", QUAD_GaussLegendre1D}, - {"LEVEL_SYMMETRIC", QUAD_LevelSymmetric}, - {"LEBEDEV", QUAD_Lebedev}, - {"LDFESA", QUAD_LDFESA}, - {"MIDPOINT_1D", QUAD_Midpoint1D}, - {"MIDPOINT_2D", QUAD_Midpoint2D}, - {"MIDPOINT_3D", QUAD_Midpoint3D}, - {"RECTANGULAR_1D", QUAD_Rectangular1D}, - {"RECTANGULAR_2D", QUAD_Rectangular2D}, - {"RECTANGULAR_3D", QUAD_Rectangular3D}}; +inline std::map Quadrature_Map{ { "MONTE_CARLO", QUAD_MonteCarlo }, + { "GAUSS_LEGENDRE_TENSORIZED", QUAD_GaussLegendreTensorized }, + { "GAUSS_LEGENDRE_TENSORIZED_2D", QUAD_GaussLegendreTensorized2D }, + { "PRODUCT", QUAD_Product }, + { "GAUSS_LEGENDRE_1D", QUAD_GaussLegendre1D }, + { "LEVEL_SYMMETRIC", QUAD_LevelSymmetric }, + { "LEBEDEV", QUAD_Lebedev }, + { "LDFESA", QUAD_LDFESA }, + { "MIDPOINT_1D", QUAD_Midpoint1D }, + { "MIDPOINT_2D", QUAD_Midpoint2D }, + { "MIDPOINT_3D", QUAD_Midpoint3D }, + { "RECTANGULAR_1D", QUAD_Rectangular1D }, + { "RECTANGULAR_2D", QUAD_Rectangular2D }, + { "RECTANGULAR_3D", QUAD_Rectangular3D } }; // Problem name -enum PROBLEM_NAME -{ +enum PROBLEM_NAME { PROBLEM_Linesource, PROBLEM_Linesource1D, PROBLEM_Checkerboard, @@ -115,33 +107,28 @@ enum PROBLEM_NAME PROBLEM_Lattice }; -inline std::map Problem_Map{{"LINESOURCE", PROBLEM_Linesource}, - {"LINESOURCE_1D", PROBLEM_Linesource1D}, - {"CHECKERBOARD", PROBLEM_Checkerboard}, - {"CHECKERBOARD_1D", PROBLEM_Checkerboard1D}, - {"STARMAP_VALIDATION", PROBLEM_StarmapValidation}, - {"AIRCAVITY_1D", PROBLEM_Aircavity1D}, - {"WATERPHANTOM", PROBLEM_Phantomimage}, - {"WATERPHANTOM_1D", PROBLEM_Waterphantom1D}, - {"RADIATIONCT", PROBLEM_RadiationCT}, - {"MELTINGCUBE", PROBLEM_Meltingcube}, - {"MELTINGCUBE_1D", PROBLEM_Meltingcube1D}, - {"HOHLRAUM", PROBLEM_Hohlraum}, - {"SYMMETRIC_HOHLRAUM", PROBLEM_SymmetricHohlraum}, - {"LATTICE", PROBLEM_Lattice}}; +inline std::map Problem_Map{ { "LINESOURCE", PROBLEM_Linesource }, + { "LINESOURCE_1D", PROBLEM_Linesource1D }, + { "CHECKERBOARD", PROBLEM_Checkerboard }, + { "CHECKERBOARD_1D", PROBLEM_Checkerboard1D }, + { "STARMAP_VALIDATION", PROBLEM_StarmapValidation }, + { "AIRCAVITY_1D", PROBLEM_Aircavity1D }, + { "WATERPHANTOM", PROBLEM_Phantomimage }, + { "WATERPHANTOM_1D", PROBLEM_Waterphantom1D }, + { "RADIATIONCT", PROBLEM_RadiationCT }, + { "MELTINGCUBE", PROBLEM_Meltingcube }, + { "MELTINGCUBE_1D", PROBLEM_Meltingcube1D }, + { "HOHLRAUM", PROBLEM_Hohlraum }, + { "SYMMETRIC_HOHLRAUM", PROBLEM_SymmetricHohlraum }, + { "LATTICE", PROBLEM_Lattice } }; // Kernel name -enum KERNEL_NAME -{ - KERNEL_Isotropic, - KERNEL_Isotropic1D -}; +enum KERNEL_NAME { KERNEL_Isotropic, KERNEL_Isotropic1D }; -inline std::map Kernel_Map{{"ISOTROPIC", KERNEL_Isotropic}, {"ISOTROPIC_1D", KERNEL_Isotropic1D}}; +inline std::map Kernel_Map{ { "ISOTROPIC", KERNEL_Isotropic }, { "ISOTROPIC_1D", KERNEL_Isotropic1D } }; // Solver name -enum SOLVER_NAME -{ +enum SOLVER_NAME { SN_SOLVER, PN_SOLVER, MN_SOLVER, @@ -151,61 +138,38 @@ enum SOLVER_NAME CSD_MN_SOLVER, }; -inline std::map Solver_Map{{"SN_SOLVER", SN_SOLVER}, - {"PN_SOLVER", PN_SOLVER}, - {"MN_SOLVER", MN_SOLVER}, - {"MN_SOLVER_NORMALIZED", MN_SOLVER_NORMALIZED}, - {"CSD_SN_SOLVER", CSD_SN_SOLVER}, - {"CSD_PN", CSD_PN_SOLVER}, - {"CSD_MN", CSD_MN_SOLVER}}; +inline std::map Solver_Map{ { "SN_SOLVER", SN_SOLVER }, + { "PN_SOLVER", PN_SOLVER }, + { "MN_SOLVER", MN_SOLVER }, + { "MN_SOLVER_NORMALIZED", MN_SOLVER_NORMALIZED }, + { "CSD_SN_SOLVER", CSD_SN_SOLVER }, + { "CSD_PN", CSD_PN_SOLVER }, + { "CSD_MN", CSD_MN_SOLVER } }; // Entropy functional -enum ENTROPY_NAME -{ - QUADRATIC, - MAXWELL_BOLTZMANN, - BOSE_EINSTEIN, - FERMI_DIRAC -}; +enum ENTROPY_NAME { QUADRATIC, MAXWELL_BOLTZMANN, BOSE_EINSTEIN, FERMI_DIRAC }; inline std::map Entropy_Map{ - {"QUADRATIC", QUADRATIC}, {"MAXWELL_BOLTZMANN", MAXWELL_BOLTZMANN}, {"BOSE_EINSTEIN", BOSE_EINSTEIN}, {"FERMI_DIRAC", FERMI_DIRAC}}; + { "QUADRATIC", QUADRATIC }, { "MAXWELL_BOLTZMANN", MAXWELL_BOLTZMANN }, { "BOSE_EINSTEIN", BOSE_EINSTEIN }, { "FERMI_DIRAC", FERMI_DIRAC } }; // Optimizer -enum OPTIMIZER_NAME -{ - NEWTON, - REGULARIZED_NEWTON, - PART_REGULARIZED_NEWTON, - REDUCED_NEWTON, - REDUCED_PART_REGULARIZED_NEWTON, - ML -}; +enum OPTIMIZER_NAME { NEWTON, REGULARIZED_NEWTON, PART_REGULARIZED_NEWTON, REDUCED_NEWTON, REDUCED_PART_REGULARIZED_NEWTON, ML }; -inline std::map Optimizer_Map{{"NEWTON", NEWTON}, - {"REGULARIZED_NEWTON", REGULARIZED_NEWTON}, - {"PART_REGULARIZED_NEWTON", PART_REGULARIZED_NEWTON}, - {"REDUCED_NEWTON", REDUCED_NEWTON}, - {"REDUCED_PART_REGULARIZED_NEWTON", REDUCED_PART_REGULARIZED_NEWTON}, - {"ML", ML}}; +inline std::map Optimizer_Map{ { "NEWTON", NEWTON }, + { "REGULARIZED_NEWTON", REGULARIZED_NEWTON }, + { "PART_REGULARIZED_NEWTON", PART_REGULARIZED_NEWTON }, + { "REDUCED_NEWTON", REDUCED_NEWTON }, + { "REDUCED_PART_REGULARIZED_NEWTON", REDUCED_PART_REGULARIZED_NEWTON }, + { "ML", ML } }; // Volume output -enum VOLUME_OUTPUT -{ - ANALYTIC, - MINIMAL, - MOMENTS, - DUAL_MOMENTS, - MEDICAL, - MOMENT_TIME_TRACE -}; +enum VOLUME_OUTPUT { ANALYTIC, MINIMAL, MOMENTS, DUAL_MOMENTS, MEDICAL }; inline std::map VolOutput_Map{ - {"ANALYTIC", ANALYTIC}, {"MINIMAL", MINIMAL}, {"MOMENTS", MOMENTS}, {"DUAL_MOMENTS", DUAL_MOMENTS}, {"MEDICAL", MEDICAL}, {"MOMENT_TIME_TRACE", MOMENT_TIME_TRACE}}; + { "ANALYTIC", ANALYTIC }, { "MINIMAL", MINIMAL }, { "MOMENTS", MOMENTS }, { "DUAL_MOMENTS", DUAL_MOMENTS }, { "MEDICAL", MEDICAL } }; // Scalar output -enum SCALAR_OUTPUT -{ +enum SCALAR_OUTPUT { ITER, MASS, RMS_FLUX, @@ -219,44 +183,36 @@ enum SCALAR_OUTPUT MAX_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, - TOTAL_PARTICLE_ABSORPTION_HORIZONTAL + TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, + PROBE_MOMENT_TIME_TRACE }; -inline std::map ScalarOutput_Map{ - {"ITER", ITER}, - {"MASS", MASS}, - {"RMS_FLUX", RMS_FLUX}, - {"VTK_OUTPUT", VTK_OUTPUT}, - {"CSV_OUTPUT", CSV_OUTPUT}, - {"CUR_OUTFLOW", CUR_OUTFLOW}, - {"TOTAL_OUTFLOW", TOTAL_OUTFLOW}, - {"MAX_OUTFLOW", MAX_OUTFLOW}, - {"CUR_PARTICLE_ABSORPTION", CUR_PARTICLE_ABSORPTION}, - {"TOTAL_PARTICLE_ABSORPTION", TOTAL_PARTICLE_ABSORPTION}, - {"MAX_PARTICLE_ABSORPTION", MAX_PARTICLE_ABSORPTION}, - {"TOTAL_PARTICLE_ABSORPTION_CENTER", TOTAL_PARTICLE_ABSORPTION_CENTER}, - {"TOTAL_PARTICLE_ABSORPTION_VERTICAL", TOTAL_PARTICLE_ABSORPTION_VERTICAL}, - {"TOTAL_PARTICLE_ABSORPTION_HORIZONTAL", TOTAL_PARTICLE_ABSORPTION_HORIZONTAL}, -}; +inline std::map ScalarOutput_Map{ { "ITER", ITER }, + { "MASS", MASS }, + { "RMS_FLUX", RMS_FLUX }, + { "VTK_OUTPUT", VTK_OUTPUT }, + { "CSV_OUTPUT", CSV_OUTPUT }, + { "CUR_OUTFLOW", CUR_OUTFLOW }, + { "TOTAL_OUTFLOW", TOTAL_OUTFLOW }, + { "MAX_OUTFLOW", MAX_OUTFLOW }, + { "CUR_PARTICLE_ABSORPTION", CUR_PARTICLE_ABSORPTION }, + { "TOTAL_PARTICLE_ABSORPTION", TOTAL_PARTICLE_ABSORPTION }, + { "MAX_PARTICLE_ABSORPTION", MAX_PARTICLE_ABSORPTION }, + { "TOTAL_PARTICLE_ABSORPTION_CENTER", TOTAL_PARTICLE_ABSORPTION_CENTER }, + { "TOTAL_PARTICLE_ABSORPTION_VERTICAL", TOTAL_PARTICLE_ABSORPTION_VERTICAL }, + { "TOTAL_PARTICLE_ABSORPTION_HORIZONTAL", TOTAL_PARTICLE_ABSORPTION_HORIZONTAL }, + { "PROBE_MOMENT_TIME_TRACE", PROBE_MOMENT_TIME_TRACE } }; + // Spherical Basis Name -enum SPHERICAL_BASIS_NAME -{ - SPHERICAL_HARMONICS, - SPHERICAL_MONOMIALS, - SPHERICAL_MONOMIALS_ROTATED -}; +enum SPHERICAL_BASIS_NAME { SPHERICAL_HARMONICS, SPHERICAL_MONOMIALS, SPHERICAL_MONOMIALS_ROTATED }; -inline std::map SphericalBasis_Map{{"SPHERICAL_HARMONICS", SPHERICAL_HARMONICS}, - {"SPHERICAL_MONOMIALS", SPHERICAL_MONOMIALS}, - {"SPHERICAL_MONOMIALS_ROTATED", SPHERICAL_MONOMIALS_ROTATED}}; +inline std::map SphericalBasis_Map{ { "SPHERICAL_HARMONICS", SPHERICAL_HARMONICS }, + { "SPHERICAL_MONOMIALS", SPHERICAL_MONOMIALS }, + { "SPHERICAL_MONOMIALS_ROTATED", SPHERICAL_MONOMIALS_ROTATED } }; // Datasampler Name -enum SAMPLER_NAME -{ - CLASSIFICATION_SAMPLER, - REGRESSION_SAMPLER -}; +enum SAMPLER_NAME { CLASSIFICATION_SAMPLER, REGRESSION_SAMPLER }; -inline std::map SamplerName_MAP{{"CLASSIFICATION_SAMPLER", CLASSIFICATION_SAMPLER}, - {"REGRESSION_SAMPLER", REGRESSION_SAMPLER}}; -#endif // GLOBAL_CONSTANTS_H +inline std::map SamplerName_MAP{ { "CLASSIFICATION_SAMPLER", CLASSIFICATION_SAMPLER }, + { "REGRESSION_SAMPLER", REGRESSION_SAMPLER } }; +#endif // GLOBAL_CONSTANTS_H diff --git a/include/common/mesh.hpp b/include/common/mesh.hpp index 283d3b44..75bf24d6 100644 --- a/include/common/mesh.hpp +++ b/include/common/mesh.hpp @@ -22,7 +22,7 @@ class Mesh const unsigned _numNodesPerCell; /*!< @brief number of nodes per cell */ const unsigned _numBoundaries; /*!< @brief number of boundary cells in the mesh */ const unsigned _ghostCellID; /*!< @brief Id of the ghost cell. (we use only one ghost cell). equal to _numCells and therefore has the ID of the - last cell + 1 */ + last cell + 1 */ unsigned _numNodesPerBoundary; std::vector> _bounds; // ??? @@ -61,6 +61,8 @@ class Mesh Vector ComputeCellInterfaceMidpoints( const Vector& nodeA, const Vector& nodeB ); /*!< @brief compute the midpoint of the edge between nodeA and nodeB */ + bool IsPointInsideCell( unsigned idx_cell, double x, double y ) const; /*!< @brief Function to check if a point is inside a polygon (cell)*/ + public: Mesh() = delete; // no default constructor @@ -122,6 +124,10 @@ class Mesh * @return dimension: scalar */ double GetDistanceToOrigin( unsigned idx_cell ) const; + /*! @brief Returns index of cell containing the coordinate (x,y) + * @return cell_idx: unsigned */ + unsigned GetCellOfKoordinate( double x, double y ) const; + /*! @brief ComputeSlopes calculates the slope in every cell into x and y direction using the divergence theorem. * @param nq is number of quadrature points * @param psiDerX is slope in x direction (gets computed. Slope is stored here) diff --git a/include/solvers/mnsolver.hpp b/include/solvers/mnsolver.hpp index a5e73e88..86b9928d 100644 --- a/include/solvers/mnsolver.hpp +++ b/include/solvers/mnsolver.hpp @@ -53,7 +53,6 @@ class MNSolver : public SolverBase virtual void FVMUpdate( unsigned idx_iter ) override; virtual void FluxUpdate() override; virtual void IterPreprocessing( unsigned idx_iter ) override; - virtual void IterPostprocessing( unsigned idx_iter ) override; void FluxUpdatePseudo1D(); // Helper void FluxUpdatePseudo2D(); // Helper @@ -70,21 +69,12 @@ class MNSolver : public SolverBase // Helper /*! @brief Computes the radiative flux from the solution vector of the moment system */ - void ComputeRadFlux() override; + void ComputeScalarFlux() override; // Output helper functions - double GetCurrentOutflow() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionCenter() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionVertical() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionHorizontal() override final; + void GetCurrentOutflow() override final; + void GetMaxOrdinatewiseOutflow() override final; + + void ComputeCurrentProbeMoment() override final; }; #endif // MNSOLVER_H diff --git a/include/solvers/pnsolver.hpp b/include/solvers/pnsolver.hpp index ea627465..25e87538 100644 --- a/include/solvers/pnsolver.hpp +++ b/include/solvers/pnsolver.hpp @@ -48,10 +48,9 @@ class PNSolver : public SolverBase void FVMUpdate( unsigned idx_iter ) override; void FluxUpdate() override; void IterPreprocessing( unsigned idx_iter ) override; - void IterPostprocessing( unsigned idx_iter ) override; // Helper - void ComputeRadFlux() override; + void ComputeScalarFlux() override; // Initialization of the Solver /*! @brief parameter functions for setting up system matrix @@ -150,19 +149,9 @@ class PNSolver : public SolverBase void FluxUpdatePseudo2D(); // Output helper functions - double GetCurrentOutflow() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionCenter() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionVertical() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionHorizontal() override final; + void GetCurrentOutflow() override final; + void GetMaxOrdinatewiseOutflow() override final; + void ComputeCurrentProbeMoment() override final; }; #endif // PNSOLVER_H diff --git a/include/solvers/snsolver.hpp b/include/solvers/snsolver.hpp index ffa6e5d9..fcbbc780 100644 --- a/include/solvers/snsolver.hpp +++ b/include/solvers/snsolver.hpp @@ -31,10 +31,9 @@ class SNSolver : public SolverBase void virtual FVMUpdate( unsigned idx_iter ) override; void virtual FluxUpdate() override; void virtual IterPreprocessing( unsigned idx_iter ) override; - void virtual IterPostprocessing( unsigned idx_iter ) override; // Helper - void ComputeRadFlux() override; + void ComputeScalarFlux() override; void FluxUpdatePseudo1D(); // Helper void FluxUpdatePseudo2D(); // Helper @@ -45,20 +44,18 @@ class SNSolver : public SolverBase * @brief Computes Problemspecific Scalar QOI * */ - - double GetCurrentOutflow() override final; - /** - * @brief Computes Problemspecific Scalar QOI - */ - double GetTotalAbsorptionCenter() override final; + void GetCurrentOutflow() override final; /** * @brief Computes Problemspecific Scalar QOI + * */ - double GetTotalAbsorptionVertical() override final; + void GetMaxOrdinatewiseOutflow() override final; + /** * @brief Computes Problemspecific Scalar QOI + * */ - double GetTotalAbsorptionHorizontal() override final; + void ComputeCurrentProbeMoment() override final; }; #endif // SNSOLVER_H diff --git a/include/solvers/solverbase.hpp b/include/solvers/solverbase.hpp index c3e5d3e8..83a5f105 100644 --- a/include/solvers/solverbase.hpp +++ b/include/solvers/solverbase.hpp @@ -93,8 +93,21 @@ class SolverBase std::vector _historyOutputFields; /*!< @brief Solver Output: dimensions (FieldID). */ std::vector _historyOutputFieldNames; /*!< @brief Names of the outputFields: dimensions (FieldID) */ - Vector _timeDependentOutflow; /*!< @brief Outflow over boundary at each time step */ - Vector _timeDependentAbsorption; /*!< @brief Absorption of particles at problem specific regions at each time step */ + // Quantitties of Interest + double _curScalarOutflow; /*!< @brief Outflow over whole boundary at current time step */ + double _totalScalarOutflow; /*!< @brief Outflow over whole boundary integrated until current time step */ + double _curMaxOrdinateOutflow; /*!< @brief Maximum ordinate-wise ouftlow over boundary over all time steps */ + double _curAbsorptionLattice; /*!< @brief Absorption of particles at Lattice checkerboard regions at current time step */ + double _totalAbsorptionLattice; /*!< @brief Absorption of particles at Lattice checkerboard regions integrated until current time step */ + double _curMaxAbsorptionLattice; /*!< @brief Maximum pointwise absorption of particles at Lattice checkerboard regions until current time step */ + double _curAbsorptionHohlraumCenter; /*!< @brief Absorption of particles at Hohlraum center at current time step */ + double _curAbsorptionHohlraumVertical; /*!< @brief Absorption of particles at Hohlraum vertical walls at current time step */ + double _curAbsorptionHohlraumHorizontal; /*!< @brief Absorption of particles at Hohlraum horizontal walls at current time step */ + double _totalAbsorptionHohlraumCenter; /*!< @brief Absorption of particles at Hohlraum center integrated until current time step */ + double _totalAbsorptionHohlraumVertical; /*!< @brief Absorption of particles at Hohlraum vertical walls integrated until current time step */ + double _totalAbsorptionHohlraumHorizontal; /*!< @brief Absorption of particles at Hohlraum horizontal walls integrated until current time step */ + std::vector _probingCells; /*!< @brief Indices of cells that contain a probing sensor */ + VectorVector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ // ---- Member functions ---- @@ -106,7 +119,7 @@ class SolverBase @param idx_iter current (peudo) time iteration */ virtual void IterPreprocessing( unsigned idx_iter ) = 0; /*! @brief Performs postprocessing for the current solver iteration */ - virtual void IterPostprocessing( unsigned idx_iter ) = 0; + virtual void IterPostprocessing( unsigned idx_iter ); /*! @brief Constructs the flux update for the current iteration and stores it * in psiNew*/ virtual void FluxUpdate() = 0; @@ -124,7 +137,7 @@ class SolverBase double ComputeTimeStep( double cfl ) const; /*! @brief Computes the flux of the solution to check conservation properties */ - virtual void ComputeRadFlux() = 0; + virtual void ComputeScalarFlux() = 0; // IO /*! @brief Initializes the output groups and fields of this solver and names @@ -166,39 +179,39 @@ class SolverBase /** * @brief Computes Problemspecific Scalar QOI */ - virtual double GetCurrentOutflow() = 0; + virtual void GetCurrentOutflow() = 0; /** * @brief Computes Problemspecific Scalar QOI */ - double GetTotalOutflow( unsigned idx_iter ); + void GetTotalOutflow(); /** * @brief Computes Problemspecific Scalar QOI */ - double GetMaxOutflow( unsigned idx_iter ); + virtual void GetMaxOrdinatewiseOutflow() = 0; /** * @brief Computes Problemspecific Scalar QOI */ - double GetCurrentAbsorption( unsigned idx_iter ); + void GetCurrentAbsorptionLattice( unsigned idx_iter ); /** * @brief Computes Problemspecific Scalar QOI */ - double GetTotalAbsorption( unsigned idx_iter ); + void GetTotalAbsorptionLattice(); /** * @brief Computes Problemspecific Scalar QOI */ - double GetMaxAbsorption( unsigned idx_iter ); + void GetMaxAbsorptionLattice( unsigned idx_iter ); /** * @brief Computes Problemspecific Scalar QOI */ - virtual double GetTotalAbsorptionCenter() = 0; + void GetCurrentAbsorptionHohlraum( unsigned idx_iter ); /** * @brief Computes Problemspecific Scalar QOI */ - virtual double GetTotalAbsorptionVertical() = 0; + void GetTotalAbsorptionHohlraum(); /** * @brief Computes Problemspecific Scalar QOI */ - virtual double GetTotalAbsorptionHorizontal() = 0; + virtual void ComputeCurrentProbeMoment() = 0; public: /*! @brief Solver constructor diff --git a/include/toolboxes/textprocessingtoolbox.hpp b/include/toolboxes/textprocessingtoolbox.hpp index ad3e2519..145f7469 100644 --- a/include/toolboxes/textprocessingtoolbox.hpp +++ b/include/toolboxes/textprocessingtoolbox.hpp @@ -39,7 +39,7 @@ inline std::vector Split( const std::string& s, char delimiter ) { * @brief utility function for printing a VectorVector * @param vectorIn VectorVector we want to print */ -inline void PrintVectorVector( const VectorVector vectorIn ) { +inline void PrintVectorVector( const VectorVector& vectorIn ) { unsigned dimOuter = vectorIn.size(); unsigned dimInner = vectorIn[0].size(); @@ -54,9 +54,9 @@ inline void PrintVectorVector( const VectorVector vectorIn ) { } } -inline void PrintMatrix( const Matrix mat ) { std::cout << mat << std::endl; } +inline void PrintMatrix( const Matrix& mat ) { std::cout << mat << std::endl; } -inline void PrintMatrixToFile( const Matrix mat, std::string filename, unsigned matsize ) { +inline void PrintMatrixToFile( const Matrix& mat, std::string filename, unsigned matsize ) { std::ofstream myfile; myfile.open( filename ); for( unsigned i = 0; i < matsize; i++ ) { @@ -69,7 +69,7 @@ inline void PrintMatrixToFile( const Matrix mat, std::string filename, unsigned myfile.close(); } -inline void PrintVectorToFile( const Vector vec, std::string filename, unsigned vecsize ) { +inline void PrintVectorToFile( const Vector& vec, std::string filename, unsigned vecsize ) { std::ofstream myfile; myfile.open( filename ); for( unsigned i = 0; i < vecsize; i++ ) { @@ -78,7 +78,7 @@ inline void PrintVectorToFile( const Vector vec, std::string filename, unsigned myfile.close(); } -inline void PrintCppVectorToFile( const std::vector vec, std::string filename, unsigned vecsize ) { +inline void PrintCppVectorToFile( const std::vector& vec, std::string filename, unsigned vecsize ) { std::ofstream myfile; myfile.open( filename ); for( unsigned i = 0; i < vecsize; i++ ) { @@ -87,7 +87,14 @@ inline void PrintCppVectorToFile( const std::vector vec, std::string file myfile.close(); } -inline void PrintVectorVectorToFile( const VectorVector vecvec, std::string filename, unsigned size_outer, unsigned size_inner ) { +template inline void PrintCppVector( const std::vector& vec, unsigned vecsize ) { + for( unsigned i = 0; i < vecsize - 1; i++ ) { + std::cout << vec[i] << ", "; + } + std::cout << vec[vecsize - 1] << "\n"; +} + +inline void PrintVectorVectorToFile( const VectorVector& vecvec, std::string filename, unsigned size_outer, unsigned size_inner ) { std::ofstream myfile; myfile.open( filename ); for( unsigned i = 0; i < size_outer; i++ ) { diff --git a/src/common/config.cpp b/src/common/config.cpp index 748c3374..d3da1488 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -23,15 +23,14 @@ using namespace std; -Config::Config(string case_filename) -{ +Config::Config( string case_filename ) { /*--- Set the case name to the base config file name without extension ---*/ - auto cwd = std::filesystem::current_path(); - auto relPath = std::filesystem::relative(std::filesystem::path(case_filename), cwd); - _fileName = relPath.filename().string(); - _inputDir = cwd.string() + "/" + relPath.parent_path().string(); + auto cwd = std::filesystem::current_path(); + auto relPath = std::filesystem::relative( std::filesystem::path( case_filename ), cwd ); + _fileName = relPath.filename().string(); + _inputDir = cwd.string() + "/" + relPath.parent_path().string(); _baseConfig = true; @@ -48,7 +47,7 @@ Config::Config(string case_filename) /*--- Parsing the config file ---*/ - SetConfigParsing(case_filename); + SetConfigParsing( case_filename ); /*--- Set the default values for all of the options that weren't set ---*/ @@ -73,13 +72,11 @@ Config::Config(string case_filename) SetOutput(); } -Config::~Config(void) -{ +Config::~Config( void ) { // Delete all introduced arrays! // delete _option map values proberly - for (auto const &x : _optionMap) - { + for( auto const& x : _optionMap ) { delete x.second; //_optionMap.erase( x.first ); } @@ -88,135 +85,117 @@ Config::~Config(void) // ---- Add Options ---- // Simple Options -void Config::AddBoolOption(const string name, bool &option_field, bool default_value) -{ +void Config::AddBoolOption( const string name, bool& option_field, bool default_value ) { // Check if the key is already in the map. If this fails, it is coder error // and not user error, so throw. - assert(_optionMap.find(name) == _optionMap.end()); + assert( _optionMap.find( name ) == _optionMap.end() ); // Add this option to the list of all the options - _allOptions.insert(pair(name, true)); + _allOptions.insert( pair( name, true ) ); // Create the parser for a bool option with a reference to the option_field and the desired // default value. This will take the string in the config file, convert it to a bool, and // place that bool in the memory location specified by the reference. - OptionBase *val = new OptionBool(name, option_field, default_value); + OptionBase* val = new OptionBool( name, option_field, default_value ); // Create an association between the option name ("CFL") and the parser generated above. // During configuration, the parsing script will get the option name, and use this map // to find how to parse that option. - _optionMap.insert(pair(name, val)); + _optionMap.insert( pair( name, val ) ); } -void Config::AddDoubleOption(const string name, double &option_field, double default_value) -{ - assert(_optionMap.find(name) == _optionMap.end()); - _allOptions.insert(pair(name, true)); - OptionBase *val = new OptionDouble(name, option_field, default_value); - _optionMap.insert(pair(name, val)); +void Config::AddDoubleOption( const string name, double& option_field, double default_value ) { + assert( _optionMap.find( name ) == _optionMap.end() ); + _allOptions.insert( pair( name, true ) ); + OptionBase* val = new OptionDouble( name, option_field, default_value ); + _optionMap.insert( pair( name, val ) ); } -void Config::AddIntegerOption(const string name, int &option_field, int default_value) -{ - assert(_optionMap.find(name) == _optionMap.end()); - _allOptions.insert(pair(name, true)); - OptionBase *val = new OptionInt(name, option_field, default_value); - _optionMap.insert(pair(name, val)); +void Config::AddIntegerOption( const string name, int& option_field, int default_value ) { + assert( _optionMap.find( name ) == _optionMap.end() ); + _allOptions.insert( pair( name, true ) ); + OptionBase* val = new OptionInt( name, option_field, default_value ); + _optionMap.insert( pair( name, val ) ); } -void Config::AddLongOption(const string name, long &option_field, long default_value) -{ - assert(_optionMap.find(name) == _optionMap.end()); - _allOptions.insert(pair(name, true)); - OptionBase *val = new OptionLong(name, option_field, default_value); - _optionMap.insert(pair(name, val)); +void Config::AddLongOption( const string name, long& option_field, long default_value ) { + assert( _optionMap.find( name ) == _optionMap.end() ); + _allOptions.insert( pair( name, true ) ); + OptionBase* val = new OptionLong( name, option_field, default_value ); + _optionMap.insert( pair( name, val ) ); } -void Config::AddStringOption(const string name, string &option_field, string default_value) -{ - assert(_optionMap.find(name) == _optionMap.end()); - _allOptions.insert(pair(name, true)); - OptionBase *val = new OptionString(name, option_field, default_value); - _optionMap.insert(pair(name, val)); +void Config::AddStringOption( const string name, string& option_field, string default_value ) { + assert( _optionMap.find( name ) == _optionMap.end() ); + _allOptions.insert( pair( name, true ) ); + OptionBase* val = new OptionString( name, option_field, default_value ); + _optionMap.insert( pair( name, val ) ); } -void Config::AddUnsignedLongOption(const string name, unsigned long &option_field, unsigned long default_value) -{ - assert(_optionMap.find(name) == _optionMap.end()); - _allOptions.insert(pair(name, true)); - OptionBase *val = new OptionULong(name, option_field, default_value); - _optionMap.insert(pair(name, val)); +void Config::AddUnsignedLongOption( const string name, unsigned long& option_field, unsigned long default_value ) { + assert( _optionMap.find( name ) == _optionMap.end() ); + _allOptions.insert( pair( name, true ) ); + OptionBase* val = new OptionULong( name, option_field, default_value ); + _optionMap.insert( pair( name, val ) ); } -void Config::AddUnsignedShortOption(const string name, unsigned short &option_field, unsigned short default_value) -{ - assert(_optionMap.find(name) == _optionMap.end()); - _allOptions.insert(pair(name, true)); - OptionBase *val = new OptionUShort(name, option_field, default_value); - _optionMap.insert(pair(name, val)); +void Config::AddUnsignedShortOption( const string name, unsigned short& option_field, unsigned short default_value ) { + assert( _optionMap.find( name ) == _optionMap.end() ); + _allOptions.insert( pair( name, true ) ); + OptionBase* val = new OptionUShort( name, option_field, default_value ); + _optionMap.insert( pair( name, val ) ); } // enum types work differently than all of the others because there are a small number of valid // string entries for the type. One must also provide a list of all the valid strings of that type. -template -void Config::AddEnumOption(const string name, Tenum &option_field, const map &enum_map, Tenum default_value) -{ - assert(_optionMap.find(name) == _optionMap.end()); - _allOptions.insert(pair(name, true)); - OptionBase *val = new OptionEnum(name, enum_map, option_field, default_value); - _optionMap.insert(pair(name, val)); +template void Config::AddEnumOption( const string name, Tenum& option_field, const map& enum_map, Tenum default_value ) { + assert( _optionMap.find( name ) == _optionMap.end() ); + _allOptions.insert( pair( name, true ) ); + OptionBase* val = new OptionEnum( name, enum_map, option_field, default_value ); + _optionMap.insert( pair( name, val ) ); return; } // List Options -void Config::AddStringListOption(const string name, unsigned short &num_marker, std::vector &option_field) -{ - assert(_optionMap.find(name) == _optionMap.end()); - _allOptions.insert(pair(name, true)); - OptionBase *val = new OptionStringList(name, num_marker, option_field); - _optionMap.insert(pair(name, val)); +void Config::AddStringListOption( const string name, unsigned short& num_marker, std::vector& option_field ) { + assert( _optionMap.find( name ) == _optionMap.end() ); + _allOptions.insert( pair( name, true ) ); + OptionBase* val = new OptionStringList( name, num_marker, option_field ); + _optionMap.insert( pair( name, val ) ); } template -void Config::AddEnumListOption(const std::string name, - unsigned short &input_size, - std::vector &option_field, - const map &enum_map) -{ +void Config::AddEnumListOption( const std::string name, + unsigned short& input_size, + std::vector& option_field, + const map& enum_map ) { input_size = 0; - assert(_optionMap.find(name) == _optionMap.end()); - _allOptions.insert(pair(name, true)); - OptionBase *val = new OptionEnumList(name, enum_map, option_field, input_size); - _optionMap.insert(pair(name, val)); + assert( _optionMap.find( name ) == _optionMap.end() ); + _allOptions.insert( pair( name, true ) ); + OptionBase* val = new OptionEnumList( name, enum_map, option_field, input_size ); + _optionMap.insert( pair( name, val ) ); } // ---- Getter Functions ---- -BOUNDARY_TYPE Config::GetBoundaryType(std::string name) const -{ - for (unsigned i = 0; i < _boundaries.size(); ++i) - { - if (name == _boundaries[i].first) - return _boundaries[i].second; +BOUNDARY_TYPE Config::GetBoundaryType( std::string name ) const { + for( unsigned i = 0; i < _boundaries.size(); ++i ) { + if( name == _boundaries[i].first ) return _boundaries[i].second; } return BOUNDARY_TYPE::INVALID; } // ---- Setter Functions ---- -void Config::SetDefault() -{ +void Config::SetDefault() { /*--- Set the default values for all of the options that weren't set ---*/ - for (map::iterator iter = _allOptions.begin(); iter != _allOptions.end(); ++iter) - { - if (_optionMap[iter->first]->GetValue().size() == 0) - _optionMap[iter->first]->SetDefault(); + for( map::iterator iter = _allOptions.begin(); iter != _allOptions.end(); ++iter ) { + if( _optionMap[iter->first]->GetValue().size() == 0 ) _optionMap[iter->first]->SetDefault(); } } -void Config::SetConfigOptions() -{ +void Config::SetConfigOptions() { /* BEGIN_CONFIG_OPTIONS */ @@ -225,261 +204,253 @@ void Config::SetConfigOptions() // File Structure related options /*! @brief OUTPUT_DIR \n DESCRIPTION: Relative Directory of output files \n DEFAULT "/out" @ingroup Config.*/ - AddStringOption("OUTPUT_DIR", _outputDir, string("/out")); + AddStringOption( "OUTPUT_DIR", _outputDir, string( "/out" ) ); /*! @brief OUTPUT_FILE \n DESCRIPTION: Name of output file \n DEFAULT "output" @ingroup Config.*/ - AddStringOption("OUTPUT_FILE", _outputFile, string("output")); + AddStringOption( "OUTPUT_FILE", _outputFile, string( "output" ) ); /*! @brief LOG_DIR \n DESCRIPTION: Relative Directory of log files \n DEFAULT "/out" @ingroup Config.*/ - AddStringOption("LOG_DIR", _logDir, string("/out/logs")); + AddStringOption( "LOG_DIR", _logDir, string( "/out/logs" ) ); /*! @brief LOG_DIR \n DESCRIPTION: Name of log files \n DEFAULT "/out" @ingroup Config.*/ - AddStringOption("LOG_FILE", _logFileName, string("use_date")); + AddStringOption( "LOG_FILE", _logFileName, string( "use_date" ) ); /*! @brief MESH_FILE \n DESCRIPTION: Name of mesh file \n DEFAULT "" \ingroup Config.*/ - AddStringOption("MESH_FILE", _meshFile, string("mesh.su2")); + AddStringOption( "MESH_FILE", _meshFile, string( "mesh.su2" ) ); /*! @brief MESH_FILE \n DESCRIPTION: Name of mesh file \n DEFAULT "" \ingroup Config.*/ - AddStringOption("CT_FILE", _ctFile, string("/home/pia/kitrt/examples/meshes/phantom.png")); + AddStringOption( "CT_FILE", _ctFile, string( "/home/pia/kitrt/examples/meshes/phantom.png" ) ); // Quadrature relatated options /*! @brief QUAD_TYPE \n DESCRIPTION: Type of Quadrature rule \n Options: see @link QUAD_NAME \endlink \n DEFAULT: QUAD_MonteCarlo * \ingroup Config */ - AddEnumOption("QUAD_TYPE", _quadName, Quadrature_Map, QUAD_MonteCarlo); + AddEnumOption( "QUAD_TYPE", _quadName, Quadrature_Map, QUAD_MonteCarlo ); /*!\brief QUAD_ORDER \n DESCRIPTION: Order of Quadrature rule \n DEFAULT 2 \ingroup Config.*/ - AddUnsignedShortOption("QUAD_ORDER", _quadOrder, 1); + AddUnsignedShortOption( "QUAD_ORDER", _quadOrder, 1 ); // Solver related options /*! @brief MAX_MOMENT_ORDER \n: DESCRIPTON: Specifies the maximal order of Moments for PN and SN Solver */ - AddUnsignedShortOption("MAX_MOMENT_SOLVER", _maxMomentDegree, 1); + AddUnsignedShortOption( "MAX_MOMENT_SOLVER", _maxMomentDegree, 1 ); /*! @brief CFL \n DESCRIPTION: CFL number \n DEFAULT 1.0 @ingroup Config.*/ - AddDoubleOption("CFL_NUMBER", _CFL, 1.0); + AddDoubleOption( "CFL_NUMBER", _CFL, 1.0 ); /*! @brief TIME_FINAL \n DESCRIPTION: Final time for simulation \n DEFAULT 1.0 @ingroup Config.*/ - AddDoubleOption("TIME_FINAL", _tEnd, 1.0); + AddDoubleOption( "TIME_FINAL", _tEnd, 1.0 ); /*! @brief Problem \n DESCRIPTION: Type of problem setting \n DEFAULT PROBLEM_ElectronRT @ingroup Config.*/ - AddEnumOption("PROBLEM", _problemName, Problem_Map, PROBLEM_Linesource); + AddEnumOption( "PROBLEM", _problemName, Problem_Map, PROBLEM_Linesource ); /*! @brief Solver \n DESCRIPTION: Solver used for problem \n DEFAULT SN_SOLVER @ingroup Config. */ - AddEnumOption("SOLVER", _solverName, Solver_Map, SN_SOLVER); + AddEnumOption( "SOLVER", _solverName, Solver_Map, SN_SOLVER ); /*! @brief RECONS_ORDER \n DESCRIPTION: Reconstruction order for solver (spatial flux) \n DEFAULT 1 \ingroup Config.*/ - AddUnsignedShortOption("RECONS_ORDER", _reconsOrder, 1); + AddUnsignedShortOption( "RECONS_ORDER", _reconsOrder, 1 ); /*! @brief CleanFluxMatrices \n DESCRIPTION: If true, very low entries (10^-10 or smaller) of the flux matrices will be set to zero, * to improve floating point accuracy \n DEFAULT false \ingroup Config */ - AddBoolOption("CLEAN_FLUX_MATRICES", _cleanFluxMat, false); + AddBoolOption( "CLEAN_FLUX_MATRICES", _cleanFluxMat, false ); /*! @brief Realizability Step for MN solver \n DESCRIPTION: If true, MN solvers use a realizability reconstruction step in each time step. Also * applicable in regression sampling \n DEFAULT false \ingroup Config */ - AddBoolOption("REALIZABILITY_RECONSTRUCTION", _realizabilityRecons, false); + AddBoolOption( "REALIZABILITY_RECONSTRUCTION", _realizabilityRecons, false ); /*! @brief Runge Kutta Staes \n DESCRIPTION: Sets number of Runge Kutta Stages for time integration \n DEFAULT 1 \ingroup Config */ - AddUnsignedShortOption("RUNGE_KUTTA_STAGES", _rungeKuttaStages, 1); + AddUnsignedShortOption( "RUNGE_KUTTA_STAGES", _rungeKuttaStages, 1 ); // Problem Relateed Options /*! @brief MaterialDir \n DESCRIPTION: Relative Path to the data directory (used in the ICRU database class), starting from the directory of the * cfg file . \n DEFAULT "../data/material/" \ingroup Config */ - AddStringOption("DATA_DIR", _dataDir, string("../data/")); + AddStringOption( "DATA_DIR", _dataDir, string( "../data/" ) ); /*! @brief HydogenFile \n DESCRIPTION: If the continuous slowing down approximation is used, this referes to the cross section file for hydrogen. * . \n DEFAULT "h.dat" \ingroup Config */ - AddStringOption("HYDROGEN_FILE", _hydrogenFile, string("ENDL_H.txt")); + AddStringOption( "HYDROGEN_FILE", _hydrogenFile, string( "ENDL_H.txt" ) ); /*! @brief OxygenFile \n DESCRIPTION: If the continuous slowing down approximation is used, this referes to the cross section file for oxygen. * . \n DEFAULT "o.dat" \ingroup Config */ - AddStringOption("OXYGEN_FILE", _oxygenFile, string("ENDL_O.txt")); + AddStringOption( "OXYGEN_FILE", _oxygenFile, string( "ENDL_O.txt" ) ); /*! @brief StoppingPowerFile \n DESCRIPTION: Only temporary added. \ingroup Config */ - AddStringOption("STOPPING_POWER_FILE", _stoppingPowerFile, string("stopping_power.txt")); + AddStringOption( "STOPPING_POWER_FILE", _stoppingPowerFile, string( "stopping_power.txt" ) ); /*! @brief SN_ALL_GAUSS_PTS \n DESCRIPTION: If true, the SN Solver uses all Gauss Quadrature Points for 2d. \n DEFAULT false \ingroup Config */ - AddBoolOption("SN_ALL_GAUSS_PTS", _allGaussPts, false); + AddBoolOption( "SN_ALL_GAUSS_PTS", _allGaussPts, false ); // Linesource Testcase Options /*! @brief SCATTER_COEFF \n DESCRIPTION: Sets the scattering coefficient for the Linesource test case. \n DEFAULT 1.0 \ingroup Config */ - AddDoubleOption("SCATTER_COEFF", _sigmaS, 1.0); + AddDoubleOption( "SCATTER_COEFF", _sigmaS, 1.0 ); // Checkerboard Testcase Options /*! @brief SCATTER_COEFF \n DESCRIPTION: Sets the Source magnitude for the checkerboard testcase. \n DEFAULT 1.0 \ingroup Config */ - AddDoubleOption("SOURCE_MAGNITUDE", _magQ, 1.0); + AddDoubleOption( "SOURCE_MAGNITUDE", _magQ, 1.0 ); // CSD related options /*! @brief MAX_ENERGY_CSD \n DESCRIPTION: Sets maximum energy for the CSD simulation.\n DEFAULT \ingroup Config */ - AddDoubleOption("MAX_ENERGY_CSD", _maxEnergyCSD, 5.0); + AddDoubleOption( "MAX_ENERGY_CSD", _maxEnergyCSD, 5.0 ); // Entropy related options /*! @brief Entropy Functional \n DESCRIPTION: Entropy functional used for the MN_Solver \n DEFAULT QUADRTATIC @ingroup Config. */ - AddEnumOption("ENTROPY_FUNCTIONAL", _entropyName, Entropy_Map, QUADRATIC); + AddEnumOption( "ENTROPY_FUNCTIONAL", _entropyName, Entropy_Map, QUADRATIC ); /*! @brief Optimizer Name \n DESCRIPTION: Optimizer used to determine the minimal Entropy reconstruction \n DEFAULT NEWTON \ingroup Config */ - AddEnumOption("ENTROPY_OPTIMIZER", _entropyOptimizerName, Optimizer_Map, NEWTON); + AddEnumOption( "ENTROPY_OPTIMIZER", _entropyOptimizerName, Optimizer_Map, NEWTON ); /*! @brief Sets Flag for dynamic ansatz for normalized mn entropy closure \n DESCRIPTION: True = enable ansatz, False = disable ansatz \n DEFAULT * false \ingroup Config */ - AddBoolOption("ENTROPY_DYNAMIC_CLOSURE", _entropyDynamicClosure, true); + AddBoolOption( "ENTROPY_DYNAMIC_CLOSURE", _entropyDynamicClosure, true ); // Newton optimizer related options /*! @brief Regularization Parameter \n DESCRIPTION: Regularization Parameter for the regularized entropy closure. Must not be negative \n DEFAULT * 1e-2 \ingroup Config */ - AddDoubleOption("REGULARIZER_GAMMA", _regularizerGamma, 1e-2); + AddDoubleOption( "REGULARIZER_GAMMA", _regularizerGamma, 1e-2 ); /*! @brief Newton Optimizer Epsilon \n DESCRIPTION: Convergencce Epsilon for Newton Optimizer \n DEFAULT 1e-3 \ingroup Config */ - AddDoubleOption("NEWTON_EPSILON", _optimizerEpsilon, 0.001); + AddDoubleOption( "NEWTON_EPSILON", _optimizerEpsilon, 0.001 ); /*! @brief Max Iter Newton Optmizers \n DESCRIPTION: Max number of newton iterations \n DEFAULT 10 \ingroup Config */ - AddUnsignedLongOption("NEWTON_ITER", _newtonIter, 1000); + AddUnsignedLongOption( "NEWTON_ITER", _newtonIter, 1000 ); /*! @brief Step Size Newton Optmizers \n DESCRIPTION: Step size for Newton optimizer \n DEFAULT 10 \ingroup Config */ - AddDoubleOption("NEWTON_STEP_SIZE", _newtonStepSize, 1); + AddDoubleOption( "NEWTON_STEP_SIZE", _newtonStepSize, 1 ); /*! @brief Max Iter for line search in Newton Optmizers \n DESCRIPTION: Max number of line search iter for newton optimizer \n DEFAULT 10 * \ingroup Config */ - AddUnsignedLongOption("NEWTON_LINE_SEARCH_ITER", _newtonLineSearchIter, 1000); + AddUnsignedLongOption( "NEWTON_LINE_SEARCH_ITER", _newtonLineSearchIter, 1000 ); /*! @brief Newton Fast mode \n DESCRIPTION: If true, we skip the Newton optimizer for Quadratic entropy and set alpha = u \n DEFAULT false * \ingroup Config */ - AddBoolOption("NEWTON_FAST_MODE", _newtonFastMode, false); + AddBoolOption( "NEWTON_FAST_MODE", _newtonFastMode, false ); // Neural Entropy Closure options /*! @brief Neural Model \n DESCRIPTION: Specifies the neural netwok architecture \n DEFAULT 11 (values: 11=input convex, 12 non-convex) * \ingroup Config */ - AddUnsignedShortOption("NEURAL_MODEL_MK", _neuralModel, 11); + AddUnsignedShortOption( "NEURAL_MODEL_MK", _neuralModel, 11 ); /*! @brief Neural Model Gamma \n DESCRIPTION: Specifies regularization parameter for neural networks \n DEFAULT 0 (values: 0,1,2,3) \ingroup Config */ - AddUnsignedShortOption("NEURAL_MODEL_GAMMA", _neuralGamma, 0); + AddUnsignedShortOption( "NEURAL_MODEL_GAMMA", _neuralGamma, 0 ); /*! @brief NEURAL_MODEL_ENFORCE_ROTATION_SYMMETRY \n DESCRIPTION: Flag to enforce rotational symmetry \n DEFAULT false \ingroup Config */ - AddBoolOption("NEURAL_MODEL_ENFORCE_ROTATION_SYMMETRY", _enforceNeuralRotationalSymmetry, false); + AddBoolOption( "NEURAL_MODEL_ENFORCE_ROTATION_SYMMETRY", _enforceNeuralRotationalSymmetry, false ); // Mesh related options // Boundary Markers /*!\brief BC_DIRICHLET\n DESCRIPTION: Dirichlet wall boundary marker(s) \ingroup Config*/ - AddStringListOption("BC_DIRICHLET", _nMarkerDirichlet, _MarkerDirichlet); - AddStringListOption("BC_NEUMANN", _nMarkerNeumann, _MarkerNeumann); - AddUnsignedShortOption("SPATIAL_DIM", _dim, 3); + AddStringListOption( "BC_DIRICHLET", _nMarkerDirichlet, _MarkerDirichlet ); + AddStringListOption( "BC_NEUMANN", _nMarkerNeumann, _MarkerNeumann ); + AddUnsignedShortOption( "SPATIAL_DIM", _dim, 3 ); /*! @brief Scattering kernel \n DESCRIPTION: Describes used scattering kernel \n DEFAULT KERNEL_Isotropic \ingroup Config */ - AddEnumOption("KERNEL", _kernelName, Kernel_Map, KERNEL_Isotropic); + AddEnumOption( "KERNEL", _kernelName, Kernel_Map, KERNEL_Isotropic ); /*! @brief Spherical Basis \n DESCRIPTION: Describes the chosen set of basis functions for on the unit sphere (e.g. for Moment methods) \n DEFAULT * SPHERICAL_HARMONICS \ingroup Config */ - AddEnumOption("SPHERICAL_BASIS", _sphericalBasisName, SphericalBasis_Map, SPHERICAL_HARMONICS); + AddEnumOption( "SPHERICAL_BASIS", _sphericalBasisName, SphericalBasis_Map, SPHERICAL_HARMONICS ); // Output related options /*! @brief Volume output \n DESCRIPTION: Describes output groups to write to vtk \ingroup Config */ - AddEnumListOption("VOLUME_OUTPUT", _nVolumeOutput, _volumeOutput, VolOutput_Map); + AddEnumListOption( "VOLUME_OUTPUT", _nVolumeOutput, _volumeOutput, VolOutput_Map ); /*! @brief Volume output Frequency \n DESCRIPTION: Describes output write frequency \n DEFAULT 0 ,i.e. only last value \ingroup Config */ - AddUnsignedShortOption("VOLUME_OUTPUT_FREQUENCY", _volumeOutputFrequency, 0); + AddUnsignedShortOption( "VOLUME_OUTPUT_FREQUENCY", _volumeOutputFrequency, 0 ); /*! @brief Screen output \n DESCRIPTION: Describes screen output fields \ingroup Config */ - AddEnumListOption("SCREEN_OUTPUT", _nScreenOutput, _screenOutput, ScalarOutput_Map); + AddEnumListOption( "SCREEN_OUTPUT", _nScreenOutput, _screenOutput, ScalarOutput_Map ); /*! @brief Screen output Frequency \n DESCRIPTION: Describes screen output write frequency \n DEFAULT 1 \ingroup Config */ - AddUnsignedShortOption("SCREEN_OUTPUT_FREQUENCY", _screenOutputFrequency, 1); + AddUnsignedShortOption( "SCREEN_OUTPUT_FREQUENCY", _screenOutputFrequency, 1 ); /*! @brief History output \n DESCRIPTION: Describes history output fields \ingroup Config */ - AddEnumListOption("HISTORY_OUTPUT", _nHistoryOutput, _historyOutput, ScalarOutput_Map); + AddEnumListOption( "HISTORY_OUTPUT", _nHistoryOutput, _historyOutput, ScalarOutput_Map ); /*! @brief History output Frequency \n DESCRIPTION: Describes history output write frequency \n DEFAULT 1 \ingroup Config */ - AddUnsignedShortOption("HISTORY_OUTPUT_FREQUENCY", _historyOutputFrequency, 1); + AddUnsignedShortOption( "HISTORY_OUTPUT_FREQUENCY", _historyOutputFrequency, 1 ); // Data generator related options /*! @brief Choice of sampling method \n DESCRIPTION: Choose between creating a regression and a classification dataset. \ingroup Config */ - AddEnumOption("SAMPLER_NAME", _sampler, SamplerName_MAP, REGRESSION_SAMPLER); + AddEnumOption( "SAMPLER_NAME", _sampler, SamplerName_MAP, REGRESSION_SAMPLER ); /*! @brief Size of training data set \n DESCRIPTION: Size of training data set \n DEFAULT 1 \ingroup Config */ - AddUnsignedLongOption("TRAINING_SET_SIZE", _tainingSetSize, 1); + AddUnsignedLongOption( "TRAINING_SET_SIZE", _tainingSetSize, 1 ); /*! @brief Determines, if TRAINING_SET_SIZE is counted by dimension \n DESCRIPTION: Determines, if TRAINING_SET_SIZE is counted by dimension \n * DEFAULT true \ingroup Config */ - AddBoolOption("SIZE_BY_DIMENSION", _sizeByDimension, true); + AddBoolOption( "SIZE_BY_DIMENSION", _sizeByDimension, true ); /*! @brief Size of training data set \n DESCRIPTION: Size of training data set \n DEFAULT 10 \ingroup Config */ - AddUnsignedLongOption("MAX_VALUE_FIRST_MOMENT", _maxValFirstMoment, 10); + AddUnsignedLongOption( "MAX_VALUE_FIRST_MOMENT", _maxValFirstMoment, 10 ); /*! @brief Data generator mode \n DESCRIPTION: Check, if data generator mode is active. If yes, no solver is called, but instead the data * generator is executed \n DEFAULT false \ingroup Config */ - AddBoolOption("DATA_GENERATOR_MODE", _dataGeneratorMode, false); + AddBoolOption( "DATA_GENERATOR_MODE", _dataGeneratorMode, false ); /*! @brief Distance to 0 of the sampled moments to the boundary of the realizable set \n DESCRIPTION: Distance to the boundary of the * realizable set \n DEFAULT 0.1 \ingroup Config */ - AddDoubleOption("REALIZABLE_SET_EPSILON_U0", _RealizableSetEpsilonU0, 0.1); + AddDoubleOption( "REALIZABLE_SET_EPSILON_U0", _RealizableSetEpsilonU0, 0.1 ); /*! @brief norm(u_1)/u_0 is enforced to be smaller than _RealizableSetEpsilonU1 \n DESCRIPTION: Distance to the boundary of the realizable set \n * DEFAULT 0.1 \ingroup Config */ - AddDoubleOption("REALIZABLE_SET_EPSILON_U1", _RealizableSetEpsilonU1, 0.9); + AddDoubleOption( "REALIZABLE_SET_EPSILON_U1", _RealizableSetEpsilonU1, 0.9 ); /*! @brief Flag for sampling of normalized moments, i.e. u_0 =1 \n DESCRIPTION: Flag for sampling of normalized moments, i.e. u_0 =1 \n * DEFAULT False \ingroup Config */ - AddBoolOption("NORMALIZED_SAMPLING", _normalizedSampling, false); + AddBoolOption( "NORMALIZED_SAMPLING", _normalizedSampling, false ); /*! @brief Flag for sampling the space of Legendre multipliers instead of the moments \n DESCRIPTION: Sample alpha instead of u \n DEFAULT False * \ingroup Config */ - AddBoolOption("ALPHA_SAMPLING", _alphaSampling, false); + AddBoolOption( "ALPHA_SAMPLING", _alphaSampling, false ); /*! @brief Switch for sampling distribution \n DESCRIPTION: Uniform (true) or trunctaded normal (false) \n DEFAULT true * \ingroup Config */ - AddBoolOption("UNIFORM_SAMPLING", _sampleUniform, true); + AddBoolOption( "UNIFORM_SAMPLING", _sampleUniform, true ); /*! @brief Boundary for the sampling region of the Lagrange multipliers \n DESCRIPTION: Norm sampling boundary for alpha \n DEFAULT 20.0 * \ingroup Config */ - AddDoubleOption("ALPHA_SAMPLING_BOUND", _alphaBound, 20.0); + AddDoubleOption( "ALPHA_SAMPLING_BOUND", _alphaBound, 20.0 ); /*! @brief Rejection sampling threshold based on the minimal Eigenvalue of the Hessian of the entropy functions \n DESCRIPTION: Rejection * sampling threshold \n DEFAULT 1e-8 \ingroup Config */ - AddDoubleOption("MIN_EIGENVALUE_THRESHOLD", _minEVAlphaSampling, 1e-8); + AddDoubleOption( "MIN_EIGENVALUE_THRESHOLD", _minEVAlphaSampling, 1e-8 ); /*! @brief Boundary for the velocity integral \n DESCRIPTION: Upper boundary for the velocity integral \n DEFAULT 5.0 * \ingroup Config */ - AddDoubleOption("MAX_VELOCITY", _maxSamplingVelocity, 5.0); + AddDoubleOption( "MAX_VELOCITY", _maxSamplingVelocity, 5.0 ); ///*! @brief Boundary for the velocity integral \n DESCRIPTION: Lower boundary for the velocity integral \n DEFAULT 5.0 * \ingroup Config */ // AddDoubleOption( "MIN_VELOCITY", _minSamplingVelocity, -5.0 ); /*! @brief Boundary for the sampling temperature \n DESCRIPTION: Upper boundary for the sampling temperature \n DEFAULT 1.0 * \ingroup Config */ - AddDoubleOption("MAX_TEMPERATURE", _maxSamplingTemperature, 1); + AddDoubleOption( "MAX_TEMPERATURE", _maxSamplingTemperature, 1 ); /*! @brief Boundary for the sampling temperature \n DESCRIPTION: Lower boundary for the sampling temperature \n DEFAULT 0.1 * \ingroup Config */ - AddDoubleOption("MIN_TEMPERATURE", _minSamplingTemperature, 0.1); + AddDoubleOption( "MIN_TEMPERATURE", _minSamplingTemperature, 0.1 ); /*! @brief Number of temperature samples \n DESCRIPTION: Number of temperature samples for the sampler \n DEFAULT 10 * \ingroup Config */ - AddUnsignedShortOption("N_TEMPERATURES", _nTemperatures, 10); + AddUnsignedShortOption( "N_TEMPERATURES", _nTemperatures, 10 ); } -void Config::SetConfigParsing(string case_filename) -{ +void Config::SetConfigParsing( string case_filename ) { string text_line, option_name; ifstream case_file; vector option_value; /*--- Read the configuration file ---*/ - case_file.open(case_filename, ios::in); + case_file.open( case_filename, ios::in ); - if (case_file.fail()) - { - ErrorMessages::Error("The configuration file (.cfg) is missing!!", CURRENT_FUNCTION); + if( case_file.fail() ) { + ErrorMessages::Error( "The configuration file (.cfg) is missing!!", CURRENT_FUNCTION ); } string errorString; - int err_count = 0; // How many errors have we found in the config file - int max_err_count = 30; // Maximum number of errors to print before stopping + int err_count = 0; // How many errors have we found in the config file + int max_err_count = 30; // Maximum number of errors to print before stopping map included_options; /*--- Parse the configuration file and set the options ---*/ - while (getline(case_file, text_line)) - { + while( getline( case_file, text_line ) ) { - if (err_count >= max_err_count) - { - errorString.append("too many errors. Stopping parse"); + if( err_count >= max_err_count ) { + errorString.append( "too many errors. Stopping parse" ); cout << errorString << endl; - throw(1); + throw( 1 ); } - if (TokenizeString(text_line, option_name, option_value)) - { + if( TokenizeString( text_line, option_name, option_value ) ) { /*--- See if it's a python option ---*/ - if (_optionMap.find(option_name) == _optionMap.end()) - { + if( _optionMap.find( option_name ) == _optionMap.end() ) { string newString; - newString.append(option_name); - newString.append(": invalid option name"); - newString.append(". Check current KiT-RT options in config_template.cfg."); - newString.append("\n"); - errorString.append(newString); + newString.append( option_name ); + newString.append( ": invalid option name" ); + newString.append( ". Check current KiT-RT options in config_template.cfg." ); + newString.append( "\n" ); + errorString.append( newString ); err_count++; continue; } /*--- Option exists, check if the option has already been in the config file ---*/ - if (included_options.find(option_name) != included_options.end()) - { + if( included_options.find( option_name ) != included_options.end() ) { string newString; - newString.append(option_name); - newString.append(": option appears twice"); - newString.append("\n"); - errorString.append(newString); + newString.append( option_name ); + newString.append( ": option appears twice" ); + newString.append( "\n" ); + errorString.append( newString ); err_count++; continue; } /*--- New found option. Add it to the map, and delete from all options ---*/ - included_options.insert(pair(option_name, true)); - _allOptions.erase(option_name); + included_options.insert( pair( option_name, true ) ); + _allOptions.erase( option_name ); /*--- Set the value and check error ---*/ - string out = _optionMap[option_name]->SetValue(option_value); - if (out.compare("") != 0) - { - errorString.append(out); - errorString.append("\n"); + string out = _optionMap[option_name]->SetValue( option_value ); + if( out.compare( "" ) != 0 ) { + errorString.append( out ); + errorString.append( "\n" ); err_count++; } } @@ -487,82 +458,67 @@ void Config::SetConfigParsing(string case_filename) /*--- See if there were any errors parsing the config file ---*/ - if (errorString.size() != 0) - { - ErrorMessages::ParsingError(errorString, CURRENT_FUNCTION); + if( errorString.size() != 0 ) { + ErrorMessages::ParsingError( errorString, CURRENT_FUNCTION ); } case_file.close(); } -void Config::SetPointersNull(void) -{ +void Config::SetPointersNull( void ) { // All pointer valued options should be set to NULL here } -void Config::SetPostprocessing() -{ +void Config::SetPostprocessing() { // append '/' to all dirs to allow for simple path addition - if (_logDir[_logDir.size() - 1] != '/') - _logDir.append("/"); - if (_outputDir[_outputDir.size() - 1] != '/') - _outputDir.append("/"); - if (_inputDir[_inputDir.size() - 1] != '/') - _inputDir.append("/"); + if( _logDir[_logDir.size() - 1] != '/' ) _logDir.append( "/" ); + if( _outputDir[_outputDir.size() - 1] != '/' ) _outputDir.append( "/" ); + if( _inputDir[_inputDir.size() - 1] != '/' ) _inputDir.append( "/" ); // setup relative paths - _logDir = std::filesystem::path(_inputDir).append(_logDir).lexically_normal(); - _outputDir = std::filesystem::path(_inputDir).append(_outputDir).lexically_normal(); - _meshFile = std::filesystem::path(_inputDir).append(_meshFile).lexically_normal(); - _outputFile = std::filesystem::path(_outputDir).append(_outputFile).lexically_normal(); - _ctFile = std::filesystem::path(_inputDir).append(_ctFile).lexically_normal(); - _hydrogenFile = std::filesystem::path(_inputDir).append(_hydrogenFile).lexically_normal(); - _oxygenFile = std::filesystem::path(_inputDir).append(_oxygenFile).lexically_normal(); - _stoppingPowerFile = std::filesystem::path(_inputDir).append(_stoppingPowerFile).lexically_normal(); - _dataDir = std::filesystem::path(_inputDir).append(_dataDir).lexically_normal(); + _logDir = std::filesystem::path( _inputDir ).append( _logDir ).lexically_normal(); + _outputDir = std::filesystem::path( _inputDir ).append( _outputDir ).lexically_normal(); + _meshFile = std::filesystem::path( _inputDir ).append( _meshFile ).lexically_normal(); + _outputFile = std::filesystem::path( _outputDir ).append( _outputFile ).lexically_normal(); + _ctFile = std::filesystem::path( _inputDir ).append( _ctFile ).lexically_normal(); + _hydrogenFile = std::filesystem::path( _inputDir ).append( _hydrogenFile ).lexically_normal(); + _oxygenFile = std::filesystem::path( _inputDir ).append( _oxygenFile ).lexically_normal(); + _stoppingPowerFile = std::filesystem::path( _inputDir ).append( _stoppingPowerFile ).lexically_normal(); + _dataDir = std::filesystem::path( _inputDir ).append( _dataDir ).lexically_normal(); // create directories if they dont exist - if (!std::filesystem::exists(_outputDir)) - std::filesystem::create_directory(_outputDir); + if( !std::filesystem::exists( _outputDir ) ) std::filesystem::create_directory( _outputDir ); // init logger InitLogger(); // Regroup Boundary Conditions to std::vector> _boundaries; - for (int i = 0; i < _nMarkerDirichlet; i++) - { - _boundaries.push_back(std::pair(_MarkerDirichlet[i], DIRICHLET)); + for( int i = 0; i < _nMarkerDirichlet; i++ ) { + _boundaries.push_back( std::pair( _MarkerDirichlet[i], DIRICHLET ) ); } - for (int i = 0; i < _nMarkerNeumann; i++) - { - _boundaries.push_back(std::pair(_MarkerNeumann[i], NEUMANN)); + for( int i = 0; i < _nMarkerNeumann; i++ ) { + _boundaries.push_back( std::pair( _MarkerNeumann[i], NEUMANN ) ); } // Set option ISCSD - switch (_solverName) - { - case CSD_SN_SOLVER: // Fallthrough - case CSD_PN_SOLVER: // Fallthrough - case CSD_MN_SOLVER: // Fallthrough - _csd = true; - break; - default: - _csd = false; + switch( _solverName ) { + case CSD_SN_SOLVER: // Fallthrough + case CSD_PN_SOLVER: // Fallthrough + case CSD_MN_SOLVER: // Fallthrough + _csd = true; + break; + default: _csd = false; } // Set option MomentSolver - switch (_solverName) - { - case MN_SOLVER: - case MN_SOLVER_NORMALIZED: - case CSD_MN_SOLVER: - case PN_SOLVER: - case CSD_PN_SOLVER: - _isMomentSolver = true; - break; - default: - _isMomentSolver = false; + switch( _solverName ) { + case MN_SOLVER: + case MN_SOLVER_NORMALIZED: + case CSD_MN_SOLVER: + case PN_SOLVER: + case CSD_PN_SOLVER: _isMomentSolver = true; break; + default: _isMomentSolver = false; } // Check, if mesh file exists @@ -579,61 +535,54 @@ void Config::SetPostprocessing() // Quadrature Postprocessing { - QuadratureBase *quad = QuadratureBase::Create(this); + QuadratureBase* quad = QuadratureBase::Create( this ); std::vector supportedDims = quad->GetSupportedDims(); - if (std::find(supportedDims.begin(), supportedDims.end(), _dim) == supportedDims.end()) - { + if( std::find( supportedDims.begin(), supportedDims.end(), _dim ) == supportedDims.end() ) { // Dimension not supported - std::string msg = "Chosen spatial dimension not supported for this Quadrature.\nChosen spatial dimension " + std::to_string(_dim) + "."; - ErrorMessages::Error(msg, CURRENT_FUNCTION); + std::string msg = "Chosen spatial dimension not supported for this Quadrature.\nChosen spatial dimension " + std::to_string( _dim ) + "."; + ErrorMessages::Error( msg, CURRENT_FUNCTION ); } delete quad; } // Optimizer Postprocessing { - if ((_entropyOptimizerName == REDUCED_NEWTON || _entropyOptimizerName == REDUCED_PART_REGULARIZED_NEWTON) && - _entropyName != MAXWELL_BOLTZMANN) - { - std::string msg = "Reduction of the optimization problen only possible with Maxwell Boltzmann Entropy" + std::to_string(_dim) + "."; - ErrorMessages::Error(msg, CURRENT_FUNCTION); + if( ( _entropyOptimizerName == REDUCED_NEWTON || _entropyOptimizerName == REDUCED_PART_REGULARIZED_NEWTON ) && + _entropyName != MAXWELL_BOLTZMANN ) { + std::string msg = "Reduction of the optimization problen only possible with Maxwell Boltzmann Entropy" + std::to_string( _dim ) + "."; + ErrorMessages::Error( msg, CURRENT_FUNCTION ); } } // --- Solver setup --- { - if (GetSolverName() == PN_SOLVER && GetSphericalBasisName() != SPHERICAL_HARMONICS) - { + if( GetSolverName() == PN_SOLVER && GetSphericalBasisName() != SPHERICAL_HARMONICS ) { ErrorMessages::Error( "PN Solver only works with spherical harmonics basis.\nThis should be the default setting for option SPHERICAL_BASIS.", - CURRENT_FUNCTION); + CURRENT_FUNCTION ); } - if (GetSolverName() == CSD_MN_SOLVER && GetSphericalBasisName() != SPHERICAL_HARMONICS) - { - ErrorMessages::Error("CSD_MN_SOLVER only works with Spherical Harmonics currently.", CURRENT_FUNCTION); + if( GetSolverName() == CSD_MN_SOLVER && GetSphericalBasisName() != SPHERICAL_HARMONICS ) { + ErrorMessages::Error( "CSD_MN_SOLVER only works with Spherical Harmonics currently.", CURRENT_FUNCTION ); } - if (GetReconsOrder() > 2) - { - ErrorMessages::Error("Solvers only work with 1st and 2nd order spatial fluxes.", CURRENT_FUNCTION); + if( GetReconsOrder() > 2 ) { + ErrorMessages::Error( "Solvers only work with 1st and 2nd order spatial fluxes.", CURRENT_FUNCTION ); } - if (GetOptimizerName() == ML && GetSolverName() != MN_SOLVER_NORMALIZED) - { - ErrorMessages::Error("ML Optimizer only works with normalized MN Solver.", CURRENT_FUNCTION); + if( GetOptimizerName() == ML && GetSolverName() != MN_SOLVER_NORMALIZED ) { + ErrorMessages::Error( "ML Optimizer only works with normalized MN Solver.", CURRENT_FUNCTION ); } - if (GetSolverName() == PN_SOLVER || GetSolverName() == CSD_PN_SOLVER) - { - _dim = 3; - auto log = spdlog::get("event"); - auto logCSV = spdlog::get("tabular"); + if( GetSolverName() == PN_SOLVER || GetSolverName() == CSD_PN_SOLVER ) { + _dim = 3; + auto log = spdlog::get( "event" ); + auto logCSV = spdlog::get( "tabular" ); log->info( - "| Spherical harmonics based solver currently use 3D Spherical functions and a projection. Thus spatial dimension is set to 3."); + "| Spherical harmonics based solver currently use 3D Spherical functions and a projection. Thus spatial dimension is set to 3." ); logCSV->info( - "| Spherical harmonics based solver currently use 3D Spherical functions and a projection. Thus spatial dimension is set to 3."); + "| Spherical harmonics based solver currently use 3D Spherical functions and a projection. Thus spatial dimension is set to 3." ); } } @@ -644,126 +593,108 @@ void Config::SetPostprocessing() // Check for doublicates in VOLUME OUTPUT std::map dublicate_map; - for (unsigned short idx_volOutput = 0; idx_volOutput < _nVolumeOutput; idx_volOutput++) - { - std::map::iterator it = dublicate_map.find(_volumeOutput[idx_volOutput]); - if (it == dublicate_map.end()) - { - dublicate_map.insert(std::pair(_volumeOutput[idx_volOutput], 0)); + for( unsigned short idx_volOutput = 0; idx_volOutput < _nVolumeOutput; idx_volOutput++ ) { + std::map::iterator it = dublicate_map.find( _volumeOutput[idx_volOutput] ); + if( it == dublicate_map.end() ) { + dublicate_map.insert( std::pair( _volumeOutput[idx_volOutput], 0 ) ); } - else - { + else { it->second++; } } - for (auto &e : dublicate_map) - { - if (e.second > 0) - { - ErrorMessages::Error("Each output group for option VOLUME_OUTPUT can only be set once.\nPlease check your .cfg file.", - CURRENT_FUNCTION); + for( auto& e : dublicate_map ) { + if( e.second > 0 ) { + ErrorMessages::Error( "Each output group for option VOLUME_OUTPUT can only be set once.\nPlease check your .cfg file.", + CURRENT_FUNCTION ); } } // Check, if the choice of volume output is compatible to the solver std::vector supportedGroups; - for (unsigned short idx_volOutput = 0; idx_volOutput < _nVolumeOutput; idx_volOutput++) - { - switch (_solverName) - { - case SN_SOLVER: - if (_problemName == PROBLEM_SymmetricHohlraum) - supportedGroups = {MINIMAL, ANALYTIC, MOMENT_TIME_TRACE}; - else - supportedGroups = {MINIMAL, ANALYTIC}; + for( unsigned short idx_volOutput = 0; idx_volOutput < _nVolumeOutput; idx_volOutput++ ) { + switch( _solverName ) { + case SN_SOLVER: + if( _problemName == PROBLEM_SymmetricHohlraum ) + supportedGroups = { MINIMAL, ANALYTIC }; + else + supportedGroups = { MINIMAL, ANALYTIC }; + + if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { + ErrorMessages::Error( "SN_SOLVER only supports volume output MINIMAL and ANALYTIC.\nPlease check your .cfg file.", + CURRENT_FUNCTION ); + } + if( _volumeOutput[idx_volOutput] == ANALYTIC && _problemName != PROBLEM_Linesource ) { + ErrorMessages::Error( "Analytical solution (VOLUME_OUTPUT=ANALYTIC) is only available for the PROBLEM=LINESOURCE.\nPlease " + "check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + case MN_SOLVER: // Fallthrough + case MN_SOLVER_NORMALIZED: + if( _problemName == PROBLEM_SymmetricHohlraum ) + supportedGroups = { MINIMAL, MOMENTS, DUAL_MOMENTS }; + else if( _problemName == PROBLEM_Linesource ) + supportedGroups = { MINIMAL, ANALYTIC, MOMENTS, DUAL_MOMENTS }; + else + supportedGroups = { MINIMAL, MOMENTS, DUAL_MOMENTS }; + if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { + std::string supportedGroupStr = ""; + for( unsigned i = 0; i, supportedGroups.size(); i++ ) { + supportedGroupStr += findKey( VolOutput_Map, supportedGroups[i] ) + ", "; + } + ErrorMessages::Error( "MN_SOLVER supports volume outputs" + supportedGroupStr + ".\nPlease check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + case PN_SOLVER: + supportedGroups = { MINIMAL, MOMENTS, ANALYTIC }; + if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { - if (supportedGroups.end() == std::find(supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput])) - { - ErrorMessages::Error("SN_SOLVER only supports volume output MINIMAL and ANALYTIC.\nPlease check your .cfg file.", - CURRENT_FUNCTION); - } - if (_volumeOutput[idx_volOutput] == ANALYTIC && _problemName != PROBLEM_Linesource) - { - ErrorMessages::Error("Analytical solution (VOLUME_OUTPUT=ANALYTIC) is only available for the PROBLEM=LINESOURCE.\nPlease " - "check your .cfg file.", - CURRENT_FUNCTION); - } - break; - case MN_SOLVER: // Fallthrough - case MN_SOLVER_NORMALIZED: - if (_problemName == PROBLEM_SymmetricHohlraum) - supportedGroups = {MINIMAL, MOMENTS, DUAL_MOMENTS, MOMENT_TIME_TRACE}; - else if (_problemName == PROBLEM_Linesource) - supportedGroups = {MINIMAL, ANALYTIC, MOMENTS, DUAL_MOMENTS}; - else - supportedGroups = {MINIMAL, MOMENTS, DUAL_MOMENTS}; - if (supportedGroups.end() == std::find(supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput])) - { - std::string supportedGroupStr = ""; - for (unsigned i = 0; i, supportedGroups.size(); i++) - { - supportedGroupStr += findKey(VolOutput_Map, supportedGroups[i]) + ", "; + ErrorMessages::Error( "PN_SOLVER only supports volume output ANALYTIC, MINIMAL and MOMENTS.\nPlease check your .cfg file.", + CURRENT_FUNCTION ); } - ErrorMessages::Error( - "MN_SOLVER supports volume outputs" + supportedGroupStr + ".\nPlease check your .cfg file.", - CURRENT_FUNCTION); - } - break; - case PN_SOLVER: - supportedGroups = {MINIMAL, MOMENTS, ANALYTIC}; - if (supportedGroups.end() == std::find(supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput])) - { - - ErrorMessages::Error("PN_SOLVER only supports volume output ANALYTIC, MINIMAL and MOMENTS.\nPlease check your .cfg file.", - CURRENT_FUNCTION); - } - if (_volumeOutput[idx_volOutput] == ANALYTIC && _problemName != PROBLEM_Linesource) - { - ErrorMessages::Error("Analytical solution (VOLUME_OUTPUT=ANALYTIC) is only available for the PROBLEM=LINESOURCE.\nPlease " - "check your .cfg file.", - CURRENT_FUNCTION); - } - break; - case CSD_SN_SOLVER: - supportedGroups = {MINIMAL, MEDICAL}; - if (supportedGroups.end() == std::find(supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput])) - { - - ErrorMessages::Error("CSD_SN_SOLVER types only supports volume output MEDICAL and MINIMAL.\nPlease check your .cfg file.", - CURRENT_FUNCTION); - } - break; - case CSD_PN_SOLVER: - supportedGroups = {MINIMAL, MEDICAL, MOMENTS}; - if (supportedGroups.end() == std::find(supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput])) - { - - ErrorMessages::Error( - "CSD_PN_SOLVER types only supports volume output MEDICAL, MOMENTS and MINIMAL.\nPlease check your .cfg file.", - CURRENT_FUNCTION); - } - break; - case CSD_MN_SOLVER: - supportedGroups = {MINIMAL, MEDICAL, MOMENTS, DUAL_MOMENTS}; - if (supportedGroups.end() == std::find(supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput])) - { - - ErrorMessages::Error("CSD_MN_SOLVER types only supports volume output MEDICAL, MOMENTS, DUAL_MOMENTS and MINIMAL.\nPlease " - "check your .cfg file.", - CURRENT_FUNCTION); - } - break; - default: - ErrorMessages::Error("Solver output check not implemented for this Solver.\nThis is the fault of the coder.", CURRENT_FUNCTION); + if( _volumeOutput[idx_volOutput] == ANALYTIC && _problemName != PROBLEM_Linesource ) { + ErrorMessages::Error( "Analytical solution (VOLUME_OUTPUT=ANALYTIC) is only available for the PROBLEM=LINESOURCE.\nPlease " + "check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + case CSD_SN_SOLVER: + supportedGroups = { MINIMAL, MEDICAL }; + if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { + + ErrorMessages::Error( "CSD_SN_SOLVER types only supports volume output MEDICAL and MINIMAL.\nPlease check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + case CSD_PN_SOLVER: + supportedGroups = { MINIMAL, MEDICAL, MOMENTS }; + if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { + + ErrorMessages::Error( + "CSD_PN_SOLVER types only supports volume output MEDICAL, MOMENTS and MINIMAL.\nPlease check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + case CSD_MN_SOLVER: + supportedGroups = { MINIMAL, MEDICAL, MOMENTS, DUAL_MOMENTS }; + if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { + + ErrorMessages::Error( "CSD_MN_SOLVER types only supports volume output MEDICAL, MOMENTS, DUAL_MOMENTS and MINIMAL.\nPlease " + "check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + default: + ErrorMessages::Error( "Solver output check not implemented for this Solver.\nThis is the fault of the coder.", CURRENT_FUNCTION ); } } // Set default volume output - if (_nVolumeOutput == 0) - { // If no specific output is chosen, use "MINIMAL" + if( _nVolumeOutput == 0 ) { // If no specific output is chosen, use "MINIMAL" _nVolumeOutput = 1; - _volumeOutput.push_back(MINIMAL); + _volumeOutput.push_back( MINIMAL ); } } @@ -772,89 +703,120 @@ void Config::SetPostprocessing() // Check for doublicates in SCALAR OUTPUT std::map dublicate_map; - for (unsigned short idx_screenOutput = 0; idx_screenOutput < _nScreenOutput; idx_screenOutput++) - { - std::map::iterator it = dublicate_map.find(_screenOutput[idx_screenOutput]); - if (it == dublicate_map.end()) - { - dublicate_map.insert(std::pair(_screenOutput[idx_screenOutput], 0)); + for( unsigned short idx_screenOutput = 0; idx_screenOutput < _nScreenOutput; idx_screenOutput++ ) { + std::map::iterator it = dublicate_map.find( _screenOutput[idx_screenOutput] ); + if( it == dublicate_map.end() ) { + dublicate_map.insert( std::pair( _screenOutput[idx_screenOutput], 0 ) ); } - else - { + else { it->second++; } } - for (auto &e : dublicate_map) - { - if (e.second > 0) - { - ErrorMessages::Error("Each output field for option SCREEN_OUTPUT can only be set once.\nPlease check your .cfg file.", - CURRENT_FUNCTION); + for( auto& e : dublicate_map ) { + if( e.second > 0 ) { + ErrorMessages::Error( "Each output field for option SCREEN_OUTPUT can only be set once.\nPlease check your .cfg file.", + CURRENT_FUNCTION ); } } // Check if the choice of screen output is compatible to the problem - for (unsigned short idx_screenOutput = 0; idx_screenOutput < _nScreenOutput; idx_screenOutput++) - { + for( unsigned short idx_screenOutput = 0; idx_screenOutput < _nScreenOutput; idx_screenOutput++ ) { std::vector legalOutputs; std::vector::iterator it; - switch (_problemName) - { - case PROBLEM_Lattice: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION}; - it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); - if (it == legalOutputs.end()) - { - std::string foundKey = findKey(ScalarOutput_Map, _screenOutput[idx_screenOutput]); - ErrorMessages::Error("Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION\n" - "Please check your .cfg file.", - CURRENT_FUNCTION); - } - break; - case PROBLEM_SymmetricHohlraum: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL}; - it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); - - if (it == legalOutputs.end()) - { - std::string foundKey = findKey(ScalarOutput_Map, _screenOutput[idx_screenOutput]); - ErrorMessages::Error("Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL\n" - "Please check your .cfg file.", - CURRENT_FUNCTION); - } - break; - default: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT}; - it = std::find(legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput]); - - if (it == legalOutputs.end()) - { - std::string foundKey = findKey(ScalarOutput_Map, _screenOutput[idx_screenOutput]); - ErrorMessages::Error("Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT\n" - "Please check your .cfg file.", - CURRENT_FUNCTION); - } - break; + switch( _problemName ) { + case PROBLEM_Lattice: + legalOutputs = { ITER, + MASS, + RMS_FLUX, + VTK_OUTPUT, + CSV_OUTPUT, + CUR_OUTFLOW, + TOTAL_OUTFLOW, + MAX_OUTFLOW, + CUR_PARTICLE_ABSORPTION, + TOTAL_PARTICLE_ABSORPTION, + MAX_PARTICLE_ABSORPTION }; + it = std::find( legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput] ); + if( it == legalOutputs.end() ) { + std::string foundKey = findKey( ScalarOutput_Map, _screenOutput[idx_screenOutput] ); + ErrorMessages::Error( + "Illegal output field <" + foundKey + + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, " + "FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION\n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + case PROBLEM_SymmetricHohlraum: + legalOutputs = { ITER, + MASS, + RMS_FLUX, + VTK_OUTPUT, + CSV_OUTPUT, + CUR_OUTFLOW, + TOTAL_OUTFLOW, + MAX_OUTFLOW, + TOTAL_PARTICLE_ABSORPTION_CENTER, + TOTAL_PARTICLE_ABSORPTION_VERTICAL, + TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, + PROBE_MOMENT_TIME_TRACE }; + it = std::find( legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput] ); + + if( it == legalOutputs.end() ) { + std::string foundKey = findKey( ScalarOutput_Map, _screenOutput[idx_screenOutput] ); + ErrorMessages::Error( + "Illegal output field <" + foundKey + + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, \n" + "TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, CUR_OUTFLOW, \n " + "TOTAL_OUTFLOW, MAX_OUTFLOW \n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + default: + legalOutputs = { ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW }; + it = std::find( legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput] ); + + if( it == legalOutputs.end() ) { + std::string foundKey = findKey( ScalarOutput_Map, _screenOutput[idx_screenOutput] ); + ErrorMessages::Error( + "Illegal output field <" + foundKey + + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW \n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; } } // Set ITER always to index 0 . Assume only one instance of iter is chosen - if (_nScreenOutput > 0) - { + if( _nScreenOutput > 0 ) { std::vector::iterator it; - it = find(_screenOutput.begin(), _screenOutput.end(), ITER); - _screenOutput.erase(it); - _screenOutput.insert(_screenOutput.begin(), ITER); + it = find( _screenOutput.begin(), _screenOutput.end(), ITER ); + _screenOutput.erase( it ); + _screenOutput.insert( _screenOutput.begin(), ITER ); } // Set default screen output - if (_nScreenOutput == 0) - { + if( _nScreenOutput == 0 ) { _nScreenOutput = 4; - _screenOutput.push_back(ITER); - _screenOutput.push_back(RMS_FLUX); - _screenOutput.push_back(MASS); - _screenOutput.push_back(VTK_OUTPUT); + _screenOutput.push_back( ITER ); + _screenOutput.push_back( RMS_FLUX ); + _screenOutput.push_back( MASS ); + _screenOutput.push_back( VTK_OUTPUT ); + } + + // Postprocessing for probing moments in symmetric Hohlraum. Make it four outputs + if( _problemName == PROBLEM_SymmetricHohlraum ) { + std::vector::iterator it; + + it = find( _screenOutput.begin(), _screenOutput.end(), PROBE_MOMENT_TIME_TRACE ); + + if( it != _screenOutput.end() ) { + _screenOutput.erase( it ); + _nScreenOutput += 3; // extend the screen output by the number of probing points + for( unsigned i = 0; i < 4; i++ ) _screenOutput.push_back( PROBE_MOMENT_TIME_TRACE ); + } } } @@ -863,302 +825,294 @@ void Config::SetPostprocessing() // Check for doublicates in HISTORY OUTPUT std::map dublicate_map; - for (unsigned short idx_screenOutput = 0; idx_screenOutput < _nHistoryOutput; idx_screenOutput++) - { - std::map::iterator it = dublicate_map.find(_historyOutput[idx_screenOutput]); - if (it == dublicate_map.end()) - { - dublicate_map.insert(std::pair(_historyOutput[idx_screenOutput], 0)); + for( unsigned short idx_screenOutput = 0; idx_screenOutput < _nHistoryOutput; idx_screenOutput++ ) { + std::map::iterator it = dublicate_map.find( _historyOutput[idx_screenOutput] ); + if( it == dublicate_map.end() ) { + dublicate_map.insert( std::pair( _historyOutput[idx_screenOutput], 0 ) ); } - else - { + else { it->second++; } } - for (auto &e : dublicate_map) - { - if (e.second > 0) - { - ErrorMessages::Error("Each output field for option HISTORY_OUTPUT can only be set once.\nPlease check your .cfg file.", - CURRENT_FUNCTION); + for( auto& e : dublicate_map ) { + if( e.second > 0 ) { + ErrorMessages::Error( "Each output field for option HISTORY_OUTPUT can only be set once.\nPlease check your .cfg file.", + CURRENT_FUNCTION ); } } // Check if the choice of history output is compatible to the problem - for (unsigned short idx_screenOutput = 0; idx_screenOutput < _nHistoryOutput; idx_screenOutput++) - { + for( unsigned short idx_screenOutput = 0; idx_screenOutput < _nHistoryOutput; idx_screenOutput++ ) { std::vector legalOutputs; std::vector::iterator it; - switch (_problemName) - { - case PROBLEM_Lattice: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION}; - it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); - if (it == legalOutputs.end()) - { - std::string foundKey = findKey(ScalarOutput_Map, _historyOutput[idx_screenOutput]); - ErrorMessages::Error("Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION\n" - "Please check your .cfg file.", - CURRENT_FUNCTION); - } - break; - case PROBLEM_SymmetricHohlraum: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL}; - it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); - - if (it == legalOutputs.end()) - { - std::string foundKey = findKey(ScalarOutput_Map, _historyOutput[idx_screenOutput]); - ErrorMessages::Error("Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL\n" - "Please check your .cfg file.", - CURRENT_FUNCTION); - } - break; - default: - legalOutputs = {ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT}; - it = std::find(legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput]); - - if (it == legalOutputs.end()) - { - std::string foundKey = findKey(ScalarOutput_Map, _historyOutput[idx_screenOutput]); - ErrorMessages::Error("Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT\n" - "Please check your .cfg file.", - CURRENT_FUNCTION); - } - break; + switch( _problemName ) { + case PROBLEM_Lattice: + legalOutputs = { ITER, + MASS, + RMS_FLUX, + VTK_OUTPUT, + CSV_OUTPUT, + CUR_OUTFLOW, + TOTAL_OUTFLOW, + MAX_OUTFLOW, + CUR_PARTICLE_ABSORPTION, + TOTAL_PARTICLE_ABSORPTION, + MAX_PARTICLE_ABSORPTION }; + it = std::find( legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput] ); + if( it == legalOutputs.end() ) { + std::string foundKey = findKey( ScalarOutput_Map, _historyOutput[idx_screenOutput] ); + ErrorMessages::Error( + "Illegal output field <" + foundKey + + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW,\n" + "TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION\n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + case PROBLEM_SymmetricHohlraum: + legalOutputs = { ITER, + MASS, + RMS_FLUX, + VTK_OUTPUT, + CSV_OUTPUT, + CUR_OUTFLOW, + TOTAL_OUTFLOW, + MAX_OUTFLOW, + TOTAL_PARTICLE_ABSORPTION_CENTER, + TOTAL_PARTICLE_ABSORPTION_VERTICAL, + TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, + PROBE_MOMENT_TIME_TRACE }; + it = std::find( legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput] ); + + if( it == legalOutputs.end() ) { + std::string foundKey = findKey( ScalarOutput_Map, _historyOutput[idx_screenOutput] ); + ErrorMessages::Error( + "Illegal output field <" + foundKey + + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, \n " + "TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL,PROBE_MOMENT_TIME_TRACE, CUR_OUTFLOW, \n" + "TOTAL_OUTFLOW, MAX_OUTFLOW \n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + default: + legalOutputs = { ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW }; + it = std::find( legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput] ); + + if( it == legalOutputs.end() ) { + std::string foundKey = findKey( ScalarOutput_Map, _historyOutput[idx_screenOutput] ); + ErrorMessages::Error( + "Illegal output field <" + foundKey + + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW \n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; } } // Set ITER always to index 0 . Assume only one instance of iter is chosen - if (_nHistoryOutput > 0) - { + if( _nHistoryOutput > 0 ) { std::vector::iterator it; - it = find(_historyOutput.begin(), _historyOutput.end(), ITER); - _historyOutput.erase(it); - _historyOutput.insert(_historyOutput.begin(), ITER); + it = find( _historyOutput.begin(), _historyOutput.end(), ITER ); + _historyOutput.erase( it ); + _historyOutput.insert( _historyOutput.begin(), ITER ); } // Set default screen output - if (_nHistoryOutput == 0) - { - _nHistoryOutput = 4; - _historyOutput.push_back(ITER); - _historyOutput.push_back(RMS_FLUX); - _historyOutput.push_back(MASS); - _historyOutput.push_back(VTK_OUTPUT); + if( _nHistoryOutput == 0 ) { + _nHistoryOutput = 5; + _historyOutput.push_back( ITER ); + _historyOutput.push_back( MASS ); + _historyOutput.push_back( RMS_FLUX ); + _historyOutput.push_back( VTK_OUTPUT ); + _historyOutput.push_back( CSV_OUTPUT ); + } + + // Postprocessing for probing moments in symmetric Hohlraum. Make it four outputs + if( _problemName == PROBLEM_SymmetricHohlraum ) { + std::vector::iterator it; + it = find( _historyOutput.begin(), _historyOutput.end(), PROBE_MOMENT_TIME_TRACE ); + if( it != _historyOutput.end() ) { + _historyOutput.erase( it ); + _nHistoryOutput += 11; // extend the screen output by the number of probing points + for( unsigned i = 0; i < 12; i++ ) _historyOutput.push_back( PROBE_MOMENT_TIME_TRACE ); + } } } // Mesh postprocessing { - if (_dim < (unsigned short)1 || _dim > (unsigned short)3) - { - std::string msg = "Dimension " + std::to_string(_dim) + "not supported.\n"; - ErrorMessages::Error(msg, CURRENT_FUNCTION); + if( _dim < (unsigned short)1 || _dim > (unsigned short)3 ) { + std::string msg = "Dimension " + std::to_string( _dim ) + "not supported.\n"; + ErrorMessages::Error( msg, CURRENT_FUNCTION ); } } // Data generator postprocessing { - if (_alphaBound <= 0) - { - std::string msg = "Norm boundary for alpha sampling must be positive.\n Current choice: " + std::to_string(_alphaSampling) + + if( _alphaBound <= 0 ) { + std::string msg = "Norm boundary for alpha sampling must be positive.\n Current choice: " + std::to_string( _alphaSampling ) + ". Check choice of ALPHA_SAMPLING_BOUND."; - ErrorMessages::Error(msg, CURRENT_FUNCTION); + ErrorMessages::Error( msg, CURRENT_FUNCTION ); } - if (_minEVAlphaSampling <= 0) - { + if( _minEVAlphaSampling <= 0 ) { std::string msg = - "Minimal Eigenvalue threshold of the entropy hession must be positive.\n Current choice: " + std::to_string(_alphaSampling) + + "Minimal Eigenvalue threshold of the entropy hession must be positive.\n Current choice: " + std::to_string( _alphaSampling ) + ". Check choice of MIN_EIGENVALUE_THRESHOLD."; - ErrorMessages::Error(msg, CURRENT_FUNCTION); + ErrorMessages::Error( msg, CURRENT_FUNCTION ); } } // Optimizer postprocessing { - if (_regularizerGamma <= 0.0) - { - ErrorMessages::Error("REGULARIZER_GAMMA must be positive.", CURRENT_FUNCTION); + if( _regularizerGamma <= 0.0 ) { + ErrorMessages::Error( "REGULARIZER_GAMMA must be positive.", CURRENT_FUNCTION ); } - if (_entropyOptimizerName == ML) - { + if( _entropyOptimizerName == ML ) { // set regularizer gamma to the correct value - switch (_neuralGamma) - { - case 0: - _regularizerGamma = 0; - break; - case 1: - _regularizerGamma = 0.1; - break; - case 2: - _regularizerGamma = 0.01; - break; - case 3: - _regularizerGamma = 0.001; - break; + switch( _neuralGamma ) { + case 0: _regularizerGamma = 0; break; + case 1: _regularizerGamma = 0.1; break; + case 2: _regularizerGamma = 0.01; break; + case 3: _regularizerGamma = 0.001; break; } } - if (_entropyOptimizerName == NEWTON) - { + if( _entropyOptimizerName == NEWTON ) { _regularizerGamma = 0.0; } } } -void Config::SetOutput() -{ +void Config::SetOutput() { // Set Output for settings, i.e. feedback on what has been chosen } -bool Config::TokenizeString(string &str, string &option_name, vector &option_value) -{ - const string delimiters(" (){}:,\t\n\v\f\r"); +bool Config::TokenizeString( string& str, string& option_name, vector& option_value ) { + const string delimiters( " (){}:,\t\n\v\f\r" ); // check for comments or empty string string::size_type pos, last_pos; - pos = str.find_first_of("%"); - if ((str.length() == 0) || (pos == 0)) - { + pos = str.find_first_of( "%" ); + if( ( str.length() == 0 ) || ( pos == 0 ) ) { // str is empty or a comment line, so no option here return false; } - if (pos != string::npos) - { + if( pos != string::npos ) { // remove comment at end if necessary - str.erase(pos); + str.erase( pos ); } // look for line composed on only delimiters (usually whitespace) - pos = str.find_first_not_of(delimiters); - if (pos == string::npos) - { + pos = str.find_first_not_of( delimiters ); + if( pos == string::npos ) { return false; } // find the equals sign and split string string name_part, value_part; - pos = str.find("="); - if (pos == string::npos) - { + pos = str.find( "=" ); + if( pos == string::npos ) { string errmsg = "Error in Config::TokenizeString(): line in the configuration file with no \"=\" sign. "; - errmsg += "\nLook for: \n str.length() = " + std::to_string(str.length()); - spdlog::error(errmsg); - throw(-1); + errmsg += "\nLook for: \n str.length() = " + std::to_string( str.length() ); + spdlog::error( errmsg ); + throw( -1 ); } - name_part = str.substr(0, pos); - value_part = str.substr(pos + 1, string::npos); + name_part = str.substr( 0, pos ); + value_part = str.substr( pos + 1, string::npos ); // the first_part should consist of one string with no interior delimiters - last_pos = name_part.find_first_not_of(delimiters, 0); - pos = name_part.find_first_of(delimiters, last_pos); - if ((name_part.length() == 0) || (last_pos == string::npos)) - { + last_pos = name_part.find_first_not_of( delimiters, 0 ); + pos = name_part.find_first_of( delimiters, last_pos ); + if( ( name_part.length() == 0 ) || ( last_pos == string::npos ) ) { string errmsg = "Error in Config::TokenizeString(): "; errmsg += "line in the configuration file with no name before the \"=\" sign.\n"; - spdlog::error(errmsg); - throw(-1); + spdlog::error( errmsg ); + throw( -1 ); } - if (pos == string::npos) - pos = name_part.length(); - option_name = name_part.substr(last_pos, pos - last_pos); - last_pos = name_part.find_first_not_of(delimiters, pos); - if (last_pos != string::npos) - { + if( pos == string::npos ) pos = name_part.length(); + option_name = name_part.substr( last_pos, pos - last_pos ); + last_pos = name_part.find_first_not_of( delimiters, pos ); + if( last_pos != string::npos ) { string errmsg = "Error in Config::TokenizeString(): "; errmsg += "two or more options before an \"=\" sign in the configuration file."; - spdlog::error(errmsg); - throw(-1); + spdlog::error( errmsg ); + throw( -1 ); } - TextProcessingToolbox::StringToUpperCase(option_name); + TextProcessingToolbox::StringToUpperCase( option_name ); // now fill the option value vector option_value.clear(); - last_pos = value_part.find_first_not_of(delimiters, 0); - pos = value_part.find_first_of(delimiters, last_pos); - while (string::npos != pos || string::npos != last_pos) - { + last_pos = value_part.find_first_not_of( delimiters, 0 ); + pos = value_part.find_first_of( delimiters, last_pos ); + while( string::npos != pos || string::npos != last_pos ) { // add token to the vector - option_value.push_back(value_part.substr(last_pos, pos - last_pos)); + option_value.push_back( value_part.substr( last_pos, pos - last_pos ) ); // skip delimiters - last_pos = value_part.find_first_not_of(delimiters, pos); + last_pos = value_part.find_first_not_of( delimiters, pos ); // find next "non-delimiter" - pos = value_part.find_first_of(delimiters, last_pos); + pos = value_part.find_first_of( delimiters, last_pos ); } - if (option_value.size() == 0) - { + if( option_value.size() == 0 ) { string errmsg = "Error in Config::TokenizeString(): "; errmsg += "option " + option_name + " in configuration file with no value assigned.\n"; - spdlog::error(errmsg); - throw(-1); + spdlog::error( errmsg ); + throw( -1 ); } // look for ';' DV delimiters attached to values vector::iterator it; it = option_value.begin(); - while (it != option_value.end()) - { - if (it->compare(";") == 0) - { + while( it != option_value.end() ) { + if( it->compare( ";" ) == 0 ) { it++; continue; } - pos = it->find(';'); - if (pos != string::npos) - { - string before_semi = it->substr(0, pos); - string after_semi = it->substr(pos + 1, string::npos); - if (before_semi.empty()) - { + pos = it->find( ';' ); + if( pos != string::npos ) { + string before_semi = it->substr( 0, pos ); + string after_semi = it->substr( pos + 1, string::npos ); + if( before_semi.empty() ) { *it = ";"; it++; - option_value.insert(it, after_semi); + option_value.insert( it, after_semi ); } - else - { + else { *it = before_semi; it++; vector to_insert; - to_insert.push_back(";"); - if (!after_semi.empty()) - to_insert.push_back(after_semi); - option_value.insert(it, to_insert.begin(), to_insert.end()); + to_insert.push_back( ";" ); + if( !after_semi.empty() ) to_insert.push_back( after_semi ); + option_value.insert( it, to_insert.begin(), to_insert.end() ); } - it = option_value.begin(); // go back to beginning; not efficient + it = option_value.begin(); // go back to beginning; not efficient continue; } - else - { + else { it++; } } // remove any consecutive ";" - it = option_value.begin(); + it = option_value.begin(); bool semi_at_prev = false; - while (it != option_value.end()) - { - if (semi_at_prev) - { - if (it->compare(";") == 0) - { - option_value.erase(it); - it = option_value.begin(); + while( it != option_value.end() ) { + if( semi_at_prev ) { + if( it->compare( ";" ) == 0 ) { + option_value.erase( it ); + it = option_value.begin(); semi_at_prev = false; continue; } } - if (it->compare(";") == 0) - { + if( it->compare( ";" ) == 0 ) { semi_at_prev = true; } - else - { + else { semi_at_prev = false; } it++; @@ -1167,8 +1121,7 @@ bool Config::TokenizeString(string &str, string &option_name, vector &op return true; } -void Config::InitLogger() -{ +void Config::InitLogger() { // Declare Logger spdlog::level::level_enum terminalLogLvl; @@ -1177,156 +1130,139 @@ void Config::InitLogger() // Choose Logger #ifdef BUILD_TESTING terminalLogLvl = spdlog::level::err; - fileLogLvl = spdlog::level::info; + fileLogLvl = spdlog::level::info; #elif NDEBUG terminalLogLvl = spdlog::level::info; - fileLogLvl = spdlog::level::info; + fileLogLvl = spdlog::level::info; #else terminalLogLvl = spdlog::level::debug; - fileLogLvl = spdlog::level::debug; + fileLogLvl = spdlog::level::debug; #endif // create log dir if not existent - if (!std::filesystem::exists(_logDir)) - { - std::filesystem::create_directory(_logDir); + if( !std::filesystem::exists( _logDir ) ) { + std::filesystem::create_directory( _logDir ); } - if (!spdlog::get("event")) - { + if( !spdlog::get( "event" ) ) { // create sinks if level is not off std::vector sinks; - if (terminalLogLvl != spdlog::level::off) - { + if( terminalLogLvl != spdlog::level::off ) { // create spdlog terminal sink auto terminalSink = std::make_shared(); - terminalSink->set_level(terminalLogLvl); - terminalSink->set_pattern("%v"); - sinks.push_back(terminalSink); + terminalSink->set_level( terminalLogLvl ); + terminalSink->set_pattern( "%v" ); + sinks.push_back( terminalSink ); } - if (fileLogLvl != spdlog::level::off) - { + if( fileLogLvl != spdlog::level::off ) { // define filename on root int pe; - MPI_Comm_rank(MPI_COMM_WORLD, &pe); + MPI_Comm_rank( MPI_COMM_WORLD, &pe ); char cfilename[1024]; - if (pe == 0) - { + if( pe == 0 ) { // get date and time - time_t now = time(nullptr); + time_t now = time( nullptr ); struct tm tstruct; char buf[80]; - tstruct = *localtime(&now); - strftime(buf, sizeof(buf), "%Y-%m-%d_%X", &tstruct); + tstruct = *localtime( &now ); + strftime( buf, sizeof( buf ), "%Y-%m-%d_%X", &tstruct ); // set filename std::string filename; - if (_logFileName.compare("use_date") == 0) - { - _logFileName = buf; // set filename to date and time + if( _logFileName.compare( "use_date" ) == 0 ) { + _logFileName = buf; // set filename to date and time } filename = _logFileName; // in case of existing files append '_#' int ctr = 0; - if (std::filesystem::exists(_logDir + filename)) - { - filename += "_" + std::to_string(++ctr); + if( std::filesystem::exists( _logDir + filename ) ) { + filename += "_" + std::to_string( ++ctr ); } - while (std::filesystem::exists(_logDir + filename)) - { + while( std::filesystem::exists( _logDir + filename ) ) { filename.pop_back(); - filename += std::to_string(++ctr); + filename += std::to_string( ++ctr ); } - strncpy(cfilename, filename.c_str(), sizeof(cfilename)); - cfilename[sizeof(cfilename) - 1] = 0; + strncpy( cfilename, filename.c_str(), sizeof( cfilename ) ); + cfilename[sizeof( cfilename ) - 1] = 0; } - MPI_Bcast(&cfilename, sizeof(cfilename), MPI_CHAR, 0, MPI_COMM_WORLD); - MPI_Barrier(MPI_COMM_WORLD); + MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); + MPI_Barrier( MPI_COMM_WORLD ); // create spdlog file sink - auto fileSink = std::make_shared(_logDir + cfilename); - fileSink->set_level(fileLogLvl); - fileSink->set_pattern("%Y-%m-%d %H:%M:%S.%f | %v"); - sinks.push_back(fileSink); + auto fileSink = std::make_shared( _logDir + cfilename ); + fileSink->set_level( fileLogLvl ); + fileSink->set_pattern( "%Y-%m-%d %H:%M:%S.%f | %v" ); + sinks.push_back( fileSink ); } // register all sinks - auto event_logger = std::make_shared("event", begin(sinks), end(sinks)); - spdlog::register_logger(event_logger); - spdlog::flush_every(std::chrono::seconds(5)); + auto event_logger = std::make_shared( "event", begin( sinks ), end( sinks ) ); + spdlog::register_logger( event_logger ); + spdlog::flush_every( std::chrono::seconds( 5 ) ); } - if (!spdlog::get("tabular")) - { + if( !spdlog::get( "tabular" ) ) { // create sinks if level is not off std::vector sinks; - if (fileLogLvl != spdlog::level::off) - { + if( fileLogLvl != spdlog::level::off ) { // define filename on root int pe; - MPI_Comm_rank(MPI_COMM_WORLD, &pe); + MPI_Comm_rank( MPI_COMM_WORLD, &pe ); char cfilename[1024]; - if (pe == 0) - { + if( pe == 0 ) { // get date and time - time_t now = time(nullptr); + time_t now = time( nullptr ); struct tm tstruct; char buf[80]; - tstruct = *localtime(&now); - strftime(buf, sizeof(buf), "%Y-%m-%d_%X.csv", &tstruct); + tstruct = *localtime( &now ); + strftime( buf, sizeof( buf ), "%Y-%m-%d_%X.csv", &tstruct ); // set filename std::string filename; - if (_logFileName.compare("use_date") == 0) - filename = buf; // set filename to date and time + if( _logFileName.compare( "use_date" ) == 0 ) + filename = buf; // set filename to date and time else filename = _logFileName + ".csv"; // in case of existing files append '_#' int ctr = 0; - if (std::filesystem::exists(_logDir + filename)) - { - filename += "_" + std::to_string(++ctr); + if( std::filesystem::exists( _logDir + filename ) ) { + filename += "_" + std::to_string( ++ctr ); } - while (std::filesystem::exists(_logDir + filename)) - { + while( std::filesystem::exists( _logDir + filename ) ) { filename.pop_back(); - filename += std::to_string(++ctr); + filename += std::to_string( ++ctr ); } - strncpy(cfilename, filename.c_str(), sizeof(cfilename)); - cfilename[sizeof(cfilename) - 1] = 0; + strncpy( cfilename, filename.c_str(), sizeof( cfilename ) ); + cfilename[sizeof( cfilename ) - 1] = 0; } - MPI_Bcast(&cfilename, sizeof(cfilename), MPI_CHAR, 0, MPI_COMM_WORLD); - MPI_Barrier(MPI_COMM_WORLD); + MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); + MPI_Barrier( MPI_COMM_WORLD ); // create spdlog file sink - auto fileSink = std::make_shared(_logDir + cfilename); - fileSink->set_level(fileLogLvl); - fileSink->set_pattern("%Y-%m-%d %H:%M:%S.%f ,%v"); - sinks.push_back(fileSink); + auto fileSink = std::make_shared( _logDir + cfilename ); + fileSink->set_level( fileLogLvl ); + fileSink->set_pattern( "%Y-%m-%d %H:%M:%S.%f ,%v" ); + sinks.push_back( fileSink ); } // register all sinks - auto tabular_logger = std::make_shared("tabular", begin(sinks), end(sinks)); - spdlog::register_logger(tabular_logger); - spdlog::flush_every(std::chrono::seconds(5)); + auto tabular_logger = std::make_shared( "tabular", begin( sinks ), end( sinks ) ); + spdlog::register_logger( tabular_logger ); + spdlog::flush_every( std::chrono::seconds( 5 ) ); } } // Function to find the key for a given value in a map -template -K Config::findKey(const std::map &myMap, const V &valueToFind) -{ - for (const auto &pair : myMap) - { - if (pair.second == valueToFind) - { - return pair.first; // Return the key if the value is found +template K Config::findKey( const std::map& myMap, const V& valueToFind ) { + for( const auto& pair : myMap ) { + if( pair.second == valueToFind ) { + return pair.first; // Return the key if the value is found } } // If the value is not found, you can return a default value or throw an exception - throw std::out_of_range("Value not found in the map"); + throw std::out_of_range( "Value not found in the map" ); } \ No newline at end of file diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 250bb4ba..5850706d 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -343,7 +343,7 @@ void Mesh::ComputeLimiter( } void Mesh::ComputeLimiter1D( unsigned nSys, const VectorVector& sol, VectorVector& limiter ) const { - //#pragma omp parallel for +#pragma omp parallel for double const eps = 1e-10; for( unsigned idx_cell = 0; idx_cell < _numCells; idx_cell++ ) { for( unsigned idx_sys = 0; idx_sys < nSys; idx_sys++ ) { @@ -395,3 +395,30 @@ double Mesh::GetDistanceToOrigin( unsigned idx_cell ) const { } return sqrt( distance ); } + +unsigned Mesh::GetCellOfKoordinate( double x, double y ) const { + unsigned koordinate_idx = 0; + for( unsigned idx_cell = 0; idx_cell < _numCells; idx_cell++ ) { + if( IsPointInsideCell( idx_cell, x, y ) ) { + return idx_cell; + } + } + ErrorMessages::Error( "Probing point (" + std::to_string( x ) + "," + std::to_string( y ) + ") is contained in mesh.", CURRENT_FUNCTION ); +} + +bool Mesh::IsPointInsideCell( unsigned idx_cell, double x, double y ) const { + bool inside = false; + for( unsigned i = 0, j = _numNodesPerCell - 1; i < _numNodesPerCell; j = i++ ) { + double xi = _nodes[_cells[idx_cell][i]][0]; + double yi = _nodes[_cells[idx_cell][i]][1]; + double xj = _nodes[_cells[idx_cell][j]][0]; + double yj = _nodes[_cells[idx_cell][j]][1]; + + bool intersect = ( ( yi > y ) != ( yj > y ) ) && ( x < ( xj - xi ) * ( y - yi ) / ( yj - yi ) + xi ); + + if( intersect ) { + inside = true; + } + } + return inside; +} \ No newline at end of file diff --git a/src/solvers/csdmnsolver.cpp b/src/solvers/csdmnsolver.cpp index 268b5272..327003b8 100644 --- a/src/solvers/csdmnsolver.cpp +++ b/src/solvers/csdmnsolver.cpp @@ -113,11 +113,8 @@ void CSDMNSolver::SolverPreprocessing() { } void CSDMNSolver::IterPostprocessing( unsigned idx_iter ) { - // --- Update Solution --- - //_sol = _solNew; - // --- Compute Flux for solution and Screen Output --- - ComputeRadFlux(); + ComputeScalarFlux(); // --- Compute Dose --- #pragma omp parallel for diff --git a/src/solvers/csdpnsolver.cpp b/src/solvers/csdpnsolver.cpp index 507bf7e1..ee6925e7 100644 --- a/src/solvers/csdpnsolver.cpp +++ b/src/solvers/csdpnsolver.cpp @@ -93,11 +93,9 @@ void CSDPNSolver::IterPreprocessing( unsigned idx_iter ) { void CSDPNSolver::SolverPreprocessing() {} void CSDPNSolver::IterPostprocessing( unsigned idx_iter ) { - // --- Update Solution --- - //_sol = _solNew; // --- Compute Flux for solution and Screen Output --- - ComputeRadFlux(); + ComputeScalarFlux(); // -- Compute Dose for( unsigned j = 0; j < _nCells; ++j ) { diff --git a/src/solvers/csdsnsolver.cpp b/src/solvers/csdsnsolver.cpp index 5bf7ec64..e5efab35 100644 --- a/src/solvers/csdsnsolver.cpp +++ b/src/solvers/csdsnsolver.cpp @@ -127,20 +127,10 @@ void CSDSNSolver::IterPreprocessing( unsigned idx_pseudotime ) { } } _sol[j] = _O * u; - //_sol[j] = blaze::solve( _identity + _dE * _O * Sigma * _M, _sol[j] ); } } -void CSDSNSolver::SolverPreprocessing() { - // Need to transform ordinate solution with density and scattering, depending on problem setup - // do substitution from psi to psiTildeHat (cf. Dissertation Kerstion Kuepper, Eq. 1.23) - //#pragma omp parallel for - // for( unsigned j = 0; j < _nCells; ++j ) { - // for( unsigned k = 0; k < _nq; ++k ) { - // _sol[j][k] = _sol[j][k] * _density[j] * _s[0]; // note that _s[_nEnergies - 1] is stopping power at highest energy - // } - // } -} +void CSDSNSolver::SolverPreprocessing() {} void CSDSNSolver::IterPostprocessing( unsigned idx_pseudotime ) { unsigned n = idx_pseudotime; diff --git a/src/solvers/mnsolver.cpp b/src/solvers/mnsolver.cpp index 7680f458..2843daf3 100644 --- a/src/solvers/mnsolver.cpp +++ b/src/solvers/mnsolver.cpp @@ -130,14 +130,7 @@ void MNSolver::IterPreprocessing( unsigned /*idx_pseudotime*/ ) { } } -void MNSolver::IterPostprocessing( unsigned idx_iter ) { - // --- Compute Flux for solution and Screen Output --- - ComputeRadFlux(); - _timeDependentOutflow[idx_iter] = GetCurrentOutflow(); - _timeDependentAbsorption[idx_iter] = GetCurrentAbsorption( idx_iter ); -} - -void MNSolver::ComputeRadFlux() { +void MNSolver::ComputeScalarFlux() { double firstMomentScaleFactor = 4 * M_PI; if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || _settings->GetProblemName() == PROBLEM_Checkerboard1D ) { @@ -436,10 +429,19 @@ void MNSolver::WriteVolumeOutput( unsigned idx_iter ) { } } -double MNSolver::GetCurrentOutflow() { return 0.0; } - -double MNSolver::GetTotalAbsorptionCenter() { return 0; } - -double MNSolver::GetTotalAbsorptionVertical() { return 0; } - -double MNSolver::GetTotalAbsorptionHorizontal() { return 0; } +void MNSolver::GetCurrentOutflow() {} // TOOD +void MNSolver::GetMaxOrdinatewiseOutflow() {} // TODO + +void MNSolver::ComputeCurrentProbeMoment() { + // Red areas of symmetric hohlraum + double total_absorption = 0.0; + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + for( unsigned idx_cell = 0; idx_cell < 4; idx_cell++ ) { // Loop over probing cells + _probingMoments[idx_cell][0] = _sol[idx_cell][0]; + if( _nSystem > 1 ) { + _probingMoments[idx_cell][1] = _sol[idx_cell][1]; + _probingMoments[idx_cell][2] = _sol[idx_cell][2]; + } + } + } +} \ No newline at end of file diff --git a/src/solvers/pnsolver.cpp b/src/solvers/pnsolver.cpp index 5bd10d7c..558ca1b3 100644 --- a/src/solvers/pnsolver.cpp +++ b/src/solvers/pnsolver.cpp @@ -67,15 +67,7 @@ void PNSolver::IterPreprocessing( unsigned /*idx_iter*/ ) { } } -void PNSolver::IterPostprocessing( unsigned idx_iter ) { - // --- Compute Flux for solution and Screen Output --- - ComputeRadFlux(); - - _timeDependentOutflow[idx_iter] = GetCurrentOutflow(); - _timeDependentAbsorption[idx_iter] = GetCurrentAbsorption( idx_iter ); -} - -void PNSolver::ComputeRadFlux() { +void PNSolver::ComputeScalarFlux() { double firstMomentScaleFactor = 4 * M_PI; if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D ) { @@ -607,10 +599,19 @@ int PNSolver::Sgn( int k ) const { return -1; } -double PNSolver::GetCurrentOutflow() { return 0.0; } - -double PNSolver::GetTotalAbsorptionCenter() { return 0; } - -double PNSolver::GetTotalAbsorptionVertical() { return 0; } - -double PNSolver::GetTotalAbsorptionHorizontal() { return 0; } +void PNSolver::GetCurrentOutflow() {} // TOOD +void PNSolver::GetMaxOrdinatewiseOutflow() {} // TODO + +void PNSolver::ComputeCurrentProbeMoment() { + // Red areas of symmetric hohlraum + double total_absorption = 0.0; + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + for( unsigned idx_cell = 0; idx_cell < 4; idx_cell++ ) { // Loop over probing cells + _probingMoments[idx_cell][0] = _sol[idx_cell][0]; + if( _nSystem > 1 ) { + _probingMoments[idx_cell][1] = _sol[idx_cell][1]; + _probingMoments[idx_cell][2] = _sol[idx_cell][2]; + } + } + } +} \ No newline at end of file diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index 2056f328..686ac868 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -38,16 +38,7 @@ void SNSolver::IterPreprocessing( unsigned /*idx_iter*/ ) { } } -void SNSolver::IterPostprocessing( unsigned idx_iter ) { - - // --- Compute Flux for solution and Screen Output --- - ComputeRadFlux(); - - _timeDependentOutflow[idx_iter] = GetCurrentOutflow(); - _timeDependentAbsorption[idx_iter] = GetCurrentAbsorption( idx_iter ); -} - -void SNSolver::ComputeRadFlux() { +void SNSolver::ComputeScalarFlux() { double firstMomentScaleFactor = 4 * M_PI; if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D ) { @@ -55,7 +46,7 @@ void SNSolver::ComputeRadFlux() { } #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - _scalarFluxNew[idx_cell] = blaze::dot( _sol[idx_cell], _weights ) / firstMomentScaleFactor; + _scalarFluxNew[idx_cell] = blaze::dot( _sol[idx_cell], _weights ); // / firstMomentScaleFactor; } } @@ -265,31 +256,74 @@ void SNSolver::WriteVolumeOutput( unsigned idx_iter ) { } // Needs to go to Solver, not to Problem -double SNSolver::GetCurrentOutflow() { - double finalTimeOutflow = 0.0; +void SNSolver::GetCurrentOutflow() { + _curScalarOutflow = 0.0; + double transportDirection = 0.0; + std::map& ghostCells = _problem->GetGhostCells(); // Iterate over boundaries for( std::map::iterator it = ghostCells.begin(); it != ghostCells.end(); ++it ) { int idx_cell = it->first; // Get Boundary cell index + + // Iterate over face cell faces for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { // Find face that points outward if( _neighbors[idx_cell][idx_nbr] == _nCells ) { + // Iterate over transport directions for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { - double fluxOut = + transportDirection = _normals[idx_cell][idx_nbr][0] * _quadPoints[idx_quad][0] + _normals[idx_cell][idx_nbr][1] * _quadPoints[idx_quad][1]; - if( fluxOut > 0.0 ) { - finalTimeOutflow += fluxOut * _sol[idx_cell][idx_quad]; + // Find outward facing transport directions + if( transportDirection > 0.0 ) { + _curScalarOutflow += transportDirection * _sol[idx_cell][idx_quad] * _weights[idx_quad]; // Integrate flux } } } } } - return finalTimeOutflow; } -double SNSolver::GetTotalAbsorptionCenter() { return 0; } +void SNSolver::GetMaxOrdinatewiseOutflow() { + double currOrdinatewiseOutflow = 0.0; + double transportDirection = 0.0; -double SNSolver::GetTotalAbsorptionVertical() { return 0; } + std::map& ghostCells = _problem->GetGhostCells(); + + // Iterate over boundaries + for( std::map::iterator it = ghostCells.begin(); it != ghostCells.end(); ++it ) { + int idx_cell = it->first; // Get Boundary cell index + for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { + // Find face that points outward + if( _neighbors[idx_cell][idx_nbr] == _nCells ) { + // Iterate over transport directions + for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { + transportDirection = + _normals[idx_cell][idx_nbr][0] * _quadPoints[idx_quad][0] + _normals[idx_cell][idx_nbr][1] * _quadPoints[idx_quad][1]; + // Find outward facing transport directions + if( transportDirection > 0.0 ) { + currOrdinatewiseOutflow = transportDirection / norm( _normals[idx_cell][idx_nbr] ) * _sol[idx_cell][idx_quad]; + if( currOrdinatewiseOutflow > _curMaxOrdinateOutflow ) _curMaxOrdinateOutflow = currOrdinatewiseOutflow; + } + } + } + } + } +} -double SNSolver::GetTotalAbsorptionHorizontal() { return 0; } +void SNSolver::ComputeCurrentProbeMoment() { + // Red areas of symmetric hohlraum + double total_absorption = 0.0; + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + for( unsigned idx_cell = 0; idx_cell < 4; idx_cell++ ) { // Loop over probing cells + _probingMoments[idx_cell][0] = blaze::dot( _sol[_probingCells[idx_cell]], _weights ); + _probingMoments[idx_cell][1] = 0.0; + _probingMoments[idx_cell][2] = 0.0; + + for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { + _probingMoments[idx_cell][1] += _quadPoints[idx_quad][0] * _sol[_probingCells[idx_cell]][idx_quad] * _weights[idx_quad]; + _probingMoments[idx_cell][2] += _quadPoints[idx_quad][2] * _sol[_probingCells[idx_cell]][idx_quad] * _weights[idx_quad]; + } + } + } +} diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 5446f8f1..cf0998d6 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -23,7 +23,8 @@ SolverBase::SolverBase( Config* settings ) { // @TODO save parameters from settings class // build mesh and store and store frequently used params - _mesh = LoadSU2MeshFromFile( settings ); + _mesh = LoadSU2MeshFromFile( settings ); + _areas = _mesh->GetCellAreas(); _neighbors = _mesh->GetNeighbours(); _normals = _mesh->GetNormals(); @@ -96,8 +97,27 @@ SolverBase::SolverBase( Config* settings ) { _density = _problem->GetDensity( _mesh->GetCellMidPoints() ); // initialize QOI helper variables - _timeDependentAbsorption = Vector( _nIter, 0.0 ); - _timeDependentOutflow = Vector( _nIter, 0 ); + _curMaxOrdinateOutflow = 0.0; + _curScalarOutflow = 0.0; + _totalScalarOutflow = 0.0; + _curAbsorptionLattice = 0.0; + _curMaxAbsorptionLattice = 0.0; + _totalAbsorptionLattice = 0.0; + _curAbsorptionHohlraumCenter = 0.0; + _curAbsorptionHohlraumVertical = 0.0; + _curAbsorptionHohlraumHorizontal = 0.0; + _totalAbsorptionHohlraumCenter = 0.0; + _totalAbsorptionHohlraumVertical = 0.0; + _totalAbsorptionHohlraumHorizontal = 0.0; + + // Hardcoded for the symmetric hohlraum testcase (experimental, needs refactoring) + _probingCells = { + _mesh->GetCellOfKoordinate( -0.4, 0. ), + _mesh->GetCellOfKoordinate( 0.4, 0. ), + _mesh->GetCellOfKoordinate( 0., -0.6 ), + _mesh->GetCellOfKoordinate( 0., 0.6 ), + }; + _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); } SolverBase::~SolverBase() { @@ -161,11 +181,14 @@ void SolverBase::Solve() { // --- Runge Kutta Timestep --- if( rkStages == 2 ) RKUpdate( solRK0, _sol ); - // --- Solver Output --- + // --- Write Output --- WriteVolumeOutput( iter ); WriteScalarOutput( iter ); + // --- Update Scalar Fluxes _scalarFlux = _scalarFluxNew; + + // --- Print Output --- PrintScreenOutput( iter ); PrintHistoryOutput( iter ); PrintVolumeOutput( iter ); @@ -243,15 +266,23 @@ void SolverBase::PrepareScreenOutput() { case VTK_OUTPUT: _screenOutputFieldNames[idx_field] = "VTK out"; break; case CSV_OUTPUT: _screenOutputFieldNames[idx_field] = "CSV out"; break; case CUR_OUTFLOW: _screenOutputFieldNames[idx_field] = "Cur. outflow"; break; - case TOTAL_OUTFLOW: _screenOutputFieldNames[idx_field] = "Cum. outflow"; break; + case TOTAL_OUTFLOW: _screenOutputFieldNames[idx_field] = "Tot. outflow"; break; case MAX_OUTFLOW: _screenOutputFieldNames[idx_field] = "Max outflow"; break; case CUR_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Cur. absorption"; break; - case TOTAL_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Cum. absorption"; break; + case TOTAL_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Tot. absorption"; break; case MAX_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Max absorption"; break; - case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFieldNames[idx_field] = "Cum. absorption center"; break; - case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFieldNames[idx_field] = "Cum. absorption vertical wall"; break; - case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFieldNames[idx_field] = "Cum. absorption horizontal wall"; break; - + case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFieldNames[idx_field] = "Tot. abs. center"; break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFieldNames[idx_field] = "Tot. abs. vertical wall"; break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFieldNames[idx_field] = "Tot. abs. horizontal wall"; break; + case PROBE_MOMENT_TIME_TRACE: + _screenOutputFieldNames[idx_field] = "Probe 1 u_0"; + idx_field++; + _screenOutputFieldNames[idx_field] = "Probe 2 u_0"; + idx_field++; + _screenOutputFieldNames[idx_field] = "Probe 3 u_0"; + idx_field++; + _screenOutputFieldNames[idx_field] = "Probe 4 u_0"; + break; default: ErrorMessages::Error( "Screen output field not defined!", CURRENT_FUNCTION ); break; } } @@ -292,15 +323,22 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { _screenOutputFields[idx_field] = 1; } break; - case CUR_OUTFLOW: _screenOutputFields[idx_field] = _timeDependentOutflow[idx_iter]; break; - case TOTAL_OUTFLOW: _screenOutputFields[idx_field] = GetTotalOutflow( idx_iter ); break; - case MAX_OUTFLOW: _screenOutputFields[idx_field] = GetMaxOutflow( idx_iter ); break; - case CUR_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _timeDependentAbsorption[idx_iter]; break; - case TOTAL_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = GetTotalAbsorption( idx_iter ); break; - case MAX_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = GetMaxAbsorption( idx_iter ); break; - case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFields[idx_field] = GetTotalAbsorptionCenter(); break; - case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFields[idx_field] = GetTotalAbsorptionVertical(); break; - case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFields[idx_field] = GetTotalAbsorptionHorizontal(); break; + case CUR_OUTFLOW: _screenOutputFields[idx_field] = _curScalarOutflow; break; + case TOTAL_OUTFLOW: _screenOutputFields[idx_field] = _totalScalarOutflow; break; + case MAX_OUTFLOW: _screenOutputFields[idx_field] = _curMaxOrdinateOutflow; break; + case CUR_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _curAbsorptionLattice; break; + case TOTAL_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _totalAbsorptionLattice; break; + case MAX_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _curMaxAbsorptionLattice; break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFields[idx_field] = _totalAbsorptionHohlraumCenter; break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFields[idx_field] = _totalAbsorptionHohlraumVertical; break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFields[idx_field] = _totalAbsorptionHohlraumHorizontal; break; + case PROBE_MOMENT_TIME_TRACE: + for( unsigned i = 0; i < 4; i++ ) { + _screenOutputFields[idx_field] = _probingMoments[i][0]; + idx_field++; + } + idx_field--; + break; default: ErrorMessages::Error( "Screen output group not defined!", CURRENT_FUNCTION ); break; } } @@ -356,15 +394,24 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { _historyOutputFields[idx_field] = 1; } break; - case CUR_OUTFLOW: _historyOutputFields[idx_field] = _timeDependentOutflow[idx_iter]; break; - case TOTAL_OUTFLOW: _historyOutputFields[idx_field] = GetTotalOutflow( idx_iter ); break; - case MAX_OUTFLOW: _historyOutputFields[idx_field] = GetMaxOutflow( idx_iter ); break; - case CUR_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _timeDependentAbsorption[idx_iter]; break; - case TOTAL_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = GetTotalAbsorption( idx_iter ); break; - case MAX_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = GetMaxAbsorption( idx_iter ); break; - case TOTAL_PARTICLE_ABSORPTION_CENTER: _historyOutputFields[idx_field] = GetTotalAbsorptionCenter(); break; - case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFields[idx_field] = GetTotalAbsorptionVertical(); break; - case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFields[idx_field] = GetTotalAbsorptionHorizontal(); break; + case CUR_OUTFLOW: _historyOutputFields[idx_field] = _curScalarOutflow; break; + case TOTAL_OUTFLOW: _historyOutputFields[idx_field] = _totalScalarOutflow; break; + case MAX_OUTFLOW: _historyOutputFields[idx_field] = _curMaxOrdinateOutflow; break; + case CUR_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _curAbsorptionLattice; break; + case TOTAL_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _totalAbsorptionLattice; break; + case MAX_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _curMaxAbsorptionLattice; break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _historyOutputFields[idx_field] = _totalAbsorptionHohlraumCenter; break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFields[idx_field] = _totalAbsorptionHohlraumVertical; break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFields[idx_field] = _totalAbsorptionHohlraumHorizontal; break; + case PROBE_MOMENT_TIME_TRACE: + for( unsigned i = 0; i < 4; i++ ) { + for( unsigned j = 0; j < 3; j++ ) { + _historyOutputFields[idx_field] = _probingMoments[i][j]; + idx_field++; + } + } + idx_field--; + break; default: ErrorMessages::Error( "History output group not defined!", CURRENT_FUNCTION ); break; } } @@ -375,7 +422,7 @@ void SolverBase::PrintScreenOutput( unsigned idx_iter ) { MPI_Comm_rank( MPI_COMM_WORLD, &rank ); auto log = spdlog::get( "event" ); - unsigned strLen = 10; // max width of one column + unsigned strLen = 15; // max width of one column char paddingChar = ' '; // assemble the line to print @@ -386,7 +433,18 @@ void SolverBase::PrintScreenOutput( unsigned idx_iter ) { // Format outputs correctly std::vector integerFields = { ITER }; - std::vector scientificFields = { RMS_FLUX, MASS }; + std::vector scientificFields = { RMS_FLUX, + MASS, + CUR_OUTFLOW, + TOTAL_OUTFLOW, + MAX_OUTFLOW, + CUR_PARTICLE_ABSORPTION, + TOTAL_PARTICLE_ABSORPTION, + MAX_PARTICLE_ABSORPTION, + TOTAL_PARTICLE_ABSORPTION_CENTER, + TOTAL_PARTICLE_ABSORPTION_VERTICAL, + TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, + PROBE_MOMENT_TIME_TRACE }; std::vector booleanFields = { VTK_OUTPUT, CSV_OUTPUT }; if( !( integerFields.end() == std::find( integerFields.begin(), integerFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { @@ -448,6 +506,15 @@ void SolverBase::PrepareHistoryOutput() { case TOTAL_PARTICLE_ABSORPTION_CENTER: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_center"; break; case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_vertical_wall"; break; case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_horizontal_wall"; break; + case PROBE_MOMENT_TIME_TRACE: + for( unsigned i = 0; i < 4; i++ ) { + for( unsigned j = 0; j < 3; j++ ) { + _historyOutputFieldNames[idx_field] = "Probe " + std::to_string( i ) + " u_" + std::to_string( j ); + idx_field++; + } + } + idx_field--; + break; default: ErrorMessages::Error( "History output field not defined!", CURRENT_FUNCTION ); break; } } @@ -490,12 +557,12 @@ void SolverBase::DrawPreSolverOutput() { std::string hLine = "--"; if( rank == 0 ) { - unsigned strLen = 10; // max width of one column + unsigned strLen = 15; // max width of one column char paddingChar = ' '; // Assemble Header for Screen Output std::string lineToPrint = "| "; - std::string tmpLine = "------------"; + std::string tmpLine = "-----------------"; for( unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++ ) { std::string tmp = _screenOutputFieldNames[idxFields]; @@ -563,28 +630,36 @@ void SolverBase::DrawPostSolverOutput() { void SolverBase::SolverPreprocessing() {} -double SolverBase::GetTotalOutflow( unsigned idx_iter ) { - double totalOutflow = 0.0; - for( unsigned i = 0; i < idx_iter + 1; i++ ) { - totalOutflow += _timeDependentOutflow[i] * _dT; - } - return totalOutflow; -} +void SolverBase::GetTotalOutflow() { _totalScalarOutflow += _curScalarOutflow * _dT; } -double SolverBase::GetMaxOutflow( unsigned idx_iter ) { - // NOT WHAT IT IS IN SLIDES! - double maxOutflow = 0.0; +void SolverBase::GetCurrentAbsorptionLattice( unsigned idx_iter ) { + _curAbsorptionLattice = 0.0; + if( _settings->GetProblemName() == PROBLEM_Lattice ) { + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + // Assumption: Domain size is 7x7 + double x = _mesh->GetCellMidPoints()[idx_cell][0]; + double y = _mesh->GetCellMidPoints()[idx_cell][1]; + double xy_corrector = -3.5; + std::vector lbounds{ 1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector }; + std::vector ubounds{ 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector }; - for( unsigned i = 0; i < idx_iter + 1; i++ ) { - if( _timeDependentOutflow[idx_iter] > maxOutflow ) { - maxOutflow = _timeDependentOutflow[idx_iter]; + for( unsigned k = 0; k < lbounds.size(); ++k ) { + for( unsigned l = 0; l < lbounds.size(); ++l ) { + if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; + if( x >= lbounds[k] && x <= ubounds[k] && y >= lbounds[l] && y <= ubounds[l] ) { + _curAbsorptionLattice += + _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) * _areas[idx_cell]; + } + } + } } } - return maxOutflow; } -double SolverBase::GetCurrentAbsorption( unsigned idx_iter ) { - double total_absorption = 0.0; +void SolverBase::GetTotalAbsorptionLattice() { _totalAbsorptionLattice += _curAbsorptionLattice * _dT; } + +void SolverBase::GetMaxAbsorptionLattice( unsigned idx_iter ) { + _curMaxAbsorptionLattice = 0.0; if( _settings->GetProblemName() == PROBLEM_Lattice ) { for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { // Assumption: Domain size is 7x7 @@ -598,29 +673,63 @@ double SolverBase::GetCurrentAbsorption( unsigned idx_iter ) { for( unsigned l = 0; l < lbounds.size(); ++l ) { if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; if( x >= lbounds[k] && x <= ubounds[k] && y >= lbounds[l] && y <= ubounds[l] ) { - total_absorption += _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) * _areas[idx_cell]; + if( _curMaxAbsorptionLattice < _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) ) + _curMaxAbsorptionLattice = _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ); } } } } } - - return total_absorption; } -double SolverBase::GetTotalAbsorption( unsigned idx_iter ) { - double totalAbsorption = 0.0; - for( unsigned i = 0; i < idx_iter + 1; i++ ) { - totalAbsorption += _timeDependentAbsorption[i] * _dT; +void SolverBase::GetCurrentAbsorptionHohlraum( unsigned idx_iter ) { + _curAbsorptionHohlraumCenter = 0.0; // Green and blue areas of symmetric hohlraum + _curAbsorptionHohlraumVertical = 0.0; // Red areas of symmetric hohlraum + _curAbsorptionHohlraumHorizontal = 0.0; // Black areas of symmetric hohlraum + + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + double x = _mesh->GetCellMidPoints()[idx_cell][0]; + double y = _mesh->GetCellMidPoints()[idx_cell][1]; + + if( x > -0.2 && x < 0.2 && y > -0.35 && y < 0.35 ) { + _curAbsorptionHohlraumCenter += + _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) * _areas[idx_cell]; + } + if( ( x < -0.6 && y > -0.4 && y < 0.4 ) || ( x > 0.6 && y > -0.4 && y < 0.4 ) ) { + _curAbsorptionHohlraumVertical += + _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) * _areas[idx_cell]; + } + if( y > 0.6 || y < -0.6 ) { + _curAbsorptionHohlraumHorizontal += + _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) * _areas[idx_cell]; + } + } } - return totalAbsorption; } -double SolverBase::GetMaxAbsorption( unsigned idx_iter ) { - double maxAbsorption = 0.0; - for( unsigned i = 0; i < idx_iter + 1; i++ ) { - if( _timeDependentOutflow[idx_iter] > maxAbsorption ) { - maxAbsorption = _timeDependentOutflow[idx_iter]; - } + +void SolverBase::GetTotalAbsorptionHohlraum() { + _totalAbsorptionHohlraumCenter += _curAbsorptionHohlraumCenter * _dT; + _totalAbsorptionHohlraumVertical += _curAbsorptionHohlraumVertical * _dT; + _totalAbsorptionHohlraumHorizontal += _curAbsorptionHohlraumHorizontal * _dT; +} + +void SolverBase::IterPostprocessing( unsigned idx_iter ) { + // --- Compute Quantities of interest for Volume and Screen Output --- + ComputeScalarFlux(); + + GetCurrentOutflow(); + GetTotalOutflow(); + GetMaxOrdinatewiseOutflow(); + + if( _settings->GetProblemName() == PROBLEM_Lattice ) { + GetCurrentAbsorptionLattice( idx_iter ); + GetTotalAbsorptionLattice(); + GetMaxAbsorptionLattice( idx_iter ); + } + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + GetCurrentAbsorptionHohlraum( idx_iter ); + GetTotalAbsorptionHohlraum(); + ComputeCurrentProbeMoment(); } - return maxAbsorption; } From 14f4a7b3b4942ba4660e188bb54b635e2f9d52c8 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Tue, 5 Dec 2023 14:35:23 -0500 Subject: [PATCH 007/155] fixed small bug with openMP --- src/common/mesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 5850706d..7188b937 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -343,8 +343,8 @@ void Mesh::ComputeLimiter( } void Mesh::ComputeLimiter1D( unsigned nSys, const VectorVector& sol, VectorVector& limiter ) const { -#pragma omp parallel for double const eps = 1e-10; +#pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _numCells; idx_cell++ ) { for( unsigned idx_sys = 0; idx_sys < nSys; idx_sys++ ) { double r = 0.0; From 49bbc03e81d07f3d425b14ad0bf5a6741e306205 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Tue, 5 Dec 2023 14:40:12 -0500 Subject: [PATCH 008/155] fix bug with probing moments --- src/solvers/solverbase.cpp | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index cf0998d6..e2c71468 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -111,13 +111,15 @@ SolverBase::SolverBase( Config* settings ) { _totalAbsorptionHohlraumHorizontal = 0.0; // Hardcoded for the symmetric hohlraum testcase (experimental, needs refactoring) - _probingCells = { - _mesh->GetCellOfKoordinate( -0.4, 0. ), - _mesh->GetCellOfKoordinate( 0.4, 0. ), - _mesh->GetCellOfKoordinate( 0., -0.6 ), - _mesh->GetCellOfKoordinate( 0., 0.6 ), - }; - _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + _probingCells = { + _mesh->GetCellOfKoordinate( -0.4, 0. ), + _mesh->GetCellOfKoordinate( 0.4, 0. ), + _mesh->GetCellOfKoordinate( 0., -0.6 ), + _mesh->GetCellOfKoordinate( 0., 0.6 ), + }; + _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); + } } SolverBase::~SolverBase() { From 5ad7df297e9d1f0d3d649d0fcbfa3127b09c207e Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 6 Dec 2023 13:26:46 -0500 Subject: [PATCH 009/155] project restructrue --- .../create_structured_symmterichohlraum_2d_mesh.py | 2 +- src/common/config.cpp | 12 ------------ tools/CI/docker_run_interactive_specify_cores.sh | 1 - tools/cluster/CPU_run_job.sh | 10 ---------- tools/cluster/GPU_run_job.sh | 11 ----------- {python => tools/python}/extract_grayscale_image.py | 0 {python => tools/python}/linesource_Pseudo_1D.py | 0 {python => tools/python}/mesh_from_image.py | 0 8 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 tools/CI/docker_run_interactive_specify_cores.sh delete mode 100644 tools/cluster/CPU_run_job.sh delete mode 100644 tools/cluster/GPU_run_job.sh rename {python => tools/python}/extract_grayscale_image.py (100%) rename {python => tools/python}/linesource_Pseudo_1D.py (100%) rename {python => tools/python}/mesh_from_image.py (100%) diff --git a/examples/meshes/create_structured_symmterichohlraum_2d_mesh.py b/examples/meshes/create_structured_symmterichohlraum_2d_mesh.py index a49008a9..75bef346 100644 --- a/examples/meshes/create_structured_symmterichohlraum_2d_mesh.py +++ b/examples/meshes/create_structured_symmterichohlraum_2d_mesh.py @@ -21,7 +21,7 @@ def main(): print("Parsing options") # --- parse options --- parser = OptionParser() - parser.add_option("-o", "--output_name", dest="output_name", default="struct_2dmesh") + parser.add_option("-o", "--output_name", dest="output_name", default="struct_mesh_symmetric_hohlraum.su2") parser.add_option("-c", "--char_length", dest="char_length", default=0.01) parser.add_option("-s", "--start_pt", dest="start_pt", nargs=2, default=(-0.65,-0.65)) parser.add_option("-l", "--length", dest="length", nargs=2, default=(1.3,1.3)) diff --git a/src/common/config.cpp b/src/common/config.cpp index d3da1488..894099f5 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -521,18 +521,6 @@ void Config::SetPostprocessing() { default: _isMomentSolver = false; } - // Check, if mesh file exists - // if( _solverName == CSD_SN_FOKKERPLANCK_TRAFO_SOLVER ) { // Check if this is neccessary - // if( !std::filesystem::exists( this->GetHydrogenFile() ) ) { - // ErrorMessages::Error( "Path to mesh file <" + this->GetHydrogenFile() + "> does not exist. Please check your config file.", - // CURRENT_FUNCTION ); - // } - // if( !std::filesystem::exists( this->GetOxygenFile() ) ) { - // ErrorMessages::Error( "Path to mesh file <" + this->GetOxygenFile() + "> does not exist. Please check your config file.", - // CURRENT_FUNCTION ); - // } - //} - // Quadrature Postprocessing { QuadratureBase* quad = QuadratureBase::Create( this ); diff --git a/tools/CI/docker_run_interactive_specify_cores.sh b/tools/CI/docker_run_interactive_specify_cores.sh deleted file mode 100644 index f05ed205..00000000 --- a/tools/CI/docker_run_interactive_specify_cores.sh +++ /dev/null @@ -1 +0,0 @@ -docker run -i -t --rm --cpuset-cpus=0-29 -v $(pwd)/../..:/mnt kitrt/test_ml:latest /bin/bash diff --git a/tools/cluster/CPU_run_job.sh b/tools/cluster/CPU_run_job.sh deleted file mode 100644 index 56f2e39c..00000000 --- a/tools/cluster/CPU_run_job.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -#BATCH --ntasks=24 -#SBATCH --time=24:00:00 -#SBATCH --mem=20gb -#SBATCH --partition=single -#SBATCH --job-name=EntropyTrainerCPU -#SBATCH --output=0_CPU_training_out_%j -#SBATCH --error=0_CPU_training_err_%j - -python3 trainNNMK2.py diff --git a/tools/cluster/GPU_run_job.sh b/tools/cluster/GPU_run_job.sh deleted file mode 100644 index 0215e0a7..00000000 --- a/tools/cluster/GPU_run_job.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -#SBATCH --ntasks=20 -#SBATCH --partition=gpu_4 -#SBATCH --time=24:00:00 -#SBATCH --mem=20gb -#SBATCH --gres=gpu:1 -#SBATCH --job-name=EntropyTrainer -#SBATCH --output=0_GPU_out_%j -#SBATCH --error=0_GPU_err_%j - -python3 trainNNMK2.py diff --git a/python/extract_grayscale_image.py b/tools/python/extract_grayscale_image.py similarity index 100% rename from python/extract_grayscale_image.py rename to tools/python/extract_grayscale_image.py diff --git a/python/linesource_Pseudo_1D.py b/tools/python/linesource_Pseudo_1D.py similarity index 100% rename from python/linesource_Pseudo_1D.py rename to tools/python/linesource_Pseudo_1D.py diff --git a/python/mesh_from_image.py b/tools/python/mesh_from_image.py similarity index 100% rename from python/mesh_from_image.py rename to tools/python/mesh_from_image.py From 8b507af34b7361a79ca6439887858ce379f9129a Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 6 Dec 2023 13:54:43 -0500 Subject: [PATCH 010/155] debugging --- src/solvers/snsolver.cpp | 3 ++- src/solvers/solverbase.cpp | 1 + tools/docker/install_kitrt.sh | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index 686ac868..fd7455c2 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -289,7 +289,6 @@ void SNSolver::GetMaxOrdinatewiseOutflow() { double transportDirection = 0.0; std::map& ghostCells = _problem->GetGhostCells(); - // Iterate over boundaries for( std::map::iterator it = ghostCells.begin(); it != ghostCells.end(); ++it ) { int idx_cell = it->first; // Get Boundary cell index @@ -302,7 +301,9 @@ void SNSolver::GetMaxOrdinatewiseOutflow() { _normals[idx_cell][idx_nbr][0] * _quadPoints[idx_quad][0] + _normals[idx_cell][idx_nbr][1] * _quadPoints[idx_quad][1]; // Find outward facing transport directions if( transportDirection > 0.0 ) { + currOrdinatewiseOutflow = transportDirection / norm( _normals[idx_cell][idx_nbr] ) * _sol[idx_cell][idx_quad]; + if( currOrdinatewiseOutflow > _curMaxOrdinateOutflow ) _curMaxOrdinateOutflow = currOrdinatewiseOutflow; } } diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index e2c71468..6f6313a2 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -722,6 +722,7 @@ void SolverBase::IterPostprocessing( unsigned idx_iter ) { GetCurrentOutflow(); GetTotalOutflow(); + GetMaxOrdinatewiseOutflow(); if( _settings->GetProblemName() == PROBLEM_Lattice ) { diff --git a/tools/docker/install_kitrt.sh b/tools/docker/install_kitrt.sh index 6b96e342..fc6f2d28 100755 --- a/tools/docker/install_kitrt.sh +++ b/tools/docker/install_kitrt.sh @@ -5,7 +5,7 @@ git submodule update --init --recursive mkdir build cd build rm -rf * -cmake -G Ninja -DCMAKE_BUILD_UNITY=True -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=False -DBUILD_ML=True ../ +cmake -G Ninja -DCMAKE_BUILD_UNITY=True -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=False -DBUILD_ML=False ../ ninja cd ../examples ../build/KiT-RT checkerboard_MN.cfg From 666e353cdb72077fa713b8b0f1783c1b04e71af3 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Wed, 6 Dec 2023 14:58:09 -0500 Subject: [PATCH 011/155] started variation QOIs --- ...te_structured_symmterichohlraum_2d_mesh.py | 51 +++++++++++-------- include/common/globalconstants.hpp | 6 ++- src/common/config.cpp | 3 +- 3 files changed, 35 insertions(+), 25 deletions(-) diff --git a/examples/meshes/create_structured_symmterichohlraum_2d_mesh.py b/examples/meshes/create_structured_symmterichohlraum_2d_mesh.py index 75bef346..b8edcc9a 100644 --- a/examples/meshes/create_structured_symmterichohlraum_2d_mesh.py +++ b/examples/meshes/create_structured_symmterichohlraum_2d_mesh.py @@ -5,26 +5,34 @@ from optparse import OptionParser -def add_block(x0,y0,lengthX, lengthY,char_length,geom): - coords = np.array([ - [x0, y0, 0.0], - [x0+lengthX, y0, 0.0], - [x0+lengthX, y0+lengthY, 0.0], - [x0, y0+lengthY, 0.0] - ]) +def add_block(x0, y0, lengthX, lengthY, char_length, geom): + coords = np.array( + [ + [x0, y0, 0.0], + [x0 + lengthX, y0, 0.0], + [x0 + lengthX, y0 + lengthY, 0.0], + [x0, y0 + lengthY, 0.0], + ] + ) return geom.add_polygon(coords, char_length) - def main(): print("---------- Start Creating the mesh ------------") print("Parsing options") # --- parse options --- parser = OptionParser() - parser.add_option("-o", "--output_name", dest="output_name", default="struct_mesh_symmetric_hohlraum.su2") + parser.add_option( + "-o", + "--output_name", + dest="output_name", + default="struct_mesh_symmetric_hohlraum", + ) parser.add_option("-c", "--char_length", dest="char_length", default=0.01) - parser.add_option("-s", "--start_pt", dest="start_pt", nargs=2, default=(-0.65,-0.65)) - parser.add_option("-l", "--length", dest="length", nargs=2, default=(1.3,1.3)) + parser.add_option( + "-s", "--start_pt", dest="start_pt", nargs=2, default=(-0.65, -0.65) + ) + parser.add_option("-l", "--length", dest="length", nargs=2, default=(1.3, 1.3)) parser.add_option("-b", "--boundary", dest="b_type", default="dirichletNeumann") (options, args) = parser.parse_args() @@ -38,7 +46,7 @@ def main(): y0 = float(options.start_pt[1]) geom = pg.opencascade.Geometry() - domain = add_block(x0,y0,lengthX, lengthY,char_length,geom) + domain = add_block(x0, y0, lengthX, lengthY, char_length, geom) if options.b_type == "void": geom.add_physical(domain.lines, label="void") @@ -66,27 +74,26 @@ def main(): neumann_wall_left.append(domain.lines[1]) neumann_wall_right.append(domain.lines[3]) - geom.add_physical(dirichlet_wall_up, label="dirichlet_wall_low") - geom.add_physical(dirichlet_wall_low, label="dirichlet_wall_up") - geom.add_physical(neumann_wall_left, label="neumann_wall_left") - geom.add_physical(neumann_wall_right, label="neumann_wall_right") - print("| Neumann marker has tag neumann_wall_left and neumann_wall_right") - print("| Dirichlet marker has tag dirichlet_wall_up and dirichlet_wall_low") + geom.add_physical(dirichlet_wall_up, label="wall_low") + geom.add_physical(dirichlet_wall_low, label="wall_up") + geom.add_physical(neumann_wall_left, label="wall_left") + geom.add_physical(neumann_wall_right, label="wall_right") + print("| Wall marker have tags wall_left, wall_right, wall_up, and wall_low") else: print("Boundary condition not yet implemented") geom.add_raw_code("Transfinite Surface{:};") - geom.add_raw_code('Mesh.Algorithm= 3;') + geom.add_raw_code("Mesh.Algorithm= 3;") geom.add_raw_code("Recombine Surface {:} = 0;") mesh_code = geom.get_code() with open(options.output_name + ".geo", "w") as mesh_file: mesh_file.write(mesh_code) - os.system('gmsh ' + options.output_name + '.geo -2 -format su2 -save_all') - os.system('rm ' + options.output_name + '.geo') + os.system("gmsh " + options.output_name + ".geo -2 -format su2 -save_all") + os.system("rm " + options.output_name + ".geo") print("---------- Successfully created the mesh ------------") -if __name__ == '__main__': +if __name__ == "__main__": main() diff --git a/include/common/globalconstants.hpp b/include/common/globalconstants.hpp index c8d0fd18..8b7c20d2 100644 --- a/include/common/globalconstants.hpp +++ b/include/common/globalconstants.hpp @@ -184,7 +184,8 @@ enum SCALAR_OUTPUT { TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, - PROBE_MOMENT_TIME_TRACE + PROBE_MOMENT_TIME_TRACE, + VAR_ABSORPTION_GREEN }; inline std::map ScalarOutput_Map{ { "ITER", ITER }, @@ -201,7 +202,8 @@ inline std::map ScalarOutput_Map{ { "ITER", ITER }, { "TOTAL_PARTICLE_ABSORPTION_CENTER", TOTAL_PARTICLE_ABSORPTION_CENTER }, { "TOTAL_PARTICLE_ABSORPTION_VERTICAL", TOTAL_PARTICLE_ABSORPTION_VERTICAL }, { "TOTAL_PARTICLE_ABSORPTION_HORIZONTAL", TOTAL_PARTICLE_ABSORPTION_HORIZONTAL }, - { "PROBE_MOMENT_TIME_TRACE", PROBE_MOMENT_TIME_TRACE } }; + { "PROBE_MOMENT_TIME_TRACE", PROBE_MOMENT_TIME_TRACE }, + { "VAR_ABSORPTION_GREEN", VAR_ABSORPTION_GREEN } }; // Spherical Basis Name enum SPHERICAL_BASIS_NAME { SPHERICAL_HARMONICS, SPHERICAL_MONOMIALS, SPHERICAL_MONOMIALS_ROTATED }; diff --git a/src/common/config.cpp b/src/common/config.cpp index 894099f5..5db1d58d 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -747,7 +747,8 @@ void Config::SetPostprocessing() { TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, - PROBE_MOMENT_TIME_TRACE }; + PROBE_MOMENT_TIME_TRACE, + VAR_ABSORPTION_GREEN }; it = std::find( legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput] ); if( it == legalOutputs.end() ) { From 70e072eb9baf79cf3686520b2286e6ad26717983 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Wed, 6 Dec 2023 16:28:23 -0500 Subject: [PATCH 012/155] added variation QOI --- include/solvers/solverbase.hpp | 15 ++++++ src/solvers/solverbase.cpp | 98 +++++++++++++++++++++------------- 2 files changed, 76 insertions(+), 37 deletions(-) diff --git a/include/solvers/solverbase.hpp b/include/solvers/solverbase.hpp index 83a5f105..aa343454 100644 --- a/include/solvers/solverbase.hpp +++ b/include/solvers/solverbase.hpp @@ -106,6 +106,9 @@ class SolverBase double _totalAbsorptionHohlraumCenter; /*!< @brief Absorption of particles at Hohlraum center integrated until current time step */ double _totalAbsorptionHohlraumVertical; /*!< @brief Absorption of particles at Hohlraum vertical walls integrated until current time step */ double _totalAbsorptionHohlraumHorizontal; /*!< @brief Absorption of particles at Hohlraum horizontal walls integrated until current time step */ + double _varAbsorptionHohlraumGreen; /*!< @brief Absorption of particles at Hohlraum green center cells integrated at current time step */ + double _mass; /*!< @brief Integrated radiation flux over the whole simulation (i.e. mass of the particles) */ + double _changeRateFlux; /*!< @brief Integrated change of radiation flux over the whole simulation */ std::vector _probingCells; /*!< @brief Indices of cells that contain a probing sensor */ VectorVector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ @@ -212,6 +215,18 @@ class SolverBase * @brief Computes Problemspecific Scalar QOI */ virtual void ComputeCurrentProbeMoment() = 0; + /** + * @brief Computes Problemspecific Scalar QOI + */ + void GetVarAbsorptionGreen( unsigned idx_iter ); + /** + * @brief Computes Problemspecific Scalar QOI + */ + void GetMass(); + /** + * @brief Computes Problemspecific Scalar QOI + */ + void GetChangeRateFlux(); public: /*! @brief Solver constructor diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 6f6313a2..76c5d1fe 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -109,6 +109,9 @@ SolverBase::SolverBase( Config* settings ) { _totalAbsorptionHohlraumCenter = 0.0; _totalAbsorptionHohlraumVertical = 0.0; _totalAbsorptionHohlraumHorizontal = 0.0; + _varAbsorptionHohlraumGreen = 0.0; + _mass = 0.0; + _changeRateFlux = 0.0; // Hardcoded for the symmetric hohlraum testcase (experimental, needs refactoring) if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { @@ -120,6 +123,10 @@ SolverBase::SolverBase( Config* settings ) { }; _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); } + else { + _probingCells = { 0 }; // Dummy needs refactoring + _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); + } } SolverBase::~SolverBase() { @@ -285,6 +292,7 @@ void SolverBase::PrepareScreenOutput() { idx_field++; _screenOutputFieldNames[idx_field] = "Probe 4 u_0"; break; + case VAR_ABSORPTION_GREEN: _screenOutputFieldNames[idx_field] = "Var. absorption green"; break; default: ErrorMessages::Error( "Screen output field not defined!", CURRENT_FUNCTION ); break; } } @@ -300,17 +308,9 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { // Prepare all Output Fields per group // Different procedure, depending on the Group... switch( _settings->GetScreenOutput()[idx_field] ) { - case MASS: - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - mass += _scalarFluxNew[idx_cell] * _areas[idx_cell]; - } - _screenOutputFields[idx_field] = mass; - break; - + case MASS: _screenOutputFields[idx_field] = _mass; break; case ITER: _screenOutputFields[idx_field] = idx_iter; break; - - case RMS_FLUX: _screenOutputFields[idx_field] = blaze::l2Norm( _scalarFluxNew - _scalarFlux ); break; - + case RMS_FLUX: _screenOutputFields[idx_field] = _changeRateFlux; break; case VTK_OUTPUT: _screenOutputFields[idx_field] = 0; if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || @@ -341,6 +341,7 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { } idx_field--; break; + case VAR_ABSORPTION_GREEN: _screenOutputFields[idx_field] = _varAbsorptionHohlraumGreen; break; default: ErrorMessages::Error( "Screen output group not defined!", CURRENT_FUNCTION ); break; } } @@ -351,36 +352,12 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { std::vector screenOutputFields = _settings->GetScreenOutput(); for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { - // Check first, if the field was already filled by screenoutput writer! - std::vector::iterator itScreenOutput = - std::find( screenOutputFields.begin(), screenOutputFields.end(), _settings->GetHistoryOutput()[idx_field] ); - // Prepare all Output Fields per group // Different procedure, depending on the Group... switch( _settings->GetHistoryOutput()[idx_field] ) { - case MASS: - if( screenOutputFields.end() == itScreenOutput ) { - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - mass += _scalarFluxNew[idx_cell] * _areas[idx_cell]; - } - _historyOutputFields[idx_field] = mass; - } - else { - _historyOutputFields[idx_field] = *itScreenOutput; - } - break; - + case MASS: _historyOutputFields[idx_field] = _mass; break; case ITER: _historyOutputFields[idx_field] = idx_iter; break; - - case RMS_FLUX: - if( screenOutputFields.end() == itScreenOutput ) { - _screenOutputFields[idx_field] = blaze::l2Norm( _scalarFluxNew - _scalarFlux ); - } - else { - _historyOutputFields[idx_field] = *itScreenOutput; - } - break; - + case RMS_FLUX: _historyOutputFields[idx_field] = _changeRateFlux; break; case VTK_OUTPUT: _historyOutputFields[idx_field] = 0; if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || @@ -414,6 +391,8 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { } idx_field--; break; + case VAR_ABSORPTION_GREEN: _historyOutputFields[idx_field] = _varAbsorptionHohlraumGreen; break; + default: ErrorMessages::Error( "History output group not defined!", CURRENT_FUNCTION ); break; } } @@ -517,6 +496,7 @@ void SolverBase::PrepareHistoryOutput() { } idx_field--; break; + case VAR_ABSORPTION_GREEN: _historyOutputFieldNames[idx_field] = "Var. absorption green"; break; default: ErrorMessages::Error( "History output field not defined!", CURRENT_FUNCTION ); break; } } @@ -716,10 +696,53 @@ void SolverBase::GetTotalAbsorptionHohlraum() { _totalAbsorptionHohlraumHorizontal += _curAbsorptionHohlraumHorizontal * _dT; } +void SolverBase::GetVarAbsorptionGreen( unsigned idx_iter ) { + bool green1, green2, green3, green4; + double a_g = 0.0; + _varAbsorptionHohlraumGreen = 0.0; + double x, y; + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + x = _mesh->GetCellMidPoints()[idx_cell][0]; + y = _mesh->GetCellMidPoints()[idx_cell][1]; + + green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) + green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) + green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) + green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) + + if( green1 || green2 || green3 || green4 ) { + a_g += ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) * _scalarFlux[idx_cell] * _areas[idx_cell]; + } + } + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + x = _mesh->GetCellMidPoints()[idx_cell][0]; + y = _mesh->GetCellMidPoints()[idx_cell][1]; + + green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) + green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) + green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) + green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) + + if( green1 || green2 || green3 || green4 ) { + _varAbsorptionHohlraumGreen += ( a_g - _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) ) * + ( a_g - _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) ) * + _areas[idx_cell]; + } + } +} +void SolverBase::GetMass() { + _mass = 0.0; + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + _mass += _scalarFluxNew[idx_cell] * _areas[idx_cell]; + } +} +void SolverBase::GetChangeRateFlux() { _changeRateFlux = blaze::l2Norm( _scalarFluxNew - _scalarFlux ); } + void SolverBase::IterPostprocessing( unsigned idx_iter ) { // --- Compute Quantities of interest for Volume and Screen Output --- - ComputeScalarFlux(); + ComputeScalarFlux(); // Needs to be called first + GetMass(); GetCurrentOutflow(); GetTotalOutflow(); @@ -734,5 +757,6 @@ void SolverBase::IterPostprocessing( unsigned idx_iter ) { GetCurrentAbsorptionHohlraum( idx_iter ); GetTotalAbsorptionHohlraum(); ComputeCurrentProbeMoment(); + GetVarAbsorptionGreen( idx_iter ); } } From fde64a6f4f69b672d53ba728bd56515d5bce46f1 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Sun, 17 Dec 2023 20:55:49 -0500 Subject: [PATCH 013/155] startet incorporation of the UM-Bridge framework --- tools/umbridge_uq/Dockerfile | 66 +++++++++++++++++++++++++++++ tools/umbridge_uq/minimal_server.py | 33 +++++++++++++++ 2 files changed, 99 insertions(+) create mode 100644 tools/umbridge_uq/Dockerfile create mode 100644 tools/umbridge_uq/minimal_server.py diff --git a/tools/umbridge_uq/Dockerfile b/tools/umbridge_uq/Dockerfile new file mode 100644 index 00000000..5189345b --- /dev/null +++ b/tools/umbridge_uq/Dockerfile @@ -0,0 +1,66 @@ +FROM ubuntu:20.04 + +ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" \ + PYTHONPATH=/usr/local/gmsh/lib:$PYTHONPATH \ + PATH=/usr/local/gmsh/bin:$PATH + +RUN apt-get update \ + && DEBIAN_FRONTEND=noninteractive apt-get install -qq \ + gcc \ + g++ \ + libopenmpi-dev \ + openmpi-bin \ + libblas-dev \ + liblapack-dev \ + git \ + make \ + ninja-build \ + cmake \ + wget \ + ssh \ + libssl-dev \ + libxt-dev \ + libgl1-mesa-dev \ + libglu1 \ + libxrender1 \ + libxcursor-dev \ + libxft-dev \ + libxinerama-dev \ + python3 \ + python3-pip \ + doxygen \ + && apt-get clean \ + && apt-get autoremove --purge \ + && rm -rf /var/lib/apt/lists/* + +RUN cd /usr/local \ + && wget -nc --quiet http://gmsh.info/bin/Linux/gmsh-4.7.0-Linux64-sdk.tgz \ + && tar xzf gmsh-4.7.0-Linux64-sdk.tgz \ + && mv gmsh-4.7.0-Linux64-sdk gmsh \ + && rm gmsh-4.7.0-Linux64-sdk.tgz + +RUN wget -nc --no-check-certificate --quiet https://www.vtk.org/files/release/9.1/VTK-9.1.0.tar.gz \ + && tar xzf VTK-9.1.0.tar.gz \ + && mkdir VTK-9.1.0/build \ + && cd VTK-9.1.0/build \ + && cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DBUILD_DOCUMENTATION=OFF -DBUILD_TESTING=OFF ../ \ + && ninja \ + && ninja install > /dev/null \ + && cd - \ + && rm -rf VTK-* + +RUN FILENAME=libtensorflow-gpu-linux-x86_64-2.7.0.tar.gz \ + && wget -q --no-check-certificate https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-gpu-linux-x86_64-2.7.0.tar.gz \ + && tar -C /usr/local -xzf ${FILENAME} \ + && ldconfig /usr/local/lib \ + && rm ${FILENAME} + +RUN pip3 install numpy pygmsh==6.1.1 Pillow pydicom gcovr sphinx_rtd_theme breathe cpp-coveralls coveralls + +RUN pip3 install umbridge + +COPY minimal_server.py / + +CMD python3 minimal_server.py + +WORKDIR /home \ No newline at end of file diff --git a/tools/umbridge_uq/minimal_server.py b/tools/umbridge_uq/minimal_server.py new file mode 100644 index 00000000..fd105483 --- /dev/null +++ b/tools/umbridge_uq/minimal_server.py @@ -0,0 +1,33 @@ +class GenzModel(umbridge.Model): + def __init__(self): + super().__init__("genz") + self._model = GenzFunction() + + def get_input_sizes(self, config): + return [config.get("nvars", 5)] + + def get_output_sizes(self, config): + return [1] + + def __call__(self, parameters, config): + # CFG needs to be created here + # KiT-RT needs to be called here + + sample = np.asarray(parameters).T + assert sample.shape[0] == config.get("nvars", 5) + self._model.set_coefficients( + sample.shape[0], + config.get("c_factor", 1), + config.get("coef_type", "sqexp"), + config.get("w_factor", 0.5), + ) + name = config.get("name", "oscillatory") + val = self._model(name, sample)[0, 0] + return [[val]] + + def supports_evaluate(self): + return True + + +models = [GenzModel()] +umbridge.serve_models(models, 4242) From 6b980cb8fda26a918e78064593257cf4aa83cc78 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Mon, 18 Dec 2023 10:41:49 -0500 Subject: [PATCH 014/155] setup um-bridge test case lattice - errror with network connection --- tools/umbridge_uq/Dockerfile | 2 + tools/umbridge_uq/minimal_server.py | 118 ++++++++++++++++++++++++++-- 2 files changed, 114 insertions(+), 6 deletions(-) diff --git a/tools/umbridge_uq/Dockerfile b/tools/umbridge_uq/Dockerfile index 5189345b..819447c6 100644 --- a/tools/umbridge_uq/Dockerfile +++ b/tools/umbridge_uq/Dockerfile @@ -57,6 +57,8 @@ RUN FILENAME=libtensorflow-gpu-linux-x86_64-2.7.0.tar.gz \ RUN pip3 install numpy pygmsh==6.1.1 Pillow pydicom gcovr sphinx_rtd_theme breathe cpp-coveralls coveralls +RUN pip3 install pandas subprocess datetime + RUN pip3 install umbridge COPY minimal_server.py / diff --git a/tools/umbridge_uq/minimal_server.py b/tools/umbridge_uq/minimal_server.py index fd105483..83264e82 100644 --- a/tools/umbridge_uq/minimal_server.py +++ b/tools/umbridge_uq/minimal_server.py @@ -1,7 +1,14 @@ -class GenzModel(umbridge.Model): +import subprocess +import os +import pandas as pd +import umbridge +import datetime + + +class KiTRT(umbridge.Model): def __init__(self): - super().__init__("genz") - self._model = GenzFunction() + super().__init__("KiT-RT") + # self._model = GenzFunction() def get_input_sizes(self, config): return [config.get("nvars", 5)] @@ -11,8 +18,44 @@ def get_output_sizes(self, config): def __call__(self, parameters, config): # CFG needs to be created here + quad_order_value = 20 # Replace with the desired value + self.write_lattice_script("lattice.cfg", quad_order_value) + # KiT-RT needs to be called here + # Step 1: Run the C++ application + cpp_application_path = "../../build/KiT-RT" + cfg_file_path = "lattice.cfg" + log_file_folder = "result/logs/" + + # Run the C++ application + subprocess.run([cpp_application_path, cfg_file_path]) + + # Step 2: Read in the logfile.csv as a DataFrame + log_file_path = os.path.join(log_file_folder, "lattice_log.csv") + + # Check if the logfile exists + if os.path.exists(log_file_path): + # Read the CSV file into a DataFrame + logfile_df = pd.read_csv(log_file_path) + + # Step 3: Identify columns with names in the 'qois' list + qois = [ + "TOTAL_OUTFLOW", + "MAX_OUTFLOW", + "CUR_PARTICLE_ABSORPTION", + ] # Add your desired column names here + + # Filter columns based on 'qois' + selected_columns_df = logfile_df[qois] + + # Display the selected columns DataFrame + print("Selected Columns DataFrame:") + print(selected_columns_df) + else: + print(f"Error: Log file not found at {log_file_path}") + + """ ============== sample = np.asarray(parameters).T assert sample.shape[0] == config.get("nvars", 5) self._model.set_coefficients( @@ -23,11 +66,74 @@ def __call__(self, parameters, config): ) name = config.get("name", "oscillatory") val = self._model(name, sample)[0, 0] - return [[val]] + """ + return [[0]] def supports_evaluate(self): return True + def write_lattice_script(filename, quad_order_value): + current_date = datetime.datetime.now().strftime("%d. %b. %Y") + + script_content = f"""\ + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + % Lattice Benchmarking File SN % + % Author UM-Bridge bechmarking tool % + % Date {current_date} % + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + % + % + % ----IO specification ---- + % + OUTPUT_DIR = result + OUTPUT_FILE = lattice + LOG_DIR = result/logs + LOG_FILE = lattice_log + MESH_FILE = meshes/lattice_unstructured.su2 + % + % --- Problem definition --- + % + PROBLEM = LATTICE + TIME_FINAL = 10 + SPATIAL_DIM = 3 + SOURCE_MAGNITUDE = 10.0 + % + % ---- Solver specifications ---- + % + % Solver type + SOLVER = SN_SOLVER + % CFL number + CFL_NUMBER = 0.45 + % Reconstruction order + RECONS_ORDER = 1 + % + % ---- Boundary Conditions ---- + % + BC_NEUMANN = ( void ) + % + % ----- Quadrature Specification --- + % + QUAD_TYPE = GAUSS_LEGENDRE_TENSORIZED + QUAD_ORDER = {quad_order_value} + % + % ----- Output ---- + % + VOLUME_OUTPUT = (MINIMAL) + VOLUME_OUTPUT_FREQUENCY = 1 + SCREEN_OUTPUT = (ITER, CUR_OUTFLOW) + % (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) + SCREEN_OUTPUT_FREQUENCY = 1 + HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) + HISTORY_OUTPUT_FREQUENCY = 1 + """ + + with open(filename, "w") as f: + f.write(script_content) + + +print("here") +print(umbridge.supported_models("http://0.0.0.0:80")) -models = [GenzModel()] -umbridge.serve_models(models, 4242) +models = [KiTRT()] +print("here") +umbridge.serve_models(models, 80) From 136a4b5aa4f294c915ce501eb42e52493d51937e Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Tue, 19 Dec 2023 14:54:53 -0500 Subject: [PATCH 015/155] added design parameters for the lattice test case --- include/common/config.hpp | 31 +++++++++++++----- include/common/optionstructure.hpp | 16 ++++++++++ include/problems/lattice.hpp | 13 ++++---- src/common/config.cpp | 18 +++++++++++ src/common/optionstructure.cpp | 33 ++++++++++++++++++++ src/problems/lattice.cpp | 50 +++++++++++++++++++++++------- 6 files changed, 136 insertions(+), 25 deletions(-) diff --git a/include/common/config.hpp b/include/common/config.hpp index 8cce1008..52cc4d06 100644 --- a/include/common/config.hpp +++ b/include/common/config.hpp @@ -90,6 +90,13 @@ class Config std::string _hydrogenFile; /*!< @brief Name of hydrogen cross section file path*/ std::string _oxygenFile; /*!< @brief Name of oxygen cross section file path */ std::string _stoppingPowerFile; /*!< @brief Name of stopping power file path */ + // Lattice + double _dsgnAbsBlue; /*!< @brief Absorption in all blue blocks */ + double _dsgnScatterWhite; /*!< @brief Scattering in all white blocks */ + std::vector _dsgnAbsIndividual; /*!< @brief Absorption in all 7x7 blocks of the Lattice test case (up left to low right) */ + unsigned short _nDsgnAbsIndividual; /*!< @brief Number of individual blocks. Needs to be 47*/ + std::vector _dsgnScatterIndividual; /*!< @brief Scatter in all 7x7 blocks of the Lattice test case (up left to low right) */ + unsigned short _nDsgnScatterIndividual; /*!< @brief Number of individual blocks. Needs to be 47*/ // CSD double _maxEnergyCSD; /*!< @brief Maximum energy for CSD simulation */ @@ -237,6 +244,8 @@ class Config // List Options void AddStringListOption( const std::string name, unsigned short& input_size, std::vector& option_field ); + void AddDoubleListOption( const std::string name, unsigned short& input_size, std::vector& option_field ); + template void AddEnumListOption( const std::string name, unsigned short& num_marker, @@ -247,8 +256,7 @@ class Config void InitLogger(); // Helper functions - template - K findKey(const std::map& myMap, const V& valueToFind); + template K findKey( const std::map& myMap, const V& valueToFind ); public: /*! @@ -310,6 +318,14 @@ class Config double inline GetSourceMagnitude() const { return _magQ; } // CSD double inline GetMaxEnergyCSD() const { return _maxEnergyCSD; } + // Lattice + double inline GetLatticeAbsBlue() const { return _dsgnAbsBlue; } + double inline GetLatticeScatterWhite() const { return _dsgnScatterWhite; } + std::vector inline GetLatticeAbsorptionIndividual() const { return _dsgnAbsIndividual; } + unsigned short inline GetNLatticeAbsIndividual() { return _nDsgnAbsIndividual; } + std::vector inline GetLatticeScatterIndividual() const { return _dsgnScatterIndividual; } + unsigned short inline GetNLatticeScatterIndividual() { return _nDsgnScatterIndividual; } + // Optimizer double inline GetNewtonOptimizerEpsilon() const { return _optimizerEpsilon; } unsigned long inline GetNewtonIter() const { return _newtonIter; } @@ -370,16 +386,17 @@ class Config // ---- Setters for option structure // This section is dangerous // Quadrature Structure - void inline SetNQuadPoints( unsigned nq ) { _nQuadPoints = nq; } /*!< @brief Never change the nq! This is only for the test framework. */ - void inline SetQuadName( QUAD_NAME quadName ) { _quadName = quadName; } /*!< @brief Never change the quadName! This is only for the test framework. */ + void inline SetNQuadPoints( unsigned nq ) { _nQuadPoints = nq; } /*!< @brief Never change the nq! This is only for the test framework. */ + void inline SetQuadName( QUAD_NAME quadName ) { + _quadName = quadName; + } /*!< @brief Never change the quadName! This is only for the test framework. */ void inline SetQuadOrder( unsigned quadOrder ) { _quadOrder = quadOrder; - } /*!< @brief Never change the quadOrder! This is only for the test framework. */ + } /*!< @brief Never change the quadOrder! This is only for the test framework. */ void inline SetSNAllGaussPts( bool useall ) { _allGaussPts = useall; } /*!< @brief Never change the this! This is only for the test framework. */ // Mesh Structure void inline SetNCells( unsigned nCells ) { _nCells = nCells; } - void inline SetEnforceNeuralRotationalSymmetry(bool symmetryEnforce) { _enforceNeuralRotationalSymmetry =symmetryEnforce ; } - + void inline SetEnforceNeuralRotationalSymmetry( bool symmetryEnforce ) { _enforceNeuralRotationalSymmetry = symmetryEnforce; } }; #endif // CONFIG_H diff --git a/include/common/optionstructure.hpp b/include/common/optionstructure.hpp index 0730c681..b1821607 100644 --- a/include/common/optionstructure.hpp +++ b/include/common/optionstructure.hpp @@ -161,6 +161,22 @@ class OptionStringList : public OptionBase void SetDefault() override; }; +class OptionDoubleList : public OptionBase +{ + std::vector& _field; /*!< @brief Reference to the string list field value. no default value */ + std::string _name; /*!< @brief string identifier for the option */ + unsigned short& _size; /*!< @brief Size of string list */ + + public: + OptionDoubleList( std::string option_field_name, unsigned short& list_size, std::vector& option_field ); + + ~OptionDoubleList() override {} + + std::string SetValue( std::vector option_value ) override; + + void SetDefault() override; +}; + // Template classes (TODO: Find a way to split code to .cpp) template class OptionEnum : public OptionBase diff --git a/include/problems/lattice.hpp b/include/problems/lattice.hpp index 3702e7c6..a3cd582a 100644 --- a/include/problems/lattice.hpp +++ b/include/problems/lattice.hpp @@ -13,12 +13,13 @@ class Lattice_SN : public ProblemBase Lattice_SN() = delete; - bool isAbsorption( const Vector& pos ) const; /*!< @return True if pos is in absorption region, False otherwise */ - bool isSource( const Vector& pos ) const; /*!< @return True if pos is in source region, False otherwise */ + bool IsAbsorption( const Vector& pos ) const; /*!< @return True if pos is in absorption region, False otherwise */ + bool IsSource( const Vector& pos ) const; /*!< @return True if pos is in source region, False otherwise */ protected: - void SetGhostCells() override ; /*!< @brief Sets vector of ghost cells for boundary conditions */ - + void SetGhostCells() override; /*!< @brief Sets vector of ghost cells for boundary conditions */ + unsigned GetBlockID( const Vector& pos ) const; /*!< @brief Returns checkerboard field id (0-48, row major) of the Lattice test case */ + public: Lattice_SN( Config* settings, Mesh* mesh ); virtual ~Lattice_SN(); @@ -28,8 +29,7 @@ class Lattice_SN : public ProblemBase virtual std::vector GetExternalSource( const Vector& energies ) override; virtual VectorVector SetupIC() override; - const Vector& GetGhostCellValue(int idx_cell, const Vector& cell_sol) override final; - + const Vector& GetGhostCellValue( int idx_cell, const Vector& cell_sol ) override final; }; class Lattice_Moment : public ProblemBase @@ -63,5 +63,4 @@ class Lattice_Moment : public ProblemBase virtual VectorVector SetupIC() override; }; - #endif // LATTICE_H diff --git a/src/common/config.cpp b/src/common/config.cpp index 5db1d58d..8a08be9d 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -164,6 +164,13 @@ void Config::AddStringListOption( const string name, unsigned short& num_marker, _optionMap.insert( pair( name, val ) ); } +void Config::AddDoubleListOption( const string name, unsigned short& num_marker, std::vector& option_field ) { + assert( _optionMap.find( name ) == _optionMap.end() ); + _allOptions.insert( pair( name, true ) ); + OptionBase* val = new OptionDoubleList( name, num_marker, option_field ); + _optionMap.insert( pair( name, val ) ); +} + template void Config::AddEnumListOption( const std::string name, unsigned short& input_size, @@ -273,6 +280,17 @@ void Config::SetConfigOptions() { /*! @brief MAX_ENERGY_CSD \n DESCRIPTION: Sets maximum energy for the CSD simulation.\n DEFAULT \ingroup Config */ AddDoubleOption( "MAX_ENERGY_CSD", _maxEnergyCSD, 5.0 ); + // Lattice related options + /*! @brief LATTICE_DSGN_ABSORPTION_BLUE \n DESCRIPTION: Sets absorption rate for the blue blocks (absorption blocks) in the lattice test case. \n + * DEFAULT \ingroup Config */ + AddDoubleOption( "LATTICE_DSGN_ABSORPTION_BLUE", _dsgnAbsBlue, 10.0 ); + /*! @brief LATTICE_DSGN_ABSORPTION_INDIVIDUAL \n DESCRIPTION: Sets absorption rate all 7x7 blocks in the lattice test case. Order from upper left + * to lower right (row major). \n DEFAULT \ingroup Config */ + AddDoubleListOption( "LATTICE_DSGN_ABSORPTION_INDIVIDUAL", _nDsgnAbsIndividual, _dsgnAbsIndividual ); + /*! @brief LATTICE_DSGN_SCATTER_INDIVIDUAL \n DESCRIPTION: Sets scattering rate all 7x7 blocks in the lattice test case. Order from upper left to + * lower right (row major). \n DEFAULT \ingroup Config */ + AddDoubleListOption( "LATTICE_DSGN_SCATTER_INDIVIDUAL", _nDsgnScatterIndividual, _dsgnScatterIndividual ); + // Entropy related options /*! @brief Entropy Functional \n DESCRIPTION: Entropy functional used for the MN_Solver \n DEFAULT QUADRTATIC @ingroup Config. */ AddEnumOption( "ENTROPY_FUNCTIONAL", _entropyName, Entropy_Map, QUADRATIC ); diff --git a/src/common/optionstructure.cpp b/src/common/optionstructure.cpp index ff0ee575..486a8964 100644 --- a/src/common/optionstructure.cpp +++ b/src/common/optionstructure.cpp @@ -237,3 +237,36 @@ std::string OptionStringList::SetValue( std::vector option_value ) void OptionStringList::SetDefault() { this->_size = 0; // There is no default value for list } + +// --- members of OptionDoubleList + +OptionDoubleList::OptionDoubleList( std::string option_field_name, unsigned short& list_size, std::vector& option_field ) + : _field( option_field ), _size( list_size ) { + this->_name = option_field_name; +} + +std::string OptionDoubleList::SetValue( std::vector option_value ) { + OptionBase::SetValue( option_value ); + // The size is the length of option_value + unsigned short option_size = option_value.size(); + if( option_size == 1 && option_value[0].compare( "NONE" ) == 0 ) { + this->_size = 0; + return ""; + } + this->_size = option_size; + + // Parse all of the options + this->_field.resize( this->_size ); + for( unsigned long i = 0; i < option_size; i++ ) { + std::istringstream is( option_value[i] ); + double val; + if( is >> val ) { + this->_field.at( i ) = val; + } + } + return ""; +} + +void OptionDoubleList::SetDefault() { + this->_size = 0; // There is no default value for list +} diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index 48d2eecd..bc430157 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -11,17 +11,38 @@ Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { // Initialise crosssections to 1 - _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); - _totalXS = Vector( _mesh->GetNumCells(), 1.0 ); + _scatteringXS = Vector( _mesh->GetNumCells(), _settings->GetLatticeScatterWhite() ); + _totalXS = Vector( _mesh->GetNumCells(), _settings->GetLatticeScatterWhite() ); - // For absorption cells: set scattering XS to 0 and absorption to 10 - auto cellMids = _mesh->GetCellMidPoints(); - for( unsigned j = 0; j < cellMids.size(); ++j ) { - if( isAbsorption( cellMids[j] ) ) { - _scatteringXS[j] = 0.0; - _totalXS[j] = 10.0; + if( _settings->GetNLatticeAbsIndividual() == 49 && _settings->GetNLatticeScatterIndividual() == 49 ) { // Individual values set + auto log = spdlog::get( "event" ); + log->info( "| " ); + log->info( "| Lattice test case WITH individual scattering and absorption values for each block. " ); + + auto cellMids = _mesh->GetCellMidPoints(); + + std::vector scatteringValues = _settings->GetLatticeScatterIndividual(); + std::vector absorptionValues = _settings->GetLatticeAbsorptionIndividual(); + + for( unsigned j = 0; j < cellMids.size(); ++j ) { + _scatteringXS[j] = scatteringValues[GetBlockID( cellMids[j] )]; + _totalXS[j] = absorptionValues[GetBlockID( cellMids[j] )] + scatteringValues[GetBlockID( cellMids[j] )]; + } + } + else { + auto log = spdlog::get( "event" ); + log->info( "| " ); + log->info( "| Lattice test case WITHOUT individual scattering and absorption values for each block. " ); + // For absorption cells: set scattering XS to 0 and absorption to 10 + auto cellMids = _mesh->GetCellMidPoints(); + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( IsAbsorption( cellMids[j] ) ) { + _scatteringXS[j] = 0.0; + _totalXS[j] = _settings->GetLatticeAbsBlue(); + } } } + SetGhostCells(); } @@ -35,7 +56,7 @@ std::vector Lattice_SN::GetExternalSource( const Vector& /*energie VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); auto cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { - if( isSource( cellMids[j] ) ) Q[j] = _settings->GetSourceMagnitude(); // isotropic source + if( IsSource( cellMids[j] ) ) Q[j] = _settings->GetSourceMagnitude(); // isotropic source } return std::vector( 1u, Q ); } @@ -45,7 +66,7 @@ VectorVector Lattice_SN::SetupIC() { return psi; } -bool Lattice_SN::isAbsorption( const Vector& pos ) const { +bool Lattice_SN::IsAbsorption( const Vector& pos ) const { // Check whether pos is inside absorbing squares double xy_corrector = -3.5; std::vector lbounds{ 1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector }; @@ -61,7 +82,14 @@ bool Lattice_SN::isAbsorption( const Vector& pos ) const { return false; } -bool Lattice_SN::isSource( const Vector& pos ) const { +unsigned Lattice_SN::GetBlockID( const Vector& pos ) const { + double xy_corrector = 3.5; + int block_x = int( pos[0] + xy_corrector ); + int block_y = int( pos[1] + xy_corrector ); + return (unsigned)( block_y * 7 + block_x ); +} + +bool Lattice_SN::IsSource( const Vector& pos ) const { // Check whether pos is part of source region if( pos[0] >= 3 - 3.5 && pos[0] <= 4 - 3.5 && pos[1] >= 3 - 3.5 && pos[1] <= 4 - 3.5 ) return true; From 8ac831d19f1eb8bfaf8e6d6c4ef968592724fa4e Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Tue, 19 Dec 2023 17:45:20 -0500 Subject: [PATCH 016/155] refactoring of problem specific QOIs. put to the corresponding problem class --- include/problems/lattice.hpp | 18 +- include/problems/problembase.hpp | 256 +++++++++++++------------ include/problems/symmetrichohlraum.hpp | 30 ++- include/solvers/solverbase.hpp | 63 ++---- src/problems/hohlraum.cpp | 2 +- src/problems/lattice.cpp | 55 +++++- src/problems/problembase.cpp | 251 ++++++++++-------------- src/problems/symmetrichohlraum.cpp | 120 ++++++++++-- src/solvers/snsolver.cpp | 48 +++-- src/solvers/solverbase.cpp | 183 +++--------------- 10 files changed, 502 insertions(+), 524 deletions(-) diff --git a/include/problems/lattice.hpp b/include/problems/lattice.hpp index a3cd582a..22768d67 100644 --- a/include/problems/lattice.hpp +++ b/include/problems/lattice.hpp @@ -8,11 +8,16 @@ class SphericalBase; class Lattice_SN : public ProblemBase { private: - Vector _scatteringXS; /*!< @brief Vector of scattering crosssections */ - Vector _totalXS; /*!< @brief Vector of total crosssections */ - Lattice_SN() = delete; + Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ + Vector _sigmaT; /*!< @brief Vector of total crosssections */ + + // Lattice QOIS + double _curAbsorptionLattice; /*!< @brief Absorption of particles at Lattice checkerboard regions at current time step */ + double _totalAbsorptionLattice; /*!< @brief Absorption of particles at Lattice checkerboard regions integrated until current time step */ + double _curMaxAbsorptionLattice; /*!< @brief Maximum pointwise absorption of particles at Lattice checkerboard regions until current time step */ + bool IsAbsorption( const Vector& pos ) const; /*!< @return True if pos is in absorption region, False otherwise */ bool IsSource( const Vector& pos ) const; /*!< @return True if pos is in source region, False otherwise */ @@ -30,6 +35,13 @@ class Lattice_SN : public ProblemBase virtual VectorVector SetupIC() override; const Vector& GetGhostCellValue( int idx_cell, const Vector& cell_sol ) override final; + + double GetCurAbsorptionLattice() override final; + double GetTotalAbsorptionLattice() override final; + double GetMaxAbsorptionLattice() override final; + void ComputeTotalAbsorptionLattice( double dT ) override; + void ComputeCurrentAbsorptionLattice( const Vector& scalarFlux ) override; + void ComputeMaxAbsorptionLattice( const Vector& scalarFlux ) override; }; class Lattice_Moment : public ProblemBase diff --git a/include/problems/problembase.hpp b/include/problems/problembase.hpp index fce27bfb..7c3feca1 100644 --- a/include/problems/problembase.hpp +++ b/include/problems/problembase.hpp @@ -10,125 +10,143 @@ class Mesh; class ProblemBase { -protected: - Config *_settings; /*!< @brief pointer to settings */ - Mesh *_mesh; /*!< @brief pointer to mesh */ - - std::vector _density; /*!< @brief vector with patient densities */ - std::vector _stoppingPower; /*!< @brief vector with stopping powers*/ - std::map - _ghostCells; /*!< @brief Vector of ghost cells for boundary conditions */ - virtual void SetGhostCells(); /*!< @brief Sets vector of ghost cells for - boundary conditions */ - - ProblemBase() = delete; - -public: - /** - * @brief GetScatteringXS gives back vector (each energy) of vectors (each - * grid cell) of scattering cross sections for materials defined by density - * and energies in vector energy - * @param energies is the energy the cross section is queried for - */ - virtual VectorVector GetScatteringXS(const Vector &energies) = 0; - - /** - * @brief GetTotalXS gives back vector of vectors of total cross sections for - * materials defined by density and energies in vector energy - * @param energies is the energy the cross section is queried for - */ - virtual VectorVector GetTotalXS(const Vector &energies) = 0; - - /** - * @brief GetTotalXSE gives back vector of total cross sections for - * energies in vector energy - */ - virtual Vector GetTotalXSE(const Vector & /*energies*/) { return Vector(1); } - - /** - * @brief GetScatteringXSE gives back vector (each energy) of scattering cross - * sections for energies in vector energy - * @param energies is the energy the cross section is queried for - * @param angles are the queried angles - */ - virtual std::vector GetScatteringXSE(const Vector &energies, - const Matrix &angles) - { - return std::vector(energies.size(), - Matrix(angles.rows(), angles.columns())); - } - - /** - * @brief GetScatteringXSE gives back vector (each energy) of scattering cross - * sections for energies in vector energy - * @param energies is the energy the cross section is queried for - * @param angles are the queried angles - */ - virtual VectorVector GetScatteringXSE(const Vector &energies, - const Vector &angles); - - /** - * @brief GetExternalSource gives back vector of vectors of source terms for - * each energy, cell and angle - * @param energies is the energy the cross section is queried for - */ - virtual std::vector GetExternalSource( - const Vector &energies) = 0; - - /** - * @brief GetStoppingPower gives back vector of vectors of stopping powers for - * materials defined by density and energies in vector energy - * @param energies is vector with energies - */ - virtual Vector GetStoppingPower(const Vector &energies); - - /** - * @brief GetDensity gives back vector of densities for every spatial cell - * @param cellMidPoints is vector with cell mid points - */ - virtual std::vector GetDensity(const VectorVector &cellMidPoints); - - /** - * @brief Setup the initial condition for the flux psi - */ - virtual VectorVector SetupIC() = 0; - - /** - * @brief Returns the Value of the ghost cell with index idx_cell - */ - virtual const Vector &GetGhostCellValue(int idx_cell, const Vector &cell_sol); - - /** - * @brief Returns the pointer to ghostcell map - */ - std::map &GetGhostCells() { return _ghostCells; }; - - /*! @brief Exact analytical solution for the Line Source Test Case. Returns 0 - for all other test cases. - @return exact solution at x,y,t,scatteringXS - */ - // Default is set to 0. ~> if no analytical solution is available. - double virtual GetAnalyticalSolution(double /*x*/, double /*y*/, double /*t*/, - double /*scatteringXS*/) - { - return 0.0; - } - - /** - * @brief Physics constructor - * @param settings stores all needed user information - * @param mesh for the test case - */ - ProblemBase(Config *settings, Mesh *mesh); - virtual ~ProblemBase(); - - /** - * @brief Create constructor - * @param settings stores all needed information - * @param mesh for the test case - * @return pointer to ProblemBase - */ - static ProblemBase *Create(Config *settings, Mesh *mesh); + protected: + Config* _settings; /*!< @brief pointer to settings */ + Mesh* _mesh; /*!< @brief pointer to mesh */ + + std::vector _density; /*!< @brief vector with patient densities */ + std::vector _stoppingPower; /*!< @brief vector with stopping powers*/ + std::map _ghostCells; /*!< @brief Vector of ghost cells for boundary conditions */ + virtual void SetGhostCells(); /*!< @brief Sets vector of ghost cells for + boundary conditions */ + + ProblemBase() = delete; + + // Quantities of Interest + double _curScalarOutflow; /*!< @brief Outflow over whole boundary at current time step */ + double _totalScalarOutflow; /*!< @brief Outflow over whole boundary integrated until current time step */ + double _curMaxOrdinateOutflow; /*!< @brief Maximum ordinate-wise ouftlow over boundary over all time steps */ + + public: + /** + * @brief GetScatteringXS gives back vector (each energy) of vectors (each + * grid cell) of scattering cross sections for materials defined by density + * and energies in vector energy + * @param energies is the energy the cross section is queried for + */ + virtual VectorVector GetScatteringXS( const Vector& energies ) = 0; + + /** + * @brief GetTotalXS gives back vector of vectors of total cross sections for + * materials defined by density and energies in vector energy + * @param energies is the energy the cross section is queried for + */ + virtual VectorVector GetTotalXS( const Vector& energies ) = 0; + + /** + * @brief GetTotalXSE gives back vector of total cross sections for + * energies in vector energy + */ + virtual Vector GetTotalXSE( const Vector& /*energies*/ ) { return Vector( 1 ); } + + /** + * @brief GetScatteringXSE gives back vector (each energy) of scattering cross + * sections for energies in vector energy + * @param energies is the energy the cross section is queried for + * @param angles are the queried angles + */ + virtual std::vector GetScatteringXSE( const Vector& energies, const Matrix& angles ) { + return std::vector( energies.size(), Matrix( angles.rows(), angles.columns() ) ); + } + + /** + * @brief GetScatteringXSE gives back vector (each energy) of scattering cross + * sections for energies in vector energy + * @param energies is the energy the cross section is queried for + * @param angles are the queried angles + */ + virtual VectorVector GetScatteringXSE( const Vector& energies, const Vector& angles ); + + /** + * @brief GetExternalSource gives back vector of vectors of source terms for + * each energy, cell and angle + * @param energies is the energy the cross section is queried for + */ + virtual std::vector GetExternalSource( const Vector& energies ) = 0; + + /** + * @brief GetStoppingPower gives back vector of vectors of stopping powers for + * materials defined by density and energies in vector energy + * @param energies is vector with energies + */ + virtual Vector GetStoppingPower( const Vector& energies ); + + /** + * @brief GetDensity gives back vector of densities for every spatial cell + * @param cellMidPoints is vector with cell mid points + */ + virtual std::vector GetDensity( const VectorVector& cellMidPoints ); + + /** + * @brief Setup the initial condition for the flux psi + */ + virtual VectorVector SetupIC() = 0; + + /** + * @brief Returns the Value of the ghost cell with index idx_cell + */ + virtual const Vector& GetGhostCellValue( int idx_cell, const Vector& cell_sol ); + + /** + * @brief Returns the pointer to ghostcell map + */ + std::map& GetGhostCells() { return _ghostCells; }; + + /*! @brief Exact analytical solution for the Line Source Test Case. Returns 0 + for all other test cases. + @return exact solution at x,y,t,scatteringXS + */ + // Default is set to 0. ~> if no analytical solution is available. + double virtual GetAnalyticalSolution( double /*x*/, double /*y*/, double /*t*/, double /*scatteringXS*/ ) { return 0.0; } + + /** + * @brief Physics constructor + * @param settings stores all needed user information + * @param mesh for the test case + */ + ProblemBase( Config* settings, Mesh* mesh ); + virtual ~ProblemBase(); + + /** + * @brief Create constructor + * @param settings stores all needed information + * @param mesh for the test case + * @return pointer to ProblemBase + */ + static ProblemBase* Create( Config* settings, Mesh* mesh ); + + // Virtual getter function for all QOIS for all test problems + // Getter + virtual double GetCurAbsorptionLattice() { return 0.0; }; + virtual double GetTotalAbsorptionLattice() { return 0.0; }; + virtual double GetMaxAbsorptionLattice() { return 0.0; }; + + virtual double GetCurAbsorptionHohlraumCenter() { return 0.0; }; + virtual double GetCurAbsorptionHohlraumVertical() { return 0.0; }; + virtual double GetCurAbsorptionHohlraumHorizontal() { return 0.0; }; + virtual double GetTotalAbsorptionHohlraumCenter() { return 0.0; }; + virtual double GetTotalAbsorptionHohlraumVertical() { return 0.0; }; + virtual double GetTotalAbsorptionHohlraumHorizontal() { return 0.0; }; + virtual double GetVarAbsorptionHohlraumGreen() { return 0.0; }; + + // Setter + virtual void ComputeTotalAbsorptionLattice( double dT ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeCurrentAbsorptionLattice( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeMaxAbsorptionLattice( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeCurrentAbsorptionHohlraum( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeTotalAbsorptionHohlraum( double dT ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + // virtual void ComputeCurrentProbeMoment(){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeVarAbsorptionGreen( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ }; #endif diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp index aec225a5..267d0005 100644 --- a/include/problems/symmetrichohlraum.hpp +++ b/include/problems/symmetrichohlraum.hpp @@ -7,11 +7,19 @@ class SymmetricHohlraum : public ProblemBase { private: SymmetricHohlraum() = delete; - Vector _scatteringXS; /*!< @brief Vector of scattering crosssections */ - Vector _totalXS; /*!< @brief Vector of total crosssections */ + Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ + Vector _sigmaT; /*!< @brief Vector of total crosssections */ protected: - void SetGhostCells() override ; /*!< @brief Sets vector of ghost cells for boundary conditions */ + void SetGhostCells() override; /*!< @brief Sets vector of ghost cells for boundary conditions */ + + double _curAbsorptionHohlraumCenter; /*!< @brief Absorption of particles at Hohlraum center at current time step */ + double _curAbsorptionHohlraumVertical; /*!< @brief Absorption of particles at Hohlraum vertical walls at current time step */ + double _curAbsorptionHohlraumHorizontal; /*!< @brief Absorption of particles at Hohlraum horizontal walls at current time step */ + double _totalAbsorptionHohlraumCenter; /*!< @brief Absorption of particles at Hohlraum center integrated until current time step */ + double _totalAbsorptionHohlraumVertical; /*!< @brief Absorption of particles at Hohlraum vertical walls integrated until current time step */ + double _totalAbsorptionHohlraumHorizontal; /*!< @brief Absorption of particles at Hohlraum horizontal walls integrated until current time step */ + double _varAbsorptionHohlraumGreen; /*!< @brief Absorption of particles at Hohlraum green center cells integrated at current time step */ public: SymmetricHohlraum( Config* settings, Mesh* mesh ); @@ -20,14 +28,26 @@ class SymmetricHohlraum : public ProblemBase virtual VectorVector SetupIC() override; VectorVector GetScatteringXS( const Vector& energies ) override final; VectorVector GetTotalXS( const Vector& energies ) override final; - const Vector& GetGhostCellValue(int idx_cell, const Vector& cell_sol) override final; + const Vector& GetGhostCellValue( int idx_cell, const Vector& cell_sol ) override final; + + void ComputeCurrentAbsorptionHohlraum( const Vector& scalarFlux ) override; /*!< @brief Computes Problemspecific Scalar QOI */ + void ComputeTotalAbsorptionHohlraum( double dT ) override; /*!< @brief Computes Problemspecific Scalar QOI */ + // void ComputeCurrentProbeMoment() override; /*!< @brief Computes Problemspecific Scalar QOI */ + void ComputeVarAbsorptionGreen( const Vector& scalarFlux ) override; /*!< @brief Computes Problemspecific Scalar QOI */ + double GetCurAbsorptionHohlraumCenter() { return _curAbsorptionHohlraumCenter; }; + double GetCurAbsorptionHohlraumVertical() { return _curAbsorptionHohlraumVertical; }; + double GetCurAbsorptionHohlraumHorizontal() { return _curAbsorptionHohlraumHorizontal; }; + double GetTotalAbsorptionHohlraumCenter() { return _totalAbsorptionHohlraumCenter; }; + double GetTotalAbsorptionHohlraumVertical() { return _totalAbsorptionHohlraumVertical; }; + double GetTotalAbsorptionHohlraumHorizontal() { return _totalAbsorptionHohlraumHorizontal; }; + double GetVarAbsorptionHohlraumGreen() { return _varAbsorptionHohlraumGreen; }; }; class SymmetricHohlraum_Moment : public SymmetricHohlraum { private: SymmetricHohlraum_Moment() = delete; - // TODO void SetGhostCells() override final; /*!< @brief Sets vector of ghost cells for boundary conditions */ + // TODO void SetGhostCells() override final; /*!< @brief Sets vector of ghost cells for boundary conditions */ public: SymmetricHohlraum_Moment( Config* settings, Mesh* mesh ); diff --git a/include/solvers/solverbase.hpp b/include/solvers/solverbase.hpp index aa343454..c04db2a9 100644 --- a/include/solvers/solverbase.hpp +++ b/include/solvers/solverbase.hpp @@ -27,10 +27,8 @@ class SolverBase // --------- Often used variables of member classes for faster access ---- // Time or Energystepping - unsigned _nIter; /*!< @brief number of time steps, for non CSD, this equals - _nEnergies, for _csd, _maxIter = _nEnergies-1*/ - unsigned _nEnergies; /*!< @brief number of energysteps, number of nodal energy - values for CSD */ + unsigned _nIter; /*!< @brief number of time steps, for non CSD, this equals _nEnergies, for _csd, _maxIter =_nEnergies-1*/ + unsigned _nEnergies; /*!< @brief number of energysteps, number of nodal energy values for CSD */ double _dT; /*!< @brief energy/time step size */ Vector _energies; /*!< @brief energy groups used in the simulation [keV] */ @@ -57,9 +55,9 @@ class SolverBase Vector _sMid; /*!< @brief stopping power at intermediate time steps, dim(_s) = _maxIter (only for csdsolver) */ - std::vector _Q; /*!< @brief external source term. Dim(_Q) = _maxIter x (_nCells x _nSystem) */ - VectorVector _sigmaS; /*!< @brief scattering cross section for all energies. len: _nEnergies x _nCells */ - VectorVector _sigmaT; /*!< @brief total cross section for all energies. len:_nEnergies x _nCells*/ + VectorVector _sigmaS; /*!< @brief scattering cross section for all energies. len: _nEnergies x _nCells or 1 x _nCells (if not time dependent)*/ + VectorVector _sigmaT; /*!< @brief total cross section for all energies. len:_nEnergies x _nCells or 1 x _nCells (if not time dependent)*/ + std::vector _Q; /*!< @brief external source term. Dim(_Q) = _maxIter x (_nCells x _nSystem) or 1 x _nCells (if not time dependent)*/ // quadrature related numbers QuadratureBase* _quadrature; /*!< @brief pointer to quadrature class */ @@ -93,24 +91,14 @@ class SolverBase std::vector _historyOutputFields; /*!< @brief Solver Output: dimensions (FieldID). */ std::vector _historyOutputFieldNames; /*!< @brief Names of the outputFields: dimensions (FieldID) */ - // Quantitties of Interest - double _curScalarOutflow; /*!< @brief Outflow over whole boundary at current time step */ - double _totalScalarOutflow; /*!< @brief Outflow over whole boundary integrated until current time step */ - double _curMaxOrdinateOutflow; /*!< @brief Maximum ordinate-wise ouftlow over boundary over all time steps */ - double _curAbsorptionLattice; /*!< @brief Absorption of particles at Lattice checkerboard regions at current time step */ - double _totalAbsorptionLattice; /*!< @brief Absorption of particles at Lattice checkerboard regions integrated until current time step */ - double _curMaxAbsorptionLattice; /*!< @brief Maximum pointwise absorption of particles at Lattice checkerboard regions until current time step */ - double _curAbsorptionHohlraumCenter; /*!< @brief Absorption of particles at Hohlraum center at current time step */ - double _curAbsorptionHohlraumVertical; /*!< @brief Absorption of particles at Hohlraum vertical walls at current time step */ - double _curAbsorptionHohlraumHorizontal; /*!< @brief Absorption of particles at Hohlraum horizontal walls at current time step */ - double _totalAbsorptionHohlraumCenter; /*!< @brief Absorption of particles at Hohlraum center integrated until current time step */ - double _totalAbsorptionHohlraumVertical; /*!< @brief Absorption of particles at Hohlraum vertical walls integrated until current time step */ - double _totalAbsorptionHohlraumHorizontal; /*!< @brief Absorption of particles at Hohlraum horizontal walls integrated until current time step */ - double _varAbsorptionHohlraumGreen; /*!< @brief Absorption of particles at Hohlraum green center cells integrated at current time step */ - double _mass; /*!< @brief Integrated radiation flux over the whole simulation (i.e. mass of the particles) */ - double _changeRateFlux; /*!< @brief Integrated change of radiation flux over the whole simulation */ - std::vector _probingCells; /*!< @brief Indices of cells that contain a probing sensor */ - VectorVector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ + // Quantities of Interest + double _curScalarOutflow; /*!< @brief Outflow over whole boundary at current time step */ + double _totalScalarOutflow; /*!< @brief Outflow over whole boundary integrated until current time step */ + double _curMaxOrdinateOutflow; /*!< @brief Maximum ordinate-wise ouftlow over boundary over all time steps */ + double _mass; /*!< @brief Integrated radiation flux over the whole simulation (i.e. mass of the particles) */ + double _changeRateFlux; /*!< @brief Integrated change of radiation flux over the whole simulation */ + std::vector _probingCells; /*!< @brief Indices of cells that contain a probing sensor */ + VectorVector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ // ---- Member functions ---- @@ -191,34 +179,11 @@ class SolverBase * @brief Computes Problemspecific Scalar QOI */ virtual void GetMaxOrdinatewiseOutflow() = 0; - /** - * @brief Computes Problemspecific Scalar QOI - */ - void GetCurrentAbsorptionLattice( unsigned idx_iter ); - /** - * @brief Computes Problemspecific Scalar QOI - */ - void GetTotalAbsorptionLattice(); - /** - * @brief Computes Problemspecific Scalar QOI - */ - void GetMaxAbsorptionLattice( unsigned idx_iter ); - /** - * @brief Computes Problemspecific Scalar QOI - */ - void GetCurrentAbsorptionHohlraum( unsigned idx_iter ); - /** - * @brief Computes Problemspecific Scalar QOI - */ - void GetTotalAbsorptionHohlraum(); /** * @brief Computes Problemspecific Scalar QOI */ virtual void ComputeCurrentProbeMoment() = 0; - /** - * @brief Computes Problemspecific Scalar QOI - */ - void GetVarAbsorptionGreen( unsigned idx_iter ); + /** * @brief Computes Problemspecific Scalar QOI */ diff --git a/src/problems/hohlraum.cpp b/src/problems/hohlraum.cpp index 200ff3a2..fe59d68d 100644 --- a/src/problems/hohlraum.cpp +++ b/src/problems/hohlraum.cpp @@ -14,7 +14,7 @@ Hohlraum::Hohlraum( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { _scatteringXS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default _totalXS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default - + #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { double x = _mesh->GetCellMidPoints()[idx_cell][0]; diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index bc430157..84cc9464 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -11,8 +11,13 @@ Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { // Initialise crosssections to 1 - _scatteringXS = Vector( _mesh->GetNumCells(), _settings->GetLatticeScatterWhite() ); - _totalXS = Vector( _mesh->GetNumCells(), _settings->GetLatticeScatterWhite() ); + _sigmaS = Vector( _mesh->GetNumCells(), _settings->GetLatticeScatterWhite() ); + _sigmaT = Vector( _mesh->GetNumCells(), _settings->GetLatticeScatterWhite() ); + + // Initialize Quantities of interest + _curAbsorptionLattice = 0.0; + _curMaxAbsorptionLattice = 0.0; + _totalAbsorptionLattice = 0.0; if( _settings->GetNLatticeAbsIndividual() == 49 && _settings->GetNLatticeScatterIndividual() == 49 ) { // Individual values set auto log = spdlog::get( "event" ); @@ -25,8 +30,8 @@ Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh ) : ProblemBase( settings, std::vector absorptionValues = _settings->GetLatticeAbsorptionIndividual(); for( unsigned j = 0; j < cellMids.size(); ++j ) { - _scatteringXS[j] = scatteringValues[GetBlockID( cellMids[j] )]; - _totalXS[j] = absorptionValues[GetBlockID( cellMids[j] )] + scatteringValues[GetBlockID( cellMids[j] )]; + _sigmaS[j] = scatteringValues[GetBlockID( cellMids[j] )]; + _sigmaT[j] = absorptionValues[GetBlockID( cellMids[j] )] + scatteringValues[GetBlockID( cellMids[j] )]; } } else { @@ -37,8 +42,8 @@ Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh ) : ProblemBase( settings, auto cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { if( IsAbsorption( cellMids[j] ) ) { - _scatteringXS[j] = 0.0; - _totalXS[j] = _settings->GetLatticeAbsBlue(); + _sigmaS[j] = 0.0; + _sigmaT[j] = _settings->GetLatticeAbsBlue(); } } } @@ -48,9 +53,9 @@ Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh ) : ProblemBase( settings, Lattice_SN::~Lattice_SN() {} -VectorVector Lattice_SN::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } +VectorVector Lattice_SN::GetScatteringXS( const Vector& energies ) { return VectorVector( 1u, _sigmaS ); } -VectorVector Lattice_SN::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } +VectorVector Lattice_SN::GetTotalXS( const Vector& energies ) { return VectorVector( 1u, _sigmaT ); } std::vector Lattice_SN::GetExternalSource( const Vector& /*energies*/ ) { VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); @@ -122,6 +127,40 @@ const Vector& Lattice_SN::GetGhostCellValue( int idx_cell, const Vector& cell_so return _ghostCells[idx_cell]; } +// QOI getter +double Lattice_SN::GetCurAbsorptionLattice() { return _curAbsorptionLattice; } +double Lattice_SN::GetTotalAbsorptionLattice() { return _totalAbsorptionLattice; } +double Lattice_SN::GetMaxAbsorptionLattice() { return _curMaxAbsorptionLattice; } +// QOI setter +void Lattice_SN::ComputeTotalAbsorptionLattice( double dT ) { _totalAbsorptionLattice += _curAbsorptionLattice * dT; } + +void Lattice_SN::ComputeCurrentAbsorptionLattice( const Vector& scalarFlux ) { + _curAbsorptionLattice = 0.0; + unsigned nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + std::vector areas = _mesh->GetCellAreas(); + + for( unsigned idx_cell = 0; idx_cell < nCells; idx_cell++ ) { + if( IsAbsorption( cellMids[idx_cell] ) ) { + _curAbsorptionLattice += scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * areas[idx_cell]; + } + } +} +// TODO all absorption qois can be refactored in one function +void Lattice_SN::ComputeMaxAbsorptionLattice( const Vector& scalarFlux ) { + _curMaxAbsorptionLattice = 0.0; + unsigned nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + std::vector areas = _mesh->GetCellAreas(); + + for( unsigned idx_cell = 0; idx_cell < nCells; idx_cell++ ) { + if( IsAbsorption( cellMids[idx_cell] ) ) { + if( _curMaxAbsorptionLattice < scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) + _curMaxAbsorptionLattice = scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ); + } + } +} + // ---- Checkerboard Moments ---- // Constructor for checkerboard case with Pn diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index cec04b4b..4d5cc39e 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -14,172 +14,127 @@ #include "problems/symmetrichohlraum.hpp" #include "toolboxes/errormessages.hpp" -ProblemBase::ProblemBase(Config *settings, Mesh *mesh) -{ - _settings = settings; - _mesh = mesh; - SetGhostCells(); +ProblemBase::ProblemBase( Config* settings, Mesh* mesh ) { + _settings = settings; + _mesh = mesh; + SetGhostCells(); } ProblemBase::~ProblemBase() {} -ProblemBase *ProblemBase::Create(Config *settings, Mesh *mesh) -{ - // Choose problem type - switch (settings->GetProblemName()) - { - case PROBLEM_Linesource: - { - if (settings->GetIsMomentSolver()) - return new LineSource_Moment(settings, mesh); - else - return new LineSource_SN(settings, mesh); - } - break; - case PROBLEM_Linesource1D: - { - if (settings->GetIsMomentSolver()) - return new LineSource_Moment_1D(settings, mesh); - else - return new LineSource_SN_1D(settings, mesh); - } - break; - case PROBLEM_Checkerboard: - { - if (settings->GetIsMomentSolver()) - return new Checkerboard_Moment(settings, mesh); - else - return new Checkerboard_SN(settings, mesh); - } - break; - case PROBLEM_Checkerboard1D: - { - if (settings->GetIsMomentSolver()) - return new Checkerboard_Moment_1D(settings, mesh); - else - return new Checkerboard_SN_1D(settings, mesh); - } - break; - case PROBLEM_Aircavity1D: - { - if (settings->GetIsMomentSolver()) - return new AirCavity1D_Moment(settings, mesh); - else - return new AirCavity1D(settings, mesh); - } - break; - case PROBLEM_StarmapValidation: - { - if (settings->GetIsMomentSolver()) - return new StarMapValidation_Moment(settings, mesh); - else - return new StarMapValidation_SN(settings, mesh); - } - break; - case PROBLEM_Phantomimage: - return new PhantomImage(settings, mesh); - case PROBLEM_RadiationCT: - { - if (settings->GetIsMomentSolver()) - return new RadiationCTImage_Moment(settings, mesh); - else - return new RadiationCTImage(settings, mesh); - } - break; - case PROBLEM_Meltingcube: - { - if (settings->GetIsMomentSolver()) - return new MeltingCube_Moment(settings, mesh); - else - return new MeltingCube_SN(settings, mesh); - } - break; - case PROBLEM_Meltingcube1D: - { - if (settings->GetIsMomentSolver()) - return new MeltingCube_Moment_1D(settings, mesh); - else - return new MeltingCube_SN_1D(settings, mesh); - } - break; - case PROBLEM_Hohlraum: - { - if (settings->GetIsMomentSolver()) - return new Hohlraum_Moment(settings, mesh); - else - return new Hohlraum(settings, mesh); - } - break; - case PROBLEM_SymmetricHohlraum: - { - if (settings->GetIsMomentSolver()) - return new SymmetricHohlraum_Moment(settings, mesh); - else - return new SymmetricHohlraum(settings, mesh); - } - break; - case PROBLEM_Lattice: - { - if (settings->GetIsMomentSolver()) - return new Lattice_Moment(settings, mesh); - else - return new Lattice_SN(settings, mesh); - } - break; +ProblemBase* ProblemBase::Create( Config* settings, Mesh* mesh ) { + // Choose problem type + switch( settings->GetProblemName() ) { + case PROBLEM_Linesource: { + if( settings->GetIsMomentSolver() ) + return new LineSource_Moment( settings, mesh ); + else + return new LineSource_SN( settings, mesh ); + } break; + case PROBLEM_Linesource1D: { + if( settings->GetIsMomentSolver() ) + return new LineSource_Moment_1D( settings, mesh ); + else + return new LineSource_SN_1D( settings, mesh ); + } break; + case PROBLEM_Checkerboard: { + if( settings->GetIsMomentSolver() ) + return new Checkerboard_Moment( settings, mesh ); + else + return new Checkerboard_SN( settings, mesh ); + } break; + case PROBLEM_Checkerboard1D: { + if( settings->GetIsMomentSolver() ) + return new Checkerboard_Moment_1D( settings, mesh ); + else + return new Checkerboard_SN_1D( settings, mesh ); + } break; + case PROBLEM_Aircavity1D: { + if( settings->GetIsMomentSolver() ) + return new AirCavity1D_Moment( settings, mesh ); + else + return new AirCavity1D( settings, mesh ); + } break; + case PROBLEM_StarmapValidation: { + if( settings->GetIsMomentSolver() ) + return new StarMapValidation_Moment( settings, mesh ); + else + return new StarMapValidation_SN( settings, mesh ); + } break; + case PROBLEM_Phantomimage: return new PhantomImage( settings, mesh ); + case PROBLEM_RadiationCT: { + if( settings->GetIsMomentSolver() ) + return new RadiationCTImage_Moment( settings, mesh ); + else + return new RadiationCTImage( settings, mesh ); + } break; + case PROBLEM_Meltingcube: { + if( settings->GetIsMomentSolver() ) + return new MeltingCube_Moment( settings, mesh ); + else + return new MeltingCube_SN( settings, mesh ); + } break; + case PROBLEM_Meltingcube1D: { + if( settings->GetIsMomentSolver() ) + return new MeltingCube_Moment_1D( settings, mesh ); + else + return new MeltingCube_SN_1D( settings, mesh ); + } break; + case PROBLEM_Hohlraum: { + if( settings->GetIsMomentSolver() ) + return new Hohlraum_Moment( settings, mesh ); + else + return new Hohlraum( settings, mesh ); + } break; + case PROBLEM_SymmetricHohlraum: { + if( settings->GetIsMomentSolver() ) + return new SymmetricHohlraum_Moment( settings, mesh ); + else + return new SymmetricHohlraum( settings, mesh ); + } break; + case PROBLEM_Lattice: { + if( settings->GetIsMomentSolver() ) + return new Lattice_Moment( settings, mesh ); + else + return new Lattice_SN( settings, mesh ); + } break; - default: - ErrorMessages::Error( - "No valid physical problem chosen. Please check your config file", - CURRENT_FUNCTION); - return nullptr; - } + default: ErrorMessages::Error( "No valid physical problem chosen. Please check your config file", CURRENT_FUNCTION ); return nullptr; + } } // Default densities = 1 -std::vector ProblemBase::GetDensity(const VectorVector &cellMidPoints) -{ - return std::vector(cellMidPoints.size(), 1.0); -} +std::vector ProblemBase::GetDensity( const VectorVector& cellMidPoints ) { return std::vector( cellMidPoints.size(), 1.0 ); } // Legacy code: Scattering crossection loaded from database ENDF with physics // class -> later overwritten with ICRU data -VectorVector ProblemBase::GetScatteringXSE(const Vector & /*energies*/, - const Vector & /*angles*/) -{ - ErrorMessages::Error("Not yet implemented", CURRENT_FUNCTION); - return VectorVector(1, Vector(1, 0)); +VectorVector ProblemBase::GetScatteringXSE( const Vector& /*energies*/, const Vector& /*angles*/ ) { + ErrorMessages::Error( "Not yet implemented", CURRENT_FUNCTION ); + return VectorVector( 1, Vector( 1, 0 ) ); } // Stopping powers from phyics class or default = -1 -Vector ProblemBase::GetStoppingPower(const Vector & /* energies */) -{ - ErrorMessages::Error("Not yet implemented", CURRENT_FUNCTION); - return Vector(1, -1.0); +Vector ProblemBase::GetStoppingPower( const Vector& /* energies */ ) { + ErrorMessages::Error( "Not yet implemented", CURRENT_FUNCTION ); + return Vector( 1, -1.0 ); } -void ProblemBase::SetGhostCells() -{ - // Loop over all cells. If its a Dirichlet boundary, add cell to dict with - // {cell_idx, boundary_value} - auto cellBoundaries = _mesh->GetBoundaryTypes(); - std::map ghostCellMap; +void ProblemBase::SetGhostCells() { + // Loop over all cells. If its a Dirichlet boundary, add cell to dict with + // {cell_idx, boundary_value} + auto cellBoundaries = _mesh->GetBoundaryTypes(); + std::map ghostCellMap; - Vector dummyGhostCell(1, 0.0); + Vector dummyGhostCell( 1, 0.0 ); - for (unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++) - { - if (cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || - cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET) - { - // TODO: Refactor Boundary Conditions: We only have Ghost Cells with - // Dirichlet conditions right now - ghostCellMap.insert({idx_cell, dummyGhostCell}); + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { + if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { + // TODO: Refactor Boundary Conditions: We only have Ghost Cells with + // Dirichlet conditions right now + ghostCellMap.insert( { idx_cell, dummyGhostCell } ); + } + _ghostCells = ghostCellMap; } - _ghostCells = ghostCellMap; - } } -const Vector &ProblemBase::GetGhostCellValue(int idx_cell, const Vector &cell_sol) -{ - return cell_sol; -} +const Vector& ProblemBase::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { return cell_sol; } diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 6fe7360b..07796130 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -12,8 +12,16 @@ #include "velocitybasis/sphericalharmonics.hpp" SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { - _scatteringXS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default - _totalXS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default + _sigmaS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default + _sigmaT = Vector( _mesh->GetNumCells(), 0.1 ); // white area default + + _curAbsorptionHohlraumCenter = 0.0; + _curAbsorptionHohlraumVertical = 0.0; + _curAbsorptionHohlraumHorizontal = 0.0; + _totalAbsorptionHohlraumCenter = 0.0; + _totalAbsorptionHohlraumVertical = 0.0; + _totalAbsorptionHohlraumHorizontal = 0.0; + _varAbsorptionHohlraumGreen = 0.0; #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { @@ -23,43 +31,43 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh ) : ProblemBa // red area left if( x < -0.6 && y > -0.4 && y < 0.4 ) { - _scatteringXS[idx_cell] = 95.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 95.0; + _sigmaT[idx_cell] = 100.0; } // red area right if( x > 0.6 && y > -0.4 && y < 0.4 ) { - _scatteringXS[idx_cell] = 95.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 95.0; + _sigmaT[idx_cell] = 100.0; } // green area 1 (lower boundary) if( x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35 ) { - _scatteringXS[idx_cell] = 90.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 90.0; + _sigmaT[idx_cell] = 100.0; } // green area 2 (upper boundary) if( x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35 ) { - _scatteringXS[idx_cell] = 90.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 90.0; + _sigmaT[idx_cell] = 100.0; } // green area 3 (left boundary) if( x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35 ) { - _scatteringXS[idx_cell] = 90.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 90.0; + _sigmaT[idx_cell] = 100.0; } // green area 4 (right boundary) if( x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4 ) { - _scatteringXS[idx_cell] = 90.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 90.0; + _sigmaT[idx_cell] = 100.0; } // blue checkered area if( x > -0.15 && x < 0.15 && y > -0.35 && y < 0.35 ) { - _scatteringXS[idx_cell] = 50.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 50.0; + _sigmaT[idx_cell] = 100.0; } // black area (upper and lower boundary) if( y > 0.6 || y < -0.6 ) { - _scatteringXS[idx_cell] = 0.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 0.0; + _sigmaT[idx_cell] = 100.0; } } SetGhostCells(); @@ -122,9 +130,81 @@ void SymmetricHohlraum::SetGhostCells() { const Vector& SymmetricHohlraum::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { return _ghostCells[idx_cell]; } -VectorVector SymmetricHohlraum::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } +VectorVector SymmetricHohlraum::GetScatteringXS( const Vector& energies ) { return VectorVector( 1u, _sigmaS ); } + +VectorVector SymmetricHohlraum::GetTotalXS( const Vector& energies ) { return VectorVector( 1u, _sigmaT ); } + +void SymmetricHohlraum::ComputeCurrentAbsorptionHohlraum( const Vector& scalarFlux ) { + _curAbsorptionHohlraumCenter = 0.0; // Green and blue areas of symmetric hohlraum + _curAbsorptionHohlraumVertical = 0.0; // Red areas of symmetric hohlraum + _curAbsorptionHohlraumHorizontal = 0.0; // Black areas of symmetric hohlraum + + unsigned nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + std::vector areas = _mesh->GetCellAreas(); + + for( unsigned idx_cell = 0; idx_cell < nCells; idx_cell++ ) { + double x = _mesh->GetCellMidPoints()[idx_cell][0]; + double y = _mesh->GetCellMidPoints()[idx_cell][1]; + + if( x > -0.2 && x < 0.2 && y > -0.35 && y < 0.35 ) { + _curAbsorptionHohlraumCenter += scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * areas[idx_cell]; + } + if( ( x < -0.6 && y > -0.4 && y < 0.4 ) || ( x > 0.6 && y > -0.4 && y < 0.4 ) ) { + _curAbsorptionHohlraumVertical += scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * areas[idx_cell]; + } + if( y > 0.6 || y < -0.6 ) { + _curAbsorptionHohlraumHorizontal += scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * areas[idx_cell]; + } + } +} + +void SymmetricHohlraum::ComputeTotalAbsorptionHohlraum( double dT ) { + _totalAbsorptionHohlraumCenter += _curAbsorptionHohlraumCenter * dT; + _totalAbsorptionHohlraumVertical += _curAbsorptionHohlraumVertical * dT; + _totalAbsorptionHohlraumHorizontal += _curAbsorptionHohlraumHorizontal * dT; +} + +void SymmetricHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { + bool green1, green2, green3, green4; + double a_g = 0.0; + _varAbsorptionHohlraumGreen = 0.0; + double x, y; + + unsigned nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + std::vector areas = _mesh->GetCellAreas(); + + for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { + x = _mesh->GetCellMidPoints()[idx_cell][0]; + y = _mesh->GetCellMidPoints()[idx_cell][1]; + + green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) + green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) + green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) + green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) + + if( green1 || green2 || green3 || green4 ) { + a_g += ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * scalarFlux[idx_cell] * areas[idx_cell]; + } + } + for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { + x = _mesh->GetCellMidPoints()[idx_cell][0]; + y = _mesh->GetCellMidPoints()[idx_cell][1]; + + green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) + green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) + green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) + green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) + + if( green1 || green2 || green3 || green4 ) { + _varAbsorptionHohlraumGreen += ( a_g - scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) * + ( a_g - scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) * areas[idx_cell]; + } + } +} -VectorVector SymmetricHohlraum::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } +// -------------- Moment Symmetric Hohlraum --------------- SymmetricHohlraum_Moment::SymmetricHohlraum_Moment( Config* settings, Mesh* mesh ) : SymmetricHohlraum( settings, mesh ) {} diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index fd7455c2..cbc440e4 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -166,28 +166,43 @@ void SNSolver::FluxUpdatePseudo2D() { } void SNSolver::FVMUpdate( unsigned idx_iter ) { + if( _Q.size() == 1u && _sigmaT.size() == 1u && _sigmaS.size() == 1u ) { #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - // Dirichlet cells stay at IC, farfield assumption - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; - // loop over all ordinates - for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { - // time update angular flux with numerical flux and total scattering cross - // section - _solNew[idx_cell][idx_quad] = _sol[idx_cell][idx_quad] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_quad] - - _dT * _sigmaT[idx_iter][idx_cell] * _sol[idx_cell][idx_quad]; - } - // compute scattering effects - _solNew[idx_cell] += _dT * _sigmaS[idx_iter][idx_cell] * _scatteringKernel * _sol[idx_cell]; // multiply scattering matrix with psi - - // Source Term - if( _Q.size() == 1u ) { // constant source for all energies + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + // Dirichlet cells stay at IC, farfield assumption + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + // loop over all ordinates + for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { + // time update angular flux with numerical flux and total scattering cross + // section + _solNew[idx_cell][idx_quad] = _sol[idx_cell][idx_quad] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_quad] - + _dT * _sigmaT[0][idx_cell] * _sol[idx_cell][idx_quad]; + } + // compute scattering effects + _solNew[idx_cell] += _dT * _sigmaS[0][idx_cell] * _scatteringKernel * _sol[idx_cell]; // multiply scattering matrix with psi + // Source Term if( _Q[0][idx_cell].size() == 1u ) // isotropic source _solNew[idx_cell] += _dT * _Q[0][idx_cell][0]; else _solNew[idx_cell] += _dT * _Q[0][idx_cell]; } - else { + } + else { +#pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + // Dirichlet cells stay at IC, farfield assumption + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + // loop over all ordinates + for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { + // time update angular flux with numerical flux and total scattering cross + // section + _solNew[idx_cell][idx_quad] = _sol[idx_cell][idx_quad] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_quad] - + _dT * _sigmaT[idx_iter][idx_cell] * _sol[idx_cell][idx_quad]; + } + // compute scattering effects + _solNew[idx_cell] += _dT * _sigmaS[idx_iter][idx_cell] * _scatteringKernel * _sol[idx_cell]; // multiply scattering matrix with psi + + // Source Term if( _Q[0][idx_cell].size() == 1u ) // isotropic source _solNew[idx_cell] += _dT * _Q[idx_iter][idx_cell][0]; else @@ -195,7 +210,6 @@ void SNSolver::FVMUpdate( unsigned idx_iter ) { } } } - void SNSolver::PrepareVolumeOutput() { unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 76c5d1fe..21bbffce 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -54,9 +54,9 @@ SolverBase::SolverBase( Config* settings ) { _nEnergies = std::ceil( ( maxE - minE ) / _dT ); _energies = blaze::linspace( _nEnergies, minE, maxE ); } - else { // Not CSD Solver - _nEnergies = unsigned( settings->GetTEnd() / _dT ); - _energies = blaze::linspace( _nEnergies, 0.0, settings->GetTEnd() ); // go upward from 0 to T_end + else { // Not CSD Solver + _nEnergies = unsigned( settings->GetTEnd() / _dT ); // redundancy with nIter (<-Better) ? + _energies = 0; // blaze::linspace( _nEnergies, 0.0, settings->GetTEnd() ); // go upward from 0 to T_end =>Not needed } // Adjust maxIter, depending if we have a normal run or a csd Run @@ -97,21 +97,11 @@ SolverBase::SolverBase( Config* settings ) { _density = _problem->GetDensity( _mesh->GetCellMidPoints() ); // initialize QOI helper variables - _curMaxOrdinateOutflow = 0.0; - _curScalarOutflow = 0.0; - _totalScalarOutflow = 0.0; - _curAbsorptionLattice = 0.0; - _curMaxAbsorptionLattice = 0.0; - _totalAbsorptionLattice = 0.0; - _curAbsorptionHohlraumCenter = 0.0; - _curAbsorptionHohlraumVertical = 0.0; - _curAbsorptionHohlraumHorizontal = 0.0; - _totalAbsorptionHohlraumCenter = 0.0; - _totalAbsorptionHohlraumVertical = 0.0; - _totalAbsorptionHohlraumHorizontal = 0.0; - _varAbsorptionHohlraumGreen = 0.0; - _mass = 0.0; - _changeRateFlux = 0.0; + _curMaxOrdinateOutflow = 0.0; + _curScalarOutflow = 0.0; + _totalScalarOutflow = 0.0; + _mass = 0.0; + _changeRateFlux = 0.0; // Hardcoded for the symmetric hohlraum testcase (experimental, needs refactoring) if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { @@ -328,12 +318,12 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { case CUR_OUTFLOW: _screenOutputFields[idx_field] = _curScalarOutflow; break; case TOTAL_OUTFLOW: _screenOutputFields[idx_field] = _totalScalarOutflow; break; case MAX_OUTFLOW: _screenOutputFields[idx_field] = _curMaxOrdinateOutflow; break; - case CUR_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _curAbsorptionLattice; break; - case TOTAL_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _totalAbsorptionLattice; break; - case MAX_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _curMaxAbsorptionLattice; break; - case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFields[idx_field] = _totalAbsorptionHohlraumCenter; break; - case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFields[idx_field] = _totalAbsorptionHohlraumVertical; break; - case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFields[idx_field] = _totalAbsorptionHohlraumHorizontal; break; + case CUR_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _problem->GetCurAbsorptionLattice(); break; + case TOTAL_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionLattice(); break; + case MAX_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _problem->GetMaxAbsorptionLattice(); break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumCenter(); break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumVertical(); break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumHorizontal(); break; case PROBE_MOMENT_TIME_TRACE: for( unsigned i = 0; i < 4; i++ ) { _screenOutputFields[idx_field] = _probingMoments[i][0]; @@ -341,7 +331,7 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { } idx_field--; break; - case VAR_ABSORPTION_GREEN: _screenOutputFields[idx_field] = _varAbsorptionHohlraumGreen; break; + case VAR_ABSORPTION_GREEN: _screenOutputFields[idx_field] = _problem->GetVarAbsorptionHohlraumGreen(); break; default: ErrorMessages::Error( "Screen output group not defined!", CURRENT_FUNCTION ); break; } } @@ -376,12 +366,12 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { case CUR_OUTFLOW: _historyOutputFields[idx_field] = _curScalarOutflow; break; case TOTAL_OUTFLOW: _historyOutputFields[idx_field] = _totalScalarOutflow; break; case MAX_OUTFLOW: _historyOutputFields[idx_field] = _curMaxOrdinateOutflow; break; - case CUR_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _curAbsorptionLattice; break; - case TOTAL_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _totalAbsorptionLattice; break; - case MAX_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _curMaxAbsorptionLattice; break; - case TOTAL_PARTICLE_ABSORPTION_CENTER: _historyOutputFields[idx_field] = _totalAbsorptionHohlraumCenter; break; - case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFields[idx_field] = _totalAbsorptionHohlraumVertical; break; - case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFields[idx_field] = _totalAbsorptionHohlraumHorizontal; break; + case CUR_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _problem->GetCurAbsorptionLattice(); break; + case TOTAL_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _problem->GetTotalAbsorptionLattice(); break; + case MAX_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _problem->GetMaxAbsorptionLattice(); break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _historyOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumCenter(); break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumVertical(); break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumHorizontal(); break; case PROBE_MOMENT_TIME_TRACE: for( unsigned i = 0; i < 4; i++ ) { for( unsigned j = 0; j < 3; j++ ) { @@ -391,7 +381,7 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { } idx_field--; break; - case VAR_ABSORPTION_GREEN: _historyOutputFields[idx_field] = _varAbsorptionHohlraumGreen; break; + case VAR_ABSORPTION_GREEN: _historyOutputFields[idx_field] = _problem->GetVarAbsorptionHohlraumGreen(); break; default: ErrorMessages::Error( "History output group not defined!", CURRENT_FUNCTION ); break; } @@ -614,128 +604,13 @@ void SolverBase::SolverPreprocessing() {} void SolverBase::GetTotalOutflow() { _totalScalarOutflow += _curScalarOutflow * _dT; } -void SolverBase::GetCurrentAbsorptionLattice( unsigned idx_iter ) { - _curAbsorptionLattice = 0.0; - if( _settings->GetProblemName() == PROBLEM_Lattice ) { - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - // Assumption: Domain size is 7x7 - double x = _mesh->GetCellMidPoints()[idx_cell][0]; - double y = _mesh->GetCellMidPoints()[idx_cell][1]; - double xy_corrector = -3.5; - std::vector lbounds{ 1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector }; - std::vector ubounds{ 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector }; - - for( unsigned k = 0; k < lbounds.size(); ++k ) { - for( unsigned l = 0; l < lbounds.size(); ++l ) { - if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; - if( x >= lbounds[k] && x <= ubounds[k] && y >= lbounds[l] && y <= ubounds[l] ) { - _curAbsorptionLattice += - _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) * _areas[idx_cell]; - } - } - } - } - } -} - -void SolverBase::GetTotalAbsorptionLattice() { _totalAbsorptionLattice += _curAbsorptionLattice * _dT; } - -void SolverBase::GetMaxAbsorptionLattice( unsigned idx_iter ) { - _curMaxAbsorptionLattice = 0.0; - if( _settings->GetProblemName() == PROBLEM_Lattice ) { - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - // Assumption: Domain size is 7x7 - double x = _mesh->GetCellMidPoints()[idx_cell][0]; - double y = _mesh->GetCellMidPoints()[idx_cell][1]; - double xy_corrector = -3.5; - std::vector lbounds{ 1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector }; - std::vector ubounds{ 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector }; - - for( unsigned k = 0; k < lbounds.size(); ++k ) { - for( unsigned l = 0; l < lbounds.size(); ++l ) { - if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; - if( x >= lbounds[k] && x <= ubounds[k] && y >= lbounds[l] && y <= ubounds[l] ) { - if( _curMaxAbsorptionLattice < _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) ) - _curMaxAbsorptionLattice = _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ); - } - } - } - } - } -} - -void SolverBase::GetCurrentAbsorptionHohlraum( unsigned idx_iter ) { - _curAbsorptionHohlraumCenter = 0.0; // Green and blue areas of symmetric hohlraum - _curAbsorptionHohlraumVertical = 0.0; // Red areas of symmetric hohlraum - _curAbsorptionHohlraumHorizontal = 0.0; // Black areas of symmetric hohlraum - - if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - double x = _mesh->GetCellMidPoints()[idx_cell][0]; - double y = _mesh->GetCellMidPoints()[idx_cell][1]; - - if( x > -0.2 && x < 0.2 && y > -0.35 && y < 0.35 ) { - _curAbsorptionHohlraumCenter += - _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) * _areas[idx_cell]; - } - if( ( x < -0.6 && y > -0.4 && y < 0.4 ) || ( x > 0.6 && y > -0.4 && y < 0.4 ) ) { - _curAbsorptionHohlraumVertical += - _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) * _areas[idx_cell]; - } - if( y > 0.6 || y < -0.6 ) { - _curAbsorptionHohlraumHorizontal += - _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) * _areas[idx_cell]; - } - } - } -} - -void SolverBase::GetTotalAbsorptionHohlraum() { - _totalAbsorptionHohlraumCenter += _curAbsorptionHohlraumCenter * _dT; - _totalAbsorptionHohlraumVertical += _curAbsorptionHohlraumVertical * _dT; - _totalAbsorptionHohlraumHorizontal += _curAbsorptionHohlraumHorizontal * _dT; -} - -void SolverBase::GetVarAbsorptionGreen( unsigned idx_iter ) { - bool green1, green2, green3, green4; - double a_g = 0.0; - _varAbsorptionHohlraumGreen = 0.0; - double x, y; - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - x = _mesh->GetCellMidPoints()[idx_cell][0]; - y = _mesh->GetCellMidPoints()[idx_cell][1]; - - green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) - green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) - green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) - green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) - - if( green1 || green2 || green3 || green4 ) { - a_g += ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) * _scalarFlux[idx_cell] * _areas[idx_cell]; - } - } - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - x = _mesh->GetCellMidPoints()[idx_cell][0]; - y = _mesh->GetCellMidPoints()[idx_cell][1]; - - green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) - green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) - green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) - green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) - - if( green1 || green2 || green3 || green4 ) { - _varAbsorptionHohlraumGreen += ( a_g - _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) ) * - ( a_g - _scalarFlux[idx_cell] * ( _sigmaT[idx_iter][idx_cell] - _sigmaS[idx_iter][idx_cell] ) ) * - _areas[idx_cell]; - } - } -} void SolverBase::GetMass() { _mass = 0.0; for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { _mass += _scalarFluxNew[idx_cell] * _areas[idx_cell]; } } + void SolverBase::GetChangeRateFlux() { _changeRateFlux = blaze::l2Norm( _scalarFluxNew - _scalarFlux ); } void SolverBase::IterPostprocessing( unsigned idx_iter ) { @@ -749,14 +624,14 @@ void SolverBase::IterPostprocessing( unsigned idx_iter ) { GetMaxOrdinatewiseOutflow(); if( _settings->GetProblemName() == PROBLEM_Lattice ) { - GetCurrentAbsorptionLattice( idx_iter ); - GetTotalAbsorptionLattice(); - GetMaxAbsorptionLattice( idx_iter ); + _problem->ComputeCurrentAbsorptionLattice( _scalarFlux ); + _problem->ComputeTotalAbsorptionLattice( _dT ); + _problem->ComputeMaxAbsorptionLattice( _scalarFlux ); } if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { - GetCurrentAbsorptionHohlraum( idx_iter ); - GetTotalAbsorptionHohlraum(); + _problem->ComputeCurrentAbsorptionHohlraum( _scalarFlux ); + _problem->ComputeTotalAbsorptionHohlraum( _dT ); ComputeCurrentProbeMoment(); - GetVarAbsorptionGreen( idx_iter ); + _problem->ComputeVarAbsorptionGreen( _scalarFlux ); } } From 9cacc49fdf2e971e36254f4801a2746a8ce1186a Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Tue, 19 Dec 2023 18:17:13 -0500 Subject: [PATCH 017/155] included pointer to quadrature class to problem. WIll help reduce the memory footprint of the solver --- include/problems/aircavity1d.hpp | 4 +- include/problems/checkerboard.hpp | 8 ++-- include/problems/hohlraum.hpp | 4 +- include/problems/lattice.hpp | 4 +- include/problems/linesource.hpp | 10 ++--- include/problems/meltingcube.hpp | 10 ++--- include/problems/phantomimage.hpp | 2 +- include/problems/problembase.hpp | 10 +++-- include/problems/radiationctimage.hpp | 4 +- include/problems/starmapvalidation.hpp | 4 +- include/problems/symmetrichohlraum.hpp | 4 +- src/problems/aircavity1d.cpp | 10 +++-- src/problems/checkerboard.cpp | 8 ++-- src/problems/hohlraum.cpp | 6 +-- src/problems/lattice.cpp | 4 +- src/problems/linesource.cpp | 14 ++++--- src/problems/meltingcube.cpp | 12 +++--- src/problems/phantomimage.cpp | 2 +- src/problems/problembase.cpp | 56 +++++++++++++------------- src/problems/radiationctimage.cpp | 4 +- src/problems/starmapvalidation.cpp | 11 ++--- src/problems/symmetrichohlraum.cpp | 5 ++- src/solvers/solverbase.cpp | 11 ++--- 23 files changed, 108 insertions(+), 99 deletions(-) diff --git a/include/problems/aircavity1d.hpp b/include/problems/aircavity1d.hpp index bacd44cb..9cd72b6f 100644 --- a/include/problems/aircavity1d.hpp +++ b/include/problems/aircavity1d.hpp @@ -10,7 +10,7 @@ class AirCavity1D : public ProblemBase double _sigmaS; /*!< @brief Scattering coefficient */ public: - AirCavity1D( Config* settings, Mesh* mesh ); + AirCavity1D( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~AirCavity1D(); std::vector GetExternalSource( const Vector& energies ) override; VectorVector SetupIC() override; @@ -27,7 +27,7 @@ class AirCavity1D_Moment : public ProblemBase double _sigmaS; /*!< @brief Scattering coefficient */ public: - AirCavity1D_Moment( Config* settings, Mesh* mesh ); + AirCavity1D_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~AirCavity1D_Moment(); std::vector GetExternalSource( const Vector& energies ) override; VectorVector SetupIC() override; diff --git a/include/problems/checkerboard.hpp b/include/problems/checkerboard.hpp index 2f43ce59..46122e40 100644 --- a/include/problems/checkerboard.hpp +++ b/include/problems/checkerboard.hpp @@ -17,7 +17,7 @@ class Checkerboard_SN : public ProblemBase bool isSource( const Vector& pos ) const; /*!< @return True if pos is in source region, False otherwise */ public: - Checkerboard_SN( Config* settings, Mesh* mesh ); + Checkerboard_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ); virtual ~Checkerboard_SN(); virtual VectorVector GetScatteringXS( const Vector& energies ) override; @@ -48,7 +48,7 @@ class Checkerboard_Moment : public ProblemBase int GlobalIndex( int l, int k ) const; public: - Checkerboard_Moment( Config* settings, Mesh* mesh ); + Checkerboard_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ); virtual ~Checkerboard_Moment(); virtual VectorVector GetScatteringXS( const Vector& energies ) override; @@ -69,7 +69,7 @@ class Checkerboard_SN_1D : public ProblemBase bool isSource( const Vector& pos ) const; /*!< @return True if pos is in source region, False otherwise */ public: - Checkerboard_SN_1D( Config* settings, Mesh* mesh ); + Checkerboard_SN_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ); virtual ~Checkerboard_SN_1D(); virtual VectorVector GetScatteringXS( const Vector& energies ) override; @@ -100,7 +100,7 @@ class Checkerboard_Moment_1D : public ProblemBase int GlobalIndex( int l, int k ) const; public: - Checkerboard_Moment_1D( Config* settings, Mesh* mesh ); + Checkerboard_Moment_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ); virtual ~Checkerboard_Moment_1D(); virtual VectorVector GetScatteringXS( const Vector& energies ) override; diff --git a/include/problems/hohlraum.hpp b/include/problems/hohlraum.hpp index 365a18e5..6400cee5 100644 --- a/include/problems/hohlraum.hpp +++ b/include/problems/hohlraum.hpp @@ -11,7 +11,7 @@ class Hohlraum : public ProblemBase Vector _totalXS; /*!< @brief Vector of total crosssections */ public: - Hohlraum( Config* settings, Mesh* mesh ); + Hohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ); virtual ~Hohlraum(); virtual std::vector GetExternalSource( const Vector& energies ) override; virtual VectorVector SetupIC() override; @@ -25,7 +25,7 @@ class Hohlraum_Moment : public Hohlraum Hohlraum_Moment() = delete; public: - Hohlraum_Moment( Config* settings, Mesh* mesh ); + Hohlraum_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~Hohlraum_Moment(); std::vector GetExternalSource( const Vector& energies ) override final; VectorVector SetupIC() override final; diff --git a/include/problems/lattice.hpp b/include/problems/lattice.hpp index 22768d67..870277d2 100644 --- a/include/problems/lattice.hpp +++ b/include/problems/lattice.hpp @@ -26,7 +26,7 @@ class Lattice_SN : public ProblemBase unsigned GetBlockID( const Vector& pos ) const; /*!< @brief Returns checkerboard field id (0-48, row major) of the Lattice test case */ public: - Lattice_SN( Config* settings, Mesh* mesh ); + Lattice_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ); virtual ~Lattice_SN(); virtual VectorVector GetScatteringXS( const Vector& energies ) override; @@ -66,7 +66,7 @@ class Lattice_Moment : public ProblemBase int GlobalIndex( int l, int k ) const; public: - Lattice_Moment( Config* settings, Mesh* mesh ); + Lattice_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ); virtual ~Lattice_Moment(); virtual VectorVector GetScatteringXS( const Vector& energies ) override; diff --git a/include/problems/linesource.hpp b/include/problems/linesource.hpp index 1416d404..3d8fefd6 100644 --- a/include/problems/linesource.hpp +++ b/include/problems/linesource.hpp @@ -12,7 +12,7 @@ class LineSource : public ProblemBase double _sigmaS; /*!< @brief Scattering coefficient */ public: - LineSource( Config* settings, Mesh* mesh ); + LineSource( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~LineSource(); @@ -48,7 +48,7 @@ class LineSource_SN : public LineSource LineSource_SN() = delete; public: - LineSource_SN( Config* settings, Mesh* mesh ); + LineSource_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~LineSource_SN(); VectorVector GetScatteringXS( const Vector& energies ) override; @@ -63,7 +63,7 @@ class LineSource_Moment : public LineSource LineSource_Moment() = delete; public: - LineSource_Moment( Config* settings, Mesh* mesh ); + LineSource_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~LineSource_Moment(); VectorVector GetScatteringXS( const Vector& energies ) override; @@ -78,7 +78,7 @@ class LineSource_SN_1D : public LineSource_SN LineSource_SN_1D() = delete; public: - LineSource_SN_1D( Config* settings, Mesh* mesh ); + LineSource_SN_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ); VectorVector SetupIC() override; }; @@ -89,7 +89,7 @@ class LineSource_Moment_1D : public LineSource_Moment LineSource_Moment_1D() = delete; public: - LineSource_Moment_1D( Config* settings, Mesh* mesh ); + LineSource_Moment_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ); VectorVector SetupIC() override; }; diff --git a/include/problems/meltingcube.hpp b/include/problems/meltingcube.hpp index 62eeb273..aef01ddf 100644 --- a/include/problems/meltingcube.hpp +++ b/include/problems/meltingcube.hpp @@ -12,7 +12,7 @@ class MeltingCube : public ProblemBase double _sigmaS; /*!< @brief Scattering coefficient */ public: - MeltingCube( Config* settings, Mesh* mesh ); + MeltingCube( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~MeltingCube(); VectorVector GetScatteringXS( const Vector& energies ) override; VectorVector GetTotalXS( const Vector& energies ) override; @@ -25,7 +25,7 @@ class MeltingCube_SN : public MeltingCube MeltingCube_SN() = delete; public: - MeltingCube_SN( Config* settings, Mesh* mesh ); + MeltingCube_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~MeltingCube_SN(); VectorVector SetupIC() override; }; @@ -36,7 +36,7 @@ class MeltingCube_Moment : public MeltingCube MeltingCube_Moment() = delete; public: - MeltingCube_Moment( Config* settings, Mesh* mesh ); + MeltingCube_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~MeltingCube_Moment(); VectorVector SetupIC() override; }; @@ -47,7 +47,7 @@ class MeltingCube_SN_1D : public MeltingCube MeltingCube_SN_1D() = delete; public: - MeltingCube_SN_1D( Config* settings, Mesh* mesh ); + MeltingCube_SN_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~MeltingCube_SN_1D(); VectorVector SetupIC() override; @@ -59,7 +59,7 @@ class MeltingCube_Moment_1D : public MeltingCube MeltingCube_Moment_1D() = delete; public: - MeltingCube_Moment_1D( Config* settings, Mesh* mesh ); + MeltingCube_Moment_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~MeltingCube_Moment_1D(); VectorVector SetupIC() override; diff --git a/include/problems/phantomimage.hpp b/include/problems/phantomimage.hpp index 0c7c00d4..6123cab6 100644 --- a/include/problems/phantomimage.hpp +++ b/include/problems/phantomimage.hpp @@ -9,7 +9,7 @@ class PhantomImage : public ProblemBase PhantomImage() = delete; double _sigmaS; /*!< @brief Scattering coefficient */ public: - PhantomImage( Config* settings, Mesh* mesh ); + PhantomImage( Config* settings, Mesh* mesh, QuadratureBase* quad ); virtual ~PhantomImage(); VectorVector SetupIC() override; std::vector GetExternalSource( const Vector& energies ) override; diff --git a/include/problems/problembase.hpp b/include/problems/problembase.hpp index 7c3feca1..c9eebc9d 100644 --- a/include/problems/problembase.hpp +++ b/include/problems/problembase.hpp @@ -7,12 +7,14 @@ class Config; class Mesh; +class QuadratureBase; class ProblemBase { protected: - Config* _settings; /*!< @brief pointer to settings */ - Mesh* _mesh; /*!< @brief pointer to mesh */ + Config* _settings; /*!< @brief pointer to settings */ + Mesh* _mesh; /*!< @brief pointer to mesh */ + QuadratureBase* _quad; /*!< @brief pointer to quadrature */ std::vector _density; /*!< @brief vector with patient densities */ std::vector _stoppingPower; /*!< @brief vector with stopping powers*/ @@ -114,7 +116,7 @@ class ProblemBase * @param settings stores all needed user information * @param mesh for the test case */ - ProblemBase( Config* settings, Mesh* mesh ); + ProblemBase( Config* settings, Mesh* mesh, QuadratureBase* quad ); virtual ~ProblemBase(); /** @@ -123,7 +125,7 @@ class ProblemBase * @param mesh for the test case * @return pointer to ProblemBase */ - static ProblemBase* Create( Config* settings, Mesh* mesh ); + static ProblemBase* Create( Config* settings, Mesh* mesh, QuadratureBase* quad ); // Virtual getter function for all QOIS for all test problems // Getter diff --git a/include/problems/radiationctimage.hpp b/include/problems/radiationctimage.hpp index 2f66efc6..6c66f3a7 100644 --- a/include/problems/radiationctimage.hpp +++ b/include/problems/radiationctimage.hpp @@ -9,7 +9,7 @@ class RadiationCTImage : public ProblemBase RadiationCTImage() = delete; public: - RadiationCTImage( Config* settings, Mesh* mesh ); + RadiationCTImage( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~RadiationCTImage(); std::vector GetExternalSource( const Vector& energies ) override; VectorVector SetupIC() override; @@ -24,7 +24,7 @@ class RadiationCTImage_Moment : public RadiationCTImage RadiationCTImage_Moment() = delete; public: - RadiationCTImage_Moment( Config* settings, Mesh* mesh ); + RadiationCTImage_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~RadiationCTImage_Moment(); std::vector GetExternalSource( const Vector& energies ) override final; VectorVector SetupIC() override final; diff --git a/include/problems/starmapvalidation.hpp b/include/problems/starmapvalidation.hpp index 011464fb..2d5b1667 100644 --- a/include/problems/starmapvalidation.hpp +++ b/include/problems/starmapvalidation.hpp @@ -14,7 +14,7 @@ class StarMapValidation_SN : public ProblemBase double NormPDF( double x, double mu, double sigma ); /*!< Creates an 1D normal distribution at x with mean mu and stddev sigma */ public: - StarMapValidation_SN( Config* settings, Mesh* mesh ); + StarMapValidation_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~StarMapValidation_SN(); VectorVector GetScatteringXS( const Vector& energies ) override; @@ -32,7 +32,7 @@ class StarMapValidation_Moment : public StarMapValidation_SN StarMapValidation_Moment() = delete; public: - StarMapValidation_Moment( Config* settings, Mesh* mesh ); + StarMapValidation_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~StarMapValidation_Moment(); VectorVector SetupIC() override; std::vector GetExternalSource( const Vector& energies ) override; diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp index 267d0005..6516cce7 100644 --- a/include/problems/symmetrichohlraum.hpp +++ b/include/problems/symmetrichohlraum.hpp @@ -22,7 +22,7 @@ class SymmetricHohlraum : public ProblemBase double _varAbsorptionHohlraumGreen; /*!< @brief Absorption of particles at Hohlraum green center cells integrated at current time step */ public: - SymmetricHohlraum( Config* settings, Mesh* mesh ); + SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ); virtual ~SymmetricHohlraum(); virtual std::vector GetExternalSource( const Vector& energies ) override; virtual VectorVector SetupIC() override; @@ -50,7 +50,7 @@ class SymmetricHohlraum_Moment : public SymmetricHohlraum // TODO void SetGhostCells() override final; /*!< @brief Sets vector of ghost cells for boundary conditions */ public: - SymmetricHohlraum_Moment( Config* settings, Mesh* mesh ); + SymmetricHohlraum_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~SymmetricHohlraum_Moment(); std::vector GetExternalSource( const Vector& energies ) override final; VectorVector SetupIC() override final; diff --git a/src/problems/aircavity1d.cpp b/src/problems/aircavity1d.cpp index bc856b03..26c8a393 100644 --- a/src/problems/aircavity1d.cpp +++ b/src/problems/aircavity1d.cpp @@ -7,7 +7,9 @@ #include "velocitybasis/sphericalbase.hpp" #include "velocitybasis/sphericalharmonics.hpp" -AirCavity1D::AirCavity1D( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { _sigmaS = settings->GetSigmaS(); } +AirCavity1D::AirCavity1D( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { + _sigmaS = settings->GetSigmaS(); +} AirCavity1D::~AirCavity1D() {} @@ -50,7 +52,9 @@ VectorVector AirCavity1D::GetTotalXS( const Vector& energies ) { return VectorVe // ------ Moment version --- -AirCavity1D_Moment::AirCavity1D_Moment( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { _sigmaS = settings->GetSigmaS(); } +AirCavity1D_Moment::AirCavity1D_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { + _sigmaS = settings->GetSigmaS(); +} AirCavity1D_Moment::~AirCavity1D_Moment() {} @@ -64,7 +68,7 @@ std::vector AirCavity1D_Moment::GetExternalSource( const Vector& / VectorVector AirCavity1D_Moment::SetupIC() { if( _settings->GetSolverName() == PN_SOLVER ) { - + // In case of PN, spherical basis is per default SPHERICAL_HARMONICS in 3 velocity dimensions SphericalBase* tempBase = new SphericalHarmonics( _settings->GetMaxMomentDegree(), 3 ); diff --git a/src/problems/checkerboard.cpp b/src/problems/checkerboard.cpp index c8c3483e..6956c527 100644 --- a/src/problems/checkerboard.cpp +++ b/src/problems/checkerboard.cpp @@ -8,7 +8,7 @@ // ---- Checkerboard Sn ---- // Constructor for Ckeckerboard case with Sn -Checkerboard_SN::Checkerboard_SN( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { +Checkerboard_SN::Checkerboard_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { // Initialise crosssections to 1 _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); @@ -70,7 +70,7 @@ bool Checkerboard_SN::isSource( const Vector& pos ) const { // ---- Checkerboard Moments ---- // Constructor for checkerboard case with Pn -Checkerboard_Moment::Checkerboard_Moment( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { +Checkerboard_Moment::Checkerboard_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { // Initialise crosssections = 1 (scattering) _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); @@ -213,7 +213,7 @@ bool Checkerboard_Moment::isSource( const Vector& pos ) const { // ---- Checkerboard SN 1D ---- // Constructor for Ckeckerboard case with Sn -Checkerboard_SN_1D::Checkerboard_SN_1D( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { +Checkerboard_SN_1D::Checkerboard_SN_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { // Initialise crosssections to 1 _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); @@ -268,7 +268,7 @@ bool Checkerboard_SN_1D::isSource( const Vector& pos ) const { // --- Moment version 1d --- -Checkerboard_Moment_1D::Checkerboard_Moment_1D( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { +Checkerboard_Moment_1D::Checkerboard_Moment_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { // Initialise crosssections to 1 _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); diff --git a/src/problems/hohlraum.cpp b/src/problems/hohlraum.cpp index fe59d68d..5f7c497e 100644 --- a/src/problems/hohlraum.cpp +++ b/src/problems/hohlraum.cpp @@ -11,10 +11,10 @@ #include "velocitybasis/sphericalbase.hpp" #include "velocitybasis/sphericalharmonics.hpp" -Hohlraum::Hohlraum( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { +Hohlraum::Hohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { _scatteringXS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default _totalXS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default - + #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { double x = _mesh->GetCellMidPoints()[idx_cell][0]; @@ -88,7 +88,7 @@ VectorVector Hohlraum::GetScatteringXS( const Vector& energies ) { return Vector VectorVector Hohlraum::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } -Hohlraum_Moment::Hohlraum_Moment( Config* settings, Mesh* mesh ) : Hohlraum( settings, mesh ) {} +Hohlraum_Moment::Hohlraum_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : Hohlraum( settings, mesh, quad ) {} Hohlraum_Moment::~Hohlraum_Moment() {} diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index 84cc9464..fa0500e2 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -8,7 +8,7 @@ // ---- Checkerboard Sn ---- // Constructor for Ckeckerboard case with Sn -Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { +Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { // Initialise crosssections to 1 _sigmaS = Vector( _mesh->GetNumCells(), _settings->GetLatticeScatterWhite() ); @@ -164,7 +164,7 @@ void Lattice_SN::ComputeMaxAbsorptionLattice( const Vector& scalarFlux ) { // ---- Checkerboard Moments ---- // Constructor for checkerboard case with Pn -Lattice_Moment::Lattice_Moment( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { +Lattice_Moment::Lattice_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { // Initialise crosssections = 1 (scattering) _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); diff --git a/src/problems/linesource.cpp b/src/problems/linesource.cpp index 23505735..56344f1b 100644 --- a/src/problems/linesource.cpp +++ b/src/problems/linesource.cpp @@ -8,7 +8,9 @@ // ---- Linesource ---- -LineSource::LineSource( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { _sigmaS = settings->GetSigmaS(); } +LineSource::LineSource( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { + _sigmaS = settings->GetSigmaS(); +} LineSource::~LineSource() {} @@ -106,7 +108,7 @@ double LineSource::HelperIntRho_ptc2( double t, double gamma ) { // ---- LineSource_SN ---- -LineSource_SN::LineSource_SN( Config* settings, Mesh* mesh ) : LineSource( settings, mesh ) {} +LineSource_SN::LineSource_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ) : LineSource( settings, mesh, quad ) {} LineSource_SN::~LineSource_SN() {} @@ -134,7 +136,7 @@ VectorVector LineSource_SN::SetupIC() { // ---- LineSource_PN ---- -LineSource_Moment::LineSource_Moment( Config* settings, Mesh* mesh ) : LineSource( settings, mesh ) {} +LineSource_Moment::LineSource_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : LineSource( settings, mesh, quad ) {} LineSource_Moment::~LineSource_Moment() {} @@ -209,7 +211,7 @@ VectorVector LineSource_Moment::SetupIC() { // ---- LineSource SN pseudo1D ---- -LineSource_SN_1D::LineSource_SN_1D( Config* settings, Mesh* mesh ) : LineSource_SN( settings, mesh ) {} +LineSource_SN_1D::LineSource_SN_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ) : LineSource_SN( settings, mesh, quad ) {} VectorVector LineSource_SN_1D::SetupIC() { VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-10 ) ); @@ -227,7 +229,7 @@ VectorVector LineSource_SN_1D::SetupIC() { // ---- LineSource Moment pseudo1D ---- -LineSource_Moment_1D::LineSource_Moment_1D( Config* settings, Mesh* mesh ) : LineSource_Moment( settings, mesh ) {} +LineSource_Moment_1D::LineSource_Moment_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ) : LineSource_Moment( settings, mesh, quad ) {} VectorVector LineSource_Moment_1D::SetupIC() { double t = 3.2e-4; // pseudo time for gaussian smoothing (Approx to dirac impulse) @@ -280,7 +282,7 @@ VectorVector LineSource_Moment_1D::SetupIC() { for( unsigned j = 0; j < cellMids.size(); ++j ) { double x = cellMids[j][0]; double kinetic_density = std::max( 1.0 / ( 4.0 * M_PI * t ) * std::exp( -( x * x ) / ( 4 * t ) ), epsilon ); - if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS || _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS_ROTATED) { + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS || _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS_ROTATED ) { initialSolution[j] = kinetic_density * uIC / uIC[0]; // Remember scaling } if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { diff --git a/src/problems/meltingcube.cpp b/src/problems/meltingcube.cpp index a596abc3..f1a57a7e 100644 --- a/src/problems/meltingcube.cpp +++ b/src/problems/meltingcube.cpp @@ -8,7 +8,9 @@ // ---- Linesource ---- -MeltingCube::MeltingCube( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { _sigmaS = settings->GetSigmaS(); } +MeltingCube::MeltingCube( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { + _sigmaS = settings->GetSigmaS(); +} MeltingCube::~MeltingCube() {} @@ -24,7 +26,7 @@ std::vector MeltingCube::GetExternalSource( const Vector& /*energi // ---- MeltingCube_SN ---- -MeltingCube_SN::MeltingCube_SN( Config* settings, Mesh* mesh ) : MeltingCube( settings, mesh ) {} +MeltingCube_SN::MeltingCube_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ) : MeltingCube( settings, mesh, quad ) {} MeltingCube_SN::~MeltingCube_SN() {} @@ -49,7 +51,7 @@ VectorVector MeltingCube_SN::SetupIC() { // ---- LineSource_PN ---- -MeltingCube_Moment::MeltingCube_Moment( Config* settings, Mesh* mesh ) : MeltingCube( settings, mesh ) {} +MeltingCube_Moment::MeltingCube_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : MeltingCube( settings, mesh, quad ) {} MeltingCube_Moment::~MeltingCube_Moment() {} @@ -108,7 +110,7 @@ VectorVector MeltingCube_Moment::SetupIC() { // ---- LineSource SN pseudo1D ---- -MeltingCube_SN_1D::MeltingCube_SN_1D( Config* settings, Mesh* mesh ) : MeltingCube( settings, mesh ) {} +MeltingCube_SN_1D::MeltingCube_SN_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ) : MeltingCube( settings, mesh, quad ) {} MeltingCube_SN_1D::~MeltingCube_SN_1D() {} @@ -135,7 +137,7 @@ VectorVector MeltingCube_SN_1D::SetupIC() { // ---- LineSource Moment pseudo1D ---- -MeltingCube_Moment_1D::MeltingCube_Moment_1D( Config* settings, Mesh* mesh ) : MeltingCube( settings, mesh ) {} +MeltingCube_Moment_1D::MeltingCube_Moment_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ) : MeltingCube( settings, mesh, quad ) {} MeltingCube_Moment_1D::~MeltingCube_Moment_1D() {} diff --git a/src/problems/phantomimage.cpp b/src/problems/phantomimage.cpp index 02eddfdb..358eadb4 100644 --- a/src/problems/phantomimage.cpp +++ b/src/problems/phantomimage.cpp @@ -6,7 +6,7 @@ // ---- 2d test case -PhantomImage::PhantomImage( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) {} +PhantomImage::PhantomImage( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) {} PhantomImage::~PhantomImage() {} diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index 4d5cc39e..5052c86e 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -12,91 +12,93 @@ #include "problems/radiationctimage.hpp" #include "problems/starmapvalidation.hpp" #include "problems/symmetrichohlraum.hpp" +#include "quadratures/quadraturebase.hpp" #include "toolboxes/errormessages.hpp" -ProblemBase::ProblemBase( Config* settings, Mesh* mesh ) { +ProblemBase::ProblemBase( Config* settings, Mesh* mesh, QuadratureBase* quad ) { _settings = settings; _mesh = mesh; + _quad = quad; SetGhostCells(); } ProblemBase::~ProblemBase() {} -ProblemBase* ProblemBase::Create( Config* settings, Mesh* mesh ) { +ProblemBase* ProblemBase::Create( Config* settings, Mesh* mesh, QuadratureBase* quad ) { // Choose problem type switch( settings->GetProblemName() ) { case PROBLEM_Linesource: { if( settings->GetIsMomentSolver() ) - return new LineSource_Moment( settings, mesh ); + return new LineSource_Moment( settings, mesh, quad ); else - return new LineSource_SN( settings, mesh ); + return new LineSource_SN( settings, mesh, quad ); } break; case PROBLEM_Linesource1D: { if( settings->GetIsMomentSolver() ) - return new LineSource_Moment_1D( settings, mesh ); + return new LineSource_Moment_1D( settings, mesh, quad ); else - return new LineSource_SN_1D( settings, mesh ); + return new LineSource_SN_1D( settings, mesh, quad ); } break; case PROBLEM_Checkerboard: { if( settings->GetIsMomentSolver() ) - return new Checkerboard_Moment( settings, mesh ); + return new Checkerboard_Moment( settings, mesh, quad ); else - return new Checkerboard_SN( settings, mesh ); + return new Checkerboard_SN( settings, mesh, quad ); } break; case PROBLEM_Checkerboard1D: { if( settings->GetIsMomentSolver() ) - return new Checkerboard_Moment_1D( settings, mesh ); + return new Checkerboard_Moment_1D( settings, mesh, quad ); else - return new Checkerboard_SN_1D( settings, mesh ); + return new Checkerboard_SN_1D( settings, mesh, quad ); } break; case PROBLEM_Aircavity1D: { if( settings->GetIsMomentSolver() ) - return new AirCavity1D_Moment( settings, mesh ); + return new AirCavity1D_Moment( settings, mesh, quad ); else - return new AirCavity1D( settings, mesh ); + return new AirCavity1D( settings, mesh, quad ); } break; case PROBLEM_StarmapValidation: { if( settings->GetIsMomentSolver() ) - return new StarMapValidation_Moment( settings, mesh ); + return new StarMapValidation_Moment( settings, mesh, quad ); else - return new StarMapValidation_SN( settings, mesh ); + return new StarMapValidation_SN( settings, mesh, quad ); } break; - case PROBLEM_Phantomimage: return new PhantomImage( settings, mesh ); + case PROBLEM_Phantomimage: return new PhantomImage( settings, mesh, quad ); case PROBLEM_RadiationCT: { if( settings->GetIsMomentSolver() ) - return new RadiationCTImage_Moment( settings, mesh ); + return new RadiationCTImage_Moment( settings, mesh, quad ); else - return new RadiationCTImage( settings, mesh ); + return new RadiationCTImage( settings, mesh, quad ); } break; case PROBLEM_Meltingcube: { if( settings->GetIsMomentSolver() ) - return new MeltingCube_Moment( settings, mesh ); + return new MeltingCube_Moment( settings, mesh, quad ); else - return new MeltingCube_SN( settings, mesh ); + return new MeltingCube_SN( settings, mesh, quad ); } break; case PROBLEM_Meltingcube1D: { if( settings->GetIsMomentSolver() ) - return new MeltingCube_Moment_1D( settings, mesh ); + return new MeltingCube_Moment_1D( settings, mesh, quad ); else - return new MeltingCube_SN_1D( settings, mesh ); + return new MeltingCube_SN_1D( settings, mesh, quad ); } break; case PROBLEM_Hohlraum: { if( settings->GetIsMomentSolver() ) - return new Hohlraum_Moment( settings, mesh ); + return new Hohlraum_Moment( settings, mesh, quad ); else - return new Hohlraum( settings, mesh ); + return new Hohlraum( settings, mesh, quad ); } break; case PROBLEM_SymmetricHohlraum: { if( settings->GetIsMomentSolver() ) - return new SymmetricHohlraum_Moment( settings, mesh ); + return new SymmetricHohlraum_Moment( settings, mesh, quad ); else - return new SymmetricHohlraum( settings, mesh ); + return new SymmetricHohlraum( settings, mesh, quad ); } break; case PROBLEM_Lattice: { if( settings->GetIsMomentSolver() ) - return new Lattice_Moment( settings, mesh ); + return new Lattice_Moment( settings, mesh, quad ); else - return new Lattice_SN( settings, mesh ); + return new Lattice_SN( settings, mesh, quad ); } break; default: ErrorMessages::Error( "No valid physical problem chosen. Please check your config file", CURRENT_FUNCTION ); return nullptr; diff --git a/src/problems/radiationctimage.cpp b/src/problems/radiationctimage.cpp index 9bd4f0e1..7e7be88d 100644 --- a/src/problems/radiationctimage.cpp +++ b/src/problems/radiationctimage.cpp @@ -13,7 +13,7 @@ #include -RadiationCTImage::RadiationCTImage( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) {} +RadiationCTImage::RadiationCTImage( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) {} RadiationCTImage::~RadiationCTImage() {} @@ -107,7 +107,7 @@ VectorVector RadiationCTImage::GetTotalXS( const Vector& /*energies*/ ) { return VectorVector( 1, Vector( 1, 0.0 ) ); } -RadiationCTImage_Moment::RadiationCTImage_Moment( Config* settings, Mesh* mesh ) : RadiationCTImage( settings, mesh ) {} +RadiationCTImage_Moment::RadiationCTImage_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : RadiationCTImage( settings, mesh,quad ) {} RadiationCTImage_Moment::~RadiationCTImage_Moment() {} diff --git a/src/problems/starmapvalidation.cpp b/src/problems/starmapvalidation.cpp index bc50a749..f17adcba 100644 --- a/src/problems/starmapvalidation.cpp +++ b/src/problems/starmapvalidation.cpp @@ -11,7 +11,7 @@ #include #include -StarMapValidation_SN::StarMapValidation_SN( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) {} +StarMapValidation_SN::StarMapValidation_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) {} StarMapValidation_SN::~StarMapValidation_SN() {} @@ -83,7 +83,8 @@ std::vector StarMapValidation_SN::GetDensity( const VectorVector& /*cell } // Moment version below -StarMapValidation_Moment::StarMapValidation_Moment( Config* settings, Mesh* mesh ) : StarMapValidation_SN( settings, mesh ) {} +StarMapValidation_Moment::StarMapValidation_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) + : StarMapValidation_SN( settings, mesh, quad ) {} StarMapValidation_Moment::~StarMapValidation_Moment() {} @@ -99,9 +100,9 @@ VectorVector StarMapValidation_Moment::SetupIC() { double x = 0.0, y = 0.0, f = 0.0; for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); ++idx_cell ) { - x = cellMidpoints[idx_cell][0]; - y = cellMidpoints[idx_cell][1]; - f = NormPDF( x, pos_beam[0], stddev ) * NormPDF( y, pos_beam[1], stddev ); + x = cellMidpoints[idx_cell][0]; + y = cellMidpoints[idx_cell][1]; + f = NormPDF( x, pos_beam[0], stddev ) * NormPDF( y, pos_beam[1], stddev ); initialSolution[idx_cell][0] = f * StarMAPmoments[0]; for( unsigned idx_sys = 1; idx_sys < ntotalEquations; idx_sys++ ) { diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 07796130..bdc6b6ea 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -11,7 +11,7 @@ #include "velocitybasis/sphericalbase.hpp" #include "velocitybasis/sphericalharmonics.hpp" -SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh ) : ProblemBase( settings, mesh ) { +SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { _sigmaS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default _sigmaT = Vector( _mesh->GetNumCells(), 0.1 ); // white area default @@ -206,7 +206,8 @@ void SymmetricHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { // -------------- Moment Symmetric Hohlraum --------------- -SymmetricHohlraum_Moment::SymmetricHohlraum_Moment( Config* settings, Mesh* mesh ) : SymmetricHohlraum( settings, mesh ) {} +SymmetricHohlraum_Moment::SymmetricHohlraum_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) + : SymmetricHohlraum( settings, mesh, quad ) {} SymmetricHohlraum_Moment::~SymmetricHohlraum_Moment() {} diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 21bbffce..50521915 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -14,14 +14,10 @@ #include "solvers/pnsolver.hpp" #include "solvers/snsolver.hpp" #include "toolboxes/textprocessingtoolbox.hpp" - #include SolverBase::SolverBase( Config* settings ) { _settings = settings; - - // @TODO save parameters from settings class - // build mesh and store and store frequently used params _mesh = LoadSU2MeshFromFile( settings ); @@ -37,9 +33,8 @@ SolverBase::SolverBase( Config* settings ) { _settings->SetNQuadPoints( _nq ); // build slope related params - _reconstructor = new Reconstructor( settings ); - _reconsOrder = _reconstructor->GetReconsOrder(); - + _reconstructor = new Reconstructor( settings ); // Not used! + _reconsOrder = _reconstructor->GetReconsOrder(); _interfaceMidPoints = _mesh->GetInterfaceMidPoints(); _cellMidPoints = _mesh->GetCellMidPoints(); @@ -67,7 +62,7 @@ SolverBase::SolverBase( Config* settings ) { // setup problem and store frequently used params - _problem = ProblemBase::Create( _settings, _mesh ); + _problem = ProblemBase::Create( _settings, _mesh, _quadrature ); _sol = _problem->SetupIC(); _solNew = _sol; // setup temporary sol variable From 73ebb70a913c28eb2de8a61b52a1b9b4cec793e0 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Wed, 20 Dec 2023 16:32:46 -0500 Subject: [PATCH 018/155] made all qois and design parameters part of the corresponding problem class --- include/problems/problembase.hpp | 42 ++++-- include/problems/symmetrichohlraum.hpp | 23 ++-- include/quadratures/quadraturebase.hpp | 177 ++++++++++++------------- include/solvers/mnsolver.hpp | 6 - include/solvers/pnsolver.hpp | 5 - include/solvers/snsolver.hpp | 20 --- include/solvers/solverbase.hpp | 36 ----- src/problems/problembase.cpp | 105 +++++++++++++++ src/problems/symmetrichohlraum.cpp | 44 +++++- src/solvers/mnsolver.cpp | 17 --- src/solvers/pnsolver.cpp | 17 --- src/solvers/snsolver.cpp | 74 ----------- src/solvers/solverbase.cpp | 81 ++++------- 13 files changed, 303 insertions(+), 344 deletions(-) diff --git a/include/problems/problembase.hpp b/include/problems/problembase.hpp index c9eebc9d..e1b72831 100644 --- a/include/problems/problembase.hpp +++ b/include/problems/problembase.hpp @@ -21,13 +21,15 @@ class ProblemBase std::map _ghostCells; /*!< @brief Vector of ghost cells for boundary conditions */ virtual void SetGhostCells(); /*!< @brief Sets vector of ghost cells for boundary conditions */ - + VectorVector _dummyProbeMoments; ProblemBase() = delete; // Quantities of Interest double _curScalarOutflow; /*!< @brief Outflow over whole boundary at current time step */ double _totalScalarOutflow; /*!< @brief Outflow over whole boundary integrated until current time step */ double _curMaxOrdinateOutflow; /*!< @brief Maximum ordinate-wise ouftlow over boundary over all time steps */ + double _mass; /*!< @brief Integrated radiation flux over the whole simulation (i.e. mass of the particles) */ + double _changeRateFlux; /*!< @brief Integrated change of radiation flux over the whole simulation */ public: /** @@ -127,12 +129,20 @@ class ProblemBase */ static ProblemBase* Create( Config* settings, Mesh* mesh, QuadratureBase* quad ); - // Virtual getter function for all QOIS for all test problems + // ---- Helper Functions to compute quantities of interest ---- // Getter + // Test case agnostic + virtual double GetMass() { return _mass; }; + virtual double GetChangeRateFlux() { return _changeRateFlux; }; + virtual double GetCurrentOutflow() { return _curScalarOutflow; }; + virtual double GetTotalOutflow() { return _totalScalarOutflow; }; + virtual double GetMaxOrdinatewiseOutflow() { return _curMaxOrdinateOutflow; }; + // Test case Specific + // Lattice virtual double GetCurAbsorptionLattice() { return 0.0; }; virtual double GetTotalAbsorptionLattice() { return 0.0; }; virtual double GetMaxAbsorptionLattice() { return 0.0; }; - + // Symmetric Hohlraum virtual double GetCurAbsorptionHohlraumCenter() { return 0.0; }; virtual double GetCurAbsorptionHohlraumVertical() { return 0.0; }; virtual double GetCurAbsorptionHohlraumHorizontal() { return 0.0; }; @@ -140,15 +150,27 @@ class ProblemBase virtual double GetTotalAbsorptionHohlraumVertical() { return 0.0; }; virtual double GetTotalAbsorptionHohlraumHorizontal() { return 0.0; }; virtual double GetVarAbsorptionHohlraumGreen() { return 0.0; }; - - // Setter - virtual void ComputeTotalAbsorptionLattice( double dT ){}; /*!< @brief Computes Problemspecific Scalar QOI */ - virtual void ComputeCurrentAbsorptionLattice( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ - virtual void ComputeMaxAbsorptionLattice( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual const VectorVector& GetCurrentProbeMoment() const { return _dummyProbeMoments; }; + + // Computer + // Test case agnostic + void ComputeCurrentOutflow( const VectorVector& solution ); /*!< @brief Computes Problemspeagnostic Scalar QOI */ + void ComputeMaxOrdinatewiseOutflow( const VectorVector& solution ); /*!< @brief Computes Problemspeagnostic Scalar QOI */ + void ComputeTotalOutflow( double dT ); /*!< @brief Computes Problemspeagnostic Scalar QOI */ + void ComputeMass( const Vector& scalarFlux ); /*!< @brief Computes Problemspeagnostic Scalar QOI */ + void ComputeChangeRateFlux( const Vector& scalarFlux, const Vector& scalarFluxNew ); /*!< @brief Computes Problemspeagnostic Scalar QOI */ + + // Test case Specific + // Lattice + virtual void ComputeTotalAbsorptionLattice( double dT ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeCurrentAbsorptionLattice( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeMaxAbsorptionLattice( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + + // Symmetric Hohlraum virtual void ComputeCurrentAbsorptionHohlraum( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ virtual void ComputeTotalAbsorptionHohlraum( double dT ){}; /*!< @brief Computes Problemspecific Scalar QOI */ - // virtual void ComputeCurrentProbeMoment(){}; /*!< @brief Computes Problemspecific Scalar QOI */ - virtual void ComputeVarAbsorptionGreen( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeCurrentProbeMoment( const VectorVector& solution ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeVarAbsorptionGreen( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ }; #endif diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp index 6516cce7..8a8bd035 100644 --- a/include/problems/symmetrichohlraum.hpp +++ b/include/problems/symmetrichohlraum.hpp @@ -20,6 +20,9 @@ class SymmetricHohlraum : public ProblemBase double _totalAbsorptionHohlraumVertical; /*!< @brief Absorption of particles at Hohlraum vertical walls integrated until current time step */ double _totalAbsorptionHohlraumHorizontal; /*!< @brief Absorption of particles at Hohlraum horizontal walls integrated until current time step */ double _varAbsorptionHohlraumGreen; /*!< @brief Absorption of particles at Hohlraum green center cells integrated at current time step */ + std::vector _probingCells; /*!< @brief Indices of cells that contain a probing sensor */ + + VectorVector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ public: SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ); @@ -32,15 +35,16 @@ class SymmetricHohlraum : public ProblemBase void ComputeCurrentAbsorptionHohlraum( const Vector& scalarFlux ) override; /*!< @brief Computes Problemspecific Scalar QOI */ void ComputeTotalAbsorptionHohlraum( double dT ) override; /*!< @brief Computes Problemspecific Scalar QOI */ - // void ComputeCurrentProbeMoment() override; /*!< @brief Computes Problemspecific Scalar QOI */ - void ComputeVarAbsorptionGreen( const Vector& scalarFlux ) override; /*!< @brief Computes Problemspecific Scalar QOI */ - double GetCurAbsorptionHohlraumCenter() { return _curAbsorptionHohlraumCenter; }; - double GetCurAbsorptionHohlraumVertical() { return _curAbsorptionHohlraumVertical; }; - double GetCurAbsorptionHohlraumHorizontal() { return _curAbsorptionHohlraumHorizontal; }; - double GetTotalAbsorptionHohlraumCenter() { return _totalAbsorptionHohlraumCenter; }; - double GetTotalAbsorptionHohlraumVertical() { return _totalAbsorptionHohlraumVertical; }; - double GetTotalAbsorptionHohlraumHorizontal() { return _totalAbsorptionHohlraumHorizontal; }; - double GetVarAbsorptionHohlraumGreen() { return _varAbsorptionHohlraumGreen; }; + void ComputeCurrentProbeMoment( const VectorVector& solution ) override; /*!< @brief Computes Problemspecific Scalar QOI */ + void ComputeVarAbsorptionGreen( const Vector& scalarFlux ) override; /*!< @brief Computes Problemspecific Scalar QOI */ + double GetCurAbsorptionHohlraumCenter() override { return _curAbsorptionHohlraumCenter; }; + double GetCurAbsorptionHohlraumVertical() override { return _curAbsorptionHohlraumVertical; }; + double GetCurAbsorptionHohlraumHorizontal() override { return _curAbsorptionHohlraumHorizontal; }; + double GetTotalAbsorptionHohlraumCenter() override { return _totalAbsorptionHohlraumCenter; }; + double GetTotalAbsorptionHohlraumVertical() override { return _totalAbsorptionHohlraumVertical; }; + double GetTotalAbsorptionHohlraumHorizontal() override { return _totalAbsorptionHohlraumHorizontal; }; + double GetVarAbsorptionHohlraumGreen() override { return _varAbsorptionHohlraumGreen; }; + const VectorVector& GetCurrentProbeMoment() const override { return _probingMoments; }; }; class SymmetricHohlraum_Moment : public SymmetricHohlraum @@ -54,6 +58,7 @@ class SymmetricHohlraum_Moment : public SymmetricHohlraum ~SymmetricHohlraum_Moment(); std::vector GetExternalSource( const Vector& energies ) override final; VectorVector SetupIC() override final; + void ComputeCurrentProbeMoment( const VectorVector& solution ) override final; /*!< @brief Computes Problemspecific Scalar QOI */ }; #endif // SYMMETRIC_HOHLRAUM_H diff --git a/include/quadratures/quadraturebase.hpp b/include/quadratures/quadraturebase.hpp index c9aa7a4d..ef769a18 100644 --- a/include/quadratures/quadraturebase.hpp +++ b/include/quadratures/quadraturebase.hpp @@ -13,94 +13,93 @@ class Config; class QuadratureBase { -public: - /*! @brief Constructor using settings class. This is the recommended constructor. - * @param settings Settings class storing all important options. - */ - QuadratureBase(Config *settings); - /*! @brief Constructor using directly the order of the quadrature. Not applicable for GaussLegendre, that need additional options. - It sets member _settings = nulltpr.*/ - QuadratureBase(unsigned order); - virtual ~QuadratureBase() {} - - // Aux functions - void PrintWeights(); /*!< @brief prints: Weight vector */ - void PrintPoints(); /*!< @brief prints: Point vectorVector */ - void PrintPointsAndWeights(); /*!< @brief prints: Point vectorVector with corresponding weight vector */ - - /*! @brief sums up all entries of the weight vector. - * @returns sum of all weights */ - double SumUpWeights(); - - /*! @brief Integrates f(x,y,z) with the quadrature. - * @param f density function that depends on a three spatial dimensions. - * @returns result of the quadrature rule */ - virtual double Integrate(double (*f)(double, double, double)); - - /*! @brief Integrates f(x,y,z) with the quadrature. - * @param f density function that depends on a spherical coordinates. - * @returns result of the quadrature rule */ - virtual double IntegrateSpherical(double (*f)(double, double)); - - /*! @brief Integrates vector valued f(x,y,z) with the quadrature. Each dimension is integrated by itself. - * @param f density function that depends on a three spatial dimensions. - * @param len lenght of vector - * @returns result of the quadrature rule (vector valued) */ - virtual std::vector Integrate(std::vector (*f)(double, double, double), unsigned len); - - // Quadrature Hub - /*! @brief Creates a quadrature rule with a given name and a given order. - * @param settings Settings to handle quadrature options - * @returns Quadrature* quadrature: returns pointer to instance of the given derived quadrature class */ - static QuadratureBase *Create(Config *settings); - - /*! @brief Creates a quadrature rule with a given name and a given order. - * @param name name of quadrature as enum - * @param quadOrder order of quadrature - * @returns pointer to instance of the given derived quadrature class */ - static QuadratureBase *Create(QUAD_NAME name, unsigned quadOrder); - - // Getter - inline std::string GetName() const { return _name; } /*! @returns std::string _name: name of the quadrature */ - inline unsigned GetOrder() const { return _order; } /*! @returns unsigned _order: order of the quadrature */ - inline unsigned GetNq() const { return _nq; } /*! @returns unsigned _nq: number of gridpoints of the quadrature */ - inline VectorVector &GetPoints() { return _pointsKarth; } /*! @returns VectorVector _points: coordinates of gridpoints of the quadrature */ - inline VectorVector &GetPointsSphere() - { - return _pointsSphere; - } /*! @returns VectorVector _pointsSphere: "---- " in spherical coordinates (my, phi)*/ - inline Vector &GetWeights() { return _weights; } /*! @returns Vector _weights: weights of gridpoints of the quadrature */ - - /*! @returns VectorVectorU _connectivity: connectivity of gridpoints of the quadrature */ - inline VectorVectorU GetConnectivity() const { return _connectivity; } - /*!< @brief Returns approved Dimensions for this quadrature */ - inline std::vector GetSupportedDims() const { return _supportedDimensions; } - /*!< @brief Scales the quadrature weights according to the intervall [-velocityScaling , velocityScaling] in 1D - Scales the radius of the velocity sphere by velocityScaling in 2D and 3D */ - virtual void ScalePointsAndWeights(double velocityScaling); - -protected: - // Setter - inline void SetOrder(unsigned order) { _order = order; } /*! @brief sets: order of the quadrature */ - virtual void SetName() = 0; /*!< @brief Sets: name of the quadrature */ - virtual void SetNq() = 0; /*!< @brief sets: number of gridpoints of the quadrature */ - virtual void SetConnectivity() = 0; /*!< @brief sets: Connectivity Adjacency Matrix as VektorVektor*/ - - /*! @brief Computes the a vector (length: nq) of (coordinates of) gridpoints used for the quadrature rule. - * Computes the a vector (length: nq) of weights for the gridpoints. The indices match the gridpoints VectorVector. - * Sets computed values for _points and _weights. */ - virtual void SetPointsAndWeights() = 0; - - // Member variables - Config *_settings; /*!< @brief pointer to settings class that manages the solver */ - std::string _name; /*!< @brief name of the quadrature */ - unsigned _order; /*!< @brief order of the quadrature */ - unsigned _nq; /*!< @brief number of gridpoints of the quadrature */ - VectorVector _pointsKarth; /*!< @brief gridpoints of the quadrature */ - VectorVector _pointsSphere; /*!< @brief (my,phi,r)gridpoints of the quadrature in spherical cordinates */ - Vector _weights; /*!< @brief weights of the gridpoints of the quadrature */ - VectorVectorU _connectivity; /*!< @brief connectivity of the gripoints of the quadrature */ - std::vector _supportedDimensions; /*!< @brief number of spatial dimensions, for which the quadrature is build */ + public: + /*! @brief Constructor using settings class. This is the recommended constructor. + * @param settings Settings class storing all important options. + */ + QuadratureBase( Config* settings ); + /*! @brief Constructor using directly the order of the quadrature. Not applicable for GaussLegendre, that need additional options. + It sets member _settings = nulltpr.*/ + QuadratureBase( unsigned order ); + virtual ~QuadratureBase() {} + + // Aux functions + void PrintWeights(); /*!< @brief prints: Weight vector */ + void PrintPoints(); /*!< @brief prints: Point vectorVector */ + void PrintPointsAndWeights(); /*!< @brief prints: Point vectorVector with corresponding weight vector */ + + /*! @brief sums up all entries of the weight vector. + * @returns sum of all weights */ + double SumUpWeights(); + + /*! @brief Integrates f(x,y,z) with the quadrature. + * @param f density function that depends on a three spatial dimensions. + * @returns result of the quadrature rule */ + virtual double Integrate( double ( *f )( double, double, double ) ); + + /*! @brief Integrates f(x,y,z) with the quadrature. + * @param f density function that depends on a spherical coordinates. + * @returns result of the quadrature rule */ + virtual double IntegrateSpherical( double ( *f )( double, double ) ); + + /*! @brief Integrates vector valued f(x,y,z) with the quadrature. Each dimension is integrated by itself. + * @param f density function that depends on a three spatial dimensions. + * @param len lenght of vector + * @returns result of the quadrature rule (vector valued) */ + virtual std::vector Integrate( std::vector ( *f )( double, double, double ), unsigned len ); + + // Quadrature Hub + /*! @brief Creates a quadrature rule with a given name and a given order. + * @param settings Settings to handle quadrature options + * @returns Quadrature* quadrature: returns pointer to instance of the given derived quadrature class */ + static QuadratureBase* Create( Config* settings ); + + /*! @brief Creates a quadrature rule with a given name and a given order. + * @param name name of quadrature as enum + * @param quadOrder order of quadrature + * @returns pointer to instance of the given derived quadrature class */ + static QuadratureBase* Create( QUAD_NAME name, unsigned quadOrder ); + + // Getter + inline std::string GetName() const { return _name; } /*! @returns std::string _name: name of the quadrature */ + inline unsigned GetOrder() const { return _order; } /*! @returns unsigned _order: order of the quadrature */ + inline unsigned GetNq() const { return _nq; } /*! @returns unsigned _nq: number of gridpoints of the quadrature */ + inline const VectorVector& GetPoints() const { return _pointsKarth; } /*! @returns VectorVector _points: coordinates of the quad pts */ + inline const VectorVector& GetPointsSphere() const { + return _pointsSphere; + } /*! @returns VectorVector _pointsSphere: "---- " in spherical coordinates (my, phi)*/ + inline const Vector& GetWeights() const { return _weights; } /*! @returns Vector _weights: weights of gridpoints of the quadrature */ + + /*! @returns VectorVectorU _connectivity: connectivity of gridpoints of the quadrature */ + inline const VectorVectorU& GetConnectivity() const { return _connectivity; } + /*!< @brief Returns approved Dimensions for this quadrature */ + inline const std::vector GetSupportedDims() const { return _supportedDimensions; } + /*!< @brief Scales the quadrature weights according to the intervall [-velocityScaling , velocityScaling] in 1D + Scales the radius of the velocity sphere by velocityScaling in 2D and 3D */ + virtual void ScalePointsAndWeights( double velocityScaling ); + + protected: + // Setter + inline void SetOrder( unsigned order ) { _order = order; } /*! @brief sets: order of the quadrature */ + virtual void SetName() = 0; /*!< @brief Sets: name of the quadrature */ + virtual void SetNq() = 0; /*!< @brief sets: number of gridpoints of the quadrature */ + virtual void SetConnectivity() = 0; /*!< @brief sets: Connectivity Adjacency Matrix as VektorVektor*/ + + /*! @brief Computes the a vector (length: nq) of (coordinates of) gridpoints used for the quadrature rule. + * Computes the a vector (length: nq) of weights for the gridpoints. The indices match the gridpoints VectorVector. + * Sets computed values for _points and _weights. */ + virtual void SetPointsAndWeights() = 0; + + // Member variables + Config* _settings; /*!< @brief pointer to settings class that manages the solver */ + std::string _name; /*!< @brief name of the quadrature */ + unsigned _order; /*!< @brief order of the quadrature */ + unsigned _nq; /*!< @brief number of gridpoints of the quadrature */ + VectorVector _pointsKarth; /*!< @brief gridpoints of the quadrature */ + VectorVector _pointsSphere; /*!< @brief (my,phi,r)gridpoints of the quadrature in spherical cordinates */ + Vector _weights; /*!< @brief weights of the gridpoints of the quadrature */ + VectorVectorU _connectivity; /*!< @brief connectivity of the gripoints of the quadrature */ + std::vector _supportedDimensions; /*!< @brief number of spatial dimensions, for which the quadrature is build */ }; -#endif // QUADRATURE_H +#endif // QUADRATURE_H diff --git a/include/solvers/mnsolver.hpp b/include/solvers/mnsolver.hpp index 86b9928d..3a06bd4b 100644 --- a/include/solvers/mnsolver.hpp +++ b/include/solvers/mnsolver.hpp @@ -70,11 +70,5 @@ class MNSolver : public SolverBase // Helper /*! @brief Computes the radiative flux from the solution vector of the moment system */ void ComputeScalarFlux() override; - - // Output helper functions - void GetCurrentOutflow() override final; - void GetMaxOrdinatewiseOutflow() override final; - - void ComputeCurrentProbeMoment() override final; }; #endif // MNSOLVER_H diff --git a/include/solvers/pnsolver.hpp b/include/solvers/pnsolver.hpp index 25e87538..d549a381 100644 --- a/include/solvers/pnsolver.hpp +++ b/include/solvers/pnsolver.hpp @@ -147,11 +147,6 @@ class PNSolver : public SolverBase void FluxUpdatePseudo1D(); /*! @brief Flux update version for Pseudo2D */ void FluxUpdatePseudo2D(); - - // Output helper functions - void GetCurrentOutflow() override final; - void GetMaxOrdinatewiseOutflow() override final; - void ComputeCurrentProbeMoment() override final; }; #endif // PNSOLVER_H diff --git a/include/solvers/snsolver.hpp b/include/solvers/snsolver.hpp index fcbbc780..374281e2 100644 --- a/include/solvers/snsolver.hpp +++ b/include/solvers/snsolver.hpp @@ -36,26 +36,6 @@ class SNSolver : public SolverBase void ComputeScalarFlux() override; void FluxUpdatePseudo1D(); // Helper void FluxUpdatePseudo2D(); // Helper - - // --- Member variables --- - - // Scalar output helper functions - /** - * @brief Computes Problemspecific Scalar QOI - * - */ - void GetCurrentOutflow() override final; - /** - * @brief Computes Problemspecific Scalar QOI - * - */ - void GetMaxOrdinatewiseOutflow() override final; - - /** - * @brief Computes Problemspecific Scalar QOI - * - */ - void ComputeCurrentProbeMoment() override final; }; #endif // SNSOLVER_H diff --git a/include/solvers/solverbase.hpp b/include/solvers/solverbase.hpp index c04db2a9..b79e0990 100644 --- a/include/solvers/solverbase.hpp +++ b/include/solvers/solverbase.hpp @@ -91,15 +91,6 @@ class SolverBase std::vector _historyOutputFields; /*!< @brief Solver Output: dimensions (FieldID). */ std::vector _historyOutputFieldNames; /*!< @brief Names of the outputFields: dimensions (FieldID) */ - // Quantities of Interest - double _curScalarOutflow; /*!< @brief Outflow over whole boundary at current time step */ - double _totalScalarOutflow; /*!< @brief Outflow over whole boundary integrated until current time step */ - double _curMaxOrdinateOutflow; /*!< @brief Maximum ordinate-wise ouftlow over boundary over all time steps */ - double _mass; /*!< @brief Integrated radiation flux over the whole simulation (i.e. mass of the particles) */ - double _changeRateFlux; /*!< @brief Integrated change of radiation flux over the whole simulation */ - std::vector _probingCells; /*!< @brief Indices of cells that contain a probing sensor */ - VectorVector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ - // ---- Member functions ---- // Solver @@ -166,33 +157,6 @@ class SolverBase /*! @brief Post Solver Screen and Logger Output */ void DrawPostSolverOutput(); - // Scalar output helper functions - /** - * @brief Computes Problemspecific Scalar QOI - */ - virtual void GetCurrentOutflow() = 0; - /** - * @brief Computes Problemspecific Scalar QOI - */ - void GetTotalOutflow(); - /** - * @brief Computes Problemspecific Scalar QOI - */ - virtual void GetMaxOrdinatewiseOutflow() = 0; - /** - * @brief Computes Problemspecific Scalar QOI - */ - virtual void ComputeCurrentProbeMoment() = 0; - - /** - * @brief Computes Problemspecific Scalar QOI - */ - void GetMass(); - /** - * @brief Computes Problemspecific Scalar QOI - */ - void GetChangeRateFlux(); - public: /*! @brief Solver constructor * @param settings config class that stores all needed config information */ diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index 5052c86e..de5a1a9d 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -19,6 +19,15 @@ ProblemBase::ProblemBase( Config* settings, Mesh* mesh, QuadratureBase* quad ) { _settings = settings; _mesh = mesh; _quad = quad; + + // initialize QOI helper variables + _curMaxOrdinateOutflow = 0.0; + _curScalarOutflow = 0.0; + _totalScalarOutflow = 0.0; + _mass = 0.0; + _changeRateFlux = 0.0; + _dummyProbeMoments = VectorVector( 4, Vector( 3, 0.0 ) ); + SetGhostCells(); } @@ -140,3 +149,99 @@ void ProblemBase::SetGhostCells() { } const Vector& ProblemBase::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { return cell_sol; } + +void ProblemBase::ComputeMaxOrdinatewiseOutflow( const VectorVector& solution ) { + if( _settings->GetSolverName() == SN_SOLVER || _settings->GetSolverName() == CSD_SN_SOLVER ) { + double currOrdinatewiseOutflow = 0.0; + double transportDirection = 0.0; + + auto nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + auto areas = _mesh->GetCellAreas(); + auto neigbors = _mesh->GetNeighbours(); + auto normals = _mesh->GetNormals(); + + auto quadPoints = _quad->GetPoints(); + auto weights = _quad->GetWeights(); + auto nq = _quad->GetNq(); + + // Iterate over boundaries + for( std::map::iterator it = _ghostCells.begin(); it != _ghostCells.end(); ++it ) { + int idx_cell = it->first; // Get Boundary cell index + for( unsigned idx_nbr = 0; idx_nbr < neigbors[idx_cell].size(); ++idx_nbr ) { + // Find face that points outward + if( neigbors[idx_cell][idx_nbr] == nCells ) { + // Iterate over transport directions + for( unsigned idx_quad = 0; idx_quad < nq; ++idx_quad ) { + transportDirection = + normals[idx_cell][idx_nbr][0] * quadPoints[idx_quad][0] + normals[idx_cell][idx_nbr][1] * quadPoints[idx_quad][1]; + // Find outward facing transport directions + if( transportDirection > 0.0 ) { + + currOrdinatewiseOutflow = transportDirection / norm( normals[idx_cell][idx_nbr] ) * solution[idx_cell][idx_quad]; + + if( currOrdinatewiseOutflow > _curMaxOrdinateOutflow ) _curMaxOrdinateOutflow = currOrdinatewiseOutflow; + } + } + } + } + } + } + // TODO define alternative for Moment solvers +} + +void ProblemBase::ComputeCurrentOutflow( const VectorVector& solution ) { + if( _settings->GetSolverName() == SN_SOLVER || _settings->GetSolverName() == CSD_SN_SOLVER ) { + + _curScalarOutflow = 0.0; + double transportDirection = 0.0; + + auto nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + auto areas = _mesh->GetCellAreas(); + auto neigbors = _mesh->GetNeighbours(); + auto normals = _mesh->GetNormals(); + + auto quadPoints = _quad->GetPoints(); + auto weights = _quad->GetWeights(); + auto nq = _quad->GetNq(); + + // Iterate over boundaries + for( std::map::iterator it = _ghostCells.begin(); it != _ghostCells.end(); ++it ) { + int idx_cell = it->first; // Get Boundary cell index + + // Iterate over face cell faces + for( unsigned idx_nbr = 0; idx_nbr < neigbors[idx_cell].size(); ++idx_nbr ) { + // Find face that points outward + if( neigbors[idx_cell][idx_nbr] == nCells ) { + // Iterate over transport directions + for( unsigned idx_quad = 0; idx_quad < nq; ++idx_quad ) { + transportDirection = + normals[idx_cell][idx_nbr][0] * quadPoints[idx_quad][0] + normals[idx_cell][idx_nbr][1] * quadPoints[idx_quad][1]; + // Find outward facing transport directions + if( transportDirection > 0.0 ) { + _curScalarOutflow += transportDirection * solution[idx_cell][idx_quad] * weights[idx_quad]; // Integrate flux + } + } + } + } + } + } + // TODO define alternative for Moment solvers +} + +void ProblemBase::ComputeTotalOutflow( double dT ) { _totalScalarOutflow += _curScalarOutflow * dT; } + +void ProblemBase::ComputeMass( const Vector& scalarFlux ) { + _mass = 0.0; + + auto areas = _mesh->GetCellAreas(); + unsigned nCells = _mesh->GetNumCells(); + for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { + _mass += scalarFlux[idx_cell] * areas[idx_cell]; + } +} + +void ProblemBase::ComputeChangeRateFlux( const Vector& scalarFlux, const Vector& scalarFluxNew ) { + _changeRateFlux = blaze::l2Norm( scalarFluxNew - scalarFlux ); +} diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index bdc6b6ea..cb866727 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -22,7 +22,13 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _totalAbsorptionHohlraumVertical = 0.0; _totalAbsorptionHohlraumHorizontal = 0.0; _varAbsorptionHohlraumGreen = 0.0; - + _probingCells = { + _mesh->GetCellOfKoordinate( -0.4, 0. ), + _mesh->GetCellOfKoordinate( 0.4, 0. ), + _mesh->GetCellOfKoordinate( 0., -0.6 ), + _mesh->GetCellOfKoordinate( 0., 0.6 ), + }; + _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { // Assumption: Domain size is 1.3x1.3 @@ -176,8 +182,8 @@ void SymmetricHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { std::vector areas = _mesh->GetCellAreas(); for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { - x = _mesh->GetCellMidPoints()[idx_cell][0]; - y = _mesh->GetCellMidPoints()[idx_cell][1]; + x = cellMids[idx_cell][0]; + y = cellMids[idx_cell][1]; green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) @@ -189,8 +195,8 @@ void SymmetricHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { } } for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { - x = _mesh->GetCellMidPoints()[idx_cell][0]; - y = _mesh->GetCellMidPoints()[idx_cell][1]; + x = cellMids[idx_cell][0]; + y = cellMids[idx_cell][1]; green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) @@ -204,6 +210,24 @@ void SymmetricHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { } } +void SymmetricHohlraum::ComputeCurrentProbeMoment( const VectorVector& solution ) { + const VectorVector& quadPoints = _quad->GetPoints(); + const Vector& weights = _quad->GetWeights(); + unsigned nq = _quad->GetNq(); + // Red areas of symmetric hohlraum + double total_absorption = 0.0; + for( unsigned idx_cell = 0; idx_cell < 4; idx_cell++ ) { // Loop over probing cells + _probingMoments[idx_cell][0] = blaze::dot( solution[_probingCells[idx_cell]], weights ); + _probingMoments[idx_cell][1] = 0.0; + _probingMoments[idx_cell][2] = 0.0; + + for( unsigned idx_quad = 0; idx_quad < nq; idx_quad++ ) { + _probingMoments[idx_cell][1] += quadPoints[idx_quad][0] * solution[_probingCells[idx_cell]][idx_quad] * weights[idx_quad]; + _probingMoments[idx_cell][2] += quadPoints[idx_quad][2] * solution[_probingCells[idx_cell]][idx_quad] * weights[idx_quad]; + } + } +} + // -------------- Moment Symmetric Hohlraum --------------- SymmetricHohlraum_Moment::SymmetricHohlraum_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) @@ -317,3 +341,13 @@ VectorVector SymmetricHohlraum_Moment::SetupIC() { delete tempBase; // Only temporally needed return initialSolution; } + +void SymmetricHohlraum_Moment::ComputeCurrentProbeMoment( const VectorVector& solution ) { + for( unsigned idx_cell = 0; idx_cell < 4; idx_cell++ ) { // Loop over probing cells + _probingMoments[idx_cell][0] = solution[_probingCells[idx_cell]][0]; + if( _probingMoments[idx_cell].size() > 1 ) { + _probingMoments[idx_cell][1] = solution[_probingCells[idx_cell]][1]; + _probingMoments[idx_cell][2] = solution[_probingCells[idx_cell]][2]; + } + } +} \ No newline at end of file diff --git a/src/solvers/mnsolver.cpp b/src/solvers/mnsolver.cpp index 2843daf3..96625513 100644 --- a/src/solvers/mnsolver.cpp +++ b/src/solvers/mnsolver.cpp @@ -428,20 +428,3 @@ void MNSolver::WriteVolumeOutput( unsigned idx_iter ) { } } } - -void MNSolver::GetCurrentOutflow() {} // TOOD -void MNSolver::GetMaxOrdinatewiseOutflow() {} // TODO - -void MNSolver::ComputeCurrentProbeMoment() { - // Red areas of symmetric hohlraum - double total_absorption = 0.0; - if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { - for( unsigned idx_cell = 0; idx_cell < 4; idx_cell++ ) { // Loop over probing cells - _probingMoments[idx_cell][0] = _sol[idx_cell][0]; - if( _nSystem > 1 ) { - _probingMoments[idx_cell][1] = _sol[idx_cell][1]; - _probingMoments[idx_cell][2] = _sol[idx_cell][2]; - } - } - } -} \ No newline at end of file diff --git a/src/solvers/pnsolver.cpp b/src/solvers/pnsolver.cpp index 558ca1b3..8eb6422b 100644 --- a/src/solvers/pnsolver.cpp +++ b/src/solvers/pnsolver.cpp @@ -598,20 +598,3 @@ int PNSolver::Sgn( int k ) const { else return -1; } - -void PNSolver::GetCurrentOutflow() {} // TOOD -void PNSolver::GetMaxOrdinatewiseOutflow() {} // TODO - -void PNSolver::ComputeCurrentProbeMoment() { - // Red areas of symmetric hohlraum - double total_absorption = 0.0; - if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { - for( unsigned idx_cell = 0; idx_cell < 4; idx_cell++ ) { // Loop over probing cells - _probingMoments[idx_cell][0] = _sol[idx_cell][0]; - if( _nSystem > 1 ) { - _probingMoments[idx_cell][1] = _sol[idx_cell][1]; - _probingMoments[idx_cell][2] = _sol[idx_cell][2]; - } - } - } -} \ No newline at end of file diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index cbc440e4..4212c074 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -268,77 +268,3 @@ void SNSolver::WriteVolumeOutput( unsigned idx_iter ) { } } } - -// Needs to go to Solver, not to Problem -void SNSolver::GetCurrentOutflow() { - _curScalarOutflow = 0.0; - double transportDirection = 0.0; - - std::map& ghostCells = _problem->GetGhostCells(); - - // Iterate over boundaries - for( std::map::iterator it = ghostCells.begin(); it != ghostCells.end(); ++it ) { - int idx_cell = it->first; // Get Boundary cell index - - // Iterate over face cell faces - for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { - // Find face that points outward - if( _neighbors[idx_cell][idx_nbr] == _nCells ) { - // Iterate over transport directions - for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { - transportDirection = - _normals[idx_cell][idx_nbr][0] * _quadPoints[idx_quad][0] + _normals[idx_cell][idx_nbr][1] * _quadPoints[idx_quad][1]; - // Find outward facing transport directions - if( transportDirection > 0.0 ) { - _curScalarOutflow += transportDirection * _sol[idx_cell][idx_quad] * _weights[idx_quad]; // Integrate flux - } - } - } - } - } -} - -void SNSolver::GetMaxOrdinatewiseOutflow() { - double currOrdinatewiseOutflow = 0.0; - double transportDirection = 0.0; - - std::map& ghostCells = _problem->GetGhostCells(); - // Iterate over boundaries - for( std::map::iterator it = ghostCells.begin(); it != ghostCells.end(); ++it ) { - int idx_cell = it->first; // Get Boundary cell index - for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { - // Find face that points outward - if( _neighbors[idx_cell][idx_nbr] == _nCells ) { - // Iterate over transport directions - for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { - transportDirection = - _normals[idx_cell][idx_nbr][0] * _quadPoints[idx_quad][0] + _normals[idx_cell][idx_nbr][1] * _quadPoints[idx_quad][1]; - // Find outward facing transport directions - if( transportDirection > 0.0 ) { - - currOrdinatewiseOutflow = transportDirection / norm( _normals[idx_cell][idx_nbr] ) * _sol[idx_cell][idx_quad]; - - if( currOrdinatewiseOutflow > _curMaxOrdinateOutflow ) _curMaxOrdinateOutflow = currOrdinatewiseOutflow; - } - } - } - } - } -} - -void SNSolver::ComputeCurrentProbeMoment() { - // Red areas of symmetric hohlraum - double total_absorption = 0.0; - if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { - for( unsigned idx_cell = 0; idx_cell < 4; idx_cell++ ) { // Loop over probing cells - _probingMoments[idx_cell][0] = blaze::dot( _sol[_probingCells[idx_cell]], _weights ); - _probingMoments[idx_cell][1] = 0.0; - _probingMoments[idx_cell][2] = 0.0; - - for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { - _probingMoments[idx_cell][1] += _quadPoints[idx_quad][0] * _sol[_probingCells[idx_cell]][idx_quad] * _weights[idx_quad]; - _probingMoments[idx_cell][2] += _quadPoints[idx_quad][2] * _sol[_probingCells[idx_cell]][idx_quad] * _weights[idx_quad]; - } - } - } -} diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 50521915..7f4949e2 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -90,28 +90,6 @@ SolverBase::SolverBase( Config* settings ) { // write density _density = _problem->GetDensity( _mesh->GetCellMidPoints() ); - - // initialize QOI helper variables - _curMaxOrdinateOutflow = 0.0; - _curScalarOutflow = 0.0; - _totalScalarOutflow = 0.0; - _mass = 0.0; - _changeRateFlux = 0.0; - - // Hardcoded for the symmetric hohlraum testcase (experimental, needs refactoring) - if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { - _probingCells = { - _mesh->GetCellOfKoordinate( -0.4, 0. ), - _mesh->GetCellOfKoordinate( 0.4, 0. ), - _mesh->GetCellOfKoordinate( 0., -0.6 ), - _mesh->GetCellOfKoordinate( 0., 0.6 ), - }; - _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); - } - else { - _probingCells = { 0 }; // Dummy needs refactoring - _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); - } } SolverBase::~SolverBase() { @@ -285,17 +263,17 @@ void SolverBase::PrepareScreenOutput() { void SolverBase::WriteScalarOutput( unsigned idx_iter ) { - unsigned nFields = (unsigned)_settings->GetNScreenOutput(); - double mass = 0.0; - + unsigned nFields = (unsigned)_settings->GetNScreenOutput(); + double mass = 0.0; + const VectorVector probingMoments = _problem->GetCurrentProbeMoment(); // -- Screen Output for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { // Prepare all Output Fields per group // Different procedure, depending on the Group... switch( _settings->GetScreenOutput()[idx_field] ) { - case MASS: _screenOutputFields[idx_field] = _mass; break; + case MASS: _screenOutputFields[idx_field] = _problem->GetMass(); break; case ITER: _screenOutputFields[idx_field] = idx_iter; break; - case RMS_FLUX: _screenOutputFields[idx_field] = _changeRateFlux; break; + case RMS_FLUX: _screenOutputFields[idx_field] = _problem->GetChangeRateFlux(); break; case VTK_OUTPUT: _screenOutputFields[idx_field] = 0; if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || @@ -310,9 +288,9 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { _screenOutputFields[idx_field] = 1; } break; - case CUR_OUTFLOW: _screenOutputFields[idx_field] = _curScalarOutflow; break; - case TOTAL_OUTFLOW: _screenOutputFields[idx_field] = _totalScalarOutflow; break; - case MAX_OUTFLOW: _screenOutputFields[idx_field] = _curMaxOrdinateOutflow; break; + case CUR_OUTFLOW: _screenOutputFields[idx_field] = _problem->GetCurrentOutflow(); break; + case TOTAL_OUTFLOW: _screenOutputFields[idx_field] = _problem->GetTotalOutflow(); break; + case MAX_OUTFLOW: _screenOutputFields[idx_field] = _problem->GetMaxOrdinatewiseOutflow(); break; case CUR_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _problem->GetCurAbsorptionLattice(); break; case TOTAL_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionLattice(); break; case MAX_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _problem->GetMaxAbsorptionLattice(); break; @@ -321,7 +299,7 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumHorizontal(); break; case PROBE_MOMENT_TIME_TRACE: for( unsigned i = 0; i < 4; i++ ) { - _screenOutputFields[idx_field] = _probingMoments[i][0]; + _screenOutputFields[idx_field] = probingMoments[i][0]; idx_field++; } idx_field--; @@ -340,9 +318,9 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { // Prepare all Output Fields per group // Different procedure, depending on the Group... switch( _settings->GetHistoryOutput()[idx_field] ) { - case MASS: _historyOutputFields[idx_field] = _mass; break; + case MASS: _historyOutputFields[idx_field] = _problem->GetMass(); break; case ITER: _historyOutputFields[idx_field] = idx_iter; break; - case RMS_FLUX: _historyOutputFields[idx_field] = _changeRateFlux; break; + case RMS_FLUX: _historyOutputFields[idx_field] = _problem->GetChangeRateFlux(); break; case VTK_OUTPUT: _historyOutputFields[idx_field] = 0; if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || @@ -358,9 +336,9 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { _historyOutputFields[idx_field] = 1; } break; - case CUR_OUTFLOW: _historyOutputFields[idx_field] = _curScalarOutflow; break; - case TOTAL_OUTFLOW: _historyOutputFields[idx_field] = _totalScalarOutflow; break; - case MAX_OUTFLOW: _historyOutputFields[idx_field] = _curMaxOrdinateOutflow; break; + case CUR_OUTFLOW: _historyOutputFields[idx_field] = _problem->GetCurrentOutflow(); break; + case TOTAL_OUTFLOW: _historyOutputFields[idx_field] = _problem->GetTotalOutflow(); break; + case MAX_OUTFLOW: _historyOutputFields[idx_field] = _problem->GetMaxOrdinatewiseOutflow(); break; case CUR_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _problem->GetCurAbsorptionLattice(); break; case TOTAL_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _problem->GetTotalAbsorptionLattice(); break; case MAX_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _problem->GetMaxAbsorptionLattice(); break; @@ -368,9 +346,10 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumVertical(); break; case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumHorizontal(); break; case PROBE_MOMENT_TIME_TRACE: + for( unsigned i = 0; i < 4; i++ ) { for( unsigned j = 0; j < 3; j++ ) { - _historyOutputFields[idx_field] = _probingMoments[i][j]; + _historyOutputFields[idx_field] = probingMoments[i][j]; idx_field++; } } @@ -597,26 +576,16 @@ void SolverBase::DrawPostSolverOutput() { void SolverBase::SolverPreprocessing() {} -void SolverBase::GetTotalOutflow() { _totalScalarOutflow += _curScalarOutflow * _dT; } - -void SolverBase::GetMass() { - _mass = 0.0; - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - _mass += _scalarFluxNew[idx_cell] * _areas[idx_cell]; - } -} - -void SolverBase::GetChangeRateFlux() { _changeRateFlux = blaze::l2Norm( _scalarFluxNew - _scalarFlux ); } - void SolverBase::IterPostprocessing( unsigned idx_iter ) { // --- Compute Quantities of interest for Volume and Screen Output --- - ComputeScalarFlux(); // Needs to be called first + ComputeScalarFlux(); // Needs to be called first is a solver function - GetMass(); - GetCurrentOutflow(); - GetTotalOutflow(); + _problem->ComputeMass( _scalarFluxNew ); + _problem->ComputeChangeRateFlux( _scalarFlux, _scalarFluxNew ); - GetMaxOrdinatewiseOutflow(); + _problem->ComputeCurrentOutflow( _sol ); + _problem->ComputeTotalOutflow( _dT ); + _problem->ComputeMaxOrdinatewiseOutflow( _sol ); if( _settings->GetProblemName() == PROBLEM_Lattice ) { _problem->ComputeCurrentAbsorptionLattice( _scalarFlux ); @@ -624,9 +593,9 @@ void SolverBase::IterPostprocessing( unsigned idx_iter ) { _problem->ComputeMaxAbsorptionLattice( _scalarFlux ); } if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { - _problem->ComputeCurrentAbsorptionHohlraum( _scalarFlux ); - _problem->ComputeTotalAbsorptionHohlraum( _dT ); - ComputeCurrentProbeMoment(); + _problem->ComputeCurrentAbsorptionHohlraum( _scalarFlux ); // Unify + _problem->ComputeTotalAbsorptionHohlraum( _dT ); // Unify and parallelize + _problem->ComputeCurrentProbeMoment( _sol ); _problem->ComputeVarAbsorptionGreen( _scalarFlux ); } } From d31fbb0ed8e2a93d7b1bf05037829a87bf9e4d7a Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Wed, 20 Dec 2023 16:49:54 -0500 Subject: [PATCH 019/155] fixed compiler warning about included map --- include/problems/problembase.hpp | 1 + src/common/mesh.cpp | 2 +- src/problems/lattice.cpp | 4 +--- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/include/problems/problembase.hpp b/include/problems/problembase.hpp index e1b72831..dc6a3e4f 100644 --- a/include/problems/problembase.hpp +++ b/include/problems/problembase.hpp @@ -2,6 +2,7 @@ #define PROBLEMBASE_H #include "common/typedef.hpp" +#include // Forward Declaration diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 7188b937..7e0a6504 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -397,13 +397,13 @@ double Mesh::GetDistanceToOrigin( unsigned idx_cell ) const { } unsigned Mesh::GetCellOfKoordinate( double x, double y ) const { - unsigned koordinate_idx = 0; for( unsigned idx_cell = 0; idx_cell < _numCells; idx_cell++ ) { if( IsPointInsideCell( idx_cell, x, y ) ) { return idx_cell; } } ErrorMessages::Error( "Probing point (" + std::to_string( x ) + "," + std::to_string( y ) + ") is contained in mesh.", CURRENT_FUNCTION ); + return 0; } bool Mesh::IsPointInsideCell( unsigned idx_cell, double x, double y ) const { diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index fa0500e2..ca86279b 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -123,9 +123,7 @@ void Lattice_SN::SetGhostCells() { delete quad; } -const Vector& Lattice_SN::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { // re-write to use pointers - return _ghostCells[idx_cell]; -} +const Vector& Lattice_SN::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { return _ghostCells[idx_cell]; } // QOI getter double Lattice_SN::GetCurAbsorptionLattice() { return _curAbsorptionLattice; } From c4dd9d3474cafb478948fad5afae1ffaea2d2d15 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Thu, 21 Dec 2023 10:04:51 -0500 Subject: [PATCH 020/155] fix small bug --- src/common/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 8a08be9d..51aa6ce1 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -646,7 +646,7 @@ void Config::SetPostprocessing() { supportedGroups = { MINIMAL, MOMENTS, DUAL_MOMENTS }; if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { std::string supportedGroupStr = ""; - for( unsigned i = 0; i, supportedGroups.size(); i++ ) { + for( unsigned i = 0; i < supportedGroups.size(); i++ ) { supportedGroupStr += findKey( VolOutput_Map, supportedGroups[i] ) + ", "; } ErrorMessages::Error( "MN_SOLVER supports volume outputs" + supportedGroupStr + ".\nPlease check your .cfg file.", From 3b60ec208f4438a9256eeb3a7f9134191ead7e54 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 21 Dec 2023 10:20:05 -0500 Subject: [PATCH 021/155] fixed ninja compile bug --- include/problems/problembase.hpp | 14 +++++++------- include/problems/symmetrichohlraum.hpp | 4 ++-- src/solvers/snsolver.cpp | 1 + 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/include/problems/problembase.hpp b/include/problems/problembase.hpp index dc6a3e4f..4b32d818 100644 --- a/include/problems/problembase.hpp +++ b/include/problems/problembase.hpp @@ -163,15 +163,15 @@ class ProblemBase // Test case Specific // Lattice - virtual void ComputeTotalAbsorptionLattice( double dT ){}; /*!< @brief Computes Problemspecific Scalar QOI */ - virtual void ComputeCurrentAbsorptionLattice( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ - virtual void ComputeMaxAbsorptionLattice( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeTotalAbsorptionLattice( double /* dT */ ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeCurrentAbsorptionLattice( const Vector& /* scalarFlux */ ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeMaxAbsorptionLattice( const Vector& /* scalarFlux */ ){}; /*!< @brief Computes Problemspecific Scalar QOI */ // Symmetric Hohlraum - virtual void ComputeCurrentAbsorptionHohlraum( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ - virtual void ComputeTotalAbsorptionHohlraum( double dT ){}; /*!< @brief Computes Problemspecific Scalar QOI */ - virtual void ComputeCurrentProbeMoment( const VectorVector& solution ){}; /*!< @brief Computes Problemspecific Scalar QOI */ - virtual void ComputeVarAbsorptionGreen( const Vector& scalarFlux ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeCurrentAbsorptionHohlraum( const Vector& /* scalarFlux */ ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeTotalAbsorptionHohlraum( double /* dT */ ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeCurrentProbeMoment( const VectorVector& /* solution */ ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeVarAbsorptionGreen( const Vector& /* scalarFlux*/ ){}; /*!< @brief Computes Problemspecific Scalar QOI */ }; #endif diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp index 8a8bd035..06957bdd 100644 --- a/include/problems/symmetrichohlraum.hpp +++ b/include/problems/symmetrichohlraum.hpp @@ -21,8 +21,8 @@ class SymmetricHohlraum : public ProblemBase double _totalAbsorptionHohlraumHorizontal; /*!< @brief Absorption of particles at Hohlraum horizontal walls integrated until current time step */ double _varAbsorptionHohlraumGreen; /*!< @brief Absorption of particles at Hohlraum green center cells integrated at current time step */ std::vector _probingCells; /*!< @brief Indices of cells that contain a probing sensor */ - - VectorVector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ + VectorVector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ + VectorVector _probingCellsLineGreen; /*!< @brief Indices of cells that contain a probing sensor for the sliding window */ public: SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ); diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index 4212c074..148c9eb8 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -5,6 +5,7 @@ #include "common/mesh.hpp" #include "fluxes/numericalflux.hpp" #include "kernels/scatteringkernelbase.hpp" +#include "problems/problembase.hpp" #include "quadratures/quadraturebase.hpp" #include "toolboxes/errormessages.hpp" #include "toolboxes/textprocessingtoolbox.hpp" From 0ef1627424fd1191e5337aab6e44d1e613ccdc1f Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 21 Dec 2023 10:41:03 -0500 Subject: [PATCH 022/155] started hohlraum probing qoi --- include/common/config.hpp | 8 ++++++-- include/problems/symmetrichohlraum.hpp | 3 ++- src/common/config.cpp | 3 +++ src/problems/symmetrichohlraum.cpp | 6 ++++-- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/include/common/config.hpp b/include/common/config.hpp index 52cc4d06..aa604edf 100644 --- a/include/common/config.hpp +++ b/include/common/config.hpp @@ -94,10 +94,12 @@ class Config double _dsgnAbsBlue; /*!< @brief Absorption in all blue blocks */ double _dsgnScatterWhite; /*!< @brief Scattering in all white blocks */ std::vector _dsgnAbsIndividual; /*!< @brief Absorption in all 7x7 blocks of the Lattice test case (up left to low right) */ - unsigned short _nDsgnAbsIndividual; /*!< @brief Number of individual blocks. Needs to be 47*/ + unsigned short _nDsgnAbsIndividual; /*!< @brief Number of individual blocks. Needs to be 49*/ std::vector _dsgnScatterIndividual; /*!< @brief Scatter in all 7x7 blocks of the Lattice test case (up left to low right) */ - unsigned short _nDsgnScatterIndividual; /*!< @brief Number of individual blocks. Needs to be 47*/ + unsigned short _nDsgnScatterIndividual; /*!< @brief Number of individual blocks. Needs to be 49*/ + // Hohlraum + unsigned _nProbingCellsLineGreenHohlraum; /*!< @brief Number SamplingPoints for Hohlraum Green region sampling.*/ // CSD double _maxEnergyCSD; /*!< @brief Maximum energy for CSD simulation */ @@ -325,6 +327,8 @@ class Config unsigned short inline GetNLatticeAbsIndividual() { return _nDsgnAbsIndividual; } std::vector inline GetLatticeScatterIndividual() const { return _dsgnScatterIndividual; } unsigned short inline GetNLatticeScatterIndividual() { return _nDsgnScatterIndividual; } + // Hohlraum + unsigned inline GetNumProbingCellsLineHohlraum() { return _nProbingCellsLineGreenHohlraum; } // Optimizer double inline GetNewtonOptimizerEpsilon() const { return _optimizerEpsilon; } diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp index 06957bdd..af445678 100644 --- a/include/problems/symmetrichohlraum.hpp +++ b/include/problems/symmetrichohlraum.hpp @@ -22,7 +22,8 @@ class SymmetricHohlraum : public ProblemBase double _varAbsorptionHohlraumGreen; /*!< @brief Absorption of particles at Hohlraum green center cells integrated at current time step */ std::vector _probingCells; /*!< @brief Indices of cells that contain a probing sensor */ VectorVector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ - VectorVector _probingCellsLineGreen; /*!< @brief Indices of cells that contain a probing sensor for the sliding window */ + unsigned _nProbingCellsLineGreen; /*!< @brief Number of sampling cells that contain a probing sensor for the sliding window */ + std::vector _probingCellsLineGreen; /*!< @brief Indices of cells that contain a probing sensor for the sliding window */ public: SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ); diff --git a/src/common/config.cpp b/src/common/config.cpp index 51aa6ce1..7c654d4b 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -291,6 +291,9 @@ void Config::SetConfigOptions() { * lower right (row major). \n DEFAULT \ingroup Config */ AddDoubleListOption( "LATTICE_DSGN_SCATTER_INDIVIDUAL", _nDsgnScatterIndividual, _dsgnScatterIndividual ); + // Hohlraum related options + AddUnsignedShortOption( "N_SAMPLING_PTS_LINE_GREEN", _nProbingCellsLineGreenHohlraum, 20 ); + // Entropy related options /*! @brief Entropy Functional \n DESCRIPTION: Entropy functional used for the MN_Solver \n DEFAULT QUADRTATIC @ingroup Config. */ AddEnumOption( "ENTROPY_FUNCTIONAL", _entropyName, Entropy_Map, QUADRATIC ); diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index cb866727..ed63ec0a 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -28,9 +28,11 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _mesh->GetCellOfKoordinate( 0., -0.6 ), _mesh->GetCellOfKoordinate( 0., 0.6 ), }; - _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); + _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); + _nProbingCellsLineGreen = _settings->GetNumProbingCellsLineHohlraum(); + _probingCellsLineGreen = VectorVector( 4, Vector( 3, 0.0 ) ); #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { // Assumption: Domain size is 1.3x1.3 double x = _mesh->GetCellMidPoints()[idx_cell][0]; double y = _mesh->GetCellMidPoints()[idx_cell][1]; From d10b6dc7b4ffe02a82e414d16f048a8fe1541db3 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Thu, 21 Dec 2023 11:13:04 -0500 Subject: [PATCH 023/155] fixed type conversion bug --- include/common/config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/common/config.hpp b/include/common/config.hpp index aa604edf..a15e7157 100644 --- a/include/common/config.hpp +++ b/include/common/config.hpp @@ -99,7 +99,7 @@ class Config unsigned short _nDsgnScatterIndividual; /*!< @brief Number of individual blocks. Needs to be 49*/ // Hohlraum - unsigned _nProbingCellsLineGreenHohlraum; /*!< @brief Number SamplingPoints for Hohlraum Green region sampling.*/ + unsigned short _nProbingCellsLineGreenHohlraum; /*!< @brief Number SamplingPoints for Hohlraum Green region sampling.*/ // CSD double _maxEnergyCSD; /*!< @brief Maximum energy for CSD simulation */ From 016ea434c69550aea6860096113a95cc7bf3b0cc Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Fri, 22 Dec 2023 11:54:13 -0500 Subject: [PATCH 024/155] fixed compile problems. Added sampling line hohlraum test case --- include/common/config.hpp | 4 +- include/problems/symmetrichohlraum.hpp | 8 ++++ src/problems/meltingcube.cpp | 7 ++-- src/problems/symmetrichohlraum.cpp | 53 +++++++++++++++++++++----- 4 files changed, 57 insertions(+), 15 deletions(-) diff --git a/include/common/config.hpp b/include/common/config.hpp index aa604edf..c28a4a80 100644 --- a/include/common/config.hpp +++ b/include/common/config.hpp @@ -99,7 +99,7 @@ class Config unsigned short _nDsgnScatterIndividual; /*!< @brief Number of individual blocks. Needs to be 49*/ // Hohlraum - unsigned _nProbingCellsLineGreenHohlraum; /*!< @brief Number SamplingPoints for Hohlraum Green region sampling.*/ + unsigned short _nProbingCellsLineGreenHohlraum; /*!< @brief Number SamplingPoints for Hohlraum Green region sampling.*/ // CSD double _maxEnergyCSD; /*!< @brief Maximum energy for CSD simulation */ @@ -328,7 +328,7 @@ class Config std::vector inline GetLatticeScatterIndividual() const { return _dsgnScatterIndividual; } unsigned short inline GetNLatticeScatterIndividual() { return _nDsgnScatterIndividual; } // Hohlraum - unsigned inline GetNumProbingCellsLineHohlraum() { return _nProbingCellsLineGreenHohlraum; } + unsigned short inline GetNumProbingCellsLineHohlraum() { return _nProbingCellsLineGreenHohlraum; } // Optimizer double inline GetNewtonOptimizerEpsilon() const { return _optimizerEpsilon; } diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp index af445678..e15c2df2 100644 --- a/include/problems/symmetrichohlraum.hpp +++ b/include/problems/symmetrichohlraum.hpp @@ -10,9 +10,17 @@ class SymmetricHohlraum : public ProblemBase Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ Vector _sigmaT; /*!< @brief Vector of total crosssections */ + std::vector _cornerUpperLeftGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ + std::vector _cornerLowerLeftGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ + std::vector _cornerUpperRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ + std::vector _cornerLowerRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ + double _thicknessGreen; /*!< @brief thickness of the green area */ + protected: void SetGhostCells() override; /*!< @brief Sets vector of ghost cells for boundary conditions */ + void SetProbingCellsLineGreen(); /*!< @brief Sets cell ids for probing cells on the green line of the hohlraum */ + double _curAbsorptionHohlraumCenter; /*!< @brief Absorption of particles at Hohlraum center at current time step */ double _curAbsorptionHohlraumVertical; /*!< @brief Absorption of particles at Hohlraum vertical walls at current time step */ double _curAbsorptionHohlraumHorizontal; /*!< @brief Absorption of particles at Hohlraum horizontal walls at current time step */ diff --git a/src/problems/meltingcube.cpp b/src/problems/meltingcube.cpp index f1a57a7e..02f4e401 100644 --- a/src/problems/meltingcube.cpp +++ b/src/problems/meltingcube.cpp @@ -36,8 +36,7 @@ VectorVector MeltingCube_SN::SetupIC() { double kinetic_density = 0.0; double epsilon = 1e-3; // minimal value for first moment to avoid div by zero error for( unsigned j = 0; j < cellMids.size(); ++j ) { - double x = cellMids[j][0]; - double y = cellMids[j][1]; + if( norm( cellMids[j] ) < 0.4 ) { kinetic_density = std::max( 0.2 * std::cos( norm( cellMids[j] ) * 4 ) * std::cos( norm( cellMids[j] ) * 4.0 ), epsilon ); } @@ -142,8 +141,8 @@ MeltingCube_Moment_1D::MeltingCube_Moment_1D( Config* settings, Mesh* mesh, Quad MeltingCube_Moment_1D::~MeltingCube_Moment_1D() {} VectorVector MeltingCube_Moment_1D::SetupIC() { - double t = 3.2e-4; // pseudo time for gaussian smoothing (Approx to dirac impulse) - double epsilon = 1e-3; // minimal value for first moment to avoid div by zero error + // double t = 3.2e-4; // pseudo time for gaussian smoothing (Approx to dirac impulse) + double epsilon = 1e-3; // minimal value for first moment to avoid div by zero error // In case of PN, spherical basis is per default SPHERICAL_HARMONICS if( _settings->GetSolverName() == PN_SOLVER || _settings->GetSolverName() == CSD_PN_SOLVER ) { diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index ed63ec0a..58af4c6a 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -15,6 +15,13 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _sigmaS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default _sigmaT = Vector( _mesh->GetNumCells(), 0.1 ); // white area default + // Geometry of the green capsule + _thicknessGreen = 0.5; + _cornerUpperLeftGreen = { -0.2 - _thicknessGreen / 2.0, 0.35 - _thicknessGreen / 2.0 }; + _cornerLowerLeftGreen = { -0.2 - _thicknessGreen / 2.0, -0.35 - _thicknessGreen / 2.0 }; + _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.35 - _thicknessGreen / 2.0 }; + _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, -0.35 - _thicknessGreen / 2.0 }; + _curAbsorptionHohlraumCenter = 0.0; _curAbsorptionHohlraumVertical = 0.0; _curAbsorptionHohlraumHorizontal = 0.0; @@ -30,9 +37,10 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa }; _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); _nProbingCellsLineGreen = _settings->GetNumProbingCellsLineHohlraum(); - _probingCellsLineGreen = VectorVector( 4, Vector( 3, 0.0 ) ); + SetProbingCellsLineGreen(); + #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { // Assumption: Domain size is 1.3x1.3 double x = _mesh->GetCellMidPoints()[idx_cell][0]; double y = _mesh->GetCellMidPoints()[idx_cell][1]; @@ -83,7 +91,35 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa SymmetricHohlraum::~SymmetricHohlraum() {} -std::vector SymmetricHohlraum::GetExternalSource( const Vector& energies ) { +void SymmetricHohlraum::SetProbingCellsLineGreen() { + + double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); + double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); + + double dx = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); + + unsigned nHorizontalProbingCells = + (unsigned)( _nProbingCellsLineGreen / 2 * ( horizontalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); + unsigned nVerticalProbingCells = (unsigned)( _nProbingCellsLineGreen / 2 * ( verticalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); + _nProbingCellsLineGreen = 2 * nVerticalProbingCells + 2 * nHorizontalProbingCells; + + _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); + // Fill the vector of sampling coordinates, walk counter clockwise from upper left + for( std::size_t i = 0; i < nVerticalProbingCells; ++i ) { + _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerUpperLeftGreen[0], _cornerUpperLeftGreen[1] - dx * i ); + } + for( std::size_t i = nVerticalProbingCells; i < nVerticalProbingCells + nVerticalProbingCells; ++i ) { + _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerLowerLeftGreen[0] + dx * i, _cornerLowerLeftGreen[1] ); + } + for( std::size_t i = nVerticalProbingCells + nVerticalProbingCells; i < 2 * nVerticalProbingCells + nVerticalProbingCells; ++i ) { + _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerLowerRightGreen[0], _cornerLowerRightGreen[1] + dx * i ); + } + for( std::size_t i = 2 * nVerticalProbingCells + nVerticalProbingCells; i < 2 * nVerticalProbingCells + 2 * nVerticalProbingCells; ++i ) { + _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerUpperRightGreen[0] - dx * i, _cornerUpperRightGreen[1] ); + } +} + +std::vector SymmetricHohlraum::GetExternalSource( const Vector& /* energies */ ) { VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); return std::vector( 1u, Q ); } @@ -136,11 +172,11 @@ void SymmetricHohlraum::SetGhostCells() { delete quad; } -const Vector& SymmetricHohlraum::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { return _ghostCells[idx_cell]; } +const Vector& SymmetricHohlraum::GetGhostCellValue( int idx_cell, const Vector& /* cell_sol */ ) { return _ghostCells[idx_cell]; } -VectorVector SymmetricHohlraum::GetScatteringXS( const Vector& energies ) { return VectorVector( 1u, _sigmaS ); } +VectorVector SymmetricHohlraum::GetScatteringXS( const Vector& /* energies */ ) { return VectorVector( 1u, _sigmaS ); } -VectorVector SymmetricHohlraum::GetTotalXS( const Vector& energies ) { return VectorVector( 1u, _sigmaT ); } +VectorVector SymmetricHohlraum::GetTotalXS( const Vector& /* energies */ ) { return VectorVector( 1u, _sigmaT ); } void SymmetricHohlraum::ComputeCurrentAbsorptionHohlraum( const Vector& scalarFlux ) { _curAbsorptionHohlraumCenter = 0.0; // Green and blue areas of symmetric hohlraum @@ -216,8 +252,7 @@ void SymmetricHohlraum::ComputeCurrentProbeMoment( const VectorVector& solution const VectorVector& quadPoints = _quad->GetPoints(); const Vector& weights = _quad->GetWeights(); unsigned nq = _quad->GetNq(); - // Red areas of symmetric hohlraum - double total_absorption = 0.0; + for( unsigned idx_cell = 0; idx_cell < 4; idx_cell++ ) { // Loop over probing cells _probingMoments[idx_cell][0] = blaze::dot( solution[_probingCells[idx_cell]], weights ); _probingMoments[idx_cell][1] = 0.0; @@ -237,7 +272,7 @@ SymmetricHohlraum_Moment::SymmetricHohlraum_Moment( Config* settings, Mesh* mesh SymmetricHohlraum_Moment::~SymmetricHohlraum_Moment() {} -std::vector SymmetricHohlraum_Moment::GetExternalSource( const Vector& energies ) { +std::vector SymmetricHohlraum_Moment::GetExternalSource( const Vector& /* energies */ ) { // In case of PN, spherical basis is per default SPHERICAL_HARMONICS double integrationFactor = ( 4 * M_PI ); From 75009745e9a58394867af48b07eac8b4dce9491b Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Fri, 22 Dec 2023 13:50:58 -0500 Subject: [PATCH 025/155] added line variance --- include/problems/problembase.hpp | 4 ++ include/problems/symmetrichohlraum.hpp | 8 ++- src/common/config.cpp | 2 +- src/common/mesh.cpp | 2 +- src/problems/problembase.cpp | 14 ++--- src/problems/symmetrichohlraum.cpp | 82 +++++++++++++++++--------- src/solvers/snsolver.cpp | 10 ++-- src/solvers/solverbase.cpp | 16 ++++- 8 files changed, 92 insertions(+), 46 deletions(-) diff --git a/include/problems/problembase.hpp b/include/problems/problembase.hpp index 4b32d818..4dcb7666 100644 --- a/include/problems/problembase.hpp +++ b/include/problems/problembase.hpp @@ -23,6 +23,7 @@ class ProblemBase virtual void SetGhostCells(); /*!< @brief Sets vector of ghost cells for boundary conditions */ VectorVector _dummyProbeMoments; + std::vector _dummyProbeValsGreenLine; ProblemBase() = delete; // Quantities of Interest @@ -152,6 +153,8 @@ class ProblemBase virtual double GetTotalAbsorptionHohlraumHorizontal() { return 0.0; }; virtual double GetVarAbsorptionHohlraumGreen() { return 0.0; }; virtual const VectorVector& GetCurrentProbeMoment() const { return _dummyProbeMoments; }; + virtual const std::vector& GetCurrentProbeValuesGreenLine() const { return _dummyProbeValsGreenLine; }; + virtual const std::vector& GetCurrentVarProbeValuesGreenLine() const { return _dummyProbeValsGreenLine; }; // Computer // Test case agnostic @@ -172,6 +175,7 @@ class ProblemBase virtual void ComputeTotalAbsorptionHohlraum( double /* dT */ ){}; /*!< @brief Computes Problemspecific Scalar QOI */ virtual void ComputeCurrentProbeMoment( const VectorVector& /* solution */ ){}; /*!< @brief Computes Problemspecific Scalar QOI */ virtual void ComputeVarAbsorptionGreen( const Vector& /* scalarFlux*/ ){}; /*!< @brief Computes Problemspecific Scalar QOI */ + virtual void ComputeQOIsGreenProbingLine( const Vector& /* scalarFlux*/ ){}; /*!< @brief Computes Problemspecific Scalar QOI */ }; #endif diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp index e15c2df2..2556ecc0 100644 --- a/include/problems/symmetrichohlraum.hpp +++ b/include/problems/symmetrichohlraum.hpp @@ -31,7 +31,9 @@ class SymmetricHohlraum : public ProblemBase std::vector _probingCells; /*!< @brief Indices of cells that contain a probing sensor */ VectorVector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ unsigned _nProbingCellsLineGreen; /*!< @brief Number of sampling cells that contain a probing sensor for the sliding window */ - std::vector _probingCellsLineGreen; /*!< @brief Indices of cells that contain a probing sensor for the sliding window */ + std::vector _probingCellsLineGreen; /*!< @brief Indices of cells that contain a probing sensor for the sliding window */ + std::vector _absorptionValsIntegrated; /*!< @brief Avg Absorption value at the sampleing points of lineGreen */ + std::vector _varAbsorptionValsIntegrated; /*!< @brief Var in Avg Absorption value at the sampleing points of lineGreen */ public: SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ); @@ -46,6 +48,8 @@ class SymmetricHohlraum : public ProblemBase void ComputeTotalAbsorptionHohlraum( double dT ) override; /*!< @brief Computes Problemspecific Scalar QOI */ void ComputeCurrentProbeMoment( const VectorVector& solution ) override; /*!< @brief Computes Problemspecific Scalar QOI */ void ComputeVarAbsorptionGreen( const Vector& scalarFlux ) override; /*!< @brief Computes Problemspecific Scalar QOI */ + void ComputeQOIsGreenProbingLine( const Vector& scalarFlux ) override; + double GetCurAbsorptionHohlraumCenter() override { return _curAbsorptionHohlraumCenter; }; double GetCurAbsorptionHohlraumVertical() override { return _curAbsorptionHohlraumVertical; }; double GetCurAbsorptionHohlraumHorizontal() override { return _curAbsorptionHohlraumHorizontal; }; @@ -54,6 +58,8 @@ class SymmetricHohlraum : public ProblemBase double GetTotalAbsorptionHohlraumHorizontal() override { return _totalAbsorptionHohlraumHorizontal; }; double GetVarAbsorptionHohlraumGreen() override { return _varAbsorptionHohlraumGreen; }; const VectorVector& GetCurrentProbeMoment() const override { return _probingMoments; }; + virtual const std::vector& GetCurrentProbeValuesGreenLine() const override { return _absorptionValsIntegrated; }; + virtual const std::vector& GetCurrentVarProbeValuesGreenLine() const override { return _varAbsorptionValsIntegrated; }; }; class SymmetricHohlraum_Moment : public SymmetricHohlraum diff --git a/src/common/config.cpp b/src/common/config.cpp index 7c654d4b..fd67aa4d 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -292,7 +292,7 @@ void Config::SetConfigOptions() { AddDoubleListOption( "LATTICE_DSGN_SCATTER_INDIVIDUAL", _nDsgnScatterIndividual, _dsgnScatterIndividual ); // Hohlraum related options - AddUnsignedShortOption( "N_SAMPLING_PTS_LINE_GREEN", _nProbingCellsLineGreenHohlraum, 20 ); + AddUnsignedShortOption( "N_SAMPLING_PTS_LINE_GREEN", _nProbingCellsLineGreenHohlraum, 4 ); // Entropy related options /*! @brief Entropy Functional \n DESCRIPTION: Entropy functional used for the MN_Solver \n DEFAULT QUADRTATIC @ingroup Config. */ diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 7e0a6504..ba7368ab 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -402,7 +402,7 @@ unsigned Mesh::GetCellOfKoordinate( double x, double y ) const { return idx_cell; } } - ErrorMessages::Error( "Probing point (" + std::to_string( x ) + "," + std::to_string( y ) + ") is contained in mesh.", CURRENT_FUNCTION ); + ErrorMessages::Error( "Probing point (" + std::to_string( x ) + "," + std::to_string( y ) + ") is not contained in mesh.", CURRENT_FUNCTION ); return 0; } diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index de5a1a9d..20031a10 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -21,13 +21,13 @@ ProblemBase::ProblemBase( Config* settings, Mesh* mesh, QuadratureBase* quad ) { _quad = quad; // initialize QOI helper variables - _curMaxOrdinateOutflow = 0.0; - _curScalarOutflow = 0.0; - _totalScalarOutflow = 0.0; - _mass = 0.0; - _changeRateFlux = 0.0; - _dummyProbeMoments = VectorVector( 4, Vector( 3, 0.0 ) ); - + _curMaxOrdinateOutflow = 0.0; + _curScalarOutflow = 0.0; + _totalScalarOutflow = 0.0; + _mass = 0.0; + _changeRateFlux = 0.0; + _dummyProbeMoments = VectorVector( 4, Vector( 3, 0.0 ) ); + _dummyProbeValsGreenLine = std::vector( _settings->GetNumProbingCellsLineHohlraum(), 0.0 ); SetGhostCells(); } diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 58af4c6a..5c3bb26a 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -29,7 +29,8 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _totalAbsorptionHohlraumVertical = 0.0; _totalAbsorptionHohlraumHorizontal = 0.0; _varAbsorptionHohlraumGreen = 0.0; - _probingCells = { + + _probingCells = { _mesh->GetCellOfKoordinate( -0.4, 0. ), _mesh->GetCellOfKoordinate( 0.4, 0. ), _mesh->GetCellOfKoordinate( 0., -0.6 ), @@ -38,6 +39,8 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); _nProbingCellsLineGreen = _settings->GetNumProbingCellsLineHohlraum(); SetProbingCellsLineGreen(); + _absorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); + _varAbsorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { @@ -91,34 +94,6 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa SymmetricHohlraum::~SymmetricHohlraum() {} -void SymmetricHohlraum::SetProbingCellsLineGreen() { - - double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); - double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); - - double dx = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); - - unsigned nHorizontalProbingCells = - (unsigned)( _nProbingCellsLineGreen / 2 * ( horizontalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); - unsigned nVerticalProbingCells = (unsigned)( _nProbingCellsLineGreen / 2 * ( verticalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); - _nProbingCellsLineGreen = 2 * nVerticalProbingCells + 2 * nHorizontalProbingCells; - - _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); - // Fill the vector of sampling coordinates, walk counter clockwise from upper left - for( std::size_t i = 0; i < nVerticalProbingCells; ++i ) { - _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerUpperLeftGreen[0], _cornerUpperLeftGreen[1] - dx * i ); - } - for( std::size_t i = nVerticalProbingCells; i < nVerticalProbingCells + nVerticalProbingCells; ++i ) { - _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerLowerLeftGreen[0] + dx * i, _cornerLowerLeftGreen[1] ); - } - for( std::size_t i = nVerticalProbingCells + nVerticalProbingCells; i < 2 * nVerticalProbingCells + nVerticalProbingCells; ++i ) { - _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerLowerRightGreen[0], _cornerLowerRightGreen[1] + dx * i ); - } - for( std::size_t i = 2 * nVerticalProbingCells + nVerticalProbingCells; i < 2 * nVerticalProbingCells + 2 * nVerticalProbingCells; ++i ) { - _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerUpperRightGreen[0] - dx * i, _cornerUpperRightGreen[1] ); - } -} - std::vector SymmetricHohlraum::GetExternalSource( const Vector& /* energies */ ) { VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); return std::vector( 1u, Q ); @@ -265,6 +240,55 @@ void SymmetricHohlraum::ComputeCurrentProbeMoment( const VectorVector& solution } } +void SymmetricHohlraum::SetProbingCellsLineGreen() { + + double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); + double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); + + double dx = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); + + unsigned nHorizontalProbingCells = + (unsigned)( _nProbingCellsLineGreen / 2 * ( horizontalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); + unsigned nVerticalProbingCells = (unsigned)( _nProbingCellsLineGreen / 2 * ( verticalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); + _nProbingCellsLineGreen = 2 * nVerticalProbingCells + 2 * nHorizontalProbingCells; + + _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); + + // Fill the vector of sampling coordinates, walk counter clockwise from upper left + for( std::size_t i = 0; i < nVerticalProbingCells; ++i ) { + _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerUpperLeftGreen[0], _cornerUpperLeftGreen[1] - dx * i ); + } + for( std::size_t i = nVerticalProbingCells; i < nVerticalProbingCells + nVerticalProbingCells; ++i ) { + _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerLowerLeftGreen[0] + dx * i, _cornerLowerLeftGreen[1] ); + } + for( std::size_t i = nVerticalProbingCells + nVerticalProbingCells; i < 2 * nVerticalProbingCells + nVerticalProbingCells; ++i ) { + _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerLowerRightGreen[0], _cornerLowerRightGreen[1] + dx * i ); + } + for( std::size_t i = 2 * nVerticalProbingCells + nVerticalProbingCells; i < 2 * nVerticalProbingCells + 2 * nVerticalProbingCells; ++i ) { + _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerUpperRightGreen[0] - dx * i, _cornerUpperRightGreen[1] ); + } +} + +void SymmetricHohlraum::ComputeQOIsGreenProbingLine( const Vector& scalarFlux ) { + + double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); + double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); + + double dl = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); + double area = dl * _thicknessGreen; + double a_g = 0; + double l_max = _nProbingCellsLineGreen * dl; + + for( unsigned i = 0; i < _nProbingCellsLineGreen; i++ ) { // Loop over probing cells + _absorptionValsIntegrated[i] = + ( _sigmaT[_probingCellsLineGreen[i]] - _sigmaS[_probingCellsLineGreen[i]] ) * scalarFlux[_probingCellsLineGreen[i]] * area; + a_g += _absorptionValsIntegrated[i] / (double)_nProbingCellsLineGreen; + } + for( unsigned i = 0; i < _nProbingCellsLineGreen; i++ ) { // Loop over probing cells + _varAbsorptionValsIntegrated[i] = dl / l_max * ( a_g - _absorptionValsIntegrated[i] ) * ( a_g - _absorptionValsIntegrated[i] ); + } +} + // -------------- Moment Symmetric Hohlraum --------------- SymmetricHohlraum_Moment::SymmetricHohlraum_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index 148c9eb8..592b6c36 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -40,11 +40,11 @@ void SNSolver::IterPreprocessing( unsigned /*idx_iter*/ ) { } void SNSolver::ComputeScalarFlux() { - double firstMomentScaleFactor = 4 * M_PI; - if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || - _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D ) { - firstMomentScaleFactor = 2.0; - } + // double firstMomentScaleFactor = 4 * M_PI; + // if( _settings->GetProblemName() == PROBLEM_Aircavity1D || _settings->GetProblemName() == PROBLEM_Linesource1D || + // _settings->GetProblemName() == PROBLEM_Checkerboard1D || _settings->GetProblemName() == PROBLEM_Meltingcube1D ) { + // // firstMomentScaleFactor = 2.0; + //} #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { _scalarFluxNew[idx_cell] = blaze::dot( _sol[idx_cell], _weights ); // / firstMomentScaleFactor; diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 7f4949e2..4b4e6ebd 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -346,7 +346,6 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumVertical(); break; case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumHorizontal(); break; case PROBE_MOMENT_TIME_TRACE: - for( unsigned i = 0; i < 4; i++ ) { for( unsigned j = 0; j < 3; j++ ) { _historyOutputFields[idx_field] = probingMoments[i][j]; @@ -356,7 +355,13 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { idx_field--; break; case VAR_ABSORPTION_GREEN: _historyOutputFields[idx_field] = _problem->GetVarAbsorptionHohlraumGreen(); break; - + case VAR_ABSORPTION_GREEN_LINE: + for( unsigned i = 0; i < _settings->GetNumProbingCellsLineHohlraum(); i++ ) { + _historyOutputFieldNames[idx_field] = _problem->GetCurrentVarProbeValuesGreenLine()[i]; + idx_field++; + } + idx_field--; + break; default: ErrorMessages::Error( "History output group not defined!", CURRENT_FUNCTION ); break; } } @@ -461,6 +466,13 @@ void SolverBase::PrepareHistoryOutput() { idx_field--; break; case VAR_ABSORPTION_GREEN: _historyOutputFieldNames[idx_field] = "Var. absorption green"; break; + case VAR_ABSORPTION_GREEN_LINE: + for( unsigned i = 0; i < _settings->GetNumProbingCellsLineHohlraum(); i++ ) { + _historyOutputFieldNames[idx_field] = "Probe Green Line " + std::to_string( i ); + idx_field++; + } + idx_field--; + break; default: ErrorMessages::Error( "History output field not defined!", CURRENT_FUNCTION ); break; } } From 5d40cba9fd3cffbd778a1e516a56564ec225a9da Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Fri, 22 Dec 2023 13:51:44 -0500 Subject: [PATCH 026/155] added green line scalar output --- include/common/globalconstants.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/common/globalconstants.hpp b/include/common/globalconstants.hpp index 8b7c20d2..d4839a5b 100644 --- a/include/common/globalconstants.hpp +++ b/include/common/globalconstants.hpp @@ -185,7 +185,8 @@ enum SCALAR_OUTPUT { TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, - VAR_ABSORPTION_GREEN + VAR_ABSORPTION_GREEN, + VAR_ABSORPTION_GREEN_LINE }; inline std::map ScalarOutput_Map{ { "ITER", ITER }, @@ -203,7 +204,8 @@ inline std::map ScalarOutput_Map{ { "ITER", ITER }, { "TOTAL_PARTICLE_ABSORPTION_VERTICAL", TOTAL_PARTICLE_ABSORPTION_VERTICAL }, { "TOTAL_PARTICLE_ABSORPTION_HORIZONTAL", TOTAL_PARTICLE_ABSORPTION_HORIZONTAL }, { "PROBE_MOMENT_TIME_TRACE", PROBE_MOMENT_TIME_TRACE }, - { "VAR_ABSORPTION_GREEN", VAR_ABSORPTION_GREEN } }; + { "VAR_ABSORPTION_GREEN", VAR_ABSORPTION_GREEN }, + { "VAR_ABSORPTION_GREEN_LINE", VAR_ABSORPTION_GREEN_LINE } }; // Spherical Basis Name enum SPHERICAL_BASIS_NAME { SPHERICAL_HARMONICS, SPHERICAL_MONOMIALS, SPHERICAL_MONOMIALS_ROTATED }; From 867d5d08942e2056eabe2b4245767baa7d2d7627 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Fri, 22 Dec 2023 15:05:46 -0500 Subject: [PATCH 027/155] segfault somewhere in hohlraum --- include/problems/symmetrichohlraum.hpp | 5 +- include/solvers/solverbase.hpp | 3 -- src/common/config.cpp | 20 ++++---- src/problems/symmetrichohlraum.cpp | 65 ++++++++++++++++---------- src/solvers/solverbase.cpp | 4 +- 5 files changed, 59 insertions(+), 38 deletions(-) diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp index 2556ecc0..ed2e751c 100644 --- a/include/problems/symmetrichohlraum.hpp +++ b/include/problems/symmetrichohlraum.hpp @@ -7,6 +7,10 @@ class SymmetricHohlraum : public ProblemBase { private: SymmetricHohlraum() = delete; + + std::vector linspace2D( const std::vector& start, const std::vector& end, unsigned num_points ); + + protected: Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ Vector _sigmaT; /*!< @brief Vector of total crosssections */ @@ -16,7 +20,6 @@ class SymmetricHohlraum : public ProblemBase std::vector _cornerLowerRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ double _thicknessGreen; /*!< @brief thickness of the green area */ - protected: void SetGhostCells() override; /*!< @brief Sets vector of ghost cells for boundary conditions */ void SetProbingCellsLineGreen(); /*!< @brief Sets cell ids for probing cells on the green line of the hohlraum */ diff --git a/include/solvers/solverbase.hpp b/include/solvers/solverbase.hpp index b79e0990..5c6c6494 100644 --- a/include/solvers/solverbase.hpp +++ b/include/solvers/solverbase.hpp @@ -76,9 +76,6 @@ class SolverBase VectorVector _solDy; /*!< @brief solution gradient in y direction*/ VectorVector _limiter; /*! < @brief slope limiter at cell and system pt */ - std::vector _solverOutput; /*!< @brief LEGACY: Outputfield for solver ==> Will be - replaced by _outputFields in the near future */ - // Output related members std::vector>> _outputFields; /*!< @brief Solver Output: dimensions (GroupID,FieldID,CellID).*/ diff --git a/src/common/config.cpp b/src/common/config.cpp index fd67aa4d..12eab002 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -770,16 +770,17 @@ void Config::SetPostprocessing() { TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, VAR_ABSORPTION_GREEN }; - it = std::find( legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput] ); + + it = std::find( legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput] ); if( it == legalOutputs.end() ) { std::string foundKey = findKey( ScalarOutput_Map, _screenOutput[idx_screenOutput] ); ErrorMessages::Error( - "Illegal output field <" + foundKey + + "HERE Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, \n" "TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, CUR_OUTFLOW, \n " - "TOTAL_OUTFLOW, MAX_OUTFLOW \n" + "TOTAL_OUTFLOW, MAX_OUTFLOW, VAR_ABSORPTION_GREEN \n" "Please check your .cfg file.", CURRENT_FUNCTION ); } @@ -874,7 +875,7 @@ void Config::SetPostprocessing() { std::string foundKey = findKey( ScalarOutput_Map, _historyOutput[idx_screenOutput] ); ErrorMessages::Error( "Illegal output field <" + foundKey + - "> for option SCREEN_OUTPUT for this test case.\n" + "> for option HISTORY_OUTPUT for this test case.\n" "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, FINAL_TIME_OUTFLOW,\n" "TOTAL_OUTFLOW, MAX_OUTFLOW, FINAL_TIME_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION\n" "Please check your .cfg file.", @@ -893,17 +894,20 @@ void Config::SetPostprocessing() { TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, - PROBE_MOMENT_TIME_TRACE }; - it = std::find( legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput] ); + PROBE_MOMENT_TIME_TRACE, + VAR_ABSORPTION_GREEN, + VAR_ABSORPTION_GREEN_LINE }; + + it = std::find( legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput] ); if( it == legalOutputs.end() ) { std::string foundKey = findKey( ScalarOutput_Map, _historyOutput[idx_screenOutput] ); ErrorMessages::Error( "Illegal output field <" + foundKey + - "> for option SCREEN_OUTPUT for this test case.\n" + "> for option HISTORY_OUTPUT for this test case.\n" "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, \n " "TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL,PROBE_MOMENT_TIME_TRACE, CUR_OUTFLOW, \n" - "TOTAL_OUTFLOW, MAX_OUTFLOW \n" + "TOTAL_OUTFLOW, MAX_OUTFLOW , VAR_ABSORPTION_GREEN, VAR_ABSORPTION_GREEN_LINE \n" "Please check your .cfg file.", CURRENT_FUNCTION ); } diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 5c3bb26a..d03e422b 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -16,11 +16,11 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _sigmaT = Vector( _mesh->GetNumCells(), 0.1 ); // white area default // Geometry of the green capsule - _thicknessGreen = 0.5; - _cornerUpperLeftGreen = { -0.2 - _thicknessGreen / 2.0, 0.35 - _thicknessGreen / 2.0 }; - _cornerLowerLeftGreen = { -0.2 - _thicknessGreen / 2.0, -0.35 - _thicknessGreen / 2.0 }; - _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.35 - _thicknessGreen / 2.0 }; - _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, -0.35 - _thicknessGreen / 2.0 }; + _thicknessGreen = 0.05; + _cornerUpperLeftGreen = { -0.2 + _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; + _cornerLowerLeftGreen = { -0.2 + _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; + _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; + _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; _curAbsorptionHohlraumCenter = 0.0; _curAbsorptionHohlraumVertical = 0.0; @@ -248,25 +248,27 @@ void SymmetricHohlraum::SetProbingCellsLineGreen() { double dx = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); unsigned nHorizontalProbingCells = - (unsigned)( _nProbingCellsLineGreen / 2 * ( horizontalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); - unsigned nVerticalProbingCells = (unsigned)( _nProbingCellsLineGreen / 2 * ( verticalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); - _nProbingCellsLineGreen = 2 * nVerticalProbingCells + 2 * nHorizontalProbingCells; - - _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); - - // Fill the vector of sampling coordinates, walk counter clockwise from upper left - for( std::size_t i = 0; i < nVerticalProbingCells; ++i ) { - _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerUpperLeftGreen[0], _cornerUpperLeftGreen[1] - dx * i ); - } - for( std::size_t i = nVerticalProbingCells; i < nVerticalProbingCells + nVerticalProbingCells; ++i ) { - _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerLowerLeftGreen[0] + dx * i, _cornerLowerLeftGreen[1] ); - } - for( std::size_t i = nVerticalProbingCells + nVerticalProbingCells; i < 2 * nVerticalProbingCells + nVerticalProbingCells; ++i ) { - _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerLowerRightGreen[0], _cornerLowerRightGreen[1] + dx * i ); - } - for( std::size_t i = 2 * nVerticalProbingCells + nVerticalProbingCells; i < 2 * nVerticalProbingCells + 2 * nVerticalProbingCells; ++i ) { - _probingCellsLineGreen[i] = _mesh->GetCellOfKoordinate( _cornerUpperRightGreen[0] - dx * i, _cornerUpperRightGreen[1] ); - } + (unsigned)std::ceil( _nProbingCellsLineGreen / 2 * ( horizontalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); + unsigned nVerticalProbingCells = + (unsigned)std::ceil( _nProbingCellsLineGreen / 2 * ( verticalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); + + _nProbingCellsLineGreen = 2 * nVerticalProbingCells + 2 * nHorizontalProbingCells; + _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); + + printf( "here" ); + + // Sample points on each side of the rectangle + std::vector side1 = linspace2D( _cornerUpperLeftGreen, _cornerLowerLeftGreen, nVerticalProbingCells ); + std::vector side2 = linspace2D( _cornerLowerLeftGreen, _cornerLowerRightGreen, nHorizontalProbingCells ); + std::vector side3 = linspace2D( _cornerLowerRightGreen, _cornerUpperRightGreen, nVerticalProbingCells ); + std::vector side4 = linspace2D( _cornerUpperRightGreen, _cornerUpperLeftGreen, nHorizontalProbingCells ); + + printf( "here" ); + // Combine the points from each side + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side1.begin(), side1.end() ); + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side2.begin(), side2.end() ); + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side3.begin(), side3.end() ); + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side4.begin(), side4.end() ); } void SymmetricHohlraum::ComputeQOIsGreenProbingLine( const Vector& scalarFlux ) { @@ -289,6 +291,21 @@ void SymmetricHohlraum::ComputeQOIsGreenProbingLine( const Vector& scalarFlux ) } } +std::vector SymmetricHohlraum::linspace2D( const std::vector& start, const std::vector& end, unsigned num_points ) { + std::vector result; + result.resize( num_points ); + double stepX = ( end[0] - start[0] ) / ( num_points - 1 ); + double stepY = ( end[1] - start[1] ) / ( num_points - 1 ); + + for( int i = 0; i < num_points; ++i ) { + double x = start[0] + i * stepX; + double y = start[1] + i * stepY; + + result[i] = _mesh->GetCellOfKoordinate( x, y ); + } + + return result; +} // -------------- Moment Symmetric Hohlraum --------------- SymmetricHohlraum_Moment::SymmetricHohlraum_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 4b4e6ebd..0bc37cbd 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -78,8 +78,7 @@ SolverBase::SolverBase( Config* settings ) { // boundary type _boundaryCells = _mesh->GetBoundaryTypes(); - // Solver Output - _solverOutput.resize( _nCells ); // LEGACY! Only used for CSD SN + printf( "here" ); PrepareScreenOutput(); // Screen Output PrepareHistoryOutput(); // History Output @@ -609,5 +608,6 @@ void SolverBase::IterPostprocessing( unsigned idx_iter ) { _problem->ComputeTotalAbsorptionHohlraum( _dT ); // Unify and parallelize _problem->ComputeCurrentProbeMoment( _sol ); _problem->ComputeVarAbsorptionGreen( _scalarFlux ); + _problem->ComputeQOIsGreenProbingLine( _scalarFlux ); } } From a96fe0359bfc8fee1f659ca77d4275f24d7d99bc Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Fri, 29 Dec 2023 09:41:08 -0500 Subject: [PATCH 028/155] resordered meshing scripts. startet refined mesh for lattice --- examples/meshes/meshing_scripts/.DS_Store | Bin 0 -> 6148 bytes .../{ => meshing_scripts}/create_1dmesh.py | 0 .../create_checkerboard_mesh.py | 0 .../create_hohlraum_2d_mesh.py | 0 .../create_lattice_mesh_unstr_refined.py | 107 ++++++++++ .../create_lattice_mesh_unstructured.py | 32 +-- .../create_linesource_mesh.py | 0 .../create_structured_2dmesh.py | 15 +- ...te_structured_symmterichohlraum_2d_mesh.py | 0 examples/meshes/meshing_scripts/lattice.py | 106 ++++++++++ examples/meshes/meshing_scripts/lattice2.py | 111 +++++++++++ .../meshes/meshing_scripts/lattice_pygmsh7.py | 103 ++++++++++ .../{ => meshing_scripts}/pseudo1dmesh.py | 0 examples/meshes/meshing_scripts/test.py | 185 ++++++++++++++++++ examples/meshes/meshing_scripts/test2.py | 47 +++++ examples/meshes/phantom2D.vtk | Bin 56479 -> 0 bytes examples/meshes/pseudo1d.py | 0 examples/meshes/structuredMesh.geo | 33 ---- examples/meshes/structuredTriangleMesh.geo | 30 --- src/solvers/solverbase.cpp | 4 +- 20 files changed, 686 insertions(+), 87 deletions(-) create mode 100644 examples/meshes/meshing_scripts/.DS_Store rename examples/meshes/{ => meshing_scripts}/create_1dmesh.py (100%) rename examples/meshes/{ => meshing_scripts}/create_checkerboard_mesh.py (100%) rename examples/meshes/{ => meshing_scripts}/create_hohlraum_2d_mesh.py (100%) create mode 100644 examples/meshes/meshing_scripts/create_lattice_mesh_unstr_refined.py rename examples/meshes/{ => meshing_scripts}/create_lattice_mesh_unstructured.py (60%) rename examples/meshes/{ => meshing_scripts}/create_linesource_mesh.py (100%) rename examples/meshes/{ => meshing_scripts}/create_structured_2dmesh.py (90%) rename examples/meshes/{ => meshing_scripts}/create_structured_symmterichohlraum_2d_mesh.py (100%) create mode 100644 examples/meshes/meshing_scripts/lattice.py create mode 100644 examples/meshes/meshing_scripts/lattice2.py create mode 100644 examples/meshes/meshing_scripts/lattice_pygmsh7.py rename examples/meshes/{ => meshing_scripts}/pseudo1dmesh.py (100%) create mode 100644 examples/meshes/meshing_scripts/test.py create mode 100644 examples/meshes/meshing_scripts/test2.py delete mode 100644 examples/meshes/phantom2D.vtk delete mode 100644 examples/meshes/pseudo1d.py delete mode 100644 examples/meshes/structuredMesh.geo delete mode 100644 examples/meshes/structuredTriangleMesh.geo diff --git a/examples/meshes/meshing_scripts/.DS_Store b/examples/meshes/meshing_scripts/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0@$%ujhlq84*1<6@ZBrHi-6(lE- zoZ~K;Wp@P>6a>7_Q(e=;x9`3GzjM!WPTBQTRj2Cenx39_kNG3s8`v|Vdi#OxYj*F| zIigwT{sX%A=^as~M5)w+`*$BWuygN-4j)9k+j&5@?tLQOD^sFOiC0orty8~B;})r_ zS7}d>om>d^n= zpLgs3uJGl4nb<0^+*>pxrq+r~{le_lioAcAeA9+TH%I1P8YbT^_5;J@d#3Z>xG?#C zX=ibm{195-&?qKMepK4;6(&ECx?^fVe;sO z>|tt{JVwTOE=+!@H2>uflV6tccMp?a!Dx!yT@xn1CiD6?On#m2-%vA5enaN_Wtcpc z%RA&$m^@DW5I)ZMzMOElpA*DCKZdoVahN!c{5bOx#gUaKiX$se6h~H`D2}W=Q5;!$ zqByehL~&&0iQ>r06UC90CyFC0PZUR1o+ys2JW(83d7?P7@;3rhO#S|0a?{_7VRAFR%VBaepV?t@Gyi5` za`D%R3}JHP-@RdSvmPVD%$<6-1874RRVqTbhk>t-Xxs4Z%BOm*v zA4fj+OHbp-$A0N)9QoKUJ&hwD`=zIG&}im!8IvkNwiqIP$SydKyPQ_DfIW z$j5%^X&m|3FFlPTAN!@JapYsa^fZoq?3bR#k&pe-(>U_6UwRrxKK4sb1iDK z*e^YeBOm*vr*Y(Cztrc>JRkd|KBuhQOSt^%s0?@3co+WTzbn>m{x5^)+&X&Dixx>* zD>pce){C@qt?y|)E1#cd9?>yZ!2Fox?=G%nX+m7t*rbyk4r^jbzad{p0Imup`Po9dpGjG-Rh;B z+pT<`oGY4!`Df1XZ4nuYuk`kL$=)is>Tx3btlGXkr+9xnbNlLlAAha(E3Lg5&jW3L zwUsZd8PRuL`=UCY(^h`-yL<&-O5ed-SpL@oLpDcP`NF@l=DXJ8wzsuxLUgfzt66!% z@%VPNhp+H%jxE}taNR;yzJucgB+7tay-#p}9Uiuq zTJuPp7r(n-n!H!qS$qHaW#k>L+{Eo5FK*fQlS`cp_R&E(|3|4jlePETxjFG-wrYF# zTDduQKK6`!r;B?Oodc?$)2){m$B({cXotUZT_n&Q&&bEI}-go+YiRI>bxgo3_ljk3+eehf`{l4f$ z56#*%zDAI5&GUGHw$sw~D`_C6Mp!%Mxqdy&-sFLCYM&-(M>ga&?e|wJH|K^D+D?l^ z^5S9krv0(r`Au`zJ?wkY+8aO54x5+pXN=kh`}C45{K2qx%y?e(&W_HoHFq=n{_2@^ ze_QQi6ZJb&?ccO=b580X){g0SzjwO9@corvUuNx19A;JfdRA`wZKn1?-Y|anLgQ_* zwKwe_R{6J9Zl0%^v>kgdqUX7O-pQJ9_8an?d}Wbxf`DtJdE5xsS>duS-#tM_YUI z9C;Ylj(M+eb)2`Xy~vM0R6hs#!8}JYsyts{k6WRbT65KJ_MXo( ~Wya>i~P3)Jb z-zo&{$n!V3J}<^vxmlNT-l2Xq9`8C7>|e7k`&3@t+M9hhO65U*FymPn){c4as-u1g z&JV_Ke|Y-`^v- z7JGZ2YFHxct7WadiMNs}FKOk*51z_{xHWOOSLJ!Ey~z(5!sN!!_4V9Uz}lPrm{R41 ztlZ4^Yn2E4&g8w{!_IqV-D5Ql13&xgV$OBJdySEg)OZN;t?75Nwll(x$E;T^UH70J zzu&~?OtX%Qbo{~j)5QNGeGV?L?VELsRr$O?F6YDQdJYNV(2R4e${Pmucemn==dzx2 zl3TeMf90@sG3T*A!{mPZ=J}h-wiC#YyuBY8nKNaJd*m7BcxWmx>1JQk<^ z-)imsb7129>E}c9K3mz^n>g$lcCI#Y`-|qoU>%M95FJnO{%-8I>39M^nEh2w<$?dr zx*XAcTHcPw#MN4j+aOPxyfH`f($m)7#AhXaUyHKxxFSrf*|q&3@0mPy)r)#JE`CSJ z2y1Wh!!2De``yno^KBO?CcpA*@lWbxo1*a$W7{|5$)fu-$g3vaYUq7S7HeOq^d(`wiCKtk+1jf6B^D zoD@>~wN`%V=spIKv?ah26bltNBaR9`3*^acg^6j5~)+N`HFTEWzv%Qjg+fpn4HRG~TH+N6)c0`tXx?_*WR=(x0 zu92Ja_w)9q`t7$UFT%=?ZuxcDpDikQ8-{fMEV53pUMAjN*8QINy=Id7Ex7kH`{I+5)-o$f%%^N+f+~k>)VebXze&B&V7lM6i^6Cur+Zo%AiQAU?dC-WERm+^x)to_z>S<26@bJaWDY;~t+ z;(|Q6D?^`(k&RAxryG9#UHVezt^M}l%X$xc^qF^dOuwcZa;3NOJu^CvA6H@z&JVAg zyWc&y$J_PHu)EpgA`w5)N7BcBY3=tFeY4rTg=Zj-j4e>wvGP6B&*zFP`WxaTcgd7v zgLB&Uq50#qTb!*;n+bE87laf;_rO>JRT& z`JU->Pc%sx$#e4chi8Jky?w~lR7afMly801Eg0vn)LxB0C#~dj^Y(AahTC?w+#FTz zUhn0UpTAWqIR9)P60?0rRB^r^)hSyhh_^k{r$1bJG@kOB)6NC)iM%@HzelBcukzE| z>x1XlmYXAA`)%&4lt(pK`LgX7?Kke(qzd2POU|tSot5w3&~$M6BKRJ-dhytd>x1`{ zg9}f7Hu&GV@WX{1eKQuc_K5R;^4vcp?G)`C*>T z{Sx9~QLg4gHdwiwKO6U8`}mF%d>_F%u>W&!Okw^xGw{z~oVdq({L9_p^mC=D7pB^F z;OG9=DvXnPMQ(b}%Hhx2qmS*A{5*8j5i7@h<2Gj=D)K=?gMQ(k-1p9Il;`q0$#Pr! zsOk7O^SYj|HvLcethe+zKFZ4J&*}Gnl;=qGcqI^$sT^=U3ErOUHxgWkJhAU z^k0_u8+zBWfB0ORX2JLm-5i%P;@VsAbHBq z$^`KfxAniq#jhv#j@?{0EvD-e@}0eU{n{^!wF+^|i*{$%3IbD|o@VeQn>rJ2#uy$~!XnQiY>k$6EW9XTSM#!Kd@QLpA2V zwE0^65@5GT+(y4F&}JE`E0Bw=4h9 z$~)WjVw-Cp%(wROb7E^vs9nm79$WwL&~~$}JWkGCKQj*T-SCO|;`V$+)?)hHf8E-f z->r31c@`^=+j%qRk#qUI>y>ZapS(C2|IHEkcYN2ooOiua&M*G0ALQG(!UrGjnTvSH z_wK8|r~J#d6F;}1TWC%u?^=#ESBsr}VjX3iJN5pygtfmpB0eti-b(Lkifk7bJs&(@ z;)=x2n_IdW_R(tzKXePu17`g1a)05w?Pc3e+`ixX9q79h@!xw~hRhYLJR!q758|3O z_AVV7Uu1uQAV05tb=CR@x6XPuCyYE%;_d@$ANA#=Wlbk!!#S$Y=$5a1W#wC9r|)f# z8=rq{}VwQ`<+jtApe(V@qN>5X6ZV!Om{ zk9rvRZSCi`T1S<-?#1t!`{kV6Q*1joN9M}^$x`vpvH`0C|C{rCG5sAv6KfwoAm_@F z<6C+0hrVrdVD~&LPsn_3eU2rIy||yUzTD}(vsP~6@U;HUVV0Gf_o>U;eh^pYz1aUg zd(zsQb7@XJ-|n|^^WM}<+X?caoEuN1Q+aS7W$v}k>$>E$?VRU&<=&_E!Fz-`2QCY1 z=kV`Ko^R75rx)2RrcUI(-L{?h9@%GQ`K+vWaoroo`=#n?<>q@tIc+DHuel!^rt&t{ z-ps3lKG!@eH|ODhR9?l(&F{fhd*)ocAdp|^z2cn{RlTb{(!~vbDv+D+5kKp?tg`la ze&L`0yOc;PH}A_6b$`WLxjAol2)m!xafJOo%FL^#w`%x;kM^gnZQC*Pdf=@ZeDuxP zQ-gl}c7B?%rgwL*v9-VP%k`OsUpwioZn=4C&Y5vmev-?$p_$$**0l2Zzkj{B$jolu zuB^GP)h!sj&#tai?%ah@+r7;ne6*zPR}ZcI;-Pi-TwWLHMJ`h4x6pq+#^-g_vmF-?!QNv-wy=yHTQud)IP|ErkyJKUK8XoJ|Cyg@W1N? z=cRo`+r2TP_6EE+)#$b3qYk!TbFUbq?`6Sy-5hbZd9s4d@mx6b+}Ii=t-V>tX5Rcs z5AqKz($LDU%$^u?t#3MSb<^M0yfLhdm7DjqBl@16+{#aJoYTkXz1-7Qezy8EU5}Pc z=|!!0{%qvLAWxqE<=E&9(+YS|8>{}}eIJ}p&P{DQKK=E*US!GDM>78XvTeuodrjjl z+R9D8{&%0i-sG|8^t~zYo5@S-HBO4#cH(v}+Ix9RtheW0wsC*Y2-=BnF*Tx3ijm&_ zVF#+lzc|<0C!}n$yVBwN-l1&+hcvnv_&L7*vdLF!<6LpA(~sT1`rX=__wJ4Qo$CuL zkBz<@-!&KZZ{9~`-a5C?%FVof)cnxN%KiOfzT*eKKQ#GmyUwewwU5iY^v&MufAfy4 zD_AnLb%m8DoR6!LV%h6nOyydOei{+vpJ-#Deh%KRO`cq@dG9A)-nzpy+re?jy4jhbfgPQLwB-EFsm{k5u5n(t5V>gJvL;=sDXnS*}UymTgQ zl}|HyXPf5h+F)d`UXhXOj-}rEk9Xpwj9Cw-3*yl1qsH2AFkk=vaL3eSgHo;k#E$>c zsdoQey0qJypX&bbH;M%7eyRH6h^0?u@>bp3^6k;c-PYdx?(sX#x4}8h_mBBK)n;pN z)^V!dzh$*@vrjMTeP*gVxRZoczAAGR*Bb&5Xo)v(vS`9If6Gjv37-yd5v?s5Yu|Ior;@B7d(4 zP3pvc|9pHU$mht1i`KM$k^U*UXi5%iZ`NhA-uDN7JK1`A>LNR@dGp`@sQ;Ncx2*k% zQrWw-ZTP*nI{i~!S6&%t; z6x?^2{n$m{3xazF6Nj<-d=Jj;<~$a!^Lov;Z_YEN^nIa-m7C{C8=dbWEBBv|=J!`0 zSb4&=f1AEIsjRoF@`}8l%pPv#=DE2@<3Grg(PH7~cq&`_Ew^{nfB5r{Ud%VY6n?%} zb1UDp^L+CjgX(zEA7;;9?2B|(z9#Lg>aVmM=0%UI*>CvrU_VAp$G@2s%=5Qj@LrR! zw#f23y;gfsKej&6tK~S`j+t*Sjfa(1z93bt-1#?d_O5on@q5Xy$_Mi2x{ZlAFcJB- zbDmm*g6FTf*Y$rtAGBkh7dv%*+uC-_z442BU)tNsw*-sFvJ+WxnJoIi`WyDsc|johC!`cLQ8 z(b}8+HBi?#$Qx$AWYl;I^1pv>F~6(HWZQ{a()wiHWLv!X86GX1a^oc{kFEI1JGCc% zfc&|<;i=z(^U|T4qw7As%He#sO!^_-+MDO>e|paoJg1ERtLeH2=VvqiE@Ao8jI+DG zcLZ^0{FX0FZv6j|?%yqTJjVaUbzcPe-2Yy0zISi5_Oa0!`dn_?%R934V&k?y)w6Q* zyRvPbc@75c_<6=Wzt&rOGyb=AUO|3~jmcD??4gxdm%dkGzT0f=&G^kdRp-c}R=$5j z#}qT_-GHC7r^vY>_|Cg&>$ji0c43Nl`Nn%Ai5b#*52g#+uF{@R&MfVw6+uERg-U9==1u# zwKwC5#&@D}HD4Og!pe>RXX(CZXXPdjL}?tpZRP$s(0s3X)5?t>7Hj-$wer}C-O`+$ zwi@Hl^VN+mXRUng5M+of(I)>7O>5<5-COE=N{}~*@XtZb>uFPvce_5FXSU(F#K zzszgp#y`t6KL_WxJu@!UX?FIQw_{qR)nli=YVBiVD#ovvvIBlAf9`J0Mpkb6of|eD zc|Oj{r}2E-+MnWcbNW=|`C}>TM@L$@pAXIN+m~9o$$R_`!u!e8iR2OLpWt@|CeH79 zJ2nh{aB$!PYj5`59o;W&tlT^=imE(#Z!+=RT-QB#zcBmjN6j0-y`qt?Q-4;o?fd5| z^Y=JG`>_?9_3HS;8r)kxb82Az2iAVij2A!8GA|nb`QeV!Jh%_v^-TAyUylFP+nc=7 zmLU^12lnF69h&#LTX|gJ;{_&$vX+V9`c zwPTlLKcnCM=f7VW-0SX2{l_Qs_woI=a=M{K_gnje3uD$^?R5(KrS<;HSH@VmJg*y< z4LgtR->|4llkb`L{vNTZ`@7cuNa@$ApSd_0U%*Ef|@$ZkCH3{A;O*`v!y@I?EwcI&E7Cm3{;$thdD1SfLUw@>3=c6N=^Lj@L z5B#@$hkvd8!XaBC_AY4X9jX3~kU_grZ!Av?c?LeT%4A<4&);Yyt$bJ6EGZWsuItU*RIc>&$l#p6FHMep zU+k*ytzMbD|C*G|t^L70-{#nx^H*=~v>OArJ>9^{PegS1F?Gj}y`SG%^U>yIovr-T z#ONatT`PGj@4Q-SSku~8exzlK1&_Oa<;`tS=*-c7=UMrs^5Z+@+JDyjxoYy);v$26 z9n-RO^9$X&cyl+ks#m_od~1Js;L`qQPcQdYwt8nomFYTZY~qG0e)(jVf8_QSW5l%#9~|&+i(Xd(HD`y0^7V?kW}LJZtT* z$Gv%L_u6URhM()^&X+ClXKc(Tt)~_~;zg!uneN5+gZuWl-|rQR8vLaCcwX+HF>TzR(Dnj9Of{j6{Q>a?nCTm8F}U#W!$?Stma@%&|FZ7GZ zoUW>OI>mF%`{(*SkjI`_S?T!a-s-1@ghpzp=MmTaDRFL~m8b^fa>sg^wU zHuwJbpRp5ybLr1nax{8+^n7niU`N~w|Bfi{Y-1$yl&+) ze*2-w+ESj5-?Q@B51)_g`r@qb!U0d~S-G+Q&d6T~^6Hfl zT_e6*@PYSpzMF&E{&vOMpXt8vL7Sy_yw&A9wMia3#>%&4?A9$*sk67*+Zes*y&%ur zI9ukY;Zq8EKd0;0W5V&^IdXGb&o3tpoaL>4J=NBO1smFS)~7u^ql**mMGfkg{f+m0 zamYKCW@xKLztr(o9xA+`Uip*0!n^p=gO^90e9l`rx7?D;mxK96W*T;*PwI)@u@X~C z{dIMOwO?O3&9p`zX41b?491zzBI~O1c?)<43YY(?ZkdACe(9OiUlb}G>FvK<``(tD z8LT{^(w*Wp+RyQh<}Nn#;V8TBQdg@{uU?agl4Z-4iFl>tYp?JCmkjhlDCDLLg`7PG zJ1c?l@y#uv`qALu231u(?A#Qlp49J$x|czRReuOP7iF-)p-*978!{eP(4UKq?Y0Nc zM92O+0T+gz3ru|(P&;65P+;dc2oEcV2Q%t14wnxvj7#)4po<0nx#HiT=Xm%apgnl^ zT7W|suZy-gX6i#7fS*RmF|j|4T@DpGevaGy2Rh6{+Jj%*)3Ae|#QqZSWbl0yQ^%LI zo(9W&@4-gf=Um;tVWaa6y$Q^R4PW%xe+&q1hK4IfTh3kZ9~vxca}ITMecZm_QO8ZC z`gY*&pw1KibN>XU&)7bEy8+(>(UvsQ z=zV*)G%)&b#;U$6FxP0G!IZn#L9mndAa~=y!_M~4^}{-fp6iM6a9qT0EfA8K%LAT| zv1Sf;B*(-4(4L!3^|VQV9^)2!)N^6ab_B!DjW_kA{$~c;`kW8O>-hfS_%S~>;}h-w z0lhyT+M_?;KkifDZ$UrK*oWQ+hQA#?ATT!iEg9Die)Pwa>}l{AhhX%REG6vFuh^rV zWU0{x+7*m;l05?+?Fxn;lBI=S=f`m;O9!mu<2t+dgZ>%!6932ptRF%@g0U~8J;a(5 z4Ss~;Sm?h2Kg3|hZZg)Zr+Pd%k~y$>UG<2~WNCmoN6r^<>7D^$p9{ubbQ$B==h8pg zW&3u2qF?Sw2jdVu_L=)1@FlH}y6oQWH}vD40AXK9`@6s&gZ*yBJAg5Nw~fKv2kuGe zZz%2z%>C6$?XgeY^WZzFp7|2%!<@&b6%XEzyG=KIX}rM><{+LM-Kcfis8V>FU%Xn%oWTpe!gHHroSEJWzi!~)8EX4 z#FE=DpscF;J>a83DO8W##(d)EH~Lxf3G$q@2mdBZ4;g$c_!snb<%#|nKg5trfAF2e zgYQ4Amte@Lm-vHBVvyr24nkjkz6*T>Gsd&OUcG=B@7J{dXz-7~YrHZ}neXHo!S=R+ z=!>t6eP|SPH^IN67^UE{20Pak!%oKkEb2#r-c|r#E$YUZcEq0JCC0c!{|4+E0^c^6?MnNQiynS) zmq3pg6pXqu9*m3FMf>c}xux~X16Kh5n%bWNW_{nkjAhK-Vvd*dMGQ)Np99Ya<HC}eC52<88Y=}s0#Qx zu&u22@T2(iJ%gR*!0)4eBgOTA#{>Uiu)7BsIVS{}%qT+l>=LuiNXS^Ipz{eWGy zM}8r8A(#3!!IuPOQVhR~|Kkm2TZ{pJ{n?EB9R8D8?XmZrKf%Lq;y?J6@xnUNKIZB! zfQ{~#5Z1|g1ReH;*zbmZGx(E=*8ryhzusV{25?r?8KZa`a3N5H!5p`n1$xXw`lJ7r zgWyAAH$SKW_>Wbe4fq*QYQ=TI!)H!GgT;RX!M~~)^Wu6r%yDcF4&bw0d_atKb-BLp z7(M64{qE0?>%jG6yE4AJz>KGZ2D=f!oKH^0MZvcKVIH&()dGD1>aVymbQq8IcU9mQ zf&KYCMBDT){3iYV1O0c9VP6S`pTwWO{vvQIkU##v!4C#?RC}zg#5epP^{JZ%`bhCY z@Ga5)JcDKJY2(lL0d)UDSKR1B%b-gOex<=qHejwd)?Ma%7#M5eCRaUtAinrd@vFeY zKur}hp8f*){k;v{43O?mX9#%ao6n8Ctlx9Mfb5TX$YoB)Rgd8Y(jGNE(&qXvhto(|UBUvI`W{Yk${{Vc#)fng{0IrjHKSR>+43Fxp!{`!dT zJ;-$Y5_{vJ*Z6aCp>77~v4^DnOu)z=4#p(y{|C%D_Ys5>a5V(g7jH<0d+P%P>*7hN}cw-fMC)E{mz+v55#$IAGQL3aXl zT3>bkGJd*Pi~8I$U4O zU*^s=Ag13jXReFXp9$L+P=A%dTsK+2R}Bs^e!%+qUh*U2!5wJyPJZyuqdxm#`z?XV zYdnMy%b_1YOF`7%0wG31$cuu(bALOC8Dag-(Wr$Lx*Ak0hpuZ{8xP%Xusp=%GGW1_#VqAmLCtijv|E^?Dw zPBHzBu{f_QM!fOa?&k}}vCJ3qmiFl9_dx#oz5_kSigu{yxFw#`DSiw1b5IV&-NAnY zyLJYPZzCY{{R_G5=e9=gU_ZH|U|&e_MPT-+{kgrtj{|A@q4VG?!dCaA^D^)d)YtJl z<$=Ei%`)xD+2w2KKQTBo6eayhztVq*)evK;zv9iP%l($!V2+z>=C2puo8-Kr@#Opr z-6c?rv3KBKxpUI-g$ls_b?DwT`ViXUeU^V8#Jno`hd$NS=ONBt=APf^Y z|48v)Xe%A~KMiI-%*FQkj`(-r6T82_yG21oj6KiYJbyc#wElG97l3D~9&HPToa1va zUiVX!i&ftd82izluh};H$GXtoWqz9gs;syb_|_obf0@BQ2OajA%pc?89iqLDs04l( zhr0)1KVl(RqT5F@^xaU$)hz2pzt zqn_9^ewKn*hxHjp%R!V8uR#5-DE;`N?q|?XAnFlk5^u00=3JRy#7ER00PX?u{e2X& z3!w8L>i>g3UPJkZ;#-EP2*-bbXxUz*u94b*Xd*8nAuV#eAIi6}N;Qn0r9?w)ML!ih z_JA{8G2+9S51OZ#>s<|4*U$M8{1%YzUt;QA#xcip3Um#0#^6u{bj$^L6n_oe5d37t z=wIIbA!q&26wqnVH;Or~86ZF2v0kBrp#31)qd&I*$~c3al<500_!xsjx1on`o%*W( z5Ioj2^w3~=zG1%p{ezPm_9bCcQ|(ItR{<`rnC-0vMjWw!w$11LlkM|-CVkK!^PtC? z*nExnm;B<#dlWEYobMIlzx%+5b>|<0Lk&=l0O|NcA3&c1xE+Y|{|ZE(J?TICj((+{ zxpyT<+vnb3yoa`fs6P(kTG6M#9Jjn1oHdw!lDS+}J>r;WTN}Tbz!w4)RQ)Tc-xL^e zEbXlazZJAWG4_$%f7~)S1po04FNAtB9>j(CcB0}*C^<(zUO3jvAb)&VXL(=Hc;ov# zbG75|55%vt5Ht^UI6thl1D`mWFBsPj)`B*or|-EQixn>gkDNl8=zjr!2!wT$@%Bak zV0jJ~oE_!+plpiUqr{qp+8OL(F76ueXh+&hfwmB{HeUaPekiDu(TDzmK0PR%+QZLI zVNhnp&A@*ILe7!)%AzjkTupHc;6cC*40h)MbIuN}zw3+kYF0?NA}u2VA5N)YF#`609x{5sGo5cR-rJ(OD%GcM>$+E5SPWh`7%3}5q| zH*{F>Wt0h^s|ItwIyFGK6!!#w9n@Aa)`#C{oZgC$fj3zEd02 z4U|`LN$5TVepfNt=C?Jcy5c6#=Lbg2Nd11``-3oV!B`7-IIuqdc}|pkv{3b@pu^sA zP8;lUJP2rsX^clOOA1&P1HlJ&{#aK&v;F5a&+T$P*=+1XyHUd5p?!+6p0bvE6i1`H z2s)=2rR#yX=IGBs{4pPfuBaYy;bQN)-4!zy9)bQf*oiq8O#q71UYrAn;ggXT0L6;E`{gub;rvj7-MQc&`MEF$+EloDUdr zDEK^h#Ih4@Fz-tF?UHvw)Q8f6J_DsyOgYyUcA{sT4*<0>n6WC~4iP7!p9oCekI%}$ z6@hOUJ0xeXGwRV<*zE^v!v#j^G2J`Mm-j_2frmq-(zQ6JSzYRQE^#y@3 zM|lsTKRW>B{*ga;KW5**9sy4Rje-n%c@`BwspD~SLRVk=pgtdH zIH-==!`A%*_$9@N6?X`*A1}y-e1CE(tG*d9_LBd6a=72H*PMZ>C#Jn0&j-LC1nGLa z8&LljVMx=E2gG%vzYxbfugV#KI1>mlYoG6kYX`C9R8V{Rw=4*L zm->yszYi*>crg0odU%Sffydg}`-E-acY^%&=>h&QNaIa>y$9I$_d&GxEU@~Q_mIwJ z&>C%@diaVq9FMyZ^eZU6V#K*y6_m^1P)d{|K`9jHLCLmrE6$4&YaEJDTm)q&P+`UW z(DwuIB^1v@$+exKcr*GM_XMVXHb~cBc&-`Z!e2jk1lnXC!1!e?7ouFC81W+Sr#_}` z322eg%Y7&3v)EvHH%0u|_fzCMIeTmVm+vdEmv1cWZ#nwL{+4%E#co%X5wC!4HxOhp zzDV%(z^{D*H&Pkx*Ma9+Vx7dE>$D#9qhj({Bmev<{cZ#1m{}h@?_?~dE#k%Io890M zA0e!<*l$P4*k&87PyUZ5@GkI2Kx~70lx|OyzbS^Ecj5l`134!gf{uOo?cD;;Hi?gd z&V$${@hQ+1&jQIt@|~XTQO9?A`~D8Oyw5-` zdg_t~dOkb(&Tj3g&th!Eo_y9PFvi2ZN*mE*Kl7~5oGF-kwudzp91s0Rz}Q2AvG($g zQ&(|A;Lf0?1~d2Y`x@_6#C`<$`=EamBQCgi?RoH9*nbNAv+5BC{H=%0f7qAuTbo=) z&-+ukJ1wZV5A^N8H&HwRSnwv4 zjJYS`P2OJ*sGf0j0<=Rh?84~dbzL1dPp6P=Mv~1=pqQ1vBUF+ zji2k_;ZOhkByn~JI2OeE;GHy}XAI`ERi1Z66~6>sX;3M}CBgRsRae{|{8&(J#av&k zt^fWee2XVA*E=t?+n>OV!DBp5 zCDqplPk%H}+y;DGQ0oBmeCTvk{2}@q271k4zWcbI?96*ooM2SlIJ--r*14b6x09St!O^5df~+J6e< zs6FCA&f{#8^}hmr4VtWYA#59gk5v3C@GIb>6z@ZM40K2_;y~`x_A9;tToF9x%=Vcl zxrdFH=d~Q%K#m|B-33^#^R`3--uPdf4e8oEx zX|E948wK1-G4hnt3{*rh#_CQ4?xc7Gcs!Hr^9b=F@5>EUkCN}s_I;VLG!!&M_3dE) z4RBAzSS#LD*!!6Q;0J*i1Dx*%upf+4{lWJFH#snTAbO5%5(w)in7L^s$j?tR!LI_% zR{b3C^FVVIBQD))zzY;_1b+c^-rx|{BgDSoSGF(r($i7;?WaS1%+G(H;ynb<@b-Qg z^XKm&{Qb3lQ z9H8uq=}-95>8E%Cc>2uu7x}M18s97(JVWVI>2DF*ss@ZaFBqls9cZy)#Ith~blqU) zL6>V(Suw`S^AXQUtj~QX`I`HZnEkMCj6*P<6}3HwU{zAs9|kYL2Re9s@Q_%h0?ptFh-P-0E(edE(;8*66Y z*Yble2J+Vj^XI#+Q^M5ezH-`tS}Ps{9y!AP9-Y444f6fH3_Rmyt=caKj~wG{QoJ7g z2G9zF-ToLq#_qq5@m)&JYq^bH?qgSjS9>{k{Rm7M{lR{=fY7GkD3sSg7=z%AD0hH< z39$Tj1>+X|5%kBsyi+mf;H zpL;{|CC^_DV;yqpxi2JsG+!{cx>KOLZ}hy^V7{~Wg_%$XF=F@Yv(R%tW-#^+FmtKg zk+6O0KSWtl^(c9E^Yg9TCu4l}Ja!m7V#>Z>zYD%MsF&8q+VNYQvrX|A;NfpRlVv^_ zyE7H^wPNP8Ss>&&(WB(=8=3P2&jvro*a$}4$oc+z)uUZ`AFpDt_~ik3`kela1N{lY zo)&x$ZDG##e&`d_p9Bm)QqQ|U`q<{H8sKYzav446;i4~l-lzti{`FK(ydT6hL3>U+ z5aNkv48inQ9}s*dn0!A_U&X`FKGzWA68%K*lR+FK+hcBn?`(dX4<5PRnWuVS*+1BK zV!sHw#h`B$L(V9r06+6tZWSeaY>-*-x`jWRN^-v}OS=$~JC?=1Jv8jrlEa%-b4 z%!~H?9hdwTubkr7ff?K76*mEH2fndll*Dcs#czXe4<73z{pSFF13cDH+DE*~?<>@w zymyp$e~n)`r>=r6<|+2zc|RoIY&gD6pkG0lqv(%AmjZl@!A@S-W6#<1Cv@_ghLlFn zcN_6P>!3Zp`?_3%Jc`qT&j-q>xDfcdAnpO$7X^I+^5=*6bq0ex)ei^14OB-l{nG## zev|qgfhU2`hG2}9zb&-qom1dXgH9MdpH*@`DPS&X=lWJrjCEvgaEdEtJPiYVqPP_JaUk7KjD6lW`0+1y>y>~j zsQuf}PY2aCm}dpXmwi8K1HL1uo!WN-|0f7>BIEx6{NJE^iie?oW>6-@Xxl+9w9jwy zSOY%Or9Rd|o=5W)bF6rN*zaS@z^?`Up!!X)$NKXbFZIuWkAnWL!HhM2uizM|4>ba& zF9s_{-?HAY6Ft`&ecJV22p;|0{DF0s^~X5Gp6k99v|8~s=;32~enfo8d2yraH=x9r zZN5SLhPH#YfiOPVPuxqCbG$oHA2I#p`7^W&m~lou;zZ&_>&x>7KK1YWcpoj_Uv3$D zzB}@HL_4Yf7y5h$lwR?D=%)Zj7|i!I=M_*E#aY3>4njLJ-W0HBJR&XyBaS7W^BK%I zVm$G8i=rnutWpW>< z;}JYgWsHyQp#31k0qYAspfcj)pcv2@kYe^J&p_h8(H7RrzYmu8jr!2ThqPzO=YxI! zh=43F@B`In2L2HIL&d3pGlEho2Jg~Gj}&3?}q0sbFQyxM;O9=_l^hKwKUBKNi26Pyp$O0d6Pkn=9rf8TWAC*~ICtg#O< zKMn+rQ@jUwCiq_!A43@pI;Z#o%G;n=gZW(LS;4=*tS+c|qFqfVti|6-NM10dB7t z`wzpzU6w~GuW*RdyI!UM%w!mcqQm%)ni@Vg~o<@d3JIvCybuYNj}dlrtT&P zanx6$h%t`PuxFSgM4-*f-Fs}#=y-x+o@ z6r(SMiTvF$%K_>W+p zLF;3!_^fyGEA9xsJE)z(^0$NE0(VtC{NsLOY{dT`fXA5l&0H|%;m!xfo)Wwq_C(2S$DW`#;Zla(|jd?J+LqFFxm_zw*HJvBr;c z2RzrSvFf`3j|IUG(m!I0?@s>j!Q8Kb=K*66h(0Ya+j~Ya_Y?Gzqc}dy-9;PnPS5!* z0j&ep{KMa4%KHjpNalla$a$fW!Te4x_uufD=&?`S%Bb(hcLm_jf!{KEzPrnK2N=wK zD*Lsk>fsmhPgccYHse+kn5B#)nk?x5EH)Y#km!e+o@ zF+TW}E(T&wvs8e1{Y~8+bVI9L0x#86QywyNuWEp#BES{>S>z$5KBJc&<@N z#nr$sK>huSI|6?KjCs(W@6Gc4_BGXWZd0L03`%?Ov%FuVSIqu7rfpgu`{u%J_H{Y>D&v=;u z^8L&C&jY~+GJg1lf3N8dQ#=Vg=ZATUehTo9Af2E5t;KX;_(j@Z1%5Sn%vs3TghPg?G@(hzn}3OD)|ay z6nn(2#4qBSm}fc8&nc{WtfTk?ei3`LEA3ZMd*mv9U-t8r`z-J@;L&Q2cBH+`is1)Y zKYx8D0Ar2p{_6_N_OOqnKkg^`z>i<7o2=h$?f(VfpI{Haiv4|H=HIUrKL)=J)I{x( zhxz>DouAlaTrxhat6;__#={sD+zR|8wBN?yP&Dw*;NuOJ-?m^qnG3HQnl6w|o6#W+P+@BgR>{ss2E~)-B@P5!vgZbMs-mmc+ ziPVRk*#Dz?^uze%H*@N_Ph`KKp4c~d`Vjh+@nYN@Ki5^-$GXb;`ti~TnEr;}MUQ@5 z_J&de@WLyZF{$fAr1qhVB}@?4Ql1 zT^SGJhHd)ov2W=QHZq?tfH^+QOU6Tg19RMh;TMS?#F60D!1N#1N$R6ti5J9;tlN`ivLGEc$1h$#~H&G3UzuZT!HG(wElfxTyEzQT7}AkJkPe--s8ES=vKM?EAw_ z3H%V4YtH$P2L2b+M(t6$cow_cS?=65mo6zcC%%zQxnwZZfS$IEexKi-9&^TE6XW1ceKZU#G-fggY$qIeoGe9pg- z5PSLubCWupFWPdscIuzdr@;S!UN`nUYrAJq|5t4fb8*iCV@<_hC4kR?YA9|G{vP<@ z28TWb{u@+S_4Eh#@Du)|Fa7hi%Q3;1_U~P?fsX@aHT50F*Cp8Z*7iyP$AU^597+lP zBKVPN&+%M`J>rDp<=;xUS3v3?wbn^|-$A5(uFXmC zh+}D=`;qaDbrswf_yqXm1~ZN&o)PENhX$eGenJe0eKd;azz;AuGy>SgcrXUhAA{{* zz`GUa0lo`5YB1x{y#xIw#pv7p6PROSe`uHWLl~#vyuhf>aS%I*6~?QJeI%Iq4Dsq9 z2NLsLk^8}aUktqj`~bRsM$dgF_+_oX9hmv5s^UH1AEN$1#i%E^zt-n^JqBM&aY@B! zSH=r}xR1csSKJi%Kk$7NW1k6rOL0$AE%c(|7ZhV3%6uYFAV!^Ss&4=cf79>M-(bZJ z6{8>e*KKF8!@0q~A@n2m<518~M-oQi7^RADfoHC z7+W&55h|@1b=Y61uHrJP=NusCI!ZojZ7}c0-1BJufMWPPSt?+}sn};m@ic6*s2=?! zOAWoQ2Y<(zEG01Z0qyxME7>zBzfini+ebg5UkQ8~`e_F9c_z;r#DM6(L6HGA$nnzu zF%;>+Yx^#I;YI@wFnY$Rb&kNoSF+cm?lbk~aGjFqf#;N3M#w^E=brO8o zVCHT5E7aNGP$yvcOTMAgpNM1WU-vijG{6ZhFXm;*&*(?me-`)#c=%k} zn+<#&?YCDwd@1=io$9%tuRuRc^~jTwf6J>Lu_*an zFUtO%tnHl!{uA|2X#F<8e}QkUI3Ms`@Ocg9IY`b!?}7Kbc2mya$2* z24))^|4v}!Pv%jPNz9EfYHv;;MAdMg9G0A8CdY0Du>R;wb>2IuQFNC}({rUT00Pu4d z2i8gYhu`^p^`CFdYZ71CjGlQ<;%~2Fv@7|owqp2G;!nrJJSXvnb(8jMp-2nf-=7>W z_s&OJe>X74Gga+#19K1Jxy|~_a}uAr-rN_mKZ>hH&Jju zz=wk2YmS$DQtYu`IbQBr!JJ=mU_ai+0H*-Px``fs=6cDQ2IF%v4jB*DUG(pwKwtiO zgMQ}xo;;7p{50OVuCx!KUWjqTe~bt6EHM`0Sz;W*v&5W)XNma=&l0{6o+aifJWI?` zc$R6DXPH)cmRuM1%QC(4ED_HlXUSNh4NJ^Rc$S<48`!!oP#EE#L8 z%aVDJJj)!)v*h!ga+cf+UWXIVjcmKBv}SxI@8p7Ja!E6=iu z@+_+=&$62GEUPQevWD_3YbwvOmhvoXE6=iy@+{v_o@HI-Ste7SWj*CtzNtLR`pUCx zpghZl%Cl^wJj=$)vuvU~%cjb+d`o$j&6H>Pw(=~SE6=ip@+?~_&+;ARS+-K1WozYG zwo#sCTjg1{Q=VmekQ4(+F_07k zNimQV14%KE6az^ykQ4(+F_07kNimQV14%KE6az^ykQ4(+F_07k{~yNyKOiL0{}LaV z4;9s`G_4~4H|Eqe>(r=MJ)&m!&b>NSZ$GeoM9I_x29+v5uzlBvlIDNc+`acee#}Vv zm*jyY4GetCellAreas(); @@ -78,8 +78,6 @@ SolverBase::SolverBase( Config* settings ) { // boundary type _boundaryCells = _mesh->GetBoundaryTypes(); - printf( "here" ); - PrepareScreenOutput(); // Screen Output PrepareHistoryOutput(); // History Output From 2bef853786747c150dbe4386a74dfe02633b9c38 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Fri, 29 Dec 2023 16:20:39 -0500 Subject: [PATCH 029/155] mesh refinement for lattice --- examples/meshes/lattice_refined.geo | 707 ++++++++++++++++++++ examples/meshes/meshing_scripts/lattice2.py | 111 --- 2 files changed, 707 insertions(+), 111 deletions(-) create mode 100644 examples/meshes/lattice_refined.geo delete mode 100644 examples/meshes/meshing_scripts/lattice2.py diff --git a/examples/meshes/lattice_refined.geo b/examples/meshes/lattice_refined.geo new file mode 100644 index 00000000..d981a915 --- /dev/null +++ b/examples/meshes/lattice_refined.geo @@ -0,0 +1,707 @@ +cl_fine = 0.01; +cl_coarse = 0.1; +length = 0.05; +Point(1) = {-3.5, -3.5, 0, cl_coarse}; +Point(2) = {3.5, -3.5, 0, cl_coarse}; +Point(3) = {-3.5, 3.5, 0, cl_coarse}; +Point(4) = {3.5, 3.5, 0, cl_coarse}; +Point(5) = {-1.5, -1.5, 0, cl_fine}; +Point(6) = {-2.5, -1.5, 0, cl_fine}; +Point(7) = {-2.5, -2.5, 0, cl_fine}; +Point(8) = {-1.5, -2.5, 0, cl_fine}; +Point(9) = {1.5, -1.5, 0, cl_fine}; +Point(10) = {1.5, -2.5, 0, cl_fine}; +Point(11) = {2.5, -2.5, 0, cl_fine}; +Point(12) = {2.5, -1.5, 0, cl_fine}; +Point(13) = {-1.5, 1.5, 0, cl_fine}; +Point(14) = {-1.5, 0.5, 0, cl_fine}; +Point(15) = {-2.5, 0.5, 0, cl_fine}; +Point(16) = {-2.5, -0.5, 0, cl_fine}; +Point(17) = {-1.5, -0.5, 0, cl_fine}; +Point(18) = {-0.5, -1.5, 0, cl_fine}; +Point(19) = {-0.5, -2.5, 0, cl_fine}; +Point(20) = {0.5, -2.5, 0, cl_fine}; +Point(21) = {0.5, -1.5, 0, cl_fine}; +Point(22) = {1.5, -0.5, 0, cl_fine}; +Point(23) = {2.5, -0.5, 0, cl_fine}; +Point(24) = {2.5, 0.5, 0, cl_fine}; +Point(25) = {1.5, 0.5, 0, cl_fine}; +Point(26) = {1.5, 1.5, 0, cl_fine}; +Point(27) = {0.5, 1.5, 0, cl_fine}; +Point(28) = {0.5, 0.5, 0, cl_fine}; +Point(29) = {-0.5, 0.5, 0, cl_fine}; +Point(30) = {-0.5, 1.5, 0, cl_fine}; +Point(31) = {-2.5, 1.5, 0, cl_fine}; +Point(32) = {-1.5, 2.5, 0, cl_fine}; +Point(33) = {-2.5, 2.5, 0, cl_fine}; +Point(34) = {2.5, 1.5, 0, cl_fine}; +Point(35) = {2.5, 2.5, 0, cl_fine}; +Point(36) = {1.5, 2.5, 0, cl_fine}; +Point(37) = {-0.5, -0.5, 0, cl_fine}; +Point(38) = {0.5, -0.5, 0, cl_fine}; +pt_counter = 39; +mid_x = -1; +mid_y = 1; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = -1; +mid_y = 0; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = -1; +mid_y = -1; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = -1; +mid_y = -2; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = -2; +mid_y = 2; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = -2; +mid_y = 1; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = -2; +mid_y = 0; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = -2; +mid_y = -1; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = -2; +mid_y = -2; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 0; +mid_y = 1; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 0; +mid_y = 0; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 0; +mid_y = -1; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 0; +mid_y = -2; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 1; +mid_y = 1; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 1; +mid_y = 0; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 0; +mid_y = 0; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 1; +mid_y = -1; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 1; +mid_y = -2; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 2; +mid_y = 2; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 2; +mid_y = 1; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 2; +mid_y = 0; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 2; +mid_y = -1; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +mid_x = 2; +mid_y = -2; +Point(pt_counter) = {mid_x - length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y - length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x - length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Point(pt_counter) = {mid_x + length, mid_y + length, 0, cl_coarse}; // Point to enforce coarser refinement +pt_counter+= 1; +Line(1) = {1, 2}; +Line(2) = {3, 1}; +Line(3) = {2, 4}; +Line(4) = {4, 3}; +Line(5) = {5, 6}; +Line(6) = {6, 7}; +Line(7) = {7, 8}; +Line(8) = {8, 5}; +Line(9) = {9, 10}; +Line(10) = {10, 11}; +Line(11) = {11, 12}; +Line(12) = {12, 9}; +Line(13) = {13, 14}; +Line(14) = {14, 15}; +Line(15) = {15, 16}; +Line(16) = {16, 17}; +Line(17) = {17, 5}; +Line(18) = {5, 18}; +Line(19) = {18, 19}; +Line(20) = {19, 20}; +Line(21) = {20, 21}; +Line(22) = {21, 9}; +Line(23) = {9, 22}; +Line(24) = {22, 23}; +Line(25) = {23, 24}; +Line(26) = {24, 25}; +Line(27) = {25, 26}; +Line(28) = {26, 27}; +Line(29) = {27, 28}; +Line(30) = {28, 29}; +Line(31) = {29, 30}; +Line(32) = {30, 13}; +Line(33) = {31, 13}; +Line(34) = {13, 32}; +Line(35) = {32, 33}; +Line(36) = {33, 31}; +Line(37) = {26, 34}; +Line(38) = {34, 35}; +Line(39) = {35, 36}; +Line(40) = {36, 26}; +Line(41) = {14, 29}; +Line(42) = {29, 37}; +Line(43) = {37, 17}; +Line(44) = {17, 14}; +Line(45) = {28, 25}; +Line(46) = {25, 22}; +Line(47) = {22, 38}; +Line(48) = {38, 28}; +Line(49) = {37, 38}; +Line(50) = {38, 21}; +Line(51) = {21, 18}; +Line(52) = {18, 37}; +//+ +Physical Curve("void", 61) = {2, 4, 3, 1}; +//+ +Line(53) = {57, 55}; +//+ +Line(54) = {56, 55}; +//+ +Line(55) = {57, 58}; +//+ +Line(56) = {58, 56}; +//+ +Line(57) = {61, 62}; +//+ +Line(58) = {62, 60}; +//+ +Line(59) = {60, 59}; +//+ +Line(60) = {59, 61}; +//+ +Line(61) = {41, 39}; +//+ +Line(62) = {39, 40}; +//+ +Line(63) = {40, 42}; +//+ +Line(64) = {42, 41}; +//+ +Line(65) = {65, 63}; +//+ +Line(66) = {63, 64}; +//+ +Line(67) = {64, 66}; +//+ +Line(68) = {66, 65}; +//+ +Line(69) = {45, 43}; +//+ +Line(70) = {43, 44}; +//+ +Line(71) = {44, 46}; +//+ +Line(72) = {46, 45}; +//+ +Line(73) = {77, 75}; +//+ +Line(74) = {75, 76}; +//+ +Line(75) = {76, 78}; +//+ +Line(76) = {78, 77}; +//+ +Line(77) = {81, 79}; +//+ +Line(78) = {79, 80}; +//+ +Line(79) = {80, 82}; +//+ +Line(80) = {82, 81}; +//+ +Line(81) = {85, 83}; +//+ +Line(82) = {83, 84}; +//+ +Line(83) = {84, 86}; +//+ +Line(84) = {86, 85}; +//+ +Line(85) = {50, 49}; +//+ +Line(86) = {49, 47}; +//+ +Line(87) = {47, 48}; +//+ +Line(88) = {48, 50}; +//+ +Line(89) = {70, 69}; +//+ +Line(90) = {69, 67}; +//+ +Line(91) = {67, 68}; +//+ +Line(92) = {68, 70}; +//+ +Line(93) = {93, 91}; +//+ +Line(94) = {91, 92}; +//+ +Line(95) = {92, 94}; +//+ +Line(96) = {94, 93}; +//+ +Line(97) = {97, 95}; +//+ +Line(98) = {95, 96}; +//+ +Line(99) = {96, 98}; +//+ +Line(100) = {98, 97}; +//+ +Line(101) = {73, 74}; +//+ +Line(102) = {74, 72}; +//+ +Line(103) = {72, 71}; +//+ +Line(104) = {71, 73}; +//+ +Line(105) = {53, 54}; +//+ +Line(106) = {54, 52}; +//+ +Line(107) = {52, 51}; +//+ +Line(108) = {51, 53}; +//+ +Line(109) = {89, 90}; +//+ +Line(110) = {90, 88}; +//+ +Line(111) = {88, 87}; +//+ +Line(112) = {87, 89}; +//+ +Line(113) = {108, 110}; +//+ +Line(114) = {110, 109}; +//+ +Line(115) = {109, 107}; +//+ +Line(116) = {107, 108}; +//+ +Line(117) = {103, 104}; +//+ +Line(118) = {104, 106}; +//+ +Line(119) = {106, 105}; +//+ +Line(120) = {105, 103}; +//+ +Line(121) = {129, 130}; +//+ +Line(122) = {130, 128}; +//+ +Line(123) = {128, 127}; +//+ +Line(124) = {127, 129}; +//+ +Line(125) = {123, 124}; +//+ +Line(126) = {124, 126}; +//+ +Line(127) = {126, 125}; +//+ +Line(128) = {125, 123}; +//+ +Line(129) = {122, 121}; +//+ +Line(130) = {121, 119}; +//+ +Line(131) = {119, 120}; +//+ +Line(132) = {120, 122}; +//+ +Line(133) = {117, 115}; +//+ +Line(134) = {115, 116}; +//+ +Line(135) = {116, 118}; +//+ +Line(136) = {118, 117}; +//+ +Line(137) = {113, 111}; +//+ +Line(138) = {111, 112}; +//+ +Line(139) = {112, 114}; +//+ +Line(140) = {114, 113}; +//+ +Curve Loop(1) = {55, 56, 54, -53}; +//+ +Plane Surface(1) = {1}; +//+ +Curve Loop(2) = {36, 33, 34, 35}; +//+ +Plane Surface(2) = {1, 2}; +//+ +Curve Loop(3) = {57, 58, 59, 60}; +//+ +Plane Surface(3) = {3}; +//+ +Curve Loop(4) = {68, 65, 66, 67}; +//+ +Plane Surface(4) = {4}; +//+ +Curve Loop(5) = {89, 90, 91, 92}; +//+ +Plane Surface(5) = {5}; +//+ +Curve Loop(6) = {101, 102, 103, 104}; +//+ +Plane Surface(6) = {6}; +//+ +Curve Loop(7) = {105, 106, 107, 108}; +//+ +Plane Surface(7) = {7}; +//+ +Curve Loop(8) = {85, 86, 87, 88}; +//+ +Plane Surface(8) = {8}; +//+ +Curve Loop(9) = {72, 69, 70, 71}; +//+ +Plane Surface(9) = {9}; +//+ +Curve Loop(10) = {64, 61, 62, 63}; +//+ +Plane Surface(10) = {10}; +//+ +Curve Loop(11) = {74, 75, 76, 73}; +//+ +Plane Surface(11) = {11}; +//+ +Curve Loop(12) = {80, 77, 78, 79}; +//+ +Plane Surface(12) = {12}; +//+ +Curve Loop(13) = {84, 81, 82, 83}; +//+ +Plane Surface(13) = {13}; +//+ +Curve Loop(14) = {111, 112, 109, 110}; +//+ +Plane Surface(14) = {14}; +//+ +Curve Loop(15) = {115, 116, 113, 114}; +//+ +Plane Surface(15) = {15}; +//+ +Curve Loop(16) = {120, 117, 118, 119}; +//+ +Plane Surface(16) = {16}; +//+ +Curve Loop(17) = {97, 98, 99, 100}; +//+ +Plane Surface(17) = {17}; +//+ +Curve Loop(18) = {96, 93, 94, 95}; +//+ +Plane Surface(18) = {18}; +//+ +Curve Loop(19) = {121, 122, 123, 124}; +//+ +Plane Surface(19) = {19}; +//+ +Curve Loop(20) = {127, 128, 125, 126}; +//+ +Plane Surface(20) = {20}; +//+ +Curve Loop(21) = {129, 130, 131, 132}; +//+ +Plane Surface(21) = {21}; +//+ +Curve Loop(22) = {136, 133, 134, 135}; +//+ +Plane Surface(22) = {22}; +//+ +Curve Loop(23) = {138, 139, 140, 137}; +//+ +Plane Surface(23) = {23}; +//+ +Curve Loop(24) = {32, 13, 41, 31, 32, 13, 41, 31}; +//+ +Curve Loop(25) = {30, 42, 49, 48}; +//+ +Plane Surface(25) = {12, 25}; +//+ +Curve Loop(26) = {31, 32, 13, 41}; +//+ +Plane Surface(26) = {10, 26}; +//+ +Curve Loop(27) = {41, 42, 43, 44}; +//+ +Plane Surface(27) = {9, 27}; +//+ +Curve Loop(28) = {14, 15, 16, 44}; +//+ +Plane Surface(28) = {4, 28}; +//+ +Curve Loop(29) = {43, 17, 18, 52}; +//+ +Plane Surface(29) = {8, 29}; +//+ +Curve Loop(30) = {8, 5, 6, 7}; +//+ +Plane Surface(30) = {6, 30}; +//+ +Curve Loop(31) = {51, 19, 20, 21}; +//+ +Plane Surface(31) = {14, 31}; +//+ +Curve Loop(32) = {51, 52, 49, 50}; +//+ +Plane Surface(32) = {13, 32}; +//+ +Curve Loop(33) = {22, 23, 47, 50}; +//+ +Plane Surface(33) = {16, 33}; +//+ +Curve Loop(34) = {47, 48, 45, 46}; +//+ +Plane Surface(34) = {17, 34}; +//+ +Curve Loop(35) = {45, 27, 28, 29}; +//+ +Plane Surface(35) = {18, 35}; +//+ +Curve Loop(36) = {26, 46, 24, 25, 26, 46, 24, 25}; +//+ + +Curve Loop(37) = {39, 40, 37, 38}; +//+ +Plane Surface(37) = {23, 37}; +//+ +Curve Loop(38) = {25, 26, 46, 24}; +//+ +Plane Surface(38) = {21, 38}; +//+ +Curve Loop(39) = {12, 9, 10, 11}; +//+ +Plane Surface(39) = {19, 39}; +//+ +Curve Loop(40) = {4, 2, 1, 3}; + +//+ +Line(141) = {31, 15}; +//+ +Line(142) = {16, 6}; +//+ +Line(143) = {8, 19}; +//+ +Line(144) = {20, 10}; +//+ +Line(145) = {12, 23}; +//+ +Line(146) = {24, 34}; + +//+ +Line(147) = {30, 27}; +//+ +Curve Loop(41) = {141, 15, 142, 6, 7, 143, 20, 144, 10, 11, 145, 25, 146, 38, 39, 40, 28, -147, 32, 34, 35, 36}; +//+ +Plane Surface(40) = {40, 41}; +//+ +Curve Loop(42) = {141, -14, -13, -33}; +//+ +Plane Surface(41) = {3, 42}; +//+ +Curve Loop(43) = {31, 147, 29, 30}; +//+ +Plane Surface(42) = {11, 43}; +//+ +Curve Loop(44) = {37, -146, 26, 27}; +//+ +Plane Surface(43) = {22, 44}; +//+ +Curve Loop(45) = {24, -145, 12, 23}; +//+ +Plane Surface(44) = {20, 45}; +//+ +Curve Loop(46) = {22, 9, -144, 21}; +//+ +Plane Surface(45) = {15, 46}; +//+ +Curve Loop(47) = {18, 19, -143, 8}; +//+ +Plane Surface(46) = {7, 47}; +//+ +Curve Loop(48) = {17, 5, -142, 16}; +//+ +Plane Surface(47) = {5, 48}; +//+ +Plane Surface(48) = {3, 42}; diff --git a/examples/meshes/meshing_scripts/lattice2.py b/examples/meshes/meshing_scripts/lattice2.py deleted file mode 100644 index d3c37443..00000000 --- a/examples/meshes/meshing_scripts/lattice2.py +++ /dev/null @@ -1,111 +0,0 @@ -# ------------------------------------------------------------------------------ -# -# Gmsh Python tutorial 12 -# -# Cross-patch meshing with compounds -# -# ------------------------------------------------------------------------------ - -import gmsh -import sys -from optparse import OptionParser - - -def main(filename, lc, sigma_t): - # Specify domain - refinement_box_width = lc - transition_thickness = 5 * lc - - x = [-3.5, 3.5] - y = [-3.5, 3.5] - - x_inner = [-2.5, -2.5, -2.5, -1.5, -1.5, -0.5, -0.5, .5, .5, 1.5, 1.5, 1.5] - y_inner = [1.5, -0.5, -2.5, 0.5, -1.5, -0.5, -2.5, 0.5, -1.5, 1.5, -0.5, -2.5, ] - - gmsh.initialize() # initialize gmsh - - domain = gmsh.model.occ.addRectangle(x[0], y[0], 0, 7, 7) - - gmsh.model.occ.synchronize() - - geometries = [(2, domain)] - for x_i, y_i in zip(x_inner, y_inner): - box = gmsh.model.occ.addRectangle(x_i, y_i, 0, 1, 1) - geometries.append((2, box)) - - ov, ovv = gmsh.model.occ.fragment(geometries, []) # stitch together geometries - gmsh.model.occ.synchronize() - gmsh.option.setNumber("Mesh.CharacteristicLengthMax", lc) - gmsh.model.occ.synchronize() - - # Generate refinement areas in mesh - box_x = [(-2.5, -2.5), (-2.5, -2.5), (-2.5, -2.5), (-1.5, -1.5), (-.5, -.5), (0.5, 0.5), (1.5, 1.5), (2.5, 2.5), - (2.5, 2.5), (2.5, 2.5), - (-2.5, -1.5), (1.5, 2.5), (-2.5, -.5), (.5, 2.5), (-2.5, 2.5), (-2.5, 2.5), (-2.5, 2.5), (-2.5, -1.5), - (-0.5, 0.5), (1.5, 2.5), ] - box_y = [(-2.5, -1.5), (-0.5, 0.5), (1.5, 2.5), (-2.5, 2.5), (-2.5, 1.5), (-2.5, 1.5), (-2.5, 2.5), (-2.5, -1.5), - (-0.5, 0.5), (1.5, 2.5), - (2.5, 2.5), (2.5, 2.5), (1.5, 1.5), (1.5, 1.5), (0.5, 0.5), (-0.5, -0.5), (-1.5, -1.5), (-2.5, -2.5), - (-2.5, -2.5), (-2.5, -2.5), ] - fields = [] - - for (b_x_i, b_y_i) in zip(box_x, box_y): # Generate mesh refinement boxes around the absortion boundaries - field = gmsh.model.mesh.field.add("Box") - gmsh.model.mesh.field.setNumber(field, "VIn", lc / sigma_t) - gmsh.model.mesh.field.setNumber(field, "VOut", lc) - gmsh.model.mesh.field.setNumber(field, "XMin", b_x_i[0] - refinement_box_width) - gmsh.model.mesh.field.setNumber(field, "XMax", b_x_i[1] + refinement_box_width) - gmsh.model.mesh.field.setNumber(field, "YMin", b_y_i[0] - refinement_box_width) - gmsh.model.mesh.field.setNumber(field, "YMax", b_y_i[1] + refinement_box_width) - gmsh.model.mesh.field.setNumber(field, "Thickness", transition_thickness) - fields.append(field) - min_field = gmsh.model.mesh.field.add("Min") # use the minimum of all the fields as the background mesh field: - gmsh.model.mesh.field.setNumbers(min_field, "FieldsList", fields) - gmsh.model.mesh.field.setAsBackgroundMesh(min_field) - gmsh.model.occ.synchronize() - - # gmsh.model.occ.removeAllDuplicates() - - # mark boundaries - boundary_lines = gmsh.model.occ.getEntities(1) # 1 specifies edges (lines) - surface = gmsh.model.occ.getEntities(2) # 1 specifies edges (lines) - - boundary_marker = gmsh.model.addPhysicalGroup(1, [l[1] for l in boundary_lines[:4]]) - gmsh.model.setPhysicalName(1, boundary_marker, "void") - surface_marker = gmsh.model.addPhysicalGroup(2, [s[1] for s in surface]) - gmsh.model.setPhysicalName(2, surface_marker, "domain") - gmsh.model.occ.synchronize() - - # gmsh.model.mesh.setRecombine(2, surface_marker) - - gmsh.model.mesh.generate(2) - - # gmsh.write(filename + ".msh") - # os.system('gmsh ' + filename + '.msh -2 -format su2 -save_all') - - gmsh.write(filename + ".vtk") - gmsh.write(filename + ".su2") - # gmsh.write(filename + ".geo_unrolled") - # Launch the GUI to see the results: - # if '-nopopup' not in sys.argv: - # gmsh.fltk.run() - # os.system('gmsh ' + filename + '.geo_unrolled -2 -format su2 -save_all') - - gmsh.finalize() # finalize gmsh - - return 0 - - -if __name__ == '__main__': - print("---------- Start Creating the mesh ------------") - print("Parsing options") - # --- parse options --- - parser = OptionParser() - parser.add_option("-o", "--output_name", dest="output_name", default="../lattice_refined") - parser.add_option("-c", "--char_length", dest="char_length", default=0.1) - parser.add_option("-s", "--sigma_t", dest="sigma_t", default=11) - (options, args) = parser.parse_args() - options.output_name = str(options.output_name) - options.char_length = float(options.char_length) - options.sigma_t = float(options.sigma_t) - main(options.output_name, options.char_length, options.sigma_t) From 6e5c3fc776bdb27f13d1add7dbb0e6ab286859f4 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Fri, 29 Dec 2023 16:30:34 -0500 Subject: [PATCH 030/155] updated requirements --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 3f7e1738..2d406a6b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ pygmsh==6.1.1 numpy pydicom +gmsh \ No newline at end of file From 66344d82c03aa838ebb633effe4f0125b95a271e Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Sun, 31 Dec 2023 11:09:52 -0500 Subject: [PATCH 031/155] fixed computation of the characteristic length in 2d --- examples/meshes/lattice_refined.geo | 4 ++-- src/solvers/solverbase.cpp | 12 +++++++----- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/examples/meshes/lattice_refined.geo b/examples/meshes/lattice_refined.geo index d981a915..dea72d8f 100644 --- a/examples/meshes/lattice_refined.geo +++ b/examples/meshes/lattice_refined.geo @@ -1,5 +1,5 @@ -cl_fine = 0.01; -cl_coarse = 0.1; +cl_fine = 0.02; +cl_coarse = 0.2; length = 0.05; Point(1) = {-3.5, -3.5, 0, cl_coarse}; Point(2) = {3.5, -3.5, 0, cl_coarse}; diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 03172589..b28d8a9a 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -14,6 +14,8 @@ #include "solvers/pnsolver.hpp" #include "solvers/snsolver.hpp" #include "toolboxes/textprocessingtoolbox.hpp" +#include +#include #include SolverBase::SolverBase( Config* settings ) { @@ -206,14 +208,14 @@ double SolverBase::ComputeTimeStep( double cfl ) const { default: break; // 2d as normal } // 2D case - double maxEdge = -1.0; + double charSize = __DBL_MAX__; // minimum char size of all mesh cells in the mesh for( unsigned j = 0; j < _nCells; j++ ) { - for( unsigned l = 0; l < _normals[j].size(); l++ ) { - double currentEdge = _areas[j] / norm( _normals[j][l] ); - if( currentEdge > maxEdge ) maxEdge = currentEdge; + double currCharSize = sqrt( _areas[j] ); + if( currCharSize < charSize ) { + charSize = currCharSize; } } - return cfl * maxEdge; + return cfl * charSize; } // --- IO ---- From 2715c02b716846dacc12edaf7689b8ed3eda1a0a Mon Sep 17 00:00:00 2001 From: Steffen Date: Tue, 2 Jan 2024 11:26:32 -0500 Subject: [PATCH 032/155] mesh io verbose --- src/common/io.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/io.cpp b/src/common/io.cpp index 89e9bf79..f59d1975 100644 --- a/src/common/io.cpp +++ b/src/common/io.cpp @@ -296,7 +296,7 @@ Mesh* LoadSU2MeshFromFile( const Config* settings ) { ErrorMessages::Error( "Cannot open mesh file '" + settings->GetMeshFile() + "!", CURRENT_FUNCTION ); } ifs.close(); - // log->info( "| Mesh imported." ); + log->info( "| Mesh imported." ); return new Mesh( nodes, cells, boundaries ); } From 45fafdb30aa1b2648309911e28a234df1df81e2c Mon Sep 17 00:00:00 2001 From: Steffen Date: Tue, 2 Jan 2024 11:28:19 -0500 Subject: [PATCH 033/155] mesh io verbose --- src/common/mesh.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index ba7368ab..abd210e7 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -168,6 +168,7 @@ void Mesh::ComputeConnectivity() { // assign boundary types to all cells _cellBoundaryTypes.resize( _numCells, BOUNDARY_TYPE::NONE ); +#pragma omp parallel for for( unsigned i = 0; i < _numCells; ++i ) { if( std::any_of( _cellNeighbors[i].begin(), _cellNeighbors[i].end(), [this]( unsigned i ) { return i == _ghostCellID; From 1ead3a187f08c73236a09d07631b430e14e9a68d Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Tue, 2 Jan 2024 11:45:25 -0500 Subject: [PATCH 034/155] added folder for mesh files geo --- .../{ => geo_files}/lattice_refined.geo | 0 examples/meshes/geo_files/lattice_uniform.geo | 213 ++++++++++++++++++ 2 files changed, 213 insertions(+) rename examples/meshes/{ => geo_files}/lattice_refined.geo (100%) create mode 100644 examples/meshes/geo_files/lattice_uniform.geo diff --git a/examples/meshes/lattice_refined.geo b/examples/meshes/geo_files/lattice_refined.geo similarity index 100% rename from examples/meshes/lattice_refined.geo rename to examples/meshes/geo_files/lattice_refined.geo diff --git a/examples/meshes/geo_files/lattice_uniform.geo b/examples/meshes/geo_files/lattice_uniform.geo new file mode 100644 index 00000000..b3228028 --- /dev/null +++ b/examples/meshes/geo_files/lattice_uniform.geo @@ -0,0 +1,213 @@ +cl_fine = 0.075; +cl_coarse = 0.1; +length = 0.05; +Point(1) = {-3.5, -3.5, 0, cl_coarse}; +Point(2) = {3.5, -3.5, 0, cl_coarse}; +Point(3) = {-3.5, 3.5, 0, cl_coarse}; +Point(4) = {3.5, 3.5, 0, cl_coarse}; +Point(5) = {-1.5, -1.5, 0, cl_fine}; +Point(6) = {-2.5, -1.5, 0, cl_fine}; +Point(7) = {-2.5, -2.5, 0, cl_fine}; +Point(8) = {-1.5, -2.5, 0, cl_fine}; +Point(9) = {1.5, -1.5, 0, cl_fine}; +Point(10) = {1.5, -2.5, 0, cl_fine}; +Point(11) = {2.5, -2.5, 0, cl_fine}; +Point(12) = {2.5, -1.5, 0, cl_fine}; +Point(13) = {-1.5, 1.5, 0, cl_fine}; +Point(14) = {-1.5, 0.5, 0, cl_fine}; +Point(15) = {-2.5, 0.5, 0, cl_fine}; +Point(16) = {-2.5, -0.5, 0, cl_fine}; +Point(17) = {-1.5, -0.5, 0, cl_fine}; +Point(18) = {-0.5, -1.5, 0, cl_fine}; +Point(19) = {-0.5, -2.5, 0, cl_fine}; +Point(20) = {0.5, -2.5, 0, cl_fine}; +Point(21) = {0.5, -1.5, 0, cl_fine}; +Point(22) = {1.5, -0.5, 0, cl_fine}; +Point(23) = {2.5, -0.5, 0, cl_fine}; +Point(24) = {2.5, 0.5, 0, cl_fine}; +Point(25) = {1.5, 0.5, 0, cl_fine}; +Point(26) = {1.5, 1.5, 0, cl_fine}; +Point(27) = {0.5, 1.5, 0, cl_fine}; +Point(28) = {0.5, 0.5, 0, cl_fine}; +Point(29) = {-0.5, 0.5, 0, cl_fine}; +Point(30) = {-0.5, 1.5, 0, cl_fine}; +Point(31) = {-2.5, 1.5, 0, cl_fine}; +Point(32) = {-1.5, 2.5, 0, cl_fine}; +Point(33) = {-2.5, 2.5, 0, cl_fine}; +Point(34) = {2.5, 1.5, 0, cl_fine}; +Point(35) = {2.5, 2.5, 0, cl_fine}; +Point(36) = {1.5, 2.5, 0, cl_fine}; +Point(37) = {-0.5, -0.5, 0, cl_fine}; +Point(38) = {0.5, -0.5, 0, cl_fine}; +//+ +Line(1) = {3, 1}; +//+ +Line(2) = {1, 2}; +//+ +Line(3) = {2, 4}; +//+ +Line(4) = {4, 3}; +//+ +Line(5) = {29, 37}; +//+ +Line(6) = {37, 38}; +//+ +Line(7) = {38, 28}; +//+ +Line(8) = {28, 29}; +//+ +Line(9) = {29, 14}; +//+ +Line(10) = {14, 13}; +//+ +Line(11) = {13, 30}; +//+ +Line(12) = {30, 29}; +//+ +Line(13) = {27, 26}; +//+ +Line(14) = {26, 25}; +//+ +Line(15) = {25, 28}; +//+ +Line(16) = {28, 27}; +//+ +Line(17) = {26, 36}; +//+ +Line(18) = {36, 35}; +//+ +Line(19) = {34, 35}; +//+ +Line(20) = {34, 26}; +//+ +Line(21) = {24, 23}; +//+ +Line(22) = {23, 22}; +//+ +Line(23) = {22, 25}; +//+ +Line(24) = {25, 24}; +//+ +Line(25) = {9, 10}; +//+ +Line(26) = {10, 11}; +//+ +Line(27) = {11, 12}; +//+ +Line(28) = {12, 9}; +//+ +Line(29) = {9, 21}; +//+ +Line(30) = {21, 38}; +//+ +Line(31) = {38, 22}; +//+ +Line(32) = {22, 9}; +//+ +Line(33) = {20, 21}; +//+ +Line(34) = {21, 18}; +//+ +Line(35) = {19, 18}; +//+ +Line(36) = {19, 20}; +//+ +Line(37) = {37, 17}; +//+ +Line(38) = {5, 17}; +//+ +Line(39) = {5, 18}; +//+ +Line(40) = {18, 37}; +//+ +Line(41) = {14, 15}; +//+ +Line(42) = {15, 16}; +//+ +Line(43) = {16, 17}; +//+ +Line(44) = {17, 14}; +//+ +Line(45) = {32, 13}; +//+ +Line(46) = {13, 31}; +//+ +Line(47) = {31, 33}; +//+ +Line(48) = {33, 32}; +//+ +Line(49) = {6, 7}; +//+ +Line(50) = {7, 8}; +//+ +Line(51) = {8, 5}; +//+ +Line(52) = {5, 6}; +//+ +Curve Loop(1) = {5, 6, 7, 8}; +//+ +Plane Surface(1) = {1}; +//+ +Curve Loop(2) = {1, 2, 3, 4}; +//+ +Curve Loop(3) = {8, -12, -11, -10, 41, 42, 43, -38, 39, -35, 36, 33, -29, -32, -22, -21, -24, -14, -13, -16}; +//+ +Curve Loop(4) = {45, 46, 47, 48}; +//+ +Curve Loop(5) = {19, -18, -17, -20}; +//+ +Curve Loop(6) = {28, 25, 26, 27}; +//+ +Curve Loop(7) = {51, 52, 49, 50}; +//+ +Plane Surface(2) = {2, 3, 4, 5, 6, 7}; +//+ +Plane Surface(3) = {4}; +//+ +Curve Loop(8) = {12, 9, 10, 11}; +//+ +Plane Surface(4) = {8}; +//+ +Curve Loop(9) = {44, -9, 5, 37}; +//+ +Plane Surface(5) = {9}; +//+ +Curve Loop(10) = {41, 42, 43, 44}; +//+ +Plane Surface(6) = {10}; +//+ +Curve Loop(11) = {37, -38, 39, 40}; +//+ +Plane Surface(7) = {11}; +//+ +Plane Surface(8) = {7}; +//+ +Curve Loop(12) = {35, -34, -33, -36}; +//+ +Plane Surface(9) = {12}; +//+ +Curve Loop(13) = {30, -6, -40, -34}; +//+ +Plane Surface(10) = {13}; +//+ +Curve Loop(14) = {29, 30, 31, 32}; +//+ +Plane Surface(11) = {14}; +//+ +Plane Surface(12) = {6}; +//+ +Curve Loop(15) = {22, 23, 24, 21}; +//+ +Plane Surface(13) = {15}; +//+ +Curve Loop(16) = {15, -7, 31, 23}; +//+ +Plane Surface(14) = {16}; +//+ +Curve Loop(17) = {13, 14, 15, 16}; +//+ +Plane Surface(15) = {17}; +//+ +Plane Surface(16) = {5}; +//+ +Physical Curve("void", 53) = {1, 2, 3, 4}; From 71fde4c84e6f8ece15df22e7ee13d88b6d47d411 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Tue, 2 Jan 2024 11:52:22 -0500 Subject: [PATCH 035/155] cascading file lattice --- examples/cascade_lattice.py | 119 ++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 examples/cascade_lattice.py diff --git a/examples/cascade_lattice.py b/examples/cascade_lattice.py new file mode 100644 index 00000000..8493076d --- /dev/null +++ b/examples/cascade_lattice.py @@ -0,0 +1,119 @@ +import os +import subprocess + + +def main(): + # Example usage: + quad_order = 19 + cl_fine_vals = [0.02, 0.01, 0.005] + cl_coarse = 0.075 + cl_boundary = 0.2 + length = 0.075 + + for i in range(3): + cl_fine = cl_fine_vals[i] + modify_and_run_geo_file( + cl_fine=cl_fine, cl_coarse=cl_coarse, cl_boundary=cl_boundary, length=length + ) + modify_quad_order(quad_order=quad_order) + new_log_file, log_dir = modify_and_save_log_file( + quad_order, cl_fine, cl_coarse, cl_boundary, length + ) + print(f"New log file name: {new_log_file}") + print(f"Log directory: {log_dir}") + run_cpp_program(config_file_path="lattice.cfg") + + return 0 + + +def modify_and_run_geo_file(cl_fine, cl_coarse, cl_boundary, length): + # Define the file path + geo_file_path = "meshes/geo_files/lattice_refined.geo" + + # Read the contents of the .geo file + with open(geo_file_path, "r") as file: + lines = file.readlines() + + # Modify the variables in the first 4 lines + lines[0] = f"cl_fine = {cl_fine};\n" + lines[1] = f"cl_coarse = {cl_coarse};\n" + lines[2] = f"cl_boundary = {cl_boundary};\n" + lines[3] = f"length = {length};\n" + + # Save the modified .geo file + with open(geo_file_path, "w") as file: + file.writelines(lines) + + # Execute the command + command = f"gmsh {geo_file_path} -2 -format su2 -save_all" + os.system(command) + + +def modify_quad_order(quad_order): + # Define the file path + cfg_file_path = "lattice.cfg" + + # Read the contents of the lattice.cfg file + with open(cfg_file_path, "r") as file: + lines = file.readlines() + + # Find the line containing "QUAD_ORDER" and modify it + for i, line in enumerate(lines): + if "QUAD_ORDER" in line: + lines[i] = f"QUAD_ORDER = {quad_order}\n" + break + + # Save the modified lattice.cfg file + with open(cfg_file_path, "w") as file: + file.writelines(lines) + + +def modify_and_save_log_file(quad_order, cl_fine, cl_coarse, cl_boundary, length): + # Define the file path + cfg_file_path = "lattice.cfg" + + # Read the contents of the lattice.cfg file + with open(cfg_file_path, "r") as file: + lines = file.readlines() + + # Identify the lines containing "LOG_DIR" and "LOG_FILE" + log_dir_line = next(line for line in lines if "LOG_DIR" in line) + log_file_line = next(line for line in lines if "LOG_FILE" in line) + + print(log_file_line) + # Extract the current log directory and file name + current_log_dir = log_dir_line.split("=")[1].strip() + current_log_file = log_file_line.split("=")[1].strip() + + # Construct the new log file name + new_log_file = f"lattice_quad_order_{quad_order}_cl_fine_{cl_fine}_cl_coarse_{cl_coarse}_cl_boundary_{cl_boundary}_length_{length}" + + # Update the log file name in the lines list + log_file_line_new = f"LOG_FILE = {new_log_file}\n" + lines[lines.index(log_file_line)] = log_file_line_new + + # Save the modified lattice.cfg file + with open(cfg_file_path, "w") as file: + file.writelines(lines) + + # Return the new log file name and log directory + return new_log_file, current_log_dir + + +def run_cpp_program(config_file_path): + # Define the path to the C++ program + cpp_program_path = "../build/KiT-RT" + + # Construct the command to run the C++ program with the specified configuration file + command = [cpp_program_path, config_file_path] + + try: + # Run the C++ program + subprocess.run(command, check=True) + print("C++ program executed successfully.") + except subprocess.CalledProcessError as e: + print(f"Error running C++ program: {e}") + + +if __name__ == "__main__": + main() From 4e74a353ce54ac209966caededce958babe7bcb2 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 2 Jan 2024 11:54:53 -0500 Subject: [PATCH 036/155] repaired lattice geo file --- examples/meshes/geo_files/lattice_refined.geo | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/examples/meshes/geo_files/lattice_refined.geo b/examples/meshes/geo_files/lattice_refined.geo index dea72d8f..0f4557bb 100644 --- a/examples/meshes/geo_files/lattice_refined.geo +++ b/examples/meshes/geo_files/lattice_refined.geo @@ -1,10 +1,12 @@ cl_fine = 0.02; -cl_coarse = 0.2; -length = 0.05; -Point(1) = {-3.5, -3.5, 0, cl_coarse}; -Point(2) = {3.5, -3.5, 0, cl_coarse}; -Point(3) = {-3.5, 3.5, 0, cl_coarse}; -Point(4) = {3.5, 3.5, 0, cl_coarse}; +cl_coarse = 0.075; +cl_boundary = 0.2; +length = 0.075; +length = 0.075; +Point(1) = {-3.5, -3.5, 0, cl_boundary}; +Point(2) = {3.5, -3.5, 0, cl_boundary}; +Point(3) = {-3.5, 3.5, 0, cl_boundary}; +Point(4) = {3.5, 3.5, 0, cl_boundary}; Point(5) = {-1.5, -1.5, 0, cl_fine}; Point(6) = {-2.5, -1.5, 0, cl_fine}; Point(7) = {-2.5, -2.5, 0, cl_fine}; From 49c69673c6f972c6ea723dbdc3e01a91aace8cd2 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 2 Jan 2024 11:55:43 -0500 Subject: [PATCH 037/155] fixed geo file --- examples/meshes/geo_files/lattice_refined.geo | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/meshes/geo_files/lattice_refined.geo b/examples/meshes/geo_files/lattice_refined.geo index 0f4557bb..a3ee2a81 100644 --- a/examples/meshes/geo_files/lattice_refined.geo +++ b/examples/meshes/geo_files/lattice_refined.geo @@ -2,7 +2,6 @@ cl_fine = 0.02; cl_coarse = 0.075; cl_boundary = 0.2; length = 0.075; -length = 0.075; Point(1) = {-3.5, -3.5, 0, cl_boundary}; Point(2) = {3.5, -3.5, 0, cl_boundary}; Point(3) = {-3.5, 3.5, 0, cl_boundary}; From 180f0503e4df72048ed390b2002925c6342e50ef Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 2 Jan 2024 11:59:05 -0500 Subject: [PATCH 038/155] adapted cascade file --- examples/cascade_lattice.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/cascade_lattice.py b/examples/cascade_lattice.py index 8493076d..b423dc81 100644 --- a/examples/cascade_lattice.py +++ b/examples/cascade_lattice.py @@ -5,12 +5,12 @@ def main(): # Example usage: quad_order = 19 - cl_fine_vals = [0.02, 0.01, 0.005] + cl_fine_vals = [0.05, 0.02, 0.01, 0.005] cl_coarse = 0.075 cl_boundary = 0.2 length = 0.075 - for i in range(3): + for i in range(len(cl_fine_vals)): cl_fine = cl_fine_vals[i] modify_and_run_geo_file( cl_fine=cl_fine, cl_coarse=cl_coarse, cl_boundary=cl_boundary, length=length @@ -79,6 +79,7 @@ def modify_and_save_log_file(quad_order, cl_fine, cl_coarse, cl_boundary, length # Identify the lines containing "LOG_DIR" and "LOG_FILE" log_dir_line = next(line for line in lines if "LOG_DIR" in line) log_file_line = next(line for line in lines if "LOG_FILE" in line) + vtk_file_line = next(line for line in lines if "OUTPUT_FILE" in line) print(log_file_line) # Extract the current log directory and file name @@ -87,10 +88,13 @@ def modify_and_save_log_file(quad_order, cl_fine, cl_coarse, cl_boundary, length # Construct the new log file name new_log_file = f"lattice_quad_order_{quad_order}_cl_fine_{cl_fine}_cl_coarse_{cl_coarse}_cl_boundary_{cl_boundary}_length_{length}" + new_vtk_file = f"lattice_quad_order_{quad_order}_cl_fine_{cl_fine}_cl_coarse_{cl_coarse}_cl_boundary_{cl_boundary}_length_{length}" # Update the log file name in the lines list log_file_line_new = f"LOG_FILE = {new_log_file}\n" + vtk_file_line_new = f"OUTPUT_FILE = {new_vtk_file}\n" lines[lines.index(log_file_line)] = log_file_line_new + lines[lines.index(vtk_file_line)] = vtk_file_line_new # Save the modified lattice.cfg file with open(cfg_file_path, "w") as file: From a6f2eef39ea6270c42ce5bc3f62bdb09c4a3a154 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Wed, 3 Jan 2024 13:06:55 -0500 Subject: [PATCH 039/155] added geo file for rectangular meshes --- .../meshes/geo_files/lattice_rectangular.geo | 713 ++++++++++++++++++ examples/meshes/geo_files/lattice_uniform.geo | 14 + .../create_lattice_mesh_unstr_refined.py | 2 +- 3 files changed, 728 insertions(+), 1 deletion(-) create mode 100644 examples/meshes/geo_files/lattice_rectangular.geo diff --git a/examples/meshes/geo_files/lattice_rectangular.geo b/examples/meshes/geo_files/lattice_rectangular.geo new file mode 100644 index 00000000..4a22c948 --- /dev/null +++ b/examples/meshes/geo_files/lattice_rectangular.geo @@ -0,0 +1,713 @@ +cl_fine = 0.25; +n_recombine = 20; + +Point(1) = {-3.5, -3.5, 0, cl_fine}; +Point(2) = {3.5, -3.5, 0, cl_fine}; +Point(3) = {-3.5, 3.5, 0, cl_fine}; +Point(4) = {3.5, 3.5, 0, cl_fine}; +//+ +//+ +Line(1) = {1, 2}; +//+ +Line(2) = {2, 4}; +//+ +Line(3) = {4, 3}; +//+ +Line(4) = {3, 1}; +Physical Curve("void", 1) = {1,2,3,4}; + +// Inner grid +Point(5) = { -2.5, -2.5, 0, cl_fine }; +Point(6) = { -2.5, -2.0, 0, cl_fine }; +Point(7) = { -2.5, -1.5, 0, cl_fine }; +Point(8) = { -2.5, -1.0, 0, cl_fine }; +Point(9) = { -2.5, -0.5, 0, cl_fine }; +Point(10) = { -2.5, 0.0, 0, cl_fine }; +Point(11) = { -2.5, 0.5, 0, cl_fine }; +Point(12) = { -2.5, 1.0, 0, cl_fine }; +Point(13) = { -2.5, 1.5, 0, cl_fine }; +Point(14) = { -2.5, 2.0, 0, cl_fine }; +Point(15) = { -2.5, 2.5, 0, cl_fine }; +Point(16) = { -2.0, -2.5, 0, cl_fine }; +Point(17) = { -2.0, -2.0, 0, cl_fine }; +Point(18) = { -2.0, -1.5, 0, cl_fine }; +Point(19) = { -2.0, -1.0, 0, cl_fine }; +Point(20) = { -2.0, -0.5, 0, cl_fine }; +Point(21) = { -2.0, 0.0, 0, cl_fine }; +Point(22) = { -2.0, 0.5, 0, cl_fine }; +Point(23) = { -2.0, 1.0, 0, cl_fine }; +Point(24) = { -2.0, 1.5, 0, cl_fine }; +Point(25) = { -2.0, 2.0, 0, cl_fine }; +Point(26) = { -2.0, 2.5, 0, cl_fine }; +Point(27) = { -1.5, -2.5, 0, cl_fine }; +Point(28) = { -1.5, -2.0, 0, cl_fine }; +Point(29) = { -1.5, -1.5, 0, cl_fine }; +Point(30) = { -1.5, -1.0, 0, cl_fine }; +Point(31) = { -1.5, -0.5, 0, cl_fine }; +Point(32) = { -1.5, 0.0, 0, cl_fine }; +Point(33) = { -1.5, 0.5, 0, cl_fine }; +Point(34) = { -1.5, 1.0, 0, cl_fine }; +Point(35) = { -1.5, 1.5, 0, cl_fine }; +Point(36) = { -1.5, 2.0, 0, cl_fine }; +Point(37) = { -1.5, 2.5, 0, cl_fine }; +Point(38) = { -1.0, -2.5, 0, cl_fine }; +Point(39) = { -1.0, -2.0, 0, cl_fine }; +Point(40) = { -1.0, -1.5, 0, cl_fine }; +Point(41) = { -1.0, -1.0, 0, cl_fine }; +Point(42) = { -1.0, -0.5, 0, cl_fine }; +Point(43) = { -1.0, 0.0, 0, cl_fine }; +Point(44) = { -1.0, 0.5, 0, cl_fine }; +Point(45) = { -1.0, 1.0, 0, cl_fine }; +Point(46) = { -1.0, 1.5, 0, cl_fine }; +Point(47) = { -1.0, 2.0, 0, cl_fine }; +Point(48) = { -1.0, 2.5, 0, cl_fine }; +Point(49) = { -0.5, -2.5, 0, cl_fine }; +Point(50) = { -0.5, -2.0, 0, cl_fine }; +Point(51) = { -0.5, -1.5, 0, cl_fine }; +Point(52) = { -0.5, -1.0, 0, cl_fine }; +Point(53) = { -0.5, -0.5, 0, cl_fine }; +Point(54) = { -0.5, 0.0, 0, cl_fine }; +Point(55) = { -0.5, 0.5, 0, cl_fine }; +Point(56) = { -0.5, 1.0, 0, cl_fine }; +Point(57) = { -0.5, 1.5, 0, cl_fine }; +Point(58) = { -0.5, 2.0, 0, cl_fine }; +Point(59) = { -0.5, 2.5, 0, cl_fine }; +Point(60) = { 0.0, -2.5, 0, cl_fine }; +Point(61) = { 0.0, -2.0, 0, cl_fine }; +Point(62) = { 0.0, -1.5, 0, cl_fine }; +Point(63) = { 0.0, -1.0, 0, cl_fine }; +Point(64) = { 0.0, -0.5, 0, cl_fine }; +Point(65) = { 0.0, 0.0, 0, cl_fine }; +Point(66) = { 0.0, 0.5, 0, cl_fine }; +Point(67) = { 0.0, 1.0, 0, cl_fine }; +Point(68) = { 0.0, 1.5, 0, cl_fine }; +Point(69) = { 0.0, 2.0, 0, cl_fine }; +Point(70) = { 0.0, 2.5, 0, cl_fine }; +Point(71) = { 0.5, -2.5, 0, cl_fine }; +Point(72) = { 0.5, -2.0, 0, cl_fine }; +Point(73) = { 0.5, -1.5, 0, cl_fine }; +Point(74) = { 0.5, -1.0, 0, cl_fine }; +Point(75) = { 0.5, -0.5, 0, cl_fine }; +Point(76) = { 0.5, 0.0, 0, cl_fine }; +Point(77) = { 0.5, 0.5, 0, cl_fine }; +Point(78) = { 0.5, 1.0, 0, cl_fine }; +Point(79) = { 0.5, 1.5, 0, cl_fine }; +Point(80) = { 0.5, 2.0, 0, cl_fine }; +Point(81) = { 0.5, 2.5, 0, cl_fine }; +Point(82) = { 1.0, -2.5, 0, cl_fine }; +Point(83) = { 1.0, -2.0, 0, cl_fine }; +Point(84) = { 1.0, -1.5, 0, cl_fine }; +Point(85) = { 1.0, -1.0, 0, cl_fine }; +Point(86) = { 1.0, -0.5, 0, cl_fine }; +Point(87) = { 1.0, 0.0, 0, cl_fine }; +Point(88) = { 1.0, 0.5, 0, cl_fine }; +Point(89) = { 1.0, 1.0, 0, cl_fine }; +Point(90) = { 1.0, 1.5, 0, cl_fine }; +Point(91) = { 1.0, 2.0, 0, cl_fine }; +Point(92) = { 1.0, 2.5, 0, cl_fine }; +Point(93) = { 1.5, -2.5, 0, cl_fine }; +Point(94) = { 1.5, -2.0, 0, cl_fine }; +Point(95) = { 1.5, -1.5, 0, cl_fine }; +Point(96) = { 1.5, -1.0, 0, cl_fine }; +Point(97) = { 1.5, -0.5, 0, cl_fine }; +Point(98) = { 1.5, 0.0, 0, cl_fine }; +Point(99) = { 1.5, 0.5, 0, cl_fine }; +Point(100) = { 1.5, 1.0, 0, cl_fine }; +Point(101) = { 1.5, 1.5, 0, cl_fine }; +Point(102) = { 1.5, 2.0, 0, cl_fine }; +Point(103) = { 1.5, 2.5, 0, cl_fine }; +Point(104) = { 2.0, -2.5, 0, cl_fine }; +Point(105) = { 2.0, -2.0, 0, cl_fine }; +Point(106) = { 2.0, -1.5, 0, cl_fine }; +Point(107) = { 2.0, -1.0, 0, cl_fine }; +Point(108) = { 2.0, -0.5, 0, cl_fine }; +Point(109) = { 2.0, 0.0, 0, cl_fine }; +Point(110) = { 2.0, 0.5, 0, cl_fine }; +Point(111) = { 2.0, 1.0, 0, cl_fine }; +Point(112) = { 2.0, 1.5, 0, cl_fine }; +Point(113) = { 2.0, 2.0, 0, cl_fine }; +Point(114) = { 2.0, 2.5, 0, cl_fine }; +Point(115) = { 2.5, -2.5, 0, cl_fine }; +Point(116) = { 2.5, -2.0, 0, cl_fine }; +Point(117) = { 2.5, -1.5, 0, cl_fine }; +Point(118) = { 2.5, -1.0, 0, cl_fine }; +Point(119) = { 2.5, -0.5, 0, cl_fine }; +Point(120) = { 2.5, 0.0, 0, cl_fine }; +Point(121) = { 2.5, 0.5, 0, cl_fine }; +Point(122) = { 2.5, 1.0, 0, cl_fine }; +Point(123) = { 2.5, 1.5, 0, cl_fine }; +Point(124) = { 2.5, 2.0, 0, cl_fine }; +Point(125) = { 2.5, 2.5, 0, cl_fine }; + +// Horizontal and vertical lines in inner grid +Line(5) = { 5, 16}; +Line(6) = { 6, 17}; +Line(7) = { 7, 18}; +Line(8) = { 8, 19}; +Line(9) = { 9, 20}; +Line(10) = { 10, 21}; +Line(11) = { 11, 22}; +Line(12) = { 12, 23}; +Line(13) = { 13, 24}; +Line(14) = { 14, 25}; +Line(15) = { 15, 26}; +Line(16) = { 27, 16}; +Line(17) = { 28, 17}; +Line(18) = { 29, 18}; +Line(19) = { 30, 19}; +Line(20) = { 31, 20}; +Line(21) = { 32, 21}; +Line(22) = { 33, 22}; +Line(23) = { 34, 23}; +Line(24) = { 35, 24}; +Line(25) = { 36, 25}; +Line(26) = { 37, 26}; +Line(27) = { 27, 38}; +Line(28) = { 28, 39}; +Line(29) = { 29, 40}; +Line(30) = { 30, 41}; +Line(31) = { 31, 42}; +Line(32) = { 32, 43}; +Line(33) = { 33, 44}; +Line(34) = { 34, 45}; +Line(35) = { 35, 46}; +Line(36) = { 36, 47}; +Line(37) = { 37, 48}; +Line(38) = { 49, 38}; +Line(39) = { 50, 39}; +Line(40) = { 51, 40}; +Line(41) = { 52, 41}; +Line(42) = { 53, 42}; +Line(43) = { 54, 43}; +Line(44) = { 55, 44}; +Line(45) = { 56, 45}; +Line(46) = { 57, 46}; +Line(47) = { 58, 47}; +Line(48) = { 59, 48}; +Line(49) = { 49, 60}; +Line(50) = { 50, 61}; +Line(51) = { 51, 62}; +Line(52) = { 52, 63}; +Line(53) = { 53, 64}; +Line(54) = { 54, 65}; +Line(55) = { 55, 66}; +Line(56) = { 56, 67}; +Line(57) = { 57, 68}; +Line(58) = { 58, 69}; +Line(59) = { 59, 70}; +Line(60) = { 71, 60}; +Line(61) = { 72, 61}; +Line(62) = { 73, 62}; +Line(63) = { 74, 63}; +Line(64) = { 75, 64}; +Line(65) = { 76, 65}; +Line(66) = { 77, 66}; +Line(67) = { 78, 67}; +Line(68) = { 79, 68}; +Line(69) = { 80, 69}; +Line(70) = { 81, 70}; +Line(71) = { 71, 82}; +Line(72) = { 72, 83}; +Line(73) = { 73, 84}; +Line(74) = { 74, 85}; +Line(75) = { 75, 86}; +Line(76) = { 76, 87}; +Line(77) = { 77, 88}; +Line(78) = { 78, 89}; +Line(79) = { 79, 90}; +Line(80) = { 80, 91}; +Line(81) = { 81, 92}; +Line(82) = { 93, 82}; +Line(83) = { 94, 83}; +Line(84) = { 95, 84}; +Line(85) = { 96, 85}; +Line(86) = { 97, 86}; +Line(87) = { 98, 87}; +Line(88) = { 99, 88}; +Line(89) = { 100, 89}; +Line(90) = { 101, 90}; +Line(91) = { 102, 91}; +Line(92) = { 103, 92}; +Line(93) = { 93, 104}; +Line(94) = { 94, 105}; +Line(95) = { 95, 106}; +Line(96) = { 96, 107}; +Line(97) = { 97, 108}; +Line(98) = { 98, 109}; +Line(99) = { 99, 110}; +Line(100) = { 100, 111}; +Line(101) = { 101, 112}; +Line(102) = { 102, 113}; +Line(103) = { 103, 114}; +Line(104) = { 115, 104}; +Line(105) = { 116, 105}; +Line(106) = { 117, 106}; +Line(107) = { 118, 107}; +Line(108) = { 119, 108}; +Line(109) = { 120, 109}; +Line(110) = { 121, 110}; +Line(111) = { 122, 111}; +Line(112) = { 123, 112}; +Line(113) = { 124, 113}; +Line(114) = { 125, 114}; +Line(126) = { 5, 6}; +Line(127) = { 7, 6}; +Line(128) = { 7, 8}; +Line(129) = { 9, 8}; +Line(130) = { 9, 10}; +Line(131) = { 11, 10}; +Line(132) = { 11, 12}; +Line(133) = { 13, 12}; +Line(134) = { 13, 14}; +Line(135) = { 15, 14}; +Line(136) = { 16, 17}; +Line(137) = { 18, 17}; +Line(138) = { 18, 19}; +Line(139) = { 20, 19}; +Line(140) = { 20, 21}; +Line(141) = { 22, 21}; +Line(142) = { 22, 23}; +Line(143) = { 24, 23}; +Line(144) = { 24, 25}; +Line(145) = { 26, 25}; + +Line(146) = { 27, 28}; +Line(147) = { 29, 28}; +Line(148) = { 29, 30}; +Line(149) = { 31, 30}; +Line(150) = { 31, 32}; +Line(151) = { 33, 32}; +Line(152) = { 33, 34}; +Line(153) = { 35, 34}; +Line(154) = { 35, 36}; +Line(155) = { 37, 36}; + +Line(156) = { 38, 39}; +Line(157) = { 40, 39}; +Line(158) = { 40, 41}; +Line(159) = { 42, 41}; +Line(160) = { 42, 43}; +Line(161) = { 44, 43}; +Line(162) = { 44, 45}; +Line(163) = { 46, 45}; +Line(164) = { 46, 47}; +Line(165) = { 48, 47}; + +Line(166) = { 49, 50}; +Line(167) = { 51, 50}; +Line(168) = { 51, 52}; +Line(169) = { 53, 52}; +Line(170) = { 53, 54}; +Line(171) = { 55, 54}; +Line(172) = { 55, 56}; +Line(173) = { 57, 56}; +Line(174) = { 57, 58}; +Line(175) = { 59, 58}; + +Line(176) = { 60, 61}; +Line(177) = { 62, 61}; +Line(178) = { 62, 63}; +Line(179) = { 64, 63}; +Line(180) = { 64, 65}; +Line(181) = { 66, 65}; +Line(182) = { 66, 67}; +Line(183) = { 68, 67}; +Line(184) = { 68, 69}; +Line(185) = { 70, 69}; + +Line(186) = { 71, 72}; +Line(187) = { 73, 72}; +Line(188) = { 73, 74}; +Line(189) = { 75, 74}; +Line(190) = { 75, 76}; +Line(191) = { 77, 76}; +Line(192) = { 77, 78}; +Line(193) = { 79, 78}; +Line(194) = { 79, 80}; +Line(195) = { 81, 80}; + +Line(196) = { 82, 83}; +Line(197) = { 84, 83}; +Line(198) = { 84, 85}; +Line(199) = { 86, 85}; +Line(200) = { 86, 87}; +Line(201) = { 88, 87}; +Line(202) = { 88, 89}; +Line(203) = { 90, 89}; +Line(204) = { 90, 91}; +Line(205) = { 92, 91}; + +Line(206) = { 93, 94}; +Line(207) = { 95, 94}; +Line(208) = { 95, 96}; +Line(209) = { 97, 96}; +Line(210) = { 97, 98}; +Line(211) = { 99, 98}; +Line(212) = { 99, 100}; +Line(213) = { 101, 100}; +Line(214) = { 101, 102}; +Line(215) = { 103, 102}; + + +Line(216) = { 104, 105}; +Line(217) = { 106, 105}; +Line(218) = { 106, 107}; +Line(219) = { 108, 107}; +Line(220) = { 108, 109}; +Line(221) = { 110, 109}; +Line(222) = { 110, 111}; +Line(223) = { 112, 111}; +Line(224) = { 112, 113}; +Line(225) = { 114, 113}; + + +Line(226) = { 115, 116}; +Line(227) = { 117, 116}; +Line(228) = { 117, 118}; +Line(229) = { 119, 118}; +Line(230) = { 119, 120}; +Line(231) = { 121, 120}; +Line(232) = { 121, 122}; +Line(233) = { 123, 122}; +Line(234) = { 123, 124}; +Line(235) = { 125, 124}; + + +// Define inner surfaces +//+ +Curve Loop(1) = { 5, 136, -6, -126}; +Plane Surface(1) ={1}; +Curve Loop(2) = { 6, -137, -7, 127}; +Plane Surface(2) ={2}; +Curve Loop(3) = { 7, 138, -8, -128}; +Plane Surface(3) ={3}; +Curve Loop(4) = { 8, -139, -9, 129}; +Plane Surface(4) ={4}; +Curve Loop(5) = { 9, 140, -10, -130}; +Plane Surface(5) ={5}; +Curve Loop(6) = { 10, -141, -11, 131}; +Plane Surface(6) ={6}; +Curve Loop(7) = { 11, 142, -12, -132}; +Plane Surface(7) ={7}; +Curve Loop(8) = { 12, -143, -13, 133}; +Plane Surface(8) ={8}; +Curve Loop(9) = { 13, 144, -14, -134}; +Plane Surface(9) ={9}; +Curve Loop(10) = { 14, -145, -15, 135}; +Plane Surface(10) ={10}; +Curve Loop(11) = { -16, 146, 17, -136}; +Plane Surface(11) ={11}; +Curve Loop(12) = { -17, -147, 18, 137}; +Plane Surface(12) ={12}; +Curve Loop(13) = { -18, 148, 19, -138}; +Plane Surface(13) ={13}; +Curve Loop(14) = { -19, -149, 20, 139}; +Plane Surface(14) ={14}; +Curve Loop(15) = { -20, 150, 21, -140}; +Plane Surface(15) ={15}; +Curve Loop(16) = { -21, -151, 22, 141}; +Plane Surface(16) ={16}; +Curve Loop(17) = { -22, 152, 23, -142}; +Plane Surface(17) ={17}; +Curve Loop(18) = { -23, -153, 24, 143}; +Plane Surface(18) ={18}; +Curve Loop(19) = {-24, 154, 25, -144}; +Plane Surface(19) ={19}; +Curve Loop(20) = { -25, -155, 26, 145}; +Plane Surface(20) ={20}; +Curve Loop(21) = { 27, 156, -28, -146}; +Plane Surface(21) ={21}; +Curve Loop(22) = { 28, -157, -29, 147}; +Plane Surface(22) ={22}; +Curve Loop(23) = { 29, 158, -30, -148}; +Plane Surface(23) ={23}; +Curve Loop(24) = { 30, -159, -31, 149}; +Plane Surface(24) ={24}; +Curve Loop(25) = { 31, 160, -32, -150}; +Plane Surface(25) ={25}; +Curve Loop(26) = { 32, -161, -33, 151}; +Plane Surface(26) ={26}; +Curve Loop(27) = { 33, 162, -34, -152}; +Plane Surface(27) ={27}; +Curve Loop(28) = { 34, -163, -35, 153}; +Plane Surface(28) ={28}; +Curve Loop(29) = { 35, 164, -36, -154}; +Plane Surface(29) ={29}; +Curve Loop(30) = { 36, -165, -37, 155}; +Plane Surface(30) ={30}; +Curve Loop(31) = { -38, 166, 39, -156}; +Plane Surface(31) ={31}; +Curve Loop(32) = { -39, -167, 40, 157}; +Plane Surface(32) ={32}; +Curve Loop(33) = { -40, 168, 41, -158}; +Plane Surface(33) ={33}; +Curve Loop(34) = { -41, -169, 42, 159}; +Plane Surface(34) ={34}; +Curve Loop(35) = { -42, 170, 43, -160}; +Plane Surface(35) ={35}; +Curve Loop(36) = { -43, -171, 44, 161}; +Plane Surface(36) ={36}; +Curve Loop(37) = { -44, 172, 45, -162}; +Plane Surface(37) ={37}; +Curve Loop(38) = { -45, -173, 46, 163}; +Plane Surface(38) ={38}; +Curve Loop(39) = { -46, 174, 47, -164}; +Plane Surface(39) ={39}; +Curve Loop(40) = { -47, -175, 48, 165}; +Plane Surface(40) ={40}; +Curve Loop(41) = { 49, 176, -50, -166}; +Plane Surface(41) ={41}; +Curve Loop(42) = { 50, -177, -51, 167}; +Plane Surface(42) ={42}; +Curve Loop(43) = { 51, 178, -52, -168}; +Plane Surface(43) ={43}; +Curve Loop(44) = { 52, -179, -53, 169}; +Plane Surface(44) ={44}; +Curve Loop(45) = { 53, 180, -54, -170}; +Plane Surface(45) ={45}; +Curve Loop(46) = { 54, -181, -55, 171}; +Plane Surface(46) ={46}; +Curve Loop(47) = { 55, 182, -56, -172}; +Plane Surface(47) ={47}; +Curve Loop(48) = { 56, -183, -57, 173}; +Plane Surface(48) ={48}; +Curve Loop(49) = { 57, 184, -58, -174}; +Plane Surface(49) ={49}; +Curve Loop(50) = { 58, -185, -59, 175}; +Plane Surface(50) ={50}; +Curve Loop(51) = { -60, 186, 61, -176}; +Plane Surface(51) ={51}; +Curve Loop(52) = { -61, -187, 62, 177}; +Plane Surface(52) ={52}; +Curve Loop(53) = { -62, 188, 63, -178}; +Plane Surface(53) ={53}; +Curve Loop(54) = { -63, -189, 64, 179}; +Plane Surface(54) ={54}; +Curve Loop(55) = { -64, 190, 65, -180}; +Plane Surface(55) ={55}; +Curve Loop(56) = { -65, -191, 66, 181}; +Plane Surface(56) ={56}; +Curve Loop(57) = { -66, 192, 67, -182}; +Plane Surface(57) ={57}; +Curve Loop(58) = { -67, -193, 68, 183}; +Plane Surface(58) ={58}; +Curve Loop(59) = { -68, 194, 69, -184}; +Plane Surface(59) ={59}; +Curve Loop(60) = { -69, -195, 70, 185}; +Plane Surface(60) ={60}; +Curve Loop(61) = { 71, 196, -72, -186}; +Plane Surface(61) ={61}; +Curve Loop(62) = { 72, -197, -73, 187}; +Plane Surface(62) ={62}; +Curve Loop(63) = { 73, 198, -74, -188}; +Plane Surface(63) ={63}; +Curve Loop(64) = { 74, -199, -75, 189}; +Plane Surface(64) ={64}; +Curve Loop(65) = { 75, 200, -76, -190}; +Plane Surface(65) ={65}; +Curve Loop(66) = { 76, -201, -77, 191}; +Plane Surface(66) ={66}; +Curve Loop(67) = { 77, 202, -78, -192}; +Plane Surface(67) ={67}; +Curve Loop(68) = { 78, -203, -79, 193}; +Plane Surface(68) ={68}; +Curve Loop(69) = { 79, 204, -80, -194}; +Plane Surface(69) ={69}; +Curve Loop(70) = { 80, -205, -81, 195}; +Plane Surface(70) ={70}; +Curve Loop(71) = { -82, 206, 83, -196}; +Plane Surface(71) ={71}; +Curve Loop(72) = { -83, -207, 84, 197}; +Plane Surface(72) ={72}; +Curve Loop(73) = { -84, 208, 85, -198}; +Plane Surface(73) ={73}; +Curve Loop(74) = { -85, -209, 86, 199}; +Plane Surface(74) ={74}; +Curve Loop(75) = { -86, 210, 87, -200}; +Plane Surface(75) ={75}; +Curve Loop(76) = { -87, -211, 88, 201}; +Plane Surface(76) ={76}; +Curve Loop(77) = { -88, 212, 89, -202}; +Plane Surface(77) ={77}; +Curve Loop(78) = { -89, -213, 90, 203}; +Plane Surface(78) ={78}; +Curve Loop(79) = { -90, 214, 91, -204}; +Plane Surface(79) ={79}; +Curve Loop(80) = { -91, -215, 92, 205}; +Plane Surface(80) ={80}; +Curve Loop(81) = { 93, 216, -94, -206}; +Plane Surface(81) ={81}; +Curve Loop(82) = { 94, -217, -95, 207}; +Plane Surface(82) ={82}; +Curve Loop(83) = { 95, 218, -96, -208}; +Plane Surface(83) ={83}; +Curve Loop(84) = { 96, -219, -97, 209}; +Plane Surface(84) ={84}; +Curve Loop(85) = { 97, 220, -98, -210}; +Plane Surface(85) ={85}; +Curve Loop(86) = { 98, -221, -99, 211}; +Plane Surface(86) ={86}; +Curve Loop(87) = { 99, 222, -100, -212}; +Plane Surface(87) ={87}; +Curve Loop(88) = { 100, -223, -101, 213}; +Plane Surface(88) ={88}; +Curve Loop(89) = { 101, 224, -102, -214}; +Plane Surface(89) ={89}; +Curve Loop(90) = { 102, -225, -103, 215}; +Plane Surface(90) ={90}; +Curve Loop(91) = { -104, 226, 105, -216}; +Plane Surface(91) ={91}; +Curve Loop(92) = { -105, -227, 106, 217}; +Plane Surface(92) ={92}; +Curve Loop(93) = { -106, 228, 107, -218}; +Plane Surface(93) ={93}; +Curve Loop(94) = { -107, -229, 108, 219}; +Plane Surface(94) ={94}; +Curve Loop(95) = { -108, 230, 109, -220}; +Plane Surface(95) ={95}; +Curve Loop(96) = { -109, -231, 110, 221}; +Plane Surface(96) ={96}; +Curve Loop(97) = { -110, 232, 111, -222}; +Plane Surface(97) ={97}; +Curve Loop(98) = { -111, -233, 112, 223}; +Plane Surface(98) ={98}; +Curve Loop(99) = { -112, 234, 113, -224}; +Plane Surface(99) ={99}; +Curve Loop(100) = { -113, -235, 114, 225}; +Plane Surface(100) ={100}; + + +// "Outside area" +//Curve Loop(101) = {1, 2, 3, 4}; +//+ +//Curve Loop(102) = {5, -16, 27, -38, 49, -60, 71, -82, 93, -104, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 114, -103, 92, -81, 70, -59, 48, -37, 26, -15, -135, -134, -133, -132, -131, -130, -129, -128, -127, -126}; +//+ +//Plane Surface(101) = {101, 102}; + +//+ +Transfinite Surface {1}; +Transfinite Surface {2}; +Transfinite Surface {3}; +Transfinite Surface {4}; +Transfinite Surface {5}; +Transfinite Surface {6}; +Transfinite Surface {7}; +Transfinite Surface {8}; +Transfinite Surface {9}; +Transfinite Surface {10}; +Transfinite Surface {11}; +Transfinite Surface {12}; +Transfinite Surface {13}; +Transfinite Surface {14}; +Transfinite Surface {15}; +Transfinite Surface {16}; +Transfinite Surface {17}; +Transfinite Surface {18}; +Transfinite Surface {19}; +Transfinite Surface {20}; +Transfinite Surface {21}; +Transfinite Surface {22}; +Transfinite Surface {23}; +Transfinite Surface {24}; +Transfinite Surface {25}; +Transfinite Surface {26}; +Transfinite Surface {27}; +Transfinite Surface {28}; +Transfinite Surface {29}; +Transfinite Surface {30}; +Transfinite Surface {31}; +Transfinite Surface {32}; +Transfinite Surface {33}; +Transfinite Surface {34}; +Transfinite Surface {35}; +Transfinite Surface {36}; +Transfinite Surface {37}; +Transfinite Surface {38}; +Transfinite Surface {39}; +Transfinite Surface {40}; +Transfinite Surface {41}; +Transfinite Surface {42}; +Transfinite Surface {43}; +Transfinite Surface {44}; +Transfinite Surface {45}; +Transfinite Surface {46}; +Transfinite Surface {47}; +Transfinite Surface {48}; +Transfinite Surface {49}; +Transfinite Surface {50}; +Transfinite Surface {51}; +Transfinite Surface {52}; +Transfinite Surface {53}; +Transfinite Surface {54}; +Transfinite Surface {55}; +Transfinite Surface {56}; +Transfinite Surface {57}; +Transfinite Surface {58}; +Transfinite Surface {59}; +Transfinite Surface {60}; +Transfinite Surface {61}; +Transfinite Surface {62}; +Transfinite Surface {63}; +Transfinite Surface {64}; +Transfinite Surface {65}; +Transfinite Surface {66}; +Transfinite Surface {67}; +Transfinite Surface {68}; +Transfinite Surface {69}; +Transfinite Surface {70}; +Transfinite Surface {71}; +Transfinite Surface {72}; +Transfinite Surface {73}; +Transfinite Surface {74}; +Transfinite Surface {75}; +Transfinite Surface {76}; +Transfinite Surface {77}; +Transfinite Surface {78}; +Transfinite Surface {79}; +Transfinite Surface {80}; +Transfinite Surface {81}; +Transfinite Surface {82}; +Transfinite Surface {83}; +Transfinite Surface {84}; +Transfinite Surface {85}; +Transfinite Surface {86}; +Transfinite Surface {87}; +Transfinite Surface {88}; +Transfinite Surface {89}; +Transfinite Surface {90}; +Transfinite Surface {91}; +Transfinite Surface {92}; +Transfinite Surface {93}; +Transfinite Surface {94}; +Transfinite Surface {95}; +Transfinite Surface {96}; +Transfinite Surface {97}; +Transfinite Surface {98}; +Transfinite Surface {99}; +Transfinite Surface {100}; +//+ +Transfinite Curve {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114} = n_recombine Using Progression 1.2; +//+ +Transfinite Curve {126, 136, 146, 156, 166, 176, 186, 196, 206, 216, 226, 127, 137, 147, 157, 167, 177, 187, 197, 207, 217, 227, 128, 138, 148, 158, 168, 178, 188, 198, 208, 218, 228, 129, 139, 149, 159, 169, 179, 189, 199, 209, 219, 229, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 231, 132, 142, 152, 162, 172, 182, 192, 202, 212, 222, 232, 133, 143, 153, 163, 173, 183, 193, 203, 213, 223, 233, 134, 144, 154, 164, 174, 184, 194, 204, 214, 224, 234, 135, 145, 155, 165, 175, 185, 195, 205, 215, 225, 235} = n_recombine Using Progression 1.2; +//+ + +//+ +Curve Loop(101) = {4, 1, 2, 3}; +//+ +Curve Loop(102) = {5, -16, 27, -38, 49, -60, 71, -82, 93, -104, 226, -227, 228, -229, 230, -231, 232, -233, 234, -235, 114, -103, 92, -81, 70, -59, 48, -37, 26, -15, 135, -134, 133, -132, 131, -130, 129, -128, 127, -126}; +//+ +Plane Surface(101) = {101, 102}; +//Transfinite Surface {101}; +//+ +//Transfinite Surface {101}; +//Transfinite Curve {1, 3} = 210 Using Progression 1; +//+ +//Transfinite Curve {2, 4} = 210 Using Progression 1; +//+ +Recombine Surface {:}; +// Define meshing options +Mesh.Algorithm = 6; // Specify meshing algorithm (e.g., Delaunay) +Mesh.ElementOrder = 1; // Specify element order +// Generate the mesh +Mesh 2; + diff --git a/examples/meshes/geo_files/lattice_uniform.geo b/examples/meshes/geo_files/lattice_uniform.geo index b3228028..00971773 100644 --- a/examples/meshes/geo_files/lattice_uniform.geo +++ b/examples/meshes/geo_files/lattice_uniform.geo @@ -211,3 +211,17 @@ Plane Surface(15) = {17}; Plane Surface(16) = {5}; //+ Physical Curve("void", 53) = {1, 2, 3, 4}; +//+ +Transfinite Curve {47, 48, 46} = 10 Using Progression 1; +//+ +Transfinite Surface {15} = {25, 26, 27, 28}; +//+ +Transfinite Surface {15} = {25, 26, 27, 28}; +//+ +Transfinite Curve {12} = 10 Using Progression 1; +//+ +Transfinite Curve {12, 11, 9} = 10 Using Progression 1; +//+ +Transfinite Curve {12, 11, 9} = 10 Using Progression 1; +//+ +Surface{2, 4} In Surface{2}; diff --git a/examples/meshes/meshing_scripts/create_lattice_mesh_unstr_refined.py b/examples/meshes/meshing_scripts/create_lattice_mesh_unstr_refined.py index 3f106d7a..82903c27 100644 --- a/examples/meshes/meshing_scripts/create_lattice_mesh_unstr_refined.py +++ b/examples/meshes/meshing_scripts/create_lattice_mesh_unstr_refined.py @@ -95,7 +95,7 @@ def main(): with open(options.output_name + ".geo", "w") as mesh_file: mesh_file.write(mesh_code) - # os.system('gmsh ' + options.output_name + '.geo -2 -format su2 -save_all') + os.system('gmsh ' + options.output_name + '.geo -2 -format su2 -save_all') os.system('gmsh ' + options.output_name + '.geo -2 -format vtk -save_all') # os.system('rm ' + options.output_name + '.geo') From a78c076363c9f938f2d9c2128b7e52ebe2d3376c Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 3 Jan 2024 14:35:24 -0500 Subject: [PATCH 040/155] segfault introduced --- examples/cascade_lattice.py | 6 +++--- examples/meshes/geo_files/lattice_refined.geo | 4 ++-- .../create_lattice_mesh_unstructured.py | 10 +++++----- src/common/mesh.cpp | 9 +++++++-- src/solvers/solverbase.cpp | 6 ++++++ 5 files changed, 23 insertions(+), 12 deletions(-) diff --git a/examples/cascade_lattice.py b/examples/cascade_lattice.py index b423dc81..8e13d6d4 100644 --- a/examples/cascade_lattice.py +++ b/examples/cascade_lattice.py @@ -5,10 +5,10 @@ def main(): # Example usage: quad_order = 19 - cl_fine_vals = [0.05, 0.02, 0.01, 0.005] - cl_coarse = 0.075 + cl_fine_vals = [0.02, 0.02, 0.01, 0.005] + cl_coarse = 0.05 cl_boundary = 0.2 - length = 0.075 + length = 0.05 for i in range(len(cl_fine_vals)): cl_fine = cl_fine_vals[i] diff --git a/examples/meshes/geo_files/lattice_refined.geo b/examples/meshes/geo_files/lattice_refined.geo index a3ee2a81..99d87a27 100644 --- a/examples/meshes/geo_files/lattice_refined.geo +++ b/examples/meshes/geo_files/lattice_refined.geo @@ -1,7 +1,7 @@ cl_fine = 0.02; -cl_coarse = 0.075; +cl_coarse = 0.05; cl_boundary = 0.2; -length = 0.075; +length = 0.05; Point(1) = {-3.5, -3.5, 0, cl_boundary}; Point(2) = {3.5, -3.5, 0, cl_boundary}; Point(3) = {-3.5, 3.5, 0, cl_boundary}; diff --git a/examples/meshes/meshing_scripts/create_lattice_mesh_unstructured.py b/examples/meshes/meshing_scripts/create_lattice_mesh_unstructured.py index 7c2afd29..4c1b1e81 100644 --- a/examples/meshes/meshing_scripts/create_lattice_mesh_unstructured.py +++ b/examples/meshes/meshing_scripts/create_lattice_mesh_unstructured.py @@ -20,8 +20,8 @@ def main(): print("Parsing options") # --- parse options --- parser = OptionParser() - parser.add_option("-o", "--output_name", dest="output_name", default="../lattice_quad") - parser.add_option("-c", "--char_length", dest="char_length", default=0.075) + parser.add_option("-o", "--output_name", dest="output_name", default="../lattice_unstructured") + parser.add_option("-c", "--char_length", dest="char_length", default=0.01) (options, args) = parser.parse_args() options.output_name = str(options.output_name) @@ -38,9 +38,9 @@ def main(): geom.boolean_fragments(boxes, []) geom.add_physical(domain.lines, label="void") - geom.add_raw_code("Transfinite Surface{:};") - geom.add_raw_code('Mesh.Algorithm= 3;') - geom.add_raw_code("Recombine Surface {:} = 0;") + #geom.add_raw_code("Transfinite Surface{:};") + #geom.add_raw_code('Mesh.Algorithm= 3;') + #geom.add_raw_code("Recombine Surface {:} = 0;") mesh_code = geom.get_code() with open(options.output_name + ".geo", "w") as mesh_file: diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index abd210e7..626ce99e 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -13,9 +13,14 @@ Mesh::Mesh( std::vector nodes, else { ErrorMessages::Error( "Unsupported mesh dimension!", CURRENT_FUNCTION ); } + auto log = spdlog::get( "event" ); + log->info( "| Compute cell areas..." ); ComputeCellAreas(); + log->info( "| Compute cell midpoints..." ); ComputeCellMidpoints(); + log->info( "| Compute mesh connectivity..." ); ComputeConnectivity(); + log->info( "| Compute boundary..." ); ComputeBounds(); } @@ -57,7 +62,7 @@ void Mesh::ComputeConnectivity() { } // determine neighbor cells and normals with MPI and OpenMP -#pragma omp parallel for +#pragma omp parallel for schedule( guided ) for( unsigned i = mpiCellStart; i < mpiCellEnd; ++i ) { std::vector* cellsI = &sortedCells[i]; unsigned ctr = 0; @@ -168,7 +173,7 @@ void Mesh::ComputeConnectivity() { // assign boundary types to all cells _cellBoundaryTypes.resize( _numCells, BOUNDARY_TYPE::NONE ); -#pragma omp parallel for + // #pragma omp parallel for for( unsigned i = 0; i < _numCells; ++i ) { if( std::any_of( _cellNeighbors[i].begin(), _cellNeighbors[i].end(), [this]( unsigned i ) { return i == _ghostCellID; diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index b28d8a9a..27ef6f1a 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -128,6 +128,7 @@ void SolverBase::Solve() { unsigned rkStages = _settings->GetRKStages(); // Create Backup solution for Runge Kutta VectorVector solRK0 = _sol; + std::cout << "here\n"; // Loop over energies (pseudo-time of continuous slowing down approach) for( unsigned iter = 0; iter < _nIter; iter++ ) { @@ -135,12 +136,15 @@ void SolverBase::Solve() { for( unsigned rkStep = 0; rkStep < rkStages; ++rkStep ) { // --- Prepare Boundaries and temp variables IterPreprocessing( iter + rkStep ); + std::cout << "here2\n"; // --- Compute Fluxes --- FluxUpdate(); + std::cout << "here3\n"; // --- Finite Volume Update --- FVMUpdate( iter + rkStep ); + std::cout << "here4\n"; // --- Update Solution within Runge Kutta Stages _sol = _solNew; @@ -148,6 +152,7 @@ void SolverBase::Solve() { // --- Iter Postprocessing --- IterPostprocessing( iter ); + std::cout << "here5\n"; // --- Runge Kutta Timestep --- if( rkStages == 2 ) RKUpdate( solRK0, _sol ); @@ -155,6 +160,7 @@ void SolverBase::Solve() { // --- Write Output --- WriteVolumeOutput( iter ); WriteScalarOutput( iter ); + std::cout << "here6\n"; // --- Update Scalar Fluxes _scalarFlux = _scalarFluxNew; From af16d75c7222f18a71bcf1ba268eaaf7aa702748 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Wed, 3 Jan 2024 14:59:31 -0500 Subject: [PATCH 041/155] fixed quad grid --- .../meshes/geo_files/lattice_rectangular.geo | 521 +++++++++++++++++- 1 file changed, 498 insertions(+), 23 deletions(-) diff --git a/examples/meshes/geo_files/lattice_rectangular.geo b/examples/meshes/geo_files/lattice_rectangular.geo index 4a22c948..84b477cf 100644 --- a/examples/meshes/geo_files/lattice_rectangular.geo +++ b/examples/meshes/geo_files/lattice_rectangular.geo @@ -5,16 +5,6 @@ Point(1) = {-3.5, -3.5, 0, cl_fine}; Point(2) = {3.5, -3.5, 0, cl_fine}; Point(3) = {-3.5, 3.5, 0, cl_fine}; Point(4) = {3.5, 3.5, 0, cl_fine}; -//+ -//+ -Line(1) = {1, 2}; -//+ -Line(2) = {2, 4}; -//+ -Line(3) = {4, 3}; -//+ -Line(4) = {3, 1}; -Physical Curve("void", 1) = {1,2,3,4}; // Inner grid Point(5) = { -2.5, -2.5, 0, cl_fine }; @@ -139,6 +129,52 @@ Point(123) = { 2.5, 1.5, 0, cl_fine }; Point(124) = { 2.5, 2.0, 0, cl_fine }; Point(125) = { 2.5, 2.5, 0, cl_fine }; +// helper boundary points +Point(126) = { -2.5, -3.5, 0, cl_fine }; +Point(127) = { -2.0, -3.5, 0, cl_fine }; +Point(128) = { -1.5, -3.5, 0, cl_fine }; +Point(129) = { -1.0, -3.5, 0, cl_fine }; +Point(130) = { -0.5, -3.5, 0, cl_fine }; +Point(131) = { 0.0, -3.5, 0, cl_fine }; +Point(132) = { 0.5, -3.5, 0, cl_fine }; +Point(133) = { 1.0, -3.5, 0, cl_fine }; +Point(134) = { 1.5, -3.5, 0, cl_fine }; +Point(135) = { 2.0, -3.5, 0, cl_fine }; +Point(136) = { 2.5, -3.5, 0, cl_fine }; +Point(137) = { -2.5, 3.5, 0, cl_fine }; +Point(138) = { -2.0, 3.5, 0, cl_fine }; +Point(139) = { -1.5, 3.5, 0, cl_fine }; +Point(140) = { -1.0, 3.5, 0, cl_fine }; +Point(141) = { -0.5, 3.5, 0, cl_fine }; +Point(142) = { 0.0, 3.5, 0, cl_fine }; +Point(143) = { 0.5, 3.5, 0, cl_fine }; +Point(144) = { 1.0, 3.5, 0, cl_fine }; +Point(145) = { 1.5, 3.5, 0, cl_fine }; +Point(146) = { 2.0, 3.5, 0, cl_fine }; +Point(147) = { 2.5, 3.5, 0, cl_fine }; +Point(148) = { -3.5, -2.5, 0, cl_fine }; +Point(149) = { -3.5, -2.0, 0, cl_fine }; +Point(150) = { -3.5, -1.5, 0, cl_fine }; +Point(151) = { -3.5, -1.0, 0, cl_fine }; +Point(152) = { -3.5, -0.5, 0, cl_fine }; +Point(153) = { -3.5, 0.0, 0, cl_fine }; +Point(154) = { -3.5, 0.5, 0, cl_fine }; +Point(155) = { -3.5, 1.0, 0, cl_fine }; +Point(156) = { -3.5, 1.5, 0, cl_fine }; +Point(157) = { -3.5, 2.0, 0, cl_fine }; +Point(158) = { -3.5, 2.5, 0, cl_fine }; +Point(159) = { 3.5, -2.5, 0, cl_fine }; +Point(160) = { 3.5, -2.0, 0, cl_fine }; +Point(161) = { 3.5, -1.5, 0, cl_fine }; +Point(162) = { 3.5, -1.0, 0, cl_fine }; +Point(163) = { 3.5, -0.5, 0, cl_fine }; +Point(164) = { 3.5, 0.0, 0, cl_fine }; +Point(165) = { 3.5, 0.5, 0, cl_fine }; +Point(166) = { 3.5, 1.0, 0, cl_fine }; +Point(167) = { 3.5, 1.5, 0, cl_fine }; +Point(168) = { 3.5, 2.0, 0, cl_fine }; +Point(169) = { 3.5, 2.5, 0, cl_fine }; + // Horizontal and vertical lines in inner grid Line(5) = { 5, 16}; Line(6) = { 6, 17}; @@ -689,25 +725,464 @@ Transfinite Surface {100}; Transfinite Curve {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114} = n_recombine Using Progression 1.2; //+ Transfinite Curve {126, 136, 146, 156, 166, 176, 186, 196, 206, 216, 226, 127, 137, 147, 157, 167, 177, 187, 197, 207, 217, 227, 128, 138, 148, 158, 168, 178, 188, 198, 208, 218, 228, 129, 139, 149, 159, 169, 179, 189, 199, 209, 219, 229, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 231, 132, 142, 152, 162, 172, 182, 192, 202, 212, 222, 232, 133, 143, 153, 163, 173, 183, 193, 203, 213, 223, 233, 134, 144, 154, 164, 174, 184, 194, 204, 214, 224, 234, 135, 145, 155, 165, 175, 185, 195, 205, 215, 225, 235} = n_recombine Using Progression 1.2; +// //+ - +Line(236) = {1, 126}; +//+ +Line(237) = {126, 127}; +//+ +Line(238) = {127, 128}; +//+ +Line(239) = {128, 129}; +//+ +Line(240) = {129, 130}; +//+ +Line(241) = {130, 131}; +//+ +Line(242) = {131, 132}; +//+ +Line(243) = {132, 133}; +//+ +Line(244) = {133, 134}; +//+ +Line(245) = {134, 135}; +//+ +Line(246) = {135, 136}; +//+ +Line(247) = {136, 2}; +//+ +Line(248) = {2, 159}; +//+ +Line(249) = {159, 160}; +//+ +Line(250) = {160, 161}; +//+ +Line(251) = {161, 162}; +//+ +Line(252) = {162, 163}; +//+ +Line(253) = {163, 164}; +//+ +Line(254) = {164, 165}; +//+ +Line(255) = {165, 166}; +//+ +Line(256) = {166, 167}; +//+ +Line(257) = {167, 168}; +//+ +Line(258) = {168, 169}; +//+ +Line(259) = {169, 4}; +//+ +Line(260) = {4, 147}; +//+ +Line(261) = {147, 146}; +//+ +Line(262) = {146, 145}; +//+ +Line(263) = {145, 144}; +//+ +Line(264) = {144, 143}; +//+ +Line(265) = {143, 142}; +//+ +Line(266) = {142, 141}; +//+ +Line(267) = {141, 140}; +//+ +Line(268) = {140, 139}; +//+ +Line(269) = {139, 138}; +//+ +Line(270) = {138, 137}; +//+ +Line(271) = {137, 3}; +//+ +Line(272) = {3, 158}; +//+ +Line(273) = {158, 157}; +//+ +Line(274) = {157, 156}; +//+ +Line(275) = {156, 155}; +//+ +Line(276) = {155, 154}; +//+ +Line(277) = {154, 153}; +//+ +Line(278) = {153, 152}; +//+ +Line(279) = {152, 151}; +//+ +Line(280) = {151, 150}; +//+ +Line(281) = {150, 149}; +//+ +Line(282) = {149, 148}; +//+ +Line(283) = {148, 1}; +//+ +Line(284) = {126, 5}; +//+ +Line(285) = {127, 16}; +//+ +Line(286) = {128, 27}; +//+ +Line(287) = {129, 38}; +//+ +Line(288) = {130, 49}; +//+ +Line(289) = {131, 60}; +//+ +Line(290) = {132, 71}; +//+ +Line(291) = {133, 82}; +//+ +Line(292) = {134, 93}; +//+ +Line(293) = {135, 104}; +//+ +Line(294) = {136, 115}; +//+ +Line(295) = {159, 115}; +//+ +Line(296) = {160, 116}; +//+ +Line(297) = {161, 117}; +//+ +Line(298) = {162, 118}; +//+ +Line(299) = {163, 119}; +//+ +Line(300) = {164, 120}; +//+ +Line(301) = {165, 121}; +//+ +Line(302) = {166, 122}; +//+ +Line(303) = {167, 123}; +//+ +Line(304) = {168, 124}; +//+ +Line(305) = {169, 125}; +//+ +Line(306) = {147, 125}; +//+ +Line(307) = {146, 114}; +//+ +Line(308) = {145, 103}; +//+ +Line(309) = {144, 92}; +//+ +Line(310) = {143, 81}; +//+ +Line(311) = {142, 70}; +//+ +Line(312) = {141, 59}; +//+ +Line(313) = {140, 48}; +//+ +Line(314) = {139, 37}; +//+ +Line(315) = {138, 26}; +//+ +Line(316) = {137, 15}; +//+ +Line(317) = {158, 15}; +//+ +Line(318) = {157, 14}; +//+ +Line(319) = {156, 13}; +//+ +Line(320) = {155, 12}; +//+ +Line(321) = {154, 11}; +//+ +Line(322) = {153, 10}; +//+ +Line(323) = {152, 9}; +//+ +Line(324) = {151, 8}; +//+ +Line(325) = {150, 7}; +//+ +Line(326) = {149, 6}; +//+ +Line(327) = {148, 5}; +//+ +Curve Loop(103) = {236, 284, -327, 283}; +//+ +Plane Surface(102) = {103}; +//+ +Curve Loop(104) = {237, 285, -5, -284}; +//+ +Plane Surface(103) = {104}; +//+ +Curve Loop(105) = {238, 286, 16, -285}; +//+ +Plane Surface(104) = {105}; +//+ +Curve Loop(106) = {239, 287, -27, -286}; +//+ +Plane Surface(105) = {106}; +//+ +Curve Loop(107) = {240, 288, 38, -287}; +//+ +Plane Surface(106) = {107}; +//+ +Curve Loop(108) = {241, 289, -49, -288}; +//+ +Plane Surface(107) = {108}; +//+ +Curve Loop(109) = {242, 290, 60, -289}; +//+ +Plane Surface(108) = {109}; +//+ +Curve Loop(110) = {243, 291, -71, -290}; +//+ +Plane Surface(109) = {110}; +//+ +Curve Loop(111) = {244, 292, 82, -291}; //+ -Curve Loop(101) = {4, 1, 2, 3}; +Plane Surface(110) = {111}; //+ -Curve Loop(102) = {5, -16, 27, -38, 49, -60, 71, -82, 93, -104, 226, -227, 228, -229, 230, -231, 232, -233, 234, -235, 114, -103, 92, -81, 70, -59, 48, -37, 26, -15, 135, -134, 133, -132, 131, -130, 129, -128, 127, -126}; +Curve Loop(112) = {245, 293, -93, -292}; //+ -Plane Surface(101) = {101, 102}; -//Transfinite Surface {101}; +Plane Surface(111) = {112}; //+ -//Transfinite Surface {101}; -//Transfinite Curve {1, 3} = 210 Using Progression 1; +Curve Loop(113) = {246, 294, 104, -293}; //+ -//Transfinite Curve {2, 4} = 210 Using Progression 1; +Plane Surface(112) = {113}; //+ -Recombine Surface {:}; +Curve Loop(114) = {247, 248, 295, -294}; +//+ +Plane Surface(113) = {114}; +//+ +Curve Loop(115) = {249, 296, -226, -295}; +//+ +Plane Surface(114) = {115}; +//+ +Curve Loop(116) = {250, 297, 227, -296}; +//+ +Plane Surface(115) = {116}; +//+ +Curve Loop(117) = {251, 298, -228, -297}; +//+ +Plane Surface(116) = {117}; +//+ +Curve Loop(118) = {252, 299, 229, -298}; +//+ +Plane Surface(117) = {118}; +//+ +Curve Loop(119) = {253, 300, -230, -299}; +//+ +Plane Surface(118) = {119}; +//+ +Curve Loop(120) = {254, 301, 231, -300}; +//+ +Plane Surface(119) = {120}; +//+ +Curve Loop(121) = {255, 302, -232, -301}; +//+ +Plane Surface(120) = {121}; +//+ +Curve Loop(122) = {256, 303, 233, -302}; +//+ +Plane Surface(121) = {122}; +//+ +Curve Loop(123) = {257, 304, -234, -303}; +//+ +Plane Surface(122) = {123}; +//+ +Curve Loop(124) = {258, 305, 235, -304}; +//+ +Plane Surface(123) = {124}; +//+ +Curve Loop(125) = {259, 260, 306, -305}; +//+ +Plane Surface(124) = {125}; +//+ +Curve Loop(126) = {261, 307, -114, -306}; +//+ +Plane Surface(125) = {126}; +//+ +Curve Loop(127) = {262, 308, 103, -307}; +//+ +Plane Surface(126) = {127}; +//+ +Curve Loop(128) = {263, 309, -92, -308}; +//+ +Plane Surface(127) = {128}; +//+ +Curve Loop(129) = {264, 310, 81, -309}; +//+ +Plane Surface(128) = {129}; +//+ +Curve Loop(130) = {265, 311, -70, -310}; +//+ +Plane Surface(129) = {130}; +//+ +Curve Loop(131) = {266, 312, 59, -311}; +//+ +Plane Surface(130) = {131}; +//+ +Curve Loop(132) = {267, 313, -48, -312}; +//+ +Plane Surface(131) = {132}; +//+ +Curve Loop(133) = {268, 314, 37, -313}; +//+ +Plane Surface(132) = {133}; +//+ +Curve Loop(134) = {269, 315, -26, -314}; +//+ +Plane Surface(133) = {134}; +//+ +Curve Loop(135) = {270, 316, 15, -315}; +//+ +Plane Surface(134) = {135}; +//+ +Curve Loop(136) = {271, 272, 317, -316}; +//+ +Plane Surface(135) = {136}; +//+ +Curve Loop(137) = {273, 318, -135, -317}; +//+ +Plane Surface(136) = {137}; +//+ +Curve Loop(138) = {274, 319, 134, -318}; +//+ +Plane Surface(137) = {138}; +//+ +Curve Loop(139) = {275, 320, -133, -319}; +//+ +Plane Surface(138) = {139}; +//+ +Curve Loop(140) = {276, 321, 132, -320}; +//+ +Plane Surface(139) = {140}; +//+ +Curve Loop(141) = {277, 322, -131, -321}; +//+ +Plane Surface(140) = {141}; +//+ +Curve Loop(142) = {278, 323, 130, -322}; +//+ +Plane Surface(141) = {142}; +//+ +Curve Loop(143) = {279, 324, -129, -323}; +//+ +Plane Surface(142) = {143}; +//+ +Curve Loop(144) = {280, 325, 128, -324}; +//+ +Plane Surface(143) = {144}; +//+ +Curve Loop(145) = {281, 326, -127, -325}; +//+ +Plane Surface(144) = {145}; +//+ +Curve Loop(146) = {282, 327, 126, -326}; +//+ +Plane Surface(145) = {146}; +//+ +//+ +Transfinite Surface {102}; +//+ +Transfinite Surface {103}; +//+ +Transfinite Surface {104}; +//+ +Transfinite Surface {105}; +//+ +Transfinite Surface {106}; +//+ +Transfinite Surface {107}; +//+ +Transfinite Surface {108}; +//+ +Transfinite Surface {109}; +//+ +Transfinite Surface {110}; +//+ +Transfinite Surface {111}; +//+ +Transfinite Surface {112}; +//+ +Transfinite Surface {113}; +//+ +Transfinite Surface {114}; +//+ +Transfinite Surface {115}; +//+ +Transfinite Surface {116}; +//+ +Transfinite Surface {117}; +//+ +Transfinite Surface {118}; +//+ +Transfinite Surface {119}; +//+ +Transfinite Surface {120}; +//+ +Transfinite Surface {121}; +//+ +Transfinite Surface {122}; +//+ +Transfinite Surface {123}; +//+ +Transfinite Surface {124}; +//+ +Transfinite Surface {125}; +//+ +Transfinite Surface {126}; +//+ +Transfinite Surface {127}; +//+ +Transfinite Surface {128}; +//+ +Transfinite Surface {129}; +//+ +Transfinite Surface {130}; +//+ +Transfinite Surface {131}; +//+ +Transfinite Surface {132}; +//+ +Transfinite Surface {133}; +//+ +Transfinite Surface {134}; +//+ +Transfinite Surface {135}; +//+ +Transfinite Surface {136}; +//+ +Transfinite Surface {137}; +//+ +Transfinite Surface {138}; +//+ +Transfinite Surface {139}; +//+ +Transfinite Surface {140}; +//+ +Transfinite Surface {141}; +//+ +Transfinite Surface {142}; +//+ +Transfinite Surface {143}; +//+ +Transfinite Surface {144}; +//+ +Transfinite Surface {145}; +//+ +Transfinite Curve {237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 273, 274, 275, 276, 277, 278, 279, 280, 281,282} = n_recombine Using Progression 1; +//+ +Physical Curve("void",328) = {236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283}; + +Recombine Surface "*"; // Define meshing options -Mesh.Algorithm = 6; // Specify meshing algorithm (e.g., Delaunay) -Mesh.ElementOrder = 1; // Specify element order +//Mesh.Algorithm = 6; // Specify meshing algorithm (e.g., Delaunay) +//Mesh.ElementOrder = 1; // Specify element order // Generate the mesh -Mesh 2; - +//Mesh 2; \ No newline at end of file From 2e1cabb052c2be94bad0841bae839dedc12ba692 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 3 Jan 2024 15:58:59 -0500 Subject: [PATCH 042/155] fixed segfault in hohlraum, linesource and checkerboard --- include/problems/checkerboard.hpp | 16 +++++------ include/problems/hohlraum.hpp | 4 +-- include/problems/lattice.hpp | 4 +-- include/problems/linesource.hpp | 13 ++++----- src/common/mesh.cpp | 8 ++++++ src/problems/checkerboard.cpp | 48 +++++++++++++++---------------- src/problems/hohlraum.cpp | 32 ++++++++++----------- src/problems/lattice.cpp | 16 +++++------ src/problems/linesource.cpp | 44 ++++++++++++---------------- src/solvers/pnsolver.cpp | 3 +- src/solvers/solverbase.cpp | 6 ---- 11 files changed, 93 insertions(+), 101 deletions(-) diff --git a/include/problems/checkerboard.hpp b/include/problems/checkerboard.hpp index 46122e40..ec056297 100644 --- a/include/problems/checkerboard.hpp +++ b/include/problems/checkerboard.hpp @@ -8,8 +8,8 @@ class SphericalBase; class Checkerboard_SN : public ProblemBase { private: - Vector _scatteringXS; /*!< @brief Vector of scattering crosssections */ - Vector _totalXS; /*!< @brief Vector of total crosssections */ + Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ + Vector _sigmaT; /*!< @brief Vector of total crosssections */ Checkerboard_SN() = delete; @@ -29,8 +29,8 @@ class Checkerboard_SN : public ProblemBase class Checkerboard_Moment : public ProblemBase { private: - Vector _scatteringXS; /*!< @brief Vector of scattering crosssections len: numCells */ - Vector _totalXS; /*!< @brief Vector of total crosssections. len: numCells*/ + Vector _sigmaS; /*!< @brief Vector of scattering crosssections len: numCells */ + Vector _sigmaT; /*!< @brief Vector of total crosssections. len: numCells*/ Checkerboard_Moment() = delete; @@ -60,8 +60,8 @@ class Checkerboard_Moment : public ProblemBase class Checkerboard_SN_1D : public ProblemBase { private: - Vector _scatteringXS; /*!< @brief Vector of scattering crosssections */ - Vector _totalXS; /*!< @brief Vector of total crosssections */ + Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ + Vector _sigmaT; /*!< @brief Vector of total crosssections */ Checkerboard_SN_1D() = delete; @@ -81,8 +81,8 @@ class Checkerboard_SN_1D : public ProblemBase class Checkerboard_Moment_1D : public ProblemBase { private: - Vector _scatteringXS; /*!< @brief Vector of scattering crosssections len: numCells */ - Vector _totalXS; /*!< @brief Vector of total crosssections. len: numCells*/ + Vector _sigmaS; /*!< @brief Vector of scattering crosssections len: numCells */ + Vector _sigmaT; /*!< @brief Vector of total crosssections. len: numCells*/ Checkerboard_Moment_1D() = delete; diff --git a/include/problems/hohlraum.hpp b/include/problems/hohlraum.hpp index 6400cee5..d43348b5 100644 --- a/include/problems/hohlraum.hpp +++ b/include/problems/hohlraum.hpp @@ -7,8 +7,8 @@ class Hohlraum : public ProblemBase { private: Hohlraum() = delete; - Vector _scatteringXS; /*!< @brief Vector of scattering crosssections */ - Vector _totalXS; /*!< @brief Vector of total crosssections */ + Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ + Vector _sigmaT; /*!< @brief Vector of total crosssections */ public: Hohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ); diff --git a/include/problems/lattice.hpp b/include/problems/lattice.hpp index 870277d2..91554038 100644 --- a/include/problems/lattice.hpp +++ b/include/problems/lattice.hpp @@ -47,8 +47,8 @@ class Lattice_SN : public ProblemBase class Lattice_Moment : public ProblemBase { private: - Vector _scatteringXS; /*!< @brief Vector of scattering crosssections len: numCells */ - Vector _totalXS; /*!< @brief Vector of total crosssections. len: numCells*/ + Vector _sigmaS; /*!< @brief Vector of scattering crosssections len: numCells */ + Vector _sigmaT; /*!< @brief Vector of total crosssections. len: numCells*/ Lattice_Moment() = delete; diff --git a/include/problems/linesource.hpp b/include/problems/linesource.hpp index 3d8fefd6..24637d81 100644 --- a/include/problems/linesource.hpp +++ b/include/problems/linesource.hpp @@ -9,7 +9,8 @@ class LineSource : public ProblemBase LineSource() = delete; protected: - double _sigmaS; /*!< @brief Scattering coefficient */ + Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ + Vector _sigmaT; /*!< @brief Vector of total crosssections */ public: LineSource( Config* settings, Mesh* mesh, QuadratureBase* quad ); @@ -25,6 +26,10 @@ class LineSource : public ProblemBase */ virtual double GetAnalyticalSolution( double x, double y, double t, double sigma_s ) override; + VectorVector GetScatteringXS( const Vector& energies ) override; + VectorVector GetTotalXS( const Vector& energies ) override; + std::vector GetExternalSource( const Vector& energies ) override; + private: /*! @brief Helper Functions to compute the analytic solution for sigma != 0 * (See publication: Garret,Hauck; Momentum Closures for Linear Kinetic Transport Equations) @@ -51,9 +56,6 @@ class LineSource_SN : public LineSource LineSource_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~LineSource_SN(); - VectorVector GetScatteringXS( const Vector& energies ) override; - VectorVector GetTotalXS( const Vector& energies ) override; - std::vector GetExternalSource( const Vector& energies ) override; VectorVector SetupIC() override; }; @@ -66,9 +68,6 @@ class LineSource_Moment : public LineSource LineSource_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ); ~LineSource_Moment(); - VectorVector GetScatteringXS( const Vector& energies ) override; - VectorVector GetTotalXS( const Vector& energies ) override; - std::vector GetExternalSource( const Vector& energies ) override; VectorVector SetupIC() override; }; diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 626ce99e..7264d4d9 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -27,6 +27,7 @@ Mesh::Mesh( std::vector nodes, Mesh::~Mesh() {} void Mesh::ComputeConnectivity() { + auto log = spdlog::get( "event" ); // get MPI info int comm_size, comm_rank; @@ -45,7 +46,10 @@ void Mesh::ComputeConnectivity() { std::vector interfaceMidFlatPart( _numNodesPerCell * chunkSize, Vector( _dim, -1.0 ) ); // pre sort cells and boundaries; sorting is needed for std::set_intersection + log->info( "| ... sort cells..." ); + auto sortedCells( _cells ); +#pragma omp parallal for for( unsigned i = 0; i < _numCells; ++i ) { std::sort( sortedCells[i].begin(), sortedCells[i].end() ); } @@ -56,12 +60,16 @@ void Mesh::ComputeConnectivity() { } // save which cell has which nodes + log->info( "| ... connect cells to nodes..." ); blaze::CompressedMatrix connMat( _numCells, _numNodes ); +#pragma omp parallal for for( unsigned i = mpiCellStart; i < mpiCellEnd; ++i ) { for( auto j : _cells[i] ) connMat.set( i, j, true ); } // determine neighbor cells and normals with MPI and OpenMP + log->info( "| ... determine neighbors of cells..." ); + #pragma omp parallel for schedule( guided ) for( unsigned i = mpiCellStart; i < mpiCellEnd; ++i ) { std::vector* cellsI = &sortedCells[i]; diff --git a/src/problems/checkerboard.cpp b/src/problems/checkerboard.cpp index 6956c527..bfb120b0 100644 --- a/src/problems/checkerboard.cpp +++ b/src/problems/checkerboard.cpp @@ -11,24 +11,24 @@ Checkerboard_SN::Checkerboard_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { // Initialise crosssections to 1 - _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); - _totalXS = Vector( _mesh->GetNumCells(), 1.0 ); + _sigmaS = Vector( _mesh->GetNumCells(), 1.0 ); + _sigmaT = Vector( _mesh->GetNumCells(), 1.0 ); // For absorption cells: set scattering XS to 0 and absorption to 10 auto cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { if( isAbsorption( cellMids[j] ) ) { - _scatteringXS[j] = 0.0; - _totalXS[j] = 10.0; + _sigmaS[j] = 0.0; + _sigmaT[j] = 10.0; } } } Checkerboard_SN::~Checkerboard_SN() {} -VectorVector Checkerboard_SN::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } +VectorVector Checkerboard_SN::GetScatteringXS( const Vector& /*energies */ ) { return VectorVector( 1u, _sigmaS ); } -VectorVector Checkerboard_SN::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } +VectorVector Checkerboard_SN::GetTotalXS( const Vector& /*energies */ ) { return VectorVector( 1u, _sigmaT ); } std::vector Checkerboard_SN::GetExternalSource( const Vector& /*energies*/ ) { VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); @@ -73,24 +73,24 @@ bool Checkerboard_SN::isSource( const Vector& pos ) const { Checkerboard_Moment::Checkerboard_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { // Initialise crosssections = 1 (scattering) - _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); - _totalXS = Vector( _mesh->GetNumCells(), 1.0 ); + _sigmaS = Vector( _mesh->GetNumCells(), 1.0 ); + _sigmaT = Vector( _mesh->GetNumCells(), 1.0 ); // for absorption regions change crosssections to all absorption auto cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { if( isAbsorption( cellMids[j] ) ) { - _scatteringXS[j] = 0.0; - _totalXS[j] = 10.0; + _sigmaS[j] = 0.0; + _sigmaT[j] = 10.0; } } } Checkerboard_Moment::~Checkerboard_Moment() {} -VectorVector Checkerboard_Moment::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } +VectorVector Checkerboard_Moment::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _sigmaS ); } -VectorVector Checkerboard_Moment::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } +VectorVector Checkerboard_Moment::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _sigmaT ); } std::vector Checkerboard_Moment::GetExternalSource( const Vector& /*energies*/ ) { // In case of PN, spherical basis is per default SPHERICAL_HARMONICS @@ -216,24 +216,24 @@ bool Checkerboard_Moment::isSource( const Vector& pos ) const { Checkerboard_SN_1D::Checkerboard_SN_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { // Initialise crosssections to 1 - _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); - _totalXS = Vector( _mesh->GetNumCells(), 1.0 ); + _sigmaS = Vector( _mesh->GetNumCells(), 1.0 ); + _sigmaT = Vector( _mesh->GetNumCells(), 1.0 ); // For absorption cells: set scattering XS to 0 and absorption to 10 auto cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { if( isAbsorption( cellMids[j] ) ) { - _scatteringXS[j] = 0.0; - _totalXS[j] = 10.0; + _sigmaS[j] = 0.0; + _sigmaT[j] = 10.0; } } } Checkerboard_SN_1D::~Checkerboard_SN_1D() {} -VectorVector Checkerboard_SN_1D::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } +VectorVector Checkerboard_SN_1D::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _sigmaS ); } -VectorVector Checkerboard_SN_1D::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } +VectorVector Checkerboard_SN_1D::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _sigmaT ); } std::vector Checkerboard_SN_1D::GetExternalSource( const Vector& /*energies*/ ) { VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); @@ -271,24 +271,24 @@ bool Checkerboard_SN_1D::isSource( const Vector& pos ) const { Checkerboard_Moment_1D::Checkerboard_Moment_1D( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { // Initialise crosssections to 1 - _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); - _totalXS = Vector( _mesh->GetNumCells(), 1.0 ); + _sigmaS = Vector( _mesh->GetNumCells(), 1.0 ); + _sigmaT = Vector( _mesh->GetNumCells(), 1.0 ); // For absorption cells: set scattering XS to 0 and absorption to 10 auto cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { if( isAbsorption( cellMids[j] ) ) { - _scatteringXS[j] = 0.0; - _totalXS[j] = 10.0; + _sigmaS[j] = 0.0; + _sigmaT[j] = 10.0; } } } Checkerboard_Moment_1D::~Checkerboard_Moment_1D() {} -VectorVector Checkerboard_Moment_1D::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } +VectorVector Checkerboard_Moment_1D::GetScatteringXS( const Vector& /*energies*/ ) { return VectorVector( 1u, _sigmaS ); } -VectorVector Checkerboard_Moment_1D::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } +VectorVector Checkerboard_Moment_1D::GetTotalXS( const Vector& /*energies*/ ) { return VectorVector( 1u, _sigmaT ); } std::vector Checkerboard_Moment_1D::GetExternalSource( const Vector& /*energies*/ ) { if( _settings->GetSolverName() == PN_SOLVER || _settings->GetSolverName() == CSD_PN_SOLVER ) { diff --git a/src/problems/hohlraum.cpp b/src/problems/hohlraum.cpp index 5f7c497e..f8012f7f 100644 --- a/src/problems/hohlraum.cpp +++ b/src/problems/hohlraum.cpp @@ -12,8 +12,8 @@ #include "velocitybasis/sphericalharmonics.hpp" Hohlraum::Hohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { - _scatteringXS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default - _totalXS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default + _sigmaS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default + _sigmaT = Vector( _mesh->GetNumCells(), 0.1 ); // white area default #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { @@ -21,33 +21,33 @@ Hohlraum::Hohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ) : Probl double y = _mesh->GetCellMidPoints()[idx_cell][1]; // red area if( x < 0.05 && y > 0.25 && y < 1.05 ) { - _scatteringXS[idx_cell] = 95.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 95.0; + _sigmaT[idx_cell] = 100.0; } // green area 1 if( x > 0.45 && x < 0.85 && y > 0.25 && y < 0.3 ) { - _scatteringXS[idx_cell] = 90.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 90.0; + _sigmaT[idx_cell] = 100.0; } // green area 2 if( x > 0.45 && x < 0.85 && y > 1.0 && y < 1.05 ) { - _scatteringXS[idx_cell] = 90.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 90.0; + _sigmaT[idx_cell] = 100.0; } // green area 3 if( x > 0.45 && x < 0.5 && y > 0.25 && y < 1.05 ) { - _scatteringXS[idx_cell] = 90.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 90.0; + _sigmaT[idx_cell] = 100.0; } // black area if( x > 0.5 && x < 0.85 && y > 0.3 && y < 1.0 ) { - _scatteringXS[idx_cell] = 50.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 50.0; + _sigmaT[idx_cell] = 100.0; } // blue area if( x > 1.25 || y < 0.05 || y > 1.25 ) { - _scatteringXS[idx_cell] = 0.0; - _totalXS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 0.0; + _sigmaT[idx_cell] = 100.0; } } } @@ -84,9 +84,9 @@ VectorVector Hohlraum::SetupIC() { return psi; } -VectorVector Hohlraum::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } +VectorVector Hohlraum::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _sigmaS ); } -VectorVector Hohlraum::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } +VectorVector Hohlraum::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _sigmaT ); } Hohlraum_Moment::Hohlraum_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : Hohlraum( settings, mesh, quad ) {} diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index ca86279b..d70eb6ec 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -53,9 +53,9 @@ Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ) : P Lattice_SN::~Lattice_SN() {} -VectorVector Lattice_SN::GetScatteringXS( const Vector& energies ) { return VectorVector( 1u, _sigmaS ); } +VectorVector Lattice_SN::GetScatteringXS( const Vector& /*energies */ ) { return VectorVector( 1u, _sigmaS ); } -VectorVector Lattice_SN::GetTotalXS( const Vector& energies ) { return VectorVector( 1u, _sigmaT ); } +VectorVector Lattice_SN::GetTotalXS( const Vector& /*energies */ ) { return VectorVector( 1u, _sigmaT ); } std::vector Lattice_SN::GetExternalSource( const Vector& /*energies*/ ) { VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); @@ -165,24 +165,24 @@ void Lattice_SN::ComputeMaxAbsorptionLattice( const Vector& scalarFlux ) { Lattice_Moment::Lattice_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { // Initialise crosssections = 1 (scattering) - _scatteringXS = Vector( _mesh->GetNumCells(), 1.0 ); - _totalXS = Vector( _mesh->GetNumCells(), 1.0 ); + _sigmaS = Vector( _mesh->GetNumCells(), 1.0 ); + _sigmaT = Vector( _mesh->GetNumCells(), 1.0 ); // for absorption regions change crosssections to all absorption auto cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { if( isAbsorption( cellMids[j] ) ) { - _scatteringXS[j] = 0.0; - _totalXS[j] = 10.0; + _sigmaS[j] = 0.0; + _sigmaT[j] = 10.0; } } } Lattice_Moment::~Lattice_Moment() {} -VectorVector Lattice_Moment::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _scatteringXS ); } +VectorVector Lattice_Moment::GetScatteringXS( const Vector& /*energies*/ ) { return VectorVector( 1u, _sigmaS ); } -VectorVector Lattice_Moment::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _totalXS ); } +VectorVector Lattice_Moment::GetTotalXS( const Vector& /*energies*/ ) { return VectorVector( 1u, _sigmaT ); } std::vector Lattice_Moment::GetExternalSource( const Vector& /*energies*/ ) { // In case of PN, spherical basis is per default SPHERICAL_HARMONICS diff --git a/src/problems/linesource.cpp b/src/problems/linesource.cpp index 56344f1b..589be712 100644 --- a/src/problems/linesource.cpp +++ b/src/problems/linesource.cpp @@ -9,11 +9,21 @@ // ---- Linesource ---- LineSource::LineSource( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { - _sigmaS = settings->GetSigmaS(); + _sigmaS = Vector( _mesh->GetNumCells(), _settings->GetSigmaS() ); + _sigmaT = Vector( _mesh->GetNumCells(), _settings->GetSigmaS() ); } LineSource::~LineSource() {} +VectorVector LineSource::GetScatteringXS( const Vector& /*energies*/ ) { return VectorVector( 1u, _sigmaS ); } + +VectorVector LineSource::GetTotalXS( const Vector& /*energies*/ ) { return VectorVector( 1u, _sigmaS ); } + +std::vector LineSource::GetExternalSource( const Vector& /*energies*/ ) { + VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); + return std::vector( 1u, Q ); +} + double LineSource::GetAnalyticalSolution( double x, double y, double t, double /*sigma_s*/ ) { double solution = 0.0; @@ -112,16 +122,6 @@ LineSource_SN::LineSource_SN( Config* settings, Mesh* mesh, QuadratureBase* quad LineSource_SN::~LineSource_SN() {} -VectorVector LineSource_SN::GetScatteringXS( const Vector& energies ) { - return VectorVector( energies.size(), Vector( _mesh->GetNumCells(), _sigmaS ) ); -} - -VectorVector LineSource_SN::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), Vector( _mesh->GetNumCells(), _sigmaS ) ); } - -std::vector LineSource_SN::GetExternalSource( const Vector& /*energies*/ ) { - return std::vector( 1u, std::vector( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ) ); -} - VectorVector LineSource_SN::SetupIC() { VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-10 ) ); auto cellMids = _mesh->GetCellMidPoints(); @@ -140,21 +140,13 @@ LineSource_Moment::LineSource_Moment( Config* settings, Mesh* mesh, QuadratureBa LineSource_Moment::~LineSource_Moment() {} -VectorVector LineSource_Moment::GetScatteringXS( const Vector& energies ) { - return VectorVector( energies.size(), Vector( _mesh->GetNumCells(), _sigmaS ) ); -} - -VectorVector LineSource_Moment::GetTotalXS( const Vector& energies ) { - return VectorVector( energies.size(), Vector( _mesh->GetNumCells(), _sigmaS ) ); -} - -std::vector LineSource_Moment::GetExternalSource( const Vector& /*energies*/ ) { - SphericalBase* tempBase = SphericalBase::Create( _settings ); - unsigned ntotalEquations = tempBase->GetBasisSize(); - delete tempBase; // Only temporally needed - - return std::vector( 1u, std::vector( _mesh->GetNumCells(), Vector( ntotalEquations, 0.0 ) ) ); -} +// std::vector LineSource_Moment::GetExternalSource( const Vector& /*energies*/ ) { +// SphericalBase* tempBase = SphericalBase::Create( _settings ); +// unsigned ntotalEquations = tempBase->GetBasisSize(); +// delete tempBase; // Only temporally needed +// +// return std::vector( 1u, std::vector( _mesh->GetNumCells(), Vector( ntotalEquations, 0.0 ) ) ); +// } VectorVector LineSource_Moment::SetupIC() { // Compute number of equations in the system diff --git a/src/solvers/pnsolver.cpp b/src/solvers/pnsolver.cpp index 8eb6422b..ffb4b58f 100644 --- a/src/solvers/pnsolver.cpp +++ b/src/solvers/pnsolver.cpp @@ -217,8 +217,7 @@ void PNSolver::FVMUpdate( unsigned idx_energy ) { _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ - _dT * _sol[idx_cell][idx_sys] * ( _sigmaS[idx_energy][idx_cell] * _scatterMatDiag[idx_sys] /* scattering influence */ - + _sigmaT[idx_energy][idx_cell] ); - /* total xs influence */ + + _sigmaT[idx_energy][idx_cell] ); /* total xs influence */ } // Source Term _solNew[idx_cell] += _dT * _Q[0][idx_cell]; diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 27ef6f1a..b28d8a9a 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -128,7 +128,6 @@ void SolverBase::Solve() { unsigned rkStages = _settings->GetRKStages(); // Create Backup solution for Runge Kutta VectorVector solRK0 = _sol; - std::cout << "here\n"; // Loop over energies (pseudo-time of continuous slowing down approach) for( unsigned iter = 0; iter < _nIter; iter++ ) { @@ -136,15 +135,12 @@ void SolverBase::Solve() { for( unsigned rkStep = 0; rkStep < rkStages; ++rkStep ) { // --- Prepare Boundaries and temp variables IterPreprocessing( iter + rkStep ); - std::cout << "here2\n"; // --- Compute Fluxes --- FluxUpdate(); - std::cout << "here3\n"; // --- Finite Volume Update --- FVMUpdate( iter + rkStep ); - std::cout << "here4\n"; // --- Update Solution within Runge Kutta Stages _sol = _solNew; @@ -152,7 +148,6 @@ void SolverBase::Solve() { // --- Iter Postprocessing --- IterPostprocessing( iter ); - std::cout << "here5\n"; // --- Runge Kutta Timestep --- if( rkStages == 2 ) RKUpdate( solRK0, _sol ); @@ -160,7 +155,6 @@ void SolverBase::Solve() { // --- Write Output --- WriteVolumeOutput( iter ); WriteScalarOutput( iter ); - std::cout << "here6\n"; // --- Update Scalar Fluxes _scalarFlux = _scalarFluxNew; From 9ef420996d8b7d7e41d4a739f502bf8708c4fc22 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 3 Jan 2024 16:01:58 -0500 Subject: [PATCH 043/155] added singularity container support --- tools/singularity/kit_rt.def | 72 +++++++++++++++++++ .../singularity_run_interactive.sh | 1 + 2 files changed, 73 insertions(+) create mode 100644 tools/singularity/kit_rt.def create mode 100644 tools/singularity/singularity_run_interactive.sh diff --git a/tools/singularity/kit_rt.def b/tools/singularity/kit_rt.def new file mode 100644 index 00000000..376b5cb9 --- /dev/null +++ b/tools/singularity/kit_rt.def @@ -0,0 +1,72 @@ +Bootstrap: docker +From: ubuntu:20.04 + +%post + export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" + export PYTHONPATH=/usr/local/gmsh/lib:$PYTHONPATH + export PATH=/usr/local/gmsh/bin:$PATH + + apt-get update + DEBIAN_FRONTEND=noninteractive apt-get install -qq \ + gcc \ + g++ \ + libopenmpi-dev \ + openmpi-bin \ + libblas-dev \ + liblapack-dev \ + git \ + make \ + ninja-build \ + cmake \ + wget \ + ssh \ + libssl-dev \ + libxt-dev \ + libgl1-mesa-dev \ + libglu1 \ + libxrender1 \ + libxcursor-dev \ + libxft-dev \ + libxinerama-dev \ + python3 \ + python3-pip \ + doxygen + + apt-get clean + apt-get autoremove --purge + rm -rf /var/lib/apt/lists/* + + cd /usr/local + wget -nc --quiet http://gmsh.info/bin/Linux/gmsh-4.7.0-Linux64-sdk.tgz + tar xzf gmsh-4.7.0-Linux64-sdk.tgz + mv gmsh-4.7.0-Linux64-sdk gmsh + rm gmsh-4.7.0-Linux64-sdk.tgz + + wget -nc --no-check-certificate --quiet https://www.vtk.org/files/release/9.1/VTK-9.1.0.tar.gz + tar xzf VTK-9.1.0.tar.gz + mkdir VTK-9.1.0/build + cd VTK-9.1.0/build + cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DBUILD_DOCUMENTATION=OFF -DBUILD_TESTING=OFF ../ + ninja + ninja install > /dev/null + cd - + rm -rf VTK-* + + FILENAME=libtensorflow-gpu-linux-x86_64-2.7.0.tar.gz + wget -q --no-check-certificate https://storage.googleapis.com/tensorflow/libtensorflow/${FILENAME} + tar -C /usr/local -xzf ${FILENAME} + ldconfig /usr/local/lib + rm ${FILENAME} + + pip3 install numpy pygmsh==6.1.1 Pillow pydicom gcovr sphinx_rtd_theme breathe cpp-coveralls coveralls + +%environment + export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" + export PYTHONPATH=/usr/local/gmsh/lib:$PYTHONPATH + export PATH=/usr/local/gmsh/bin:$PATH + +%post + cd /home + +%runscript + exec /bin/bash \ No newline at end of file diff --git a/tools/singularity/singularity_run_interactive.sh b/tools/singularity/singularity_run_interactive.sh new file mode 100644 index 00000000..99b8b8a8 --- /dev/null +++ b/tools/singularity/singularity_run_interactive.sh @@ -0,0 +1 @@ +singularity shell --bind $(pwd)/../..:/mnt kit_rt.sif From 1c274809a413c894ff35a7af83c36f7a508ed759 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 3 Jan 2024 16:43:47 -0500 Subject: [PATCH 044/155] added lattice benchmark --- examples/configs/lattice_SN.cfg | 48 +++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 examples/configs/lattice_SN.cfg diff --git a/examples/configs/lattice_SN.cfg b/examples/configs/lattice_SN.cfg new file mode 100644 index 00000000..8c664fa3 --- /dev/null +++ b/examples/configs/lattice_SN.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.2024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result_lattice +OUTPUT_FILE = lattice_quad_order_19_grid_20 +LOG_DIR = result_lattice/logs +LOG_FILE = lattice_quad_order_19_grid_20 +MESH_FILE = meshes/geo_files/lattice_rectangular.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.95 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 19 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 From 1a32610df95c3adba9c42174bacf7af5e7f2763e Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 3 Jan 2024 16:52:02 -0500 Subject: [PATCH 045/155] small change in lattice testcase file --- examples/configs/lattice_SN.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/configs/lattice_SN.cfg b/examples/configs/lattice_SN.cfg index 8c664fa3..79a8dff6 100644 --- a/examples/configs/lattice_SN.cfg +++ b/examples/configs/lattice_SN.cfg @@ -11,7 +11,7 @@ OUTPUT_DIR = result_lattice OUTPUT_FILE = lattice_quad_order_19_grid_20 LOG_DIR = result_lattice/logs LOG_FILE = lattice_quad_order_19_grid_20 -MESH_FILE = meshes/geo_files/lattice_rectangular.su2 +MESH_FILE = meshes/testcases/lattice/lattice_rectangular.su2 % % --- Problem definition --- % From 7f9ddceda4785d98fdcde90b9d34214855b07065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Wed, 3 Jan 2024 18:51:28 -0500 Subject: [PATCH 046/155] added solver output --- src/common/config.cpp | 2 +- src/solvers/solverbase.cpp | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 12eab002..4ae2bc5c 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -251,7 +251,7 @@ void Config::SetConfigOptions() { * applicable in regression sampling \n DEFAULT false \ingroup Config */ AddBoolOption( "REALIZABILITY_RECONSTRUCTION", _realizabilityRecons, false ); /*! @brief Runge Kutta Staes \n DESCRIPTION: Sets number of Runge Kutta Stages for time integration \n DEFAULT 1 \ingroup Config */ - AddUnsignedShortOption( "RUNGE_KUTTA_STAGES", _rungeKuttaStages, 1 ); + AddUnsignedShortOption( "TIME_INTEGRATION_ORDER", _rungeKuttaStages, 1 ); // Problem Relateed Options /*! @brief MaterialDir \n DESCRIPTION: Relative Path to the data directory (used in the ICRU database class), starting from the directory of the diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index b28d8a9a..fadf14b8 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -215,6 +215,11 @@ double SolverBase::ComputeTimeStep( double cfl ) const { charSize = currCharSize; } } + auto log = spdlog::get( "event" ); + std::string line = "| Smallest characteristic length of a grid cell in this mesh: " + std::to_string( charSize ); + log->info( line ); + line = "| Corresponding maximal time-step: " + std::to_string( cfl * charSize ); + log->info( line ); return cfl * charSize; } From bb3ad328b75a4f65a7f84138f9efedb4f0c03c1c Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 4 Jan 2024 09:17:35 -0500 Subject: [PATCH 047/155] made progression for transfinite elements in lattice test case variable --- examples/meshes/geo_files/lattice_rectangular.geo | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/meshes/geo_files/lattice_rectangular.geo b/examples/meshes/geo_files/lattice_rectangular.geo index 84b477cf..81256ac4 100644 --- a/examples/meshes/geo_files/lattice_rectangular.geo +++ b/examples/meshes/geo_files/lattice_rectangular.geo @@ -1,6 +1,6 @@ -cl_fine = 0.25; -n_recombine = 20; - +cl_fine = 0.1; +n_recombine = 80; +n_prog = 1.1; Point(1) = {-3.5, -3.5, 0, cl_fine}; Point(2) = {3.5, -3.5, 0, cl_fine}; Point(3) = {-3.5, 3.5, 0, cl_fine}; @@ -722,9 +722,9 @@ Transfinite Surface {98}; Transfinite Surface {99}; Transfinite Surface {100}; //+ -Transfinite Curve {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114} = n_recombine Using Progression 1.2; +Transfinite Curve {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114} = n_recombine Using Progression n_prog; //+ -Transfinite Curve {126, 136, 146, 156, 166, 176, 186, 196, 206, 216, 226, 127, 137, 147, 157, 167, 177, 187, 197, 207, 217, 227, 128, 138, 148, 158, 168, 178, 188, 198, 208, 218, 228, 129, 139, 149, 159, 169, 179, 189, 199, 209, 219, 229, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 231, 132, 142, 152, 162, 172, 182, 192, 202, 212, 222, 232, 133, 143, 153, 163, 173, 183, 193, 203, 213, 223, 233, 134, 144, 154, 164, 174, 184, 194, 204, 214, 224, 234, 135, 145, 155, 165, 175, 185, 195, 205, 215, 225, 235} = n_recombine Using Progression 1.2; +Transfinite Curve {126, 136, 146, 156, 166, 176, 186, 196, 206, 216, 226, 127, 137, 147, 157, 167, 177, 187, 197, 207, 217, 227, 128, 138, 148, 158, 168, 178, 188, 198, 208, 218, 228, 129, 139, 149, 159, 169, 179, 189, 199, 209, 219, 229, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 231, 132, 142, 152, 162, 172, 182, 192, 202, 212, 222, 232, 133, 143, 153, 163, 173, 183, 193, 203, 213, 223, 233, 134, 144, 154, 164, 174, 184, 194, 204, 214, 224, 234, 135, 145, 155, 165, 175, 185, 195, 205, 215, 225, 235} = n_recombine Using Progression n_prog; // //+ Line(236) = {1, 126}; From d641538754fef726219ff3395234a562f4970cba Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 4 Jan 2024 09:26:37 -0500 Subject: [PATCH 048/155] added lattice meshing command --- examples/meshes/geo_files/make_lattice_mesh.sh | 1 + 1 file changed, 1 insertion(+) create mode 100644 examples/meshes/geo_files/make_lattice_mesh.sh diff --git a/examples/meshes/geo_files/make_lattice_mesh.sh b/examples/meshes/geo_files/make_lattice_mesh.sh new file mode 100644 index 00000000..95974234 --- /dev/null +++ b/examples/meshes/geo_files/make_lattice_mesh.sh @@ -0,0 +1 @@ +gmsh lattice_rectangular.geo -2 -format su2 -save_all \ No newline at end of file From c9d431a61854ad4a80a5b6a4238ce263ee500c82 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 4 Jan 2024 12:06:56 -0500 Subject: [PATCH 049/155] removed MPI and Python dependencies from KiT-RT --- CMakeLists.txt | 32 +------ include/common/io.hpp | 2 +- include/common/mesh.hpp | 2 - include/solvers/csdsnsolver.hpp | 1 - src/common/config.cpp | 17 ++-- src/common/io.cpp | 25 +++--- src/common/mesh.cpp | 52 +++++------ src/main.cpp | 11 +-- src/problems/phantomimage.cpp | 8 +- src/problems/radiationctimage.cpp | 11 ++- src/solvers/csdsnsolver.cpp | 1 - src/solvers/mnsolver.cpp | 1 - src/solvers/mnsolver_normalized.cpp | 1 - src/solvers/pnsolver.cpp | 1 - src/solvers/snsolver.cpp | 5 -- src/solvers/solverbase.cpp | 130 ++++++++++++---------------- tests/catch2_main.cpp | 5 +- tests/test_image_conversion.cpp | 2 + tools/singularity/kit_rt.def | 2 - 19 files changed, 125 insertions(+), 184 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 715aac2f..9bd46dec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,9 +31,6 @@ set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH}) find_package( OpenMP REQUIRED ) -find_package( MPI REQUIRED ) -include_directories( ${MPI_INCLUDE_PATH} ) - find_package( LAPACK REQUIRED ) include_directories( ${LAPACK_INCLUDE_DIR} ) @@ -41,9 +38,6 @@ find_package( BLAS ) find_package( VTK COMPONENTS vtkIOGeometry vtkFiltersCore REQUIRED ) -find_package( Python3 COMPONENTS Interpreter Development NumPy REQUIRED ) -include_directories( ${Python3_INCLUDE_DIRS} ${Python3_NumPy_INCLUDE_DIRS} ) - add_compile_definitions( KITRT_PYTHON_PATH="${CMAKE_SOURCE_DIR}/python" ) add_compile_definitions( BLAZE_USE_SHARED_MEMORY_PARALLELIZATION=0 ) message( STATUS "Blaze: Shared memory parallelization disabled" ) @@ -61,7 +55,7 @@ include_directories( ${CMAKE_SOURCE_DIR}/ext/blaze ) include_directories( ${CMAKE_SOURCE_DIR}/ext/cpptoml/include ) include_directories( ${CMAKE_SOURCE_DIR}/ext/spdlog/include ) -set( CORE_LIBRARIES ${Python3_LIBRARIES} ${LAPACK_LIBRARIES} ${BLAS_LIBRARIES} ${MPI_LIBRARIES} ${VTK_LIBRARIES} OpenMP::OpenMP_CXX -lstdc++fs ) +set( CORE_LIBRARIES ${LAPACK_LIBRARIES} ${BLAS_LIBRARIES} ${VTK_LIBRARIES} OpenMP::OpenMP_CXX -lstdc++fs ) ################################################# @@ -106,30 +100,6 @@ target_compile_options( ${CMAKE_PROJECT_NAME} PUBLIC "$<$ target_compile_options( ${CMAKE_PROJECT_NAME} PUBLIC "$<$:${KITRT_RELEASE_OPTIONS}>" ) ################################################# - -### BUILD ML ################################### -# Standalone ML Build (legacy) -#if( BUILD_ML ) -# # Tensorflow -# include_directories( ${CMAKE_SOURCE_DIR}/ext/cppflow/include/ ) -# find_library(TENSORFLOW_LIB tensorflow) -# add_executable( ${CMAKE_PROJECT_NAME} ${SRCS} ${EXT_SRCS} ) -# -# # Specify Path for tensorflow models -# add_compile_definitions( TENSORFLOW_MODEL_PATH="${CMAKE_SOURCE_DIR}/tfmodels" ) -# -# target_compile_definitions( ${CMAKE_PROJECT_NAME} PUBLIC BUILD_ML ) -# target_link_libraries( ${CMAKE_PROJECT_NAME} ${CORE_LIBRARIES} ${TENSORFLOW_LIB}) -# set_target_properties( ${CMAKE_PROJECT_NAME} PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/bin" ) -# -# target_compile_options( ${CMAKE_PROJECT_NAME} PUBLIC "$<$:${KITRT_DEBUG_OPTIONS}>" ) -# target_compile_options( ${CMAKE_PROJECT_NAME} PUBLIC "$<$:${KITRT_RELWITHDEBINFO_OPTIONS}>" ) -# target_compile_options( ${CMAKE_PROJECT_NAME} PUBLIC "$<$:${KITRT_RELEASE_OPTIONS}>" ) -# -#endif() -################################################# - - ### BUILD UNIT TESTS ############################ if( BUILD_TESTING ) include( CTest ) diff --git a/include/common/io.hpp b/include/common/io.hpp index 9aec05f4..2c9c0104 100644 --- a/include/common/io.hpp +++ b/include/common/io.hpp @@ -26,6 +26,6 @@ std::string ParseArguments( int argc, char* argv[] ); void PrintLogHeader( std::string inputFile ); -Matrix createSU2MeshFromImage( std::string imageName, std::string SU2Filename ); +//Matrix createSU2MeshFromImage( std::string imageName, std::string SU2Filename ); Deprecated #endif // IO_H diff --git a/include/common/mesh.hpp b/include/common/mesh.hpp index 75bf24d6..5994aaf5 100644 --- a/include/common/mesh.hpp +++ b/include/common/mesh.hpp @@ -6,8 +6,6 @@ #include "common/typedef.hpp" #include -#include -#include #include #include "toolboxes/errormessages.hpp" diff --git a/include/solvers/csdsnsolver.hpp b/include/solvers/csdsnsolver.hpp index 88aeb5cc..01e73f62 100644 --- a/include/solvers/csdsnsolver.hpp +++ b/include/solvers/csdsnsolver.hpp @@ -3,7 +3,6 @@ // externals #include "spdlog/spdlog.h" -#include #include "common/config.hpp" #include "common/io.hpp" diff --git a/src/common/config.cpp b/src/common/config.cpp index 4ae2bc5c..cfe89b4f 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -19,7 +19,6 @@ #include "spdlog/spdlog.h" #include #include -#include using namespace std; @@ -1170,8 +1169,8 @@ void Config::InitLogger() { } if( fileLogLvl != spdlog::level::off ) { // define filename on root - int pe; - MPI_Comm_rank( MPI_COMM_WORLD, &pe ); + int pe = 0; + // MPI_Comm_rank( MPI_COMM_WORLD, &pe ); char cfilename[1024]; if( pe == 0 ) { @@ -1201,8 +1200,8 @@ void Config::InitLogger() { strncpy( cfilename, filename.c_str(), sizeof( cfilename ) ); cfilename[sizeof( cfilename ) - 1] = 0; } - MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); - MPI_Barrier( MPI_COMM_WORLD ); + // MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); + // MPI_Barrier( MPI_COMM_WORLD ); // create spdlog file sink auto fileSink = std::make_shared( _logDir + cfilename ); @@ -1222,8 +1221,8 @@ void Config::InitLogger() { std::vector sinks; if( fileLogLvl != spdlog::level::off ) { // define filename on root - int pe; - MPI_Comm_rank( MPI_COMM_WORLD, &pe ); + int pe = 0; + // MPI_Comm_rank( MPI_COMM_WORLD, &pe ); char cfilename[1024]; if( pe == 0 ) { @@ -1253,8 +1252,8 @@ void Config::InitLogger() { strncpy( cfilename, filename.c_str(), sizeof( cfilename ) ); cfilename[sizeof( cfilename ) - 1] = 0; } - MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); - MPI_Barrier( MPI_COMM_WORLD ); + // MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); + // MPI_Barrier( MPI_COMM_WORLD ); // create spdlog file sink auto fileSink = std::make_shared( _logDir + cfilename ); diff --git a/src/common/io.cpp b/src/common/io.cpp index f59d1975..dbd71824 100644 --- a/src/common/io.cpp +++ b/src/common/io.cpp @@ -13,7 +13,7 @@ #include -#include +// #include #include #include @@ -27,9 +27,9 @@ #include #include -#include -#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION -#include +// #include +// #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION +// #include using vtkPointsSP = vtkSmartPointer; using vtkUnstructuredGridSP = vtkSmartPointer; @@ -43,8 +43,8 @@ void ExportVTK( const std::string fileName, const std::vector>>& outputFields, const std::vector>& outputFieldNames, const Mesh* mesh ) { - int rank; - MPI_Comm_rank( MPI_COMM_WORLD, &rank ); + int rank = 0; + // MPI_Comm_rank( MPI_COMM_WORLD, &rank ); if( rank == 0 ) { unsigned dim = mesh->GetDim(); unsigned numCells = mesh->GetNumCells(); @@ -132,7 +132,7 @@ void ExportVTK( const std::string fileName, // auto log = spdlog::get( "event" ); // log->info( "Result successfully exported to '{0}'!", fileNameWithExt ); } - MPI_Barrier( MPI_COMM_WORLD ); + // MPI_Barrier( MPI_COMM_WORLD ); } Mesh* LoadSU2MeshFromFile( const Config* settings ) { @@ -328,9 +328,10 @@ std::string ParseArguments( int argc, char* argv[] ) { } void PrintLogHeader( std::string inputFile ) { - int nprocs, rank; - MPI_Comm_size( MPI_COMM_WORLD, &nprocs ); - MPI_Comm_rank( MPI_COMM_WORLD, &rank ); + int nprocs = 1; + int rank = 0; + // MPI_Comm_size( MPI_COMM_WORLD, &nprocs ); + // MPI_Comm_rank( MPI_COMM_WORLD, &rank ); if( rank == 0 ) { auto log = spdlog::get( "event" ); @@ -366,9 +367,10 @@ void PrintLogHeader( std::string inputFile ) { } // log->info( "------------------------------------------------------------------------" ); } - MPI_Barrier( MPI_COMM_WORLD ); + // MPI_Barrier( MPI_COMM_WORLD ); } +/* Matrix createSU2MeshFromImage( std::string imageName, std::string SU2Filename ) { auto log = spdlog::get( "event" ); @@ -433,3 +435,4 @@ Matrix createSU2MeshFromImage( std::string imageName, std::string SU2Filename ) return gsImage.transpose(); } +*/ \ No newline at end of file diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 7264d4d9..fd6d44a1 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -1,6 +1,7 @@ #include "common/mesh.hpp" #include +#include Mesh::Mesh( std::vector nodes, std::vector> cells, @@ -29,15 +30,11 @@ Mesh::~Mesh() {} void Mesh::ComputeConnectivity() { auto log = spdlog::get( "event" ); - // get MPI info - int comm_size, comm_rank; - MPI_Comm_size( MPI_COMM_WORLD, &comm_size ); - MPI_Comm_rank( MPI_COMM_WORLD, &comm_rank ); - - // determine number/chunk size and indices of cells treated by each mpi thread - unsigned chunkSize = std::ceil( static_cast( _numCells ) / static_cast( comm_size ) ); - unsigned mpiCellStart = comm_rank * chunkSize; - unsigned mpiCellEnd = std::min( ( comm_rank + 1 ) * chunkSize, _numCells ); + unsigned comm_size = 1; // No MPI implementation right now + // determine number/chunk size and indices of cells treated by each mpi thread (deactivated for now) + unsigned chunkSize = _numCells; // std::ceil( static_cast( _numCells ) / static_cast( comm_size ) ); + unsigned mpiCellStart = 0; // comm_rank * chunkSize; + unsigned mpiCellEnd = _numCells; // std::min( ( comm_rank + 1 ) * chunkSize, _numCells ); // 'flat' vectors are a flattened representation of the neighbors numCells nested vectors; easier for MPI // 'part' vectors store information for each single MPI thread @@ -49,7 +46,7 @@ void Mesh::ComputeConnectivity() { log->info( "| ... sort cells..." ); auto sortedCells( _cells ); -#pragma omp parallal for +#pragma omp parallel for for( unsigned i = 0; i < _numCells; ++i ) { std::sort( sortedCells[i].begin(), sortedCells[i].end() ); } @@ -62,7 +59,8 @@ void Mesh::ComputeConnectivity() { // save which cell has which nodes log->info( "| ... connect cells to nodes..." ); blaze::CompressedMatrix connMat( _numCells, _numNodes ); -#pragma omp parallal for + + // #pragma omp parallel for for( unsigned i = mpiCellStart; i < mpiCellEnd; ++i ) { for( auto j : _cells[i] ) connMat.set( i, j, true ); } @@ -132,20 +130,20 @@ void Mesh::ComputeConnectivity() { std::vector neighborsFlat( _numNodesPerCell * chunkSize * comm_size, -1 ); std::vector normalsFlat( _numNodesPerCell * chunkSize * comm_size, Vector( _dim, 0.0 ) ); std::vector interfaceMidFlat( _numNodesPerCell * chunkSize * comm_size, Vector( _dim, 0.0 ) ); - if( comm_size == 1 ) { // can be done directly if there is only one MPI thread - neighborsFlat.assign( neighborsFlatPart.begin(), neighborsFlatPart.end() ); - normalsFlat.assign( normalsFlatPart.begin(), normalsFlatPart.end() ); - interfaceMidFlat.assign( interfaceMidFlatPart.begin(), interfaceMidFlatPart.end() ); - } - else { - MPI_Allgather( neighborsFlatPart.data(), - _numNodesPerCell * chunkSize, - MPI_INT, - neighborsFlat.data(), - _numNodesPerCell * chunkSize, - MPI_INT, - MPI_COMM_WORLD ); - } + // if( comm_size == 1 ) { // can be done directly if there is only one MPI thread + neighborsFlat.assign( neighborsFlatPart.begin(), neighborsFlatPart.end() ); + normalsFlat.assign( normalsFlatPart.begin(), normalsFlatPart.end() ); + interfaceMidFlat.assign( interfaceMidFlatPart.begin(), interfaceMidFlatPart.end() ); + //} + // else { + // MPI_Allgather( neighborsFlatPart.data(), + // _numNodesPerCell * chunkSize, + // MPI_INT, + // neighborsFlat.data(), + // _numNodesPerCell * chunkSize, + // MPI_INT, + // MPI_COMM_WORLD ); + //} // check for any unassigned faces if( std::any_of( neighborsFlat.begin(), neighborsFlat.end(), []( int i ) { return i == -1; } ) ) { // if any entry in neighborsFlat is -1 @@ -181,7 +179,7 @@ void Mesh::ComputeConnectivity() { // assign boundary types to all cells _cellBoundaryTypes.resize( _numCells, BOUNDARY_TYPE::NONE ); - // #pragma omp parallel for +#pragma omp parallel for for( unsigned i = 0; i < _numCells; ++i ) { if( std::any_of( _cellNeighbors[i].begin(), _cellNeighbors[i].end(), [this]( unsigned i ) { return i == _ghostCellID; @@ -199,6 +197,7 @@ void Mesh::ComputeConnectivity() { void Mesh::ComputeCellAreas() { _cellAreas.resize( _numCells ); +#pragma omp parallel for for( unsigned i = 0; i < _numCells; ++i ) { switch( _numNodesPerCell ) { case 3: { // triangular cells @@ -237,6 +236,7 @@ void Mesh::ComputeCellAreas() { void Mesh::ComputeCellMidpoints() { _cellMidPoints = std::vector( _numCells, Vector( _dim, 0.0 ) ); +#pragma omp parallel for for( unsigned j = 0; j < _numCells; ++j ) { // loop over cells for( unsigned l = 0; l < _cells[j].size(); ++l ) { // loop over nodes of the cell _cellMidPoints[j] = _cellMidPoints[j] + _nodes[_cells[j][l]]; diff --git a/src/main.cpp b/src/main.cpp index f2758426..e94674e9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4,9 +4,6 @@ * @version: 0.1 */ -#include -#define PY_ARRAY_UNIQUE_SYMBOL KITRT_ARRAY_API -#include #include #include "common/config.hpp" @@ -23,15 +20,13 @@ int main( int argc, char** argv ) { #ifdef BUILD_GUI - MPI_Init( &argc, &argv ); QApplication app( argc, argv ); MainWindow mw; mw.show(); return app.exec(); #else - MPI_Init( &argc, &argv ); - wchar_t* program = Py_DecodeLocale( argv[0], NULL ); - Py_SetProgramName( program ); + // wchar_t* program = Py_DecodeLocale( argv[0], NULL ); + // Py_SetProgramName( program ); std::string filename = ParseArguments( argc, argv ); @@ -59,8 +54,6 @@ int main( int argc, char** argv ) { delete config; - MPI_Finalize(); - return EXIT_SUCCESS; #endif } diff --git a/src/problems/phantomimage.cpp b/src/problems/phantomimage.cpp index 358eadb4..6c0e11fa 100644 --- a/src/problems/phantomimage.cpp +++ b/src/problems/phantomimage.cpp @@ -32,8 +32,12 @@ std::vector PhantomImage::GetDensity( const VectorVector& cellMidPoints std::string imageFile = _settings->GetCTFile(); std::string meshFile = _settings->GetMeshFile(); - Matrix gsImage = createSU2MeshFromImage( imageFile, meshFile ); - auto bounds = _mesh->GetBounds(); + ErrorMessages::Error( "Python API support is deprecated for KiT-RT. This function needs to be rewritten.\n Use a python script to first create " + "the mesh, then call KiT-RT from Python. This is the recommended workflow for stability and performance.", + CURRENT_FUNCTION ); + + Matrix gsImage = Matrix( 0, 0 ); // createSU2MeshFromImage( imageFile, meshFile ); DEprecated + auto bounds = _mesh->GetBounds(); double xMin = bounds[0].first; double xMax = bounds[0].second; diff --git a/src/problems/radiationctimage.cpp b/src/problems/radiationctimage.cpp index 7e7be88d..c9b90b1f 100644 --- a/src/problems/radiationctimage.cpp +++ b/src/problems/radiationctimage.cpp @@ -67,9 +67,12 @@ VectorVector RadiationCTImage::SetupIC() { std::vector RadiationCTImage::GetDensity( const VectorVector& /*cellMidPoints*/ ) { std::string imageFile = _settings->GetCTFile(); std::string meshFile = _settings->GetMeshFile(); - Matrix gsImage = createSU2MeshFromImage( imageFile, meshFile ); - auto bounds = _mesh->GetBounds(); - auto cellMidPoints = _mesh->GetCellMidPoints(); + ErrorMessages::Error( "Python API support is deprecated for KiT-RT. This function needs to be rewritten.\n Use a python script to first create " + "the mesh, then call KiT-RT from Python. This is the recommended workflow for stability and performance.", + CURRENT_FUNCTION ); + Matrix gsImage = Matrix( 0, 0 ); // createSU2MeshFromImage( imageFile, meshFile ); DEprecated + auto bounds = _mesh->GetBounds(); + auto cellMidPoints = _mesh->GetCellMidPoints(); double xMin = bounds[0].first; double xMax = bounds[0].second; @@ -107,7 +110,7 @@ VectorVector RadiationCTImage::GetTotalXS( const Vector& /*energies*/ ) { return VectorVector( 1, Vector( 1, 0.0 ) ); } -RadiationCTImage_Moment::RadiationCTImage_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : RadiationCTImage( settings, mesh,quad ) {} +RadiationCTImage_Moment::RadiationCTImage_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : RadiationCTImage( settings, mesh, quad ) {} RadiationCTImage_Moment::~RadiationCTImage_Moment() {} diff --git a/src/solvers/csdsnsolver.cpp b/src/solvers/csdsnsolver.cpp index e5efab35..69159659 100644 --- a/src/solvers/csdsnsolver.cpp +++ b/src/solvers/csdsnsolver.cpp @@ -13,7 +13,6 @@ // externals #include "spdlog/spdlog.h" -#include CSDSNSolver::CSDSNSolver( Config* settings ) : SNSolver( settings ) { _dose = std::vector( _settings->GetNCells(), 0.0 ); diff --git a/src/solvers/mnsolver.cpp b/src/solvers/mnsolver.cpp index 96625513..e6a9c4f8 100644 --- a/src/solvers/mnsolver.cpp +++ b/src/solvers/mnsolver.cpp @@ -13,7 +13,6 @@ // externals #include "spdlog/spdlog.h" -#include MNSolver::MNSolver( Config* settings ) : SolverBase( settings ) { diff --git a/src/solvers/mnsolver_normalized.cpp b/src/solvers/mnsolver_normalized.cpp index a622b4f3..b7c4cf20 100644 --- a/src/solvers/mnsolver_normalized.cpp +++ b/src/solvers/mnsolver_normalized.cpp @@ -17,7 +17,6 @@ // externals #include "spdlog/spdlog.h" #include -#include MNSolverNormalized::MNSolverNormalized( Config* settings ) : MNSolver( settings ) { _u0 = Vector( _nCells, 0.0 ); diff --git a/src/solvers/pnsolver.cpp b/src/solvers/pnsolver.cpp index ffb4b58f..7c36516d 100644 --- a/src/solvers/pnsolver.cpp +++ b/src/solvers/pnsolver.cpp @@ -11,7 +11,6 @@ #include "spdlog/spdlog.h" #include -#include PNSolver::PNSolver( Config* settings ) : SolverBase( settings ) { _polyDegreeBasis = settings->GetMaxMomentDegree(); diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index 592b6c36..2694525e 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -10,11 +10,6 @@ #include "toolboxes/errormessages.hpp" #include "toolboxes/textprocessingtoolbox.hpp" -// externals -#include - -#include - #include "spdlog/spdlog.h" SNSolver::SNSolver( Config* settings ) : SolverBase( settings ) { diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index fadf14b8..cb060086 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -16,7 +16,6 @@ #include "toolboxes/textprocessingtoolbox.hpp" #include #include -#include SolverBase::SolverBase( Config* settings ) { _settings = settings; @@ -372,8 +371,6 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { } void SolverBase::PrintScreenOutput( unsigned idx_iter ) { - int rank; - MPI_Comm_rank( MPI_COMM_WORLD, &rank ); auto log = spdlog::get( "event" ); unsigned strLen = 15; // max width of one column @@ -424,13 +421,11 @@ void SolverBase::PrintScreenOutput( unsigned idx_iter ) { lineToPrint += tmp + " |"; } - if( rank == 0 ) { - if( _settings->GetScreenOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetScreenOutputFrequency() == 0 ) { - log->info( lineToPrint ); - } - else if( idx_iter == _nIter - 1 ) { // Always print last iteration - log->info( lineToPrint ); - } + if( _settings->GetScreenOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetScreenOutputFrequency() == 0 ) { + log->info( lineToPrint ); + } + else if( idx_iter == _nIter - 1 ) { // Always print last iteration + log->info( lineToPrint ); } } @@ -483,8 +478,7 @@ void SolverBase::PrepareHistoryOutput() { } void SolverBase::PrintHistoryOutput( unsigned idx_iter ) { - int rank; - MPI_Comm_rank( MPI_COMM_WORLD, &rank ); + auto log = spdlog::get( "tabular" ); // assemble the line to print @@ -497,20 +491,15 @@ void SolverBase::PrintHistoryOutput( unsigned idx_iter ) { tmp = std::to_string( _screenOutputFields[_settings->GetNScreenOutput() - 1] ); lineToPrint += tmp; // Last element without comma - if( rank == 0 ) { - if( _settings->GetHistoryOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) { - log->info( lineToPrint ); - } - else if( idx_iter == _nEnergies - 1 ) { // Always print last iteration - log->info( lineToPrint ); - } + if( _settings->GetHistoryOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) { + log->info( lineToPrint ); + } + else if( idx_iter == _nEnergies - 1 ) { // Always print last iteration + log->info( lineToPrint ); } } void SolverBase::DrawPreSolverOutput() { - // MPI - int rank; - MPI_Comm_rank( MPI_COMM_WORLD, &rank ); // Logger auto log = spdlog::get( "event" ); @@ -518,76 +507,69 @@ void SolverBase::DrawPreSolverOutput() { std::string hLine = "--"; - if( rank == 0 ) { - unsigned strLen = 15; // max width of one column - char paddingChar = ' '; - - // Assemble Header for Screen Output - std::string lineToPrint = "| "; - std::string tmpLine = "-----------------"; - for( unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++ ) { - std::string tmp = _screenOutputFieldNames[idxFields]; + unsigned strLen = 15; // max width of one column + char paddingChar = ' '; - if( strLen > tmp.size() ) // Padding - tmp.insert( 0, strLen - tmp.size(), paddingChar ); - else if( strLen < tmp.size() ) // Cutting - tmp.resize( strLen ); + // Assemble Header for Screen Output + std::string lineToPrint = "| "; + std::string tmpLine = "-----------------"; + for( unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++ ) { + std::string tmp = _screenOutputFieldNames[idxFields]; - lineToPrint += tmp + " |"; - hLine += tmpLine; - } - log->info( "---------------------------- Solver Starts -----------------------------" ); - log->info( "| The simulation will run for {} iterations.", _nEnergies ); - log->info( "| The spatial grid contains {} cells.", _nCells ); - log->info( hLine ); - log->info( lineToPrint ); - log->info( hLine ); + if( strLen > tmp.size() ) // Padding + tmp.insert( 0, strLen - tmp.size(), paddingChar ); + else if( strLen < tmp.size() ) // Cutting + tmp.resize( strLen ); - std::string lineToPrintCSV = ""; - for( int idxFields = 0; idxFields < _settings->GetNHistoryOutput() - 1; idxFields++ ) { - std::string tmp = _historyOutputFieldNames[idxFields]; - lineToPrintCSV += tmp + ","; - } - lineToPrintCSV += _historyOutputFieldNames[_settings->GetNHistoryOutput() - 1]; - logCSV->info( lineToPrintCSV ); + lineToPrint += tmp + " |"; + hLine += tmpLine; + } + log->info( "---------------------------- Solver Starts -----------------------------" ); + log->info( "| The simulation will run for {} iterations.", _nEnergies ); + log->info( "| The spatial grid contains {} cells.", _nCells ); + log->info( hLine ); + log->info( lineToPrint ); + log->info( hLine ); + + std::string lineToPrintCSV = ""; + for( int idxFields = 0; idxFields < _settings->GetNHistoryOutput() - 1; idxFields++ ) { + std::string tmp = _historyOutputFieldNames[idxFields]; + lineToPrintCSV += tmp + ","; } + lineToPrintCSV += _historyOutputFieldNames[_settings->GetNHistoryOutput() - 1]; + logCSV->info( lineToPrintCSV ); } void SolverBase::DrawPostSolverOutput() { - // MPI - int rank; - MPI_Comm_rank( MPI_COMM_WORLD, &rank ); // Logger auto log = spdlog::get( "event" ); std::string hLine = "--"; - if( rank == 0 ) { - unsigned strLen = 10; // max width of one column - char paddingChar = ' '; + unsigned strLen = 10; // max width of one column + char paddingChar = ' '; - // Assemble Header for Screen Output - std::string lineToPrint = "| "; - std::string tmpLine = "------------"; - for( unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++ ) { - std::string tmp = _screenOutputFieldNames[idxFields]; + // Assemble Header for Screen Output + std::string lineToPrint = "| "; + std::string tmpLine = "------------"; + for( unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++ ) { + std::string tmp = _screenOutputFieldNames[idxFields]; - if( strLen > tmp.size() ) // Padding - tmp.insert( 0, strLen - tmp.size(), paddingChar ); - else if( strLen < tmp.size() ) // Cutting - tmp.resize( strLen ); + if( strLen > tmp.size() ) // Padding + tmp.insert( 0, strLen - tmp.size(), paddingChar ); + else if( strLen < tmp.size() ) // Cutting + tmp.resize( strLen ); - lineToPrint += tmp + " |"; - hLine += tmpLine; - } - log->info( hLine ); + lineToPrint += tmp + " |"; + hLine += tmpLine; + } + log->info( hLine ); #ifndef BUILD_TESTING - log->info( "| The volume output files have been stored at " + _settings->GetOutputFile() ); - log->info( "| The log files have been stored at " + _settings->GetLogDir() + _settings->GetLogFile() ); + log->info( "| The volume output files have been stored at " + _settings->GetOutputFile() ); + log->info( "| The log files have been stored at " + _settings->GetLogDir() + _settings->GetLogFile() ); #endif - log->info( "--------------------------- Solver Finished ----------------------------" ); - } + log->info( "--------------------------- Solver Finished ----------------------------" ); } void SolverBase::SolverPreprocessing() {} diff --git a/tests/catch2_main.cpp b/tests/catch2_main.cpp index 40dbb5b0..b886bbb0 100644 --- a/tests/catch2_main.cpp +++ b/tests/catch2_main.cpp @@ -4,10 +4,9 @@ #include #define PY_ARRAY_UNIQUE_SYMBOL KITRT_ARRAY_API #include -#include int main( int argc, char** argv ) { - MPI_Init( &argc, &argv ); + // MPI_Init( &argc, &argv ); wchar_t* program = Py_DecodeLocale( argv[0], NULL ); Py_SetProgramName( program ); @@ -16,6 +15,6 @@ int main( int argc, char** argv ) { std::filesystem::remove_all( std::string( TESTS_PATH ) + "result" ); - MPI_Finalize(); + // MPI_Finalize(); return result; } diff --git a/tests/test_image_conversion.cpp b/tests/test_image_conversion.cpp index 83212c0f..a738ab7c 100644 --- a/tests/test_image_conversion.cpp +++ b/tests/test_image_conversion.cpp @@ -8,6 +8,7 @@ #include "toolboxes/interpolation.hpp" #include "toolboxes/textprocessingtoolbox.hpp" +/* DEPRECATED TEST_CASE( "convert image data to grayscale matrix", "[image I/O]" ) { std::string config_file_name = std::string( TESTS_PATH ) + "input/unit_tests/common/image_conversion.cfg"; @@ -97,3 +98,4 @@ TEST_CASE( "convert image data to grayscale matrix", "[image I/O]" ) { std::remove( testMesh.c_str() ); } +*/ \ No newline at end of file diff --git a/tools/singularity/kit_rt.def b/tools/singularity/kit_rt.def index 376b5cb9..01b4ac9d 100644 --- a/tools/singularity/kit_rt.def +++ b/tools/singularity/kit_rt.def @@ -10,8 +10,6 @@ From: ubuntu:20.04 DEBIAN_FRONTEND=noninteractive apt-get install -qq \ gcc \ g++ \ - libopenmpi-dev \ - openmpi-bin \ libblas-dev \ liblapack-dev \ git \ From c3cc36e9de9844ab7008ca66090326ffcb457c00 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 4 Jan 2024 12:07:33 -0500 Subject: [PATCH 050/155] added MPI singularity def file --- tools/singularity/kit_rt_MPI.def | 72 ++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 tools/singularity/kit_rt_MPI.def diff --git a/tools/singularity/kit_rt_MPI.def b/tools/singularity/kit_rt_MPI.def new file mode 100644 index 00000000..376b5cb9 --- /dev/null +++ b/tools/singularity/kit_rt_MPI.def @@ -0,0 +1,72 @@ +Bootstrap: docker +From: ubuntu:20.04 + +%post + export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" + export PYTHONPATH=/usr/local/gmsh/lib:$PYTHONPATH + export PATH=/usr/local/gmsh/bin:$PATH + + apt-get update + DEBIAN_FRONTEND=noninteractive apt-get install -qq \ + gcc \ + g++ \ + libopenmpi-dev \ + openmpi-bin \ + libblas-dev \ + liblapack-dev \ + git \ + make \ + ninja-build \ + cmake \ + wget \ + ssh \ + libssl-dev \ + libxt-dev \ + libgl1-mesa-dev \ + libglu1 \ + libxrender1 \ + libxcursor-dev \ + libxft-dev \ + libxinerama-dev \ + python3 \ + python3-pip \ + doxygen + + apt-get clean + apt-get autoremove --purge + rm -rf /var/lib/apt/lists/* + + cd /usr/local + wget -nc --quiet http://gmsh.info/bin/Linux/gmsh-4.7.0-Linux64-sdk.tgz + tar xzf gmsh-4.7.0-Linux64-sdk.tgz + mv gmsh-4.7.0-Linux64-sdk gmsh + rm gmsh-4.7.0-Linux64-sdk.tgz + + wget -nc --no-check-certificate --quiet https://www.vtk.org/files/release/9.1/VTK-9.1.0.tar.gz + tar xzf VTK-9.1.0.tar.gz + mkdir VTK-9.1.0/build + cd VTK-9.1.0/build + cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DBUILD_DOCUMENTATION=OFF -DBUILD_TESTING=OFF ../ + ninja + ninja install > /dev/null + cd - + rm -rf VTK-* + + FILENAME=libtensorflow-gpu-linux-x86_64-2.7.0.tar.gz + wget -q --no-check-certificate https://storage.googleapis.com/tensorflow/libtensorflow/${FILENAME} + tar -C /usr/local -xzf ${FILENAME} + ldconfig /usr/local/lib + rm ${FILENAME} + + pip3 install numpy pygmsh==6.1.1 Pillow pydicom gcovr sphinx_rtd_theme breathe cpp-coveralls coveralls + +%environment + export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" + export PYTHONPATH=/usr/local/gmsh/lib:$PYTHONPATH + export PATH=/usr/local/gmsh/bin:$PATH + +%post + cd /home + +%runscript + exec /bin/bash \ No newline at end of file From e751a37ee8bfe0b46103289e5a9ecbb1f02d3c83 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Thu, 4 Jan 2024 13:52:44 -0500 Subject: [PATCH 051/155] updated geo file --- examples/meshes/geo_files/lattice_rectangular.geo | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/examples/meshes/geo_files/lattice_rectangular.geo b/examples/meshes/geo_files/lattice_rectangular.geo index 81256ac4..45a22210 100644 --- a/examples/meshes/geo_files/lattice_rectangular.geo +++ b/examples/meshes/geo_files/lattice_rectangular.geo @@ -722,10 +722,13 @@ Transfinite Surface {98}; Transfinite Surface {99}; Transfinite Surface {100}; //+ -Transfinite Curve {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114} = n_recombine Using Progression n_prog; +Transfinite Curve {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103} = n_recombine Using Progression n_prog; +// add outer perimeter with half as many cells and no Progression +Transfinite Curve {104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15} = n_recombine / 4 Using Progression 1; //+ -Transfinite Curve {126, 136, 146, 156, 166, 176, 186, 196, 206, 216, 226, 127, 137, 147, 157, 167, 177, 187, 197, 207, 217, 227, 128, 138, 148, 158, 168, 178, 188, 198, 208, 218, 228, 129, 139, 149, 159, 169, 179, 189, 199, 209, 219, 229, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 231, 132, 142, 152, 162, 172, 182, 192, 202, 212, 222, 232, 133, 143, 153, 163, 173, 183, 193, 203, 213, 223, 233, 134, 144, 154, 164, 174, 184, 194, 204, 214, 224, 234, 135, 145, 155, 165, 175, 185, 195, 205, 215, 225, 235} = n_recombine Using Progression n_prog; -// +Transfinite Curve { 127, 137, 147, 157, 167, 177, 187, 197, 207, 217, 227, 128, 138, 148, 158, 168, 178, 188, 198, 208, 218, 228, 129, 139, 149, 159, 169, 179, 189, 199, 209, 219, 229, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 231, 132, 142, 152, 162, 172, 182, 192, 202, 212, 222, 232, 133, 143, 153, 163, 173, 183, 193, 203, 213, 223, 233, 134, 144, 154, 164, 174, 184, 194, 204, 214, 224, 234} = n_recombine Using Progression n_prog; +// add outer perimeter with half as many cells and no Progression +Transfinite Curve {126, 136, 146, 156, 166, 176, 186, 196, 206, 216, 226, 135, 145, 155, 165, 175, 185, 195, 205, 215, 225, 235} = n_recombine / 4 Using Progression 1; //+ Line(236) = {1, 126}; //+ @@ -1176,8 +1179,10 @@ Transfinite Surface {144}; //+ Transfinite Surface {145}; //+ -Transfinite Curve {237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 273, 274, 275, 276, 277, 278, 279, 280, 281,282} = n_recombine Using Progression 1; -//+ +Transfinite Curve { 238, 239, 240, 241, 242, 243, 244, 245, 250, 251, 252, 253, 254, 255, 256, 257, 262, 263, 264, 265, 266, 267, 268, 269, 274, 275, 276, 277, 278, 279, 280, 281} = n_recombine Using Progression 1; +Transfinite Curve {237,246,249, 258,261,270,273,282} = n_recombine / 4 Using Progression 1; + + Physical Curve("void",328) = {236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283}; Recombine Surface "*"; From 40e43135589e0eba44b035af13ce30cf103b6485 Mon Sep 17 00:00:00 2001 From: Schotthoefer S Date: Thu, 4 Jan 2024 14:02:15 -0500 Subject: [PATCH 052/155] new example file structure --- examples_hpc/lattice/lattice_S19_n20.cfg | 48 + .../lattice/mesh/lattice_rectangular.geo | 1193 +++++++++++++++++ .../lattice/mesh/make_lattice_mesh.sh | 1 + 3 files changed, 1242 insertions(+) create mode 100644 examples_hpc/lattice/lattice_S19_n20.cfg create mode 100644 examples_hpc/lattice/mesh/lattice_rectangular.geo create mode 100644 examples_hpc/lattice/mesh/make_lattice_mesh.sh diff --git a/examples_hpc/lattice/lattice_S19_n20.cfg b/examples_hpc/lattice/lattice_S19_n20.cfg new file mode 100644 index 00000000..b733b86e --- /dev/null +++ b/examples_hpc/lattice/lattice_S19_n20.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.2024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_19_n20 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_19_n20 +MESH_FILE = mesh/lattice_n20.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.95 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 19 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/mesh/lattice_rectangular.geo b/examples_hpc/lattice/mesh/lattice_rectangular.geo new file mode 100644 index 00000000..45a22210 --- /dev/null +++ b/examples_hpc/lattice/mesh/lattice_rectangular.geo @@ -0,0 +1,1193 @@ +cl_fine = 0.1; +n_recombine = 80; +n_prog = 1.1; +Point(1) = {-3.5, -3.5, 0, cl_fine}; +Point(2) = {3.5, -3.5, 0, cl_fine}; +Point(3) = {-3.5, 3.5, 0, cl_fine}; +Point(4) = {3.5, 3.5, 0, cl_fine}; + +// Inner grid +Point(5) = { -2.5, -2.5, 0, cl_fine }; +Point(6) = { -2.5, -2.0, 0, cl_fine }; +Point(7) = { -2.5, -1.5, 0, cl_fine }; +Point(8) = { -2.5, -1.0, 0, cl_fine }; +Point(9) = { -2.5, -0.5, 0, cl_fine }; +Point(10) = { -2.5, 0.0, 0, cl_fine }; +Point(11) = { -2.5, 0.5, 0, cl_fine }; +Point(12) = { -2.5, 1.0, 0, cl_fine }; +Point(13) = { -2.5, 1.5, 0, cl_fine }; +Point(14) = { -2.5, 2.0, 0, cl_fine }; +Point(15) = { -2.5, 2.5, 0, cl_fine }; +Point(16) = { -2.0, -2.5, 0, cl_fine }; +Point(17) = { -2.0, -2.0, 0, cl_fine }; +Point(18) = { -2.0, -1.5, 0, cl_fine }; +Point(19) = { -2.0, -1.0, 0, cl_fine }; +Point(20) = { -2.0, -0.5, 0, cl_fine }; +Point(21) = { -2.0, 0.0, 0, cl_fine }; +Point(22) = { -2.0, 0.5, 0, cl_fine }; +Point(23) = { -2.0, 1.0, 0, cl_fine }; +Point(24) = { -2.0, 1.5, 0, cl_fine }; +Point(25) = { -2.0, 2.0, 0, cl_fine }; +Point(26) = { -2.0, 2.5, 0, cl_fine }; +Point(27) = { -1.5, -2.5, 0, cl_fine }; +Point(28) = { -1.5, -2.0, 0, cl_fine }; +Point(29) = { -1.5, -1.5, 0, cl_fine }; +Point(30) = { -1.5, -1.0, 0, cl_fine }; +Point(31) = { -1.5, -0.5, 0, cl_fine }; +Point(32) = { -1.5, 0.0, 0, cl_fine }; +Point(33) = { -1.5, 0.5, 0, cl_fine }; +Point(34) = { -1.5, 1.0, 0, cl_fine }; +Point(35) = { -1.5, 1.5, 0, cl_fine }; +Point(36) = { -1.5, 2.0, 0, cl_fine }; +Point(37) = { -1.5, 2.5, 0, cl_fine }; +Point(38) = { -1.0, -2.5, 0, cl_fine }; +Point(39) = { -1.0, -2.0, 0, cl_fine }; +Point(40) = { -1.0, -1.5, 0, cl_fine }; +Point(41) = { -1.0, -1.0, 0, cl_fine }; +Point(42) = { -1.0, -0.5, 0, cl_fine }; +Point(43) = { -1.0, 0.0, 0, cl_fine }; +Point(44) = { -1.0, 0.5, 0, cl_fine }; +Point(45) = { -1.0, 1.0, 0, cl_fine }; +Point(46) = { -1.0, 1.5, 0, cl_fine }; +Point(47) = { -1.0, 2.0, 0, cl_fine }; +Point(48) = { -1.0, 2.5, 0, cl_fine }; +Point(49) = { -0.5, -2.5, 0, cl_fine }; +Point(50) = { -0.5, -2.0, 0, cl_fine }; +Point(51) = { -0.5, -1.5, 0, cl_fine }; +Point(52) = { -0.5, -1.0, 0, cl_fine }; +Point(53) = { -0.5, -0.5, 0, cl_fine }; +Point(54) = { -0.5, 0.0, 0, cl_fine }; +Point(55) = { -0.5, 0.5, 0, cl_fine }; +Point(56) = { -0.5, 1.0, 0, cl_fine }; +Point(57) = { -0.5, 1.5, 0, cl_fine }; +Point(58) = { -0.5, 2.0, 0, cl_fine }; +Point(59) = { -0.5, 2.5, 0, cl_fine }; +Point(60) = { 0.0, -2.5, 0, cl_fine }; +Point(61) = { 0.0, -2.0, 0, cl_fine }; +Point(62) = { 0.0, -1.5, 0, cl_fine }; +Point(63) = { 0.0, -1.0, 0, cl_fine }; +Point(64) = { 0.0, -0.5, 0, cl_fine }; +Point(65) = { 0.0, 0.0, 0, cl_fine }; +Point(66) = { 0.0, 0.5, 0, cl_fine }; +Point(67) = { 0.0, 1.0, 0, cl_fine }; +Point(68) = { 0.0, 1.5, 0, cl_fine }; +Point(69) = { 0.0, 2.0, 0, cl_fine }; +Point(70) = { 0.0, 2.5, 0, cl_fine }; +Point(71) = { 0.5, -2.5, 0, cl_fine }; +Point(72) = { 0.5, -2.0, 0, cl_fine }; +Point(73) = { 0.5, -1.5, 0, cl_fine }; +Point(74) = { 0.5, -1.0, 0, cl_fine }; +Point(75) = { 0.5, -0.5, 0, cl_fine }; +Point(76) = { 0.5, 0.0, 0, cl_fine }; +Point(77) = { 0.5, 0.5, 0, cl_fine }; +Point(78) = { 0.5, 1.0, 0, cl_fine }; +Point(79) = { 0.5, 1.5, 0, cl_fine }; +Point(80) = { 0.5, 2.0, 0, cl_fine }; +Point(81) = { 0.5, 2.5, 0, cl_fine }; +Point(82) = { 1.0, -2.5, 0, cl_fine }; +Point(83) = { 1.0, -2.0, 0, cl_fine }; +Point(84) = { 1.0, -1.5, 0, cl_fine }; +Point(85) = { 1.0, -1.0, 0, cl_fine }; +Point(86) = { 1.0, -0.5, 0, cl_fine }; +Point(87) = { 1.0, 0.0, 0, cl_fine }; +Point(88) = { 1.0, 0.5, 0, cl_fine }; +Point(89) = { 1.0, 1.0, 0, cl_fine }; +Point(90) = { 1.0, 1.5, 0, cl_fine }; +Point(91) = { 1.0, 2.0, 0, cl_fine }; +Point(92) = { 1.0, 2.5, 0, cl_fine }; +Point(93) = { 1.5, -2.5, 0, cl_fine }; +Point(94) = { 1.5, -2.0, 0, cl_fine }; +Point(95) = { 1.5, -1.5, 0, cl_fine }; +Point(96) = { 1.5, -1.0, 0, cl_fine }; +Point(97) = { 1.5, -0.5, 0, cl_fine }; +Point(98) = { 1.5, 0.0, 0, cl_fine }; +Point(99) = { 1.5, 0.5, 0, cl_fine }; +Point(100) = { 1.5, 1.0, 0, cl_fine }; +Point(101) = { 1.5, 1.5, 0, cl_fine }; +Point(102) = { 1.5, 2.0, 0, cl_fine }; +Point(103) = { 1.5, 2.5, 0, cl_fine }; +Point(104) = { 2.0, -2.5, 0, cl_fine }; +Point(105) = { 2.0, -2.0, 0, cl_fine }; +Point(106) = { 2.0, -1.5, 0, cl_fine }; +Point(107) = { 2.0, -1.0, 0, cl_fine }; +Point(108) = { 2.0, -0.5, 0, cl_fine }; +Point(109) = { 2.0, 0.0, 0, cl_fine }; +Point(110) = { 2.0, 0.5, 0, cl_fine }; +Point(111) = { 2.0, 1.0, 0, cl_fine }; +Point(112) = { 2.0, 1.5, 0, cl_fine }; +Point(113) = { 2.0, 2.0, 0, cl_fine }; +Point(114) = { 2.0, 2.5, 0, cl_fine }; +Point(115) = { 2.5, -2.5, 0, cl_fine }; +Point(116) = { 2.5, -2.0, 0, cl_fine }; +Point(117) = { 2.5, -1.5, 0, cl_fine }; +Point(118) = { 2.5, -1.0, 0, cl_fine }; +Point(119) = { 2.5, -0.5, 0, cl_fine }; +Point(120) = { 2.5, 0.0, 0, cl_fine }; +Point(121) = { 2.5, 0.5, 0, cl_fine }; +Point(122) = { 2.5, 1.0, 0, cl_fine }; +Point(123) = { 2.5, 1.5, 0, cl_fine }; +Point(124) = { 2.5, 2.0, 0, cl_fine }; +Point(125) = { 2.5, 2.5, 0, cl_fine }; + +// helper boundary points +Point(126) = { -2.5, -3.5, 0, cl_fine }; +Point(127) = { -2.0, -3.5, 0, cl_fine }; +Point(128) = { -1.5, -3.5, 0, cl_fine }; +Point(129) = { -1.0, -3.5, 0, cl_fine }; +Point(130) = { -0.5, -3.5, 0, cl_fine }; +Point(131) = { 0.0, -3.5, 0, cl_fine }; +Point(132) = { 0.5, -3.5, 0, cl_fine }; +Point(133) = { 1.0, -3.5, 0, cl_fine }; +Point(134) = { 1.5, -3.5, 0, cl_fine }; +Point(135) = { 2.0, -3.5, 0, cl_fine }; +Point(136) = { 2.5, -3.5, 0, cl_fine }; +Point(137) = { -2.5, 3.5, 0, cl_fine }; +Point(138) = { -2.0, 3.5, 0, cl_fine }; +Point(139) = { -1.5, 3.5, 0, cl_fine }; +Point(140) = { -1.0, 3.5, 0, cl_fine }; +Point(141) = { -0.5, 3.5, 0, cl_fine }; +Point(142) = { 0.0, 3.5, 0, cl_fine }; +Point(143) = { 0.5, 3.5, 0, cl_fine }; +Point(144) = { 1.0, 3.5, 0, cl_fine }; +Point(145) = { 1.5, 3.5, 0, cl_fine }; +Point(146) = { 2.0, 3.5, 0, cl_fine }; +Point(147) = { 2.5, 3.5, 0, cl_fine }; +Point(148) = { -3.5, -2.5, 0, cl_fine }; +Point(149) = { -3.5, -2.0, 0, cl_fine }; +Point(150) = { -3.5, -1.5, 0, cl_fine }; +Point(151) = { -3.5, -1.0, 0, cl_fine }; +Point(152) = { -3.5, -0.5, 0, cl_fine }; +Point(153) = { -3.5, 0.0, 0, cl_fine }; +Point(154) = { -3.5, 0.5, 0, cl_fine }; +Point(155) = { -3.5, 1.0, 0, cl_fine }; +Point(156) = { -3.5, 1.5, 0, cl_fine }; +Point(157) = { -3.5, 2.0, 0, cl_fine }; +Point(158) = { -3.5, 2.5, 0, cl_fine }; +Point(159) = { 3.5, -2.5, 0, cl_fine }; +Point(160) = { 3.5, -2.0, 0, cl_fine }; +Point(161) = { 3.5, -1.5, 0, cl_fine }; +Point(162) = { 3.5, -1.0, 0, cl_fine }; +Point(163) = { 3.5, -0.5, 0, cl_fine }; +Point(164) = { 3.5, 0.0, 0, cl_fine }; +Point(165) = { 3.5, 0.5, 0, cl_fine }; +Point(166) = { 3.5, 1.0, 0, cl_fine }; +Point(167) = { 3.5, 1.5, 0, cl_fine }; +Point(168) = { 3.5, 2.0, 0, cl_fine }; +Point(169) = { 3.5, 2.5, 0, cl_fine }; + +// Horizontal and vertical lines in inner grid +Line(5) = { 5, 16}; +Line(6) = { 6, 17}; +Line(7) = { 7, 18}; +Line(8) = { 8, 19}; +Line(9) = { 9, 20}; +Line(10) = { 10, 21}; +Line(11) = { 11, 22}; +Line(12) = { 12, 23}; +Line(13) = { 13, 24}; +Line(14) = { 14, 25}; +Line(15) = { 15, 26}; +Line(16) = { 27, 16}; +Line(17) = { 28, 17}; +Line(18) = { 29, 18}; +Line(19) = { 30, 19}; +Line(20) = { 31, 20}; +Line(21) = { 32, 21}; +Line(22) = { 33, 22}; +Line(23) = { 34, 23}; +Line(24) = { 35, 24}; +Line(25) = { 36, 25}; +Line(26) = { 37, 26}; +Line(27) = { 27, 38}; +Line(28) = { 28, 39}; +Line(29) = { 29, 40}; +Line(30) = { 30, 41}; +Line(31) = { 31, 42}; +Line(32) = { 32, 43}; +Line(33) = { 33, 44}; +Line(34) = { 34, 45}; +Line(35) = { 35, 46}; +Line(36) = { 36, 47}; +Line(37) = { 37, 48}; +Line(38) = { 49, 38}; +Line(39) = { 50, 39}; +Line(40) = { 51, 40}; +Line(41) = { 52, 41}; +Line(42) = { 53, 42}; +Line(43) = { 54, 43}; +Line(44) = { 55, 44}; +Line(45) = { 56, 45}; +Line(46) = { 57, 46}; +Line(47) = { 58, 47}; +Line(48) = { 59, 48}; +Line(49) = { 49, 60}; +Line(50) = { 50, 61}; +Line(51) = { 51, 62}; +Line(52) = { 52, 63}; +Line(53) = { 53, 64}; +Line(54) = { 54, 65}; +Line(55) = { 55, 66}; +Line(56) = { 56, 67}; +Line(57) = { 57, 68}; +Line(58) = { 58, 69}; +Line(59) = { 59, 70}; +Line(60) = { 71, 60}; +Line(61) = { 72, 61}; +Line(62) = { 73, 62}; +Line(63) = { 74, 63}; +Line(64) = { 75, 64}; +Line(65) = { 76, 65}; +Line(66) = { 77, 66}; +Line(67) = { 78, 67}; +Line(68) = { 79, 68}; +Line(69) = { 80, 69}; +Line(70) = { 81, 70}; +Line(71) = { 71, 82}; +Line(72) = { 72, 83}; +Line(73) = { 73, 84}; +Line(74) = { 74, 85}; +Line(75) = { 75, 86}; +Line(76) = { 76, 87}; +Line(77) = { 77, 88}; +Line(78) = { 78, 89}; +Line(79) = { 79, 90}; +Line(80) = { 80, 91}; +Line(81) = { 81, 92}; +Line(82) = { 93, 82}; +Line(83) = { 94, 83}; +Line(84) = { 95, 84}; +Line(85) = { 96, 85}; +Line(86) = { 97, 86}; +Line(87) = { 98, 87}; +Line(88) = { 99, 88}; +Line(89) = { 100, 89}; +Line(90) = { 101, 90}; +Line(91) = { 102, 91}; +Line(92) = { 103, 92}; +Line(93) = { 93, 104}; +Line(94) = { 94, 105}; +Line(95) = { 95, 106}; +Line(96) = { 96, 107}; +Line(97) = { 97, 108}; +Line(98) = { 98, 109}; +Line(99) = { 99, 110}; +Line(100) = { 100, 111}; +Line(101) = { 101, 112}; +Line(102) = { 102, 113}; +Line(103) = { 103, 114}; +Line(104) = { 115, 104}; +Line(105) = { 116, 105}; +Line(106) = { 117, 106}; +Line(107) = { 118, 107}; +Line(108) = { 119, 108}; +Line(109) = { 120, 109}; +Line(110) = { 121, 110}; +Line(111) = { 122, 111}; +Line(112) = { 123, 112}; +Line(113) = { 124, 113}; +Line(114) = { 125, 114}; +Line(126) = { 5, 6}; +Line(127) = { 7, 6}; +Line(128) = { 7, 8}; +Line(129) = { 9, 8}; +Line(130) = { 9, 10}; +Line(131) = { 11, 10}; +Line(132) = { 11, 12}; +Line(133) = { 13, 12}; +Line(134) = { 13, 14}; +Line(135) = { 15, 14}; +Line(136) = { 16, 17}; +Line(137) = { 18, 17}; +Line(138) = { 18, 19}; +Line(139) = { 20, 19}; +Line(140) = { 20, 21}; +Line(141) = { 22, 21}; +Line(142) = { 22, 23}; +Line(143) = { 24, 23}; +Line(144) = { 24, 25}; +Line(145) = { 26, 25}; + +Line(146) = { 27, 28}; +Line(147) = { 29, 28}; +Line(148) = { 29, 30}; +Line(149) = { 31, 30}; +Line(150) = { 31, 32}; +Line(151) = { 33, 32}; +Line(152) = { 33, 34}; +Line(153) = { 35, 34}; +Line(154) = { 35, 36}; +Line(155) = { 37, 36}; + +Line(156) = { 38, 39}; +Line(157) = { 40, 39}; +Line(158) = { 40, 41}; +Line(159) = { 42, 41}; +Line(160) = { 42, 43}; +Line(161) = { 44, 43}; +Line(162) = { 44, 45}; +Line(163) = { 46, 45}; +Line(164) = { 46, 47}; +Line(165) = { 48, 47}; + +Line(166) = { 49, 50}; +Line(167) = { 51, 50}; +Line(168) = { 51, 52}; +Line(169) = { 53, 52}; +Line(170) = { 53, 54}; +Line(171) = { 55, 54}; +Line(172) = { 55, 56}; +Line(173) = { 57, 56}; +Line(174) = { 57, 58}; +Line(175) = { 59, 58}; + +Line(176) = { 60, 61}; +Line(177) = { 62, 61}; +Line(178) = { 62, 63}; +Line(179) = { 64, 63}; +Line(180) = { 64, 65}; +Line(181) = { 66, 65}; +Line(182) = { 66, 67}; +Line(183) = { 68, 67}; +Line(184) = { 68, 69}; +Line(185) = { 70, 69}; + +Line(186) = { 71, 72}; +Line(187) = { 73, 72}; +Line(188) = { 73, 74}; +Line(189) = { 75, 74}; +Line(190) = { 75, 76}; +Line(191) = { 77, 76}; +Line(192) = { 77, 78}; +Line(193) = { 79, 78}; +Line(194) = { 79, 80}; +Line(195) = { 81, 80}; + +Line(196) = { 82, 83}; +Line(197) = { 84, 83}; +Line(198) = { 84, 85}; +Line(199) = { 86, 85}; +Line(200) = { 86, 87}; +Line(201) = { 88, 87}; +Line(202) = { 88, 89}; +Line(203) = { 90, 89}; +Line(204) = { 90, 91}; +Line(205) = { 92, 91}; + +Line(206) = { 93, 94}; +Line(207) = { 95, 94}; +Line(208) = { 95, 96}; +Line(209) = { 97, 96}; +Line(210) = { 97, 98}; +Line(211) = { 99, 98}; +Line(212) = { 99, 100}; +Line(213) = { 101, 100}; +Line(214) = { 101, 102}; +Line(215) = { 103, 102}; + + +Line(216) = { 104, 105}; +Line(217) = { 106, 105}; +Line(218) = { 106, 107}; +Line(219) = { 108, 107}; +Line(220) = { 108, 109}; +Line(221) = { 110, 109}; +Line(222) = { 110, 111}; +Line(223) = { 112, 111}; +Line(224) = { 112, 113}; +Line(225) = { 114, 113}; + + +Line(226) = { 115, 116}; +Line(227) = { 117, 116}; +Line(228) = { 117, 118}; +Line(229) = { 119, 118}; +Line(230) = { 119, 120}; +Line(231) = { 121, 120}; +Line(232) = { 121, 122}; +Line(233) = { 123, 122}; +Line(234) = { 123, 124}; +Line(235) = { 125, 124}; + + +// Define inner surfaces +//+ +Curve Loop(1) = { 5, 136, -6, -126}; +Plane Surface(1) ={1}; +Curve Loop(2) = { 6, -137, -7, 127}; +Plane Surface(2) ={2}; +Curve Loop(3) = { 7, 138, -8, -128}; +Plane Surface(3) ={3}; +Curve Loop(4) = { 8, -139, -9, 129}; +Plane Surface(4) ={4}; +Curve Loop(5) = { 9, 140, -10, -130}; +Plane Surface(5) ={5}; +Curve Loop(6) = { 10, -141, -11, 131}; +Plane Surface(6) ={6}; +Curve Loop(7) = { 11, 142, -12, -132}; +Plane Surface(7) ={7}; +Curve Loop(8) = { 12, -143, -13, 133}; +Plane Surface(8) ={8}; +Curve Loop(9) = { 13, 144, -14, -134}; +Plane Surface(9) ={9}; +Curve Loop(10) = { 14, -145, -15, 135}; +Plane Surface(10) ={10}; +Curve Loop(11) = { -16, 146, 17, -136}; +Plane Surface(11) ={11}; +Curve Loop(12) = { -17, -147, 18, 137}; +Plane Surface(12) ={12}; +Curve Loop(13) = { -18, 148, 19, -138}; +Plane Surface(13) ={13}; +Curve Loop(14) = { -19, -149, 20, 139}; +Plane Surface(14) ={14}; +Curve Loop(15) = { -20, 150, 21, -140}; +Plane Surface(15) ={15}; +Curve Loop(16) = { -21, -151, 22, 141}; +Plane Surface(16) ={16}; +Curve Loop(17) = { -22, 152, 23, -142}; +Plane Surface(17) ={17}; +Curve Loop(18) = { -23, -153, 24, 143}; +Plane Surface(18) ={18}; +Curve Loop(19) = {-24, 154, 25, -144}; +Plane Surface(19) ={19}; +Curve Loop(20) = { -25, -155, 26, 145}; +Plane Surface(20) ={20}; +Curve Loop(21) = { 27, 156, -28, -146}; +Plane Surface(21) ={21}; +Curve Loop(22) = { 28, -157, -29, 147}; +Plane Surface(22) ={22}; +Curve Loop(23) = { 29, 158, -30, -148}; +Plane Surface(23) ={23}; +Curve Loop(24) = { 30, -159, -31, 149}; +Plane Surface(24) ={24}; +Curve Loop(25) = { 31, 160, -32, -150}; +Plane Surface(25) ={25}; +Curve Loop(26) = { 32, -161, -33, 151}; +Plane Surface(26) ={26}; +Curve Loop(27) = { 33, 162, -34, -152}; +Plane Surface(27) ={27}; +Curve Loop(28) = { 34, -163, -35, 153}; +Plane Surface(28) ={28}; +Curve Loop(29) = { 35, 164, -36, -154}; +Plane Surface(29) ={29}; +Curve Loop(30) = { 36, -165, -37, 155}; +Plane Surface(30) ={30}; +Curve Loop(31) = { -38, 166, 39, -156}; +Plane Surface(31) ={31}; +Curve Loop(32) = { -39, -167, 40, 157}; +Plane Surface(32) ={32}; +Curve Loop(33) = { -40, 168, 41, -158}; +Plane Surface(33) ={33}; +Curve Loop(34) = { -41, -169, 42, 159}; +Plane Surface(34) ={34}; +Curve Loop(35) = { -42, 170, 43, -160}; +Plane Surface(35) ={35}; +Curve Loop(36) = { -43, -171, 44, 161}; +Plane Surface(36) ={36}; +Curve Loop(37) = { -44, 172, 45, -162}; +Plane Surface(37) ={37}; +Curve Loop(38) = { -45, -173, 46, 163}; +Plane Surface(38) ={38}; +Curve Loop(39) = { -46, 174, 47, -164}; +Plane Surface(39) ={39}; +Curve Loop(40) = { -47, -175, 48, 165}; +Plane Surface(40) ={40}; +Curve Loop(41) = { 49, 176, -50, -166}; +Plane Surface(41) ={41}; +Curve Loop(42) = { 50, -177, -51, 167}; +Plane Surface(42) ={42}; +Curve Loop(43) = { 51, 178, -52, -168}; +Plane Surface(43) ={43}; +Curve Loop(44) = { 52, -179, -53, 169}; +Plane Surface(44) ={44}; +Curve Loop(45) = { 53, 180, -54, -170}; +Plane Surface(45) ={45}; +Curve Loop(46) = { 54, -181, -55, 171}; +Plane Surface(46) ={46}; +Curve Loop(47) = { 55, 182, -56, -172}; +Plane Surface(47) ={47}; +Curve Loop(48) = { 56, -183, -57, 173}; +Plane Surface(48) ={48}; +Curve Loop(49) = { 57, 184, -58, -174}; +Plane Surface(49) ={49}; +Curve Loop(50) = { 58, -185, -59, 175}; +Plane Surface(50) ={50}; +Curve Loop(51) = { -60, 186, 61, -176}; +Plane Surface(51) ={51}; +Curve Loop(52) = { -61, -187, 62, 177}; +Plane Surface(52) ={52}; +Curve Loop(53) = { -62, 188, 63, -178}; +Plane Surface(53) ={53}; +Curve Loop(54) = { -63, -189, 64, 179}; +Plane Surface(54) ={54}; +Curve Loop(55) = { -64, 190, 65, -180}; +Plane Surface(55) ={55}; +Curve Loop(56) = { -65, -191, 66, 181}; +Plane Surface(56) ={56}; +Curve Loop(57) = { -66, 192, 67, -182}; +Plane Surface(57) ={57}; +Curve Loop(58) = { -67, -193, 68, 183}; +Plane Surface(58) ={58}; +Curve Loop(59) = { -68, 194, 69, -184}; +Plane Surface(59) ={59}; +Curve Loop(60) = { -69, -195, 70, 185}; +Plane Surface(60) ={60}; +Curve Loop(61) = { 71, 196, -72, -186}; +Plane Surface(61) ={61}; +Curve Loop(62) = { 72, -197, -73, 187}; +Plane Surface(62) ={62}; +Curve Loop(63) = { 73, 198, -74, -188}; +Plane Surface(63) ={63}; +Curve Loop(64) = { 74, -199, -75, 189}; +Plane Surface(64) ={64}; +Curve Loop(65) = { 75, 200, -76, -190}; +Plane Surface(65) ={65}; +Curve Loop(66) = { 76, -201, -77, 191}; +Plane Surface(66) ={66}; +Curve Loop(67) = { 77, 202, -78, -192}; +Plane Surface(67) ={67}; +Curve Loop(68) = { 78, -203, -79, 193}; +Plane Surface(68) ={68}; +Curve Loop(69) = { 79, 204, -80, -194}; +Plane Surface(69) ={69}; +Curve Loop(70) = { 80, -205, -81, 195}; +Plane Surface(70) ={70}; +Curve Loop(71) = { -82, 206, 83, -196}; +Plane Surface(71) ={71}; +Curve Loop(72) = { -83, -207, 84, 197}; +Plane Surface(72) ={72}; +Curve Loop(73) = { -84, 208, 85, -198}; +Plane Surface(73) ={73}; +Curve Loop(74) = { -85, -209, 86, 199}; +Plane Surface(74) ={74}; +Curve Loop(75) = { -86, 210, 87, -200}; +Plane Surface(75) ={75}; +Curve Loop(76) = { -87, -211, 88, 201}; +Plane Surface(76) ={76}; +Curve Loop(77) = { -88, 212, 89, -202}; +Plane Surface(77) ={77}; +Curve Loop(78) = { -89, -213, 90, 203}; +Plane Surface(78) ={78}; +Curve Loop(79) = { -90, 214, 91, -204}; +Plane Surface(79) ={79}; +Curve Loop(80) = { -91, -215, 92, 205}; +Plane Surface(80) ={80}; +Curve Loop(81) = { 93, 216, -94, -206}; +Plane Surface(81) ={81}; +Curve Loop(82) = { 94, -217, -95, 207}; +Plane Surface(82) ={82}; +Curve Loop(83) = { 95, 218, -96, -208}; +Plane Surface(83) ={83}; +Curve Loop(84) = { 96, -219, -97, 209}; +Plane Surface(84) ={84}; +Curve Loop(85) = { 97, 220, -98, -210}; +Plane Surface(85) ={85}; +Curve Loop(86) = { 98, -221, -99, 211}; +Plane Surface(86) ={86}; +Curve Loop(87) = { 99, 222, -100, -212}; +Plane Surface(87) ={87}; +Curve Loop(88) = { 100, -223, -101, 213}; +Plane Surface(88) ={88}; +Curve Loop(89) = { 101, 224, -102, -214}; +Plane Surface(89) ={89}; +Curve Loop(90) = { 102, -225, -103, 215}; +Plane Surface(90) ={90}; +Curve Loop(91) = { -104, 226, 105, -216}; +Plane Surface(91) ={91}; +Curve Loop(92) = { -105, -227, 106, 217}; +Plane Surface(92) ={92}; +Curve Loop(93) = { -106, 228, 107, -218}; +Plane Surface(93) ={93}; +Curve Loop(94) = { -107, -229, 108, 219}; +Plane Surface(94) ={94}; +Curve Loop(95) = { -108, 230, 109, -220}; +Plane Surface(95) ={95}; +Curve Loop(96) = { -109, -231, 110, 221}; +Plane Surface(96) ={96}; +Curve Loop(97) = { -110, 232, 111, -222}; +Plane Surface(97) ={97}; +Curve Loop(98) = { -111, -233, 112, 223}; +Plane Surface(98) ={98}; +Curve Loop(99) = { -112, 234, 113, -224}; +Plane Surface(99) ={99}; +Curve Loop(100) = { -113, -235, 114, 225}; +Plane Surface(100) ={100}; + + +// "Outside area" +//Curve Loop(101) = {1, 2, 3, 4}; +//+ +//Curve Loop(102) = {5, -16, 27, -38, 49, -60, 71, -82, 93, -104, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 114, -103, 92, -81, 70, -59, 48, -37, 26, -15, -135, -134, -133, -132, -131, -130, -129, -128, -127, -126}; +//+ +//Plane Surface(101) = {101, 102}; + +//+ +Transfinite Surface {1}; +Transfinite Surface {2}; +Transfinite Surface {3}; +Transfinite Surface {4}; +Transfinite Surface {5}; +Transfinite Surface {6}; +Transfinite Surface {7}; +Transfinite Surface {8}; +Transfinite Surface {9}; +Transfinite Surface {10}; +Transfinite Surface {11}; +Transfinite Surface {12}; +Transfinite Surface {13}; +Transfinite Surface {14}; +Transfinite Surface {15}; +Transfinite Surface {16}; +Transfinite Surface {17}; +Transfinite Surface {18}; +Transfinite Surface {19}; +Transfinite Surface {20}; +Transfinite Surface {21}; +Transfinite Surface {22}; +Transfinite Surface {23}; +Transfinite Surface {24}; +Transfinite Surface {25}; +Transfinite Surface {26}; +Transfinite Surface {27}; +Transfinite Surface {28}; +Transfinite Surface {29}; +Transfinite Surface {30}; +Transfinite Surface {31}; +Transfinite Surface {32}; +Transfinite Surface {33}; +Transfinite Surface {34}; +Transfinite Surface {35}; +Transfinite Surface {36}; +Transfinite Surface {37}; +Transfinite Surface {38}; +Transfinite Surface {39}; +Transfinite Surface {40}; +Transfinite Surface {41}; +Transfinite Surface {42}; +Transfinite Surface {43}; +Transfinite Surface {44}; +Transfinite Surface {45}; +Transfinite Surface {46}; +Transfinite Surface {47}; +Transfinite Surface {48}; +Transfinite Surface {49}; +Transfinite Surface {50}; +Transfinite Surface {51}; +Transfinite Surface {52}; +Transfinite Surface {53}; +Transfinite Surface {54}; +Transfinite Surface {55}; +Transfinite Surface {56}; +Transfinite Surface {57}; +Transfinite Surface {58}; +Transfinite Surface {59}; +Transfinite Surface {60}; +Transfinite Surface {61}; +Transfinite Surface {62}; +Transfinite Surface {63}; +Transfinite Surface {64}; +Transfinite Surface {65}; +Transfinite Surface {66}; +Transfinite Surface {67}; +Transfinite Surface {68}; +Transfinite Surface {69}; +Transfinite Surface {70}; +Transfinite Surface {71}; +Transfinite Surface {72}; +Transfinite Surface {73}; +Transfinite Surface {74}; +Transfinite Surface {75}; +Transfinite Surface {76}; +Transfinite Surface {77}; +Transfinite Surface {78}; +Transfinite Surface {79}; +Transfinite Surface {80}; +Transfinite Surface {81}; +Transfinite Surface {82}; +Transfinite Surface {83}; +Transfinite Surface {84}; +Transfinite Surface {85}; +Transfinite Surface {86}; +Transfinite Surface {87}; +Transfinite Surface {88}; +Transfinite Surface {89}; +Transfinite Surface {90}; +Transfinite Surface {91}; +Transfinite Surface {92}; +Transfinite Surface {93}; +Transfinite Surface {94}; +Transfinite Surface {95}; +Transfinite Surface {96}; +Transfinite Surface {97}; +Transfinite Surface {98}; +Transfinite Surface {99}; +Transfinite Surface {100}; +//+ +Transfinite Curve {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103} = n_recombine Using Progression n_prog; +// add outer perimeter with half as many cells and no Progression +Transfinite Curve {104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15} = n_recombine / 4 Using Progression 1; +//+ +Transfinite Curve { 127, 137, 147, 157, 167, 177, 187, 197, 207, 217, 227, 128, 138, 148, 158, 168, 178, 188, 198, 208, 218, 228, 129, 139, 149, 159, 169, 179, 189, 199, 209, 219, 229, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 231, 132, 142, 152, 162, 172, 182, 192, 202, 212, 222, 232, 133, 143, 153, 163, 173, 183, 193, 203, 213, 223, 233, 134, 144, 154, 164, 174, 184, 194, 204, 214, 224, 234} = n_recombine Using Progression n_prog; +// add outer perimeter with half as many cells and no Progression +Transfinite Curve {126, 136, 146, 156, 166, 176, 186, 196, 206, 216, 226, 135, 145, 155, 165, 175, 185, 195, 205, 215, 225, 235} = n_recombine / 4 Using Progression 1; +//+ +Line(236) = {1, 126}; +//+ +Line(237) = {126, 127}; +//+ +Line(238) = {127, 128}; +//+ +Line(239) = {128, 129}; +//+ +Line(240) = {129, 130}; +//+ +Line(241) = {130, 131}; +//+ +Line(242) = {131, 132}; +//+ +Line(243) = {132, 133}; +//+ +Line(244) = {133, 134}; +//+ +Line(245) = {134, 135}; +//+ +Line(246) = {135, 136}; +//+ +Line(247) = {136, 2}; +//+ +Line(248) = {2, 159}; +//+ +Line(249) = {159, 160}; +//+ +Line(250) = {160, 161}; +//+ +Line(251) = {161, 162}; +//+ +Line(252) = {162, 163}; +//+ +Line(253) = {163, 164}; +//+ +Line(254) = {164, 165}; +//+ +Line(255) = {165, 166}; +//+ +Line(256) = {166, 167}; +//+ +Line(257) = {167, 168}; +//+ +Line(258) = {168, 169}; +//+ +Line(259) = {169, 4}; +//+ +Line(260) = {4, 147}; +//+ +Line(261) = {147, 146}; +//+ +Line(262) = {146, 145}; +//+ +Line(263) = {145, 144}; +//+ +Line(264) = {144, 143}; +//+ +Line(265) = {143, 142}; +//+ +Line(266) = {142, 141}; +//+ +Line(267) = {141, 140}; +//+ +Line(268) = {140, 139}; +//+ +Line(269) = {139, 138}; +//+ +Line(270) = {138, 137}; +//+ +Line(271) = {137, 3}; +//+ +Line(272) = {3, 158}; +//+ +Line(273) = {158, 157}; +//+ +Line(274) = {157, 156}; +//+ +Line(275) = {156, 155}; +//+ +Line(276) = {155, 154}; +//+ +Line(277) = {154, 153}; +//+ +Line(278) = {153, 152}; +//+ +Line(279) = {152, 151}; +//+ +Line(280) = {151, 150}; +//+ +Line(281) = {150, 149}; +//+ +Line(282) = {149, 148}; +//+ +Line(283) = {148, 1}; +//+ +Line(284) = {126, 5}; +//+ +Line(285) = {127, 16}; +//+ +Line(286) = {128, 27}; +//+ +Line(287) = {129, 38}; +//+ +Line(288) = {130, 49}; +//+ +Line(289) = {131, 60}; +//+ +Line(290) = {132, 71}; +//+ +Line(291) = {133, 82}; +//+ +Line(292) = {134, 93}; +//+ +Line(293) = {135, 104}; +//+ +Line(294) = {136, 115}; +//+ +Line(295) = {159, 115}; +//+ +Line(296) = {160, 116}; +//+ +Line(297) = {161, 117}; +//+ +Line(298) = {162, 118}; +//+ +Line(299) = {163, 119}; +//+ +Line(300) = {164, 120}; +//+ +Line(301) = {165, 121}; +//+ +Line(302) = {166, 122}; +//+ +Line(303) = {167, 123}; +//+ +Line(304) = {168, 124}; +//+ +Line(305) = {169, 125}; +//+ +Line(306) = {147, 125}; +//+ +Line(307) = {146, 114}; +//+ +Line(308) = {145, 103}; +//+ +Line(309) = {144, 92}; +//+ +Line(310) = {143, 81}; +//+ +Line(311) = {142, 70}; +//+ +Line(312) = {141, 59}; +//+ +Line(313) = {140, 48}; +//+ +Line(314) = {139, 37}; +//+ +Line(315) = {138, 26}; +//+ +Line(316) = {137, 15}; +//+ +Line(317) = {158, 15}; +//+ +Line(318) = {157, 14}; +//+ +Line(319) = {156, 13}; +//+ +Line(320) = {155, 12}; +//+ +Line(321) = {154, 11}; +//+ +Line(322) = {153, 10}; +//+ +Line(323) = {152, 9}; +//+ +Line(324) = {151, 8}; +//+ +Line(325) = {150, 7}; +//+ +Line(326) = {149, 6}; +//+ +Line(327) = {148, 5}; +//+ +Curve Loop(103) = {236, 284, -327, 283}; +//+ +Plane Surface(102) = {103}; +//+ +Curve Loop(104) = {237, 285, -5, -284}; +//+ +Plane Surface(103) = {104}; +//+ +Curve Loop(105) = {238, 286, 16, -285}; +//+ +Plane Surface(104) = {105}; +//+ +Curve Loop(106) = {239, 287, -27, -286}; +//+ +Plane Surface(105) = {106}; +//+ +Curve Loop(107) = {240, 288, 38, -287}; +//+ +Plane Surface(106) = {107}; +//+ +Curve Loop(108) = {241, 289, -49, -288}; +//+ +Plane Surface(107) = {108}; +//+ +Curve Loop(109) = {242, 290, 60, -289}; +//+ +Plane Surface(108) = {109}; +//+ +Curve Loop(110) = {243, 291, -71, -290}; +//+ +Plane Surface(109) = {110}; +//+ +Curve Loop(111) = {244, 292, 82, -291}; +//+ +Plane Surface(110) = {111}; +//+ +Curve Loop(112) = {245, 293, -93, -292}; +//+ +Plane Surface(111) = {112}; +//+ +Curve Loop(113) = {246, 294, 104, -293}; +//+ +Plane Surface(112) = {113}; +//+ +Curve Loop(114) = {247, 248, 295, -294}; +//+ +Plane Surface(113) = {114}; +//+ +Curve Loop(115) = {249, 296, -226, -295}; +//+ +Plane Surface(114) = {115}; +//+ +Curve Loop(116) = {250, 297, 227, -296}; +//+ +Plane Surface(115) = {116}; +//+ +Curve Loop(117) = {251, 298, -228, -297}; +//+ +Plane Surface(116) = {117}; +//+ +Curve Loop(118) = {252, 299, 229, -298}; +//+ +Plane Surface(117) = {118}; +//+ +Curve Loop(119) = {253, 300, -230, -299}; +//+ +Plane Surface(118) = {119}; +//+ +Curve Loop(120) = {254, 301, 231, -300}; +//+ +Plane Surface(119) = {120}; +//+ +Curve Loop(121) = {255, 302, -232, -301}; +//+ +Plane Surface(120) = {121}; +//+ +Curve Loop(122) = {256, 303, 233, -302}; +//+ +Plane Surface(121) = {122}; +//+ +Curve Loop(123) = {257, 304, -234, -303}; +//+ +Plane Surface(122) = {123}; +//+ +Curve Loop(124) = {258, 305, 235, -304}; +//+ +Plane Surface(123) = {124}; +//+ +Curve Loop(125) = {259, 260, 306, -305}; +//+ +Plane Surface(124) = {125}; +//+ +Curve Loop(126) = {261, 307, -114, -306}; +//+ +Plane Surface(125) = {126}; +//+ +Curve Loop(127) = {262, 308, 103, -307}; +//+ +Plane Surface(126) = {127}; +//+ +Curve Loop(128) = {263, 309, -92, -308}; +//+ +Plane Surface(127) = {128}; +//+ +Curve Loop(129) = {264, 310, 81, -309}; +//+ +Plane Surface(128) = {129}; +//+ +Curve Loop(130) = {265, 311, -70, -310}; +//+ +Plane Surface(129) = {130}; +//+ +Curve Loop(131) = {266, 312, 59, -311}; +//+ +Plane Surface(130) = {131}; +//+ +Curve Loop(132) = {267, 313, -48, -312}; +//+ +Plane Surface(131) = {132}; +//+ +Curve Loop(133) = {268, 314, 37, -313}; +//+ +Plane Surface(132) = {133}; +//+ +Curve Loop(134) = {269, 315, -26, -314}; +//+ +Plane Surface(133) = {134}; +//+ +Curve Loop(135) = {270, 316, 15, -315}; +//+ +Plane Surface(134) = {135}; +//+ +Curve Loop(136) = {271, 272, 317, -316}; +//+ +Plane Surface(135) = {136}; +//+ +Curve Loop(137) = {273, 318, -135, -317}; +//+ +Plane Surface(136) = {137}; +//+ +Curve Loop(138) = {274, 319, 134, -318}; +//+ +Plane Surface(137) = {138}; +//+ +Curve Loop(139) = {275, 320, -133, -319}; +//+ +Plane Surface(138) = {139}; +//+ +Curve Loop(140) = {276, 321, 132, -320}; +//+ +Plane Surface(139) = {140}; +//+ +Curve Loop(141) = {277, 322, -131, -321}; +//+ +Plane Surface(140) = {141}; +//+ +Curve Loop(142) = {278, 323, 130, -322}; +//+ +Plane Surface(141) = {142}; +//+ +Curve Loop(143) = {279, 324, -129, -323}; +//+ +Plane Surface(142) = {143}; +//+ +Curve Loop(144) = {280, 325, 128, -324}; +//+ +Plane Surface(143) = {144}; +//+ +Curve Loop(145) = {281, 326, -127, -325}; +//+ +Plane Surface(144) = {145}; +//+ +Curve Loop(146) = {282, 327, 126, -326}; +//+ +Plane Surface(145) = {146}; +//+ +//+ +Transfinite Surface {102}; +//+ +Transfinite Surface {103}; +//+ +Transfinite Surface {104}; +//+ +Transfinite Surface {105}; +//+ +Transfinite Surface {106}; +//+ +Transfinite Surface {107}; +//+ +Transfinite Surface {108}; +//+ +Transfinite Surface {109}; +//+ +Transfinite Surface {110}; +//+ +Transfinite Surface {111}; +//+ +Transfinite Surface {112}; +//+ +Transfinite Surface {113}; +//+ +Transfinite Surface {114}; +//+ +Transfinite Surface {115}; +//+ +Transfinite Surface {116}; +//+ +Transfinite Surface {117}; +//+ +Transfinite Surface {118}; +//+ +Transfinite Surface {119}; +//+ +Transfinite Surface {120}; +//+ +Transfinite Surface {121}; +//+ +Transfinite Surface {122}; +//+ +Transfinite Surface {123}; +//+ +Transfinite Surface {124}; +//+ +Transfinite Surface {125}; +//+ +Transfinite Surface {126}; +//+ +Transfinite Surface {127}; +//+ +Transfinite Surface {128}; +//+ +Transfinite Surface {129}; +//+ +Transfinite Surface {130}; +//+ +Transfinite Surface {131}; +//+ +Transfinite Surface {132}; +//+ +Transfinite Surface {133}; +//+ +Transfinite Surface {134}; +//+ +Transfinite Surface {135}; +//+ +Transfinite Surface {136}; +//+ +Transfinite Surface {137}; +//+ +Transfinite Surface {138}; +//+ +Transfinite Surface {139}; +//+ +Transfinite Surface {140}; +//+ +Transfinite Surface {141}; +//+ +Transfinite Surface {142}; +//+ +Transfinite Surface {143}; +//+ +Transfinite Surface {144}; +//+ +Transfinite Surface {145}; +//+ +Transfinite Curve { 238, 239, 240, 241, 242, 243, 244, 245, 250, 251, 252, 253, 254, 255, 256, 257, 262, 263, 264, 265, 266, 267, 268, 269, 274, 275, 276, 277, 278, 279, 280, 281} = n_recombine Using Progression 1; +Transfinite Curve {237,246,249, 258,261,270,273,282} = n_recombine / 4 Using Progression 1; + + +Physical Curve("void",328) = {236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283}; + +Recombine Surface "*"; +// Define meshing options +//Mesh.Algorithm = 6; // Specify meshing algorithm (e.g., Delaunay) +//Mesh.ElementOrder = 1; // Specify element order +// Generate the mesh +//Mesh 2; \ No newline at end of file diff --git a/examples_hpc/lattice/mesh/make_lattice_mesh.sh b/examples_hpc/lattice/mesh/make_lattice_mesh.sh new file mode 100644 index 00000000..47b78a94 --- /dev/null +++ b/examples_hpc/lattice/mesh/make_lattice_mesh.sh @@ -0,0 +1 @@ +gmsh lattice_rectangular.geo -2 -format su2 -save_all -o lattice_n20 From 5ec1dfa806192ef5d1f9bf928231493151e1a0bb Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 4 Jan 2024 16:36:40 -0500 Subject: [PATCH 053/155] changed mesh size to minimal size for example --- examples_hpc/lattice/mesh/lattice_rectangular.geo | 2 +- examples_hpc/lattice/mesh/make_lattice_mesh.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples_hpc/lattice/mesh/lattice_rectangular.geo b/examples_hpc/lattice/mesh/lattice_rectangular.geo index 45a22210..9721aecd 100644 --- a/examples_hpc/lattice/mesh/lattice_rectangular.geo +++ b/examples_hpc/lattice/mesh/lattice_rectangular.geo @@ -1,5 +1,5 @@ cl_fine = 0.1; -n_recombine = 80; +n_recombine = 20; n_prog = 1.1; Point(1) = {-3.5, -3.5, 0, cl_fine}; Point(2) = {3.5, -3.5, 0, cl_fine}; diff --git a/examples_hpc/lattice/mesh/make_lattice_mesh.sh b/examples_hpc/lattice/mesh/make_lattice_mesh.sh index 47b78a94..ea100c9c 100644 --- a/examples_hpc/lattice/mesh/make_lattice_mesh.sh +++ b/examples_hpc/lattice/mesh/make_lattice_mesh.sh @@ -1 +1 @@ -gmsh lattice_rectangular.geo -2 -format su2 -save_all -o lattice_n20 +gmsh lattice_rectangular.geo -2 -format su2 -save_all -o lattice_n20.su2 From d1b94d9db1abcf481d989488c35915da808fa8e9 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 4 Jan 2024 19:20:07 -0500 Subject: [PATCH 054/155] small speedup of mesh connectivity --- src/common/mesh.cpp | 8 ++++---- src/main.cpp | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index fd6d44a1..00f2dcd0 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -59,15 +59,15 @@ void Mesh::ComputeConnectivity() { // save which cell has which nodes log->info( "| ... connect cells to nodes..." ); blaze::CompressedMatrix connMat( _numCells, _numNodes ); - - // #pragma omp parallel for +#pragma omp parallel for for( unsigned i = mpiCellStart; i < mpiCellEnd; ++i ) { - for( auto j : _cells[i] ) connMat.set( i, j, true ); + for( unsigned j = 0; i < _numNodesPerCell; ++i ) { + connMat.set( i, _cells[i][j], true ); + } } // determine neighbor cells and normals with MPI and OpenMP log->info( "| ... determine neighbors of cells..." ); - #pragma omp parallel for schedule( guided ) for( unsigned i = mpiCellStart; i < mpiCellEnd; ++i ) { std::vector* cellsI = &sortedCells[i]; diff --git a/src/main.cpp b/src/main.cpp index e94674e9..50c653f9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -5,6 +5,7 @@ */ #include +#include #include "common/config.hpp" #include "common/io.hpp" From 7c9c30c6590903497fbcdfcf3d446d391bd12bfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Fri, 5 Jan 2024 12:55:44 -0500 Subject: [PATCH 055/155] mesh has now access to config. io writer for connectiivty added --- include/common/io.hpp | 20 ++++++- include/common/mesh.hpp | 7 ++- src/common/io.cpp | 116 ++++++++++++++++++++++++++++++++++++++-- src/common/mesh.cpp | 5 +- 4 files changed, 142 insertions(+), 6 deletions(-) diff --git a/include/common/io.hpp b/include/common/io.hpp index 2c9c0104..4f1b629a 100644 --- a/include/common/io.hpp +++ b/include/common/io.hpp @@ -22,10 +22,28 @@ void ExportVTK( const std::string fileName, Mesh* LoadSU2MeshFromFile( const Config* settings ); +void LoadConnectivityFromFile( const std::string outputFile, + std::vector>& cellNeighbors, + std::vector>& cellInterfaceMidPoints, + std::vector>& cellNormals, + std::vector& cellBoundaryTypes, + unsigned nCells, + unsigned nNodesPerCell, + unsigned nDim ); + +void WriteConnecitivityToFile( const std::string outputFile, + std::vector>& cellNeighbors, + std::vector>& cellInterfaceMidPoints, + std::vector>& cellNormals, + std::vector& cellBoundaryTypes, + unsigned nNodesPerCell, + unsigned nCells, + unsigned nDim ); + std::string ParseArguments( int argc, char* argv[] ); void PrintLogHeader( std::string inputFile ); -//Matrix createSU2MeshFromImage( std::string imageName, std::string SU2Filename ); Deprecated +// Matrix createSU2MeshFromImage( std::string imageName, std::string SU2Filename ); Deprecated #endif // IO_H diff --git a/include/common/mesh.hpp b/include/common/mesh.hpp index 5994aaf5..25dfe69c 100644 --- a/include/common/mesh.hpp +++ b/include/common/mesh.hpp @@ -11,9 +11,13 @@ #include "toolboxes/errormessages.hpp" #include "toolboxes/reconstructor.hpp" +class Config; + class Mesh { protected: + const Config* _settings; /*!< @brief config class for global information */ + const unsigned _dim; /*!< @brief spatial dimension of the mesh, i.e. 1D,2D,3D */ const unsigned _numCells; /*!< @brief number of cells in the mesh */ const unsigned _numNodes; /*!< @brief number of nodes in the mesh (for node centered view)*/ @@ -66,7 +70,8 @@ class Mesh /*! @brief Constructor of mesh. Needs nodes, cells, and boundary descriptions as specified above. * See LoadSU2MeshFromFile in io.cpp for setup information*/ - Mesh( std::vector nodes, + Mesh( const Config* settings, + std::vector nodes, std::vector> cells, std::vector>> boundaries ); ~Mesh(); diff --git a/src/common/io.cpp b/src/common/io.cpp index dbd71824..b05ed371 100644 --- a/src/common/io.cpp +++ b/src/common/io.cpp @@ -1,6 +1,6 @@ /*! * \file io.cpp - * \brief Set of utility io functions for rtns + * \brief Set of utility io functions for KiT-RT * \author J. Kusch, S. Schotthoefer, P. Stammer, J. Wolters, T. Xiao */ @@ -11,11 +11,13 @@ #include "toolboxes/errormessages.hpp" #include "toolboxes/textprocessingtoolbox.hpp" +#include #include +#include +#include // #include #include - #include #include #include @@ -297,7 +299,115 @@ Mesh* LoadSU2MeshFromFile( const Config* settings ) { } ifs.close(); log->info( "| Mesh imported." ); - return new Mesh( nodes, cells, boundaries ); + return new Mesh( settings, nodes, cells, boundaries ); +} + +void LoadConnectivityFromFile( const std::string inputFile, + std::vector>& cellNeighbors, + std::vector>& cellInterfaceMidPoints, + std::vector>& cellNormals, + std::vector& cellBoundaryTypes, + unsigned nCells, + unsigned nNodesPerCell, + unsigned nDim ) { + // File has nCells lines, each line is a comma separated entry containing: + // cellNeighbors (nNodesPerCell elements), + // cellInterfaceMidPoints (nNodesPerCell x nDim elements), + // cellNormals (nNodesPerCell x nDim elements), + // cellBoundaryTypes (1 element), (tranlated from unsigned to enum BOUNDARY_TYPE) + std::ifstream inFile( inputFile ); + + if( !inFile.is_open() ) { + ErrorMessages::Error( "Error opening connectivity file.", CURRENT_FUNCTION ); + return; + } + for( unsigned i = 0; i < nCells; ++i ) { + std::string line; + std::getline( inFile, line ); + std::istringstream iss( line ); + // Load cellNeighbors + cellNeighbors[i].resize( nNodesPerCell ); + for( unsigned j = 0; j < nNodesPerCell; ++j ) { + std::getline( iss, line, ',' ); + std::istringstream converter( line ); + converter >> cellNeighbors[i][j]; + } + // Load cellInterfaceMidPoints + cellInterfaceMidPoints[i].resize( nNodesPerCell ); + for( unsigned j = 0; j < nNodesPerCell; ++j ) { + for( unsigned k = 0; k < nDim; ++k ) { + std::getline( iss, line, ',' ); + std::istringstream converter( line ); + converter >> cellInterfaceMidPoints[i][j][k]; // Replace with appropriate member of Vector + } + } + // Load cellNormals + cellNormals[i].resize( nNodesPerCell ); + for( unsigned j = 0; j < nNodesPerCell; ++j ) { + for( unsigned k = 0; k < nDim; ++k ) { + std::getline( iss, line, ',' ); + std::istringstream converter( line ); + converter >> cellNormals[i][j][k]; // Replace with appropriate member of Vector + } + } + // Load cellBoundaryTypes + std::getline( iss, line, ',' ); + std::istringstream converter( line ); + unsigned boundaryTypeValue; + converter >> boundaryTypeValue; + cellBoundaryTypes[i] = static_cast( boundaryTypeValue ); + } + inFile.close(); +} + +void WriteConnecitivityToFile( const std::string outputFile, + std::vector>& cellNeighbors, + std::vector>& cellInterfaceMidPoints, + std::vector>& cellNormals, + std::vector& cellBoundaryTypes, + unsigned nNodesPerCell, + unsigned nCells, + unsigned nDim ) { + // File has nCells lines, each line is a comma separated entry containing: + // cellNeighbors (nNodesPerCell elements), + // cellInterfaceMidPoints (nNodesPerCell x nDim elements), + // cellNormals (nNodesPerCell x nDim elements), + // cellBoundaryTypes (1 element), (tranlated from BOUNDARY_TYPE to unsigned) + + std::ofstream outFile( outputFile ); + + if( !outFile.is_open() ) { + ErrorMessages::Error( "Error opening connectivity file.", CURRENT_FUNCTION ); + return; + } + + // Write data to the file + for( unsigned i = 0; i < nCells; ++i ) { + // Write cellNeighbors + for( unsigned j = 0; j < nNodesPerCell; ++j ) { + outFile << cellNeighbors[i][j]; + if( j < nNodesPerCell - 1 ) { + outFile << ","; + } + } + // Write cellInterfaceMidPoints + for( unsigned j = 0; j < nNodesPerCell; ++j ) { + for( unsigned k = 0; k < nDim; ++k ) { + outFile << "," << cellInterfaceMidPoints[i][j][k]; // Replace with appropriate member of Vector + } + } + // Write cellNormals + for( unsigned j = 0; j < nNodesPerCell; ++j ) { + for( unsigned k = 0; k < nDim; ++k ) { + outFile << "," << cellNormals[i][j][k]; // Replace with appropriate member of Vector + } + } + // Write cellBoundaryTypes + outFile << "," << static_cast( cellBoundaryTypes[i] ); + + outFile << std::endl; + } + outFile.close(); } std::string ParseArguments( int argc, char* argv[] ) { diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 00f2dcd0..c1a123aa 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -3,11 +3,14 @@ #include #include -Mesh::Mesh( std::vector nodes, +Mesh::Mesh( const Config* settings, + std::vector nodes, std::vector> cells, std::vector>> boundaries ) : _dim( nodes[0].size() ), _numCells( cells.size() ), _numNodes( nodes.size() ), _numNodesPerCell( cells[0].size() ), _numBoundaries( boundaries.size() ), _ghostCellID( _numCells ), _nodes( nodes ), _cells( cells ), _boundaries( boundaries ) { + + _settings = settings; if( _dim == 2 ) { _numNodesPerBoundary = 2u; } From 20c02a5323dae0859ec2750037c878096cf6a9e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Fri, 5 Jan 2024 12:56:44 -0500 Subject: [PATCH 056/155] started to add connectivity loader --- src/common/mesh.cpp | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index c1a123aa..e5c3267c 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -22,8 +22,35 @@ Mesh::Mesh( const Config* settings, ComputeCellAreas(); log->info( "| Compute cell midpoints..." ); ComputeCellMidpoints(); - log->info( "| Compute mesh connectivity..." ); - ComputeConnectivity(); + + // Connectivity + std::string connectivityFile = _settings->GetMeshFile(); + size_t lastDotIndex = connectivityFile.find_last_of( '.' ); + connectivityFile = connectivityFile.substr( 0, lastDotIndex ); + connectivityFile += ".connectivity"; + if( !std::filesystem::exists( connectivityFile ) ) { + log->info( "| Compute mesh connectivity..." ); + ComputeConnectivity(); // Computes _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes + log->info( "| Save mesh connectivity to file..." ); + WriteConnecitivityToFile( + connectivityFile, _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes, _numCells, _numNodesPerCell, _dim ); + } + else { + // Resize the outer vector to have nCells elements + _cellNeighbors.resize( _numCells ); + _cellInterfaceMidPoints.resize( _numCells ); + _cellNormals.resize( _numCells ); + _cellBoundaryTypes.resize( _numCells ); + + for( unsigned i = 0; i < _numCells; i++ ) { + _cellNeighbors[i].resize( _numNodesPerCell, -1 ); + _cellInterfaceMidPoints[i].resize( _numNodesPerCell, Vector( _dim, 0.0 ) ); + _cellNormals[i].resize( _numNodesPerCell, Vector( _dim, 0.0 ) ); + } + log->info( "| Load mesh connectivity from file..." ); + LoadConnectivityFromFile( + connectivityFile, _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes, _numCells, _numNodesPerCell, _dim ); + } log->info( "| Compute boundary..." ); ComputeBounds(); } From 80182e4ff324972d76627897f18e8378f3406586 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Fri, 5 Jan 2024 15:21:44 -0500 Subject: [PATCH 057/155] added mesh connectivity reader from file for faster recomputation --- include/common/io.hpp | 8 ++-- src/common/io.cpp | 103 ++++++++++++++++++++++++------------------ src/common/mesh.cpp | 35 +++++++------- 3 files changed, 79 insertions(+), 67 deletions(-) diff --git a/include/common/io.hpp b/include/common/io.hpp index 4f1b629a..22a8a657 100644 --- a/include/common/io.hpp +++ b/include/common/io.hpp @@ -32,10 +32,10 @@ void LoadConnectivityFromFile( const std::string outputFile, unsigned nDim ); void WriteConnecitivityToFile( const std::string outputFile, - std::vector>& cellNeighbors, - std::vector>& cellInterfaceMidPoints, - std::vector>& cellNormals, - std::vector& cellBoundaryTypes, + const std::vector>& cellNeighbors, + const std::vector>& cellInterfaceMidPoints, + const std::vector>& cellNormals, + const std::vector& cellBoundaryTypes, unsigned nNodesPerCell, unsigned nCells, unsigned nDim ); diff --git a/src/common/io.cpp b/src/common/io.cpp index b05ed371..a59ae3ff 100644 --- a/src/common/io.cpp +++ b/src/common/io.cpp @@ -15,7 +15,6 @@ #include #include #include - // #include #include #include @@ -315,26 +314,42 @@ void LoadConnectivityFromFile( const std::string inputFile, // cellInterfaceMidPoints (nNodesPerCell x nDim elements), // cellNormals (nNodesPerCell x nDim elements), // cellBoundaryTypes (1 element), (tranlated from unsigned to enum BOUNDARY_TYPE) - std::ifstream inFile( inputFile ); + std::ifstream inFile( inputFile ); if( !inFile.is_open() ) { ErrorMessages::Error( "Error opening connectivity file.", CURRENT_FUNCTION ); return; } for( unsigned i = 0; i < nCells; ++i ) { std::string line; + unsigned count = 1; + std::getline( inFile, line ); + for( char ch : line ) { + if( ch == ',' ) { + count++; + } + } + + unsigned correctedNodesPerCell = nNodesPerCell; + if( count < nNodesPerCell + nNodesPerCell * nDim * 2 + 1 ) { + correctedNodesPerCell = nNodesPerCell - 1; + } + std::istringstream iss( line ); // Load cellNeighbors - cellNeighbors[i].resize( nNodesPerCell ); - for( unsigned j = 0; j < nNodesPerCell; ++j ) { + cellNeighbors[i].resize( correctedNodesPerCell ); + + for( unsigned j = 0; j < correctedNodesPerCell; ++j ) { std::getline( iss, line, ',' ); std::istringstream converter( line ); converter >> cellNeighbors[i][j]; } + // Load cellInterfaceMidPoints - cellInterfaceMidPoints[i].resize( nNodesPerCell ); - for( unsigned j = 0; j < nNodesPerCell; ++j ) { + cellInterfaceMidPoints[i].resize( correctedNodesPerCell ); + for( unsigned j = 0; j < correctedNodesPerCell; ++j ) { + cellInterfaceMidPoints[i][j] = Vector( nDim, 0.0 ); for( unsigned k = 0; k < nDim; ++k ) { std::getline( iss, line, ',' ); std::istringstream converter( line ); @@ -342,8 +357,9 @@ void LoadConnectivityFromFile( const std::string inputFile, } } // Load cellNormals - cellNormals[i].resize( nNodesPerCell ); - for( unsigned j = 0; j < nNodesPerCell; ++j ) { + cellNormals[i].resize( correctedNodesPerCell ); + for( unsigned j = 0; j < correctedNodesPerCell; ++j ) { + cellNormals[i][j] = Vector( nDim, 0.0 ); for( unsigned k = 0; k < nDim; ++k ) { std::getline( iss, line, ',' ); std::istringstream converter( line ); @@ -361,12 +377,12 @@ void LoadConnectivityFromFile( const std::string inputFile, } void WriteConnecitivityToFile( const std::string outputFile, - std::vector>& cellNeighbors, - std::vector>& cellInterfaceMidPoints, - std::vector>& cellNormals, - std::vector& cellBoundaryTypes, - unsigned nNodesPerCell, + const std::vector>& cellNeighbors, + const std::vector>& cellInterfaceMidPoints, + const std::vector>& cellNormals, + const std::vector& cellBoundaryTypes, unsigned nCells, + unsigned nNodesPerCell, unsigned nDim ) { // File has nCells lines, each line is a comma separated entry containing: // cellNeighbors (nNodesPerCell elements), @@ -375,46 +391,45 @@ void WriteConnecitivityToFile( const std::string outputFile, // cellBoundaryTypes (1 element), (tranlated from BOUNDARY_TYPE to unsigned) std::ofstream outFile( outputFile ); - - if( !outFile.is_open() ) { - ErrorMessages::Error( "Error opening connectivity file.", CURRENT_FUNCTION ); - return; - } - - // Write data to the file - for( unsigned i = 0; i < nCells; ++i ) { - // Write cellNeighbors - for( unsigned j = 0; j < nNodesPerCell; ++j ) { - outFile << cellNeighbors[i][j]; - if( j < nNodesPerCell - 1 ) { - outFile << ","; + // const std::size_t bufferSize = 10000; // Adjust as needed + // outFile.rdbuf()->pubsetbuf( 0, bufferSize ); + if( outFile.is_open() ) { + // Write data to the file + for( unsigned i = 0; i < nCells; ++i ) { + // Write cellNeighbors + for( unsigned j = 0; j < cellNeighbors[i].size(); ++j ) { + outFile << cellNeighbors[i][j]; + if( j < cellNeighbors[i].size() - 1 ) { + outFile << ","; + } } - } - // Write cellInterfaceMidPoints - for( unsigned j = 0; j < nNodesPerCell; ++j ) { - for( unsigned k = 0; k < nDim; ++k ) { - outFile << "," << cellInterfaceMidPoints[i][j][k]; // Replace with appropriate member of Vector + // Write cellInterfaceMidPoints + for( unsigned j = 0; j < cellInterfaceMidPoints[i].size(); ++j ) { + for( unsigned k = 0; k < nDim; ++k ) { + outFile << "," << cellInterfaceMidPoints[i][j][k]; + } } - } - // Write cellNormals - for( unsigned j = 0; j < nNodesPerCell; ++j ) { - for( unsigned k = 0; k < nDim; ++k ) { - outFile << "," << cellNormals[i][j][k]; // Replace with appropriate member of Vector + // Write cellNormals + for( unsigned j = 0; j < cellNormals[i].size(); ++j ) { + for( unsigned k = 0; k < nDim; ++k ) { + outFile << "," << cellNormals[i][j][k]; + } } - } - // Write cellBoundaryTypes - outFile << "," << static_cast( cellBoundaryTypes[i] ); - outFile << std::endl; + // Write cellBoundaryTypes + outFile << "," << static_cast( cellBoundaryTypes[i] ); + outFile << std::endl; + } + outFile.close(); + } + else { + ErrorMessages::Error( "Error opening connectivity file.", CURRENT_FUNCTION ); } - outFile.close(); } std::string ParseArguments( int argc, char* argv[] ) { std::string inputFile; - std::string usage_help = "\n" - "Usage: " + - std::string( argv[0] ) + " inputfile\n"; + std::string usage_help = "\nUsage: " + std::string( argv[0] ) + " inputfile\n"; if( argc < 2 ) { std::cout << usage_help; diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index e5c3267c..b58c05c0 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -27,11 +27,11 @@ Mesh::Mesh( const Config* settings, std::string connectivityFile = _settings->GetMeshFile(); size_t lastDotIndex = connectivityFile.find_last_of( '.' ); connectivityFile = connectivityFile.substr( 0, lastDotIndex ); - connectivityFile += ".connectivity"; + connectivityFile += ".con"; if( !std::filesystem::exists( connectivityFile ) ) { log->info( "| Compute mesh connectivity..." ); ComputeConnectivity(); // Computes _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes - log->info( "| Save mesh connectivity to file..." ); + log->info( "| Save mesh connectivity to file " + connectivityFile ); WriteConnecitivityToFile( connectivityFile, _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes, _numCells, _numNodesPerCell, _dim ); } @@ -41,13 +41,7 @@ Mesh::Mesh( const Config* settings, _cellInterfaceMidPoints.resize( _numCells ); _cellNormals.resize( _numCells ); _cellBoundaryTypes.resize( _numCells ); - - for( unsigned i = 0; i < _numCells; i++ ) { - _cellNeighbors[i].resize( _numNodesPerCell, -1 ); - _cellInterfaceMidPoints[i].resize( _numNodesPerCell, Vector( _dim, 0.0 ) ); - _cellNormals[i].resize( _numNodesPerCell, Vector( _dim, 0.0 ) ); - } - log->info( "| Load mesh connectivity from file..." ); + log->info( "| Load mesh connectivity from file " + connectivityFile ); LoadConnectivityFromFile( connectivityFile, _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes, _numCells, _numNodesPerCell, _dim ); } @@ -73,7 +67,7 @@ void Mesh::ComputeConnectivity() { std::vector interfaceMidFlatPart( _numNodesPerCell * chunkSize, Vector( _dim, -1.0 ) ); // pre sort cells and boundaries; sorting is needed for std::set_intersection - log->info( "| ... sort cells..." ); + log->info( "| ...sort cells..." ); auto sortedCells( _cells ); #pragma omp parallel for @@ -87,17 +81,17 @@ void Mesh::ComputeConnectivity() { } // save which cell has which nodes - log->info( "| ... connect cells to nodes..." ); + log->info( "| ...connect cells to nodes..." ); blaze::CompressedMatrix connMat( _numCells, _numNodes ); -#pragma omp parallel for + + // #pragma omp parallel for for( unsigned i = mpiCellStart; i < mpiCellEnd; ++i ) { - for( unsigned j = 0; i < _numNodesPerCell; ++i ) { - connMat.set( i, _cells[i][j], true ); - } + for( auto j : _cells[i] ) connMat.set( i, j, true ); } // determine neighbor cells and normals with MPI and OpenMP - log->info( "| ... determine neighbors of cells..." ); + log->info( "| ...determine neighbors of cells..." ); + #pragma omp parallel for schedule( guided ) for( unsigned i = mpiCellStart; i < mpiCellEnd; ++i ) { std::vector* cellsI = &sortedCells[i]; @@ -121,8 +115,9 @@ void Mesh::ComputeConnectivity() { // determine unused index unsigned pos0 = _numNodesPerCell * ( i - mpiCellStart ); unsigned pos = pos0; - while( neighborsFlatPart[pos] != -1 && pos < pos0 + _numNodesPerCell - 1 && pos < chunkSize * _numNodesPerCell - 1 ) + while( neighborsFlatPart[pos] != -1 && pos < pos0 + _numNodesPerCell - 1 && pos < chunkSize * _numNodesPerCell - 1 ) { pos++; // neighbors should be at same edge position for cells i AND j + } neighborsFlatPart[pos] = j; // compute normal vector normalsFlatPart[pos] = ComputeOutwardFacingNormal( _nodes[commonElements[0]], _nodes[commonElements[1]], _cellMidPoints[i] ); @@ -147,7 +142,9 @@ void Mesh::ComputeConnectivity() { if( commonElements.size() >= _numNodesPerBoundary && commonElements.size() <= _numNodesPerCell ) { unsigned pos0 = _numNodesPerCell * ( i - mpiCellStart ); unsigned pos = pos0; - while( neighborsFlatPart[pos] != -1 && pos < pos0 + _numNodesPerCell - 1 && pos < chunkSize * _numNodesPerCell - 1 ) pos++; + while( neighborsFlatPart[pos] != -1 && pos < pos0 + _numNodesPerCell - 1 && pos < chunkSize * _numNodesPerCell - 1 ) { + pos++; + } neighborsFlatPart[pos] = _ghostCellID; normalsFlatPart[pos] = ComputeOutwardFacingNormal( _nodes[commonElements[0]], _nodes[commonElements[1]], _cellMidPoints[i] ); interfaceMidFlatPart[pos] = ComputeCellInterfaceMidpoints( _nodes[commonElements[0]], _nodes[commonElements[1]] ); @@ -200,7 +197,7 @@ void Mesh::ComputeConnectivity() { } else { // normal cell neighbor if( std::find( _cellNeighbors[IDi].begin(), _cellNeighbors[IDi].end(), IDj ) == _cellNeighbors[IDi].end() ) { - _cellNeighbors[IDi].push_back( IDj ); + _cellNeighbors[IDi].push_back( neighborsFlat[i] ); _cellNormals[IDi].push_back( normalsFlat[i] ); _cellInterfaceMidPoints[IDi].push_back( interfaceMidFlat[i] ); } From b7e02327d8d3e41ab6047c8cb6e4f3deffdfd877 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Fri, 5 Jan 2024 15:48:37 -0500 Subject: [PATCH 058/155] increased cfl number --- examples_hpc/lattice/lattice_S19_n20.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples_hpc/lattice/lattice_S19_n20.cfg b/examples_hpc/lattice/lattice_S19_n20.cfg index b733b86e..88cc1d8b 100644 --- a/examples_hpc/lattice/lattice_S19_n20.cfg +++ b/examples_hpc/lattice/lattice_S19_n20.cfg @@ -25,7 +25,7 @@ SOURCE_MAGNITUDE = 1.0 % Solver type SOLVER = SN_SOLVER % CFL number -CFL_NUMBER = 0.95 +CFL_NUMBER = 0.99 % Reconstruction order RECONS_ORDER = 2 % From fee759fddbd0d4ff4f6c0c37bdda9ccb41470105 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 11 Jan 2024 13:17:34 -0500 Subject: [PATCH 059/155] update mn and pn solver to new, more memory efficient phhysics implementation --- include/problems/linesource.hpp | 2 + src/problems/linesource.cpp | 14 +++--- src/solvers/mnsolver.cpp | 41 +++++++++++----- src/solvers/mnsolver_normalized.cpp | 73 ++++++++++++++--------------- src/solvers/pnsolver.cpp | 47 ++++++++++++++----- src/solvers/snsolver.cpp | 1 + 6 files changed, 111 insertions(+), 67 deletions(-) diff --git a/include/problems/linesource.hpp b/include/problems/linesource.hpp index 24637d81..502d84c6 100644 --- a/include/problems/linesource.hpp +++ b/include/problems/linesource.hpp @@ -69,6 +69,8 @@ class LineSource_Moment : public LineSource ~LineSource_Moment(); VectorVector SetupIC() override; + + std::vector GetExternalSource( const Vector& energies ) override final; }; class LineSource_SN_1D : public LineSource_SN diff --git a/src/problems/linesource.cpp b/src/problems/linesource.cpp index 589be712..94d70b61 100644 --- a/src/problems/linesource.cpp +++ b/src/problems/linesource.cpp @@ -140,13 +140,13 @@ LineSource_Moment::LineSource_Moment( Config* settings, Mesh* mesh, QuadratureBa LineSource_Moment::~LineSource_Moment() {} -// std::vector LineSource_Moment::GetExternalSource( const Vector& /*energies*/ ) { -// SphericalBase* tempBase = SphericalBase::Create( _settings ); -// unsigned ntotalEquations = tempBase->GetBasisSize(); -// delete tempBase; // Only temporally needed -// -// return std::vector( 1u, std::vector( _mesh->GetNumCells(), Vector( ntotalEquations, 0.0 ) ) ); -// } +std::vector LineSource_Moment::GetExternalSource( const Vector& /*energies*/ ) { + SphericalBase* tempBase = SphericalBase::Create( _settings ); + unsigned ntotalEquations = tempBase->GetBasisSize(); + delete tempBase; // Only temporally needed + + return std::vector( 1u, std::vector( _mesh->GetNumCells(), Vector( ntotalEquations, 0.0 ) ) ); +} VectorVector LineSource_Moment::SetupIC() { // Compute number of equations in the system diff --git a/src/solvers/mnsolver.cpp b/src/solvers/mnsolver.cpp index e6a9c4f8..7f634ec7 100644 --- a/src/solvers/mnsolver.cpp +++ b/src/solvers/mnsolver.cpp @@ -251,20 +251,39 @@ void MNSolver::FluxUpdatePseudo2D() { } void MNSolver::FVMUpdate( unsigned idx_iter ) { + if( _Q.size() == 1u && _sigmaT.size() == 1u && _sigmaS.size() == 1u ) { // Physics constant in time // Loop over the grid cells #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - // Dirichlet Boundaries stay - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; - // Flux update - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { - _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] /* old solution */ - - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ - + _dT * _sigmaS[idx_iter][idx_cell] * _sol[idx_cell][0] * _scatterMatDiag[idx_sys] /* scattering gain */ - - _dT * ( _sigmaT[idx_iter][idx_cell] ) * _sol[idx_cell][idx_sys]; /* scattering and absorbtion loss */ + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + // Dirichlet Boundaries stay + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + // Flux update + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] /* old solution */ + - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ + + _dT * _sigmaS[0][idx_cell] * _sol[idx_cell][0] * _scatterMatDiag[idx_sys] /* scattering gain */ + - _dT * ( _sigmaT[0][idx_cell] ) * _sol[idx_cell][idx_sys]; /* scattering and absorbtion loss */ + } + // Source Term + _solNew[idx_cell] += _dT * _Q[0][idx_cell]; + } + } + else { + // Loop over the grid cells +#pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + // Dirichlet Boundaries stay + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + // Flux update + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] /* old solution */ + - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ + + _dT * _sigmaS[idx_iter][idx_cell] * _sol[idx_cell][0] * _scatterMatDiag[idx_sys] /* scattering gain */ + - _dT * ( _sigmaT[idx_iter][idx_cell] ) * _sol[idx_cell][idx_sys]; /* scattering and absorbtion loss */ + } + // Source Term + _solNew[idx_cell] += _dT * _Q[idx_iter][idx_cell]; } - // Source Term - _solNew[idx_cell] += _dT * _Q[0][idx_cell]; } } diff --git a/src/solvers/mnsolver_normalized.cpp b/src/solvers/mnsolver_normalized.cpp index b7c4cf20..3aa0d2a3 100644 --- a/src/solvers/mnsolver_normalized.cpp +++ b/src/solvers/mnsolver_normalized.cpp @@ -34,10 +34,10 @@ MNSolverNormalized::~MNSolverNormalized() {} void MNSolverNormalized::IterPreprocessing( unsigned idx_pseudotime ) { Vector alpha_norm_per_cell( _nCells, 0 ); // ONLY FOR DEBUGGING! THIS SLOWS DOWN THE CODE - //if (idx_pseudotime < 1600){ - // // preprocessor - // _optimizer3->SolveMultiCell( _alpha, _sol, _momentBasis, alpha_norm_per_cell ); // Newton for the first few iterations -// + // if (idx_pseudotime < 1600){ + // // preprocessor + // _optimizer3->SolveMultiCell( _alpha, _sol, _momentBasis, alpha_norm_per_cell ); // Newton for the first few iterations + // // #pragma omp parallel for // for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { // for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { @@ -46,28 +46,27 @@ void MNSolverNormalized::IterPreprocessing( unsigned idx_pseudotime ) { // } // } //} - //else + // else { - //std::cout << "Start Network based closure"; - //if (idx_pseudotime==1600){ - // #pragma omp parallel for - // for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - // _sol[idx_cell][0] = max(1e-10, _sol[idx_cell][0]); - // } - //} - // ------- Entropy closure Step ---------------- - #pragma omp parallel for + // std::cout << "Start Network based closure"; + // if (idx_pseudotime==1600){ + // #pragma omp parallel for + // for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + // _sol[idx_cell][0] = max(1e-10, _sol[idx_cell][0]); + // } + // } + // ------- Entropy closure Step ---------------- +#pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { _u0[idx_cell] = _sol[idx_cell][0]; _sol[idx_cell] /= _u0[idx_cell]; // assume _u0 > 0 always!! } - _optimizer->SolveMultiCell( _alpha, _sol, _momentBasis, alpha_norm_per_cell ); // Newton for the first few iterations int norm_err = 0.0; // Check if solution is close to reconstruction, if not, apply newton optimizer - #pragma omp parallel for +#pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { _optimizer2->ReconstructMoments( _sol2[idx_cell], _alpha[idx_cell], _momentBasis ); //_optimizer2->ReconstructMoments( _sol2[idx_cell], _alpha[idx_cell], _momentBasis ); @@ -82,31 +81,31 @@ void MNSolverNormalized::IterPreprocessing( unsigned idx_pseudotime ) { } } std::cout << "Number of inaccurate cells: " << norm_err << "\n"; - - // ------- Solution reconstruction step ---- + + // ------- Solution reconstruction step ---- #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - alpha_norm_per_cell[idx_cell] *= _momentBasis[0][0] * 0.5 * _settings->GetRegularizerGamma(); // is constant - if( _settings->GetEntropyDynamicAnsatz() ) { - for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { - // compute the kinetic density at all grid cells - _kineticDensity[idx_cell][idx_quad] = - _u0[idx_cell] * - _entropy->EntropyPrimeDual( blaze::dot( _alpha[idx_cell], _momentBasis[idx_quad] ) - alpha_norm_per_cell[idx_cell] ); + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + alpha_norm_per_cell[idx_cell] *= _momentBasis[0][0] * 0.5 * _settings->GetRegularizerGamma(); // is constant + if( _settings->GetEntropyDynamicAnsatz() ) { + for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { + // compute the kinetic density at all grid cells + _kineticDensity[idx_cell][idx_quad] = + _u0[idx_cell] * + _entropy->EntropyPrimeDual( blaze::dot( _alpha[idx_cell], _momentBasis[idx_quad] ) - alpha_norm_per_cell[idx_cell] ); + } } - } - else { - for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { - // compute the kinetic density at all grid cells - _kineticDensity[idx_cell][idx_quad] = - _u0[idx_cell] * _entropy->EntropyPrimeDual( blaze::dot( _alpha[idx_cell], _momentBasis[idx_quad] ) ); + else { + for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { + // compute the kinetic density at all grid cells + _kineticDensity[idx_cell][idx_quad] = + _u0[idx_cell] * _entropy->EntropyPrimeDual( blaze::dot( _alpha[idx_cell], _momentBasis[idx_quad] ) ); + } } + if( _settings->GetRealizabilityReconstruction() ) { + ComputeRealizableSolution( idx_cell ); + } + _sol[idx_cell] *= _u0[idx_cell]; } - if( _settings->GetRealizabilityReconstruction() ) { - ComputeRealizableSolution( idx_cell ); - } - _sol[idx_cell] *= _u0[idx_cell]; - } } // ------ Compute slope limiters and cell gradients --- diff --git a/src/solvers/pnsolver.cpp b/src/solvers/pnsolver.cpp index 7c36516d..15a16995 100644 --- a/src/solvers/pnsolver.cpp +++ b/src/solvers/pnsolver.cpp @@ -205,21 +205,44 @@ void PNSolver::FluxUpdatePseudo2D() { } } -void PNSolver::FVMUpdate( unsigned idx_energy ) { +void PNSolver::FVMUpdate( unsigned idx_iter ) { + if( _Q.size() == 1u && _sigmaT.size() == 1u && _sigmaS.size() == 1u ) { // Physics constant in time + // Loop over all spatial cells #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - // Dirichlet cells stay at IC, farfield assumption - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; - // Flux update - for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { - _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ - - _dT * _sol[idx_cell][idx_sys] * - ( _sigmaS[idx_energy][idx_cell] * _scatterMatDiag[idx_sys] /* scattering influence */ - + _sigmaT[idx_energy][idx_cell] ); /* total xs influence */ + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + // Dirichlet cells stay at IC, farfield assumption + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + // Flux update + + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] - + ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ + - _dT * _sol[idx_cell][idx_sys] * + ( _sigmaS[0][idx_cell] * _scatterMatDiag[idx_sys] /* scattering influence */ + + _sigmaT[0][idx_cell] ); /* total xs influence */ + } + // Source Term + _solNew[idx_cell] += _dT * _Q[0][idx_cell]; + } + } + else { + // Loop over all spatial cells +#pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + // Dirichlet cells stay at IC, farfield assumption + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + // Flux update + for( unsigned idx_sys = 0; idx_sys < _nSystem; idx_sys++ ) { + _solNew[idx_cell][idx_sys] = _sol[idx_cell][idx_sys] - + ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_sys] /* cell averaged flux */ + - _dT * _sol[idx_cell][idx_sys] * + ( _sigmaS[idx_iter][idx_cell] * _scatterMatDiag[idx_sys] /* scattering influence */ + + _sigmaT[idx_iter][idx_cell] ); /* total xs influence */ + } + // Source Term + _solNew[idx_cell] += _dT * _Q[idx_iter][idx_cell]; } - // Source Term - _solNew[idx_cell] += _dT * _Q[0][idx_cell]; } } diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index 2694525e..b61b61da 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -206,6 +206,7 @@ void SNSolver::FVMUpdate( unsigned idx_iter ) { } } } + void SNSolver::PrepareVolumeOutput() { unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); From f6248ffc6ea971af1fd4b016e5835ca449293bfd Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 18 Jan 2024 14:44:47 -0500 Subject: [PATCH 060/155] fixed bug in max absorption computation --- examples_hpc/lattice/mesh/lattice_rectangular.geo | 4 ++-- examples_hpc/lattice/mesh/make_lattice_mesh.sh | 2 +- src/problems/lattice.cpp | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/examples_hpc/lattice/mesh/lattice_rectangular.geo b/examples_hpc/lattice/mesh/lattice_rectangular.geo index 9721aecd..376415fa 100644 --- a/examples_hpc/lattice/mesh/lattice_rectangular.geo +++ b/examples_hpc/lattice/mesh/lattice_rectangular.geo @@ -1,6 +1,6 @@ cl_fine = 0.1; -n_recombine = 20; -n_prog = 1.1; +n_recombine = 40; +n_prog = 1.05; Point(1) = {-3.5, -3.5, 0, cl_fine}; Point(2) = {3.5, -3.5, 0, cl_fine}; Point(3) = {-3.5, 3.5, 0, cl_fine}; diff --git a/examples_hpc/lattice/mesh/make_lattice_mesh.sh b/examples_hpc/lattice/mesh/make_lattice_mesh.sh index ea100c9c..8e559b4c 100644 --- a/examples_hpc/lattice/mesh/make_lattice_mesh.sh +++ b/examples_hpc/lattice/mesh/make_lattice_mesh.sh @@ -1 +1 @@ -gmsh lattice_rectangular.geo -2 -format su2 -save_all -o lattice_n20.su2 +gmsh lattice_rectangular.geo -2 -format su2 -save_all -o lattice_n40.su2 diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index d70eb6ec..644b7615 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -146,7 +146,6 @@ void Lattice_SN::ComputeCurrentAbsorptionLattice( const Vector& scalarFlux ) { } // TODO all absorption qois can be refactored in one function void Lattice_SN::ComputeMaxAbsorptionLattice( const Vector& scalarFlux ) { - _curMaxAbsorptionLattice = 0.0; unsigned nCells = _mesh->GetNumCells(); auto cellMids = _mesh->GetCellMidPoints(); std::vector areas = _mesh->GetCellAreas(); From d0ddd45aa15a611a065b029fe7effb046bd3e6ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Thu, 18 Jan 2024 19:38:20 -0500 Subject: [PATCH 061/155] added config files --- examples_hpc/lattice/lattice_S19_n10.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S19_n20.cfg | 2 +- examples_hpc/lattice/lattice_S19_n40.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S19_n80.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S29_n20.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S29_n40.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S29_n80.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S3_n20.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S41_n20.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S41_n40.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S41_n80.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S53_n20.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S53_n40.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S53_n80cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S65_n20.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S65_n40.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S65_n80.cfg | 48 +++++++++++++++++++ examples_hpc/lattice/lattice_S9_n20.cfg | 48 +++++++++++++++++++ .../lattice/mesh/lattice_rectangular.geo | 4 +- 19 files changed, 819 insertions(+), 3 deletions(-) create mode 100644 examples_hpc/lattice/lattice_S19_n10.cfg create mode 100644 examples_hpc/lattice/lattice_S19_n40.cfg create mode 100644 examples_hpc/lattice/lattice_S19_n80.cfg create mode 100644 examples_hpc/lattice/lattice_S29_n20.cfg create mode 100644 examples_hpc/lattice/lattice_S29_n40.cfg create mode 100644 examples_hpc/lattice/lattice_S29_n80.cfg create mode 100644 examples_hpc/lattice/lattice_S3_n20.cfg create mode 100644 examples_hpc/lattice/lattice_S41_n20.cfg create mode 100644 examples_hpc/lattice/lattice_S41_n40.cfg create mode 100644 examples_hpc/lattice/lattice_S41_n80.cfg create mode 100644 examples_hpc/lattice/lattice_S53_n20.cfg create mode 100644 examples_hpc/lattice/lattice_S53_n40.cfg create mode 100644 examples_hpc/lattice/lattice_S53_n80cfg create mode 100644 examples_hpc/lattice/lattice_S65_n20.cfg create mode 100644 examples_hpc/lattice/lattice_S65_n40.cfg create mode 100644 examples_hpc/lattice/lattice_S65_n80.cfg create mode 100644 examples_hpc/lattice/lattice_S9_n20.cfg diff --git a/examples_hpc/lattice/lattice_S19_n10.cfg b/examples_hpc/lattice/lattice_S19_n10.cfg new file mode 100644 index 00000000..314244a2 --- /dev/null +++ b/examples_hpc/lattice/lattice_S19_n10.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.1024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_19_n10 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_19_n10 +MESH_FILE = mesh/lattice_n10.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 19 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S19_n20.cfg b/examples_hpc/lattice/lattice_S19_n20.cfg index b733b86e..82f2c587 100644 --- a/examples_hpc/lattice/lattice_S19_n20.cfg +++ b/examples_hpc/lattice/lattice_S19_n20.cfg @@ -25,7 +25,7 @@ SOURCE_MAGNITUDE = 1.0 % Solver type SOLVER = SN_SOLVER % CFL number -CFL_NUMBER = 0.95 +CFL_NUMBER = 0.9 % Reconstruction order RECONS_ORDER = 2 % diff --git a/examples_hpc/lattice/lattice_S19_n40.cfg b/examples_hpc/lattice/lattice_S19_n40.cfg new file mode 100644 index 00000000..3dcb807a --- /dev/null +++ b/examples_hpc/lattice/lattice_S19_n40.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.2024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_19_n40 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_19_n40 +MESH_FILE = mesh/lattice_n40.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 19 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S19_n80.cfg b/examples_hpc/lattice/lattice_S19_n80.cfg new file mode 100644 index 00000000..5605da74 --- /dev/null +++ b/examples_hpc/lattice/lattice_S19_n80.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.8024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_19_n80 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_19_n80 +MESH_FILE = mesh/lattice_n80.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 19 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S29_n20.cfg b/examples_hpc/lattice/lattice_S29_n20.cfg new file mode 100644 index 00000000..8df44b55 --- /dev/null +++ b/examples_hpc/lattice/lattice_S29_n20.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.2024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_29_n20 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_29_n20 +MESH_FILE = mesh/lattice_n20.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 29 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S29_n40.cfg b/examples_hpc/lattice/lattice_S29_n40.cfg new file mode 100644 index 00000000..fc814de2 --- /dev/null +++ b/examples_hpc/lattice/lattice_S29_n40.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.4024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_29_n40 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_29_n40 +MESH_FILE = mesh/lattice_n40.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 29 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S29_n80.cfg b/examples_hpc/lattice/lattice_S29_n80.cfg new file mode 100644 index 00000000..54cd7bd9 --- /dev/null +++ b/examples_hpc/lattice/lattice_S29_n80.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.8024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_29_n80 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_29_n80 +MESH_FILE = mesh/lattice_n80.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 29 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S3_n20.cfg b/examples_hpc/lattice/lattice_S3_n20.cfg new file mode 100644 index 00000000..ffe1a74d --- /dev/null +++ b/examples_hpc/lattice/lattice_S3_n20.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.2024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_3_n20 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_3_n20 +MESH_FILE = mesh/lattice_n20.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 3 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S41_n20.cfg b/examples_hpc/lattice/lattice_S41_n20.cfg new file mode 100644 index 00000000..553b3a66 --- /dev/null +++ b/examples_hpc/lattice/lattice_S41_n20.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.2024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_41_n20 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_41_n20 +MESH_FILE = mesh/lattice_n20.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 41 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S41_n40.cfg b/examples_hpc/lattice/lattice_S41_n40.cfg new file mode 100644 index 00000000..05b60eda --- /dev/null +++ b/examples_hpc/lattice/lattice_S41_n40.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.4024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_41_n40 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_41_n40 +MESH_FILE = mesh/lattice_n40.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 41 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S41_n80.cfg b/examples_hpc/lattice/lattice_S41_n80.cfg new file mode 100644 index 00000000..8e587c33 --- /dev/null +++ b/examples_hpc/lattice/lattice_S41_n80.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.8024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_41_n80 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_41_n80 +MESH_FILE = mesh/lattice_n80.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 41 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S53_n20.cfg b/examples_hpc/lattice/lattice_S53_n20.cfg new file mode 100644 index 00000000..999e06b3 --- /dev/null +++ b/examples_hpc/lattice/lattice_S53_n20.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.2024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_53_n20 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_53_n20 +MESH_FILE = mesh/lattice_n20.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 53 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S53_n40.cfg b/examples_hpc/lattice/lattice_S53_n40.cfg new file mode 100644 index 00000000..3bcd58b1 --- /dev/null +++ b/examples_hpc/lattice/lattice_S53_n40.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.4024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_53_n40 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_53_n40 +MESH_FILE = mesh/lattice_n40.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 53 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S53_n80cfg b/examples_hpc/lattice/lattice_S53_n80cfg new file mode 100644 index 00000000..e30ddca5 --- /dev/null +++ b/examples_hpc/lattice/lattice_S53_n80cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.8024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_53_n80 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_53_n80 +MESH_FILE = mesh/lattice_n80.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 53 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S65_n20.cfg b/examples_hpc/lattice/lattice_S65_n20.cfg new file mode 100644 index 00000000..dbf5e0ae --- /dev/null +++ b/examples_hpc/lattice/lattice_S65_n20.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.2024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_65_n20 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_65_n20 +MESH_FILE = mesh/lattice_n20.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 65 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S65_n40.cfg b/examples_hpc/lattice/lattice_S65_n40.cfg new file mode 100644 index 00000000..49c2f493 --- /dev/null +++ b/examples_hpc/lattice/lattice_S65_n40.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.4024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_65_n40 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_65_n40 +MESH_FILE = mesh/lattice_n40.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 65 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S65_n80.cfg b/examples_hpc/lattice/lattice_S65_n80.cfg new file mode 100644 index 00000000..3b6d6582 --- /dev/null +++ b/examples_hpc/lattice/lattice_S65_n80.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.8024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_65_n80 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_65_n80 +MESH_FILE = mesh/lattice_n80.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 65 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S9_n20.cfg b/examples_hpc/lattice/lattice_S9_n20.cfg new file mode 100644 index 00000000..8984a18e --- /dev/null +++ b/examples_hpc/lattice/lattice_S9_n20.cfg @@ -0,0 +1,48 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lattice Benchmarking File SN % +% Author % +% Date 08.01.2024 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +% ----IO specification ---- +% +OUTPUT_DIR = result +OUTPUT_FILE = lattice_quad_order_9_n20 +LOG_DIR = result/logs +LOG_FILE = lattice_quad_order_9_n20 +MESH_FILE = mesh/lattice_n20.su2 +% +% --- Problem definition --- +% +PROBLEM = LATTICE +TIME_FINAL = 2.8 +SPATIAL_DIM = 3 +SOURCE_MAGNITUDE = 1.0 +% +% ---- Solver specifications ---- +% +% Solver type +SOLVER = SN_SOLVER +% CFL number +CFL_NUMBER = 0.9 +% Reconstruction order +RECONS_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ----- Quadrature Specification --- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 9 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 0 +SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) +SCREEN_OUTPUT_FREQUENCY = 10 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/mesh/lattice_rectangular.geo b/examples_hpc/lattice/mesh/lattice_rectangular.geo index 376415fa..9721aecd 100644 --- a/examples_hpc/lattice/mesh/lattice_rectangular.geo +++ b/examples_hpc/lattice/mesh/lattice_rectangular.geo @@ -1,6 +1,6 @@ cl_fine = 0.1; -n_recombine = 40; -n_prog = 1.05; +n_recombine = 20; +n_prog = 1.1; Point(1) = {-3.5, -3.5, 0, cl_fine}; Point(2) = {3.5, -3.5, 0, cl_fine}; Point(3) = {-3.5, 3.5, 0, cl_fine}; From 300984ac1dea9fa659685aa38b177267e91e7d9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Thu, 18 Jan 2024 19:44:22 -0500 Subject: [PATCH 062/155] updated meshing scripts --- ...ngular.geo => lattice_rectangular_n20.geo} | 0 .../lattice/mesh/lattice_rectangular_n40.geo | 1193 +++++++++++++++++ .../lattice/mesh/lattice_rectangular_n80.geo | 1193 +++++++++++++++++ .../lattice/mesh/make_lattice_mesh.sh | 6 +- 4 files changed, 2391 insertions(+), 1 deletion(-) rename examples_hpc/lattice/mesh/{lattice_rectangular.geo => lattice_rectangular_n20.geo} (100%) create mode 100644 examples_hpc/lattice/mesh/lattice_rectangular_n40.geo create mode 100644 examples_hpc/lattice/mesh/lattice_rectangular_n80.geo diff --git a/examples_hpc/lattice/mesh/lattice_rectangular.geo b/examples_hpc/lattice/mesh/lattice_rectangular_n20.geo similarity index 100% rename from examples_hpc/lattice/mesh/lattice_rectangular.geo rename to examples_hpc/lattice/mesh/lattice_rectangular_n20.geo diff --git a/examples_hpc/lattice/mesh/lattice_rectangular_n40.geo b/examples_hpc/lattice/mesh/lattice_rectangular_n40.geo new file mode 100644 index 00000000..ccc4e41f --- /dev/null +++ b/examples_hpc/lattice/mesh/lattice_rectangular_n40.geo @@ -0,0 +1,1193 @@ +cl_fine = 0.1; +n_recombine = 40; +n_prog = 1.1; +Point(1) = {-3.5, -3.5, 0, cl_fine}; +Point(2) = {3.5, -3.5, 0, cl_fine}; +Point(3) = {-3.5, 3.5, 0, cl_fine}; +Point(4) = {3.5, 3.5, 0, cl_fine}; + +// Inner grid +Point(5) = { -2.5, -2.5, 0, cl_fine }; +Point(6) = { -2.5, -2.0, 0, cl_fine }; +Point(7) = { -2.5, -1.5, 0, cl_fine }; +Point(8) = { -2.5, -1.0, 0, cl_fine }; +Point(9) = { -2.5, -0.5, 0, cl_fine }; +Point(10) = { -2.5, 0.0, 0, cl_fine }; +Point(11) = { -2.5, 0.5, 0, cl_fine }; +Point(12) = { -2.5, 1.0, 0, cl_fine }; +Point(13) = { -2.5, 1.5, 0, cl_fine }; +Point(14) = { -2.5, 2.0, 0, cl_fine }; +Point(15) = { -2.5, 2.5, 0, cl_fine }; +Point(16) = { -2.0, -2.5, 0, cl_fine }; +Point(17) = { -2.0, -2.0, 0, cl_fine }; +Point(18) = { -2.0, -1.5, 0, cl_fine }; +Point(19) = { -2.0, -1.0, 0, cl_fine }; +Point(20) = { -2.0, -0.5, 0, cl_fine }; +Point(21) = { -2.0, 0.0, 0, cl_fine }; +Point(22) = { -2.0, 0.5, 0, cl_fine }; +Point(23) = { -2.0, 1.0, 0, cl_fine }; +Point(24) = { -2.0, 1.5, 0, cl_fine }; +Point(25) = { -2.0, 2.0, 0, cl_fine }; +Point(26) = { -2.0, 2.5, 0, cl_fine }; +Point(27) = { -1.5, -2.5, 0, cl_fine }; +Point(28) = { -1.5, -2.0, 0, cl_fine }; +Point(29) = { -1.5, -1.5, 0, cl_fine }; +Point(30) = { -1.5, -1.0, 0, cl_fine }; +Point(31) = { -1.5, -0.5, 0, cl_fine }; +Point(32) = { -1.5, 0.0, 0, cl_fine }; +Point(33) = { -1.5, 0.5, 0, cl_fine }; +Point(34) = { -1.5, 1.0, 0, cl_fine }; +Point(35) = { -1.5, 1.5, 0, cl_fine }; +Point(36) = { -1.5, 2.0, 0, cl_fine }; +Point(37) = { -1.5, 2.5, 0, cl_fine }; +Point(38) = { -1.0, -2.5, 0, cl_fine }; +Point(39) = { -1.0, -2.0, 0, cl_fine }; +Point(40) = { -1.0, -1.5, 0, cl_fine }; +Point(41) = { -1.0, -1.0, 0, cl_fine }; +Point(42) = { -1.0, -0.5, 0, cl_fine }; +Point(43) = { -1.0, 0.0, 0, cl_fine }; +Point(44) = { -1.0, 0.5, 0, cl_fine }; +Point(45) = { -1.0, 1.0, 0, cl_fine }; +Point(46) = { -1.0, 1.5, 0, cl_fine }; +Point(47) = { -1.0, 2.0, 0, cl_fine }; +Point(48) = { -1.0, 2.5, 0, cl_fine }; +Point(49) = { -0.5, -2.5, 0, cl_fine }; +Point(50) = { -0.5, -2.0, 0, cl_fine }; +Point(51) = { -0.5, -1.5, 0, cl_fine }; +Point(52) = { -0.5, -1.0, 0, cl_fine }; +Point(53) = { -0.5, -0.5, 0, cl_fine }; +Point(54) = { -0.5, 0.0, 0, cl_fine }; +Point(55) = { -0.5, 0.5, 0, cl_fine }; +Point(56) = { -0.5, 1.0, 0, cl_fine }; +Point(57) = { -0.5, 1.5, 0, cl_fine }; +Point(58) = { -0.5, 2.0, 0, cl_fine }; +Point(59) = { -0.5, 2.5, 0, cl_fine }; +Point(60) = { 0.0, -2.5, 0, cl_fine }; +Point(61) = { 0.0, -2.0, 0, cl_fine }; +Point(62) = { 0.0, -1.5, 0, cl_fine }; +Point(63) = { 0.0, -1.0, 0, cl_fine }; +Point(64) = { 0.0, -0.5, 0, cl_fine }; +Point(65) = { 0.0, 0.0, 0, cl_fine }; +Point(66) = { 0.0, 0.5, 0, cl_fine }; +Point(67) = { 0.0, 1.0, 0, cl_fine }; +Point(68) = { 0.0, 1.5, 0, cl_fine }; +Point(69) = { 0.0, 2.0, 0, cl_fine }; +Point(70) = { 0.0, 2.5, 0, cl_fine }; +Point(71) = { 0.5, -2.5, 0, cl_fine }; +Point(72) = { 0.5, -2.0, 0, cl_fine }; +Point(73) = { 0.5, -1.5, 0, cl_fine }; +Point(74) = { 0.5, -1.0, 0, cl_fine }; +Point(75) = { 0.5, -0.5, 0, cl_fine }; +Point(76) = { 0.5, 0.0, 0, cl_fine }; +Point(77) = { 0.5, 0.5, 0, cl_fine }; +Point(78) = { 0.5, 1.0, 0, cl_fine }; +Point(79) = { 0.5, 1.5, 0, cl_fine }; +Point(80) = { 0.5, 2.0, 0, cl_fine }; +Point(81) = { 0.5, 2.5, 0, cl_fine }; +Point(82) = { 1.0, -2.5, 0, cl_fine }; +Point(83) = { 1.0, -2.0, 0, cl_fine }; +Point(84) = { 1.0, -1.5, 0, cl_fine }; +Point(85) = { 1.0, -1.0, 0, cl_fine }; +Point(86) = { 1.0, -0.5, 0, cl_fine }; +Point(87) = { 1.0, 0.0, 0, cl_fine }; +Point(88) = { 1.0, 0.5, 0, cl_fine }; +Point(89) = { 1.0, 1.0, 0, cl_fine }; +Point(90) = { 1.0, 1.5, 0, cl_fine }; +Point(91) = { 1.0, 2.0, 0, cl_fine }; +Point(92) = { 1.0, 2.5, 0, cl_fine }; +Point(93) = { 1.5, -2.5, 0, cl_fine }; +Point(94) = { 1.5, -2.0, 0, cl_fine }; +Point(95) = { 1.5, -1.5, 0, cl_fine }; +Point(96) = { 1.5, -1.0, 0, cl_fine }; +Point(97) = { 1.5, -0.5, 0, cl_fine }; +Point(98) = { 1.5, 0.0, 0, cl_fine }; +Point(99) = { 1.5, 0.5, 0, cl_fine }; +Point(100) = { 1.5, 1.0, 0, cl_fine }; +Point(101) = { 1.5, 1.5, 0, cl_fine }; +Point(102) = { 1.5, 2.0, 0, cl_fine }; +Point(103) = { 1.5, 2.5, 0, cl_fine }; +Point(104) = { 2.0, -2.5, 0, cl_fine }; +Point(105) = { 2.0, -2.0, 0, cl_fine }; +Point(106) = { 2.0, -1.5, 0, cl_fine }; +Point(107) = { 2.0, -1.0, 0, cl_fine }; +Point(108) = { 2.0, -0.5, 0, cl_fine }; +Point(109) = { 2.0, 0.0, 0, cl_fine }; +Point(110) = { 2.0, 0.5, 0, cl_fine }; +Point(111) = { 2.0, 1.0, 0, cl_fine }; +Point(112) = { 2.0, 1.5, 0, cl_fine }; +Point(113) = { 2.0, 2.0, 0, cl_fine }; +Point(114) = { 2.0, 2.5, 0, cl_fine }; +Point(115) = { 2.5, -2.5, 0, cl_fine }; +Point(116) = { 2.5, -2.0, 0, cl_fine }; +Point(117) = { 2.5, -1.5, 0, cl_fine }; +Point(118) = { 2.5, -1.0, 0, cl_fine }; +Point(119) = { 2.5, -0.5, 0, cl_fine }; +Point(120) = { 2.5, 0.0, 0, cl_fine }; +Point(121) = { 2.5, 0.5, 0, cl_fine }; +Point(122) = { 2.5, 1.0, 0, cl_fine }; +Point(123) = { 2.5, 1.5, 0, cl_fine }; +Point(124) = { 2.5, 2.0, 0, cl_fine }; +Point(125) = { 2.5, 2.5, 0, cl_fine }; + +// helper boundary points +Point(126) = { -2.5, -3.5, 0, cl_fine }; +Point(127) = { -2.0, -3.5, 0, cl_fine }; +Point(128) = { -1.5, -3.5, 0, cl_fine }; +Point(129) = { -1.0, -3.5, 0, cl_fine }; +Point(130) = { -0.5, -3.5, 0, cl_fine }; +Point(131) = { 0.0, -3.5, 0, cl_fine }; +Point(132) = { 0.5, -3.5, 0, cl_fine }; +Point(133) = { 1.0, -3.5, 0, cl_fine }; +Point(134) = { 1.5, -3.5, 0, cl_fine }; +Point(135) = { 2.0, -3.5, 0, cl_fine }; +Point(136) = { 2.5, -3.5, 0, cl_fine }; +Point(137) = { -2.5, 3.5, 0, cl_fine }; +Point(138) = { -2.0, 3.5, 0, cl_fine }; +Point(139) = { -1.5, 3.5, 0, cl_fine }; +Point(140) = { -1.0, 3.5, 0, cl_fine }; +Point(141) = { -0.5, 3.5, 0, cl_fine }; +Point(142) = { 0.0, 3.5, 0, cl_fine }; +Point(143) = { 0.5, 3.5, 0, cl_fine }; +Point(144) = { 1.0, 3.5, 0, cl_fine }; +Point(145) = { 1.5, 3.5, 0, cl_fine }; +Point(146) = { 2.0, 3.5, 0, cl_fine }; +Point(147) = { 2.5, 3.5, 0, cl_fine }; +Point(148) = { -3.5, -2.5, 0, cl_fine }; +Point(149) = { -3.5, -2.0, 0, cl_fine }; +Point(150) = { -3.5, -1.5, 0, cl_fine }; +Point(151) = { -3.5, -1.0, 0, cl_fine }; +Point(152) = { -3.5, -0.5, 0, cl_fine }; +Point(153) = { -3.5, 0.0, 0, cl_fine }; +Point(154) = { -3.5, 0.5, 0, cl_fine }; +Point(155) = { -3.5, 1.0, 0, cl_fine }; +Point(156) = { -3.5, 1.5, 0, cl_fine }; +Point(157) = { -3.5, 2.0, 0, cl_fine }; +Point(158) = { -3.5, 2.5, 0, cl_fine }; +Point(159) = { 3.5, -2.5, 0, cl_fine }; +Point(160) = { 3.5, -2.0, 0, cl_fine }; +Point(161) = { 3.5, -1.5, 0, cl_fine }; +Point(162) = { 3.5, -1.0, 0, cl_fine }; +Point(163) = { 3.5, -0.5, 0, cl_fine }; +Point(164) = { 3.5, 0.0, 0, cl_fine }; +Point(165) = { 3.5, 0.5, 0, cl_fine }; +Point(166) = { 3.5, 1.0, 0, cl_fine }; +Point(167) = { 3.5, 1.5, 0, cl_fine }; +Point(168) = { 3.5, 2.0, 0, cl_fine }; +Point(169) = { 3.5, 2.5, 0, cl_fine }; + +// Horizontal and vertical lines in inner grid +Line(5) = { 5, 16}; +Line(6) = { 6, 17}; +Line(7) = { 7, 18}; +Line(8) = { 8, 19}; +Line(9) = { 9, 20}; +Line(10) = { 10, 21}; +Line(11) = { 11, 22}; +Line(12) = { 12, 23}; +Line(13) = { 13, 24}; +Line(14) = { 14, 25}; +Line(15) = { 15, 26}; +Line(16) = { 27, 16}; +Line(17) = { 28, 17}; +Line(18) = { 29, 18}; +Line(19) = { 30, 19}; +Line(20) = { 31, 20}; +Line(21) = { 32, 21}; +Line(22) = { 33, 22}; +Line(23) = { 34, 23}; +Line(24) = { 35, 24}; +Line(25) = { 36, 25}; +Line(26) = { 37, 26}; +Line(27) = { 27, 38}; +Line(28) = { 28, 39}; +Line(29) = { 29, 40}; +Line(30) = { 30, 41}; +Line(31) = { 31, 42}; +Line(32) = { 32, 43}; +Line(33) = { 33, 44}; +Line(34) = { 34, 45}; +Line(35) = { 35, 46}; +Line(36) = { 36, 47}; +Line(37) = { 37, 48}; +Line(38) = { 49, 38}; +Line(39) = { 50, 39}; +Line(40) = { 51, 40}; +Line(41) = { 52, 41}; +Line(42) = { 53, 42}; +Line(43) = { 54, 43}; +Line(44) = { 55, 44}; +Line(45) = { 56, 45}; +Line(46) = { 57, 46}; +Line(47) = { 58, 47}; +Line(48) = { 59, 48}; +Line(49) = { 49, 60}; +Line(50) = { 50, 61}; +Line(51) = { 51, 62}; +Line(52) = { 52, 63}; +Line(53) = { 53, 64}; +Line(54) = { 54, 65}; +Line(55) = { 55, 66}; +Line(56) = { 56, 67}; +Line(57) = { 57, 68}; +Line(58) = { 58, 69}; +Line(59) = { 59, 70}; +Line(60) = { 71, 60}; +Line(61) = { 72, 61}; +Line(62) = { 73, 62}; +Line(63) = { 74, 63}; +Line(64) = { 75, 64}; +Line(65) = { 76, 65}; +Line(66) = { 77, 66}; +Line(67) = { 78, 67}; +Line(68) = { 79, 68}; +Line(69) = { 80, 69}; +Line(70) = { 81, 70}; +Line(71) = { 71, 82}; +Line(72) = { 72, 83}; +Line(73) = { 73, 84}; +Line(74) = { 74, 85}; +Line(75) = { 75, 86}; +Line(76) = { 76, 87}; +Line(77) = { 77, 88}; +Line(78) = { 78, 89}; +Line(79) = { 79, 90}; +Line(80) = { 80, 91}; +Line(81) = { 81, 92}; +Line(82) = { 93, 82}; +Line(83) = { 94, 83}; +Line(84) = { 95, 84}; +Line(85) = { 96, 85}; +Line(86) = { 97, 86}; +Line(87) = { 98, 87}; +Line(88) = { 99, 88}; +Line(89) = { 100, 89}; +Line(90) = { 101, 90}; +Line(91) = { 102, 91}; +Line(92) = { 103, 92}; +Line(93) = { 93, 104}; +Line(94) = { 94, 105}; +Line(95) = { 95, 106}; +Line(96) = { 96, 107}; +Line(97) = { 97, 108}; +Line(98) = { 98, 109}; +Line(99) = { 99, 110}; +Line(100) = { 100, 111}; +Line(101) = { 101, 112}; +Line(102) = { 102, 113}; +Line(103) = { 103, 114}; +Line(104) = { 115, 104}; +Line(105) = { 116, 105}; +Line(106) = { 117, 106}; +Line(107) = { 118, 107}; +Line(108) = { 119, 108}; +Line(109) = { 120, 109}; +Line(110) = { 121, 110}; +Line(111) = { 122, 111}; +Line(112) = { 123, 112}; +Line(113) = { 124, 113}; +Line(114) = { 125, 114}; +Line(126) = { 5, 6}; +Line(127) = { 7, 6}; +Line(128) = { 7, 8}; +Line(129) = { 9, 8}; +Line(130) = { 9, 10}; +Line(131) = { 11, 10}; +Line(132) = { 11, 12}; +Line(133) = { 13, 12}; +Line(134) = { 13, 14}; +Line(135) = { 15, 14}; +Line(136) = { 16, 17}; +Line(137) = { 18, 17}; +Line(138) = { 18, 19}; +Line(139) = { 20, 19}; +Line(140) = { 20, 21}; +Line(141) = { 22, 21}; +Line(142) = { 22, 23}; +Line(143) = { 24, 23}; +Line(144) = { 24, 25}; +Line(145) = { 26, 25}; + +Line(146) = { 27, 28}; +Line(147) = { 29, 28}; +Line(148) = { 29, 30}; +Line(149) = { 31, 30}; +Line(150) = { 31, 32}; +Line(151) = { 33, 32}; +Line(152) = { 33, 34}; +Line(153) = { 35, 34}; +Line(154) = { 35, 36}; +Line(155) = { 37, 36}; + +Line(156) = { 38, 39}; +Line(157) = { 40, 39}; +Line(158) = { 40, 41}; +Line(159) = { 42, 41}; +Line(160) = { 42, 43}; +Line(161) = { 44, 43}; +Line(162) = { 44, 45}; +Line(163) = { 46, 45}; +Line(164) = { 46, 47}; +Line(165) = { 48, 47}; + +Line(166) = { 49, 50}; +Line(167) = { 51, 50}; +Line(168) = { 51, 52}; +Line(169) = { 53, 52}; +Line(170) = { 53, 54}; +Line(171) = { 55, 54}; +Line(172) = { 55, 56}; +Line(173) = { 57, 56}; +Line(174) = { 57, 58}; +Line(175) = { 59, 58}; + +Line(176) = { 60, 61}; +Line(177) = { 62, 61}; +Line(178) = { 62, 63}; +Line(179) = { 64, 63}; +Line(180) = { 64, 65}; +Line(181) = { 66, 65}; +Line(182) = { 66, 67}; +Line(183) = { 68, 67}; +Line(184) = { 68, 69}; +Line(185) = { 70, 69}; + +Line(186) = { 71, 72}; +Line(187) = { 73, 72}; +Line(188) = { 73, 74}; +Line(189) = { 75, 74}; +Line(190) = { 75, 76}; +Line(191) = { 77, 76}; +Line(192) = { 77, 78}; +Line(193) = { 79, 78}; +Line(194) = { 79, 80}; +Line(195) = { 81, 80}; + +Line(196) = { 82, 83}; +Line(197) = { 84, 83}; +Line(198) = { 84, 85}; +Line(199) = { 86, 85}; +Line(200) = { 86, 87}; +Line(201) = { 88, 87}; +Line(202) = { 88, 89}; +Line(203) = { 90, 89}; +Line(204) = { 90, 91}; +Line(205) = { 92, 91}; + +Line(206) = { 93, 94}; +Line(207) = { 95, 94}; +Line(208) = { 95, 96}; +Line(209) = { 97, 96}; +Line(210) = { 97, 98}; +Line(211) = { 99, 98}; +Line(212) = { 99, 100}; +Line(213) = { 101, 100}; +Line(214) = { 101, 102}; +Line(215) = { 103, 102}; + + +Line(216) = { 104, 105}; +Line(217) = { 106, 105}; +Line(218) = { 106, 107}; +Line(219) = { 108, 107}; +Line(220) = { 108, 109}; +Line(221) = { 110, 109}; +Line(222) = { 110, 111}; +Line(223) = { 112, 111}; +Line(224) = { 112, 113}; +Line(225) = { 114, 113}; + + +Line(226) = { 115, 116}; +Line(227) = { 117, 116}; +Line(228) = { 117, 118}; +Line(229) = { 119, 118}; +Line(230) = { 119, 120}; +Line(231) = { 121, 120}; +Line(232) = { 121, 122}; +Line(233) = { 123, 122}; +Line(234) = { 123, 124}; +Line(235) = { 125, 124}; + + +// Define inner surfaces +//+ +Curve Loop(1) = { 5, 136, -6, -126}; +Plane Surface(1) ={1}; +Curve Loop(2) = { 6, -137, -7, 127}; +Plane Surface(2) ={2}; +Curve Loop(3) = { 7, 138, -8, -128}; +Plane Surface(3) ={3}; +Curve Loop(4) = { 8, -139, -9, 129}; +Plane Surface(4) ={4}; +Curve Loop(5) = { 9, 140, -10, -130}; +Plane Surface(5) ={5}; +Curve Loop(6) = { 10, -141, -11, 131}; +Plane Surface(6) ={6}; +Curve Loop(7) = { 11, 142, -12, -132}; +Plane Surface(7) ={7}; +Curve Loop(8) = { 12, -143, -13, 133}; +Plane Surface(8) ={8}; +Curve Loop(9) = { 13, 144, -14, -134}; +Plane Surface(9) ={9}; +Curve Loop(10) = { 14, -145, -15, 135}; +Plane Surface(10) ={10}; +Curve Loop(11) = { -16, 146, 17, -136}; +Plane Surface(11) ={11}; +Curve Loop(12) = { -17, -147, 18, 137}; +Plane Surface(12) ={12}; +Curve Loop(13) = { -18, 148, 19, -138}; +Plane Surface(13) ={13}; +Curve Loop(14) = { -19, -149, 20, 139}; +Plane Surface(14) ={14}; +Curve Loop(15) = { -20, 150, 21, -140}; +Plane Surface(15) ={15}; +Curve Loop(16) = { -21, -151, 22, 141}; +Plane Surface(16) ={16}; +Curve Loop(17) = { -22, 152, 23, -142}; +Plane Surface(17) ={17}; +Curve Loop(18) = { -23, -153, 24, 143}; +Plane Surface(18) ={18}; +Curve Loop(19) = {-24, 154, 25, -144}; +Plane Surface(19) ={19}; +Curve Loop(20) = { -25, -155, 26, 145}; +Plane Surface(20) ={20}; +Curve Loop(21) = { 27, 156, -28, -146}; +Plane Surface(21) ={21}; +Curve Loop(22) = { 28, -157, -29, 147}; +Plane Surface(22) ={22}; +Curve Loop(23) = { 29, 158, -30, -148}; +Plane Surface(23) ={23}; +Curve Loop(24) = { 30, -159, -31, 149}; +Plane Surface(24) ={24}; +Curve Loop(25) = { 31, 160, -32, -150}; +Plane Surface(25) ={25}; +Curve Loop(26) = { 32, -161, -33, 151}; +Plane Surface(26) ={26}; +Curve Loop(27) = { 33, 162, -34, -152}; +Plane Surface(27) ={27}; +Curve Loop(28) = { 34, -163, -35, 153}; +Plane Surface(28) ={28}; +Curve Loop(29) = { 35, 164, -36, -154}; +Plane Surface(29) ={29}; +Curve Loop(30) = { 36, -165, -37, 155}; +Plane Surface(30) ={30}; +Curve Loop(31) = { -38, 166, 39, -156}; +Plane Surface(31) ={31}; +Curve Loop(32) = { -39, -167, 40, 157}; +Plane Surface(32) ={32}; +Curve Loop(33) = { -40, 168, 41, -158}; +Plane Surface(33) ={33}; +Curve Loop(34) = { -41, -169, 42, 159}; +Plane Surface(34) ={34}; +Curve Loop(35) = { -42, 170, 43, -160}; +Plane Surface(35) ={35}; +Curve Loop(36) = { -43, -171, 44, 161}; +Plane Surface(36) ={36}; +Curve Loop(37) = { -44, 172, 45, -162}; +Plane Surface(37) ={37}; +Curve Loop(38) = { -45, -173, 46, 163}; +Plane Surface(38) ={38}; +Curve Loop(39) = { -46, 174, 47, -164}; +Plane Surface(39) ={39}; +Curve Loop(40) = { -47, -175, 48, 165}; +Plane Surface(40) ={40}; +Curve Loop(41) = { 49, 176, -50, -166}; +Plane Surface(41) ={41}; +Curve Loop(42) = { 50, -177, -51, 167}; +Plane Surface(42) ={42}; +Curve Loop(43) = { 51, 178, -52, -168}; +Plane Surface(43) ={43}; +Curve Loop(44) = { 52, -179, -53, 169}; +Plane Surface(44) ={44}; +Curve Loop(45) = { 53, 180, -54, -170}; +Plane Surface(45) ={45}; +Curve Loop(46) = { 54, -181, -55, 171}; +Plane Surface(46) ={46}; +Curve Loop(47) = { 55, 182, -56, -172}; +Plane Surface(47) ={47}; +Curve Loop(48) = { 56, -183, -57, 173}; +Plane Surface(48) ={48}; +Curve Loop(49) = { 57, 184, -58, -174}; +Plane Surface(49) ={49}; +Curve Loop(50) = { 58, -185, -59, 175}; +Plane Surface(50) ={50}; +Curve Loop(51) = { -60, 186, 61, -176}; +Plane Surface(51) ={51}; +Curve Loop(52) = { -61, -187, 62, 177}; +Plane Surface(52) ={52}; +Curve Loop(53) = { -62, 188, 63, -178}; +Plane Surface(53) ={53}; +Curve Loop(54) = { -63, -189, 64, 179}; +Plane Surface(54) ={54}; +Curve Loop(55) = { -64, 190, 65, -180}; +Plane Surface(55) ={55}; +Curve Loop(56) = { -65, -191, 66, 181}; +Plane Surface(56) ={56}; +Curve Loop(57) = { -66, 192, 67, -182}; +Plane Surface(57) ={57}; +Curve Loop(58) = { -67, -193, 68, 183}; +Plane Surface(58) ={58}; +Curve Loop(59) = { -68, 194, 69, -184}; +Plane Surface(59) ={59}; +Curve Loop(60) = { -69, -195, 70, 185}; +Plane Surface(60) ={60}; +Curve Loop(61) = { 71, 196, -72, -186}; +Plane Surface(61) ={61}; +Curve Loop(62) = { 72, -197, -73, 187}; +Plane Surface(62) ={62}; +Curve Loop(63) = { 73, 198, -74, -188}; +Plane Surface(63) ={63}; +Curve Loop(64) = { 74, -199, -75, 189}; +Plane Surface(64) ={64}; +Curve Loop(65) = { 75, 200, -76, -190}; +Plane Surface(65) ={65}; +Curve Loop(66) = { 76, -201, -77, 191}; +Plane Surface(66) ={66}; +Curve Loop(67) = { 77, 202, -78, -192}; +Plane Surface(67) ={67}; +Curve Loop(68) = { 78, -203, -79, 193}; +Plane Surface(68) ={68}; +Curve Loop(69) = { 79, 204, -80, -194}; +Plane Surface(69) ={69}; +Curve Loop(70) = { 80, -205, -81, 195}; +Plane Surface(70) ={70}; +Curve Loop(71) = { -82, 206, 83, -196}; +Plane Surface(71) ={71}; +Curve Loop(72) = { -83, -207, 84, 197}; +Plane Surface(72) ={72}; +Curve Loop(73) = { -84, 208, 85, -198}; +Plane Surface(73) ={73}; +Curve Loop(74) = { -85, -209, 86, 199}; +Plane Surface(74) ={74}; +Curve Loop(75) = { -86, 210, 87, -200}; +Plane Surface(75) ={75}; +Curve Loop(76) = { -87, -211, 88, 201}; +Plane Surface(76) ={76}; +Curve Loop(77) = { -88, 212, 89, -202}; +Plane Surface(77) ={77}; +Curve Loop(78) = { -89, -213, 90, 203}; +Plane Surface(78) ={78}; +Curve Loop(79) = { -90, 214, 91, -204}; +Plane Surface(79) ={79}; +Curve Loop(80) = { -91, -215, 92, 205}; +Plane Surface(80) ={80}; +Curve Loop(81) = { 93, 216, -94, -206}; +Plane Surface(81) ={81}; +Curve Loop(82) = { 94, -217, -95, 207}; +Plane Surface(82) ={82}; +Curve Loop(83) = { 95, 218, -96, -208}; +Plane Surface(83) ={83}; +Curve Loop(84) = { 96, -219, -97, 209}; +Plane Surface(84) ={84}; +Curve Loop(85) = { 97, 220, -98, -210}; +Plane Surface(85) ={85}; +Curve Loop(86) = { 98, -221, -99, 211}; +Plane Surface(86) ={86}; +Curve Loop(87) = { 99, 222, -100, -212}; +Plane Surface(87) ={87}; +Curve Loop(88) = { 100, -223, -101, 213}; +Plane Surface(88) ={88}; +Curve Loop(89) = { 101, 224, -102, -214}; +Plane Surface(89) ={89}; +Curve Loop(90) = { 102, -225, -103, 215}; +Plane Surface(90) ={90}; +Curve Loop(91) = { -104, 226, 105, -216}; +Plane Surface(91) ={91}; +Curve Loop(92) = { -105, -227, 106, 217}; +Plane Surface(92) ={92}; +Curve Loop(93) = { -106, 228, 107, -218}; +Plane Surface(93) ={93}; +Curve Loop(94) = { -107, -229, 108, 219}; +Plane Surface(94) ={94}; +Curve Loop(95) = { -108, 230, 109, -220}; +Plane Surface(95) ={95}; +Curve Loop(96) = { -109, -231, 110, 221}; +Plane Surface(96) ={96}; +Curve Loop(97) = { -110, 232, 111, -222}; +Plane Surface(97) ={97}; +Curve Loop(98) = { -111, -233, 112, 223}; +Plane Surface(98) ={98}; +Curve Loop(99) = { -112, 234, 113, -224}; +Plane Surface(99) ={99}; +Curve Loop(100) = { -113, -235, 114, 225}; +Plane Surface(100) ={100}; + + +// "Outside area" +//Curve Loop(101) = {1, 2, 3, 4}; +//+ +//Curve Loop(102) = {5, -16, 27, -38, 49, -60, 71, -82, 93, -104, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 114, -103, 92, -81, 70, -59, 48, -37, 26, -15, -135, -134, -133, -132, -131, -130, -129, -128, -127, -126}; +//+ +//Plane Surface(101) = {101, 102}; + +//+ +Transfinite Surface {1}; +Transfinite Surface {2}; +Transfinite Surface {3}; +Transfinite Surface {4}; +Transfinite Surface {5}; +Transfinite Surface {6}; +Transfinite Surface {7}; +Transfinite Surface {8}; +Transfinite Surface {9}; +Transfinite Surface {10}; +Transfinite Surface {11}; +Transfinite Surface {12}; +Transfinite Surface {13}; +Transfinite Surface {14}; +Transfinite Surface {15}; +Transfinite Surface {16}; +Transfinite Surface {17}; +Transfinite Surface {18}; +Transfinite Surface {19}; +Transfinite Surface {20}; +Transfinite Surface {21}; +Transfinite Surface {22}; +Transfinite Surface {23}; +Transfinite Surface {24}; +Transfinite Surface {25}; +Transfinite Surface {26}; +Transfinite Surface {27}; +Transfinite Surface {28}; +Transfinite Surface {29}; +Transfinite Surface {30}; +Transfinite Surface {31}; +Transfinite Surface {32}; +Transfinite Surface {33}; +Transfinite Surface {34}; +Transfinite Surface {35}; +Transfinite Surface {36}; +Transfinite Surface {37}; +Transfinite Surface {38}; +Transfinite Surface {39}; +Transfinite Surface {40}; +Transfinite Surface {41}; +Transfinite Surface {42}; +Transfinite Surface {43}; +Transfinite Surface {44}; +Transfinite Surface {45}; +Transfinite Surface {46}; +Transfinite Surface {47}; +Transfinite Surface {48}; +Transfinite Surface {49}; +Transfinite Surface {50}; +Transfinite Surface {51}; +Transfinite Surface {52}; +Transfinite Surface {53}; +Transfinite Surface {54}; +Transfinite Surface {55}; +Transfinite Surface {56}; +Transfinite Surface {57}; +Transfinite Surface {58}; +Transfinite Surface {59}; +Transfinite Surface {60}; +Transfinite Surface {61}; +Transfinite Surface {62}; +Transfinite Surface {63}; +Transfinite Surface {64}; +Transfinite Surface {65}; +Transfinite Surface {66}; +Transfinite Surface {67}; +Transfinite Surface {68}; +Transfinite Surface {69}; +Transfinite Surface {70}; +Transfinite Surface {71}; +Transfinite Surface {72}; +Transfinite Surface {73}; +Transfinite Surface {74}; +Transfinite Surface {75}; +Transfinite Surface {76}; +Transfinite Surface {77}; +Transfinite Surface {78}; +Transfinite Surface {79}; +Transfinite Surface {80}; +Transfinite Surface {81}; +Transfinite Surface {82}; +Transfinite Surface {83}; +Transfinite Surface {84}; +Transfinite Surface {85}; +Transfinite Surface {86}; +Transfinite Surface {87}; +Transfinite Surface {88}; +Transfinite Surface {89}; +Transfinite Surface {90}; +Transfinite Surface {91}; +Transfinite Surface {92}; +Transfinite Surface {93}; +Transfinite Surface {94}; +Transfinite Surface {95}; +Transfinite Surface {96}; +Transfinite Surface {97}; +Transfinite Surface {98}; +Transfinite Surface {99}; +Transfinite Surface {100}; +//+ +Transfinite Curve {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103} = n_recombine Using Progression n_prog; +// add outer perimeter with half as many cells and no Progression +Transfinite Curve {104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15} = n_recombine / 4 Using Progression 1; +//+ +Transfinite Curve { 127, 137, 147, 157, 167, 177, 187, 197, 207, 217, 227, 128, 138, 148, 158, 168, 178, 188, 198, 208, 218, 228, 129, 139, 149, 159, 169, 179, 189, 199, 209, 219, 229, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 231, 132, 142, 152, 162, 172, 182, 192, 202, 212, 222, 232, 133, 143, 153, 163, 173, 183, 193, 203, 213, 223, 233, 134, 144, 154, 164, 174, 184, 194, 204, 214, 224, 234} = n_recombine Using Progression n_prog; +// add outer perimeter with half as many cells and no Progression +Transfinite Curve {126, 136, 146, 156, 166, 176, 186, 196, 206, 216, 226, 135, 145, 155, 165, 175, 185, 195, 205, 215, 225, 235} = n_recombine / 4 Using Progression 1; +//+ +Line(236) = {1, 126}; +//+ +Line(237) = {126, 127}; +//+ +Line(238) = {127, 128}; +//+ +Line(239) = {128, 129}; +//+ +Line(240) = {129, 130}; +//+ +Line(241) = {130, 131}; +//+ +Line(242) = {131, 132}; +//+ +Line(243) = {132, 133}; +//+ +Line(244) = {133, 134}; +//+ +Line(245) = {134, 135}; +//+ +Line(246) = {135, 136}; +//+ +Line(247) = {136, 2}; +//+ +Line(248) = {2, 159}; +//+ +Line(249) = {159, 160}; +//+ +Line(250) = {160, 161}; +//+ +Line(251) = {161, 162}; +//+ +Line(252) = {162, 163}; +//+ +Line(253) = {163, 164}; +//+ +Line(254) = {164, 165}; +//+ +Line(255) = {165, 166}; +//+ +Line(256) = {166, 167}; +//+ +Line(257) = {167, 168}; +//+ +Line(258) = {168, 169}; +//+ +Line(259) = {169, 4}; +//+ +Line(260) = {4, 147}; +//+ +Line(261) = {147, 146}; +//+ +Line(262) = {146, 145}; +//+ +Line(263) = {145, 144}; +//+ +Line(264) = {144, 143}; +//+ +Line(265) = {143, 142}; +//+ +Line(266) = {142, 141}; +//+ +Line(267) = {141, 140}; +//+ +Line(268) = {140, 139}; +//+ +Line(269) = {139, 138}; +//+ +Line(270) = {138, 137}; +//+ +Line(271) = {137, 3}; +//+ +Line(272) = {3, 158}; +//+ +Line(273) = {158, 157}; +//+ +Line(274) = {157, 156}; +//+ +Line(275) = {156, 155}; +//+ +Line(276) = {155, 154}; +//+ +Line(277) = {154, 153}; +//+ +Line(278) = {153, 152}; +//+ +Line(279) = {152, 151}; +//+ +Line(280) = {151, 150}; +//+ +Line(281) = {150, 149}; +//+ +Line(282) = {149, 148}; +//+ +Line(283) = {148, 1}; +//+ +Line(284) = {126, 5}; +//+ +Line(285) = {127, 16}; +//+ +Line(286) = {128, 27}; +//+ +Line(287) = {129, 38}; +//+ +Line(288) = {130, 49}; +//+ +Line(289) = {131, 60}; +//+ +Line(290) = {132, 71}; +//+ +Line(291) = {133, 82}; +//+ +Line(292) = {134, 93}; +//+ +Line(293) = {135, 104}; +//+ +Line(294) = {136, 115}; +//+ +Line(295) = {159, 115}; +//+ +Line(296) = {160, 116}; +//+ +Line(297) = {161, 117}; +//+ +Line(298) = {162, 118}; +//+ +Line(299) = {163, 119}; +//+ +Line(300) = {164, 120}; +//+ +Line(301) = {165, 121}; +//+ +Line(302) = {166, 122}; +//+ +Line(303) = {167, 123}; +//+ +Line(304) = {168, 124}; +//+ +Line(305) = {169, 125}; +//+ +Line(306) = {147, 125}; +//+ +Line(307) = {146, 114}; +//+ +Line(308) = {145, 103}; +//+ +Line(309) = {144, 92}; +//+ +Line(310) = {143, 81}; +//+ +Line(311) = {142, 70}; +//+ +Line(312) = {141, 59}; +//+ +Line(313) = {140, 48}; +//+ +Line(314) = {139, 37}; +//+ +Line(315) = {138, 26}; +//+ +Line(316) = {137, 15}; +//+ +Line(317) = {158, 15}; +//+ +Line(318) = {157, 14}; +//+ +Line(319) = {156, 13}; +//+ +Line(320) = {155, 12}; +//+ +Line(321) = {154, 11}; +//+ +Line(322) = {153, 10}; +//+ +Line(323) = {152, 9}; +//+ +Line(324) = {151, 8}; +//+ +Line(325) = {150, 7}; +//+ +Line(326) = {149, 6}; +//+ +Line(327) = {148, 5}; +//+ +Curve Loop(103) = {236, 284, -327, 283}; +//+ +Plane Surface(102) = {103}; +//+ +Curve Loop(104) = {237, 285, -5, -284}; +//+ +Plane Surface(103) = {104}; +//+ +Curve Loop(105) = {238, 286, 16, -285}; +//+ +Plane Surface(104) = {105}; +//+ +Curve Loop(106) = {239, 287, -27, -286}; +//+ +Plane Surface(105) = {106}; +//+ +Curve Loop(107) = {240, 288, 38, -287}; +//+ +Plane Surface(106) = {107}; +//+ +Curve Loop(108) = {241, 289, -49, -288}; +//+ +Plane Surface(107) = {108}; +//+ +Curve Loop(109) = {242, 290, 60, -289}; +//+ +Plane Surface(108) = {109}; +//+ +Curve Loop(110) = {243, 291, -71, -290}; +//+ +Plane Surface(109) = {110}; +//+ +Curve Loop(111) = {244, 292, 82, -291}; +//+ +Plane Surface(110) = {111}; +//+ +Curve Loop(112) = {245, 293, -93, -292}; +//+ +Plane Surface(111) = {112}; +//+ +Curve Loop(113) = {246, 294, 104, -293}; +//+ +Plane Surface(112) = {113}; +//+ +Curve Loop(114) = {247, 248, 295, -294}; +//+ +Plane Surface(113) = {114}; +//+ +Curve Loop(115) = {249, 296, -226, -295}; +//+ +Plane Surface(114) = {115}; +//+ +Curve Loop(116) = {250, 297, 227, -296}; +//+ +Plane Surface(115) = {116}; +//+ +Curve Loop(117) = {251, 298, -228, -297}; +//+ +Plane Surface(116) = {117}; +//+ +Curve Loop(118) = {252, 299, 229, -298}; +//+ +Plane Surface(117) = {118}; +//+ +Curve Loop(119) = {253, 300, -230, -299}; +//+ +Plane Surface(118) = {119}; +//+ +Curve Loop(120) = {254, 301, 231, -300}; +//+ +Plane Surface(119) = {120}; +//+ +Curve Loop(121) = {255, 302, -232, -301}; +//+ +Plane Surface(120) = {121}; +//+ +Curve Loop(122) = {256, 303, 233, -302}; +//+ +Plane Surface(121) = {122}; +//+ +Curve Loop(123) = {257, 304, -234, -303}; +//+ +Plane Surface(122) = {123}; +//+ +Curve Loop(124) = {258, 305, 235, -304}; +//+ +Plane Surface(123) = {124}; +//+ +Curve Loop(125) = {259, 260, 306, -305}; +//+ +Plane Surface(124) = {125}; +//+ +Curve Loop(126) = {261, 307, -114, -306}; +//+ +Plane Surface(125) = {126}; +//+ +Curve Loop(127) = {262, 308, 103, -307}; +//+ +Plane Surface(126) = {127}; +//+ +Curve Loop(128) = {263, 309, -92, -308}; +//+ +Plane Surface(127) = {128}; +//+ +Curve Loop(129) = {264, 310, 81, -309}; +//+ +Plane Surface(128) = {129}; +//+ +Curve Loop(130) = {265, 311, -70, -310}; +//+ +Plane Surface(129) = {130}; +//+ +Curve Loop(131) = {266, 312, 59, -311}; +//+ +Plane Surface(130) = {131}; +//+ +Curve Loop(132) = {267, 313, -48, -312}; +//+ +Plane Surface(131) = {132}; +//+ +Curve Loop(133) = {268, 314, 37, -313}; +//+ +Plane Surface(132) = {133}; +//+ +Curve Loop(134) = {269, 315, -26, -314}; +//+ +Plane Surface(133) = {134}; +//+ +Curve Loop(135) = {270, 316, 15, -315}; +//+ +Plane Surface(134) = {135}; +//+ +Curve Loop(136) = {271, 272, 317, -316}; +//+ +Plane Surface(135) = {136}; +//+ +Curve Loop(137) = {273, 318, -135, -317}; +//+ +Plane Surface(136) = {137}; +//+ +Curve Loop(138) = {274, 319, 134, -318}; +//+ +Plane Surface(137) = {138}; +//+ +Curve Loop(139) = {275, 320, -133, -319}; +//+ +Plane Surface(138) = {139}; +//+ +Curve Loop(140) = {276, 321, 132, -320}; +//+ +Plane Surface(139) = {140}; +//+ +Curve Loop(141) = {277, 322, -131, -321}; +//+ +Plane Surface(140) = {141}; +//+ +Curve Loop(142) = {278, 323, 130, -322}; +//+ +Plane Surface(141) = {142}; +//+ +Curve Loop(143) = {279, 324, -129, -323}; +//+ +Plane Surface(142) = {143}; +//+ +Curve Loop(144) = {280, 325, 128, -324}; +//+ +Plane Surface(143) = {144}; +//+ +Curve Loop(145) = {281, 326, -127, -325}; +//+ +Plane Surface(144) = {145}; +//+ +Curve Loop(146) = {282, 327, 126, -326}; +//+ +Plane Surface(145) = {146}; +//+ +//+ +Transfinite Surface {102}; +//+ +Transfinite Surface {103}; +//+ +Transfinite Surface {104}; +//+ +Transfinite Surface {105}; +//+ +Transfinite Surface {106}; +//+ +Transfinite Surface {107}; +//+ +Transfinite Surface {108}; +//+ +Transfinite Surface {109}; +//+ +Transfinite Surface {110}; +//+ +Transfinite Surface {111}; +//+ +Transfinite Surface {112}; +//+ +Transfinite Surface {113}; +//+ +Transfinite Surface {114}; +//+ +Transfinite Surface {115}; +//+ +Transfinite Surface {116}; +//+ +Transfinite Surface {117}; +//+ +Transfinite Surface {118}; +//+ +Transfinite Surface {119}; +//+ +Transfinite Surface {120}; +//+ +Transfinite Surface {121}; +//+ +Transfinite Surface {122}; +//+ +Transfinite Surface {123}; +//+ +Transfinite Surface {124}; +//+ +Transfinite Surface {125}; +//+ +Transfinite Surface {126}; +//+ +Transfinite Surface {127}; +//+ +Transfinite Surface {128}; +//+ +Transfinite Surface {129}; +//+ +Transfinite Surface {130}; +//+ +Transfinite Surface {131}; +//+ +Transfinite Surface {132}; +//+ +Transfinite Surface {133}; +//+ +Transfinite Surface {134}; +//+ +Transfinite Surface {135}; +//+ +Transfinite Surface {136}; +//+ +Transfinite Surface {137}; +//+ +Transfinite Surface {138}; +//+ +Transfinite Surface {139}; +//+ +Transfinite Surface {140}; +//+ +Transfinite Surface {141}; +//+ +Transfinite Surface {142}; +//+ +Transfinite Surface {143}; +//+ +Transfinite Surface {144}; +//+ +Transfinite Surface {145}; +//+ +Transfinite Curve { 238, 239, 240, 241, 242, 243, 244, 245, 250, 251, 252, 253, 254, 255, 256, 257, 262, 263, 264, 265, 266, 267, 268, 269, 274, 275, 276, 277, 278, 279, 280, 281} = n_recombine Using Progression 1; +Transfinite Curve {237,246,249, 258,261,270,273,282} = n_recombine / 4 Using Progression 1; + + +Physical Curve("void",328) = {236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283}; + +Recombine Surface "*"; +// Define meshing options +//Mesh.Algorithm = 6; // Specify meshing algorithm (e.g., Delaunay) +//Mesh.ElementOrder = 1; // Specify element order +// Generate the mesh +//Mesh 2; \ No newline at end of file diff --git a/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo b/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo new file mode 100644 index 00000000..ccc4e41f --- /dev/null +++ b/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo @@ -0,0 +1,1193 @@ +cl_fine = 0.1; +n_recombine = 40; +n_prog = 1.1; +Point(1) = {-3.5, -3.5, 0, cl_fine}; +Point(2) = {3.5, -3.5, 0, cl_fine}; +Point(3) = {-3.5, 3.5, 0, cl_fine}; +Point(4) = {3.5, 3.5, 0, cl_fine}; + +// Inner grid +Point(5) = { -2.5, -2.5, 0, cl_fine }; +Point(6) = { -2.5, -2.0, 0, cl_fine }; +Point(7) = { -2.5, -1.5, 0, cl_fine }; +Point(8) = { -2.5, -1.0, 0, cl_fine }; +Point(9) = { -2.5, -0.5, 0, cl_fine }; +Point(10) = { -2.5, 0.0, 0, cl_fine }; +Point(11) = { -2.5, 0.5, 0, cl_fine }; +Point(12) = { -2.5, 1.0, 0, cl_fine }; +Point(13) = { -2.5, 1.5, 0, cl_fine }; +Point(14) = { -2.5, 2.0, 0, cl_fine }; +Point(15) = { -2.5, 2.5, 0, cl_fine }; +Point(16) = { -2.0, -2.5, 0, cl_fine }; +Point(17) = { -2.0, -2.0, 0, cl_fine }; +Point(18) = { -2.0, -1.5, 0, cl_fine }; +Point(19) = { -2.0, -1.0, 0, cl_fine }; +Point(20) = { -2.0, -0.5, 0, cl_fine }; +Point(21) = { -2.0, 0.0, 0, cl_fine }; +Point(22) = { -2.0, 0.5, 0, cl_fine }; +Point(23) = { -2.0, 1.0, 0, cl_fine }; +Point(24) = { -2.0, 1.5, 0, cl_fine }; +Point(25) = { -2.0, 2.0, 0, cl_fine }; +Point(26) = { -2.0, 2.5, 0, cl_fine }; +Point(27) = { -1.5, -2.5, 0, cl_fine }; +Point(28) = { -1.5, -2.0, 0, cl_fine }; +Point(29) = { -1.5, -1.5, 0, cl_fine }; +Point(30) = { -1.5, -1.0, 0, cl_fine }; +Point(31) = { -1.5, -0.5, 0, cl_fine }; +Point(32) = { -1.5, 0.0, 0, cl_fine }; +Point(33) = { -1.5, 0.5, 0, cl_fine }; +Point(34) = { -1.5, 1.0, 0, cl_fine }; +Point(35) = { -1.5, 1.5, 0, cl_fine }; +Point(36) = { -1.5, 2.0, 0, cl_fine }; +Point(37) = { -1.5, 2.5, 0, cl_fine }; +Point(38) = { -1.0, -2.5, 0, cl_fine }; +Point(39) = { -1.0, -2.0, 0, cl_fine }; +Point(40) = { -1.0, -1.5, 0, cl_fine }; +Point(41) = { -1.0, -1.0, 0, cl_fine }; +Point(42) = { -1.0, -0.5, 0, cl_fine }; +Point(43) = { -1.0, 0.0, 0, cl_fine }; +Point(44) = { -1.0, 0.5, 0, cl_fine }; +Point(45) = { -1.0, 1.0, 0, cl_fine }; +Point(46) = { -1.0, 1.5, 0, cl_fine }; +Point(47) = { -1.0, 2.0, 0, cl_fine }; +Point(48) = { -1.0, 2.5, 0, cl_fine }; +Point(49) = { -0.5, -2.5, 0, cl_fine }; +Point(50) = { -0.5, -2.0, 0, cl_fine }; +Point(51) = { -0.5, -1.5, 0, cl_fine }; +Point(52) = { -0.5, -1.0, 0, cl_fine }; +Point(53) = { -0.5, -0.5, 0, cl_fine }; +Point(54) = { -0.5, 0.0, 0, cl_fine }; +Point(55) = { -0.5, 0.5, 0, cl_fine }; +Point(56) = { -0.5, 1.0, 0, cl_fine }; +Point(57) = { -0.5, 1.5, 0, cl_fine }; +Point(58) = { -0.5, 2.0, 0, cl_fine }; +Point(59) = { -0.5, 2.5, 0, cl_fine }; +Point(60) = { 0.0, -2.5, 0, cl_fine }; +Point(61) = { 0.0, -2.0, 0, cl_fine }; +Point(62) = { 0.0, -1.5, 0, cl_fine }; +Point(63) = { 0.0, -1.0, 0, cl_fine }; +Point(64) = { 0.0, -0.5, 0, cl_fine }; +Point(65) = { 0.0, 0.0, 0, cl_fine }; +Point(66) = { 0.0, 0.5, 0, cl_fine }; +Point(67) = { 0.0, 1.0, 0, cl_fine }; +Point(68) = { 0.0, 1.5, 0, cl_fine }; +Point(69) = { 0.0, 2.0, 0, cl_fine }; +Point(70) = { 0.0, 2.5, 0, cl_fine }; +Point(71) = { 0.5, -2.5, 0, cl_fine }; +Point(72) = { 0.5, -2.0, 0, cl_fine }; +Point(73) = { 0.5, -1.5, 0, cl_fine }; +Point(74) = { 0.5, -1.0, 0, cl_fine }; +Point(75) = { 0.5, -0.5, 0, cl_fine }; +Point(76) = { 0.5, 0.0, 0, cl_fine }; +Point(77) = { 0.5, 0.5, 0, cl_fine }; +Point(78) = { 0.5, 1.0, 0, cl_fine }; +Point(79) = { 0.5, 1.5, 0, cl_fine }; +Point(80) = { 0.5, 2.0, 0, cl_fine }; +Point(81) = { 0.5, 2.5, 0, cl_fine }; +Point(82) = { 1.0, -2.5, 0, cl_fine }; +Point(83) = { 1.0, -2.0, 0, cl_fine }; +Point(84) = { 1.0, -1.5, 0, cl_fine }; +Point(85) = { 1.0, -1.0, 0, cl_fine }; +Point(86) = { 1.0, -0.5, 0, cl_fine }; +Point(87) = { 1.0, 0.0, 0, cl_fine }; +Point(88) = { 1.0, 0.5, 0, cl_fine }; +Point(89) = { 1.0, 1.0, 0, cl_fine }; +Point(90) = { 1.0, 1.5, 0, cl_fine }; +Point(91) = { 1.0, 2.0, 0, cl_fine }; +Point(92) = { 1.0, 2.5, 0, cl_fine }; +Point(93) = { 1.5, -2.5, 0, cl_fine }; +Point(94) = { 1.5, -2.0, 0, cl_fine }; +Point(95) = { 1.5, -1.5, 0, cl_fine }; +Point(96) = { 1.5, -1.0, 0, cl_fine }; +Point(97) = { 1.5, -0.5, 0, cl_fine }; +Point(98) = { 1.5, 0.0, 0, cl_fine }; +Point(99) = { 1.5, 0.5, 0, cl_fine }; +Point(100) = { 1.5, 1.0, 0, cl_fine }; +Point(101) = { 1.5, 1.5, 0, cl_fine }; +Point(102) = { 1.5, 2.0, 0, cl_fine }; +Point(103) = { 1.5, 2.5, 0, cl_fine }; +Point(104) = { 2.0, -2.5, 0, cl_fine }; +Point(105) = { 2.0, -2.0, 0, cl_fine }; +Point(106) = { 2.0, -1.5, 0, cl_fine }; +Point(107) = { 2.0, -1.0, 0, cl_fine }; +Point(108) = { 2.0, -0.5, 0, cl_fine }; +Point(109) = { 2.0, 0.0, 0, cl_fine }; +Point(110) = { 2.0, 0.5, 0, cl_fine }; +Point(111) = { 2.0, 1.0, 0, cl_fine }; +Point(112) = { 2.0, 1.5, 0, cl_fine }; +Point(113) = { 2.0, 2.0, 0, cl_fine }; +Point(114) = { 2.0, 2.5, 0, cl_fine }; +Point(115) = { 2.5, -2.5, 0, cl_fine }; +Point(116) = { 2.5, -2.0, 0, cl_fine }; +Point(117) = { 2.5, -1.5, 0, cl_fine }; +Point(118) = { 2.5, -1.0, 0, cl_fine }; +Point(119) = { 2.5, -0.5, 0, cl_fine }; +Point(120) = { 2.5, 0.0, 0, cl_fine }; +Point(121) = { 2.5, 0.5, 0, cl_fine }; +Point(122) = { 2.5, 1.0, 0, cl_fine }; +Point(123) = { 2.5, 1.5, 0, cl_fine }; +Point(124) = { 2.5, 2.0, 0, cl_fine }; +Point(125) = { 2.5, 2.5, 0, cl_fine }; + +// helper boundary points +Point(126) = { -2.5, -3.5, 0, cl_fine }; +Point(127) = { -2.0, -3.5, 0, cl_fine }; +Point(128) = { -1.5, -3.5, 0, cl_fine }; +Point(129) = { -1.0, -3.5, 0, cl_fine }; +Point(130) = { -0.5, -3.5, 0, cl_fine }; +Point(131) = { 0.0, -3.5, 0, cl_fine }; +Point(132) = { 0.5, -3.5, 0, cl_fine }; +Point(133) = { 1.0, -3.5, 0, cl_fine }; +Point(134) = { 1.5, -3.5, 0, cl_fine }; +Point(135) = { 2.0, -3.5, 0, cl_fine }; +Point(136) = { 2.5, -3.5, 0, cl_fine }; +Point(137) = { -2.5, 3.5, 0, cl_fine }; +Point(138) = { -2.0, 3.5, 0, cl_fine }; +Point(139) = { -1.5, 3.5, 0, cl_fine }; +Point(140) = { -1.0, 3.5, 0, cl_fine }; +Point(141) = { -0.5, 3.5, 0, cl_fine }; +Point(142) = { 0.0, 3.5, 0, cl_fine }; +Point(143) = { 0.5, 3.5, 0, cl_fine }; +Point(144) = { 1.0, 3.5, 0, cl_fine }; +Point(145) = { 1.5, 3.5, 0, cl_fine }; +Point(146) = { 2.0, 3.5, 0, cl_fine }; +Point(147) = { 2.5, 3.5, 0, cl_fine }; +Point(148) = { -3.5, -2.5, 0, cl_fine }; +Point(149) = { -3.5, -2.0, 0, cl_fine }; +Point(150) = { -3.5, -1.5, 0, cl_fine }; +Point(151) = { -3.5, -1.0, 0, cl_fine }; +Point(152) = { -3.5, -0.5, 0, cl_fine }; +Point(153) = { -3.5, 0.0, 0, cl_fine }; +Point(154) = { -3.5, 0.5, 0, cl_fine }; +Point(155) = { -3.5, 1.0, 0, cl_fine }; +Point(156) = { -3.5, 1.5, 0, cl_fine }; +Point(157) = { -3.5, 2.0, 0, cl_fine }; +Point(158) = { -3.5, 2.5, 0, cl_fine }; +Point(159) = { 3.5, -2.5, 0, cl_fine }; +Point(160) = { 3.5, -2.0, 0, cl_fine }; +Point(161) = { 3.5, -1.5, 0, cl_fine }; +Point(162) = { 3.5, -1.0, 0, cl_fine }; +Point(163) = { 3.5, -0.5, 0, cl_fine }; +Point(164) = { 3.5, 0.0, 0, cl_fine }; +Point(165) = { 3.5, 0.5, 0, cl_fine }; +Point(166) = { 3.5, 1.0, 0, cl_fine }; +Point(167) = { 3.5, 1.5, 0, cl_fine }; +Point(168) = { 3.5, 2.0, 0, cl_fine }; +Point(169) = { 3.5, 2.5, 0, cl_fine }; + +// Horizontal and vertical lines in inner grid +Line(5) = { 5, 16}; +Line(6) = { 6, 17}; +Line(7) = { 7, 18}; +Line(8) = { 8, 19}; +Line(9) = { 9, 20}; +Line(10) = { 10, 21}; +Line(11) = { 11, 22}; +Line(12) = { 12, 23}; +Line(13) = { 13, 24}; +Line(14) = { 14, 25}; +Line(15) = { 15, 26}; +Line(16) = { 27, 16}; +Line(17) = { 28, 17}; +Line(18) = { 29, 18}; +Line(19) = { 30, 19}; +Line(20) = { 31, 20}; +Line(21) = { 32, 21}; +Line(22) = { 33, 22}; +Line(23) = { 34, 23}; +Line(24) = { 35, 24}; +Line(25) = { 36, 25}; +Line(26) = { 37, 26}; +Line(27) = { 27, 38}; +Line(28) = { 28, 39}; +Line(29) = { 29, 40}; +Line(30) = { 30, 41}; +Line(31) = { 31, 42}; +Line(32) = { 32, 43}; +Line(33) = { 33, 44}; +Line(34) = { 34, 45}; +Line(35) = { 35, 46}; +Line(36) = { 36, 47}; +Line(37) = { 37, 48}; +Line(38) = { 49, 38}; +Line(39) = { 50, 39}; +Line(40) = { 51, 40}; +Line(41) = { 52, 41}; +Line(42) = { 53, 42}; +Line(43) = { 54, 43}; +Line(44) = { 55, 44}; +Line(45) = { 56, 45}; +Line(46) = { 57, 46}; +Line(47) = { 58, 47}; +Line(48) = { 59, 48}; +Line(49) = { 49, 60}; +Line(50) = { 50, 61}; +Line(51) = { 51, 62}; +Line(52) = { 52, 63}; +Line(53) = { 53, 64}; +Line(54) = { 54, 65}; +Line(55) = { 55, 66}; +Line(56) = { 56, 67}; +Line(57) = { 57, 68}; +Line(58) = { 58, 69}; +Line(59) = { 59, 70}; +Line(60) = { 71, 60}; +Line(61) = { 72, 61}; +Line(62) = { 73, 62}; +Line(63) = { 74, 63}; +Line(64) = { 75, 64}; +Line(65) = { 76, 65}; +Line(66) = { 77, 66}; +Line(67) = { 78, 67}; +Line(68) = { 79, 68}; +Line(69) = { 80, 69}; +Line(70) = { 81, 70}; +Line(71) = { 71, 82}; +Line(72) = { 72, 83}; +Line(73) = { 73, 84}; +Line(74) = { 74, 85}; +Line(75) = { 75, 86}; +Line(76) = { 76, 87}; +Line(77) = { 77, 88}; +Line(78) = { 78, 89}; +Line(79) = { 79, 90}; +Line(80) = { 80, 91}; +Line(81) = { 81, 92}; +Line(82) = { 93, 82}; +Line(83) = { 94, 83}; +Line(84) = { 95, 84}; +Line(85) = { 96, 85}; +Line(86) = { 97, 86}; +Line(87) = { 98, 87}; +Line(88) = { 99, 88}; +Line(89) = { 100, 89}; +Line(90) = { 101, 90}; +Line(91) = { 102, 91}; +Line(92) = { 103, 92}; +Line(93) = { 93, 104}; +Line(94) = { 94, 105}; +Line(95) = { 95, 106}; +Line(96) = { 96, 107}; +Line(97) = { 97, 108}; +Line(98) = { 98, 109}; +Line(99) = { 99, 110}; +Line(100) = { 100, 111}; +Line(101) = { 101, 112}; +Line(102) = { 102, 113}; +Line(103) = { 103, 114}; +Line(104) = { 115, 104}; +Line(105) = { 116, 105}; +Line(106) = { 117, 106}; +Line(107) = { 118, 107}; +Line(108) = { 119, 108}; +Line(109) = { 120, 109}; +Line(110) = { 121, 110}; +Line(111) = { 122, 111}; +Line(112) = { 123, 112}; +Line(113) = { 124, 113}; +Line(114) = { 125, 114}; +Line(126) = { 5, 6}; +Line(127) = { 7, 6}; +Line(128) = { 7, 8}; +Line(129) = { 9, 8}; +Line(130) = { 9, 10}; +Line(131) = { 11, 10}; +Line(132) = { 11, 12}; +Line(133) = { 13, 12}; +Line(134) = { 13, 14}; +Line(135) = { 15, 14}; +Line(136) = { 16, 17}; +Line(137) = { 18, 17}; +Line(138) = { 18, 19}; +Line(139) = { 20, 19}; +Line(140) = { 20, 21}; +Line(141) = { 22, 21}; +Line(142) = { 22, 23}; +Line(143) = { 24, 23}; +Line(144) = { 24, 25}; +Line(145) = { 26, 25}; + +Line(146) = { 27, 28}; +Line(147) = { 29, 28}; +Line(148) = { 29, 30}; +Line(149) = { 31, 30}; +Line(150) = { 31, 32}; +Line(151) = { 33, 32}; +Line(152) = { 33, 34}; +Line(153) = { 35, 34}; +Line(154) = { 35, 36}; +Line(155) = { 37, 36}; + +Line(156) = { 38, 39}; +Line(157) = { 40, 39}; +Line(158) = { 40, 41}; +Line(159) = { 42, 41}; +Line(160) = { 42, 43}; +Line(161) = { 44, 43}; +Line(162) = { 44, 45}; +Line(163) = { 46, 45}; +Line(164) = { 46, 47}; +Line(165) = { 48, 47}; + +Line(166) = { 49, 50}; +Line(167) = { 51, 50}; +Line(168) = { 51, 52}; +Line(169) = { 53, 52}; +Line(170) = { 53, 54}; +Line(171) = { 55, 54}; +Line(172) = { 55, 56}; +Line(173) = { 57, 56}; +Line(174) = { 57, 58}; +Line(175) = { 59, 58}; + +Line(176) = { 60, 61}; +Line(177) = { 62, 61}; +Line(178) = { 62, 63}; +Line(179) = { 64, 63}; +Line(180) = { 64, 65}; +Line(181) = { 66, 65}; +Line(182) = { 66, 67}; +Line(183) = { 68, 67}; +Line(184) = { 68, 69}; +Line(185) = { 70, 69}; + +Line(186) = { 71, 72}; +Line(187) = { 73, 72}; +Line(188) = { 73, 74}; +Line(189) = { 75, 74}; +Line(190) = { 75, 76}; +Line(191) = { 77, 76}; +Line(192) = { 77, 78}; +Line(193) = { 79, 78}; +Line(194) = { 79, 80}; +Line(195) = { 81, 80}; + +Line(196) = { 82, 83}; +Line(197) = { 84, 83}; +Line(198) = { 84, 85}; +Line(199) = { 86, 85}; +Line(200) = { 86, 87}; +Line(201) = { 88, 87}; +Line(202) = { 88, 89}; +Line(203) = { 90, 89}; +Line(204) = { 90, 91}; +Line(205) = { 92, 91}; + +Line(206) = { 93, 94}; +Line(207) = { 95, 94}; +Line(208) = { 95, 96}; +Line(209) = { 97, 96}; +Line(210) = { 97, 98}; +Line(211) = { 99, 98}; +Line(212) = { 99, 100}; +Line(213) = { 101, 100}; +Line(214) = { 101, 102}; +Line(215) = { 103, 102}; + + +Line(216) = { 104, 105}; +Line(217) = { 106, 105}; +Line(218) = { 106, 107}; +Line(219) = { 108, 107}; +Line(220) = { 108, 109}; +Line(221) = { 110, 109}; +Line(222) = { 110, 111}; +Line(223) = { 112, 111}; +Line(224) = { 112, 113}; +Line(225) = { 114, 113}; + + +Line(226) = { 115, 116}; +Line(227) = { 117, 116}; +Line(228) = { 117, 118}; +Line(229) = { 119, 118}; +Line(230) = { 119, 120}; +Line(231) = { 121, 120}; +Line(232) = { 121, 122}; +Line(233) = { 123, 122}; +Line(234) = { 123, 124}; +Line(235) = { 125, 124}; + + +// Define inner surfaces +//+ +Curve Loop(1) = { 5, 136, -6, -126}; +Plane Surface(1) ={1}; +Curve Loop(2) = { 6, -137, -7, 127}; +Plane Surface(2) ={2}; +Curve Loop(3) = { 7, 138, -8, -128}; +Plane Surface(3) ={3}; +Curve Loop(4) = { 8, -139, -9, 129}; +Plane Surface(4) ={4}; +Curve Loop(5) = { 9, 140, -10, -130}; +Plane Surface(5) ={5}; +Curve Loop(6) = { 10, -141, -11, 131}; +Plane Surface(6) ={6}; +Curve Loop(7) = { 11, 142, -12, -132}; +Plane Surface(7) ={7}; +Curve Loop(8) = { 12, -143, -13, 133}; +Plane Surface(8) ={8}; +Curve Loop(9) = { 13, 144, -14, -134}; +Plane Surface(9) ={9}; +Curve Loop(10) = { 14, -145, -15, 135}; +Plane Surface(10) ={10}; +Curve Loop(11) = { -16, 146, 17, -136}; +Plane Surface(11) ={11}; +Curve Loop(12) = { -17, -147, 18, 137}; +Plane Surface(12) ={12}; +Curve Loop(13) = { -18, 148, 19, -138}; +Plane Surface(13) ={13}; +Curve Loop(14) = { -19, -149, 20, 139}; +Plane Surface(14) ={14}; +Curve Loop(15) = { -20, 150, 21, -140}; +Plane Surface(15) ={15}; +Curve Loop(16) = { -21, -151, 22, 141}; +Plane Surface(16) ={16}; +Curve Loop(17) = { -22, 152, 23, -142}; +Plane Surface(17) ={17}; +Curve Loop(18) = { -23, -153, 24, 143}; +Plane Surface(18) ={18}; +Curve Loop(19) = {-24, 154, 25, -144}; +Plane Surface(19) ={19}; +Curve Loop(20) = { -25, -155, 26, 145}; +Plane Surface(20) ={20}; +Curve Loop(21) = { 27, 156, -28, -146}; +Plane Surface(21) ={21}; +Curve Loop(22) = { 28, -157, -29, 147}; +Plane Surface(22) ={22}; +Curve Loop(23) = { 29, 158, -30, -148}; +Plane Surface(23) ={23}; +Curve Loop(24) = { 30, -159, -31, 149}; +Plane Surface(24) ={24}; +Curve Loop(25) = { 31, 160, -32, -150}; +Plane Surface(25) ={25}; +Curve Loop(26) = { 32, -161, -33, 151}; +Plane Surface(26) ={26}; +Curve Loop(27) = { 33, 162, -34, -152}; +Plane Surface(27) ={27}; +Curve Loop(28) = { 34, -163, -35, 153}; +Plane Surface(28) ={28}; +Curve Loop(29) = { 35, 164, -36, -154}; +Plane Surface(29) ={29}; +Curve Loop(30) = { 36, -165, -37, 155}; +Plane Surface(30) ={30}; +Curve Loop(31) = { -38, 166, 39, -156}; +Plane Surface(31) ={31}; +Curve Loop(32) = { -39, -167, 40, 157}; +Plane Surface(32) ={32}; +Curve Loop(33) = { -40, 168, 41, -158}; +Plane Surface(33) ={33}; +Curve Loop(34) = { -41, -169, 42, 159}; +Plane Surface(34) ={34}; +Curve Loop(35) = { -42, 170, 43, -160}; +Plane Surface(35) ={35}; +Curve Loop(36) = { -43, -171, 44, 161}; +Plane Surface(36) ={36}; +Curve Loop(37) = { -44, 172, 45, -162}; +Plane Surface(37) ={37}; +Curve Loop(38) = { -45, -173, 46, 163}; +Plane Surface(38) ={38}; +Curve Loop(39) = { -46, 174, 47, -164}; +Plane Surface(39) ={39}; +Curve Loop(40) = { -47, -175, 48, 165}; +Plane Surface(40) ={40}; +Curve Loop(41) = { 49, 176, -50, -166}; +Plane Surface(41) ={41}; +Curve Loop(42) = { 50, -177, -51, 167}; +Plane Surface(42) ={42}; +Curve Loop(43) = { 51, 178, -52, -168}; +Plane Surface(43) ={43}; +Curve Loop(44) = { 52, -179, -53, 169}; +Plane Surface(44) ={44}; +Curve Loop(45) = { 53, 180, -54, -170}; +Plane Surface(45) ={45}; +Curve Loop(46) = { 54, -181, -55, 171}; +Plane Surface(46) ={46}; +Curve Loop(47) = { 55, 182, -56, -172}; +Plane Surface(47) ={47}; +Curve Loop(48) = { 56, -183, -57, 173}; +Plane Surface(48) ={48}; +Curve Loop(49) = { 57, 184, -58, -174}; +Plane Surface(49) ={49}; +Curve Loop(50) = { 58, -185, -59, 175}; +Plane Surface(50) ={50}; +Curve Loop(51) = { -60, 186, 61, -176}; +Plane Surface(51) ={51}; +Curve Loop(52) = { -61, -187, 62, 177}; +Plane Surface(52) ={52}; +Curve Loop(53) = { -62, 188, 63, -178}; +Plane Surface(53) ={53}; +Curve Loop(54) = { -63, -189, 64, 179}; +Plane Surface(54) ={54}; +Curve Loop(55) = { -64, 190, 65, -180}; +Plane Surface(55) ={55}; +Curve Loop(56) = { -65, -191, 66, 181}; +Plane Surface(56) ={56}; +Curve Loop(57) = { -66, 192, 67, -182}; +Plane Surface(57) ={57}; +Curve Loop(58) = { -67, -193, 68, 183}; +Plane Surface(58) ={58}; +Curve Loop(59) = { -68, 194, 69, -184}; +Plane Surface(59) ={59}; +Curve Loop(60) = { -69, -195, 70, 185}; +Plane Surface(60) ={60}; +Curve Loop(61) = { 71, 196, -72, -186}; +Plane Surface(61) ={61}; +Curve Loop(62) = { 72, -197, -73, 187}; +Plane Surface(62) ={62}; +Curve Loop(63) = { 73, 198, -74, -188}; +Plane Surface(63) ={63}; +Curve Loop(64) = { 74, -199, -75, 189}; +Plane Surface(64) ={64}; +Curve Loop(65) = { 75, 200, -76, -190}; +Plane Surface(65) ={65}; +Curve Loop(66) = { 76, -201, -77, 191}; +Plane Surface(66) ={66}; +Curve Loop(67) = { 77, 202, -78, -192}; +Plane Surface(67) ={67}; +Curve Loop(68) = { 78, -203, -79, 193}; +Plane Surface(68) ={68}; +Curve Loop(69) = { 79, 204, -80, -194}; +Plane Surface(69) ={69}; +Curve Loop(70) = { 80, -205, -81, 195}; +Plane Surface(70) ={70}; +Curve Loop(71) = { -82, 206, 83, -196}; +Plane Surface(71) ={71}; +Curve Loop(72) = { -83, -207, 84, 197}; +Plane Surface(72) ={72}; +Curve Loop(73) = { -84, 208, 85, -198}; +Plane Surface(73) ={73}; +Curve Loop(74) = { -85, -209, 86, 199}; +Plane Surface(74) ={74}; +Curve Loop(75) = { -86, 210, 87, -200}; +Plane Surface(75) ={75}; +Curve Loop(76) = { -87, -211, 88, 201}; +Plane Surface(76) ={76}; +Curve Loop(77) = { -88, 212, 89, -202}; +Plane Surface(77) ={77}; +Curve Loop(78) = { -89, -213, 90, 203}; +Plane Surface(78) ={78}; +Curve Loop(79) = { -90, 214, 91, -204}; +Plane Surface(79) ={79}; +Curve Loop(80) = { -91, -215, 92, 205}; +Plane Surface(80) ={80}; +Curve Loop(81) = { 93, 216, -94, -206}; +Plane Surface(81) ={81}; +Curve Loop(82) = { 94, -217, -95, 207}; +Plane Surface(82) ={82}; +Curve Loop(83) = { 95, 218, -96, -208}; +Plane Surface(83) ={83}; +Curve Loop(84) = { 96, -219, -97, 209}; +Plane Surface(84) ={84}; +Curve Loop(85) = { 97, 220, -98, -210}; +Plane Surface(85) ={85}; +Curve Loop(86) = { 98, -221, -99, 211}; +Plane Surface(86) ={86}; +Curve Loop(87) = { 99, 222, -100, -212}; +Plane Surface(87) ={87}; +Curve Loop(88) = { 100, -223, -101, 213}; +Plane Surface(88) ={88}; +Curve Loop(89) = { 101, 224, -102, -214}; +Plane Surface(89) ={89}; +Curve Loop(90) = { 102, -225, -103, 215}; +Plane Surface(90) ={90}; +Curve Loop(91) = { -104, 226, 105, -216}; +Plane Surface(91) ={91}; +Curve Loop(92) = { -105, -227, 106, 217}; +Plane Surface(92) ={92}; +Curve Loop(93) = { -106, 228, 107, -218}; +Plane Surface(93) ={93}; +Curve Loop(94) = { -107, -229, 108, 219}; +Plane Surface(94) ={94}; +Curve Loop(95) = { -108, 230, 109, -220}; +Plane Surface(95) ={95}; +Curve Loop(96) = { -109, -231, 110, 221}; +Plane Surface(96) ={96}; +Curve Loop(97) = { -110, 232, 111, -222}; +Plane Surface(97) ={97}; +Curve Loop(98) = { -111, -233, 112, 223}; +Plane Surface(98) ={98}; +Curve Loop(99) = { -112, 234, 113, -224}; +Plane Surface(99) ={99}; +Curve Loop(100) = { -113, -235, 114, 225}; +Plane Surface(100) ={100}; + + +// "Outside area" +//Curve Loop(101) = {1, 2, 3, 4}; +//+ +//Curve Loop(102) = {5, -16, 27, -38, 49, -60, 71, -82, 93, -104, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 114, -103, 92, -81, 70, -59, 48, -37, 26, -15, -135, -134, -133, -132, -131, -130, -129, -128, -127, -126}; +//+ +//Plane Surface(101) = {101, 102}; + +//+ +Transfinite Surface {1}; +Transfinite Surface {2}; +Transfinite Surface {3}; +Transfinite Surface {4}; +Transfinite Surface {5}; +Transfinite Surface {6}; +Transfinite Surface {7}; +Transfinite Surface {8}; +Transfinite Surface {9}; +Transfinite Surface {10}; +Transfinite Surface {11}; +Transfinite Surface {12}; +Transfinite Surface {13}; +Transfinite Surface {14}; +Transfinite Surface {15}; +Transfinite Surface {16}; +Transfinite Surface {17}; +Transfinite Surface {18}; +Transfinite Surface {19}; +Transfinite Surface {20}; +Transfinite Surface {21}; +Transfinite Surface {22}; +Transfinite Surface {23}; +Transfinite Surface {24}; +Transfinite Surface {25}; +Transfinite Surface {26}; +Transfinite Surface {27}; +Transfinite Surface {28}; +Transfinite Surface {29}; +Transfinite Surface {30}; +Transfinite Surface {31}; +Transfinite Surface {32}; +Transfinite Surface {33}; +Transfinite Surface {34}; +Transfinite Surface {35}; +Transfinite Surface {36}; +Transfinite Surface {37}; +Transfinite Surface {38}; +Transfinite Surface {39}; +Transfinite Surface {40}; +Transfinite Surface {41}; +Transfinite Surface {42}; +Transfinite Surface {43}; +Transfinite Surface {44}; +Transfinite Surface {45}; +Transfinite Surface {46}; +Transfinite Surface {47}; +Transfinite Surface {48}; +Transfinite Surface {49}; +Transfinite Surface {50}; +Transfinite Surface {51}; +Transfinite Surface {52}; +Transfinite Surface {53}; +Transfinite Surface {54}; +Transfinite Surface {55}; +Transfinite Surface {56}; +Transfinite Surface {57}; +Transfinite Surface {58}; +Transfinite Surface {59}; +Transfinite Surface {60}; +Transfinite Surface {61}; +Transfinite Surface {62}; +Transfinite Surface {63}; +Transfinite Surface {64}; +Transfinite Surface {65}; +Transfinite Surface {66}; +Transfinite Surface {67}; +Transfinite Surface {68}; +Transfinite Surface {69}; +Transfinite Surface {70}; +Transfinite Surface {71}; +Transfinite Surface {72}; +Transfinite Surface {73}; +Transfinite Surface {74}; +Transfinite Surface {75}; +Transfinite Surface {76}; +Transfinite Surface {77}; +Transfinite Surface {78}; +Transfinite Surface {79}; +Transfinite Surface {80}; +Transfinite Surface {81}; +Transfinite Surface {82}; +Transfinite Surface {83}; +Transfinite Surface {84}; +Transfinite Surface {85}; +Transfinite Surface {86}; +Transfinite Surface {87}; +Transfinite Surface {88}; +Transfinite Surface {89}; +Transfinite Surface {90}; +Transfinite Surface {91}; +Transfinite Surface {92}; +Transfinite Surface {93}; +Transfinite Surface {94}; +Transfinite Surface {95}; +Transfinite Surface {96}; +Transfinite Surface {97}; +Transfinite Surface {98}; +Transfinite Surface {99}; +Transfinite Surface {100}; +//+ +Transfinite Curve {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103} = n_recombine Using Progression n_prog; +// add outer perimeter with half as many cells and no Progression +Transfinite Curve {104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15} = n_recombine / 4 Using Progression 1; +//+ +Transfinite Curve { 127, 137, 147, 157, 167, 177, 187, 197, 207, 217, 227, 128, 138, 148, 158, 168, 178, 188, 198, 208, 218, 228, 129, 139, 149, 159, 169, 179, 189, 199, 209, 219, 229, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 231, 132, 142, 152, 162, 172, 182, 192, 202, 212, 222, 232, 133, 143, 153, 163, 173, 183, 193, 203, 213, 223, 233, 134, 144, 154, 164, 174, 184, 194, 204, 214, 224, 234} = n_recombine Using Progression n_prog; +// add outer perimeter with half as many cells and no Progression +Transfinite Curve {126, 136, 146, 156, 166, 176, 186, 196, 206, 216, 226, 135, 145, 155, 165, 175, 185, 195, 205, 215, 225, 235} = n_recombine / 4 Using Progression 1; +//+ +Line(236) = {1, 126}; +//+ +Line(237) = {126, 127}; +//+ +Line(238) = {127, 128}; +//+ +Line(239) = {128, 129}; +//+ +Line(240) = {129, 130}; +//+ +Line(241) = {130, 131}; +//+ +Line(242) = {131, 132}; +//+ +Line(243) = {132, 133}; +//+ +Line(244) = {133, 134}; +//+ +Line(245) = {134, 135}; +//+ +Line(246) = {135, 136}; +//+ +Line(247) = {136, 2}; +//+ +Line(248) = {2, 159}; +//+ +Line(249) = {159, 160}; +//+ +Line(250) = {160, 161}; +//+ +Line(251) = {161, 162}; +//+ +Line(252) = {162, 163}; +//+ +Line(253) = {163, 164}; +//+ +Line(254) = {164, 165}; +//+ +Line(255) = {165, 166}; +//+ +Line(256) = {166, 167}; +//+ +Line(257) = {167, 168}; +//+ +Line(258) = {168, 169}; +//+ +Line(259) = {169, 4}; +//+ +Line(260) = {4, 147}; +//+ +Line(261) = {147, 146}; +//+ +Line(262) = {146, 145}; +//+ +Line(263) = {145, 144}; +//+ +Line(264) = {144, 143}; +//+ +Line(265) = {143, 142}; +//+ +Line(266) = {142, 141}; +//+ +Line(267) = {141, 140}; +//+ +Line(268) = {140, 139}; +//+ +Line(269) = {139, 138}; +//+ +Line(270) = {138, 137}; +//+ +Line(271) = {137, 3}; +//+ +Line(272) = {3, 158}; +//+ +Line(273) = {158, 157}; +//+ +Line(274) = {157, 156}; +//+ +Line(275) = {156, 155}; +//+ +Line(276) = {155, 154}; +//+ +Line(277) = {154, 153}; +//+ +Line(278) = {153, 152}; +//+ +Line(279) = {152, 151}; +//+ +Line(280) = {151, 150}; +//+ +Line(281) = {150, 149}; +//+ +Line(282) = {149, 148}; +//+ +Line(283) = {148, 1}; +//+ +Line(284) = {126, 5}; +//+ +Line(285) = {127, 16}; +//+ +Line(286) = {128, 27}; +//+ +Line(287) = {129, 38}; +//+ +Line(288) = {130, 49}; +//+ +Line(289) = {131, 60}; +//+ +Line(290) = {132, 71}; +//+ +Line(291) = {133, 82}; +//+ +Line(292) = {134, 93}; +//+ +Line(293) = {135, 104}; +//+ +Line(294) = {136, 115}; +//+ +Line(295) = {159, 115}; +//+ +Line(296) = {160, 116}; +//+ +Line(297) = {161, 117}; +//+ +Line(298) = {162, 118}; +//+ +Line(299) = {163, 119}; +//+ +Line(300) = {164, 120}; +//+ +Line(301) = {165, 121}; +//+ +Line(302) = {166, 122}; +//+ +Line(303) = {167, 123}; +//+ +Line(304) = {168, 124}; +//+ +Line(305) = {169, 125}; +//+ +Line(306) = {147, 125}; +//+ +Line(307) = {146, 114}; +//+ +Line(308) = {145, 103}; +//+ +Line(309) = {144, 92}; +//+ +Line(310) = {143, 81}; +//+ +Line(311) = {142, 70}; +//+ +Line(312) = {141, 59}; +//+ +Line(313) = {140, 48}; +//+ +Line(314) = {139, 37}; +//+ +Line(315) = {138, 26}; +//+ +Line(316) = {137, 15}; +//+ +Line(317) = {158, 15}; +//+ +Line(318) = {157, 14}; +//+ +Line(319) = {156, 13}; +//+ +Line(320) = {155, 12}; +//+ +Line(321) = {154, 11}; +//+ +Line(322) = {153, 10}; +//+ +Line(323) = {152, 9}; +//+ +Line(324) = {151, 8}; +//+ +Line(325) = {150, 7}; +//+ +Line(326) = {149, 6}; +//+ +Line(327) = {148, 5}; +//+ +Curve Loop(103) = {236, 284, -327, 283}; +//+ +Plane Surface(102) = {103}; +//+ +Curve Loop(104) = {237, 285, -5, -284}; +//+ +Plane Surface(103) = {104}; +//+ +Curve Loop(105) = {238, 286, 16, -285}; +//+ +Plane Surface(104) = {105}; +//+ +Curve Loop(106) = {239, 287, -27, -286}; +//+ +Plane Surface(105) = {106}; +//+ +Curve Loop(107) = {240, 288, 38, -287}; +//+ +Plane Surface(106) = {107}; +//+ +Curve Loop(108) = {241, 289, -49, -288}; +//+ +Plane Surface(107) = {108}; +//+ +Curve Loop(109) = {242, 290, 60, -289}; +//+ +Plane Surface(108) = {109}; +//+ +Curve Loop(110) = {243, 291, -71, -290}; +//+ +Plane Surface(109) = {110}; +//+ +Curve Loop(111) = {244, 292, 82, -291}; +//+ +Plane Surface(110) = {111}; +//+ +Curve Loop(112) = {245, 293, -93, -292}; +//+ +Plane Surface(111) = {112}; +//+ +Curve Loop(113) = {246, 294, 104, -293}; +//+ +Plane Surface(112) = {113}; +//+ +Curve Loop(114) = {247, 248, 295, -294}; +//+ +Plane Surface(113) = {114}; +//+ +Curve Loop(115) = {249, 296, -226, -295}; +//+ +Plane Surface(114) = {115}; +//+ +Curve Loop(116) = {250, 297, 227, -296}; +//+ +Plane Surface(115) = {116}; +//+ +Curve Loop(117) = {251, 298, -228, -297}; +//+ +Plane Surface(116) = {117}; +//+ +Curve Loop(118) = {252, 299, 229, -298}; +//+ +Plane Surface(117) = {118}; +//+ +Curve Loop(119) = {253, 300, -230, -299}; +//+ +Plane Surface(118) = {119}; +//+ +Curve Loop(120) = {254, 301, 231, -300}; +//+ +Plane Surface(119) = {120}; +//+ +Curve Loop(121) = {255, 302, -232, -301}; +//+ +Plane Surface(120) = {121}; +//+ +Curve Loop(122) = {256, 303, 233, -302}; +//+ +Plane Surface(121) = {122}; +//+ +Curve Loop(123) = {257, 304, -234, -303}; +//+ +Plane Surface(122) = {123}; +//+ +Curve Loop(124) = {258, 305, 235, -304}; +//+ +Plane Surface(123) = {124}; +//+ +Curve Loop(125) = {259, 260, 306, -305}; +//+ +Plane Surface(124) = {125}; +//+ +Curve Loop(126) = {261, 307, -114, -306}; +//+ +Plane Surface(125) = {126}; +//+ +Curve Loop(127) = {262, 308, 103, -307}; +//+ +Plane Surface(126) = {127}; +//+ +Curve Loop(128) = {263, 309, -92, -308}; +//+ +Plane Surface(127) = {128}; +//+ +Curve Loop(129) = {264, 310, 81, -309}; +//+ +Plane Surface(128) = {129}; +//+ +Curve Loop(130) = {265, 311, -70, -310}; +//+ +Plane Surface(129) = {130}; +//+ +Curve Loop(131) = {266, 312, 59, -311}; +//+ +Plane Surface(130) = {131}; +//+ +Curve Loop(132) = {267, 313, -48, -312}; +//+ +Plane Surface(131) = {132}; +//+ +Curve Loop(133) = {268, 314, 37, -313}; +//+ +Plane Surface(132) = {133}; +//+ +Curve Loop(134) = {269, 315, -26, -314}; +//+ +Plane Surface(133) = {134}; +//+ +Curve Loop(135) = {270, 316, 15, -315}; +//+ +Plane Surface(134) = {135}; +//+ +Curve Loop(136) = {271, 272, 317, -316}; +//+ +Plane Surface(135) = {136}; +//+ +Curve Loop(137) = {273, 318, -135, -317}; +//+ +Plane Surface(136) = {137}; +//+ +Curve Loop(138) = {274, 319, 134, -318}; +//+ +Plane Surface(137) = {138}; +//+ +Curve Loop(139) = {275, 320, -133, -319}; +//+ +Plane Surface(138) = {139}; +//+ +Curve Loop(140) = {276, 321, 132, -320}; +//+ +Plane Surface(139) = {140}; +//+ +Curve Loop(141) = {277, 322, -131, -321}; +//+ +Plane Surface(140) = {141}; +//+ +Curve Loop(142) = {278, 323, 130, -322}; +//+ +Plane Surface(141) = {142}; +//+ +Curve Loop(143) = {279, 324, -129, -323}; +//+ +Plane Surface(142) = {143}; +//+ +Curve Loop(144) = {280, 325, 128, -324}; +//+ +Plane Surface(143) = {144}; +//+ +Curve Loop(145) = {281, 326, -127, -325}; +//+ +Plane Surface(144) = {145}; +//+ +Curve Loop(146) = {282, 327, 126, -326}; +//+ +Plane Surface(145) = {146}; +//+ +//+ +Transfinite Surface {102}; +//+ +Transfinite Surface {103}; +//+ +Transfinite Surface {104}; +//+ +Transfinite Surface {105}; +//+ +Transfinite Surface {106}; +//+ +Transfinite Surface {107}; +//+ +Transfinite Surface {108}; +//+ +Transfinite Surface {109}; +//+ +Transfinite Surface {110}; +//+ +Transfinite Surface {111}; +//+ +Transfinite Surface {112}; +//+ +Transfinite Surface {113}; +//+ +Transfinite Surface {114}; +//+ +Transfinite Surface {115}; +//+ +Transfinite Surface {116}; +//+ +Transfinite Surface {117}; +//+ +Transfinite Surface {118}; +//+ +Transfinite Surface {119}; +//+ +Transfinite Surface {120}; +//+ +Transfinite Surface {121}; +//+ +Transfinite Surface {122}; +//+ +Transfinite Surface {123}; +//+ +Transfinite Surface {124}; +//+ +Transfinite Surface {125}; +//+ +Transfinite Surface {126}; +//+ +Transfinite Surface {127}; +//+ +Transfinite Surface {128}; +//+ +Transfinite Surface {129}; +//+ +Transfinite Surface {130}; +//+ +Transfinite Surface {131}; +//+ +Transfinite Surface {132}; +//+ +Transfinite Surface {133}; +//+ +Transfinite Surface {134}; +//+ +Transfinite Surface {135}; +//+ +Transfinite Surface {136}; +//+ +Transfinite Surface {137}; +//+ +Transfinite Surface {138}; +//+ +Transfinite Surface {139}; +//+ +Transfinite Surface {140}; +//+ +Transfinite Surface {141}; +//+ +Transfinite Surface {142}; +//+ +Transfinite Surface {143}; +//+ +Transfinite Surface {144}; +//+ +Transfinite Surface {145}; +//+ +Transfinite Curve { 238, 239, 240, 241, 242, 243, 244, 245, 250, 251, 252, 253, 254, 255, 256, 257, 262, 263, 264, 265, 266, 267, 268, 269, 274, 275, 276, 277, 278, 279, 280, 281} = n_recombine Using Progression 1; +Transfinite Curve {237,246,249, 258,261,270,273,282} = n_recombine / 4 Using Progression 1; + + +Physical Curve("void",328) = {236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283}; + +Recombine Surface "*"; +// Define meshing options +//Mesh.Algorithm = 6; // Specify meshing algorithm (e.g., Delaunay) +//Mesh.ElementOrder = 1; // Specify element order +// Generate the mesh +//Mesh 2; \ No newline at end of file diff --git a/examples_hpc/lattice/mesh/make_lattice_mesh.sh b/examples_hpc/lattice/mesh/make_lattice_mesh.sh index 8e559b4c..3bd8c693 100644 --- a/examples_hpc/lattice/mesh/make_lattice_mesh.sh +++ b/examples_hpc/lattice/mesh/make_lattice_mesh.sh @@ -1 +1,5 @@ -gmsh lattice_rectangular.geo -2 -format su2 -save_all -o lattice_n40.su2 +rm lattice_n20.su2 lattice_n20.con lattice_n40.su2 lattice_n40.con lattice_n80.su2 lattice_n80.con + +gmsh lattice_rectangular_n20.geo -2 -format su2 -save_all -o lattice_n20.su2 +gmsh lattice_rectangular_n40.geo -2 -format su2 -save_all -o lattice_n10.su2 +gmsh lattice_rectangular_n80.geo -2 -format su2 -save_all -o lattice_n10.su2 From 940c3b7606331c5b5eb52be8996e40ae594487eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Thu, 18 Jan 2024 19:47:24 -0500 Subject: [PATCH 063/155] updated meshing scripts --- examples_hpc/lattice/mesh/lattice_rectangular_n80.geo | 2 +- examples_hpc/lattice/mesh/make_lattice_mesh.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo b/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo index ccc4e41f..f8c8ece8 100644 --- a/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo +++ b/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo @@ -1,5 +1,5 @@ cl_fine = 0.1; -n_recombine = 40; +n_recombine = 80; n_prog = 1.1; Point(1) = {-3.5, -3.5, 0, cl_fine}; Point(2) = {3.5, -3.5, 0, cl_fine}; diff --git a/examples_hpc/lattice/mesh/make_lattice_mesh.sh b/examples_hpc/lattice/mesh/make_lattice_mesh.sh index 3bd8c693..5e3e5499 100644 --- a/examples_hpc/lattice/mesh/make_lattice_mesh.sh +++ b/examples_hpc/lattice/mesh/make_lattice_mesh.sh @@ -1,5 +1,5 @@ rm lattice_n20.su2 lattice_n20.con lattice_n40.su2 lattice_n40.con lattice_n80.su2 lattice_n80.con gmsh lattice_rectangular_n20.geo -2 -format su2 -save_all -o lattice_n20.su2 -gmsh lattice_rectangular_n40.geo -2 -format su2 -save_all -o lattice_n10.su2 -gmsh lattice_rectangular_n80.geo -2 -format su2 -save_all -o lattice_n10.su2 +gmsh lattice_rectangular_n40.geo -2 -format su2 -save_all -o lattice_n40.su2 +gmsh lattice_rectangular_n80.geo -2 -format su2 -save_all -o lattice_n80.su2 From af2e669cee6c0b44c678bb8e779639545f6a829d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Thu, 18 Jan 2024 19:48:21 -0500 Subject: [PATCH 064/155] updated runscript --- examples_hpc/lattice/run_all.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 examples_hpc/lattice/run_all.sh diff --git a/examples_hpc/lattice/run_all.sh b/examples_hpc/lattice/run_all.sh new file mode 100644 index 00000000..d0141f3f --- /dev/null +++ b/examples_hpc/lattice/run_all.sh @@ -0,0 +1,18 @@ +../../build/KiT-RT lattice_S19_n20.cfg +../../build/KiT-RT lattice_S29_n20.cfg +../../build/KiT-RT lattice_S41_n20.cfg +../../build/KiT-RT lattice_S53_n20.cfg +../../build/KiT-RT lattice_S65_n20.cfg + + +../../build/KiT-RT lattice_S19_n40.cfg +../../build/KiT-RT lattice_S29_n40.cfg +../../build/KiT-RT lattice_S41_n40.cfg +../../build/KiT-RT lattice_S53_n40.cfg +../../build/KiT-RT lattice_S65_n40.cfg + +../../build/KiT-RT lattice_S19_n80.cfg +../../build/KiT-RT lattice_S29_n80.cfg +../../build/KiT-RT lattice_S41_n80.cfg +../../build/KiT-RT lattice_S53_n80.cfg +../../build/KiT-RT lattice_S65_n80.cfg \ No newline at end of file From fca990ee3e59117ed574e04ff61346e6cd08fc45 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 25 Jan 2024 10:59:11 -0500 Subject: [PATCH 065/155] fixed outpout of logfiles. part 1 --- include/toolboxes/textprocessingtoolbox.hpp | 24 +++++++++++++++++++++ src/solvers/solverbase.cpp | 13 +++++++---- 2 files changed, 33 insertions(+), 4 deletions(-) diff --git a/include/toolboxes/textprocessingtoolbox.hpp b/include/toolboxes/textprocessingtoolbox.hpp index 145f7469..60a7bdaf 100644 --- a/include/toolboxes/textprocessingtoolbox.hpp +++ b/include/toolboxes/textprocessingtoolbox.hpp @@ -11,6 +11,9 @@ #include #include #include +#include +#include +#include namespace TextProcessingToolbox { @@ -123,6 +126,27 @@ inline bool StringEndsWith( std::string const& value, std::string const& ending return std::equal( ending.rbegin(), ending.rend(), value.rbegin() ); } +std::string DoubleToScientificNotation(double value) { + // Using std::ostringstream to format the double in scientific notation + std::ostringstream oss; + oss << std::scientific << std::setprecision(4) << value; + + // Retrieve the string from the stream + std::string scientificNotation = oss.str(); + + // Remove trailing zeros after the decimal point + size_t pos = scientificNotation.find('.'); + if (pos != std::string::npos) { + scientificNotation.erase(scientificNotation.find_last_not_of('0') + 1); + scientificNotation.erase(scientificNotation.find_last_not_of('.') + 1); + } + + // Remove unnecessary trailing decimal point + scientificNotation = std::regex_replace(scientificNotation, std::regex("\\.0+$"), ""); + + return scientificNotation; +} + } // namespace TextProcessingToolbox #endif // TEXTPROCESSINGTOOLBOX_H diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index cb060086..fac528ec 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -409,7 +409,7 @@ void SolverBase::PrintScreenOutput( unsigned idx_iter ) { std::find( scientificFields.begin(), scientificFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { std::stringstream ss; - ss << _screenOutputFields[idx_field]; + ss << TextProcessingToolbox::DoubleToScientificNotation(_screenOutputFields[idx_field] ); tmp = ss.str(); tmp.erase( std::remove( tmp.begin(), tmp.end(), '+' ), tmp.end() ); // removing the '+' sign } @@ -484,11 +484,16 @@ void SolverBase::PrintHistoryOutput( unsigned idx_iter ) { // assemble the line to print std::string lineToPrint = ""; std::string tmp; - for( int idx_field = 0; idx_field < _settings->GetNScreenOutput() - 1; idx_field++ ) { - tmp = std::to_string( _screenOutputFields[idx_field] ); + for( int idx_field = 0; idx_field < _settings->GetNHistoryOutput() - 1; idx_field++ ) { + if (idx_field == 0){ + tmp = std::to_string( _historyOutputFields[idx_field] ); + } + else{ + tmp = TextProcessingToolbox::DoubleToScientificNotation(_historyOutputFields[idx_field] ); + } lineToPrint += tmp + ","; } - tmp = std::to_string( _screenOutputFields[_settings->GetNScreenOutput() - 1] ); + tmp = std::to_string( _historyOutputFields[_settings->GetNScreenOutput() - 1] ); lineToPrint += tmp; // Last element without comma if( _settings->GetHistoryOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) { From 53ff804683b9461061a1a875e0833c6e2032f713 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 25 Jan 2024 11:20:53 -0500 Subject: [PATCH 066/155] start debugging logger --- examples_hpc/lattice/run_all.sh | 30 +++++++++++++++--------------- src/common/config.cpp | 26 +++++++++++++++++--------- 2 files changed, 32 insertions(+), 24 deletions(-) diff --git a/examples_hpc/lattice/run_all.sh b/examples_hpc/lattice/run_all.sh index d0141f3f..b3c665e7 100644 --- a/examples_hpc/lattice/run_all.sh +++ b/examples_hpc/lattice/run_all.sh @@ -1,18 +1,18 @@ -../../build/KiT-RT lattice_S19_n20.cfg -../../build/KiT-RT lattice_S29_n20.cfg -../../build/KiT-RT lattice_S41_n20.cfg -../../build/KiT-RT lattice_S53_n20.cfg -../../build/KiT-RT lattice_S65_n20.cfg +#../../build/KiT-RT lattice_S19_n20.cfg +#../../build/KiT-RT lattice_S29_n20.cfg +#../../build/KiT-RT lattice_S41_n20.cfg +#../../build/KiT-RT lattice_S53_n20.cfg +#../../build/KiT-RT lattice_S65_n20.cfg -../../build/KiT-RT lattice_S19_n40.cfg -../../build/KiT-RT lattice_S29_n40.cfg -../../build/KiT-RT lattice_S41_n40.cfg -../../build/KiT-RT lattice_S53_n40.cfg -../../build/KiT-RT lattice_S65_n40.cfg +../../build_singularity/KiT-RT lattice_S19_n40.cfg +../../build_singularity/KiT-RT lattice_S29_n40.cfg +../../build_singularity/KiT-RT lattice_S41_n40.cfg +../../build_singularity/KiT-RT lattice_S53_n40.cfg +../../build_singularity/KiT-RT lattice_S65_n40.cfg -../../build/KiT-RT lattice_S19_n80.cfg -../../build/KiT-RT lattice_S29_n80.cfg -../../build/KiT-RT lattice_S41_n80.cfg -../../build/KiT-RT lattice_S53_n80.cfg -../../build/KiT-RT lattice_S65_n80.cfg \ No newline at end of file +../../build_singularity/KiT-RT lattice_S19_n80.cfg +../../build_singularity/KiT-RT lattice_S29_n80.cfg +../../build_singularity/KiT-RT lattice_S41_n80.cfg +../../build_singularity/KiT-RT lattice_S53_n80.cfg +../../build_singularity/KiT-RT lattice_S65_n80.cfg \ No newline at end of file diff --git a/src/common/config.cpp b/src/common/config.cpp index cfe89b4f..32d8e3ab 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -1189,16 +1189,24 @@ void Config::InitLogger() { filename = _logFileName; // in case of existing files append '_#' - int ctr = 0; - if( std::filesystem::exists( _logDir + filename ) ) { - filename += "_" + std::to_string( ++ctr ); + std::string filePath = _logDir + filename; + + + if (fs::exists(_logDir + filename)) { + // Extract the stem and extension + std::string stem = filePath.stem().string(); + std::string extension = filePath.extension().string(); + + // Counter for incrementing the filename + int counter = 1; + + // Keep incrementing the counter until a unique filename is found + while (fs::exists(_logDir + filename)) { + stem = baseFilename + std::to_string(counter); + filename.replace_filename(stem + extension); + counter++; + } } - while( std::filesystem::exists( _logDir + filename ) ) { - filename.pop_back(); - filename += std::to_string( ++ctr ); - } - strncpy( cfilename, filename.c_str(), sizeof( cfilename ) ); - cfilename[sizeof( cfilename ) - 1] = 0; } // MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); // MPI_Barrier( MPI_COMM_WORLD ); From 30e254e3242ec0c2520a9ee27b42a248b1a5663f Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Thu, 25 Jan 2024 11:47:00 -0500 Subject: [PATCH 067/155] fixed logger filename bug --- src/common/config.cpp | 123 ++++++++++++++++++++----------------- src/solvers/solverbase.cpp | 8 +-- 2 files changed, 72 insertions(+), 59 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 32d8e3ab..88632408 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -1169,50 +1169,52 @@ void Config::InitLogger() { } if( fileLogLvl != spdlog::level::off ) { // define filename on root - int pe = 0; + // int pe = 0; // MPI_Comm_rank( MPI_COMM_WORLD, &pe ); char cfilename[1024]; - if( pe == 0 ) { - // get date and time - time_t now = time( nullptr ); - struct tm tstruct; - char buf[80]; - tstruct = *localtime( &now ); - strftime( buf, sizeof( buf ), "%Y-%m-%d_%X", &tstruct ); - - // set filename - std::string filename; - if( _logFileName.compare( "use_date" ) == 0 ) { - _logFileName = buf; // set filename to date and time - } - filename = _logFileName; - - // in case of existing files append '_#' - std::string filePath = _logDir + filename; - - - if (fs::exists(_logDir + filename)) { + // if( pe == 0 ) { + // get date and time + time_t now = time( nullptr ); + struct tm tstruct; + char buf[80]; + tstruct = *localtime( &now ); + strftime( buf, sizeof( buf ), "%Y-%m-%d_%X", &tstruct ); + + // set filename + std::string filepathStr; + if( _logFileName.compare( "use_date" ) == 0 ) { + _logFileName = buf; // set filename to date and time + filepathStr = _logDir + _logFileName; + } + else { + std::filesystem::path filePath( _logDir + _logFileName ); + std::string baseFilename( _logDir + _logFileName ); + filepathStr = _logDir + _logFileName; + // Check if the file with the original name exists + if( std::filesystem::exists( filePath ) ) { // Extract the stem and extension - std::string stem = filePath.stem().string(); + std::string stem = filePath.stem().string(); std::string extension = filePath.extension().string(); // Counter for incrementing the filename int counter = 1; // Keep incrementing the counter until a unique filename is found - while (fs::exists(_logDir + filename)) { - stem = baseFilename + std::to_string(counter); - filename.replace_filename(stem + extension); + while( std::filesystem::exists( filePath ) ) { + stem = baseFilename + std::to_string( counter ); + filePath.replace_filename( stem + extension ); counter++; - } + } } + filepathStr = filePath.string(); } + //} // MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); // MPI_Barrier( MPI_COMM_WORLD ); // create spdlog file sink - auto fileSink = std::make_shared( _logDir + cfilename ); + auto fileSink = std::make_shared( filepathStr ); fileSink->set_level( fileLogLvl ); fileSink->set_pattern( "%Y-%m-%d %H:%M:%S.%f | %v" ); sinks.push_back( fileSink ); @@ -1229,42 +1231,53 @@ void Config::InitLogger() { std::vector sinks; if( fileLogLvl != spdlog::level::off ) { // define filename on root - int pe = 0; + // int pe = 0; // MPI_Comm_rank( MPI_COMM_WORLD, &pe ); - char cfilename[1024]; + // char cfilename[1024]; + + // if( pe == 0 ) { + // get date and time + time_t now = time( nullptr ); + struct tm tstruct; + char buf[80]; + tstruct = *localtime( &now ); + strftime( buf, sizeof( buf ), "%Y-%m-%d_%X.csv", &tstruct ); + + // set filename + // set filename + std::string filepathStr; + if( _logFileName.compare( "use_date" ) == 0 ) { + _logFileName = buf; // set filename to date and time + filepathStr = _logDir + _logFileName + ".csv"; + } + else { + std::filesystem::path filePath( _logDir + _logFileName + ".csv" ); + std::string baseFilename( _logDir + _logFileName ); + filepathStr = _logDir + _logFileName + ".csv"; + // Check if the file with the original name exists + if( std::filesystem::exists( filePath ) ) { + // Extract the stem and extension + std::string stem = filePath.stem().string(); + std::string extension = filePath.extension().string(); - if( pe == 0 ) { - // get date and time - time_t now = time( nullptr ); - struct tm tstruct; - char buf[80]; - tstruct = *localtime( &now ); - strftime( buf, sizeof( buf ), "%Y-%m-%d_%X.csv", &tstruct ); - - // set filename - std::string filename; - if( _logFileName.compare( "use_date" ) == 0 ) - filename = buf; // set filename to date and time - else - filename = _logFileName + ".csv"; - - // in case of existing files append '_#' - int ctr = 0; - if( std::filesystem::exists( _logDir + filename ) ) { - filename += "_" + std::to_string( ++ctr ); - } - while( std::filesystem::exists( _logDir + filename ) ) { - filename.pop_back(); - filename += std::to_string( ++ctr ); + // Counter for incrementing the filename + int counter = 1; + + // Keep incrementing the counter until a unique filename is found + while( std::filesystem::exists( filePath ) ) { + stem = baseFilename + std::to_string( counter ); + filePath.replace_filename( stem + extension ); + counter++; + } } - strncpy( cfilename, filename.c_str(), sizeof( cfilename ) ); - cfilename[sizeof( cfilename ) - 1] = 0; + filepathStr = filePath.string(); } + //} // MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); // MPI_Barrier( MPI_COMM_WORLD ); // create spdlog file sink - auto fileSink = std::make_shared( _logDir + cfilename ); + auto fileSink = std::make_shared( filepathStr ); fileSink->set_level( fileLogLvl ); fileSink->set_pattern( "%Y-%m-%d %H:%M:%S.%f ,%v" ); sinks.push_back( fileSink ); diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index fac528ec..b42a0df2 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -409,7 +409,7 @@ void SolverBase::PrintScreenOutput( unsigned idx_iter ) { std::find( scientificFields.begin(), scientificFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { std::stringstream ss; - ss << TextProcessingToolbox::DoubleToScientificNotation(_screenOutputFields[idx_field] ); + ss << TextProcessingToolbox::DoubleToScientificNotation( _screenOutputFields[idx_field] ); tmp = ss.str(); tmp.erase( std::remove( tmp.begin(), tmp.end(), '+' ), tmp.end() ); // removing the '+' sign } @@ -485,11 +485,11 @@ void SolverBase::PrintHistoryOutput( unsigned idx_iter ) { std::string lineToPrint = ""; std::string tmp; for( int idx_field = 0; idx_field < _settings->GetNHistoryOutput() - 1; idx_field++ ) { - if (idx_field == 0){ + if( idx_field == 0 ) { tmp = std::to_string( _historyOutputFields[idx_field] ); } - else{ - tmp = TextProcessingToolbox::DoubleToScientificNotation(_historyOutputFields[idx_field] ); + else { + tmp = TextProcessingToolbox::DoubleToScientificNotation( _historyOutputFields[idx_field] ); } lineToPrint += tmp + ","; } From 53d4d76864f7f700789f1565b3f0a696b182f4ee Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Thu, 25 Jan 2024 11:49:10 -0500 Subject: [PATCH 068/155] added cfg file --- examples_hpc/lattice/{lattice_S53_n80cfg => lattice_S53_n80.cfg} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename examples_hpc/lattice/{lattice_S53_n80cfg => lattice_S53_n80.cfg} (100%) diff --git a/examples_hpc/lattice/lattice_S53_n80cfg b/examples_hpc/lattice/lattice_S53_n80.cfg similarity index 100% rename from examples_hpc/lattice/lattice_S53_n80cfg rename to examples_hpc/lattice/lattice_S53_n80.cfg From 8737ccc7ec3b5775590eed7bf4a228c0509c970a Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Thu, 1 Feb 2024 13:41:18 -0500 Subject: [PATCH 069/155] update n80 meshfile to geo progression 0.5 --- examples_hpc/lattice/mesh/lattice_rectangular_n80.geo | 2 +- examples_hpc/lattice/mesh/make_lattice_mesh.sh | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo b/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo index f8c8ece8..19e33600 100644 --- a/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo +++ b/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo @@ -1,6 +1,6 @@ cl_fine = 0.1; n_recombine = 80; -n_prog = 1.1; +n_prog = 1.05; Point(1) = {-3.5, -3.5, 0, cl_fine}; Point(2) = {3.5, -3.5, 0, cl_fine}; Point(3) = {-3.5, 3.5, 0, cl_fine}; diff --git a/examples_hpc/lattice/mesh/make_lattice_mesh.sh b/examples_hpc/lattice/mesh/make_lattice_mesh.sh index 5e3e5499..282538be 100644 --- a/examples_hpc/lattice/mesh/make_lattice_mesh.sh +++ b/examples_hpc/lattice/mesh/make_lattice_mesh.sh @@ -1,5 +1,7 @@ -rm lattice_n20.su2 lattice_n20.con lattice_n40.su2 lattice_n40.con lattice_n80.su2 lattice_n80.con +#rm lattice_n20.su2 lattice_n20.con +#rm lattice_n40.su2 lattice_n40.con +rm lattice_n80.su2 lattice_n80.con -gmsh lattice_rectangular_n20.geo -2 -format su2 -save_all -o lattice_n20.su2 -gmsh lattice_rectangular_n40.geo -2 -format su2 -save_all -o lattice_n40.su2 +#gmsh lattice_rectangular_n20.geo -2 -format su2 -save_all -o lattice_n20.su2 +#gmsh lattice_rectangular_n40.geo -2 -format su2 -save_all -o lattice_n40.su2 gmsh lattice_rectangular_n80.geo -2 -format su2 -save_all -o lattice_n80.su2 From b82de44fbbf71648a4d37d7737ca8855cb901833 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Fri, 2 Feb 2024 14:15:56 -0500 Subject: [PATCH 070/155] fixed bug in output verbosity --- examples_hpc/lattice/lattice_S19_n10.cfg | 4 ++-- examples_hpc/lattice/lattice_S19_n20.cfg | 4 ++-- examples_hpc/lattice/lattice_S19_n40.cfg | 4 ++-- examples_hpc/lattice/lattice_S19_n80.cfg | 4 ++-- examples_hpc/lattice/lattice_S29_n20.cfg | 4 ++-- examples_hpc/lattice/lattice_S29_n40.cfg | 4 ++-- examples_hpc/lattice/lattice_S29_n80.cfg | 4 ++-- examples_hpc/lattice/lattice_S3_n20.cfg | 4 ++-- examples_hpc/lattice/lattice_S41_n20.cfg | 4 ++-- examples_hpc/lattice/lattice_S41_n40.cfg | 4 ++-- examples_hpc/lattice/lattice_S41_n80.cfg | 4 ++-- examples_hpc/lattice/lattice_S53_n20.cfg | 4 ++-- examples_hpc/lattice/lattice_S53_n40.cfg | 4 ++-- examples_hpc/lattice/lattice_S53_n80.cfg | 4 ++-- examples_hpc/lattice/lattice_S65_n20.cfg | 4 ++-- examples_hpc/lattice/lattice_S65_n40.cfg | 4 ++-- examples_hpc/lattice/lattice_S65_n80.cfg | 4 ++-- examples_hpc/lattice/lattice_S9_n20.cfg | 4 ++-- src/solvers/solverbase.cpp | 12 ++++++------ 19 files changed, 42 insertions(+), 42 deletions(-) diff --git a/examples_hpc/lattice/lattice_S19_n10.cfg b/examples_hpc/lattice/lattice_S19_n10.cfg index 314244a2..1cdc14f0 100644 --- a/examples_hpc/lattice/lattice_S19_n10.cfg +++ b/examples_hpc/lattice/lattice_S19_n10.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 19 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S19_n20.cfg b/examples_hpc/lattice/lattice_S19_n20.cfg index 82f2c587..8b115f7b 100644 --- a/examples_hpc/lattice/lattice_S19_n20.cfg +++ b/examples_hpc/lattice/lattice_S19_n20.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 19 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S19_n40.cfg b/examples_hpc/lattice/lattice_S19_n40.cfg index 3dcb807a..e168fd3a 100644 --- a/examples_hpc/lattice/lattice_S19_n40.cfg +++ b/examples_hpc/lattice/lattice_S19_n40.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 19 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S19_n80.cfg b/examples_hpc/lattice/lattice_S19_n80.cfg index 5605da74..d6afd57a 100644 --- a/examples_hpc/lattice/lattice_S19_n80.cfg +++ b/examples_hpc/lattice/lattice_S19_n80.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 19 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S29_n20.cfg b/examples_hpc/lattice/lattice_S29_n20.cfg index 8df44b55..57ba1dea 100644 --- a/examples_hpc/lattice/lattice_S29_n20.cfg +++ b/examples_hpc/lattice/lattice_S29_n20.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 29 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S29_n40.cfg b/examples_hpc/lattice/lattice_S29_n40.cfg index fc814de2..5bc3ce55 100644 --- a/examples_hpc/lattice/lattice_S29_n40.cfg +++ b/examples_hpc/lattice/lattice_S29_n40.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 29 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S29_n80.cfg b/examples_hpc/lattice/lattice_S29_n80.cfg index 54cd7bd9..756fcfa8 100644 --- a/examples_hpc/lattice/lattice_S29_n80.cfg +++ b/examples_hpc/lattice/lattice_S29_n80.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 29 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S3_n20.cfg b/examples_hpc/lattice/lattice_S3_n20.cfg index ffe1a74d..169d6f20 100644 --- a/examples_hpc/lattice/lattice_S3_n20.cfg +++ b/examples_hpc/lattice/lattice_S3_n20.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 3 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S41_n20.cfg b/examples_hpc/lattice/lattice_S41_n20.cfg index 553b3a66..2829042f 100644 --- a/examples_hpc/lattice/lattice_S41_n20.cfg +++ b/examples_hpc/lattice/lattice_S41_n20.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 41 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S41_n40.cfg b/examples_hpc/lattice/lattice_S41_n40.cfg index 05b60eda..258e5c5f 100644 --- a/examples_hpc/lattice/lattice_S41_n40.cfg +++ b/examples_hpc/lattice/lattice_S41_n40.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 41 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S41_n80.cfg b/examples_hpc/lattice/lattice_S41_n80.cfg index 8e587c33..dbb614b6 100644 --- a/examples_hpc/lattice/lattice_S41_n80.cfg +++ b/examples_hpc/lattice/lattice_S41_n80.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 41 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S53_n20.cfg b/examples_hpc/lattice/lattice_S53_n20.cfg index 999e06b3..3b91b11e 100644 --- a/examples_hpc/lattice/lattice_S53_n20.cfg +++ b/examples_hpc/lattice/lattice_S53_n20.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 53 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S53_n40.cfg b/examples_hpc/lattice/lattice_S53_n40.cfg index 3bcd58b1..d2d4ad5d 100644 --- a/examples_hpc/lattice/lattice_S53_n40.cfg +++ b/examples_hpc/lattice/lattice_S53_n40.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 53 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S53_n80.cfg b/examples_hpc/lattice/lattice_S53_n80.cfg index e30ddca5..4cf390dc 100644 --- a/examples_hpc/lattice/lattice_S53_n80.cfg +++ b/examples_hpc/lattice/lattice_S53_n80.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 53 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S65_n20.cfg b/examples_hpc/lattice/lattice_S65_n20.cfg index dbf5e0ae..b3613d0e 100644 --- a/examples_hpc/lattice/lattice_S65_n20.cfg +++ b/examples_hpc/lattice/lattice_S65_n20.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 65 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S65_n40.cfg b/examples_hpc/lattice/lattice_S65_n40.cfg index 49c2f493..aa2645b4 100644 --- a/examples_hpc/lattice/lattice_S65_n40.cfg +++ b/examples_hpc/lattice/lattice_S65_n40.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 65 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S65_n80.cfg b/examples_hpc/lattice/lattice_S65_n80.cfg index 3b6d6582..adc3cf68 100644 --- a/examples_hpc/lattice/lattice_S65_n80.cfg +++ b/examples_hpc/lattice/lattice_S65_n80.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 65 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S9_n20.cfg b/examples_hpc/lattice/lattice_S9_n20.cfg index 8984a18e..895b733f 100644 --- a/examples_hpc/lattice/lattice_S9_n20.cfg +++ b/examples_hpc/lattice/lattice_S9_n20.cfg @@ -43,6 +43,6 @@ QUAD_ORDER = 9 VOLUME_OUTPUT = (MINIMAL) VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 10 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) +SCREEN_OUTPUT_FREQUENCY = 100 +HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index b42a0df2..226710ec 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -446,11 +446,11 @@ void SolverBase::PrepareHistoryOutput() { case RMS_FLUX: _historyOutputFieldNames[idx_field] = "RMS_flux"; break; case VTK_OUTPUT: _historyOutputFieldNames[idx_field] = "VTK_out"; break; case CSV_OUTPUT: _historyOutputFieldNames[idx_field] = "CSV_out"; break; - case CUR_OUTFLOW: _historyOutputFieldNames[idx_field] = "Final_time_outflow"; break; - case TOTAL_OUTFLOW: _historyOutputFieldNames[idx_field] = "Cumulated_outflow"; break; + case CUR_OUTFLOW: _historyOutputFieldNames[idx_field] = "Cur_outflow"; break; + case TOTAL_OUTFLOW: _historyOutputFieldNames[idx_field] = "Total_outflow"; break; case MAX_OUTFLOW: _historyOutputFieldNames[idx_field] = "Max_outflow"; break; - case CUR_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Final_time_absorption"; break; - case TOTAL_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Cumulated_absorption"; break; + case CUR_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Cur_absorption"; break; + case TOTAL_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Total_absorption"; break; case MAX_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Max_absorption"; break; case TOTAL_PARTICLE_ABSORPTION_CENTER: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_center"; break; case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_vertical_wall"; break; @@ -486,14 +486,14 @@ void SolverBase::PrintHistoryOutput( unsigned idx_iter ) { std::string tmp; for( int idx_field = 0; idx_field < _settings->GetNHistoryOutput() - 1; idx_field++ ) { if( idx_field == 0 ) { - tmp = std::to_string( _historyOutputFields[idx_field] ); + tmp = std::to_string( _historyOutputFields[idx_field] ); // Iteration count } else { tmp = TextProcessingToolbox::DoubleToScientificNotation( _historyOutputFields[idx_field] ); } lineToPrint += tmp + ","; } - tmp = std::to_string( _historyOutputFields[_settings->GetNScreenOutput() - 1] ); + tmp = TextProcessingToolbox::DoubleToScientificNotation( _historyOutputFields[_settings->GetNScreenOutput() - 1] ); lineToPrint += tmp; // Last element without comma if( _settings->GetHistoryOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) { From ee543122b79265a14728bece42a4e4290a4c1273 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Tue, 6 Feb 2024 13:34:04 -0500 Subject: [PATCH 071/155] added output verbosity --- examples_hpc/lattice/mesh/make_lattice_mesh.sh | 6 ++++-- src/solvers/solverbase.cpp | 3 +++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/examples_hpc/lattice/mesh/make_lattice_mesh.sh b/examples_hpc/lattice/mesh/make_lattice_mesh.sh index 282538be..e9bb36e4 100644 --- a/examples_hpc/lattice/mesh/make_lattice_mesh.sh +++ b/examples_hpc/lattice/mesh/make_lattice_mesh.sh @@ -1,7 +1,9 @@ #rm lattice_n20.su2 lattice_n20.con #rm lattice_n40.su2 lattice_n40.con -rm lattice_n80.su2 lattice_n80.con +#rm lattice_n80.su2 lattice_n80.con +rm lattice_n160.su2 lattice_n160.con #gmsh lattice_rectangular_n20.geo -2 -format su2 -save_all -o lattice_n20.su2 #gmsh lattice_rectangular_n40.geo -2 -format su2 -save_all -o lattice_n40.su2 -gmsh lattice_rectangular_n80.geo -2 -format su2 -save_all -o lattice_n80.su2 +#gmsh lattice_rectangular_n80.geo -2 -format su2 -save_all -o lattice_n80.su2 +gmsh lattice_rectangular_n160.geo -2 -format su2 -save_all -o lattice_n160.su2 diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 226710ec..d43d615e 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -532,6 +532,9 @@ void SolverBase::DrawPreSolverOutput() { log->info( "---------------------------- Solver Starts -----------------------------" ); log->info( "| The simulation will run for {} iterations.", _nEnergies ); log->info( "| The spatial grid contains {} cells.", _nCells ); + if( _settings->GetSolverName() != PN_SOLVER && _settings->GetSolverName() != CSD_PN_SOLVER ) { + log->info( "| The spatial grid contains {} points.", _quadrature->GetNq() ); + } log->info( hLine ); log->info( lineToPrint ); log->info( hLine ); From 0c3e9137be2cc04c219e172b4cfb3d541eb8aad7 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 6 Feb 2024 13:35:57 -0500 Subject: [PATCH 072/155] fixed scatter xs bug --- src/common/config.cpp | 5 ++++- src/problems/lattice.cpp | 10 +++++++--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 88632408..97bbdfb5 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -281,8 +281,11 @@ void Config::SetConfigOptions() { // Lattice related options /*! @brief LATTICE_DSGN_ABSORPTION_BLUE \n DESCRIPTION: Sets absorption rate for the blue blocks (absorption blocks) in the lattice test case. \n - * DEFAULT \ingroup Config */ + * DEFAULT 10.0 \ingroup Config */ AddDoubleOption( "LATTICE_DSGN_ABSORPTION_BLUE", _dsgnAbsBlue, 10.0 ); + /*! @brief LATTICE_DSGN_SCATTER_WHITE \n DESCRIPTION: Sets absorption rate for the white blocks (scattering blocks) in the lattice test case. \n + * DEFAULT 1.0 \ingroup Config */ + AddDoubleOption( "LATTICE_DSGN_SCATTER_WHITE", _dsgnScatterWhite, 1.0 ); /*! @brief LATTICE_DSGN_ABSORPTION_INDIVIDUAL \n DESCRIPTION: Sets absorption rate all 7x7 blocks in the lattice test case. Order from upper left * to lower right (row major). \n DEFAULT \ingroup Config */ AddDoubleListOption( "LATTICE_DSGN_ABSORPTION_INDIVIDUAL", _nDsgnAbsIndividual, _dsgnAbsIndividual ); diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index 644b7615..012c180a 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -10,9 +10,9 @@ // Constructor for Ckeckerboard case with Sn Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { - // Initialise crosssections to 1 - _sigmaS = Vector( _mesh->GetNumCells(), _settings->GetLatticeScatterWhite() ); - _sigmaT = Vector( _mesh->GetNumCells(), _settings->GetLatticeScatterWhite() ); + // Initialise scattering crosssections to 1 and absorption cross sections to 0 + _sigmaS = Vector( _mesh->GetNumCells(), 1. ); + _sigmaT = Vector( _mesh->GetNumCells(), 1. ); // Initialize Quantities of interest _curAbsorptionLattice = 0.0; @@ -45,6 +45,10 @@ Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ) : P _sigmaS[j] = 0.0; _sigmaT[j] = _settings->GetLatticeAbsBlue(); } + else if( !IsSource( cellMids[j] ) ) { // White block + _sigmaS[j] = _settings->GetLatticeScatterWhite(); + _sigmaT[j] = _settings->GetLatticeScatterWhite(); + } } } From 50dee15fe6ceebde0f02efd6380f5511380bef0a Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 6 Feb 2024 16:35:19 -0500 Subject: [PATCH 073/155] removed some compiler warnings. fixed test cases for new ghost cell implementation --- src/common/config.cpp | 2 +- src/problems/checkerboard.cpp | 4 +- src/problems/problembase.cpp | 2 +- src/problems/starmapvalidation.cpp | 2 +- src/problems/symmetrichohlraum.cpp | 4 +- src/solvers/csdsnsolver.cpp | 2 +- src/solvers/mnsolver_normalized.cpp | 2 +- src/solvers/pnsolver.cpp | 1 - src/solvers/solverbase.cpp | 7 +- tests/catch2_main.cpp | 12 +- .../MN_solver/checkerboard_MN_reference.vtk | 222 +++++------ .../MN_solver/linesource_MN_MB_reference.vtk | 34 +- ...linesource_MN_MB_regularized_reference.vtk | 34 +- .../linesource_MN_Quad_reference.vtk | 36 +- .../PN_solver/checkerboard_PN_reference.vtk | 362 +++++++++--------- .../PN_solver/linesource_PN_reference.vtk | 36 +- .../SN_solver/checkerboard_SN_reference.vtk | 362 +++++++++--------- .../SN_solver/linesource_SN_reference.vtk | 36 +- .../output/validate_logger_csv_reference | 6 +- .../output/validate_logger_reference | 30 +- tests/test_cases.cpp | 7 +- tools/singularity/kit_rt.def | 2 +- 22 files changed, 606 insertions(+), 599 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 97bbdfb5..e175ec3d 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -1174,7 +1174,7 @@ void Config::InitLogger() { // define filename on root // int pe = 0; // MPI_Comm_rank( MPI_COMM_WORLD, &pe ); - char cfilename[1024]; + // char cfilename[1024]; // if( pe == 0 ) { // get date and time diff --git a/src/problems/checkerboard.cpp b/src/problems/checkerboard.cpp index bfb120b0..9b3bdaf7 100644 --- a/src/problems/checkerboard.cpp +++ b/src/problems/checkerboard.cpp @@ -88,9 +88,9 @@ Checkerboard_Moment::Checkerboard_Moment( Config* settings, Mesh* mesh, Quadratu Checkerboard_Moment::~Checkerboard_Moment() {} -VectorVector Checkerboard_Moment::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _sigmaS ); } +VectorVector Checkerboard_Moment::GetScatteringXS( const Vector& energies ) { return VectorVector( 1u, _sigmaS ); } -VectorVector Checkerboard_Moment::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _sigmaT ); } +VectorVector Checkerboard_Moment::GetTotalXS( const Vector& energies ) { return VectorVector( 1u, _sigmaT ); } std::vector Checkerboard_Moment::GetExternalSource( const Vector& /*energies*/ ) { // In case of PN, spherical basis is per default SPHERICAL_HARMONICS diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index 20031a10..fde3e46f 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -148,7 +148,7 @@ void ProblemBase::SetGhostCells() { } } -const Vector& ProblemBase::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { return cell_sol; } +const Vector& ProblemBase::GetGhostCellValue( int /*idx_cell*/, const Vector& cell_sol ) { return cell_sol; } void ProblemBase::ComputeMaxOrdinatewiseOutflow( const VectorVector& solution ) { if( _settings->GetSolverName() == SN_SOLVER || _settings->GetSolverName() == CSD_SN_SOLVER ) { diff --git a/src/problems/starmapvalidation.cpp b/src/problems/starmapvalidation.cpp index f17adcba..d5d5e436 100644 --- a/src/problems/starmapvalidation.cpp +++ b/src/problems/starmapvalidation.cpp @@ -15,7 +15,7 @@ StarMapValidation_SN::StarMapValidation_SN( Config* settings, Mesh* mesh, Quadra StarMapValidation_SN::~StarMapValidation_SN() {} -VectorVector StarMapValidation_SN::GetScatteringXS( const Vector& energies ) { +VectorVector StarMapValidation_SN::GetScatteringXS( const Vector& /*energies*/ ) { // @TODO // Specified in subclasses return VectorVector( 1, Vector( 1, 0.0 ) ); diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index d03e422b..c7a6d131 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -245,7 +245,7 @@ void SymmetricHohlraum::SetProbingCellsLineGreen() { double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); - double dx = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); + // double dx = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); unsigned nHorizontalProbingCells = (unsigned)std::ceil( _nProbingCellsLineGreen / 2 * ( horizontalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); @@ -297,7 +297,7 @@ std::vector SymmetricHohlraum::linspace2D( const std::vector& double stepX = ( end[0] - start[0] ) / ( num_points - 1 ); double stepY = ( end[1] - start[1] ) / ( num_points - 1 ); - for( int i = 0; i < num_points; ++i ) { + for( unsigned i = 0; i < num_points; ++i ) { double x = start[0] + i * stepX; double y = start[1] + i * stepY; diff --git a/src/solvers/csdsnsolver.cpp b/src/solvers/csdsnsolver.cpp index 69159659..fe9f593a 100644 --- a/src/solvers/csdsnsolver.cpp +++ b/src/solvers/csdsnsolver.cpp @@ -119,7 +119,7 @@ void CSDSNSolver::IterPreprocessing( unsigned idx_pseudotime ) { Vector u = _M * _sol[j]; unsigned counter = 0; - for( unsigned l = 0; l <= _polyDegreeBasis; ++l ) { + for( int l = 0; l <= (int)_polyDegreeBasis; ++l ) { for( int m = -l; m <= l; ++m ) { u[counter] = u[counter] / ( 1.0 + _dT * sigmaTAtEnergy[l] ); counter++; diff --git a/src/solvers/mnsolver_normalized.cpp b/src/solvers/mnsolver_normalized.cpp index 3aa0d2a3..06db2bbf 100644 --- a/src/solvers/mnsolver_normalized.cpp +++ b/src/solvers/mnsolver_normalized.cpp @@ -31,7 +31,7 @@ MNSolverNormalized::MNSolverNormalized( Config* settings ) : MNSolver( settings MNSolverNormalized::~MNSolverNormalized() {} -void MNSolverNormalized::IterPreprocessing( unsigned idx_pseudotime ) { +void MNSolverNormalized::IterPreprocessing( unsigned /*idx_pseudotime*/ ) { Vector alpha_norm_per_cell( _nCells, 0 ); // ONLY FOR DEBUGGING! THIS SLOWS DOWN THE CODE // if (idx_pseudotime < 1600){ diff --git a/src/solvers/pnsolver.cpp b/src/solvers/pnsolver.cpp index 15a16995..46bf63d8 100644 --- a/src/solvers/pnsolver.cpp +++ b/src/solvers/pnsolver.cpp @@ -207,7 +207,6 @@ void PNSolver::FluxUpdatePseudo2D() { void PNSolver::FVMUpdate( unsigned idx_iter ) { if( _Q.size() == 1u && _sigmaT.size() == 1u && _sigmaS.size() == 1u ) { // Physics constant in time - // Loop over all spatial cells #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index d43d615e..dca2a80e 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -131,6 +131,7 @@ void SolverBase::Solve() { // Loop over energies (pseudo-time of continuous slowing down approach) for( unsigned iter = 0; iter < _nIter; iter++ ) { if( rkStages == 2 ) solRK0 = _sol; + for( unsigned rkStep = 0; rkStep < rkStages; ++rkStep ) { // --- Prepare Boundaries and temp variables IterPreprocessing( iter + rkStep ); @@ -144,7 +145,6 @@ void SolverBase::Solve() { // --- Update Solution within Runge Kutta Stages _sol = _solNew; } - // --- Iter Postprocessing --- IterPostprocessing( iter ); @@ -267,7 +267,6 @@ void SolverBase::PrepareScreenOutput() { void SolverBase::WriteScalarOutput( unsigned idx_iter ) { unsigned nFields = (unsigned)_settings->GetNScreenOutput(); - double mass = 0.0; const VectorVector probingMoments = _problem->GetCurrentProbeMoment(); // -- Screen Output for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { @@ -533,7 +532,7 @@ void SolverBase::DrawPreSolverOutput() { log->info( "| The simulation will run for {} iterations.", _nEnergies ); log->info( "| The spatial grid contains {} cells.", _nCells ); if( _settings->GetSolverName() != PN_SOLVER && _settings->GetSolverName() != CSD_PN_SOLVER ) { - log->info( "| The spatial grid contains {} points.", _quadrature->GetNq() ); + log->info( "| The velocity grid contains {} points.", _quadrature->GetNq() ); } log->info( hLine ); log->info( lineToPrint ); @@ -582,7 +581,7 @@ void SolverBase::DrawPostSolverOutput() { void SolverBase::SolverPreprocessing() {} -void SolverBase::IterPostprocessing( unsigned idx_iter ) { +void SolverBase::IterPostprocessing( unsigned /*idx_iter*/ ) { // --- Compute Quantities of interest for Volume and Screen Output --- ComputeScalarFlux(); // Needs to be called first is a solver function diff --git a/tests/catch2_main.cpp b/tests/catch2_main.cpp index b886bbb0..3bc2add2 100644 --- a/tests/catch2_main.cpp +++ b/tests/catch2_main.cpp @@ -1,19 +1,19 @@ #define CATCH_CONFIG_RUNNER #include "catch.hpp" -#include -#define PY_ARRAY_UNIQUE_SYMBOL KITRT_ARRAY_API +// #include +// #define PY_ARRAY_UNIQUE_SYMBOL KITRT_ARRAY_API #include int main( int argc, char** argv ) { // MPI_Init( &argc, &argv ); - wchar_t* program = Py_DecodeLocale( argv[0], NULL ); - Py_SetProgramName( program ); + // wchar_t* program = Py_DecodeLocale( argv[0], NULL ); + // Py_SetProgramName( program ); const int result = Catch::Session().run( argc, argv ); - if( Py_IsInitialized() ) Py_Finalize(); + // if( Py_IsInitialized() ) Py_Finalize(); - std::filesystem::remove_all( std::string( TESTS_PATH ) + "result" ); + // std::filesystem::remove_all( std::string( TESTS_PATH ) + "result" ); // MPI_Finalize(); return result; diff --git a/tests/input/validation_tests/MN_solver/checkerboard_MN_reference.vtk b/tests/input/validation_tests/MN_solver/checkerboard_MN_reference.vtk index 701cdc0d..7c57091d 100644 --- a/tests/input/validation_tests/MN_solver/checkerboard_MN_reference.vtk +++ b/tests/input/validation_tests/MN_solver/checkerboard_MN_reference.vtk @@ -1727,71 +1727,76 @@ CELL_TYPES 1056 CELL_DATA 1056 FIELD FieldData 1 radiation%20flux%20density 1 1056 double --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 -0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 -0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 -0.18696358634 0.18696358634 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 0.081870111779 0.081870111779 0.081870111779 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 +0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 +0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 +0.16533650084 0.16533650084 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 -0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 0.081870111779 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 0.081870111779 0.081870111779 -0.081870111779 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 @@ -1815,8 +1820,6 @@ radiation%20flux%20density 1 1056 double 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 @@ -1824,12 +1827,9 @@ radiation%20flux%20density 1 1056 double 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 @@ -1848,66 +1848,66 @@ radiation%20flux%20density 1 1056 double POINT_DATA 565 FIELD FieldData 1 radiation%20flux%20density 1 565 double -0.0001 0.0001 0.0001 0.0001 0.05728721318 0.053190063413 0.03885003923 0.05728721318 0.03885003923 -0.05728721318 0.05728721318 0.053190063413 0.03885003923 0.05728721318 0.053190063413 0.03885003923 0.03885003923 0.05728721318 -0.053190063413 0.03885003923 0.03885003923 0.05728721318 0.086633444145 0.086633444145 0.05728721318 0.03885003923 0.03885003923 -0.05728721318 0.053190063413 0.03885003923 0.053190063413 0.05728721318 0.053190063413 0.05728721318 0.05728721318 0.053190063413 -0.086633444145 0.086633444145 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.040985055889 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.040985055889 0.027356703926 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.040985055889 0.027356703926 0.027356703926 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.03885003923 0.03885003923 -0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 -0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 -0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 -0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 -0.03885003923 0.03885003923 0.13441684906 0.13441684906 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 -0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 -0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 -0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 -0.13441684906 0.13441684906 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 0.03885003923 -0.03885003923 0.13441684906 0.13441684906 0.03885003923 0.03885003923 0.13441684906 0.13441684906 0.03885003923 0.03885003923 -0.03885003923 0.03885003923 0.03885003923 0.03885003923 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 0.18696358634 0.18696358634 -0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 0.18696358634 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 -0.0041700333184 --0.0041700333184 0.070188667239 0.081870111779 0.081870111779 0.071648847807 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.070188667239 0.068241759816 -0.081870111779 0.081870111779 0.081870111779 0.070188667239 0.070188667239 0.070188667239 0.070188667239 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 -0.068241759816 0.081870111779 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.070188667239 0.070188667239 0.070188667239 0.068241759816 0.068241759816 -0.070188667239 0.070188667239 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.070188667239 0.070188667239 -0.070188667239 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 -0.068241759816 0.081870111779 0.070188667239 0.070188667239 0.070188667239 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.070188667239 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.068241759816 0.049162067067 0.049162067067 -0.049162067067 0.049162067067 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.065516089423 0.065516089423 0.065516089423 0.081870111779 0.081870111779 0.065516089423 0.065516089423 0.065516089423 -0.065516089423 0.065516089423 0.081870111779 0.081870111779 0.065516089423 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.062346104343 0.059092103104 0.047703098766 0.062346104343 0.047703098766 +0.062346104343 0.062346104343 0.059092103104 0.047703098766 0.062346104343 0.059092103104 0.047703098766 0.047703098766 0.062346104343 +0.059092103104 0.047703098766 0.047703098766 0.062346104343 0.085653202539 0.085653202539 0.062346104343 0.047703098766 0.047703098766 +0.062346104343 0.059092103104 0.047703098766 0.059092103104 0.062346104343 0.059092103104 0.062346104343 0.062346104343 0.059092103104 +0.085653202539 0.085653202539 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.047703098766 0.047703098766 +0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 +0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 +0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 +0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 +0.047703098766 0.047703098766 0.12360330631 0.12360330631 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 +0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 +0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 +0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 +0.12360330631 0.12360330631 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 +0.047703098766 0.12360330631 0.12360330631 0.047703098766 0.047703098766 0.12360330631 0.12360330631 0.047703098766 0.047703098766 +0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.16533650084 0.16533650084 +0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.16533650084 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 +0.013536085754 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_MB_reference.vtk b/tests/input/validation_tests/MN_solver/linesource_MN_MB_reference.vtk index c6ae5536..018dd05e 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_MB_reference.vtk +++ b/tests/input/validation_tests/MN_solver/linesource_MN_MB_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -0.08266884102 0.08266884102 0.08266884102 0.08266884102 11.553409168 0.08266884102 0.08266884102 10.282226617 0.08266884102 -0.08266884102 14.371356938 11.183445944 14.048992753 9.9123486414 0.08266884102 0.08266884102 0.0012566370614 0.08266884102 -0.0012566370614 0.0012566370614 0.0012566370614 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 0.0012566370614 0.08266884102 0.0012566370614 0.0012566370614 0.08266884102 0.08266884102 14.044151291 -13.903440476 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.08266884102 0.08266884102 2.7117483912 2.8350896209 0.08266884102 0.08266884102 5.2353326683 4.4941253122 -2.3257709834 2.8793876145 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 11.71936425 0.08266884102 0.08266884102 10.690245369 0.08266884102 +0.08266884102 12.624818597 11.587659453 12.354416081 10.355879598 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 4.4679528395 3.3545817532 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 12.386654095 +12.466645295 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 3.1279121956 3.2707132634 0.08266884102 0.08266884102 6.067456103 5.2059907295 +2.6801483303 3.3329102132 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 5.17078519 3.8718953757 0.08266884102 0.08266884102 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 14.091985364 0.028394038381 0.028394038381 0.028394038381 0.028394038381 -0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 -0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.069100140361 0.069100140361 -0.071038526169 0.069100140361 0.069100140361 0.069100140361 0.071038526169 0.069100140361 0.069100140361 0.52084876606 2.5329790899 -0.45651919808 0.069100140361 0.54140563766 2.7866507523 0.069100140361 3.1341608989 0.5487886366 0.069100140361 3.5841168665 -0.069100140361 0.069100140361 0.071038526169 0.071038526169 7.992278784 8.4785360663 8.234528111 7.756572496 0.050103959437 -0.050103959437 0.050103959437 0.050103959437 1.1132016065 0.96496013525 0.73705142346 0.95972564071 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 12.458133517 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.59020940012 2.7353244411 +0.51558208924 0.08266884102 0.61400957809 3.0134767552 0.08266884102 3.3957611531 0.62437573639 0.08266884102 3.867602011 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 7.8236637631 8.2573616502 7.9875730844 7.5642375365 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 1.2796262934 1.1073332187 0.84051414796 1.1002921108 diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk b/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk index 16f009c0..e3709681 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk +++ b/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -0.11046737879 0.11046737879 0.11046737879 0.11046737879 12.083826665 0.11046737879 0.11046737879 9.9450417419 0.11046737879 -0.11046737879 18.636248722 11.146551455 18.675165937 9.1116823417 0.11046737879 0.11046737879 0.0012566370614 0.11046737879 -0.0012566370614 0.0012566370614 0.0012566370614 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.0012566370614 0.11046737879 0.0012566370614 0.0012566370614 0.11046737879 0.11046737879 18.538008753 -17.63739462 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.11046737879 0.11046737879 1.1521662635 1.2076820477 0.11046737879 0.11046737879 2.903492959 1.8788889355 -0.99059224008 1.2177533116 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 12.544935932 0.11046737879 0.11046737879 10.586563099 0.11046737879 +0.11046737879 16.931645497 11.834853478 17.294766127 9.7425720306 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 2.4325913084 1.4095050957 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 17.190867746 +16.55803337 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 1.3342683961 1.4127111651 0.11046737879 0.11046737879 3.4519413037 2.2314080198 +1.1431685685 1.4433081472 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 2.8657655202 1.6461838103 0.11046737879 0.11046737879 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 18.371704508 0.037660217639 0.037660217639 0.037660217639 0.037660217639 -0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 -0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.092265588505 0.092265588505 -0.094865844261 0.092265588505 0.092265588505 0.092265588505 0.094865844261 0.092265588505 0.092265588505 0.28408385958 1.9309738303 -0.25715485567 0.092265588505 0.29333649029 2.1489385036 0.092265588505 2.4290993064 0.29501503426 0.092265588505 2.9585521781 -0.092265588505 0.092265588505 0.094865844261 0.094865844261 8.4876551035 9.2337641777 9.0130034001 8.2916319113 0.066783082101 -0.066783082101 0.066783082101 0.066783082101 0.66907249484 0.46415169014 0.37027492218 0.57489216472 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 16.993828185 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.31443421501 2.0919018553 +0.28258424374 0.11046737879 0.32750800985 2.3294767018 0.11046737879 2.6401619636 0.33260750687 0.11046737879 3.199007482 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 8.4016243702 9.0725742117 8.8209792455 8.181836316 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.77876216378 0.534655507 0.41761066509 0.66152700708 diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_Quad_reference.vtk b/tests/input/validation_tests/MN_solver/linesource_MN_Quad_reference.vtk index 8db1bd9c..5302f853 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_Quad_reference.vtk +++ b/tests/input/validation_tests/MN_solver/linesource_MN_Quad_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 11.487578064 0.0012566370614 0.0012566370614 10.179038978 0.0012566370614 -0.0012566370614 14.151697856 11.103676592 13.868392577 9.8020123353 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 13.855952468 -13.741722476 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 2.6292358748 2.7507355034 0.0012566370614 0.0012566370614 5.1943460217 4.4157088882 -2.2362083711 2.7970979508 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 4.4159193231 3.2642409843 0.0012566370614 0.0012566370614 +0.0012566358187 0.0012566380999 0.0012566368395 0.0012566385388 11.665345125 0.0012566371556 0.0012566374341 10.591451466 0.0012566365479 +0.0012566368417 12.394699011 11.492545735 12.177055096 10.246484706 0.0012566373378 0.0012566381754 0.0012566370067 0.0012566374249 +0.0012566370483 0.0012566368578 0.0012566368824 0.0012566370386 0.0012566373129 0.001256637679 0.0012566366837 0.0012566385987 0.0012566362889 +0.0012566379058 0.0012566368447 0.0012566365405 0.0012566382679 0.0012566371998 0.0012566357493 0.0012566368209 0.0012566364372 0.0012566365378 +0.0012566367438 0.0012566363928 0.0012566372677 0.0012566371771 0.0012566372569 0.0012566368897 0.0012566363029 0.0012566371299 12.197616659 +12.28747539 0.0012566360478 0.0012566370539 0.0012566366148 0.0012566370164 0.0012566373402 0.0012566374724 0.0012566372974 0.0012566364407 +0.0012566366283 0.0012566375785 0.0012566373061 0.00125663798 0.00125663798 0.0012566373061 0.0012566375736 0.0012566373081 0.0012566380532 +0.0012566379993 0.0012566366655 0.0012566364181 3.0503114202 3.1912828184 0.0012566371397 0.0012566375072 6.0264122265 5.1230158502 +2.5942948326 3.2450610007 0.0012566378185 0.0012566362552 0.0012566374678 0.0012566361304 0.0012566374345 0.0012566374968 0.0012566363822 +0.0012566378438 0.0012566371813 0.0012566372038 0.0012566379385 0.0012566374186 0.0012566359147 0.0012566372474 0.0012566369057 0.0012566367571 +0.001256638078 0.0012566367965 5.123258239 3.7870503553 0.0012566373122 0.0012566364578 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 13.904441344 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.43925317668 2.4452044154 -0.37374859274 0.0012566370614 0.45950311478 2.6996308962 0.0012566370614 3.053375557 0.46723018936 0.0012566370614 3.5169355533 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 7.8795053954 8.3702293699 8.1220884198 7.6408428376 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 1.039874514 0.88414708728 0.65385350651 0.88418917427 +0.0012566374399 0.001256637644 0.0012566380166 0.0012566376527 12.264211539 0.0012566375488 0.0012566373628 0.0012566368908 0.0012566368963 +0.0012566368724 0.0012566372552 0.0012566369938 0.0012566371644 0.0012566367979 0.0012566373065 0.0012566369676 0.0012566370368 0.0012566368506 +0.001256637017 0.0012566373606 0.0012566378059 0.0012566376122 0.00125663677 0.0012566367798 0.0012566369068 0.0012566370657 0.0012566367202 +0.0012566369825 0.0012566368071 0.0012566370863 0.0012566374515 0.0012566367487 0.0012566372342 0.001256637101 0.50943243465 2.6491434783 +0.43342966969 0.0012566370822 0.53292766724 2.9289257585 0.0012566371444 3.3107320829 0.54189069784 0.0012566370072 3.803130917 +0.0012566370636 0.0012566369552 0.0012566371252 0.0012566369332 7.7060985443 8.1461337707 7.8777640559 7.4487264386 0.001256636991 +0.0012566371384 0.0012566374279 0.0012566374748 1.2062877551 1.0256084796 0.75841538095 1.0256569574 diff --git a/tests/input/validation_tests/PN_solver/checkerboard_PN_reference.vtk b/tests/input/validation_tests/PN_solver/checkerboard_PN_reference.vtk index 8669fe0d..466abcf3 100644 --- a/tests/input/validation_tests/PN_solver/checkerboard_PN_reference.vtk +++ b/tests/input/validation_tests/PN_solver/checkerboard_PN_reference.vtk @@ -1727,187 +1727,187 @@ CELL_TYPES 1056 CELL_DATA 1056 FIELD FieldData 1 radiation%20flux%20density 1 1056 double --1.3214247139e-08 -1.3214247139e-08 2.9409426012e-06 2.9458135259e-06 1.4723809641e-06 1.4723809641e-06 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 -1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.4640015676e-05 1.4640015676e-05 1.4650161881e-05 1.4650161881e-05 --1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 1.6993300291e-05 1.699202446e-05 1.699202446e-05 1.6993300291e-05 -1.3214247139e-08 --1.3214247139e-08 2.9458135259e-06 2.9409426012e-06 1.4723809641e-06 1.4723809641e-06 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 -1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.4650161881e-05 1.4640015676e-05 1.4650161881e-05 1.4640015676e-05 -1.3214247139e-08 --1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 1.699202446e-05 1.699202446e-05 1.6993300291e-05 1.6993300291e-05 -1.3214247139e-08 -1.3214247139e-08 -2.9458135259e-06 2.9409426012e-06 1.4723809641e-06 1.4723809641e-06 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 -1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.4640015676e-05 1.4650161881e-05 1.4640015676e-05 1.4650161881e-05 -1.3214247139e-08 -1.3214247139e-08 --1.3214247139e-08 -1.3214247139e-08 1.6993300291e-05 1.6993300291e-05 1.699202446e-05 1.699202446e-05 -1.3214247139e-08 -1.3214247139e-08 2.996962064e-06 -2.9878096325e-06 1.4723809641e-06 1.4723809641e-06 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 -1.2407821017e-05 1.2407821017e-05 1.4531844834e-05 1.4531844834e-05 1.4551424497e-05 1.4551424497e-05 -1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 --1.3214247139e-08 1.6991412343e-05 1.6993912972e-05 1.6993912972e-05 1.6991412343e-05 -1.3214247139e-08 -1.3214247139e-08 3.0648724631e-06 2.9841279616e-06 -1.4723809641e-06 1.4723809641e-06 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 -1.2407821017e-05 1.4383315209e-05 1.4559272576e-05 1.4383315209e-05 1.4559272576e-05 -1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 -1.6981336791e-05 1.7004050674e-05 1.7004050674e-05 1.6981336791e-05 -1.3214247139e-08 -1.3214247139e-08 2.9458135259e-06 2.9409426012e-06 1.4723809641e-06 -1.4723809641e-06 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 -1.4640015676e-05 1.4650161881e-05 1.4650161881e-05 1.4640015676e-05 -1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 1.6993300291e-05 -1.6993300291e-05 1.699202446e-05 1.699202446e-05 0.31538042369 0.31538042369 0.27857938068 0.27855644694 0.27352186727 0.27352186727 -0.26173335538 0.26173335538 0.26173335538 0.26173335538 0.26173335538 0.26173335538 0.26173335538 0.26173335538 0.30071704756 -0.30072719377 0.30072719377 0.30071704756 0.31538042369 0.31538042369 0.31538042369 0.31538042369 0.29837518498 0.29837390915 -0.29837390915 0.29837518498 -1.3214247139e-08 -1.3214247139e-08 2.9409426012e-06 2.9458135259e-06 1.4723809641e-06 1.4723809641e-06 1.2407821017e-05 -1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.4640015676e-05 1.4650161881e-05 -1.4640015676e-05 1.4650161881e-05 -1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 1.699202446e-05 1.6993300291e-05 1.699202446e-05 -1.6993300291e-05 -1.3214247139e-08 -1.3214247139e-08 3.0648724631e-06 2.9841279616e-06 1.4723809641e-06 1.4723809641e-06 1.2407821017e-05 1.2407821017e-05 -1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.4383315209e-05 1.4559272576e-05 1.4383315209e-05 -1.4559272576e-05 -1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 1.6981336791e-05 1.7004050674e-05 1.6981336791e-05 1.7004050674e-05 --1.3214247139e-08 -1.3214247139e-08 2.9458135259e-06 2.9409426012e-06 1.4723809641e-06 1.4723809641e-06 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 -1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.4650161881e-05 1.4640015676e-05 1.4640015676e-05 1.4650161881e-05 --1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 1.699202446e-05 1.6993300291e-05 1.6993300291e-05 1.699202446e-05 -1.3214247139e-08 --1.3214247139e-08 2.9458135259e-06 2.9409426012e-06 1.4723809641e-06 1.4723809641e-06 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 -1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.4650161881e-05 1.4640015676e-05 1.4650161881e-05 1.4640015676e-05 -1.3214247139e-08 --1.3214247139e-08 -1.3214247139e-08 -1.3214247139e-08 1.6993300291e-05 1.699202446e-05 1.6993300291e-05 1.699202446e-05 -1.3214247139e-08 -1.3214247139e-08 -3.0648724631e-06 2.9841279616e-06 1.4723809641e-06 1.4723809641e-06 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 -1.2407821017e-05 1.2407821017e-05 1.2407821017e-05 1.4383315209e-05 1.4383315209e-05 1.4559272576e-05 1.4559272576e-05 -1.3214247139e-08 -1.3214247139e-08 --1.3214247139e-08 -1.3214247139e-08 1.7004050674e-05 1.6981336791e-05 1.7004050674e-05 1.6981336791e-05 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 9.5772889026e-05 9.4139713947e-05 9.4139713947e-05 9.4139713947e-05 9.4104201487e-05 -9.4104201487e-05 9.4250686876e-05 0.0001 0.0001 0.0001 0.0001 9.5498050152e-05 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 9.4354376388e-05 9.4354376388e-05 -9.4354376388e-05 9.428642518e-05 9.428642518e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 8.015797146e-05 0.0001 8.0360766283e-05 8.8953655014e-05 0.0001 8.9106431079e-05 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 9.4189668817e-05 9.4189668817e-05 9.4189668817e-05 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 9.4333027633e-05 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 7.9876181173e-05 8.0422190914e-05 8.1651956251e-05 8.1651956251e-05 -8.0764894926e-05 8.0422190914e-05 8.0422190914e-05 8.0422190914e-05 8.0764894926e-05 8.0764894926e-05 8.0764894926e-05 8.094282457e-05 8.1651956251e-05 -8.0764894926e-05 0.035306989382 8.1651956251e-05 8.0233405529e-05 8.9336365631e-05 8.1651956251e-05 8.0422190914e-05 8.1123011862e-05 8.0648156586e-05 -0.0001 0.0001 8.0580861598e-05 7.9823228996e-05 7.9853305914e-05 8.0608481961e-05 0.0001 0.0001 0.0001 -0.0001 9.4689043825e-05 9.4763430636e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 9.4542131489e-05 9.5248263925e-05 9.5248263925e-05 9.5248263925e-05 0.0001 -0.0001 9.5203457888e-05 9.5203457888e-05 9.378974697e-05 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 7.9520494055e-05 7.9108498482e-05 7.9342117537e-05 7.9520494055e-05 7.9108498482e-05 7.9108498482e-05 -7.9520494055e-05 7.9128335771e-05 7.9108498482e-05 7.9520494055e-05 7.9108498482e-05 7.9520494055e-05 0.0001 8.0700415932e-05 7.9876181173e-05 -8.0897331688e-05 8.0897331688e-05 7.9876181173e-05 8.0072402769e-05 7.9876181173e-05 8.0540218037e-05 7.9876181173e-05 8.0540218037e-05 7.9490888372e-05 -8.0072402769e-05 8.0072402769e-05 7.9876181173e-05 8.0897331688e-05 7.9876181173e-05 8.0758113009e-05 7.9876181173e-05 8.0540218037e-05 8.0325543177e-05 -7.9876181173e-05 7.9876181173e-05 7.9876181173e-05 7.9876181173e-05 7.9876181173e-05 8.0325543177e-05 8.0540218037e-05 7.9328440753e-05 7.9876181173e-05 -7.9876181173e-05 8.0325543177e-05 8.074132718e-05 7.9876181173e-05 0.0001 0.0001 0.0001 9.40668846e-05 0.0001 -9.4157390304e-05 9.4265074154e-05 9.4265074154e-05 9.4265074154e-05 9.4227158489e-05 9.4227158489e-05 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 9.5322853471e-05 9.5322853471e-05 9.5322853471e-05 9.531852199e-05 0.0001 0.0001 -0.0001 0.0001 7.917592275e-05 7.9127000578e-05 0.0001 0.0001 0.0001 8.9591581171e-05 8.8797947612e-05 -8.8475466698e-05 8.8033677917e-05 8.8033677917e-05 8.8202208477e-05 8.8863757556e-05 8.8628194805e-05 8.9436319219e-05 8.8628194805e-05 8.9436319219e-05 -8.8688473309e-05 8.8033677917e-05 8.8863757556e-05 8.8033677917e-05 8.8033677917e-05 8.8863757556e-05 8.8202208477e-05 8.8033677917e-05 8.8202208477e-05 -8.9436319219e-05 8.9634131495e-05 0.0001 8.7491905117e-05 8.7491905117e-05 8.9279954397e-05 8.9279954397e-05 8.8604749901e-05 8.7957363411e-05 -8.7491905117e-05 8.7491905117e-05 8.9279954397e-05 8.9279954397e-05 8.9279954397e-05 8.7491905117e-05 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 7.8708204653e-05 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -6.7104686192e-05 0.011177209234 6.7104686192e-05 6.7104686192e-05 6.7104686192e-05 6.7104686192e-05 6.7104686192e-05 6.7104686192e-05 6.7104686192e-05 -6.7104686192e-05 0.042354858605 6.7104686192e-05 6.7104686192e-05 6.7104686192e-05 6.7104686192e-05 6.7104686192e-05 6.7104686192e-05 6.7104686192e-05 -6.7104686192e-05 0.042354858605 6.7104686192e-05 6.7104686192e-05 0.011177209234 6.7104686192e-05 6.6965948211e-05 6.6965948211e-05 6.6965948211e-05 -6.6965948211e-05 6.6659716012e-05 6.6659716012e-05 6.6645194048e-05 6.6645194048e-05 0.0001 8.7227177329e-05 8.7139340622e-05 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -8.5040784013e-05 0.0001 0.0001 0.0001 8.5278010133e-05 0.0001 0.0001 0.0001 0.0001 -8.4125185447e-05 8.973168712e-05 8.4189203706e-05 0.0001 0.0001 0.0001 0.0001 8.4260536546e-05 7.7447690067e-05 -0.0001 0.0001 0.0001 8.4937498656e-05 8.4937498656e-05 8.4352368871e-05 8.4937498656e-05 8.4352368871e-05 8.4937498656e-05 -8.4411973079e-05 8.4352368871e-05 8.4352368871e-05 8.4352368871e-05 8.4937498656e-05 8.4701828613e-05 0.0001 0.0001 0.0001 -0.0001 8.6337436364e-05 8.5068441829e-05 8.6099979554e-05 0.014000020446 8.6099979554e-05 8.6099979554e-05 8.6099979554e-05 8.6099979554e-05 -8.6099979554e-05 8.6099979554e-05 0.014000020446 8.6099979554e-05 8.6099979554e-05 8.6099979554e-05 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 9.1237516736e-05 9.2262592989e-05 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 8.3530594394e-05 8.3606224154e-05 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.036655972405 -8.0199283668e-05 7.8327924185e-05 7.8327924185e-05 6.6965948211e-05 6.6965948211e-05 6.6965948211e-05 0.042559149812 0.01125488445 6.6965948211e-05 -0.01125488445 0.042559149812 8.5435361256e-05 0.014645059081 0.014645059081 8.5435361256e-05 0.0001 0.0001 0.0001 -0.0001 8.2995373409e-05 8.2992872781e-05 8.2992872781e-05 8.2995373409e-05 0.0001 0.0001 8.0119964609e-05 8.0110933199e-05 -0.041958556419 7.8327924185e-05 6.6965948211e-05 6.6965948211e-05 0.042559149812 0.01125488445 0.01125488445 6.6965948211e-05 6.6965948211e-05 -0.042559149812 8.5346770077e-05 8.5336623872e-05 8.5346770077e-05 8.5336623872e-05 0.0001 0.0001 0.0001 0.0001 -0.017106514538 0.017105238707 8.2993485462e-05 8.2994761293e-05 0.0001 0.0001 8.0352065461e-05 0.03671821061 7.8327924185e-05 -7.8327924185e-05 6.6965948211e-05 0.01125488445 6.6965948211e-05 0.042559149812 6.6965948211e-05 0.042559149812 6.6965948211e-05 0.01125488445 -0.014672486823 8.5603470544e-05 8.5603470544e-05 0.014672486823 0.0001 0.0001 0.0001 0.0001 8.3005448962e-05 -8.2982735079e-05 8.2982735079e-05 8.3005448962e-05 +7.4699452581e-08 7.4699452581e-08 9.3556722866e-06 9.4129888851e-06 1.0601792961e-05 1.0648506575e-05 1.1863527148e-05 1.1839024739e-05 1.0863906171e-05 +1.1746982991e-05 1.1772200774e-05 1.1826861157e-05 1.078436938e-05 1.1857247471e-05 3.7160895257e-06 3.7160886308e-06 3.7164600036e-06 3.7164568374e-06 +8.3477388309e-06 8.347734371e-06 8.3445203051e-06 8.3445186978e-06 3.6944401273e-06 3.6942456746e-06 3.694259059e-06 3.6944317336e-06 7.4699452581e-08 +7.4699452581e-08 9.3285414747e-06 9.3556722866e-06 1.0648513053e-05 1.0545750962e-05 1.1826861888e-05 1.0784029927e-05 1.1839024034e-05 1.0852690813e-05 +1.1777437064e-05 1.1838006392e-05 1.0784369515e-05 1.0852753678e-05 3.7164579115e-06 3.7160882248e-06 3.7164600036e-06 3.716090445e-06 8.347735034e-06 +8.3445166674e-06 8.3477388309e-06 8.3445202154e-06 3.6942563239e-06 3.6942529627e-06 3.6944415477e-06 3.6944332251e-06 7.4699452581e-08 7.4699452581e-08 +9.3295551294e-06 9.3731530997e-06 1.0627675943e-05 1.0695603543e-05 1.0746682237e-05 1.1803668245e-05 1.1918564102e-05 1.1794531107e-05 1.1743893618e-05 +1.1747323045e-05 1.0863839791e-05 1.1863598307e-05 3.7160852889e-06 3.7164585006e-06 3.7160894166e-06 3.7164556997e-06 8.3477387272e-06 8.3477382208e-06 +8.34452003e-06 8.3445204328e-06 3.6944391284e-06 3.694434529e-06 3.6942558134e-06 3.6942505849e-06 7.4676387434e-08 7.4676387434e-08 9.3491853313e-06 +9.3311621914e-06 1.0545713841e-05 1.0695904542e-05 1.0780321232e-05 1.0769841193e-05 0.00086536222141 1.0852645117e-05 1.0863925525e-05 0.00086527929071 +1.0863799961e-05 1.078032337e-05 3.7118063014e-06 3.7118052314e-06 3.7126171252e-06 3.7126181958e-06 8.3263280138e-06 8.3325863043e-06 8.3263263142e-06 +8.332588004e-06 3.694175464e-06 3.6945092356e-06 3.6945137963e-06 3.6941709036e-06 7.4677490414e-08 7.4677490414e-08 9.2430506344e-06 9.3357996444e-06 +1.0603054221e-05 1.0695911379e-05 0.00085942993177 0.00086527955589 1.0737926293e-05 1.0863337335e-05 1.1778540747e-05 1.0770105681e-05 1.1868679693e-05 +1.0864383505e-05 3.7052375193e-06 3.7129253633e-06 3.7052357612e-06 3.7129253633e-06 8.2900238371e-06 8.3463965772e-06 8.2900303241e-06 8.3463926512e-06 +3.6926767227e-06 3.6960088358e-06 3.6960108192e-06 3.6926754652e-06 7.4699452581e-08 7.4699452581e-08 9.3827377244e-06 9.3731529056e-06 1.0627675943e-05 +1.0601792961e-05 1.0772876578e-05 1.0863834323e-05 1.1918563397e-05 1.1747322525e-05 1.1857316181e-05 1.0863834161e-05 1.0772873842e-05 1.175853724e-05 +3.716084678e-06 3.7164545381e-06 3.7164592026e-06 3.716084678e-06 8.3477343183e-06 8.3477387272e-06 8.3445246237e-06 8.3445202246e-06 3.6944391284e-06 +3.694438913e-06 3.6942516799e-06 3.6942560511e-06 0.33396556441 0.33396556441 0.29240390883 0.29235708674 0.2875441177 0.28742380993 +0.27225876361 0.27226434721 0.27218448512 0.27218455079 0.27218448513 0.2722587636 0.27226434721 0.27218455079 0.31214987902 +0.31216273634 0.31216273634 0.31214987902 0.32569579935 0.32569257596 0.32569579936 0.32569257597 0.30928989581 0.30928805821 +0.3092880582 0.30928989581 7.4699452581e-08 7.4699452581e-08 9.2869495131e-06 9.4074651075e-06 1.0695948064e-05 1.0545757081e-05 1.0784026583e-05 +1.0773214345e-05 1.0852678705e-05 1.0863903723e-05 0.00086528266232 1.0863835646e-05 0.00086536220169 1.0784024527e-05 3.7160863491e-06 3.7164543118e-06 +3.7160874229e-06 3.71645324e-06 8.3445250421e-06 8.3477394232e-06 8.3445233428e-06 8.3477411226e-06 3.694246125e-06 3.694437057e-06 3.6942506856e-06 +3.6944324964e-06 7.4677490414e-08 7.4677490414e-08 9.1693697629e-06 9.2979878111e-06 1.0675053502e-05 1.0545722167e-05 1.0764119531e-05 1.0827188117e-05 +1.1810646428e-05 0.00086536268447 1.0852185823e-05 1.0764116358e-05 1.1866210718e-05 0.00085934680754 3.7052384689e-06 3.7129309357e-06 3.7052347901e-06 +3.7129328011e-06 8.2900253644e-06 8.2900326223e-06 8.346394038e-06 8.3463882144e-06 3.6926797925e-06 3.6960129045e-06 3.6926720005e-06 3.6960031205e-06 +7.4699452581e-08 7.4699452581e-08 9.3285414747e-06 9.373147178e-06 1.0702538013e-05 1.0627675943e-05 1.1918564102e-05 1.1826791901e-05 1.1747321794e-05 +1.0784027056e-05 1.1784057992e-05 1.1777438561e-05 1.0863838538e-05 1.1852079886e-05 3.7164534265e-06 3.716093248e-06 3.7160893712e-06 3.7164526453e-06 +8.3445187038e-06 8.3445204037e-06 8.3477341755e-06 8.3477387272e-06 3.6942538059e-06 3.6944391284e-06 3.6944399631e-06 3.6942505322e-06 7.4699452581e-08 +7.4699452581e-08 9.3285414747e-06 9.4203644323e-06 1.0648512445e-05 1.0674635552e-05 1.0784026628e-05 1.0852686694e-05 1.1826862183e-05 1.1838006392e-05 +1.1777437064e-05 1.1767503107e-05 1.0852754001e-05 1.0773214843e-05 3.7164567947e-06 3.7160882248e-06 3.7164596168e-06 3.716090445e-06 8.3477383684e-06 +8.3445202154e-06 8.3445207424e-06 8.3477392795e-06 3.6944332251e-06 3.6942472613e-06 3.6944336325e-06 3.6942529627e-06 7.4677490414e-08 7.4677490414e-08 +9.2745248761e-06 9.2892029344e-06 1.0648474278e-05 1.0692641008e-05 1.0853233725e-05 1.1738222349e-05 1.1863030339e-05 1.17428722e-05 1.0745105642e-05 +1.1635849494e-05 1.1763445503e-05 1.1793996964e-05 3.7052319674e-06 3.7052370893e-06 3.7129287046e-06 3.7129308863e-06 8.2900264152e-06 8.2900306971e-06 +8.3463858671e-06 8.34639177e-06 3.6960067627e-06 3.6926799066e-06 3.6960044551e-06 3.6926750399e-06 9.9999984397e-05 9.9999984397e-05 0.00010000001776 +9.9999984397e-05 9.9999997253e-05 9.9999997253e-05 9.9999981851e-05 0.00010000002044 0.00010000000378 0.00010000000378 0.00010000000378 9.9999991326e-05 +9.9999957487e-05 0.00010000000938 9.999999925e-05 0.00010000001843 0.00010000001843 9.8901783924e-05 9.8989009282e-05 9.8901783924e-05 9.9999998828e-05 +9.8993953575e-05 9.8579260021e-05 9.8579260021e-05 9.8579234518e-05 9.5779600127e-05 9.4354449876e-05 9.435445247e-05 9.4354442764e-05 9.4327035078e-05 +9.4327037688e-05 9.4406012518e-05 0.00010000001678 0.00010000001678 0.00010000000039 9.8884217183e-05 9.5543969773e-05 9.8567022424e-05 9.8567022424e-05 +9.8527575466e-05 9.7845116419e-05 9.9999971138e-05 9.9999985435e-05 9.7805184057e-05 0.00010000001217 9.9999939809e-05 9.9999939208e-05 9.9999939208e-05 +9.9999991359e-05 9.9999991359e-05 9.9999991695e-05 9.9999998715e-05 0.00010000000516 0.00010000000516 0.0001000000026 9.9999994706e-05 9.9999994706e-05 +9.7795927073e-05 9.7813196776e-05 9.7813195053e-05 9.8877434897e-05 9.8877434897e-05 9.8877434897e-05 9.8863470889e-05 9.8863470889e-05 9.9999991487e-05 +0.00010000003105 9.9999997916e-05 9.9999997669e-05 9.9999997669e-05 0.00010000002142 0.0001000000111 0.00010000000713 0.0001000000111 9.9999995278e-05 +9.9999995278e-05 9.9999991236e-05 0.00010000001405 9.8730748229e-05 9.9999982081e-05 0.0001000000128 9.9999989475e-05 0.00010000006011 0.00010000007836 +0.00010000006011 0.00010000007836 0.00010000006011 0.00010000002232 9.9999963857e-05 9.9999964517e-05 9.9999964517e-05 9.999996483e-05 9.999996483e-05 +9.999996483e-05 9.7921735056e-05 9.7921725421e-05 9.7827514265e-05 9.7816325409e-05 9.7900193972e-05 9.7921736599e-05 9.7816323688e-05 9.7849395747e-05 +9.9999996021e-05 9.9999996021e-05 0.00010000000529 0.00010000000529 0.00010000002557 9.9999977609e-05 0.00010000006532 9.4383407955e-05 9.4383407955e-05 +9.4383409769e-05 9.4321624372e-05 9.4321626207e-05 0.00010000001881 0.00010000002453 0.00010000001241 0.00010000002684 9.7979329493e-05 9.7979330457e-05 +9.7963279542e-05 9.7913702449e-05 9.7979331121e-05 9.7962069332e-05 9.7829814229e-05 9.7829815982e-05 0.00010000000194 9.9999995058e-05 9.9999996867e-05 +9.9999996867e-05 9.9999996867e-05 9.9274886448e-05 9.9274886448e-05 9.9274886448e-05 9.9266217106e-05 9.9266217106e-05 9.9999993645e-05 0.00010000000582 +0.00010000000582 0.0001000000003 0.00010000002679 0.00010000003678 0.00010000000492 0.00010000000252 0.00010000000252 9.9999972539e-05 0.00010000001179 +9.9999990191e-05 9.9999993866e-05 9.9999993866e-05 9.9999990569e-05 0.00010000000856 9.9999982294e-05 0.00010000001052 0.00010000000876 0.00010000000876 +0.00010000001091 9.9999991183e-05 8.0469772616e-05 0.00010000001773 8.073279606e-05 8.9179515165e-05 9.9999980362e-05 8.9285028734e-05 9.9999988104e-05 +9.9999988104e-05 0.00010000000475 9.8944990745e-05 9.8944990745e-05 9.8944990745e-05 9.8936067238e-05 9.8936067238e-05 0.00010000003764 0.00010000000257 +0.00010000000365 0.00010000000365 9.9999996024e-05 0.00010000004839 0.00010000000858 0.00010000000858 9.999999726e-05 0.00010000000411 9.9999987727e-05 +9.9999987727e-05 9.9999987727e-05 9.9999993019e-05 9.8757195334e-05 9.9999977427e-05 9.9999970858e-05 0.00010000003092 0.00010000003092 0.00010000003092 +0.00010000001318 9.9999994705e-05 0.00010000000089 0.00010000000089 0.0001000000424 0.0001000000424 0.0001000000424 9.999998921e-05 0.00010000000648 +0.00010000000831 9.9999979527e-05 9.999998515e-05 0.00010000000555 0.00010000002613 0.00010000000555 9.999998515e-05 0.00010000001242 9.9999977673e-05 +9.9999977673e-05 9.9999977673e-05 9.9999986874e-05 9.4321941556e-05 9.4321941682e-05 9.4321943436e-05 9.8696169097e-05 9.8696169097e-05 9.8696169097e-05 +9.93437977e-05 9.9343795834e-05 9.9343795834e-05 9.9999992876e-05 0.00010000000378 0.00010000000378 9.9999974595e-05 0.00010000001872 0.00010000005204 +9.9999998503e-05 0.00010000005374 0.00010000004728 0.00010000004728 0.00010000003732 0.00010000001076 0.00010000000057 0.00010000003662 0.00010000001676 +0.00010000003662 0.00010000001096 0.00010000001096 9.9999998503e-05 9.9999987487e-05 9.9999969269e-05 9.9999987487e-05 9.9999987487e-05 9.4403811867e-05 +9.9999982853e-05 0.00010000004165 9.9999985149e-05 9.9999985149e-05 9.9999953461e-05 9.934115064e-05 0.0001000000057 9.9999989419e-05 9.9999989419e-05 +0.00010000000996 0.00010000003248 9.9999998027e-05 9.99999953e-05 9.99999953e-05 9.9999972019e-05 9.9999972019e-05 9.9999991232e-05 9.9999982731e-05 +9.999998285e-05 9.9999968024e-05 9.9999968024e-05 9.9999968024e-05 0.0001000000025 0.00010000000351 0.00010000000351 0.00010000005545 9.9999973945e-05 +9.9082254092e-05 0.00010000002033 0.00010000001145 9.9999957253e-05 9.9999952759e-05 0.0001000000162 0.0001000000162 9.9999952759e-05 9.9999969915e-05 +9.9999957253e-05 0.00010000001145 9.9999999313e-05 0.00010000001145 9.9999952759e-05 8.0197359283e-05 8.1799315238e-05 8.2876484305e-05 8.28768046e-05 +8.1008064954e-05 8.1799310854e-05 8.1799848317e-05 8.1799856381e-05 8.0931452428e-05 8.0934779429e-05 8.1008066132e-05 8.1187812268e-05 8.2876491688e-05 +8.1008045389e-05 0.040051556971 8.2876811984e-05 8.1747087049e-05 8.9477842691e-05 8.28768046e-05 8.1799856381e-05 8.240649078e-05 8.2005247597e-05 +0.00010000003464 9.999996246e-05 8.1986028374e-05 8.1361329065e-05 8.138292404e-05 8.200181641e-05 9.9999978734e-05 9.999999174e-05 9.999999174e-05 +0.00010000001332 9.472600337e-05 9.4795143723e-05 9.9999949606e-05 9.9999977545e-05 0.0001000000439 9.9999998233e-05 9.9999972099e-05 9.9999972099e-05 +9.9999999386e-05 9.8764162985e-05 9.8764164906e-05 9.99999942e-05 9.4657266434e-05 9.5216045241e-05 9.5216047458e-05 9.5216045549e-05 9.9999992874e-05 +0.00010000001371 9.5180250813e-05 9.518025305e-05 9.4052073877e-05 0.00010000002281 0.00010000001012 0.0001000000053 0.0001000000053 0.00010000000617 +9.860646167e-05 9.9999953314e-05 9.99999973e-05 8.0057117414e-05 7.9564746151e-05 7.9797363019e-05 8.0057117414e-05 7.9564743357e-05 7.9564746151e-05 +8.0057117414e-05 7.968014926e-05 7.9650126854e-05 7.9975410992e-05 7.9650129649e-05 7.9975410992e-05 9.9999994059e-05 8.1121006056e-05 8.0330887959e-05 +8.1214752319e-05 8.1294957626e-05 8.03255837e-05 8.1574791892e-05 8.0404619097e-05 8.1959044847e-05 8.1419660642e-05 8.1989058089e-05 8.122073416e-05 +8.1574796117e-05 8.1574791058e-05 8.1420475072e-05 8.1222541723e-05 8.039150054e-05 8.1177265671e-05 8.0312466283e-05 8.1959040099e-05 8.1808241884e-05 +8.1419651583e-05 8.141937671e-05 8.141936765e-05 8.1446965143e-05 8.1446443871e-05 8.1808241918e-05 8.1987755261e-05 8.1087877137e-05 8.0391501679e-05 +8.1446960566e-05 8.1808233863e-05 8.2112754247e-05 8.1419661536e-05 9.9999953343e-05 0.00010000001284 0.00010000001284 9.4261121808e-05 0.00010000002577 +9.4354686949e-05 9.4420275524e-05 9.4420272985e-05 9.4420275524e-05 9.441583117e-05 9.4415833035e-05 9.8664795628e-05 0.00010000004096 0.00010000004096 +0.00010000003059 0.00010000002064 0.00010000001512 0.00010000001512 9.9999986022e-05 9.7070122452e-05 0.00010000001464 9.9999995347e-05 9.9999995347e-05 +9.9999992181e-05 0.00010000001341 9.9999989131e-05 9.5316932012e-05 9.5316924978e-05 9.5316927062e-05 9.5312979494e-05 0.00010000003908 9.7461591361e-05 +0.00010000003999 9.7378797173e-05 7.9600091271e-05 7.9558125685e-05 9.8848961538e-05 9.8848961773e-05 9.8848961773e-05 8.9605847932e-05 8.9089090864e-05 +8.8817644586e-05 8.8464313369e-05 8.8464309543e-05 8.8603774821e-05 8.9165933285e-05 8.8947994155e-05 8.9534435568e-05 8.8947990431e-05 8.9534431716e-05 +8.8969732702e-05 8.846431731e-05 8.9165937304e-05 8.8464307761e-05 8.8464311701e-05 8.9165933219e-05 8.8603765978e-05 8.8464308505e-05 8.860376986e-05 +8.9534431663e-05 8.964265196e-05 0.00010000001887 8.8233376979e-05 8.8233376979e-05 8.9525579395e-05 8.9525581309e-05 8.9011702028e-05 8.8519700209e-05 +8.8233367382e-05 8.8233382303e-05 8.9525579395e-05 8.9525575835e-05 8.9525577749e-05 8.8233362058e-05 0.00010000005365 9.9076650868e-05 9.9076650868e-05 +9.9075483024e-05 9.9076644104e-05 0.000100000013 0.00010000003294 0.00010000003117 0.00010000003117 0.00010000003117 7.9095517943e-05 9.7664460676e-05 +0.00010000000837 9.7764084305e-05 0.00010000002017 0.00010000002017 9.7793660432e-05 9.7793658674e-05 9.7793659251e-05 0.00010000012285 0.00010000011328 +0.00010000010457 0.00010000010457 0.00010000010457 0.00010000010582 0.00010000010582 0.00010000010582 9.9999992334e-05 0.00010000001015 9.9999995603e-05 +6.9590892685e-05 0.014972467299 6.9627715426e-05 6.95908888e-05 6.9627728572e-05 6.9627714714e-05 6.9590896153e-05 6.9627724306e-05 6.9590895253e-05 +6.962772514e-05 0.045757567106 6.95700539e-05 6.9570065224e-05 6.9570058233e-05 6.9590889551e-05 6.9570065103e-05 6.9627718537e-05 6.9627720213e-05 +6.9627704252e-05 0.04575756712 6.962773324e-05 6.9570069018e-05 0.014972457214 6.9627731687e-05 6.9549771763e-05 6.9452430303e-05 6.945593499e-05 +6.9505088649e-05 6.9285786572e-05 6.9319244716e-05 6.9302193937e-05 6.927468584e-05 9.9999980111e-05 8.7936470766e-05 8.7876246654e-05 0.0001000000075 +0.00010000005806 9.9999983551e-05 9.9999983613e-05 9.9999974603e-05 0.00010000000013 0.00010000000013 0.00010000000013 0.00010000000024 9.9999993604e-05 +8.4084073806e-05 9.9999968875e-05 9.9999968875e-05 9.9999968875e-05 8.4284904821e-05 0.00010000001338 0.00010000001338 9.9999992747e-05 9.9999969202e-05 +8.3388997018e-05 9.0685532501e-05 8.3436181042e-05 0.00010000000944 0.0001000000286 0.0001000000286 0.0001000000286 8.6357306542e-05 7.9271873695e-05 +9.9999992092e-05 0.0001000000606 0.00010000002175 8.4001342111e-05 8.4001342111e-05 8.3512467601e-05 8.4001336188e-05 8.3512467601e-05 8.4001342111e-05 +0.0028136918323 8.3512460054e-05 8.3512460054e-05 8.3512460054e-05 8.4001336188e-05 0.0027800096998 0.00010000002915 0.0001000000283 0.00010000002915 +9.9999978198e-05 8.5196484827e-05 8.4089054683e-05 8.4957783985e-05 0.018248581067 8.4957785346e-05 8.4957777823e-05 8.4957777097e-05 8.4957778925e-05 +8.4957786071e-05 8.4957792233e-05 0.018248581054 8.4957777096e-05 8.4957785345e-05 8.4957787173e-05 0.00010000001076 9.9999962964e-05 9.9999962964e-05 +0.00010000001368 0.00010000012066 0.00010000012066 0.00010000000018 9.9999979807e-05 9.2163212538e-05 9.2864766412e-05 0.0001000000012 9.8822299465e-05 +0.00010000002677 0.00010000001325 0.00010000001325 9.9999993962e-05 0.00010000008811 9.893226983e-05 9.9999970382e-05 0.00010000014178 9.9999976218e-05 +9.6370207469e-05 9.6438656662e-05 9.6438638413e-05 9.6438653928e-05 9.6051049514e-05 9.6051049514e-05 9.605105525e-05 9.6051051954e-05 9.6051046218e-05 +9.6438638413e-05 9.6438641147e-05 9.623199585e-05 9.2200823108e-05 9.2091788944e-05 9.2200827147e-05 9.2091785569e-05 9.209178488e-05 9.2200830429e-05 +0.003788952918 9.2091789604e-05 9.2200826494e-05 0.0037878064217 9.2200831112e-05 9.2091785528e-05 0.00010000003479 0.00010000003479 9.9999993995e-05 +9.99999634e-05 9.1676219639e-05 9.1685473875e-05 9.2117258733e-05 9.167922173e-05 8.283698148e-05 8.2912965267e-05 9.9999959577e-05 9.9999962344e-05 +9.9999962344e-05 9.9999966204e-05 9.9999995202e-05 9.9999995202e-05 9.9999995202e-05 9.9999968569e-05 9.9999968569e-05 9.5063946104e-05 9.9999975254e-05 +0.00010000000119 0.00010000000316 0.00010000000011 0.00010000000316 9.7286776234e-05 9.9999975524e-05 0.0001000000152 0.0001000000152 0.041412075506 +8.0432374316e-05 7.8849645708e-05 7.8849619615e-05 6.9517591897e-05 6.9434665803e-05 6.9434672628e-05 0.045965454946 0.015046988273 6.9517587963e-05 +0.015046988281 0.04596545495 8.4399772602e-05 0.01901147207 0.01901147207 8.4399772602e-05 0.0039991608181 9.1742239947e-05 0.0039991608131 +9.1742244912e-05 0.0030360345194 8.2432887482e-05 8.2432877732e-05 0.0030360345292 0.00010000000409 0.00010000000409 8.0359732218e-05 8.0351560311e-05 +0.046521482992 7.88496256e-05 6.9514591468e-05 6.9434705374e-05 0.046048957986 0.015047067709 0.015047068076 6.9434784319e-05 6.95142245e-05 +0.046049016457 8.4324242358e-05 8.43156338e-05 0.0028478968401 0.0028487948329 0.0044433787567 0.0044436356109 9.1730236023e-05 9.1727014581e-05 +0.0218225012 0.021821609755 8.2433557605e-05 8.2434864442e-05 9.9999999331e-05 9.9999999331e-05 8.0643013695e-05 0.04137744443 7.8757411413e-05 +7.8849644688e-05 6.9435274893e-05 0.015046987705 6.9523339506e-05 0.045966396401 6.9523335826e-05 0.045966396405 6.9435273428e-05 0.015046987705 +0.019043894229 8.4543889897e-05 8.4543889897e-05 0.019043894229 0.0040159967471 0.0040159967463 9.1784796739e-05 9.1784797539e-05 8.2445616629e-05 +0.0030451283992 0.0030451283968 8.24456142e-05 POINT_DATA 565 FIELD FieldData 1 radiation%20flux%20density 1 565 double -0.0001 0.0001 0.0001 0.0001 6.7884846505e-05 6.2621959555e-05 3.9756253605e-05 6.7661085399e-05 3.9756253605e-05 -6.7661085399e-05 6.7884846505e-05 6.2621959555e-05 3.9721569109e-05 6.7704240894e-05 6.2608573139e-05 3.9721569109e-05 3.9721569109e-05 6.7704240894e-05 -6.2160943764e-05 3.9686884614e-05 3.9610326564e-05 6.7649362731e-05 0.078854703562 0.078854703562 6.7428405877e-05 3.9641380569e-05 3.9721569109e-05 -6.7704240894e-05 6.2608573139e-05 3.9721569109e-05 6.240746332e-05 6.7964105268e-05 6.2621959555e-05 6.6575512957e-05 6.7884846505e-05 6.2260387242e-05 -0.078889949365 0.078889949365 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 4.6652803409e-05 4.6443257089e-05 -4.6741888367e-05 4.3593600734e-05 4.357317597e-05 4.6315803493e-05 4.660515344e-05 4.6775474051e-05 4.3426533961e-05 4.6169374122e-05 4.675158281e-05 -4.6922116059e-05 4.6507253252e-05 4.6297494294e-05 4.6887651163e-05 4.3739150891e-05 4.3984364765e-05 4.3984364765e-05 4.3572963331e-05 4.6316016131e-05 -4.635828632e-05 4.6297494294e-05 4.6887651163e-05 4.3739150891e-05 4.3993868482e-05 4.3993868482e-05 4.4140297852e-05 4.4140510491e-05 4.3426533961e-05 -4.6169374122e-05 4.6503836477e-05 4.6443257089e-05 4.6751920205e-05 4.4040855774e-05 4.3189397618e-05 4.3176792658e-05 4.38600052e-05 4.6822051936e-05 -4.6503516809e-05 0.0018952007336 0.15544478638 0.15544478638 0.0018952722992 4.6432565757e-05 4.6596019521e-05 4.3616659702e-05 4.4138516574e-05 -4.4142302221e-05 4.3426533961e-05 4.6169374122e-05 4.6503836477e-05 4.6443257089e-05 4.6741888367e-05 4.3593600734e-05 4.4140612604e-05 4.4140195833e-05 -4.3315171715e-05 4.6013870069e-05 4.6634950189e-05 4.6967660802e-05 4.6569063578e-05 4.6297494294e-05 4.6887651163e-05 4.3739150891e-05 4.3799137311e-05 -4.540765776e-05 4.6582213185e-05 4.6752533796e-05 4.6948958985e-05 4.6564762673e-05 4.6034604591e-05 4.3329344004e-05 4.3193059917e-05 0.0019078469771 -0.15581668519 0.15581668519 0.001907846875 4.3193161936e-05 4.3765707226e-05 4.3765707226e-05 4.3193476688e-05 4.3193476688e-05 4.3730650742e-05 -0.0019083837344 0.15587534612 0.1558757714 0.0019083798437 4.3726760071e-05 0.15459670915 0.15459649651 0.0019078465604 4.3193476688e-05 -4.3965831081e-05 4.3965618443e-05 4.3049707809e-05 0.0019076990058 4.5961411271e-06 4.5983441965e-06 5.9030104957e-06 5.9030104957e-06 1.1289177992e-05 -1.1286893585e-05 1.1289177992e-05 1.1286893585e-05 4.5961411271e-06 4.5983441965e-06 5.9030104957e-06 5.9030104957e-06 1.1286893585e-05 1.1289177992e-05 -1.1286893585e-05 1.1289177992e-05 4.5961411271e-06 4.5983441965e-06 5.9030104957e-06 5.9030104957e-06 1.1289177992e-05 1.1286893585e-05 1.1286893585e-05 -1.1289177992e-05 4.5725421063e-06 4.5768288054e-06 5.9030105897e-06 5.9030105897e-06 1.1269553051e-05 1.1269553051e-05 1.1265136993e-05 1.1265136993e-05 -4.539806556e-06 4.5785451606e-06 5.903020948e-06 5.903020948e-06 1.1273150207e-05 1.1233415958e-05 1.1233415958e-05 1.1273150207e-05 4.5961411271e-06 -4.5983441965e-06 5.9030104957e-06 5.9030104957e-06 1.1289177992e-05 1.1286893585e-05 1.1289177992e-05 1.1286893585e-05 0.30593649471 0.30593031955 -0.30273537208 0.30273537208 0.28758990264 0.28758761823 0.28758761823 0.28758990264 4.5961411271e-06 4.5983441965e-06 5.9030104957e-06 -5.9030104957e-06 1.1286893585e-05 1.1286893585e-05 1.1289177992e-05 1.1289177992e-05 4.539806556e-06 4.5785451606e-06 5.903020948e-06 5.903020948e-06 -1.1233415958e-05 1.1273150207e-05 1.1233415958e-05 1.1273150207e-05 4.5961411271e-06 4.5983441965e-06 5.9030104957e-06 5.9030104957e-06 1.1286893585e-05 -1.1289177992e-05 1.1286893585e-05 1.1289177992e-05 4.5961411271e-06 4.5983441965e-06 5.9030104957e-06 5.9030104957e-06 1.1286893585e-05 1.1289177992e-05 -1.1289177992e-05 1.1286893585e-05 4.539806556e-06 4.5785451606e-06 5.903020948e-06 5.903020948e-06 1.1273150207e-05 1.1233415958e-05 1.1233415958e-05 -1.1273150207e-05 0.0001 9.3584116851e-05 9.3524561307e-05 0.0001 9.4041863467e-05 9.9241291975e-05 0.0001 0.0001 -9.4075120552e-05 9.8260822459e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -9.8616431502e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 9.2743594221e-05 9.3280693433e-05 -9.5168596368e-05 9.4570050679e-05 9.5162195505e-05 9.5168596368e-05 9.5162195505e-05 9.5168596368e-05 9.3883659601e-05 9.367492884e-05 9.367492884e-05 -9.367492884e-05 9.3992041785e-05 9.3827849536e-05 9.3816221506e-05 9.3827849536e-05 9.3669010096e-05 9.3693424328e-05 9.3669010096e-05 9.3756614233e-05 -9.3756614233e-05 9.3756614233e-05 9.3991921869e-05 9.3991921869e-05 9.3978717071e-05 9.3991921869e-05 9.4081877719e-05 9.424881192e-05 9.4242442113e-05 -9.4081877719e-05 0.0001 0.0001 9.3280693433e-05 9.3280693433e-05 9.3280693433e-05 9.3280693433e-05 0.0091010043249 0.0001 -9.3893253021e-05 0.0001 9.9251918662e-05 0.0001 9.8231329645e-05 9.8231329645e-05 9.8231329645e-05 9.8217943229e-05 9.8217943229e-05 -9.8006738974e-05 0.0001 0.0001 9.8845431698e-05 9.9026231717e-05 9.8845431698e-05 9.9220475578e-05 9.9220475578e-05 9.9220475578e-05 -9.9219753665e-05 9.9044179026e-05 9.9044179026e-05 9.9044179026e-05 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 9.371141207e-05 9.4263290962e-05 9.3700086868e-05 9.371141207e-05 9.3700086868e-05 9.371141207e-05 0.0001 -9.853309816e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 9.2358735081e-05 -9.2457534583e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 9.3802375223e-05 0.0001 0.0001 0.0001 9.278463445e-05 9.3127910634e-05 9.2756342316e-05 9.2685344595e-05 -9.2685344595e-05 9.2756342316e-05 9.2685344595e-05 9.3180119636e-05 9.3199568077e-05 9.3199568077e-05 9.3199568077e-05 0.0001 0.0001 -9.1825462078e-05 9.2289657851e-05 9.2289657851e-05 9.1825462078e-05 9.2289657851e-05 9.1825462078e-05 9.1825462078e-05 9.2289657851e-05 9.1825462078e-05 -9.2108116009e-05 9.2289657851e-05 9.191627871e-05 9.0974170533e-05 0.0001 9.1765383964e-05 9.1731921108e-05 0.0001 9.9059062731e-05 -9.9059062731e-05 9.9059062731e-05 9.904773753e-05 9.904773753e-05 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 9.8837933763e-05 9.8837933763e-05 9.8837933763e-05 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 9.8866605527e-05 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 8.0932344162e-05 0.013543300052 8.1049370119e-05 8.1049370119e-05 8.0932344162e-05 8.0932344162e-05 -8.0932344162e-05 8.0932344162e-05 8.1049370119e-05 8.1049370119e-05 8.1049370119e-05 0.013543358023 8.0775111388e-05 8.0506186529e-05 8.0557329173e-05 -8.0491271511e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 9.0287982747e-05 0.0001 0.0001 9.7809379184e-05 9.8065648247e-05 0.0001 0.0001 -0.0001 0.0094780129382 9.3010000883e-05 9.0719361729e-05 9.0719361729e-05 0.013728417743 8.0472026092e-05 8.0472026092e-05 0.013728417743 -9.2973357823e-05 9.2969168706e-05 9.0719361823e-05 0.012745051611 0.014221177085 8.0454685558e-05 0.014220923948 8.0452401151e-05 9.3079858078e-05 -0.0094947406079 9.0719351371e-05 9.0719351371e-05 8.0508163185e-05 0.013733900764 8.0508163185e-05 0.013733900764 +0.00010000010519 0.00010000010519 0.00010000011806 0.00010000010519 6.8055096337e-05 6.2922141196e-05 4.0213599393e-05 6.7836311563e-05 4.0214015441e-05 +6.783631154e-05 6.8055154405e-05 6.2922141412e-05 4.0177464536e-05 6.7867009579e-05 6.2911505844e-05 4.0180536529e-05 4.0178777199e-05 6.7866951665e-05 +6.2536668968e-05 4.0150823959e-05 4.009402426e-05 6.7808793752e-05 0.083488922091 0.083499251078 6.7623685689e-05 4.0125910934e-05 4.017729578e-05 +6.7866951546e-05 6.2911505627e-05 4.017980503e-05 6.2761081942e-05 6.8116840536e-05 6.2922140266e-05 6.6887837564e-05 6.8057877774e-05 6.263546032e-05 +0.083536008364 0.083525671274 0.00010000005555 9.9999997435e-05 9.9999989783e-05 9.9999997138e-05 0.00010000000461 0.00010000002521 9.9999995091e-05 +9.9999994578e-05 0.00010000000632 0.00010000005376 0.00010000005338 9.9999995722e-05 9.9999987879e-05 0.00010000000473 9.9999994107e-05 9.9999981079e-05 +0.00010000004063 0.00010000003385 9.9999979664e-05 0.00010000000124 0.00010000001364 0.0001000000007 0.00010000002278 9.9999997457e-05 9.9999994578e-05 +0.00010000000632 0.00010000005376 0.00010000005338 9.9999995722e-05 9.9999987879e-05 0.00010000000473 9.9999994107e-05 9.9999981079e-05 0.00010000004063 +0.00010000005555 9.9999997435e-05 9.9999989783e-05 9.9999997138e-05 0.00010000000461 0.00010000002521 9.9999995175e-05 9.9999997404e-05 0.00010000000072 +9.9999998159e-05 0.0001000000276 0.00010000004972 0.00010000001714 0.00010000001229 9.9999994339e-05 9.9999981079e-05 0.00010000004063 0.00010000005555 +9.9999997215e-05 9.999998827e-05 0.00010000001855 0.00010000000005 9.9999969459e-05 0.00010000004774 0.00010000006597 9.9999994306e-05 9.99999875e-05 +0.00010000001362 0.00010000005682 0.00010000002567 9.9999987609e-05 0.00010000001156 9.9999996079e-05 0.00010000003902 4.6252988791e-05 4.6076397909e-05 +4.6214825973e-05 4.290402349e-05 4.2982131269e-05 4.5972684097e-05 4.6118583432e-05 4.6244415751e-05 4.2745987756e-05 4.5736582323e-05 4.6355239869e-05 +4.6481114153e-05 4.6017712799e-05 4.5841080018e-05 4.6450030097e-05 4.3139186204e-05 4.3226380351e-05 4.3226377405e-05 4.2982089803e-05 4.5972818054e-05 +4.5889862954e-05 4.5838846787e-05 4.6449976916e-05 4.3139185143e-05 4.3237979383e-05 4.3237974658e-05 4.3474599526e-05 4.3474637078e-05 4.2745988962e-05 +4.5736674379e-05 4.6125139842e-05 4.6074348662e-05 4.6219511527e-05 4.3307350821e-05 4.2517190994e-05 4.2503941773e-05 4.3255311168e-05 4.6373521716e-05 +4.6006186833e-05 0.0031174386817 0.16347057242 0.16347057242 0.0031232596988 4.6061584617e-05 4.6062988556e-05 4.2923709134e-05 4.3474251483e-05 +4.3474977062e-05 4.2745988859e-05 4.5736674379e-05 4.6125139167e-05 4.6074164866e-05 4.6214772792e-05 4.2904023841e-05 4.3474653078e-05 4.3474573426e-05 +4.2669022554e-05 4.559753924e-05 4.6260210022e-05 4.651043535e-05 4.6069479296e-05 4.5841965147e-05 4.6450030097e-05 4.3139185774e-05 4.3164869179e-05 +4.5300590533e-05 4.6090851445e-05 4.6216772228e-05 4.649382594e-05 4.6201528752e-05 4.5610748319e-05 4.2678216391e-05 4.2634954321e-05 0.0031735791485 +0.16386999915 0.16386999915 0.0031735791355 4.2634975802e-05 4.3036905843e-05 4.3036905643e-05 4.2635139128e-05 4.2635328743e-05 4.3002899456e-05 +0.0031422754882 0.16390145196 0.16390192749 0.0031424228623 4.2999173187e-05 0.16254766526 0.16254734805 0.003175095026 4.2636852295e-05 +4.3322010434e-05 4.3321968768e-05 4.2402486428e-05 0.0031748599303 4.8119435642e-06 4.8047801764e-06 5.8006904286e-06 5.7929074447e-06 7.4813813773e-06 +7.8781166854e-06 7.8849032929e-06 7.87181937e-06 4.7998794189e-06 4.8047804245e-06 5.8006929566e-06 5.7835666646e-06 7.8740609717e-06 7.4791515373e-06 +7.4783168352e-06 7.8849035963e-06 4.8000241718e-06 4.8072775933e-06 5.7972207114e-06 5.8085419315e-06 7.8849041405e-06 7.8604845992e-06 7.4730764925e-06 +7.8833521327e-06 4.7964005667e-06 4.7958463708e-06 5.803030468e-06 5.7779977309e-06 7.4746967889e-06 0.00034927624551 7.4752860682e-06 7.4730543135e-06 +4.7689904367e-06 4.8005420829e-06 5.7992833452e-06 5.7838059569e-06 0.0003480929633 7.4578413874e-06 7.8670313523e-06 7.4779639924e-06 4.8076215477e-06 +4.8072769424e-06 5.7929069868e-06 5.7972215924e-06 7.8748971709e-06 7.4783143709e-06 7.884903663e-06 7.4783137969e-06 0.31943601558 0.31942473222 +0.31524600191 0.31522595061 0.2983194659 0.29831475238 0.29831475239 0.2983194659 4.8111551671e-06 4.7949623594e-06 5.7835668866e-06 +5.8085996708e-06 7.4805441101e-06 7.4783127755e-06 7.4791495576e-06 0.00034928069839 4.7584651414e-06 4.7951412544e-06 5.7958062114e-06 5.7742502398e-06 +7.4558488845e-06 7.8864378402e-06 7.4608496892e-06 0.0003480929644 4.7998803009e-06 4.8072750083e-06 5.8096973522e-06 5.7972206978e-06 7.4805451803e-06 +7.8789529324e-06 7.8718192441e-06 7.8849034356e-06 4.7998800011e-06 4.8140224853e-06 5.8006927782e-06 5.8050459867e-06 7.8740609717e-06 7.4769197103e-06 +7.8705993e-06 7.4783143542e-06 4.7734865751e-06 4.7938850205e-06 5.7913764329e-06 5.7987354306e-06 7.4707332956e-06 7.8124028827e-06 7.8628828774e-06 +7.8584380997e-06 0.00010000000922 9.3313343909e-05 9.3284487322e-05 0.00010000000285 9.3752761973e-05 9.8901774347e-05 9.9794012838e-05 9.9999984234e-05 +9.3772591437e-05 9.7892354818e-05 9.9777477155e-05 0.00010000000215 0.00010000001212 0.00010000001117 0.00010000000215 0.00010000001395 0.00010000001212 +9.829104107e-05 9.9999997681e-05 0.00010000001263 0.00010000000493 0.00010000000493 0.00010000000325 0.00010000000493 9.10552826e-05 9.0734228292e-05 +9.4554222231e-05 9.405960752e-05 9.4545798441e-05 9.4554221959e-05 9.4545799058e-05 9.4554222851e-05 9.3697187205e-05 9.3440864699e-05 9.3439002434e-05 +9.3439001726e-05 9.3810698691e-05 9.364204119e-05 9.3646296776e-05 9.3642041218e-05 9.3431821361e-05 9.3435718099e-05 9.3431820656e-05 9.3540242534e-05 +9.3540242105e-05 9.3540242039e-05 9.3723346608e-05 9.3723346048e-05 9.3712757708e-05 9.3723346701e-05 9.3855072529e-05 9.3997243836e-05 9.3991539971e-05 +9.3855072645e-05 0.00010000001464 9.9999990292e-05 9.0745170636e-05 9.0734704602e-05 9.0745172791e-05 9.0745173933e-05 0.012046496915 9.9721283113e-05 +9.3512985323e-05 0.00010000000249 9.8927367317e-05 9.9794033015e-05 9.7849108648e-05 9.7849117094e-05 9.7849117031e-05 9.7835059929e-05 9.7835059867e-05 +9.7619405441e-05 9.9832322716e-05 9.9814038074e-05 9.851677052e-05 9.8737645541e-05 9.8516770147e-05 9.8956227252e-05 9.8956227599e-05 9.8956227426e-05 +9.8954941231e-05 9.8757352405e-05 9.8757352789e-05 9.8757352687e-05 0.00010000001136 9.9317697487e-05 9.9323821314e-05 9.9999999984e-05 9.9763212466e-05 +9.9763211715e-05 9.9763211715e-05 9.322419764e-05 9.3797802645e-05 9.3211484275e-05 9.3224196936e-05 9.3211484362e-05 9.322419764e-05 9.9346934009e-05 +9.7969334295e-05 9.9999989345e-05 9.9638301375e-05 9.9663220879e-05 9.9652292499e-05 9.966322115e-05 9.9663220952e-05 9.9660344187e-05 9.9660550625e-05 +9.9638301667e-05 9.9999991194e-05 9.980814686e-05 9.9632280267e-05 9.980814676e-05 9.963228056e-05 9.980814629e-05 9.9632275264e-05 9.0542451893e-05 +9.0632223477e-05 9.976116332e-05 9.976116332e-05 9.975459938e-05 9.9688045511e-05 9.9689662364e-05 9.9692777287e-05 9.9653618181e-05 9.9653618438e-05 +9.9700022669e-05 9.9688045757e-05 9.9653619781e-05 9.9782684958e-05 9.9782684958e-05 9.9782684958e-05 9.979286323e-05 9.9843108446e-05 9.9843108446e-05 +9.9855579183e-05 0.00010000000709 9.9845919854e-05 9.9846098128e-05 9.9846103089e-05 9.9846103089e-05 0.00010000000215 0.00010000000786 0.00010000000786 +0.00010000000767 9.2149944404e-05 9.9687603568e-05 9.9687603322e-05 9.9685134533e-05 9.2270919855e-05 9.2559325815e-05 9.2243843959e-05 9.2164569002e-05 +9.2177742291e-05 9.2230670695e-05 9.2174861763e-05 9.2608857544e-05 9.2637330913e-05 9.2649401025e-05 9.2636030045e-05 0.00010000000192 0.00010000000371 +8.9923135927e-05 9.0370579751e-05 9.0370576207e-05 8.9923137017e-05 9.0356957892e-05 8.9908904311e-05 8.9908905626e-05 9.0356961659e-05 8.9908904946e-05 +0.00115569031 9.0370575533e-05 0.0011609883498 8.8106994947e-05 9.9999994693e-05 9.0019960272e-05 8.9979733313e-05 9.9999997757e-05 9.8580108544e-05 +9.8580108083e-05 9.8580108846e-05 9.8564560259e-05 9.8564560565e-05 9.999998737e-05 9.788418955e-05 9.9999988079e-05 9.9999993175e-05 9.9999993175e-05 +9.9999992157e-05 0.00010000000269 0.00010000000269 9.9999993029e-05 9.8472390909e-05 9.8472390932e-05 9.8472390533e-05 9.8520432404e-05 9.849794245e-05 +9.8497952199e-05 9.849794245e-05 9.8497952087e-05 9.8497942337e-05 0.0001000000007 9.8500439401e-05 0.0001000000231 0.00010000005575 0.00010000005405 +0.00010000005405 0.00010000005405 0.00010000001105 7.9951960567e-05 0.017116020731 8.0075714621e-05 8.0075715523e-05 7.9951960541e-05 7.9951961352e-05 +7.9951961457e-05 7.995196197e-05 8.0075715183e-05 8.0075715329e-05 8.0075715056e-05 0.017109515615 7.9846483116e-05 7.9512555369e-05 7.9602318205e-05 +7.9545234048e-05 0.00010000000698 0.0001000000263 0.0001000000263 9.9999978212e-05 9.9999979214e-05 0.00010000000862 0.00010000000862 0.00010000001356 +0.00010000003778 9.9999985061e-05 8.9733087015e-05 9.9999981847e-05 0.00010000003871 9.716249207e-05 9.7390282675e-05 9.9999993847e-05 9.9999993847e-05 +9.9999993669e-05 0.012519048758 9.038806211e-05 0.0012313700202 0.0012313700174 0.017411822127 7.9505431546e-05 7.9505431167e-05 0.017411822127 +0.0011068128308 0.0011069749515 8.7862550389e-05 0.01652543472 0.018042203162 7.9487743722e-05 0.018041782283 7.9485027172e-05 9.0471483775e-05 +0.012528175197 0.0012357008666 0.0012356854949 7.954658324e-05 0.017423680697 7.9546582471e-05 0.017423680696 diff --git a/tests/input/validation_tests/PN_solver/linesource_PN_reference.vtk b/tests/input/validation_tests/PN_solver/linesource_PN_reference.vtk index 7dd3095e..3d541d00 100644 --- a/tests/input/validation_tests/PN_solver/linesource_PN_reference.vtk +++ b/tests/input/validation_tests/PN_solver/linesource_PN_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 8.4221315969 0.0012566370614 0.0012566370614 8.1719537062 0.0012566370614 -0.0012566370614 16.597102889 8.8566639055 15.596171346 8.0744377655 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 15.339811235 -15.537845293 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 2.9406791564 3.0237371533 0.0012566370614 0.0012566370614 5.7797048686 4.945491139 -2.6847860281 3.3898778102 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 5.2303561496 3.8230216479 0.0012566370614 0.0012566370614 +0.0012566358187 0.0012566380999 0.0012566368395 0.0012566385388 8.2146457283 0.0012566371556 0.0012566374341 8.3521819329 0.0012566365479 +0.0012566368417 15.199419053 8.9475705287 14.040919622 8.3038464917 0.0012566373378 0.0012566381754 0.0012566370067 0.0012566374249 +0.0012566370483 0.0012566368578 0.0012566368824 0.0012566370386 0.0012566373129 0.001256637679 0.0012566366837 0.0012566385987 0.0012566362889 +0.0012566379058 0.0012566368447 0.0012566365405 0.0012566382679 0.0012566371998 0.0012566357493 0.0012566368209 0.0012566364372 0.0012566365378 +0.0012566367438 0.0012566363928 0.0012566372677 0.0012566371771 0.0012566372569 0.0012566368897 0.0012566363029 0.0012566371299 13.81497929 +14.230910261 0.0012566360478 0.0012566370539 0.0012566366148 0.0012566370164 0.0012566373402 0.0012566374724 0.0012566372974 0.0012566364407 +0.0012566366283 0.0012566375785 0.0012566373061 0.00125663798 0.00125663798 0.0012566373061 0.0012566375736 0.0012566373081 0.0012566380532 +0.0012566379993 0.0012566366655 0.0012566364181 3.411656311 3.5080278325 0.0012566371397 0.0012566375072 6.7055606265 5.7376824504 +3.1147440189 3.9328185058 0.0012566378185 0.0012566362552 0.0012566374678 0.0012566361304 0.0012566374345 0.0012566374968 0.0012566363822 +0.0012566378438 0.0012566371813 0.0012566372038 0.0012566379385 0.0012566374186 0.0012566359147 0.0012566372474 0.0012566369057 0.0012566367571 +0.001256638078 0.0012566367965 6.068187344 4.4353611775 0.0012566373122 0.0012566364578 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 15.767732691 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.49116039028 2.2839454769 -0.44851153557 0.0012566370614 0.50500338977 2.5037470698 0.0012566370614 2.8659671276 0.56602683258 0.0012566370614 3.2393270877 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 7.9200417146 8.3409355632 8.1489584968 7.7350522216 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 1.1569462834 0.99010353744 0.76560963923 1.0470765396 +0.0012566374399 0.001256637644 0.0012566380166 0.0012566376527 14.321557057 0.0012566375488 0.0012566373628 0.0012566368908 0.0012566368963 +0.0012566368724 0.0012566372552 0.0012566369938 0.0012566371644 0.0012566367979 0.0012566373065 0.0012566369676 0.0012566370368 0.0012566368506 +0.001256637017 0.0012566373606 0.0012566378059 0.0012566376122 0.00125663677 0.0012566367798 0.0012566369068 0.0012566370657 0.0012566367202 +0.0012566369825 0.0012566368071 0.0012566370863 0.0012566374515 0.0012566367487 0.0012566372342 0.001256637101 0.56965658312 2.4723361221 +0.52017120073 0.0012566370822 0.58571850293 2.7165568091 0.0012566371444 3.1036402327 0.65651694869 0.0012566370072 3.4986939351 +0.0012566370636 0.0012566369552 0.0012566371252 0.0012566369332 7.7358556682 8.1166071959 7.9120911643 7.5394474905 0.001256636991 +0.0012566371384 0.0012566374279 0.0012566374748 1.342117435 1.1485417997 0.88807754539 1.2146427784 diff --git a/tests/input/validation_tests/SN_solver/checkerboard_SN_reference.vtk b/tests/input/validation_tests/SN_solver/checkerboard_SN_reference.vtk index c0bf62a6..1a33070a 100644 --- a/tests/input/validation_tests/SN_solver/checkerboard_SN_reference.vtk +++ b/tests/input/validation_tests/SN_solver/checkerboard_SN_reference.vtk @@ -1727,187 +1727,187 @@ CELL_TYPES 1056 CELL_DATA 1056 FIELD FieldData 1 radiation%20flux%20density 1 1056 double --1.3214247139e-14 -1.3214247139e-14 5.6903521406e-12 5.691740735e-12 5.0915649622e-12 5.0915649622e-12 1.498141513e-11 1.498141513e-11 1.498141513e-11 -1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.4135238753e-11 1.4135238753e-11 1.4144322735e-11 1.4144322735e-11 --1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 1.6228785446e-11 1.6227073201e-11 1.6227073201e-11 1.6228785446e-11 -1.3214247139e-14 --1.3214247139e-14 5.691740735e-12 5.6903521406e-12 5.0915649622e-12 5.0915649622e-12 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 -1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.4144322735e-11 1.4135238753e-11 1.4144322735e-11 1.4135238753e-11 -1.3214247139e-14 --1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 1.6227073201e-11 1.6227073201e-11 1.6228785446e-11 1.6228785446e-11 -1.3214247139e-14 -1.3214247139e-14 -5.691740735e-12 5.6903521406e-12 5.0915649622e-12 5.0915649622e-12 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 -1.498141513e-11 1.498141513e-11 1.498141513e-11 1.4135238753e-11 1.4144322735e-11 1.4135238753e-11 1.4144322735e-11 -1.3214247139e-14 -1.3214247139e-14 --1.3214247139e-14 -1.3214247139e-14 1.6228785446e-11 1.6228785446e-11 1.6227073201e-11 1.6227073201e-11 -1.3214247139e-14 -1.3214247139e-14 5.7059149846e-12 -5.7034346168e-12 5.0915649622e-12 5.0915649622e-12 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 -1.498141513e-11 1.498141513e-11 1.4038357887e-11 1.4038357887e-11 1.4055898695e-11 1.4055898695e-11 -1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 --1.3214247139e-14 1.6226251701e-11 1.6229607703e-11 1.6229607703e-11 1.6226251701e-11 -1.3214247139e-14 -1.3214247139e-14 5.7235070171e-12 5.702429844e-12 -5.0915649622e-12 5.0915649622e-12 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 -1.498141513e-11 1.3905226423e-11 1.4062928958e-11 1.3905226423e-11 1.4062928958e-11 -1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 -1.6212729673e-11 1.6243213139e-11 1.6243213139e-11 1.6212729673e-11 -1.3214247139e-14 -1.3214247139e-14 5.691740735e-12 5.6903521406e-12 5.0915649622e-12 -5.0915649622e-12 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 -1.4135238753e-11 1.4144322735e-11 1.4144322735e-11 1.4135238753e-11 -1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 1.6228785446e-11 -1.6228785446e-11 1.6227073201e-11 1.6227073201e-11 0.31528042379 0.31528042379 0.27083356076 0.27080311893 0.26395719276 0.26395719276 -0.25309075682 0.25309075682 0.25309075682 0.25309075682 0.25309075682 0.25309075682 0.25309075682 0.25309075682 0.30112288681 -0.30113197079 0.30113197079 0.30112288681 0.31528042379 0.31528042379 0.31528042379 0.31528042379 0.29904013634 0.2990384241 -0.2990384241 0.29904013634 -1.3214247139e-14 -1.3214247139e-14 5.6903521406e-12 5.691740735e-12 5.0915649622e-12 5.0915649622e-12 1.498141513e-11 -1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.4135238753e-11 1.4144322735e-11 -1.4135238753e-11 1.4144322735e-11 -1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 1.6227073201e-11 1.6228785446e-11 1.6227073201e-11 -1.6228785446e-11 -1.3214247139e-14 -1.3214247139e-14 5.7235070171e-12 5.702429844e-12 5.0915649622e-12 5.0915649622e-12 1.498141513e-11 1.498141513e-11 -1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.3905226423e-11 1.4062928958e-11 1.3905226423e-11 -1.4062928958e-11 -1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 1.6212729673e-11 1.6243213139e-11 1.6212729673e-11 1.6243213139e-11 --1.3214247139e-14 -1.3214247139e-14 5.691740735e-12 5.6903521406e-12 5.0915649622e-12 5.0915649622e-12 1.498141513e-11 1.498141513e-11 1.498141513e-11 -1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.4144322735e-11 1.4135238753e-11 1.4135238753e-11 1.4144322735e-11 --1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 1.6227073201e-11 1.6228785446e-11 1.6228785446e-11 1.6227073201e-11 -1.3214247139e-14 --1.3214247139e-14 5.691740735e-12 5.6903521406e-12 5.0915649622e-12 5.0915649622e-12 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 -1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.4144322735e-11 1.4135238753e-11 1.4144322735e-11 1.4135238753e-11 -1.3214247139e-14 --1.3214247139e-14 -1.3214247139e-14 -1.3214247139e-14 1.6228785446e-11 1.6227073201e-11 1.6228785446e-11 1.6227073201e-11 -1.3214247139e-14 -1.3214247139e-14 -5.7235070171e-12 5.702429844e-12 5.0915649622e-12 5.0915649622e-12 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 1.498141513e-11 -1.498141513e-11 1.498141513e-11 1.498141513e-11 1.3905226423e-11 1.3905226423e-11 1.4062928958e-11 1.4062928958e-11 -1.3214247139e-14 -1.3214247139e-14 --1.3214247139e-14 -1.3214247139e-14 1.6243213139e-11 1.6212729673e-11 1.6243213139e-11 1.6212729673e-11 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 9.5838742167e-11 9.448318564e-11 9.448318564e-11 9.448318564e-11 9.4449754567e-11 -9.4449754567e-11 9.4587654439e-11 1e-10 1e-10 1e-10 1e-10 9.5586267539e-11 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 9.4721094716e-11 9.4721094716e-11 -9.4721094716e-11 9.4657557361e-11 9.4657557361e-11 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 7.4985121953e-11 1e-10 7.5308095601e-11 8.9551289452e-11 1e-10 8.9687984233e-11 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 9.4518937398e-11 9.4518937398e-11 9.4518937398e-11 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 9.464119928e-11 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 7.4528590652e-11 7.540507024e-11 7.7277394686e-11 7.7277394686e-11 -7.5939422955e-11 7.540507024e-11 7.540507024e-11 7.540507024e-11 7.5939422955e-11 7.5939422955e-11 7.5939422955e-11 7.6212698406e-11 7.7277394686e-11 -7.5939422955e-11 0.042344986888 7.7277394686e-11 7.5105776393e-11 8.9908948616e-11 7.7277394686e-11 7.540507024e-11 7.6486784405e-11 7.5758629408e-11 -1e-10 1e-10 7.5653844508e-11 7.4441712577e-11 7.4491103783e-11 7.5696903083e-11 1e-10 1e-10 1e-10 -1e-10 9.5014412618e-11 9.5084590903e-11 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 9.4851377968e-11 9.5408611162e-11 9.5408611162e-11 9.5408611162e-11 1e-10 -1e-10 9.5365317103e-11 9.5365317103e-11 9.41009961e-11 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 7.3937686993e-11 7.3228769324e-11 7.3634300854e-11 7.3937686993e-11 7.3228769324e-11 7.3228769324e-11 -7.3937686993e-11 7.326359344e-11 7.3228769324e-11 7.3937686993e-11 7.3228769324e-11 7.3937686993e-11 1e-10 7.5847570142e-11 7.4528590652e-11 -7.6143082335e-11 7.6143082335e-11 7.4528590652e-11 7.484748466e-11 7.4528590652e-11 7.5590352675e-11 7.4528590652e-11 7.5590352675e-11 7.3923073616e-11 -7.484748466e-11 7.484748466e-11 7.4528590652e-11 7.6143082335e-11 7.4528590652e-11 7.593682669e-11 7.4528590652e-11 7.5590352675e-11 7.5252312473e-11 -7.4528590652e-11 7.4528590652e-11 7.4528590652e-11 7.4528590652e-11 7.4528590652e-11 7.5252312473e-11 7.5590352675e-11 7.3636922452e-11 7.4528590652e-11 -7.4528590652e-11 7.5252312473e-11 7.5903021515e-11 7.4528590652e-11 1e-10 1e-10 1e-10 9.4403278129e-11 1e-10 -9.4499825984e-11 9.4600146242e-11 9.4600146242e-11 9.4600146242e-11 9.4565505053e-11 9.4565505053e-11 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 9.558155e-11 9.558155e-11 9.558155e-11 9.5577458097e-11 1e-10 1e-10 -1e-10 1e-10 7.3346827397e-11 7.3261251892e-11 1e-10 1e-10 1e-10 9.0221416381e-11 8.9404032606e-11 -8.9208517502e-11 8.8735024723e-11 8.8735024723e-11 8.8876689523e-11 8.9433655393e-11 8.9255409934e-11 9.0023759248e-11 8.9255409934e-11 9.0023759248e-11 -8.9399237408e-11 8.8735024723e-11 8.9433655393e-11 8.8735024723e-11 8.8735024723e-11 8.9433655393e-11 8.8876689523e-11 8.8735024723e-11 8.8876689523e-11 -9.0023759248e-11 9.0257426528e-11 1e-10 8.812727726e-11 8.812727726e-11 8.9850957007e-11 8.9850957007e-11 8.9219753869e-11 8.8640384526e-11 -8.812727726e-11 8.812727726e-11 8.9850957007e-11 8.9850957007e-11 8.9850957007e-11 8.812727726e-11 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 7.2508369198e-11 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -6.1614899957e-11 0.010008914075 6.1614899957e-11 6.1614899957e-11 6.1614899957e-11 6.1614899957e-11 6.1614899957e-11 6.1614899957e-11 6.1614899957e-11 -6.1614899957e-11 0.051809580005 6.1614899957e-11 6.1614899957e-11 6.1614899957e-11 6.1614899957e-11 6.1614899957e-11 6.1614899957e-11 6.1614899957e-11 -6.1614899957e-11 0.051809580005 6.1614899957e-11 6.1614899957e-11 0.010008914075 6.1614899957e-11 6.1407851825e-11 6.1407851825e-11 6.1407851825e-11 -6.1407851825e-11 6.0947053554e-11 6.0947053554e-11 6.0925068293e-11 6.0925068293e-11 1e-10 8.7991703315e-11 8.7912684723e-11 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -8.555425444e-11 1e-10 1e-10 1e-10 8.576500006e-11 1e-10 1e-10 1e-10 1e-10 -8.4892329245e-11 9.0724756553e-11 8.4942437328e-11 1e-10 1e-10 1e-10 1e-10 8.5124683485e-11 6.9868518479e-11 -1e-10 1e-10 1e-10 8.5560137507e-11 8.5560137507e-11 8.5009320551e-11 8.5560137507e-11 8.5009320551e-11 8.5560137507e-11 -8.5077719241e-11 8.5009320551e-11 8.5009320551e-11 8.5009320551e-11 8.5560137507e-11 8.5343150508e-11 1e-10 1e-10 1e-10 -1e-10 8.6790668341e-11 8.5602556455e-11 8.6499684439e-11 0.013500315661 8.6499684439e-11 8.6499684439e-11 8.6499684439e-11 8.6499684439e-11 -8.6499684439e-11 8.6499684439e-11 0.013500315661 8.6499684439e-11 8.6499684439e-11 8.6499684439e-11 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 9.1666630008e-11 9.2605457392e-11 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 8.4216402646e-11 8.4317902563e-11 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 0.044121929473 -7.5051277171e-11 7.1785994883e-11 7.1785994883e-11 6.1407851825e-11 6.1407851825e-11 6.1407851825e-11 0.052110651722 0.010079015412 6.1407851825e-11 -0.010079015412 0.052110651722 8.5930887058e-11 0.014051572235 0.014051572235 8.5930887058e-11 1e-10 1e-10 1e-10 -1e-10 8.3760534052e-11 8.375717805e-11 8.375717805e-11 8.3760534052e-11 1e-10 1e-10 7.4924090996e-11 7.4909564375e-11 -0.051323231125 7.1785994883e-11 6.1407851825e-11 6.1407851825e-11 0.052110651722 0.010079015412 0.010079015412 6.1407851825e-11 6.1407851825e-11 -0.052110651722 8.5851547e-11 8.5842463018e-11 8.5851547e-11 8.5842463018e-11 1e-10 1e-10 1e-10 1e-10 -0.016241999794 0.016240287548 8.3758000306e-11 8.3759712552e-11 1e-10 1e-10 7.5294327969e-11 0.044204386154 7.1785994883e-11 -7.1785994883e-11 6.1407851825e-11 0.010079015412 6.1407851825e-11 0.052110651722 6.1407851825e-11 0.052110651722 6.1407851825e-11 0.010079015412 -0.014076143305 8.608155933e-11 8.608155933e-11 0.014076143305 1e-10 1e-10 1e-10 1e-10 8.3774056079e-11 -8.3743572614e-11 8.3743572614e-11 8.3774056079e-11 +9.3884849554e-13 9.3884849554e-13 1.4472828226e-10 1.4485025157e-10 1.6517962961e-10 1.6533672824e-10 1.9015117202e-10 1.8959151812e-10 1.7463110546e-10 +1.8928022918e-10 1.8936473751e-10 1.9002886886e-10 1.7388571845e-10 1.9013015447e-10 6.1215642677e-11 6.1215663444e-11 6.1226420614e-11 6.1226412591e-11 +8.7172320346e-11 8.7172271584e-11 8.7130861344e-11 8.7130840123e-11 6.2603486459e-11 6.2595533945e-11 6.2595614732e-11 6.26035072e-11 9.3884849554e-13 +9.3884849554e-13 1.4456644079e-10 1.4472828226e-10 1.6533679602e-10 1.6499135484e-10 1.9002885644e-10 1.7388248685e-10 1.8959150658e-10 1.7450743759e-10 +1.8938256238e-10 1.9006530931e-10 1.7388572789e-10 1.7450847342e-10 6.1226422364e-11 6.1215670872e-11 6.1226420614e-11 6.1215644854e-11 8.7172278377e-11 +8.7130820999e-11 8.7172320346e-11 8.7130857393e-11 6.2595559774e-11 6.2595553168e-11 6.2603515094e-11 6.2603514969e-11 9.3884849554e-13 9.3884849554e-13 +1.4456984536e-10 1.4478703908e-10 1.6526678214e-10 1.6549507129e-10 1.7347179691e-10 1.8994990637e-10 1.9033690915e-10 1.8944190668e-10 1.8926980585e-10 +1.89283491e-10 1.7463002831e-10 1.9015227601e-10 6.1215627467e-11 6.1226402421e-11 6.1215635612e-11 6.1226440056e-11 8.7172316116e-11 8.7172313926e-11 +8.7130855205e-11 8.7130861163e-11 6.2603516748e-11 6.2603523923e-11 6.2595582074e-11 6.2595552329e-11 9.3870690776e-13 9.3870690776e-13 1.4388445217e-10 +1.4395989471e-10 1.6499110044e-10 1.6549589619e-10 1.7384718048e-10 1.7373091432e-10 0.015115531017 1.7450679407e-10 1.7463153181e-10 0.015115531017 +1.7462943317e-10 1.7384720309e-10 6.1097878447e-11 6.1097868711e-11 6.1119563075e-11 6.1119572816e-11 8.6853299669e-11 8.6933865594e-11 8.6853281874e-11 +8.693388339e-11 6.2591905785e-11 6.2607281132e-11 6.260730829e-11 6.2591878625e-11 9.3871985513e-13 9.3871985513e-13 1.4249467586e-10 1.4403004842e-10 +1.6518384157e-10 1.6549607768e-10 0.015010388584 0.015115531017 1.7338834439e-10 1.7462145378e-10 1.8933208856e-10 1.7373347564e-10 1.9016153717e-10 +1.7463952562e-10 6.0928755519e-11 6.1128116433e-11 6.0928749227e-11 6.1128116433e-11 8.6355756354e-11 8.7081681929e-11 8.6355822548e-11 8.708164027e-11 +6.2528722257e-11 6.2670497713e-11 6.2670484585e-11 6.2528788452e-11 9.3884849554e-13 9.3884849554e-13 1.4474875508e-10 1.4478701797e-10 1.6526678214e-10 +1.6517962961e-10 1.7375977099e-10 1.7462998671e-10 1.9033689761e-10 1.8928346544e-10 1.9013121344e-10 1.7462996772e-10 1.7375974799e-10 1.8932101945e-10 +6.1215658213e-11 6.1226421854e-11 6.1226413469e-11 6.1215658213e-11 8.7172272496e-11 8.7172316116e-11 8.7130904774e-11 8.7130858082e-11 6.2603516748e-11 +6.2603524534e-11 6.2595562292e-11 6.2595541581e-11 4.1954783913 4.1954783913 3.5519933122 3.5515088887 3.4618529399 3.4614486252 +3.2743735048 3.2743946926 3.273646191 3.2736472693 3.273646191 3.2743735048 3.2743946926 3.2736472693 3.9145068067 +3.9146580146 3.9146580146 3.9145068067 4.1092868004 4.1092452714 4.1092868004 4.1092452714 3.8809213439 3.8808857909 +3.8808857909 3.8809213439 9.3884849554e-13 9.3884849554e-13 1.4449731246e-10 1.4483184454e-10 1.6549624914e-10 1.6499145256e-10 1.7388240722e-10 +1.7376303275e-10 1.74507279e-10 1.7463102792e-10 0.015115531017 1.7462994931e-10 0.015115531017 1.7388236742e-10 6.1215661166e-11 6.1226404972e-11 +6.1215670936e-11 6.12263952e-11 8.7130909968e-11 8.7172324219e-11 8.7130892176e-11 8.7172342011e-11 6.2595528297e-11 6.2603521226e-11 6.2595555457e-11 +6.2603494067e-11 9.3871985513e-13 9.3871985513e-13 1.4224701511e-10 1.4390290853e-10 1.6542582726e-10 1.6499129769e-10 1.7367643913e-10 1.7422394504e-10 +1.8947717037e-10 0.015115531017 1.7449884528e-10 1.736763912e-10 1.9016782716e-10 0.015010388583 6.0928770556e-11 6.1128152574e-11 6.0928736935e-11 +6.1128130554e-11 8.6355769453e-11 8.6355845657e-11 8.7081655671e-11 8.7081592795e-11 6.2528775737e-11 6.2670480079e-11 6.2528771223e-11 6.2670460086e-11 +9.3884849554e-13 9.3884849554e-13 1.4456644079e-10 1.447869593e-10 1.6551821596e-10 1.6526678214e-10 1.9033690915e-10 1.900277791e-10 1.8928347786e-10 +1.738824544e-10 1.8940688217e-10 1.8938260455e-10 1.7463000833e-10 1.9011338857e-10 6.1226416643e-11 6.1215713463e-11 6.1215635084e-11 6.1226400161e-11 +8.7130840338e-11 8.71308609e-11 8.7172268047e-11 8.7172316116e-11 6.2595558081e-11 6.2603516748e-11 6.260349404e-11 6.2595551849e-11 9.3884849554e-13 +9.3884849554e-13 1.4456644079e-10 1.4494563298e-10 1.6533678964e-10 1.6542454985e-10 1.7388245601e-10 1.7450737065e-10 1.90028862e-10 1.9006530931e-10 +1.8938256238e-10 1.8935113273e-10 1.7450845396e-10 1.7376306282e-10 6.1226414941e-11 6.1215670872e-11 6.1226413321e-11 6.1215644854e-11 8.7172315426e-11 +8.7130857393e-11 8.7130864251e-11 8.7172322427e-11 6.2603514969e-11 6.2595526858e-11 6.2603492627e-11 6.2595553168e-11 9.3871985513e-13 9.3871985513e-13 +1.4260039518e-10 1.4387329871e-10 1.6533664087e-10 1.6548484932e-10 1.7451689097e-10 1.8919674218e-10 1.9014273277e-10 1.8924926747e-10 1.7345858012e-10 +1.8937905929e-10 1.8928134832e-10 1.8992513365e-10 6.0928734872e-11 6.0928752605e-11 6.1128094798e-11 6.1128109744e-11 8.6355782768e-11 8.6355824652e-11 +8.7081571713e-11 8.7081634146e-11 6.2670424951e-11 6.2528813345e-11 6.2670470301e-11 6.2528754727e-11 1.2566368624e-09 1.2566368624e-09 1.2566373462e-09 +1.2566368624e-09 1.2566370246e-09 1.2566370246e-09 1.2566367743e-09 1.2566373748e-09 1.2566370657e-09 1.2566370657e-09 1.2566370657e-09 1.2566368872e-09 +1.2566363462e-09 1.2566372072e-09 1.2566370569e-09 1.2566373438e-09 1.2566373438e-09 1.2450412114e-09 1.2459997132e-09 1.2450412114e-09 1.256637033e-09 +1.2453514401e-09 1.2408708199e-09 1.2408708199e-09 1.2408703999e-09 1.198108912e-09 1.1827876713e-09 1.1827877019e-09 1.182787567e-09 1.1824375666e-09 +1.1824375974e-09 1.1840375025e-09 1.2566373179e-09 1.2566373179e-09 1.256637081e-09 1.2439945894e-09 1.1951582613e-09 1.240717326e-09 1.240717326e-09 +1.2401006914e-09 1.2340236306e-09 1.2566364524e-09 1.256636772e-09 1.2334936036e-09 1.2566372717e-09 1.2566361848e-09 1.2566361794e-09 1.2566361794e-09 +1.2566370075e-09 1.2566370075e-09 1.25663701e-09 1.2566371016e-09 1.2566371372e-09 1.2566371372e-09 1.2566370957e-09 1.2566369457e-09 1.2566369457e-09 +1.2332821276e-09 1.2334650707e-09 1.2334650526e-09 1.2474998497e-09 1.2474998497e-09 1.2474998497e-09 1.2473959351e-09 1.2473959351e-09 1.2566369546e-09 +1.2566377003e-09 1.2566370516e-09 1.2566370426e-09 1.2566370426e-09 1.2566374014e-09 1.2566372296e-09 1.2566371909e-09 1.2566372296e-09 1.256637011e-09 +1.256637011e-09 1.2566369123e-09 1.2566372612e-09 1.2428227489e-09 1.2566366198e-09 1.2566373026e-09 1.2566369898e-09 1.2566380605e-09 1.2566384665e-09 +1.2566380605e-09 1.2566384665e-09 1.2566380605e-09 1.2566373806e-09 1.256636538e-09 1.2566365453e-09 1.2566365453e-09 1.2566365124e-09 1.2566365124e-09 +1.2566365124e-09 1.2351024014e-09 1.2351022538e-09 1.2336167475e-09 1.2334982144e-09 1.2349415472e-09 1.2351024176e-09 1.2334981963e-09 1.2344646119e-09 +1.2566370062e-09 1.2566370062e-09 1.2566372148e-09 1.2566372148e-09 1.256637388e-09 1.2566367923e-09 1.2566379742e-09 1.1829721136e-09 1.1829721136e-09 +1.1829721323e-09 1.1822160587e-09 1.1822160777e-09 1.2566373456e-09 1.2566376059e-09 1.256637257e-09 1.2566375545e-09 1.2354587231e-09 1.2354587344e-09 +1.2351336554e-09 1.2349212337e-09 1.2354587403e-09 1.2350988703e-09 1.2339497452e-09 1.2339497631e-09 1.2566371186e-09 1.2566370066e-09 1.2566370544e-09 +1.2566370544e-09 1.2566370544e-09 1.2476134911e-09 1.2476134911e-09 1.2476134911e-09 1.2474689584e-09 1.2474689584e-09 1.2566368735e-09 1.2566371459e-09 +1.2566371459e-09 1.2566370561e-09 1.2566375496e-09 1.2566375031e-09 1.2566371139e-09 1.2566370875e-09 1.2566370875e-09 1.2566367112e-09 1.256637198e-09 +1.2566369655e-09 1.2566370203e-09 1.2566370203e-09 1.2566369541e-09 1.2566372232e-09 1.2566366866e-09 1.2566372892e-09 1.2566372174e-09 1.2566372174e-09 +1.2566372736e-09 1.2566369614e-09 9.4202339279e-10 1.2566373396e-09 9.457596519e-10 1.1132772596e-09 1.2566367092e-09 1.1148187348e-09 1.2566369514e-09 +1.2566369514e-09 1.2566372193e-09 1.2446644247e-09 1.2446644247e-09 1.2446644247e-09 1.2445536248e-09 1.2445536248e-09 1.2566377278e-09 1.2566371571e-09 +1.2566371661e-09 1.2566371661e-09 1.2566369965e-09 1.2566378123e-09 1.2566371879e-09 1.2566371879e-09 1.2566368884e-09 1.2566370872e-09 1.2566369963e-09 +1.2566369963e-09 1.2566369963e-09 1.2566369564e-09 1.2456907012e-09 1.2566366267e-09 1.2566366254e-09 1.2566375388e-09 1.2566375388e-09 1.2566375388e-09 +1.2566373483e-09 1.2566369641e-09 1.2566370031e-09 1.2566370031e-09 1.2566376983e-09 1.2566376983e-09 1.2566376983e-09 1.2566367285e-09 1.2566371673e-09 +1.2566371594e-09 1.2566367614e-09 1.2566367884e-09 1.2566371272e-09 1.2566374441e-09 1.2566371272e-09 1.2566367884e-09 1.2566371697e-09 1.2566366456e-09 +1.2566366456e-09 1.2566366456e-09 1.2566369197e-09 1.1807720671e-09 1.180772069e-09 1.1807720869e-09 1.2458338299e-09 1.2458338299e-09 1.2458338299e-09 +1.248496649e-09 1.2484966337e-09 1.2484966337e-09 1.2566369334e-09 1.256637079e-09 1.256637079e-09 1.2566367508e-09 1.256637346e-09 1.2566378701e-09 +1.2566371193e-09 1.2566378956e-09 1.2566377874e-09 1.2566377874e-09 1.256637606e-09 1.256637218e-09 1.2566370676e-09 1.2566376001e-09 1.2566372884e-09 +1.2566376001e-09 1.2566372371e-09 1.2566372371e-09 1.2566371193e-09 1.2566368831e-09 1.2566366144e-09 1.2566368831e-09 1.2566368831e-09 1.1823370874e-09 +1.2566367615e-09 1.256637681e-09 1.2566368742e-09 1.2566368742e-09 1.2566363269e-09 1.2485411222e-09 1.2566371494e-09 1.2566369602e-09 1.2566369602e-09 +1.2566372337e-09 1.2566375358e-09 1.2566369809e-09 1.2566370044e-09 1.2566370044e-09 1.2566366559e-09 1.2566366559e-09 1.2566369608e-09 1.2566368865e-09 +1.2566367863e-09 1.2566366093e-09 1.2566366093e-09 1.2566366093e-09 1.2566370922e-09 1.2566371294e-09 1.2566371294e-09 1.2566379769e-09 1.2566366477e-09 +1.2426147148e-09 1.256637318e-09 1.2566373828e-09 1.2566362538e-09 1.256636214e-09 1.2566374186e-09 1.2566374186e-09 1.256636214e-09 1.2566367006e-09 +1.2566362538e-09 1.2566373828e-09 1.2566369846e-09 1.2566373828e-09 1.256636214e-09 9.3583639538e-10 9.6236950235e-10 9.8398026193e-10 9.8398032445e-10 +9.5219377203e-10 9.6236950302e-10 9.6236969788e-10 9.6236973102e-10 9.5219372996e-10 9.5219376167e-10 9.5219378451e-10 9.565537748e-10 9.8398028497e-10 +9.5219364823e-10 0.615433504 9.8398034748e-10 9.6033278505e-10 1.1173670132e-09 9.8398032445e-10 9.6236973102e-10 9.7505698784e-10 9.6699438185e-10 +1.2566375455e-09 1.2566364479e-09 9.6571651562e-10 9.5255201963e-10 9.5309409919e-10 9.6613755346e-10 1.2566368023e-09 1.2566369413e-09 1.2566369413e-09 +1.2566371764e-09 1.1879921424e-09 1.1888699807e-09 1.2566363554e-09 1.2566367542e-09 1.256637764e-09 1.256637011e-09 1.2566364284e-09 1.2566364284e-09 +1.2566370255e-09 1.2434244895e-09 1.2434333241e-09 1.2566369873e-09 1.1857976181e-09 1.1929461591e-09 1.1929461861e-09 1.1929461663e-09 1.2566369061e-09 +1.2566374405e-09 1.192452883e-09 1.1924529102e-09 1.1774411414e-09 1.2566373182e-09 1.2566371729e-09 1.256637162e-09 1.256637162e-09 1.2566371978e-09 +1.2420024996e-09 1.2566363158e-09 1.2566369677e-09 9.3058327649e-10 9.2190184544e-10 9.2691305806e-10 9.3058327649e-10 9.2190182262e-10 9.2190184544e-10 +9.3058327649e-10 9.225003492e-10 9.2190168998e-10 9.305834078e-10 9.219017128e-10 9.305834078e-10 1.2566368598e-09 9.5321775122e-10 9.3798108601e-10 +9.5660753645e-10 9.5660742517e-10 9.3794513925e-10 9.5704066259e-10 9.3794501201e-10 9.6515644786e-10 9.5361440891e-10 9.6548475874e-10 9.4810229243e-10 +9.5704064895e-10 9.5704065397e-10 9.5361416417e-10 9.5660753734e-10 9.3785116579e-10 9.5430718821e-10 9.3785132178e-10 9.6515645337e-10 9.6173739515e-10 +9.536143783e-10 9.536141764e-10 9.5361414579e-10 9.5376754113e-10 9.5376759932e-10 9.6173740133e-10 9.6547663095e-10 9.449465953e-10 9.3785119454e-10 +9.5376754255e-10 9.6173736297e-10 9.6855911627e-10 9.5361443048e-10 1.25663642e-09 1.2566373321e-09 1.2566373321e-09 1.1804651646e-09 1.256637453e-09 +1.1819587878e-09 1.1830968304e-09 1.1830968004e-09 1.1830968304e-09 1.1827961014e-09 1.1827961209e-09 1.242526669e-09 1.2566377671e-09 1.2566377671e-09 +1.2566375461e-09 1.2566372874e-09 1.2566372136e-09 1.2566372136e-09 1.2566368097e-09 1.2260504409e-09 1.2566372695e-09 1.2566369908e-09 1.2566369908e-09 +1.2566369659e-09 1.2566372155e-09 1.2566369076e-09 1.1944943177e-09 1.1944942405e-09 1.1944942652e-09 1.1944389001e-09 1.2566376878e-09 1.2300830989e-09 +1.256637715e-09 1.229225488e-09 9.2323502005e-10 9.2223907068e-10 1.2444273377e-09 1.2444273397e-09 1.2444273397e-09 1.1212444216e-09 1.1115988648e-09 +1.1100999702e-09 1.104203864e-09 1.1042039386e-09 1.105728557e-09 1.1118674225e-09 1.1099342744e-09 1.1187507414e-09 1.10993428e-09 1.1187507369e-09 +1.1122224036e-09 1.1042038599e-09 1.1118674418e-09 1.1042039772e-09 1.1042039731e-09 1.1118674361e-09 1.1057285145e-09 1.1042038995e-09 1.1057285099e-09 +1.1187507351e-09 1.1216484309e-09 1.2566374054e-09 1.0972804634e-09 1.0972804634e-09 1.1168821404e-09 1.1168821651e-09 1.1096350878e-09 1.103203296e-09 +1.0972803372e-09 1.0972804724e-09 1.1168821404e-09 1.1168821464e-09 1.116882171e-09 1.0972803282e-09 1.2566378237e-09 1.2474436487e-09 1.2474436487e-09 +1.2474365787e-09 1.2474435871e-09 1.2566372826e-09 1.2566374682e-09 1.2566373399e-09 1.2566373399e-09 1.2566373399e-09 9.125419484e-10 1.2305324543e-09 +1.2566372447e-09 1.2317548557e-09 1.2566373921e-09 1.2566373921e-09 1.2333492575e-09 1.2333492392e-09 1.2333492703e-09 1.2566388837e-09 1.2566386449e-09 +1.256638573e-09 1.256638573e-09 1.256638573e-09 1.2566385876e-09 1.2566385876e-09 1.2566385876e-09 1.2566369714e-09 1.2566371735e-09 1.2566369681e-09 +7.9330304987e-10 0.17746057153 7.9358024703e-10 7.9330301046e-10 7.9358037056e-10 7.9358023074e-10 7.933030211e-10 7.9358033298e-10 7.9330300652e-10 +7.9358039249e-10 0.72338086934 7.9308017914e-10 7.9308023536e-10 7.9308021577e-10 7.9330302096e-10 7.9308023369e-10 7.9358027578e-10 7.935802893e-10 +7.9358018587e-10 0.72338086934 7.9358042164e-10 7.9308027347e-10 0.17746057153 7.9358040454e-10 7.9157170302e-10 7.9059711595e-10 7.9065757289e-10 +7.9110498455e-10 7.8615694332e-10 7.8633234925e-10 7.8603108229e-10 7.85915623e-10 1.2566367595e-09 1.0961077894e-09 1.0952648019e-09 1.256637209e-09 +1.2566380171e-09 1.2566368357e-09 1.2566368555e-09 1.2566367377e-09 1.2566369617e-09 1.2566369617e-09 1.2566369617e-09 1.2566368965e-09 1.256636982e-09 +1.0461982435e-09 1.2566365718e-09 1.2566365718e-09 1.2566365718e-09 1.0486046651e-09 1.2566372597e-09 1.2566372597e-09 1.2566369029e-09 1.2566365524e-09 +1.0408527532e-09 1.1391586002e-09 1.0413168316e-09 1.2566371405e-09 1.2566374338e-09 1.2566374338e-09 1.2566374338e-09 1.0665597487e-09 9.0008689224e-10 +1.2566367747e-09 1.2566379908e-09 1.2566373568e-09 1.047974423e-09 1.047974423e-09 1.0415123981e-09 1.0479744223e-09 1.0415123981e-09 1.047974423e-09 +0.023373002575 1.0415123771e-09 1.0415123771e-09 1.0415123771e-09 1.0479744223e-09 0.023082609369 1.256637575e-09 1.2566375666e-09 1.256637575e-09 +1.2566367244e-09 1.0616486328e-09 1.0473332604e-09 1.0574735591e-09 0.24693609349 1.057473464e-09 1.0574735447e-09 1.0574735462e-09 1.0574735616e-09 +1.0574734625e-09 1.0574734768e-09 0.24693609349 1.0574735462e-09 1.057473464e-09 1.0574734794e-09 1.2566372188e-09 1.2566362775e-09 1.2566362775e-09 +1.2566371798e-09 1.2566391678e-09 1.2566391678e-09 1.2566370622e-09 1.2566369098e-09 1.1534718149e-09 1.1625778358e-09 1.256637168e-09 1.2421269717e-09 +1.2566374048e-09 1.2566372799e-09 1.2566372799e-09 1.2566368807e-09 1.2566385891e-09 1.2435203002e-09 1.2566366628e-09 1.2566395424e-09 1.2566364886e-09 +1.2195209855e-09 1.2204432425e-09 1.2204429414e-09 1.2204432167e-09 1.2160311967e-09 1.2160311967e-09 1.2160312788e-09 1.2160312464e-09 1.2160311643e-09 +1.2204429414e-09 1.2204429672e-09 1.2178812799e-09 1.1767194172e-09 1.1752561783e-09 1.1767194603e-09 1.1752561424e-09 1.1752561351e-09 1.1767194953e-09 +0.03719731331 1.1752561854e-09 1.1767194533e-09 0.03718610603 1.1767195025e-09 1.1752561419e-09 1.2566375637e-09 1.2566375637e-09 1.2566369254e-09 +1.2566366255e-09 1.1714122782e-09 1.1717393414e-09 1.1754662993e-09 1.1701025848e-09 1.03193966e-09 1.0334990143e-09 1.2566365363e-09 1.2566365612e-09 +1.2566365612e-09 1.2566366962e-09 1.2566370228e-09 1.2566370228e-09 1.2566370228e-09 1.2566365786e-09 1.2566365786e-09 1.2071044209e-09 1.256636802e-09 +1.2566370632e-09 1.2566370232e-09 1.2566369825e-09 1.2566370232e-09 1.237552258e-09 1.2566367135e-09 1.2566373019e-09 1.2566373019e-09 0.63914954496 +9.4192876096e-10 9.0413758424e-10 9.0413742557e-10 7.9122368451e-10 7.9044589838e-10 7.9044591859e-10 0.72735232543 0.17858061393 7.9122364455e-10 +0.17858061393 0.72735232543 1.0510668704e-09 0.2557620704 0.2557620704 1.0510668704e-09 0.039727145287 1.1706431621e-09 0.039727145287 +1.1706432148e-09 0.025140811594 1.0273741484e-09 1.0273741217e-09 0.025140811594 1.2566371551e-09 1.2566371551e-09 9.4046042674e-10 9.4029360511e-10 +0.73362597109 9.041377176e-10 7.9119529059e-10 7.9044662878e-10 0.72813508284 0.17858061393 0.17858061393 7.9044784563e-10 7.9119163772e-10 +0.72813609711 1.0501593766e-09 1.0500559655e-09 0.0235233208 0.023531037721 0.046179002593 0.046181668804 1.1704454331e-09 1.1704039109e-09 +0.28943964975 0.28941228401 1.0273875606e-09 1.0274141906e-09 1.2566370827e-09 1.2566370827e-09 9.4473263886e-10 0.6399203799 9.0413746671e-10 +9.0413749316e-10 7.9045615948e-10 0.17858061393 7.9127868713e-10 0.72736128028 7.9127865973e-10 0.72736128028 7.904561316e-10 0.17858061393 +0.25615157792 1.0527981743e-09 1.0527981743e-09 0.25615157792 0.039922148679 0.039922148679 1.1712212516e-09 1.1712212601e-09 1.0276340701e-09 +0.025218326594 0.025218326594 1.0276340492e-09 POINT_DATA 565 FIELD FieldData 1 radiation%20flux%20density 1 565 double -1e-10 1e-10 1e-10 1e-10 6.7272283258e-11 6.19434354e-11 3.8298157543e-11 6.7017079081e-11 3.8298157543e-11 -6.7017079081e-11 6.7272283258e-11 6.19434354e-11 3.824639551e-11 6.7076660874e-11 6.1930647878e-11 3.824639551e-11 3.824639551e-11 6.7076660874e-11 -6.1380974641e-11 3.8194633477e-11 3.807943391e-11 6.711335821e-11 0.07877370936 0.07877370936 6.6871343625e-11 3.8125699628e-11 3.824639551e-11 -6.7076660874e-11 6.1930647878e-11 3.824639551e-11 6.1502956098e-11 6.7382123118e-11 6.19434354e-11 6.5654931704e-11 6.7272283258e-11 6.1346733694e-11 -0.078820105992 0.078820105992 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 4.5945734426e-11 4.5682328594e-11 -4.5980354782e-11 4.265480241e-11 4.2692459228e-11 4.5510195019e-11 4.5818953833e-11 4.6037924779e-11 4.2443564075e-11 4.526158524e-11 4.6067563612e-11 -4.6286819933e-11 4.5698407211e-11 4.5434716005e-11 4.6227967371e-11 4.2902129625e-11 4.3129949226e-11 4.3129949226e-11 4.2692173854e-11 4.5510480394e-11 -4.5511475807e-11 4.5434716005e-11 4.6227967371e-11 4.2902129625e-11 4.3143733662e-11 4.3143733662e-11 4.3392343441e-11 4.3392628815e-11 4.2443564075e-11 -4.526158524e-11 4.5758803021e-11 4.5682328594e-11 4.6007252237e-11 4.320455143e-11 4.2140712026e-11 4.2123795373e-11 4.3050976497e-11 4.6161019596e-11 -4.5681268843e-11 0.0016681523782 0.15544527418 0.15544527418 0.0016681523784 4.5658052857e-11 4.5807243843e-11 4.2679098876e-11 4.3389952853e-11 -4.339503343e-11 4.2443564075e-11 4.526158524e-11 4.5758803021e-11 4.5682328594e-11 4.5980354782e-11 4.265480241e-11 4.3392765858e-11 4.3392206524e-11 -4.2314507341e-11 4.5070673968e-11 4.5926531835e-11 4.6347728572e-11 4.577528913e-11 4.5434716005e-11 4.6227967371e-11 4.2902129625e-11 4.2975865361e-11 -4.4301250397e-11 4.5785912825e-11 4.6004883771e-11 4.6324174827e-11 4.5834867221e-11 4.5096068071e-11 4.2330515369e-11 4.2208376092e-11 0.001679835934 -0.15589007363 0.15589007363 0.001679835934 4.2208513008e-11 4.2866401779e-11 4.2866401779e-11 4.2208935425e-11 4.2208935425e-11 4.2821710625e-11 -0.0016798359346 0.15596009068 0.15596066143 0.0016798359346 4.2816771277e-11 0.15441321118 0.15441292581 0.001679835934 4.2208935425e-11 -4.3180917444e-11 4.3180632069e-11 4.1963998799e-11 0.0016798359337 4.8441944647e-12 4.8465915174e-12 6.2512968113e-12 6.2512968113e-12 1.2064544839e-11 -1.2062385593e-11 1.2064544839e-11 1.2062385593e-11 4.8441944647e-12 4.8465915174e-12 6.2512968113e-12 6.2512968113e-12 1.2062385593e-11 1.2064544839e-11 -1.2062385593e-11 1.2064544839e-11 4.8441944647e-12 4.8465915174e-12 6.2512968113e-12 6.2512968113e-12 1.2064544839e-11 1.2062385593e-11 1.2062385593e-11 -1.2064544839e-11 4.8185391101e-12 4.8231964313e-12 6.2512969375e-12 6.2512969375e-12 1.2047024482e-11 1.2047024482e-11 1.204284512e-11 1.204284512e-11 -4.7830146964e-12 4.8250615387e-12 6.2513108389e-12 6.2513108389e-12 1.2051151622e-11 1.2013514422e-11 1.2013514422e-11 1.2051151622e-11 4.8441944647e-12 -4.8465915174e-12 6.2512968113e-12 6.2512968113e-12 1.2064544839e-11 1.2062385593e-11 1.2064544839e-11 1.2062385593e-11 0.30488845679 0.30488151253 -0.30131283743 0.30131283743 0.28432680891 0.28432464967 0.28432464967 0.28432680891 4.8441944647e-12 4.8465915174e-12 6.2512968113e-12 -6.2512968113e-12 1.2062385593e-11 1.2062385593e-11 1.2064544839e-11 1.2064544839e-11 4.7830146964e-12 4.8250615387e-12 6.2513108389e-12 6.2513108389e-12 -1.2013514422e-11 1.2051151622e-11 1.2013514422e-11 1.2051151622e-11 4.8441944647e-12 4.8465915174e-12 6.2512968113e-12 6.2512968113e-12 1.2062385593e-11 -1.2064544839e-11 1.2062385593e-11 1.2064544839e-11 4.8441944647e-12 4.8465915174e-12 6.2512968113e-12 6.2512968113e-12 1.2062385593e-11 1.2064544839e-11 -1.2064544839e-11 1.2062385593e-11 4.7830146964e-12 4.8250615387e-12 6.2513108389e-12 6.2513108389e-12 1.2051151622e-11 1.2013514422e-11 1.2013514422e-11 -1.2051151622e-11 1e-10 9.2867629211e-11 9.2814347538e-11 1e-10 9.3377100859e-11 9.9287773231e-11 1e-10 1e-10 -9.3404403274e-11 9.8331590945e-11 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -9.8670017162e-11 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 9.217940437e-11 9.270554169e-11 -9.4648137551e-11 9.4044570809e-11 9.4641952685e-11 9.4648137551e-11 9.4641952685e-11 9.4648137551e-11 9.3071951249e-11 9.2957800169e-11 9.2957800169e-11 -9.2957800169e-11 9.3193508865e-11 9.3087958516e-11 9.3077012005e-11 9.3087958516e-11 9.2952228324e-11 9.2975211636e-11 9.2952228324e-11 9.3054053404e-11 -9.3054053404e-11 9.3054053404e-11 9.3299168187e-11 9.3299168187e-11 9.33247089e-11 9.3299168187e-11 9.3404552102e-11 9.3570872883e-11 9.3565553176e-11 -9.3404552102e-11 1e-10 1e-10 9.270554169e-11 9.270554169e-11 9.270554169e-11 9.270554169e-11 0.0099065169443 1e-10 -9.3185953518e-11 1e-10 9.92977987e-11 1e-10 9.8315299467e-11 9.8315299467e-11 9.8315299467e-11 9.8302511945e-11 9.8302511945e-11 -9.811477509e-11 1e-10 1e-10 9.8913101011e-11 9.9083304331e-11 9.8913101011e-11 9.9263591667e-11 9.9263591667e-11 9.9263591667e-11 -9.9262909683e-11 9.9100024374e-11 9.9100024374e-11 9.9100024374e-11 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 9.3042240369e-11 9.372366342e-11 9.303165081e-11 9.3042240369e-11 9.303165081e-11 9.3042240369e-11 1e-10 -9.8674965222e-11 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 9.1681777641e-11 -9.1793513316e-11 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 9.3273187909e-11 1e-10 1e-10 1e-10 9.2111274663e-11 9.2546250671e-11 9.2086504218e-11 9.202338415e-11 -9.202338415e-11 9.2086504218e-11 9.202338415e-11 9.2598915104e-11 9.2600082829e-11 9.2600082829e-11 9.2600082829e-11 1e-10 1e-10 -9.1060894522e-11 9.1558130251e-11 9.1558130251e-11 9.1060894522e-11 9.1558130251e-11 9.1060894522e-11 9.1060894522e-11 9.1558130251e-11 9.1060894522e-11 -9.1366200872e-11 9.1558130251e-11 9.1163616201e-11 9.0173779068e-11 1e-10 9.1046828007e-11 9.101104431e-11 1e-10 9.9120182453e-11 -9.9120182453e-11 9.9120182453e-11 9.9109592893e-11 9.9109592893e-11 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 9.890378748e-11 9.890378748e-11 9.890378748e-11 1e-10 1e-10 -1e-10 1e-10 1e-10 1e-10 1e-10 9.8928239856e-11 1e-10 1e-10 1e-10 -1e-10 1e-10 1e-10 7.8947760981e-11 0.015063761985 7.9057924372e-11 7.9057924372e-11 7.8947760981e-11 7.8947760981e-11 -7.8947760981e-11 7.8947760981e-11 7.9057924372e-11 7.9057924372e-11 7.9057924372e-11 0.015063761985 7.8784854911e-11 7.852693255e-11 7.8520308899e-11 -7.8459344054e-11 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 1e-10 -1e-10 1e-10 8.9143591703e-11 1e-10 1e-10 9.7916657502e-11 9.8151364348e-11 1e-10 1e-10 -1e-10 0.010317867763 9.2416150184e-11 8.9883951164e-11 8.9883951164e-11 0.015248247911 7.8500753751e-11 7.8500753751e-11 0.015248247911 -9.2375312142e-11 9.2370641487e-11 8.988395129e-11 0.013967586461 0.015686333423 7.848539264e-11 0.015685990974 7.8483233395e-11 9.2493920947e-11 -0.010336667595 8.9883937263e-11 8.9883937263e-11 7.8534263812e-11 0.015253162125 7.8534263812e-11 0.015253162125 +1.2566385803e-09 1.2566385803e-09 1.2566387643e-09 1.2566385803e-09 8.4716753201e-10 7.821581623e-10 4.8381716152e-10 8.4400408076e-10 4.8382108599e-10 +8.4400408094e-10 8.4716814895e-10 7.8215816296e-10 4.8313422506e-10 8.4464928623e-10 7.8201754638e-10 4.8316655129e-10 4.8314739567e-10 8.4464867148e-10 +7.758009313e-10 4.8255136204e-10 4.8125840005e-10 8.450552311e-10 1.0481161188 1.0482128441 8.4231664144e-10 4.818677201e-10 4.8313331783e-10 +8.4464867025e-10 7.820175457e-10 4.831597835e-10 7.7729675907e-10 8.4842216677e-10 7.8215814806e-10 8.2802319941e-10 8.4720016416e-10 7.7547308692e-10 +1.0488653343 1.0487684822 1.2566378173e-09 1.2566370462e-09 1.2566369343e-09 1.25663701e-09 1.2566371488e-09 1.256637427e-09 1.2566370154e-09 +1.2566369986e-09 1.2566371451e-09 1.2566379591e-09 1.256638018e-09 1.2566370409e-09 1.2566369122e-09 1.2566371277e-09 1.2566369517e-09 1.2566368296e-09 +1.2566376348e-09 1.2566375462e-09 1.2566367735e-09 1.256637054e-09 1.2566372378e-09 1.2566370115e-09 1.2566373545e-09 1.2566370504e-09 1.2566369986e-09 +1.2566371451e-09 1.2566379591e-09 1.256638018e-09 1.2566370409e-09 1.2566369122e-09 1.2566371277e-09 1.2566369517e-09 1.2566368296e-09 1.2566376348e-09 +1.2566378173e-09 1.2566370462e-09 1.2566369343e-09 1.25663701e-09 1.2566371488e-09 1.256637427e-09 1.2566370161e-09 1.2566370524e-09 1.2566370696e-09 +1.2566370146e-09 1.2566374928e-09 1.2566378427e-09 1.2566373856e-09 1.2566372421e-09 1.2566369537e-09 1.2566368296e-09 1.2566376348e-09 1.2566378173e-09 +1.2566370437e-09 1.2566369072e-09 1.2566373079e-09 1.2566370554e-09 1.2566366797e-09 1.2566379492e-09 1.2566381528e-09 1.2566369691e-09 1.2566368529e-09 +1.2566372406e-09 1.2566379789e-09 1.2566375578e-09 1.2566369051e-09 1.2566372154e-09 1.2566370042e-09 1.2566375795e-09 5.7185319567e-10 5.6895539242e-10 +5.7116535377e-10 5.2528354166e-10 5.2648474813e-10 5.6657615484e-10 5.6959810979e-10 5.7208771685e-10 5.2269316089e-10 5.6278606867e-10 5.7339732711e-10 +5.7588843802e-10 5.6807601812e-10 5.65176711e-10 5.7494215823e-10 5.2905884861e-10 5.3034618397e-10 5.3034618199e-10 5.2648324743e-10 5.6657770844e-10 +5.6599248935e-10 5.6516106345e-10 5.7494215e-10 5.2905883876e-10 5.305295919e-10 5.3052956837e-10 5.3432821191e-10 5.3432969857e-10 5.2269317294e-10 +5.6278611898e-10 5.6976967291e-10 5.6893973268e-10 5.7162945868e-10 5.3161820356e-10 5.1892512673e-10 5.1865514459e-10 5.3047920238e-10 5.7409317281e-10 +5.6768556086e-10 0.035925595102 2.0543566112 2.0543566112 0.035973993973 5.68428688e-10 5.6903228658e-10 5.2517741572e-10 5.3431566501e-10 +5.3434227979e-10 5.2269317145e-10 5.6278611898e-10 5.6976966948e-10 5.6893974682e-10 5.7116534554e-10 5.2528354729e-10 5.3433038422e-10 5.3432747153e-10 +5.2137745414e-10 5.6085186181e-10 5.7211207399e-10 5.7661520817e-10 5.6893240255e-10 5.6518273754e-10 5.7494215823e-10 5.2905884545e-10 5.2946644041e-10 +5.5328792498e-10 5.6916140508e-10 5.7165102816e-10 5.763491901e-10 5.7105745411e-10 5.6111459494e-10 5.2152813059e-10 5.2067456627e-10 0.036472826279 +2.06055166 2.06055166 0.036472826279 5.206752887e-10 5.2732391285e-10 5.2732391002e-10 5.2067920839e-10 5.2068235101e-10 5.2678445574e-10 +0.036203244482 2.06125971 2.0612705452 0.036204530636 5.2672526341e-10 2.0399084127 2.0399023075 0.036485745446 5.2070776933e-10 +5.318909949e-10 5.3188949128e-10 5.1695240146e-10 0.036485745442 6.3345850878e-11 6.3343343483e-11 7.7629633261e-11 7.7603448501e-11 1.1190379891e-10 +1.180915895e-10 1.1812452703e-10 1.1807050039e-10 6.3305304558e-11 6.334334585e-11 7.7629648399e-11 7.7572062931e-11 1.1807799063e-10 1.1187928343e-10 +1.1186639001e-10 1.1812452379e-10 6.3305788829e-11 6.3351744085e-11 7.7617979499e-11 7.7656032486e-11 1.1812453461e-10 1.1803235539e-10 1.1180877487e-10 +1.1811928459e-10 6.3094884955e-11 6.3134884772e-11 7.7570160774e-11 7.7486025028e-11 1.1180463662e-10 0.0060462124489 1.1180393853e-10 1.1177940626e-10 +6.2705885603e-11 6.3189577599e-11 7.7511931362e-11 7.7459860815e-11 0.0060251839622 1.1156463294e-10 1.1786137071e-10 1.1185065947e-10 6.3331361621e-11 +6.3351734127e-11 7.7603445801e-11 7.7617988428e-11 1.1809088868e-10 1.1186636312e-10 1.1812452355e-10 1.118663682e-10 3.9986913893 3.9985671182 +3.9396117563 3.9395443705 3.6905816241 3.6905315129 3.6905315129 3.6905816241 6.3343239397e-11 6.3310353694e-11 7.75720959e-11 +7.7656231786e-11 1.1189088511e-10 1.1186635908e-10 1.1187926026e-10 0.006046212449 6.267051106e-11 6.3171411405e-11 7.7500194196e-11 7.7427791698e-11 +1.1154272367e-10 1.1810504459e-10 1.1159773437e-10 0.0060251839622 6.330531251e-11 6.3351722465e-11 7.7659870828e-11 7.7617979375e-11 1.1189090211e-10 +1.181044866e-10 1.1807049911e-10 1.181245273e-10 6.3305310736e-11 6.3374399441e-11 7.7629646515e-11 7.7644267419e-11 1.1807799063e-10 1.1185474935e-10 +1.1807644769e-10 1.1186637253e-10 6.272098997e-11 6.3167164117e-11 7.7485350529e-11 7.7510017223e-11 1.1177113706e-10 1.1767783487e-10 1.1784747424e-10 +1.1801089852e-10 1.2566371741e-09 1.1602464792e-09 1.1598190232e-09 1.2566371059e-09 1.166915237e-09 1.2428701496e-09 1.2544347579e-09 1.2566368437e-09 +1.167161532e-09 1.229236524e-09 1.2542854779e-09 1.2566370979e-09 1.256637199e-09 1.2566371961e-09 1.2566370979e-09 1.2566372484e-09 1.256637199e-09 +1.2344531036e-09 1.2566370289e-09 1.2566372314e-09 1.2566371288e-09 1.2566371288e-09 1.2566370912e-09 1.2566371288e-09 1.1343159986e-09 1.1331985711e-09 +1.1804362753e-09 1.1731171449e-09 1.1803352258e-09 1.1804362725e-09 1.1803352297e-09 1.1804362793e-09 1.1642168956e-09 1.1619550786e-09 1.1619353655e-09 +1.1619353619e-09 1.1658938979e-09 1.1642019571e-09 1.1642220918e-09 1.1642019554e-09 1.1618458462e-09 1.1619792698e-09 1.1618458425e-09 1.1633799373e-09 +1.1633799253e-09 1.1633799273e-09 1.166531547e-09 1.1665315428e-09 1.166623993e-09 1.166531547e-09 1.1679359341e-09 1.1701299329e-09 1.1700657982e-09 +1.1679359329e-09 1.2566372754e-09 1.2566369167e-09 1.1331985486e-09 1.1331985818e-09 1.1331985767e-09 1.1331985857e-09 0.16909844469 1.2537100385e-09 +1.1634419762e-09 1.2566370691e-09 1.2431959756e-09 1.254436524e-09 1.2290903161e-09 1.2290904347e-09 1.2290904341e-09 1.2289058903e-09 1.2289058897e-09 +1.2262794399e-09 1.2547560207e-09 1.2545300223e-09 1.2377161375e-09 1.2400805343e-09 1.2377161336e-09 1.2433909362e-09 1.2433909403e-09 1.2433909398e-09 +1.2433880531e-09 1.2408414668e-09 1.2408414715e-09 1.2408414704e-09 1.2566372151e-09 1.2494905925e-09 1.2495373565e-09 1.2566370397e-09 1.2540093833e-09 +1.2540093743e-09 1.2540093743e-09 1.1604652358e-09 1.1693367841e-09 1.1603219277e-09 1.1604652295e-09 1.1603219283e-09 1.1604652358e-09 1.2493532058e-09 +1.233151446e-09 1.2566368504e-09 1.2528558366e-09 1.2531073063e-09 1.2530178782e-09 1.2531073092e-09 1.2531073081e-09 1.2530473495e-09 1.2530532262e-09 +1.2528558396e-09 1.2566369796e-09 1.2546019314e-09 1.2527558134e-09 1.2546019305e-09 1.2527558164e-09 1.2546019279e-09 1.2527557536e-09 1.1272620408e-09 +1.1285087188e-09 1.2539836194e-09 1.2539836194e-09 1.253881044e-09 1.2533315092e-09 1.2533486867e-09 1.2534696428e-09 1.2530478984e-09 1.253047901e-09 +1.2535376393e-09 1.2533315118e-09 1.2530479264e-09 1.254836382e-09 1.254836382e-09 1.254836382e-09 1.2548126325e-09 1.2549804763e-09 1.2549804763e-09 +1.2551175274e-09 1.2566371637e-09 1.255103739e-09 1.2551047106e-09 1.2551047754e-09 1.2551047754e-09 1.2566370566e-09 1.2566371539e-09 1.2566371539e-09 +1.2566371524e-09 1.1500516773e-09 1.2533268114e-09 1.2533268088e-09 1.2533006714e-09 1.1464931886e-09 1.1517937563e-09 1.1460280165e-09 1.1452059099e-09 +1.1452058812e-09 1.1460280453e-09 1.1451753502e-09 1.1524817711e-09 1.1524040163e-09 1.1524039938e-09 1.1524039789e-09 1.2566370806e-09 1.2566371385e-09 +1.1181032055e-09 1.1248731314e-09 1.1248730759e-09 1.1181032109e-09 1.1248731088e-09 1.1181032339e-09 1.1181032418e-09 1.1248731667e-09 1.1181032346e-09 +0.010046654532 1.1248730688e-09 0.010093185517 1.0966978521e-09 1.25663702e-09 1.1198530662e-09 1.1192719721e-09 1.2566370517e-09 1.2393371687e-09 +1.2393371645e-09 1.2393371718e-09 1.2391514025e-09 1.2391514057e-09 1.256636887e-09 1.2367965643e-09 1.2566368988e-09 1.2566369586e-09 1.2566369586e-09 +1.2566369301e-09 1.2566371177e-09 1.2566371177e-09 1.2566369724e-09 1.2376754629e-09 1.2376754624e-09 1.2376754589e-09 1.2414625881e-09 1.2412771591e-09 +1.2412773269e-09 1.2412771591e-09 1.2412773256e-09 1.2412771578e-09 1.2566370767e-09 1.2379687263e-09 1.2566373661e-09 1.2566378068e-09 1.2566377792e-09 +1.2566377792e-09 1.2566377792e-09 1.2566371965e-09 9.7218050748e-10 0.24166732859 9.7381014859e-10 9.738101548e-10 9.7218050833e-10 9.7218051324e-10 +9.7218051788e-10 9.7218051996e-10 9.7381015285e-10 9.7381015587e-10 9.7381015188e-10 0.24161149141 9.7056864447e-10 9.6621552113e-10 9.6683002613e-10 +9.6608199603e-10 1.2566371556e-09 1.2566374409e-09 1.2566374409e-09 1.2566367604e-09 1.2566367821e-09 1.2566371693e-09 1.2566371693e-09 1.2566372235e-09 +1.2566376339e-09 1.2566368761e-09 1.110092384e-09 1.2566367487e-09 1.2566376538e-09 1.2206920523e-09 1.2236225413e-09 1.2566369776e-09 1.2566369776e-09 +1.2566369741e-09 0.17573256841 1.1283747832e-09 0.010811326873 0.010811326873 0.24531259333 9.6615075275e-10 9.6615075399e-10 0.24531259333 +0.009957475581 0.0099589588855 1.0927376613e-09 0.23413976292 0.25317381346 9.659324273e-10 0.25316606084 9.658971407e-10 1.129435095e-09 +0.1760096908 0.010856746605 0.010856746605 9.6667766295e-10 0.24544678948 9.6667766057e-10 0.24544678948 diff --git a/tests/input/validation_tests/SN_solver/linesource_SN_reference.vtk b/tests/input/validation_tests/SN_solver/linesource_SN_reference.vtk index 1720ae78..7b83a1c3 100644 --- a/tests/input/validation_tests/SN_solver/linesource_SN_reference.vtk +++ b/tests/input/validation_tests/SN_solver/linesource_SN_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -3.5871354167e-25 3.6859094624e-25 8.8320204494e-25 7.7787910048e-25 0.071466975029 1.5515437272e-19 3.402372749e-20 0.063255213965 1.0913773958e-18 -1.123062978e-18 0.091527813667 0.069469946529 0.089331699384 0.061053733683 7.144932172e-40 5.6435755095e-10 2.5420436305e-48 6.1488092089e-38 -3.641863894e-47 9.4235419472e-48 1.5183044136e-49 3.1083364021e-21 4.7515354105e-38 8.8569952594e-41 1.3521779703e-20 3.9924736456e-10 3.6296022351e-58 -6.6739082868e-63 2.575286603e-48 2.5327327527e-58 4.3805949783e-63 1.5300683111e-18 3.6238035512e-20 1.6850133101e-39 7.2093650332e-38 9.7543630571e-40 -1.915020051e-20 1.2929886847e-18 3.3209808689e-47 8.1049351259e-38 9.6701796529e-48 1.722212318e-49 5.7458765061e-10 2.6328379678e-09 0.088749071879 -0.087962909012 3.8023429893e-63 2.3326595524e-63 1.4362606377e-59 1.4462843141e-59 5.7571690825e-21 2.986584599e-20 1.5379399095e-38 6.13863787e-40 -1.0117277203e-39 1.555092646e-38 5.2170617408e-104 2.390050697e-103 2.526562115e-103 5.1697320939e-104 4.7352363541e-104 3.1373410023e-103 3.3037109571e-103 -4.6933402585e-104 7.3539642868e-19 7.1136280174e-19 0.016748569967 0.01745117874 1.1156510671e-19 1.8974964477e-20 0.032749199809 0.027899004116 -0.014279291332 0.017797842892 1.2325500616e-68 8.7271744678e-69 1.0768514923e-69 1.1662248527e-69 1.0500979395e-69 9.4053734556e-69 1.3310462407e-68 -9.6977667625e-70 4.7471357802e-09 5.2721507346e-10 3.3089986657e-09 4.9410087194e-09 3.3790207953e-49 2.236982031e-50 3.8579533289e-49 2.0877782043e-50 -9.4003824098e-09 5.0836262312e-09 0.028004133799 0.020677090286 1.1891242505e-09 6.6906992142e-09 +5.2299670412e-24 5.3739695314e-24 1.2876908132e-23 1.1341305666e-23 0.91042990431 2.2621228002e-18 4.9605699915e-19 0.82604083331 1.5912103373e-17 +1.6374011773e-17 1.0131098874 0.90246743857 0.99001374466 0.80091869183 1.0417132339e-38 8.2282444619e-09 3.7062559801e-47 8.9648332221e-37 +5.3097545178e-46 1.3739386831e-46 2.213662313e-48 4.5318881302e-20 6.9276502437e-37 1.291331762e-39 1.9714434569e-19 5.8209629874e-09 5.2918950188e-57 +9.730403663e-62 3.7547209723e-47 3.6926812149e-57 6.3868111957e-62 2.2308036667e-17 5.2834271518e-19 2.4567243488e-38 1.0511135628e-36 1.4221668707e-38 +2.7920599736e-19 1.8851483011e-17 4.8419142523e-46 1.1816815545e-36 1.4098981214e-46 2.5109514664e-48 8.3773403343e-09 3.8386182785e-08 0.98504044053 +0.99115033088 5.5437394339e-62 3.400973218e-62 2.0940399615e-58 2.1086561375e-58 8.3938318613e-20 4.3543694861e-19 2.2422817507e-37 8.9500189514e-39 +1.4750817345e-38 2.2672921254e-37 7.6063528872e-103 3.484648315e-102 3.683679358e-102 7.5373473791e-103 6.9038931333e-103 4.5741930481e-102 4.8167363843e-102 +6.8427826467e-103 1.0721893112e-17 1.0371502804e-17 0.244191679 0.25443598055 1.6265972186e-18 2.7665138699e-19 0.47747760737 0.40676247613 +0.20818883619 0.25948924366 1.7970333812e-67 1.2724083183e-67 1.5700266613e-68 1.7003325729e-68 1.5310138235e-68 1.3712904415e-67 1.9406355039e-67 +1.4139138335e-68 6.9212321459e-08 7.6866924255e-09 4.8244450864e-08 7.2038796359e-08 4.9265334412e-48 3.2614569198e-49 5.6248229303e-48 3.0439390774e-49 +1.3705565603e-07 7.4118493039e-08 0.40829497722 0.30146812898 1.7337255188e-08 9.7549053648e-08 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -4.9761490475e-104 2.7636958496e-103 2.9151365361e-103 4.9315361762e-104 0.089392873485 2.2246364456e-63 2.3816440659e-40 5.6167110509e-40 3.372425743e-40 -7.775560932e-64 1.2098674117e-58 2.0496030707e-38 2.7016450443e-38 5.126466377e-39 1.2674517716e-63 8.4424425094e-59 1.5838451372e-38 2.4031216784e-38 -5.1836421563e-39 4.7875354593e-60 1.4601986494e-63 2.9523317589e-41 3.2514543534e-40 2.0462126238e-40 4.8209477142e-60 7.9118929698e-10 8.786917892e-11 -2.6096780034e-19 9.5764608439e-11 4.3880632819e-10 2.2536913823e-21 2.6206095184e-19 5.1811585261e-22 9.405959183e-11 0.0027914286201 0.015346932687 -0.0023798828317 6.6541227433e-11 0.0029085309717 0.01689724732 5.5149977795e-10 0.01919446658 0.0029663091541 8.235014536e-10 0.022036719721 -4.9777881986e-21 9.5965782694e-22 7.5712943655e-21 3.810283402e-20 0.049916280233 0.053108694172 0.051576717325 0.048432745355 6.7580415906e-50 -4.473964062e-51 7.7159066578e-50 4.1755564085e-51 0.0065498428301 0.0055798025017 0.0041354184005 0.0056008290475 +7.2551230102e-103 4.0294206816e-102 4.2502078711e-102 7.1900650129e-103 0.99482860087 3.243468398e-62 3.4723774589e-39 8.1890811875e-39 4.9169391274e-39 +1.1336619807e-62 1.7639650063e-57 2.9882777423e-37 3.9389385184e-37 7.47427252e-38 1.8479191347e-62 1.2308937384e-57 2.3092167484e-37 3.5037118769e-37 +7.5576404225e-38 6.9801332055e-59 2.1289375365e-62 4.3044392151e-40 4.7405562372e-39 2.9833396512e-39 7.0288537922e-59 1.1535386914e-08 1.2811154044e-09 +3.8048582609e-18 1.3962233891e-09 6.3976971341e-09 3.285828661e-20 3.8207896363e-18 7.5540185448e-21 1.3713740771e-09 0.040698617427 0.20888320394 +0.034698153114 9.70160498e-10 0.042406013987 0.23032415939 8.0407418156e-09 0.2614532075 0.043248236516 1.2006466065e-08 0.29936710502 +7.2574970919e-20 1.3991609986e-20 1.1038768002e-19 5.5553217839e-19 0.61350404118 0.64971637984 0.62890363214 0.59339763229 9.8530668825e-49 +6.5229138396e-50 1.1249645861e-48 6.0878781548e-50 0.095495563293 0.081352519698 0.060293630801 0.081659028795 diff --git a/tests/input/validation_tests/output/validate_logger_csv_reference b/tests/input/validation_tests/output/validate_logger_csv_reference index c0e2848c..4a93c21b 100644 --- a/tests/input/validation_tests/output/validate_logger_csv_reference +++ b/tests/input/validation_tests/output/validate_logger_csv_reference @@ -1,3 +1,3 @@ -2022-02-17 12:51:48.163176 ,Iter,Mass,RMS_flux,VTK_out,CSV_out -2022-02-17 12:51:48.168293 ,0.000000,0.011500,0.328352,0.000000,1.000000 -2022-02-17 12:51:48.170259 ,1.000000,0.011500,0.151072,1.000000,1.000000 +2024-02-06 16:29:23.320667 ,Iter,Mass,RMS_flux,VTK_out,CSV_out +2024-02-06 16:29:23.323511 ,0.000000,1.4451e-01,4.0368e+,0.0000e+,1.0000e+ +2024-02-06 16:29:23.326108 ,1.000000,1.4451e-01,2.0608e+,1.0000e+,1.0000e+ diff --git a/tests/input/validation_tests/output/validate_logger_reference b/tests/input/validation_tests/output/validate_logger_reference index 57c3f103..0793efaa 100644 --- a/tests/input/validation_tests/output/validate_logger_reference +++ b/tests/input/validation_tests/output/validate_logger_reference @@ -1,11 +1,19 @@ -2022-02-17 12:51:48.155800 | | Importing mesh. This may take a while for large meshes. -2022-02-17 12:51:48.163151 | ---------------------------- Solver Starts ----------------------------- -2022-02-17 12:51:48.163162 | | The simulation will run for 2 iterations. -2022-02-17 12:51:48.163166 | | The spatial grid contains 96 cells. -2022-02-17 12:51:48.163169 | -------------------------------------------------------------- -2022-02-17 12:51:48.163171 | | Iter | Mass | RMS flux | VTK out | CSV out | -2022-02-17 12:51:48.163173 | -------------------------------------------------------------- -2022-02-17 12:51:48.168285 | | 0 | 0.0114999 | 0.328352 | no | yes | -2022-02-17 12:51:48.170251 | | 1 | 0.0114999 | 0.151072 | yes | yes | -2022-02-17 12:51:48.171081 | -------------------------------------------------------------- -2022-02-17 12:51:48.171086 | --------------------------- Solver Finished ---------------------------- +2024-02-06 16:29:23.315188 | | Importing mesh. This may take a while for large meshes. +2024-02-06 16:29:23.315619 | | Mesh imported. +2024-02-06 16:29:23.315684 | | Compute cell areas... +2024-02-06 16:29:23.315723 | | Compute cell midpoints... +2024-02-06 16:29:23.315794 | | Load mesh connectivity from file /home/8v5/Projects/KiT-RT/tests/input/mesh_files/linesource.con +2024-02-06 16:29:23.318056 | | Compute boundary... +2024-02-06 16:29:23.318612 | | Smallest characteristic length of a grid cell in this mesh: 0.104859 +2024-02-06 16:29:23.318620 | | Corresponding maximal time-step: 0.073401 +2024-02-06 16:29:23.320628 | ---------------------------- Solver Starts ----------------------------- +2024-02-06 16:29:23.320640 | | The simulation will run for 2 iterations. +2024-02-06 16:29:23.320645 | | The spatial grid contains 96 cells. +2024-02-06 16:29:23.320651 | | The velocity grid contains 86 points. +2024-02-06 16:29:23.320655 | --------------------------------------------------------------------------------------- +2024-02-06 16:29:23.320658 | | Iter | Mass | RMS flux | VTK out | CSV out | +2024-02-06 16:29:23.320662 | --------------------------------------------------------------------------------------- +2024-02-06 16:29:23.323404 | | 0 | 1.4451e-01 | 4.0368e | no | yes | +2024-02-06 16:29:23.326003 | | 1 | 1.4451e-01 | 2.0608e | yes | yes | +2024-02-06 16:29:23.327608 | -------------------------------------------------------------- +2024-02-06 16:29:23.327616 | --------------------------- Solver Finished ---------------------------- diff --git a/tests/test_cases.cpp b/tests/test_cases.cpp index 7822e268..4bfa781c 100644 --- a/tests/test_cases.cpp +++ b/tests/test_cases.cpp @@ -31,7 +31,6 @@ std::vector readVTKFile( std::string filename ) { return data; } - TEST_CASE( "SN_SOLVER", "[validation_tests]" ) { std::string sn_fileDir = "input/validation_tests/SN_solver/"; SECTION( "checkerboard" ) { @@ -39,7 +38,6 @@ TEST_CASE( "SN_SOLVER", "[validation_tests]" ) { Config* config = new Config( config_file_name ); SolverBase* solver = SolverBase::Create( config ); - solver->Solve(); solver->PrintVolumeOutput(); @@ -50,7 +48,10 @@ TEST_CASE( "SN_SOLVER", "[validation_tests]" ) { REQUIRE( test.size() == reference.size() ); bool errorWithinBounds = true; for( unsigned i = 0; i < test.size(); ++i ) { - if( std::fabs( test[i] - reference[i] ) > eps ) errorWithinBounds = false; + if( std::fabs( test[i] - reference[i] ) > eps ) { + errorWithinBounds = false; + // std::cout << std::fabs( test[i] - reference[i] ) << "here\n"; + } } REQUIRE( errorWithinBounds ); delete solver; diff --git a/tools/singularity/kit_rt.def b/tools/singularity/kit_rt.def index 01b4ac9d..4fc1dabf 100644 --- a/tools/singularity/kit_rt.def +++ b/tools/singularity/kit_rt.def @@ -56,7 +56,7 @@ From: ubuntu:20.04 ldconfig /usr/local/lib rm ${FILENAME} - pip3 install numpy pygmsh==6.1.1 Pillow pydicom gcovr sphinx_rtd_theme breathe cpp-coveralls coveralls + pip3 install numpy pygmsh==6.1.1 Pillow pydicom gcovr sphinx_rtd_theme breathe cpp-coveralls coveralls pandas %environment export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" From c969bd0a6c4cc23561f35dd1e1f7c350e78f786a Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 7 Feb 2024 09:39:52 -0500 Subject: [PATCH 074/155] fixed several compile warning about unused variables. adapted reference files for validationt test to new boundary conditions WITHOUT mesh connectivity file. There is a BUG in the connectivity reader or writer --- include/optimizers/neuralnetworkoptimizer.hpp | 26 +- src/common/io.cpp | 2 + src/datagenerator/datageneratorbase.cpp | 16 +- src/problems/checkerboard.cpp | 4 +- src/problems/hohlraum.cpp | 22 +- src/problems/lattice.cpp | 2 +- tests/catch2_main.cpp | 2 +- .../starmap_validation_reference.vtk | 4 +- .../starmap_validation_reference_2nd.vtk | 2367 ----------------- .../CSD_SN_FP_2D_solver/waterphantom_2D.cfg | 2 +- .../CSD_SN_FP_solver/waterphantom_1D.cfg | 2 +- .../MN_solver/checkerboard_MN.cfg | 2 +- .../MN_solver/checkerboard_MN_neural.cfg | 2 +- .../MN_solver/checkerboard_MN_reference.vtk | 78 +- .../MN_solver/linesource_MN_MB.cfg | 2 +- .../MN_solver/linesource_MN_MB_reference.vtk | 34 +- .../linesource_MN_MB_regularized.cfg | 2 +- ...linesource_MN_MB_regularized_reference.vtk | 34 +- .../MN_solver/linesource_MN_Quad.cfg | 2 +- .../linesource_MN_Quad_reference.vtk | 36 +- .../PN_solver/checkerboard_PN.cfg | 2 +- .../PN_solver/checkerboard_PN_reference.vtk | 362 +-- .../PN_solver/linesource_PN.cfg | 2 +- .../PN_solver/linesource_PN_reference.vtk | 36 +- .../SN_solver/checkerboard_SN.cfg | 2 +- .../SN_solver/checkerboard_SN_reference.vtk | 362 +-- .../SN_solver/linesource_SN.cfg | 2 +- .../SN_solver/linesource_SN_reference.vtk | 36 +- .../output/validate_logger_reference | 42 +- tests/test_cases.cpp | 24 +- tests/test_mesh.cpp | 7 +- tests/test_quadrature.cpp | 3 +- 32 files changed, 584 insertions(+), 2937 deletions(-) delete mode 100644 tests/input/validation_tests/CSD_PN_solver/starmap_validation_reference_2nd.vtk diff --git a/include/optimizers/neuralnetworkoptimizer.hpp b/include/optimizers/neuralnetworkoptimizer.hpp index 902c2812..cad5ca9c 100644 --- a/include/optimizers/neuralnetworkoptimizer.hpp +++ b/include/optimizers/neuralnetworkoptimizer.hpp @@ -30,23 +30,27 @@ class NeuralNetworkOptimizer : public OptimizerBase unsigned _nq; /*!< @brief number of quadrature points */ Vector _weights; /*!< @brief quadrature weights, dim(_weights) = (_nq) */ - std::string _tfModelInputName; /*!< @brief Name of the tf model input */ - cppflow::model* _tfModel; /*!< @brief wrapper object for the compiled tensorflow model*/ - cppflow::tensor _modelInput; /*!< @brief model input tensor. dims: _nCellsx_nSys*/ - std::vector _modelServingVectorU; /*!< @brief model input as a 1D vector. dims: _nCells*(_nSys-1) */ - std::vector _modelServingVectorAlpha; /*!< @brief model output as a 1D vector. dims: _nCells*_nSys */ + std::string _tfModelInputName; /*!< @brief Name of the tf model input */ + cppflow::model* _tfModel; /*!< @brief wrapper object for the compiled tensorflow model*/ + cppflow::tensor _modelInput; /*!< @brief model input tensor. dims: _nCellsx_nSys*/ + std::vector _modelServingVectorU; /*!< @brief model input as a 1D vector. dims: _nCells*(_nSys-1) */ + std::vector _modelServingVectorAlpha; /*!< @brief model output as a 1D vector. dims: _nCells*_nSys */ // std::vector _modelOutput; /*!< @brief model input tensor. dims: _nModelOutputx_nCellsx_nSys*/ - unsigned _nSystem; /*!< @brief size of the moment system including zero order moment*/ - VectorVector _reducedMomentBasis; /*!< @brief reduced basis functions (excluding order zero) */ + unsigned _nSystem; /*!< @brief size of the moment system including zero order moment*/ + VectorVector _reducedMomentBasis; /*!< @brief reduced basis functions (excluding order zero) */ - std::vector _rotationMats; /*!< @brief vector of Rotation matrices for symmetry enforcing */ - std::vector _rotationMatsT; /*!< @brief vector of transpose Rotation matrices for symmetry enforcing */ + std::vector _rotationMats; /*!< @brief vector of Rotation matrices for symmetry enforcing */ + std::vector _rotationMatsT; /*!< @brief vector of transpose Rotation matrices for symmetry enforcing */ Matrix CreateRotator( const Vector& uFirstMoment ); /*!< @brief Creates a rotation matrix R for the tensorized monomial basis using the first moment of a momnet vector */ - Matrix CreateRotatorSphericalHarmonics( const double x, const double y ); /*!< @brief Creates a rotation matrix R for the spherical harmonics basisusing the first moment of a momnet vector */ - Matrix CreateRotatorSphericalHarmonics2D( const double x, const double y ); /*!< @brief Creates a rotation matrix R for the spherical harmonics basisusing the first moment of a momnet vector */ + Matrix CreateRotatorSphericalHarmonics( + const double x, + const double y ); /*!< @brief Creates a rotation matrix R for the spherical harmonics basisusing the first moment of a momnet vector */ + Matrix CreateRotatorSphericalHarmonics2D( + const double x, + const double y ); /*!< @brief Creates a rotation matrix R for the spherical harmonics basisusing the first moment of a momnet vector */ Vector RotateM1( Vector& vec, Matrix& R ); /*!< @brief Rotates the M1 part of a 2D moment vector using a rotation matrix R */ /*!< @brief Rotates the tensorized M2 part of a 2D moment vector using a rotation matrix R */ diff --git a/src/common/io.cpp b/src/common/io.cpp index a59ae3ff..590d5481 100644 --- a/src/common/io.cpp +++ b/src/common/io.cpp @@ -12,6 +12,7 @@ #include "toolboxes/textprocessingtoolbox.hpp" #include +#include #include #include #include @@ -391,6 +392,7 @@ void WriteConnecitivityToFile( const std::string outputFile, // cellBoundaryTypes (1 element), (tranlated from BOUNDARY_TYPE to unsigned) std::ofstream outFile( outputFile ); + outFile << std::fixed << setprecision( 12 ) << endl; // const std::size_t bufferSize = 10000; // Adjust as needed // outFile.rdbuf()->pubsetbuf( 0, bufferSize ); if( outFile.is_open() ) { diff --git a/src/datagenerator/datageneratorbase.cpp b/src/datagenerator/datageneratorbase.cpp index a901cb4b..69cbd0d2 100644 --- a/src/datagenerator/datageneratorbase.cpp +++ b/src/datagenerator/datageneratorbase.cpp @@ -22,7 +22,7 @@ #include "toolboxes/textprocessingtoolbox.hpp" #include "velocitybasis/sphericalbase.hpp" -//#include +// #include #include "spdlog/spdlog.h" #include #include @@ -54,8 +54,9 @@ DataGeneratorBase::DataGeneratorBase( Config* settings ) { _quadPointsSphere = _quadrature->GetPointsSphere(); // Spherical Harmonics - if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS && _maxPolyDegree > 0 && _settings->GetAlphaSampling() == false) { - ErrorMessages::Error( "No direct moment sampling algorithm for spherical harmonics basis with degree higher than 0 implemented", CURRENT_FUNCTION ); + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS && _maxPolyDegree > 0 && _settings->GetAlphaSampling() == false ) { + ErrorMessages::Error( "No direct moment sampling algorithm for spherical harmonics basis with degree higher than 0 implemented", + CURRENT_FUNCTION ); } _basisGenerator = SphericalBase::Create( _settings ); @@ -136,7 +137,7 @@ void DataGeneratorBase::SampleMultiplierAlpha() { for( unsigned idx_set = 0; idx_set < _setSize; idx_set++ ) { Vector alphaRed = Vector( _nTotalEntries - 1, 0.0 ); // local reduced alpha - bool accepted = false; + bool accepted = false; bool normAccepted = false; while( !accepted ) { // Sample random multivariate uniformly distributed alpha between minAlpha and MaxAlpha. @@ -159,7 +160,7 @@ void DataGeneratorBase::SampleMultiplierAlpha() { for( unsigned idx_quad = 0; idx_quad < _nq; idx_quad++ ) { integral += _entropy->EntropyPrimeDual( dot( alphaRed, momentsRed[idx_quad] ) ) * _weights[idx_quad]; } - _alpha[idx_set][0] = -(log( integral )+ log(_momentBasis[0][0]) )/_momentBasis[0][0]; // normalization + _alpha[idx_set][0] = -( log( integral ) + log( _momentBasis[0][0] ) ) / _momentBasis[0][0]; // normalization // Assemble complete alpha (normalized) for( unsigned idx_sys = 1; idx_sys < _nTotalEntries; idx_sys++ ) { @@ -199,7 +200,7 @@ bool DataGeneratorBase::ComputeEVRejection( unsigned idx_set ) { Vector ew = Vector( _nTotalEntries, 0.0 ); eigen( hessianSym, ew ); if( min( ew ) < _settings->GetMinimalEVBound() ) { - std::cout << "ew: " << min( ew ) << "\n"; + // std::cout << "ew: " << min( ew ) << "\n"; return false; } return true; @@ -212,8 +213,7 @@ bool DataGeneratorBase::ComputeReducedEVRejection( VectorVector& redMomentBasis, Vector ew = Vector( _nTotalEntries - 1, 0.0 ); eigen( hessianSym, ew ); if( min( ew ) < _settings->GetMinimalEVBound() ) { - std::cout << "ew: " << min( ew ) << "\n"; - + // std::cout << "ew: " << min( ew ) << "\n"; return false; } return true; diff --git a/src/problems/checkerboard.cpp b/src/problems/checkerboard.cpp index 9b3bdaf7..9ce4326e 100644 --- a/src/problems/checkerboard.cpp +++ b/src/problems/checkerboard.cpp @@ -88,9 +88,9 @@ Checkerboard_Moment::Checkerboard_Moment( Config* settings, Mesh* mesh, Quadratu Checkerboard_Moment::~Checkerboard_Moment() {} -VectorVector Checkerboard_Moment::GetScatteringXS( const Vector& energies ) { return VectorVector( 1u, _sigmaS ); } +VectorVector Checkerboard_Moment::GetScatteringXS( const Vector& /*energies*/ ) { return VectorVector( 1u, _sigmaS ); } -VectorVector Checkerboard_Moment::GetTotalXS( const Vector& energies ) { return VectorVector( 1u, _sigmaT ); } +VectorVector Checkerboard_Moment::GetTotalXS( const Vector& /*energies*/ ) { return VectorVector( 1u, _sigmaT ); } std::vector Checkerboard_Moment::GetExternalSource( const Vector& /*energies*/ ) { // In case of PN, spherical basis is per default SPHERICAL_HARMONICS diff --git a/src/problems/hohlraum.cpp b/src/problems/hohlraum.cpp index f8012f7f..19206993 100644 --- a/src/problems/hohlraum.cpp +++ b/src/problems/hohlraum.cpp @@ -12,7 +12,7 @@ #include "velocitybasis/sphericalharmonics.hpp" Hohlraum::Hohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { - _sigmaS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default + _sigmaS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default _sigmaT = Vector( _mesh->GetNumCells(), 0.1 ); // white area default #pragma omp parallel for @@ -21,32 +21,32 @@ Hohlraum::Hohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ) : Probl double y = _mesh->GetCellMidPoints()[idx_cell][1]; // red area if( x < 0.05 && y > 0.25 && y < 1.05 ) { - _sigmaS[idx_cell] = 95.0; + _sigmaS[idx_cell] = 95.0; _sigmaT[idx_cell] = 100.0; } // green area 1 if( x > 0.45 && x < 0.85 && y > 0.25 && y < 0.3 ) { - _sigmaS[idx_cell] = 90.0; + _sigmaS[idx_cell] = 90.0; _sigmaT[idx_cell] = 100.0; } // green area 2 if( x > 0.45 && x < 0.85 && y > 1.0 && y < 1.05 ) { - _sigmaS[idx_cell] = 90.0; + _sigmaS[idx_cell] = 90.0; _sigmaT[idx_cell] = 100.0; } // green area 3 if( x > 0.45 && x < 0.5 && y > 0.25 && y < 1.05 ) { - _sigmaS[idx_cell] = 90.0; + _sigmaS[idx_cell] = 90.0; _sigmaT[idx_cell] = 100.0; } // black area if( x > 0.5 && x < 0.85 && y > 0.3 && y < 1.0 ) { - _sigmaS[idx_cell] = 50.0; + _sigmaS[idx_cell] = 50.0; _sigmaT[idx_cell] = 100.0; } // blue area if( x > 1.25 || y < 0.05 || y > 1.25 ) { - _sigmaS[idx_cell] = 0.0; + _sigmaS[idx_cell] = 0.0; _sigmaT[idx_cell] = 100.0; } } @@ -54,7 +54,7 @@ Hohlraum::Hohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ) : Probl Hohlraum::~Hohlraum() {} -std::vector Hohlraum::GetExternalSource( const Vector& energies ) { +std::vector Hohlraum::GetExternalSource( const Vector& /*energies*/ ) { VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); auto cellMids = _mesh->GetCellMidPoints(); #pragma omp parallel for @@ -84,15 +84,15 @@ VectorVector Hohlraum::SetupIC() { return psi; } -VectorVector Hohlraum::GetScatteringXS( const Vector& energies ) { return VectorVector( energies.size(), _sigmaS ); } +VectorVector Hohlraum::GetScatteringXS( const Vector& /*energies*/ ) { return VectorVector( 1u, _sigmaS ); } -VectorVector Hohlraum::GetTotalXS( const Vector& energies ) { return VectorVector( energies.size(), _sigmaT ); } +VectorVector Hohlraum::GetTotalXS( const Vector& /*energies*/ ) { return VectorVector( 1u, _sigmaT ); } Hohlraum_Moment::Hohlraum_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : Hohlraum( settings, mesh, quad ) {} Hohlraum_Moment::~Hohlraum_Moment() {} -std::vector Hohlraum_Moment::GetExternalSource( const Vector& energies ) { +std::vector Hohlraum_Moment::GetExternalSource( const Vector& /*energies*/ ) { // In case of PN, spherical basis is per default SPHERICAL_HARMONICS double integrationFactor = ( 4 * M_PI ); diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index 012c180a..769e1b3a 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -127,7 +127,7 @@ void Lattice_SN::SetGhostCells() { delete quad; } -const Vector& Lattice_SN::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { return _ghostCells[idx_cell]; } +const Vector& Lattice_SN::GetGhostCellValue( int idx_cell, const Vector& /* cell_sol */ ) { return _ghostCells[idx_cell]; } // QOI getter double Lattice_SN::GetCurAbsorptionLattice() { return _curAbsorptionLattice; } diff --git a/tests/catch2_main.cpp b/tests/catch2_main.cpp index 3bc2add2..72bfe4a4 100644 --- a/tests/catch2_main.cpp +++ b/tests/catch2_main.cpp @@ -13,7 +13,7 @@ int main( int argc, char** argv ) { const int result = Catch::Session().run( argc, argv ); // if( Py_IsInitialized() ) Py_Finalize(); - // std::filesystem::remove_all( std::string( TESTS_PATH ) + "result" ); + std::filesystem::remove_all( std::string( TESTS_PATH ) + "result" ); // MPI_Finalize(); return result; diff --git a/tests/input/validation_tests/CSD_PN_solver/starmap_validation_reference.vtk b/tests/input/validation_tests/CSD_PN_solver/starmap_validation_reference.vtk index 2478d5c8..b2292337 100644 --- a/tests/input/validation_tests/CSD_PN_solver/starmap_validation_reference.vtk +++ b/tests/input/validation_tests/CSD_PN_solver/starmap_validation_reference.vtk @@ -2024,7 +2024,7 @@ normalized%20dose 1 900 double 9.4356442028e-32 4.8531242251e-46 0 0 1.2225609397e-60 2.5568710282e-46 1.7909945946e-32 8.018319536e-23 2.3437875329e-17 1.209636093e-12 2.4908160697e-11 2.619671225e-10 1.904399385e-09 1.0908882917e-08 5.3018635109e-08 2.2766483092e-07 8.6934895637e-07 2.8453559737e-06 2.8453559736e-06 8.6934895632e-07 2.276648309e-07 5.3018635106e-08 1.0908882917e-08 1.9043993849e-09 2.6196712248e-10 2.4908160696e-11 1.2096360929e-12 -2.3437875324e-17 8.0183195341e-23 1.7909945939e-32 2.5568710271e-46 1.2225609392e-60 0 0 2.1831372626e-75 1.3398773371e-60 +2.3437875324e-17 8.0183195341e-23 1.7909945939e-32 2.5568710271e-46 1.2225609392e-60 0 0 2.1831372627e-75 1.3398773371e-60 2.1707301387e-46 3.4750402845e-33 1.5554457767e-23 4.4920798205e-18 2.3100654027e-13 5.0690064537e-12 5.7345918125e-11 4.5256875655e-10 2.8323478669e-09 1.4994417147e-08 6.8330753063e-08 2.5731078051e-07 2.5731078049e-07 6.8330753058e-08 1.4994417146e-08 2.8323478667e-09 4.5256875652e-10 5.7345918122e-11 5.0690064534e-12 2.3100654025e-13 4.4920798195e-18 1.5554457763e-23 3.4750402831e-33 2.1707301378e-46 1.3398773365e-60 2.1831372617e-75 0 @@ -2330,7 +2330,7 @@ normalized%20dose 1 961 double 0.034661069494 0.051809204347 0.076639586738 0.11316423905 0.16773343294 0.27113799327 0.3417699678 0.27113799326 0.16773343294 0.11316423905 0.076639586737 0.051809204346 0.034661069494 0.022660004579 0.014253914124 0.0084792878758 0.0046804477078 0.0023460406938 0.001040371255 0.00039410481668 9.706847303e-05 4.5534072694e-06 2.4549011014e-05 8.7004048988e-05 0.00025143637435 0.00062130946995 0.0013583835302 -0.002699701984 0.004991469539 0.0087651794141 0.014890277528 0.024833882959 0.041024874619 0.067300987643 0.1154580288 0.14737280095 +0.0026997019841 0.004991469539 0.0087651794141 0.014890277528 0.024833882959 0.041024874619 0.067300987643 0.1154580288 0.14737280095 0.1154580288 0.067300987641 0.041024874618 0.024833882959 0.014890277528 0.0087651794139 0.0049914695389 0.002699701984 0.0013583835302 0.00062130946993 0.00025143637434 8.7004048985e-05 2.4549011013e-05 4.5534072691e-06 1.2547131187e-07 1.0151155904e-06 5.1338059752e-06 1.9723356416e-05 6.1863241261e-05 0.00016613314407 0.00039566448587 0.0008599017286 0.0017479799863 0.0033954561293 0.0064107470337 0.011882215924 0.02164239726 diff --git a/tests/input/validation_tests/CSD_PN_solver/starmap_validation_reference_2nd.vtk b/tests/input/validation_tests/CSD_PN_solver/starmap_validation_reference_2nd.vtk deleted file mode 100644 index b6b83503..00000000 --- a/tests/input/validation_tests/CSD_PN_solver/starmap_validation_reference_2nd.vtk +++ /dev/null @@ -1,2367 +0,0 @@ -# vtk DataFile Version 5.1 -vtk output -ASCII -DATASET UNSTRUCTURED_GRID -POINTS 961 double -0 1 0 1 1 0 1 0 0 -0 0 0 0 0.96666666667 0 0 0.93333333333 0 -0 0.9 0 0 0.86666666667 0 0 0.83333333333 0 -0 0.8 0 0 0.76666666667 0 0 0.73333333333 0 -0 0.7 0 0 0.66666666667 0 0 0.63333333333 0 -0 0.6 0 0 0.56666666667 0 0 0.53333333334 0 -0 0.5 0 0 0.46666666667 0 0 0.43333333334 0 -0 0.4 0 0 0.36666666667 0 0 0.33333333333 0 -0 0.3 0 0 0.26666666667 0 0 0.23333333333 0 -0 0.2 0 0 0.16666666667 0 0 0.13333333333 0 -0 0.1 0 0 0.066666666667 0 0 0.033333333333 0 -0.033333333333 0 0 0.066666666667 0 0 0.1 0 0 -0.13333333333 0 0 0.16666666667 0 0 0.2 0 0 -0.23333333333 0 0 0.26666666667 0 0 0.3 0 0 -0.33333333333 0 0 0.36666666667 0 0 0.4 0 0 -0.43333333333 0 0 0.46666666667 0 0 0.5 0 0 -0.53333333333 0 0 0.56666666667 0 0 0.6 0 0 -0.63333333333 0 0 0.66666666667 0 0 0.7 0 0 -0.73333333333 0 0 0.76666666667 0 0 0.8 0 0 -0.83333333333 0 0 0.86666666667 0 0 0.9 0 0 -0.93333333333 0 0 0.96666666667 0 0 1 0.033333333333 0 -1 0.066666666667 0 1 0.1 0 1 0.13333333333 0 -1 0.16666666667 0 1 0.2 0 1 0.23333333333 0 -1 0.26666666667 0 1 0.3 0 1 0.33333333333 0 -1 0.36666666667 0 1 0.4 0 1 0.43333333333 0 -1 0.46666666667 0 1 0.5 0 1 0.53333333333 0 -1 0.56666666667 0 1 0.6 0 1 0.63333333333 0 -1 0.66666666667 0 1 0.7 0 1 0.73333333333 0 -1 0.76666666667 0 1 0.8 0 1 0.83333333333 0 -1 0.86666666667 0 1 0.9 0 1 0.93333333333 0 -1 0.96666666667 0 0.96666666667 1 0 0.93333333333 1 0 -0.9 1 0 0.86666666667 1 0 0.83333333333 1 0 -0.8 1 0 0.76666666667 1 0 0.73333333333 1 0 -0.7 1 0 0.66666666667 1 0 0.63333333333 1 0 -0.6 1 0 0.56666666667 1 0 0.53333333334 1 0 -0.5 1 0 0.46666666667 1 0 0.43333333334 1 0 -0.4 1 0 0.36666666667 1 0 0.33333333333 1 0 -0.3 1 0 0.26666666667 1 0 0.23333333333 1 0 -0.2 1 0 0.16666666667 1 0 0.13333333333 1 0 -0.1 1 0 0.066666666667 1 0 0.033333333333 1 0 -0.033333333333 0.033333333333 0 0.033333333333 0.066666666667 0 0.033333333333 0.1 0 -0.033333333333 0.13333333333 0 0.033333333333 0.16666666667 0 0.033333333333 0.2 0 -0.033333333333 0.23333333333 0 0.033333333333 0.26666666667 0 0.033333333333 0.3 0 -0.033333333333 0.33333333333 0 0.033333333333 0.36666666667 0 0.033333333333 0.4 0 -0.033333333333 0.43333333334 0 0.033333333333 0.46666666667 0 0.033333333333 0.5 0 -0.033333333333 0.53333333334 0 0.033333333333 0.56666666667 0 0.033333333333 0.6 0 -0.033333333333 0.63333333333 0 0.033333333333 0.66666666667 0 0.033333333333 0.7 0 -0.033333333333 0.73333333333 0 0.033333333333 0.76666666667 0 0.033333333333 0.8 0 -0.033333333333 0.83333333333 0 0.033333333333 0.86666666667 0 0.033333333333 0.9 0 -0.033333333333 0.93333333333 0 0.033333333333 0.96666666667 0 0.066666666667 0.033333333333 0 -0.066666666667 0.066666666667 0 0.066666666667 0.1 0 0.066666666667 0.13333333333 0 -0.066666666667 0.16666666667 0 0.066666666667 0.2 0 0.066666666667 0.23333333333 0 -0.066666666667 0.26666666667 0 0.066666666667 0.3 0 0.066666666667 0.33333333333 0 -0.066666666667 0.36666666667 0 0.066666666667 0.4 0 0.066666666667 0.43333333333 0 -0.066666666667 0.46666666667 0 0.066666666667 0.5 0 0.066666666667 0.53333333333 0 -0.066666666667 0.56666666667 0 0.066666666667 0.6 0 0.066666666667 0.63333333333 0 -0.066666666667 0.66666666667 0 0.066666666667 0.7 0 0.066666666667 0.73333333333 0 -0.066666666667 0.76666666667 0 0.066666666667 0.8 0 0.066666666667 0.83333333333 0 -0.066666666667 0.86666666667 0 0.066666666667 0.9 0 0.066666666667 0.93333333333 0 -0.066666666667 0.96666666667 0 0.1 0.033333333333 0 0.1 0.066666666667 0 -0.1 0.1 0 0.1 0.13333333333 0 0.1 0.16666666667 0 -0.1 0.2 0 0.1 0.23333333333 0 0.1 0.26666666667 0 -0.1 0.3 0 0.1 0.33333333333 0 0.1 0.36666666667 0 -0.1 0.4 0 0.1 0.43333333333 0 0.1 0.46666666667 0 -0.1 0.5 0 0.1 0.53333333333 0 0.1 0.56666666667 0 -0.1 0.6 0 0.1 0.63333333333 0 0.1 0.66666666667 0 -0.1 0.7 0 0.1 0.73333333333 0 0.1 0.76666666667 0 -0.1 0.8 0 0.1 0.83333333333 0 0.1 0.86666666667 0 -0.1 0.9 0 0.1 0.93333333333 0 0.1 0.96666666667 0 -0.13333333333 0.033333333333 0 0.13333333333 0.066666666667 0 0.13333333333 0.1 0 -0.13333333333 0.13333333333 0 0.13333333333 0.16666666667 0 0.13333333333 0.2 0 -0.13333333333 0.23333333333 0 0.13333333333 0.26666666667 0 0.13333333333 0.3 0 -0.13333333333 0.33333333333 0 0.13333333333 0.36666666667 0 0.13333333333 0.4 0 -0.13333333333 0.43333333333 0 0.13333333333 0.46666666667 0 0.13333333333 0.5 0 -0.13333333333 0.53333333333 0 0.13333333333 0.56666666667 0 0.13333333333 0.6 0 -0.13333333333 0.63333333333 0 0.13333333333 0.66666666667 0 0.13333333333 0.7 0 -0.13333333333 0.73333333333 0 0.13333333333 0.76666666667 0 0.13333333333 0.8 0 -0.13333333333 0.83333333333 0 0.13333333333 0.86666666667 0 0.13333333333 0.9 0 -0.13333333333 0.93333333333 0 0.13333333333 0.96666666667 0 0.16666666667 0.033333333333 0 -0.16666666667 0.066666666667 0 0.16666666667 0.1 0 0.16666666667 0.13333333333 0 -0.16666666667 0.16666666667 0 0.16666666667 0.2 0 0.16666666667 0.23333333333 0 -0.16666666667 0.26666666667 0 0.16666666667 0.3 0 0.16666666667 0.33333333333 0 -0.16666666667 0.36666666667 0 0.16666666667 0.4 0 0.16666666667 0.43333333333 0 -0.16666666667 0.46666666667 0 0.16666666667 0.5 0 0.16666666667 0.53333333333 0 -0.16666666667 0.56666666667 0 0.16666666667 0.6 0 0.16666666667 0.63333333333 0 -0.16666666667 0.66666666667 0 0.16666666667 0.7 0 0.16666666667 0.73333333333 0 -0.16666666667 0.76666666667 0 0.16666666667 0.8 0 0.16666666667 0.83333333333 0 -0.16666666667 0.86666666667 0 0.16666666667 0.9 0 0.16666666667 0.93333333333 0 -0.16666666667 0.96666666667 0 0.2 0.033333333333 0 0.2 0.066666666667 0 -0.2 0.1 0 0.2 0.13333333333 0 0.2 0.16666666667 0 -0.2 0.2 0 0.2 0.23333333333 0 0.2 0.26666666667 0 -0.2 0.3 0 0.2 0.33333333333 0 0.2 0.36666666667 0 -0.2 0.4 0 0.2 0.43333333333 0 0.2 0.46666666667 0 -0.2 0.5 0 0.2 0.53333333333 0 0.2 0.56666666667 0 -0.2 0.6 0 0.2 0.63333333333 0 0.2 0.66666666667 0 -0.2 0.7 0 0.2 0.73333333333 0 0.2 0.76666666667 0 -0.2 0.8 0 0.2 0.83333333333 0 0.2 0.86666666667 0 -0.2 0.9 0 0.2 0.93333333333 0 0.2 0.96666666667 0 -0.23333333333 0.033333333333 0 0.23333333333 0.066666666667 0 0.23333333333 0.1 0 -0.23333333333 0.13333333333 0 0.23333333333 0.16666666667 0 0.23333333333 0.2 0 -0.23333333333 0.23333333333 0 0.23333333333 0.26666666667 0 0.23333333333 0.3 0 -0.23333333333 0.33333333333 0 0.23333333333 0.36666666667 0 0.23333333333 0.4 0 -0.23333333333 0.43333333333 0 0.23333333333 0.46666666667 0 0.23333333333 0.5 0 -0.23333333333 0.53333333333 0 0.23333333333 0.56666666667 0 0.23333333333 0.6 0 -0.23333333333 0.63333333333 0 0.23333333333 0.66666666667 0 0.23333333333 0.7 0 -0.23333333333 0.73333333333 0 0.23333333333 0.76666666667 0 0.23333333333 0.8 0 -0.23333333333 0.83333333333 0 0.23333333333 0.86666666667 0 0.23333333333 0.9 0 -0.23333333333 0.93333333333 0 0.23333333333 0.96666666667 0 0.26666666667 0.033333333333 0 -0.26666666667 0.066666666667 0 0.26666666667 0.1 0 0.26666666667 0.13333333333 0 -0.26666666667 0.16666666667 0 0.26666666667 0.2 0 0.26666666667 0.23333333333 0 -0.26666666667 0.26666666667 0 0.26666666667 0.3 0 0.26666666667 0.33333333333 0 -0.26666666667 0.36666666667 0 0.26666666667 0.4 0 0.26666666667 0.43333333333 0 -0.26666666667 0.46666666667 0 0.26666666667 0.5 0 0.26666666667 0.53333333333 0 -0.26666666667 0.56666666667 0 0.26666666667 0.6 0 0.26666666667 0.63333333333 0 -0.26666666667 0.66666666667 0 0.26666666667 0.7 0 0.26666666667 0.73333333333 0 -0.26666666667 0.76666666667 0 0.26666666667 0.8 0 0.26666666667 0.83333333333 0 -0.26666666667 0.86666666667 0 0.26666666667 0.9 0 0.26666666667 0.93333333333 0 -0.26666666667 0.96666666667 0 0.3 0.033333333333 0 0.3 0.066666666667 0 -0.3 0.1 0 0.3 0.13333333333 0 0.3 0.16666666667 0 -0.3 0.2 0 0.3 0.23333333333 0 0.3 0.26666666667 0 -0.3 0.3 0 0.3 0.33333333333 0 0.3 0.36666666667 0 -0.3 0.4 0 0.3 0.43333333333 0 0.3 0.46666666667 0 -0.3 0.5 0 0.3 0.53333333333 0 0.3 0.56666666667 0 -0.3 0.6 0 0.3 0.63333333333 0 0.3 0.66666666667 0 -0.3 0.7 0 0.3 0.73333333333 0 0.3 0.76666666667 0 -0.3 0.8 0 0.3 0.83333333333 0 0.3 0.86666666667 0 -0.3 0.9 0 0.3 0.93333333333 0 0.3 0.96666666667 0 -0.33333333333 0.033333333333 0 0.33333333333 0.066666666667 0 0.33333333333 0.1 0 -0.33333333333 0.13333333333 0 0.33333333333 0.16666666667 0 0.33333333333 0.2 0 -0.33333333333 0.23333333333 0 0.33333333333 0.26666666667 0 0.33333333333 0.3 0 -0.33333333333 0.33333333333 0 0.33333333333 0.36666666667 0 0.33333333333 0.4 0 -0.33333333333 0.43333333333 0 0.33333333333 0.46666666667 0 0.33333333333 0.5 0 -0.33333333333 0.53333333333 0 0.33333333333 0.56666666667 0 0.33333333333 0.6 0 -0.33333333333 0.63333333333 0 0.33333333333 0.66666666667 0 0.33333333333 0.7 0 -0.33333333333 0.73333333333 0 0.33333333333 0.76666666667 0 0.33333333333 0.8 0 -0.33333333333 0.83333333333 0 0.33333333333 0.86666666667 0 0.33333333333 0.9 0 -0.33333333333 0.93333333333 0 0.33333333333 0.96666666667 0 0.36666666667 0.033333333333 0 -0.36666666667 0.066666666667 0 0.36666666667 0.1 0 0.36666666667 0.13333333333 0 -0.36666666667 0.16666666667 0 0.36666666667 0.2 0 0.36666666667 0.23333333333 0 -0.36666666667 0.26666666667 0 0.36666666667 0.3 0 0.36666666667 0.33333333333 0 -0.36666666667 0.36666666667 0 0.36666666667 0.4 0 0.36666666667 0.43333333333 0 -0.36666666667 0.46666666667 0 0.36666666667 0.5 0 0.36666666667 0.53333333333 0 -0.36666666667 0.56666666667 0 0.36666666667 0.6 0 0.36666666667 0.63333333333 0 -0.36666666667 0.66666666667 0 0.36666666667 0.7 0 0.36666666667 0.73333333333 0 -0.36666666667 0.76666666667 0 0.36666666667 0.8 0 0.36666666667 0.83333333333 0 -0.36666666667 0.86666666667 0 0.36666666667 0.9 0 0.36666666667 0.93333333333 0 -0.36666666667 0.96666666667 0 0.4 0.033333333333 0 0.4 0.066666666667 0 -0.4 0.1 0 0.4 0.13333333333 0 0.4 0.16666666667 0 -0.4 0.2 0 0.4 0.23333333333 0 0.4 0.26666666667 0 -0.4 0.3 0 0.4 0.33333333333 0 0.4 0.36666666667 0 -0.4 0.4 0 0.4 0.43333333333 0 0.4 0.46666666667 0 -0.4 0.5 0 0.4 0.53333333333 0 0.4 0.56666666667 0 -0.4 0.6 0 0.4 0.63333333333 0 0.4 0.66666666667 0 -0.4 0.7 0 0.4 0.73333333333 0 0.4 0.76666666667 0 -0.4 0.8 0 0.4 0.83333333333 0 0.4 0.86666666667 0 -0.4 0.9 0 0.4 0.93333333333 0 0.4 0.96666666667 0 -0.43333333333 0.033333333333 0 0.43333333333 0.066666666667 0 0.43333333333 0.1 0 -0.43333333333 0.13333333333 0 0.43333333333 0.16666666667 0 0.43333333333 0.2 0 -0.43333333333 0.23333333333 0 0.43333333333 0.26666666667 0 0.43333333333 0.3 0 -0.43333333333 0.33333333333 0 0.43333333333 0.36666666667 0 0.43333333333 0.4 0 -0.43333333333 0.43333333333 0 0.43333333333 0.46666666667 0 0.43333333333 0.5 0 -0.43333333333 0.53333333333 0 0.43333333333 0.56666666667 0 0.43333333333 0.6 0 -0.43333333333 0.63333333333 0 0.43333333333 0.66666666667 0 0.43333333333 0.7 0 -0.43333333333 0.73333333333 0 0.43333333333 0.76666666667 0 0.43333333333 0.8 0 -0.43333333333 0.83333333333 0 0.43333333333 0.86666666667 0 0.43333333333 0.9 0 -0.43333333333 0.93333333333 0 0.43333333334 0.96666666667 0 0.46666666667 0.033333333333 0 -0.46666666667 0.066666666667 0 0.46666666667 0.1 0 0.46666666667 0.13333333333 0 -0.46666666667 0.16666666667 0 0.46666666667 0.2 0 0.46666666667 0.23333333333 0 -0.46666666667 0.26666666667 0 0.46666666667 0.3 0 0.46666666667 0.33333333333 0 -0.46666666667 0.36666666667 0 0.46666666667 0.4 0 0.46666666667 0.43333333333 0 -0.46666666667 0.46666666667 0 0.46666666667 0.5 0 0.46666666667 0.53333333333 0 -0.46666666667 0.56666666667 0 0.46666666667 0.6 0 0.46666666667 0.63333333333 0 -0.46666666667 0.66666666667 0 0.46666666667 0.7 0 0.46666666667 0.73333333333 0 -0.46666666667 0.76666666667 0 0.46666666667 0.8 0 0.46666666667 0.83333333333 0 -0.46666666667 0.86666666667 0 0.46666666667 0.9 0 0.46666666667 0.93333333333 0 -0.46666666667 0.96666666667 0 0.5 0.033333333333 0 0.5 0.066666666667 0 -0.5 0.1 0 0.5 0.13333333333 0 0.5 0.16666666667 0 -0.5 0.2 0 0.5 0.23333333333 0 0.5 0.26666666667 0 -0.5 0.3 0 0.5 0.33333333333 0 0.5 0.36666666667 0 -0.5 0.4 0 0.5 0.43333333333 0 0.5 0.46666666667 0 -0.5 0.5 0 0.5 0.53333333333 0 0.5 0.56666666667 0 -0.5 0.6 0 0.5 0.63333333333 0 0.5 0.66666666667 0 -0.5 0.7 0 0.5 0.73333333333 0 0.5 0.76666666667 0 -0.5 0.8 0 0.5 0.83333333333 0 0.5 0.86666666667 0 -0.5 0.9 0 0.5 0.93333333333 0 0.5 0.96666666667 0 -0.53333333333 0.033333333333 0 0.53333333333 0.066666666667 0 0.53333333333 0.1 0 -0.53333333333 0.13333333333 0 0.53333333333 0.16666666667 0 0.53333333333 0.2 0 -0.53333333333 0.23333333333 0 0.53333333333 0.26666666667 0 0.53333333333 0.3 0 -0.53333333333 0.33333333333 0 0.53333333333 0.36666666667 0 0.53333333333 0.4 0 -0.53333333333 0.43333333333 0 0.53333333333 0.46666666667 0 0.53333333333 0.5 0 -0.53333333333 0.53333333333 0 0.53333333333 0.56666666667 0 0.53333333333 0.6 0 -0.53333333333 0.63333333333 0 0.53333333333 0.66666666667 0 0.53333333333 0.7 0 -0.53333333333 0.73333333333 0 0.53333333333 0.76666666667 0 0.53333333333 0.8 0 -0.53333333333 0.83333333333 0 0.53333333333 0.86666666667 0 0.53333333333 0.9 0 -0.53333333333 0.93333333333 0 0.53333333334 0.96666666667 0 0.56666666667 0.033333333333 0 -0.56666666667 0.066666666667 0 0.56666666667 0.1 0 0.56666666667 0.13333333333 0 -0.56666666667 0.16666666667 0 0.56666666667 0.2 0 0.56666666667 0.23333333333 0 -0.56666666667 0.26666666667 0 0.56666666667 0.3 0 0.56666666667 0.33333333333 0 -0.56666666667 0.36666666667 0 0.56666666667 0.4 0 0.56666666667 0.43333333333 0 -0.56666666667 0.46666666667 0 0.56666666667 0.5 0 0.56666666667 0.53333333333 0 -0.56666666667 0.56666666667 0 0.56666666667 0.6 0 0.56666666667 0.63333333333 0 -0.56666666667 0.66666666667 0 0.56666666667 0.7 0 0.56666666667 0.73333333333 0 -0.56666666667 0.76666666667 0 0.56666666667 0.8 0 0.56666666667 0.83333333333 0 -0.56666666667 0.86666666667 0 0.56666666667 0.9 0 0.56666666667 0.93333333333 0 -0.56666666667 0.96666666667 0 0.6 0.033333333333 0 0.6 0.066666666667 0 -0.6 0.1 0 0.6 0.13333333333 0 0.6 0.16666666667 0 -0.6 0.2 0 0.6 0.23333333333 0 0.6 0.26666666667 0 -0.6 0.3 0 0.6 0.33333333333 0 0.6 0.36666666667 0 -0.6 0.4 0 0.6 0.43333333333 0 0.6 0.46666666667 0 -0.6 0.5 0 0.6 0.53333333333 0 0.6 0.56666666667 0 -0.6 0.6 0 0.6 0.63333333333 0 0.6 0.66666666667 0 -0.6 0.7 0 0.6 0.73333333333 0 0.6 0.76666666667 0 -0.6 0.8 0 0.6 0.83333333333 0 0.6 0.86666666667 0 -0.6 0.9 0 0.6 0.93333333333 0 0.6 0.96666666667 0 -0.63333333333 0.033333333333 0 0.63333333333 0.066666666667 0 0.63333333333 0.1 0 -0.63333333333 0.13333333333 0 0.63333333333 0.16666666667 0 0.63333333333 0.2 0 -0.63333333333 0.23333333333 0 0.63333333333 0.26666666667 0 0.63333333333 0.3 0 -0.63333333333 0.33333333333 0 0.63333333333 0.36666666667 0 0.63333333333 0.4 0 -0.63333333333 0.43333333333 0 0.63333333333 0.46666666667 0 0.63333333333 0.5 0 -0.63333333333 0.53333333333 0 0.63333333333 0.56666666667 0 0.63333333333 0.6 0 -0.63333333333 0.63333333333 0 0.63333333333 0.66666666667 0 0.63333333333 0.7 0 -0.63333333333 0.73333333333 0 0.63333333333 0.76666666667 0 0.63333333333 0.8 0 -0.63333333333 0.83333333333 0 0.63333333333 0.86666666667 0 0.63333333333 0.9 0 -0.63333333333 0.93333333333 0 0.63333333333 0.96666666667 0 0.66666666667 0.033333333333 0 -0.66666666667 0.066666666667 0 0.66666666667 0.1 0 0.66666666667 0.13333333333 0 -0.66666666667 0.16666666667 0 0.66666666667 0.2 0 0.66666666667 0.23333333333 0 -0.66666666667 0.26666666667 0 0.66666666667 0.3 0 0.66666666667 0.33333333333 0 -0.66666666667 0.36666666667 0 0.66666666667 0.4 0 0.66666666667 0.43333333333 0 -0.66666666667 0.46666666667 0 0.66666666667 0.5 0 0.66666666667 0.53333333333 0 -0.66666666667 0.56666666667 0 0.66666666667 0.6 0 0.66666666667 0.63333333333 0 -0.66666666667 0.66666666667 0 0.66666666667 0.7 0 0.66666666667 0.73333333333 0 -0.66666666667 0.76666666667 0 0.66666666667 0.8 0 0.66666666667 0.83333333333 0 -0.66666666667 0.86666666667 0 0.66666666667 0.9 0 0.66666666667 0.93333333333 0 -0.66666666667 0.96666666667 0 0.7 0.033333333333 0 0.7 0.066666666667 0 -0.7 0.1 0 0.7 0.13333333333 0 0.7 0.16666666667 0 -0.7 0.2 0 0.7 0.23333333333 0 0.7 0.26666666667 0 -0.7 0.3 0 0.7 0.33333333333 0 0.7 0.36666666667 0 -0.7 0.4 0 0.7 0.43333333333 0 0.7 0.46666666667 0 -0.7 0.5 0 0.7 0.53333333333 0 0.7 0.56666666667 0 -0.7 0.6 0 0.7 0.63333333333 0 0.7 0.66666666667 0 -0.7 0.7 0 0.7 0.73333333333 0 0.7 0.76666666667 0 -0.7 0.8 0 0.7 0.83333333333 0 0.7 0.86666666667 0 -0.7 0.9 0 0.7 0.93333333333 0 0.7 0.96666666667 0 -0.73333333333 0.033333333333 0 0.73333333333 0.066666666667 0 0.73333333333 0.1 0 -0.73333333333 0.13333333333 0 0.73333333333 0.16666666667 0 0.73333333333 0.2 0 -0.73333333333 0.23333333333 0 0.73333333333 0.26666666667 0 0.73333333333 0.3 0 -0.73333333333 0.33333333333 0 0.73333333333 0.36666666667 0 0.73333333333 0.4 0 -0.73333333333 0.43333333333 0 0.73333333333 0.46666666667 0 0.73333333333 0.5 0 -0.73333333333 0.53333333333 0 0.73333333333 0.56666666667 0 0.73333333333 0.6 0 -0.73333333333 0.63333333333 0 0.73333333333 0.66666666667 0 0.73333333333 0.7 0 -0.73333333333 0.73333333333 0 0.73333333333 0.76666666667 0 0.73333333333 0.8 0 -0.73333333333 0.83333333333 0 0.73333333333 0.86666666667 0 0.73333333333 0.9 0 -0.73333333333 0.93333333333 0 0.73333333333 0.96666666667 0 0.76666666667 0.033333333333 0 -0.76666666667 0.066666666667 0 0.76666666667 0.1 0 0.76666666667 0.13333333333 0 -0.76666666667 0.16666666667 0 0.76666666667 0.2 0 0.76666666667 0.23333333333 0 -0.76666666667 0.26666666667 0 0.76666666667 0.3 0 0.76666666667 0.33333333333 0 -0.76666666667 0.36666666667 0 0.76666666667 0.4 0 0.76666666667 0.43333333333 0 -0.76666666667 0.46666666667 0 0.76666666667 0.5 0 0.76666666667 0.53333333333 0 -0.76666666667 0.56666666667 0 0.76666666667 0.6 0 0.76666666667 0.63333333333 0 -0.76666666667 0.66666666667 0 0.76666666667 0.7 0 0.76666666667 0.73333333333 0 -0.76666666667 0.76666666667 0 0.76666666667 0.8 0 0.76666666667 0.83333333333 0 -0.76666666667 0.86666666667 0 0.76666666667 0.9 0 0.76666666667 0.93333333333 0 -0.76666666667 0.96666666667 0 0.8 0.033333333333 0 0.8 0.066666666667 0 -0.8 0.1 0 0.8 0.13333333333 0 0.8 0.16666666667 0 -0.8 0.2 0 0.8 0.23333333333 0 0.8 0.26666666667 0 -0.8 0.3 0 0.8 0.33333333333 0 0.8 0.36666666667 0 -0.8 0.4 0 0.8 0.43333333333 0 0.8 0.46666666667 0 -0.8 0.5 0 0.8 0.53333333333 0 0.8 0.56666666667 0 -0.8 0.6 0 0.8 0.63333333333 0 0.8 0.66666666667 0 -0.8 0.7 0 0.8 0.73333333333 0 0.8 0.76666666667 0 -0.8 0.8 0 0.8 0.83333333333 0 0.8 0.86666666667 0 -0.8 0.9 0 0.8 0.93333333333 0 0.8 0.96666666667 0 -0.83333333333 0.033333333333 0 0.83333333333 0.066666666667 0 0.83333333333 0.1 0 -0.83333333333 0.13333333333 0 0.83333333333 0.16666666667 0 0.83333333333 0.2 0 -0.83333333333 0.23333333333 0 0.83333333333 0.26666666667 0 0.83333333333 0.3 0 -0.83333333333 0.33333333333 0 0.83333333333 0.36666666667 0 0.83333333333 0.4 0 -0.83333333333 0.43333333333 0 0.83333333333 0.46666666667 0 0.83333333333 0.5 0 -0.83333333333 0.53333333333 0 0.83333333333 0.56666666667 0 0.83333333333 0.6 0 -0.83333333333 0.63333333333 0 0.83333333333 0.66666666667 0 0.83333333333 0.7 0 -0.83333333333 0.73333333333 0 0.83333333333 0.76666666667 0 0.83333333333 0.8 0 -0.83333333333 0.83333333333 0 0.83333333333 0.86666666667 0 0.83333333333 0.9 0 -0.83333333333 0.93333333333 0 0.83333333333 0.96666666667 0 0.86666666667 0.033333333333 0 -0.86666666667 0.066666666667 0 0.86666666667 0.1 0 0.86666666667 0.13333333333 0 -0.86666666667 0.16666666667 0 0.86666666667 0.2 0 0.86666666667 0.23333333333 0 -0.86666666667 0.26666666667 0 0.86666666667 0.3 0 0.86666666667 0.33333333333 0 -0.86666666667 0.36666666667 0 0.86666666667 0.4 0 0.86666666667 0.43333333333 0 -0.86666666667 0.46666666667 0 0.86666666667 0.5 0 0.86666666667 0.53333333333 0 -0.86666666667 0.56666666667 0 0.86666666667 0.6 0 0.86666666667 0.63333333333 0 -0.86666666667 0.66666666667 0 0.86666666667 0.7 0 0.86666666667 0.73333333333 0 -0.86666666667 0.76666666667 0 0.86666666667 0.8 0 0.86666666667 0.83333333333 0 -0.86666666667 0.86666666667 0 0.86666666667 0.9 0 0.86666666667 0.93333333333 0 -0.86666666667 0.96666666667 0 0.9 0.033333333333 0 0.9 0.066666666667 0 -0.9 0.1 0 0.9 0.13333333333 0 0.9 0.16666666667 0 -0.9 0.2 0 0.9 0.23333333333 0 0.9 0.26666666667 0 -0.9 0.3 0 0.9 0.33333333333 0 0.9 0.36666666667 0 -0.9 0.4 0 0.9 0.43333333333 0 0.9 0.46666666667 0 -0.9 0.5 0 0.9 0.53333333333 0 0.9 0.56666666667 0 -0.9 0.6 0 0.9 0.63333333333 0 0.9 0.66666666667 0 -0.9 0.7 0 0.9 0.73333333333 0 0.9 0.76666666667 0 -0.9 0.8 0 0.9 0.83333333333 0 0.9 0.86666666667 0 -0.9 0.9 0 0.9 0.93333333333 0 0.9 0.96666666667 0 -0.93333333333 0.033333333333 0 0.93333333333 0.066666666667 0 0.93333333333 0.1 0 -0.93333333333 0.13333333333 0 0.93333333333 0.16666666667 0 0.93333333333 0.2 0 -0.93333333333 0.23333333333 0 0.93333333333 0.26666666667 0 0.93333333333 0.3 0 -0.93333333333 0.33333333333 0 0.93333333333 0.36666666667 0 0.93333333333 0.4 0 -0.93333333333 0.43333333333 0 0.93333333333 0.46666666667 0 0.93333333333 0.5 0 -0.93333333333 0.53333333333 0 0.93333333333 0.56666666667 0 0.93333333333 0.6 0 -0.93333333333 0.63333333333 0 0.93333333333 0.66666666667 0 0.93333333333 0.7 0 -0.93333333333 0.73333333333 0 0.93333333333 0.76666666667 0 0.93333333333 0.8 0 -0.93333333333 0.83333333333 0 0.93333333333 0.86666666667 0 0.93333333333 0.9 0 -0.93333333333 0.93333333333 0 0.93333333333 0.96666666667 0 0.96666666667 0.033333333333 0 -0.96666666667 0.066666666667 0 0.96666666667 0.1 0 0.96666666667 0.13333333333 0 -0.96666666667 0.16666666667 0 0.96666666667 0.2 0 0.96666666667 0.23333333333 0 -0.96666666667 0.26666666667 0 0.96666666667 0.3 0 0.96666666667 0.33333333333 0 -0.96666666667 0.36666666667 0 0.96666666667 0.4 0 0.96666666667 0.43333333333 0 -0.96666666667 0.46666666667 0 0.96666666667 0.5 0 0.96666666667 0.53333333333 0 -0.96666666667 0.56666666667 0 0.96666666667 0.6 0 0.96666666667 0.63333333333 0 -0.96666666667 0.66666666667 0 0.96666666667 0.7 0 0.96666666667 0.73333333333 0 -0.96666666667 0.76666666667 0 0.96666666667 0.8 0 0.96666666667 0.83333333333 0 -0.96666666667 0.86666666667 0 0.96666666667 0.9 0 0.96666666667 0.93333333333 0 -0.96666666667 0.96666666667 0 -CELLS 901 3600 -OFFSETS vtktypeint64 -0 4 8 12 16 20 24 28 32 -36 40 44 48 52 56 60 64 68 -72 76 80 84 88 92 96 100 104 -108 112 116 120 124 128 132 136 140 -144 148 152 156 160 164 168 172 176 -180 184 188 192 196 200 204 208 212 -216 220 224 228 232 236 240 244 248 -252 256 260 264 268 272 276 280 284 -288 292 296 300 304 308 312 316 320 -324 328 332 336 340 344 348 352 356 -360 364 368 372 376 380 384 388 392 -396 400 404 408 412 416 420 424 428 -432 436 440 444 448 452 456 460 464 -468 472 476 480 484 488 492 496 500 -504 508 512 516 520 524 528 532 536 -540 544 548 552 556 560 564 568 572 -576 580 584 588 592 596 600 604 608 -612 616 620 624 628 632 636 640 644 -648 652 656 660 664 668 672 676 680 -684 688 692 696 700 704 708 712 716 -720 724 728 732 736 740 744 748 752 -756 760 764 768 772 776 780 784 788 -792 796 800 804 808 812 816 820 824 -828 832 836 840 844 848 852 856 860 -864 868 872 876 880 884 888 892 896 -900 904 908 912 916 920 924 928 932 -936 940 944 948 952 956 960 964 968 -972 976 980 984 988 992 996 1000 1004 -1008 1012 1016 1020 1024 1028 1032 1036 1040 -1044 1048 1052 1056 1060 1064 1068 1072 1076 -1080 1084 1088 1092 1096 1100 1104 1108 1112 -1116 1120 1124 1128 1132 1136 1140 1144 1148 -1152 1156 1160 1164 1168 1172 1176 1180 1184 -1188 1192 1196 1200 1204 1208 1212 1216 1220 -1224 1228 1232 1236 1240 1244 1248 1252 1256 -1260 1264 1268 1272 1276 1280 1284 1288 1292 -1296 1300 1304 1308 1312 1316 1320 1324 1328 -1332 1336 1340 1344 1348 1352 1356 1360 1364 -1368 1372 1376 1380 1384 1388 1392 1396 1400 -1404 1408 1412 1416 1420 1424 1428 1432 1436 -1440 1444 1448 1452 1456 1460 1464 1468 1472 -1476 1480 1484 1488 1492 1496 1500 1504 1508 -1512 1516 1520 1524 1528 1532 1536 1540 1544 -1548 1552 1556 1560 1564 1568 1572 1576 1580 -1584 1588 1592 1596 1600 1604 1608 1612 1616 -1620 1624 1628 1632 1636 1640 1644 1648 1652 -1656 1660 1664 1668 1672 1676 1680 1684 1688 -1692 1696 1700 1704 1708 1712 1716 1720 1724 -1728 1732 1736 1740 1744 1748 1752 1756 1760 -1764 1768 1772 1776 1780 1784 1788 1792 1796 -1800 1804 1808 1812 1816 1820 1824 1828 1832 -1836 1840 1844 1848 1852 1856 1860 1864 1868 -1872 1876 1880 1884 1888 1892 1896 1900 1904 -1908 1912 1916 1920 1924 1928 1932 1936 1940 -1944 1948 1952 1956 1960 1964 1968 1972 1976 -1980 1984 1988 1992 1996 2000 2004 2008 2012 -2016 2020 2024 2028 2032 2036 2040 2044 2048 -2052 2056 2060 2064 2068 2072 2076 2080 2084 -2088 2092 2096 2100 2104 2108 2112 2116 2120 -2124 2128 2132 2136 2140 2144 2148 2152 2156 -2160 2164 2168 2172 2176 2180 2184 2188 2192 -2196 2200 2204 2208 2212 2216 2220 2224 2228 -2232 2236 2240 2244 2248 2252 2256 2260 2264 -2268 2272 2276 2280 2284 2288 2292 2296 2300 -2304 2308 2312 2316 2320 2324 2328 2332 2336 -2340 2344 2348 2352 2356 2360 2364 2368 2372 -2376 2380 2384 2388 2392 2396 2400 2404 2408 -2412 2416 2420 2424 2428 2432 2436 2440 2444 -2448 2452 2456 2460 2464 2468 2472 2476 2480 -2484 2488 2492 2496 2500 2504 2508 2512 2516 -2520 2524 2528 2532 2536 2540 2544 2548 2552 -2556 2560 2564 2568 2572 2576 2580 2584 2588 -2592 2596 2600 2604 2608 2612 2616 2620 2624 -2628 2632 2636 2640 2644 2648 2652 2656 2660 -2664 2668 2672 2676 2680 2684 2688 2692 2696 -2700 2704 2708 2712 2716 2720 2724 2728 2732 -2736 2740 2744 2748 2752 2756 2760 2764 2768 -2772 2776 2780 2784 2788 2792 2796 2800 2804 -2808 2812 2816 2820 2824 2828 2832 2836 2840 -2844 2848 2852 2856 2860 2864 2868 2872 2876 -2880 2884 2888 2892 2896 2900 2904 2908 2912 -2916 2920 2924 2928 2932 2936 2940 2944 2948 -2952 2956 2960 2964 2968 2972 2976 2980 2984 -2988 2992 2996 3000 3004 3008 3012 3016 3020 -3024 3028 3032 3036 3040 3044 3048 3052 3056 -3060 3064 3068 3072 3076 3080 3084 3088 3092 -3096 3100 3104 3108 3112 3116 3120 3124 3128 -3132 3136 3140 3144 3148 3152 3156 3160 3164 -3168 3172 3176 3180 3184 3188 3192 3196 3200 -3204 3208 3212 3216 3220 3224 3228 3232 3236 -3240 3244 3248 3252 3256 3260 3264 3268 3272 -3276 3280 3284 3288 3292 3296 3300 3304 3308 -3312 3316 3320 3324 3328 3332 3336 3340 3344 -3348 3352 3356 3360 3364 3368 3372 3376 3380 -3384 3388 3392 3396 3400 3404 3408 3412 3416 -3420 3424 3428 3432 3436 3440 3444 3448 3452 -3456 3460 3464 3468 3472 3476 3480 3484 3488 -3492 3496 3500 3504 3508 3512 3516 3520 3524 -3528 3532 3536 3540 3544 3548 3552 3556 3560 -3564 3568 3572 3576 3580 3584 3588 3592 3596 -3600 -CONNECTIVITY vtktypeint64 -3 33 120 32 32 120 121 31 31 -121 122 30 30 122 123 29 29 123 -124 28 28 124 125 27 27 125 126 -26 26 126 127 25 25 127 128 24 -24 128 129 23 23 129 130 22 22 -130 131 21 21 131 132 20 20 132 -133 19 19 133 134 18 18 134 135 -17 17 135 136 16 16 136 137 15 -15 137 138 14 14 138 139 13 13 -139 140 12 12 140 141 11 11 141 -142 10 10 142 143 9 9 143 144 -8 8 144 145 7 7 145 146 6 -6 146 147 5 5 147 148 4 4 -148 119 0 33 34 149 120 120 149 -150 121 121 150 151 122 122 151 152 -123 123 152 153 124 124 153 154 125 -125 154 155 126 126 155 156 127 127 -156 157 128 128 157 158 129 129 158 -159 130 130 159 160 131 131 160 161 -132 132 161 162 133 133 162 163 134 -134 163 164 135 135 164 165 136 136 -165 166 137 137 166 167 138 138 167 -168 139 139 168 169 140 140 169 170 -141 141 170 171 142 142 171 172 143 -143 172 173 144 144 173 174 145 145 -174 175 146 146 175 176 147 147 176 -177 148 148 177 118 119 34 35 178 -149 149 178 179 150 150 179 180 151 -151 180 181 152 152 181 182 153 153 -182 183 154 154 183 184 155 155 184 -185 156 156 185 186 157 157 186 187 -158 158 187 188 159 159 188 189 160 -160 189 190 161 161 190 191 162 162 -191 192 163 163 192 193 164 164 193 -194 165 165 194 195 166 166 195 196 -167 167 196 197 168 168 197 198 169 -169 198 199 170 170 199 200 171 171 -200 201 172 172 201 202 173 173 202 -203 174 174 203 204 175 175 204 205 -176 176 205 206 177 177 206 117 118 -35 36 207 178 178 207 208 179 179 -208 209 180 180 209 210 181 181 210 -211 182 182 211 212 183 183 212 213 -184 184 213 214 185 185 214 215 186 -186 215 216 187 187 216 217 188 188 -217 218 189 189 218 219 190 190 219 -220 191 191 220 221 192 192 221 222 -193 193 222 223 194 194 223 224 195 -195 224 225 196 196 225 226 197 197 -226 227 198 198 227 228 199 199 228 -229 200 200 229 230 201 201 230 231 -202 202 231 232 203 203 232 233 204 -204 233 234 205 205 234 235 206 206 -235 116 117 36 37 236 207 207 236 -237 208 208 237 238 209 209 238 239 -210 210 239 240 211 211 240 241 212 -212 241 242 213 213 242 243 214 214 -243 244 215 215 244 245 216 216 245 -246 217 217 246 247 218 218 247 248 -219 219 248 249 220 220 249 250 221 -221 250 251 222 222 251 252 223 223 -252 253 224 224 253 254 225 225 254 -255 226 226 255 256 227 227 256 257 -228 228 257 258 229 229 258 259 230 -230 259 260 231 231 260 261 232 232 -261 262 233 233 262 263 234 234 263 -264 235 235 264 115 116 37 38 265 -236 236 265 266 237 237 266 267 238 -238 267 268 239 239 268 269 240 240 -269 270 241 241 270 271 242 242 271 -272 243 243 272 273 244 244 273 274 -245 245 274 275 246 246 275 276 247 -247 276 277 248 248 277 278 249 249 -278 279 250 250 279 280 251 251 280 -281 252 252 281 282 253 253 282 283 -254 254 283 284 255 255 284 285 256 -256 285 286 257 257 286 287 258 258 -287 288 259 259 288 289 260 260 289 -290 261 261 290 291 262 262 291 292 -263 263 292 293 264 264 293 114 115 -38 39 294 265 265 294 295 266 266 -295 296 267 267 296 297 268 268 297 -298 269 269 298 299 270 270 299 300 -271 271 300 301 272 272 301 302 273 -273 302 303 274 274 303 304 275 275 -304 305 276 276 305 306 277 277 306 -307 278 278 307 308 279 279 308 309 -280 280 309 310 281 281 310 311 282 -282 311 312 283 283 312 313 284 284 -313 314 285 285 314 315 286 286 315 -316 287 287 316 317 288 288 317 318 -289 289 318 319 290 290 319 320 291 -291 320 321 292 292 321 322 293 293 -322 113 114 39 40 323 294 294 323 -324 295 295 324 325 296 296 325 326 -297 297 326 327 298 298 327 328 299 -299 328 329 300 300 329 330 301 301 -330 331 302 302 331 332 303 303 332 -333 304 304 333 334 305 305 334 335 -306 306 335 336 307 307 336 337 308 -308 337 338 309 309 338 339 310 310 -339 340 311 311 340 341 312 312 341 -342 313 313 342 343 314 314 343 344 -315 315 344 345 316 316 345 346 317 -317 346 347 318 318 347 348 319 319 -348 349 320 320 349 350 321 321 350 -351 322 322 351 112 113 40 41 352 -323 323 352 353 324 324 353 354 325 -325 354 355 326 326 355 356 327 327 -356 357 328 328 357 358 329 329 358 -359 330 330 359 360 331 331 360 361 -332 332 361 362 333 333 362 363 334 -334 363 364 335 335 364 365 336 336 -365 366 337 337 366 367 338 338 367 -368 339 339 368 369 340 340 369 370 -341 341 370 371 342 342 371 372 343 -343 372 373 344 344 373 374 345 345 -374 375 346 346 375 376 347 347 376 -377 348 348 377 378 349 349 378 379 -350 350 379 380 351 351 380 111 112 -41 42 381 352 352 381 382 353 353 -382 383 354 354 383 384 355 355 384 -385 356 356 385 386 357 357 386 387 -358 358 387 388 359 359 388 389 360 -360 389 390 361 361 390 391 362 362 -391 392 363 363 392 393 364 364 393 -394 365 365 394 395 366 366 395 396 -367 367 396 397 368 368 397 398 369 -369 398 399 370 370 399 400 371 371 -400 401 372 372 401 402 373 373 402 -403 374 374 403 404 375 375 404 405 -376 376 405 406 377 377 406 407 378 -378 407 408 379 379 408 409 380 380 -409 110 111 42 43 410 381 381 410 -411 382 382 411 412 383 383 412 413 -384 384 413 414 385 385 414 415 386 -386 415 416 387 387 416 417 388 388 -417 418 389 389 418 419 390 390 419 -420 391 391 420 421 392 392 421 422 -393 393 422 423 394 394 423 424 395 -395 424 425 396 396 425 426 397 397 -426 427 398 398 427 428 399 399 428 -429 400 400 429 430 401 401 430 431 -402 402 431 432 403 403 432 433 404 -404 433 434 405 405 434 435 406 406 -435 436 407 407 436 437 408 408 437 -438 409 409 438 109 110 43 44 439 -410 410 439 440 411 411 440 441 412 -412 441 442 413 413 442 443 414 414 -443 444 415 415 444 445 416 416 445 -446 417 417 446 447 418 418 447 448 -419 419 448 449 420 420 449 450 421 -421 450 451 422 422 451 452 423 423 -452 453 424 424 453 454 425 425 454 -455 426 426 455 456 427 427 456 457 -428 428 457 458 429 429 458 459 430 -430 459 460 431 431 460 461 432 432 -461 462 433 433 462 463 434 434 463 -464 435 435 464 465 436 436 465 466 -437 437 466 467 438 438 467 108 109 -44 45 468 439 439 468 469 440 440 -469 470 441 441 470 471 442 442 471 -472 443 443 472 473 444 444 473 474 -445 445 474 475 446 446 475 476 447 -447 476 477 448 448 477 478 449 449 -478 479 450 450 479 480 451 451 480 -481 452 452 481 482 453 453 482 483 -454 454 483 484 455 455 484 485 456 -456 485 486 457 457 486 487 458 458 -487 488 459 459 488 489 460 460 489 -490 461 461 490 491 462 462 491 492 -463 463 492 493 464 464 493 494 465 -465 494 495 466 466 495 496 467 467 -496 107 108 45 46 497 468 468 497 -498 469 469 498 499 470 470 499 500 -471 471 500 501 472 472 501 502 473 -473 502 503 474 474 503 504 475 475 -504 505 476 476 505 506 477 477 506 -507 478 478 507 508 479 479 508 509 -480 480 509 510 481 481 510 511 482 -482 511 512 483 483 512 513 484 484 -513 514 485 485 514 515 486 486 515 -516 487 487 516 517 488 488 517 518 -489 489 518 519 490 490 519 520 491 -491 520 521 492 492 521 522 493 493 -522 523 494 494 523 524 495 495 524 -525 496 496 525 106 107 46 47 526 -497 497 526 527 498 498 527 528 499 -499 528 529 500 500 529 530 501 501 -530 531 502 502 531 532 503 503 532 -533 504 504 533 534 505 505 534 535 -506 506 535 536 507 507 536 537 508 -508 537 538 509 509 538 539 510 510 -539 540 511 511 540 541 512 512 541 -542 513 513 542 543 514 514 543 544 -515 515 544 545 516 516 545 546 517 -517 546 547 518 518 547 548 519 519 -548 549 520 520 549 550 521 521 550 -551 522 522 551 552 523 523 552 553 -524 524 553 554 525 525 554 105 106 -47 48 555 526 526 555 556 527 527 -556 557 528 528 557 558 529 529 558 -559 530 530 559 560 531 531 560 561 -532 532 561 562 533 533 562 563 534 -534 563 564 535 535 564 565 536 536 -565 566 537 537 566 567 538 538 567 -568 539 539 568 569 540 540 569 570 -541 541 570 571 542 542 571 572 543 -543 572 573 544 544 573 574 545 545 -574 575 546 546 575 576 547 547 576 -577 548 548 577 578 549 549 578 579 -550 550 579 580 551 551 580 581 552 -552 581 582 553 553 582 583 554 554 -583 104 105 48 49 584 555 555 584 -585 556 556 585 586 557 557 586 587 -558 558 587 588 559 559 588 589 560 -560 589 590 561 561 590 591 562 562 -591 592 563 563 592 593 564 564 593 -594 565 565 594 595 566 566 595 596 -567 567 596 597 568 568 597 598 569 -569 598 599 570 570 599 600 571 571 -600 601 572 572 601 602 573 573 602 -603 574 574 603 604 575 575 604 605 -576 576 605 606 577 577 606 607 578 -578 607 608 579 579 608 609 580 580 -609 610 581 581 610 611 582 582 611 -612 583 583 612 103 104 49 50 613 -584 584 613 614 585 585 614 615 586 -586 615 616 587 587 616 617 588 588 -617 618 589 589 618 619 590 590 619 -620 591 591 620 621 592 592 621 622 -593 593 622 623 594 594 623 624 595 -595 624 625 596 596 625 626 597 597 -626 627 598 598 627 628 599 599 628 -629 600 600 629 630 601 601 630 631 -602 602 631 632 603 603 632 633 604 -604 633 634 605 605 634 635 606 606 -635 636 607 607 636 637 608 608 637 -638 609 609 638 639 610 610 639 640 -611 611 640 641 612 612 641 102 103 -50 51 642 613 613 642 643 614 614 -643 644 615 615 644 645 616 616 645 -646 617 617 646 647 618 618 647 648 -619 619 648 649 620 620 649 650 621 -621 650 651 622 622 651 652 623 623 -652 653 624 624 653 654 625 625 654 -655 626 626 655 656 627 627 656 657 -628 628 657 658 629 629 658 659 630 -630 659 660 631 631 660 661 632 632 -661 662 633 633 662 663 634 634 663 -664 635 635 664 665 636 636 665 666 -637 637 666 667 638 638 667 668 639 -639 668 669 640 640 669 670 641 641 -670 101 102 51 52 671 642 642 671 -672 643 643 672 673 644 644 673 674 -645 645 674 675 646 646 675 676 647 -647 676 677 648 648 677 678 649 649 -678 679 650 650 679 680 651 651 680 -681 652 652 681 682 653 653 682 683 -654 654 683 684 655 655 684 685 656 -656 685 686 657 657 686 687 658 658 -687 688 659 659 688 689 660 660 689 -690 661 661 690 691 662 662 691 692 -663 663 692 693 664 664 693 694 665 -665 694 695 666 666 695 696 667 667 -696 697 668 668 697 698 669 669 698 -699 670 670 699 100 101 52 53 700 -671 671 700 701 672 672 701 702 673 -673 702 703 674 674 703 704 675 675 -704 705 676 676 705 706 677 677 706 -707 678 678 707 708 679 679 708 709 -680 680 709 710 681 681 710 711 682 -682 711 712 683 683 712 713 684 684 -713 714 685 685 714 715 686 686 715 -716 687 687 716 717 688 688 717 718 -689 689 718 719 690 690 719 720 691 -691 720 721 692 692 721 722 693 693 -722 723 694 694 723 724 695 695 724 -725 696 696 725 726 697 697 726 727 -698 698 727 728 699 699 728 99 100 -53 54 729 700 700 729 730 701 701 -730 731 702 702 731 732 703 703 732 -733 704 704 733 734 705 705 734 735 -706 706 735 736 707 707 736 737 708 -708 737 738 709 709 738 739 710 710 -739 740 711 711 740 741 712 712 741 -742 713 713 742 743 714 714 743 744 -715 715 744 745 716 716 745 746 717 -717 746 747 718 718 747 748 719 719 -748 749 720 720 749 750 721 721 750 -751 722 722 751 752 723 723 752 753 -724 724 753 754 725 725 754 755 726 -726 755 756 727 727 756 757 728 728 -757 98 99 54 55 758 729 729 758 -759 730 730 759 760 731 731 760 761 -732 732 761 762 733 733 762 763 734 -734 763 764 735 735 764 765 736 736 -765 766 737 737 766 767 738 738 767 -768 739 739 768 769 740 740 769 770 -741 741 770 771 742 742 771 772 743 -743 772 773 744 744 773 774 745 745 -774 775 746 746 775 776 747 747 776 -777 748 748 777 778 749 749 778 779 -750 750 779 780 751 751 780 781 752 -752 781 782 753 753 782 783 754 754 -783 784 755 755 784 785 756 756 785 -786 757 757 786 97 98 55 56 787 -758 758 787 788 759 759 788 789 760 -760 789 790 761 761 790 791 762 762 -791 792 763 763 792 793 764 764 793 -794 765 765 794 795 766 766 795 796 -767 767 796 797 768 768 797 798 769 -769 798 799 770 770 799 800 771 771 -800 801 772 772 801 802 773 773 802 -803 774 774 803 804 775 775 804 805 -776 776 805 806 777 777 806 807 778 -778 807 808 779 779 808 809 780 780 -809 810 781 781 810 811 782 782 811 -812 783 783 812 813 784 784 813 814 -785 785 814 815 786 786 815 96 97 -56 57 816 787 787 816 817 788 788 -817 818 789 789 818 819 790 790 819 -820 791 791 820 821 792 792 821 822 -793 793 822 823 794 794 823 824 795 -795 824 825 796 796 825 826 797 797 -826 827 798 798 827 828 799 799 828 -829 800 800 829 830 801 801 830 831 -802 802 831 832 803 803 832 833 804 -804 833 834 805 805 834 835 806 806 -835 836 807 807 836 837 808 808 837 -838 809 809 838 839 810 810 839 840 -811 811 840 841 812 812 841 842 813 -813 842 843 814 814 843 844 815 815 -844 95 96 57 58 845 816 816 845 -846 817 817 846 847 818 818 847 848 -819 819 848 849 820 820 849 850 821 -821 850 851 822 822 851 852 823 823 -852 853 824 824 853 854 825 825 854 -855 826 826 855 856 827 827 856 857 -828 828 857 858 829 829 858 859 830 -830 859 860 831 831 860 861 832 832 -861 862 833 833 862 863 834 834 863 -864 835 835 864 865 836 836 865 866 -837 837 866 867 838 838 867 868 839 -839 868 869 840 840 869 870 841 841 -870 871 842 842 871 872 843 843 872 -873 844 844 873 94 95 58 59 874 -845 845 874 875 846 846 875 876 847 -847 876 877 848 848 877 878 849 849 -878 879 850 850 879 880 851 851 880 -881 852 852 881 882 853 853 882 883 -854 854 883 884 855 855 884 885 856 -856 885 886 857 857 886 887 858 858 -887 888 859 859 888 889 860 860 889 -890 861 861 890 891 862 862 891 892 -863 863 892 893 864 864 893 894 865 -865 894 895 866 866 895 896 867 867 -896 897 868 868 897 898 869 869 898 -899 870 870 899 900 871 871 900 901 -872 872 901 902 873 873 902 93 94 -59 60 903 874 874 903 904 875 875 -904 905 876 876 905 906 877 877 906 -907 878 878 907 908 879 879 908 909 -880 880 909 910 881 881 910 911 882 -882 911 912 883 883 912 913 884 884 -913 914 885 885 914 915 886 886 915 -916 887 887 916 917 888 888 917 918 -889 889 918 919 890 890 919 920 891 -891 920 921 892 892 921 922 893 893 -922 923 894 894 923 924 895 895 924 -925 896 896 925 926 897 897 926 927 -898 898 927 928 899 899 928 929 900 -900 929 930 901 901 930 931 902 902 -931 92 93 60 61 932 903 903 932 -933 904 904 933 934 905 905 934 935 -906 906 935 936 907 907 936 937 908 -908 937 938 909 909 938 939 910 910 -939 940 911 911 940 941 912 912 941 -942 913 913 942 943 914 914 943 944 -915 915 944 945 916 916 945 946 917 -917 946 947 918 918 947 948 919 919 -948 949 920 920 949 950 921 921 950 -951 922 922 951 952 923 923 952 953 -924 924 953 954 925 925 954 955 926 -926 955 956 927 927 956 957 928 928 -957 958 929 929 958 959 930 930 959 -960 931 931 960 91 92 61 2 62 -932 932 62 63 933 933 63 64 934 -934 64 65 935 935 65 66 936 936 -66 67 937 937 67 68 938 938 68 -69 939 939 69 70 940 940 70 71 -941 941 71 72 942 942 72 73 943 -943 73 74 944 944 74 75 945 945 -75 76 946 946 76 77 947 947 77 -78 948 948 78 79 949 949 79 80 -950 950 80 81 951 951 81 82 952 -952 82 83 953 953 83 84 954 954 -84 85 955 955 85 86 956 956 86 -87 957 957 87 88 958 958 88 89 -959 959 89 90 960 960 90 1 91 - -CELL_TYPES 900 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 -9 - -CELL_DATA 900 -FIELD FieldData 3 -radiation%20flux%20density 1 900 double -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 2.5468307699e-06 -8.9182542944e-06 0.00016332556165 -0.00070975264151 -0.0006348471239 -0.0037141946206 0.0048007863367 -0.051599708446 -0.21506110092 -1.1911138074 -3.0142632337 -3.917151096 11.785621516 175.47733592 -175.47733589 11.785621498 -3.9171511046 -3.0142632411 -1.1911138091 -0.21506110142 -0.051599708395 0.004800786318 0.0037141946101 --0.00063484710541 -0.00070975262826 0.00016332556482 -8.9182540184e-06 2.5468304519e-06 0 0 -1.1215289827e-05 0.00018516630904 --0.00097360111714 -0.00025285926978 0.0067439436016 0.016899655087 0.0045177873567 -0.23333802652 -0.81870189558 -2.2182052342 3.0547707382 -263.37288455 3308.9464544 7663.4960206 7663.4960225 3308.946455 263.37288447 3.054770719 -2.2182052424 -0.81870189726 --0.23333802644 0.0045177874486 0.016899655231 0.0067439436213 -0.00025285925014 -0.00097360110382 0.00018516631171 -1.1215289724e-05 0 -0 0.00017377560427 -0.0013040240484 0.00020953250771 0.015040281105 0.034899809741 0.038696805025 0.095871479598 -0.35067613336 -2.6541473198 96.651937478 1710.7524515 13714.746033 22687.972329 18844.550079 18844.550074 22687.972328 13714.746032 -1710.7524508 96.651937403 2.6541473117 -0.35067613375 0.095871480663 0.03869680525 0.034899809774 0.01504028112 0.00020953252458 --0.0013040240379 0.00017377560574 0 0 -0.001397091902 0.00061649274307 0.025274836297 0.076477398907 0.11355494592 -0.2358791298 0.73346429658 17.329761605 365.90142863 5666.4751409 30015.322222 36808.779903 30695.371753 28571.196571 -28571.196572 30695.371731 36808.7799 30015.32222 5666.475139 365.90142844 17.329761597 0.73346429799 0.23587913066 -0.11355494601 0.07647739886 0.025274836298 0.00061649275394 -0.0013970918945 0 0 -0.0022298214331 0.026590664206 -0.12199828297 0.24174602925 0.75738234959 2.5875896345 34.380067669 705.25063397 11647.648989 45440.649764 51919.487632 -33143.215071 33144.211097 35894.005067 35894.005079 33144.211113 33143.215042 51919.487631 45440.649762 11647.648985 -705.2506337 34.380067664 2.5875896356 0.75738234989 0.24174602914 0.12199828296 0.026590664203 -0.0022298214284 0 -0 -0.0082790151714 0.047238978263 0.26027925315 0.81553090177 3.5483047097 42.814772587 935.98342386 18222.243906 -53094.06175 57202.149378 29964.705702 31003.924724 35412.676856 39245.507907 39245.507918 35412.676865 31003.924736 -29964.705679 57202.14938 53094.06175 18222.2439 935.98342354 42.814772576 3.5483047103 0.81553090239 0.26027925322 -0.047238978282 -0.0082790151904 0 0 -0.055659434177 -0.099402351834 0.22316985244 1.376151039 35.580622401 -937.26191203 22348.130358 56505.546517 60135.664595 31372.418106 28529.375614 34336.810805 36825.574923 36751.268864 -36751.268841 36825.574934 34336.810804 28529.375629 31372.418079 60135.664603 56505.546518 22348.130352 937.2619117 -35.580622391 1.3761510387 0.2231698527 -0.099402351881 -0.055659434219 0 0 -0.23414618353 -0.72929219161 --0.7977724533 15.705620353 700.31814838 18152.395524 56654.733153 60353.098293 32260.029271 25645.408245 33190.419566 -37225.757215 36984.861746 31816.061057 31816.061064 36984.861717 37225.757211 33190.419588 25645.408247 32260.029245 -60353.098307 56654.733153 18152.395518 700.31814809 15.705620344 -0.7977724535 -0.72929219163 -0.23414618348 0 -0 -0.77750550892 -2.8639452614 -1.2954039296 353.56942639 11591.785177 53618.870018 62343.551295 33133.189085 -22675.686415 30102.982924 37309.247293 37407.628627 32334.747328 31582.336345 31582.336336 32334.747319 37407.628604 -37309.247293 30102.982957 22675.686414 33133.189058 62343.551301 53618.870018 11591.785173 353.56942622 -1.2954039365 --2.863945263 -0.77750550868 0 0 -2.7325305329 -7.7923107411 88.614503045 5701.09871 45924.803877 -59273.140785 32659.991892 26250.698836 28202.045285 33998.561911 37699.818673 34031.626325 31954.390399 28615.480031 -28615.480037 31954.390384 34031.626325 37699.818664 33998.56191 28202.045322 26250.698837 32659.991858 59273.14079 -45924.803876 5701.0987081 88.614502981 -7.7923107463 -2.7325305338 0 0 -6.9008496706 -3.7543072234 -1717.2503983 29422.414456 53936.896548 34717.737734 27924.487392 28412.125457 34492.091619 36331.051325 31502.88427 -33075.297989 29398.889443 24628.088872 24628.088864 29398.889444 33075.297993 31502.884261 36331.05132 34492.091624 -28412.125478 27924.487391 34717.737709 53936.89655 29422.414455 1717.2503976 -3.754307239 -6.9008496728 0 -0 -8.7090701797 226.62466831 12310.925788 40074.756654 41684.558091 29600.227141 27911.500599 31517.613424 -35000.775882 34530.808603 31679.056669 26992.954231 26153.216557 26990.139657 26990.139643 26153.21654 26992.954238 -31679.056672 34530.808602 35000.775883 31517.613433 27911.500614 29600.227143 41684.558075 40074.756653 12310.925788 -226.62466827 -8.709070184 0 0 -2.0823544521 1858.5113263 24248.969775 40265.251186 30691.267401 -28562.612074 27947.841165 29790.730189 31047.221829 33110.317178 29051.494462 22591.754769 25199.253595 32270.5746 -32270.574589 25199.253589 22591.754764 29051.494475 33110.317183 31047.221824 29790.730192 27947.841164 28562.612076 -30691.267401 40265.251179 24248.969774 1858.5113271 -2.0823544595 0 0 15.897688962 6778.8519502 -22409.130199 30474.804282 31266.496739 28734.927318 25100.056528 24186.882319 29194.132489 27992.039542 27500.047839 -27441.40047 29961.883256 28686.090822 28686.090832 29961.88327 27441.400473 27500.047836 27992.039554 29194.132486 -24186.882311 25100.056523 28734.927323 31266.496736 30474.804276 22409.130199 6778.8519488 15.897688937 0 -0 15.466499186 7832.6429473 21233.182137 26534.503988 26652.333388 21447.852702 23434.456637 29547.148041 -27288.260108 26024.86582 26509.431264 34311.284053 34681.330746 32598.295611 32598.29559 34681.330752 34311.284064 -26509.431275 26024.86582 27288.260104 29547.148051 23434.45665 21447.852703 26652.333373 26534.503986 21233.182142 -7832.6429457 15.466499173 0 0 5.4992311548 2801.8050163 20873.66603 24994.025769 15325.39358 -14042.925979 21120.174928 31175.763759 34784.576744 26561.877873 27219.13617 30892.508874 40227.093795 46840.734859 -46840.734849 40227.093787 30892.508891 27219.136159 26561.877864 34784.576761 31175.763781 21120.174941 14042.92596 -15325.393565 24994.02578 20873.66603 2801.8050141 5.4992311352 0 0 -1.025178257 60.570644178 -2908.2414654 19072.261113 40778.05079 58328.147624 75065.867173 95583.92963 122314.52218 155557.36653 195873.28294 -238757.69518 291979.22234 328479.2529 328479.25291 291979.22235 238757.69518 195873.28294 155557.36654 122314.5222 -95583.929626 75065.867162 58328.147618 40778.050795 19072.261111 2908.2414639 60.570644108 -1.0251782566 0 -0 -0.055597642064 -0.3806351154 9.5050738576 217.81601771 1800.7571955 8113.6955888 17279.54434 28263.881534 -41777.161021 62992.5778 99555.919043 154466.84631 225865.63859 287261.67546 287261.67546 225865.63858 154466.84631 -99555.919038 62992.577794 41777.161015 28263.881532 17279.544341 8113.6955893 1800.7571949 217.81601763 9.5050738598 --0.38063511502 -0.055597642476 0 0 -0.0065988492621 0.14265709193 0.24407120403 0.62696506433 11.237812177 -140.85640415 721.32309779 2263.1744277 5103.3966382 10428.012213 21459.964165 43221.698532 81670.998413 130103.42089 -130103.42088 81670.998407 43221.698529 21459.964163 10428.012213 5103.3966379 2263.1744283 721.32309793 140.85640415 -11.237812178 0.62696506453 0.24407120473 0.14265709224 -0.0065988493238 0 0 -0.0001743721164 0.0062561768577 --0.00028674894259 0.017316111246 0.064647709797 0.54808742814 5.6103406617 34.033372179 145.87543023 501.28011162 1488.718844 -3870.1572357 8663.2891456 16582.006387 16582.006386 8663.2891449 3870.1572353 1488.718844 501.28011167 145.87543025 -34.033372182 5.6103406617 0.54808742808 0.064647709856 0.017316111296 -0.00028674892612 0.0062561768715 -0.00017437210773 0 -0 -2.7023837994e-05 -0.00024204439049 7.7334483385e-05 0.0042489642096 0.004377568249 0.011490542246 0.020113896743 0.085272548759 -0.92370820451 6.361892093 27.207955526 85.198890019 184.98883053 156.77899461 156.77899462 184.98883053 85.19889001 -27.207955522 6.3618920928 0.92370820445 0.085272548703 0.020113896742 0.011490542233 0.0043775682458 0.0042489642095 7.7334483209e-05 --0.00024204439034 -2.7023837946e-05 0 0 9.5332863554e-07 2.1085080316e-05 0.00012851699684 0.00020029789652 0.00032519335537 -0.00073461327144 -0.00195125841 -0.0085572079262 -0.0041848584489 -0.10433164665 -0.61283946469 -0.28098115745 0.68861528458 0.64805077778 -0.6480507778 0.68861528469 -0.28098115746 -0.61283946469 -0.10433164665 -0.0041848584637 -0.0085572079382 -0.0019512584128 0.00073461327155 -0.00032519335534 0.0002002978961 0.0001285169966 2.1085080252e-05 9.5332861829e-07 0 0 2.5304817384e-07 2.0717694893e-06 -3.3938164269e-06 7.9076591551e-06 3.6162544945e-05 -0.00013141997665 -0.0011924331736 -0.002189323327 -0.011448535848 -0.088159975452 -0.12508626218 --0.083131245561 -0.047940290494 -0.09495639512 -0.094956395174 -0.047940290484 -0.083131245554 -0.12508626217 -0.088159975449 -0.011448535849 --0.0021893233302 -0.0011924331751 -0.00013141997684 3.6162544991e-05 7.9076591688e-06 3.3938164263e-06 2.0717694869e-06 2.5304817283e-07 0 -0 4.682459939e-08 1.0463940505e-07 5.4764234646e-08 1.2842795174e-06 -2.2499792974e-06 -4.5064825951e-05 -0.00015209212539 -0.00017221961103 --0.0012586920774 -0.0058160188792 0.0022515524377 -0.0020417131155 -0.022799699379 -0.020126033787 -0.020126033792 -0.022799699386 -0.0020417131156 -0.0022515524381 -0.0058160188789 -0.0012586920773 -0.00017221961112 -0.00015209212562 -4.5064826008e-05 -2.2499793e-06 1.2842795201e-06 5.4764235433e-08 -1.0463940557e-07 4.6824599336e-08 0 0 -2.6969633284e-09 -8.7903327655e-09 4.0502167498e-08 9.7604180133e-08 -1.1621834924e-06 --4.6017575981e-06 -2.0852429196e-06 -1.9178868122e-05 -1.3627063212e-05 0.00066675095079 0.00067829438633 -0.00014430086242 -0.0013043628573 -4.5030193841e-05 --4.5030194089e-05 -0.0013043628583 -0.00014430086245 0.0006782943864 0.00066675095087 -1.362706317e-05 -1.917886812e-05 -2.0852429212e-06 -4.6017576094e-06 --1.1621834957e-06 9.7604180174e-08 4.0502167593e-08 -8.7903327082e-09 -2.6969633122e-09 0 0 1.5055976491e-11 1.6161429938e-09 -8.2662873393e-09 -3.1442320371e-08 -1.7259502711e-07 9.9334643764e-08 -7.5738506711e-08 2.203782e-07 3.0682135079e-05 8.6047299103e-05 -2.5694751363e-05 --5.8293936963e-05 1.9654997578e-05 2.5784861375e-05 2.5784861373e-05 1.9654997572e-05 -5.8293936971e-05 -2.5694751365e-05 8.6047299114e-05 3.0682135077e-05 -2.203782002e-07 -7.5738506546e-08 9.9334644004e-08 -1.7259502741e-07 -3.1442320478e-08 8.2662873176e-09 1.6161429927e-09 1.5055977559e-11 0 -0 3.717516529e-11 2.5209645723e-10 -1.1708878209e-09 -7.9657630197e-09 8.5040496616e-09 3.2322597657e-08 -6.2925157569e-09 3.775069008e-07 -3.3937689036e-06 -5.5519498428e-06 -9.2688325346e-06 -1.4683951631e-06 3.5619850377e-06 3.0574130461e-07 3.0574130584e-07 3.5619850378e-06 -1.4683951636e-06 --9.2688325356e-06 -5.5519498436e-06 3.393768902e-06 3.7750690085e-07 -6.2925157253e-09 3.2322597725e-08 8.5040497402e-09 -7.9657630281e-09 -1.1708878235e-09 -2.520964565e-10 3.7175165232e-11 0 0 -1.3254594065e-12 -4.2649280233e-11 -2.1136212298e-10 4.7327420798e-10 3.2356186765e-09 --2.1919948894e-09 -6.441695186e-09 1.0287603374e-09 -3.1928809876e-07 -7.286340607e-07 -2.2848287867e-08 2.3538943538e-07 -3.1826210578e-08 -3.1901325046e-08 --3.1901325044e-08 -3.1826210578e-08 2.3538943538e-07 -2.2848287886e-08 -7.2863406078e-07 -3.1928809873e-07 1.0287603329e-09 -6.4416951953e-09 -2.1919948953e-09 -3.2356186858e-09 4.7327421039e-10 -2.1136212265e-10 -4.264928026e-11 -1.3254594124e-12 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 - -dose 1 900 double -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 2.0095368158e-08 -4.8571156731e-08 1.3225750204e-06 -4.4950996357e-06 -1.0437168852e-05 -2.2449679306e-05 3.5593550125e-05 -0.00058123109145 -0.0022750336567 -0.011993345677 -0.036456531684 -0.047061637911 0.082891426363 1.4673523699 -1.4673523696 0.082891426142 -0.04706163803 -0.03645653177 -0.011993345695 -0.0022750336616 -0.00058123109076 3.5593549917e-05 2.2449679517e-05 --1.0437168514e-05 -4.4950994792e-06 1.3225750495e-06 -4.8571157016e-08 2.0095365928e-08 0 0 -6.7430737513e-08 1.5016284444e-06 --6.3560380675e-06 -8.6242825443e-06 5.3717379565e-05 0.00025425950845 0.00024477726782 -0.0028208916266 -0.012482011299 -0.035711009263 -0.025569351659 -2.1622585994 29.319687672 84.114675937 84.114675948 29.319687677 2.1622585985 -0.025569351979 -0.035711009375 -0.012482011325 --0.0028208916223 0.00024477726897 0.00025425951018 5.3717380181e-05 -8.624282183e-06 -6.3560379195e-06 1.5016284647e-06 -6.7430740427e-08 0 -0 1.371010445e-06 -9.0838897185e-06 -7.6689270448e-06 0.00013611194253 0.00053142414438 0.00084707921898 0.0015161322233 -0.0034347697153 -0.0063403273479 0.80175383637 15.2762266 129.46739477 298.71727811 356.83349469 356.83349466 298.71727811 129.46739476 -15.276226593 0.80175383551 0.0063403272511 -0.0034347697028 0.0015161322374 0.00084707922274 0.00053142414537 0.0001361119431 -7.668926731e-06 --9.0838896104e-06 1.3710104523e-06 0 0 -1.0190579776e-05 -8.4682500279e-06 0.0002357171755 0.0010803268012 0.0023079511102 -0.0036676460337 0.0079979834603 0.15595898652 3.2763249697 52.600812068 316.93010005 608.0956571 741.8555978 772.00816493 -772.00816485 741.85559756 608.09565703 316.93010001 52.600812049 3.2763249681 0.15595898647 0.0079979834886 0.0036676460473 -0.0023079511118 0.0010803268013 0.0002357171758 -8.4682498471e-06 -1.019057971e-05 0 0 -3.6779396915e-05 0.00021594201411 -0.0015654741194 0.0040820183021 0.010650065895 0.032550811296 0.32510203086 6.5177397505 110.34293891 546.71892025 1012.1279554 -1203.0696733 1277.0383617 1326.3853782 1326.3853782 1277.0383615 1203.069673 1012.1279553 546.71892018 110.34293887 -6.517739748 0.32510203087 0.032550811314 0.010650065899 0.0040820183012 0.0015654741192 0.00021594201416 -3.6779396867e-05 0 -0 -0.00012931817449 0.00053226206632 0.0040242556697 0.013250471274 0.048451592355 0.4464230148 8.8041195813 172.00654129 -723.18685248 1280.0275616 1475.7227235 1602.4004378 1749.0650028 1894.7109886 1894.7109888 1749.0650029 1602.4004377 -1475.7227232 1280.0275615 723.1868524 172.00654123 8.8041195785 0.44642301472 0.048451592362 0.013250471277 0.0040242556703 -0.00053226206623 -0.00012931817471 0 0 -0.00065329001325 -0.0013044860705 0.003888500452 0.027314284161 0.37165824292 -8.8736582058 209.35222278 822.58796721 1468.0089111 1746.398167 1915.9164593 2087.0178079 2302.2784925 2467.9471088 -2467.947109 2302.2784926 2087.0178078 1915.9164592 1746.3981667 1468.0089111 822.58796715 209.35222272 8.8736582028 -0.37165824284 0.027314284167 0.0038885004558 -0.0013044860715 -0.00065329001398 0 0 -0.0027275432302 -0.010887215201 --0.014049338555 0.14849717793 6.5247145598 171.48445175 825.33505229 1515.8719816 1876.1805666 2026.0119278 2253.4323507 -2552.6046585 2826.4560857 3037.9998785 3037.9998784 2826.4560856 2552.6046586 2253.4323508 2026.0119276 1876.1805664 -1515.8719816 825.33505223 171.48445169 6.5247145572 0.14849717786 -0.01404933856 -0.010887215202 -0.0027275432302 0 -0 -0.0095383588732 -0.044635997784 -0.058294574108 3.12715921 109.49173137 726.36201872 1490.7995197 1894.462944 -2055.8890311 2316.0075818 2674.8735774 3065.965398 3356.8300995 3669.6722916 3669.6722911 3356.8300992 3065.9653978 -2674.8735775 2316.007582 2055.8890309 1894.4629437 1490.7995197 726.36201865 109.49173133 3.1271592084 -0.058294574173 --0.044635997791 -0.0095383588689 0 0 -0.028550594327 -0.12858622934 0.61613476489 52.720085178 550.61529913 -1303.6067064 1796.4128313 2064.3886185 2307.167787 2704.2399471 3188.1718859 3594.967085 4008.1674152 4540.8120079 -4540.8120079 4008.1674151 3594.9670848 3188.1718858 2704.2399471 2307.1677871 2064.3886183 1796.412831 1303.6067064 -550.61529907 52.720085159 0.61613476425 -0.1285862294 -0.028550594329 0 0 -0.074892549094 -0.17064172145 -15.117032219 312.08667463 1034.6619845 1559.0804936 1967.0709893 2233.8059055 2604.7357632 3147.6437467 3681.1184045 -4207.2738262 4726.4550428 5915.8903398 5915.8903393 4726.4550428 4207.2738263 3681.1184043 3147.6437467 2604.7357632 -2233.8059054 1967.070989 1559.0804933 1034.6619845 312.0866746 15.117032212 -0.17064172162 -0.074892549114 0 -0 -0.11086244717 1.747755323 117.56012715 634.16021048 1314.3934019 1675.289164 2059.9161675 2465.2709852 -2987.0025502 3516.1381536 4171.8361973 4829.4870039 5830.7463052 8045.218422 8045.2184216 5830.7463047 4829.4870042 -4171.8361977 3516.1381537 2987.00255 2465.2709852 2059.9161674 1675.2891638 1314.3934018 634.16021044 117.56012714 -1.7477553225 -0.11086244724 0 0 -0.07364439431 16.683770707 293.74965024 859.9258432 1363.7039398 -1754.632618 2153.1720359 2637.7364199 3161.355063 3827.0309415 4576.5947711 5729.4174645 7019.9849042 10894.664053 -10894.664053 7019.9849038 5729.417464 4576.5947715 3827.0309417 3161.355063 2637.7364198 2153.1720358 1754.6326179 -1363.7039397 859.9258431 293.74965027 16.683770714 -0.073644394415 0 0 0.08807575664 63.482085729 -381.65173861 860.63115411 1316.0613595 1769.3391513 2177.1853927 2683.7690728 3371.8328105 4323.6467483 5661.5524184 -7887.2343775 10808.805642 13119.905903 13119.905904 10808.805642 7887.2343781 5661.5524185 4323.6467487 3371.8328107 -2683.7690726 2177.1853924 1769.3391512 1316.0613593 860.631154 381.65173862 63.482085719 0.088075756359 0 -0 0.095945558771 72.827694615 376.43912283 790.04516502 1199.5727464 1575.8402265 1997.4440723 2631.2415567 -3305.3150272 4300.5573399 5673.0873741 7882.2569707 10821.698272 13063.54571 13063.545711 10821.698272 7882.2569708 -5673.0873741 4300.5573401 3305.3150276 2631.241557 1997.4440722 1575.8402262 1199.5727462 790.04516506 376.43912285 -72.827694591 0.095945558613 0 0 0.034531134244 25.310361705 279.25744319 677.57967252 1035.0834446 -1346.0663951 1777.8483812 2342.1781256 3120.6990177 3756.2849107 4681.2709403 5908.0405888 7534.2235617 11285.04711 -11285.04711 7534.2235616 5908.0405889 4681.27094 3756.2849109 3120.6990181 2342.1781258 1777.8483811 1346.0663948 -1035.0834446 677.57967259 279.25744316 25.310361685 0.034531134089 0 0 -0.0011471126809 0.091609475329 -5.4625648357 47.344088943 149.77871107 303.75895628 508.95939404 779.63030702 1144.1674593 1637.5951738 2402.4866409 -3442.0987151 4891.1027992 7725.5115902 7725.51159 4891.1027992 3442.0987151 2402.4866409 1637.5951737 1144.1674593 -779.63030698 508.95939401 303.75895627 149.77871107 47.344088936 5.4625648328 0.091609475186 -0.0011471126774 0 -0 -0.00011497389371 -0.00089205353104 0.021114618078 0.42768457551 4.1533177141 22.909329072 65.014280203 138.40822864 -243.1797857 419.43307449 742.74603268 1287.5928631 2132.7501028 3394.8412883 3394.8412882 2132.7501028 1287.5928631 -742.74603263 419.43307446 243.17978568 138.40822864 65.014280206 22.909329072 4.153317713 0.42768457536 0.021114618103 --0.00089205353066 -0.000114973895 0 0 -1.5155667517e-05 0.00029861904232 0.00071130531642 0.0012678381538 0.023123231808 -0.30784565163 1.9378243925 7.2993626307 19.969425105 47.807909983 110.2597297 243.95826782 498.96720844 916.70335687 -916.70335683 498.9672084 243.9582678 110.2597297 47.807909985 19.969425104 7.2993626322 1.9378243927 0.30784565162 -0.023123231811 0.0012678381547 0.00071130531853 0.00029861904296 -1.5155667627e-05 0 0 -7.707296814e-07 8.3552584157e-06 --3.7458989877e-06 8.6443625528e-05 0.00027392061534 0.0015796445961 0.013012450041 0.086042233776 0.41900559717 1.678731245 5.617980354 -15.983777362 38.166913036 70.221547004 70.221547003 38.166913033 15.98377736 5.6179803539 1.6787312452 0.41900559719 -0.086042233776 0.013012450041 0.0015796445961 0.00027392061551 8.6443625681e-05 -3.7458989557e-06 8.3552584427e-06 -7.7072966631e-07 0 -0 -7.5376290288e-08 -4.7534347654e-07 7.0317798081e-07 1.4600337137e-05 1.6224983705e-05 5.2705789727e-05 0.00011050496026 0.00015566902677 -0.0019396838196 0.017019882787 0.073677926834 0.25239212534 0.5931132246 0.48081886081 0.48081886085 0.59311322462 0.25239212532 -0.073677926823 0.017019882786 0.001939683819 0.00015566902656 0.00011050496028 5.2705789655e-05 1.6224983692e-05 1.4600337133e-05 7.0317797885e-07 --4.7534347661e-07 -7.5376290158e-08 0 0 -1.0145209485e-09 4.4254937155e-08 3.2243358585e-07 7.0610548809e-07 1.174392025e-06 -4.2398773143e-06 -5.5409175827e-06 -5.4568486782e-05 -1.2943034045e-05 -0.0005461391306 -0.003293486536 -0.0017121885332 0.0034735440912 0.00121518913 -0.0012151891301 0.0034735440916 -0.0017121885331 -0.0032934865359 -0.0005461391306 -1.2943034136e-05 -5.4568486857e-05 -5.5409175962e-06 4.2398773162e-06 -1.1743920255e-06 7.0610548719e-07 3.2243358524e-07 4.4254937009e-08 -1.0145209782e-09 0 0 7.0118640924e-10 6.8875269365e-09 -7.444734652e-09 2.3877759521e-08 1.5662245776e-07 -2.6809297987e-07 -4.8796987703e-06 -8.3083019791e-06 -3.5205467821e-05 -0.00031884986118 -0.00040930941666 --0.00023274989684 -0.00026753383251 -0.00054168259204 -0.00054168259236 -0.00026753383244 -0.00023274989681 -0.00040930941664 -0.00031884986118 -3.5205467828e-05 --8.3083019934e-06 -4.8796987773e-06 -2.6809298049e-07 1.5662245796e-07 2.3877759585e-08 7.4447346545e-09 6.8875269285e-09 7.0118640649e-10 0 -0 7.4065499265e-11 8.0987925177e-11 6.2135105461e-11 5.3525486323e-09 -9.1449480932e-10 -1.5355495453e-07 -5.2814882648e-07 -4.7151850004e-07 --4.5352246575e-06 -1.4287373989e-05 1.5888712354e-05 -3.9599769662e-06 -9.6956221454e-05 -6.2243944241e-05 -6.2243944258e-05 -9.6956221473e-05 -3.9599769665e-06 -1.5888712356e-05 -1.4287373989e-05 -4.5352246565e-06 -4.7151850032e-07 -5.2814882742e-07 -1.535549548e-07 -9.1449482519e-10 5.3525486434e-09 6.2135108294e-11 -8.0987926412e-11 7.4065499136e-11 0 0 -5.917339194e-12 -2.0492406985e-11 1.6652105004e-10 4.3310637905e-10 -3.9634787005e-09 --1.6488521929e-08 -1.0548443811e-09 -5.7381937624e-08 -1.0302514459e-07 2.5782409586e-06 2.2797646621e-06 -1.4096776788e-06 -3.5378695956e-06 3.2026803454e-07 -3.2026803397e-07 -3.5378695981e-06 -1.409677679e-06 2.2797646623e-06 2.5782409589e-06 -1.0302514441e-07 -5.7381937622e-08 -1.0548443825e-09 -1.6488521976e-08 --3.9634787121e-09 4.331063791e-10 1.6652105023e-10 -2.0492406838e-11 -5.9173391617e-12 0 0 1.3265954696e-13 5.079133602e-12 -2.1203835901e-11 -1.1691765796e-10 -5.8096319529e-10 6.0720365018e-10 3.2728975977e-10 -5.8860185939e-10 9.2353820645e-08 2.5753439354e-07 -1.6663292795e-07 --2.4760119714e-07 8.7623563261e-08 8.3256198552e-08 8.3256198549e-08 8.7623563251e-08 -2.4760119717e-07 -1.6663292797e-07 2.5753439357e-07 9.2353820632e-08 --5.8860185847e-10 3.2728976089e-10 6.0720365169e-10 -5.8096319603e-10 -1.169176583e-10 2.1203835843e-11 5.0791335999e-12 1.3265954902e-13 0 -0 6.9441170589e-14 3.9891641787e-13 -3.5678908874e-12 -2.1005283549e-11 3.6252131435e-11 1.107500315e-10 -1.2748303781e-10 7.1340977782e-10 -9.4888121401e-09 -1.8871834322e-08 -2.7575879855e-08 -1.0388633299e-09 1.0202926784e-08 -1.9102382917e-11 -1.9102380785e-11 1.0202926784e-08 -1.0388633308e-09 --2.7575879858e-08 -1.8871834324e-08 9.4888121361e-09 7.1340977786e-10 -1.2748303781e-10 1.1075003176e-10 3.6252131672e-11 -2.1005283568e-11 -3.5678908917e-12 -3.9891641646e-13 6.9441170472e-14 0 0 -2.181790553e-15 -8.3913872679e-14 -3.906149685e-13 1.639396893e-12 8.4572409594e-12 --1.1115087139e-11 -2.6476509502e-11 9.0169945342e-13 -8.7427955189e-10 -1.7943114264e-09 5.9843020105e-11 5.8029311169e-10 -9.2167369114e-11 -8.5181645904e-11 --8.51816459e-11 -9.2167369113e-11 5.8029311171e-10 5.9843020063e-11 -1.7943114266e-09 -8.7427955179e-10 9.0169941642e-13 -2.6476509558e-11 -1.1115087167e-11 -8.4572409857e-12 1.6393968994e-12 -3.9061496793e-13 -8.3913872747e-14 -2.1817905626e-15 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 - -normalized%20dose 1 900 double -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 1.5316701434e-12 -3.7020964239e-12 1.0080674587e-10 -3.4261675872e-10 -7.9552162401e-10 -1.7111158776e-09 2.7129424848e-09 -4.430146799e-08 -1.7340319918e-07 -9.1413351315e-07 -2.77871899e-06 -3.5870408106e-06 6.3179893946e-06 0.00011184168397 -0.00011184168395 6.3179893778e-06 -3.5870408197e-06 -2.7787189966e-06 -9.1413351452e-07 -1.7340319955e-07 -4.4301467937e-08 2.7129424689e-09 1.7111158937e-09 --7.9552159824e-10 -3.4261674679e-10 1.0080674809e-10 -3.7020964456e-12 1.5316699734e-12 0 0 -5.1395747808e-12 1.1445420838e-10 --4.8445759549e-10 -6.5734332297e-10 4.0943418311e-09 1.9379674694e-08 1.8656937756e-08 -2.1500852575e-07 -9.5137963567e-07 -2.7218952272e-06 -1.9488974879e-06 -0.00016480747767 0.0022347483195 0.0064112255491 0.00641122555 0.0022347483199 0.0001648074776 -1.9488975123e-06 -2.7218952358e-06 -9.5137963764e-07 --2.1500852543e-07 1.8656937843e-08 1.9379674826e-08 4.0943418781e-09 -6.5734329544e-10 -4.844575842e-10 1.1445420993e-10 -5.1395750029e-12 0 -0 1.0449849679e-10 -6.9237460883e-10 -5.8452607059e-10 1.0374460268e-08 4.0505179553e-08 6.4564427912e-08 1.1555968727e-07 -2.617983498e-07 -4.8326012352e-07 6.1109724582e-05 0.0011643548903 0.009868012447 0.022768248514 0.027197869961 0.027197869959 0.022768248514 0.0098680124461 -0.0011643548898 6.1109724517e-05 4.8326011614e-07 -2.6179834884e-07 1.1555968834e-07 6.4564428199e-08 4.0505179628e-08 1.0374460312e-08 -5.8452604667e-10 --6.9237460059e-10 1.0449849734e-10 0 0 -7.767265901e-10 -6.4545051539e-10 1.7966376986e-08 8.2342572354e-08 1.7591216942e-07 -2.7954819649e-07 6.0960676994e-07 1.1887203129e-05 0.00024972168196 0.0040092369908 0.024156430874 0.046349086764 0.056544277314 0.058842507755 -0.058842507749 0.056544277296 0.046349086759 0.024156430871 0.0040092369894 0.00024972168184 1.1887203125e-05 6.096067721e-07 2.7954819753e-07 -1.7591216954e-07 8.2342572361e-08 1.7966377008e-08 -6.4545050161e-10 -7.7672658513e-10 0 0 -2.8033277969e-09 1.6459113022e-08 -1.1932052949e-07 3.1113167517e-07 8.1174864919e-07 2.4810247522e-06 2.4779295921e-05 0.00049678250728 0.0084103452961 0.04167094827 0.077144452313 -0.091698041284 0.097335939066 0.10109717157 0.10109717157 0.097335939056 0.091698041261 0.077144452308 0.041670948265 0.008410345293 -0.00049678250709 2.4779295922e-05 2.4810247536e-06 8.1174864944e-07 3.111316751e-07 1.1932052948e-07 1.6459113025e-08 -2.8033277933e-09 0 -0 -9.8566388683e-09 4.0569046013e-08 3.0672900393e-07 1.0099517001e-06 3.6929832202e-06 3.4026388455e-05 0.00067105051251 0.013110348698 -0.055121344447 0.09756377606 0.11247967282 0.12213505566 0.13331383742 0.14441498303 0.14441498305 0.13331383743 0.12213505565 -0.11247967279 0.097563776056 0.055121344442 0.013110348693 0.0006710505123 3.4026388449e-05 3.6929832207e-06 1.0099517004e-06 3.0672900397e-07 -4.0569046006e-08 -9.8566388855e-09 0 0 -4.9793803248e-08 -9.9428005052e-08 2.9638173325e-07 2.0818963459e-06 2.8327813144e-05 -0.00067635075056 0.015956838738 0.062697703261 0.11189172558 0.13311057105 0.14603126526 0.15907262012 0.17547980216 0.18810707384 -0.18810707386 0.17547980217 0.15907262011 0.14603126525 0.13311057103 0.11189172558 0.062697703257 0.015956838733 0.00067635075033 -2.8327813138e-05 2.0818963463e-06 2.9638173353e-07 -9.9428005126e-08 -4.9793803304e-08 0 0 -2.0789350549e-07 -8.2982418321e-07 --1.0708414113e-06 1.1318463639e-05 0.00049731412766 0.013070555002 0.062907086248 0.11553985163 0.14300259318 0.15442274835 0.17175674636 -0.19455967726 0.21543264916 0.23155652949 0.23155652948 0.21543264915 0.19455967727 0.17175674637 0.15442274833 0.14300259316 -0.11553985163 0.062907086243 0.013070554998 0.00049731412746 1.1318463634e-05 -1.0708414117e-06 -8.2982418327e-07 -2.0789350549e-07 0 -0 -7.2701427455e-07 -3.4021583774e-06 -4.4432158685e-06 0.00023835225898 0.0083454662076 0.055363355805 0.11362882711 0.14439607706 -0.15669998292 0.17652623416 0.20387902146 0.23368806303 0.2558577877 0.27970263799 0.27970263795 0.25585778767 0.23368806302 -0.20387902146 0.17652623417 0.1566999829 0.14439607704 0.11362882711 0.0553633558 0.0083454662047 0.00023835225886 -4.4432158735e-06 --3.402158378e-06 -7.2701427421e-07 0 0 -2.1761279795e-06 -9.800849966e-06 4.6961828032e-05 0.0040183279942 0.041967930497 -0.099360979869 0.1369226917 0.15734782197 0.17585246448 0.20611732789 0.24300264873 0.27400860275 0.30550275622 0.34610095842 -0.34610095842 0.30550275622 0.27400860273 0.24300264873 0.20611732788 0.17585246449 0.15734782196 0.13692269168 0.099360979868 -0.041967930493 0.0040183279928 4.6961827984e-05 -9.800849971e-06 -2.1761279796e-06 0 0 -5.7083144985e-06 -1.3006322049e-05 -0.0011522210852 0.023787264703 0.07886199734 0.11883320695 0.14993026654 0.17026081755 0.19853311313 0.23991359158 0.28057506138 -0.32067865858 0.36025068146 0.45090950978 0.45090950975 0.36025068146 0.32067865859 0.28057506137 0.23991359158 0.19853311313 -0.17026081755 0.14993026652 0.11883320694 0.078861997338 0.023787264701 0.0011522210847 -1.3006322062e-05 -5.7083145e-06 0 -0 -8.4499422465e-06 0.00013321401355 0.0089604398084 0.048335728556 0.10018314243 0.12769063865 0.15700693149 0.18790309954 -0.22766951012 0.26800025695 0.31797760043 0.3681037836 0.44441982646 0.6132070215 0.61320702146 0.44441982642 0.36810378362 -0.31797760046 0.26800025696 0.22766951011 0.18790309955 0.15700693148 0.12769063864 0.10018314242 0.048335728553 0.008960439808 -0.00013321401352 -8.4499422513e-06 0 0 -5.6131800675e-06 0.001271637985 0.022389615625 0.065543598366 0.10394159453 -0.13373820138 0.16411489927 0.20104842512 0.24095866891 0.29169652354 0.34882832273 0.43669653626 0.53506366245 0.83039193516 -0.83039193516 0.53506366242 0.43669653622 0.34882832277 0.29169652356 0.24095866891 0.20104842512 0.16411489926 0.13373820137 -0.10394159452 0.065543598358 0.022389615627 0.0012716379855 -5.6131800754e-06 0 0 6.7131393534e-06 0.0048386083095 -0.029089517973 0.065597357205 0.10031027426 0.13485913422 0.16594519873 0.20455703664 0.25700129521 0.32954860956 0.43152385845 -0.60116546833 0.82384780199 0.99999999993 1 0.823847802 0.60116546838 0.43152385846 0.32954860959 0.25700129522 -0.20455703663 0.16594519871 0.13485913421 0.10031027424 0.065597357197 0.029089517973 0.0048386083087 6.713139332e-06 0 -0 7.3129761348e-06 0.0055509311687 0.028692212092 0.060217288963 0.091431505314 0.12011063478 0.15224530471 0.20055338627 -0.25193130585 0.32778873349 0.43240305345 0.60078609009 0.824830479 0.99570422267 0.9957042227 0.824830479 0.6007860901 -0.43240305346 0.3277887335 0.25193130589 0.2005533863 0.15224530471 0.12011063476 0.091431505297 0.060217288966 0.028692212093 -0.0055509311668 7.3129761228e-06 0 0 2.6319650839e-06 0.0019291572584 0.021285018751 0.051645162508 0.078894121054 -0.10259725983 0.13550770822 0.17852095455 0.23785986275 0.28630425691 0.35680674651 0.4503112013 0.57425896318 0.8601469547 -0.86014695469 0.57425896317 0.45031120131 0.35680674649 0.28630425693 0.23785986278 0.17852095456 0.13550770821 0.10259725981 -0.078894121047 0.051645162513 0.021285018749 0.0019291572569 2.631965072e-06 0 0 -8.743299603e-08 6.9824795998e-06 -0.00041635701319 0.0036085692449 0.011416142171 0.023152525521 0.038792914961 0.059423467874 0.087208511068 0.1248176005 0.18311767313 -0.2623569666 0.37280014314 0.58883894797 0.58883894795 0.37280014314 0.26235696659 0.18311767313 0.12481760049 0.087208511068 -0.059423467871 0.038792914958 0.023152525519 0.011416142171 0.0036085692443 0.00041635701297 6.9824795889e-06 -8.7432995769e-08 0 -0 -8.7633169438e-09 -6.7992372623e-08 1.6093574323e-06 3.259814351e-05 0.00031656612055 0.0017461504098 0.0049553922625 0.010549483331 -0.018535177575 0.031969213617 0.056612146313 0.09814040379 0.16255833833 0.25875500274 0.25875500273 0.16255833832 0.098140403786 -0.05661214631 0.031969213614 0.018535177573 0.010549483331 0.0049553922627 0.0017461504098 0.00031656612046 3.2598143499e-05 1.6093574342e-06 --6.7992372594e-08 -8.7633170416e-09 0 0 -1.1551658699e-09 2.2760760976e-08 5.421573307e-08 9.6634698678e-08 1.7624540889e-06 -2.346401368e-05 0.00014770108922 0.0005563578492 0.0015220707565 0.0036439217119 0.0084040030855 0.018594513528 0.038031309986 0.069871183798 -0.069871183796 0.038031309983 0.018594513526 0.0084040030852 0.003643921712 0.0015220707564 0.00055635784931 0.00014770108923 2.346401368e-05 -1.7624540892e-06 9.6634698752e-08 5.4215733231e-08 2.2760761025e-08 -1.1551658783e-09 0 0 -5.8745061665e-11 6.3683828806e-10 --2.8551264124e-10 6.588738224e-09 2.0878245418e-08 1.2040060406e-07 9.9180970776e-07 6.558144121e-06 3.193663127e-05 0.00012795299427 0.00042820279314 -0.001218284451 0.0029090843573 0.0053522904444 0.0053522904443 0.0029090843571 0.0012182844509 0.00042820279313 0.00012795299428 3.1936631272e-05 -6.558144121e-06 9.9180970776e-07 1.2040060406e-07 2.0878245432e-08 6.5887382357e-09 -2.8551263881e-10 6.3683829012e-10 -5.8745060515e-11 0 -0 -5.7451852808e-12 -3.6230707751e-11 5.3596267072e-11 1.1128385556e-09 1.2366692127e-09 4.0172383942e-09 8.422694573e-09 1.186510238e-08 -1.4784281486e-07 1.2972564675e-06 5.6157359184e-06 1.9237342644e-05 4.5207124877e-05 3.6648041862e-05 3.6648041865e-05 4.5207124878e-05 1.9237342642e-05 -5.6157359176e-06 1.2972564674e-06 1.4784281481e-07 1.1865102364e-08 8.4226945747e-09 4.0172383886e-09 1.2366692117e-09 1.1128385553e-09 5.3596266922e-11 --3.6230707756e-11 -5.7451852709e-12 0 0 -7.7326846389e-14 3.3731139139e-12 2.4575906885e-11 5.3819401849e-11 8.9512229242e-11 -3.2316369837e-10 -4.2232906418e-10 -4.1592132733e-09 -9.8651881644e-10 -4.1626756669e-08 -2.5102973756e-07 -1.3050311074e-07 2.6475373501e-07 9.2621786989e-08 -9.2621786997e-08 2.6475373504e-07 -1.3050311074e-07 -2.5102973755e-07 -4.1626756669e-08 -9.8651882341e-10 -4.159213279e-09 -4.223290652e-10 3.2316369851e-10 -8.9512229281e-11 5.381940178e-11 2.4575906838e-11 3.3731139027e-12 -7.7326848655e-14 0 0 5.3444469369e-14 5.2496770836e-13 -5.6743811322e-13 1.8199642357e-12 1.1937772946e-11 -2.04340627e-11 -3.7193092739e-10 -6.332592657e-10 -2.6833628288e-09 -2.430275518e-08 -3.1197587821e-08 --1.7740210832e-08 -2.0391444455e-08 -4.1287079037e-08 -4.1287079062e-08 -2.039144445e-08 -1.774021083e-08 -3.119758782e-08 -2.430275518e-08 -2.6833628293e-09 --6.3325926679e-10 -3.7193092792e-10 -2.0434062747e-11 1.1937772961e-11 1.8199642405e-12 5.6743811341e-13 5.2496770775e-13 5.3444469159e-14 0 -0 5.6452767119e-15 6.1729044223e-15 4.7359413942e-15 4.0797157169e-13 -6.9702848175e-14 -1.1703967669e-11 -4.025553463e-11 -3.5939167817e-11 --3.4567509024e-10 -1.0889844861e-09 1.2110385905e-09 -3.0182967736e-10 -7.390008904e-09 -4.7442370924e-09 -4.7442370937e-09 -7.3900089055e-09 -3.0182967739e-10 -1.2110385907e-09 -1.0889844861e-09 -3.4567509017e-10 -3.5939167838e-11 -4.0255534701e-11 -1.170396769e-11 -6.9702849384e-14 4.0797157254e-13 4.7359416102e-15 -6.1729045164e-15 5.6452767021e-15 0 0 -4.5101994154e-16 -1.5619324661e-15 1.2692244232e-14 3.3011393694e-14 -3.0209657976e-13 --1.2567561116e-12 -8.0400300792e-14 -4.373654662e-12 -7.8525825823e-12 1.9651367757e-10 1.7376379668e-10 -1.0744571563e-10 -2.6965662874e-10 2.4410848437e-11 -2.4410848394e-11 -2.6965662893e-10 -1.0744571564e-10 1.737637967e-10 1.9651367759e-10 -7.8525825685e-12 -4.3736546618e-12 -8.0400300902e-14 -1.2567561152e-12 --3.0209658064e-13 3.3011393698e-14 1.2692244246e-14 -1.5619324549e-15 -4.5101993907e-16 0 0 1.0111318475e-17 3.8713186199e-16 -1.61615762e-15 -8.9114707686e-15 -4.4281048929e-14 4.6281097944e-14 2.4946044747e-14 -4.4863268356e-14 7.0392136436e-12 1.9629286629e-11 -1.2700771573e-11 --1.8872177814e-11 6.6786731474e-12 6.3457923524e-12 6.3457923521e-12 6.6786731467e-12 -1.8872177817e-11 -1.2700771574e-11 1.9629286631e-11 7.0392136426e-12 --4.4863268285e-14 2.4946044832e-14 4.6281098059e-14 -4.4281048985e-14 -8.9114707947e-15 1.6161576155e-15 3.8713186183e-16 1.0111318632e-17 0 -0 5.2928101081e-18 3.0405432842e-17 -2.7194485337e-16 -1.6010239481e-15 2.763139591e-15 8.4413739172e-15 -9.7167646432e-15 5.4376135242e-14 -7.2323781963e-13 -1.4384123224e-12 -2.1018351851e-12 -7.918222413e-14 7.7766767978e-13 -1.4559847499e-15 -1.4559845874e-15 7.7766767981e-13 -7.9182224199e-14 --2.1018351853e-12 -1.4384123226e-12 7.2323781932e-13 5.4376135244e-14 -9.7167646432e-15 8.4413739369e-15 2.7631396091e-15 -1.6010239495e-15 -2.719448537e-16 -3.0405432735e-17 5.2928100992e-18 0 0 -1.6629620433e-19 -6.395920313e-18 -2.9772695882e-17 1.2495492765e-16 6.4461140354e-16 --8.4719259575e-16 -2.0180411121e-15 6.8727585395e-17 -6.6637638887e-14 -1.367625225e-13 4.5612385135e-15 4.4229975117e-14 -7.0250022969e-15 -6.4925500628e-15 --6.4925500625e-15 -7.0250022969e-15 4.4229975119e-14 4.5612385103e-15 -1.3676252251e-13 -6.6637638879e-14 6.8727582574e-17 -2.0180411164e-15 -8.4719259784e-16 -6.4461140554e-16 1.2495492813e-16 -2.9772695839e-17 -6.3959203182e-18 -1.6629620506e-19 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 - -POINT_DATA 961 -FIELD FieldData 3 -radiation%20flux%20density 1 961 double -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 6.3670769248e-07 -1.5928558811e-06 3.8601826839e-05 -0.00013660676997 -0.00033614994135 0.00076983687416 -0.0021287452393 -0.011699730527 -0.066665202341 -0.35154372707 -1.0513442603 -1.7328535824 1.9671176049 46.815739358 87.738667952 -46.815739347 1.9671175983 -1.7328535864 -1.0513442625 -0.35154372763 -0.066665202454 -0.011699730519 0.002128745232 0.00076983687618 --0.00033614993342 -0.00013660676586 3.8601827699e-05 -1.5928558916e-06 6.3670761297e-07 -2.1671147642e-06 4.1894898921e-05 -0.00015850687519 -0.00044322186669 -0.0012866211416 0.0066807365462 0.0074831058501 -0.068904790319 -0.32967518287 -1.1107705095 -0.84220288427 64.874060241 895.04695233 -2789.9263581 3919.4866787 2789.9263587 895.04695247 64.87406021 -0.84220289339 -1.1107705126 -0.32967518338 -0.068904790267 -0.0074831059019 0.0066807365892 0.0012866211594 -0.00044322185435 -0.00015850687033 4.1894899606e-05 -2.1671148181e-06 4.0640078612e-05 -0.00023907435623 --0.0004707315872 0.0035058383063 0.014107793794 0.024310053363 0.038996431767 -0.12090622323 0.31285781609 24.067294417 452.06023861 -3922.981535 9993.7594252 13126.241221 13254.023049 13126.24122 9993.759425 3922.9815346 452.06023842 24.067294394 -0.31285781355 -0.12090622302 0.038996432148 0.024310053469 0.014107793816 0.0035058383228 -0.00047073157635 -0.00023907435253 4.0640079005e-05 --0.00030582907443 -0.00047771190077 0.0061992093749 0.029250512204 0.059993108917 0.10575767262 0.27597792775 4.452105312 96.383665354 -1532.9206636 9372.300438 20562.400152 25976.717504 25199.772683 23707.873324 25199.772676 25976.717498 20562.400151 -9372.3004368 1532.920663 96.383665304 4.4521053106 0.27597792864 0.10575767292 0.059993108941 0.029250512201 0.0061992093846 --0.00047771189316 -0.00030582907218 -0.00090672833377 0.0058950609035 0.043620069053 0.11637413686 0.29729018092 0.92360151496 9.4842501825 -189.42348189 3184.0327033 15780.168831 33260.48369 37971.701207 33447.894456 32076.196122 32232.600822 32076.196124 -33447.894447 37971.701198 33260.483688 15780.168828 3184.0327021 189.42348181 9.4842501822 0.92360151555 0.29729018098 -0.11637413681 0.043620069053 0.0058950609084 -0.00090672833072 -0.0026272091511 0.015830201466 0.11402679465 0.35988861678 1.3407409976 -12.42701232 253.94146344 4974.4645079 20917.30132 41846.12747 46131.748119 36507.833282 33176.006937 35924.100232 -37569.756493 35924.100244 33176.006939 36507.833272 46131.748113 41846.127469 20917.301317 4974.4645063 253.94146336 -12.427012318 1.3407409979 0.35988861693 0.11402679467 0.015830201467 -0.0026272091547 -0.015984612337 -0.02902545573 0.10782143301 -0.66878276159 10.330152263 254.80140293 6066.0476167 24502.976051 46989.379192 50451.073457 36767.1622 30958.704211 -34394.746827 37058.757138 37998.388383 37058.75714 34394.746835 30958.704212 36767.162192 50451.073453 46989.379193 -24502.976048 6066.0476149 254.80140284 10.330152261 0.66878276175 0.10782143308 -0.029025455752 -0.015984612352 -0.072451404426 --0.27962504029 -0.35082428607 4.1267921978 188.24513554 4956.3890517 24523.130237 48965.377081 52313.584669 37353.380054 -29684.405383 33320.5908 36343.251172 35594.441648 34283.664957 35594.441639 36343.251166 33320.590808 29684.405386 -37353.380044 52313.584668 48965.377082 24523.130234 4956.38905 188.24513547 4.1267921956 -0.35082428608 -0.2796250403 --0.072451404424 -0.25291292311 -1.1512222864 -1.421603459 91.79546759 3165.3445929 21015.842217 47692.387497 53121.142957 -37105.500766 27671.026714 31562.014507 36283.263175 35988.248729 33179.501619 31699.198701 33179.501609 35988.248713 -36283.263174 31562.014521 27671.026716 37105.500756 53121.142955 47692.387498 21015.842214 3165.3445918 91.795467544 --1.4216034612 -1.1512222867 -0.25291292304 -0.87750901046 -3.5415730111 19.165710778 1535.4968089 15892.814298 42602.149964 -51973.888497 38596.857777 27565.404905 28744.819134 34777.6527 36612.08023 33932.09817 31121.738526 30098.908187 -31121.738519 33932.098158 36612.080221 34777.652706 28744.819151 27565.404908 38596.857764 51973.888492 42602.149964 -15892.814296 1535.4968083 19.165710759 -3.541573013 -0.87750901062 -2.4083450509 -5.294999542 448.57957084 9232.3445169 -33746.303398 48463.144736 38643.839451 28811.825894 29339.240299 33255.937535 34883.079045 34077.406814 32115.051039 -28649.212186 26621.784451 28649.212182 32115.051036 34077.406811 34883.079039 33255.937544 29339.240315 28811.825891 -38643.839437 48463.144731 33746.303397 9232.3445159 448.57957064 -5.294999548 -2.4083450517 -3.9024799626 51.81511031 -3562.7616368 20881.336824 41279.656437 39984.854879 30038.488217 28941.431718 32355.651596 35088.681857 33510.950216 -30812.54829 28905.089555 26792.583632 25809.114259 26792.583623 28905.089554 30812.548291 33510.950214 35088.681857 -32355.651604 28941.431729 30038.488214 39984.854869 41279.656433 20881.336823 3562.7616367 51.815110295 -3.9024799642 --2.6978561579 518.58614249 9661.2578893 29224.975851 38178.958333 32634.666177 28505.545245 29291.921344 31839.085331 -33422.280873 32092.919228 27578.815033 25234.294788 27653.296102 29630.357122 27653.29609 25234.294783 27578.815037 -32092.919233 33422.280873 31839.085333 29291.921351 28505.545249 32634.666174 38178.958327 29224.975849 9661.2578894 -518.58614269 -2.6978561609 3.4538336274 2162.7946527 13823.865812 29349.53886 33174.454902 29813.825883 27586.359271 -26756.37755 28554.741706 30335.927759 29413.474755 26646.174385 26298.573023 29029.450568 30478.332711 29029.45057 -26298.573024 26646.174387 29413.474762 30335.927762 28554.741703 26756.377547 27586.359271 29813.825884 33174.454898 -29349.538857 13823.865812 2162.7946526 3.4538336194 7.841047037 3660.7147714 14563.451808 25162.905151 28732.034599 -27025.402537 24679.323296 25567.135881 27554.105739 27624.82449 27006.596116 28940.540907 31598.974631 31481.900109 -30642.193214 31481.900111 31598.97464 28940.540912 27006.596121 27624.824491 27554.105738 25567.135884 24679.3233 -27025.402534 28732.034593 25162.905151 14563.451809 3660.7147707 7.8410470275 5.2414325852 2663.8534235 13185.324033 -23408.844481 23376.564181 19367.126412 20011.352561 26319.385841 30698.937163 28664.895136 26578.827782 29733.09009 -35028.054367 38586.863753 39719.515227 38586.863745 35028.054374 29733.090097 26578.827779 28664.895137 30698.937174 -26319.385856 20011.352563 19367.1264 23376.564176 23408.844485 13185.324033 2663.8534225 5.241432577 1.1185132244 -716.71242835 6661.0707891 16962.048594 25042.432813 32118.629493 42139.278926 55736.433873 70964.698079 84804.585834 -101302.91588 123185.65579 150464.13005 176881.57597 187659.99388 176881.57597 150464.13005 123185.65579 101302.91587 -84804.58584 70964.698092 55736.433877 42139.27892 32118.629484 25042.432813 16962.048596 6661.0707881 716.71242778 -1.1185132197 -0.27019397476 14.777308291 744.48413708 5551.9559174 15467.221279 27255.1628 39696.813681 54048.305669 -71984.873592 95660.406885 128494.78658 172163.43587 227767.3506 283396.44732 307870.46418 283396.44732 227767.3506 -172163.43587 128494.78658 95660.406886 71984.873593 54048.305665 39696.813677 27255.162799 15467.221279 5551.9559166 -744.48413669 14.777308273 -0.27019397477 -0.015549122832 -0.0750436287 2.3777917595 57.048031958 507.60949761 2516.6367501 -6563.8548576 12131.98085 19351.903405 30075.286918 48609.118305 79676.107012 126306.29546 181225.43334 208682.54817 -181225.43333 126306.29546 79676.107009 48609.118302 30075.286915 19351.903403 12131.98085 6563.854858 2516.6367501 -507.60949745 57.048031939 2.3777917604 -0.075043628645 -0.01554912295 -0.0016933053446 0.035535011852 0.09817443097 0.22201640767 -2.9866852657 38.176737867 217.08448251 756.03530958 1886.6199671 4044.6410983 8469.4938334 17510.134694 34356.535832 -59254.928708 73342.713636 59254.928705 34356.535829 17510.134693 8469.493833 4044.6410982 1886.6199672 756.03530978 -217.08448254 38.176737868 2.9866852658 0.22201640791 0.098174431228 0.03553501192 -0.0016933053579 -5.0348988599e-05 0.0014531841282 -0.001451179502 0.0053389152492 0.022647588376 0.15715081211 1.5475081322 9.9372748216 45.229445791 163.61028554 505.89220082 -1367.8207313 3200.9085255 6396.7658394 8369.3926906 6396.7658391 3200.9085252 1367.8207312 505.89220082 163.61028555 -45.229445796 9.9372748224 1.5475081322 0.15715081211 0.022647588402 0.0053389152656 0.0014511795096 0.0014531841339 -5.034898642e-05 --6.5176273396e-06 -6.1757454883e-05 -3.7769574871e-06 0.0011637783966 0.0022880059276 0.0042319792805 0.0075969484627 0.023719494791 0.24905967172 -1.7942709481 8.2131691268 27.878256231 67.64883867 85.776122801 78.713522696 85.776122804 67.648838668 27.878256227 -8.213169126 1.794270948 0.24905967169 0.023719494774 0.0075969484585 0.0042319792764 0.0022880059267 0.0011637783964 -3.7769575706e-06 --6.1757454854e-05 -6.517627332e-06 3.0159420234e-07 6.0908066537e-06 3.8766915768e-05 8.5029092236e-05 0.000142390364 0.00024113729878 -0.00063512457221 --0.0034725557092 -0.0065949813875 -0.052031254099 -0.23260433724 -0.27550953247 0.069140647768 0.29844234419 0.27654719132 0.29844234421 -0.069140647799 -0.27550953247 -0.23260433724 -0.052031254104 -0.0065949813953 -0.0034725557141 -0.0006351245733 0.00024113729876 0.0001423903639 -8.5029092073e-05 3.876691569e-05 6.0908066325e-06 3.0159419778e-07 7.4968193307e-08 6.1907041689e-07 1.406247389e-06 3.1601298335e-06 1.077612608e-05 --3.5643059239e-05 -0.00038025252539 -0.00092651705924 -0.0037671927159 -0.026670805564 -0.054202676017 -0.052001917104 -0.038978237137 -0.046455604695 --0.057541214468 -0.046455604709 -0.038978237135 -0.052001917101 -0.054202676015 -0.026670805564 -0.0037671927169 -0.00092651706051 -0.00038025252589 --3.5643059288e-05 1.0776126095e-05 3.1601298376e-06 1.4062473885e-06 6.1907041615e-07 7.4968193043e-08 1.1031909015e-08 3.4994177087e-08 4.7778868607e-08 -3.6928752493e-07 -5.0756977304e-07 -1.3269686585e-05 -5.0960987965e-05 -8.6393961865e-05 -0.00036592940495 -0.0016053967673 -0.00055485527609 0.00018595821152 --0.0065725190536 -0.011068781554 -0.010085531992 -0.011068781557 -0.0065725190555 0.00018595821162 -0.00055485527588 -0.0016053967671 -0.00036592940493 --8.6393961945e-05 -5.0960988039e-05 -1.3269686603e-05 -5.0756977386e-07 3.6928752582e-07 4.7778868973e-08 3.4994177223e-08 1.1031909006e-08 -6.7047683799e-10 --2.4640242809e-09 1.0398566266e-08 2.873257865e-08 -3.1715416494e-07 -1.4593003685e-06 -1.6658510952e-06 -5.279867837e-06 -4.7585451391e-07 0.00019246333044 -0.00035134947122 0.0001125012089 -0.00037182566479 -0.00032598829806 -9.6226662954e-06 -0.00032598829836 -0.00037182566504 0.0001125012089 0.00035134947125 -0.00019246333047 -4.7585450333e-07 -5.2798678369e-06 -1.6658510983e-06 -1.4593003721e-06 -3.1715416585e-07 2.8732578652e-08 1.0398566299e-08 -2.4640242625e-09 --6.7047683366e-10 1.3057785445e-11 4.8011764821e-10 2.2409097424e-09 -8.078170968e-09 -5.0874765211e-08 -8.1084340078e-09 1.2406554738e-08 1.2896351958e-07 -8.6684472707e-06 2.8642813311e-05 1.1382941341e-05 -2.3681479006e-05 -9.1363373775e-06 1.2326896324e-05 1.304530134e-05 1.2326896322e-05 -9.1363373812e-06 --2.3681479009e-05 1.1382941343e-05 2.8642813312e-05 8.6684472699e-06 1.289635197e-07 1.2406554865e-08 -8.1084339855e-09 -5.0874765294e-08 -8.0781710029e-09 -2.2409097358e-09 4.8011764799e-10 1.3057785698e-11 8.9624264708e-12 6.1324220719e-11 -2.9320069173e-10 -2.2186846889e-09 1.0617948816e-09 1.0467567776e-08 -4.3490979562e-09 9.1450362549e-08 8.6325411649e-07 -8.0152577467e-07 -3.8930661815e-06 -2.6311716376e-06 5.7428827485e-07 9.5099970168e-07 1.3691999009e-07 -9.50999702e-07 5.7428827476e-07 -2.6311716379e-06 -3.893066182e-06 -8.0152577528e-07 8.6325411611e-07 9.1450362566e-08 4.3490979773e-09 1.0467567814e-08 -1.0617949021e-09 -2.218684691e-09 -2.9320069248e-10 6.1324220515e-11 8.9624264549e-12 -3.3136485162e-13 -1.099368491e-11 -6.3502850803e-11 6.5478021252e-11 -9.2722322111e-10 2.6090594677e-10 -2.1584225188e-09 -1.3532337122e-09 -7.9564834605e-08 -2.6198053986e-07 -1.8787058714e-07 5.3135286877e-08 5.0890806199e-08 --1.5931883906e-08 -1.5950662523e-08 -1.5931883905e-08 5.0890806202e-08 5.3135286875e-08 -1.8787058717e-07 -2.6198053988e-07 -7.95648346e-08 -1.3532337156e-09 --2.1584225227e-09 2.6090594763e-10 9.2722322404e-10 6.5478021935e-11 -6.3502850727e-11 -1.0993684918e-11 -3.3136485311e-13 -dose 1 961 double -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 5.0238420394e-09 -7.1189471434e-09 3.1850096591e-07 -7.9313115383e-07 -3.7330671219e-06 3.0031276134e-06 -1.4510807358e-05 -0.00013640938533 -0.00071406618705 -0.0035670948333 -0.01211246934 -0.020879542399 0.008957447113 0.38756094906 0.73367618487 -0.38756094894 0.008957447028 -0.02087954245 -0.012112469366 -0.0035670948391 -0.0007140661881 -0.00013640938521 1.4510807359e-05 3.0031277509e-06 --3.7330669983e-06 -7.9313110743e-07 3.1850097312e-07 -7.1189477721e-09 5.0238414819e-09 -1.1833842339e-08 3.5143047957e-07 -8.9510143987e-07 -4.5382113068e-06 -7.5402071333e-06 7.9997349617e-05 0.00013927000143 -0.00078043797502 -0.0045397919186 -0.015615349974 -0.027432559571 0.51329276954 7.8794440149 -28.746151851 42.791014156 28.746151855 7.8794440158 0.51329276917 -0.027432559705 -0.015615350014 -0.004539791925 -0.00078043797355 -0.00013927000215 7.9997350341e-05 7.5402075012e-06 -4.5382111331e-06 -8.9510139057e-07 3.514304833e-07 -1.1833843625e-08 3.2589492687e-07 -1.5696703917e-06 --5.4018065966e-06 2.8365673717e-05 0.00017815729598 0.00042162006284 0.00071556205465 -0.0011236879627 -0.0030993363234 0.18997528579 4.0041750189 -36.720077654 114.91665479 192.2462841 220.47408531 192.2462841 114.91665478 36.720077649 4.0041750169 0.18997528552 --0.0030993363498 -0.0011236879547 0.00071556205981 0.00042162006462 0.00017815729662 2.8365674067e-05 -5.401806449e-06 -1.5696703585e-06 3.2589492797e-07 --2.2048923326e-06 -6.5929272692e-06 5.2624027177e-05 0.00036112174805 0.0010139534996 0.0018385251268 0.0035072102341 0.040509583121 0.85879737845 -14.1713078 96.40222314 267.44234463 444.53398194 542.35363388 564.42082978 542.35363379 444.53398186 267.4423446 -96.402223123 14.171307795 0.85879737802 0.040509583124 0.003507210249 0.0018385251318 0.0010139535004 0.00036112174837 5.2624027402e-05 --6.5929271789e-06 -2.2048923145e-06 -1.1742494173e-05 4.0125946849e-05 0.00050216626474 0.0017408840995 0.0045300905272 0.012294118584 0.092329617914 -1.7516996878 30.073240654 178.23474905 482.09444694 785.05584646 957.51482246 1029.3218756 1049.1967715 1029.3218755 -957.51482227 785.05584633 482.09444689 178.23474902 30.073240643 1.7516996872 0.092329617931 0.012294118593 0.0045300905282 -0.0017408840994 0.00050216626484 4.0125946935e-05 -1.1742494144e-05 -4.152439285e-05 0.00014552662726 0.0015844834674 0.0057305548412 0.019108536957 -0.13451887109 2.4020488596 46.913375663 253.01351811 665.06906831 1078.6492902 1323.3301975 1457.8933689 1561.7999328 -1610.5481834 1561.7999329 1457.8933688 1323.3301973 1078.6492901 665.06906825 253.01351806 46.913375648 2.4020488588 -0.13451887107 0.01910853696 0.005730554842 0.0015844834675 0.0001455266272 -4.1524392895e-05 -0.00019565204693 -0.00038870804799 0.0017851330294 -0.012119377889 0.11516864768 2.435047764 56.869105895 303.18771271 796.44756803 1304.4053731 1604.5162279 1770.2643571 -1935.1904353 2103.5003982 2181.3290488 2103.5003983 1935.1904353 1770.264357 1604.5162277 1304.405373 796.44756798 -303.18771267 56.869105878 2.4350477632 0.11516864766 0.012119377892 0.0017851330302 -0.0003887080485 -0.00019565204717 -0.00084520831085 --0.0038931336287 -0.0055881348437 0.041412655997 1.7680460662 46.813620689 303.76134626 843.28680597 1420.6623566 1779.1498931 -1985.4397262 2202.2428191 2442.0892612 2658.6703914 2752.9734937 2658.6703914 2442.0892612 2202.2428191 1985.4397261 -1779.149893 1420.6623566 843.28680594 303.76134621 46.813620673 1.7680460655 0.04141265598 -0.0055881348443 -0.0038931336294 --0.00084520831105 -0.0030664755259 -0.016947278772 -0.031966781412 0.80082811881 29.82302558 253.4657291 803.49526061 1431.6173744 -1835.6011308 2068.5222768 2317.5813594 2636.7189961 2950.4640604 3222.7395888 3353.8360849 3222.7395886 2950.4640603 -2636.7189962 2317.5813595 2068.5222767 1835.6011307 1431.6173743 803.49526057 253.46572906 29.823025569 0.80082811838 --0.031966781431 -0.016947278773 -0.0030664755248 -0.0095222383001 -0.05282779508 0.096154490915 14.101271145 178.98856872 672.51893892 -1329.295269 1811.5159784 2080.4770951 2345.8260868 2720.8232481 3130.9944866 3506.4824994 3893.8704536 4105.2421496 -3893.8704533 3506.4824992 3130.9944865 2720.8232481 2345.8260868 2080.477095 1811.5159782 1329.2952689 672.51893888 -178.98856869 14.101271139 0.096154490721 -0.052827795098 -0.0095222382994 -0.025860785855 -0.10066777355 3.8584847583 95.134981699 -487.52101087 1111.9911209 1656.5427551 2015.4195862 2302.5245186 2690.946811 3180.2934961 3667.8828004 4134.2158423 -4797.8312014 5228.3511737 4797.8312013 4134.2158423 3667.8828003 3180.293496 2690.946811 2302.5245185 2015.4195859 -1656.5427549 1111.9911208 487.52101083 95.134981684 3.8584847563 -0.10066777362 -0.025860785861 -0.046438749067 0.34783965131 -33.563568242 269.73101112 823.8255679 1395.856261 1815.3392036 2181.5160119 2572.703801 3063.8800534 3629.1841255 -4222.428858 4898.4905445 6129.5775275 6980.5543807 6129.5775271 4898.4905445 4222.4288581 3629.1841256 3063.8800534 -2572.703801 2181.5160117 1815.3392034 1395.8562609 823.82556783 269.7310111 33.563568239 0.34783965113 -0.046438749087 --0.046126710371 4.5617547972 107.43532586 476.34895777 1043.0458489 1527.0047809 1910.7524963 2329.0239021 2812.8412545 -3372.881677 4022.9000158 4826.8338592 5852.4089195 7947.6534212 9469.9412375 7947.6534208 5852.4089192 4826.8338594 -4022.9000162 3372.8816771 2812.8412545 2329.023902 1910.7524962 1527.0047808 1043.0458488 476.34895774 107.43532586 -4.5617547987 -0.046126710412 0.0036078405825 20.04507195 188.89181132 598.98959654 1100.0805741 1550.9342671 1963.5822995 -2412.9657303 2963.6733415 3670.9663908 4597.2062198 5963.6997579 7861.360597 10460.840126 12007.284979 10460.840126 -7861.360597 5963.6997581 4597.2062201 3670.966391 2963.6733415 2412.9657302 1963.5822993 1550.934267 1100.080574 -598.9895965 188.89181133 20.045071949 0.003607840486 0.046005328853 34.123450415 223.60016045 602.19179514 1041.5776063 -1465.2033709 1879.9522107 2372.4100236 2998.0396168 3825.3379815 4989.7109702 6776.0327852 9349.9988154 11953.488882 -13091.725807 11953.488882 9349.9988156 6776.0327854 4989.7109704 3825.3379818 2998.039617 2372.4100236 1879.9522105 -1465.2033707 1041.5776062 602.19179513 223.60016044 34.123450406 0.046005328743 0.032619173254 24.567133253 188.45865559 -530.83035089 925.57025715 1289.1407032 1674.2997688 2187.178034 2849.8584318 3620.7140739 4602.8001412 6036.1639684 -8036.5548482 10676.128663 12174.29641 10676.128663 8036.5548482 6036.1639684 4602.8001413 3620.7140742 2849.8584321 -2187.178034 1674.2997686 1289.1407029 925.5702571 530.83035091 188.45865557 24.567133242 0.032619173175 0.0083460053909 -6.3588388004 77.530494802 252.41094237 477.4464793 708.67187677 984.15828166 1352.154052 1846.6687274 2414.6866404 -3119.4094164 4108.4742213 5443.8664162 7858.9712652 9505.2793499 7858.9712651 5443.8664162 4108.4742212 3119.4094164 -2414.6866405 1846.6687275 1352.154052 984.15828155 708.67187668 477.44647929 252.41094238 77.530494788 6.3588387954 -0.0083460053528 -0.00031552164364 0.022363833806 1.3935992189 13.313863243 50.425950576 120.15007854 225.1604899 373.00305248 -576.34644516 861.09387331 1300.5652305 1968.731063 2938.3861201 4536.0514451 5560.1764392 4536.051445 2938.38612 -1968.7310629 1300.5652304 861.09387328 576.34644514 373.00305246 225.16048989 120.15007853 50.425950574 13.31386324 -1.3935992181 0.022363833771 -0.00031552164311 -3.2532390308e-05 -0.00018089101249 0.0053081222265 0.11269458427 1.1513483399 6.8484039173 -22.54231983 53.164923967 102.21420052 182.59754882 330.06168671 596.13922334 1040.8171106 1735.8154891 2155.7723225 -1735.815489 1040.8171105 596.13922331 330.06168669 182.59754881 102.21420051 53.164923967 22.54231983 6.8484039171 -1.1513483396 0.11269458423 0.0053081222334 -0.00018089101258 -3.2532390656e-05 -3.9815992997e-06 7.2761975885e-05 0.00025363342954 0.00051546029918 -0.0061878585506 0.083205612161 0.5650655347 2.3340604268 6.9434588916 17.468767983 41.341087821 93.95493881 199.26904167 -381.01475634 493.46245193 381.01475632 199.26904165 93.954938804 41.341087821 17.468767983 6.9434588918 2.3340604272 -0.56506553475 0.083205612161 0.0061878585518 0.0005154603 0.00025363343025 7.2761976028e-05 -3.9815993233e-06 -2.1152649292e-07 1.7584522419e-06 -1.2092984831e-06 2.4500310414e-05 9.7797390427e-05 0.00048062399623 0.0036888263468 0.024830214451 0.12678579595 0.5291741022 1.8468523522 -5.481956942 13.749048937 27.365598031 35.351182932 27.36559803 13.749048936 5.4819569415 1.8468523522 0.52917410224 -0.12678579595 0.024830214451 0.0036888263468 0.00048062399624 9.7797390505e-05 2.4500310459e-05 1.2092984973e-06 1.7584522524e-06 -2.1152648912e-07 --1.9097702809e-08 -1.2686983766e-07 1.4863075682e-07 4.0830135479e-06 8.1764545888e-06 1.8586260693e-05 4.047742743e-05 5.1516145665e-05 0.00050696033139 -0.0046001211105 0.021714545989 0.080266094277 0.21181667637 0.26965520466 0.24101702498 0.26965520467 0.21181667637 0.080266094268 -0.021714545986 0.0046001211101 0.00050696033113 5.1516145596e-05 4.0477427414e-05 1.8586260672e-05 8.1764545844e-06 4.083013546e-06 1.4863075612e-07 --1.2686983768e-07 -1.9097702784e-08 -7.8333634819e-11 1.2707282388e-08 9.5255196147e-08 2.6496539203e-07 5.1524943258e-07 1.3256997043e-06 -1.6122080046e-06 --1.8324351279e-05 -2.7756322657e-05 -0.00022828437341 -0.0011419462361 -0.0014119335957 0.00031526795719 0.00096987919917 0.00033675326892 0.00096987919923 -0.0003152679573 -0.0014119335956 -0.0011419462361 -0.00022828437344 -2.7756322704e-05 -1.8324351306e-05 -1.6122080094e-06 1.3256997048e-06 5.1524943255e-07 -2.6496539167e-07 9.5255195957e-08 1.2707282341e-08 -7.833364294e-11 1.9381297713e-10 1.9359416926e-09 3.6188461548e-09 9.1842944778e-09 4.6234567776e-08 --6.6484992863e-08 -1.4573738828e-06 -3.546917019e-06 -1.2130128239e-05 -9.3219481913e-05 -0.00018163948487 -0.00015753264453 -0.00015029998194 -0.00024210414756 --0.00030196326822 -0.00024210414763 -0.00015029998192 -0.00015753264452 -0.00018163948486 -9.3219481913e-05 -1.2130128245e-05 -3.5469170246e-06 -1.457373885e-06 --6.6484993038e-08 4.623456784e-08 9.1842944978e-09 3.6188461544e-09 1.9359416901e-09 1.9381297641e-10 1.7037040018e-11 3.2160919566e-11 7.2287918423e-11 -1.5035777917e-09 2.2692037538e-10 -4.3730362491e-08 -1.7481178683e-07 -2.6452602713e-07 -1.2917875599e-06 -4.0868457081e-06 1.6148359965e-06 3.1997055928e-06 --2.6465936424e-05 -4.0604441814e-05 -3.0961838108e-05 -4.0604441824e-05 -2.6465936429e-05 3.1997055933e-06 1.6148359972e-06 -4.0868457077e-06 -1.2917875597e-06 --2.6452602744e-07 -1.7481178714e-07 -4.3730362578e-08 2.269203713e-10 1.5035777953e-09 7.2287919524e-11 3.2160919887e-11 1.7037039994e-11 -1.4461699118e-12 --5.2994882575e-12 4.307790314e-11 1.2597840176e-10 -1.0570632937e-09 -5.1064400436e-09 -4.152218225e-09 -1.4674523526e-08 -1.7160465856e-08 7.0627600705e-07 -1.2372267716e-06 1.1396321454e-07 -1.2768812271e-06 -7.6168044982e-07 2.017621164e-07 -7.6168045058e-07 -1.2768812278e-06 1.1396321454e-07 1.2372267717e-06 -7.0627600718e-07 -1.7160465813e-08 -1.4674523525e-08 -4.1522182365e-09 -5.1064400581e-09 -1.0570632968e-09 1.2597840172e-10 4.3077903208e-11 -5.2994882127e-12 --1.4461699032e-12 5.0525179387e-14 1.4200376844e-12 5.7784987584e-12 -3.0071749123e-11 -1.7065850134e-10 4.3310654456e-11 2.2944010091e-10 8.1153660096e-11 -2.5491860176e-08 8.5126298001e-08 1.1113437853e-08 -1.1071221707e-07 -3.7703392606e-08 4.5265896553e-08 4.1618548084e-08 4.5265896551e-08 -3.7703392615e-08 --1.1071221708e-07 1.1113437856e-08 8.5126298005e-08 2.5491860172e-08 8.1153660615e-11 2.2944010163e-10 4.3310654772e-11 -1.7065850156e-10 -3.0071749229e-11 -5.7784987418e-12 1.420037684e-12 5.0525179873e-14 1.6814845009e-14 9.5565481307e-14 -9.1087582767e-13 -5.8310981281e-12 6.3358714346e-12 3.6086079188e-11 --1.3581150739e-11 1.4008798249e-10 2.3322110164e-09 -3.0129032899e-09 -1.2045545646e-08 -6.9936517633e-09 2.4130472991e-09 2.5016188464e-09 -5.2142013876e-11 -2.5016188471e-09 2.413047299e-09 -6.9936517643e-09 -1.2045545647e-08 -3.0129032916e-09 2.3322110154e-09 1.4008798247e-10 -1.3581150696e-11 3.6086079312e-11 -6.3358714971e-12 -5.8310981322e-12 -9.1087582898e-13 9.5565480906e-14 1.6814844977e-14 -5.4544763826e-16 -2.1523915808e-14 -1.1863221029e-13 3.1219548113e-13 -2.5241594631e-12 -6.6446154496e-13 -9.3978991603e-12 -6.3937025121e-12 -2.1834446311e-10 -6.6714774457e-10 -4.3361710158e-10 1.6003403295e-10 1.2203143564e-10 --4.4337253755e-11 -4.2590822951e-11 -4.4337253753e-11 1.2203143565e-10 1.6003403294e-10 -4.3361710164e-10 -6.671477446e-10 -2.1834446309e-10 -6.3937025354e-12 --9.3978991811e-12 -6.6446154525e-13 2.5241594713e-12 3.1219548287e-13 -1.1863221017e-13 -2.1523915827e-14 -5.4544764066e-16 -normalized%20dose 1 961 double -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 -0 0 0 3.8291753584e-13 -5.4260657014e-13 2.4276162362e-11 -6.0452503212e-11 -2.8453459568e-10 2.288985634e-10 -1.1060145906e-09 -1.0397131376e-08 -5.4426166792e-08 -2.7188417808e-07 -9.2321312579e-07 -1.5914399502e-06 6.82737146e-07 2.9539918341e-05 5.592084198e-05 -2.9539918332e-05 6.8273713952e-07 -1.5914399541e-06 -9.2321312777e-07 -2.7188417852e-07 -5.4426166872e-08 -1.0397131367e-08 1.1060145907e-09 2.2889857387e-10 --2.8453458626e-10 -6.0452499676e-11 2.4276162912e-11 -5.4260661806e-13 3.8291749335e-13 -9.0197615935e-13 2.678605183e-11 -6.8224684414e-11 -3.4590273283e-10 -5.7471503136e-10 6.0974026947e-09 1.0615167703e-08 -5.9485028376e-08 -3.4602320715e-07 -1.1902028938e-06 -2.0909113046e-06 3.9123205096e-05 0.00060057168644 -0.0021910333855 0.0032615336168 0.0021910333858 0.0006005716865 3.9123205068e-05 -2.0909113148e-06 -1.1902028969e-06 -3.4602320764e-07 -5.9485028264e-08 -1.0615167758e-08 6.0974027499e-09 5.747150594e-10 -3.4590271959e-10 -6.8224680656e-11 2.6786052115e-11 -9.0197625737e-13 2.4839730501e-11 -1.1964036961e-10 --4.1172601663e-10 2.1620333197e-09 1.3579159582e-08 3.2135905998e-08 5.4540181908e-08 -8.5647562632e-08 -2.3623159693e-07 1.4479927461e-05 0.00030519845554 -0.0027988064794 0.0087589541895 0.014653023086 0.016804547755 0.014653023085 0.0087589541893 0.002798806479 0.00030519845539 1.447992744e-05 --2.3623159894e-07 -8.5647562023e-08 5.4540182302e-08 3.2135906133e-08 1.3579159631e-08 2.1620333464e-09 -4.1172600538e-10 -1.1964036708e-10 2.4839730585e-11 --1.6805702333e-10 -5.0251330438e-10 4.0110064478e-09 2.7524720884e-08 7.7283595398e-08 1.4013249334e-07 2.673197704e-07 3.087642809e-06 6.5457586717e-05 -0.0010801379144 0.0073477831199 0.020384471244 0.03388240626 0.041338225886 0.043020188856 0.041338225879 0.033882406254 0.020384471241 -0.0073477831186 0.001080137914 6.5457586683e-05 3.0876428092e-06 2.6731977154e-07 1.4013249372e-07 7.728359546e-08 2.7524720909e-08 4.0110064649e-09 --5.025132975e-10 -1.6805702195e-10 -8.9501359675e-10 3.0584020298e-09 3.8275142245e-08 1.326902885e-07 3.4528376653e-07 9.3705844183e-07 7.03736891e-06 -0.00013351465327 0.0022921841721 0.01358506306 0.036745267112 0.059837002809 0.072981836107 0.078454973925 0.079969839661 0.078454973918 -0.072981836093 0.059837002799 0.036745267108 0.013585063057 0.0022921841713 0.00013351465323 7.0373689113e-06 9.3705844253e-07 3.4528376661e-07 -1.3269028849e-07 3.8275142253e-08 3.0584020363e-09 -8.950135946e-10 -3.1649916663e-09 1.1092048092e-08 1.2076942311e-07 4.3678322717e-07 1.4564538112e-06 -1.0253036269e-05 0.00018308430541 0.0035757402534 0.019284705237 0.050691603518 0.082214712365 0.10086430552 0.11112071836 0.11904048277 -0.12275607731 0.11904048278 0.11112071835 0.1008643055 0.082214712356 0.050691603514 0.019284705234 0.0035757402522 0.00018308430536 -1.0253036268e-05 1.4564538114e-06 4.3678322724e-07 1.2076942312e-07 1.1092048088e-08 -3.1649916697e-09 -1.4912610529e-08 -2.9627350289e-08 1.3606294454e-07 -9.237396958e-07 8.7781611025e-06 0.00018559948384 0.0043345665974 0.023108985302 0.060705280497 0.099421854284 0.1222963213 0.13492965346 -0.14750032884 0.16032892412 0.16626102845 0.16032892413 0.14750032884 0.13492965345 0.12229632128 0.099421854276 0.060705280493 -0.023108985299 0.0043345665961 0.00018559948378 8.7781611012e-06 9.2373969606e-07 1.360629446e-07 -2.9627350328e-08 -1.4912610547e-08 -6.4421827184e-08 --2.9673487425e-07 -4.2592796659e-07 3.1564750768e-06 0.0001347605752 0.0035681369234 0.023152707685 0.064275369969 0.10828296841 0.13560690954 -0.15133033275 0.16785507725 0.18613618718 0.20264401366 0.20983180167 0.20264401367 0.18613618718 0.16785507725 0.15133033274 -0.13560690953 0.10828296841 0.064275369967 0.023152707681 0.0035681369221 0.00013476057514 3.1564750755e-06 -4.2592796664e-07 -2.967348743e-07 --6.44218272e-08 -2.3372694501e-07 -1.2917225852e-06 -2.4365099601e-06 6.1039166336e-05 0.0022731127645 0.019319172786 0.061242456041 0.10911796051 -0.1399096262 0.15766288965 0.17664618758 0.20097087703 0.22488454429 0.24563740108 0.25562958373 0.24563740106 0.22488454428 -0.20097087703 0.17664618758 0.15766288964 0.13990962618 0.10911796051 0.061242456037 0.019319172783 0.0022731127637 6.1039166303e-05 --2.4365099616e-06 -1.2917225852e-06 -2.3372694493e-07 -7.2578556351e-07 -4.0265376494e-06 7.3289009551e-06 0.0010747997163 0.01364251924 0.051259433095 -0.10131896362 0.13807385446 0.15857408661 0.17879900236 0.20738130806 0.23864458399 0.26726430242 0.29679103508 0.31290179819 -0.29679103506 0.26726430241 0.23864458398 0.20738130806 0.17879900236 0.1585740866 0.13807385445 0.10131896361 0.051259433091 -0.013642519237 0.001074799716 7.3289009404e-06 -4.0265376507e-06 -7.2578556346e-07 -1.9711106195e-06 -7.6729036233e-06 0.00029409393531 0.0072511939027 -0.037158880134 0.084756028665 0.12626178627 0.15361539944 0.17549855428 0.20510412427 0.24240215739 0.27956624286 0.31511017475 -0.36569097647 0.39850523409 0.36569097646 0.31511017475 0.27956624285 0.24240215739 0.20510412427 0.17549855428 0.15361539943 -0.12626178625 0.084756028659 0.037158880131 0.0072511939016 0.00029409393516 -7.6729036283e-06 -1.9711106199e-06 -3.5395641863e-06 2.6512358689e-05 -0.0025582171463 0.020558913538 0.062792033258 0.10639224635 0.13836526091 0.16627527878 0.19609163509 0.23352911795 0.27661662758 -0.321833776 0.37336323753 0.4671967598 0.53205826562 0.46719675977 0.37336323752 0.32183377601 0.27661662759 0.23352911795 -0.19609163508 0.16627527877 0.13836526089 0.10639224633 0.062792033253 0.020558913537 0.002558217146 2.6512358676e-05 -3.5395641878e-06 --3.5157805785e-06 0.00034769721905 0.0081887268581 0.036307345589 0.079501015971 0.11638839425 0.1456376677 0.17751833885 0.21439492593 -0.25708123988 0.30662567591 0.36790156075 0.44607095219 0.60577061139 0.72179947832 0.60577061136 0.44607095217 0.36790156077 -0.30662567594 0.25708123989 0.21439492592 0.17751833885 0.14563766769 0.11638839424 0.079501015964 0.036307345587 0.0081887268586 -0.00034769721917 -3.5157805817e-06 2.7498982148e-07 0.0015278365634 0.014397344973 0.045655022292 0.083848206089 0.1182123011 0.1496643584 -0.18391638994 0.22589135647 0.2798012743 0.35039932857 0.45455354644 0.59919336726 0.79732584988 0.91519596756 0.7973258499 -0.59919336726 0.45455354646 0.35039932859 0.27980127432 0.22589135647 0.18391638993 0.14966435839 0.11821230109 0.083848206081 -0.045655022289 0.014397344974 0.0015278365634 2.7498981413e-07 3.5065288721e-06 0.0026008913984 0.017042817386 0.045899094058 0.079389106435 -0.11167788714 0.14329006811 0.18082523159 0.22851075599 0.29156748603 0.38031606374 0.51646961758 0.71265745985 0.9110956259 -0.99785211133 0.91109562593 0.71265745987 0.5164696176 0.38031606375 0.29156748605 0.22851075601 0.18082523159 0.1432900681 -0.11167788713 0.079389106426 0.045899094057 0.017042817386 0.0026008913977 3.5065288637e-06 2.4862353047e-06 0.0018725083421 0.014364329818 -0.040459920579 0.07054701946 0.098258380247 0.12761522689 0.16670683844 0.21721637736 0.27597103975 0.35082569759 0.46007677284 -0.61254668339 0.81373515489 0.92792558869 0.81373515489 0.61254668339 0.46007677284 0.35082569759 0.27597103977 0.21721637738 -0.16670683845 0.12761522688 0.09825838023 0.070547019456 0.04045992058 0.014364329816 0.0018725083412 2.4862352987e-06 6.3613302196e-07 -0.00048467106752 0.0059093788756 0.019238776879 0.036390998744 0.054015012145 0.075012602135 0.1030612614 0.14075319906 0.18404755781 -0.23776156926 0.31314814688 0.41493181855 0.59901125225 0.72449295133 0.59901125224 0.41493181855 0.31314814688 0.23776156926 -0.18404755782 0.14075319907 0.1030612614 0.075012602126 0.054015012138 0.036390998744 0.01923877688 0.0059093788745 0.00048467106713 -6.3613301906e-07 -2.4049078243e-08 1.7045727285e-06 0.00010622021446 0.0010147834398 0.0038434689199 0.0091578460555 0.017161745788 0.028430314607 -0.043929159962 0.065632625689 0.09912915839 0.15005679746 0.22396396296 0.34573810805 0.42379697535 0.34573810804 0.22396396296 -0.15005679745 0.099129158386 0.065632625687 0.04392915996 0.028430314606 0.017161745788 0.0091578460551 0.0038434689198 0.0010147834396 -0.0001062202144 1.7045727259e-06 -2.4049078203e-08 -2.4796207034e-09 -1.3787523615e-08 4.0458538843e-07 8.5895878435e-06 8.7755838212e-05 0.00052198574953 -0.0017181769438 0.0040522336329 0.0077907723777 0.013917595915 0.025157321182 0.045437766679 0.079331141408 0.13230395871 0.16431309327 -0.13230395871 0.079331141404 0.045437766677 0.02515732118 0.013917595914 0.0077907723773 0.0040522336329 0.0017181769438 0.00052198574951 -8.7755838187e-05 8.5895878412e-06 4.0458538895e-07 -1.3787523622e-08 -2.47962073e-09 -3.0347773289e-10 5.5459220832e-09 1.9331954923e-08 3.9288414333e-08 -4.7163894281e-07 6.3419366547e-06 4.3069328303e-05 0.00017790222306 0.00052923084526 0.0013314705235 0.0031510201462 0.0071612509643 0.015188298081 -0.029040967147 0.037611737121 0.029040967145 0.015188298079 0.0071612509639 0.0031510201462 0.0013314705235 0.00052923084528 0.00017790222309 -4.3069328306e-05 6.3419366547e-06 4.7163894291e-07 3.9288414395e-08 1.9331954977e-08 5.5459220941e-09 -3.0347773469e-10 -1.6122561736e-11 1.3402933334e-10 -9.2172801535e-11 1.8674151014e-09 7.4541228527e-09 3.6633189272e-08 2.811625612e-07 1.8925604064e-06 9.6636208271e-06 4.0333681206e-05 0.00014076719495 -0.00041783508067 0.0010479533189 0.0020858074921 0.0026944692431 0.002085807492 0.0010479533189 0.00041783508064 0.00014076719495 4.0333681209e-05 -9.6636208275e-06 1.8925604064e-06 2.811625612e-07 3.6633189273e-08 7.4541228586e-09 1.8674151048e-09 9.2172802619e-11 1.3402933414e-10 -1.6122561447e-11 --1.4556280318e-12 -9.670026491e-12 1.132864503e-11 3.1120753286e-10 6.2320984985e-10 1.4166458836e-09 3.0851919003e-09 3.9265636538e-09 3.8640546287e-08 -3.5062150171e-07 1.6550839729e-06 6.1178864286e-06 1.6144679536e-05 2.0553135565e-05 1.8370331825e-05 2.0553135566e-05 1.6144679536e-05 6.1178864279e-06 -1.6550839727e-06 3.5062150167e-07 3.8640546268e-08 3.9265636485e-09 3.0851918992e-09 1.416645882e-09 6.2320984952e-10 3.1120753272e-10 1.1328644977e-11 --9.6700264931e-12 -1.4556280299e-12 -5.970594255e-15 9.685498113e-13 7.2603566551e-12 2.0195677771e-11 3.9272342068e-11 1.0104490946e-10 -1.2288258897e-10 --1.3966831326e-09 -2.1155885461e-09 -1.7399848373e-08 -8.7039209307e-08 -1.0761766174e-07 2.4029742247e-08 7.3924249628e-08 2.5667353972e-08 7.3924249632e-08 -2.4029742256e-08 -1.0761766174e-07 -8.7039209305e-08 -1.7399848375e-08 -2.1155885496e-09 -1.3966831347e-09 -1.2288258934e-10 1.010449095e-10 3.9272342066e-11 -2.0195677743e-11 7.2603566406e-12 9.6854980775e-13 -5.970594874e-15 1.477243652e-14 1.4755758972e-13 2.7582866685e-13 7.0002746549e-13 3.5240014763e-12 --5.0674900679e-12 -1.110811231e-10 -2.7034622388e-10 -9.2455908813e-10 -7.1051943963e-09 -1.3844572224e-08 -1.2007147435e-08 -1.1455873467e-08 -1.8453192372e-08 --2.3015658071e-08 -1.8453192378e-08 -1.1455873466e-08 -1.2007147434e-08 -1.3844572224e-08 -7.1051943963e-09 -9.2455908852e-10 -2.7034622431e-10 -1.1108112327e-10 --5.0674900813e-12 3.5240014812e-12 7.0002746702e-13 2.7582866682e-13 1.4755758953e-13 1.4772436465e-14 1.2985641926e-15 2.4513071816e-15 5.5097893956e-15 -1.1460278775e-13 1.7295884364e-14 -3.3331308021e-12 -1.3324164678e-11 -2.0162189352e-11 -9.8460123826e-11 -3.1149962034e-10 1.2308289467e-10 2.4388174855e-10 --2.0172352314e-09 -3.0948729442e-09 -2.3599131223e-09 -3.0948729449e-09 -2.0172352319e-09 2.4388174859e-10 1.2308289472e-10 -3.1149962031e-10 -9.8460123809e-11 --2.0162189376e-11 -1.3324164702e-11 -3.3331308087e-12 1.7295884052e-14 1.1460278802e-13 5.5097894795e-15 2.4513072061e-15 1.2985641907e-15 -1.1022715577e-16 --4.039273068e-16 3.283400312e-15 9.6020811945e-15 -8.056942644e-14 -3.8921316058e-13 -3.1648231742e-13 -1.1184930466e-12 -1.3079717173e-12 5.3832398814e-11 -9.4301497326e-11 8.6862829176e-12 -9.7323962259e-11 -5.8055328701e-11 1.5378320384e-11 -5.805532876e-11 -9.732396231e-11 8.6862829176e-12 9.4301497337e-11 -5.3832398824e-11 -1.307971714e-12 -1.1184930465e-12 -3.164823183e-13 -3.8921316169e-13 -8.0569426681e-14 9.6020811914e-15 3.2834003172e-15 -4.0392730338e-16 --1.1022715511e-16 3.8510321458e-18 1.0823535585e-16 4.4043751537e-16 -2.2920704875e-15 -1.3007601014e-14 3.301140631e-15 1.7487937991e-14 6.1855367475e-15 -1.9429910825e-12 6.4883314424e-12 8.4706688708e-13 -8.4384916991e-12 -2.8737548028e-12 3.4501692987e-12 3.1721681838e-12 3.4501692985e-12 -2.8737548036e-12 --8.4384917001e-12 8.4706688732e-13 6.4883314427e-12 1.9429910822e-12 6.185536787e-15 1.7487938046e-14 3.3011406551e-15 -1.300760103e-14 -2.2920704956e-15 -4.404375141e-16 1.0823535582e-16 3.8510321828e-18 1.2816284759e-18 7.2840066082e-18 -6.942700918e-17 -4.4444664242e-16 4.8292049354e-16 2.750483079e-15 --1.0351561085e-15 1.0677514268e-14 1.7776126089e-13 -2.2964366603e-13 -9.1811219787e-13 -5.330565489e-13 1.8392260712e-13 1.9067353567e-13 -3.9742673656e-15 -1.9067353572e-13 1.8392260711e-13 -5.3305654897e-13 -9.1811219798e-13 -2.2964366616e-13 1.7776126082e-13 1.0677514267e-14 -1.0351561051e-15 2.7504830884e-15 -4.8292049831e-16 -4.4444664273e-16 -6.942700928e-17 7.2840065776e-18 1.2816284735e-18 -4.1574051082e-20 -1.6405541293e-18 -9.0421540488e-18 2.3795557941e-17 -1.923915828e-16 -5.0645298053e-17 -7.1630842696e-16 -4.8732838167e-16 -1.6642227825e-14 -5.0850040346e-14 -3.3050320996e-14 1.2197803408e-14 9.3012432049e-15 --3.3793880899e-15 -3.2462750313e-15 -3.3793880898e-15 9.3012432055e-15 1.2197803407e-14 -3.3050321001e-14 -5.0850040348e-14 -1.6642227824e-14 -4.8732838345e-16 --7.1630842855e-16 -5.0645298075e-17 1.9239158342e-16 2.3795558073e-17 -9.0421540393e-18 -1.6405541308e-18 -4.1574051264e-20 diff --git a/tests/input/validation_tests/CSD_SN_FP_2D_solver/waterphantom_2D.cfg b/tests/input/validation_tests/CSD_SN_FP_2D_solver/waterphantom_2D.cfg index d03e7b9d..e495cbfd 100644 --- a/tests/input/validation_tests/CSD_SN_FP_2D_solver/waterphantom_2D.cfg +++ b/tests/input/validation_tests/CSD_SN_FP_2D_solver/waterphantom_2D.cfg @@ -7,7 +7,7 @@ % ---- File specifications ---- % OUTPUT_DIR = ../../../result -OUTPUT_FILE = rtsn_test_waterphantom_2D_CSD_FP +OUTPUT_FILE = waterphantom_2D_CSD_FP LOG_DIR = ../../../result/logs MESH_FILE = ../../mesh_files/waterphantom2D.su2 DATA_DIR = ../../../../data/ diff --git a/tests/input/validation_tests/CSD_SN_FP_solver/waterphantom_1D.cfg b/tests/input/validation_tests/CSD_SN_FP_solver/waterphantom_1D.cfg index c068e95e..b0e0e8c8 100644 --- a/tests/input/validation_tests/CSD_SN_FP_solver/waterphantom_1D.cfg +++ b/tests/input/validation_tests/CSD_SN_FP_solver/waterphantom_1D.cfg @@ -7,7 +7,7 @@ % ---- File specifications ---- % OUTPUT_DIR = ../../../result -OUTPUT_FILE = rtsn_test_waterphantom_1D_CSD_FP +OUTPUT_FILE = waterphantom_1D_CSD_FP LOG_DIR = ../../../result/logs MESH_FILE = ../../mesh_files/waterphantom1D.su2 DATA_DIR = ../../../../data/ diff --git a/tests/input/validation_tests/MN_solver/checkerboard_MN.cfg b/tests/input/validation_tests/MN_solver/checkerboard_MN.cfg index 4977913f..dcbf25a7 100644 --- a/tests/input/validation_tests/MN_solver/checkerboard_MN.cfg +++ b/tests/input/validation_tests/MN_solver/checkerboard_MN.cfg @@ -7,7 +7,7 @@ % ---- File specifications ---- % OUTPUT_DIR = ../../../result -OUTPUT_FILE = rtsn_test_checkerboard_MN +OUTPUT_FILE = checkerboard_MN LOG_DIR = ../../../result/logs MESH_FILE = ../../mesh_files/checkerboard.su2 % diff --git a/tests/input/validation_tests/MN_solver/checkerboard_MN_neural.cfg b/tests/input/validation_tests/MN_solver/checkerboard_MN_neural.cfg index 4c8b1aaf..b1c5e4b9 100644 --- a/tests/input/validation_tests/MN_solver/checkerboard_MN_neural.cfg +++ b/tests/input/validation_tests/MN_solver/checkerboard_MN_neural.cfg @@ -7,7 +7,7 @@ % ---- File specifications ---- % OUTPUT_DIR = ../../../result -OUTPUT_FILE = rtsn_test_checkerboard_MN_neural +OUTPUT_FILE = checkerboard_MN_neural LOG_DIR = ../../../result/logs MESH_FILE = ../../mesh_files/checkerboard.su2 % diff --git a/tests/input/validation_tests/MN_solver/checkerboard_MN_reference.vtk b/tests/input/validation_tests/MN_solver/checkerboard_MN_reference.vtk index 7c57091d..07ab72ea 100644 --- a/tests/input/validation_tests/MN_solver/checkerboard_MN_reference.vtk +++ b/tests/input/validation_tests/MN_solver/checkerboard_MN_reference.vtk @@ -1767,20 +1767,31 @@ radiation%20flux%20density 1 1056 double 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 +0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 0.081870111779 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 0.081870111779 0.081870111779 +0.081870111779 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 @@ -1804,6 +1815,8 @@ radiation%20flux%20density 1 1056 double 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 @@ -1811,25 +1824,12 @@ radiation%20flux%20density 1 1056 double 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 @@ -1848,18 +1848,18 @@ radiation%20flux%20density 1 1056 double POINT_DATA 565 FIELD FieldData 1 radiation%20flux%20density 1 565 double -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.062346104343 0.059092103104 0.047703098766 0.062346104343 0.047703098766 +0.0001 0.0001 0.0001 0.0001 0.062346104343 0.059092103104 0.047703098766 0.062346104343 0.047703098766 0.062346104343 0.062346104343 0.059092103104 0.047703098766 0.062346104343 0.059092103104 0.047703098766 0.047703098766 0.062346104343 0.059092103104 0.047703098766 0.047703098766 0.062346104343 0.085653202539 0.085653202539 0.062346104343 0.047703098766 0.047703098766 0.062346104343 0.059092103104 0.047703098766 0.059092103104 0.062346104343 0.059092103104 0.062346104343 0.062346104343 0.059092103104 -0.085653202539 0.085653202539 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.047703098766 0.047703098766 +0.085653202539 0.085653202539 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.040985055889 +0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 +0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.040985055889 0.027356703926 +0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 +0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.040985055889 0.027356703926 0.027356703926 +0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 +0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 +0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 @@ -1881,20 +1881,9 @@ radiation%20flux%20density 1 565 double 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 -0.013536085754 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.013536085754 0.070188667239 0.081870111779 0.081870111779 0.071648847807 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.070188667239 0.068241759816 +0.081870111779 0.081870111779 0.081870111779 0.070188667239 0.070188667239 0.070188667239 0.070188667239 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 @@ -1903,11 +1892,22 @@ radiation%20flux%20density 1 565 double 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 +0.068241759816 0.081870111779 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.070188667239 0.070188667239 0.070188667239 0.068241759816 0.068241759816 +0.070188667239 0.070188667239 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.070188667239 0.070188667239 +0.070188667239 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 +0.068241759816 0.081870111779 0.070188667239 0.070188667239 0.070188667239 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.070188667239 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.068241759816 0.049162067067 0.049162067067 +0.049162067067 0.049162067067 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.065516089423 0.065516089423 0.065516089423 0.081870111779 0.081870111779 0.065516089423 0.065516089423 0.065516089423 +0.065516089423 0.065516089423 0.081870111779 0.081870111779 0.065516089423 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_MB.cfg b/tests/input/validation_tests/MN_solver/linesource_MN_MB.cfg index f3fde8aa..33bc0258 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_MB.cfg +++ b/tests/input/validation_tests/MN_solver/linesource_MN_MB.cfg @@ -7,7 +7,7 @@ % ---- File specifications ---- % OUTPUT_DIR = ../../../result -OUTPUT_FILE = rtsn_test_linesource_MN_MB +OUTPUT_FILE = linesource_MN_MB LOG_DIR = ../../../result/logs MESH_FILE = ../../mesh_files/linesource.su2 % diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_MB_reference.vtk b/tests/input/validation_tests/MN_solver/linesource_MN_MB_reference.vtk index 018dd05e..2415a916 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_MB_reference.vtk +++ b/tests/input/validation_tests/MN_solver/linesource_MN_MB_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -0.08266884102 0.08266884102 0.08266884102 0.08266884102 11.71936425 0.08266884102 0.08266884102 10.690245369 0.08266884102 -0.08266884102 12.624818597 11.587659453 12.354416081 10.355879598 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 11.719363475 0.08266884102 0.08266884102 10.690273292 0.08266884102 +0.08266884102 12.624793806 11.587658541 12.354440242 10.35588009 0.08266884102 0.08266884102 0.0012566370614 0.08266884102 +0.0012566370614 0.0012566370614 0.0012566370614 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.0012566370614 0.08266884102 0.0012566370614 0.0012566370614 0.08266884102 0.08266884102 12.386680048 +12.466624649 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.08266884102 0.08266884102 3.1279023943 3.2706989767 0.08266884102 0.08266884102 6.0674483534 5.2059857009 +2.6801550659 3.332908504 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 12.386654095 -12.466645295 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 0.08266884102 3.1279121956 3.2707132634 0.08266884102 0.08266884102 6.067456103 5.2059907295 -2.6801483303 3.3329102132 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 5.17078519 3.8718953757 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 5.1707818682 3.8718949535 0.08266884102 0.08266884102 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -0.08266884102 0.08266884102 0.08266884102 0.08266884102 12.458133517 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.59020940012 2.7353244411 -0.51558208924 0.08266884102 0.61400957809 3.0134767552 0.08266884102 3.3957611531 0.62437573639 0.08266884102 3.867602011 -0.08266884102 0.08266884102 0.08266884102 0.08266884102 7.8236637631 8.2573616502 7.9875730844 7.5642375365 0.08266884102 -0.08266884102 0.08266884102 0.08266884102 1.2796262934 1.1073332187 0.84051414796 1.1002921108 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 12.458134686 0.028394038381 0.028394038381 0.028394038381 0.028394038381 +0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 +0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.069100140361 0.069100140361 +0.071038526169 0.069100140361 0.069100140361 0.069100140361 0.071038526169 0.069100140361 0.069100140361 0.59020776657 2.7353240122 +0.51558321183 0.069100140361 0.61400719696 3.0134789576 0.069100140361 3.3957598782 0.62437545151 0.069100140361 3.8676000365 +0.069100140361 0.069100140361 0.071038526169 0.071038526169 7.8236647051 8.2573602241 7.9875743573 7.5642406374 0.050103959437 +0.050103959437 0.050103959437 0.050103959437 1.2796247435 1.107332213 0.84051406352 1.1002914464 diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized.cfg b/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized.cfg index ca0e0fdd..22c9f93d 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized.cfg +++ b/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized.cfg @@ -7,7 +7,7 @@ % ---- File specifications ---- % OUTPUT_DIR = ../../../result -OUTPUT_FILE = rtsn_test_linesource_MN_MB_regularized +OUTPUT_FILE = linesource_MN_MB_regularized LOG_DIR = ../../../result/logs MESH_FILE = ../../mesh_files/linesource.su2 % diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk b/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk index e3709681..96782040 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk +++ b/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -0.11046737879 0.11046737879 0.11046737879 0.11046737879 12.544935932 0.11046737879 0.11046737879 10.586563099 0.11046737879 -0.11046737879 16.931645497 11.834853478 17.294766127 9.7425720306 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 12.544927279 0.11046737879 0.11046737879 10.586595377 0.11046737879 +0.11046737879 16.931619852 11.83485416 17.294799352 9.7425659218 0.11046737879 0.11046737879 0.0012566370614 0.11046737879 +0.0012566370614 0.0012566370614 0.0012566370614 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.0012566370614 0.11046737879 0.0012566370614 0.0012566370614 0.11046737879 0.11046737879 17.190896458 +16.558005479 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.11046737879 0.11046737879 1.3342623197 1.4127050777 0.11046737879 0.11046737879 3.4519360793 2.2314017638 +1.1431732275 1.4432975056 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 17.190867746 -16.55803337 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.11046737879 1.3342683961 1.4127111651 0.11046737879 0.11046737879 3.4519413037 2.2314080198 -1.1431685685 1.4433081472 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 2.8657655202 1.6461838103 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 2.8657703138 1.6461753789 0.11046737879 0.11046737879 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -0.11046737879 0.11046737879 0.11046737879 0.11046737879 16.993828185 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.31443421501 2.0919018553 -0.28258424374 0.11046737879 0.32750800985 2.3294767018 0.11046737879 2.6401619636 0.33260750687 0.11046737879 3.199007482 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 8.4016243702 9.0725742117 8.8209792455 8.181836316 0.11046737879 -0.11046737879 0.11046737879 0.11046737879 0.77876216378 0.534655507 0.41761066509 0.66152700708 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 16.993830285 0.037660217639 0.037660217639 0.037660217639 0.037660217639 +0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 +0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.092265588505 0.092265588505 +0.094865844261 0.092265588505 0.092265588505 0.092265588505 0.094865844261 0.092265588505 0.092265588505 0.31443320228 2.0919006009 +0.28258502025 0.092265588505 0.32750699527 2.3294796617 0.092265588505 2.640159261 0.33260573326 0.092265588505 3.199005968 +0.092265588505 0.092265588505 0.094865844261 0.094865844261 8.4016234841 9.0725712445 8.8209835185 8.1818387439 0.066783082101 +0.066783082101 0.066783082101 0.066783082101 0.77876111889 0.53465425579 0.41760897881 0.6615279658 diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_Quad.cfg b/tests/input/validation_tests/MN_solver/linesource_MN_Quad.cfg index 2e12362d..247da659 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_Quad.cfg +++ b/tests/input/validation_tests/MN_solver/linesource_MN_Quad.cfg @@ -7,7 +7,7 @@ % ---- File specifications ---- % OUTPUT_DIR = ../../../result -OUTPUT_FILE = rtsn_test_linesource_MN_Quad +OUTPUT_FILE = linesource_MN_Quad LOG_DIR = ../../../result/logs MESH_FILE = ../../mesh_files/linesource.su2 % diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_Quad_reference.vtk b/tests/input/validation_tests/MN_solver/linesource_MN_Quad_reference.vtk index 5302f853..7c06a8f9 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_Quad_reference.vtk +++ b/tests/input/validation_tests/MN_solver/linesource_MN_Quad_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -0.0012566358187 0.0012566380999 0.0012566368395 0.0012566385388 11.665345125 0.0012566371556 0.0012566374341 10.591451466 0.0012566365479 -0.0012566368417 12.394699011 11.492545735 12.177055096 10.246484706 0.0012566373378 0.0012566381754 0.0012566370067 0.0012566374249 -0.0012566370483 0.0012566368578 0.0012566368824 0.0012566370386 0.0012566373129 0.001256637679 0.0012566366837 0.0012566385987 0.0012566362889 -0.0012566379058 0.0012566368447 0.0012566365405 0.0012566382679 0.0012566371998 0.0012566357493 0.0012566368209 0.0012566364372 0.0012566365378 -0.0012566367438 0.0012566363928 0.0012566372677 0.0012566371771 0.0012566372569 0.0012566368897 0.0012566363029 0.0012566371299 12.197616659 -12.28747539 0.0012566360478 0.0012566370539 0.0012566366148 0.0012566370164 0.0012566373402 0.0012566374724 0.0012566372974 0.0012566364407 -0.0012566366283 0.0012566375785 0.0012566373061 0.00125663798 0.00125663798 0.0012566373061 0.0012566375736 0.0012566373081 0.0012566380532 -0.0012566379993 0.0012566366655 0.0012566364181 3.0503114202 3.1912828184 0.0012566371397 0.0012566375072 6.0264122265 5.1230158502 -2.5942948326 3.2450610007 0.0012566378185 0.0012566362552 0.0012566374678 0.0012566361304 0.0012566374345 0.0012566374968 0.0012566363822 -0.0012566378438 0.0012566371813 0.0012566372038 0.0012566379385 0.0012566374186 0.0012566359147 0.0012566372474 0.0012566369057 0.0012566367571 -0.001256638078 0.0012566367965 5.123258239 3.7870503553 0.0012566373122 0.0012566364578 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 11.665344318 0.0012566370614 0.0012566370614 10.591478339 0.0012566370614 +0.0012566370614 12.394674075 11.492544789 12.17707979 10.246485257 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 12.197642701 +12.287454579 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 3.0503016031 3.1912684059 0.0012566370614 0.0012566370614 6.0264043319 5.1230107289 +2.5943016034 3.2450592369 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 5.1232548806 3.7870498638 0.0012566370614 0.0012566370614 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -0.0012566374399 0.001256637644 0.0012566380166 0.0012566376527 12.264211539 0.0012566375488 0.0012566373628 0.0012566368908 0.0012566368963 -0.0012566368724 0.0012566372552 0.0012566369938 0.0012566371644 0.0012566367979 0.0012566373065 0.0012566369676 0.0012566370368 0.0012566368506 -0.001256637017 0.0012566373606 0.0012566378059 0.0012566376122 0.00125663677 0.0012566367798 0.0012566369068 0.0012566370657 0.0012566367202 -0.0012566369825 0.0012566368071 0.0012566370863 0.0012566374515 0.0012566367487 0.0012566372342 0.001256637101 0.50943243465 2.6491434783 -0.43342966969 0.0012566370822 0.53292766724 2.9289257585 0.0012566371444 3.3107320829 0.54189069784 0.0012566370072 3.803130917 -0.0012566370636 0.0012566369552 0.0012566371252 0.0012566369332 7.7060985443 8.1461337707 7.8777640559 7.4487264386 0.001256636991 -0.0012566371384 0.0012566374279 0.0012566374748 1.2062877551 1.0256084796 0.75841538095 1.0256569574 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 12.264212786 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.50943079806 2.6491430624 +0.43343079812 0.0012566370614 0.5329252652 2.9289277532 0.0012566370614 3.3107307776 0.5418904037 0.0012566370614 3.8031289069 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 7.7060994707 8.1461322984 7.8777652064 7.4487294383 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 1.206286176 1.0256074554 0.75841528241 1.0256562858 diff --git a/tests/input/validation_tests/PN_solver/checkerboard_PN.cfg b/tests/input/validation_tests/PN_solver/checkerboard_PN.cfg index fed5dc26..d7fad182 100644 --- a/tests/input/validation_tests/PN_solver/checkerboard_PN.cfg +++ b/tests/input/validation_tests/PN_solver/checkerboard_PN.cfg @@ -7,7 +7,7 @@ % ---- File specifications ---- % OUTPUT_DIR = ../../../result -OUTPUT_FILE = rtsn_test_checkerboard_PN +OUTPUT_FILE = checkerboard_PN LOG_DIR = ../../../result/logs MESH_FILE = ../../mesh_files/checkerboard.su2 % diff --git a/tests/input/validation_tests/PN_solver/checkerboard_PN_reference.vtk b/tests/input/validation_tests/PN_solver/checkerboard_PN_reference.vtk index 466abcf3..4cf1e62c 100644 --- a/tests/input/validation_tests/PN_solver/checkerboard_PN_reference.vtk +++ b/tests/input/validation_tests/PN_solver/checkerboard_PN_reference.vtk @@ -1727,187 +1727,187 @@ CELL_TYPES 1056 CELL_DATA 1056 FIELD FieldData 1 radiation%20flux%20density 1 1056 double -7.4699452581e-08 7.4699452581e-08 9.3556722866e-06 9.4129888851e-06 1.0601792961e-05 1.0648506575e-05 1.1863527148e-05 1.1839024739e-05 1.0863906171e-05 -1.1746982991e-05 1.1772200774e-05 1.1826861157e-05 1.078436938e-05 1.1857247471e-05 3.7160895257e-06 3.7160886308e-06 3.7164600036e-06 3.7164568374e-06 -8.3477388309e-06 8.347734371e-06 8.3445203051e-06 8.3445186978e-06 3.6944401273e-06 3.6942456746e-06 3.694259059e-06 3.6944317336e-06 7.4699452581e-08 -7.4699452581e-08 9.3285414747e-06 9.3556722866e-06 1.0648513053e-05 1.0545750962e-05 1.1826861888e-05 1.0784029927e-05 1.1839024034e-05 1.0852690813e-05 -1.1777437064e-05 1.1838006392e-05 1.0784369515e-05 1.0852753678e-05 3.7164579115e-06 3.7160882248e-06 3.7164600036e-06 3.716090445e-06 8.347735034e-06 -8.3445166674e-06 8.3477388309e-06 8.3445202154e-06 3.6942563239e-06 3.6942529627e-06 3.6944415477e-06 3.6944332251e-06 7.4699452581e-08 7.4699452581e-08 -9.3295551294e-06 9.3731530997e-06 1.0627675943e-05 1.0695603543e-05 1.0746682237e-05 1.1803668245e-05 1.1918564102e-05 1.1794531107e-05 1.1743893618e-05 -1.1747323045e-05 1.0863839791e-05 1.1863598307e-05 3.7160852889e-06 3.7164585006e-06 3.7160894166e-06 3.7164556997e-06 8.3477387272e-06 8.3477382208e-06 -8.34452003e-06 8.3445204328e-06 3.6944391284e-06 3.694434529e-06 3.6942558134e-06 3.6942505849e-06 7.4676387434e-08 7.4676387434e-08 9.3491853313e-06 -9.3311621914e-06 1.0545713841e-05 1.0695904542e-05 1.0780321232e-05 1.0769841193e-05 0.00086536222141 1.0852645117e-05 1.0863925525e-05 0.00086527929071 -1.0863799961e-05 1.078032337e-05 3.7118063014e-06 3.7118052314e-06 3.7126171252e-06 3.7126181958e-06 8.3263280138e-06 8.3325863043e-06 8.3263263142e-06 -8.332588004e-06 3.694175464e-06 3.6945092356e-06 3.6945137963e-06 3.6941709036e-06 7.4677490414e-08 7.4677490414e-08 9.2430506344e-06 9.3357996444e-06 -1.0603054221e-05 1.0695911379e-05 0.00085942993177 0.00086527955589 1.0737926293e-05 1.0863337335e-05 1.1778540747e-05 1.0770105681e-05 1.1868679693e-05 -1.0864383505e-05 3.7052375193e-06 3.7129253633e-06 3.7052357612e-06 3.7129253633e-06 8.2900238371e-06 8.3463965772e-06 8.2900303241e-06 8.3463926512e-06 -3.6926767227e-06 3.6960088358e-06 3.6960108192e-06 3.6926754652e-06 7.4699452581e-08 7.4699452581e-08 9.3827377244e-06 9.3731529056e-06 1.0627675943e-05 -1.0601792961e-05 1.0772876578e-05 1.0863834323e-05 1.1918563397e-05 1.1747322525e-05 1.1857316181e-05 1.0863834161e-05 1.0772873842e-05 1.175853724e-05 -3.716084678e-06 3.7164545381e-06 3.7164592026e-06 3.716084678e-06 8.3477343183e-06 8.3477387272e-06 8.3445246237e-06 8.3445202246e-06 3.6944391284e-06 -3.694438913e-06 3.6942516799e-06 3.6942560511e-06 0.33396556441 0.33396556441 0.29240390883 0.29235708674 0.2875441177 0.28742380993 -0.27225876361 0.27226434721 0.27218448512 0.27218455079 0.27218448513 0.2722587636 0.27226434721 0.27218455079 0.31214987902 -0.31216273634 0.31216273634 0.31214987902 0.32569579935 0.32569257596 0.32569579936 0.32569257597 0.30928989581 0.30928805821 -0.3092880582 0.30928989581 7.4699452581e-08 7.4699452581e-08 9.2869495131e-06 9.4074651075e-06 1.0695948064e-05 1.0545757081e-05 1.0784026583e-05 -1.0773214345e-05 1.0852678705e-05 1.0863903723e-05 0.00086528266232 1.0863835646e-05 0.00086536220169 1.0784024527e-05 3.7160863491e-06 3.7164543118e-06 -3.7160874229e-06 3.71645324e-06 8.3445250421e-06 8.3477394232e-06 8.3445233428e-06 8.3477411226e-06 3.694246125e-06 3.694437057e-06 3.6942506856e-06 -3.6944324964e-06 7.4677490414e-08 7.4677490414e-08 9.1693697629e-06 9.2979878111e-06 1.0675053502e-05 1.0545722167e-05 1.0764119531e-05 1.0827188117e-05 -1.1810646428e-05 0.00086536268447 1.0852185823e-05 1.0764116358e-05 1.1866210718e-05 0.00085934680754 3.7052384689e-06 3.7129309357e-06 3.7052347901e-06 -3.7129328011e-06 8.2900253644e-06 8.2900326223e-06 8.346394038e-06 8.3463882144e-06 3.6926797925e-06 3.6960129045e-06 3.6926720005e-06 3.6960031205e-06 -7.4699452581e-08 7.4699452581e-08 9.3285414747e-06 9.373147178e-06 1.0702538013e-05 1.0627675943e-05 1.1918564102e-05 1.1826791901e-05 1.1747321794e-05 -1.0784027056e-05 1.1784057992e-05 1.1777438561e-05 1.0863838538e-05 1.1852079886e-05 3.7164534265e-06 3.716093248e-06 3.7160893712e-06 3.7164526453e-06 -8.3445187038e-06 8.3445204037e-06 8.3477341755e-06 8.3477387272e-06 3.6942538059e-06 3.6944391284e-06 3.6944399631e-06 3.6942505322e-06 7.4699452581e-08 -7.4699452581e-08 9.3285414747e-06 9.4203644323e-06 1.0648512445e-05 1.0674635552e-05 1.0784026628e-05 1.0852686694e-05 1.1826862183e-05 1.1838006392e-05 -1.1777437064e-05 1.1767503107e-05 1.0852754001e-05 1.0773214843e-05 3.7164567947e-06 3.7160882248e-06 3.7164596168e-06 3.716090445e-06 8.3477383684e-06 -8.3445202154e-06 8.3445207424e-06 8.3477392795e-06 3.6944332251e-06 3.6942472613e-06 3.6944336325e-06 3.6942529627e-06 7.4677490414e-08 7.4677490414e-08 -9.2745248761e-06 9.2892029344e-06 1.0648474278e-05 1.0692641008e-05 1.0853233725e-05 1.1738222349e-05 1.1863030339e-05 1.17428722e-05 1.0745105642e-05 -1.1635849494e-05 1.1763445503e-05 1.1793996964e-05 3.7052319674e-06 3.7052370893e-06 3.7129287046e-06 3.7129308863e-06 8.2900264152e-06 8.2900306971e-06 -8.3463858671e-06 8.34639177e-06 3.6960067627e-06 3.6926799066e-06 3.6960044551e-06 3.6926750399e-06 9.9999984397e-05 9.9999984397e-05 0.00010000001776 -9.9999984397e-05 9.9999997253e-05 9.9999997253e-05 9.9999981851e-05 0.00010000002044 0.00010000000378 0.00010000000378 0.00010000000378 9.9999991326e-05 -9.9999957487e-05 0.00010000000938 9.999999925e-05 0.00010000001843 0.00010000001843 9.8901783924e-05 9.8989009282e-05 9.8901783924e-05 9.9999998828e-05 -9.8993953575e-05 9.8579260021e-05 9.8579260021e-05 9.8579234518e-05 9.5779600127e-05 9.4354449876e-05 9.435445247e-05 9.4354442764e-05 9.4327035078e-05 -9.4327037688e-05 9.4406012518e-05 0.00010000001678 0.00010000001678 0.00010000000039 9.8884217183e-05 9.5543969773e-05 9.8567022424e-05 9.8567022424e-05 -9.8527575466e-05 9.7845116419e-05 9.9999971138e-05 9.9999985435e-05 9.7805184057e-05 0.00010000001217 9.9999939809e-05 9.9999939208e-05 9.9999939208e-05 -9.9999991359e-05 9.9999991359e-05 9.9999991695e-05 9.9999998715e-05 0.00010000000516 0.00010000000516 0.0001000000026 9.9999994706e-05 9.9999994706e-05 -9.7795927073e-05 9.7813196776e-05 9.7813195053e-05 9.8877434897e-05 9.8877434897e-05 9.8877434897e-05 9.8863470889e-05 9.8863470889e-05 9.9999991487e-05 -0.00010000003105 9.9999997916e-05 9.9999997669e-05 9.9999997669e-05 0.00010000002142 0.0001000000111 0.00010000000713 0.0001000000111 9.9999995278e-05 -9.9999995278e-05 9.9999991236e-05 0.00010000001405 9.8730748229e-05 9.9999982081e-05 0.0001000000128 9.9999989475e-05 0.00010000006011 0.00010000007836 -0.00010000006011 0.00010000007836 0.00010000006011 0.00010000002232 9.9999963857e-05 9.9999964517e-05 9.9999964517e-05 9.999996483e-05 9.999996483e-05 -9.999996483e-05 9.7921735056e-05 9.7921725421e-05 9.7827514265e-05 9.7816325409e-05 9.7900193972e-05 9.7921736599e-05 9.7816323688e-05 9.7849395747e-05 -9.9999996021e-05 9.9999996021e-05 0.00010000000529 0.00010000000529 0.00010000002557 9.9999977609e-05 0.00010000006532 9.4383407955e-05 9.4383407955e-05 -9.4383409769e-05 9.4321624372e-05 9.4321626207e-05 0.00010000001881 0.00010000002453 0.00010000001241 0.00010000002684 9.7979329493e-05 9.7979330457e-05 -9.7963279542e-05 9.7913702449e-05 9.7979331121e-05 9.7962069332e-05 9.7829814229e-05 9.7829815982e-05 0.00010000000194 9.9999995058e-05 9.9999996867e-05 -9.9999996867e-05 9.9999996867e-05 9.9274886448e-05 9.9274886448e-05 9.9274886448e-05 9.9266217106e-05 9.9266217106e-05 9.9999993645e-05 0.00010000000582 -0.00010000000582 0.0001000000003 0.00010000002679 0.00010000003678 0.00010000000492 0.00010000000252 0.00010000000252 9.9999972539e-05 0.00010000001179 -9.9999990191e-05 9.9999993866e-05 9.9999993866e-05 9.9999990569e-05 0.00010000000856 9.9999982294e-05 0.00010000001052 0.00010000000876 0.00010000000876 -0.00010000001091 9.9999991183e-05 8.0469772616e-05 0.00010000001773 8.073279606e-05 8.9179515165e-05 9.9999980362e-05 8.9285028734e-05 9.9999988104e-05 -9.9999988104e-05 0.00010000000475 9.8944990745e-05 9.8944990745e-05 9.8944990745e-05 9.8936067238e-05 9.8936067238e-05 0.00010000003764 0.00010000000257 -0.00010000000365 0.00010000000365 9.9999996024e-05 0.00010000004839 0.00010000000858 0.00010000000858 9.999999726e-05 0.00010000000411 9.9999987727e-05 -9.9999987727e-05 9.9999987727e-05 9.9999993019e-05 9.8757195334e-05 9.9999977427e-05 9.9999970858e-05 0.00010000003092 0.00010000003092 0.00010000003092 -0.00010000001318 9.9999994705e-05 0.00010000000089 0.00010000000089 0.0001000000424 0.0001000000424 0.0001000000424 9.999998921e-05 0.00010000000648 -0.00010000000831 9.9999979527e-05 9.999998515e-05 0.00010000000555 0.00010000002613 0.00010000000555 9.999998515e-05 0.00010000001242 9.9999977673e-05 -9.9999977673e-05 9.9999977673e-05 9.9999986874e-05 9.4321941556e-05 9.4321941682e-05 9.4321943436e-05 9.8696169097e-05 9.8696169097e-05 9.8696169097e-05 -9.93437977e-05 9.9343795834e-05 9.9343795834e-05 9.9999992876e-05 0.00010000000378 0.00010000000378 9.9999974595e-05 0.00010000001872 0.00010000005204 -9.9999998503e-05 0.00010000005374 0.00010000004728 0.00010000004728 0.00010000003732 0.00010000001076 0.00010000000057 0.00010000003662 0.00010000001676 -0.00010000003662 0.00010000001096 0.00010000001096 9.9999998503e-05 9.9999987487e-05 9.9999969269e-05 9.9999987487e-05 9.9999987487e-05 9.4403811867e-05 -9.9999982853e-05 0.00010000004165 9.9999985149e-05 9.9999985149e-05 9.9999953461e-05 9.934115064e-05 0.0001000000057 9.9999989419e-05 9.9999989419e-05 -0.00010000000996 0.00010000003248 9.9999998027e-05 9.99999953e-05 9.99999953e-05 9.9999972019e-05 9.9999972019e-05 9.9999991232e-05 9.9999982731e-05 -9.999998285e-05 9.9999968024e-05 9.9999968024e-05 9.9999968024e-05 0.0001000000025 0.00010000000351 0.00010000000351 0.00010000005545 9.9999973945e-05 -9.9082254092e-05 0.00010000002033 0.00010000001145 9.9999957253e-05 9.9999952759e-05 0.0001000000162 0.0001000000162 9.9999952759e-05 9.9999969915e-05 -9.9999957253e-05 0.00010000001145 9.9999999313e-05 0.00010000001145 9.9999952759e-05 8.0197359283e-05 8.1799315238e-05 8.2876484305e-05 8.28768046e-05 -8.1008064954e-05 8.1799310854e-05 8.1799848317e-05 8.1799856381e-05 8.0931452428e-05 8.0934779429e-05 8.1008066132e-05 8.1187812268e-05 8.2876491688e-05 -8.1008045389e-05 0.040051556971 8.2876811984e-05 8.1747087049e-05 8.9477842691e-05 8.28768046e-05 8.1799856381e-05 8.240649078e-05 8.2005247597e-05 -0.00010000003464 9.999996246e-05 8.1986028374e-05 8.1361329065e-05 8.138292404e-05 8.200181641e-05 9.9999978734e-05 9.999999174e-05 9.999999174e-05 -0.00010000001332 9.472600337e-05 9.4795143723e-05 9.9999949606e-05 9.9999977545e-05 0.0001000000439 9.9999998233e-05 9.9999972099e-05 9.9999972099e-05 -9.9999999386e-05 9.8764162985e-05 9.8764164906e-05 9.99999942e-05 9.4657266434e-05 9.5216045241e-05 9.5216047458e-05 9.5216045549e-05 9.9999992874e-05 -0.00010000001371 9.5180250813e-05 9.518025305e-05 9.4052073877e-05 0.00010000002281 0.00010000001012 0.0001000000053 0.0001000000053 0.00010000000617 -9.860646167e-05 9.9999953314e-05 9.99999973e-05 8.0057117414e-05 7.9564746151e-05 7.9797363019e-05 8.0057117414e-05 7.9564743357e-05 7.9564746151e-05 -8.0057117414e-05 7.968014926e-05 7.9650126854e-05 7.9975410992e-05 7.9650129649e-05 7.9975410992e-05 9.9999994059e-05 8.1121006056e-05 8.0330887959e-05 -8.1214752319e-05 8.1294957626e-05 8.03255837e-05 8.1574791892e-05 8.0404619097e-05 8.1959044847e-05 8.1419660642e-05 8.1989058089e-05 8.122073416e-05 -8.1574796117e-05 8.1574791058e-05 8.1420475072e-05 8.1222541723e-05 8.039150054e-05 8.1177265671e-05 8.0312466283e-05 8.1959040099e-05 8.1808241884e-05 -8.1419651583e-05 8.141937671e-05 8.141936765e-05 8.1446965143e-05 8.1446443871e-05 8.1808241918e-05 8.1987755261e-05 8.1087877137e-05 8.0391501679e-05 -8.1446960566e-05 8.1808233863e-05 8.2112754247e-05 8.1419661536e-05 9.9999953343e-05 0.00010000001284 0.00010000001284 9.4261121808e-05 0.00010000002577 -9.4354686949e-05 9.4420275524e-05 9.4420272985e-05 9.4420275524e-05 9.441583117e-05 9.4415833035e-05 9.8664795628e-05 0.00010000004096 0.00010000004096 -0.00010000003059 0.00010000002064 0.00010000001512 0.00010000001512 9.9999986022e-05 9.7070122452e-05 0.00010000001464 9.9999995347e-05 9.9999995347e-05 -9.9999992181e-05 0.00010000001341 9.9999989131e-05 9.5316932012e-05 9.5316924978e-05 9.5316927062e-05 9.5312979494e-05 0.00010000003908 9.7461591361e-05 -0.00010000003999 9.7378797173e-05 7.9600091271e-05 7.9558125685e-05 9.8848961538e-05 9.8848961773e-05 9.8848961773e-05 8.9605847932e-05 8.9089090864e-05 -8.8817644586e-05 8.8464313369e-05 8.8464309543e-05 8.8603774821e-05 8.9165933285e-05 8.8947994155e-05 8.9534435568e-05 8.8947990431e-05 8.9534431716e-05 -8.8969732702e-05 8.846431731e-05 8.9165937304e-05 8.8464307761e-05 8.8464311701e-05 8.9165933219e-05 8.8603765978e-05 8.8464308505e-05 8.860376986e-05 -8.9534431663e-05 8.964265196e-05 0.00010000001887 8.8233376979e-05 8.8233376979e-05 8.9525579395e-05 8.9525581309e-05 8.9011702028e-05 8.8519700209e-05 -8.8233367382e-05 8.8233382303e-05 8.9525579395e-05 8.9525575835e-05 8.9525577749e-05 8.8233362058e-05 0.00010000005365 9.9076650868e-05 9.9076650868e-05 -9.9075483024e-05 9.9076644104e-05 0.000100000013 0.00010000003294 0.00010000003117 0.00010000003117 0.00010000003117 7.9095517943e-05 9.7664460676e-05 -0.00010000000837 9.7764084305e-05 0.00010000002017 0.00010000002017 9.7793660432e-05 9.7793658674e-05 9.7793659251e-05 0.00010000012285 0.00010000011328 -0.00010000010457 0.00010000010457 0.00010000010457 0.00010000010582 0.00010000010582 0.00010000010582 9.9999992334e-05 0.00010000001015 9.9999995603e-05 -6.9590892685e-05 0.014972467299 6.9627715426e-05 6.95908888e-05 6.9627728572e-05 6.9627714714e-05 6.9590896153e-05 6.9627724306e-05 6.9590895253e-05 -6.962772514e-05 0.045757567106 6.95700539e-05 6.9570065224e-05 6.9570058233e-05 6.9590889551e-05 6.9570065103e-05 6.9627718537e-05 6.9627720213e-05 -6.9627704252e-05 0.04575756712 6.962773324e-05 6.9570069018e-05 0.014972457214 6.9627731687e-05 6.9549771763e-05 6.9452430303e-05 6.945593499e-05 -6.9505088649e-05 6.9285786572e-05 6.9319244716e-05 6.9302193937e-05 6.927468584e-05 9.9999980111e-05 8.7936470766e-05 8.7876246654e-05 0.0001000000075 -0.00010000005806 9.9999983551e-05 9.9999983613e-05 9.9999974603e-05 0.00010000000013 0.00010000000013 0.00010000000013 0.00010000000024 9.9999993604e-05 -8.4084073806e-05 9.9999968875e-05 9.9999968875e-05 9.9999968875e-05 8.4284904821e-05 0.00010000001338 0.00010000001338 9.9999992747e-05 9.9999969202e-05 -8.3388997018e-05 9.0685532501e-05 8.3436181042e-05 0.00010000000944 0.0001000000286 0.0001000000286 0.0001000000286 8.6357306542e-05 7.9271873695e-05 -9.9999992092e-05 0.0001000000606 0.00010000002175 8.4001342111e-05 8.4001342111e-05 8.3512467601e-05 8.4001336188e-05 8.3512467601e-05 8.4001342111e-05 -0.0028136918323 8.3512460054e-05 8.3512460054e-05 8.3512460054e-05 8.4001336188e-05 0.0027800096998 0.00010000002915 0.0001000000283 0.00010000002915 -9.9999978198e-05 8.5196484827e-05 8.4089054683e-05 8.4957783985e-05 0.018248581067 8.4957785346e-05 8.4957777823e-05 8.4957777097e-05 8.4957778925e-05 -8.4957786071e-05 8.4957792233e-05 0.018248581054 8.4957777096e-05 8.4957785345e-05 8.4957787173e-05 0.00010000001076 9.9999962964e-05 9.9999962964e-05 -0.00010000001368 0.00010000012066 0.00010000012066 0.00010000000018 9.9999979807e-05 9.2163212538e-05 9.2864766412e-05 0.0001000000012 9.8822299465e-05 -0.00010000002677 0.00010000001325 0.00010000001325 9.9999993962e-05 0.00010000008811 9.893226983e-05 9.9999970382e-05 0.00010000014178 9.9999976218e-05 -9.6370207469e-05 9.6438656662e-05 9.6438638413e-05 9.6438653928e-05 9.6051049514e-05 9.6051049514e-05 9.605105525e-05 9.6051051954e-05 9.6051046218e-05 -9.6438638413e-05 9.6438641147e-05 9.623199585e-05 9.2200823108e-05 9.2091788944e-05 9.2200827147e-05 9.2091785569e-05 9.209178488e-05 9.2200830429e-05 -0.003788952918 9.2091789604e-05 9.2200826494e-05 0.0037878064217 9.2200831112e-05 9.2091785528e-05 0.00010000003479 0.00010000003479 9.9999993995e-05 -9.99999634e-05 9.1676219639e-05 9.1685473875e-05 9.2117258733e-05 9.167922173e-05 8.283698148e-05 8.2912965267e-05 9.9999959577e-05 9.9999962344e-05 -9.9999962344e-05 9.9999966204e-05 9.9999995202e-05 9.9999995202e-05 9.9999995202e-05 9.9999968569e-05 9.9999968569e-05 9.5063946104e-05 9.9999975254e-05 -0.00010000000119 0.00010000000316 0.00010000000011 0.00010000000316 9.7286776234e-05 9.9999975524e-05 0.0001000000152 0.0001000000152 0.041412075506 -8.0432374316e-05 7.8849645708e-05 7.8849619615e-05 6.9517591897e-05 6.9434665803e-05 6.9434672628e-05 0.045965454946 0.015046988273 6.9517587963e-05 -0.015046988281 0.04596545495 8.4399772602e-05 0.01901147207 0.01901147207 8.4399772602e-05 0.0039991608181 9.1742239947e-05 0.0039991608131 -9.1742244912e-05 0.0030360345194 8.2432887482e-05 8.2432877732e-05 0.0030360345292 0.00010000000409 0.00010000000409 8.0359732218e-05 8.0351560311e-05 -0.046521482992 7.88496256e-05 6.9514591468e-05 6.9434705374e-05 0.046048957986 0.015047067709 0.015047068076 6.9434784319e-05 6.95142245e-05 -0.046049016457 8.4324242358e-05 8.43156338e-05 0.0028478968401 0.0028487948329 0.0044433787567 0.0044436356109 9.1730236023e-05 9.1727014581e-05 -0.0218225012 0.021821609755 8.2433557605e-05 8.2434864442e-05 9.9999999331e-05 9.9999999331e-05 8.0643013695e-05 0.04137744443 7.8757411413e-05 -7.8849644688e-05 6.9435274893e-05 0.015046987705 6.9523339506e-05 0.045966396401 6.9523335826e-05 0.045966396405 6.9435273428e-05 0.015046987705 -0.019043894229 8.4543889897e-05 8.4543889897e-05 0.019043894229 0.0040159967471 0.0040159967463 9.1784796739e-05 9.1784797539e-05 8.2445616629e-05 -0.0030451283992 0.0030451283968 8.24456142e-05 +7.4725848459e-08 7.4725848459e-08 9.3556821132e-06 9.4130228664e-06 1.0601781951e-05 1.0648488286e-05 1.1863538721e-05 1.1839052213e-05 1.0863908034e-05 +1.1746990328e-05 1.1772228919e-05 1.1826857586e-05 1.0784386677e-05 1.1857256465e-05 3.7160844621e-06 3.7160844621e-06 3.7164603116e-06 3.7164603116e-06 +8.3477006179e-06 8.3477006179e-06 8.3444757591e-06 8.3444757591e-06 3.6944450241e-06 3.6942591494e-06 3.6942591494e-06 3.6944450241e-06 7.4725848459e-08 +7.4725848459e-08 9.3285754918e-06 9.3556821132e-06 1.0648488286e-05 1.0545733317e-05 1.1826857586e-05 1.0784040776e-05 1.1839052213e-05 1.0852694941e-05 +1.1777448049e-05 1.1838026559e-05 1.0784386677e-05 1.0852753783e-05 3.7164603116e-06 3.7160844621e-06 3.7164603116e-06 3.7160844621e-06 8.3477006179e-06 +8.3444757591e-06 8.3477006179e-06 8.3444757591e-06 3.6942591494e-06 3.6942591494e-06 3.6944450241e-06 3.6944450241e-06 7.4725848459e-08 7.4725848459e-08 +9.3295874966e-06 9.3731646431e-06 1.062764904e-05 1.0695581682e-05 1.0746695619e-05 1.180368868e-05 1.191857357e-05 1.1794561493e-05 1.1743901122e-05 +1.1747336228e-05 1.0863849192e-05 1.1863597563e-05 3.7160844621e-06 3.7164603116e-06 3.7160844621e-06 3.7164603116e-06 8.3477006179e-06 8.3477006179e-06 +8.3444757591e-06 8.3444757591e-06 3.6944450241e-06 3.6944450241e-06 3.6942591494e-06 3.6942591494e-06 7.4725848459e-08 7.4725848459e-08 9.3491745691e-06 +9.331167647e-06 1.05457334e-05 1.0695922808e-05 1.0780352129e-05 1.0769865675e-05 0.00086536307613 1.085266671e-05 1.0863936291e-05 0.00086528015976 +1.0863820961e-05 1.0780352129e-05 3.7118275884e-06 3.7118275884e-06 3.7126319568e-06 3.7126319568e-06 8.32624801e-06 8.3324996845e-06 8.32624801e-06 +8.3324996845e-06 3.694169899e-06 3.6945342133e-06 3.6945342133e-06 3.694169899e-06 7.4725848459e-08 7.4725848459e-08 9.2430792749e-06 9.3357922126e-06 +1.0603085496e-05 1.069593202e-05 0.0008594314275 0.00086528042742 1.0737939279e-05 1.0863356275e-05 1.1778563289e-05 1.0770133331e-05 1.186870678e-05 +1.0864403843e-05 3.7052392485e-06 3.7129501721e-06 3.7052392485e-06 3.7129501721e-06 8.2899518888e-06 8.3463130943e-06 8.2899518888e-06 8.3463130943e-06 +3.6926941477e-06 3.6960032244e-06 3.6960032244e-06 3.6926941477e-06 7.4725848459e-08 7.4725848459e-08 9.3827601409e-06 9.3731646431e-06 1.062764904e-05 +1.0601781951e-05 1.0772886525e-05 1.0863849192e-05 1.191857357e-05 1.1747336228e-05 1.1857315307e-05 1.0863849192e-05 1.0772886525e-05 1.1758564044e-05 +3.7160844621e-06 3.7164603116e-06 3.7164603116e-06 3.7160844621e-06 8.3477006179e-06 8.3477006179e-06 8.3444757591e-06 8.3444757591e-06 3.6944450241e-06 +3.6944450241e-06 3.6942591494e-06 3.6942591494e-06 0.33396555626 0.33396555626 0.29240386735 0.29235699446 0.28754405254 0.28742374531 +0.27225875591 0.27226431279 0.27218444553 0.27218450438 0.27218444553 0.27225875591 0.27226431279 0.27218450438 0.31214990222 +0.31216277226 0.31216277226 0.31214990222 0.32569580635 0.32569258149 0.32569580635 0.32569258149 0.30928988428 0.30928806242 +0.30928806242 0.30928988428 7.4725848459e-08 7.4725848459e-08 9.2869611001e-06 9.407487551e-06 1.0695922725e-05 1.0545733317e-05 1.0784040776e-05 +1.0773232425e-05 1.0852694941e-05 1.0863908034e-05 0.00086528352651 1.0863849192e-05 0.00086536304787 1.0784040776e-05 3.7160844621e-06 3.7164603116e-06 +3.7160844621e-06 3.7164603116e-06 8.3444757591e-06 8.3477006179e-06 8.3444757591e-06 8.3477006179e-06 3.6942591494e-06 3.6944450241e-06 3.6942591494e-06 +3.6944450241e-06 7.4725848459e-08 7.4725848459e-08 9.1693989312e-06 9.297985005e-06 1.0675084494e-05 1.0545742612e-05 1.0764130185e-05 1.0827209426e-05 +1.1810666137e-05 0.00086536354368 1.0852202024e-05 1.0764130185e-05 1.1866234234e-05 0.00085934831124 3.7052392485e-06 3.7129501721e-06 3.7052392485e-06 +3.7129501721e-06 8.2899518888e-06 8.2899518888e-06 8.3463130943e-06 8.3463130943e-06 3.6926941477e-06 3.6960032244e-06 3.6926941477e-06 3.6960032244e-06 +7.4725848459e-08 7.4725848459e-08 9.3285754918e-06 9.3731646431e-06 1.0702526264e-05 1.062764904e-05 1.191857357e-05 1.1826798744e-05 1.1747336228e-05 +1.0784040776e-05 1.1784076206e-05 1.1777448049e-05 1.0863849192e-05 1.1852096176e-05 3.7164603116e-06 3.7160844621e-06 3.7160844621e-06 3.7164603116e-06 +8.3444757591e-06 8.3444757591e-06 8.3477006179e-06 8.3477006179e-06 3.6942591494e-06 3.6944450241e-06 3.6944450241e-06 3.6942591494e-06 7.4725848459e-08 +7.4725848459e-08 9.3285754918e-06 9.420381058e-06 1.0648488286e-05 1.0674613973e-05 1.0784040776e-05 1.0852694941e-05 1.1826857586e-05 1.1838026559e-05 +1.1777448049e-05 1.1767533819e-05 1.0852753783e-05 1.0773232425e-05 3.7164603116e-06 3.7160844621e-06 3.7164603116e-06 3.7160844621e-06 8.3477006179e-06 +8.3444757591e-06 8.3444757591e-06 8.3477006179e-06 3.6944450241e-06 3.6942591494e-06 3.6944450241e-06 3.6942591494e-06 7.4725848459e-08 7.4725848459e-08 +9.2745570988e-06 9.2892071334e-06 1.0648497581e-05 1.0692677915e-05 1.0853249592e-05 1.1738233988e-05 1.1863045804e-05 1.17429058e-05 1.0745140734e-05 +1.1635881221e-05 1.1763472579e-05 1.1794020922e-05 3.7052392485e-06 3.7052392485e-06 3.7129501721e-06 3.7129501721e-06 8.2899518888e-06 8.2899518888e-06 +8.3463130943e-06 8.3463130943e-06 3.6960032244e-06 3.6926941477e-06 3.6960032244e-06 3.6926941477e-06 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 9.8901770826e-05 9.8988997579e-05 9.8901770826e-05 0.0001 +9.8993981444e-05 9.8579255909e-05 9.8579255909e-05 9.8579255909e-05 9.5779585048e-05 9.4354463142e-05 9.4354463142e-05 9.4354463142e-05 9.4327056793e-05 +9.4327056793e-05 9.4406026264e-05 0.0001 0.0001 0.0001 9.888421145e-05 9.5543940602e-05 9.8567030311e-05 9.8567030311e-05 +9.8527586134e-05 9.7845130128e-05 0.0001 0.0001 9.7805212352e-05 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +9.7795912579e-05 9.7813195052e-05 9.7813195052e-05 9.8877379964e-05 9.8877379964e-05 9.8877379964e-05 9.8863467188e-05 9.8863467188e-05 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 9.8730738849e-05 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 9.7921730927e-05 9.7921730927e-05 9.7827504335e-05 9.7816314893e-05 9.7900186583e-05 9.7921730927e-05 9.7816314893e-05 9.7849393498e-05 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 9.4383423849e-05 9.4383423849e-05 +9.4383423849e-05 9.4321666612e-05 9.4321666612e-05 0.0001 0.0001 0.0001 0.0001 9.7979311164e-05 9.7979311164e-05 +9.7963253803e-05 9.7913721407e-05 9.7979311164e-05 9.7962063111e-05 9.7829782205e-05 9.7829782205e-05 0.0001 0.0001 0.0001 +0.0001 0.0001 9.9274943638e-05 9.9274943638e-05 9.9274943638e-05 9.9266221571e-05 9.9266221571e-05 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 8.046970811e-05 0.0001 8.0732740409e-05 8.9179500811e-05 0.0001 8.9285005471e-05 0.0001 +0.0001 0.0001 9.8945015814e-05 9.8945015814e-05 9.8945015814e-05 9.8936086632e-05 9.8936086632e-05 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 9.875719777e-05 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 9.432190862e-05 9.432190862e-05 9.432190862e-05 9.8696141194e-05 9.8696141194e-05 9.8696141194e-05 +9.9343777829e-05 9.9343777829e-05 9.9343777829e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 9.4403808744e-05 +0.0001 0.0001 0.0001 0.0001 0.0001 9.9341127527e-05 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +9.9082290788e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 8.0197302342e-05 8.1799278773e-05 8.287645929e-05 8.2876775622e-05 +8.1008001827e-05 8.1799278773e-05 8.1799800826e-05 8.1799800826e-05 8.0931395139e-05 8.0934718973e-05 8.1008001827e-05 8.1187817568e-05 8.287645929e-05 +8.1008001827e-05 0.040051587315 8.2876775622e-05 8.174705808e-05 8.9477885243e-05 8.2876775622e-05 8.1799800826e-05 8.2406457207e-05 8.2005214493e-05 +0.0001 0.0001 8.1986028911e-05 8.1361286784e-05 8.1382895556e-05 8.2001803369e-05 0.0001 0.0001 0.0001 +0.0001 9.4725965201e-05 9.4795160983e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 9.8764138491e-05 9.8764173766e-05 0.0001 9.4657223043e-05 9.5216042853e-05 9.5216042853e-05 9.5216042853e-05 0.0001 +0.0001 9.5180239585e-05 9.5180239585e-05 9.4052052751e-05 0.0001 0.0001 0.0001 0.0001 0.0001 +9.8606443885e-05 0.0001 0.0001 8.0057106931e-05 7.9564714702e-05 7.9797314093e-05 8.0057106931e-05 7.9564714702e-05 7.9564714702e-05 +8.0057106931e-05 7.9680111431e-05 7.9650118617e-05 7.9975382941e-05 7.9650118617e-05 7.9975382941e-05 0.0001 8.1120997109e-05 8.0330842188e-05 +8.1214708351e-05 8.1294930169e-05 8.0325551026e-05 8.1574761603e-05 8.040460329e-05 8.1959037146e-05 8.1419614417e-05 8.1989051959e-05 8.1220735761e-05 +8.1574761603e-05 8.1574761603e-05 8.1420452944e-05 8.1222497551e-05 8.0391486917e-05 8.1177230435e-05 8.0312434653e-05 8.1959037146e-05 8.1808242564e-05 +8.1419614417e-05 8.141934608e-05 8.141934608e-05 8.1446937445e-05 8.1446410267e-05 8.1808242564e-05 8.1987715547e-05 8.1087831331e-05 8.0391486917e-05 +8.1446937445e-05 8.1808242564e-05 8.2112764095e-05 8.1419614417e-05 0.0001 0.0001 0.0001 9.426114203e-05 0.0001 +9.4354672883e-05 9.4420240976e-05 9.4420240976e-05 9.4420240976e-05 9.4415826404e-05 9.4415826404e-05 9.8664793738e-05 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 9.7070095922e-05 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 9.5316967962e-05 9.5316967962e-05 9.5316967962e-05 9.5312992503e-05 0.0001 9.7461569174e-05 +0.0001 9.7378805852e-05 7.9600084105e-05 7.9558114822e-05 9.8848943554e-05 9.8848943554e-05 9.8848943554e-05 8.9605862566e-05 8.908911524e-05 +8.8817635256e-05 8.8464333007e-05 8.8464333007e-05 8.8603778872e-05 8.9165933458e-05 8.8948023815e-05 8.953441152e-05 8.8948023815e-05 8.953441152e-05 +8.8969749688e-05 8.8464333007e-05 8.9165933458e-05 8.8464333007e-05 8.8464333007e-05 8.9165933458e-05 8.8603778872e-05 8.8464333007e-05 8.8603778872e-05 +8.953441152e-05 8.964267886e-05 0.0001 8.8233393496e-05 8.8233393496e-05 8.9525589781e-05 8.9525589781e-05 8.9011702114e-05 8.8519677505e-05 +8.8233393496e-05 8.8233393496e-05 8.9525589781e-05 8.9525589781e-05 8.9525589781e-05 8.8233393496e-05 0.0001 9.9076674315e-05 9.9076674315e-05 +9.9075504845e-05 9.9076674315e-05 0.0001 0.0001 0.0001 0.0001 0.0001 7.9095492913e-05 9.7664442801e-05 +0.0001 9.7764080861e-05 0.0001 0.0001 9.7793670576e-05 9.7793670576e-05 9.7793670576e-05 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +6.9590870014e-05 0.014972473519 6.9627711755e-05 6.9590870014e-05 6.9627711755e-05 6.9627711755e-05 6.9590870014e-05 6.9627711755e-05 6.9590870014e-05 +6.9627711755e-05 0.045757591953 6.9570050071e-05 6.9570050071e-05 6.9570050071e-05 6.9590870014e-05 6.9570050071e-05 6.9627711755e-05 6.9627711755e-05 +6.9627711755e-05 0.045757591953 6.9627711755e-05 6.9570050071e-05 0.014972463422 6.9627711755e-05 6.9549748932e-05 6.9452409405e-05 6.9455897464e-05 +6.9505087623e-05 6.9285730468e-05 6.9319190727e-05 6.9302169038e-05 6.9274650406e-05 0.0001 8.7936462608e-05 8.7876268974e-05 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +8.4084065623e-05 0.0001 0.0001 0.0001 8.428484702e-05 0.0001 0.0001 0.0001 0.0001 +8.3389018466e-05 9.0685554795e-05 8.3436137948e-05 0.0001 0.0001 0.0001 0.0001 8.635733978e-05 7.9271865489e-05 +0.0001 0.0001 0.0001 8.4001363587e-05 8.4001363587e-05 8.3512460439e-05 8.4001363587e-05 8.3512460439e-05 8.4001363587e-05 +0.0028136931554 8.3512460439e-05 8.3512460439e-05 8.3512460439e-05 8.4001363587e-05 0.0027800110266 0.0001 0.0001 0.0001 +0.0001 8.5196546545e-05 8.4089097351e-05 8.4957802172e-05 0.01824857685 8.4957802172e-05 8.4957802172e-05 8.4957802172e-05 8.4957802172e-05 +8.4957802172e-05 8.4957802172e-05 0.01824857685 8.4957802172e-05 8.4957802172e-05 8.4957802172e-05 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 9.2163204519e-05 9.2864790205e-05 0.0001 9.8822280863e-05 +0.0001 0.0001 0.0001 0.0001 0.0001 9.8932239698e-05 0.0001 0.0001 0.0001 +9.6370205544e-05 9.6438672918e-05 9.6438672918e-05 9.6438672918e-05 9.6051004839e-05 9.6051004839e-05 9.6051004839e-05 9.6051004839e-05 9.6051004839e-05 +9.6438672918e-05 9.6438672918e-05 9.6232040074e-05 9.2200824749e-05 9.2091804416e-05 9.2200824749e-05 9.2091804416e-05 9.2091804416e-05 9.2200824749e-05 +0.0037889550782 9.2091804416e-05 9.2200824749e-05 0.0037878084792 9.2200824749e-05 9.2091804416e-05 0.0001 0.0001 0.0001 +0.0001 9.1676266609e-05 9.1685445642e-05 9.2117264974e-05 9.1679234322e-05 8.2837022519e-05 8.2912971268e-05 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 9.5063906691e-05 0.0001 +0.0001 0.0001 0.0001 0.0001 9.7286746178e-05 0.0001 0.0001 0.0001 0.041412109966 +8.0432293526e-05 7.8849601182e-05 7.8849601182e-05 6.9517591765e-05 6.94346754e-05 6.94346754e-05 0.04596549177 0.015046987545 6.9517591765e-05 +0.015046987545 0.04596549177 8.4399787238e-05 0.019011464394 0.019011464394 8.4399787238e-05 0.0039991646964 9.1742226164e-05 0.0039991646964 +9.1742226164e-05 0.0030360316328 8.2432951143e-05 8.2432951143e-05 0.0030360316328 0.0001 0.0001 8.0359710947e-05 8.0351486551e-05 +0.04652150372 7.8849601266e-05 6.9514570915e-05 6.9434703657e-05 0.046048988833 0.01504706698 0.015047067325 6.9434762499e-05 6.9514225015e-05 +0.046049047674 8.4324282779e-05 8.4315655243e-05 0.0028478941611 0.002848792134 0.0044433766778 0.0044436400857 9.1730250089e-05 9.1727025231e-05 +0.021822537308 0.021821634757 8.2433569781e-05 8.2434858166e-05 0.0001 0.0001 8.0643007065e-05 0.041377499545 7.8757365853e-05 +7.8849591971e-05 6.9435255416e-05 0.015046986962 6.9523327255e-05 0.045966427223 6.9523327255e-05 0.045966427223 6.9435255416e-05 0.015046986962 +0.019043891954 8.4543918061e-05 8.4543918061e-05 0.019043891954 0.004016000898 0.004016000898 9.178477396e-05 9.178477396e-05 8.2445658929e-05 +0.003045125506 0.003045125506 8.2445658929e-05 POINT_DATA 565 FIELD FieldData 1 radiation%20flux%20density 1 565 double -0.00010000010519 0.00010000010519 0.00010000011806 0.00010000010519 6.8055096337e-05 6.2922141196e-05 4.0213599393e-05 6.7836311563e-05 4.0214015441e-05 -6.783631154e-05 6.8055154405e-05 6.2922141412e-05 4.0177464536e-05 6.7867009579e-05 6.2911505844e-05 4.0180536529e-05 4.0178777199e-05 6.7866951665e-05 -6.2536668968e-05 4.0150823959e-05 4.009402426e-05 6.7808793752e-05 0.083488922091 0.083499251078 6.7623685689e-05 4.0125910934e-05 4.017729578e-05 -6.7866951546e-05 6.2911505627e-05 4.017980503e-05 6.2761081942e-05 6.8116840536e-05 6.2922140266e-05 6.6887837564e-05 6.8057877774e-05 6.263546032e-05 -0.083536008364 0.083525671274 0.00010000005555 9.9999997435e-05 9.9999989783e-05 9.9999997138e-05 0.00010000000461 0.00010000002521 9.9999995091e-05 -9.9999994578e-05 0.00010000000632 0.00010000005376 0.00010000005338 9.9999995722e-05 9.9999987879e-05 0.00010000000473 9.9999994107e-05 9.9999981079e-05 -0.00010000004063 0.00010000003385 9.9999979664e-05 0.00010000000124 0.00010000001364 0.0001000000007 0.00010000002278 9.9999997457e-05 9.9999994578e-05 -0.00010000000632 0.00010000005376 0.00010000005338 9.9999995722e-05 9.9999987879e-05 0.00010000000473 9.9999994107e-05 9.9999981079e-05 0.00010000004063 -0.00010000005555 9.9999997435e-05 9.9999989783e-05 9.9999997138e-05 0.00010000000461 0.00010000002521 9.9999995175e-05 9.9999997404e-05 0.00010000000072 -9.9999998159e-05 0.0001000000276 0.00010000004972 0.00010000001714 0.00010000001229 9.9999994339e-05 9.9999981079e-05 0.00010000004063 0.00010000005555 -9.9999997215e-05 9.999998827e-05 0.00010000001855 0.00010000000005 9.9999969459e-05 0.00010000004774 0.00010000006597 9.9999994306e-05 9.99999875e-05 -0.00010000001362 0.00010000005682 0.00010000002567 9.9999987609e-05 0.00010000001156 9.9999996079e-05 0.00010000003902 4.6252988791e-05 4.6076397909e-05 -4.6214825973e-05 4.290402349e-05 4.2982131269e-05 4.5972684097e-05 4.6118583432e-05 4.6244415751e-05 4.2745987756e-05 4.5736582323e-05 4.6355239869e-05 -4.6481114153e-05 4.6017712799e-05 4.5841080018e-05 4.6450030097e-05 4.3139186204e-05 4.3226380351e-05 4.3226377405e-05 4.2982089803e-05 4.5972818054e-05 -4.5889862954e-05 4.5838846787e-05 4.6449976916e-05 4.3139185143e-05 4.3237979383e-05 4.3237974658e-05 4.3474599526e-05 4.3474637078e-05 4.2745988962e-05 -4.5736674379e-05 4.6125139842e-05 4.6074348662e-05 4.6219511527e-05 4.3307350821e-05 4.2517190994e-05 4.2503941773e-05 4.3255311168e-05 4.6373521716e-05 -4.6006186833e-05 0.0031174386817 0.16347057242 0.16347057242 0.0031232596988 4.6061584617e-05 4.6062988556e-05 4.2923709134e-05 4.3474251483e-05 -4.3474977062e-05 4.2745988859e-05 4.5736674379e-05 4.6125139167e-05 4.6074164866e-05 4.6214772792e-05 4.2904023841e-05 4.3474653078e-05 4.3474573426e-05 -4.2669022554e-05 4.559753924e-05 4.6260210022e-05 4.651043535e-05 4.6069479296e-05 4.5841965147e-05 4.6450030097e-05 4.3139185774e-05 4.3164869179e-05 -4.5300590533e-05 4.6090851445e-05 4.6216772228e-05 4.649382594e-05 4.6201528752e-05 4.5610748319e-05 4.2678216391e-05 4.2634954321e-05 0.0031735791485 -0.16386999915 0.16386999915 0.0031735791355 4.2634975802e-05 4.3036905843e-05 4.3036905643e-05 4.2635139128e-05 4.2635328743e-05 4.3002899456e-05 -0.0031422754882 0.16390145196 0.16390192749 0.0031424228623 4.2999173187e-05 0.16254766526 0.16254734805 0.003175095026 4.2636852295e-05 -4.3322010434e-05 4.3321968768e-05 4.2402486428e-05 0.0031748599303 4.8119435642e-06 4.8047801764e-06 5.8006904286e-06 5.7929074447e-06 7.4813813773e-06 -7.8781166854e-06 7.8849032929e-06 7.87181937e-06 4.7998794189e-06 4.8047804245e-06 5.8006929566e-06 5.7835666646e-06 7.8740609717e-06 7.4791515373e-06 -7.4783168352e-06 7.8849035963e-06 4.8000241718e-06 4.8072775933e-06 5.7972207114e-06 5.8085419315e-06 7.8849041405e-06 7.8604845992e-06 7.4730764925e-06 -7.8833521327e-06 4.7964005667e-06 4.7958463708e-06 5.803030468e-06 5.7779977309e-06 7.4746967889e-06 0.00034927624551 7.4752860682e-06 7.4730543135e-06 -4.7689904367e-06 4.8005420829e-06 5.7992833452e-06 5.7838059569e-06 0.0003480929633 7.4578413874e-06 7.8670313523e-06 7.4779639924e-06 4.8076215477e-06 -4.8072769424e-06 5.7929069868e-06 5.7972215924e-06 7.8748971709e-06 7.4783143709e-06 7.884903663e-06 7.4783137969e-06 0.31943601558 0.31942473222 -0.31524600191 0.31522595061 0.2983194659 0.29831475238 0.29831475239 0.2983194659 4.8111551671e-06 4.7949623594e-06 5.7835668866e-06 -5.8085996708e-06 7.4805441101e-06 7.4783127755e-06 7.4791495576e-06 0.00034928069839 4.7584651414e-06 4.7951412544e-06 5.7958062114e-06 5.7742502398e-06 -7.4558488845e-06 7.8864378402e-06 7.4608496892e-06 0.0003480929644 4.7998803009e-06 4.8072750083e-06 5.8096973522e-06 5.7972206978e-06 7.4805451803e-06 -7.8789529324e-06 7.8718192441e-06 7.8849034356e-06 4.7998800011e-06 4.8140224853e-06 5.8006927782e-06 5.8050459867e-06 7.8740609717e-06 7.4769197103e-06 -7.8705993e-06 7.4783143542e-06 4.7734865751e-06 4.7938850205e-06 5.7913764329e-06 5.7987354306e-06 7.4707332956e-06 7.8124028827e-06 7.8628828774e-06 -7.8584380997e-06 0.00010000000922 9.3313343909e-05 9.3284487322e-05 0.00010000000285 9.3752761973e-05 9.8901774347e-05 9.9794012838e-05 9.9999984234e-05 -9.3772591437e-05 9.7892354818e-05 9.9777477155e-05 0.00010000000215 0.00010000001212 0.00010000001117 0.00010000000215 0.00010000001395 0.00010000001212 -9.829104107e-05 9.9999997681e-05 0.00010000001263 0.00010000000493 0.00010000000493 0.00010000000325 0.00010000000493 9.10552826e-05 9.0734228292e-05 -9.4554222231e-05 9.405960752e-05 9.4545798441e-05 9.4554221959e-05 9.4545799058e-05 9.4554222851e-05 9.3697187205e-05 9.3440864699e-05 9.3439002434e-05 -9.3439001726e-05 9.3810698691e-05 9.364204119e-05 9.3646296776e-05 9.3642041218e-05 9.3431821361e-05 9.3435718099e-05 9.3431820656e-05 9.3540242534e-05 -9.3540242105e-05 9.3540242039e-05 9.3723346608e-05 9.3723346048e-05 9.3712757708e-05 9.3723346701e-05 9.3855072529e-05 9.3997243836e-05 9.3991539971e-05 -9.3855072645e-05 0.00010000001464 9.9999990292e-05 9.0745170636e-05 9.0734704602e-05 9.0745172791e-05 9.0745173933e-05 0.012046496915 9.9721283113e-05 -9.3512985323e-05 0.00010000000249 9.8927367317e-05 9.9794033015e-05 9.7849108648e-05 9.7849117094e-05 9.7849117031e-05 9.7835059929e-05 9.7835059867e-05 -9.7619405441e-05 9.9832322716e-05 9.9814038074e-05 9.851677052e-05 9.8737645541e-05 9.8516770147e-05 9.8956227252e-05 9.8956227599e-05 9.8956227426e-05 -9.8954941231e-05 9.8757352405e-05 9.8757352789e-05 9.8757352687e-05 0.00010000001136 9.9317697487e-05 9.9323821314e-05 9.9999999984e-05 9.9763212466e-05 -9.9763211715e-05 9.9763211715e-05 9.322419764e-05 9.3797802645e-05 9.3211484275e-05 9.3224196936e-05 9.3211484362e-05 9.322419764e-05 9.9346934009e-05 -9.7969334295e-05 9.9999989345e-05 9.9638301375e-05 9.9663220879e-05 9.9652292499e-05 9.966322115e-05 9.9663220952e-05 9.9660344187e-05 9.9660550625e-05 -9.9638301667e-05 9.9999991194e-05 9.980814686e-05 9.9632280267e-05 9.980814676e-05 9.963228056e-05 9.980814629e-05 9.9632275264e-05 9.0542451893e-05 -9.0632223477e-05 9.976116332e-05 9.976116332e-05 9.975459938e-05 9.9688045511e-05 9.9689662364e-05 9.9692777287e-05 9.9653618181e-05 9.9653618438e-05 -9.9700022669e-05 9.9688045757e-05 9.9653619781e-05 9.9782684958e-05 9.9782684958e-05 9.9782684958e-05 9.979286323e-05 9.9843108446e-05 9.9843108446e-05 -9.9855579183e-05 0.00010000000709 9.9845919854e-05 9.9846098128e-05 9.9846103089e-05 9.9846103089e-05 0.00010000000215 0.00010000000786 0.00010000000786 -0.00010000000767 9.2149944404e-05 9.9687603568e-05 9.9687603322e-05 9.9685134533e-05 9.2270919855e-05 9.2559325815e-05 9.2243843959e-05 9.2164569002e-05 -9.2177742291e-05 9.2230670695e-05 9.2174861763e-05 9.2608857544e-05 9.2637330913e-05 9.2649401025e-05 9.2636030045e-05 0.00010000000192 0.00010000000371 -8.9923135927e-05 9.0370579751e-05 9.0370576207e-05 8.9923137017e-05 9.0356957892e-05 8.9908904311e-05 8.9908905626e-05 9.0356961659e-05 8.9908904946e-05 -0.00115569031 9.0370575533e-05 0.0011609883498 8.8106994947e-05 9.9999994693e-05 9.0019960272e-05 8.9979733313e-05 9.9999997757e-05 9.8580108544e-05 -9.8580108083e-05 9.8580108846e-05 9.8564560259e-05 9.8564560565e-05 9.999998737e-05 9.788418955e-05 9.9999988079e-05 9.9999993175e-05 9.9999993175e-05 -9.9999992157e-05 0.00010000000269 0.00010000000269 9.9999993029e-05 9.8472390909e-05 9.8472390932e-05 9.8472390533e-05 9.8520432404e-05 9.849794245e-05 -9.8497952199e-05 9.849794245e-05 9.8497952087e-05 9.8497942337e-05 0.0001000000007 9.8500439401e-05 0.0001000000231 0.00010000005575 0.00010000005405 -0.00010000005405 0.00010000005405 0.00010000001105 7.9951960567e-05 0.017116020731 8.0075714621e-05 8.0075715523e-05 7.9951960541e-05 7.9951961352e-05 -7.9951961457e-05 7.995196197e-05 8.0075715183e-05 8.0075715329e-05 8.0075715056e-05 0.017109515615 7.9846483116e-05 7.9512555369e-05 7.9602318205e-05 -7.9545234048e-05 0.00010000000698 0.0001000000263 0.0001000000263 9.9999978212e-05 9.9999979214e-05 0.00010000000862 0.00010000000862 0.00010000001356 -0.00010000003778 9.9999985061e-05 8.9733087015e-05 9.9999981847e-05 0.00010000003871 9.716249207e-05 9.7390282675e-05 9.9999993847e-05 9.9999993847e-05 -9.9999993669e-05 0.012519048758 9.038806211e-05 0.0012313700202 0.0012313700174 0.017411822127 7.9505431546e-05 7.9505431167e-05 0.017411822127 -0.0011068128308 0.0011069749515 8.7862550389e-05 0.01652543472 0.018042203162 7.9487743722e-05 0.018041782283 7.9485027172e-05 9.0471483775e-05 -0.012528175197 0.0012357008666 0.0012356854949 7.954658324e-05 0.017423680697 7.9546582471e-05 0.017423680696 +0.0001 0.0001 0.0001 0.0001 6.8055100252e-05 6.2922134305e-05 4.0213601425e-05 6.7836311085e-05 4.0214015442e-05 +6.7836311085e-05 6.8055158072e-05 6.2922134305e-05 4.0177472944e-05 6.7867007177e-05 6.2911501924e-05 4.0180540046e-05 4.0178777584e-05 6.7866949357e-05 +6.2536663574e-05 4.0150818436e-05 4.009401852e-05 6.7808796768e-05 0.08348892412 0.083499253104 6.7623676931e-05 4.0125905197e-05 4.0177296017e-05 +6.7866949357e-05 6.2911501924e-05 4.0179806608e-05 6.2761070073e-05 6.8116843412e-05 6.2922134305e-05 6.6887844204e-05 6.8057875843e-05 6.263545604e-05 +0.083536006797 0.083525669655 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 4.6252991735e-05 4.6076390268e-05 +4.621482383e-05 4.2904024274e-05 4.2982127356e-05 4.5972681409e-05 4.6118577685e-05 4.6244414647e-05 4.2745987657e-05 4.5736582496e-05 4.6355230872e-05 +4.648110862e-05 4.6017718858e-05 4.5841076605e-05 4.6450023328e-05 4.3139182986e-05 4.3226377225e-05 4.3226377225e-05 4.298208657e-05 4.5972809204e-05 +4.5889860688e-05 4.5838845821e-05 4.6449970606e-05 4.3139182986e-05 4.3237974282e-05 4.3237974282e-05 4.3474591137e-05 4.3474631923e-05 4.2745987657e-05 +4.5736669505e-05 4.6125133564e-05 4.6074343961e-05 4.621952268e-05 4.3307364473e-05 4.2517188335e-05 4.2503948867e-05 4.3255294371e-05 4.6373516124e-05 +4.6006179121e-05 0.0031174401843 0.16347056812 0.16347056812 0.0031232612009 4.6061581642e-05 4.606298235e-05 4.2923700096e-05 4.3474249699e-05 +4.3474975807e-05 4.2745987657e-05 4.5736669505e-05 4.6125133564e-05 4.6074159483e-05 4.6214771108e-05 4.2904024274e-05 4.3474651511e-05 4.347457157e-05 +4.2669025212e-05 4.559754061e-05 4.6260207566e-05 4.651043092e-05 4.6069484662e-05 4.5841958466e-05 4.6450023328e-05 4.3139182986e-05 4.3164872952e-05 +4.530059676e-05 4.6090847069e-05 4.6216771893e-05 4.6493832181e-05 4.6201527626e-05 4.5610750896e-05 4.2678208427e-05 4.2634966289e-05 0.0031735786872 +0.16387000309 0.16387000309 0.0031735786676 4.2634985855e-05 4.303690061e-05 4.303690061e-05 4.2635134471e-05 4.2635318223e-05 4.3002906726e-05 +0.0031422750612 0.16390144797 0.16390192165 0.0031424224266 4.2999172015e-05 0.16254765878 0.16254734533 0.0031750945583 4.2636857516e-05 +4.332201086e-05 4.3321970074e-05 4.2402489006e-05 0.0031748594637 4.8119421437e-06 4.8047793813e-06 5.8006824475e-06 5.7928980583e-06 7.4813801327e-06 +7.8781174022e-06 7.8849031504e-06 7.8718132328e-06 4.799878233e-06 4.8047793813e-06 5.8006824475e-06 5.7835566193e-06 7.8740587959e-06 7.4791492825e-06 +7.4783110176e-06 7.8849031504e-06 4.8000228051e-06 4.8072768856e-06 5.7972092398e-06 5.8085313468e-06 7.8849031504e-06 7.8604818346e-06 7.4730728364e-06 +7.8833530019e-06 4.7963967804e-06 4.7958403752e-06 5.8030167439e-06 5.7779851759e-06 7.4746935641e-06 0.00034927658035 7.4752837176e-06 7.4730528673e-06 +4.7689876066e-06 4.8005386346e-06 5.7992700372e-06 5.7837956166e-06 0.00034809342428 7.4578361677e-06 7.8670310709e-06 7.4779607331e-06 4.8076188972e-06 +4.8072768856e-06 5.7928980583e-06 5.7972092398e-06 7.8748970608e-06 7.4783110176e-06 7.8849031504e-06 7.4783110176e-06 0.31943601958 0.31942472491 +0.31524599056 0.31522593935 0.29831945601 0.29831474951 0.29831474951 0.29831945601 4.8111513843e-06 4.7949620937e-06 5.7835566193e-06 +5.8085881873e-06 7.4805418678e-06 7.4783110176e-06 7.4791492825e-06 0.00034928103607 4.7584618433e-06 4.795137605e-06 5.7957954496e-06 5.7742384692e-06 +7.4558449792e-06 7.8864333725e-06 7.4608434987e-06 0.00034809342428 4.799878233e-06 4.8072768856e-06 5.8096887771e-06 5.7972092398e-06 7.4805418678e-06 +7.8789556672e-06 7.8718132328e-06 7.8849031504e-06 4.799878233e-06 4.8140220877e-06 5.8006824475e-06 5.8050367286e-06 7.8740587959e-06 7.4769184323e-06 +7.8705994717e-06 7.4783110176e-06 4.7734844386e-06 4.7938836233e-06 5.7913642974e-06 5.7987276864e-06 7.4707313634e-06 7.8124000987e-06 7.8628807335e-06 +7.8584386426e-06 0.0001 9.331333809e-05 9.3284477184e-05 0.0001 9.3752756333e-05 9.8901769222e-05 9.9794023082e-05 0.0001 +9.3772596914e-05 9.789234797e-05 9.9777465623e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +9.8291033346e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 9.1055268641e-05 9.0734232664e-05 +9.4554210993e-05 9.4059605133e-05 9.4545787913e-05 9.4554210993e-05 9.4545787913e-05 9.4554210993e-05 9.3697168689e-05 9.3440861802e-05 9.3438996895e-05 +9.3438996895e-05 9.3810706421e-05 9.3642033177e-05 9.3646290852e-05 9.3642033177e-05 9.3431826874e-05 9.3435718488e-05 9.3431826874e-05 9.3540232597e-05 +9.3540232597e-05 9.3540232597e-05 9.3723335844e-05 9.3723335844e-05 9.3712767876e-05 9.3723335844e-05 9.3855080907e-05 9.3997246995e-05 9.399154725e-05 +9.3855080907e-05 0.0001 0.0001 9.0745176477e-05 9.0734707497e-05 9.0745176477e-05 9.0745176477e-05 0.012046500653 9.9721288777e-05 +9.3512971808e-05 0.0001 9.8927367778e-05 9.9794028961e-05 9.784912962e-05 9.784912962e-05 9.784912962e-05 9.7835068887e-05 9.7835068887e-05 +9.7619400666e-05 9.9832330241e-05 9.9814035242e-05 9.851676376e-05 9.8737660208e-05 9.851676376e-05 9.8956236684e-05 9.8956236684e-05 9.8956236684e-05 +9.8954937479e-05 9.8757354695e-05 9.8757354695e-05 9.8757354695e-05 0.0001 9.931770514e-05 9.9323825932e-05 0.0001 9.9763209318e-05 +9.9763209318e-05 9.9763209318e-05 9.3224167162e-05 9.3797797056e-05 9.3211468485e-05 9.3224167162e-05 9.3211468485e-05 9.3224167162e-05 9.9346931952e-05 +9.7969332944e-05 0.0001 9.9638297034e-05 9.9663218527e-05 9.9652286901e-05 9.9663218527e-05 9.9663218527e-05 9.9660343852e-05 9.96605423e-05 +9.9638297034e-05 0.0001 9.9808157259e-05 9.9632278429e-05 9.9808157259e-05 9.9632278429e-05 9.9808157259e-05 9.9632278429e-05 9.0542445213e-05 +9.0632208482e-05 9.9761171719e-05 9.9761171719e-05 9.9754597689e-05 9.9688044985e-05 9.9689643476e-05 9.96927705e-05 9.9653621821e-05 9.9653621821e-05 +9.9700026655e-05 9.9688044985e-05 9.9653621821e-05 9.9782690199e-05 9.9782690199e-05 9.9782690199e-05 9.9792866295e-05 9.9843110118e-05 9.9843110118e-05 +9.9855571083e-05 0.0001 9.9845917474e-05 9.9846112386e-05 9.9846112386e-05 9.9846112386e-05 0.0001 0.0001 0.0001 +0.0001 9.2149944322e-05 9.9687599293e-05 9.9687599293e-05 9.9685130368e-05 9.2270919363e-05 9.2559325257e-05 9.2243842868e-05 9.2164568693e-05 +9.2177744071e-05 9.2230667491e-05 9.2174863658e-05 9.2608849895e-05 9.2637314103e-05 9.2649386206e-05 9.2636015903e-05 0.0001 0.0001 +8.9923130301e-05 9.0370592994e-05 9.0370592994e-05 8.9923130301e-05 9.0356972329e-05 8.9908896315e-05 8.9908896315e-05 9.0356972329e-05 8.9908896315e-05 +0.0011556908878 9.0370592994e-05 0.0011609889106 8.8106997666e-05 0.0001 9.0019949913e-05 8.9979745787e-05 0.0001 9.8580127211e-05 +9.8580127211e-05 9.8580127211e-05 9.8564573667e-05 9.8564573667e-05 0.0001 9.7884149758e-05 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 0.0001 9.8472365529e-05 9.8472365529e-05 9.8472365529e-05 9.8520449124e-05 9.8497935551e-05 +9.8497935551e-05 9.8497935551e-05 9.8497935551e-05 9.8497935551e-05 0.0001 9.8500426808e-05 0.0001 0.0001 0.0001 +0.0001 0.0001 0.0001 7.9951965771e-05 0.017116026772 8.0075714455e-05 8.0075714455e-05 7.9951965771e-05 7.9951965771e-05 +7.9951965771e-05 7.9951965771e-05 8.0075714455e-05 8.0075714455e-05 8.0075714455e-05 0.017109521685 7.9846485837e-05 7.9512570244e-05 7.9602270361e-05 +7.9545234029e-05 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 +0.0001 0.0001 8.9733082587e-05 0.0001 0.0001 9.7162482046e-05 9.7390277691e-05 0.0001 0.0001 +0.0001 0.012519052593 9.0388045761e-05 0.0012313701846 0.0012313701846 0.017411828008 7.9505446342e-05 7.9505446342e-05 0.017411828008 +0.0011068121547 0.0011069751981 8.7862550755e-05 0.016525448758 0.018042216836 7.948774489e-05 0.018041792351 7.9485035785e-05 9.0471484444e-05 +0.012528183607 0.0012357010715 0.0012356857004 7.9546586724e-05 0.017423686509 7.9546586724e-05 0.017423686509 diff --git a/tests/input/validation_tests/PN_solver/linesource_PN.cfg b/tests/input/validation_tests/PN_solver/linesource_PN.cfg index 188e07ea..409a9643 100644 --- a/tests/input/validation_tests/PN_solver/linesource_PN.cfg +++ b/tests/input/validation_tests/PN_solver/linesource_PN.cfg @@ -6,7 +6,7 @@ % % ---- File specifications ---- OUTPUT_DIR = ../../../result -OUTPUT_FILE = rtsn_test_linesource_PN +OUTPUT_FILE = linesource_PN LOG_DIR = ../../../result/logs MESH_FILE = ../../mesh_files/linesource.su2 % diff --git a/tests/input/validation_tests/PN_solver/linesource_PN_reference.vtk b/tests/input/validation_tests/PN_solver/linesource_PN_reference.vtk index 3d541d00..b8fee3db 100644 --- a/tests/input/validation_tests/PN_solver/linesource_PN_reference.vtk +++ b/tests/input/validation_tests/PN_solver/linesource_PN_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -0.0012566358187 0.0012566380999 0.0012566368395 0.0012566385388 8.2146457283 0.0012566371556 0.0012566374341 8.3521819329 0.0012566365479 -0.0012566368417 15.199419053 8.9475705287 14.040919622 8.3038464917 0.0012566373378 0.0012566381754 0.0012566370067 0.0012566374249 -0.0012566370483 0.0012566368578 0.0012566368824 0.0012566370386 0.0012566373129 0.001256637679 0.0012566366837 0.0012566385987 0.0012566362889 -0.0012566379058 0.0012566368447 0.0012566365405 0.0012566382679 0.0012566371998 0.0012566357493 0.0012566368209 0.0012566364372 0.0012566365378 -0.0012566367438 0.0012566363928 0.0012566372677 0.0012566371771 0.0012566372569 0.0012566368897 0.0012566363029 0.0012566371299 13.81497929 -14.230910261 0.0012566360478 0.0012566370539 0.0012566366148 0.0012566370164 0.0012566373402 0.0012566374724 0.0012566372974 0.0012566364407 -0.0012566366283 0.0012566375785 0.0012566373061 0.00125663798 0.00125663798 0.0012566373061 0.0012566375736 0.0012566373081 0.0012566380532 -0.0012566379993 0.0012566366655 0.0012566364181 3.411656311 3.5080278325 0.0012566371397 0.0012566375072 6.7055606265 5.7376824504 -3.1147440189 3.9328185058 0.0012566378185 0.0012566362552 0.0012566374678 0.0012566361304 0.0012566374345 0.0012566374968 0.0012566363822 -0.0012566378438 0.0012566371813 0.0012566372038 0.0012566379385 0.0012566374186 0.0012566359147 0.0012566372474 0.0012566369057 0.0012566367571 -0.001256638078 0.0012566367965 6.068187344 4.4353611775 0.0012566373122 0.0012566364578 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 8.2146471539 0.0012566370614 0.0012566370614 8.352214558 0.0012566370614 +0.0012566370614 15.199389763 8.9475720152 14.040939196 8.3038490336 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 13.815003202 +14.230887604 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 3.4116456184 3.508011512 0.0012566370614 0.0012566370614 6.7055518 5.7376768882 +3.1147522322 3.9328167428 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 6.0681841518 4.4353606819 0.0012566370614 0.0012566370614 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -0.0012566374399 0.001256637644 0.0012566380166 0.0012566376527 14.321557057 0.0012566375488 0.0012566373628 0.0012566368908 0.0012566368963 -0.0012566368724 0.0012566372552 0.0012566369938 0.0012566371644 0.0012566367979 0.0012566373065 0.0012566369676 0.0012566370368 0.0012566368506 -0.001256637017 0.0012566373606 0.0012566378059 0.0012566376122 0.00125663677 0.0012566367798 0.0012566369068 0.0012566370657 0.0012566367202 -0.0012566369825 0.0012566368071 0.0012566370863 0.0012566374515 0.0012566367487 0.0012566372342 0.001256637101 0.56965658312 2.4723361221 -0.52017120073 0.0012566370822 0.58571850293 2.7165568091 0.0012566371444 3.1036402327 0.65651694869 0.0012566370072 3.4986939351 -0.0012566370636 0.0012566369552 0.0012566371252 0.0012566369332 7.7358556682 8.1166071959 7.9120911643 7.5394474905 0.001256636991 -0.0012566371384 0.0012566374279 0.0012566374748 1.342117435 1.1485417997 0.88807754539 1.2146427784 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 14.321554941 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.56965480062 2.4723361326 +0.52017256959 0.0012566370614 0.58571578288 2.7165594438 0.0012566370614 3.1036392596 0.65651665468 0.0012566370614 3.4986921695 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 7.7358568018 8.1166053306 7.9120918531 7.5394504756 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 1.3421156697 1.1485406873 0.88807744602 1.21464214 diff --git a/tests/input/validation_tests/SN_solver/checkerboard_SN.cfg b/tests/input/validation_tests/SN_solver/checkerboard_SN.cfg index 27232f6f..aee51280 100644 --- a/tests/input/validation_tests/SN_solver/checkerboard_SN.cfg +++ b/tests/input/validation_tests/SN_solver/checkerboard_SN.cfg @@ -7,7 +7,7 @@ % ---- File specifications ---- % OUTPUT_DIR = ../../../result -OUTPUT_FILE = rtsn_test_checkerboard_SN +OUTPUT_FILE = checkerboard_SN LOG_DIR = ../../../result/logs MESH_FILE = ../../mesh_files/checkerboard.su2 % diff --git a/tests/input/validation_tests/SN_solver/checkerboard_SN_reference.vtk b/tests/input/validation_tests/SN_solver/checkerboard_SN_reference.vtk index 1a33070a..ca1f73fb 100644 --- a/tests/input/validation_tests/SN_solver/checkerboard_SN_reference.vtk +++ b/tests/input/validation_tests/SN_solver/checkerboard_SN_reference.vtk @@ -1727,187 +1727,187 @@ CELL_TYPES 1056 CELL_DATA 1056 FIELD FieldData 1 radiation%20flux%20density 1 1056 double -9.3884849554e-13 9.3884849554e-13 1.4472828226e-10 1.4485025157e-10 1.6517962961e-10 1.6533672824e-10 1.9015117202e-10 1.8959151812e-10 1.7463110546e-10 -1.8928022918e-10 1.8936473751e-10 1.9002886886e-10 1.7388571845e-10 1.9013015447e-10 6.1215642677e-11 6.1215663444e-11 6.1226420614e-11 6.1226412591e-11 -8.7172320346e-11 8.7172271584e-11 8.7130861344e-11 8.7130840123e-11 6.2603486459e-11 6.2595533945e-11 6.2595614732e-11 6.26035072e-11 9.3884849554e-13 -9.3884849554e-13 1.4456644079e-10 1.4472828226e-10 1.6533679602e-10 1.6499135484e-10 1.9002885644e-10 1.7388248685e-10 1.8959150658e-10 1.7450743759e-10 -1.8938256238e-10 1.9006530931e-10 1.7388572789e-10 1.7450847342e-10 6.1226422364e-11 6.1215670872e-11 6.1226420614e-11 6.1215644854e-11 8.7172278377e-11 -8.7130820999e-11 8.7172320346e-11 8.7130857393e-11 6.2595559774e-11 6.2595553168e-11 6.2603515094e-11 6.2603514969e-11 9.3884849554e-13 9.3884849554e-13 -1.4456984536e-10 1.4478703908e-10 1.6526678214e-10 1.6549507129e-10 1.7347179691e-10 1.8994990637e-10 1.9033690915e-10 1.8944190668e-10 1.8926980585e-10 -1.89283491e-10 1.7463002831e-10 1.9015227601e-10 6.1215627467e-11 6.1226402421e-11 6.1215635612e-11 6.1226440056e-11 8.7172316116e-11 8.7172313926e-11 -8.7130855205e-11 8.7130861163e-11 6.2603516748e-11 6.2603523923e-11 6.2595582074e-11 6.2595552329e-11 9.3870690776e-13 9.3870690776e-13 1.4388445217e-10 -1.4395989471e-10 1.6499110044e-10 1.6549589619e-10 1.7384718048e-10 1.7373091432e-10 0.015115531017 1.7450679407e-10 1.7463153181e-10 0.015115531017 -1.7462943317e-10 1.7384720309e-10 6.1097878447e-11 6.1097868711e-11 6.1119563075e-11 6.1119572816e-11 8.6853299669e-11 8.6933865594e-11 8.6853281874e-11 -8.693388339e-11 6.2591905785e-11 6.2607281132e-11 6.260730829e-11 6.2591878625e-11 9.3871985513e-13 9.3871985513e-13 1.4249467586e-10 1.4403004842e-10 -1.6518384157e-10 1.6549607768e-10 0.015010388584 0.015115531017 1.7338834439e-10 1.7462145378e-10 1.8933208856e-10 1.7373347564e-10 1.9016153717e-10 -1.7463952562e-10 6.0928755519e-11 6.1128116433e-11 6.0928749227e-11 6.1128116433e-11 8.6355756354e-11 8.7081681929e-11 8.6355822548e-11 8.708164027e-11 -6.2528722257e-11 6.2670497713e-11 6.2670484585e-11 6.2528788452e-11 9.3884849554e-13 9.3884849554e-13 1.4474875508e-10 1.4478701797e-10 1.6526678214e-10 -1.6517962961e-10 1.7375977099e-10 1.7462998671e-10 1.9033689761e-10 1.8928346544e-10 1.9013121344e-10 1.7462996772e-10 1.7375974799e-10 1.8932101945e-10 -6.1215658213e-11 6.1226421854e-11 6.1226413469e-11 6.1215658213e-11 8.7172272496e-11 8.7172316116e-11 8.7130904774e-11 8.7130858082e-11 6.2603516748e-11 -6.2603524534e-11 6.2595562292e-11 6.2595541581e-11 4.1954783913 4.1954783913 3.5519933122 3.5515088887 3.4618529399 3.4614486252 -3.2743735048 3.2743946926 3.273646191 3.2736472693 3.273646191 3.2743735048 3.2743946926 3.2736472693 3.9145068067 -3.9146580146 3.9146580146 3.9145068067 4.1092868004 4.1092452714 4.1092868004 4.1092452714 3.8809213439 3.8808857909 -3.8808857909 3.8809213439 9.3884849554e-13 9.3884849554e-13 1.4449731246e-10 1.4483184454e-10 1.6549624914e-10 1.6499145256e-10 1.7388240722e-10 -1.7376303275e-10 1.74507279e-10 1.7463102792e-10 0.015115531017 1.7462994931e-10 0.015115531017 1.7388236742e-10 6.1215661166e-11 6.1226404972e-11 -6.1215670936e-11 6.12263952e-11 8.7130909968e-11 8.7172324219e-11 8.7130892176e-11 8.7172342011e-11 6.2595528297e-11 6.2603521226e-11 6.2595555457e-11 -6.2603494067e-11 9.3871985513e-13 9.3871985513e-13 1.4224701511e-10 1.4390290853e-10 1.6542582726e-10 1.6499129769e-10 1.7367643913e-10 1.7422394504e-10 -1.8947717037e-10 0.015115531017 1.7449884528e-10 1.736763912e-10 1.9016782716e-10 0.015010388583 6.0928770556e-11 6.1128152574e-11 6.0928736935e-11 -6.1128130554e-11 8.6355769453e-11 8.6355845657e-11 8.7081655671e-11 8.7081592795e-11 6.2528775737e-11 6.2670480079e-11 6.2528771223e-11 6.2670460086e-11 -9.3884849554e-13 9.3884849554e-13 1.4456644079e-10 1.447869593e-10 1.6551821596e-10 1.6526678214e-10 1.9033690915e-10 1.900277791e-10 1.8928347786e-10 -1.738824544e-10 1.8940688217e-10 1.8938260455e-10 1.7463000833e-10 1.9011338857e-10 6.1226416643e-11 6.1215713463e-11 6.1215635084e-11 6.1226400161e-11 -8.7130840338e-11 8.71308609e-11 8.7172268047e-11 8.7172316116e-11 6.2595558081e-11 6.2603516748e-11 6.260349404e-11 6.2595551849e-11 9.3884849554e-13 -9.3884849554e-13 1.4456644079e-10 1.4494563298e-10 1.6533678964e-10 1.6542454985e-10 1.7388245601e-10 1.7450737065e-10 1.90028862e-10 1.9006530931e-10 -1.8938256238e-10 1.8935113273e-10 1.7450845396e-10 1.7376306282e-10 6.1226414941e-11 6.1215670872e-11 6.1226413321e-11 6.1215644854e-11 8.7172315426e-11 -8.7130857393e-11 8.7130864251e-11 8.7172322427e-11 6.2603514969e-11 6.2595526858e-11 6.2603492627e-11 6.2595553168e-11 9.3871985513e-13 9.3871985513e-13 -1.4260039518e-10 1.4387329871e-10 1.6533664087e-10 1.6548484932e-10 1.7451689097e-10 1.8919674218e-10 1.9014273277e-10 1.8924926747e-10 1.7345858012e-10 -1.8937905929e-10 1.8928134832e-10 1.8992513365e-10 6.0928734872e-11 6.0928752605e-11 6.1128094798e-11 6.1128109744e-11 8.6355782768e-11 8.6355824652e-11 -8.7081571713e-11 8.7081634146e-11 6.2670424951e-11 6.2528813345e-11 6.2670470301e-11 6.2528754727e-11 1.2566368624e-09 1.2566368624e-09 1.2566373462e-09 -1.2566368624e-09 1.2566370246e-09 1.2566370246e-09 1.2566367743e-09 1.2566373748e-09 1.2566370657e-09 1.2566370657e-09 1.2566370657e-09 1.2566368872e-09 -1.2566363462e-09 1.2566372072e-09 1.2566370569e-09 1.2566373438e-09 1.2566373438e-09 1.2450412114e-09 1.2459997132e-09 1.2450412114e-09 1.256637033e-09 -1.2453514401e-09 1.2408708199e-09 1.2408708199e-09 1.2408703999e-09 1.198108912e-09 1.1827876713e-09 1.1827877019e-09 1.182787567e-09 1.1824375666e-09 -1.1824375974e-09 1.1840375025e-09 1.2566373179e-09 1.2566373179e-09 1.256637081e-09 1.2439945894e-09 1.1951582613e-09 1.240717326e-09 1.240717326e-09 -1.2401006914e-09 1.2340236306e-09 1.2566364524e-09 1.256636772e-09 1.2334936036e-09 1.2566372717e-09 1.2566361848e-09 1.2566361794e-09 1.2566361794e-09 -1.2566370075e-09 1.2566370075e-09 1.25663701e-09 1.2566371016e-09 1.2566371372e-09 1.2566371372e-09 1.2566370957e-09 1.2566369457e-09 1.2566369457e-09 -1.2332821276e-09 1.2334650707e-09 1.2334650526e-09 1.2474998497e-09 1.2474998497e-09 1.2474998497e-09 1.2473959351e-09 1.2473959351e-09 1.2566369546e-09 -1.2566377003e-09 1.2566370516e-09 1.2566370426e-09 1.2566370426e-09 1.2566374014e-09 1.2566372296e-09 1.2566371909e-09 1.2566372296e-09 1.256637011e-09 -1.256637011e-09 1.2566369123e-09 1.2566372612e-09 1.2428227489e-09 1.2566366198e-09 1.2566373026e-09 1.2566369898e-09 1.2566380605e-09 1.2566384665e-09 -1.2566380605e-09 1.2566384665e-09 1.2566380605e-09 1.2566373806e-09 1.256636538e-09 1.2566365453e-09 1.2566365453e-09 1.2566365124e-09 1.2566365124e-09 -1.2566365124e-09 1.2351024014e-09 1.2351022538e-09 1.2336167475e-09 1.2334982144e-09 1.2349415472e-09 1.2351024176e-09 1.2334981963e-09 1.2344646119e-09 -1.2566370062e-09 1.2566370062e-09 1.2566372148e-09 1.2566372148e-09 1.256637388e-09 1.2566367923e-09 1.2566379742e-09 1.1829721136e-09 1.1829721136e-09 -1.1829721323e-09 1.1822160587e-09 1.1822160777e-09 1.2566373456e-09 1.2566376059e-09 1.256637257e-09 1.2566375545e-09 1.2354587231e-09 1.2354587344e-09 -1.2351336554e-09 1.2349212337e-09 1.2354587403e-09 1.2350988703e-09 1.2339497452e-09 1.2339497631e-09 1.2566371186e-09 1.2566370066e-09 1.2566370544e-09 -1.2566370544e-09 1.2566370544e-09 1.2476134911e-09 1.2476134911e-09 1.2476134911e-09 1.2474689584e-09 1.2474689584e-09 1.2566368735e-09 1.2566371459e-09 -1.2566371459e-09 1.2566370561e-09 1.2566375496e-09 1.2566375031e-09 1.2566371139e-09 1.2566370875e-09 1.2566370875e-09 1.2566367112e-09 1.256637198e-09 -1.2566369655e-09 1.2566370203e-09 1.2566370203e-09 1.2566369541e-09 1.2566372232e-09 1.2566366866e-09 1.2566372892e-09 1.2566372174e-09 1.2566372174e-09 -1.2566372736e-09 1.2566369614e-09 9.4202339279e-10 1.2566373396e-09 9.457596519e-10 1.1132772596e-09 1.2566367092e-09 1.1148187348e-09 1.2566369514e-09 -1.2566369514e-09 1.2566372193e-09 1.2446644247e-09 1.2446644247e-09 1.2446644247e-09 1.2445536248e-09 1.2445536248e-09 1.2566377278e-09 1.2566371571e-09 -1.2566371661e-09 1.2566371661e-09 1.2566369965e-09 1.2566378123e-09 1.2566371879e-09 1.2566371879e-09 1.2566368884e-09 1.2566370872e-09 1.2566369963e-09 -1.2566369963e-09 1.2566369963e-09 1.2566369564e-09 1.2456907012e-09 1.2566366267e-09 1.2566366254e-09 1.2566375388e-09 1.2566375388e-09 1.2566375388e-09 -1.2566373483e-09 1.2566369641e-09 1.2566370031e-09 1.2566370031e-09 1.2566376983e-09 1.2566376983e-09 1.2566376983e-09 1.2566367285e-09 1.2566371673e-09 -1.2566371594e-09 1.2566367614e-09 1.2566367884e-09 1.2566371272e-09 1.2566374441e-09 1.2566371272e-09 1.2566367884e-09 1.2566371697e-09 1.2566366456e-09 -1.2566366456e-09 1.2566366456e-09 1.2566369197e-09 1.1807720671e-09 1.180772069e-09 1.1807720869e-09 1.2458338299e-09 1.2458338299e-09 1.2458338299e-09 -1.248496649e-09 1.2484966337e-09 1.2484966337e-09 1.2566369334e-09 1.256637079e-09 1.256637079e-09 1.2566367508e-09 1.256637346e-09 1.2566378701e-09 -1.2566371193e-09 1.2566378956e-09 1.2566377874e-09 1.2566377874e-09 1.256637606e-09 1.256637218e-09 1.2566370676e-09 1.2566376001e-09 1.2566372884e-09 -1.2566376001e-09 1.2566372371e-09 1.2566372371e-09 1.2566371193e-09 1.2566368831e-09 1.2566366144e-09 1.2566368831e-09 1.2566368831e-09 1.1823370874e-09 -1.2566367615e-09 1.256637681e-09 1.2566368742e-09 1.2566368742e-09 1.2566363269e-09 1.2485411222e-09 1.2566371494e-09 1.2566369602e-09 1.2566369602e-09 -1.2566372337e-09 1.2566375358e-09 1.2566369809e-09 1.2566370044e-09 1.2566370044e-09 1.2566366559e-09 1.2566366559e-09 1.2566369608e-09 1.2566368865e-09 -1.2566367863e-09 1.2566366093e-09 1.2566366093e-09 1.2566366093e-09 1.2566370922e-09 1.2566371294e-09 1.2566371294e-09 1.2566379769e-09 1.2566366477e-09 -1.2426147148e-09 1.256637318e-09 1.2566373828e-09 1.2566362538e-09 1.256636214e-09 1.2566374186e-09 1.2566374186e-09 1.256636214e-09 1.2566367006e-09 -1.2566362538e-09 1.2566373828e-09 1.2566369846e-09 1.2566373828e-09 1.256636214e-09 9.3583639538e-10 9.6236950235e-10 9.8398026193e-10 9.8398032445e-10 -9.5219377203e-10 9.6236950302e-10 9.6236969788e-10 9.6236973102e-10 9.5219372996e-10 9.5219376167e-10 9.5219378451e-10 9.565537748e-10 9.8398028497e-10 -9.5219364823e-10 0.615433504 9.8398034748e-10 9.6033278505e-10 1.1173670132e-09 9.8398032445e-10 9.6236973102e-10 9.7505698784e-10 9.6699438185e-10 -1.2566375455e-09 1.2566364479e-09 9.6571651562e-10 9.5255201963e-10 9.5309409919e-10 9.6613755346e-10 1.2566368023e-09 1.2566369413e-09 1.2566369413e-09 -1.2566371764e-09 1.1879921424e-09 1.1888699807e-09 1.2566363554e-09 1.2566367542e-09 1.256637764e-09 1.256637011e-09 1.2566364284e-09 1.2566364284e-09 -1.2566370255e-09 1.2434244895e-09 1.2434333241e-09 1.2566369873e-09 1.1857976181e-09 1.1929461591e-09 1.1929461861e-09 1.1929461663e-09 1.2566369061e-09 -1.2566374405e-09 1.192452883e-09 1.1924529102e-09 1.1774411414e-09 1.2566373182e-09 1.2566371729e-09 1.256637162e-09 1.256637162e-09 1.2566371978e-09 -1.2420024996e-09 1.2566363158e-09 1.2566369677e-09 9.3058327649e-10 9.2190184544e-10 9.2691305806e-10 9.3058327649e-10 9.2190182262e-10 9.2190184544e-10 -9.3058327649e-10 9.225003492e-10 9.2190168998e-10 9.305834078e-10 9.219017128e-10 9.305834078e-10 1.2566368598e-09 9.5321775122e-10 9.3798108601e-10 -9.5660753645e-10 9.5660742517e-10 9.3794513925e-10 9.5704066259e-10 9.3794501201e-10 9.6515644786e-10 9.5361440891e-10 9.6548475874e-10 9.4810229243e-10 -9.5704064895e-10 9.5704065397e-10 9.5361416417e-10 9.5660753734e-10 9.3785116579e-10 9.5430718821e-10 9.3785132178e-10 9.6515645337e-10 9.6173739515e-10 -9.536143783e-10 9.536141764e-10 9.5361414579e-10 9.5376754113e-10 9.5376759932e-10 9.6173740133e-10 9.6547663095e-10 9.449465953e-10 9.3785119454e-10 -9.5376754255e-10 9.6173736297e-10 9.6855911627e-10 9.5361443048e-10 1.25663642e-09 1.2566373321e-09 1.2566373321e-09 1.1804651646e-09 1.256637453e-09 -1.1819587878e-09 1.1830968304e-09 1.1830968004e-09 1.1830968304e-09 1.1827961014e-09 1.1827961209e-09 1.242526669e-09 1.2566377671e-09 1.2566377671e-09 -1.2566375461e-09 1.2566372874e-09 1.2566372136e-09 1.2566372136e-09 1.2566368097e-09 1.2260504409e-09 1.2566372695e-09 1.2566369908e-09 1.2566369908e-09 -1.2566369659e-09 1.2566372155e-09 1.2566369076e-09 1.1944943177e-09 1.1944942405e-09 1.1944942652e-09 1.1944389001e-09 1.2566376878e-09 1.2300830989e-09 -1.256637715e-09 1.229225488e-09 9.2323502005e-10 9.2223907068e-10 1.2444273377e-09 1.2444273397e-09 1.2444273397e-09 1.1212444216e-09 1.1115988648e-09 -1.1100999702e-09 1.104203864e-09 1.1042039386e-09 1.105728557e-09 1.1118674225e-09 1.1099342744e-09 1.1187507414e-09 1.10993428e-09 1.1187507369e-09 -1.1122224036e-09 1.1042038599e-09 1.1118674418e-09 1.1042039772e-09 1.1042039731e-09 1.1118674361e-09 1.1057285145e-09 1.1042038995e-09 1.1057285099e-09 -1.1187507351e-09 1.1216484309e-09 1.2566374054e-09 1.0972804634e-09 1.0972804634e-09 1.1168821404e-09 1.1168821651e-09 1.1096350878e-09 1.103203296e-09 -1.0972803372e-09 1.0972804724e-09 1.1168821404e-09 1.1168821464e-09 1.116882171e-09 1.0972803282e-09 1.2566378237e-09 1.2474436487e-09 1.2474436487e-09 -1.2474365787e-09 1.2474435871e-09 1.2566372826e-09 1.2566374682e-09 1.2566373399e-09 1.2566373399e-09 1.2566373399e-09 9.125419484e-10 1.2305324543e-09 -1.2566372447e-09 1.2317548557e-09 1.2566373921e-09 1.2566373921e-09 1.2333492575e-09 1.2333492392e-09 1.2333492703e-09 1.2566388837e-09 1.2566386449e-09 -1.256638573e-09 1.256638573e-09 1.256638573e-09 1.2566385876e-09 1.2566385876e-09 1.2566385876e-09 1.2566369714e-09 1.2566371735e-09 1.2566369681e-09 -7.9330304987e-10 0.17746057153 7.9358024703e-10 7.9330301046e-10 7.9358037056e-10 7.9358023074e-10 7.933030211e-10 7.9358033298e-10 7.9330300652e-10 -7.9358039249e-10 0.72338086934 7.9308017914e-10 7.9308023536e-10 7.9308021577e-10 7.9330302096e-10 7.9308023369e-10 7.9358027578e-10 7.935802893e-10 -7.9358018587e-10 0.72338086934 7.9358042164e-10 7.9308027347e-10 0.17746057153 7.9358040454e-10 7.9157170302e-10 7.9059711595e-10 7.9065757289e-10 -7.9110498455e-10 7.8615694332e-10 7.8633234925e-10 7.8603108229e-10 7.85915623e-10 1.2566367595e-09 1.0961077894e-09 1.0952648019e-09 1.256637209e-09 -1.2566380171e-09 1.2566368357e-09 1.2566368555e-09 1.2566367377e-09 1.2566369617e-09 1.2566369617e-09 1.2566369617e-09 1.2566368965e-09 1.256636982e-09 -1.0461982435e-09 1.2566365718e-09 1.2566365718e-09 1.2566365718e-09 1.0486046651e-09 1.2566372597e-09 1.2566372597e-09 1.2566369029e-09 1.2566365524e-09 -1.0408527532e-09 1.1391586002e-09 1.0413168316e-09 1.2566371405e-09 1.2566374338e-09 1.2566374338e-09 1.2566374338e-09 1.0665597487e-09 9.0008689224e-10 -1.2566367747e-09 1.2566379908e-09 1.2566373568e-09 1.047974423e-09 1.047974423e-09 1.0415123981e-09 1.0479744223e-09 1.0415123981e-09 1.047974423e-09 -0.023373002575 1.0415123771e-09 1.0415123771e-09 1.0415123771e-09 1.0479744223e-09 0.023082609369 1.256637575e-09 1.2566375666e-09 1.256637575e-09 -1.2566367244e-09 1.0616486328e-09 1.0473332604e-09 1.0574735591e-09 0.24693609349 1.057473464e-09 1.0574735447e-09 1.0574735462e-09 1.0574735616e-09 -1.0574734625e-09 1.0574734768e-09 0.24693609349 1.0574735462e-09 1.057473464e-09 1.0574734794e-09 1.2566372188e-09 1.2566362775e-09 1.2566362775e-09 -1.2566371798e-09 1.2566391678e-09 1.2566391678e-09 1.2566370622e-09 1.2566369098e-09 1.1534718149e-09 1.1625778358e-09 1.256637168e-09 1.2421269717e-09 -1.2566374048e-09 1.2566372799e-09 1.2566372799e-09 1.2566368807e-09 1.2566385891e-09 1.2435203002e-09 1.2566366628e-09 1.2566395424e-09 1.2566364886e-09 -1.2195209855e-09 1.2204432425e-09 1.2204429414e-09 1.2204432167e-09 1.2160311967e-09 1.2160311967e-09 1.2160312788e-09 1.2160312464e-09 1.2160311643e-09 -1.2204429414e-09 1.2204429672e-09 1.2178812799e-09 1.1767194172e-09 1.1752561783e-09 1.1767194603e-09 1.1752561424e-09 1.1752561351e-09 1.1767194953e-09 -0.03719731331 1.1752561854e-09 1.1767194533e-09 0.03718610603 1.1767195025e-09 1.1752561419e-09 1.2566375637e-09 1.2566375637e-09 1.2566369254e-09 -1.2566366255e-09 1.1714122782e-09 1.1717393414e-09 1.1754662993e-09 1.1701025848e-09 1.03193966e-09 1.0334990143e-09 1.2566365363e-09 1.2566365612e-09 -1.2566365612e-09 1.2566366962e-09 1.2566370228e-09 1.2566370228e-09 1.2566370228e-09 1.2566365786e-09 1.2566365786e-09 1.2071044209e-09 1.256636802e-09 -1.2566370632e-09 1.2566370232e-09 1.2566369825e-09 1.2566370232e-09 1.237552258e-09 1.2566367135e-09 1.2566373019e-09 1.2566373019e-09 0.63914954496 -9.4192876096e-10 9.0413758424e-10 9.0413742557e-10 7.9122368451e-10 7.9044589838e-10 7.9044591859e-10 0.72735232543 0.17858061393 7.9122364455e-10 -0.17858061393 0.72735232543 1.0510668704e-09 0.2557620704 0.2557620704 1.0510668704e-09 0.039727145287 1.1706431621e-09 0.039727145287 -1.1706432148e-09 0.025140811594 1.0273741484e-09 1.0273741217e-09 0.025140811594 1.2566371551e-09 1.2566371551e-09 9.4046042674e-10 9.4029360511e-10 -0.73362597109 9.041377176e-10 7.9119529059e-10 7.9044662878e-10 0.72813508284 0.17858061393 0.17858061393 7.9044784563e-10 7.9119163772e-10 -0.72813609711 1.0501593766e-09 1.0500559655e-09 0.0235233208 0.023531037721 0.046179002593 0.046181668804 1.1704454331e-09 1.1704039109e-09 -0.28943964975 0.28941228401 1.0273875606e-09 1.0274141906e-09 1.2566370827e-09 1.2566370827e-09 9.4473263886e-10 0.6399203799 9.0413746671e-10 -9.0413749316e-10 7.9045615948e-10 0.17858061393 7.9127868713e-10 0.72736128028 7.9127865973e-10 0.72736128028 7.904561316e-10 0.17858061393 -0.25615157792 1.0527981743e-09 1.0527981743e-09 0.25615157792 0.039922148679 0.039922148679 1.1712212516e-09 1.1712212601e-09 1.0276340701e-09 -0.025218326594 0.025218326594 1.0276340492e-09 +9.3903270621e-13 9.3903270621e-13 1.4472838896e-10 1.4485060545e-10 1.6517960882e-10 1.6533657443e-10 1.9015128801e-10 1.8959172751e-10 1.7463116553e-10 +1.8928020959e-10 1.8936502872e-10 1.9002883338e-10 1.7388583047e-10 1.9013017528e-10 6.1215555569e-11 6.1215555569e-11 6.1226341693e-11 6.1226341693e-11 +8.7172057488e-11 8.7172057488e-11 8.7130534878e-11 8.7130534878e-11 6.2603577538e-11 6.2595627293e-11 6.2595627293e-11 6.2603577538e-11 9.3903270621e-13 +9.3903270621e-13 1.4456680383e-10 1.4472838896e-10 1.6533657443e-10 1.6499124662e-10 1.9002883338e-10 1.7388254174e-10 1.8959172751e-10 1.7450748465e-10 +1.8938256861e-10 1.9006554949e-10 1.7388583047e-10 1.7450850178e-10 6.1226341693e-11 6.1215555569e-11 6.1226341693e-11 6.1215555569e-11 8.7172057488e-11 +8.7130534878e-11 8.7172057488e-11 8.7130534878e-11 6.2595627293e-11 6.2595627293e-11 6.2603577538e-11 6.2603577538e-11 9.3903270621e-13 9.3903270621e-13 +1.4457020487e-10 1.4478714236e-10 1.6526654014e-10 1.6549484083e-10 1.7347185553e-10 1.8995015045e-10 1.9033706256e-10 1.894422079e-10 1.8926982772e-10 +1.8928349833e-10 1.746301484e-10 1.9015230513e-10 6.1215555569e-11 6.1226341693e-11 6.1215555569e-11 6.1226341693e-11 8.7172057488e-11 8.7172057488e-11 +8.7130534878e-11 8.7130534878e-11 6.2603577538e-11 6.2603577538e-11 6.2595627293e-11 6.2595627293e-11 9.3903270621e-13 9.3903270621e-13 1.4388433025e-10 +1.4395990719e-10 1.6499124837e-10 1.6549598872e-10 1.738474432e-10 1.7373113751e-10 0.015115545956 1.7450699666e-10 1.7463165397e-10 0.015115545956 +1.7462966041e-10 1.738474432e-10 6.1097964446e-11 6.1097964446e-11 6.1119601373e-11 6.1119601373e-11 8.6852785309e-11 8.6933288181e-11 8.6852785309e-11 +8.6933288181e-11 6.2591811509e-11 6.2607393989e-11 6.2607393989e-11 6.2591811509e-11 9.3903270621e-13 9.3903270621e-13 1.424949267e-10 1.4402999491e-10 +1.6518415301e-10 1.6549618159e-10 0.015010414659 0.015115545956 1.7338845284e-10 1.7462162793e-10 1.8933234126e-10 1.7373368538e-10 1.9016179233e-10 +1.74639736e-10 6.092875881e-11 6.112823036e-11 6.092875881e-11 6.112823036e-11 8.6355331327e-11 8.7081127508e-11 8.6355331327e-11 8.7081127508e-11 +6.2528870315e-11 6.2670408598e-11 6.2670408598e-11 6.2528870315e-11 9.3903270621e-13 9.3903270621e-13 1.4474890175e-10 1.4478714236e-10 1.6526654014e-10 +1.6517960882e-10 1.7375987799e-10 1.746301484e-10 1.9033706256e-10 1.8928349833e-10 1.901311924e-10 1.746301484e-10 1.7375987799e-10 1.8932123156e-10 +6.1215555569e-11 6.1226341693e-11 6.1226341693e-11 6.1215555569e-11 8.7172057488e-11 8.7172057488e-11 8.7130534878e-11 8.7130534878e-11 6.2603577538e-11 +6.2603577538e-11 6.2595627293e-11 6.2595627293e-11 4.1954783166 4.1954783166 3.5519927165 3.5515076439 3.4618518812 3.4614475657 +3.2743733339 3.2743941551 3.2736455313 3.2736465484 3.2736455313 3.2743733339 3.2743941551 3.2736465484 3.9145071118 +3.9146585032 3.9146585032 3.9145071118 4.1092868144 4.1092452918 4.1092868144 4.1092452918 3.880921213 3.8808859026 +3.8808859026 3.880921213 9.3903270621e-13 9.3903270621e-13 1.444974388e-10 1.4483200296e-10 1.6549598697e-10 1.6499124662e-10 1.7388254174e-10 +1.7376316672e-10 1.7450748465e-10 1.7463116553e-10 0.015115545956 1.746301484e-10 0.015115545956 1.7388254174e-10 6.1215555569e-11 6.1226341693e-11 +6.1215555569e-11 6.1226341693e-11 8.7130534878e-11 8.7172057488e-11 8.7130534878e-11 8.7172057488e-11 6.2595627293e-11 6.2603577538e-11 6.2595627293e-11 +6.2603577538e-11 9.3903270621e-13 9.3903270621e-13 1.4224730976e-10 1.4390293653e-10 1.6542611948e-10 1.6499144124e-10 1.736764753e-10 1.7422411957e-10 +1.8947726441e-10 0.015115545957 1.7449896418e-10 1.736764753e-10 1.9016807038e-10 0.015010414658 6.092875881e-11 6.112823036e-11 6.092875881e-11 +6.112823036e-11 8.6355331327e-11 8.6355331327e-11 8.7081127508e-11 8.7081127508e-11 6.2528870315e-11 6.2670408598e-11 6.2528870315e-11 6.2670408598e-11 +9.3903270621e-13 9.3903270621e-13 1.4456680383e-10 1.4478714236e-10 1.6551817944e-10 1.6526654014e-10 1.9033706256e-10 1.9002781626e-10 1.8928349833e-10 +1.7388254174e-10 1.8940697008e-10 1.8938256861e-10 1.746301484e-10 1.9011365251e-10 6.1226341693e-11 6.1215555569e-11 6.1215555569e-11 6.1226341693e-11 +8.7130534878e-11 8.7130534878e-11 8.7172057488e-11 8.7172057488e-11 6.2595627293e-11 6.2603577538e-11 6.2603577538e-11 6.2595627293e-11 9.3903270621e-13 +9.3903270621e-13 1.4456680383e-10 1.4494582219e-10 1.6533657443e-10 1.6542437482e-10 1.7388254174e-10 1.7450748465e-10 1.9002883338e-10 1.9006554949e-10 +1.8938256861e-10 1.8935137621e-10 1.7450850178e-10 1.7376316672e-10 6.1226341693e-11 6.1215555569e-11 6.1226341693e-11 6.1215555569e-11 8.7172057488e-11 +8.7130534878e-11 8.7130534878e-11 8.7172057488e-11 6.2603577538e-11 6.2595627293e-11 6.2603577538e-11 6.2595627293e-11 9.3903270621e-13 9.3903270621e-13 +1.4260071398e-10 1.438734368e-10 1.6533676905e-10 1.6548524555e-10 1.7451707224e-10 1.891968069e-10 1.9014276754e-10 1.8924954278e-10 1.7345884077e-10 +1.8937933732e-10 1.8928162603e-10 1.8992538367e-10 6.092875881e-11 6.092875881e-11 6.112823036e-11 6.112823036e-11 8.6355331327e-11 8.6355331327e-11 +8.7081127508e-11 8.7081127508e-11 6.2670408598e-11 6.2528870315e-11 6.2670408598e-11 6.2528870315e-11 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2450409828e-09 1.2459994543e-09 1.2450409828e-09 1.2566370614e-09 +1.2453519057e-09 1.2408706931e-09 1.2408706931e-09 1.2408706931e-09 1.1981087281e-09 1.182787863e-09 1.182787863e-09 1.182787863e-09 1.1824379201e-09 +1.1824379201e-09 1.1840377201e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2439945717e-09 1.1951578878e-09 1.2407173938e-09 1.2407173938e-09 +1.2401008667e-09 1.2340238907e-09 1.2566370614e-09 1.2566370614e-09 1.2334940802e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2332818467e-09 1.2334649773e-09 1.2334649773e-09 1.2474988725e-09 1.2474988725e-09 1.2474988725e-09 1.2473957798e-09 1.2473957798e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2428226649e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2351023854e-09 1.2351023854e-09 1.233616603e-09 1.2334980361e-09 1.2349413673e-09 1.2351023854e-09 1.2334980361e-09 1.2344646073e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.1829722605e-09 1.1829722605e-09 +1.1829722605e-09 1.182216668e-09 1.182216668e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2354584006e-09 1.2354584006e-09 +1.2351332092e-09 1.2349215329e-09 1.2354584006e-09 1.235098726e-09 1.233949158e-09 1.233949158e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2476144837e-09 1.2476144837e-09 1.2476144837e-09 1.2474690751e-09 1.2474690751e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 9.4202246594e-10 1.2566370614e-09 9.4575890602e-10 1.113277069e-09 1.2566370614e-09 1.1148182567e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2446648012e-09 1.2446648012e-09 1.2446648012e-09 1.2445539247e-09 1.2445539247e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2456907052e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.1807716408e-09 1.1807716408e-09 1.1807716408e-09 1.2458334963e-09 1.2458334963e-09 1.2458334963e-09 +1.2484963244e-09 1.2484963244e-09 1.2484963244e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.1823370393e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2485407551e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2426152745e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 9.3583574208e-10 9.6236909539e-10 9.8397984624e-10 9.8397984624e-10 +9.5219299846e-10 9.6236909539e-10 9.6236909539e-10 9.6236909539e-10 9.5219299846e-10 9.5219299846e-10 9.5219299846e-10 9.5655394282e-10 9.8397984624e-10 +9.5219299846e-10 0.61543387648 9.8397984624e-10 9.6033237353e-10 1.1173676758e-09 9.8397984624e-10 9.6236909539e-10 9.7505666586e-10 9.6699391102e-10 +1.2566370614e-09 1.2566370614e-09 9.6571650493e-10 9.525516124e-10 9.5309365405e-10 9.6613740508e-10 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.187991485e-09 1.1888702345e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2434241351e-09 1.2434335276e-09 1.2566370614e-09 1.1857969373e-09 1.1929461592e-09 1.1929461592e-09 1.1929461592e-09 1.2566370614e-09 +1.2566370614e-09 1.1924527572e-09 1.1924527572e-09 1.1774408837e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.242002179e-09 1.2566370614e-09 1.2566370614e-09 9.3058312102e-10 9.2190147756e-10 9.2691236784e-10 9.3058312102e-10 9.2190147756e-10 9.2190147756e-10 +9.3058312102e-10 9.2249984921e-10 9.2190147756e-10 9.3058312102e-10 9.2190147756e-10 9.3058312102e-10 1.2566370614e-09 9.5321768774e-10 9.3798055066e-10 +9.5660694709e-10 9.5660694709e-10 9.3794486848e-10 9.5704022669e-10 9.3794486848e-10 9.6515640895e-10 9.5361389749e-10 9.6548471345e-10 9.4810213763e-10 +9.5704022669e-10 9.5704022669e-10 9.5361389749e-10 9.5660694709e-10 9.3785101269e-10 9.5430670385e-10 9.3785101269e-10 9.6515640895e-10 9.6173746348e-10 +9.5361389749e-10 9.5361389749e-10 9.5361389749e-10 9.537673184e-10 9.537673184e-10 9.6173746348e-10 9.6547608351e-10 9.4494595452e-10 9.3785101269e-10 +9.537673184e-10 9.6173746348e-10 9.6855929338e-10 9.5361389749e-10 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.1804654744e-09 1.2566370614e-09 +1.181958488e-09 1.1830963358e-09 1.1830963358e-09 1.1830963358e-09 1.1827960485e-09 1.1827960485e-09 1.2425266791e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2260501267e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.1944948964e-09 1.1944948964e-09 1.1944948964e-09 1.194439123e-09 1.2566370614e-09 1.2300826774e-09 +1.2566370614e-09 1.2292255138e-09 9.2323501761e-10 9.2223889762e-10 1.2444270516e-09 1.2444270516e-09 1.2444270516e-09 1.1212445876e-09 1.1115991704e-09 +1.1100997753e-09 1.1042042671e-09 1.1042042671e-09 1.1057286672e-09 1.1118674723e-09 1.109934765e-09 1.1187504217e-09 1.109934765e-09 1.1187504217e-09 +1.1122227283e-09 1.1042042671e-09 1.1118674723e-09 1.1042042671e-09 1.1042042671e-09 1.1118674723e-09 1.1057286672e-09 1.1042042671e-09 1.1057286672e-09 +1.1187504217e-09 1.1216489e-09 1.2566370614e-09 1.0972808173e-09 1.0972808173e-09 1.116882393e-09 1.116882393e-09 1.1096350075e-09 1.1032029839e-09 +1.0972808173e-09 1.0972808173e-09 1.116882393e-09 1.116882393e-09 1.116882393e-09 1.0972808173e-09 1.2566370614e-09 1.2474440084e-09 1.2474440084e-09 +1.2474369068e-09 1.2474440084e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 9.1254154114e-10 1.2305322026e-09 +1.2566370614e-09 1.2317547684e-09 1.2566370614e-09 1.2566370614e-09 1.2333494145e-09 1.2333494145e-09 1.2333494145e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +7.9330269668e-10 0.17746064528 7.935802823e-10 7.9330269668e-10 7.935802823e-10 7.935802823e-10 7.9330269668e-10 7.935802823e-10 7.9330269668e-10 +7.935802823e-10 0.7233813132 7.9308000597e-10 7.9308000597e-10 7.9308000597e-10 7.9330269668e-10 7.9308000597e-10 7.935802823e-10 7.935802823e-10 +7.935802823e-10 0.7233813132 7.935802823e-10 7.9308000597e-10 0.17746064528 7.935802823e-10 7.9157146616e-10 7.9059678333e-10 7.9065707723e-10 +7.9110510734e-10 7.8615615119e-10 7.8633166153e-10 7.8603079326e-10 7.8591505448e-10 1.2566370614e-09 1.0961075402e-09 1.0952650847e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.0461981491e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.048603673e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.0408531023e-09 1.1391590396e-09 1.0413163e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.0665603074e-09 9.0008667808e-10 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.0479746252e-09 1.0479746252e-09 1.0415124306e-09 1.0479746252e-09 1.0415124306e-09 1.0479746252e-09 +0.023373012723 1.0415124306e-09 1.0415124306e-09 1.0415124306e-09 1.0479746252e-09 0.023082619391 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.0616494149e-09 1.0473338147e-09 1.057473732e-09 0.2469361002 1.057473732e-09 1.057473732e-09 1.057473732e-09 1.057473732e-09 +1.057473732e-09 1.057473732e-09 0.2469361002 1.057473732e-09 1.057473732e-09 1.057473732e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.1534717223e-09 1.1625781999e-09 1.2566370614e-09 1.2421267006e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2435197743e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2195208076e-09 1.2204436633e-09 1.2204436633e-09 1.2204436633e-09 1.2160303586e-09 1.2160303586e-09 1.2160303586e-09 1.2160303586e-09 1.2160303586e-09 +1.2204436633e-09 1.2204436633e-09 1.2178821495e-09 1.1767192507e-09 1.17525638e-09 1.1767192507e-09 1.17525638e-09 1.17525638e-09 1.1767192507e-09 +0.037197333989 1.17525638e-09 1.1767192507e-09 0.037186126702 1.1767192507e-09 1.17525638e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.1714130969e-09 1.1717391013e-09 1.1754663001e-09 1.170102652e-09 1.0319402014e-09 1.0334990643e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.207103933e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2375519722e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 0.63914997856 +9.4192772247e-10 9.0413715007e-10 9.0413715007e-10 7.9122385278e-10 7.9044600007e-10 7.9044600007e-10 0.72735292234 0.17858059688 7.9122385278e-10 +0.17858059688 0.72735292234 1.0510670578e-09 0.25576200913 0.25576200913 1.0510670578e-09 0.039727186822 1.170642806e-09 0.039727186822 +1.170642806e-09 0.025140782435 1.0273751514e-09 1.0273751514e-09 0.025140782435 1.2566370614e-09 1.2566370614e-09 9.4046022896e-10 9.4029262629e-10 +0.73362643658 9.0413715182e-10 7.9119511231e-10 7.9044648852e-10 0.72813562755 0.17858059688 0.17858059688 7.9044750564e-10 7.9119182357e-10 +0.72813664467 1.0501599035e-09 1.0500562437e-09 0.023523293517 0.023531010429 0.04617897798 0.04618171403 1.1704455593e-09 1.1704040367e-09 +0.28944005439 0.28941256906 1.0273877863e-09 1.0274140997e-09 1.2566370614e-09 1.2566370614e-09 9.4473254411e-10 0.63992115861 9.041369572e-10 +9.041369572e-10 7.9045602611e-10 0.17858059688 7.91278515e-10 0.72736182827 7.91278515e-10 0.72736182827 7.9045602611e-10 0.17858059688 +0.2561515788 1.0527986027e-09 1.0527986027e-09 0.2561515788 0.039922191612 0.039922191612 1.1712207628e-09 1.1712207628e-09 1.0276346859e-09 +0.025218297346 0.025218297346 1.0276346859e-09 POINT_DATA 565 FIELD FieldData 1 radiation%20flux%20density 1 565 double -1.2566385803e-09 1.2566385803e-09 1.2566387643e-09 1.2566385803e-09 8.4716753201e-10 7.821581623e-10 4.8381716152e-10 8.4400408076e-10 4.8382108599e-10 -8.4400408094e-10 8.4716814895e-10 7.8215816296e-10 4.8313422506e-10 8.4464928623e-10 7.8201754638e-10 4.8316655129e-10 4.8314739567e-10 8.4464867148e-10 -7.758009313e-10 4.8255136204e-10 4.8125840005e-10 8.450552311e-10 1.0481161188 1.0482128441 8.4231664144e-10 4.818677201e-10 4.8313331783e-10 -8.4464867025e-10 7.820175457e-10 4.831597835e-10 7.7729675907e-10 8.4842216677e-10 7.8215814806e-10 8.2802319941e-10 8.4720016416e-10 7.7547308692e-10 -1.0488653343 1.0487684822 1.2566378173e-09 1.2566370462e-09 1.2566369343e-09 1.25663701e-09 1.2566371488e-09 1.256637427e-09 1.2566370154e-09 -1.2566369986e-09 1.2566371451e-09 1.2566379591e-09 1.256638018e-09 1.2566370409e-09 1.2566369122e-09 1.2566371277e-09 1.2566369517e-09 1.2566368296e-09 -1.2566376348e-09 1.2566375462e-09 1.2566367735e-09 1.256637054e-09 1.2566372378e-09 1.2566370115e-09 1.2566373545e-09 1.2566370504e-09 1.2566369986e-09 -1.2566371451e-09 1.2566379591e-09 1.256638018e-09 1.2566370409e-09 1.2566369122e-09 1.2566371277e-09 1.2566369517e-09 1.2566368296e-09 1.2566376348e-09 -1.2566378173e-09 1.2566370462e-09 1.2566369343e-09 1.25663701e-09 1.2566371488e-09 1.256637427e-09 1.2566370161e-09 1.2566370524e-09 1.2566370696e-09 -1.2566370146e-09 1.2566374928e-09 1.2566378427e-09 1.2566373856e-09 1.2566372421e-09 1.2566369537e-09 1.2566368296e-09 1.2566376348e-09 1.2566378173e-09 -1.2566370437e-09 1.2566369072e-09 1.2566373079e-09 1.2566370554e-09 1.2566366797e-09 1.2566379492e-09 1.2566381528e-09 1.2566369691e-09 1.2566368529e-09 -1.2566372406e-09 1.2566379789e-09 1.2566375578e-09 1.2566369051e-09 1.2566372154e-09 1.2566370042e-09 1.2566375795e-09 5.7185319567e-10 5.6895539242e-10 -5.7116535377e-10 5.2528354166e-10 5.2648474813e-10 5.6657615484e-10 5.6959810979e-10 5.7208771685e-10 5.2269316089e-10 5.6278606867e-10 5.7339732711e-10 -5.7588843802e-10 5.6807601812e-10 5.65176711e-10 5.7494215823e-10 5.2905884861e-10 5.3034618397e-10 5.3034618199e-10 5.2648324743e-10 5.6657770844e-10 -5.6599248935e-10 5.6516106345e-10 5.7494215e-10 5.2905883876e-10 5.305295919e-10 5.3052956837e-10 5.3432821191e-10 5.3432969857e-10 5.2269317294e-10 -5.6278611898e-10 5.6976967291e-10 5.6893973268e-10 5.7162945868e-10 5.3161820356e-10 5.1892512673e-10 5.1865514459e-10 5.3047920238e-10 5.7409317281e-10 -5.6768556086e-10 0.035925595102 2.0543566112 2.0543566112 0.035973993973 5.68428688e-10 5.6903228658e-10 5.2517741572e-10 5.3431566501e-10 -5.3434227979e-10 5.2269317145e-10 5.6278611898e-10 5.6976966948e-10 5.6893974682e-10 5.7116534554e-10 5.2528354729e-10 5.3433038422e-10 5.3432747153e-10 -5.2137745414e-10 5.6085186181e-10 5.7211207399e-10 5.7661520817e-10 5.6893240255e-10 5.6518273754e-10 5.7494215823e-10 5.2905884545e-10 5.2946644041e-10 -5.5328792498e-10 5.6916140508e-10 5.7165102816e-10 5.763491901e-10 5.7105745411e-10 5.6111459494e-10 5.2152813059e-10 5.2067456627e-10 0.036472826279 -2.06055166 2.06055166 0.036472826279 5.206752887e-10 5.2732391285e-10 5.2732391002e-10 5.2067920839e-10 5.2068235101e-10 5.2678445574e-10 -0.036203244482 2.06125971 2.0612705452 0.036204530636 5.2672526341e-10 2.0399084127 2.0399023075 0.036485745446 5.2070776933e-10 -5.318909949e-10 5.3188949128e-10 5.1695240146e-10 0.036485745442 6.3345850878e-11 6.3343343483e-11 7.7629633261e-11 7.7603448501e-11 1.1190379891e-10 -1.180915895e-10 1.1812452703e-10 1.1807050039e-10 6.3305304558e-11 6.334334585e-11 7.7629648399e-11 7.7572062931e-11 1.1807799063e-10 1.1187928343e-10 -1.1186639001e-10 1.1812452379e-10 6.3305788829e-11 6.3351744085e-11 7.7617979499e-11 7.7656032486e-11 1.1812453461e-10 1.1803235539e-10 1.1180877487e-10 -1.1811928459e-10 6.3094884955e-11 6.3134884772e-11 7.7570160774e-11 7.7486025028e-11 1.1180463662e-10 0.0060462124489 1.1180393853e-10 1.1177940626e-10 -6.2705885603e-11 6.3189577599e-11 7.7511931362e-11 7.7459860815e-11 0.0060251839622 1.1156463294e-10 1.1786137071e-10 1.1185065947e-10 6.3331361621e-11 -6.3351734127e-11 7.7603445801e-11 7.7617988428e-11 1.1809088868e-10 1.1186636312e-10 1.1812452355e-10 1.118663682e-10 3.9986913893 3.9985671182 -3.9396117563 3.9395443705 3.6905816241 3.6905315129 3.6905315129 3.6905816241 6.3343239397e-11 6.3310353694e-11 7.75720959e-11 -7.7656231786e-11 1.1189088511e-10 1.1186635908e-10 1.1187926026e-10 0.006046212449 6.267051106e-11 6.3171411405e-11 7.7500194196e-11 7.7427791698e-11 -1.1154272367e-10 1.1810504459e-10 1.1159773437e-10 0.0060251839622 6.330531251e-11 6.3351722465e-11 7.7659870828e-11 7.7617979375e-11 1.1189090211e-10 -1.181044866e-10 1.1807049911e-10 1.181245273e-10 6.3305310736e-11 6.3374399441e-11 7.7629646515e-11 7.7644267419e-11 1.1807799063e-10 1.1185474935e-10 -1.1807644769e-10 1.1186637253e-10 6.272098997e-11 6.3167164117e-11 7.7485350529e-11 7.7510017223e-11 1.1177113706e-10 1.1767783487e-10 1.1784747424e-10 -1.1801089852e-10 1.2566371741e-09 1.1602464792e-09 1.1598190232e-09 1.2566371059e-09 1.166915237e-09 1.2428701496e-09 1.2544347579e-09 1.2566368437e-09 -1.167161532e-09 1.229236524e-09 1.2542854779e-09 1.2566370979e-09 1.256637199e-09 1.2566371961e-09 1.2566370979e-09 1.2566372484e-09 1.256637199e-09 -1.2344531036e-09 1.2566370289e-09 1.2566372314e-09 1.2566371288e-09 1.2566371288e-09 1.2566370912e-09 1.2566371288e-09 1.1343159986e-09 1.1331985711e-09 -1.1804362753e-09 1.1731171449e-09 1.1803352258e-09 1.1804362725e-09 1.1803352297e-09 1.1804362793e-09 1.1642168956e-09 1.1619550786e-09 1.1619353655e-09 -1.1619353619e-09 1.1658938979e-09 1.1642019571e-09 1.1642220918e-09 1.1642019554e-09 1.1618458462e-09 1.1619792698e-09 1.1618458425e-09 1.1633799373e-09 -1.1633799253e-09 1.1633799273e-09 1.166531547e-09 1.1665315428e-09 1.166623993e-09 1.166531547e-09 1.1679359341e-09 1.1701299329e-09 1.1700657982e-09 -1.1679359329e-09 1.2566372754e-09 1.2566369167e-09 1.1331985486e-09 1.1331985818e-09 1.1331985767e-09 1.1331985857e-09 0.16909844469 1.2537100385e-09 -1.1634419762e-09 1.2566370691e-09 1.2431959756e-09 1.254436524e-09 1.2290903161e-09 1.2290904347e-09 1.2290904341e-09 1.2289058903e-09 1.2289058897e-09 -1.2262794399e-09 1.2547560207e-09 1.2545300223e-09 1.2377161375e-09 1.2400805343e-09 1.2377161336e-09 1.2433909362e-09 1.2433909403e-09 1.2433909398e-09 -1.2433880531e-09 1.2408414668e-09 1.2408414715e-09 1.2408414704e-09 1.2566372151e-09 1.2494905925e-09 1.2495373565e-09 1.2566370397e-09 1.2540093833e-09 -1.2540093743e-09 1.2540093743e-09 1.1604652358e-09 1.1693367841e-09 1.1603219277e-09 1.1604652295e-09 1.1603219283e-09 1.1604652358e-09 1.2493532058e-09 -1.233151446e-09 1.2566368504e-09 1.2528558366e-09 1.2531073063e-09 1.2530178782e-09 1.2531073092e-09 1.2531073081e-09 1.2530473495e-09 1.2530532262e-09 -1.2528558396e-09 1.2566369796e-09 1.2546019314e-09 1.2527558134e-09 1.2546019305e-09 1.2527558164e-09 1.2546019279e-09 1.2527557536e-09 1.1272620408e-09 -1.1285087188e-09 1.2539836194e-09 1.2539836194e-09 1.253881044e-09 1.2533315092e-09 1.2533486867e-09 1.2534696428e-09 1.2530478984e-09 1.253047901e-09 -1.2535376393e-09 1.2533315118e-09 1.2530479264e-09 1.254836382e-09 1.254836382e-09 1.254836382e-09 1.2548126325e-09 1.2549804763e-09 1.2549804763e-09 -1.2551175274e-09 1.2566371637e-09 1.255103739e-09 1.2551047106e-09 1.2551047754e-09 1.2551047754e-09 1.2566370566e-09 1.2566371539e-09 1.2566371539e-09 -1.2566371524e-09 1.1500516773e-09 1.2533268114e-09 1.2533268088e-09 1.2533006714e-09 1.1464931886e-09 1.1517937563e-09 1.1460280165e-09 1.1452059099e-09 -1.1452058812e-09 1.1460280453e-09 1.1451753502e-09 1.1524817711e-09 1.1524040163e-09 1.1524039938e-09 1.1524039789e-09 1.2566370806e-09 1.2566371385e-09 -1.1181032055e-09 1.1248731314e-09 1.1248730759e-09 1.1181032109e-09 1.1248731088e-09 1.1181032339e-09 1.1181032418e-09 1.1248731667e-09 1.1181032346e-09 -0.010046654532 1.1248730688e-09 0.010093185517 1.0966978521e-09 1.25663702e-09 1.1198530662e-09 1.1192719721e-09 1.2566370517e-09 1.2393371687e-09 -1.2393371645e-09 1.2393371718e-09 1.2391514025e-09 1.2391514057e-09 1.256636887e-09 1.2367965643e-09 1.2566368988e-09 1.2566369586e-09 1.2566369586e-09 -1.2566369301e-09 1.2566371177e-09 1.2566371177e-09 1.2566369724e-09 1.2376754629e-09 1.2376754624e-09 1.2376754589e-09 1.2414625881e-09 1.2412771591e-09 -1.2412773269e-09 1.2412771591e-09 1.2412773256e-09 1.2412771578e-09 1.2566370767e-09 1.2379687263e-09 1.2566373661e-09 1.2566378068e-09 1.2566377792e-09 -1.2566377792e-09 1.2566377792e-09 1.2566371965e-09 9.7218050748e-10 0.24166732859 9.7381014859e-10 9.738101548e-10 9.7218050833e-10 9.7218051324e-10 -9.7218051788e-10 9.7218051996e-10 9.7381015285e-10 9.7381015587e-10 9.7381015188e-10 0.24161149141 9.7056864447e-10 9.6621552113e-10 9.6683002613e-10 -9.6608199603e-10 1.2566371556e-09 1.2566374409e-09 1.2566374409e-09 1.2566367604e-09 1.2566367821e-09 1.2566371693e-09 1.2566371693e-09 1.2566372235e-09 -1.2566376339e-09 1.2566368761e-09 1.110092384e-09 1.2566367487e-09 1.2566376538e-09 1.2206920523e-09 1.2236225413e-09 1.2566369776e-09 1.2566369776e-09 -1.2566369741e-09 0.17573256841 1.1283747832e-09 0.010811326873 0.010811326873 0.24531259333 9.6615075275e-10 9.6615075399e-10 0.24531259333 -0.009957475581 0.0099589588855 1.0927376613e-09 0.23413976292 0.25317381346 9.659324273e-10 0.25316606084 9.658971407e-10 1.129435095e-09 -0.1760096908 0.010856746605 0.010856746605 9.6667766295e-10 0.24544678948 9.6667766057e-10 0.24544678948 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 8.4716757868e-10 7.8215805448e-10 4.8381717086e-10 8.4400408432e-10 4.8382108094e-10 +8.4400408432e-10 8.471681938e-10 7.8215805448e-10 4.8313432592e-10 8.4464926087e-10 7.8201749699e-10 4.8316661058e-10 4.831473985e-10 8.4464864574e-10 +7.7580084741e-10 4.8255127406e-10 4.8125827641e-10 8.4505524489e-10 1.0481161512 1.0482128761 8.4231647966e-10 4.8186761393e-10 4.8313329425e-10 +8.4464864574e-10 7.8201749699e-10 4.8315980185e-10 7.7729656559e-10 8.4842220533e-10 7.8215805448e-10 8.2802327753e-10 8.4720011459e-10 7.7547298288e-10 +1.0488653195 1.0487684675 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 5.7185325536e-10 5.689553364e-10 +5.7116530308e-10 5.2528350067e-10 5.26484711e-10 5.665761336e-10 5.6959801807e-10 5.7208767034e-10 5.2269313587e-10 5.6278605304e-10 5.733972268e-10 +5.7588837363e-10 5.6807608276e-10 5.6517666924e-10 5.7494209009e-10 5.2905879313e-10 5.3034612511e-10 5.3034612511e-10 5.2648321644e-10 5.6657762816e-10 +5.6599243703e-10 5.6516102661e-10 5.7494209009e-10 5.2905879313e-10 5.3052951883e-10 5.3052951883e-10 5.3432812923e-10 5.3432962379e-10 5.2269313587e-10 +5.6278605304e-10 5.6976960963e-10 5.6893969377e-10 5.7162958871e-10 5.3161835908e-10 5.1892503775e-10 5.1865517829e-10 5.3047889165e-10 5.7409304434e-10 +5.6768541208e-10 0.03592561341 2.0543565632 2.0543565632 0.035974012302 5.684285933e-10 5.6903216113e-10 5.2517725778e-10 5.3431561543e-10 +5.3434222315e-10 5.2269313587e-10 5.6278605304e-10 5.6976960963e-10 5.6893969377e-10 5.7116530308e-10 5.2528350067e-10 5.3433034157e-10 5.3432741223e-10 +5.2137744506e-10 5.6085186381e-10 5.7211203139e-10 5.7661517347e-10 5.6893245106e-10 5.6518261627e-10 5.7494209009e-10 5.2905879313e-10 5.2946648566e-10 +5.532879507e-10 5.6916133625e-10 5.7165098852e-10 5.7634920704e-10 5.7105740924e-10 5.6111457029e-10 5.2152799612e-10 5.2067472634e-10 0.036472821067 +2.0605517141 2.0605517141 0.036472821067 5.2067544335e-10 5.2732382806e-10 5.2732382806e-10 5.2067912542e-10 5.2068218596e-10 5.267845259e-10 +0.036203239583 2.0612596581 2.0612704631 0.036204525735 5.2672522327e-10 2.0399083155 2.0399022609 0.036485740219 5.2070782415e-10 +5.3189101933e-10 5.3188952477e-10 5.1695243607e-10 0.036485740215 6.3345835966e-11 6.334332182e-11 7.7629567389e-11 7.7603406454e-11 1.1190379454e-10 +1.1809160689e-10 1.1812450752e-10 1.1807042052e-10 6.3305292876e-11 6.334332182e-11 7.7629567389e-11 7.7572012753e-11 1.1807796717e-10 1.1187926179e-10 +1.1186634883e-10 1.1812450752e-10 6.3305778739e-11 6.3351715163e-11 7.7617895007e-11 7.7655945123e-11 1.1812450752e-10 1.1803233918e-10 1.1180874433e-10 +1.1811929795e-10 6.3094842168e-11 6.3134821673e-11 7.757005007e-11 7.7485926677e-11 1.1180461501e-10 0.0060462184246 1.1180393298e-10 1.1177940022e-10 +6.270588177e-11 6.3189539437e-11 7.7511825341e-11 7.7459820578e-11 0.0060251921651 1.1156460824e-10 1.1786141881e-10 1.1185063757e-10 6.3331306865e-11 +6.3351715163e-11 7.7603406454e-11 7.7617895007e-11 1.1809088014e-10 1.1186634883e-10 1.1812450752e-10 1.1186634883e-10 3.9986914264 3.998567012 +3.9396115699 3.939544184 3.6905814468 3.6905314343 3.6905314343 3.6905814468 6.3343178467e-11 6.3310328939e-11 7.7572012753e-11 +7.7656136146e-11 1.1189088158e-10 1.1186634883e-10 1.1187926179e-10 0.0060462184246 6.267050792e-11 6.3171388239e-11 7.7500148322e-11 7.7427701949e-11 +1.1154271106e-10 1.1810502025e-10 1.1159767999e-10 0.0060251921651 6.3305292876e-11 6.3351715163e-11 7.765983489e-11 7.7617895007e-11 1.1189088158e-10 +1.1810451986e-10 1.1807042052e-10 1.1812450752e-10 6.3305292876e-11 6.337438371e-11 7.7629567389e-11 7.7644200787e-11 1.1807796717e-10 1.1185472904e-10 +1.1807643726e-10 1.1186634883e-10 6.2720994238e-11 6.3167173993e-11 7.7485256584e-11 7.7510002667e-11 1.117711359e-10 1.1767782093e-10 1.178474708e-10 +1.1801093858e-10 1.2566370614e-09 1.1602463981e-09 1.1598188478e-09 1.2566370614e-09 1.1669151744e-09 1.2428700809e-09 1.254434907e-09 1.2566370614e-09 +1.1671616109e-09 1.229236456e-09 1.254285331e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2344529906e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.134315796e-09 1.1331986023e-09 +1.1804361139e-09 1.1731170817e-09 1.1803350608e-09 1.1804361139e-09 1.1803350608e-09 1.1804361139e-09 1.164216643e-09 1.1619550642e-09 1.1619353031e-09 +1.1619353031e-09 1.1658939881e-09 1.1642018781e-09 1.16422203e-09 1.1642018781e-09 1.1618459195e-09 1.1619792766e-09 1.1618459195e-09 1.1633797929e-09 +1.1633797929e-09 1.1633797929e-09 1.1665314141e-09 1.1665314141e-09 1.1666241338e-09 1.1665314141e-09 1.1679360497e-09 1.1701299857e-09 1.1700658939e-09 +1.1679360497e-09 1.2566370614e-09 1.2566370614e-09 1.1331986023e-09 1.1331986023e-09 1.1331986023e-09 1.1331986023e-09 0.16909850573 1.253710085e-09 +1.1634417977e-09 1.2566370614e-09 1.2431959689e-09 1.2544364725e-09 1.2290906066e-09 1.2290906066e-09 1.2290906066e-09 1.2289060198e-09 1.2289060198e-09 +1.2262793764e-09 1.2547562022e-09 1.2545299798e-09 1.2377160459e-09 1.2400807335e-09 1.2377160459e-09 1.2433910689e-09 1.2433910689e-09 1.2433910689e-09 +1.2433879949e-09 1.2408415092e-09 1.2408415092e-09 1.2408415092e-09 1.2566370614e-09 1.2494906731e-09 1.2495374378e-09 1.2566370614e-09 1.2540093334e-09 +1.2540093334e-09 1.2540093334e-09 1.1604647443e-09 1.1693367274e-09 1.1603216301e-09 1.1604647443e-09 1.1603216301e-09 1.1604647443e-09 1.2493531826e-09 +1.2331514479e-09 1.2566370614e-09 1.2528557442e-09 1.2531072846e-09 1.2530178067e-09 1.2531072846e-09 1.2531072846e-09 1.2530473389e-09 1.2530530861e-09 +1.2528557442e-09 1.2566370614e-09 1.2546020598e-09 1.2527557869e-09 1.2546020598e-09 1.2527557869e-09 1.2546020598e-09 1.2527557869e-09 1.1272619555e-09 +1.1285085131e-09 1.2539837835e-09 1.2539837835e-09 1.253881029e-09 1.2533314864e-09 1.2533484245e-09 1.253469568e-09 1.2530479488e-09 1.2530479488e-09 +1.2535376766e-09 1.2533314864e-09 1.2530479488e-09 1.2548364673e-09 1.2548364673e-09 1.2548364673e-09 1.2548126687e-09 1.2549804788e-09 1.2549804788e-09 +1.2551174033e-09 1.2566370614e-09 1.2551037023e-09 1.2551048859e-09 1.2551048859e-09 1.2551048859e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.1500516547e-09 1.2533267637e-09 1.2533267637e-09 1.2533006022e-09 1.1464931976e-09 1.1517937409e-09 1.146028026e-09 1.1452059e-09 +1.1452059e-09 1.146028026e-09 1.1451753783e-09 1.1524816617e-09 1.1524037814e-09 1.1524037814e-09 1.1524037814e-09 1.2566370614e-09 1.2566370614e-09 +1.1181030876e-09 1.1248733525e-09 1.1248733525e-09 1.1181030876e-09 1.1248733525e-09 1.1181030876e-09 1.1181030876e-09 1.1248733525e-09 1.1181030876e-09 +0.010046659649 1.1248733525e-09 0.010093190654 1.0966978034e-09 1.2566370614e-09 1.1198529497e-09 1.1192721261e-09 1.2566370614e-09 1.2393374235e-09 +1.2393374235e-09 1.2393374235e-09 1.2391515951e-09 1.2391515951e-09 1.2566370614e-09 1.236796031e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2376751169e-09 1.2376751169e-09 1.2376751169e-09 1.2414628283e-09 1.2412770412e-09 +1.2412770412e-09 1.2412770412e-09 1.2412770412e-09 1.2412770412e-09 1.2566370614e-09 1.2379685245e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 9.7218056615e-10 0.24166743962 9.7381011738e-10 9.7381011738e-10 9.7218056615e-10 9.7218056615e-10 +9.7218056615e-10 9.7218056615e-10 9.7381011738e-10 9.7381011738e-10 9.7381011738e-10 0.24161160241 9.7056866454e-10 9.6621571174e-10 9.6682937739e-10 +9.6608203921e-10 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 1.2566370614e-09 1.110092386e-09 1.2566370614e-09 1.2566370614e-09 1.2206919217e-09 1.223622451e-09 1.2566370614e-09 1.2566370614e-09 +1.2566370614e-09 0.17573262471 1.1283745104e-09 0.010811328936 0.010811328936 0.24531269952 9.661509736e-10 9.661509736e-10 0.24531269952 +0.0099574681673 0.0099589614476 1.0927376159e-09 0.23413995888 0.25317400408 9.6593243609e-10 0.253166213 9.6589727574e-10 1.1294350569e-09 +0.17600981456 0.010856748886 0.010856748886 9.6667771851e-10 0.24544689858 9.6667771851e-10 0.24544689858 diff --git a/tests/input/validation_tests/SN_solver/linesource_SN.cfg b/tests/input/validation_tests/SN_solver/linesource_SN.cfg index 34e079cb..0d2850a6 100644 --- a/tests/input/validation_tests/SN_solver/linesource_SN.cfg +++ b/tests/input/validation_tests/SN_solver/linesource_SN.cfg @@ -6,7 +6,7 @@ % % ---- File specifications ---- OUTPUT_DIR = ../../../result -OUTPUT_FILE = rtsn_test_linesource_SN +OUTPUT_FILE = linesource_SN LOG_DIR = ../../../result/logs MESH_FILE = ../../mesh_files/linesource.su2 % diff --git a/tests/input/validation_tests/SN_solver/linesource_SN_reference.vtk b/tests/input/validation_tests/SN_solver/linesource_SN_reference.vtk index 7b83a1c3..d2562891 100644 --- a/tests/input/validation_tests/SN_solver/linesource_SN_reference.vtk +++ b/tests/input/validation_tests/SN_solver/linesource_SN_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -5.2299670412e-24 5.3739695314e-24 1.2876908132e-23 1.1341305666e-23 0.91042990431 2.2621228002e-18 4.9605699915e-19 0.82604083331 1.5912103373e-17 -1.6374011773e-17 1.0131098874 0.90246743857 0.99001374466 0.80091869183 1.0417132339e-38 8.2282444619e-09 3.7062559801e-47 8.9648332221e-37 -5.3097545178e-46 1.3739386831e-46 2.213662313e-48 4.5318881302e-20 6.9276502437e-37 1.291331762e-39 1.9714434569e-19 5.8209629874e-09 5.2918950188e-57 -9.730403663e-62 3.7547209723e-47 3.6926812149e-57 6.3868111957e-62 2.2308036667e-17 5.2834271518e-19 2.4567243488e-38 1.0511135628e-36 1.4221668707e-38 -2.7920599736e-19 1.8851483011e-17 4.8419142523e-46 1.1816815545e-36 1.4098981214e-46 2.5109514664e-48 8.3773403343e-09 3.8386182785e-08 0.98504044053 -0.99115033088 5.5437394339e-62 3.400973218e-62 2.0940399615e-58 2.1086561375e-58 8.3938318613e-20 4.3543694861e-19 2.2422817507e-37 8.9500189514e-39 -1.4750817345e-38 2.2672921254e-37 7.6063528872e-103 3.484648315e-102 3.683679358e-102 7.5373473791e-103 6.9038931333e-103 4.5741930481e-102 4.8167363843e-102 -6.8427826467e-103 1.0721893112e-17 1.0371502804e-17 0.244191679 0.25443598055 1.6265972186e-18 2.7665138699e-19 0.47747760737 0.40676247613 -0.20818883619 0.25948924366 1.7970333812e-67 1.2724083183e-67 1.5700266613e-68 1.7003325729e-68 1.5310138235e-68 1.3712904415e-67 1.9406355039e-67 -1.4139138335e-68 6.9212321459e-08 7.6866924255e-09 4.8244450864e-08 7.2038796359e-08 4.9265334412e-48 3.2614569198e-49 5.6248229303e-48 3.0439390774e-49 -1.3705565603e-07 7.4118493039e-08 0.40829497722 0.30146812898 1.7337255188e-08 9.7549053648e-08 +5.2299740662e-24 5.3739847147e-24 1.2876915013e-23 1.1341326851e-23 0.91042977226 2.2621186235e-18 4.9605718503e-19 0.82604315306 1.5912066839e-17 +1.6374035825e-17 1.0131078624 0.90246740872 0.99001569041 0.80091882348 1.0417172931e-38 8.228223952e-09 3.7062504529e-47 8.9648449152e-37 +5.3097671277e-46 1.3739341918e-46 2.2136584726e-48 4.5318943624e-20 6.927646739e-37 1.2913327803e-39 1.971449331e-19 5.8209493651e-09 5.2918898662e-57 +9.730429216e-62 3.7547180639e-47 3.6926753731e-57 6.3868227624e-62 2.2308100077e-17 5.2834354972e-19 2.4567168182e-38 1.0511114796e-36 1.4221672697e-38 +2.7920621999e-19 1.8851524972e-17 4.8419258827e-46 1.181683867e-36 1.4098934923e-46 2.5109522538e-48 8.3773768268e-09 3.8386268408e-08 0.98504244154 +0.99114860472 5.5437425452e-62 3.4009725163e-62 2.094040234e-58 2.1086545604e-58 8.3938411849e-20 4.354382588e-19 2.2422866459e-37 8.9500152998e-39 +1.4750794505e-38 2.267295004e-37 7.6063751257e-103 3.4846476952e-102 3.6836787027e-102 7.5373694159e-103 6.9038830299e-103 4.5741825085e-102 4.8167466853e-102 +6.8427993328e-103 1.0721937712e-17 1.0371532079e-17 0.24419090799 0.25443480891 1.6265976804e-18 2.7665131253e-19 0.47747697006 0.40676206476 +0.20818930303 0.25948909188 1.7970341537e-67 1.27240516e-67 1.5700286506e-68 1.7003332817e-68 1.531022488e-68 1.3712852608e-67 1.9406396779e-67 +1.4139156395e-68 6.9212321629e-08 7.6866938132e-09 4.8244560614e-08 7.2038951583e-08 4.9265469729e-48 3.2614765403e-49 5.6248213449e-48 3.0439402464e-49 +1.3705575759e-07 7.4118287325e-08 0.4082948249 0.30146797487 1.7337201608e-08 9.7549100633e-08 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -7.2551230102e-103 4.0294206816e-102 4.2502078711e-102 7.1900650129e-103 0.99482860087 3.243468398e-62 3.4723774589e-39 8.1890811875e-39 4.9169391274e-39 -1.1336619807e-62 1.7639650063e-57 2.9882777423e-37 3.9389385184e-37 7.47427252e-38 1.8479191347e-62 1.2308937384e-57 2.3092167484e-37 3.5037118769e-37 -7.5576404225e-38 6.9801332055e-59 2.1289375365e-62 4.3044392151e-40 4.7405562372e-39 2.9833396512e-39 7.0288537922e-59 1.1535386914e-08 1.2811154044e-09 -3.8048582609e-18 1.3962233891e-09 6.3976971341e-09 3.285828661e-20 3.8207896363e-18 7.5540185448e-21 1.3713740771e-09 0.040698617427 0.20888320394 -0.034698153114 9.70160498e-10 0.042406013987 0.23032415939 8.0407418156e-09 0.2614532075 0.043248236516 1.2006466065e-08 0.29936710502 -7.2574970919e-20 1.3991609986e-20 1.1038768002e-19 5.5553217839e-19 0.61350404118 0.64971637984 0.62890363214 0.59339763229 9.8530668825e-49 -6.5229138396e-50 1.1249645861e-48 6.0878781548e-50 0.095495563293 0.081352519698 0.060293630801 0.081659028795 +7.2551290778e-103 4.0294151019e-102 4.250212694e-102 7.1900843743e-103 0.99482864976 3.2434769157e-62 3.4723909896e-39 8.1890560855e-39 4.9169315141e-39 +1.1336617468e-62 1.7639632888e-57 2.98828164e-37 3.9389462269e-37 7.4742888374e-38 1.8479201719e-62 1.2308917911e-57 2.3092155801e-37 3.5037049331e-37 +7.5576500178e-38 6.9801341139e-59 2.1289413921e-62 4.3044426095e-40 4.7405575673e-39 2.983338434e-39 7.0288485353e-59 1.1535386942e-08 1.2811156357e-09 +3.8048594132e-18 1.3962294712e-09 6.3977114045e-09 3.2858384514e-20 3.8207972545e-18 7.554028933e-21 1.3713706588e-09 0.040698488925 0.20888317518 +0.034698230921 9.7015822762e-10 0.042405818713 0.23032432506 8.0407601073e-09 0.26145310867 0.04324821122 1.2006491936e-08 0.29936695141 +7.2575189285e-20 1.3991625529e-20 1.1038769593e-19 5.5553164769e-19 0.61350410291 0.64971624055 0.62890374421 0.59339788169 9.8530939458e-49 +6.5229530807e-50 1.124964269e-48 6.0878804929e-50 0.095495435831 0.081352437424 0.060293599978 0.081658998331 diff --git a/tests/input/validation_tests/output/validate_logger_reference b/tests/input/validation_tests/output/validate_logger_reference index 0793efaa..e2c03087 100644 --- a/tests/input/validation_tests/output/validate_logger_reference +++ b/tests/input/validation_tests/output/validate_logger_reference @@ -1,19 +1,23 @@ -2024-02-06 16:29:23.315188 | | Importing mesh. This may take a while for large meshes. -2024-02-06 16:29:23.315619 | | Mesh imported. -2024-02-06 16:29:23.315684 | | Compute cell areas... -2024-02-06 16:29:23.315723 | | Compute cell midpoints... -2024-02-06 16:29:23.315794 | | Load mesh connectivity from file /home/8v5/Projects/KiT-RT/tests/input/mesh_files/linesource.con -2024-02-06 16:29:23.318056 | | Compute boundary... -2024-02-06 16:29:23.318612 | | Smallest characteristic length of a grid cell in this mesh: 0.104859 -2024-02-06 16:29:23.318620 | | Corresponding maximal time-step: 0.073401 -2024-02-06 16:29:23.320628 | ---------------------------- Solver Starts ----------------------------- -2024-02-06 16:29:23.320640 | | The simulation will run for 2 iterations. -2024-02-06 16:29:23.320645 | | The spatial grid contains 96 cells. -2024-02-06 16:29:23.320651 | | The velocity grid contains 86 points. -2024-02-06 16:29:23.320655 | --------------------------------------------------------------------------------------- -2024-02-06 16:29:23.320658 | | Iter | Mass | RMS flux | VTK out | CSV out | -2024-02-06 16:29:23.320662 | --------------------------------------------------------------------------------------- -2024-02-06 16:29:23.323404 | | 0 | 1.4451e-01 | 4.0368e | no | yes | -2024-02-06 16:29:23.326003 | | 1 | 1.4451e-01 | 2.0608e | yes | yes | -2024-02-06 16:29:23.327608 | -------------------------------------------------------------- -2024-02-06 16:29:23.327616 | --------------------------- Solver Finished ---------------------------- +2024-02-07 09:35:33.188474 | | Importing mesh. This may take a while for large meshes. +2024-02-07 09:35:33.188904 | | Mesh imported. +2024-02-07 09:35:33.188965 | | Compute cell areas... +2024-02-07 09:35:33.189012 | | Compute cell midpoints... +2024-02-07 09:35:33.189068 | | Compute mesh connectivity... +2024-02-07 09:35:33.189211 | | ...sort cells... +2024-02-07 09:35:33.189254 | | ...connect cells to nodes... +2024-02-07 09:35:33.189427 | | ...determine neighbors of cells... +2024-02-07 09:35:33.194739 | | Save mesh connectivity to file /home/8v5/Projects/KiT-RT/tests/input/mesh_files/linesource.con +2024-02-07 09:35:33.196688 | | Compute boundary... +2024-02-07 09:35:33.197246 | | Smallest characteristic length of a grid cell in this mesh: 0.104859 +2024-02-07 09:35:33.197254 | | Corresponding maximal time-step: 0.073401 +2024-02-07 09:35:33.199058 | ---------------------------- Solver Starts ----------------------------- +2024-02-07 09:35:33.199069 | | The simulation will run for 2 iterations. +2024-02-07 09:35:33.199074 | | The spatial grid contains 96 cells. +2024-02-07 09:35:33.199079 | | The velocity grid contains 86 points. +2024-02-07 09:35:33.199083 | --------------------------------------------------------------------------------------- +2024-02-07 09:35:33.199086 | | Iter | Mass | RMS flux | VTK out | CSV out | +2024-02-07 09:35:33.199090 | --------------------------------------------------------------------------------------- +2024-02-07 09:35:33.201771 | | 0 | 1.4451e-01 | 4.0368e | no | yes | +2024-02-07 09:35:33.204306 | | 1 | 1.4451e-01 | 2.0608e | yes | yes | +2024-02-07 09:35:33.205929 | -------------------------------------------------------------- +2024-02-07 09:35:33.205948 | --------------------------- Solver Finished ---------------------------- diff --git a/tests/test_cases.cpp b/tests/test_cases.cpp index 4bfa781c..cbc6c10b 100644 --- a/tests/test_cases.cpp +++ b/tests/test_cases.cpp @@ -41,7 +41,7 @@ TEST_CASE( "SN_SOLVER", "[validation_tests]" ) { solver->Solve(); solver->PrintVolumeOutput(); - auto test = readVTKFile( std::string( TESTS_PATH ) + "result/rtsn_test_checkerboard_SN.vtk" ); + auto test = readVTKFile( std::string( TESTS_PATH ) + "result/checkerboard_SN.vtk" ); auto reference = readVTKFile( std::string( TESTS_PATH ) + sn_fileDir + "checkerboard_SN_reference.vtk" ); double eps = 1e-3; @@ -66,7 +66,7 @@ TEST_CASE( "SN_SOLVER", "[validation_tests]" ) { solver->Solve(); solver->PrintVolumeOutput(); - auto test = readVTKFile( std::string( TESTS_PATH ) + "result/rtsn_test_linesource_SN.vtk" ); + auto test = readVTKFile( std::string( TESTS_PATH ) + "result/linesource_SN.vtk" ); auto reference = readVTKFile( std::string( TESTS_PATH ) + sn_fileDir + "linesource_SN_reference.vtk" ); double eps = 1e-3; @@ -91,7 +91,7 @@ TEST_CASE( "PN_SOLVER", "[validation_tests]" ) { solver->Solve(); solver->PrintVolumeOutput(); - auto test = readVTKFile( std::string( TESTS_PATH ) + "result/rtsn_test_checkerboard_PN.vtk" ); + auto test = readVTKFile( std::string( TESTS_PATH ) + "result/checkerboard_PN.vtk" ); auto reference = readVTKFile( std::string( TESTS_PATH ) + pn_fileDir + "checkerboard_PN_reference.vtk" ); double eps = 1e-3; @@ -113,7 +113,7 @@ TEST_CASE( "PN_SOLVER", "[validation_tests]" ) { solver->Solve(); solver->PrintVolumeOutput(); - auto test = readVTKFile( std::string( TESTS_PATH ) + "result/rtsn_test_linesource_PN.vtk" ); + auto test = readVTKFile( std::string( TESTS_PATH ) + "result/linesource_PN.vtk" ); auto reference = readVTKFile( std::string( TESTS_PATH ) + pn_fileDir + "linesource_PN_reference.vtk" ); double eps = 1e-3; @@ -140,7 +140,7 @@ TEST_CASE( "MN_SOLVER", "[validation_tests]" ) { solver->Solve(); solver->PrintVolumeOutput(); - auto test = readVTKFile( std::string( TESTS_PATH ) + "result/rtsn_test_checkerboard_MN.vtk" ); + auto test = readVTKFile( std::string( TESTS_PATH ) + "result/checkerboard_MN.vtk" ); auto reference = readVTKFile( std::string( TESTS_PATH ) + mn_fileDir + "checkerboard_MN_reference.vtk" ); double eps = 1e-3; @@ -164,7 +164,7 @@ TEST_CASE( "MN_SOLVER", "[validation_tests]" ) { solver->Solve(); solver->PrintVolumeOutput(); - auto test = readVTKFile( std::string( TESTS_PATH ) + "result/rtsn_test_linesource_MN_Quad.vtk" ); + auto test = readVTKFile( std::string( TESTS_PATH ) + "result/linesource_MN_Quad.vtk" ); auto reference = readVTKFile( std::string( TESTS_PATH ) + mn_fileDir + "linesource_MN_Quad_reference.vtk" ); double eps = 1e-3; @@ -192,7 +192,7 @@ TEST_CASE( "MN_SOLVER", "[validation_tests]" ) { solver->Solve(); solver->PrintVolumeOutput(); - auto test = readVTKFile( std::string( TESTS_PATH ) + "result/rtsn_test_linesource_MN_MB.vtk" ); + auto test = readVTKFile( std::string( TESTS_PATH ) + "result/linesource_MN_MB.vtk" ); auto reference = readVTKFile( std::string( TESTS_PATH ) + mn_fileDir + "linesource_MN_MB_reference.vtk" ); double eps = 1e-3; @@ -220,7 +220,7 @@ TEST_CASE( "MN_SOLVER", "[validation_tests]" ) { solver->Solve(); solver->PrintVolumeOutput(); - auto test = readVTKFile( std::string( TESTS_PATH ) + "result/rtsn_test_linesource_MN_MB_regularized.vtk" ); + auto test = readVTKFile( std::string( TESTS_PATH ) + "result/linesource_MN_MB_regularized.vtk" ); auto reference = readVTKFile( std::string( TESTS_PATH ) + mn_fileDir + "linesource_MN_MB_regularized_reference.vtk" ); double eps = 1e-3; @@ -246,7 +246,7 @@ TEST_CASE( "MN_SOLVER", "[validation_tests]" ) { // solver->Solve(); // solver->PrintVolumeOutput(); // - // auto test = readVTKFile( std::string( TESTS_PATH ) + "result/rtsn_test_checkerboard_MN_neural.vtk" ); + // auto test = readVTKFile( std::string( TESTS_PATH ) + "result/checkerboard_MN_neural.vtk" ); // auto reference = readVTKFile( std::string( TESTS_PATH ) + mn_fileDir + "checkerboard_MN_reference_neural.vtk" ); // // double eps = 1e-3; @@ -292,7 +292,7 @@ TEST_CASE( "CSD_PN_SOLVER", "[validation_tests]" ) { solver->Solve(); solver->PrintVolumeOutput(); auto test = readVTKFile( std::string( TESTS_PATH ) + "result/starmap_validation_2nd.vtk" ); - auto reference = readVTKFile( std::string( TESTS_PATH ) + csd_sn_fileDir + "starmap_validation_reference_2nd.vtk" ); + auto reference = readVTKFile( std::string( TESTS_PATH ) + csd_sn_fileDir + "starmap_validation_2nd_reference.vtk" ); double eps = 1e-3; REQUIRE( test.size() == reference.size() ); @@ -313,7 +313,7 @@ TEST_CASE( "CSD_MN_SOLVER", "[validation_tests]" ) { SolverBase* solver = SolverBase::Create( config ); solver->Solve(); solver->PrintVolumeOutput(); - auto test = readVTKFile( std::string( TESTS_PATH ) + "result/test_pointsource_dual_density_MN.vtk" ); + auto test = readVTKFile( std::string( TESTS_PATH ) + "result/pointsource_dual_density_MN.vtk" ); auto reference = readVTKFile( std::string( TESTS_PATH ) + csd_mn_fileDir + "point_source_dual_density_reference_MN.vtk" ); double eps = 1e-3; @@ -333,7 +333,7 @@ TEST_CASE( "CSD_MN_SOLVER", "[validation_tests]" ) { SolverBase* solver = SolverBase::Create( config ); solver->Solve(); solver->PrintVolumeOutput(); - auto test = readVTKFile( std::string( TESTS_PATH ) + "result/test_pointsource_dual_density_MN_2nd.vtk" ); + auto test = readVTKFile( std::string( TESTS_PATH ) + "result/pointsource_dual_density_MN_2nd.vtk" ); auto reference = readVTKFile( std::string( TESTS_PATH ) + csd_mn_fileDir + "point_source_dual_density_reference_2nd_MN.vtk" ); double eps = 1e-3; diff --git a/tests/test_mesh.cpp b/tests/test_mesh.cpp index e2ba6726..f0460262 100644 --- a/tests/test_mesh.cpp +++ b/tests/test_mesh.cpp @@ -5,6 +5,7 @@ #include "common/globalconstants.hpp" #include "common/io.hpp" #include "common/mesh.hpp" +#include TEST_CASE( "unit mesh tests", "[mesh]" ) { std::string config_file_name = std::string( TESTS_PATH ) + "input/unit_tests/common/unit_mesh.cfg"; @@ -72,7 +73,11 @@ TEST_CASE( "unit mesh tests", "[mesh]" ) { for( unsigned j = 0; j < mesh->GetNumNodesPerCell(); ++j ) { sum += n[i][j]; } - if( blaze::l2Norm( sum ) > eps ) errorWithinBounds = false; + if( blaze::l2Norm( sum ) > eps ) { + errorWithinBounds = false; + + std::cout << blaze::l2Norm( sum ) << "\n"; + } } REQUIRE( errorWithinBounds ); } diff --git a/tests/test_quadrature.cpp b/tests/test_quadrature.cpp index b99c5727..89994ca0 100644 --- a/tests/test_quadrature.cpp +++ b/tests/test_quadrature.cpp @@ -399,8 +399,7 @@ TEST_CASE( "Quadrature Tests", "[quadrature]" ) { points = Q->GetPoints(); pointsSphere = Q->GetPointsSphere(); for( unsigned idx_nq = 0; idx_nq < Q->GetNq(); idx_nq++ ) { - result = Omega_x( pointsSphere[idx_nq][0], pointsSphere[idx_nq][1] ); - double y = Omega_y( pointsSphere[idx_nq][0], pointsSphere[idx_nq][1] ); + result = Omega_x( pointsSphere[idx_nq][0], pointsSphere[idx_nq][1] ); if( !approxequal( points[idx_nq][0], result, lowAccuracyTesting ) ) { testPassed = false; From b8e85b6a1c4e291ab01e079c10adffa6fdcf7631 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 7 Feb 2024 15:09:46 -0500 Subject: [PATCH 075/155] fixed all test cases locally. added unit test for mesh connectivity file reader --- include/common/config.hpp | 75 +- include/common/io.hpp | 2 +- src/common/io.cpp | 10 +- src/common/mesh.cpp | 7 +- .../starmap_validation_2nd_reference.vtk | 2367 +++++++++++++++++ tests/test_cases.cpp | 19 +- tests/test_mesh.cpp | 72 +- 7 files changed, 2501 insertions(+), 51 deletions(-) create mode 100644 tests/input/validation_tests/CSD_PN_solver/starmap_validation_2nd_reference.vtk diff --git a/include/common/config.hpp b/include/common/config.hpp index c28a4a80..9c9ca887 100644 --- a/include/common/config.hpp +++ b/include/common/config.hpp @@ -48,8 +48,9 @@ class Config // std::vector _1dIntegrationBounds; /*!< @brief Quadrature Order*/ // Mesh - unsigned _nCells; /*!< @brief Number of cells in the mesh */ - unsigned short _dim; /*!< @brief spatial dimensionality of the mesh/test case */ + unsigned _nCells; /*!< @brief Number of cells in the mesh */ + unsigned short _dim; /*!< @brief spatial dimensionality of the mesh/test case */ + bool _forcedConnectivityWrite; /*!< @brief If true, the meshconnectivity is always computed and written to .con file */ // Boundary Conditions /*!< @brief List of all Pairs (marker, BOUNDARY_TYPE), e.g. (farfield,DIRICHLET). @@ -293,13 +294,14 @@ class Config std::string inline GetDataDir() const { return std::filesystem::path( _dataDir ).lexically_normal(); } // Quadrature Structure - unsigned GetNQuadPoints() { return _nQuadPoints; } + unsigned GetNQuadPoints() const { return _nQuadPoints; } QUAD_NAME inline GetQuadName() const { return _quadName; } unsigned short inline GetQuadOrder() const { return _quadOrder; } // Mesh Structure - unsigned GetNCells() { return _nCells; } + unsigned GetNCells() const { return _nCells; } unsigned short GetDim() const { return _dim; } + bool inline GetForcedConnectivity() const { return _forcedConnectivityWrite; } // Solver Structure double inline GetCFL() const { return _CFL; } @@ -326,9 +328,9 @@ class Config std::vector inline GetLatticeAbsorptionIndividual() const { return _dsgnAbsIndividual; } unsigned short inline GetNLatticeAbsIndividual() { return _nDsgnAbsIndividual; } std::vector inline GetLatticeScatterIndividual() const { return _dsgnScatterIndividual; } - unsigned short inline GetNLatticeScatterIndividual() { return _nDsgnScatterIndividual; } + unsigned short inline GetNLatticeScatterIndividual() const { return _nDsgnScatterIndividual; } // Hohlraum - unsigned short inline GetNumProbingCellsLineHohlraum() { return _nProbingCellsLineGreenHohlraum; } + unsigned short inline GetNumProbingCellsLineHohlraum() const{ return _nProbingCellsLineGreenHohlraum; } // Optimizer double inline GetNewtonOptimizerEpsilon() const { return _optimizerEpsilon; } @@ -341,9 +343,9 @@ class Config double inline GetEntropyDynamicAnsatz() const { return _entropyDynamicClosure; } // Neural Closure - unsigned short inline GetModelMK() { return _neuralModel; } - unsigned short inline GetNeuralModelGamma() { return _neuralGamma; } - bool inline GetEnforceNeuralRotationalSymmetry() { return _enforceNeuralRotationalSymmetry; } + unsigned short inline GetModelMK() const{ return _neuralModel; } + unsigned short inline GetNeuralModelGamma() const{ return _neuralGamma; } + bool inline GetEnforceNeuralRotationalSymmetry()const { return _enforceNeuralRotationalSymmetry; } // Boundary Conditions BOUNDARY_TYPE GetBoundaryType( std::string nameMarker ) const; /*!< @brief Get Boundary Type of given marker */ @@ -354,38 +356,38 @@ class Config // Basis name SPHERICAL_BASIS_NAME inline GetSphericalBasisName() const { return _sphericalBasisName; } // Output Structure - std::vector inline GetVolumeOutput() { return _volumeOutput; } - unsigned short inline GetNVolumeOutput() { return _nVolumeOutput; } - unsigned short inline GetVolumeOutputFrequency() { return _volumeOutputFrequency; } + std::vector inline GetVolumeOutput() const{ return _volumeOutput; } + unsigned short inline GetNVolumeOutput() const{ return _nVolumeOutput; } + unsigned short inline GetVolumeOutputFrequency() const{ return _volumeOutputFrequency; } - std::vector inline GetScreenOutput() { return _screenOutput; } - unsigned short inline GetNScreenOutput() { return _nScreenOutput; } - unsigned short inline GetScreenOutputFrequency() { return _screenOutputFrequency; } + std::vector inline GetScreenOutput()const { return _screenOutput; } + unsigned short inline GetNScreenOutput() const{ return _nScreenOutput; } + unsigned short inline GetScreenOutputFrequency() const{ return _screenOutputFrequency; } - std::vector inline GetHistoryOutput() { return _historyOutput; } - unsigned short inline GetNHistoryOutput() { return _nHistoryOutput; } - unsigned short inline GetHistoryOutputFrequency() { return _historyOutputFrequency; } + std::vector inline GetHistoryOutput() const{ return _historyOutput; } + unsigned short inline GetNHistoryOutput() const{ return _nHistoryOutput; } + unsigned short inline GetHistoryOutputFrequency() const{ return _historyOutputFrequency; } // Data generator - bool inline GetDataGeneratorMode() { return _dataGeneratorMode; } - SAMPLER_NAME inline GetSamplerName() { return _sampler; } - unsigned long inline GetTrainingDataSetSize() { return _tainingSetSize; } - bool inline GetSizeByDimension() { return _sizeByDimension; } - unsigned long inline GetMaxValFirstMoment() { return _maxValFirstMoment; } // Deprecated - double GetRealizableSetEpsilonU0() { return _RealizableSetEpsilonU0; } - double GetRealizableSetEpsilonU1() { return _RealizableSetEpsilonU1; } - bool inline GetNormalizedSampling() { return _normalizedSampling; } - bool inline GetAlphaSampling() { return _alphaSampling; } - bool inline GetUniformSamlping() { return _sampleUniform; } - double inline GetAlphaSamplingBound() { return _alphaBound; } - double inline GetMinimalEVBound() { return _minEVAlphaSampling; } + bool inline GetDataGeneratorMode()const { return _dataGeneratorMode; } + SAMPLER_NAME inline GetSamplerName() const{ return _sampler; } + unsigned long inline GetTrainingDataSetSize() const{ return _tainingSetSize; } + bool inline GetSizeByDimension() const{ return _sizeByDimension; } + unsigned long inline GetMaxValFirstMoment()const { return _maxValFirstMoment; } // Deprecated + double GetRealizableSetEpsilonU0() const{ return _RealizableSetEpsilonU0; } + double GetRealizableSetEpsilonU1() const{ return _RealizableSetEpsilonU1; } + bool inline GetNormalizedSampling() const{ return _normalizedSampling; } + bool inline GetAlphaSampling() const{ return _alphaSampling; } + bool inline GetUniformSamlping() const{ return _sampleUniform; } + double inline GetAlphaSamplingBound()const { return _alphaBound; } + double inline GetMinimalEVBound() const { return _minEVAlphaSampling; } // double inline GetMinimalSamplingVelocity() { return _minSamplingVelocity; } - double inline GetMaximalSamplingVelocity() { return _maxSamplingVelocity; } - double inline GetMinimalSamplingTemperature() { return _minSamplingTemperature; } - double inline GetMaximalSamplingTemperature() { return _maxSamplingTemperature; } - unsigned short inline GetNSamplingTemperatures() { return _nTemperatures; } - bool inline GetIsMomentSolver() { return _isMomentSolver; } - unsigned short inline GetRKStages() { return _rungeKuttaStages; } + double inline GetMaximalSamplingVelocity() const { return _maxSamplingVelocity; } + double inline GetMinimalSamplingTemperature() const { return _minSamplingTemperature; } + double inline GetMaximalSamplingTemperature() const { return _maxSamplingTemperature; } + unsigned short inline GetNSamplingTemperatures() const { return _nTemperatures; } + bool inline GetIsMomentSolver() const { return _isMomentSolver; } + unsigned short inline GetRKStages() const { return _rungeKuttaStages; } // ---- Setters for option structure // This section is dangerous @@ -401,6 +403,7 @@ class Config // Mesh Structure void inline SetNCells( unsigned nCells ) { _nCells = nCells; } void inline SetEnforceNeuralRotationalSymmetry( bool symmetryEnforce ) { _enforceNeuralRotationalSymmetry = symmetryEnforce; } + void inline SetForcedConnectivity( bool connectivityEnforce ) { _forcedConnectivityWrite = connectivityEnforce; } }; #endif // CONFIG_H diff --git a/include/common/io.hpp b/include/common/io.hpp index 22a8a657..b9121b13 100644 --- a/include/common/io.hpp +++ b/include/common/io.hpp @@ -1,10 +1,10 @@ #ifndef IO_H #define IO_H +#include "common/globalconstants.hpp" #include "common/typedef.hpp" #include #include - // Forward Declarations class Config; class Mesh; diff --git a/src/common/io.cpp b/src/common/io.cpp index 590d5481..4c1996f5 100644 --- a/src/common/io.cpp +++ b/src/common/io.cpp @@ -317,6 +317,7 @@ void LoadConnectivityFromFile( const std::string inputFile, // cellBoundaryTypes (1 element), (tranlated from unsigned to enum BOUNDARY_TYPE) std::ifstream inFile( inputFile ); + if( !inFile.is_open() ) { ErrorMessages::Error( "Error opening connectivity file.", CURRENT_FUNCTION ); return; @@ -344,7 +345,7 @@ void LoadConnectivityFromFile( const std::string inputFile, for( unsigned j = 0; j < correctedNodesPerCell; ++j ) { std::getline( iss, line, ',' ); std::istringstream converter( line ); - converter >> cellNeighbors[i][j]; + converter >> std::fixed >> setprecision( 12 ) >> cellNeighbors[i][j]; } // Load cellInterfaceMidPoints @@ -354,7 +355,8 @@ void LoadConnectivityFromFile( const std::string inputFile, for( unsigned k = 0; k < nDim; ++k ) { std::getline( iss, line, ',' ); std::istringstream converter( line ); - converter >> cellInterfaceMidPoints[i][j][k]; // Replace with appropriate member of Vector + converter >> std::fixed >> setprecision( 12 ) >> cellInterfaceMidPoints[i][j][k]; // Replace with appropriate member of Vector + // std::cout << std::fixed << setprecision( 12 ) << cellInterfaceMidPoints[i][j][k] << std::endl; } } // Load cellNormals @@ -364,7 +366,7 @@ void LoadConnectivityFromFile( const std::string inputFile, for( unsigned k = 0; k < nDim; ++k ) { std::getline( iss, line, ',' ); std::istringstream converter( line ); - converter >> cellNormals[i][j][k]; // Replace with appropriate member of Vector + converter >> std::fixed >> setprecision( 12 ) >> cellNormals[i][j][k]; // Replace with appropriate member of Vector } } // Load cellBoundaryTypes @@ -392,7 +394,7 @@ void WriteConnecitivityToFile( const std::string outputFile, // cellBoundaryTypes (1 element), (tranlated from BOUNDARY_TYPE to unsigned) std::ofstream outFile( outputFile ); - outFile << std::fixed << setprecision( 12 ) << endl; + outFile << std::fixed << setprecision( 12 ); // const std::size_t bufferSize = 10000; // Adjust as needed // outFile.rdbuf()->pubsetbuf( 0, bufferSize ); if( outFile.is_open() ) { diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index b58c05c0..56423fe3 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -1,6 +1,9 @@ #include "common/mesh.hpp" - +#include "common/config.hpp" +#include "common/io.hpp" #include +#include +#include #include Mesh::Mesh( const Config* settings, @@ -28,7 +31,7 @@ Mesh::Mesh( const Config* settings, size_t lastDotIndex = connectivityFile.find_last_of( '.' ); connectivityFile = connectivityFile.substr( 0, lastDotIndex ); connectivityFile += ".con"; - if( !std::filesystem::exists( connectivityFile ) ) { + if( !std::filesystem::exists( connectivityFile ) || _settings->GetForcedConnectivity() ) { log->info( "| Compute mesh connectivity..." ); ComputeConnectivity(); // Computes _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes log->info( "| Save mesh connectivity to file " + connectivityFile ); diff --git a/tests/input/validation_tests/CSD_PN_solver/starmap_validation_2nd_reference.vtk b/tests/input/validation_tests/CSD_PN_solver/starmap_validation_2nd_reference.vtk new file mode 100644 index 00000000..12a22ea6 --- /dev/null +++ b/tests/input/validation_tests/CSD_PN_solver/starmap_validation_2nd_reference.vtk @@ -0,0 +1,2367 @@ +# vtk DataFile Version 5.1 +vtk output +ASCII +DATASET UNSTRUCTURED_GRID +POINTS 961 double +0 1 0 1 1 0 1 0 0 +0 0 0 0 0.96666666667 0 0 0.93333333333 0 +0 0.9 0 0 0.86666666667 0 0 0.83333333333 0 +0 0.8 0 0 0.76666666667 0 0 0.73333333333 0 +0 0.7 0 0 0.66666666667 0 0 0.63333333333 0 +0 0.6 0 0 0.56666666667 0 0 0.53333333334 0 +0 0.5 0 0 0.46666666667 0 0 0.43333333334 0 +0 0.4 0 0 0.36666666667 0 0 0.33333333333 0 +0 0.3 0 0 0.26666666667 0 0 0.23333333333 0 +0 0.2 0 0 0.16666666667 0 0 0.13333333333 0 +0 0.1 0 0 0.066666666667 0 0 0.033333333333 0 +0.033333333333 0 0 0.066666666667 0 0 0.1 0 0 +0.13333333333 0 0 0.16666666667 0 0 0.2 0 0 +0.23333333333 0 0 0.26666666667 0 0 0.3 0 0 +0.33333333333 0 0 0.36666666667 0 0 0.4 0 0 +0.43333333333 0 0 0.46666666667 0 0 0.5 0 0 +0.53333333333 0 0 0.56666666667 0 0 0.6 0 0 +0.63333333333 0 0 0.66666666667 0 0 0.7 0 0 +0.73333333333 0 0 0.76666666667 0 0 0.8 0 0 +0.83333333333 0 0 0.86666666667 0 0 0.9 0 0 +0.93333333333 0 0 0.96666666667 0 0 1 0.033333333333 0 +1 0.066666666667 0 1 0.1 0 1 0.13333333333 0 +1 0.16666666667 0 1 0.2 0 1 0.23333333333 0 +1 0.26666666667 0 1 0.3 0 1 0.33333333333 0 +1 0.36666666667 0 1 0.4 0 1 0.43333333333 0 +1 0.46666666667 0 1 0.5 0 1 0.53333333333 0 +1 0.56666666667 0 1 0.6 0 1 0.63333333333 0 +1 0.66666666667 0 1 0.7 0 1 0.73333333333 0 +1 0.76666666667 0 1 0.8 0 1 0.83333333333 0 +1 0.86666666667 0 1 0.9 0 1 0.93333333333 0 +1 0.96666666667 0 0.96666666667 1 0 0.93333333333 1 0 +0.9 1 0 0.86666666667 1 0 0.83333333333 1 0 +0.8 1 0 0.76666666667 1 0 0.73333333333 1 0 +0.7 1 0 0.66666666667 1 0 0.63333333333 1 0 +0.6 1 0 0.56666666667 1 0 0.53333333334 1 0 +0.5 1 0 0.46666666667 1 0 0.43333333334 1 0 +0.4 1 0 0.36666666667 1 0 0.33333333333 1 0 +0.3 1 0 0.26666666667 1 0 0.23333333333 1 0 +0.2 1 0 0.16666666667 1 0 0.13333333333 1 0 +0.1 1 0 0.066666666667 1 0 0.033333333333 1 0 +0.033333333333 0.033333333333 0 0.033333333333 0.066666666667 0 0.033333333333 0.1 0 +0.033333333333 0.13333333333 0 0.033333333333 0.16666666667 0 0.033333333333 0.2 0 +0.033333333333 0.23333333333 0 0.033333333333 0.26666666667 0 0.033333333333 0.3 0 +0.033333333333 0.33333333333 0 0.033333333333 0.36666666667 0 0.033333333333 0.4 0 +0.033333333333 0.43333333334 0 0.033333333333 0.46666666667 0 0.033333333333 0.5 0 +0.033333333333 0.53333333334 0 0.033333333333 0.56666666667 0 0.033333333333 0.6 0 +0.033333333333 0.63333333333 0 0.033333333333 0.66666666667 0 0.033333333333 0.7 0 +0.033333333333 0.73333333333 0 0.033333333333 0.76666666667 0 0.033333333333 0.8 0 +0.033333333333 0.83333333333 0 0.033333333333 0.86666666667 0 0.033333333333 0.9 0 +0.033333333333 0.93333333333 0 0.033333333333 0.96666666667 0 0.066666666667 0.033333333333 0 +0.066666666667 0.066666666667 0 0.066666666667 0.1 0 0.066666666667 0.13333333333 0 +0.066666666667 0.16666666667 0 0.066666666667 0.2 0 0.066666666667 0.23333333333 0 +0.066666666667 0.26666666667 0 0.066666666667 0.3 0 0.066666666667 0.33333333333 0 +0.066666666667 0.36666666667 0 0.066666666667 0.4 0 0.066666666667 0.43333333333 0 +0.066666666667 0.46666666667 0 0.066666666667 0.5 0 0.066666666667 0.53333333333 0 +0.066666666667 0.56666666667 0 0.066666666667 0.6 0 0.066666666667 0.63333333333 0 +0.066666666667 0.66666666667 0 0.066666666667 0.7 0 0.066666666667 0.73333333333 0 +0.066666666667 0.76666666667 0 0.066666666667 0.8 0 0.066666666667 0.83333333333 0 +0.066666666667 0.86666666667 0 0.066666666667 0.9 0 0.066666666667 0.93333333333 0 +0.066666666667 0.96666666667 0 0.1 0.033333333333 0 0.1 0.066666666667 0 +0.1 0.1 0 0.1 0.13333333333 0 0.1 0.16666666667 0 +0.1 0.2 0 0.1 0.23333333333 0 0.1 0.26666666667 0 +0.1 0.3 0 0.1 0.33333333333 0 0.1 0.36666666667 0 +0.1 0.4 0 0.1 0.43333333333 0 0.1 0.46666666667 0 +0.1 0.5 0 0.1 0.53333333333 0 0.1 0.56666666667 0 +0.1 0.6 0 0.1 0.63333333333 0 0.1 0.66666666667 0 +0.1 0.7 0 0.1 0.73333333333 0 0.1 0.76666666667 0 +0.1 0.8 0 0.1 0.83333333333 0 0.1 0.86666666667 0 +0.1 0.9 0 0.1 0.93333333333 0 0.1 0.96666666667 0 +0.13333333333 0.033333333333 0 0.13333333333 0.066666666667 0 0.13333333333 0.1 0 +0.13333333333 0.13333333333 0 0.13333333333 0.16666666667 0 0.13333333333 0.2 0 +0.13333333333 0.23333333333 0 0.13333333333 0.26666666667 0 0.13333333333 0.3 0 +0.13333333333 0.33333333333 0 0.13333333333 0.36666666667 0 0.13333333333 0.4 0 +0.13333333333 0.43333333333 0 0.13333333333 0.46666666667 0 0.13333333333 0.5 0 +0.13333333333 0.53333333333 0 0.13333333333 0.56666666667 0 0.13333333333 0.6 0 +0.13333333333 0.63333333333 0 0.13333333333 0.66666666667 0 0.13333333333 0.7 0 +0.13333333333 0.73333333333 0 0.13333333333 0.76666666667 0 0.13333333333 0.8 0 +0.13333333333 0.83333333333 0 0.13333333333 0.86666666667 0 0.13333333333 0.9 0 +0.13333333333 0.93333333333 0 0.13333333333 0.96666666667 0 0.16666666667 0.033333333333 0 +0.16666666667 0.066666666667 0 0.16666666667 0.1 0 0.16666666667 0.13333333333 0 +0.16666666667 0.16666666667 0 0.16666666667 0.2 0 0.16666666667 0.23333333333 0 +0.16666666667 0.26666666667 0 0.16666666667 0.3 0 0.16666666667 0.33333333333 0 +0.16666666667 0.36666666667 0 0.16666666667 0.4 0 0.16666666667 0.43333333333 0 +0.16666666667 0.46666666667 0 0.16666666667 0.5 0 0.16666666667 0.53333333333 0 +0.16666666667 0.56666666667 0 0.16666666667 0.6 0 0.16666666667 0.63333333333 0 +0.16666666667 0.66666666667 0 0.16666666667 0.7 0 0.16666666667 0.73333333333 0 +0.16666666667 0.76666666667 0 0.16666666667 0.8 0 0.16666666667 0.83333333333 0 +0.16666666667 0.86666666667 0 0.16666666667 0.9 0 0.16666666667 0.93333333333 0 +0.16666666667 0.96666666667 0 0.2 0.033333333333 0 0.2 0.066666666667 0 +0.2 0.1 0 0.2 0.13333333333 0 0.2 0.16666666667 0 +0.2 0.2 0 0.2 0.23333333333 0 0.2 0.26666666667 0 +0.2 0.3 0 0.2 0.33333333333 0 0.2 0.36666666667 0 +0.2 0.4 0 0.2 0.43333333333 0 0.2 0.46666666667 0 +0.2 0.5 0 0.2 0.53333333333 0 0.2 0.56666666667 0 +0.2 0.6 0 0.2 0.63333333333 0 0.2 0.66666666667 0 +0.2 0.7 0 0.2 0.73333333333 0 0.2 0.76666666667 0 +0.2 0.8 0 0.2 0.83333333333 0 0.2 0.86666666667 0 +0.2 0.9 0 0.2 0.93333333333 0 0.2 0.96666666667 0 +0.23333333333 0.033333333333 0 0.23333333333 0.066666666667 0 0.23333333333 0.1 0 +0.23333333333 0.13333333333 0 0.23333333333 0.16666666667 0 0.23333333333 0.2 0 +0.23333333333 0.23333333333 0 0.23333333333 0.26666666667 0 0.23333333333 0.3 0 +0.23333333333 0.33333333333 0 0.23333333333 0.36666666667 0 0.23333333333 0.4 0 +0.23333333333 0.43333333333 0 0.23333333333 0.46666666667 0 0.23333333333 0.5 0 +0.23333333333 0.53333333333 0 0.23333333333 0.56666666667 0 0.23333333333 0.6 0 +0.23333333333 0.63333333333 0 0.23333333333 0.66666666667 0 0.23333333333 0.7 0 +0.23333333333 0.73333333333 0 0.23333333333 0.76666666667 0 0.23333333333 0.8 0 +0.23333333333 0.83333333333 0 0.23333333333 0.86666666667 0 0.23333333333 0.9 0 +0.23333333333 0.93333333333 0 0.23333333333 0.96666666667 0 0.26666666667 0.033333333333 0 +0.26666666667 0.066666666667 0 0.26666666667 0.1 0 0.26666666667 0.13333333333 0 +0.26666666667 0.16666666667 0 0.26666666667 0.2 0 0.26666666667 0.23333333333 0 +0.26666666667 0.26666666667 0 0.26666666667 0.3 0 0.26666666667 0.33333333333 0 +0.26666666667 0.36666666667 0 0.26666666667 0.4 0 0.26666666667 0.43333333333 0 +0.26666666667 0.46666666667 0 0.26666666667 0.5 0 0.26666666667 0.53333333333 0 +0.26666666667 0.56666666667 0 0.26666666667 0.6 0 0.26666666667 0.63333333333 0 +0.26666666667 0.66666666667 0 0.26666666667 0.7 0 0.26666666667 0.73333333333 0 +0.26666666667 0.76666666667 0 0.26666666667 0.8 0 0.26666666667 0.83333333333 0 +0.26666666667 0.86666666667 0 0.26666666667 0.9 0 0.26666666667 0.93333333333 0 +0.26666666667 0.96666666667 0 0.3 0.033333333333 0 0.3 0.066666666667 0 +0.3 0.1 0 0.3 0.13333333333 0 0.3 0.16666666667 0 +0.3 0.2 0 0.3 0.23333333333 0 0.3 0.26666666667 0 +0.3 0.3 0 0.3 0.33333333333 0 0.3 0.36666666667 0 +0.3 0.4 0 0.3 0.43333333333 0 0.3 0.46666666667 0 +0.3 0.5 0 0.3 0.53333333333 0 0.3 0.56666666667 0 +0.3 0.6 0 0.3 0.63333333333 0 0.3 0.66666666667 0 +0.3 0.7 0 0.3 0.73333333333 0 0.3 0.76666666667 0 +0.3 0.8 0 0.3 0.83333333333 0 0.3 0.86666666667 0 +0.3 0.9 0 0.3 0.93333333333 0 0.3 0.96666666667 0 +0.33333333333 0.033333333333 0 0.33333333333 0.066666666667 0 0.33333333333 0.1 0 +0.33333333333 0.13333333333 0 0.33333333333 0.16666666667 0 0.33333333333 0.2 0 +0.33333333333 0.23333333333 0 0.33333333333 0.26666666667 0 0.33333333333 0.3 0 +0.33333333333 0.33333333333 0 0.33333333333 0.36666666667 0 0.33333333333 0.4 0 +0.33333333333 0.43333333333 0 0.33333333333 0.46666666667 0 0.33333333333 0.5 0 +0.33333333333 0.53333333333 0 0.33333333333 0.56666666667 0 0.33333333333 0.6 0 +0.33333333333 0.63333333333 0 0.33333333333 0.66666666667 0 0.33333333333 0.7 0 +0.33333333333 0.73333333333 0 0.33333333333 0.76666666667 0 0.33333333333 0.8 0 +0.33333333333 0.83333333333 0 0.33333333333 0.86666666667 0 0.33333333333 0.9 0 +0.33333333333 0.93333333333 0 0.33333333333 0.96666666667 0 0.36666666667 0.033333333333 0 +0.36666666667 0.066666666667 0 0.36666666667 0.1 0 0.36666666667 0.13333333333 0 +0.36666666667 0.16666666667 0 0.36666666667 0.2 0 0.36666666667 0.23333333333 0 +0.36666666667 0.26666666667 0 0.36666666667 0.3 0 0.36666666667 0.33333333333 0 +0.36666666667 0.36666666667 0 0.36666666667 0.4 0 0.36666666667 0.43333333333 0 +0.36666666667 0.46666666667 0 0.36666666667 0.5 0 0.36666666667 0.53333333333 0 +0.36666666667 0.56666666667 0 0.36666666667 0.6 0 0.36666666667 0.63333333333 0 +0.36666666667 0.66666666667 0 0.36666666667 0.7 0 0.36666666667 0.73333333333 0 +0.36666666667 0.76666666667 0 0.36666666667 0.8 0 0.36666666667 0.83333333333 0 +0.36666666667 0.86666666667 0 0.36666666667 0.9 0 0.36666666667 0.93333333333 0 +0.36666666667 0.96666666667 0 0.4 0.033333333333 0 0.4 0.066666666667 0 +0.4 0.1 0 0.4 0.13333333333 0 0.4 0.16666666667 0 +0.4 0.2 0 0.4 0.23333333333 0 0.4 0.26666666667 0 +0.4 0.3 0 0.4 0.33333333333 0 0.4 0.36666666667 0 +0.4 0.4 0 0.4 0.43333333333 0 0.4 0.46666666667 0 +0.4 0.5 0 0.4 0.53333333333 0 0.4 0.56666666667 0 +0.4 0.6 0 0.4 0.63333333333 0 0.4 0.66666666667 0 +0.4 0.7 0 0.4 0.73333333333 0 0.4 0.76666666667 0 +0.4 0.8 0 0.4 0.83333333333 0 0.4 0.86666666667 0 +0.4 0.9 0 0.4 0.93333333333 0 0.4 0.96666666667 0 +0.43333333333 0.033333333333 0 0.43333333333 0.066666666667 0 0.43333333333 0.1 0 +0.43333333333 0.13333333333 0 0.43333333333 0.16666666667 0 0.43333333333 0.2 0 +0.43333333333 0.23333333333 0 0.43333333333 0.26666666667 0 0.43333333333 0.3 0 +0.43333333333 0.33333333333 0 0.43333333333 0.36666666667 0 0.43333333333 0.4 0 +0.43333333333 0.43333333333 0 0.43333333333 0.46666666667 0 0.43333333333 0.5 0 +0.43333333333 0.53333333333 0 0.43333333333 0.56666666667 0 0.43333333333 0.6 0 +0.43333333333 0.63333333333 0 0.43333333333 0.66666666667 0 0.43333333333 0.7 0 +0.43333333333 0.73333333333 0 0.43333333333 0.76666666667 0 0.43333333333 0.8 0 +0.43333333333 0.83333333333 0 0.43333333333 0.86666666667 0 0.43333333333 0.9 0 +0.43333333333 0.93333333333 0 0.43333333334 0.96666666667 0 0.46666666667 0.033333333333 0 +0.46666666667 0.066666666667 0 0.46666666667 0.1 0 0.46666666667 0.13333333333 0 +0.46666666667 0.16666666667 0 0.46666666667 0.2 0 0.46666666667 0.23333333333 0 +0.46666666667 0.26666666667 0 0.46666666667 0.3 0 0.46666666667 0.33333333333 0 +0.46666666667 0.36666666667 0 0.46666666667 0.4 0 0.46666666667 0.43333333333 0 +0.46666666667 0.46666666667 0 0.46666666667 0.5 0 0.46666666667 0.53333333333 0 +0.46666666667 0.56666666667 0 0.46666666667 0.6 0 0.46666666667 0.63333333333 0 +0.46666666667 0.66666666667 0 0.46666666667 0.7 0 0.46666666667 0.73333333333 0 +0.46666666667 0.76666666667 0 0.46666666667 0.8 0 0.46666666667 0.83333333333 0 +0.46666666667 0.86666666667 0 0.46666666667 0.9 0 0.46666666667 0.93333333333 0 +0.46666666667 0.96666666667 0 0.5 0.033333333333 0 0.5 0.066666666667 0 +0.5 0.1 0 0.5 0.13333333333 0 0.5 0.16666666667 0 +0.5 0.2 0 0.5 0.23333333333 0 0.5 0.26666666667 0 +0.5 0.3 0 0.5 0.33333333333 0 0.5 0.36666666667 0 +0.5 0.4 0 0.5 0.43333333333 0 0.5 0.46666666667 0 +0.5 0.5 0 0.5 0.53333333333 0 0.5 0.56666666667 0 +0.5 0.6 0 0.5 0.63333333333 0 0.5 0.66666666667 0 +0.5 0.7 0 0.5 0.73333333333 0 0.5 0.76666666667 0 +0.5 0.8 0 0.5 0.83333333333 0 0.5 0.86666666667 0 +0.5 0.9 0 0.5 0.93333333333 0 0.5 0.96666666667 0 +0.53333333333 0.033333333333 0 0.53333333333 0.066666666667 0 0.53333333333 0.1 0 +0.53333333333 0.13333333333 0 0.53333333333 0.16666666667 0 0.53333333333 0.2 0 +0.53333333333 0.23333333333 0 0.53333333333 0.26666666667 0 0.53333333333 0.3 0 +0.53333333333 0.33333333333 0 0.53333333333 0.36666666667 0 0.53333333333 0.4 0 +0.53333333333 0.43333333333 0 0.53333333333 0.46666666667 0 0.53333333333 0.5 0 +0.53333333333 0.53333333333 0 0.53333333333 0.56666666667 0 0.53333333333 0.6 0 +0.53333333333 0.63333333333 0 0.53333333333 0.66666666667 0 0.53333333333 0.7 0 +0.53333333333 0.73333333333 0 0.53333333333 0.76666666667 0 0.53333333333 0.8 0 +0.53333333333 0.83333333333 0 0.53333333333 0.86666666667 0 0.53333333333 0.9 0 +0.53333333333 0.93333333333 0 0.53333333334 0.96666666667 0 0.56666666667 0.033333333333 0 +0.56666666667 0.066666666667 0 0.56666666667 0.1 0 0.56666666667 0.13333333333 0 +0.56666666667 0.16666666667 0 0.56666666667 0.2 0 0.56666666667 0.23333333333 0 +0.56666666667 0.26666666667 0 0.56666666667 0.3 0 0.56666666667 0.33333333333 0 +0.56666666667 0.36666666667 0 0.56666666667 0.4 0 0.56666666667 0.43333333333 0 +0.56666666667 0.46666666667 0 0.56666666667 0.5 0 0.56666666667 0.53333333333 0 +0.56666666667 0.56666666667 0 0.56666666667 0.6 0 0.56666666667 0.63333333333 0 +0.56666666667 0.66666666667 0 0.56666666667 0.7 0 0.56666666667 0.73333333333 0 +0.56666666667 0.76666666667 0 0.56666666667 0.8 0 0.56666666667 0.83333333333 0 +0.56666666667 0.86666666667 0 0.56666666667 0.9 0 0.56666666667 0.93333333333 0 +0.56666666667 0.96666666667 0 0.6 0.033333333333 0 0.6 0.066666666667 0 +0.6 0.1 0 0.6 0.13333333333 0 0.6 0.16666666667 0 +0.6 0.2 0 0.6 0.23333333333 0 0.6 0.26666666667 0 +0.6 0.3 0 0.6 0.33333333333 0 0.6 0.36666666667 0 +0.6 0.4 0 0.6 0.43333333333 0 0.6 0.46666666667 0 +0.6 0.5 0 0.6 0.53333333333 0 0.6 0.56666666667 0 +0.6 0.6 0 0.6 0.63333333333 0 0.6 0.66666666667 0 +0.6 0.7 0 0.6 0.73333333333 0 0.6 0.76666666667 0 +0.6 0.8 0 0.6 0.83333333333 0 0.6 0.86666666667 0 +0.6 0.9 0 0.6 0.93333333333 0 0.6 0.96666666667 0 +0.63333333333 0.033333333333 0 0.63333333333 0.066666666667 0 0.63333333333 0.1 0 +0.63333333333 0.13333333333 0 0.63333333333 0.16666666667 0 0.63333333333 0.2 0 +0.63333333333 0.23333333333 0 0.63333333333 0.26666666667 0 0.63333333333 0.3 0 +0.63333333333 0.33333333333 0 0.63333333333 0.36666666667 0 0.63333333333 0.4 0 +0.63333333333 0.43333333333 0 0.63333333333 0.46666666667 0 0.63333333333 0.5 0 +0.63333333333 0.53333333333 0 0.63333333333 0.56666666667 0 0.63333333333 0.6 0 +0.63333333333 0.63333333333 0 0.63333333333 0.66666666667 0 0.63333333333 0.7 0 +0.63333333333 0.73333333333 0 0.63333333333 0.76666666667 0 0.63333333333 0.8 0 +0.63333333333 0.83333333333 0 0.63333333333 0.86666666667 0 0.63333333333 0.9 0 +0.63333333333 0.93333333333 0 0.63333333333 0.96666666667 0 0.66666666667 0.033333333333 0 +0.66666666667 0.066666666667 0 0.66666666667 0.1 0 0.66666666667 0.13333333333 0 +0.66666666667 0.16666666667 0 0.66666666667 0.2 0 0.66666666667 0.23333333333 0 +0.66666666667 0.26666666667 0 0.66666666667 0.3 0 0.66666666667 0.33333333333 0 +0.66666666667 0.36666666667 0 0.66666666667 0.4 0 0.66666666667 0.43333333333 0 +0.66666666667 0.46666666667 0 0.66666666667 0.5 0 0.66666666667 0.53333333333 0 +0.66666666667 0.56666666667 0 0.66666666667 0.6 0 0.66666666667 0.63333333333 0 +0.66666666667 0.66666666667 0 0.66666666667 0.7 0 0.66666666667 0.73333333333 0 +0.66666666667 0.76666666667 0 0.66666666667 0.8 0 0.66666666667 0.83333333333 0 +0.66666666667 0.86666666667 0 0.66666666667 0.9 0 0.66666666667 0.93333333333 0 +0.66666666667 0.96666666667 0 0.7 0.033333333333 0 0.7 0.066666666667 0 +0.7 0.1 0 0.7 0.13333333333 0 0.7 0.16666666667 0 +0.7 0.2 0 0.7 0.23333333333 0 0.7 0.26666666667 0 +0.7 0.3 0 0.7 0.33333333333 0 0.7 0.36666666667 0 +0.7 0.4 0 0.7 0.43333333333 0 0.7 0.46666666667 0 +0.7 0.5 0 0.7 0.53333333333 0 0.7 0.56666666667 0 +0.7 0.6 0 0.7 0.63333333333 0 0.7 0.66666666667 0 +0.7 0.7 0 0.7 0.73333333333 0 0.7 0.76666666667 0 +0.7 0.8 0 0.7 0.83333333333 0 0.7 0.86666666667 0 +0.7 0.9 0 0.7 0.93333333333 0 0.7 0.96666666667 0 +0.73333333333 0.033333333333 0 0.73333333333 0.066666666667 0 0.73333333333 0.1 0 +0.73333333333 0.13333333333 0 0.73333333333 0.16666666667 0 0.73333333333 0.2 0 +0.73333333333 0.23333333333 0 0.73333333333 0.26666666667 0 0.73333333333 0.3 0 +0.73333333333 0.33333333333 0 0.73333333333 0.36666666667 0 0.73333333333 0.4 0 +0.73333333333 0.43333333333 0 0.73333333333 0.46666666667 0 0.73333333333 0.5 0 +0.73333333333 0.53333333333 0 0.73333333333 0.56666666667 0 0.73333333333 0.6 0 +0.73333333333 0.63333333333 0 0.73333333333 0.66666666667 0 0.73333333333 0.7 0 +0.73333333333 0.73333333333 0 0.73333333333 0.76666666667 0 0.73333333333 0.8 0 +0.73333333333 0.83333333333 0 0.73333333333 0.86666666667 0 0.73333333333 0.9 0 +0.73333333333 0.93333333333 0 0.73333333333 0.96666666667 0 0.76666666667 0.033333333333 0 +0.76666666667 0.066666666667 0 0.76666666667 0.1 0 0.76666666667 0.13333333333 0 +0.76666666667 0.16666666667 0 0.76666666667 0.2 0 0.76666666667 0.23333333333 0 +0.76666666667 0.26666666667 0 0.76666666667 0.3 0 0.76666666667 0.33333333333 0 +0.76666666667 0.36666666667 0 0.76666666667 0.4 0 0.76666666667 0.43333333333 0 +0.76666666667 0.46666666667 0 0.76666666667 0.5 0 0.76666666667 0.53333333333 0 +0.76666666667 0.56666666667 0 0.76666666667 0.6 0 0.76666666667 0.63333333333 0 +0.76666666667 0.66666666667 0 0.76666666667 0.7 0 0.76666666667 0.73333333333 0 +0.76666666667 0.76666666667 0 0.76666666667 0.8 0 0.76666666667 0.83333333333 0 +0.76666666667 0.86666666667 0 0.76666666667 0.9 0 0.76666666667 0.93333333333 0 +0.76666666667 0.96666666667 0 0.8 0.033333333333 0 0.8 0.066666666667 0 +0.8 0.1 0 0.8 0.13333333333 0 0.8 0.16666666667 0 +0.8 0.2 0 0.8 0.23333333333 0 0.8 0.26666666667 0 +0.8 0.3 0 0.8 0.33333333333 0 0.8 0.36666666667 0 +0.8 0.4 0 0.8 0.43333333333 0 0.8 0.46666666667 0 +0.8 0.5 0 0.8 0.53333333333 0 0.8 0.56666666667 0 +0.8 0.6 0 0.8 0.63333333333 0 0.8 0.66666666667 0 +0.8 0.7 0 0.8 0.73333333333 0 0.8 0.76666666667 0 +0.8 0.8 0 0.8 0.83333333333 0 0.8 0.86666666667 0 +0.8 0.9 0 0.8 0.93333333333 0 0.8 0.96666666667 0 +0.83333333333 0.033333333333 0 0.83333333333 0.066666666667 0 0.83333333333 0.1 0 +0.83333333333 0.13333333333 0 0.83333333333 0.16666666667 0 0.83333333333 0.2 0 +0.83333333333 0.23333333333 0 0.83333333333 0.26666666667 0 0.83333333333 0.3 0 +0.83333333333 0.33333333333 0 0.83333333333 0.36666666667 0 0.83333333333 0.4 0 +0.83333333333 0.43333333333 0 0.83333333333 0.46666666667 0 0.83333333333 0.5 0 +0.83333333333 0.53333333333 0 0.83333333333 0.56666666667 0 0.83333333333 0.6 0 +0.83333333333 0.63333333333 0 0.83333333333 0.66666666667 0 0.83333333333 0.7 0 +0.83333333333 0.73333333333 0 0.83333333333 0.76666666667 0 0.83333333333 0.8 0 +0.83333333333 0.83333333333 0 0.83333333333 0.86666666667 0 0.83333333333 0.9 0 +0.83333333333 0.93333333333 0 0.83333333333 0.96666666667 0 0.86666666667 0.033333333333 0 +0.86666666667 0.066666666667 0 0.86666666667 0.1 0 0.86666666667 0.13333333333 0 +0.86666666667 0.16666666667 0 0.86666666667 0.2 0 0.86666666667 0.23333333333 0 +0.86666666667 0.26666666667 0 0.86666666667 0.3 0 0.86666666667 0.33333333333 0 +0.86666666667 0.36666666667 0 0.86666666667 0.4 0 0.86666666667 0.43333333333 0 +0.86666666667 0.46666666667 0 0.86666666667 0.5 0 0.86666666667 0.53333333333 0 +0.86666666667 0.56666666667 0 0.86666666667 0.6 0 0.86666666667 0.63333333333 0 +0.86666666667 0.66666666667 0 0.86666666667 0.7 0 0.86666666667 0.73333333333 0 +0.86666666667 0.76666666667 0 0.86666666667 0.8 0 0.86666666667 0.83333333333 0 +0.86666666667 0.86666666667 0 0.86666666667 0.9 0 0.86666666667 0.93333333333 0 +0.86666666667 0.96666666667 0 0.9 0.033333333333 0 0.9 0.066666666667 0 +0.9 0.1 0 0.9 0.13333333333 0 0.9 0.16666666667 0 +0.9 0.2 0 0.9 0.23333333333 0 0.9 0.26666666667 0 +0.9 0.3 0 0.9 0.33333333333 0 0.9 0.36666666667 0 +0.9 0.4 0 0.9 0.43333333333 0 0.9 0.46666666667 0 +0.9 0.5 0 0.9 0.53333333333 0 0.9 0.56666666667 0 +0.9 0.6 0 0.9 0.63333333333 0 0.9 0.66666666667 0 +0.9 0.7 0 0.9 0.73333333333 0 0.9 0.76666666667 0 +0.9 0.8 0 0.9 0.83333333333 0 0.9 0.86666666667 0 +0.9 0.9 0 0.9 0.93333333333 0 0.9 0.96666666667 0 +0.93333333333 0.033333333333 0 0.93333333333 0.066666666667 0 0.93333333333 0.1 0 +0.93333333333 0.13333333333 0 0.93333333333 0.16666666667 0 0.93333333333 0.2 0 +0.93333333333 0.23333333333 0 0.93333333333 0.26666666667 0 0.93333333333 0.3 0 +0.93333333333 0.33333333333 0 0.93333333333 0.36666666667 0 0.93333333333 0.4 0 +0.93333333333 0.43333333333 0 0.93333333333 0.46666666667 0 0.93333333333 0.5 0 +0.93333333333 0.53333333333 0 0.93333333333 0.56666666667 0 0.93333333333 0.6 0 +0.93333333333 0.63333333333 0 0.93333333333 0.66666666667 0 0.93333333333 0.7 0 +0.93333333333 0.73333333333 0 0.93333333333 0.76666666667 0 0.93333333333 0.8 0 +0.93333333333 0.83333333333 0 0.93333333333 0.86666666667 0 0.93333333333 0.9 0 +0.93333333333 0.93333333333 0 0.93333333333 0.96666666667 0 0.96666666667 0.033333333333 0 +0.96666666667 0.066666666667 0 0.96666666667 0.1 0 0.96666666667 0.13333333333 0 +0.96666666667 0.16666666667 0 0.96666666667 0.2 0 0.96666666667 0.23333333333 0 +0.96666666667 0.26666666667 0 0.96666666667 0.3 0 0.96666666667 0.33333333333 0 +0.96666666667 0.36666666667 0 0.96666666667 0.4 0 0.96666666667 0.43333333333 0 +0.96666666667 0.46666666667 0 0.96666666667 0.5 0 0.96666666667 0.53333333333 0 +0.96666666667 0.56666666667 0 0.96666666667 0.6 0 0.96666666667 0.63333333333 0 +0.96666666667 0.66666666667 0 0.96666666667 0.7 0 0.96666666667 0.73333333333 0 +0.96666666667 0.76666666667 0 0.96666666667 0.8 0 0.96666666667 0.83333333333 0 +0.96666666667 0.86666666667 0 0.96666666667 0.9 0 0.96666666667 0.93333333333 0 +0.96666666667 0.96666666667 0 +CELLS 901 3600 +OFFSETS vtktypeint64 +0 4 8 12 16 20 24 28 32 +36 40 44 48 52 56 60 64 68 +72 76 80 84 88 92 96 100 104 +108 112 116 120 124 128 132 136 140 +144 148 152 156 160 164 168 172 176 +180 184 188 192 196 200 204 208 212 +216 220 224 228 232 236 240 244 248 +252 256 260 264 268 272 276 280 284 +288 292 296 300 304 308 312 316 320 +324 328 332 336 340 344 348 352 356 +360 364 368 372 376 380 384 388 392 +396 400 404 408 412 416 420 424 428 +432 436 440 444 448 452 456 460 464 +468 472 476 480 484 488 492 496 500 +504 508 512 516 520 524 528 532 536 +540 544 548 552 556 560 564 568 572 +576 580 584 588 592 596 600 604 608 +612 616 620 624 628 632 636 640 644 +648 652 656 660 664 668 672 676 680 +684 688 692 696 700 704 708 712 716 +720 724 728 732 736 740 744 748 752 +756 760 764 768 772 776 780 784 788 +792 796 800 804 808 812 816 820 824 +828 832 836 840 844 848 852 856 860 +864 868 872 876 880 884 888 892 896 +900 904 908 912 916 920 924 928 932 +936 940 944 948 952 956 960 964 968 +972 976 980 984 988 992 996 1000 1004 +1008 1012 1016 1020 1024 1028 1032 1036 1040 +1044 1048 1052 1056 1060 1064 1068 1072 1076 +1080 1084 1088 1092 1096 1100 1104 1108 1112 +1116 1120 1124 1128 1132 1136 1140 1144 1148 +1152 1156 1160 1164 1168 1172 1176 1180 1184 +1188 1192 1196 1200 1204 1208 1212 1216 1220 +1224 1228 1232 1236 1240 1244 1248 1252 1256 +1260 1264 1268 1272 1276 1280 1284 1288 1292 +1296 1300 1304 1308 1312 1316 1320 1324 1328 +1332 1336 1340 1344 1348 1352 1356 1360 1364 +1368 1372 1376 1380 1384 1388 1392 1396 1400 +1404 1408 1412 1416 1420 1424 1428 1432 1436 +1440 1444 1448 1452 1456 1460 1464 1468 1472 +1476 1480 1484 1488 1492 1496 1500 1504 1508 +1512 1516 1520 1524 1528 1532 1536 1540 1544 +1548 1552 1556 1560 1564 1568 1572 1576 1580 +1584 1588 1592 1596 1600 1604 1608 1612 1616 +1620 1624 1628 1632 1636 1640 1644 1648 1652 +1656 1660 1664 1668 1672 1676 1680 1684 1688 +1692 1696 1700 1704 1708 1712 1716 1720 1724 +1728 1732 1736 1740 1744 1748 1752 1756 1760 +1764 1768 1772 1776 1780 1784 1788 1792 1796 +1800 1804 1808 1812 1816 1820 1824 1828 1832 +1836 1840 1844 1848 1852 1856 1860 1864 1868 +1872 1876 1880 1884 1888 1892 1896 1900 1904 +1908 1912 1916 1920 1924 1928 1932 1936 1940 +1944 1948 1952 1956 1960 1964 1968 1972 1976 +1980 1984 1988 1992 1996 2000 2004 2008 2012 +2016 2020 2024 2028 2032 2036 2040 2044 2048 +2052 2056 2060 2064 2068 2072 2076 2080 2084 +2088 2092 2096 2100 2104 2108 2112 2116 2120 +2124 2128 2132 2136 2140 2144 2148 2152 2156 +2160 2164 2168 2172 2176 2180 2184 2188 2192 +2196 2200 2204 2208 2212 2216 2220 2224 2228 +2232 2236 2240 2244 2248 2252 2256 2260 2264 +2268 2272 2276 2280 2284 2288 2292 2296 2300 +2304 2308 2312 2316 2320 2324 2328 2332 2336 +2340 2344 2348 2352 2356 2360 2364 2368 2372 +2376 2380 2384 2388 2392 2396 2400 2404 2408 +2412 2416 2420 2424 2428 2432 2436 2440 2444 +2448 2452 2456 2460 2464 2468 2472 2476 2480 +2484 2488 2492 2496 2500 2504 2508 2512 2516 +2520 2524 2528 2532 2536 2540 2544 2548 2552 +2556 2560 2564 2568 2572 2576 2580 2584 2588 +2592 2596 2600 2604 2608 2612 2616 2620 2624 +2628 2632 2636 2640 2644 2648 2652 2656 2660 +2664 2668 2672 2676 2680 2684 2688 2692 2696 +2700 2704 2708 2712 2716 2720 2724 2728 2732 +2736 2740 2744 2748 2752 2756 2760 2764 2768 +2772 2776 2780 2784 2788 2792 2796 2800 2804 +2808 2812 2816 2820 2824 2828 2832 2836 2840 +2844 2848 2852 2856 2860 2864 2868 2872 2876 +2880 2884 2888 2892 2896 2900 2904 2908 2912 +2916 2920 2924 2928 2932 2936 2940 2944 2948 +2952 2956 2960 2964 2968 2972 2976 2980 2984 +2988 2992 2996 3000 3004 3008 3012 3016 3020 +3024 3028 3032 3036 3040 3044 3048 3052 3056 +3060 3064 3068 3072 3076 3080 3084 3088 3092 +3096 3100 3104 3108 3112 3116 3120 3124 3128 +3132 3136 3140 3144 3148 3152 3156 3160 3164 +3168 3172 3176 3180 3184 3188 3192 3196 3200 +3204 3208 3212 3216 3220 3224 3228 3232 3236 +3240 3244 3248 3252 3256 3260 3264 3268 3272 +3276 3280 3284 3288 3292 3296 3300 3304 3308 +3312 3316 3320 3324 3328 3332 3336 3340 3344 +3348 3352 3356 3360 3364 3368 3372 3376 3380 +3384 3388 3392 3396 3400 3404 3408 3412 3416 +3420 3424 3428 3432 3436 3440 3444 3448 3452 +3456 3460 3464 3468 3472 3476 3480 3484 3488 +3492 3496 3500 3504 3508 3512 3516 3520 3524 +3528 3532 3536 3540 3544 3548 3552 3556 3560 +3564 3568 3572 3576 3580 3584 3588 3592 3596 +3600 +CONNECTIVITY vtktypeint64 +3 33 120 32 32 120 121 31 31 +121 122 30 30 122 123 29 29 123 +124 28 28 124 125 27 27 125 126 +26 26 126 127 25 25 127 128 24 +24 128 129 23 23 129 130 22 22 +130 131 21 21 131 132 20 20 132 +133 19 19 133 134 18 18 134 135 +17 17 135 136 16 16 136 137 15 +15 137 138 14 14 138 139 13 13 +139 140 12 12 140 141 11 11 141 +142 10 10 142 143 9 9 143 144 +8 8 144 145 7 7 145 146 6 +6 146 147 5 5 147 148 4 4 +148 119 0 33 34 149 120 120 149 +150 121 121 150 151 122 122 151 152 +123 123 152 153 124 124 153 154 125 +125 154 155 126 126 155 156 127 127 +156 157 128 128 157 158 129 129 158 +159 130 130 159 160 131 131 160 161 +132 132 161 162 133 133 162 163 134 +134 163 164 135 135 164 165 136 136 +165 166 137 137 166 167 138 138 167 +168 139 139 168 169 140 140 169 170 +141 141 170 171 142 142 171 172 143 +143 172 173 144 144 173 174 145 145 +174 175 146 146 175 176 147 147 176 +177 148 148 177 118 119 34 35 178 +149 149 178 179 150 150 179 180 151 +151 180 181 152 152 181 182 153 153 +182 183 154 154 183 184 155 155 184 +185 156 156 185 186 157 157 186 187 +158 158 187 188 159 159 188 189 160 +160 189 190 161 161 190 191 162 162 +191 192 163 163 192 193 164 164 193 +194 165 165 194 195 166 166 195 196 +167 167 196 197 168 168 197 198 169 +169 198 199 170 170 199 200 171 171 +200 201 172 172 201 202 173 173 202 +203 174 174 203 204 175 175 204 205 +176 176 205 206 177 177 206 117 118 +35 36 207 178 178 207 208 179 179 +208 209 180 180 209 210 181 181 210 +211 182 182 211 212 183 183 212 213 +184 184 213 214 185 185 214 215 186 +186 215 216 187 187 216 217 188 188 +217 218 189 189 218 219 190 190 219 +220 191 191 220 221 192 192 221 222 +193 193 222 223 194 194 223 224 195 +195 224 225 196 196 225 226 197 197 +226 227 198 198 227 228 199 199 228 +229 200 200 229 230 201 201 230 231 +202 202 231 232 203 203 232 233 204 +204 233 234 205 205 234 235 206 206 +235 116 117 36 37 236 207 207 236 +237 208 208 237 238 209 209 238 239 +210 210 239 240 211 211 240 241 212 +212 241 242 213 213 242 243 214 214 +243 244 215 215 244 245 216 216 245 +246 217 217 246 247 218 218 247 248 +219 219 248 249 220 220 249 250 221 +221 250 251 222 222 251 252 223 223 +252 253 224 224 253 254 225 225 254 +255 226 226 255 256 227 227 256 257 +228 228 257 258 229 229 258 259 230 +230 259 260 231 231 260 261 232 232 +261 262 233 233 262 263 234 234 263 +264 235 235 264 115 116 37 38 265 +236 236 265 266 237 237 266 267 238 +238 267 268 239 239 268 269 240 240 +269 270 241 241 270 271 242 242 271 +272 243 243 272 273 244 244 273 274 +245 245 274 275 246 246 275 276 247 +247 276 277 248 248 277 278 249 249 +278 279 250 250 279 280 251 251 280 +281 252 252 281 282 253 253 282 283 +254 254 283 284 255 255 284 285 256 +256 285 286 257 257 286 287 258 258 +287 288 259 259 288 289 260 260 289 +290 261 261 290 291 262 262 291 292 +263 263 292 293 264 264 293 114 115 +38 39 294 265 265 294 295 266 266 +295 296 267 267 296 297 268 268 297 +298 269 269 298 299 270 270 299 300 +271 271 300 301 272 272 301 302 273 +273 302 303 274 274 303 304 275 275 +304 305 276 276 305 306 277 277 306 +307 278 278 307 308 279 279 308 309 +280 280 309 310 281 281 310 311 282 +282 311 312 283 283 312 313 284 284 +313 314 285 285 314 315 286 286 315 +316 287 287 316 317 288 288 317 318 +289 289 318 319 290 290 319 320 291 +291 320 321 292 292 321 322 293 293 +322 113 114 39 40 323 294 294 323 +324 295 295 324 325 296 296 325 326 +297 297 326 327 298 298 327 328 299 +299 328 329 300 300 329 330 301 301 +330 331 302 302 331 332 303 303 332 +333 304 304 333 334 305 305 334 335 +306 306 335 336 307 307 336 337 308 +308 337 338 309 309 338 339 310 310 +339 340 311 311 340 341 312 312 341 +342 313 313 342 343 314 314 343 344 +315 315 344 345 316 316 345 346 317 +317 346 347 318 318 347 348 319 319 +348 349 320 320 349 350 321 321 350 +351 322 322 351 112 113 40 41 352 +323 323 352 353 324 324 353 354 325 +325 354 355 326 326 355 356 327 327 +356 357 328 328 357 358 329 329 358 +359 330 330 359 360 331 331 360 361 +332 332 361 362 333 333 362 363 334 +334 363 364 335 335 364 365 336 336 +365 366 337 337 366 367 338 338 367 +368 339 339 368 369 340 340 369 370 +341 341 370 371 342 342 371 372 343 +343 372 373 344 344 373 374 345 345 +374 375 346 346 375 376 347 347 376 +377 348 348 377 378 349 349 378 379 +350 350 379 380 351 351 380 111 112 +41 42 381 352 352 381 382 353 353 +382 383 354 354 383 384 355 355 384 +385 356 356 385 386 357 357 386 387 +358 358 387 388 359 359 388 389 360 +360 389 390 361 361 390 391 362 362 +391 392 363 363 392 393 364 364 393 +394 365 365 394 395 366 366 395 396 +367 367 396 397 368 368 397 398 369 +369 398 399 370 370 399 400 371 371 +400 401 372 372 401 402 373 373 402 +403 374 374 403 404 375 375 404 405 +376 376 405 406 377 377 406 407 378 +378 407 408 379 379 408 409 380 380 +409 110 111 42 43 410 381 381 410 +411 382 382 411 412 383 383 412 413 +384 384 413 414 385 385 414 415 386 +386 415 416 387 387 416 417 388 388 +417 418 389 389 418 419 390 390 419 +420 391 391 420 421 392 392 421 422 +393 393 422 423 394 394 423 424 395 +395 424 425 396 396 425 426 397 397 +426 427 398 398 427 428 399 399 428 +429 400 400 429 430 401 401 430 431 +402 402 431 432 403 403 432 433 404 +404 433 434 405 405 434 435 406 406 +435 436 407 407 436 437 408 408 437 +438 409 409 438 109 110 43 44 439 +410 410 439 440 411 411 440 441 412 +412 441 442 413 413 442 443 414 414 +443 444 415 415 444 445 416 416 445 +446 417 417 446 447 418 418 447 448 +419 419 448 449 420 420 449 450 421 +421 450 451 422 422 451 452 423 423 +452 453 424 424 453 454 425 425 454 +455 426 426 455 456 427 427 456 457 +428 428 457 458 429 429 458 459 430 +430 459 460 431 431 460 461 432 432 +461 462 433 433 462 463 434 434 463 +464 435 435 464 465 436 436 465 466 +437 437 466 467 438 438 467 108 109 +44 45 468 439 439 468 469 440 440 +469 470 441 441 470 471 442 442 471 +472 443 443 472 473 444 444 473 474 +445 445 474 475 446 446 475 476 447 +447 476 477 448 448 477 478 449 449 +478 479 450 450 479 480 451 451 480 +481 452 452 481 482 453 453 482 483 +454 454 483 484 455 455 484 485 456 +456 485 486 457 457 486 487 458 458 +487 488 459 459 488 489 460 460 489 +490 461 461 490 491 462 462 491 492 +463 463 492 493 464 464 493 494 465 +465 494 495 466 466 495 496 467 467 +496 107 108 45 46 497 468 468 497 +498 469 469 498 499 470 470 499 500 +471 471 500 501 472 472 501 502 473 +473 502 503 474 474 503 504 475 475 +504 505 476 476 505 506 477 477 506 +507 478 478 507 508 479 479 508 509 +480 480 509 510 481 481 510 511 482 +482 511 512 483 483 512 513 484 484 +513 514 485 485 514 515 486 486 515 +516 487 487 516 517 488 488 517 518 +489 489 518 519 490 490 519 520 491 +491 520 521 492 492 521 522 493 493 +522 523 494 494 523 524 495 495 524 +525 496 496 525 106 107 46 47 526 +497 497 526 527 498 498 527 528 499 +499 528 529 500 500 529 530 501 501 +530 531 502 502 531 532 503 503 532 +533 504 504 533 534 505 505 534 535 +506 506 535 536 507 507 536 537 508 +508 537 538 509 509 538 539 510 510 +539 540 511 511 540 541 512 512 541 +542 513 513 542 543 514 514 543 544 +515 515 544 545 516 516 545 546 517 +517 546 547 518 518 547 548 519 519 +548 549 520 520 549 550 521 521 550 +551 522 522 551 552 523 523 552 553 +524 524 553 554 525 525 554 105 106 +47 48 555 526 526 555 556 527 527 +556 557 528 528 557 558 529 529 558 +559 530 530 559 560 531 531 560 561 +532 532 561 562 533 533 562 563 534 +534 563 564 535 535 564 565 536 536 +565 566 537 537 566 567 538 538 567 +568 539 539 568 569 540 540 569 570 +541 541 570 571 542 542 571 572 543 +543 572 573 544 544 573 574 545 545 +574 575 546 546 575 576 547 547 576 +577 548 548 577 578 549 549 578 579 +550 550 579 580 551 551 580 581 552 +552 581 582 553 553 582 583 554 554 +583 104 105 48 49 584 555 555 584 +585 556 556 585 586 557 557 586 587 +558 558 587 588 559 559 588 589 560 +560 589 590 561 561 590 591 562 562 +591 592 563 563 592 593 564 564 593 +594 565 565 594 595 566 566 595 596 +567 567 596 597 568 568 597 598 569 +569 598 599 570 570 599 600 571 571 +600 601 572 572 601 602 573 573 602 +603 574 574 603 604 575 575 604 605 +576 576 605 606 577 577 606 607 578 +578 607 608 579 579 608 609 580 580 +609 610 581 581 610 611 582 582 611 +612 583 583 612 103 104 49 50 613 +584 584 613 614 585 585 614 615 586 +586 615 616 587 587 616 617 588 588 +617 618 589 589 618 619 590 590 619 +620 591 591 620 621 592 592 621 622 +593 593 622 623 594 594 623 624 595 +595 624 625 596 596 625 626 597 597 +626 627 598 598 627 628 599 599 628 +629 600 600 629 630 601 601 630 631 +602 602 631 632 603 603 632 633 604 +604 633 634 605 605 634 635 606 606 +635 636 607 607 636 637 608 608 637 +638 609 609 638 639 610 610 639 640 +611 611 640 641 612 612 641 102 103 +50 51 642 613 613 642 643 614 614 +643 644 615 615 644 645 616 616 645 +646 617 617 646 647 618 618 647 648 +619 619 648 649 620 620 649 650 621 +621 650 651 622 622 651 652 623 623 +652 653 624 624 653 654 625 625 654 +655 626 626 655 656 627 627 656 657 +628 628 657 658 629 629 658 659 630 +630 659 660 631 631 660 661 632 632 +661 662 633 633 662 663 634 634 663 +664 635 635 664 665 636 636 665 666 +637 637 666 667 638 638 667 668 639 +639 668 669 640 640 669 670 641 641 +670 101 102 51 52 671 642 642 671 +672 643 643 672 673 644 644 673 674 +645 645 674 675 646 646 675 676 647 +647 676 677 648 648 677 678 649 649 +678 679 650 650 679 680 651 651 680 +681 652 652 681 682 653 653 682 683 +654 654 683 684 655 655 684 685 656 +656 685 686 657 657 686 687 658 658 +687 688 659 659 688 689 660 660 689 +690 661 661 690 691 662 662 691 692 +663 663 692 693 664 664 693 694 665 +665 694 695 666 666 695 696 667 667 +696 697 668 668 697 698 669 669 698 +699 670 670 699 100 101 52 53 700 +671 671 700 701 672 672 701 702 673 +673 702 703 674 674 703 704 675 675 +704 705 676 676 705 706 677 677 706 +707 678 678 707 708 679 679 708 709 +680 680 709 710 681 681 710 711 682 +682 711 712 683 683 712 713 684 684 +713 714 685 685 714 715 686 686 715 +716 687 687 716 717 688 688 717 718 +689 689 718 719 690 690 719 720 691 +691 720 721 692 692 721 722 693 693 +722 723 694 694 723 724 695 695 724 +725 696 696 725 726 697 697 726 727 +698 698 727 728 699 699 728 99 100 +53 54 729 700 700 729 730 701 701 +730 731 702 702 731 732 703 703 732 +733 704 704 733 734 705 705 734 735 +706 706 735 736 707 707 736 737 708 +708 737 738 709 709 738 739 710 710 +739 740 711 711 740 741 712 712 741 +742 713 713 742 743 714 714 743 744 +715 715 744 745 716 716 745 746 717 +717 746 747 718 718 747 748 719 719 +748 749 720 720 749 750 721 721 750 +751 722 722 751 752 723 723 752 753 +724 724 753 754 725 725 754 755 726 +726 755 756 727 727 756 757 728 728 +757 98 99 54 55 758 729 729 758 +759 730 730 759 760 731 731 760 761 +732 732 761 762 733 733 762 763 734 +734 763 764 735 735 764 765 736 736 +765 766 737 737 766 767 738 738 767 +768 739 739 768 769 740 740 769 770 +741 741 770 771 742 742 771 772 743 +743 772 773 744 744 773 774 745 745 +774 775 746 746 775 776 747 747 776 +777 748 748 777 778 749 749 778 779 +750 750 779 780 751 751 780 781 752 +752 781 782 753 753 782 783 754 754 +783 784 755 755 784 785 756 756 785 +786 757 757 786 97 98 55 56 787 +758 758 787 788 759 759 788 789 760 +760 789 790 761 761 790 791 762 762 +791 792 763 763 792 793 764 764 793 +794 765 765 794 795 766 766 795 796 +767 767 796 797 768 768 797 798 769 +769 798 799 770 770 799 800 771 771 +800 801 772 772 801 802 773 773 802 +803 774 774 803 804 775 775 804 805 +776 776 805 806 777 777 806 807 778 +778 807 808 779 779 808 809 780 780 +809 810 781 781 810 811 782 782 811 +812 783 783 812 813 784 784 813 814 +785 785 814 815 786 786 815 96 97 +56 57 816 787 787 816 817 788 788 +817 818 789 789 818 819 790 790 819 +820 791 791 820 821 792 792 821 822 +793 793 822 823 794 794 823 824 795 +795 824 825 796 796 825 826 797 797 +826 827 798 798 827 828 799 799 828 +829 800 800 829 830 801 801 830 831 +802 802 831 832 803 803 832 833 804 +804 833 834 805 805 834 835 806 806 +835 836 807 807 836 837 808 808 837 +838 809 809 838 839 810 810 839 840 +811 811 840 841 812 812 841 842 813 +813 842 843 814 814 843 844 815 815 +844 95 96 57 58 845 816 816 845 +846 817 817 846 847 818 818 847 848 +819 819 848 849 820 820 849 850 821 +821 850 851 822 822 851 852 823 823 +852 853 824 824 853 854 825 825 854 +855 826 826 855 856 827 827 856 857 +828 828 857 858 829 829 858 859 830 +830 859 860 831 831 860 861 832 832 +861 862 833 833 862 863 834 834 863 +864 835 835 864 865 836 836 865 866 +837 837 866 867 838 838 867 868 839 +839 868 869 840 840 869 870 841 841 +870 871 842 842 871 872 843 843 872 +873 844 844 873 94 95 58 59 874 +845 845 874 875 846 846 875 876 847 +847 876 877 848 848 877 878 849 849 +878 879 850 850 879 880 851 851 880 +881 852 852 881 882 853 853 882 883 +854 854 883 884 855 855 884 885 856 +856 885 886 857 857 886 887 858 858 +887 888 859 859 888 889 860 860 889 +890 861 861 890 891 862 862 891 892 +863 863 892 893 864 864 893 894 865 +865 894 895 866 866 895 896 867 867 +896 897 868 868 897 898 869 869 898 +899 870 870 899 900 871 871 900 901 +872 872 901 902 873 873 902 93 94 +59 60 903 874 874 903 904 875 875 +904 905 876 876 905 906 877 877 906 +907 878 878 907 908 879 879 908 909 +880 880 909 910 881 881 910 911 882 +882 911 912 883 883 912 913 884 884 +913 914 885 885 914 915 886 886 915 +916 887 887 916 917 888 888 917 918 +889 889 918 919 890 890 919 920 891 +891 920 921 892 892 921 922 893 893 +922 923 894 894 923 924 895 895 924 +925 896 896 925 926 897 897 926 927 +898 898 927 928 899 899 928 929 900 +900 929 930 901 901 930 931 902 902 +931 92 93 60 61 932 903 903 932 +933 904 904 933 934 905 905 934 935 +906 906 935 936 907 907 936 937 908 +908 937 938 909 909 938 939 910 910 +939 940 911 911 940 941 912 912 941 +942 913 913 942 943 914 914 943 944 +915 915 944 945 916 916 945 946 917 +917 946 947 918 918 947 948 919 919 +948 949 920 920 949 950 921 921 950 +951 922 922 951 952 923 923 952 953 +924 924 953 954 925 925 954 955 926 +926 955 956 927 927 956 957 928 928 +957 958 929 929 958 959 930 930 959 +960 931 931 960 91 92 61 2 62 +932 932 62 63 933 933 63 64 934 +934 64 65 935 935 65 66 936 936 +66 67 937 937 67 68 938 938 68 +69 939 939 69 70 940 940 70 71 +941 941 71 72 942 942 72 73 943 +943 73 74 944 944 74 75 945 945 +75 76 946 946 76 77 947 947 77 +78 948 948 78 79 949 949 79 80 +950 950 80 81 951 951 81 82 952 +952 82 83 953 953 83 84 954 954 +84 85 955 955 85 86 956 956 86 +87 957 957 87 88 958 958 88 89 +959 959 89 90 960 960 90 1 91 + +CELL_TYPES 900 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 +9 + +CELL_DATA 900 +FIELD FieldData 3 +radiation%20flux%20density 1 900 double +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 2.5468307699e-06 -8.9182542944e-06 0.00016332556165 -0.00070975264151 -0.0006348471239 +0.0037141946205 0.0048007863367 -0.051599708446 -0.21506110092 -1.1911138074 -3.0142632337 -3.917151096 11.785621516 175.47733592 +175.47733589 11.785621498 -3.9171511046 -3.0142632411 -1.1911138091 -0.21506110142 -0.051599708395 0.004800786318 0.0037141946101 +-0.00063484710541 -0.00070975262826 0.00016332556482 -8.9182540184e-06 2.5468304519e-06 0 0 -1.1215289827e-05 0.00018516630904 +-0.00097360111714 -0.00025285926978 0.0067439436016 0.016899655087 0.0045177873567 -0.23333802652 -0.81870189558 -2.2182052342 3.0547707382 +263.37288455 3308.9464544 7663.4960206 7663.4960225 3308.946455 263.37288447 3.054770719 -2.2182052424 -0.81870189726 +-0.23333802644 0.0045177874486 0.016899655231 0.0067439436213 -0.00025285925014 -0.00097360110382 0.00018516631171 -1.1215289724e-05 0 +0 0.00017377560427 -0.0013040240484 0.00020953250771 0.015040281105 0.034899809741 0.038696805025 0.095871479598 -0.35067613336 +2.6541473198 96.651937478 1710.7524515 13714.746033 22687.972329 18844.550079 18844.550074 22687.972328 13714.746032 +1710.7524508 96.651937403 2.6541473117 -0.35067613375 0.095871480663 0.03869680525 0.034899809774 0.01504028112 0.00020953252458 +-0.0013040240379 0.00017377560574 0 0 -0.001397091902 0.00061649274307 0.025274836297 0.076477398907 0.11355494592 +0.2358791298 0.73346429658 17.329761605 365.90142863 5666.4751409 30015.322222 36808.779903 30695.371753 28571.196571 +28571.196572 30695.371731 36808.7799 30015.32222 5666.475139 365.90142844 17.329761597 0.73346429799 0.23587913066 +0.11355494601 0.07647739886 0.025274836298 0.00061649275394 -0.0013970918945 0 0 -0.0022298214331 0.026590664206 +0.12199828297 0.24174602925 0.75738234959 2.5875896345 34.380067669 705.25063397 11647.648989 45440.649764 51919.487632 +33143.215071 33144.211097 35894.005067 35894.005079 33144.211113 33143.215042 51919.487631 45440.649762 11647.648985 +705.2506337 34.380067664 2.5875896356 0.75738234989 0.24174602914 0.12199828296 0.026590664203 -0.0022298214284 0 +0 -0.0082790151714 0.047238978263 0.26027925315 0.81553090177 3.5483047097 42.814772587 935.98342386 18222.243906 +53094.06175 57202.149378 29964.705702 31003.924724 35412.676856 39245.507907 39245.507918 35412.676865 31003.924736 +29964.705679 57202.14938 53094.06175 18222.2439 935.98342354 42.814772576 3.5483047103 0.81553090239 0.26027925322 +0.047238978282 -0.0082790151904 0 0 -0.055659434177 -0.099402351834 0.22316985244 1.376151039 35.580622401 +937.26191203 22348.130358 56505.546517 60135.664595 31372.418106 28529.375614 34336.810805 36825.574923 36751.268864 +36751.268841 36825.574934 34336.810804 28529.375629 31372.418079 60135.664603 56505.546518 22348.130352 937.2619117 +35.580622391 1.3761510387 0.2231698527 -0.099402351881 -0.055659434219 0 0 -0.23414618353 -0.72929219161 +-0.7977724533 15.705620353 700.31814838 18152.395524 56654.733153 60353.098293 32260.029271 25645.408245 33190.419566 +37225.757215 36984.861746 31816.061057 31816.061064 36984.861717 37225.757211 33190.419588 25645.408247 32260.029245 +60353.098307 56654.733153 18152.395518 700.31814809 15.705620344 -0.7977724535 -0.72929219163 -0.23414618348 0 +0 -0.77750550892 -2.8639452614 -1.2954039296 353.56942639 11591.785177 53618.870018 62343.551295 33133.189085 +22675.686415 30102.982924 37309.247293 37407.628627 32334.747328 31582.336345 31582.336336 32334.747319 37407.628604 +37309.247293 30102.982957 22675.686414 33133.189058 62343.551301 53618.870018 11591.785173 353.56942622 -1.2954039365 +-2.863945263 -0.77750550868 0 0 -2.7325305329 -7.7923107411 88.614503045 5701.09871 45924.803877 +59273.140785 32659.991892 26250.698836 28202.045285 33998.561911 37699.818673 34031.626325 31954.390399 28615.480031 +28615.480037 31954.390384 34031.626325 37699.818664 33998.56191 28202.045322 26250.698837 32659.991858 59273.14079 +45924.803876 5701.0987081 88.614502981 -7.7923107463 -2.7325305338 0 0 -6.9008496706 -3.7543072234 +1717.2503983 29422.414456 53936.896548 34717.737734 27924.487392 28412.125457 34492.091619 36331.051325 31502.88427 +33075.297989 29398.889443 24628.088872 24628.088864 29398.889444 33075.297993 31502.884261 36331.05132 34492.091624 +28412.125478 27924.487391 34717.737709 53936.89655 29422.414455 1717.2503976 -3.754307239 -6.9008496728 0 +0 -8.7090701797 226.62466831 12310.925788 40074.756654 41684.558091 29600.227141 27911.500599 31517.613424 +35000.775882 34530.808603 31679.056669 26992.954231 26153.216557 26990.139657 26990.139643 26153.21654 26992.954238 +31679.056672 34530.808602 35000.775883 31517.613433 27911.500614 29600.227143 41684.558075 40074.756653 12310.925788 +226.62466827 -8.709070184 0 0 -2.0823544521 1858.5113263 24248.969775 40265.251186 30691.267401 +28562.612074 27947.841165 29790.730189 31047.221829 33110.317178 29051.494462 22591.754769 25199.253595 32270.5746 +32270.574589 25199.253589 22591.754764 29051.494475 33110.317183 31047.221824 29790.730192 27947.841164 28562.612076 +30691.267401 40265.251179 24248.969774 1858.5113271 -2.0823544595 0 0 15.897688962 6778.8519502 +22409.130199 30474.804282 31266.496739 28734.927318 25100.056528 24186.882319 29194.132489 27992.039542 27500.047839 +27441.40047 29961.883256 28686.090822 28686.090832 29961.88327 27441.400473 27500.047836 27992.039554 29194.132486 +24186.882311 25100.056523 28734.927323 31266.496736 30474.804276 22409.130199 6778.8519488 15.897688937 0 +0 15.466499186 7832.6429473 21233.182137 26534.503988 26652.333388 21447.852702 23434.456637 29547.148041 +27288.260108 26024.86582 26509.431264 34311.284053 34681.330746 32598.295611 32598.29559 34681.330752 34311.284064 +26509.431275 26024.86582 27288.260104 29547.148051 23434.45665 21447.852703 26652.333373 26534.503986 21233.182142 +7832.6429457 15.466499173 0 0 5.4992311548 2801.8050163 20873.66603 24994.025769 15325.39358 +14042.925979 21120.174928 31175.763759 34784.576744 26561.877873 27219.13617 30892.508874 40227.093795 46840.734859 +46840.734849 40227.093787 30892.508891 27219.136159 26561.877864 34784.576761 31175.763781 21120.174941 14042.92596 +15325.393565 24994.02578 20873.66603 2801.8050141 5.4992311352 0 0 -1.025178257 60.570644178 +2908.2414654 19072.261113 40778.05079 58328.147624 75065.867173 95583.92963 122314.52218 155557.36653 195873.28294 +238757.69518 291979.22234 328479.2529 328479.25291 291979.22235 238757.69518 195873.28294 155557.36654 122314.5222 +95583.929626 75065.867162 58328.147618 40778.050795 19072.261111 2908.2414639 60.570644108 -1.0251782566 0 +0 -0.055597642064 -0.3806351154 9.5050738576 217.81601771 1800.7571955 8113.6955888 17279.54434 28263.881534 +41777.161021 62992.5778 99555.919043 154466.84631 225865.63859 287261.67546 287261.67546 225865.63858 154466.84631 +99555.919038 62992.577794 41777.161015 28263.881532 17279.544341 8113.6955893 1800.7571949 217.81601763 9.5050738598 +-0.38063511502 -0.055597642476 0 0 -0.0065988492621 0.14265709193 0.24407120403 0.62696506433 11.237812177 +140.85640415 721.32309779 2263.1744277 5103.3966382 10428.012213 21459.964165 43221.698532 81670.998413 130103.42089 +130103.42088 81670.998407 43221.698529 21459.964163 10428.012213 5103.3966379 2263.1744283 721.32309793 140.85640415 +11.237812178 0.62696506453 0.24407120473 0.14265709224 -0.0065988493238 0 0 -0.0001743721164 0.0062561768577 +-0.0002867489426 0.017316111246 0.064647709797 0.54808742814 5.6103406617 34.033372179 145.87543023 501.28011162 1488.718844 +3870.1572357 8663.2891456 16582.006387 16582.006386 8663.2891449 3870.1572353 1488.718844 501.28011167 145.87543025 +34.033372182 5.6103406617 0.54808742808 0.064647709856 0.017316111296 -0.00028674892612 0.0062561768715 -0.00017437210773 0 +0 -2.7023837994e-05 -0.00024204439049 7.7334483385e-05 0.0042489642096 0.004377568249 0.011490542246 0.020113896743 0.085272548759 +0.92370820451 6.361892093 27.207955526 85.198890019 184.98883053 156.77899461 156.77899462 184.98883053 85.19889001 +27.207955522 6.3618920928 0.92370820445 0.085272548703 0.020113896742 0.011490542233 0.0043775682458 0.0042489642095 7.7334483209e-05 +-0.00024204439034 -2.7023837946e-05 0 0 9.5332863554e-07 2.1085080316e-05 0.00012851699684 0.00020029789652 0.00032519335537 +0.00073461327144 -0.00195125841 -0.0085572079262 -0.0041848584489 -0.10433164665 -0.61283946469 -0.28098115745 0.68861528458 0.64805077778 +0.6480507778 0.68861528469 -0.28098115746 -0.61283946469 -0.10433164665 -0.0041848584637 -0.0085572079382 -0.0019512584128 0.00073461327155 +0.00032519335534 0.0002002978961 0.0001285169966 2.1085080252e-05 9.5332861829e-07 0 0 2.5304817384e-07 2.0717694893e-06 +3.3938164269e-06 7.9076591551e-06 3.6162544945e-05 -0.00013141997665 -0.0011924331736 -0.002189323327 -0.011448535848 -0.088159975452 -0.12508626218 +-0.083131245561 -0.047940290494 -0.09495639512 -0.094956395174 -0.047940290484 -0.083131245554 -0.12508626217 -0.088159975449 -0.011448535849 +-0.0021893233302 -0.0011924331751 -0.00013141997684 3.6162544991e-05 7.9076591688e-06 3.3938164263e-06 2.0717694869e-06 2.5304817283e-07 0 +0 4.682459939e-08 1.0463940505e-07 5.4764234646e-08 1.2842795174e-06 -2.2499792974e-06 -4.5064825951e-05 -0.00015209212539 -0.00017221961103 +-0.0012586920774 -0.0058160188792 0.0022515524377 -0.0020417131155 -0.022799699379 -0.020126033787 -0.020126033792 -0.022799699386 -0.0020417131156 +0.0022515524381 -0.0058160188789 -0.0012586920773 -0.00017221961112 -0.00015209212562 -4.5064826008e-05 -2.2499793e-06 1.2842795201e-06 5.4764235433e-08 +1.0463940557e-07 4.6824599336e-08 0 0 -2.6969633284e-09 -8.7903327655e-09 4.0502167498e-08 9.7604180133e-08 -1.1621834924e-06 +-4.6017575981e-06 -2.0852429196e-06 -1.9178868122e-05 -1.3627063212e-05 0.00066675095079 0.00067829438633 -0.00014430086242 -0.0013043628573 -4.5030193841e-05 +-4.5030194089e-05 -0.0013043628583 -0.00014430086245 0.0006782943864 0.00066675095087 -1.362706317e-05 -1.917886812e-05 -2.0852429212e-06 -4.6017576094e-06 +-1.1621834957e-06 9.7604180174e-08 4.0502167593e-08 -8.7903327082e-09 -2.6969633122e-09 0 0 1.5055976491e-11 1.6161429938e-09 +8.2662873393e-09 -3.1442320371e-08 -1.7259502711e-07 9.9334643764e-08 -7.5738506711e-08 2.203782e-07 3.0682135079e-05 8.6047299103e-05 -2.5694751363e-05 +-5.8293936963e-05 1.9654997578e-05 2.5784861375e-05 2.5784861373e-05 1.9654997572e-05 -5.8293936971e-05 -2.5694751365e-05 8.6047299114e-05 3.0682135077e-05 +2.203782002e-07 -7.5738506546e-08 9.9334644005e-08 -1.7259502741e-07 -3.1442320478e-08 8.2662873176e-09 1.6161429927e-09 1.5055977559e-11 0 +0 3.717516529e-11 2.5209645723e-10 -1.1708878209e-09 -7.9657630197e-09 8.5040496616e-09 3.2322597657e-08 -6.2925157569e-09 3.775069008e-07 +3.3937689036e-06 -5.5519498428e-06 -9.2688325346e-06 -1.4683951631e-06 3.5619850377e-06 3.0574130461e-07 3.0574130584e-07 3.5619850378e-06 -1.4683951636e-06 +-9.2688325356e-06 -5.5519498436e-06 3.393768902e-06 3.7750690085e-07 -6.2925157253e-09 3.2322597725e-08 8.5040497402e-09 -7.9657630281e-09 -1.1708878235e-09 +2.520964565e-10 3.7175165232e-11 0 0 -1.3254594065e-12 -4.2649280233e-11 -2.1136212298e-10 4.7327420798e-10 3.2356186765e-09 +-2.1919948894e-09 -6.441695186e-09 1.0287603374e-09 -3.1928809876e-07 -7.286340607e-07 -2.2848287867e-08 2.3538943538e-07 -3.1826210578e-08 -3.1901325046e-08 +-3.1901325044e-08 -3.1826210578e-08 2.3538943538e-07 -2.2848287886e-08 -7.2863406078e-07 -3.1928809873e-07 1.0287603328e-09 -6.4416951953e-09 -2.1919948953e-09 +3.2356186858e-09 4.7327421039e-10 -2.1136212265e-10 -4.264928026e-11 -1.3254594124e-12 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 + +dose 1 900 double +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 2.0095368158e-08 -4.8571156731e-08 1.3225750204e-06 -4.4950996357e-06 -1.0437168852e-05 +2.2449679306e-05 3.5593550125e-05 -0.00058123109145 -0.0022750336567 -0.011993345677 -0.036456531684 -0.047061637911 0.082891426363 1.4673523699 +1.4673523696 0.082891426142 -0.04706163803 -0.03645653177 -0.011993345695 -0.0022750336616 -0.00058123109076 3.5593549917e-05 2.2449679517e-05 +-1.0437168514e-05 -4.4950994792e-06 1.3225750495e-06 -4.8571157016e-08 2.0095365928e-08 0 0 -6.7430737513e-08 1.5016284444e-06 +-6.3560380675e-06 -8.6242825443e-06 5.3717379565e-05 0.00025425950845 0.00024477726782 -0.0028208916266 -0.012482011299 -0.035711009263 -0.025569351659 +2.1622585994 29.319687672 84.114675937 84.114675948 29.319687677 2.1622585985 -0.025569351979 -0.035711009375 -0.012482011325 +-0.0028208916223 0.00024477726897 0.00025425951018 5.3717380181e-05 -8.6242821831e-06 -6.3560379195e-06 1.5016284647e-06 -6.7430740427e-08 0 +0 1.371010445e-06 -9.0838897185e-06 -7.6689270448e-06 0.00013611194253 0.00053142414438 0.00084707921898 0.0015161322233 -0.0034347697153 +0.0063403273479 0.80175383637 15.2762266 129.46739477 298.71727811 356.83349469 356.83349466 298.71727811 129.46739476 +15.276226593 0.80175383551 0.0063403272511 -0.0034347697028 0.0015161322374 0.00084707922274 0.00053142414537 0.0001361119431 -7.668926731e-06 +-9.0838896104e-06 1.3710104523e-06 0 0 -1.0190579776e-05 -8.4682500279e-06 0.0002357171755 0.0010803268012 0.0023079511102 +0.0036676460337 0.0079979834603 0.15595898652 3.2763249697 52.600812068 316.93010005 608.0956571 741.8555978 772.00816493 +772.00816485 741.85559756 608.09565703 316.93010001 52.600812049 3.2763249681 0.15595898647 0.0079979834886 0.0036676460473 +0.0023079511118 0.0010803268013 0.0002357171758 -8.4682498471e-06 -1.019057971e-05 0 0 -3.6779396915e-05 0.00021594201411 +0.0015654741194 0.0040820183021 0.010650065895 0.032550811296 0.32510203086 6.5177397505 110.34293891 546.71892025 1012.1279554 +1203.0696733 1277.0383617 1326.3853782 1326.3853782 1277.0383615 1203.069673 1012.1279553 546.71892018 110.34293887 +6.517739748 0.32510203087 0.032550811314 0.010650065899 0.0040820183012 0.0015654741192 0.00021594201416 -3.6779396867e-05 0 +0 -0.00012931817449 0.00053226206632 0.0040242556697 0.013250471274 0.048451592355 0.4464230148 8.8041195813 172.00654129 +723.18685248 1280.0275616 1475.7227235 1602.4004378 1749.0650028 1894.7109886 1894.7109888 1749.0650029 1602.4004377 +1475.7227232 1280.0275615 723.1868524 172.00654123 8.8041195785 0.44642301472 0.048451592362 0.013250471277 0.0040242556703 +0.00053226206623 -0.00012931817471 0 0 -0.00065329001325 -0.0013044860705 0.003888500452 0.027314284161 0.37165824292 +8.8736582058 209.35222278 822.58796721 1468.0089111 1746.398167 1915.9164593 2087.0178079 2302.2784925 2467.9471088 +2467.947109 2302.2784926 2087.0178078 1915.9164592 1746.3981667 1468.0089111 822.58796715 209.35222272 8.8736582028 +0.37165824284 0.027314284167 0.0038885004558 -0.0013044860715 -0.00065329001398 0 0 -0.0027275432302 -0.010887215201 +-0.014049338555 0.14849717793 6.5247145598 171.48445175 825.33505229 1515.8719816 1876.1805666 2026.0119278 2253.4323507 +2552.6046585 2826.4560857 3037.9998785 3037.9998784 2826.4560856 2552.6046586 2253.4323508 2026.0119276 1876.1805664 +1515.8719816 825.33505223 171.48445169 6.5247145572 0.14849717786 -0.01404933856 -0.010887215202 -0.0027275432302 0 +0 -0.0095383588732 -0.044635997784 -0.058294574108 3.12715921 109.49173137 726.36201872 1490.7995197 1894.462944 +2055.8890311 2316.0075818 2674.8735774 3065.965398 3356.8300995 3669.6722916 3669.6722911 3356.8300992 3065.9653978 +2674.8735775 2316.007582 2055.8890309 1894.4629437 1490.7995197 726.36201865 109.49173133 3.1271592084 -0.058294574173 +-0.044635997791 -0.0095383588689 0 0 -0.028550594327 -0.12858622934 0.61613476489 52.720085178 550.61529913 +1303.6067064 1796.4128313 2064.3886185 2307.167787 2704.2399471 3188.1718859 3594.967085 4008.1674152 4540.8120079 +4540.8120079 4008.1674151 3594.9670848 3188.1718858 2704.2399471 2307.1677871 2064.3886183 1796.412831 1303.6067064 +550.61529907 52.720085159 0.61613476425 -0.1285862294 -0.028550594329 0 0 -0.074892549094 -0.17064172145 +15.117032219 312.08667463 1034.6619845 1559.0804936 1967.0709893 2233.8059055 2604.7357632 3147.6437467 3681.1184045 +4207.2738262 4726.4550428 5915.8903398 5915.8903393 4726.4550428 4207.2738263 3681.1184043 3147.6437467 2604.7357632 +2233.8059054 1967.070989 1559.0804933 1034.6619845 312.0866746 15.117032212 -0.17064172162 -0.074892549114 0 +0 -0.11086244717 1.747755323 117.56012715 634.16021048 1314.3934019 1675.289164 2059.9161675 2465.2709852 +2987.0025502 3516.1381536 4171.8361973 4829.4870039 5830.7463052 8045.218422 8045.2184216 5830.7463047 4829.4870042 +4171.8361977 3516.1381537 2987.00255 2465.2709852 2059.9161674 1675.2891638 1314.3934018 634.16021044 117.56012714 +1.7477553225 -0.11086244723 0 0 -0.07364439431 16.683770707 293.74965024 859.9258432 1363.7039398 +1754.632618 2153.1720359 2637.7364199 3161.355063 3827.0309415 4576.5947711 5729.4174645 7019.9849042 10894.664053 +10894.664053 7019.9849038 5729.417464 4576.5947715 3827.0309417 3161.355063 2637.7364198 2153.1720358 1754.6326179 +1363.7039397 859.9258431 293.74965027 16.683770714 -0.073644394415 0 0 0.08807575664 63.482085729 +381.65173861 860.63115411 1316.0613595 1769.3391513 2177.1853927 2683.7690728 3371.8328105 4323.6467483 5661.5524184 +7887.2343775 10808.805642 13119.905903 13119.905904 10808.805642 7887.2343781 5661.5524185 4323.6467487 3371.8328107 +2683.7690726 2177.1853924 1769.3391512 1316.0613593 860.631154 381.65173862 63.482085719 0.088075756359 0 +0 0.095945558771 72.827694615 376.43912283 790.04516502 1199.5727464 1575.8402265 1997.4440723 2631.2415567 +3305.3150272 4300.5573399 5673.0873741 7882.2569707 10821.698272 13063.54571 13063.545711 10821.698272 7882.2569708 +5673.0873741 4300.5573401 3305.3150276 2631.241557 1997.4440722 1575.8402262 1199.5727462 790.04516506 376.43912285 +72.827694591 0.095945558613 0 0 0.034531134244 25.310361705 279.25744319 677.57967252 1035.0834446 +1346.0663951 1777.8483812 2342.1781256 3120.6990177 3756.2849107 4681.2709403 5908.0405888 7534.2235617 11285.04711 +11285.04711 7534.2235616 5908.0405889 4681.27094 3756.2849109 3120.6990181 2342.1781258 1777.8483811 1346.0663948 +1035.0834446 677.57967259 279.25744316 25.310361685 0.034531134089 0 0 -0.0011471126809 0.091609475329 +5.4625648357 47.344088943 149.77871107 303.75895628 508.95939404 779.63030702 1144.1674593 1637.5951738 2402.4866409 +3442.0987151 4891.1027992 7725.5115902 7725.51159 4891.1027992 3442.0987151 2402.4866409 1637.5951737 1144.1674593 +779.63030698 508.95939401 303.75895627 149.77871107 47.344088936 5.4625648328 0.091609475186 -0.0011471126774 0 +0 -0.00011497389371 -0.00089205353104 0.021114618078 0.42768457551 4.1533177141 22.909329072 65.014280203 138.40822864 +243.1797857 419.43307449 742.74603268 1287.5928631 2132.7501028 3394.8412883 3394.8412882 2132.7501028 1287.5928631 +742.74603263 419.43307446 243.17978568 138.40822864 65.014280206 22.909329072 4.153317713 0.42768457536 0.021114618103 +-0.00089205353066 -0.000114973895 0 0 -1.5155667517e-05 0.00029861904232 0.00071130531642 0.0012678381538 0.023123231808 +0.30784565163 1.9378243925 7.2993626307 19.969425105 47.807909983 110.2597297 243.95826782 498.96720844 916.70335687 +916.70335683 498.9672084 243.9582678 110.2597297 47.807909985 19.969425104 7.2993626322 1.9378243927 0.30784565162 +0.023123231811 0.0012678381547 0.00071130531853 0.00029861904296 -1.5155667627e-05 0 0 -7.707296814e-07 8.3552584157e-06 +-3.7458989877e-06 8.6443625528e-05 0.00027392061534 0.0015796445961 0.013012450041 0.086042233776 0.41900559717 1.678731245 5.617980354 +15.983777362 38.166913036 70.221547004 70.221547003 38.166913033 15.98377736 5.6179803539 1.6787312452 0.41900559719 +0.086042233776 0.013012450041 0.0015796445961 0.00027392061551 8.6443625681e-05 -3.7458989557e-06 8.3552584427e-06 -7.7072966631e-07 0 +0 -7.5376290288e-08 -4.7534347654e-07 7.0317798081e-07 1.4600337137e-05 1.6224983705e-05 5.2705789727e-05 0.00011050496026 0.00015566902677 +0.0019396838196 0.017019882787 0.073677926834 0.25239212534 0.5931132246 0.48081886081 0.48081886085 0.59311322462 0.25239212532 +0.073677926823 0.017019882786 0.001939683819 0.00015566902656 0.00011050496028 5.2705789655e-05 1.6224983692e-05 1.4600337133e-05 7.0317797885e-07 +-4.7534347661e-07 -7.5376290158e-08 0 0 -1.0145209485e-09 4.4254937155e-08 3.2243358585e-07 7.0610548809e-07 1.174392025e-06 +4.2398773143e-06 -5.5409175827e-06 -5.4568486782e-05 -1.2943034045e-05 -0.0005461391306 -0.003293486536 -0.0017121885332 0.0034735440912 0.00121518913 +0.0012151891301 0.0034735440916 -0.0017121885331 -0.0032934865359 -0.0005461391306 -1.2943034136e-05 -5.4568486857e-05 -5.5409175962e-06 4.2398773162e-06 +1.1743920255e-06 7.0610548719e-07 3.2243358524e-07 4.4254937009e-08 -1.0145209782e-09 0 0 7.0118640924e-10 6.8875269365e-09 +7.444734652e-09 2.3877759521e-08 1.5662245776e-07 -2.6809297987e-07 -4.8796987703e-06 -8.3083019791e-06 -3.5205467821e-05 -0.00031884986118 -0.00040930941666 +-0.00023274989684 -0.00026753383251 -0.00054168259204 -0.00054168259236 -0.00026753383244 -0.00023274989681 -0.00040930941664 -0.00031884986118 -3.5205467828e-05 +-8.3083019934e-06 -4.8796987773e-06 -2.6809298049e-07 1.5662245796e-07 2.3877759585e-08 7.4447346545e-09 6.8875269285e-09 7.0118640649e-10 0 +0 7.4065499265e-11 8.0987925177e-11 6.2135105461e-11 5.3525486323e-09 -9.1449480932e-10 -1.5355495453e-07 -5.2814882648e-07 -4.7151850004e-07 +-4.5352246575e-06 -1.4287373989e-05 1.5888712354e-05 -3.9599769662e-06 -9.6956221454e-05 -6.2243944241e-05 -6.2243944258e-05 -9.6956221473e-05 -3.9599769665e-06 +1.5888712356e-05 -1.4287373989e-05 -4.5352246565e-06 -4.7151850032e-07 -5.2814882742e-07 -1.535549548e-07 -9.1449482519e-10 5.3525486434e-09 6.2135108294e-11 +8.0987926412e-11 7.4065499136e-11 0 0 -5.917339194e-12 -2.0492406985e-11 1.6652105004e-10 4.3310637905e-10 -3.9634787005e-09 +-1.6488521929e-08 -1.0548443811e-09 -5.7381937624e-08 -1.0302514459e-07 2.5782409586e-06 2.2797646621e-06 -1.4096776788e-06 -3.5378695956e-06 3.2026803454e-07 +3.2026803397e-07 -3.5378695981e-06 -1.409677679e-06 2.2797646623e-06 2.5782409589e-06 -1.0302514441e-07 -5.7381937622e-08 -1.0548443825e-09 -1.6488521976e-08 +-3.9634787121e-09 4.331063791e-10 1.6652105023e-10 -2.0492406838e-11 -5.9173391617e-12 0 0 1.3265954696e-13 5.079133602e-12 +2.1203835901e-11 -1.1691765796e-10 -5.8096319529e-10 6.0720365018e-10 3.2728975977e-10 -5.8860185939e-10 9.2353820645e-08 2.5753439354e-07 -1.6663292795e-07 +-2.4760119714e-07 8.7623563261e-08 8.3256198552e-08 8.3256198549e-08 8.7623563251e-08 -2.4760119717e-07 -1.6663292797e-07 2.5753439357e-07 9.2353820632e-08 +-5.8860185847e-10 3.2728976089e-10 6.0720365169e-10 -5.8096319603e-10 -1.169176583e-10 2.1203835843e-11 5.0791335999e-12 1.3265954902e-13 0 +0 6.9441170589e-14 3.9891641787e-13 -3.5678908874e-12 -2.1005283549e-11 3.6252131435e-11 1.107500315e-10 -1.2748303781e-10 7.1340977782e-10 +9.4888121401e-09 -1.8871834322e-08 -2.7575879855e-08 -1.0388633299e-09 1.0202926784e-08 -1.9102382917e-11 -1.9102380785e-11 1.0202926784e-08 -1.0388633308e-09 +-2.7575879858e-08 -1.8871834324e-08 9.4888121361e-09 7.1340977786e-10 -1.2748303781e-10 1.1075003176e-10 3.6252131672e-11 -2.1005283568e-11 -3.5678908917e-12 +3.9891641646e-13 6.9441170472e-14 0 0 -2.181790553e-15 -8.3913872679e-14 -3.906149685e-13 1.639396893e-12 8.4572409594e-12 +-1.1115087139e-11 -2.6476509502e-11 9.0169945342e-13 -8.7427955189e-10 -1.7943114264e-09 5.9843020105e-11 5.8029311169e-10 -9.2167369114e-11 -8.5181645904e-11 +-8.51816459e-11 -9.2167369113e-11 5.8029311171e-10 5.9843020063e-11 -1.7943114266e-09 -8.7427955179e-10 9.0169941641e-13 -2.6476509558e-11 -1.1115087167e-11 +8.4572409857e-12 1.6393968994e-12 -3.9061496793e-13 -8.3913872747e-14 -2.1817905626e-15 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 + +normalized%20dose 1 900 double +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 1.5316701434e-12 -3.7020964239e-12 1.0080674587e-10 -3.4261675872e-10 -7.9552162401e-10 +1.7111158776e-09 2.7129424848e-09 -4.430146799e-08 -1.7340319918e-07 -9.1413351315e-07 -2.77871899e-06 -3.5870408106e-06 6.3179893946e-06 0.00011184168397 +0.00011184168395 6.3179893778e-06 -3.5870408197e-06 -2.7787189966e-06 -9.1413351452e-07 -1.7340319955e-07 -4.4301467937e-08 2.712942469e-09 1.7111158937e-09 +-7.9552159824e-10 -3.4261674679e-10 1.0080674809e-10 -3.7020964456e-12 1.5316699734e-12 0 0 -5.1395747808e-12 1.1445420838e-10 +-4.8445759549e-10 -6.5734332297e-10 4.0943418311e-09 1.9379674694e-08 1.8656937756e-08 -2.1500852575e-07 -9.5137963567e-07 -2.7218952272e-06 -1.9488974879e-06 +0.00016480747767 0.0022347483195 0.0064112255491 0.00641122555 0.0022347483199 0.0001648074776 -1.9488975123e-06 -2.7218952358e-06 -9.5137963764e-07 +-2.1500852543e-07 1.8656937843e-08 1.9379674826e-08 4.0943418781e-09 -6.5734329544e-10 -4.844575842e-10 1.1445420993e-10 -5.1395750029e-12 0 +0 1.0449849679e-10 -6.9237460883e-10 -5.8452607059e-10 1.0374460268e-08 4.0505179553e-08 6.4564427912e-08 1.1555968727e-07 -2.617983498e-07 +4.8326012352e-07 6.1109724582e-05 0.0011643548903 0.009868012447 0.022768248514 0.027197869961 0.027197869959 0.022768248514 0.0098680124461 +0.0011643548898 6.1109724517e-05 4.8326011614e-07 -2.6179834884e-07 1.1555968834e-07 6.4564428199e-08 4.0505179628e-08 1.0374460312e-08 -5.8452604667e-10 +-6.9237460059e-10 1.0449849734e-10 0 0 -7.767265901e-10 -6.4545051539e-10 1.7966376986e-08 8.2342572354e-08 1.7591216942e-07 +2.7954819649e-07 6.0960676994e-07 1.1887203129e-05 0.00024972168196 0.0040092369908 0.024156430874 0.046349086764 0.056544277314 0.058842507755 +0.058842507749 0.056544277296 0.046349086759 0.024156430871 0.0040092369894 0.00024972168184 1.1887203125e-05 6.096067721e-07 2.7954819753e-07 +1.7591216954e-07 8.2342572361e-08 1.7966377008e-08 -6.4545050161e-10 -7.7672658513e-10 0 0 -2.8033277969e-09 1.6459113022e-08 +1.1932052949e-07 3.1113167517e-07 8.1174864919e-07 2.4810247522e-06 2.4779295921e-05 0.00049678250728 0.0084103452961 0.04167094827 0.077144452313 +0.091698041284 0.097335939066 0.10109717157 0.10109717157 0.097335939056 0.091698041261 0.077144452308 0.041670948265 0.008410345293 +0.00049678250709 2.4779295922e-05 2.4810247536e-06 8.1174864944e-07 3.111316751e-07 1.1932052948e-07 1.6459113025e-08 -2.8033277933e-09 0 +0 -9.8566388683e-09 4.0569046013e-08 3.0672900393e-07 1.0099517001e-06 3.6929832202e-06 3.4026388455e-05 0.00067105051251 0.013110348698 +0.055121344447 0.09756377606 0.11247967282 0.12213505566 0.13331383742 0.14441498303 0.14441498305 0.13331383743 0.12213505565 +0.11247967279 0.097563776056 0.055121344442 0.013110348693 0.0006710505123 3.4026388449e-05 3.6929832207e-06 1.0099517004e-06 3.0672900397e-07 +4.0569046006e-08 -9.8566388855e-09 0 0 -4.9793803248e-08 -9.9428005052e-08 2.9638173325e-07 2.0818963459e-06 2.8327813144e-05 +0.00067635075056 0.015956838738 0.062697703261 0.11189172558 0.13311057105 0.14603126526 0.15907262012 0.17547980216 0.18810707384 +0.18810707386 0.17547980217 0.15907262011 0.14603126525 0.13311057103 0.11189172558 0.062697703257 0.015956838733 0.00067635075033 +2.8327813138e-05 2.0818963463e-06 2.9638173353e-07 -9.9428005126e-08 -4.9793803304e-08 0 0 -2.0789350549e-07 -8.2982418321e-07 +-1.0708414113e-06 1.1318463639e-05 0.00049731412766 0.013070555002 0.062907086248 0.11553985163 0.14300259318 0.15442274835 0.17175674636 +0.19455967726 0.21543264916 0.23155652949 0.23155652948 0.21543264915 0.19455967727 0.17175674637 0.15442274833 0.14300259316 +0.11553985163 0.062907086243 0.013070554998 0.00049731412746 1.1318463634e-05 -1.0708414117e-06 -8.2982418327e-07 -2.0789350549e-07 0 +0 -7.2701427455e-07 -3.4021583774e-06 -4.4432158685e-06 0.00023835225898 0.0083454662076 0.055363355805 0.11362882711 0.14439607706 +0.15669998292 0.17652623416 0.20387902146 0.23368806303 0.2558577877 0.27970263799 0.27970263795 0.25585778767 0.23368806302 +0.20387902146 0.17652623417 0.1566999829 0.14439607704 0.11362882711 0.0553633558 0.0083454662047 0.00023835225886 -4.4432158735e-06 +-3.402158378e-06 -7.2701427421e-07 0 0 -2.1761279795e-06 -9.800849966e-06 4.6961828032e-05 0.0040183279942 0.041967930497 +0.099360979869 0.1369226917 0.15734782197 0.17585246448 0.20611732789 0.24300264873 0.27400860275 0.30550275622 0.34610095842 +0.34610095842 0.30550275622 0.27400860273 0.24300264873 0.20611732788 0.17585246449 0.15734782196 0.13692269168 0.099360979868 +0.041967930493 0.0040183279928 4.6961827984e-05 -9.800849971e-06 -2.1761279796e-06 0 0 -5.7083144985e-06 -1.3006322049e-05 +0.0011522210852 0.023787264703 0.07886199734 0.11883320695 0.14993026654 0.17026081755 0.19853311313 0.23991359158 0.28057506138 +0.32067865858 0.36025068146 0.45090950978 0.45090950975 0.36025068146 0.32067865859 0.28057506137 0.23991359158 0.19853311313 +0.17026081755 0.14993026652 0.11883320694 0.078861997338 0.023787264701 0.0011522210847 -1.3006322062e-05 -5.7083145e-06 0 +0 -8.4499422465e-06 0.00013321401355 0.0089604398084 0.048335728556 0.10018314243 0.12769063865 0.15700693149 0.18790309954 +0.22766951012 0.26800025695 0.31797760043 0.3681037836 0.44441982646 0.6132070215 0.61320702146 0.44441982642 0.36810378362 +0.31797760046 0.26800025696 0.22766951011 0.18790309955 0.15700693148 0.12769063864 0.10018314242 0.048335728553 0.008960439808 +0.00013321401352 -8.4499422513e-06 0 0 -5.6131800675e-06 0.001271637985 0.022389615625 0.065543598366 0.10394159453 +0.13373820138 0.16411489927 0.20104842512 0.24095866891 0.29169652354 0.34882832273 0.43669653626 0.53506366245 0.83039193516 +0.83039193516 0.53506366242 0.43669653622 0.34882832277 0.29169652356 0.24095866891 0.20104842512 0.16411489926 0.13373820137 +0.10394159452 0.065543598358 0.022389615627 0.0012716379855 -5.6131800754e-06 0 0 6.7131393534e-06 0.0048386083095 +0.029089517973 0.065597357205 0.10031027426 0.13485913422 0.16594519873 0.20455703664 0.25700129521 0.32954860956 0.43152385845 +0.60116546833 0.82384780199 0.99999999993 1 0.823847802 0.60116546838 0.43152385846 0.32954860959 0.25700129522 +0.20455703663 0.16594519871 0.13485913421 0.10031027424 0.065597357197 0.029089517973 0.0048386083087 6.713139332e-06 0 +0 7.3129761348e-06 0.0055509311687 0.028692212092 0.060217288963 0.091431505314 0.12011063478 0.15224530471 0.20055338627 +0.25193130585 0.32778873349 0.43240305345 0.60078609009 0.824830479 0.99570422267 0.9957042227 0.824830479 0.6007860901 +0.43240305346 0.3277887335 0.25193130589 0.2005533863 0.15224530471 0.12011063476 0.091431505297 0.060217288966 0.028692212093 +0.0055509311668 7.3129761228e-06 0 0 2.6319650839e-06 0.0019291572584 0.021285018751 0.051645162508 0.078894121054 +0.10259725983 0.13550770822 0.17852095455 0.23785986275 0.28630425691 0.35680674651 0.4503112013 0.57425896318 0.8601469547 +0.86014695469 0.57425896317 0.45031120131 0.35680674649 0.28630425693 0.23785986278 0.17852095456 0.13550770821 0.10259725981 +0.078894121047 0.051645162513 0.021285018749 0.0019291572569 2.631965072e-06 0 0 -8.743299603e-08 6.9824795998e-06 +0.00041635701319 0.0036085692449 0.011416142171 0.023152525521 0.038792914961 0.059423467874 0.087208511068 0.1248176005 0.18311767313 +0.2623569666 0.37280014314 0.58883894797 0.58883894795 0.37280014314 0.26235696659 0.18311767313 0.12481760049 0.087208511068 +0.059423467871 0.038792914958 0.023152525519 0.011416142171 0.0036085692443 0.00041635701297 6.9824795889e-06 -8.7432995769e-08 0 +0 -8.7633169438e-09 -6.7992372623e-08 1.6093574323e-06 3.259814351e-05 0.00031656612055 0.0017461504098 0.0049553922625 0.010549483331 +0.018535177575 0.031969213617 0.056612146313 0.09814040379 0.16255833833 0.25875500274 0.25875500273 0.16255833832 0.098140403786 +0.05661214631 0.031969213614 0.018535177573 0.010549483331 0.0049553922627 0.0017461504098 0.00031656612046 3.2598143499e-05 1.6093574342e-06 +-6.7992372594e-08 -8.7633170416e-09 0 0 -1.1551658699e-09 2.2760760976e-08 5.421573307e-08 9.6634698678e-08 1.7624540889e-06 +2.346401368e-05 0.00014770108922 0.0005563578492 0.0015220707565 0.0036439217119 0.0084040030855 0.018594513528 0.038031309986 0.069871183798 +0.069871183796 0.038031309983 0.018594513526 0.0084040030852 0.003643921712 0.0015220707564 0.00055635784931 0.00014770108923 2.346401368e-05 +1.7624540892e-06 9.6634698752e-08 5.4215733231e-08 2.2760761025e-08 -1.1551658783e-09 0 0 -5.8745061665e-11 6.3683828806e-10 +-2.8551264124e-10 6.588738224e-09 2.0878245418e-08 1.2040060406e-07 9.9180970776e-07 6.558144121e-06 3.193663127e-05 0.00012795299427 0.00042820279314 +0.001218284451 0.0029090843573 0.0053522904444 0.0053522904443 0.0029090843571 0.0012182844509 0.00042820279313 0.00012795299428 3.1936631272e-05 +6.558144121e-06 9.9180970776e-07 1.2040060406e-07 2.0878245432e-08 6.5887382357e-09 -2.8551263881e-10 6.3683829012e-10 -5.8745060515e-11 0 +0 -5.7451852808e-12 -3.6230707751e-11 5.3596267072e-11 1.1128385556e-09 1.2366692127e-09 4.0172383942e-09 8.422694573e-09 1.186510238e-08 +1.4784281486e-07 1.2972564675e-06 5.6157359184e-06 1.9237342644e-05 4.5207124877e-05 3.6648041862e-05 3.6648041865e-05 4.5207124878e-05 1.9237342642e-05 +5.6157359176e-06 1.2972564674e-06 1.4784281481e-07 1.1865102364e-08 8.4226945747e-09 4.0172383886e-09 1.2366692117e-09 1.1128385553e-09 5.3596266922e-11 +-3.6230707756e-11 -5.7451852709e-12 0 0 -7.7326846389e-14 3.3731139139e-12 2.4575906885e-11 5.3819401849e-11 8.9512229242e-11 +3.2316369837e-10 -4.2232906418e-10 -4.1592132733e-09 -9.8651881644e-10 -4.1626756669e-08 -2.5102973756e-07 -1.3050311074e-07 2.6475373501e-07 9.2621786989e-08 +9.2621786997e-08 2.6475373504e-07 -1.3050311074e-07 -2.5102973755e-07 -4.1626756669e-08 -9.8651882341e-10 -4.159213279e-09 -4.223290652e-10 3.2316369851e-10 +8.9512229281e-11 5.381940178e-11 2.4575906838e-11 3.3731139027e-12 -7.7326848655e-14 0 0 5.3444469369e-14 5.2496770836e-13 +5.6743811322e-13 1.8199642357e-12 1.1937772946e-11 -2.04340627e-11 -3.7193092739e-10 -6.332592657e-10 -2.6833628288e-09 -2.430275518e-08 -3.1197587821e-08 +-1.7740210832e-08 -2.0391444455e-08 -4.1287079037e-08 -4.1287079062e-08 -2.039144445e-08 -1.774021083e-08 -3.119758782e-08 -2.430275518e-08 -2.6833628293e-09 +-6.3325926679e-10 -3.7193092792e-10 -2.0434062747e-11 1.1937772961e-11 1.8199642405e-12 5.6743811341e-13 5.2496770775e-13 5.3444469159e-14 0 +0 5.6452767119e-15 6.1729044223e-15 4.7359413942e-15 4.0797157169e-13 -6.9702848174e-14 -1.1703967669e-11 -4.025553463e-11 -3.5939167817e-11 +-3.4567509024e-10 -1.0889844861e-09 1.2110385905e-09 -3.0182967736e-10 -7.390008904e-09 -4.7442370924e-09 -4.7442370937e-09 -7.3900089055e-09 -3.0182967739e-10 +1.2110385907e-09 -1.0889844861e-09 -3.4567509017e-10 -3.5939167838e-11 -4.0255534701e-11 -1.170396769e-11 -6.9702849384e-14 4.0797157254e-13 4.7359416102e-15 +6.1729045164e-15 5.6452767021e-15 0 0 -4.5101994154e-16 -1.5619324661e-15 1.2692244232e-14 3.3011393695e-14 -3.0209657976e-13 +-1.2567561116e-12 -8.0400300792e-14 -4.373654662e-12 -7.8525825823e-12 1.9651367757e-10 1.7376379668e-10 -1.0744571563e-10 -2.6965662874e-10 2.4410848437e-11 +2.4410848394e-11 -2.6965662893e-10 -1.0744571564e-10 1.737637967e-10 1.9651367759e-10 -7.8525825685e-12 -4.3736546618e-12 -8.0400300902e-14 -1.2567561152e-12 +-3.0209658064e-13 3.3011393698e-14 1.2692244246e-14 -1.5619324549e-15 -4.5101993907e-16 0 0 1.0111318475e-17 3.8713186199e-16 +1.61615762e-15 -8.9114707686e-15 -4.4281048929e-14 4.6281097944e-14 2.4946044747e-14 -4.4863268356e-14 7.0392136436e-12 1.9629286629e-11 -1.2700771573e-11 +-1.8872177814e-11 6.6786731474e-12 6.3457923524e-12 6.3457923521e-12 6.6786731467e-12 -1.8872177817e-11 -1.2700771574e-11 1.9629286631e-11 7.0392136426e-12 +-4.4863268285e-14 2.4946044832e-14 4.6281098059e-14 -4.4281048985e-14 -8.9114707947e-15 1.6161576155e-15 3.8713186183e-16 1.0111318632e-17 0 +0 5.2928101081e-18 3.0405432842e-17 -2.7194485337e-16 -1.6010239481e-15 2.763139591e-15 8.4413739172e-15 -9.7167646432e-15 5.4376135242e-14 +7.2323781963e-13 -1.4384123224e-12 -2.1018351851e-12 -7.918222413e-14 7.7766767978e-13 -1.4559847499e-15 -1.4559845874e-15 7.7766767981e-13 -7.9182224199e-14 +-2.1018351853e-12 -1.4384123226e-12 7.2323781932e-13 5.4376135244e-14 -9.7167646432e-15 8.4413739369e-15 2.7631396091e-15 -1.6010239495e-15 -2.719448537e-16 +3.0405432735e-17 5.2928100992e-18 0 0 -1.6629620433e-19 -6.395920313e-18 -2.9772695882e-17 1.2495492765e-16 6.4461140354e-16 +-8.4719259575e-16 -2.0180411121e-15 6.8727585395e-17 -6.6637638887e-14 -1.367625225e-13 4.5612385135e-15 4.4229975117e-14 -7.0250022969e-15 -6.4925500628e-15 +-6.4925500625e-15 -7.0250022969e-15 4.4229975119e-14 4.5612385103e-15 -1.3676252251e-13 -6.6637638879e-14 6.8727582574e-17 -2.0180411164e-15 -8.4719259784e-16 +6.4461140554e-16 1.2495492813e-16 -2.9772695839e-17 -6.3959203182e-18 -1.6629620506e-19 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 + +POINT_DATA 961 +FIELD FieldData 3 +radiation%20flux%20density 1 961 double +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 6.3670769248e-07 -1.5928558811e-06 3.8601826839e-05 -0.00013660676997 -0.00033614994135 0.00076983687416 +0.0021287452393 -0.011699730527 -0.066665202341 -0.35154372707 -1.0513442603 -1.7328535824 1.9671176049 46.815739358 87.738667952 +46.815739347 1.9671175983 -1.7328535864 -1.0513442625 -0.35154372763 -0.066665202454 -0.011699730519 0.002128745232 0.00076983687618 +-0.00033614993342 -0.00013660676586 3.8601827699e-05 -1.5928558916e-06 6.3670761298e-07 -2.1671147642e-06 4.1894898921e-05 -0.00015850687519 -0.00044322186669 +0.0012866211416 0.0066807365462 0.0074831058501 -0.068904790319 -0.32967518287 -1.1107705095 -0.84220288427 64.874060241 895.04695233 +2789.9263581 3919.4866787 2789.9263587 895.04695247 64.87406021 -0.84220289339 -1.1107705126 -0.32967518338 -0.068904790267 +0.0074831059019 0.0066807365892 0.0012866211594 -0.00044322185435 -0.00015850687033 4.1894899606e-05 -2.1671148181e-06 4.0640078612e-05 -0.00023907435623 +-0.0004707315872 0.0035058383063 0.014107793794 0.024310053363 0.038996431767 -0.12090622323 0.31285781609 24.067294417 452.06023861 +3922.981535 9993.7594252 13126.241221 13254.023049 13126.24122 9993.759425 3922.9815346 452.06023842 24.067294394 +0.31285781355 -0.12090622302 0.038996432148 0.024310053469 0.014107793816 0.0035058383228 -0.00047073157635 -0.00023907435253 4.0640079005e-05 +-0.00030582907443 -0.00047771190077 0.0061992093749 0.029250512204 0.059993108917 0.10575767262 0.27597792775 4.452105312 96.383665354 +1532.9206636 9372.300438 20562.400152 25976.717504 25199.772683 23707.873324 25199.772676 25976.717498 20562.400151 +9372.3004368 1532.920663 96.383665304 4.4521053106 0.27597792864 0.10575767292 0.059993108941 0.029250512201 0.0061992093846 +-0.00047771189316 -0.00030582907218 -0.00090672833377 0.0058950609035 0.043620069053 0.11637413686 0.29729018092 0.92360151496 9.4842501825 +189.42348189 3184.0327033 15780.168831 33260.48369 37971.701207 33447.894456 32076.196122 32232.600822 32076.196124 +33447.894447 37971.701198 33260.483688 15780.168828 3184.0327021 189.42348181 9.4842501822 0.92360151555 0.29729018098 +0.11637413681 0.043620069053 0.0058950609084 -0.00090672833072 -0.0026272091511 0.015830201466 0.11402679465 0.35988861678 1.3407409976 +12.42701232 253.94146344 4974.4645079 20917.30132 41846.12747 46131.748119 36507.833282 33176.006937 35924.100232 +37569.756493 35924.100244 33176.006939 36507.833272 46131.748113 41846.127469 20917.301317 4974.4645063 253.94146336 +12.427012318 1.3407409979 0.35988861693 0.11402679467 0.015830201467 -0.0026272091547 -0.015984612337 -0.02902545573 0.10782143301 +0.66878276159 10.330152263 254.80140293 6066.0476167 24502.976051 46989.379192 50451.073457 36767.1622 30958.704211 +34394.746827 37058.757138 37998.388383 37058.75714 34394.746835 30958.704212 36767.162192 50451.073453 46989.379193 +24502.976048 6066.0476149 254.80140284 10.330152261 0.66878276175 0.10782143308 -0.029025455752 -0.015984612352 -0.072451404426 +-0.27962504029 -0.35082428607 4.1267921978 188.24513554 4956.3890517 24523.130237 48965.377081 52313.584669 37353.380054 +29684.405383 33320.5908 36343.251172 35594.441648 34283.664957 35594.441639 36343.251166 33320.590808 29684.405386 +37353.380044 52313.584668 48965.377082 24523.130234 4956.38905 188.24513547 4.1267921956 -0.35082428608 -0.2796250403 +-0.072451404424 -0.25291292311 -1.1512222864 -1.421603459 91.79546759 3165.3445929 21015.842217 47692.387497 53121.142957 +37105.500766 27671.026714 31562.014507 36283.263175 35988.248729 33179.501619 31699.198701 33179.501609 35988.248713 +36283.263174 31562.014521 27671.026716 37105.500756 53121.142955 47692.387498 21015.842214 3165.3445918 91.795467544 +-1.4216034612 -1.1512222867 -0.25291292304 -0.87750901046 -3.5415730111 19.165710778 1535.4968089 15892.814298 42602.149964 +51973.888497 38596.857777 27565.404905 28744.819134 34777.6527 36612.08023 33932.09817 31121.738526 30098.908187 +31121.738519 33932.098158 36612.080221 34777.652706 28744.819151 27565.404908 38596.857764 51973.888492 42602.149964 +15892.814296 1535.4968083 19.165710759 -3.541573013 -0.87750901062 -2.4083450509 -5.294999542 448.57957084 9232.3445169 +33746.303398 48463.144736 38643.839451 28811.825894 29339.240299 33255.937535 34883.079045 34077.406814 32115.051039 +28649.212186 26621.784451 28649.212182 32115.051036 34077.406811 34883.079039 33255.937544 29339.240315 28811.825891 +38643.839437 48463.144731 33746.303397 9232.3445159 448.57957064 -5.294999548 -2.4083450517 -3.9024799626 51.81511031 +3562.7616368 20881.336824 41279.656437 39984.854879 30038.488217 28941.431718 32355.651596 35088.681857 33510.950216 +30812.54829 28905.089555 26792.583632 25809.114259 26792.583623 28905.089554 30812.548291 33510.950214 35088.681857 +32355.651604 28941.431729 30038.488214 39984.854869 41279.656433 20881.336823 3562.7616367 51.815110295 -3.9024799642 +-2.6978561579 518.58614249 9661.2578893 29224.975851 38178.958333 32634.666177 28505.545245 29291.921344 31839.085331 +33422.280873 32092.919228 27578.815033 25234.294788 27653.296102 29630.357122 27653.29609 25234.294783 27578.815037 +32092.919233 33422.280873 31839.085333 29291.921351 28505.545249 32634.666174 38178.958327 29224.975849 9661.2578894 +518.58614269 -2.6978561609 3.4538336274 2162.7946527 13823.865812 29349.53886 33174.454902 29813.825883 27586.359271 +26756.37755 28554.741706 30335.927759 29413.474755 26646.174385 26298.573023 29029.450568 30478.332711 29029.45057 +26298.573024 26646.174387 29413.474762 30335.927762 28554.741703 26756.377547 27586.359271 29813.825884 33174.454898 +29349.538857 13823.865812 2162.7946526 3.4538336194 7.841047037 3660.7147714 14563.451808 25162.905151 28732.034599 +27025.402537 24679.323296 25567.135881 27554.105739 27624.82449 27006.596116 28940.540907 31598.974631 31481.900109 +30642.193214 31481.900111 31598.97464 28940.540912 27006.596121 27624.824491 27554.105738 25567.135884 24679.3233 +27025.402534 28732.034593 25162.905151 14563.451809 3660.7147707 7.8410470275 5.2414325852 2663.8534235 13185.324033 +23408.844481 23376.564181 19367.126412 20011.352561 26319.385841 30698.937163 28664.895136 26578.827782 29733.09009 +35028.054367 38586.863753 39719.515227 38586.863745 35028.054374 29733.090097 26578.827779 28664.895137 30698.937174 +26319.385856 20011.352563 19367.1264 23376.564176 23408.844485 13185.324033 2663.8534225 5.241432577 1.1185132244 +716.71242835 6661.0707891 16962.048594 25042.432813 32118.629493 42139.278926 55736.433873 70964.698079 84804.585834 +101302.91588 123185.65579 150464.13005 176881.57597 187659.99388 176881.57597 150464.13005 123185.65579 101302.91587 +84804.58584 70964.698092 55736.433877 42139.27892 32118.629484 25042.432813 16962.048596 6661.0707881 716.71242778 +1.1185132197 -0.27019397476 14.777308291 744.48413708 5551.9559174 15467.221279 27255.1628 39696.813681 54048.305669 +71984.873592 95660.406885 128494.78658 172163.43587 227767.3506 283396.44732 307870.46418 283396.44732 227767.3506 +172163.43587 128494.78658 95660.406886 71984.873593 54048.305665 39696.813677 27255.162799 15467.221279 5551.9559166 +744.48413669 14.777308273 -0.27019397477 -0.015549122832 -0.0750436287 2.3777917595 57.048031958 507.60949761 2516.6367501 +6563.8548576 12131.98085 19351.903405 30075.286918 48609.118305 79676.107012 126306.29546 181225.43334 208682.54817 +181225.43333 126306.29546 79676.107009 48609.118302 30075.286915 19351.903403 12131.98085 6563.854858 2516.6367501 +507.60949745 57.048031939 2.3777917604 -0.075043628645 -0.01554912295 -0.0016933053446 0.035535011852 0.09817443097 0.22201640767 +2.9866852657 38.176737867 217.08448251 756.03530958 1886.6199671 4044.6410983 8469.4938334 17510.134694 34356.535832 +59254.928708 73342.713636 59254.928705 34356.535829 17510.134693 8469.493833 4044.6410982 1886.6199672 756.03530978 +217.08448254 38.176737868 2.9866852658 0.22201640791 0.098174431228 0.03553501192 -0.0016933053579 -5.0348988599e-05 0.0014531841282 +0.001451179502 0.0053389152492 0.022647588376 0.15715081211 1.5475081322 9.9372748216 45.229445791 163.61028554 505.89220082 +1367.8207313 3200.9085255 6396.7658394 8369.3926906 6396.7658391 3200.9085252 1367.8207312 505.89220082 163.61028555 +45.229445796 9.9372748224 1.5475081322 0.15715081211 0.022647588402 0.0053389152656 0.0014511795096 0.0014531841339 -5.034898642e-05 +-6.5176273396e-06 -6.1757454883e-05 -3.7769574871e-06 0.0011637783966 0.0022880059276 0.0042319792805 0.0075969484627 0.023719494791 0.24905967172 +1.7942709481 8.2131691268 27.878256231 67.64883867 85.776122801 78.713522696 85.776122804 67.648838668 27.878256227 +8.213169126 1.794270948 0.24905967169 0.023719494774 0.0075969484585 0.0042319792764 0.0022880059267 0.0011637783964 -3.7769575706e-06 +-6.1757454854e-05 -6.5176273319e-06 3.0159420234e-07 6.0908066537e-06 3.8766915768e-05 8.5029092236e-05 0.000142390364 0.00024113729878 -0.00063512457221 +-0.0034725557092 -0.0065949813875 -0.052031254099 -0.23260433724 -0.27550953247 0.069140647768 0.29844234419 0.27654719132 0.29844234421 +0.069140647799 -0.27550953247 -0.23260433724 -0.052031254104 -0.0065949813953 -0.0034725557141 -0.0006351245733 0.00024113729876 0.0001423903639 +8.5029092073e-05 3.876691569e-05 6.0908066325e-06 3.0159419778e-07 7.4968193307e-08 6.1907041689e-07 1.406247389e-06 3.1601298335e-06 1.077612608e-05 +-3.5643059239e-05 -0.00038025252539 -0.00092651705924 -0.0037671927159 -0.026670805564 -0.054202676017 -0.052001917104 -0.038978237137 -0.046455604695 +-0.057541214468 -0.046455604709 -0.038978237135 -0.052001917101 -0.054202676015 -0.026670805564 -0.0037671927169 -0.00092651706051 -0.00038025252589 +-3.5643059288e-05 1.0776126095e-05 3.1601298376e-06 1.4062473885e-06 6.1907041615e-07 7.4968193043e-08 1.1031909015e-08 3.4994177087e-08 4.7778868607e-08 +3.6928752493e-07 -5.0756977304e-07 -1.3269686585e-05 -5.0960987965e-05 -8.6393961865e-05 -0.00036592940495 -0.0016053967673 -0.00055485527609 0.00018595821152 +-0.0065725190536 -0.011068781554 -0.010085531992 -0.011068781557 -0.0065725190555 0.00018595821162 -0.00055485527588 -0.0016053967671 -0.00036592940493 +-8.6393961945e-05 -5.0960988039e-05 -1.3269686603e-05 -5.0756977386e-07 3.6928752582e-07 4.7778868973e-08 3.4994177223e-08 1.1031909006e-08 -6.7047683799e-10 +-2.4640242809e-09 1.0398566266e-08 2.873257865e-08 -3.1715416494e-07 -1.4593003685e-06 -1.6658510952e-06 -5.279867837e-06 -4.7585451391e-07 0.00019246333044 +0.00035134947122 0.0001125012089 -0.00037182566479 -0.00032598829806 -9.6226662954e-06 -0.00032598829836 -0.00037182566504 0.0001125012089 0.00035134947125 +0.00019246333047 -4.7585450333e-07 -5.2798678369e-06 -1.6658510983e-06 -1.4593003721e-06 -3.1715416585e-07 2.8732578652e-08 1.0398566299e-08 -2.4640242625e-09 +-6.7047683366e-10 1.3057785445e-11 4.8011764821e-10 2.2409097424e-09 -8.078170968e-09 -5.0874765211e-08 -8.1084340078e-09 1.2406554738e-08 1.2896351958e-07 +8.6684472707e-06 2.8642813311e-05 1.1382941341e-05 -2.3681479006e-05 -9.1363373775e-06 1.2326896324e-05 1.304530134e-05 1.2326896322e-05 -9.1363373812e-06 +-2.3681479009e-05 1.1382941343e-05 2.8642813312e-05 8.6684472699e-06 1.289635197e-07 1.2406554865e-08 -8.1084339855e-09 -5.0874765294e-08 -8.0781710029e-09 +2.2409097358e-09 4.8011764799e-10 1.3057785698e-11 8.9624264708e-12 6.132422072e-11 -2.9320069173e-10 -2.2186846889e-09 1.0617948816e-09 1.0467567776e-08 +4.3490979562e-09 9.1450362549e-08 8.6325411649e-07 -8.0152577467e-07 -3.8930661815e-06 -2.6311716376e-06 5.7428827485e-07 9.5099970168e-07 1.3691999009e-07 +9.50999702e-07 5.7428827476e-07 -2.6311716379e-06 -3.893066182e-06 -8.0152577528e-07 8.6325411611e-07 9.1450362566e-08 4.3490979773e-09 1.0467567814e-08 +1.0617949021e-09 -2.218684691e-09 -2.9320069248e-10 6.1324220515e-11 8.9624264549e-12 -3.3136485162e-13 -1.099368491e-11 -6.3502850803e-11 6.5478021251e-11 +9.2722322111e-10 2.6090594677e-10 -2.1584225188e-09 -1.3532337121e-09 -7.9564834605e-08 -2.6198053986e-07 -1.8787058714e-07 5.3135286877e-08 5.0890806199e-08 +-1.5931883906e-08 -1.5950662523e-08 -1.5931883905e-08 5.0890806202e-08 5.3135286875e-08 -1.8787058717e-07 -2.6198053988e-07 -7.95648346e-08 -1.3532337156e-09 +-2.1584225227e-09 2.6090594763e-10 9.2722322404e-10 6.5478021935e-11 -6.3502850727e-11 -1.0993684918e-11 -3.3136485311e-13 +dose 1 961 double +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 5.0238420394e-09 -7.1189471434e-09 3.1850096591e-07 -7.9313115383e-07 -3.7330671219e-06 3.0031276134e-06 +1.4510807358e-05 -0.00013640938533 -0.00071406618705 -0.0035670948333 -0.01211246934 -0.020879542399 0.008957447113 0.38756094906 0.73367618487 +0.38756094894 0.008957447028 -0.02087954245 -0.012112469366 -0.0035670948391 -0.0007140661881 -0.00013640938521 1.4510807359e-05 3.0031277509e-06 +-3.7330669983e-06 -7.9313110743e-07 3.1850097312e-07 -7.1189477721e-09 5.0238414819e-09 -1.1833842339e-08 3.5143047957e-07 -8.9510143987e-07 -4.5382113068e-06 +7.5402071333e-06 7.9997349617e-05 0.00013927000143 -0.00078043797502 -0.0045397919186 -0.015615349974 -0.027432559571 0.51329276954 7.8794440149 +28.746151851 42.791014156 28.746151855 7.8794440158 0.51329276917 -0.027432559705 -0.015615350014 -0.004539791925 -0.00078043797355 +0.00013927000215 7.9997350341e-05 7.5402075012e-06 -4.5382111331e-06 -8.9510139057e-07 3.514304833e-07 -1.1833843625e-08 3.2589492687e-07 -1.5696703917e-06 +-5.4018065966e-06 2.8365673717e-05 0.00017815729598 0.00042162006284 0.00071556205465 -0.0011236879627 -0.0030993363234 0.18997528579 4.0041750189 +36.720077654 114.91665479 192.2462841 220.47408531 192.2462841 114.91665478 36.720077649 4.0041750169 0.18997528552 +-0.0030993363498 -0.0011236879547 0.00071556205981 0.00042162006462 0.00017815729662 2.8365674067e-05 -5.4018064491e-06 -1.5696703585e-06 3.2589492797e-07 +-2.2048923326e-06 -6.5929272692e-06 5.2624027177e-05 0.00036112174805 0.0010139534996 0.0018385251268 0.0035072102341 0.040509583121 0.85879737845 +14.1713078 96.40222314 267.44234463 444.53398194 542.35363388 564.42082978 542.35363379 444.53398186 267.4423446 +96.402223123 14.171307795 0.85879737802 0.040509583124 0.003507210249 0.0018385251318 0.0010139535004 0.00036112174837 5.2624027402e-05 +-6.5929271789e-06 -2.2048923145e-06 -1.1742494173e-05 4.0125946849e-05 0.00050216626474 0.0017408840995 0.0045300905272 0.012294118584 0.092329617914 +1.7516996878 30.073240654 178.23474905 482.09444694 785.05584646 957.51482246 1029.3218756 1049.1967715 1029.3218755 +957.51482227 785.05584633 482.09444689 178.23474902 30.073240643 1.7516996872 0.092329617931 0.012294118593 0.0045300905282 +0.0017408840994 0.00050216626484 4.0125946935e-05 -1.1742494144e-05 -4.152439285e-05 0.00014552662726 0.0015844834674 0.0057305548412 0.019108536957 +0.13451887109 2.4020488596 46.913375663 253.01351811 665.06906831 1078.6492902 1323.3301975 1457.8933689 1561.7999328 +1610.5481834 1561.7999329 1457.8933688 1323.3301973 1078.6492901 665.06906825 253.01351806 46.913375648 2.4020488588 +0.13451887107 0.01910853696 0.005730554842 0.0015844834675 0.0001455266272 -4.1524392895e-05 -0.00019565204693 -0.00038870804799 0.0017851330294 +0.012119377889 0.11516864768 2.435047764 56.869105895 303.18771271 796.44756803 1304.4053731 1604.5162279 1770.2643571 +1935.1904353 2103.5003982 2181.3290488 2103.5003983 1935.1904353 1770.264357 1604.5162277 1304.405373 796.44756798 +303.18771267 56.869105878 2.4350477632 0.11516864766 0.012119377892 0.0017851330302 -0.0003887080485 -0.00019565204717 -0.00084520831085 +-0.0038931336287 -0.0055881348437 0.041412655997 1.7680460662 46.813620689 303.76134626 843.28680597 1420.6623566 1779.1498931 +1985.4397262 2202.2428191 2442.0892612 2658.6703914 2752.9734937 2658.6703914 2442.0892612 2202.2428191 1985.4397261 +1779.149893 1420.6623566 843.28680594 303.76134621 46.813620673 1.7680460655 0.04141265598 -0.0055881348443 -0.0038931336294 +-0.00084520831105 -0.0030664755259 -0.016947278772 -0.031966781412 0.80082811881 29.82302558 253.4657291 803.49526061 1431.6173744 +1835.6011308 2068.5222768 2317.5813594 2636.7189961 2950.4640604 3222.7395888 3353.8360849 3222.7395886 2950.4640603 +2636.7189962 2317.5813595 2068.5222767 1835.6011307 1431.6173743 803.49526057 253.46572906 29.823025569 0.80082811838 +-0.031966781431 -0.016947278773 -0.0030664755248 -0.0095222383001 -0.05282779508 0.096154490914 14.101271145 178.98856872 672.51893892 +1329.295269 1811.5159784 2080.4770951 2345.8260868 2720.8232481 3130.9944866 3506.4824994 3893.8704536 4105.2421496 +3893.8704533 3506.4824992 3130.9944865 2720.8232481 2345.8260868 2080.477095 1811.5159782 1329.2952689 672.51893888 +178.98856869 14.101271139 0.096154490721 -0.052827795098 -0.0095222382994 -0.025860785855 -0.10066777355 3.8584847583 95.134981699 +487.52101087 1111.9911209 1656.5427551 2015.4195862 2302.5245186 2690.946811 3180.2934961 3667.8828004 4134.2158423 +4797.8312014 5228.3511737 4797.8312013 4134.2158423 3667.8828003 3180.293496 2690.946811 2302.5245185 2015.4195859 +1656.5427549 1111.9911208 487.52101083 95.134981684 3.8584847563 -0.10066777362 -0.025860785861 -0.046438749067 0.34783965131 +33.563568242 269.73101112 823.8255679 1395.856261 1815.3392036 2181.5160119 2572.703801 3063.8800534 3629.1841255 +4222.428858 4898.4905445 6129.5775275 6980.5543807 6129.5775271 4898.4905445 4222.4288581 3629.1841256 3063.8800534 +2572.703801 2181.5160117 1815.3392034 1395.8562609 823.82556783 269.7310111 33.563568239 0.34783965113 -0.046438749087 +-0.046126710371 4.5617547972 107.43532586 476.34895777 1043.0458489 1527.0047809 1910.7524963 2329.0239021 2812.8412545 +3372.881677 4022.9000158 4826.8338592 5852.4089195 7947.6534212 9469.9412375 7947.6534208 5852.4089192 4826.8338594 +4022.9000162 3372.8816771 2812.8412545 2329.023902 1910.7524962 1527.0047808 1043.0458488 476.34895774 107.43532586 +4.5617547987 -0.046126710412 0.0036078405825 20.04507195 188.89181132 598.98959654 1100.0805741 1550.9342671 1963.5822995 +2412.9657303 2963.6733415 3670.9663908 4597.2062198 5963.6997579 7861.360597 10460.840126 12007.284979 10460.840126 +7861.360597 5963.6997581 4597.2062201 3670.966391 2963.6733415 2412.9657302 1963.5822993 1550.934267 1100.080574 +598.9895965 188.89181133 20.045071949 0.003607840486 0.046005328853 34.123450415 223.60016045 602.19179514 1041.5776063 +1465.2033709 1879.9522107 2372.4100236 2998.0396168 3825.3379815 4989.7109702 6776.0327852 9349.9988154 11953.488882 +13091.725807 11953.488882 9349.9988156 6776.0327854 4989.7109704 3825.3379818 2998.039617 2372.4100236 1879.9522105 +1465.2033707 1041.5776062 602.19179513 223.60016044 34.123450406 0.046005328743 0.032619173254 24.567133253 188.45865559 +530.83035089 925.57025715 1289.1407032 1674.2997688 2187.178034 2849.8584318 3620.7140739 4602.8001412 6036.1639684 +8036.5548482 10676.128663 12174.29641 10676.128663 8036.5548482 6036.1639684 4602.8001413 3620.7140742 2849.8584321 +2187.178034 1674.2997686 1289.1407029 925.5702571 530.83035091 188.45865557 24.567133242 0.032619173175 0.0083460053909 +6.3588388004 77.530494802 252.41094237 477.4464793 708.67187677 984.15828166 1352.154052 1846.6687274 2414.6866404 +3119.4094164 4108.4742213 5443.8664162 7858.9712652 9505.2793499 7858.9712651 5443.8664162 4108.4742212 3119.4094164 +2414.6866405 1846.6687275 1352.154052 984.15828155 708.67187668 477.44647929 252.41094238 77.530494788 6.3588387954 +0.0083460053528 -0.00031552164364 0.022363833806 1.3935992189 13.313863243 50.425950576 120.15007854 225.1604899 373.00305248 +576.34644516 861.09387331 1300.5652305 1968.731063 2938.3861201 4536.0514451 5560.1764392 4536.051445 2938.38612 +1968.7310629 1300.5652304 861.09387328 576.34644514 373.00305246 225.16048989 120.15007853 50.425950574 13.31386324 +1.3935992181 0.022363833771 -0.00031552164311 -3.2532390308e-05 -0.00018089101249 0.0053081222265 0.11269458427 1.1513483399 6.8484039173 +22.54231983 53.164923967 102.21420052 182.59754882 330.06168671 596.13922334 1040.8171106 1735.8154891 2155.7723225 +1735.815489 1040.8171105 596.13922331 330.06168669 182.59754881 102.21420051 53.164923967 22.54231983 6.8484039171 +1.1513483396 0.11269458423 0.0053081222334 -0.00018089101258 -3.2532390656e-05 -3.9815992997e-06 7.2761975885e-05 0.00025363342954 0.00051546029918 +0.0061878585506 0.083205612161 0.5650655347 2.3340604268 6.9434588916 17.468767983 41.341087821 93.95493881 199.26904167 +381.01475634 493.46245193 381.01475632 199.26904165 93.954938804 41.341087821 17.468767983 6.9434588918 2.3340604272 +0.56506553475 0.083205612161 0.0061878585518 0.0005154603 0.00025363343025 7.2761976028e-05 -3.9815993233e-06 -2.1152649292e-07 1.7584522419e-06 +1.2092984831e-06 2.4500310414e-05 9.7797390427e-05 0.00048062399623 0.0036888263468 0.024830214451 0.12678579595 0.5291741022 1.8468523522 +5.481956942 13.749048937 27.365598031 35.351182932 27.36559803 13.749048936 5.4819569415 1.8468523522 0.52917410224 +0.12678579595 0.024830214451 0.0036888263468 0.00048062399624 9.7797390505e-05 2.4500310459e-05 1.2092984973e-06 1.7584522524e-06 -2.1152648912e-07 +-1.9097702809e-08 -1.2686983766e-07 1.4863075682e-07 4.0830135479e-06 8.1764545888e-06 1.8586260693e-05 4.047742743e-05 5.1516145665e-05 0.00050696033139 +0.0046001211105 0.021714545989 0.080266094277 0.21181667637 0.26965520466 0.24101702498 0.26965520467 0.21181667637 0.080266094268 +0.021714545986 0.0046001211101 0.00050696033113 5.1516145596e-05 4.0477427414e-05 1.8586260672e-05 8.1764545844e-06 4.083013546e-06 1.4863075612e-07 +-1.2686983768e-07 -1.9097702784e-08 -7.8333634821e-11 1.2707282388e-08 9.5255196147e-08 2.6496539203e-07 5.1524943258e-07 1.3256997043e-06 -1.6122080046e-06 +-1.8324351279e-05 -2.7756322657e-05 -0.00022828437341 -0.0011419462361 -0.0014119335957 0.00031526795719 0.00096987919917 0.00033675326892 0.00096987919923 +0.0003152679573 -0.0014119335956 -0.0011419462361 -0.00022828437344 -2.7756322704e-05 -1.8324351306e-05 -1.6122080094e-06 1.3256997048e-06 5.1524943255e-07 +2.6496539167e-07 9.5255195957e-08 1.2707282341e-08 -7.8333642941e-11 1.9381297713e-10 1.9359416926e-09 3.6188461548e-09 9.1842944778e-09 4.6234567776e-08 +-6.6484992863e-08 -1.4573738828e-06 -3.546917019e-06 -1.2130128239e-05 -9.3219481913e-05 -0.00018163948487 -0.00015753264453 -0.00015029998194 -0.00024210414756 +-0.00030196326822 -0.00024210414763 -0.00015029998192 -0.00015753264452 -0.00018163948486 -9.3219481913e-05 -1.2130128245e-05 -3.5469170246e-06 -1.457373885e-06 +-6.6484993038e-08 4.623456784e-08 9.1842944978e-09 3.6188461544e-09 1.9359416901e-09 1.9381297641e-10 1.7037040018e-11 3.2160919566e-11 7.2287918423e-11 +1.5035777917e-09 2.2692037539e-10 -4.3730362491e-08 -1.7481178683e-07 -2.6452602713e-07 -1.2917875599e-06 -4.0868457081e-06 1.6148359965e-06 3.1997055928e-06 +-2.6465936424e-05 -4.0604441814e-05 -3.0961838108e-05 -4.0604441824e-05 -2.6465936429e-05 3.1997055933e-06 1.6148359972e-06 -4.0868457077e-06 -1.2917875597e-06 +-2.6452602744e-07 -1.7481178714e-07 -4.3730362578e-08 2.269203713e-10 1.5035777953e-09 7.2287919524e-11 3.2160919887e-11 1.7037039994e-11 -1.4461699118e-12 +-5.2994882575e-12 4.307790314e-11 1.2597840176e-10 -1.0570632937e-09 -5.1064400436e-09 -4.152218225e-09 -1.4674523526e-08 -1.7160465856e-08 7.0627600705e-07 +1.2372267716e-06 1.1396321454e-07 -1.2768812271e-06 -7.6168044982e-07 2.017621164e-07 -7.6168045058e-07 -1.2768812278e-06 1.1396321454e-07 1.2372267717e-06 +7.0627600718e-07 -1.7160465813e-08 -1.4674523525e-08 -4.1522182365e-09 -5.1064400581e-09 -1.0570632968e-09 1.2597840172e-10 4.3077903208e-11 -5.2994882126e-12 +-1.4461699032e-12 5.0525179387e-14 1.4200376844e-12 5.7784987584e-12 -3.0071749123e-11 -1.7065850134e-10 4.3310654456e-11 2.2944010091e-10 8.1153660096e-11 +2.5491860176e-08 8.5126298001e-08 1.1113437853e-08 -1.1071221707e-07 -3.7703392606e-08 4.5265896553e-08 4.1618548084e-08 4.5265896551e-08 -3.7703392615e-08 +-1.1071221708e-07 1.1113437856e-08 8.5126298005e-08 2.5491860172e-08 8.1153660615e-11 2.2944010163e-10 4.3310654772e-11 -1.7065850156e-10 -3.0071749229e-11 +5.7784987418e-12 1.420037684e-12 5.0525179873e-14 1.6814845009e-14 9.5565481307e-14 -9.1087582767e-13 -5.8310981281e-12 6.3358714346e-12 3.6086079188e-11 +-1.3581150739e-11 1.4008798249e-10 2.3322110164e-09 -3.0129032899e-09 -1.2045545646e-08 -6.9936517633e-09 2.4130472991e-09 2.5016188464e-09 -5.2142013876e-11 +2.5016188471e-09 2.413047299e-09 -6.9936517643e-09 -1.2045545647e-08 -3.0129032916e-09 2.3322110154e-09 1.4008798247e-10 -1.3581150696e-11 3.6086079312e-11 +6.3358714971e-12 -5.8310981322e-12 -9.1087582898e-13 9.5565480906e-14 1.6814844977e-14 -5.4544763826e-16 -2.1523915808e-14 -1.1863221029e-13 3.1219548113e-13 +2.5241594631e-12 -6.6446154496e-13 -9.3978991603e-12 -6.3937025121e-12 -2.1834446311e-10 -6.6714774457e-10 -4.3361710158e-10 1.6003403295e-10 1.2203143564e-10 +-4.4337253755e-11 -4.2590822951e-11 -4.4337253753e-11 1.2203143565e-10 1.6003403294e-10 -4.3361710164e-10 -6.671477446e-10 -2.1834446309e-10 -6.3937025354e-12 +-9.3978991812e-12 -6.6446154525e-13 2.5241594713e-12 3.1219548287e-13 -1.1863221017e-13 -2.1523915827e-14 -5.4544764066e-16 +normalized%20dose 1 961 double +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 +0 0 0 3.8291753584e-13 -5.4260657014e-13 2.4276162362e-11 -6.0452503212e-11 -2.8453459568e-10 2.288985634e-10 +1.1060145906e-09 -1.0397131376e-08 -5.4426166792e-08 -2.7188417808e-07 -9.2321312579e-07 -1.5914399502e-06 6.82737146e-07 2.9539918341e-05 5.592084198e-05 +2.9539918332e-05 6.8273713952e-07 -1.5914399541e-06 -9.2321312777e-07 -2.7188417852e-07 -5.4426166872e-08 -1.0397131367e-08 1.1060145907e-09 2.2889857387e-10 +-2.8453458626e-10 -6.0452499676e-11 2.4276162912e-11 -5.4260661806e-13 3.8291749335e-13 -9.0197615936e-13 2.678605183e-11 -6.8224684414e-11 -3.4590273283e-10 +5.7471503136e-10 6.0974026947e-09 1.0615167703e-08 -5.9485028376e-08 -3.4602320715e-07 -1.1902028938e-06 -2.0909113046e-06 3.9123205096e-05 0.00060057168644 +0.0021910333855 0.0032615336168 0.0021910333858 0.0006005716865 3.9123205068e-05 -2.0909113148e-06 -1.1902028969e-06 -3.4602320764e-07 -5.9485028264e-08 +1.0615167758e-08 6.0974027499e-09 5.747150594e-10 -3.4590271959e-10 -6.8224680656e-11 2.6786052115e-11 -9.0197625737e-13 2.4839730501e-11 -1.1964036961e-10 +-4.1172601663e-10 2.1620333197e-09 1.3579159582e-08 3.2135905998e-08 5.4540181908e-08 -8.5647562632e-08 -2.3623159693e-07 1.4479927461e-05 0.00030519845554 +0.0027988064794 0.0087589541895 0.014653023086 0.016804547755 0.014653023085 0.0087589541893 0.002798806479 0.00030519845539 1.447992744e-05 +-2.3623159894e-07 -8.5647562023e-08 5.4540182302e-08 3.2135906133e-08 1.3579159631e-08 2.1620333464e-09 -4.1172600538e-10 -1.1964036708e-10 2.4839730585e-11 +-1.6805702333e-10 -5.0251330438e-10 4.0110064478e-09 2.7524720884e-08 7.7283595398e-08 1.4013249334e-07 2.673197704e-07 3.087642809e-06 6.5457586717e-05 +0.0010801379144 0.0073477831199 0.020384471244 0.03388240626 0.041338225886 0.043020188856 0.041338225879 0.033882406254 0.020384471241 +0.0073477831186 0.001080137914 6.5457586683e-05 3.0876428092e-06 2.6731977154e-07 1.4013249372e-07 7.7283595459e-08 2.7524720909e-08 4.0110064649e-09 +-5.025132975e-10 -1.6805702195e-10 -8.9501359675e-10 3.0584020298e-09 3.8275142245e-08 1.326902885e-07 3.4528376653e-07 9.3705844183e-07 7.03736891e-06 +0.00013351465327 0.0022921841721 0.01358506306 0.036745267112 0.059837002809 0.072981836107 0.078454973925 0.079969839661 0.078454973918 +0.072981836093 0.059837002799 0.036745267108 0.013585063057 0.0022921841713 0.00013351465323 7.0373689113e-06 9.3705844253e-07 3.4528376661e-07 +1.3269028849e-07 3.8275142253e-08 3.0584020363e-09 -8.950135946e-10 -3.1649916663e-09 1.1092048092e-08 1.2076942311e-07 4.3678322717e-07 1.4564538112e-06 +1.0253036269e-05 0.00018308430541 0.0035757402534 0.019284705237 0.050691603518 0.082214712365 0.10086430552 0.11112071836 0.11904048277 +0.12275607731 0.11904048278 0.11112071835 0.1008643055 0.082214712356 0.050691603514 0.019284705234 0.0035757402522 0.00018308430536 +1.0253036268e-05 1.4564538114e-06 4.3678322724e-07 1.2076942312e-07 1.1092048088e-08 -3.1649916697e-09 -1.4912610529e-08 -2.9627350289e-08 1.3606294454e-07 +9.237396958e-07 8.7781611025e-06 0.00018559948384 0.0043345665974 0.023108985302 0.060705280497 0.099421854284 0.1222963213 0.13492965346 +0.14750032884 0.16032892412 0.16626102845 0.16032892413 0.14750032884 0.13492965345 0.12229632128 0.099421854276 0.060705280493 +0.023108985299 0.0043345665961 0.00018559948378 8.7781611012e-06 9.2373969606e-07 1.360629446e-07 -2.9627350328e-08 -1.4912610547e-08 -6.4421827184e-08 +-2.9673487425e-07 -4.2592796659e-07 3.1564750768e-06 0.0001347605752 0.0035681369234 0.023152707685 0.064275369969 0.10828296841 0.13560690954 +0.15133033275 0.16785507725 0.18613618718 0.20264401366 0.20983180167 0.20264401367 0.18613618718 0.16785507725 0.15133033274 +0.13560690953 0.10828296841 0.064275369967 0.023152707681 0.0035681369221 0.00013476057514 3.1564750755e-06 -4.2592796664e-07 -2.967348743e-07 +-6.44218272e-08 -2.3372694501e-07 -1.2917225852e-06 -2.4365099601e-06 6.1039166336e-05 0.0022731127645 0.019319172786 0.061242456041 0.10911796051 +0.1399096262 0.15766288965 0.17664618758 0.20097087703 0.22488454429 0.24563740108 0.25562958373 0.24563740106 0.22488454428 +0.20097087703 0.17664618758 0.15766288964 0.13990962618 0.10911796051 0.061242456037 0.019319172783 0.0022731127637 6.1039166303e-05 +-2.4365099616e-06 -1.2917225852e-06 -2.3372694493e-07 -7.2578556352e-07 -4.0265376494e-06 7.3289009551e-06 0.0010747997163 0.01364251924 0.051259433095 +0.10131896362 0.13807385446 0.15857408661 0.17879900236 0.20738130806 0.23864458399 0.26726430242 0.29679103508 0.31290179819 +0.29679103506 0.26726430241 0.23864458398 0.20738130806 0.17879900236 0.1585740866 0.13807385445 0.10131896361 0.051259433091 +0.013642519237 0.001074799716 7.3289009404e-06 -4.0265376507e-06 -7.2578556346e-07 -1.9711106195e-06 -7.6729036233e-06 0.00029409393531 0.0072511939027 +0.037158880134 0.084756028665 0.12626178627 0.15361539944 0.17549855428 0.20510412427 0.24240215739 0.27956624286 0.31511017475 +0.36569097647 0.39850523409 0.36569097646 0.31511017475 0.27956624285 0.24240215739 0.20510412427 0.17549855428 0.15361539943 +0.12626178625 0.084756028659 0.037158880131 0.0072511939016 0.00029409393516 -7.6729036283e-06 -1.9711106199e-06 -3.5395641863e-06 2.6512358689e-05 +0.0025582171463 0.020558913538 0.062792033258 0.10639224635 0.13836526091 0.16627527878 0.19609163509 0.23352911795 0.27661662758 +0.321833776 0.37336323753 0.4671967598 0.53205826562 0.46719675977 0.37336323752 0.32183377601 0.27661662759 0.23352911795 +0.19609163508 0.16627527877 0.13836526089 0.10639224633 0.062792033253 0.020558913537 0.002558217146 2.6512358676e-05 -3.5395641878e-06 +-3.5157805785e-06 0.00034769721905 0.0081887268581 0.036307345589 0.079501015971 0.11638839425 0.1456376677 0.17751833885 0.21439492593 +0.25708123988 0.30662567591 0.36790156075 0.44607095219 0.60577061139 0.72179947832 0.60577061136 0.44607095217 0.36790156077 +0.30662567594 0.25708123989 0.21439492592 0.17751833885 0.14563766769 0.11638839424 0.079501015964 0.036307345587 0.0081887268586 +0.00034769721917 -3.5157805817e-06 2.7498982148e-07 0.0015278365634 0.014397344973 0.045655022292 0.083848206089 0.1182123011 0.1496643584 +0.18391638994 0.22589135647 0.2798012743 0.35039932857 0.45455354644 0.59919336726 0.79732584988 0.91519596756 0.7973258499 +0.59919336726 0.45455354646 0.35039932859 0.27980127432 0.22589135647 0.18391638993 0.14966435839 0.11821230109 0.083848206081 +0.045655022289 0.014397344974 0.0015278365634 2.7498981413e-07 3.5065288721e-06 0.0026008913984 0.017042817386 0.045899094058 0.079389106435 +0.11167788714 0.14329006811 0.18082523159 0.22851075599 0.29156748603 0.38031606374 0.51646961758 0.71265745985 0.9110956259 +0.99785211133 0.91109562593 0.71265745987 0.5164696176 0.38031606375 0.29156748605 0.22851075601 0.18082523159 0.1432900681 +0.11167788713 0.079389106426 0.045899094057 0.017042817386 0.0026008913977 3.5065288637e-06 2.4862353047e-06 0.0018725083421 0.014364329818 +0.040459920579 0.07054701946 0.098258380247 0.12761522689 0.16670683844 0.21721637736 0.27597103975 0.35082569759 0.46007677284 +0.61254668339 0.81373515489 0.92792558869 0.81373515489 0.61254668339 0.46007677284 0.35082569759 0.27597103977 0.21721637738 +0.16670683845 0.12761522688 0.09825838023 0.070547019456 0.04045992058 0.014364329816 0.0018725083412 2.4862352987e-06 6.3613302196e-07 +0.00048467106752 0.0059093788756 0.019238776879 0.036390998744 0.054015012145 0.075012602135 0.1030612614 0.14075319906 0.18404755781 +0.23776156926 0.31314814688 0.41493181855 0.59901125225 0.72449295133 0.59901125224 0.41493181855 0.31314814688 0.23776156926 +0.18404755782 0.14075319907 0.1030612614 0.075012602126 0.054015012138 0.036390998744 0.01923877688 0.0059093788745 0.00048467106713 +6.3613301906e-07 -2.4049078243e-08 1.7045727285e-06 0.00010622021446 0.0010147834398 0.0038434689199 0.0091578460555 0.017161745788 0.028430314607 +0.043929159962 0.065632625689 0.09912915839 0.15005679746 0.22396396296 0.34573810805 0.42379697535 0.34573810804 0.22396396296 +0.15005679745 0.099129158386 0.065632625687 0.04392915996 0.028430314606 0.017161745788 0.0091578460551 0.0038434689198 0.0010147834396 +0.0001062202144 1.7045727259e-06 -2.4049078203e-08 -2.4796207034e-09 -1.3787523615e-08 4.0458538843e-07 8.5895878435e-06 8.7755838212e-05 0.00052198574953 +0.0017181769438 0.0040522336329 0.0077907723777 0.013917595915 0.025157321182 0.045437766679 0.079331141408 0.13230395871 0.16431309327 +0.13230395871 0.079331141404 0.045437766677 0.02515732118 0.013917595914 0.0077907723773 0.0040522336329 0.0017181769438 0.00052198574951 +8.7755838187e-05 8.5895878412e-06 4.0458538895e-07 -1.3787523622e-08 -2.47962073e-09 -3.0347773289e-10 5.5459220832e-09 1.9331954923e-08 3.9288414333e-08 +4.7163894281e-07 6.3419366547e-06 4.3069328303e-05 0.00017790222306 0.00052923084526 0.0013314705235 0.0031510201462 0.0071612509643 0.015188298081 +0.029040967147 0.037611737121 0.029040967145 0.015188298079 0.0071612509639 0.0031510201462 0.0013314705235 0.00052923084528 0.00017790222309 +4.3069328306e-05 6.3419366547e-06 4.7163894291e-07 3.9288414395e-08 1.9331954977e-08 5.5459220941e-09 -3.0347773469e-10 -1.6122561736e-11 1.3402933334e-10 +9.2172801535e-11 1.8674151014e-09 7.4541228527e-09 3.6633189272e-08 2.811625612e-07 1.8925604064e-06 9.6636208271e-06 4.0333681206e-05 0.00014076719495 +0.00041783508067 0.0010479533189 0.0020858074921 0.0026944692431 0.002085807492 0.0010479533189 0.00041783508064 0.00014076719495 4.0333681209e-05 +9.6636208275e-06 1.8925604064e-06 2.811625612e-07 3.6633189273e-08 7.4541228586e-09 1.8674151048e-09 9.2172802619e-11 1.3402933414e-10 -1.6122561447e-11 +-1.4556280318e-12 -9.670026491e-12 1.132864503e-11 3.1120753286e-10 6.2320984985e-10 1.4166458836e-09 3.0851919003e-09 3.9265636538e-09 3.8640546287e-08 +3.5062150171e-07 1.6550839729e-06 6.1178864286e-06 1.6144679536e-05 2.0553135565e-05 1.8370331825e-05 2.0553135566e-05 1.6144679536e-05 6.1178864279e-06 +1.6550839727e-06 3.5062150167e-07 3.8640546268e-08 3.9265636485e-09 3.0851918992e-09 1.416645882e-09 6.2320984952e-10 3.1120753272e-10 1.1328644977e-11 +-9.6700264931e-12 -1.4556280299e-12 -5.9705942551e-15 9.685498113e-13 7.2603566551e-12 2.0195677771e-11 3.9272342068e-11 1.0104490946e-10 -1.2288258897e-10 +-1.3966831326e-09 -2.1155885461e-09 -1.7399848373e-08 -8.7039209307e-08 -1.0761766174e-07 2.4029742247e-08 7.3924249628e-08 2.5667353972e-08 7.3924249632e-08 +2.4029742256e-08 -1.0761766174e-07 -8.7039209305e-08 -1.7399848375e-08 -2.1155885496e-09 -1.3966831347e-09 -1.2288258934e-10 1.010449095e-10 3.9272342066e-11 +2.0195677743e-11 7.2603566406e-12 9.6854980774e-13 -5.970594874e-15 1.477243652e-14 1.4755758972e-13 2.7582866685e-13 7.0002746549e-13 3.5240014763e-12 +-5.0674900679e-12 -1.110811231e-10 -2.7034622388e-10 -9.2455908813e-10 -7.1051943963e-09 -1.3844572224e-08 -1.2007147435e-08 -1.1455873467e-08 -1.8453192372e-08 +-2.3015658071e-08 -1.8453192378e-08 -1.1455873466e-08 -1.2007147434e-08 -1.3844572224e-08 -7.1051943963e-09 -9.2455908852e-10 -2.7034622431e-10 -1.1108112327e-10 +-5.0674900813e-12 3.5240014812e-12 7.0002746702e-13 2.7582866682e-13 1.4755758953e-13 1.4772436465e-14 1.2985641926e-15 2.4513071816e-15 5.5097893956e-15 +1.1460278775e-13 1.7295884364e-14 -3.3331308021e-12 -1.3324164678e-11 -2.0162189352e-11 -9.8460123826e-11 -3.1149962034e-10 1.2308289467e-10 2.4388174855e-10 +-2.0172352314e-09 -3.0948729442e-09 -2.3599131223e-09 -3.0948729449e-09 -2.0172352319e-09 2.4388174859e-10 1.2308289472e-10 -3.1149962031e-10 -9.8460123809e-11 +-2.0162189376e-11 -1.3324164702e-11 -3.3331308087e-12 1.7295884052e-14 1.1460278802e-13 5.5097894795e-15 2.4513072061e-15 1.2985641907e-15 -1.1022715577e-16 +-4.039273068e-16 3.283400312e-15 9.6020811945e-15 -8.056942644e-14 -3.8921316058e-13 -3.1648231742e-13 -1.1184930466e-12 -1.3079717173e-12 5.3832398814e-11 +9.4301497326e-11 8.6862829176e-12 -9.7323962259e-11 -5.8055328701e-11 1.5378320384e-11 -5.805532876e-11 -9.732396231e-11 8.6862829176e-12 9.4301497337e-11 +5.3832398824e-11 -1.307971714e-12 -1.1184930465e-12 -3.164823183e-13 -3.8921316169e-13 -8.0569426681e-14 9.6020811914e-15 3.2834003172e-15 -4.0392730338e-16 +-1.1022715511e-16 3.8510321457e-18 1.0823535586e-16 4.4043751537e-16 -2.2920704875e-15 -1.3007601014e-14 3.301140631e-15 1.7487937991e-14 6.1855367475e-15 +1.9429910825e-12 6.4883314424e-12 8.4706688708e-13 -8.4384916991e-12 -2.8737548028e-12 3.4501692987e-12 3.1721681838e-12 3.4501692985e-12 -2.8737548036e-12 +-8.4384917001e-12 8.4706688732e-13 6.4883314427e-12 1.9429910822e-12 6.185536787e-15 1.7487938046e-14 3.3011406551e-15 -1.300760103e-14 -2.2920704956e-15 +4.404375141e-16 1.0823535582e-16 3.8510321828e-18 1.2816284759e-18 7.2840066082e-18 -6.942700918e-17 -4.4444664242e-16 4.8292049354e-16 2.750483079e-15 +-1.0351561085e-15 1.0677514268e-14 1.7776126089e-13 -2.2964366603e-13 -9.1811219787e-13 -5.330565489e-13 1.8392260712e-13 1.9067353567e-13 -3.9742673656e-15 +1.9067353572e-13 1.8392260711e-13 -5.3305654897e-13 -9.1811219798e-13 -2.2964366616e-13 1.7776126082e-13 1.0677514267e-14 -1.0351561051e-15 2.7504830884e-15 +4.8292049831e-16 -4.4444664273e-16 -6.942700928e-17 7.2840065776e-18 1.2816284735e-18 -4.1574051082e-20 -1.6405541293e-18 -9.0421540488e-18 2.3795557941e-17 +1.923915828e-16 -5.0645298053e-17 -7.1630842696e-16 -4.8732838167e-16 -1.6642227825e-14 -5.0850040346e-14 -3.3050320996e-14 1.2197803408e-14 9.3012432049e-15 +-3.3793880899e-15 -3.2462750313e-15 -3.3793880898e-15 9.3012432055e-15 1.2197803407e-14 -3.3050321001e-14 -5.0850040348e-14 -1.6642227824e-14 -4.8732838345e-16 +-7.1630842855e-16 -5.0645298075e-17 1.9239158342e-16 2.3795558073e-17 -9.0421540393e-18 -1.6405541308e-18 -4.1574051265e-20 diff --git a/tests/test_cases.cpp b/tests/test_cases.cpp index cbc6c10b..17c7be23 100644 --- a/tests/test_cases.cpp +++ b/tests/test_cases.cpp @@ -135,7 +135,9 @@ TEST_CASE( "MN_SOLVER", "[validation_tests]" ) { SECTION( "checkerboard" ) { std::string config_file_name = std::string( TESTS_PATH ) + mn_fileDir + "checkerboard_MN.cfg"; - Config* config = new Config( config_file_name ); + Config* config = new Config( config_file_name ); + // config->SetForcedConnectivity( true ); + SolverBase* solver = SolverBase::Create( config ); solver->Solve(); solver->PrintVolumeOutput(); @@ -161,6 +163,8 @@ TEST_CASE( "MN_SOLVER", "[validation_tests]" ) { Config* config = new Config( config_file_name ); SolverBase* solver = SolverBase::Create( config ); + // config->SetForcedConnectivity( true ); + solver->Solve(); solver->PrintVolumeOutput(); @@ -187,8 +191,11 @@ TEST_CASE( "MN_SOLVER", "[validation_tests]" ) { { // --- Maxwell Boltzmann Entropy --- std::string config_file_name = std::string( TESTS_PATH ) + mn_fileDir + "linesource_MN_MB.cfg"; - Config* config = new Config( config_file_name ); + Config* config = new Config( config_file_name ); + // config->SetForcedConnectivity( true ); + SolverBase* solver = SolverBase::Create( config ); + solver->Solve(); solver->PrintVolumeOutput(); @@ -215,7 +222,9 @@ TEST_CASE( "MN_SOLVER", "[validation_tests]" ) { { // --- Regularized Maxwell Boltzmann Entropy --- std::string config_file_name = std::string( TESTS_PATH ) + mn_fileDir + "linesource_MN_MB_regularized.cfg"; - Config* config = new Config( config_file_name ); + Config* config = new Config( config_file_name ); + // config->SetForcedConnectivity( true ); + SolverBase* solver = SolverBase::Create( config ); solver->Solve(); solver->PrintVolumeOutput(); @@ -367,7 +376,9 @@ TEST_CASE( "screen_output", "[output]" ) { std::string historyLoggerReference = std::string( TESTS_PATH ) + out_fileDir + "validate_logger_csv_reference"; std::string historyLogger = std::string( TESTS_PATH ) + "result/logs/validate_logger_output.csv"; - Config* config = new Config( config_file_name ); + Config* config = new Config( config_file_name ); + config->SetForcedConnectivity( true ); + SolverBase* solver = SolverBase::Create( config ); solver->Solve(); diff --git a/tests/test_mesh.cpp b/tests/test_mesh.cpp index f0460262..61242a6b 100644 --- a/tests/test_mesh.cpp +++ b/tests/test_mesh.cpp @@ -5,13 +5,15 @@ #include "common/globalconstants.hpp" #include "common/io.hpp" #include "common/mesh.hpp" +#include #include TEST_CASE( "unit mesh tests", "[mesh]" ) { std::string config_file_name = std::string( TESTS_PATH ) + "input/unit_tests/common/unit_mesh.cfg"; Config* config = new Config( config_file_name ); - Mesh* mesh = LoadSU2MeshFromFile( config ); + config->SetForcedConnectivity( true ); + Mesh* mesh = LoadSU2MeshFromFile( config ); SECTION( "sum of all cell areas is equal to total domain volume" ) { double domainArea = 1.0; @@ -34,21 +36,26 @@ TEST_CASE( "unit mesh tests", "[mesh]" ) { for( unsigned k = 0; k < neighbors[nID].size(); ++k ) { if( neighbors[nID][k] == i ) pos = k; } - if( blaze::l2Norm( n[i][j] + n[nID][pos] ) > eps ) errorWithinBounds = false; + if( blaze::l2Norm( n[i][j] + n[nID][pos] ) > eps ) { + errorWithinBounds = false; + std::cout << "neighbor coordinate error: " << blaze::l2Norm( n[i][j] + n[nID][pos] ) << "\n"; + } } } REQUIRE( errorWithinBounds ); } SECTION( "neighbor and faces are indexed consistently" ) { + auto neighbors = mesh->GetNeighbours(); auto cellMidPoints = mesh->GetCellMidPoints(); auto faceMidPoints = mesh->GetInterfaceMidPoints(); + bool isConsistent = true; - bool isConsistent = true; for( unsigned i = 0; i < mesh->GetNumCells(); ++i ) { for( unsigned j = 0; j < mesh->GetNumNodesPerCell(); ++j ) { unsigned nID = neighbors[i][j]; + if( nID == mesh->GetNumCells() ) continue; auto fx = faceMidPoints[i][j][0]; @@ -60,7 +67,6 @@ TEST_CASE( "unit mesh tests", "[mesh]" ) { if( fy > std::max( cellMidPoints[i][1], cellMidPoints[nID][1] ) ) isConsistent = false; } } - REQUIRE( isConsistent ); } @@ -93,6 +99,64 @@ TEST_CASE( "unit mesh tests", "[mesh]" ) { } REQUIRE( noUnassignedFaces ); } + + SECTION( "connectivity file is consistent with su2 file" ) { + // Connectivity + std::string connectivityFile = config->GetMeshFile(); + size_t lastDotIndex = connectivityFile.find_last_of( '.' ); + connectivityFile = connectivityFile.substr( 0, lastDotIndex ); + connectivityFile += ".con"; + + if( !std::filesystem::exists( connectivityFile ) ) { + REQUIRE( false ); // File should be written by the mesh creation + } + else { + config->SetForcedConnectivity( false ); + Mesh* mesh2 = LoadSU2MeshFromFile( config ); + + // Check cell number + REQUIRE( mesh2->GetNumCells() == mesh->GetNumCells() ); + REQUIRE( mesh2->GetNumNodes() == mesh->GetNumNodes() ); + + // Resize the outer vector to have nCells elements + bool neighborOK = true; + bool midpointsOK = true; + bool normalsOK = true; + bool boundaryOK = true; + double eps = 1e-10; + + for( unsigned i = 0; i < mesh2->GetNumCells(); ++i ) { + for( unsigned j = 0; j < mesh2->GetNumNodesPerCell(); ++j ) { + if( mesh2->GetNeighbours()[i][j] != mesh2->GetNeighbours()[i][j] ) { + neighborOK = false; + std::cout << "neighbor ID missmatch at index " << i << " " << j << "\n"; + } + if( mesh->GetInterfaceMidPoints()[i][j].size() != mesh2->GetInterfaceMidPoints()[i][j].size() ) { + std::cout << "Vector size missmatch at index " << i << " " << j << " with error \n"; + std::cout << mesh->GetInterfaceMidPoints()[i][j].size() << "\n" << mesh2->GetInterfaceMidPoints()[i][j].size() << "\n"; + } + if( blaze::l2Norm( mesh->GetInterfaceMidPoints()[i][j] - mesh2->GetInterfaceMidPoints()[i][j] ) > eps ) { + midpointsOK = false; + std::cout << "midpoint missmatch at index " << i << " " << j << " with error " + << blaze::l2Norm( mesh->GetInterfaceMidPoints()[i][j] - mesh2->GetInterfaceMidPoints()[i][j] ) << "\n"; + } + if( blaze::l2Norm( mesh->GetNormals()[i][j] - mesh2->GetNormals()[i][j] ) > eps ) { + normalsOK = false; + std::cout << "normal missmatch at index " << i << " " << j << " with error " + << blaze::l2Norm( mesh->GetInterfaceMidPoints()[i][j] - mesh2->GetInterfaceMidPoints()[i][j] ) << "\n"; + } + } + if( mesh2->GetBoundaryTypes()[i] != mesh2->GetBoundaryTypes()[i] ) { + boundaryOK = false; + std::cout << "Boundary ID missmatch at index " << i << "\n"; + } + } + REQUIRE( neighborOK ); + REQUIRE( midpointsOK ); + REQUIRE( normalsOK ); + REQUIRE( boundaryOK ); + } + } } TEST_CASE( "reconstruction tests", "[mesh]" ) { From 1d9df0c016de46296efc57466bf9a9046bb321d0 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 7 Feb 2024 15:32:52 -0500 Subject: [PATCH 076/155] fixed a double defnition bug --- include/common/io.hpp | 1 - include/toolboxes/textprocessingtoolbox.hpp | 22 ++++++++++----------- src/common/io.cpp | 1 - src/common/mesh.cpp | 3 +-- 4 files changed, 12 insertions(+), 15 deletions(-) diff --git a/include/common/io.hpp b/include/common/io.hpp index b9121b13..377c1332 100644 --- a/include/common/io.hpp +++ b/include/common/io.hpp @@ -36,7 +36,6 @@ void WriteConnecitivityToFile( const std::string outputFile, const std::vector>& cellInterfaceMidPoints, const std::vector>& cellNormals, const std::vector& cellBoundaryTypes, - unsigned nNodesPerCell, unsigned nCells, unsigned nDim ); diff --git a/include/toolboxes/textprocessingtoolbox.hpp b/include/toolboxes/textprocessingtoolbox.hpp index 60a7bdaf..35ea5967 100644 --- a/include/toolboxes/textprocessingtoolbox.hpp +++ b/include/toolboxes/textprocessingtoolbox.hpp @@ -8,12 +8,12 @@ #include "common/typedef.hpp" #include +#include #include +#include +#include #include #include -#include -#include -#include namespace TextProcessingToolbox { @@ -126,23 +126,23 @@ inline bool StringEndsWith( std::string const& value, std::string const& ending return std::equal( ending.rbegin(), ending.rend(), value.rbegin() ); } -std::string DoubleToScientificNotation(double value) { +inline std::string DoubleToScientificNotation( double value ) { // Using std::ostringstream to format the double in scientific notation std::ostringstream oss; - oss << std::scientific << std::setprecision(4) << value; - + oss << std::scientific << std::setprecision( 4 ) << value; + // Retrieve the string from the stream std::string scientificNotation = oss.str(); // Remove trailing zeros after the decimal point - size_t pos = scientificNotation.find('.'); - if (pos != std::string::npos) { - scientificNotation.erase(scientificNotation.find_last_not_of('0') + 1); - scientificNotation.erase(scientificNotation.find_last_not_of('.') + 1); + size_t pos = scientificNotation.find( '.' ); + if( pos != std::string::npos ) { + scientificNotation.erase( scientificNotation.find_last_not_of( '0' ) + 1 ); + scientificNotation.erase( scientificNotation.find_last_not_of( '.' ) + 1 ); } // Remove unnecessary trailing decimal point - scientificNotation = std::regex_replace(scientificNotation, std::regex("\\.0+$"), ""); + scientificNotation = std::regex_replace( scientificNotation, std::regex( "\\.0+$" ), "" ); return scientificNotation; } diff --git a/src/common/io.cpp b/src/common/io.cpp index 4c1996f5..61224c62 100644 --- a/src/common/io.cpp +++ b/src/common/io.cpp @@ -385,7 +385,6 @@ void WriteConnecitivityToFile( const std::string outputFile, const std::vector>& cellNormals, const std::vector& cellBoundaryTypes, unsigned nCells, - unsigned nNodesPerCell, unsigned nDim ) { // File has nCells lines, each line is a comma separated entry containing: // cellNeighbors (nNodesPerCell elements), diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 56423fe3..6cb20531 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -35,8 +35,7 @@ Mesh::Mesh( const Config* settings, log->info( "| Compute mesh connectivity..." ); ComputeConnectivity(); // Computes _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes log->info( "| Save mesh connectivity to file " + connectivityFile ); - WriteConnecitivityToFile( - connectivityFile, _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes, _numCells, _numNodesPerCell, _dim ); + WriteConnecitivityToFile( connectivityFile, _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes, _numCells, _dim ); } else { // Resize the outer vector to have nCells elements From 7fda579236773a9d1f8f6e659648549e2c4dfeef Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 12 Feb 2024 15:40:13 -0500 Subject: [PATCH 077/155] fixed mn test case --- .../MN_solver/checkerboard_MN_reference.vtk | 78 +- .../checkerboard_MN_reference_neural.vtk | 1913 ----------------- .../MN_solver/linesource_MN_MB_reference.vtk | 28 +- ...linesource_MN_MB_regularized_reference.vtk | 36 +- .../linesource_MN_Quad_reference.vtk | 2 +- tests/test_cases.cpp | 7 +- 6 files changed, 77 insertions(+), 1987 deletions(-) delete mode 100644 tests/input/validation_tests/MN_solver/checkerboard_MN_reference_neural.vtk diff --git a/tests/input/validation_tests/MN_solver/checkerboard_MN_reference.vtk b/tests/input/validation_tests/MN_solver/checkerboard_MN_reference.vtk index 07ab72ea..7c57091d 100644 --- a/tests/input/validation_tests/MN_solver/checkerboard_MN_reference.vtk +++ b/tests/input/validation_tests/MN_solver/checkerboard_MN_reference.vtk @@ -1767,31 +1767,20 @@ radiation%20flux%20density 1 1056 double 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 -0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 0.081870111779 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 0.081870111779 0.081870111779 -0.081870111779 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 @@ -1815,8 +1804,6 @@ radiation%20flux%20density 1 1056 double 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.0001 0.0001 -0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 @@ -1824,12 +1811,25 @@ radiation%20flux%20density 1 1056 double 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.0001 0.0001 0.0001 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.0001 0.0001 0.0001 0.0001 0.081870111779 0.0001 0.0001 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 @@ -1848,18 +1848,18 @@ radiation%20flux%20density 1 1056 double POINT_DATA 565 FIELD FieldData 1 radiation%20flux%20density 1 565 double -0.0001 0.0001 0.0001 0.0001 0.062346104343 0.059092103104 0.047703098766 0.062346104343 0.047703098766 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.062346104343 0.059092103104 0.047703098766 0.062346104343 0.047703098766 0.062346104343 0.062346104343 0.059092103104 0.047703098766 0.062346104343 0.059092103104 0.047703098766 0.047703098766 0.062346104343 0.059092103104 0.047703098766 0.047703098766 0.062346104343 0.085653202539 0.085653202539 0.062346104343 0.047703098766 0.047703098766 0.062346104343 0.059092103104 0.047703098766 0.059092103104 0.062346104343 0.059092103104 0.062346104343 0.062346104343 0.059092103104 -0.085653202539 0.085653202539 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.040985055889 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.040985055889 0.027356703926 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.040985055889 0.027356703926 0.027356703926 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 -0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.027356703926 0.047703098766 0.047703098766 +0.085653202539 0.085653202539 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 0.047703098766 @@ -1881,9 +1881,20 @@ radiation%20flux%20density 1 565 double 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 0.013536085754 -0.013536085754 0.070188667239 0.081870111779 0.081870111779 0.071648847807 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.070188667239 0.068241759816 -0.081870111779 0.081870111779 0.081870111779 0.070188667239 0.070188667239 0.070188667239 0.070188667239 0.081870111779 0.081870111779 +0.013536085754 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 +0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 @@ -1892,22 +1903,11 @@ radiation%20flux%20density 1 565 double 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 -0.068241759816 0.081870111779 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.070188667239 0.070188667239 0.070188667239 0.068241759816 0.068241759816 -0.070188667239 0.070188667239 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.070188667239 0.070188667239 -0.070188667239 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 0.068241759816 -0.068241759816 0.081870111779 0.070188667239 0.070188667239 0.070188667239 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.070188667239 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.068241759816 0.049162067067 0.049162067067 -0.049162067067 0.049162067067 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 -0.081870111779 0.065516089423 0.065516089423 0.065516089423 0.081870111779 0.081870111779 0.065516089423 0.065516089423 0.065516089423 -0.065516089423 0.065516089423 0.081870111779 0.081870111779 0.065516089423 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 0.081870111779 diff --git a/tests/input/validation_tests/MN_solver/checkerboard_MN_reference_neural.vtk b/tests/input/validation_tests/MN_solver/checkerboard_MN_reference_neural.vtk deleted file mode 100644 index e14fd81f..00000000 --- a/tests/input/validation_tests/MN_solver/checkerboard_MN_reference_neural.vtk +++ /dev/null @@ -1,1913 +0,0 @@ -# vtk DataFile Version 5.1 -vtk output -ASCII -DATASET UNSTRUCTURED_GRID -POINTS 565 double -0 0 0 7 0 0 0 7 0 -7 7 0 1 1 0 2 1 0 -2 2 0 1 2 0 5 2 0 -5 1 0 6 1 0 6 2 0 -3 2 0 3 1 0 4 1 0 -4 2 0 5 3 0 6 3 0 -6 4 0 5 4 0 5 5 0 -4 5 0 4 4 0 3 4 0 -3 5 0 2 5 0 2 4 0 -1 4 0 1 3 0 2 3 0 -2 6 0 1 6 0 1 5 0 -6 5 0 6 6 0 5 6 0 -3 3 0 4 3 0 0.38888888889 0 0 -0.77777777778 0 0 1.1666666667 0 0 1.5555555556 0 0 -1.9444444444 0 0 2.3333333333 0 0 2.7222222222 0 0 -3.1111111111 0 0 3.5 0 0 3.8888888889 0 0 -4.2777777778 0 0 4.6666666667 0 0 5.0555555556 0 0 -5.4444444444 0 0 5.8333333333 0 0 6.2222222222 0 0 -6.6111111111 0 0 0 6.6111111111 0 0 6.2222222222 0 -0 5.8333333333 0 0 5.4444444444 0 0 5.0555555556 0 -0 4.6666666667 0 0 4.2777777778 0 0 3.8888888889 0 -0 3.5 0 0 3.1111111111 0 0 2.7222222222 0 -0 2.3333333333 0 0 1.9444444444 0 0 1.5555555556 0 -0 1.1666666667 0 0 0.77777777778 0 0 0.38888888889 0 -7 0.38888888889 0 7 0.77777777778 0 7 1.1666666667 0 -7 1.5555555556 0 7 1.9444444444 0 7 2.3333333333 0 -7 2.7222222222 0 7 3.1111111111 0 7 3.5 0 -7 3.8888888889 0 7 4.2777777778 0 7 4.6666666667 0 -7 5.0555555556 0 7 5.4444444444 0 7 5.8333333333 0 -7 6.2222222222 0 7 6.6111111111 0 6.6111111111 7 0 -6.2222222222 7 0 5.8333333333 7 0 5.4444444444 7 0 -5.0555555556 7 0 4.6666666667 7 0 4.2777777778 7 0 -3.8888888889 7 0 3.5 7 0 3.1111111111 7 0 -2.7222222222 7 0 2.3333333333 7 0 1.9444444444 7 0 -1.5555555556 7 0 1.1666666667 7 0 0.77777777778 7 0 -0.38888888889 7 0 1.3333333333 1 0 1.6666666667 1 0 -2 1.3333333333 0 2 1.6666666667 0 1.6666666667 2 0 -1.3333333333 2 0 1 1.6666666667 0 1 1.3333333333 0 -5 1.6666666667 0 5 1.3333333333 0 5.3333333333 1 0 -5.6666666667 1 0 6 1.3333333333 0 6 1.6666666667 0 -5.6666666667 2 0 5.3333333333 2 0 2.3333333333 2 0 -2.6666666667 2 0 3 1.6666666667 0 3 1.3333333333 0 -3.3333333333 1 0 3.6666666667 1 0 4 1.3333333333 0 -4 1.6666666667 0 4.3333333333 2 0 4.6666666667 2 0 -5 2.3333333333 0 5 2.6666666667 0 5.3333333333 3 0 -5.6666666667 3 0 6 3.3333333333 0 6 3.6666666667 0 -5.6666666667 4 0 5.3333333333 4 0 5 4.3333333333 0 -5 4.6666666667 0 4.6666666667 5 0 4.3333333333 5 0 -4 4.6666666667 0 4 4.3333333333 0 3.6666666667 4 0 -3.3333333333 4 0 3 4.3333333333 0 3 4.6666666667 0 -2.6666666667 5 0 2.3333333333 5 0 2 4.6666666667 0 -2 4.3333333333 0 1.6666666667 4 0 1.3333333333 4 0 -1 3.6666666667 0 1 3.3333333333 0 1.3333333333 3 0 -1.6666666667 3 0 2 2.6666666667 0 2 2.3333333333 0 -2 5.3333333333 0 2 5.6666666667 0 1.6666666667 6 0 -1.3333333333 6 0 1 5.6666666667 0 1 5.3333333333 0 -1.3333333333 5 0 1.6666666667 5 0 5.3333333333 5 0 -5.6666666667 5 0 6 5.3333333333 0 6 5.6666666667 0 -5.6666666667 6 0 5.3333333333 6 0 5 5.6666666667 0 -5 5.3333333333 0 3 2.3333333333 0 3 2.6666666667 0 -3.3333333333 3 0 3.6666666667 3 0 4 2.6666666667 0 -4 2.3333333333 0 3.6666666667 2 0 3.3333333333 2 0 -2 3.3333333333 0 2 3.6666666667 0 2.3333333333 4 0 -2.6666666667 4 0 3 3.6666666667 0 3 3.3333333333 0 -2.6666666667 3 0 2.3333333333 3 0 4 3.3333333333 0 -4 3.6666666667 0 4.3333333333 4 0 4.6666666667 4 0 -5 3.6666666667 0 5 3.3333333333 0 4.6666666667 3 0 -4.3333333333 3 0 1.2951917063 1.5 0 1.7050506247 1.5 0 -1.5000403885 1.2474399183 0 1.5000403885 1.7525600817 0 1.7576802451 1.7576802451 0 -1.2423197549 1.2423197549 0 1.7576802451 1.2423197549 0 1.2423197549 1.7576802451 0 -1.5 3.7048082937 0 1.5 3.2949493753 0 1.2474399183 3.4999596115 0 -1.7525600817 3.4999596115 0 1.2423197549 3.7576802451 0 1.7576802451 3.2423197549 0 -1.7576802451 3.7576802451 0 1.2423197549 3.2423197549 0 1.7048082937 5.5 0 -1.2949493753 5.5 0 1.4999596115 5.2474399183 0 1.4999596115 5.7525600817 0 -1.2423197549 5.2423197549 0 1.7576802451 5.7576802451 0 1.7576802451 5.2423197549 0 -1.2423197549 5.7576802451 0 2.5 2.297798335 0 2.5 2.7026766338 0 -2.2474399183 2.5000791615 0 2.7525600817 2.5000791615 0 2.2423197549 2.7576802451 0 -2.7576802451 2.7576802451 0 2.2423197549 2.2423197549 0 2.7576802451 2.2423197549 0 -2.5 4.6985523849 0 2.5 4.2971333787 0 2.2474399183 4.4992809606 0 -2.7525600817 4.4992809606 0 2.7576802451 4.2423197549 0 2.2423197549 4.7576802451 0 -2.7576802451 4.7576802451 0 2.2423197549 4.2423197549 0 3.5 1.7048082937 0 -3.5 1.2949493753 0 3.2474399183 1.4999596115 0 3.7525600817 1.4999596115 0 -3.2423197549 1.2423197549 0 3.2423197549 1.7576802451 0 3.7576802451 1.2423197549 0 -3.7576802451 1.7576802451 0 3.5 3.2951917063 0 3.5 3.7050506247 0 -3.2474399183 3.5000403885 0 3.7525600817 3.5000403885 0 3.2423197549 3.2423197549 0 -3.7576802451 3.7576802451 0 3.2423197549 3.7576802451 0 3.7576802451 3.2423197549 0 -4.5 2.2951917063 0 4.5 2.7050506247 0 4.2474399183 2.5000403885 0 -4.7525600817 2.5000403885 0 4.7576802451 2.2423197549 0 4.2423197549 2.2423197549 0 -4.7576802451 2.7576802451 0 4.2423197549 2.7576802451 0 4.6985523849 4.5 0 -4.2971333787 4.5 0 4.4992809606 4.7525600817 0 4.4992809606 4.2474399183 0 -4.7576802451 4.7576802451 0 4.2423197549 4.7576802451 0 4.7576802451 4.2423197549 0 -4.2423197549 4.2423197549 0 5.2951917063 1.5 0 5.7050506247 1.5 0 -5.5000403885 1.2474399183 0 5.5000403885 1.7525600817 0 5.2423197549 1.7576802451 0 -5.7576802451 1.2423197549 0 5.2423197549 1.2423197549 0 5.7576802451 1.7576802451 0 -5.5 3.2951917063 0 5.5 3.7050506247 0 5.7525600817 3.5000403885 0 -5.2474399183 3.5000403885 0 5.7576802451 3.2423197549 0 5.2423197549 3.7576802451 0 -5.7576802451 3.7576802451 0 5.2423197549 3.2423197549 0 5.6985523849 5.5 0 -5.2971333787 5.5 0 5.4992809606 5.2474399183 0 5.4992809606 5.7525600817 0 -5.2423197549 5.2423197549 0 5.7576802451 5.2423197549 0 5.7576802451 5.7576802451 0 -5.2423197549 5.7576802451 0 3.7485855544 6.6942501976 0 2.2872656985 5.8378913721 0 -4.7119339728 5.8373697827 0 2.8759754619 6.5951459244 0 2.8162186717 5.3084308736 0 -3.186129153 5.2921568433 0 2.9979032054 5.5850721589 0 3.3402908331 5.6008010525 0 -4.1834772538 5.3076746294 0 4.7107049802 6.1677403394 0 4.4211946596 6.0016838939 0 -0.27665997492 2.5838218441 0 6.7053237048 2.42793991 0 0.29467629521 4.57206009 0 -4.4161781559 0.27665997492 0 6.663212343 4.4722222222 0 2.42793991 0.29467629521 0 -2.2918240758 6.1960938346 0 3.1734987121 5.8836777691 0 3.5136330362 5.8882723168 0 -6.6167962299 6.3741865029 0 6.3741865029 0.38320377014 0 0.38357251857 6.3760800284 0 -0.38320377014 0.6258134971 0 5.5 4.7113248654 0 2.5 1.6872666359 0 -5.8514999722 2.3378951476 0 3.6772759043 4.8414452564 0 4.3378951476 1.1485000278 0 -1.1485000278 4.6621048524 0 1.1485000278 2.6621048524 0 2.3378951476 1.1485000278 0 -5.1103344757 6.2741611014 0 0.71132486541 5.1666666667 0 6.2886751346 1.8333333333 0 -1.8333333333 0.71132486541 0 1.8899895413 6.2784546756 0 5.1666666667 0.71132486541 0 -6.2886751346 5.1666666667 0 0.71132486541 1.8333333333 0 3.8333333333 0.71132486541 0 -6.2886751346 3.8333333333 0 0.71132486541 3.1666666667 0 6.2939163714 3.1693263045 0 -3.1693263045 0.70608362863 0 0.70608362863 3.8306736955 0 6.3007298331 5.8302758913 0 -5.8302758913 0.69927016685 0 0.68791714935 5.8284678454 0 0.69927016685 1.1697241087 0 -1.1703128001 0.69343635082 0 1.1703128001 6.3065636492 0 5.8296871999 6.3065636492 0 -6.3065636492 1.1703128001 0 4.4127643558 6.3484393703 0 4.0729408297 6.1740044985 0 -5.3127333641 2.5 0 4.5 1.6872666359 0 1.6872666359 4.5 0 -1.6872666359 2.5 0 3.5 4.3127333641 0 2.5448645473 5.9628839255 0 -5.8438027206 4.298242306 0 3.341591884 6.1882059124 0 3.8079455038 5.2924572466 0 -4.0000028322 5.5805606494 0 0.80895730489 4.7699760833 0 2.2300239167 0.80895730489 0 -6.1910426951 2.2300239167 0 0.81140688702 2.7706116978 0 4.2293883022 0.81140688702 0 -6.1530370913 4.2585353481 0 2.1540193915 6.522253769 0 4.8162223334 6.4882902395 0 -4.8222111689 0.70955465736 0 6.2921473568 4.827319268 0 0.70955465736 2.1777888311 0 -6.3389745166 0.79855227087 0 0.79855227087 0.66102548337 0 6.2014477291 6.3389745166 0 -0.79902978757 6.339184919 0 2.827319268 0.70785264318 0 6.2921473568 2.827319268 0 -0.70785264318 4.172680732 0 2.984286409 6.1874521762 0 2.6004296679 5.6380503952 0 -4.3907348225 5.6293300039 0 2.4954354469 6.464014563 0 0.49511543862 4.857146981 0 -2.142853019 0.49511543862 0 6.5048845614 2.142853019 0 5.8109523545 2.6966506386 0 -3.3095189699 4.8399570492 0 1.1890476455 2.3033493614 0 2.6966506386 1.1890476455 0 -4.6966506386 1.1890476455 0 1.1890476455 4.3033493614 0 3.5 5.1333820886 0 -6.0092788027 4.6114103291 0 4.1180693191 6.5205687606 0 1.3559386168 0.35702514778 0 -5.6476385745 0.34601141574 0 0.34413339402 5.6496515319 0 0.34601141574 1.3523614255 0 -6.6539885843 5.6476385745 0 5.6440613832 6.6429748522 0 1.3559386168 6.6429748522 0 -6.6429748522 1.3559386168 0 3.691651827 6.1657024845 0 0.38131474442 4.0107495165 0 -0.35859789556 3.6542298248 0 2.9892504835 0.38131474442 0 3.3457701752 0.35859789556 0 -6.6186852556 2.9892504835 0 6.6414021044 3.3457701752 0 2.485711609 5.2962123554 0 -4.5142724884 5.301683263 0 4.1386885406 0.49621789734 0 0.49621789734 2.8613114594 0 -6.4653693356 4.1675183045 0 1.7815734083 0.35375209722 0 0.35191041811 5.2192251844 0 -5.2045327576 6.6420335985 0 5.2715908019 0.34496760504 0 0.34496760504 1.7284091981 0 -1.7912623484 6.6472833477 0 6.6462479028 1.7815734083 0 6.655032395 5.2715908019 0 -6.0018111307 0.33962155199 0 6.660378448 6.0018111307 0 0.33962155199 0.99818886931 0 -0.33789389548 6.0020556849 0 4.8431738401 0.36643899333 0 0.36643899333 2.1568261599 0 -6.6695014189 4.8502181121 0 3.3194031049 6.6880752893 0 0.98302760942 6.6572105079 0 -6.0170519767 6.6571754409 0 6.6571754409 0.9829480233 0 0.9829480233 0.34282455914 0 -0.60283050123 6.6812981717 0 6.6809416725 0.60267619269 0 0.60267619269 0.31905832746 0 -6.3973238073 6.6809416725 0 5.508864916 4.3176715804 0 3.7798225257 0.35426223421 0 -0.35426223421 3.2201774743 0 6.6429380014 3.7819238204 0 0.71132486541 5.5 0 -5.4647693027 6.3109555335 0 1.5 0.71132486541 0 3.5 0.71132486541 0 -0.71132486541 3.5 0 6.2886751346 1.5 0 6.2886751346 3.5 0 -1.5345838844 6.3125460874 0 0.68359567551 1.5139713443 0 5.4860286557 0.68359567551 0 -6.3164043245 5.4860286557 0 3.8562774257 5.8821749764 0 3.6699225845 5.605196088 0 -1.4889231782 2.2683482754 0 4.2792377468 1.4836539648 0 1.4836539648 4.7207622532 0 -2.7316517246 1.4889231782 0 2.2792377468 1.4836539648 0 4.7316517246 1.4889231782 0 -1.4889231782 4.2683482754 0 1.4836539648 2.7207622532 0 5.5110768218 2.7316517246 0 -3.7254775389 4.5149805864 0 5.5163460352 2.2792377468 0 3.268872902 4.5135432074 0 -5.2577156165 4.5024656842 0 4.4622778425 6.7091394296 0 4.7298690047 5.5101886931 0 -2.2688375943 5.5108306574 0 2.8342620517 5.9200874307 0 6.1011617565 2.5896524196 0 -0.89883824353 4.4103475804 0 2.5896524196 0.89883824353 0 4.5905860622 0.90250087777 0 -0.90250087777 2.4094139378 0 4.1482301139 5.8535508044 0 5.7304233372 4.5457335678 0 -0.61150415012 4.5053171973 0 2.4946828027 0.61150415012 0 6.3884958499 2.4946828027 0 -2.6875072329 6.241734154 0 0.62319900485 2.5163760965 0 4.4836239035 0.62319900485 0 -6.344872009 4.4992776743 0 6.1032102599 0.60924395918 0 6.3907560408 6.1032102599 0 -0.60924395918 0.89678974009 0 3.4973064736 4.6227820967 0 5.6337719449 2.5046362508 0 -4.5046362508 1.3662280551 0 1.3662280551 4.4953637492 0 1.3662280551 2.4953637492 0 -2.5046362508 1.3662280551 0 3.5182835002 6.4255120262 0 0.61953455275 6.1042915982 0 -2.5006402704 6.7530746008 0 0.28468642517 6.7153135748 0 6.7153135748 6.7153135748 0 -6.7153135748 0.28468642517 0 0.28468642517 0.28468642517 0 3.1742927262 6.4144116318 0 -5.2440169359 2.7559830641 0 3.2440169359 4.2440169359 0 1.7559830641 2.7559830641 0 -2.2440169359 1.7559830641 0 1.7559830641 2.2440169359 0 4.7559830641 1.7559830641 0 -1.7559830641 4.2440169359 0 2.7559830641 1.7559830641 0 4.2440169359 1.7559830641 0 -1.7559830641 4.7559830641 0 5.2440169359 2.2440169359 0 3.7559830641 4.2440169359 0 -5.2423197549 4.2423197549 0 5.2423197549 4.7576802451 0 4.7613986112 5.2386013888 0 -2.2384259709 5.2384259709 0 6.7639984277 4.1078568115 0 4.0833333333 0.211765343 0 -0.211765343 2.9166666667 0 3.8374896999 6.4117612101 0 3.5013858762 5.3869102862 0 -2.134202276 0.21139943727 0 6.7886005627 2.134202276 0 0.2112652041 4.8658559305 0 -2.1388888889 6.7986250028 0 4.8538005863 6.7883841504 0 5.7838156143 4.7783580398 0 -6.4924332819 4.6622593191 0 4.0833333333 6.8065437748 0 3.2489120307 5.0663739953 0 -3.7314939424 5.0719810643 0 6.6009304334 2.6922829373 0 2.6922829373 0.39906956659 0 -0.39906956659 4.3077170627 0 3.5 2.702201665 0 3.5 2.2973233662 0 -3.2474399183 2.4999208385 0 3.7525600817 2.4999208385 0 3.2423197549 2.7576802451 0 -3.7576802451 2.2423197549 0 3.2423197549 2.2423197549 0 3.7576802451 2.7576802451 0 -2.5 3.7048082937 0 2.5 3.2949493753 0 2.2474399183 3.4999596115 0 -2.7525600817 3.4999596115 0 2.7576802451 3.2423197549 0 2.2423197549 3.7576802451 0 -2.7576802451 3.7576802451 0 2.2423197549 3.2423197549 0 4.6985523849 3.5 0 -4.2971333787 3.5 0 4.4992809606 3.7525600817 0 4.4992809606 3.2474399183 0 -4.7576802451 3.2423197549 0 4.2423197549 3.2423197549 0 4.7576802451 3.7576802451 0 -4.2423197549 3.7576802451 0 -CELLS 1057 3168 -OFFSETS vtktypeint64 -0 3 6 9 12 15 18 21 24 -27 30 33 36 39 42 45 48 51 -54 57 60 63 66 69 72 75 78 -81 84 87 90 93 96 99 102 105 -108 111 114 117 120 123 126 129 132 -135 138 141 144 147 150 153 156 159 -162 165 168 171 174 177 180 183 186 -189 192 195 198 201 204 207 210 213 -216 219 222 225 228 231 234 237 240 -243 246 249 252 255 258 261 264 267 -270 273 276 279 282 285 288 291 294 -297 300 303 306 309 312 315 318 321 -324 327 330 333 336 339 342 345 348 -351 354 357 360 363 366 369 372 375 -378 381 384 387 390 393 396 399 402 -405 408 411 414 417 420 423 426 429 -432 435 438 441 444 447 450 453 456 -459 462 465 468 471 474 477 480 483 -486 489 492 495 498 501 504 507 510 -513 516 519 522 525 528 531 534 537 -540 543 546 549 552 555 558 561 564 -567 570 573 576 579 582 585 588 591 -594 597 600 603 606 609 612 615 618 -621 624 627 630 633 636 639 642 645 -648 651 654 657 660 663 666 669 672 -675 678 681 684 687 690 693 696 699 -702 705 708 711 714 717 720 723 726 -729 732 735 738 741 744 747 750 753 -756 759 762 765 768 771 774 777 780 -783 786 789 792 795 798 801 804 807 -810 813 816 819 822 825 828 831 834 -837 840 843 846 849 852 855 858 861 -864 867 870 873 876 879 882 885 888 -891 894 897 900 903 906 909 912 915 -918 921 924 927 930 933 936 939 942 -945 948 951 954 957 960 963 966 969 -972 975 978 981 984 987 990 993 996 -999 1002 1005 1008 1011 1014 1017 1020 1023 -1026 1029 1032 1035 1038 1041 1044 1047 1050 -1053 1056 1059 1062 1065 1068 1071 1074 1077 -1080 1083 1086 1089 1092 1095 1098 1101 1104 -1107 1110 1113 1116 1119 1122 1125 1128 1131 -1134 1137 1140 1143 1146 1149 1152 1155 1158 -1161 1164 1167 1170 1173 1176 1179 1182 1185 -1188 1191 1194 1197 1200 1203 1206 1209 1212 -1215 1218 1221 1224 1227 1230 1233 1236 1239 -1242 1245 1248 1251 1254 1257 1260 1263 1266 -1269 1272 1275 1278 1281 1284 1287 1290 1293 -1296 1299 1302 1305 1308 1311 1314 1317 1320 -1323 1326 1329 1332 1335 1338 1341 1344 1347 -1350 1353 1356 1359 1362 1365 1368 1371 1374 -1377 1380 1383 1386 1389 1392 1395 1398 1401 -1404 1407 1410 1413 1416 1419 1422 1425 1428 -1431 1434 1437 1440 1443 1446 1449 1452 1455 -1458 1461 1464 1467 1470 1473 1476 1479 1482 -1485 1488 1491 1494 1497 1500 1503 1506 1509 -1512 1515 1518 1521 1524 1527 1530 1533 1536 -1539 1542 1545 1548 1551 1554 1557 1560 1563 -1566 1569 1572 1575 1578 1581 1584 1587 1590 -1593 1596 1599 1602 1605 1608 1611 1614 1617 -1620 1623 1626 1629 1632 1635 1638 1641 1644 -1647 1650 1653 1656 1659 1662 1665 1668 1671 -1674 1677 1680 1683 1686 1689 1692 1695 1698 -1701 1704 1707 1710 1713 1716 1719 1722 1725 -1728 1731 1734 1737 1740 1743 1746 1749 1752 -1755 1758 1761 1764 1767 1770 1773 1776 1779 -1782 1785 1788 1791 1794 1797 1800 1803 1806 -1809 1812 1815 1818 1821 1824 1827 1830 1833 -1836 1839 1842 1845 1848 1851 1854 1857 1860 -1863 1866 1869 1872 1875 1878 1881 1884 1887 -1890 1893 1896 1899 1902 1905 1908 1911 1914 -1917 1920 1923 1926 1929 1932 1935 1938 1941 -1944 1947 1950 1953 1956 1959 1962 1965 1968 -1971 1974 1977 1980 1983 1986 1989 1992 1995 -1998 2001 2004 2007 2010 2013 2016 2019 2022 -2025 2028 2031 2034 2037 2040 2043 2046 2049 -2052 2055 2058 2061 2064 2067 2070 2073 2076 -2079 2082 2085 2088 2091 2094 2097 2100 2103 -2106 2109 2112 2115 2118 2121 2124 2127 2130 -2133 2136 2139 2142 2145 2148 2151 2154 2157 -2160 2163 2166 2169 2172 2175 2178 2181 2184 -2187 2190 2193 2196 2199 2202 2205 2208 2211 -2214 2217 2220 2223 2226 2229 2232 2235 2238 -2241 2244 2247 2250 2253 2256 2259 2262 2265 -2268 2271 2274 2277 2280 2283 2286 2289 2292 -2295 2298 2301 2304 2307 2310 2313 2316 2319 -2322 2325 2328 2331 2334 2337 2340 2343 2346 -2349 2352 2355 2358 2361 2364 2367 2370 2373 -2376 2379 2382 2385 2388 2391 2394 2397 2400 -2403 2406 2409 2412 2415 2418 2421 2424 2427 -2430 2433 2436 2439 2442 2445 2448 2451 2454 -2457 2460 2463 2466 2469 2472 2475 2478 2481 -2484 2487 2490 2493 2496 2499 2502 2505 2508 -2511 2514 2517 2520 2523 2526 2529 2532 2535 -2538 2541 2544 2547 2550 2553 2556 2559 2562 -2565 2568 2571 2574 2577 2580 2583 2586 2589 -2592 2595 2598 2601 2604 2607 2610 2613 2616 -2619 2622 2625 2628 2631 2634 2637 2640 2643 -2646 2649 2652 2655 2658 2661 2664 2667 2670 -2673 2676 2679 2682 2685 2688 2691 2694 2697 -2700 2703 2706 2709 2712 2715 2718 2721 2724 -2727 2730 2733 2736 2739 2742 2745 2748 2751 -2754 2757 2760 2763 2766 2769 2772 2775 2778 -2781 2784 2787 2790 2793 2796 2799 2802 2805 -2808 2811 2814 2817 2820 2823 2826 2829 2832 -2835 2838 2841 2844 2847 2850 2853 2856 2859 -2862 2865 2868 2871 2874 2877 2880 2883 2886 -2889 2892 2895 2898 2901 2904 2907 2910 2913 -2916 2919 2922 2925 2928 2931 2934 2937 2940 -2943 2946 2949 2952 2955 2958 2961 2964 2967 -2970 2973 2976 2979 2982 2985 2988 2991 2994 -2997 3000 3003 3006 3009 3012 3015 3018 3021 -3024 3027 3030 3033 3036 3039 3042 3045 3048 -3051 3054 3057 3060 3063 3066 3069 3072 3075 -3078 3081 3084 3087 3090 3093 3096 3099 3102 -3105 3108 3111 3114 3117 3120 3123 3126 3129 -3132 3135 3138 3141 3144 3147 3150 3153 3156 -3159 3162 3165 3168 -CONNECTIVITY vtktypeint64 -202 204 203 203 205 202 109 203 108 -113 202 112 111 205 110 107 204 106 -106 207 4 108 208 5 110 206 6 -112 209 7 4 207 113 5 208 107 -6 206 109 7 209 111 113 207 202 -202 209 112 203 208 108 109 206 203 -204 208 203 203 206 205 202 207 204 -205 209 202 205 206 110 204 207 106 -111 209 205 107 208 204 210 212 211 -211 213 210 155 210 154 159 211 158 -157 212 156 187 213 186 28 217 157 -154 216 26 158 217 28 26 216 187 -27 214 155 156 214 27 29 215 159 -186 215 29 159 215 211 155 214 210 -211 217 158 210 216 154 211 215 213 -213 216 210 212 217 211 210 214 212 -187 216 213 212 214 156 213 215 186 -157 217 212 218 221 219 219 220 218 -163 218 162 167 219 166 169 220 168 -165 221 164 162 224 25 164 223 30 -168 222 32 166 225 31 30 223 163 -32 222 167 25 224 169 31 225 165 -163 223 218 219 225 166 218 224 162 -167 222 219 219 222 220 221 225 219 -218 223 221 220 224 218 220 222 168 -165 225 221 221 223 164 169 224 220 -227 228 226 226 229 227 123 226 122 -193 227 192 179 229 178 161 228 160 -12 233 123 29 230 193 36 231 179 -178 233 12 160 230 29 192 231 36 -6 232 161 122 232 6 123 233 226 -226 232 122 193 230 227 227 231 192 -226 233 229 227 230 228 228 232 226 -229 231 227 161 232 228 179 231 229 -228 230 160 229 233 178 234 236 235 -235 237 234 151 234 150 189 235 188 -149 237 148 153 236 152 148 238 23 -23 238 189 25 239 151 152 239 25 -150 240 24 188 241 26 24 240 149 -26 241 153 151 239 234 189 238 235 -234 240 150 235 241 188 237 240 234 -236 241 235 234 239 236 235 238 237 -149 240 237 153 241 236 237 238 148 -236 239 152 242 244 243 243 245 242 -185 242 184 127 243 126 129 245 128 -125 244 124 12 247 185 124 247 12 -128 248 14 14 248 127 13 246 125 -15 249 129 184 249 15 126 246 13 -185 247 242 127 248 243 243 246 126 -242 249 184 244 246 243 243 248 245 -245 249 242 242 247 244 245 248 128 -125 246 244 129 249 245 244 247 124 -251 252 250 250 253 251 181 250 180 -147 251 146 191 252 190 195 253 194 -23 256 147 37 257 181 22 255 195 -36 254 191 190 256 23 146 255 22 -180 254 36 194 257 37 147 256 251 -181 257 250 250 254 180 251 255 146 -252 254 250 251 256 252 250 257 253 -253 255 251 191 254 252 195 255 253 -252 256 190 253 257 194 258 261 259 -259 260 258 201 259 200 131 258 130 -133 261 132 183 260 182 130 263 15 -200 264 16 15 263 183 16 264 133 -37 265 201 132 262 8 182 265 37 -8 262 131 131 262 258 201 265 259 -258 263 130 259 264 200 260 263 258 -261 264 259 258 262 261 259 265 260 -183 263 260 133 264 261 261 262 132 -260 265 182 267 269 266 266 268 267 -141 266 140 145 267 144 143 268 142 -197 269 196 140 272 19 142 270 20 -144 271 21 196 273 22 19 272 197 -20 270 141 21 271 143 22 273 145 -266 272 140 267 271 144 141 270 266 -145 273 267 266 270 268 269 272 266 -267 273 269 268 271 267 268 270 142 -143 271 268 197 272 269 269 273 196 -274 276 275 275 277 274 115 274 114 -119 275 118 117 276 116 121 277 120 -120 281 11 116 280 9 11 281 119 -114 278 8 118 279 10 9 280 115 -8 278 121 10 279 117 119 281 275 -115 280 274 274 278 114 275 279 118 -274 280 276 277 278 274 276 279 275 -275 281 277 276 280 116 277 281 120 -117 279 276 121 278 277 282 284 283 -283 285 282 135 282 134 139 283 138 -137 284 136 199 285 198 134 289 16 -16 289 199 18 288 137 136 286 17 -17 286 135 138 288 18 198 287 19 -19 287 139 139 287 283 135 286 282 -283 288 138 282 289 134 284 288 283 -282 286 284 285 289 282 283 287 285 -137 288 284 199 289 285 285 287 198 -284 286 136 291 292 290 290 293 291 -173 290 172 177 291 176 171 292 170 -175 293 174 170 294 20 172 295 33 -174 296 34 176 297 35 20 294 177 -33 295 171 34 296 173 35 297 175 -290 295 172 173 296 290 291 297 176 -177 294 291 290 296 293 292 295 290 -293 297 291 291 294 292 175 297 293 -171 295 292 292 294 170 293 296 174 -319 439 375 321 440 376 378 438 320 -318 441 377 335 430 421 337 431 422 -336 432 425 320 500 378 375 490 319 -376 492 321 377 491 318 313 489 417 -304 383 302 417 489 369 80 445 412 -63 444 408 46 443 410 374 431 337 -373 432 336 372 430 335 306 384 363 -315 370 334 332 388 366 333 387 365 -331 386 364 315 334 30 332 366 11 -333 365 5 331 364 32 338 368 14 -340 367 28 339 369 18 444 450 408 -443 449 410 445 452 412 330 371 307 -35 330 307 338 415 368 340 416 367 -339 417 369 383 413 302 301 486 382 -307 371 352 306 414 384 325 395 390 -407 540 61 411 538 78 409 539 44 -45 409 44 62 407 61 79 411 78 -385 486 301 372 488 430 374 487 431 -80 412 79 63 408 62 46 410 45 -339 452 445 338 449 443 340 450 444 -324 476 389 327 477 394 329 478 392 -328 480 391 326 479 393 346 429 400 -382 506 301 79 412 411 62 408 407 -45 410 409 404 453 423 399 455 421 -402 456 425 401 454 422 424 451 405 -418 448 398 420 447 403 419 446 400 -369 396 360 472 535 397 371 472 352 -390 493 325 389 494 324 391 497 328 -394 496 327 393 495 326 392 498 329 -104 434 103 91 435 90 74 436 73 -40 437 39 401 428 347 399 426 345 -402 427 344 421 455 335 425 456 336 -331 446 419 332 451 424 423 453 334 -422 454 337 333 448 418 330 447 420 -430 488 312 431 487 309 332 424 388 -333 418 387 331 419 386 370 423 334 -442 482 322 394 477 27 389 476 17 -392 478 13 393 479 9 391 480 7 -330 420 371 322 471 442 301 501 385 -95 535 472 345 455 399 344 456 402 -349 453 404 400 446 346 347 454 401 -403 447 350 398 448 348 405 451 351 -352 472 397 104 438 434 436 439 73 -435 441 90 437 440 39 13 478 379 -27 477 381 17 476 380 9 479 372 -7 480 374 385 501 370 64 444 63 -47 443 46 81 445 80 304 475 383 -501 531 370 61 540 311 44 539 314 -78 538 310 475 486 359 103 434 404 -403 435 91 398 437 40 405 436 74 -313 534 489 384 481 363 382 486 475 -359 486 315 351 436 405 348 437 398 -404 434 349 350 435 403 150 413 151 -315 486 385 142 414 143 302 413 150 -406 457 353 143 414 306 422 431 67 -421 430 50 425 432 84 366 476 324 -364 477 327 365 478 329 367 480 328 -368 479 326 396 482 360 377 441 435 -375 439 436 376 440 437 434 438 378 -419 530 386 424 529 388 418 528 387 -370 531 423 400 429 57 319 426 53 -318 427 87 321 428 70 420 532 371 -346 500 429 315 385 370 105 438 104 -39 440 38 90 441 89 73 439 72 -369 489 396 386 530 311 388 529 310 -387 528 314 319 490 426 321 492 428 -318 491 427 397 535 298 97 433 298 -402 425 85 404 423 102 41 418 398 -399 421 51 58 419 400 401 422 68 -75 424 405 92 420 403 52 426 399 -86 427 402 69 428 401 56 429 320 -347 492 4 344 491 34 345 490 10 -426 490 345 428 492 347 427 491 344 -34 491 377 10 490 375 4 492 376 -311 483 386 314 484 387 310 485 388 -95 472 94 429 500 320 83 313 82 -49 312 48 61 311 60 78 310 77 -44 314 43 86 402 85 92 403 91 -103 404 102 52 399 51 58 400 57 -69 401 68 75 405 74 41 398 40 -66 309 65 88 318 87 56 320 55 -54 319 53 71 321 70 31 500 346 -301 433 98 83 432 313 49 430 312 -66 431 309 298 526 397 378 500 31 -99 301 98 338 443 415 340 444 416 -339 445 417 93 420 92 59 419 58 -42 418 41 76 424 75 51 421 50 -68 422 67 85 425 84 102 423 101 -57 429 56 87 427 86 70 428 69 -53 426 52 97 298 96 50 430 49 -67 431 66 84 432 83 98 433 97 -33 396 373 308 384 300 356 496 465 -460 495 355 461 496 356 355 495 464 -357 497 459 463 498 323 468 493 358 -466 497 357 323 498 462 358 493 470 -354 494 467 469 494 354 170 322 171 -115 393 9 14 326 128 32 327 168 -160 357 161 111 391 7 125 392 13 -155 394 27 122 323 123 130 355 131 -152 356 153 138 442 139 28 328 158 -132 354 133 146 358 147 5 329 108 -18 360 138 360 442 138 11 324 120 -135 389 17 21 325 144 149 390 24 -317 458 457 299 383 359 143 306 21 -163 299 30 35 300 176 24 302 150 -386 483 364 387 484 365 388 485 366 -457 458 363 24 303 302 306 362 21 -457 481 353 353 526 406 361 382 316 -305 317 316 415 524 312 416 525 309 -417 523 313 303 304 302 306 363 362 -317 406 361 299 315 30 5 365 329 -11 366 324 32 364 327 303 305 304 -383 474 413 28 367 328 14 368 326 -18 369 360 352 353 308 59 530 419 -42 528 418 76 529 424 423 531 101 -299 359 315 414 473 384 93 532 420 -120 469 121 134 467 135 144 468 145 -128 460 129 114 464 115 154 465 155 -168 461 169 148 470 149 110 459 111 -108 463 109 124 462 125 158 466 159 -317 361 316 174 447 175 166 446 167 -172 456 173 116 455 117 118 451 119 -17 341 136 106 448 107 10 351 118 -119 332 11 165 349 31 30 334 164 -13 342 126 27 343 156 137 339 18 -112 454 113 136 452 137 164 453 165 -126 449 127 4 348 106 113 347 4 -107 333 5 127 338 14 157 340 28 -7 337 112 33 336 172 173 344 34 -34 350 174 175 330 35 156 450 157 -9 335 116 117 345 10 31 346 166 -167 331 32 305 316 304 416 487 367 -415 488 368 35 307 300 352 397 353 -33 373 336 17 380 341 13 379 342 -27 381 343 7 374 337 9 372 335 -307 308 300 309 525 65 312 524 48 -313 523 82 311 530 60 310 529 77 -314 528 43 395 527 303 360 482 442 -305 458 317 409 410 342 407 408 343 -411 412 341 99 501 301 362 527 395 -34 377 350 10 375 351 4 376 348 -349 378 31 307 352 308 384 473 300 -317 457 406 299 474 383 176 473 177 -162 474 163 380 411 341 379 409 342 -381 407 343 350 447 174 346 446 166 -175 447 330 119 451 332 167 446 331 -341 452 136 336 456 172 348 448 106 -117 455 345 351 451 118 113 454 347 -334 453 164 107 448 333 335 455 116 -127 449 338 157 450 340 337 454 112 -342 449 126 137 452 339 343 450 156 -173 456 344 165 453 349 363 458 362 -135 467 389 155 465 394 324 469 120 -326 460 128 325 468 144 149 470 390 -111 459 391 125 462 392 327 461 168 -329 463 108 328 466 158 115 464 393 -298 535 96 376 437 348 375 436 351 -349 434 378 377 435 350 382 475 316 -105 502 438 439 504 72 441 503 89 -440 505 38 140 471 141 395 536 390 -383 475 359 325 537 395 312 488 415 -309 487 416 410 449 342 408 450 343 -412 452 341 55 502 2 2 502 105 -72 504 1 89 503 3 38 505 0 -0 505 71 1 504 54 3 503 88 -353 481 308 395 537 362 303 536 395 -121 517 8 145 518 22 153 513 26 -169 516 25 6 510 122 131 512 8 -159 509 29 29 509 160 109 510 6 -8 517 132 22 518 146 6 511 110 -8 512 114 12 514 124 129 515 15 -26 513 154 161 511 6 123 514 12 -133 507 16 147 508 23 25 516 152 -16 507 134 23 508 148 15 515 130 -139 519 19 141 520 20 19 519 140 -20 520 170 177 521 20 20 521 142 -151 522 25 25 522 162 303 527 305 -300 473 176 163 474 299 301 506 433 -433 499 298 316 475 304 397 526 353 -458 527 362 319 504 439 318 503 441 -321 505 440 438 502 320 363 481 457 -413 522 151 476 485 380 477 483 381 -478 484 379 142 521 414 479 488 372 -480 487 374 308 481 384 373 534 432 -162 522 474 33 533 396 473 521 177 -320 502 55 88 503 318 71 505 321 -54 504 319 322 533 171 171 533 33 -432 534 313 100 531 501 100 501 99 -469 517 121 460 515 129 110 511 459 -463 510 109 124 514 462 461 516 169 -148 508 470 114 512 464 154 513 465 -134 507 467 466 509 159 468 518 145 -485 538 380 483 540 381 484 539 379 -396 489 373 442 519 139 170 520 322 -354 507 133 358 508 147 152 516 356 -355 512 131 357 511 161 323 514 123 -130 515 355 132 517 354 146 518 358 -356 513 153 160 509 357 122 510 323 -445 523 417 443 524 415 444 525 416 -433 506 499 65 525 64 48 524 47 -82 523 81 406 499 361 390 536 24 -21 537 325 371 532 472 24 536 303 -361 506 382 43 528 42 77 529 76 -60 530 59 101 531 100 362 537 21 -94 532 93 96 535 95 499 506 361 -325 493 468 328 497 466 324 494 469 -326 495 460 465 496 394 467 494 389 -464 495 393 459 497 391 462 498 392 -327 496 461 329 498 463 470 493 390 -354 517 469 464 512 355 356 516 461 -459 511 357 462 514 323 323 510 463 -358 518 468 465 513 356 355 515 460 -470 508 358 357 509 466 467 507 354 -64 525 444 47 524 443 81 523 445 -472 532 94 474 522 413 414 521 473 -471 519 442 322 520 471 471 520 141 -140 519 471 364 483 477 365 484 478 -366 485 476 305 527 458 380 538 411 -381 540 407 379 539 409 367 487 480 -368 488 479 482 533 322 406 526 499 -499 526 298 310 538 485 311 540 483 -314 539 484 396 533 482 489 534 373 -541 543 542 542 544 541 180 541 181 -184 542 185 178 543 179 182 544 183 -15 546 184 183 546 15 12 547 178 -36 545 180 37 548 182 185 547 12 -179 545 36 181 548 37 184 546 542 -180 545 541 541 548 181 542 547 185 -541 545 543 542 546 544 544 548 541 -543 547 542 543 545 179 544 546 183 -178 547 543 182 548 544 550 552 549 -549 551 550 188 549 189 192 550 193 -190 552 191 186 551 187 26 554 188 -29 556 186 23 555 190 36 553 192 -189 555 23 187 554 26 193 556 29 -191 553 36 188 554 549 550 556 193 -549 555 189 192 553 550 552 555 549 -550 553 552 549 554 551 551 556 550 -552 553 191 190 555 552 186 556 551 -551 554 187 557 559 558 558 560 557 -198 557 199 194 558 195 200 560 201 -196 559 197 197 563 19 201 562 37 -199 561 16 195 564 22 19 563 198 -37 562 194 16 561 200 22 564 196 -194 562 558 198 563 557 557 561 199 -558 564 195 559 564 558 558 562 560 -560 561 557 557 563 559 200 561 560 -560 562 201 196 564 559 559 563 197 - -CELL_TYPES 1056 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 -5 - -CELL_DATA 1056 -FIELD FieldData 1 -radiation%20flux%20density 1 1056 double --4.6843286457e-07 -4.6843286457e-07 0.00024192540469 0.00023509158538 0.00022805486433 0.0002218924653 0.00057288578851 0.00056175797025 0.0005891913164 -0.00058520183726 0.00056936837607 0.00058144710502 0.00059484116999 0.00057035507005 0.0004981200305 0.00049769682723 0.00050432544649 0.00050386041792 --4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 0.00058641393226 0.000566864448 0.00058670740336 0.00056668975337 -4.6843286457e-07 --4.6843286457e-07 0.00024551663576 0.00024055869932 0.00022245152336 0.00023332359398 0.0005719228804 0.0005891913164 0.00056749197144 0.00059544595569 -0.00057035507005 0.00058405372399 0.00059504005396 0.00058296483157 0.00049269349866 0.00050990468748 0.00049284036177 0.00050968161764 -4.6843286457e-07 --4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 0.00057924611213 0.00057256499738 0.00058001303308 0.00057326711723 -4.6843286457e-07 -4.6843286457e-07 -0.00024406743684 0.00023955149485 0.00022417441834 0.00021928895745 0.00058440397762 0.00057973611033 0.00056749197144 0.00058049772689 0.00058291638563 -0.0005719228804 0.00059504005396 0.00056979398655 0.0005035342089 0.00049801949977 0.00050399802131 0.00049844358151 -4.6843286457e-07 -4.6843286457e-07 --4.6843286457e-07 -4.6843286457e-07 0.00056691518858 0.00058676045512 0.00058636072159 0.00056663890982 -4.6843286457e-07 -4.6843286457e-07 0.00023482187274 -0.00024097587617 0.00023332297392 0.00021773016344 0.00059504005396 0.00058536243937 0.00059544595569 0.00058296483157 0.00059817838966 0.00058976325253 -0.00058489943281 0.0005903306375 0.00048896129661 0.00048910409653 0.00050701424435 0.00050679576635 -4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 --4.6843286457e-07 0.00057319071943 0.00057932401795 0.00057264185839 0.00057993563442 -4.6843286457e-07 -4.6843286457e-07 0.00024118425925 0.00023765125047 -0.00022708494459 0.00021773393075 0.00058236004587 0.00059571677161 0.00058672168668 0.00059817838966 0.00057387627672 0.00059100735516 0.00057860819211 -0.00058489943281 0.00050152597541 0.00048982674211 0.00050131620898 0.000489970543 -4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 -0.00057880521913 0.00057370214282 0.00058045375777 0.0005721300173 -4.6843286457e-07 -4.6843286457e-07 0.00024035291624 0.00023864442641 0.00022456757877 -0.0002274422444 0.00058536243937 0.00059817838966 0.00056175797025 0.00058144710502 0.00056885208163 0.00059484116999 0.00058976325253 0.00057553799449 -0.00050990468748 0.00049269349866 0.00049284036177 0.00050968161764 -4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 0.00058001303308 -0.00057326711723 0.00057924611213 0.00057256499738 1.1211849099 1.1211849099 0.96106098001 0.95502678391 0.93184676192 0.9294522499 -0.89188956157 0.89712851193 0.89264126428 0.89645764841 0.89450473881 0.89131043916 0.8978304169 0.89447098363 1.0682906994 -1.0706711111 1.0706580027 1.0683051311 1.1211849099 1.1211849099 1.1211849099 1.1211849099 1.063362228 1.062511898 -1.0634292178 1.0624448943 -4.6843286457e-07 -4.6843286457e-07 0.00025036084758 0.00023453633939 0.0002180427077 0.00023392888657 0.0005903306375 -0.00058976325253 0.00058554326558 0.00059484116999 0.00058536243937 0.00058236004587 0.00059882222243 0.00059504005396 0.00049237357468 0.00051023561452 -0.00049252007603 0.00051001206234 -4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 0.00057321548938 0.00057929874334 0.00057996072888 -0.00057261692274 -4.6843286457e-07 -4.6843286457e-07 0.0002470845315 0.00024257300446 0.0002211124482 0.00023391334962 0.00058296483157 0.0005910597501 -0.00057867469333 0.00059100735516 0.00059571677161 0.00059544595569 0.00056960389865 0.00058489943281 0.00049571107105 0.00049512886697 0.00049527395898 -0.00049554429265 -4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 0.00058591497434 0.00058720747894 0.00056621299203 0.00056734273793 --4.6843286457e-07 -4.6843286457e-07 0.00024376152511 0.00024019630632 0.00021630197845 0.00022552399434 0.00056947749604 0.00057673768857 0.00058261479794 -0.00059817838966 0.0005666481785 0.00056885208163 0.00058479050324 0.00057877837974 0.00050386041792 0.0004981200305 0.00049769682723 0.00050432544649 --4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 0.000566864448 0.00058641393226 0.00056668975337 0.00058670740336 -4.6843286457e-07 --4.6843286457e-07 0.00024304518108 0.00023746426204 0.00022250606761 0.00021980987692 0.0005903306375 0.00058554326558 0.00058261479794 0.00056904919549 -0.00057823911688 0.00057568244184 0.00059882222243 0.00058536243937 0.00051023561452 0.00049237357468 0.00051001206234 0.00049252007603 -4.6843286457e-07 --4.6843286457e-07 -4.6843286457e-07 -4.6843286457e-07 0.00057929874334 0.00057321548938 0.00057261692274 0.00057996072888 -4.6843286457e-07 -4.6843286457e-07 -0.00023667016358 0.00024353058942 0.00022189370674 0.00021954647923 0.00059100735516 0.00057013367382 0.00057419479971 0.00058533909767 0.00058700477537 -0.00060537932788 0.00058020109301 0.00057632686648 0.00049571107105 0.00049527395898 0.00049512886697 0.00049554429265 -4.6843286457e-07 -4.6843286457e-07 --4.6843286457e-07 -4.6843286457e-07 0.00058720747894 0.00056621299203 0.00056734273793 0.00058591497434 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0033908007557 0.0033539717175 0.0033451892269 0.0033426746811 0.0033439789627 -0.0033414491791 0.0033575873645 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0033795021582 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0033629628609 0.0033563611253 -0.0033542322337 0.0033519372475 0.0033607729572 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0026297515412 0.0035449077018 0.0026452312654 0.0031782486674 0.0035449077018 0.0031825029873 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0033433266969 0.0033546147921 0.0033459013984 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0033554895943 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0025771670056 0.0026282093234 0.0027182178872 0.0026979239311 -0.0026508389717 0.0026498138692 0.0026282093234 0.0026498138692 0.0026385837058 0.0026386371344 0.0026508389717 0.0026823824208 0.0026979239311 -0.0026614287878 0.15621663065 0.0027182178872 0.002636663071 0.0031906404745 0.0027283003984 0.0026167912717 0.0026746193047 0.0026538964811 -0.0035449077018 0.0035449077018 0.0026603104834 0.0025964812399 0.0025873936407 0.0026621032032 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0033736856816 0.0033741827979 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0033660053894 0.0033710235322 0.0033780309665 0.003367755932 0.0035449077018 -0.0035449077018 0.0033660854965 0.0033693839082 0.0033374864609 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.002585311037 0.0025158272906 0.0025469932949 0.002573678592 0.0025280573007 0.0025517936313 -0.0025501904952 0.0025431947403 0.002553274665 0.0025722794633 0.0025294931197 0.0025488755544 0.0035449077018 0.002668460474 0.0025875504906 -0.0026688763805 0.0026488813923 0.0025987813941 0.0026143864529 0.0025771670056 0.0026466614565 0.0026003123867 0.0026574059624 0.0025856302594 -0.0025917093677 0.0026032553349 0.0026003123867 0.0026586634068 0.0026001347824 0.0026723379532 0.0025758950529 0.0026246959746 0.002621140216 -0.0025773339223 0.0025773339223 0.0025890539576 0.0025890539576 0.0026003123867 0.0026320267321 0.0026573948775 0.00257308284 0.0025888795287 -0.0025773339223 0.0026097587951 0.00264941 0.0025890539576 0.0035449077018 0.0035449077018 0.0035449077018 0.0033476386183 0.0035449077018 -0.0033470000445 0.0033506040183 0.0033463164124 0.0033552885292 0.0033540705343 0.0033450410073 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0033912556617 0.0033849806632 0.0033815264421 0.0033893052427 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0025335666969 0.0025415219696 0.0035449077018 0.0035449077018 0.0035449077018 0.0032066400728 0.0031615448212 -0.0031727778524 0.0031472997099 0.003140644521 0.0031511693359 0.003166432583 0.0031503879433 0.0031791999804 0.0031631139972 0.0031851794839 -0.0031787031799 0.0031338532942 0.0031538480232 0.0031338532942 0.003140644521 0.0031600572981 0.0031379304568 0.0031472997099 0.0031446491442 -0.0031910285818 0.0032075784845 0.0035449077018 0.0031045218881 0.0031247672963 0.0031883659719 0.0031830324705 0.0031546385242 0.0031423874783 -0.0031247672963 0.0031114896572 0.0031710482978 0.0031830324705 0.0031710482978 0.0031114896572 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0025059267094 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0021470040078 0.038274159274 0.002133992936 0.0021123767977 0.0021184081503 0.0021123767977 0.0021123767977 0.0021154460802 0.0021240695086 -0.0021437411865 0.19021362819 0.0021398703931 0.0021154460802 0.0021154460802 0.0021240695086 0.0021398703931 0.002133992936 0.0021123767977 -0.0021240695086 0.19019000656 0.0021154460802 0.0021184081503 0.038449298795 0.0021184081503 0.0021384243663 0.0021153590237 0.0021351626597 -0.0021096935404 0.0021062268726 0.0021120917483 0.0021184717324 0.0021152181628 0.0035449077018 0.0031147441438 0.0031193133008 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0030191846537 0.0035449077018 0.0035449077018 0.0035449077018 0.0030258311435 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0030011637431 0.0032294885953 0.0029934856132 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0029957467343 0.0023509725929 -0.0035449077018 0.0035449077018 0.0035449077018 0.0030314521827 0.0030241063597 0.0030124133951 0.0030241063597 0.0029956996807 0.0030067225194 -0.0030072474532 0.0029956996807 0.0030124133951 0.0029863466122 0.0030067225194 0.0030075301209 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0030671369135 0.0030015027553 0.0030471008452 0.050693494941 0.0030392382978 0.0030311732248 0.0030390890023 0.0030311732248 -0.0030311163298 0.0030470139666 0.050678612258 0.0030390890023 0.0030392382978 0.0030311163298 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0032513928049 0.0032785641257 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0029738617905 0.0029788765462 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.16803250513 -0.0026327835945 0.0024731004495 0.0024604704072 0.0021312434859 0.0021253670351 0.0021351626597 0.19753015133 0.039627432067 0.0021384243663 -0.039890602076 0.19756926156 0.0030365624456 0.054327366106 0.054304705446 0.0030365237424 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0029606345376 0.002950076816 0.0029598341575 0.0029508531239 0.0035449077018 0.0035449077018 0.002593683453 0.0026265904595 -0.19338214521 0.0024731006508 0.0021096935404 0.0021351626597 0.19539913475 0.039625635882 0.039065217757 0.0021153590237 0.0021384243663 -0.19532219588 0.0030097921345 0.0030337401592 0.003009870454 0.0030337855246 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.061671080668 0.061591641292 0.0029598776686 0.0029605908956 0.0035449077018 0.0035449077018 0.0026228016562 0.16535715002 0.0024840631737 -0.0024473423737 0.0021036194965 0.039191900967 0.0021253670351 0.19336610717 0.0021066932556 0.19329831666 0.0021312434859 0.038677906362 -0.053273975097 0.0030258967848 0.0030257153474 0.053226879355 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0029698682484 -0.0029680507746 0.002939720074 0.0029415484529 -POINT_DATA 565 -FIELD FieldData 1 -radiation%20flux%20density 1 565 double -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.002379693028 0.0021924949406 0.0013594504431 0.0023791679896 0.0013598671331 -0.0023704312818 0.0023825195105 0.0022021179605 0.0013578694523 0.0023728235879 0.0021920199593 0.0013574458132 0.0013574458132 0.0023757626975 -0.0021817244205 0.0013558457554 0.0013509861277 0.0023829804293 0.2807074264 0.28133450438 0.0023769243345 0.0013532321101 0.0013574324942 -0.0023815195843 0.0021889879027 0.0013578694523 0.0021835950234 0.0023924014592 0.0021894705589 0.0023211706176 0.0023906565226 0.0021748805369 -0.28348023246 0.28280882393 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0016189822709 0.001609730591 -0.0016302564404 0.0015101803874 0.0015182030944 0.0016188288614 0.0016209608187 0.0016279271831 0.0014964733006 0.0015964149864 0.0016233279088 -0.0016332683799 0.0016199544632 0.0016121775022 0.0016472321383 0.0015267981881 0.0015170607988 0.0015168261586 0.001506470752 0.0016064589239 -0.0016020929434 0.0015999778833 0.0016402112553 0.0015200848869 0.0015175914446 0.0015173561875 0.0015387579039 0.0015374636271 0.001491079658 -0.0015917997205 0.0016228677605 0.001622027748 0.0016388074554 0.0015368343361 0.0014909543916 0.0014888253283 0.0015302068883 0.0016443280936 -0.0016154379481 0.0075252832367 0.55195853754 0.55205119618 0.0075649399561 0.0016206628426 0.0016310800261 0.0015161399748 0.0015322609479 -0.0015333760694 0.0015080778316 0.001608691865 0.0016193090421 0.0016143699214 0.0016197898026 0.0014993778539 0.0015323456269 0.0015332902043 -0.0014983955519 0.0015979724236 0.0016370095303 0.0016521942999 0.0016194290056 0.001604527821 0.0016296240504 0.0015091905324 0.0015114345169 -0.0015528953933 0.0016230227098 0.0016340128183 0.0016520252796 0.0016329003318 0.0015932838392 0.0014932264733 0.0014940534511 0.0077887383351 -0.55823990369 0.55812784587 0.0077406872717 0.0014881003166 0.0015233978854 0.0015238919577 0.0014940737396 0.001492844372 0.0015052997128 -0.007665327738 0.55669227329 0.55700701001 0.0077705911269 0.0015220179241 0.5497162616 0.54942592479 0.0075762053754 0.0014813922394 -0.0015244401198 0.0015254087784 0.0014892185117 0.0076649956361 0.00017557638738 0.00017831964823 0.00022567356135 0.00023329515023 0.00045476768074 -0.00044135404204 0.00044275036845 0.000447898541 0.00018046131563 0.00017488840404 0.00022781305656 0.00023186290677 0.00044728200921 0.00045004859688 -0.0004546193138 0.0004410107796 0.00017853227651 0.00017630583495 0.00022605386969 0.00023183413926 0.00044086103781 0.00045041579872 0.00044992250597 -0.00044692064709 0.00017300193349 0.00017898745077 0.00022702624044 0.00023186288795 0.00045254569978 0.00045417211193 0.00044741129068 0.00044928667674 -0.00017745038746 0.00017365354345 0.00022702679871 0.00023082310382 0.0004495777769 0.00045161752724 0.00044642749282 0.00044782220819 0.00017972364141 -0.00017461493648 0.0002286448434 0.0002304035709 0.00044200582445 0.00045310841621 0.00044308863483 0.00045461274389 1.0838756762 1.0823374648 -1.0703654895 1.0696606286 1.0098986412 1.0071907285 1.0078598255 1.0091800822 0.00017393660838 0.00018124782757 0.00022972600002 -0.00022931614689 0.0004498531941 0.00044822820713 0.00045468935907 0.00045331375324 0.00017659940429 0.00017591034752 0.00023213826715 0.00022767729683 -0.00045344524125 0.00044602930101 0.00044802744668 0.00044766507714 0.0001768149502 0.00017807263418 0.00022474181354 0.00023287333856 0.00045338093812 -0.00044319466505 0.00044202116317 0.00044837964226 0.00017515215719 0.00017940545821 0.00023006004021 0.00022737283174 0.00044383083661 0.00045331375324 -0.00044942792252 0.00044822820713 0.00017511163745 0.00017604714537 0.00022567402302 0.00023187727232 0.00044808614565 0.00044739372638 0.00044702327863 -0.00044870677544 0.0035449077018 0.0032860871726 0.0032807499181 0.0035449077018 0.0033081267763 0.0035204474132 0.0035449077018 0.0035449077018 -0.0033086198957 0.0034844619306 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0034973349506 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0032505781861 0.0032686434382 -0.0033534754491 0.003326778966 0.0033500378676 0.0033451941383 0.0033449555046 0.0033502720996 0.0032933476594 0.0032845160442 0.0032893844866 -0.0032818499248 0.0032983095501 0.0032851576764 0.0032914113533 0.0032896508159 0.0032816482141 0.0032899870944 0.0032843117939 0.0032918138188 -0.0032851132237 0.0032896526856 0.0033020655352 0.0032949305466 0.0033001945868 0.003297394917 0.0032985555776 0.0033148354658 0.0033150022862 -0.0033049132037 0.0035449077018 0.0035449077018 0.0032764534867 0.0032686510709 0.003272685297 0.003272685297 0.038824052665 0.0035449077018 -0.003299918852 0.0035449077018 0.0035205184298 0.0035449077018 0.0034816769034 0.0034826405944 0.0034852722485 0.0034811942471 0.003482165613 -0.0034791174388 0.0035449077018 0.0035449077018 0.0035049343629 0.0035119230923 0.0035067402683 0.0035182531954 0.0035176774919 0.0035192990285 -0.0035189739586 0.0035118091536 0.0035125237546 0.0035133045064 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0032853995651 0.0033181867959 0.0032950128714 0.0032881090533 0.0032877265556 0.0032953778553 0.0035449077018 -0.0034998478294 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0032436513279 -0.0032480480836 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0033028272309 0.0035449077018 0.0035449077018 0.0035449077018 0.0032540771564 0.0032804335841 0.0032493552248 0.0032470669849 -0.0032514827166 0.0032573197011 0.0032555544889 0.0032822237872 0.0032731038824 0.0032694420836 0.0032768434418 0.0035449077018 0.0035449077018 -0.003220863077 0.0032359234213 0.0032271140696 0.0032119009272 0.0032356902332 0.003211661624 0.003220616238 0.0032268949128 0.0032069031494 -0.0032239808409 0.0032399753829 0.0032212587962 0.0031822313586 0.0035449077018 0.0032127532599 0.0032161203532 0.0035449077018 0.0035134832724 -0.0035145835617 0.0035131284571 0.0035127459594 0.0035142185777 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035051064411 0.0035068491199 0.0035045915008 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035070240803 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0035449077018 0.0027641665636 0.057176991091 0.0027637382794 0.00276852161 0.0027740546857 0.002759920697 -0.0027740546857 0.002759920697 0.00276852161 0.0027637382794 0.0027828238091 0.05714376751 0.0027729016375 0.0027490649623 0.0027565086159 -0.0027597891987 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 0.0035449077018 -0.0035449077018 0.0035449077018 0.0031332046652 0.0035449077018 0.0035449077018 0.0034715289776 0.0034783218078 0.0035449077018 0.0035449077018 -0.0035449077018 0.041549172498 0.0032693572271 0.0031713820417 0.0031660205754 0.05965073235 0.0027576314969 0.0027629705255 0.059599431979 -0.0032561395498 0.0032676781358 0.0031713820534 0.05454659838 0.060639521132 0.0027480686592 0.060522154391 0.0027624225111 0.0032648635137 -0.040862519326 0.0031605556677 0.0031761175503 0.0027594203637 0.058455430239 0.0027445331383 0.058351104132 diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_MB_reference.vtk b/tests/input/validation_tests/MN_solver/linesource_MN_MB_reference.vtk index 2415a916..caab14c8 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_MB_reference.vtk +++ b/tests/input/validation_tests/MN_solver/linesource_MN_MB_reference.vtk @@ -173,23 +173,23 @@ CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double 0.08266884102 0.08266884102 0.08266884102 0.08266884102 11.719363475 0.08266884102 0.08266884102 10.690273292 0.08266884102 -0.08266884102 12.624793806 11.587658541 12.354440242 10.35588009 0.08266884102 0.08266884102 0.0012566370614 0.08266884102 -0.0012566370614 0.0012566370614 0.0012566370614 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 0.0012566370614 0.08266884102 0.0012566370614 0.0012566370614 0.08266884102 0.08266884102 12.386680048 -12.466624649 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.08266884102 0.08266884102 0.08266884102 0.08266884102 -0.08266884102 0.08266884102 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.08266884102 0.08266884102 3.1279023943 3.2706989767 0.08266884102 0.08266884102 6.0674483534 5.2059857009 +0.08266884102 12.624793806 11.587658541 12.354440242 10.35588009 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 12.386680048 +12.466624649 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 3.1279023943 3.2706989767 0.08266884102 0.08266884102 6.0674483534 5.2059857009 2.6801550659 3.332908504 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 5.1707818682 3.8718949535 0.08266884102 0.08266884102 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 12.458134686 0.028394038381 0.028394038381 0.028394038381 0.028394038381 -0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 -0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.028394038381 0.069100140361 0.069100140361 -0.071038526169 0.069100140361 0.069100140361 0.069100140361 0.071038526169 0.069100140361 0.069100140361 0.59020776657 2.7353240122 -0.51558321183 0.069100140361 0.61400719696 3.0134789576 0.069100140361 3.3957598782 0.62437545151 0.069100140361 3.8676000365 -0.069100140361 0.069100140361 0.071038526169 0.071038526169 7.8236647051 8.2573602241 7.9875743573 7.5642406374 0.050103959437 -0.050103959437 0.050103959437 0.050103959437 1.2796247435 1.107332213 0.84051406352 1.1002914464 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 12.458134686 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.08266884102 0.59020776657 2.7353240122 +0.51558321183 0.08266884102 0.61400719696 3.0134789576 0.08266884102 3.3957598782 0.62437545151 0.08266884102 3.8676000366 +0.08266884102 0.08266884102 0.08266884102 0.08266884102 7.8236647051 8.2573602241 7.9875743573 7.5642406374 0.08266884102 +0.08266884102 0.08266884102 0.08266884102 1.2796247435 1.107332213 0.84051406352 1.1002914465 diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk b/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk index 96782040..9f61e411 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk +++ b/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -0.11046737879 0.11046737879 0.11046737879 0.11046737879 12.544927279 0.11046737879 0.11046737879 10.586595377 0.11046737879 -0.11046737879 16.931619852 11.83485416 17.294799352 9.7425659218 0.11046737879 0.11046737879 0.0012566370614 0.11046737879 -0.0012566370614 0.0012566370614 0.0012566370614 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.0012566370614 -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.0012566370614 0.11046737879 0.0012566370614 0.0012566370614 0.11046737879 0.11046737879 17.190896458 -16.558005479 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 -0.0012566370614 0.11046737879 0.11046737879 1.3342623197 1.4127050777 0.11046737879 0.11046737879 3.4519360793 2.2314017638 -1.1431732275 1.4432975056 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 2.8657703138 1.6461753789 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 12.544927279 0.1104673788 0.11046737879 10.586595377 0.11046737879 +0.11046737879 16.931619852 11.83485416 17.294799352 9.7425659218 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.1104673788 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.1104673788 0.11046737879 17.190896458 +16.558005479 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 +0.11046737879 0.11046737879 0.11046737878 1.3342623197 1.4127050777 0.11046737877 0.11046737879 3.4519360793 2.2314017638 +1.1431732275 1.4432975056 0.11046737879 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.11046737879 0.1104673788 +0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737878 0.1104673788 0.1104673788 0.1104673788 0.1104673788 +0.1104673788 0.11046737879 2.8657703139 1.6461753789 0.11046737879 0.1104673788 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 16.993830285 0.037660217639 0.037660217639 0.037660217639 0.037660217639 -0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 -0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.037660217639 0.092265588505 0.092265588505 -0.094865844261 0.092265588505 0.092265588505 0.092265588505 0.094865844261 0.092265588505 0.092265588505 0.31443320228 2.0919006009 -0.28258502025 0.092265588505 0.32750699527 2.3294796617 0.092265588505 2.640159261 0.33260573326 0.092265588505 3.199005968 -0.092265588505 0.092265588505 0.094865844261 0.094865844261 8.4016234841 9.0725712445 8.8209835185 8.1818387439 0.066783082101 -0.066783082101 0.066783082101 0.066783082101 0.77876111889 0.53465425579 0.41760897881 0.6615279658 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 16.993830285 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.31443320228 2.0919006009 +0.28258502025 0.1104673788 0.32750699527 2.3294796617 0.11046737879 2.640159261 0.33260573325 0.11046737879 3.199005968 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 8.4016234841 9.0725712446 8.8209835185 8.1818387439 0.1104673788 +0.1104673788 0.1104673788 0.1104673788 0.77876111888 0.53465425579 0.41760897881 0.66152796581 diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_Quad_reference.vtk b/tests/input/validation_tests/MN_solver/linesource_MN_Quad_reference.vtk index 7c06a8f9..0696ac51 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_Quad_reference.vtk +++ b/tests/input/validation_tests/MN_solver/linesource_MN_Quad_reference.vtk @@ -172,7 +172,7 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 11.665344318 0.0012566370614 0.0012566370614 10.591478339 0.0012566370614 +0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 11.665344318 0.0012566370614 0.0012566370614 10.591478338 0.0012566370614 0.0012566370614 12.394674075 11.492544789 12.17707979 10.246485257 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 0.0012566370614 diff --git a/tests/test_cases.cpp b/tests/test_cases.cpp index 17c7be23..20bace8c 100644 --- a/tests/test_cases.cpp +++ b/tests/test_cases.cpp @@ -36,7 +36,9 @@ TEST_CASE( "SN_SOLVER", "[validation_tests]" ) { SECTION( "checkerboard" ) { std::string config_file_name = std::string( TESTS_PATH ) + sn_fileDir + "checkerboard_SN.cfg"; - Config* config = new Config( config_file_name ); + Config* config = new Config( config_file_name ); + // config->SetForcedConnectivity( true ); + SolverBase* solver = SolverBase::Create( config ); solver->Solve(); solver->PrintVolumeOutput(); @@ -277,7 +279,8 @@ TEST_CASE( "CSD_PN_SOLVER", "[validation_tests]" ) { std::string config_file_name = std::string( TESTS_PATH ) + csd_sn_fileDir + "starmap_validation.cfg"; - Config* config = new Config( config_file_name ); + Config* config = new Config( config_file_name ); + SolverBase* solver = SolverBase::Create( config ); solver->Solve(); solver->PrintVolumeOutput(); From 257711c5d4419f21f496d55c299982b16fdd939c Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 12 Feb 2024 15:47:27 -0500 Subject: [PATCH 078/155] fixed screen output test case --- tests/input/validation_tests/output/validate_logger_reference | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/input/validation_tests/output/validate_logger_reference b/tests/input/validation_tests/output/validate_logger_reference index e2c03087..4dd94349 100644 --- a/tests/input/validation_tests/output/validate_logger_reference +++ b/tests/input/validation_tests/output/validate_logger_reference @@ -6,7 +6,7 @@ 2024-02-07 09:35:33.189211 | | ...sort cells... 2024-02-07 09:35:33.189254 | | ...connect cells to nodes... 2024-02-07 09:35:33.189427 | | ...determine neighbors of cells... -2024-02-07 09:35:33.194739 | | Save mesh connectivity to file /home/8v5/Projects/KiT-RT/tests/input/mesh_files/linesource.con +2024-02-07 09:35:33.194739 | | Save mesh connectivity to file /mnt/tests/input/mesh_files/linesource.con 2024-02-07 09:35:33.196688 | | Compute boundary... 2024-02-07 09:35:33.197246 | | Smallest characteristic length of a grid cell in this mesh: 0.104859 2024-02-07 09:35:33.197254 | | Corresponding maximal time-step: 0.073401 From 168ea7f8f2d3348dd8e141c92d7398d82db31e82 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 12 Feb 2024 16:12:23 -0500 Subject: [PATCH 079/155] changed workflow file --- .github/workflows/c-cpp.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 0349632a..e513b827 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -22,14 +22,17 @@ jobs: run: | git submodule update --init --recursive mkdir build && cd build - cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -DBUILD_ML=OFF -DBUILD_CODE_COV=ON .. + cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=ON -DBUILD_ML=OFF -DBUILD_CODE_COV=OFF .. ninja - name: Run unit tests run: | cd build + ./unit_tests -r OMP_NUM_THREADS=1 ./unit_tests -r junit > unit_tests_report.xml - name: Code coverage run: | + cd build + cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -DBUILD_ML=OFF -DBUILD_CODE_COV=ON .. cpp-coveralls -r . -b "build/" -i "src/" -i "include/" --exclude "ext/" --gcov-options "\-lp" --verbose From 63f57869354cfdb41eb278e728b9085c2a756ec8 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 12 Feb 2024 16:56:10 -0500 Subject: [PATCH 080/155] small fix --- .github/workflows/c-cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index e513b827..7ecd2378 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -28,7 +28,7 @@ jobs: - name: Run unit tests run: | cd build - ./unit_tests -r + ./unit_tests OMP_NUM_THREADS=1 ./unit_tests -r junit > unit_tests_report.xml - name: Code coverage From b213715f87ddd5230503d13cc1420cbc01fdd2e9 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 12 Feb 2024 17:03:16 -0500 Subject: [PATCH 081/155] small fix --- tests/input/validation_tests/output/validate_logger_reference | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/input/validation_tests/output/validate_logger_reference b/tests/input/validation_tests/output/validate_logger_reference index 4dd94349..905c56c7 100644 --- a/tests/input/validation_tests/output/validate_logger_reference +++ b/tests/input/validation_tests/output/validate_logger_reference @@ -6,7 +6,7 @@ 2024-02-07 09:35:33.189211 | | ...sort cells... 2024-02-07 09:35:33.189254 | | ...connect cells to nodes... 2024-02-07 09:35:33.189427 | | ...determine neighbors of cells... -2024-02-07 09:35:33.194739 | | Save mesh connectivity to file /mnt/tests/input/mesh_files/linesource.con +2024-02-07 09:35:33.194739 | | Save mesh connectivity to file /__w/KiT-RT/KiT-RT/tests/input/mesh_files/linesource.con 2024-02-07 09:35:33.196688 | | Compute boundary... 2024-02-07 09:35:33.197246 | | Smallest characteristic length of a grid cell in this mesh: 0.104859 2024-02-07 09:35:33.197254 | | Corresponding maximal time-step: 0.073401 From 22b3f8581ec98bb39c704e93dcc11ee5b3805016 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 12 Feb 2024 17:10:40 -0500 Subject: [PATCH 082/155] revert changes to worklow --- .github/workflows/c-cpp.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 7ecd2378..b24e264a 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -22,17 +22,15 @@ jobs: run: | git submodule update --init --recursive mkdir build && cd build - cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=ON -DBUILD_ML=OFF -DBUILD_CODE_COV=OFF .. + cmake -G Ninja -DCMAKE_BUILD_TYPE=DEBUG -DBUILD_TESTING=ON -DBUILD_ML=OFF -DBUILD_CODE_COV=ON .. ninja - name: Run unit tests run: | cd build - ./unit_tests OMP_NUM_THREADS=1 ./unit_tests -r junit > unit_tests_report.xml - name: Code coverage run: | cd build - cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -DBUILD_ML=OFF -DBUILD_CODE_COV=ON .. cpp-coveralls -r . -b "build/" -i "src/" -i "include/" --exclude "ext/" --gcov-options "\-lp" --verbose From 31b96cb7870994fb13ff3ee3bac1df02c108b54c Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 12 Feb 2024 17:49:06 -0500 Subject: [PATCH 083/155] revert change in worklof yaml --- .github/workflows/c-cpp.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index b24e264a..c7c66e71 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -22,7 +22,7 @@ jobs: run: | git submodule update --init --recursive mkdir build && cd build - cmake -G Ninja -DCMAKE_BUILD_TYPE=DEBUG -DBUILD_TESTING=ON -DBUILD_ML=OFF -DBUILD_CODE_COV=ON .. + cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -DBUILD_ML=OFF -DBUILD_CODE_COV=ON .. ninja - name: Run unit tests @@ -32,5 +32,4 @@ jobs: - name: Code coverage run: | - cd build - cpp-coveralls -r . -b "build/" -i "src/" -i "include/" --exclude "ext/" --gcov-options "\-lp" --verbose + cpp-coveralls -r . -b "build/" -i "src/" -i "include/" --exclude "ext/" --gcov-options "\-lp" --verbose \ No newline at end of file From 3a64141eb6a07b023eadee3b5371fc7ead95c3be Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 13 Feb 2024 10:42:39 -0500 Subject: [PATCH 084/155] fix csv output formatting --- include/toolboxes/textprocessingtoolbox.hpp | 22 ++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/include/toolboxes/textprocessingtoolbox.hpp b/include/toolboxes/textprocessingtoolbox.hpp index 35ea5967..12185728 100644 --- a/include/toolboxes/textprocessingtoolbox.hpp +++ b/include/toolboxes/textprocessingtoolbox.hpp @@ -126,7 +126,7 @@ inline bool StringEndsWith( std::string const& value, std::string const& ending return std::equal( ending.rbegin(), ending.rend(), value.rbegin() ); } -inline std::string DoubleToScientificNotation( double value ) { +inline std::string DoubleToScientificNotation2( double value ) { // Using std::ostringstream to format the double in scientific notation std::ostringstream oss; oss << std::scientific << std::setprecision( 4 ) << value; @@ -147,6 +147,26 @@ inline std::string DoubleToScientificNotation( double value ) { return scientificNotation; } +inline std::string DoubleToScientificNotation( double value ) { + // Using std::ostringstream to format the double in scientific notation + std::ostringstream oss; + oss << std::scientific << std::setprecision( 4 ) << value; + + // Retrieve the string from the stream + std::string scientificNotation = oss.str(); + + // Replace 'e' with 'E' for scientific notation alignment with Python + size_t e_pos = scientificNotation.find( 'e' ); + if( e_pos != std::string::npos ) { + scientificNotation[e_pos] = 'E'; + } + + // Remove unnecessary trailing decimal point + scientificNotation = std::regex_replace( scientificNotation, std::regex( "\\.0+$" ), "" ); + + return scientificNotation; +} + } // namespace TextProcessingToolbox #endif // TEXTPROCESSINGTOOLBOX_H From 870bd319a90e034028ebc9c6f40d0b33dd086354 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 13 Feb 2024 13:13:29 -0500 Subject: [PATCH 085/155] fix output validation test for new formatting --- .../validation_tests/output/validate_logger_csv_reference | 6 +++--- .../input/validation_tests/output/validate_logger_reference | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/input/validation_tests/output/validate_logger_csv_reference b/tests/input/validation_tests/output/validate_logger_csv_reference index 4a93c21b..2c11f3e4 100644 --- a/tests/input/validation_tests/output/validate_logger_csv_reference +++ b/tests/input/validation_tests/output/validate_logger_csv_reference @@ -1,3 +1,3 @@ -2024-02-06 16:29:23.320667 ,Iter,Mass,RMS_flux,VTK_out,CSV_out -2024-02-06 16:29:23.323511 ,0.000000,1.4451e-01,4.0368e+,0.0000e+,1.0000e+ -2024-02-06 16:29:23.326108 ,1.000000,1.4451e-01,2.0608e+,1.0000e+,1.0000e+ +2024-02-13 13:11:25.839143 ,Iter,Mass,RMS_flux,VTK_out,CSV_out +2024-02-13 13:11:25.841971 ,0.000000,1.4451E-01,4.0368E+00,0.0000E+00,1.0000E+00 +2024-02-13 13:11:25.844514 ,1.000000,1.4451E-01,2.0608E+00,1.0000E+00,1.0000E+00 diff --git a/tests/input/validation_tests/output/validate_logger_reference b/tests/input/validation_tests/output/validate_logger_reference index 905c56c7..34f6e369 100644 --- a/tests/input/validation_tests/output/validate_logger_reference +++ b/tests/input/validation_tests/output/validate_logger_reference @@ -17,7 +17,7 @@ 2024-02-07 09:35:33.199083 | --------------------------------------------------------------------------------------- 2024-02-07 09:35:33.199086 | | Iter | Mass | RMS flux | VTK out | CSV out | 2024-02-07 09:35:33.199090 | --------------------------------------------------------------------------------------- -2024-02-07 09:35:33.201771 | | 0 | 1.4451e-01 | 4.0368e | no | yes | -2024-02-07 09:35:33.204306 | | 1 | 1.4451e-01 | 2.0608e | yes | yes | +2024-02-13 13:11:25.841863 | | 0 | 1.4451E-01 | 4.0368E00 | no | yes | +2024-02-13 13:11:25.844409 | | 1 | 1.4451E-01 | 2.0608E00 | yes | yes | 2024-02-07 09:35:33.205929 | -------------------------------------------------------------- 2024-02-07 09:35:33.205948 | --------------------------- Solver Finished ---------------------------- From ae50221ce06e6c6e1ac3d464781378379374e2ce Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 14 Feb 2024 18:10:05 -0500 Subject: [PATCH 086/155] changed license --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 1183cd3a..9af97265 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2020 Karlsruhe Institute of Technology - Steinbuch Centre for Computing +Copyright 2024 Steffen Schotthoefer, Pia Stammer, Jonas Kusch. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: From 6bbe3a18a75342c606b12462223089f1da8aa65e Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 14 Feb 2024 18:12:35 -0500 Subject: [PATCH 087/155] fix --- LICENSE | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 9af97265..7c930e27 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,8 @@ Copyright 2024 Steffen Schotthoefer, Pia Stammer, Jonas Kusch. -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including the rights to use, copy, modify, merge, publish, the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +It is prohibited to sell copies of the software or use the software in any commerical context. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. From 822492f5fc9a8c212e9f221c7142def4ad465256 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Fri, 16 Feb 2024 14:04:08 -0500 Subject: [PATCH 088/155] upped writeout precision --- src/common/io.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/common/io.cpp b/src/common/io.cpp index 61224c62..1c21b568 100644 --- a/src/common/io.cpp +++ b/src/common/io.cpp @@ -345,7 +345,7 @@ void LoadConnectivityFromFile( const std::string inputFile, for( unsigned j = 0; j < correctedNodesPerCell; ++j ) { std::getline( iss, line, ',' ); std::istringstream converter( line ); - converter >> std::fixed >> setprecision( 12 ) >> cellNeighbors[i][j]; + converter >> std::fixed >> setprecision( 15 ) >> cellNeighbors[i][j]; } // Load cellInterfaceMidPoints @@ -355,8 +355,8 @@ void LoadConnectivityFromFile( const std::string inputFile, for( unsigned k = 0; k < nDim; ++k ) { std::getline( iss, line, ',' ); std::istringstream converter( line ); - converter >> std::fixed >> setprecision( 12 ) >> cellInterfaceMidPoints[i][j][k]; // Replace with appropriate member of Vector - // std::cout << std::fixed << setprecision( 12 ) << cellInterfaceMidPoints[i][j][k] << std::endl; + converter >> std::fixed >> setprecision( 15 ) >> cellInterfaceMidPoints[i][j][k]; // Replace with appropriate member of Vector + // std::cout << std::fixed << setprecision( 15 ) << cellInterfaceMidPoints[i][j][k] << std::endl; } } // Load cellNormals @@ -366,7 +366,7 @@ void LoadConnectivityFromFile( const std::string inputFile, for( unsigned k = 0; k < nDim; ++k ) { std::getline( iss, line, ',' ); std::istringstream converter( line ); - converter >> std::fixed >> setprecision( 12 ) >> cellNormals[i][j][k]; // Replace with appropriate member of Vector + converter >> std::fixed >> setprecision( 15 ) >> cellNormals[i][j][k]; // Replace with appropriate member of Vector } } // Load cellBoundaryTypes @@ -393,7 +393,7 @@ void WriteConnecitivityToFile( const std::string outputFile, // cellBoundaryTypes (1 element), (tranlated from BOUNDARY_TYPE to unsigned) std::ofstream outFile( outputFile ); - outFile << std::fixed << setprecision( 12 ); + outFile << std::fixed << setprecision( 15 ); // const std::size_t bufferSize = 10000; // Adjust as needed // outFile.rdbuf()->pubsetbuf( 0, bufferSize ); if( outFile.is_open() ) { From f745eed0f646dee6e496d63e77c2de40fb3b0463 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Fri, 16 Feb 2024 14:05:58 -0500 Subject: [PATCH 089/155] upped output precifion for logger --- include/toolboxes/textprocessingtoolbox.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/toolboxes/textprocessingtoolbox.hpp b/include/toolboxes/textprocessingtoolbox.hpp index 12185728..2f5c09fa 100644 --- a/include/toolboxes/textprocessingtoolbox.hpp +++ b/include/toolboxes/textprocessingtoolbox.hpp @@ -150,7 +150,7 @@ inline std::string DoubleToScientificNotation2( double value ) { inline std::string DoubleToScientificNotation( double value ) { // Using std::ostringstream to format the double in scientific notation std::ostringstream oss; - oss << std::scientific << std::setprecision( 4 ) << value; + oss << std::scientific << std::setprecision( 6 ) << value; // Retrieve the string from the stream std::string scientificNotation = oss.str(); From 709e92363de894a6693a982c2f825666d62e2dbf Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 26 Feb 2024 15:33:45 -0500 Subject: [PATCH 090/155] change ?? --- include/common/globalconstants.hpp | 2 ++ include/solvers/solverbase.hpp | 1 + src/common/config.cpp | 8 ++++++-- src/solvers/solverbase.cpp | 17 ++++++++++++++++- 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/include/common/globalconstants.hpp b/include/common/globalconstants.hpp index d4839a5b..807af135 100644 --- a/include/common/globalconstants.hpp +++ b/include/common/globalconstants.hpp @@ -170,6 +170,7 @@ inline std::map VolOutput_Map{ // Scalar output enum SCALAR_OUTPUT { + WALL_TIME, ITER, MASS, RMS_FLUX, @@ -190,6 +191,7 @@ enum SCALAR_OUTPUT { }; inline std::map ScalarOutput_Map{ { "ITER", ITER }, + { "WALL_TIME", WALL_TIME }, { "MASS", MASS }, { "RMS_FLUX", RMS_FLUX }, { "VTK_OUTPUT", VTK_OUTPUT }, diff --git a/include/solvers/solverbase.hpp b/include/solvers/solverbase.hpp index 5c6c6494..47d53861 100644 --- a/include/solvers/solverbase.hpp +++ b/include/solvers/solverbase.hpp @@ -20,6 +20,7 @@ class Reconstructor; class SolverBase { protected: + double _currTime; /*!< @brief wall-time after current iteration */ NumericalFluxBase* _g; /*!< @brief class for numerical flux */ Config* _settings; /*!< @brief config class for global information */ ProblemBase* _problem; /*!< @brief problem class for initial conditions */ diff --git a/src/common/config.cpp b/src/common/config.cpp index e175ec3d..bd7823d3 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -736,6 +736,7 @@ void Config::SetPostprocessing() { switch( _problemName ) { case PROBLEM_Lattice: legalOutputs = { ITER, + WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, @@ -760,6 +761,7 @@ void Config::SetPostprocessing() { break; case PROBLEM_SymmetricHohlraum: legalOutputs = { ITER, + WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, @@ -788,7 +790,7 @@ void Config::SetPostprocessing() { } break; default: - legalOutputs = { ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW }; + legalOutputs = { ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW }; it = std::find( legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput] ); if( it == legalOutputs.end() ) { @@ -862,6 +864,7 @@ void Config::SetPostprocessing() { switch( _problemName ) { case PROBLEM_Lattice: legalOutputs = { ITER, + WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, @@ -886,6 +889,7 @@ void Config::SetPostprocessing() { break; case PROBLEM_SymmetricHohlraum: legalOutputs = { ITER, + WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, @@ -915,7 +919,7 @@ void Config::SetPostprocessing() { } break; default: - legalOutputs = { ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW }; + legalOutputs = { ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW }; it = std::find( legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput] ); if( it == legalOutputs.end() ) { diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index dca2a80e..c37e19b9 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -14,10 +14,12 @@ #include "solvers/pnsolver.hpp" #include "solvers/snsolver.hpp" #include "toolboxes/textprocessingtoolbox.hpp" +#include #include #include SolverBase::SolverBase( Config* settings ) { + _currTime = 0.0; _settings = settings; _mesh = LoadSU2MeshFromFile( settings ); @@ -128,6 +130,8 @@ void SolverBase::Solve() { // Create Backup solution for Runge Kutta VectorVector solRK0 = _sol; + auto start = std::chrono::high_resolution_clock::now(); // Start timing + std::chrono::duration duration; // Loop over energies (pseudo-time of continuous slowing down approach) for( unsigned iter = 0; iter < _nIter; iter++ ) { if( rkStages == 2 ) solRK0 = _sol; @@ -148,6 +152,10 @@ void SolverBase::Solve() { // --- Iter Postprocessing --- IterPostprocessing( iter ); + // --- Wall time measurement + duration = std::chrono::high_resolution_clock::now() - start; + _currTime = std::chrono::duration_cast>( duration ).count(); + // --- Runge Kutta Timestep --- if( rkStages == 2 ) RKUpdate( solRK0, _sol ); @@ -237,6 +245,7 @@ void SolverBase::PrepareScreenOutput() { switch( _settings->GetScreenOutput()[idx_field] ) { case MASS: _screenOutputFieldNames[idx_field] = "Mass"; break; case ITER: _screenOutputFieldNames[idx_field] = "Iter"; break; + case WALL_TIME: _screenOutputFieldNames[idx_field] = "Wall time [s]"; break; case RMS_FLUX: _screenOutputFieldNames[idx_field] = "RMS flux"; break; case VTK_OUTPUT: _screenOutputFieldNames[idx_field] = "VTK out"; break; case CSV_OUTPUT: _screenOutputFieldNames[idx_field] = "CSV out"; break; @@ -275,6 +284,7 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { switch( _settings->GetScreenOutput()[idx_field] ) { case MASS: _screenOutputFields[idx_field] = _problem->GetMass(); break; case ITER: _screenOutputFields[idx_field] = idx_iter; break; + case WALL_TIME: _screenOutputFields[idx_field] = _currTime; break; case RMS_FLUX: _screenOutputFields[idx_field] = _problem->GetChangeRateFlux(); break; case VTK_OUTPUT: _screenOutputFields[idx_field] = 0; @@ -322,6 +332,7 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { switch( _settings->GetHistoryOutput()[idx_field] ) { case MASS: _historyOutputFields[idx_field] = _problem->GetMass(); break; case ITER: _historyOutputFields[idx_field] = idx_iter; break; + case WALL_TIME: _historyOutputFields[idx_field] = _currTime; break; case RMS_FLUX: _historyOutputFields[idx_field] = _problem->GetChangeRateFlux(); break; case VTK_OUTPUT: _historyOutputFields[idx_field] = 0; @@ -385,6 +396,7 @@ void SolverBase::PrintScreenOutput( unsigned idx_iter ) { std::vector integerFields = { ITER }; std::vector scientificFields = { RMS_FLUX, MASS, + WALL_TIME, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, @@ -394,7 +406,9 @@ void SolverBase::PrintScreenOutput( unsigned idx_iter ) { TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, - PROBE_MOMENT_TIME_TRACE }; + PROBE_MOMENT_TIME_TRACE, + VAR_ABSORPTION_GREEN, + VAR_ABSORPTION_GREEN_LINE }; std::vector booleanFields = { VTK_OUTPUT, CSV_OUTPUT }; if( !( integerFields.end() == std::find( integerFields.begin(), integerFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { @@ -442,6 +456,7 @@ void SolverBase::PrepareHistoryOutput() { switch( _settings->GetHistoryOutput()[idx_field] ) { case MASS: _historyOutputFieldNames[idx_field] = "Mass"; break; case ITER: _historyOutputFieldNames[idx_field] = "Iter"; break; + case WALL_TIME: _historyOutputFieldNames[idx_field] = "Wall_time_[s]"; break; case RMS_FLUX: _historyOutputFieldNames[idx_field] = "RMS_flux"; break; case VTK_OUTPUT: _historyOutputFieldNames[idx_field] = "VTK_out"; break; case CSV_OUTPUT: _historyOutputFieldNames[idx_field] = "CSV_out"; break; From fd0d323dbb04fad61ec9ca7db9ce6f5989d6759a Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 26 Feb 2024 15:33:57 -0500 Subject: [PATCH 091/155] loop unrolling sn solver --- src/solvers/snsolver.cpp | 107 ++++++++++++++++++++++++--------------- 1 file changed, 65 insertions(+), 42 deletions(-) diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index b61b61da..c6bb3baa 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -108,52 +108,75 @@ void SNSolver::FluxUpdatePseudo1D() { } void SNSolver::FluxUpdatePseudo2D() { - // Loop over all spatial cells + if( _reconsOrder == 1 ) { + // Loop over all spatial cells #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - double solL; - double solR; - // Dirichlet cells stay at IC, farfield assumption - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; - // Loop over all ordinates - for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { - // Reset temporary variable - _solNew[idx_cell][idx_quad] = 0.0; - // Loop over all neighbor cells (edges) of cell j and compute numerical - // fluxes - for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { - // store flux contribution on psiNew_sigmaS to save memory - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { - _solNew[idx_cell][idx_quad] += _g->Flux( _quadPoints[idx_quad], - _sol[idx_cell][idx_quad], - _problem->GetGhostCellValue( idx_cell, _sol[idx_cell] )[idx_quad], - _normals[idx_cell][idx_nbr] ); + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + double solL; + double solR; + // Dirichlet cells stay at IC, farfield assumption + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + // Loop over all ordinates + for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { + // Reset temporary variable + _solNew[idx_cell][idx_quad] = 0.0; + // Loop over all neighbor cells (edges) of cell j and compute numerical + // fluxes + for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { + // store flux contribution on psiNew_sigmaS to save memory + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { + _solNew[idx_cell][idx_quad] += _g->Flux( _quadPoints[idx_quad], + _sol[idx_cell][idx_quad], + _problem->GetGhostCellValue( idx_cell, _sol[idx_cell] )[idx_quad], + _normals[idx_cell][idx_nbr] ); + } + else { + unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell + // first order solver + _solNew[idx_cell][idx_quad] += + _g->Flux( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _sol[nbr_glob][idx_quad], _normals[idx_cell][idx_nbr] ); + } } - else { - unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell + } + } + } + else if( _reconsOrder == 2 ) { + // Loop over all spatial cells +#pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + double solL; + double solR; + // Dirichlet cells stay at IC, farfield assumption + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; + // Loop over all ordinates + for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { + // Reset temporary variable + _solNew[idx_cell][idx_quad] = 0.0; + // Loop over all neighbor cells (edges) of cell j and compute numerical + // fluxes + for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { + // store flux contribution on psiNew_sigmaS to save memory + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { + _solNew[idx_cell][idx_quad] += _g->Flux( _quadPoints[idx_quad], + _sol[idx_cell][idx_quad], + _problem->GetGhostCellValue( idx_cell, _sol[idx_cell] )[idx_quad], + _normals[idx_cell][idx_nbr] ); + } + else { + unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell - switch( _reconsOrder ) { - // first order solver - case 1: - _solNew[idx_cell][idx_quad] += - _g->Flux( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _sol[nbr_glob][idx_quad], _normals[idx_cell][idx_nbr] ); - break; - // second order solver - case 2: - // left status of interface - solL = _sol[idx_cell][idx_quad] + - _limiter[idx_cell][idx_quad] * - ( _solDx[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + - _solDy[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); - solR = _sol[nbr_glob][idx_quad] + - _limiter[nbr_glob][idx_quad] * - ( _solDx[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + - _solDy[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); + // left status of interface + solL = _sol[idx_cell][idx_quad] + + _limiter[idx_cell][idx_quad] * + ( _solDx[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + + _solDy[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); + solR = _sol[nbr_glob][idx_quad] + + _limiter[nbr_glob][idx_quad] * + ( _solDx[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + + _solDy[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); - // flux evaluation - _solNew[idx_cell][idx_quad] += _g->Flux( _quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr] ); - break; - default: ErrorMessages::Error( "Reconstruction order not supported.", CURRENT_FUNCTION ); break; + // flux evaluation + _solNew[idx_cell][idx_quad] += _g->Flux( _quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr] ); } } } From dfd5c24673cfc0098306ff51ae64d9be3ba37efb Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 26 Feb 2024 22:46:12 -0500 Subject: [PATCH 092/155] added hpc examples sym_hohlraum --- .../sym_hohlraum/mesh/sym_hohlraum.con | 11869 ++++++++++++++++ .../sym_hohlraum/mesh/sym_hohlraum.geo | 406 + src/problems/problembase.cpp | 3 + src/problems/symmetrichohlraum.cpp | 8 +- 4 files changed, 12282 insertions(+), 4 deletions(-) create mode 100644 examples_hpc/sym_hohlraum/mesh/sym_hohlraum.con create mode 100644 examples_hpc/sym_hohlraum/mesh/sym_hohlraum.geo diff --git a/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.con b/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.con new file mode 100644 index 00000000..b713134c --- /dev/null +++ b/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.con @@ -0,0 +1,11869 @@ +1,6,76,1662,-0.606249999999978,0.608333333333283,-0.612499999999957,0.604166666666641,-0.606249999999978,0.600000000000000,-0.600000000000000,0.604166666666641,-0.000000000000000,0.012499999999957,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.012499999999957,0.008333333333283,0.000000000000000,2 +0,2,7,1663,-0.606249999999978,0.608333333333283,-0.606249999999978,0.616666666666674,-0.612499999999957,0.612499999999978,-0.600000000000000,0.612499999999978,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,-0.008333333333391,-0.000000000000000,0.008333333333391,-0.000000000000000,2 +1,3,8,1664,-0.606249999999978,0.616666666666674,-0.606249999999978,0.625000000000043,-0.612499999999957,0.620833333333359,-0.600000000000000,0.620833333333359,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,-0.008333333333369,0.000000000000000,0.008333333333369,-0.000000000000000,2 +2,4,9,1665,-0.606249999999978,0.625000000000043,-0.606249999999978,0.633333333333326,-0.612499999999957,0.629166666666685,-0.600000000000000,0.629166666666685,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,-0.008333333333283,-0.000000000000000,0.008333333333283,-0.000000000000000,2 +3,5,10,1666,-0.606249999999978,0.633333333333326,-0.606249999999978,0.641666666666717,-0.612499999999957,0.637500000000022,-0.600000000000000,0.637500000000022,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,-0.008333333333391,0.000000000000000,0.008333333333391,-0.000000000000000,2 +4,11,1667,11869,-0.606249999999978,0.641666666666717,-0.612499999999957,0.645833333333359,-0.600000000000000,0.645833333333359,-0.606249999999978,0.650000000000000,0.000000000000000,-0.012499999999956,-0.008333333333283,-0.000000000000000,0.008333333333283,-0.000000000000000,-0.000000000000000,0.012499999999957,1 +0,7,12,77,-0.612499999999957,0.604166666666641,-0.618749999999957,0.608333333333283,-0.624999999999956,0.604166666666641,-0.618749999999957,0.600000000000000,0.008333333333283,0.000000000000000,-0.000000000000000,0.012500000000000,-0.008333333333283,0.000000000000000,0.000000000000000,-0.012500000000000,2 +1,6,8,13,-0.612499999999957,0.612499999999978,-0.618749999999957,0.608333333333283,-0.618749999999957,0.616666666666674,-0.624999999999956,0.612499999999978,0.008333333333391,0.000000000000000,0.000000000000000,-0.012500000000000,-0.000000000000000,0.012500000000000,-0.008333333333391,-0.000000000000000,2 +2,7,9,14,-0.612499999999957,0.620833333333359,-0.618749999999957,0.616666666666674,-0.618749999999957,0.625000000000043,-0.624999999999956,0.620833333333359,0.008333333333369,-0.000000000000000,0.000000000000000,-0.012500000000000,-0.000000000000000,0.012500000000000,-0.008333333333369,-0.000000000000000,2 +3,8,10,15,-0.612499999999957,0.629166666666685,-0.618749999999957,0.625000000000043,-0.618749999999957,0.633333333333326,-0.624999999999957,0.629166666666685,0.008333333333283,0.000000000000000,0.000000000000000,-0.012500000000000,-0.000000000000000,0.012500000000000,-0.008333333333283,-0.000000000000000,2 +4,9,11,16,-0.612499999999957,0.637500000000022,-0.618749999999957,0.633333333333326,-0.618749999999957,0.641666666666717,-0.624999999999957,0.637500000000022,0.008333333333391,-0.000000000000000,0.000000000000000,-0.012500000000000,-0.000000000000000,0.012500000000000,-0.008333333333391,-0.000000000000000,2 +5,10,17,11869,-0.612499999999957,0.645833333333359,-0.618749999999957,0.641666666666717,-0.624999999999957,0.645833333333359,-0.618749999999957,0.650000000000000,0.008333333333283,0.000000000000000,0.000000000000000,-0.012500000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,0.012500000000000,1 +6,13,18,78,-0.624999999999956,0.604166666666641,-0.631250000000000,0.608333333333283,-0.637500000000043,0.604166666666641,-0.631250000000000,0.600000000000000,0.008333333333283,-0.000000000000000,-0.000000000000000,0.012500000000087,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.012500000000087,2 +7,12,14,19,-0.624999999999956,0.612499999999978,-0.631250000000000,0.608333333333283,-0.631250000000000,0.616666666666674,-0.637500000000043,0.612499999999978,0.008333333333391,0.000000000000000,0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,-0.008333333333391,-0.000000000000000,2 +8,13,15,20,-0.624999999999956,0.620833333333359,-0.631250000000000,0.616666666666674,-0.631250000000000,0.625000000000043,-0.637500000000043,0.620833333333359,0.008333333333369,0.000000000000000,-0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,-0.008333333333369,-0.000000000000000,2 +9,14,16,21,-0.624999999999957,0.629166666666685,-0.631250000000000,0.625000000000043,-0.631250000000000,0.633333333333326,-0.637500000000043,0.629166666666685,0.008333333333283,0.000000000000000,0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,-0.008333333333283,0.000000000000000,2 +10,15,17,22,-0.624999999999957,0.637500000000022,-0.631250000000000,0.633333333333326,-0.631250000000000,0.641666666666717,-0.637500000000043,0.637500000000022,0.008333333333391,0.000000000000000,0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,-0.008333333333391,-0.000000000000000,2 +11,16,23,11869,-0.624999999999957,0.645833333333359,-0.631250000000000,0.641666666666717,-0.637500000000043,0.645833333333359,-0.631250000000000,0.650000000000000,0.008333333333283,-0.000000000000000,0.000000000000000,-0.012500000000087,-0.008333333333283,0.000000000000000,-0.000000000000000,0.012500000000087,1 +12,19,79,11869,-0.637500000000043,0.604166666666641,-0.643750000000022,0.608333333333283,-0.643750000000022,0.600000000000000,-0.650000000000000,0.604166666666641,0.008333333333283,0.000000000000000,0.000000000000000,0.012499999999957,-0.000000000000000,-0.012499999999957,-0.008333333333283,-0.000000000000000,1 +13,18,20,11869,-0.637500000000043,0.612499999999978,-0.643750000000022,0.608333333333283,-0.643750000000022,0.616666666666674,-0.650000000000000,0.612499999999978,0.008333333333391,0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,-0.008333333333391,0.000000000000000,1 +14,19,21,11869,-0.637500000000043,0.620833333333359,-0.643750000000022,0.616666666666674,-0.643750000000022,0.625000000000043,-0.650000000000000,0.620833333333359,0.008333333333369,0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,-0.008333333333369,0.000000000000000,1 +15,20,22,11869,-0.637500000000043,0.629166666666685,-0.643750000000022,0.625000000000043,-0.643750000000022,0.633333333333326,-0.650000000000000,0.629166666666685,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,-0.008333333333283,0.000000000000000,1 +16,21,23,11869,-0.637500000000043,0.637500000000022,-0.643750000000022,0.633333333333326,-0.643750000000022,0.641666666666717,-0.650000000000000,0.637500000000022,0.008333333333391,0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,-0.008333333333391,0.000000000000000,1 +17,22,11869,-0.637500000000043,0.645833333333359,-0.643750000000022,0.641666666666717,-0.650000000000000,0.645833333333359,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.008333333333283,0.000000000000000,1 +25,28,312,1836,-0.612499999999957,0.407142857142845,-0.606249999999978,0.414285714285680,-0.606249999999978,0.400000000000000,-0.600000000000000,0.407142857142835,-0.014285714285691,0.000000000000000,0.000000000000022,0.012499999999956,0.000000000000000,-0.012499999999957,0.014285714285669,0.000000000000000,2 +24,26,29,313,-0.612499999999957,0.407142857142845,-0.624999999999957,0.407142857142856,-0.618749999999957,0.414285714285702,-0.618749999999957,0.400000000000000,0.014285714285691,-0.000000000000000,-0.014285714285713,-0.000000000000000,0.000000000000022,0.012500000000000,0.000000000000000,-0.012500000000000,2 +25,27,30,314,-0.624999999999957,0.407142857142856,-0.637500000000043,0.407142857142867,-0.631250000000000,0.414285714285723,-0.631250000000000,0.400000000000000,0.014285714285713,0.000000000000000,-0.014285714285734,-0.000000000000000,0.000000000000022,0.012500000000087,0.000000000000000,-0.012500000000087,2 +26,31,315,11869,-0.637500000000043,0.407142857142867,-0.643750000000022,0.414285714285745,-0.643750000000022,0.400000000000000,-0.650000000000000,0.407142857142878,0.014285714285734,0.000000000000000,0.000000000000022,0.012499999999957,-0.000000000000000,-0.012499999999957,-0.014285714285756,-0.000000000000000,1 +24,29,32,1837,-0.606249999999978,0.414285714285680,-0.612499999999957,0.421428571428552,-0.606249999999978,0.428571428571398,-0.600000000000000,0.421428571428526,-0.000000000000022,-0.012499999999956,-0.014285714285723,-0.000000000000000,0.000000000000032,0.012499999999957,0.014285714285713,0.000000000000000,2 +25,28,30,33,-0.618749999999957,0.414285714285702,-0.612499999999957,0.421428571428552,-0.624999999999957,0.421428571428579,-0.618749999999957,0.428571428571430,-0.000000000000022,-0.012500000000000,0.014285714285723,0.000000000000000,-0.014285714285733,0.000000000000000,0.000000000000032,0.012500000000000,2 +26,29,31,34,-0.631250000000000,0.414285714285723,-0.624999999999957,0.421428571428579,-0.637500000000043,0.421428571428606,-0.631250000000000,0.428571428571461,-0.000000000000022,-0.012500000000087,0.014285714285733,-0.000000000000000,-0.014285714285743,-0.000000000000000,0.000000000000032,0.012500000000087,2 +27,30,35,11869,-0.643750000000022,0.414285714285745,-0.637500000000043,0.421428571428606,-0.643750000000022,0.428571428571493,-0.650000000000000,0.421428571428633,-0.000000000000022,-0.012499999999957,0.014285714285743,0.000000000000000,0.000000000000032,0.012499999999957,-0.014285714285753,0.000000000000000,1 +28,33,36,1838,-0.606249999999978,0.428571428571398,-0.612499999999957,0.435714285714260,-0.606249999999978,0.442857142857079,-0.600000000000000,0.435714285714217,-0.000000000000032,-0.012499999999957,-0.014285714285692,-0.000000000000000,0.000000000000055,0.012499999999957,0.014285714285669,0.000000000000000,2 +29,32,34,37,-0.618749999999957,0.428571428571430,-0.612499999999957,0.435714285714260,-0.624999999999956,0.435714285714303,-0.618749999999957,0.442857142857133,-0.000000000000032,-0.012500000000000,0.014285714285692,0.000000000000000,-0.014285714285715,-0.000000000000000,0.000000000000055,0.012500000000000,2 +30,33,35,38,-0.631250000000000,0.428571428571461,-0.624999999999956,0.435714285714303,-0.637500000000043,0.435714285714346,-0.631250000000000,0.442857142857188,-0.000000000000032,-0.012500000000087,0.014285714285715,0.000000000000000,-0.014285714285738,-0.000000000000000,0.000000000000054,0.012500000000087,2 +31,34,39,11869,-0.643750000000022,0.428571428571493,-0.637500000000043,0.435714285714346,-0.643750000000022,0.442857142857243,-0.650000000000000,0.435714285714389,-0.000000000000032,-0.012499999999957,0.014285714285738,0.000000000000000,0.000000000000055,0.012499999999957,-0.014285714285761,0.000000000000000,1 +32,37,40,1839,-0.606249999999978,0.442857142857079,-0.612499999999957,0.449999999999952,-0.606249999999978,0.457142857142760,-0.600000000000000,0.449999999999886,-0.000000000000055,-0.012499999999957,-0.014285714285693,0.000000000000000,0.000000000000078,0.012499999999956,0.014285714285669,0.000000000000000,2 +33,36,38,41,-0.618749999999957,0.442857142857133,-0.612499999999957,0.449999999999952,-0.624999999999957,0.450000000000019,-0.618749999999957,0.457142857142838,-0.000000000000055,-0.012500000000000,0.014285714285693,-0.000000000000000,-0.014285714285716,-0.000000000000000,0.000000000000078,0.012500000000000,2 +34,37,39,42,-0.631250000000000,0.442857142857188,-0.624999999999957,0.450000000000019,-0.637500000000043,0.450000000000085,-0.631250000000000,0.457142857142916,-0.000000000000054,-0.012500000000087,0.014285714285716,0.000000000000000,-0.014285714285740,-0.000000000000000,0.000000000000078,0.012500000000087,2 +35,38,43,11869,-0.643750000000022,0.442857142857243,-0.637500000000043,0.450000000000085,-0.643750000000022,0.457142857142995,-0.650000000000000,0.450000000000152,-0.000000000000055,-0.012499999999957,0.014285714285740,0.000000000000000,0.000000000000078,0.012499999999957,-0.014285714285764,0.000000000000000,1 +36,41,44,1840,-0.606249999999978,0.457142857142760,-0.612499999999957,0.464285714285645,-0.606249999999978,0.471428571428441,-0.600000000000000,0.464285714285555,-0.000000000000078,-0.012499999999956,-0.014285714285692,-0.000000000000000,0.000000000000101,0.012499999999957,0.014285714285669,0.000000000000000,2 +37,40,42,45,-0.618749999999957,0.457142857142838,-0.612499999999957,0.464285714285645,-0.624999999999957,0.464285714285735,-0.618749999999957,0.471428571428542,-0.000000000000078,-0.012500000000000,0.014285714285692,0.000000000000000,-0.014285714285715,0.000000000000000,0.000000000000101,0.012500000000000,2 +38,41,43,46,-0.631250000000000,0.457142857142916,-0.624999999999957,0.464285714285735,-0.637500000000043,0.464285714285824,-0.631250000000000,0.471428571428643,-0.000000000000078,-0.012500000000087,0.014285714285715,-0.000000000000000,-0.014285714285738,-0.000000000000000,0.000000000000101,0.012500000000087,2 +39,42,47,11869,-0.643750000000022,0.457142857142995,-0.637500000000043,0.464285714285824,-0.643750000000022,0.471428571428744,-0.650000000000000,0.464285714285914,-0.000000000000078,-0.012499999999957,0.014285714285738,0.000000000000000,0.000000000000101,0.012499999999957,-0.014285714285761,0.000000000000000,1 +40,45,48,1841,-0.606249999999978,0.471428571428441,-0.612499999999957,0.478571428571336,-0.606249999999978,0.485714285714121,-0.600000000000000,0.478571428571225,-0.000000000000101,-0.012499999999957,-0.014285714285691,-0.000000000000000,0.000000000000122,0.012499999999957,0.014285714285669,0.000000000000000,2 +41,44,46,49,-0.618749999999957,0.471428571428542,-0.612499999999957,0.478571428571336,-0.624999999999957,0.478571428571448,-0.618749999999957,0.485714285714243,-0.000000000000101,-0.012500000000000,0.014285714285691,0.000000000000000,-0.014285714285712,-0.000000000000000,0.000000000000123,0.012500000000000,2 +42,45,47,50,-0.631250000000000,0.471428571428643,-0.624999999999957,0.478571428571448,-0.637500000000043,0.478571428571560,-0.631250000000000,0.485714285714365,-0.000000000000101,-0.012500000000087,0.014285714285712,0.000000000000000,-0.014285714285733,0.000000000000000,0.000000000000123,0.012500000000087,2 +43,46,51,11869,-0.643750000000022,0.471428571428744,-0.637500000000043,0.478571428571560,-0.643750000000022,0.485714285714488,-0.650000000000000,0.478571428571672,-0.000000000000101,-0.012499999999957,0.014285714285733,-0.000000000000000,0.000000000000122,0.012499999999957,-0.014285714285754,0.000000000000000,1 +44,49,52,1842,-0.606249999999978,0.485714285714121,-0.612499999999957,0.492857142857038,-0.606249999999978,0.499999999999828,-0.600000000000000,0.492857142856910,-0.000000000000122,-0.012499999999957,-0.014285714285712,-0.000000000000000,0.000000000000133,0.012499999999957,0.014285714285702,0.000000000000000,2 +45,48,50,53,-0.618749999999957,0.485714285714243,-0.612499999999957,0.492857142857038,-0.624999999999957,0.492857142857166,-0.618749999999957,0.499999999999960,-0.000000000000123,-0.012500000000000,0.014285714285712,0.000000000000000,-0.014285714285723,-0.000000000000000,0.000000000000133,0.012500000000000,2 +46,49,51,54,-0.631250000000000,0.485714285714365,-0.624999999999957,0.492857142857166,-0.637500000000043,0.492857142857293,-0.631250000000000,0.500000000000093,-0.000000000000123,-0.012500000000087,0.014285714285723,0.000000000000000,-0.014285714285733,-0.000000000000000,0.000000000000133,0.012500000000087,2 +47,50,55,11869,-0.643750000000022,0.485714285714488,-0.637500000000043,0.492857142857293,-0.643750000000022,0.500000000000226,-0.650000000000000,0.492857142857421,-0.000000000000122,-0.012499999999957,0.014285714285733,0.000000000000000,0.000000000000133,0.012499999999957,-0.014285714285744,0.000000000000000,1 +48,53,56,1843,-0.606249999999978,0.499999999999828,-0.612499999999957,0.507142857142744,-0.606249999999978,0.514285714285541,-0.600000000000000,0.507142857142625,-0.000000000000133,-0.012499999999957,-0.014285714285700,0.000000000000000,0.000000000000106,0.012499999999957,0.014285714285727,0.000000000000000,2 +49,52,54,57,-0.618749999999957,0.499999999999960,-0.612499999999957,0.507142857142744,-0.624999999999957,0.507142857142864,-0.618749999999957,0.514285714285647,-0.000000000000133,-0.012500000000000,0.014285714285700,-0.000000000000000,-0.014285714285673,-0.000000000000000,0.000000000000106,0.012500000000000,2 +50,53,55,58,-0.631250000000000,0.500000000000093,-0.624999999999957,0.507142857142864,-0.637500000000043,0.507142857142983,-0.631250000000000,0.514285714285753,-0.000000000000133,-0.012500000000087,0.014285714285673,0.000000000000000,-0.014285714285647,-0.000000000000000,0.000000000000106,0.012500000000087,2 +51,54,59,11869,-0.643750000000022,0.500000000000226,-0.637500000000043,0.507142857142983,-0.643750000000022,0.514285714285859,-0.650000000000000,0.507142857143103,-0.000000000000133,-0.012499999999957,0.014285714285647,0.000000000000000,0.000000000000106,0.012499999999957,-0.014285714285620,0.000000000000000,1 +52,57,60,1844,-0.606249999999978,0.514285714285541,-0.612499999999957,0.521428571428453,-0.606249999999978,0.528571428571279,-0.600000000000000,0.521428571428368,-0.000000000000106,-0.012499999999957,-0.014285714285718,-0.000000000000000,0.000000000000065,0.012499999999957,0.014285714285759,0.000000000000000,2 +53,56,58,61,-0.618749999999957,0.514285714285647,-0.612499999999957,0.521428571428453,-0.624999999999956,0.521428571428538,-0.618749999999957,0.528571428571344,-0.000000000000106,-0.012500000000000,0.014285714285718,0.000000000000000,-0.014285714285676,0.000000000000000,0.000000000000065,0.012500000000000,2 +54,57,59,62,-0.631250000000000,0.514285714285753,-0.624999999999956,0.521428571428538,-0.637500000000043,0.521428571428624,-0.631250000000000,0.528571428571409,-0.000000000000106,-0.012500000000087,0.014285714285676,-0.000000000000000,-0.014285714285635,-0.000000000000000,0.000000000000065,0.012500000000087,2 +55,58,63,11869,-0.643750000000022,0.514285714285859,-0.637500000000043,0.521428571428624,-0.643750000000022,0.528571428571474,-0.650000000000000,0.521428571428709,-0.000000000000106,-0.012499999999957,0.014285714285635,0.000000000000000,0.000000000000065,0.012499999999957,-0.014285714285593,0.000000000000000,1 +56,61,64,1845,-0.606249999999978,0.528571428571279,-0.612499999999957,0.535714285714178,-0.606249999999978,0.542857142857020,-0.600000000000000,0.535714285714122,-0.000000000000065,-0.012499999999957,-0.014285714285732,-0.000000000000000,0.000000000000047,0.012499999999957,0.014285714285750,0.000000000000000,2 +57,60,62,65,-0.618749999999957,0.528571428571344,-0.612499999999957,0.535714285714178,-0.624999999999956,0.535714285714233,-0.618749999999957,0.542857142857067,-0.000000000000065,-0.012500000000000,0.014285714285732,0.000000000000000,-0.014285714285714,-0.000000000000000,0.000000000000046,0.012500000000000,2 +58,61,63,66,-0.631250000000000,0.528571428571409,-0.624999999999956,0.535714285714233,-0.637500000000043,0.535714285714289,-0.631250000000000,0.542857142857113,-0.000000000000065,-0.012500000000087,0.014285714285714,0.000000000000000,-0.014285714285695,-0.000000000000000,0.000000000000046,0.012500000000087,2 +59,62,67,11869,-0.643750000000022,0.528571428571474,-0.637500000000043,0.535714285714289,-0.643750000000022,0.542857142857160,-0.650000000000000,0.535714285714345,-0.000000000000065,-0.012499999999957,0.014285714285695,0.000000000000000,0.000000000000047,0.012499999999957,-0.014285714285677,0.000000000000000,1 +60,65,68,1846,-0.606249999999978,0.542857142857020,-0.612499999999957,0.549999999999912,-0.606249999999978,0.557142857142767,-0.600000000000000,0.549999999999875,-0.000000000000047,-0.012499999999957,-0.014285714285736,0.000000000000000,0.000000000000027,0.012499999999957,0.014285714285756,0.000000000000000,2 +61,64,66,69,-0.618749999999957,0.542857142857067,-0.612499999999957,0.549999999999912,-0.624999999999957,0.549999999999949,-0.618749999999957,0.557142857142793,-0.000000000000046,-0.012500000000000,0.014285714285736,-0.000000000000000,-0.014285714285717,-0.000000000000000,0.000000000000027,0.012500000000000,2 +62,65,67,70,-0.631250000000000,0.542857142857113,-0.624999999999957,0.549999999999949,-0.637500000000043,0.549999999999985,-0.631250000000000,0.557142857142820,-0.000000000000046,-0.012500000000087,0.014285714285717,0.000000000000000,-0.014285714285697,-0.000000000000000,0.000000000000027,0.012500000000087,2 +63,66,71,11869,-0.643750000000022,0.542857142857160,-0.637500000000043,0.549999999999985,-0.643750000000022,0.557142857142847,-0.650000000000000,0.550000000000022,-0.000000000000047,-0.012499999999957,0.014285714285697,0.000000000000000,0.000000000000027,0.012499999999956,-0.014285714285677,0.000000000000000,1 +64,69,72,1847,-0.606249999999978,0.557142857142767,-0.612499999999957,0.564285714285648,-0.606249999999978,0.571428571428513,-0.600000000000000,0.564285714285631,-0.000000000000027,-0.012499999999957,-0.014285714285736,-0.000000000000000,0.000000000000007,0.012499999999957,0.014285714285756,0.000000000000000,2 +65,68,70,73,-0.618749999999957,0.557142857142793,-0.612499999999957,0.564285714285648,-0.624999999999957,0.564285714285665,-0.618749999999957,0.571428571428520,-0.000000000000027,-0.012500000000000,0.014285714285736,0.000000000000000,-0.014285714285716,-0.000000000000000,0.000000000000007,0.012500000000000,2 +66,69,71,74,-0.631250000000000,0.557142857142820,-0.624999999999957,0.564285714285665,-0.637500000000043,0.564285714285682,-0.631250000000000,0.571428571428527,-0.000000000000027,-0.012500000000087,0.014285714285716,0.000000000000000,-0.014285714285697,0.000000000000000,0.000000000000007,0.012500000000087,2 +67,70,75,11869,-0.643750000000022,0.557142857142847,-0.637500000000043,0.564285714285682,-0.643750000000022,0.571428571428534,-0.650000000000000,0.564285714285699,-0.000000000000027,-0.012499999999956,0.014285714285697,-0.000000000000000,0.000000000000007,0.012499999999957,-0.014285714285677,0.000000000000000,1 +68,73,76,1848,-0.606249999999978,0.571428571428513,-0.612499999999957,0.578571428571388,-0.606249999999978,0.585714285714261,-0.600000000000000,0.578571428571386,-0.000000000000007,-0.012499999999957,-0.014285714285744,-0.000000000000000,-0.000000000000002,0.012499999999957,0.014285714285753,0.000000000000000,2 +69,72,74,77,-0.618749999999957,0.571428571428520,-0.612499999999957,0.578571428571388,-0.624999999999957,0.578571428571391,-0.618749999999957,0.585714285714259,-0.000000000000007,-0.012500000000000,0.014285714285744,0.000000000000000,-0.014285714285735,-0.000000000000000,-0.000000000000002,0.012500000000000,2 +70,73,75,78,-0.631250000000000,0.571428571428527,-0.624999999999957,0.578571428571391,-0.637500000000043,0.578571428571393,-0.631250000000000,0.585714285714258,-0.000000000000007,-0.012500000000087,0.014285714285735,0.000000000000000,-0.014285714285726,0.000000000000000,-0.000000000000002,0.012500000000087,2 +71,74,79,11869,-0.643750000000022,0.571428571428534,-0.637500000000043,0.578571428571393,-0.643750000000022,0.585714285714256,-0.650000000000000,0.578571428571396,-0.000000000000007,-0.012499999999957,0.014285714285726,-0.000000000000000,-0.000000000000002,0.012499999999957,-0.014285714285717,0.000000000000000,1 +0,72,77,1849,-0.606249999999978,0.600000000000000,-0.606249999999978,0.585714285714261,-0.612499999999957,0.592857142857130,-0.600000000000000,0.592857142857131,-0.000000000000000,0.012499999999957,0.000000000000002,-0.012499999999957,-0.014285714285740,0.000000000000000,0.014285714285738,-0.000000000000000,2 +6,73,76,78,-0.618749999999957,0.600000000000000,-0.618749999999957,0.585714285714259,-0.612499999999957,0.592857142857130,-0.624999999999957,0.592857142857129,-0.000000000000000,0.012500000000000,0.000000000000002,-0.012500000000000,0.014285714285740,-0.000000000000000,-0.014285714285741,0.000000000000000,2 +12,74,77,79,-0.631250000000000,0.600000000000000,-0.631250000000000,0.585714285714258,-0.624999999999957,0.592857142857129,-0.637500000000043,0.592857142857128,-0.000000000000000,0.012500000000087,0.000000000000002,-0.012500000000087,0.014285714285741,-0.000000000000000,-0.014285714285743,-0.000000000000000,2 +18,75,78,11869,-0.643750000000022,0.600000000000000,-0.643750000000022,0.585714285714256,-0.637500000000043,0.592857142857128,-0.650000000000000,0.592857142857127,0.000000000000000,0.012499999999957,0.000000000000002,-0.012499999999957,0.014285714285743,0.000000000000000,-0.014285714285745,0.000000000000000,1 +81,84,368,3894,-0.612499999999957,-0.393220338983053,-0.606249999999978,-0.386440677966112,-0.606249999999978,-0.400000000000000,-0.600000000000000,-0.393220338983059,-0.013559322033894,0.000000000000000,0.000000000000013,0.012499999999957,0.000000000000000,-0.012499999999957,0.013559322033881,0.000000000000000,2 +80,82,85,369,-0.612499999999957,-0.393220338983053,-0.625000000000043,-0.393220338983047,-0.618749999999999,-0.386440677966100,-0.618750000000000,-0.400000000000000,0.013559322033894,-0.000000000000000,-0.013559322033907,0.000000000000001,0.000000000000013,0.012500000000086,-0.000000000000000,-0.012500000000087,2 +81,83,86,370,-0.625000000000043,-0.393220338983047,-0.637500000000043,-0.393220338983040,-0.631250000000043,-0.386440677966087,-0.631250000000043,-0.400000000000000,0.013559322033907,-0.000000000000001,-0.013559322033919,-0.000000000000000,0.000000000000013,0.012500000000001,-0.000000000000000,-0.012500000000000,2 +82,87,371,11869,-0.637500000000043,-0.393220338983040,-0.643750000000022,-0.386440677966074,-0.643750000000022,-0.400000000000000,-0.650000000000000,-0.393220338983034,0.013559322033919,0.000000000000000,0.000000000000013,0.012499999999957,-0.000000000000000,-0.012499999999957,-0.013559322033932,-0.000000000000000,1 +80,85,88,3895,-0.606249999999978,-0.386440677966112,-0.612499999999957,-0.379661016949165,-0.606249999999978,-0.372881355932242,-0.600000000000000,-0.379661016949189,-0.000000000000013,-0.012499999999957,-0.013559322033881,-0.000000000000000,0.000000000000034,0.012499999999957,0.013559322033860,0.000000000000000,2 +81,84,86,89,-0.618749999999999,-0.386440677966100,-0.612499999999957,-0.379661016949165,-0.625000000000041,-0.379661016949142,-0.618749999999999,-0.372881355932207,-0.000000000000013,-0.012500000000086,0.013559322033881,0.000000000000000,-0.013559322033903,0.000000000000001,0.000000000000034,0.012500000000084,2 +82,85,87,90,-0.631250000000043,-0.386440677966087,-0.625000000000041,-0.379661016949142,-0.637500000000043,-0.379661016949118,-0.631250000000042,-0.372881355932173,-0.000000000000013,-0.012500000000001,0.013559322033903,-0.000000000000001,-0.013559322033925,0.000000000000000,0.000000000000034,0.012500000000003,2 +83,86,91,11869,-0.643750000000022,-0.386440677966074,-0.637500000000043,-0.379661016949118,-0.643750000000022,-0.372881355932139,-0.650000000000000,-0.379661016949095,-0.000000000000013,-0.012499999999957,0.013559322033925,-0.000000000000000,0.000000000000034,0.012499999999957,-0.013559322033946,0.000000000000000,1 +84,89,92,3896,-0.606249999999978,-0.372881355932242,-0.612499999999957,-0.366101694915287,-0.606249999999978,-0.359322033898375,-0.600000000000000,-0.366101694915329,-0.000000000000034,-0.012499999999957,-0.013559322033874,-0.000000000000000,0.000000000000049,0.012499999999957,0.013559322033860,0.000000000000000,2 +85,88,90,93,-0.618749999999999,-0.372881355932207,-0.612499999999957,-0.366101694915287,-0.625000000000040,-0.366101694915246,-0.618749999999998,-0.359322033898326,-0.000000000000034,-0.012500000000084,0.013559322033874,0.000000000000000,-0.013559322033889,0.000000000000002,0.000000000000049,0.012500000000082,2 +86,89,91,94,-0.631250000000042,-0.372881355932173,-0.625000000000040,-0.366101694915246,-0.637500000000043,-0.366101694915204,-0.631250000000041,-0.359322033898277,-0.000000000000034,-0.012500000000003,0.013559322033889,-0.000000000000002,-0.013559322033903,-0.000000000000000,0.000000000000049,0.012500000000004,2 +87,90,95,11869,-0.643750000000022,-0.372881355932139,-0.637500000000043,-0.366101694915204,-0.643750000000022,-0.359322033898228,-0.650000000000000,-0.366101694915163,-0.000000000000034,-0.012499999999957,0.013559322033903,0.000000000000000,0.000000000000049,0.012499999999957,-0.013559322033918,0.000000000000000,1 +88,93,96,3897,-0.606249999999978,-0.359322033898375,-0.612499999999957,-0.352542372881409,-0.606249999999978,-0.345762711864503,-0.600000000000000,-0.352542372881469,-0.000000000000049,-0.012499999999957,-0.013559322033883,0.000000000000000,0.000000000000072,0.012499999999957,0.013559322033860,0.000000000000000,2 +89,92,94,97,-0.618749999999998,-0.359322033898326,-0.612499999999957,-0.352542372881409,-0.625000000000038,-0.352542372881348,-0.618749999999997,-0.345762711864431,-0.000000000000049,-0.012500000000082,0.013559322033883,-0.000000000000000,-0.013559322033907,0.000000000000001,0.000000000000072,0.012500000000081,2 +90,93,95,98,-0.631250000000041,-0.359322033898277,-0.625000000000038,-0.352542372881348,-0.637500000000043,-0.352542372881287,-0.631250000000041,-0.345762711864358,-0.000000000000049,-0.012500000000004,0.013559322033907,-0.000000000000001,-0.013559322033930,0.000000000000000,0.000000000000073,0.012500000000006,2 +91,94,99,11869,-0.643750000000022,-0.359322033898228,-0.637500000000043,-0.352542372881287,-0.643750000000022,-0.345762711864286,-0.650000000000000,-0.352542372881227,-0.000000000000049,-0.012499999999957,0.013559322033930,-0.000000000000000,0.000000000000072,0.012499999999957,-0.013559322033954,0.000000000000000,1 +92,97,100,3898,-0.606249999999978,-0.345762711864503,-0.612499999999957,-0.338983050847527,-0.606249999999978,-0.332203389830629,-0.600000000000000,-0.338983050847605,-0.000000000000072,-0.012499999999957,-0.013559322033880,-0.000000000000000,0.000000000000083,0.012499999999957,0.013559322033869,0.000000000000000,2 +93,96,98,101,-0.618749999999997,-0.345762711864431,-0.612499999999957,-0.338983050847527,-0.625000000000037,-0.338983050847449,-0.618749999999996,-0.332203389830545,-0.000000000000072,-0.012500000000081,0.013559322033880,0.000000000000000,-0.013559322033892,0.000000000000002,0.000000000000084,0.012500000000079,2 +94,97,99,102,-0.631250000000041,-0.345762711864358,-0.625000000000037,-0.338983050847449,-0.637500000000043,-0.338983050847371,-0.631250000000040,-0.332203389830461,-0.000000000000073,-0.012500000000006,0.013559322033892,-0.000000000000002,-0.013559322033902,-0.000000000000000,0.000000000000083,0.012500000000007,2 +95,98,103,11869,-0.643750000000022,-0.345762711864286,-0.637500000000043,-0.338983050847371,-0.643750000000022,-0.332203389830378,-0.650000000000000,-0.338983050847293,-0.000000000000072,-0.012499999999957,0.013559322033902,0.000000000000000,0.000000000000084,0.012499999999957,-0.013559322033914,0.000000000000000,1 +96,101,104,3899,-0.606249999999978,-0.332203389830629,-0.612499999999957,-0.325423728813637,-0.606249999999978,-0.318644067796737,-0.600000000000000,-0.325423728813729,-0.000000000000083,-0.012499999999957,-0.013559322033900,-0.000000000000000,0.000000000000100,0.012499999999957,0.013559322033883,0.000000000000000,2 +97,100,102,105,-0.618749999999996,-0.332203389830545,-0.612499999999957,-0.325423728813637,-0.625000000000035,-0.325423728813545,-0.618749999999996,-0.318644067796637,-0.000000000000084,-0.012500000000079,0.013559322033900,0.000000000000000,-0.013559322033917,0.000000000000001,0.000000000000101,0.012500000000078,2 +98,101,103,106,-0.631250000000040,-0.332203389830461,-0.625000000000035,-0.325423728813545,-0.637500000000043,-0.325423728813453,-0.631250000000039,-0.318644067796536,-0.000000000000083,-0.012500000000007,0.013559322033917,-0.000000000000001,-0.013559322033934,-0.000000000000000,0.000000000000100,0.012500000000009,2 +99,102,107,11869,-0.643750000000022,-0.332203389830378,-0.637500000000043,-0.325423728813453,-0.643750000000022,-0.318644067796436,-0.650000000000000,-0.325423728813361,-0.000000000000084,-0.012499999999957,0.013559322033934,0.000000000000000,0.000000000000100,0.012499999999957,-0.013559322033950,0.000000000000000,1 +100,105,108,3900,-0.606249999999978,-0.318644067796737,-0.612499999999957,-0.311864406779744,-0.606249999999978,-0.305084745762858,-0.600000000000000,-0.311864406779851,-0.000000000000100,-0.012499999999957,-0.013559322033886,-0.000000000000000,0.000000000000114,0.012499999999957,0.013559322033872,0.000000000000000,2 +101,104,106,109,-0.618749999999996,-0.318644067796637,-0.612499999999957,-0.311864406779744,-0.625000000000034,-0.311864406779636,-0.618749999999995,-0.305084745762743,-0.000000000000101,-0.012500000000078,0.013559322033886,0.000000000000000,-0.013559322033900,0.000000000000002,0.000000000000114,0.012500000000076,2 +102,105,107,110,-0.631250000000039,-0.318644067796536,-0.625000000000034,-0.311864406779636,-0.637500000000043,-0.311864406779529,-0.631250000000038,-0.305084745762629,-0.000000000000100,-0.012500000000009,0.013559322033900,-0.000000000000002,-0.013559322033914,0.000000000000000,0.000000000000114,0.012500000000010,2 +103,106,111,11869,-0.643750000000022,-0.318644067796436,-0.637500000000043,-0.311864406779529,-0.643750000000022,-0.305084745762515,-0.650000000000000,-0.311864406779421,-0.000000000000100,-0.012499999999957,0.013559322033914,-0.000000000000000,0.000000000000114,0.012499999999957,-0.013559322033928,0.000000000000000,1 +104,109,112,3901,-0.606249999999978,-0.305084745762858,-0.612499999999957,-0.298305084745854,-0.606249999999978,-0.291525423728971,-0.600000000000000,-0.298305084745975,-0.000000000000114,-0.012499999999957,-0.013559322033894,-0.000000000000000,0.000000000000129,0.012499999999957,0.013559322033879,0.000000000000000,2 +105,108,110,113,-0.618749999999995,-0.305084745762743,-0.612499999999957,-0.298305084745854,-0.625000000000032,-0.298305084745732,-0.618749999999994,-0.291525423728843,-0.000000000000114,-0.012500000000076,0.013559322033894,0.000000000000000,-0.013559322033908,0.000000000000002,0.000000000000129,0.012500000000075,2 +106,109,111,114,-0.631250000000038,-0.305084745762629,-0.625000000000032,-0.298305084745732,-0.637500000000043,-0.298305084745611,-0.631250000000037,-0.291525423728714,-0.000000000000114,-0.012500000000010,0.013559322033908,-0.000000000000002,-0.013559322033922,-0.000000000000000,0.000000000000129,0.012500000000012,2 +107,110,115,11869,-0.643750000000022,-0.305084745762515,-0.637500000000043,-0.298305084745611,-0.643750000000022,-0.291525423728585,-0.650000000000000,-0.298305084745489,-0.000000000000114,-0.012499999999957,0.013559322033922,0.000000000000000,0.000000000000129,0.012499999999957,-0.013559322033936,0.000000000000000,1 +108,113,116,3902,-0.606249999999978,-0.291525423728971,-0.612499999999957,-0.284745762711967,-0.606249999999978,-0.277966101695101,-0.600000000000000,-0.284745762712106,-0.000000000000129,-0.012499999999957,-0.013559322033880,-0.000000000000000,0.000000000000149,0.012499999999957,0.013559322033860,0.000000000000000,2 +109,112,114,117,-0.618749999999994,-0.291525423728843,-0.612499999999957,-0.284745762711967,-0.625000000000031,-0.284745762711828,-0.618749999999993,-0.277966101694952,-0.000000000000129,-0.012500000000075,0.013559322033880,0.000000000000000,-0.013559322033901,0.000000000000001,0.000000000000149,0.012500000000074,2 +110,113,115,118,-0.631250000000037,-0.291525423728714,-0.625000000000031,-0.284745762711828,-0.637500000000043,-0.284745762711689,-0.631250000000037,-0.277966101694803,-0.000000000000129,-0.012500000000012,0.013559322033901,-0.000000000000001,-0.013559322033922,-0.000000000000000,0.000000000000149,0.012500000000013,2 +111,114,119,11869,-0.643750000000022,-0.291525423728585,-0.637500000000043,-0.284745762711689,-0.643750000000022,-0.277966101694653,-0.650000000000000,-0.284745762711550,-0.000000000000129,-0.012499999999957,0.013559322033922,0.000000000000000,0.000000000000149,0.012499999999957,-0.013559322033942,0.000000000000000,1 +112,117,120,3903,-0.606249999999978,-0.277966101695101,-0.612499999999957,-0.271186440678089,-0.606249999999978,-0.264406779661234,-0.600000000000000,-0.271186440678246,-0.000000000000149,-0.012499999999957,-0.013559322033875,-0.000000000000000,0.000000000000165,0.012499999999957,0.013559322033860,0.000000000000000,2 +113,116,118,121,-0.618749999999993,-0.277966101694952,-0.612499999999957,-0.271186440678089,-0.625000000000029,-0.271186440677932,-0.618749999999993,-0.264406779661069,-0.000000000000149,-0.012500000000074,0.013559322033875,0.000000000000000,-0.013559322033891,0.000000000000002,0.000000000000165,0.012500000000072,2 +114,117,119,122,-0.631250000000037,-0.277966101694803,-0.625000000000029,-0.271186440677932,-0.637500000000043,-0.271186440677775,-0.631250000000036,-0.264406779660904,-0.000000000000149,-0.012500000000013,0.013559322033891,-0.000000000000002,-0.013559322033906,0.000000000000000,0.000000000000165,0.012500000000015,2 +115,118,123,11869,-0.643750000000022,-0.277966101694653,-0.637500000000043,-0.271186440677775,-0.643750000000022,-0.264406779660739,-0.650000000000000,-0.271186440677618,-0.000000000000149,-0.012499999999957,0.013559322033906,-0.000000000000000,0.000000000000165,0.012499999999957,-0.013559322033922,0.000000000000000,1 +116,121,124,3904,-0.606249999999978,-0.264406779661234,-0.612499999999957,-0.257627118644210,-0.606249999999978,-0.250847457627362,-0.600000000000000,-0.257627118644386,-0.000000000000165,-0.012499999999957,-0.013559322033883,-0.000000000000000,0.000000000000188,0.012499999999957,0.013559322033860,0.000000000000000,2 +117,120,122,125,-0.618749999999993,-0.264406779661069,-0.612499999999957,-0.257627118644210,-0.625000000000028,-0.257627118644033,-0.618749999999992,-0.250847457627174,-0.000000000000165,-0.012500000000072,0.013559322033883,0.000000000000000,-0.013559322033907,0.000000000000001,0.000000000000188,0.012500000000071,2 +118,121,123,126,-0.631250000000036,-0.264406779660904,-0.625000000000028,-0.257627118644033,-0.637500000000043,-0.257627118643857,-0.631250000000035,-0.250847457626986,-0.000000000000165,-0.012500000000015,0.013559322033907,-0.000000000000001,-0.013559322033930,-0.000000000000000,0.000000000000188,0.012500000000016,2 +119,122,127,11869,-0.643750000000022,-0.264406779660739,-0.637500000000043,-0.257627118643857,-0.643750000000022,-0.250847457626797,-0.650000000000000,-0.257627118643680,-0.000000000000165,-0.012499999999957,0.013559322033930,0.000000000000000,0.000000000000188,0.012499999999957,-0.013559322033954,0.000000000000000,1 +120,125,128,3905,-0.606249999999978,-0.250847457627362,-0.612499999999957,-0.244067796610332,-0.606249999999978,-0.237288135593496,-0.600000000000000,-0.244067796610526,-0.000000000000188,-0.012499999999957,-0.013559322033872,0.000000000000000,0.000000000000201,0.012499999999957,0.013559322033860,0.000000000000000,2 +121,124,126,129,-0.618749999999992,-0.250847457627174,-0.612499999999957,-0.244067796610332,-0.625000000000027,-0.244067796610137,-0.618749999999991,-0.237288135593295,-0.000000000000188,-0.012500000000071,0.013559322033872,-0.000000000000000,-0.013559322033885,0.000000000000001,0.000000000000201,0.012500000000069,2 +122,125,127,130,-0.631250000000035,-0.250847457626986,-0.625000000000027,-0.244067796610137,-0.637500000000043,-0.244067796609943,-0.631250000000035,-0.237288135593094,-0.000000000000188,-0.012500000000016,0.013559322033885,-0.000000000000001,-0.013559322033898,-0.000000000000000,0.000000000000201,0.012500000000018,2 +123,126,131,11869,-0.643750000000022,-0.250847457626797,-0.637500000000043,-0.244067796609943,-0.643750000000022,-0.237288135592893,-0.650000000000000,-0.244067796609748,-0.000000000000188,-0.012499999999957,0.013559322033898,0.000000000000000,0.000000000000201,0.012499999999957,-0.013559322033910,0.000000000000000,1 +124,129,132,3906,-0.606249999999978,-0.237288135593496,-0.612499999999957,-0.230508474576454,-0.606249999999978,-0.223728813559625,-0.600000000000000,-0.230508474576667,-0.000000000000201,-0.012499999999957,-0.013559322033883,-0.000000000000000,0.000000000000224,0.012499999999957,0.013559322033860,0.000000000000000,2 +125,128,130,133,-0.618749999999991,-0.237288135593295,-0.612499999999957,-0.230508474576454,-0.625000000000025,-0.230508474576241,-0.618749999999990,-0.223728813559400,-0.000000000000201,-0.012500000000069,0.013559322033883,0.000000000000000,-0.013559322033907,0.000000000000002,0.000000000000225,0.012500000000068,2 +126,129,131,134,-0.631250000000035,-0.237288135593094,-0.625000000000025,-0.230508474576241,-0.637500000000043,-0.230508474576029,-0.631250000000034,-0.223728813559176,-0.000000000000201,-0.012500000000018,0.013559322033907,-0.000000000000002,-0.013559322033930,-0.000000000000000,0.000000000000224,0.012500000000019,2 +127,130,135,11869,-0.643750000000022,-0.237288135592893,-0.637500000000043,-0.230508474576029,-0.643750000000022,-0.223728813558951,-0.650000000000000,-0.230508474575816,-0.000000000000201,-0.012499999999957,0.013559322033930,0.000000000000000,0.000000000000225,0.012499999999957,-0.013559322033954,0.000000000000000,1 +128,133,136,3907,-0.606249999999978,-0.223728813559625,-0.612499999999957,-0.216949152542575,-0.606249999999978,-0.210169491525757,-0.600000000000000,-0.216949152542807,-0.000000000000224,-0.012499999999957,-0.013559322033876,-0.000000000000000,0.000000000000241,0.012499999999957,0.013559322033860,0.000000000000000,2 +129,132,134,137,-0.618749999999990,-0.223728813559400,-0.612499999999957,-0.216949152542575,-0.625000000000024,-0.216949152542342,-0.618749999999990,-0.210169491525516,-0.000000000000225,-0.012500000000068,0.013559322033876,0.000000000000000,-0.013559322033892,0.000000000000002,0.000000000000241,0.012500000000066,2 +130,133,135,138,-0.631250000000034,-0.223728813559176,-0.625000000000024,-0.216949152542342,-0.637500000000043,-0.216949152542109,-0.631250000000033,-0.210169491525276,-0.000000000000224,-0.012500000000019,0.013559322033892,-0.000000000000002,-0.013559322033908,0.000000000000000,0.000000000000241,0.012500000000021,2 +131,134,139,11869,-0.643750000000022,-0.223728813558951,-0.637500000000043,-0.216949152542109,-0.643750000000022,-0.210169491525035,-0.650000000000000,-0.216949152541877,-0.000000000000225,-0.012499999999957,0.013559322033908,-0.000000000000000,0.000000000000241,0.012499999999957,-0.013559322033924,0.000000000000000,1 +132,137,140,3908,-0.606249999999978,-0.210169491525757,-0.612499999999957,-0.203389830508697,-0.606249999999978,-0.196610169491887,-0.600000000000000,-0.203389830508947,-0.000000000000241,-0.012499999999957,-0.013559322033880,0.000000000000000,0.000000000000261,0.012499999999957,0.013559322033860,0.000000000000000,2 +133,136,138,141,-0.618749999999990,-0.210169491525516,-0.612499999999957,-0.203389830508697,-0.625000000000022,-0.203389830508446,-0.618749999999989,-0.196610169491626,-0.000000000000241,-0.012500000000066,0.013559322033880,-0.000000000000000,-0.013559322033900,0.000000000000001,0.000000000000261,0.012500000000065,2 +134,137,139,142,-0.631250000000033,-0.210169491525276,-0.625000000000022,-0.203389830508446,-0.637500000000043,-0.203389830508195,-0.631250000000032,-0.196610169491366,-0.000000000000241,-0.012500000000021,0.013559322033900,-0.000000000000001,-0.013559322033920,0.000000000000000,0.000000000000261,0.012500000000022,2 +135,138,143,11869,-0.643750000000022,-0.210169491525035,-0.637500000000043,-0.203389830508195,-0.643750000000022,-0.196610169491105,-0.650000000000000,-0.203389830507945,-0.000000000000241,-0.012499999999957,0.013559322033920,-0.000000000000000,0.000000000000261,0.012499999999957,-0.013559322033940,0.000000000000000,1 +136,141,144,3909,-0.606249999999978,-0.196610169491887,-0.612499999999957,-0.189830508474820,-0.606249999999978,-0.183050847458020,-0.600000000000000,-0.189830508475088,-0.000000000000261,-0.012499999999957,-0.013559322033874,-0.000000000000000,0.000000000000275,0.012499999999957,0.013559322033860,0.000000000000000,2 +137,140,142,145,-0.618749999999989,-0.196610169491626,-0.612499999999957,-0.189830508474820,-0.625000000000021,-0.189830508474552,-0.618749999999988,-0.183050847457745,-0.000000000000261,-0.012500000000065,0.013559322033874,0.000000000000000,-0.013559322033888,0.000000000000002,0.000000000000275,0.012500000000063,2 +138,141,143,146,-0.631250000000032,-0.196610169491366,-0.625000000000021,-0.189830508474552,-0.637500000000043,-0.189830508474284,-0.631250000000032,-0.183050847457470,-0.000000000000261,-0.012500000000022,0.013559322033888,-0.000000000000002,-0.013559322033902,-0.000000000000000,0.000000000000275,0.012500000000023,2 +139,142,147,11869,-0.643750000000022,-0.196610169491105,-0.637500000000043,-0.189830508474284,-0.643750000000022,-0.183050847457195,-0.650000000000000,-0.189830508474016,-0.000000000000261,-0.012499999999957,0.013559322033902,0.000000000000000,0.000000000000275,0.012499999999957,-0.013559322033917,0.000000000000000,1 +140,145,148,3910,-0.606249999999978,-0.183050847458020,-0.612499999999957,-0.176271186440942,-0.606249999999978,-0.169491525424150,-0.600000000000000,-0.176271186441228,-0.000000000000275,-0.012499999999957,-0.013559322033882,0.000000000000000,0.000000000000297,0.012499999999956,0.013559322033860,0.000000000000000,2 +141,144,146,149,-0.618749999999988,-0.183050847457745,-0.612499999999957,-0.176271186440942,-0.625000000000019,-0.176271186440656,-0.618749999999987,-0.169491525423853,-0.000000000000275,-0.012500000000063,0.013559322033882,-0.000000000000000,-0.013559322033904,0.000000000000002,0.000000000000297,0.012500000000062,2 +142,145,147,150,-0.631250000000032,-0.183050847457470,-0.625000000000019,-0.176271186440656,-0.637500000000043,-0.176271186440370,-0.631250000000031,-0.169491525423556,-0.000000000000275,-0.012500000000023,0.013559322033904,-0.000000000000002,-0.013559322033926,-0.000000000000000,0.000000000000297,0.012500000000025,2 +143,146,151,11869,-0.643750000000022,-0.183050847457195,-0.637500000000043,-0.176271186440370,-0.643750000000022,-0.169491525423259,-0.650000000000000,-0.176271186440084,-0.000000000000275,-0.012499999999957,0.013559322033926,0.000000000000000,0.000000000000297,0.012499999999957,-0.013559322033947,0.000000000000000,1 +144,149,152,3911,-0.606249999999978,-0.169491525424150,-0.612499999999957,-0.162711864407062,-0.606249999999978,-0.155932203390281,-0.600000000000000,-0.162711864407368,-0.000000000000297,-0.012499999999956,-0.013559322033877,-0.000000000000000,0.000000000000315,0.012499999999957,0.013559322033860,0.000000000000000,2 +145,148,150,153,-0.618749999999987,-0.169491525423853,-0.612499999999957,-0.162711864407062,-0.625000000000018,-0.162711864406757,-0.618749999999987,-0.155932203389966,-0.000000000000297,-0.012500000000062,0.013559322033877,0.000000000000000,-0.013559322033895,0.000000000000001,0.000000000000315,0.012500000000060,2 +146,149,151,154,-0.631250000000031,-0.169491525423556,-0.625000000000018,-0.162711864406757,-0.637500000000043,-0.162711864406451,-0.631250000000030,-0.155932203389652,-0.000000000000297,-0.012500000000025,0.013559322033895,-0.000000000000001,-0.013559322033913,-0.000000000000000,0.000000000000315,0.012500000000026,2 +147,150,155,11869,-0.643750000000022,-0.169491525423259,-0.637500000000043,-0.162711864406451,-0.643750000000022,-0.155932203389337,-0.650000000000000,-0.162711864406145,-0.000000000000297,-0.012499999999957,0.013559322033913,0.000000000000000,0.000000000000315,0.012499999999957,-0.013559322033931,0.000000000000000,1 +148,153,156,3912,-0.606249999999978,-0.155932203390281,-0.612499999999957,-0.149152542373185,-0.606249999999978,-0.142372881356412,-0.600000000000000,-0.149152542373509,-0.000000000000315,-0.012499999999957,-0.013559322033878,-0.000000000000000,0.000000000000333,0.012499999999957,0.013559322033860,0.000000000000000,2 +149,152,154,157,-0.618749999999987,-0.155932203389966,-0.612499999999957,-0.149152542373185,-0.625000000000016,-0.149152542372861,-0.618749999999986,-0.142372881356079,-0.000000000000315,-0.012500000000060,0.013559322033878,0.000000000000000,-0.013559322033897,0.000000000000001,0.000000000000333,0.012500000000059,2 +150,153,155,158,-0.631250000000030,-0.155932203389652,-0.625000000000016,-0.149152542372861,-0.637500000000043,-0.149152542372537,-0.631250000000029,-0.142372881355746,-0.000000000000315,-0.012500000000026,0.013559322033897,-0.000000000000001,-0.013559322033915,0.000000000000000,0.000000000000333,0.012500000000028,2 +151,154,159,11869,-0.643750000000022,-0.155932203389337,-0.637500000000043,-0.149152542372537,-0.643750000000022,-0.142372881355413,-0.650000000000000,-0.149152542372213,-0.000000000000315,-0.012499999999957,0.013559322033915,-0.000000000000000,0.000000000000333,0.012499999999957,-0.013559322033933,0.000000000000000,1 +152,157,160,3913,-0.606249999999978,-0.142372881356412,-0.612499999999957,-0.135593220339305,-0.606249999999978,-0.128813559322542,-0.600000000000000,-0.135593220339649,-0.000000000000333,-0.012499999999957,-0.013559322033881,-0.000000000000000,0.000000000000355,0.012499999999957,0.013559322033860,0.000000000000000,2 +153,156,158,161,-0.618749999999986,-0.142372881356079,-0.612499999999957,-0.135593220339305,-0.625000000000015,-0.135593220338961,-0.618749999999985,-0.128813559322187,-0.000000000000333,-0.012500000000059,0.013559322033881,0.000000000000000,-0.013559322033902,0.000000000000002,0.000000000000355,0.012500000000057,2 +154,157,159,162,-0.631250000000029,-0.142372881355746,-0.625000000000015,-0.135593220338961,-0.637500000000043,-0.135593220338617,-0.631250000000029,-0.128813559321833,-0.000000000000333,-0.012500000000028,0.013559322033902,-0.000000000000002,-0.013559322033924,-0.000000000000000,0.000000000000355,0.012500000000029,2 +155,158,163,11869,-0.643750000000022,-0.142372881355413,-0.637500000000043,-0.135593220338617,-0.643750000000022,-0.128813559321478,-0.650000000000000,-0.135593220338273,-0.000000000000333,-0.012499999999957,0.013559322033924,0.000000000000000,0.000000000000355,0.012499999999957,-0.013559322033945,0.000000000000000,1 +156,161,164,3914,-0.606249999999978,-0.128813559322542,-0.612499999999957,-0.122033898305427,-0.606249999999978,-0.115254237288675,-0.600000000000000,-0.122033898305789,-0.000000000000355,-0.012499999999957,-0.013559322033874,0.000000000000000,0.000000000000369,0.012499999999956,0.013559322033860,0.000000000000000,2 +157,160,162,165,-0.618749999999985,-0.128813559322187,-0.612499999999957,-0.122033898305427,-0.625000000000013,-0.122033898305065,-0.618749999999985,-0.115254237288305,-0.000000000000355,-0.012500000000057,0.013559322033874,-0.000000000000000,-0.013559322033889,0.000000000000001,0.000000000000369,0.012500000000056,2 +158,161,163,166,-0.631250000000029,-0.128813559321833,-0.625000000000013,-0.122033898305065,-0.637500000000043,-0.122033898304703,-0.631250000000028,-0.115254237287936,-0.000000000000355,-0.012500000000029,0.013559322033889,-0.000000000000001,-0.013559322033904,-0.000000000000000,0.000000000000369,0.012500000000031,2 +159,162,167,11869,-0.643750000000022,-0.128813559321478,-0.637500000000043,-0.122033898304703,-0.643750000000022,-0.115254237287566,-0.650000000000000,-0.122033898304341,-0.000000000000355,-0.012499999999957,0.013559322033904,0.000000000000000,0.000000000000369,0.012499999999957,-0.013559322033919,0.000000000000000,1 +160,165,168,3915,-0.606249999999978,-0.115254237288675,-0.612499999999957,-0.108474576271552,-0.606249999999978,-0.101694915254811,-0.600000000000000,-0.108474576271933,-0.000000000000369,-0.012499999999956,-0.013559322033875,-0.000000000000000,0.000000000000393,0.012499999999957,0.013559322033852,0.000000000000000,2 +161,164,166,169,-0.618749999999985,-0.115254237288305,-0.612499999999957,-0.108474576271552,-0.625000000000012,-0.108474576271171,-0.618749999999984,-0.101694915254418,-0.000000000000369,-0.012500000000056,0.013559322033875,0.000000000000000,-0.013559322033899,0.000000000000002,0.000000000000393,0.012500000000054,2 +162,165,167,170,-0.631250000000028,-0.115254237287936,-0.625000000000012,-0.108474576271171,-0.637500000000043,-0.108474576270790,-0.631250000000027,-0.101694915254025,-0.000000000000369,-0.012500000000031,0.013559322033899,-0.000000000000002,-0.013559322033922,0.000000000000000,0.000000000000393,0.012500000000032,2 +163,166,171,11869,-0.643750000000022,-0.115254237287566,-0.637500000000043,-0.108474576270790,-0.643750000000022,-0.101694915253632,-0.650000000000000,-0.108474576270409,-0.000000000000369,-0.012499999999957,0.013559322033922,-0.000000000000000,0.000000000000393,0.012499999999957,-0.013559322033946,0.000000000000000,1 +164,169,172,3916,-0.606249999999978,-0.101694915254811,-0.612499999999957,-0.094915254237681,-0.606249999999978,-0.088135593220955,-0.600000000000000,-0.094915254238085,-0.000000000000393,-0.012499999999957,-0.013559322033867,-0.000000000000000,0.000000000000414,0.012499999999957,0.013559322033846,0.000000000000000,2 +165,168,170,173,-0.618749999999984,-0.101694915254418,-0.612499999999957,-0.094915254237681,-0.625000000000010,-0.094915254237278,-0.618749999999983,-0.088135593220541,-0.000000000000393,-0.012500000000054,0.013559322033867,0.000000000000000,-0.013559322033888,0.000000000000001,0.000000000000414,0.012500000000053,2 +166,169,171,174,-0.631250000000027,-0.101694915254025,-0.625000000000010,-0.094915254237278,-0.637500000000043,-0.094915254236874,-0.631250000000027,-0.088135593220127,-0.000000000000393,-0.012500000000032,0.013559322033888,-0.000000000000001,-0.013559322033909,0.000000000000000,0.000000000000414,0.012500000000034,2 +167,170,175,11869,-0.643750000000022,-0.101694915253632,-0.637500000000043,-0.094915254236874,-0.643750000000022,-0.088135593219713,-0.650000000000000,-0.094915254236471,-0.000000000000393,-0.012499999999957,0.013559322033909,-0.000000000000000,0.000000000000414,0.012499999999957,-0.013559322033930,0.000000000000000,1 +168,173,176,3917,-0.606249999999978,-0.088135593220955,-0.612499999999957,-0.081355932203808,-0.606249999999978,-0.074576271187085,-0.600000000000000,-0.081355932204232,-0.000000000000414,-0.012499999999957,-0.013559322033880,0.000000000000000,0.000000000000434,0.012499999999957,0.013559322033860,0.000000000000000,2 +169,172,174,177,-0.618749999999983,-0.088135593220541,-0.612499999999957,-0.081355932203808,-0.625000000000009,-0.081355932203383,-0.618749999999982,-0.074576271186650,-0.000000000000414,-0.012500000000053,0.013559322033880,-0.000000000000000,-0.013559322033900,0.000000000000002,0.000000000000434,0.012500000000051,2 +170,173,175,178,-0.631250000000027,-0.088135593220127,-0.625000000000009,-0.081355932203383,-0.637500000000043,-0.081355932202959,-0.631250000000026,-0.074576271186216,-0.000000000000414,-0.012500000000034,0.013559322033900,-0.000000000000002,-0.013559322033921,-0.000000000000000,0.000000000000434,0.012500000000035,2 +171,174,179,11869,-0.643750000000022,-0.088135593219713,-0.637500000000043,-0.081355932202959,-0.643750000000022,-0.074576271185782,-0.650000000000000,-0.081355932202535,-0.000000000000414,-0.012499999999957,0.013559322033921,0.000000000000000,0.000000000000434,0.012499999999957,-0.013559322033941,0.000000000000000,1 +172,177,180,3918,-0.606249999999978,-0.074576271187085,-0.612499999999957,-0.067796610169929,-0.606249999999978,-0.061016949153216,-0.600000000000000,-0.067796610170372,-0.000000000000434,-0.012499999999957,-0.013559322033877,0.000000000000000,0.000000000000452,0.012499999999956,0.013559322033860,0.000000000000000,2 +173,176,178,181,-0.618749999999982,-0.074576271186650,-0.612499999999957,-0.067796610169929,-0.625000000000008,-0.067796610169486,-0.618749999999982,-0.061016949152764,-0.000000000000434,-0.012500000000051,0.013559322033877,-0.000000000000000,-0.013559322033895,0.000000000000001,0.000000000000452,0.012500000000050,2 +174,177,179,182,-0.631250000000026,-0.074576271186216,-0.625000000000008,-0.067796610169486,-0.637500000000043,-0.067796610169043,-0.631250000000025,-0.061016949152312,-0.000000000000434,-0.012500000000035,0.013559322033895,-0.000000000000001,-0.013559322033913,-0.000000000000000,0.000000000000452,0.012500000000037,2 +175,178,183,11869,-0.643750000000022,-0.074576271185782,-0.637500000000043,-0.067796610169043,-0.643750000000022,-0.061016949151860,-0.650000000000000,-0.067796610168599,-0.000000000000434,-0.012499999999957,0.013559322033913,0.000000000000000,0.000000000000452,0.012499999999957,-0.013559322033930,0.000000000000000,1 +176,181,184,3919,-0.606249999999978,-0.061016949153216,-0.612499999999957,-0.054237288136051,-0.606249999999978,-0.047457627119347,-0.600000000000000,-0.054237288136513,-0.000000000000452,-0.012499999999956,-0.013559322033878,-0.000000000000000,0.000000000000471,0.012499999999957,0.013559322033860,0.000000000000000,2 +177,180,182,185,-0.618749999999982,-0.061016949152764,-0.612499999999957,-0.054237288136051,-0.625000000000006,-0.054237288135590,-0.618749999999981,-0.047457627118876,-0.000000000000452,-0.012500000000050,0.013559322033878,0.000000000000000,-0.013559322033897,0.000000000000002,0.000000000000471,0.012500000000049,2 +178,181,183,186,-0.631250000000025,-0.061016949152312,-0.625000000000006,-0.054237288135590,-0.637500000000043,-0.054237288135128,-0.631250000000024,-0.047457627118406,-0.000000000000452,-0.012500000000037,0.013559322033897,-0.000000000000002,-0.013559322033916,0.000000000000000,0.000000000000471,0.012500000000038,2 +179,182,187,11869,-0.643750000000022,-0.061016949151860,-0.637500000000043,-0.054237288135128,-0.643750000000022,-0.047457627117935,-0.650000000000000,-0.054237288134667,-0.000000000000452,-0.012499999999957,0.013559322033916,-0.000000000000000,0.000000000000471,0.012499999999957,-0.013559322033935,0.000000000000000,1 +180,185,188,3920,-0.606249999999978,-0.047457627119347,-0.612499999999957,-0.040677966102172,-0.606249999999978,-0.033898305085478,-0.600000000000000,-0.040677966102653,-0.000000000000471,-0.012499999999957,-0.013559322033879,-0.000000000000000,0.000000000000490,0.012499999999957,0.013559322033860,0.000000000000000,2 +181,184,186,189,-0.618749999999981,-0.047457627118876,-0.612499999999957,-0.040677966102172,-0.625000000000004,-0.040677966101692,-0.618749999999980,-0.033898305084988,-0.000000000000471,-0.012500000000049,0.013559322033879,0.000000000000000,-0.013559322033898,0.000000000000001,0.000000000000490,0.012500000000047,2 +182,185,187,190,-0.631250000000024,-0.047457627118406,-0.625000000000004,-0.040677966101692,-0.637500000000043,-0.040677966101212,-0.631250000000024,-0.033898305084498,-0.000000000000471,-0.012500000000038,0.013559322033898,-0.000000000000001,-0.013559322033917,-0.000000000000000,0.000000000000490,0.012500000000040,2 +183,186,191,11869,-0.643750000000022,-0.047457627117935,-0.637500000000043,-0.040677966101212,-0.643750000000022,-0.033898305084008,-0.650000000000000,-0.040677966100731,-0.000000000000471,-0.012499999999957,0.013559322033917,0.000000000000000,0.000000000000490,0.012499999999956,-0.013559322033937,0.000000000000000,1 +184,189,192,3921,-0.606249999999978,-0.033898305085478,-0.612499999999957,-0.027118644068294,-0.606249999999978,-0.020338983051609,-0.600000000000000,-0.027118644068793,-0.000000000000490,-0.012499999999957,-0.013559322033877,-0.000000000000000,0.000000000000508,0.012499999999957,0.013559322033860,0.000000000000000,2 +185,188,190,193,-0.618749999999980,-0.033898305084988,-0.612499999999957,-0.027118644068294,-0.625000000000003,-0.027118644067795,-0.618749999999979,-0.020338983051102,-0.000000000000490,-0.012500000000047,0.013559322033877,0.000000000000000,-0.013559322033895,0.000000000000001,0.000000000000508,0.012500000000046,2 +186,189,191,194,-0.631250000000024,-0.033898305084498,-0.625000000000003,-0.027118644067795,-0.637500000000043,-0.027118644067297,-0.631250000000023,-0.020338983050594,-0.000000000000490,-0.012500000000040,0.013559322033895,-0.000000000000001,-0.013559322033913,0.000000000000000,0.000000000000508,0.012500000000041,2 +187,190,195,11869,-0.643750000000022,-0.033898305084008,-0.637500000000043,-0.027118644067297,-0.643750000000022,-0.020338983050086,-0.650000000000000,-0.027118644066798,-0.000000000000490,-0.012499999999956,0.013559322033913,-0.000000000000000,0.000000000000508,0.012499999999957,-0.013559322033930,0.000000000000000,1 +188,193,196,3922,-0.606249999999978,-0.020338983051609,-0.612499999999957,-0.013559322034416,-0.606249999999978,-0.006779661017740,-0.600000000000000,-0.013559322034933,-0.000000000000508,-0.012499999999957,-0.013559322033880,-0.000000000000000,0.000000000000528,0.012499999999957,0.013559322033860,0.000000000000000,2 +189,192,194,197,-0.618749999999979,-0.020338983051102,-0.612499999999957,-0.013559322034416,-0.625000000000002,-0.013559322033898,-0.618749999999979,-0.006779661017212,-0.000000000000508,-0.012500000000046,0.013559322033880,0.000000000000000,-0.013559322033900,0.000000000000002,0.000000000000528,0.012500000000044,2 +190,193,195,198,-0.631250000000023,-0.020338983050594,-0.625000000000002,-0.013559322033898,-0.637500000000043,-0.013559322033380,-0.631250000000022,-0.006779661016683,-0.000000000000508,-0.012500000000041,0.013559322033900,-0.000000000000002,-0.013559322033921,-0.000000000000000,0.000000000000528,0.012500000000043,2 +191,194,199,11869,-0.643750000000022,-0.020338983050086,-0.637500000000043,-0.013559322033380,-0.643750000000022,-0.006779661016155,-0.650000000000000,-0.013559322032862,-0.000000000000508,-0.012499999999957,0.013559322033921,0.000000000000000,0.000000000000528,0.012499999999957,-0.013559322033941,0.000000000000000,1 +192,197,200,3923,-0.606249999999978,-0.006779661017740,-0.612499999999957,-0.000000000000528,-0.606249999999978,0.006779661016155,-0.600000000000000,-0.000000000001056,-0.000000000000528,-0.012499999999957,-0.013559322033895,-0.000000000000000,0.000000000000528,0.012499999999957,0.013559322033895,0.000000000000000,2 +193,196,198,201,-0.618749999999979,-0.006779661017212,-0.612499999999957,-0.000000000000528,-0.625000000000000,0.000000000000000,-0.618749999999978,0.006779661016683,-0.000000000000528,-0.012500000000044,0.013559322033895,0.000000000000000,-0.013559322033895,0.000000000000001,0.000000000000528,0.012500000000043,2 +194,197,199,202,-0.631250000000022,-0.006779661016683,-0.625000000000000,0.000000000000000,-0.637500000000043,0.000000000000528,-0.631250000000021,0.006779661017212,-0.000000000000528,-0.012500000000043,0.013559322033895,-0.000000000000001,-0.013559322033895,-0.000000000000000,0.000000000000528,0.012500000000044,2 +195,198,203,11869,-0.643750000000022,-0.006779661016155,-0.637500000000043,0.000000000000528,-0.643750000000022,0.006779661017740,-0.650000000000000,0.000000000001056,-0.000000000000528,-0.012499999999957,0.013559322033895,0.000000000000000,0.000000000000528,0.012499999999957,-0.013559322033895,0.000000000000000,1 +196,201,204,3924,-0.606249999999978,0.006779661016155,-0.612499999999957,0.013559322033380,-0.606249999999978,0.020338983050086,-0.600000000000000,0.013559322032862,-0.000000000000528,-0.012499999999957,-0.013559322033921,0.000000000000000,0.000000000000508,0.012499999999957,0.013559322033941,0.000000000000000,2 +197,200,202,205,-0.618749999999978,0.006779661016683,-0.612499999999957,0.013559322033380,-0.624999999999999,0.013559322033898,-0.618749999999977,0.020338983050594,-0.000000000000528,-0.012500000000043,0.013559322033921,-0.000000000000000,-0.013559322033900,0.000000000000002,0.000000000000508,0.012500000000041,2 +198,201,203,206,-0.631250000000021,0.006779661017212,-0.624999999999999,0.013559322033898,-0.637500000000043,0.013559322034416,-0.631250000000021,0.020338983051102,-0.000000000000528,-0.012500000000044,0.013559322033900,-0.000000000000002,-0.013559322033880,0.000000000000000,0.000000000000508,0.012500000000045,2 +199,202,207,11869,-0.643750000000022,0.006779661017740,-0.637500000000043,0.013559322034416,-0.643750000000022,0.020338983051609,-0.650000000000000,0.013559322034933,-0.000000000000528,-0.012499999999957,0.013559322033880,-0.000000000000000,0.000000000000508,0.012499999999957,-0.013559322033860,0.000000000000000,1 +200,205,208,3925,-0.606249999999978,0.020338983050086,-0.612499999999957,0.027118644067297,-0.606249999999978,0.033898305084008,-0.600000000000000,0.027118644066798,-0.000000000000508,-0.012499999999957,-0.013559322033913,-0.000000000000000,0.000000000000490,0.012499999999957,0.013559322033930,0.000000000000000,2 +201,204,206,209,-0.618749999999977,0.020338983050594,-0.612499999999957,0.027118644067297,-0.624999999999997,0.027118644067795,-0.618749999999976,0.033898305084498,-0.000000000000508,-0.012500000000041,0.013559322033913,0.000000000000000,-0.013559322033895,0.000000000000001,0.000000000000490,0.012500000000040,2 +202,205,207,210,-0.631250000000021,0.020338983051102,-0.624999999999997,0.027118644067795,-0.637500000000043,0.027118644068294,-0.631250000000020,0.033898305084988,-0.000000000000508,-0.012500000000045,0.013559322033895,-0.000000000000001,-0.013559322033877,-0.000000000000000,0.000000000000490,0.012500000000047,2 +203,206,211,11869,-0.643750000000022,0.020338983051609,-0.637500000000043,0.027118644068294,-0.643750000000022,0.033898305085478,-0.650000000000000,0.027118644068793,-0.000000000000508,-0.012499999999957,0.013559322033877,0.000000000000000,0.000000000000490,0.012499999999957,-0.013559322033860,0.000000000000000,1 +204,209,212,3926,-0.606249999999978,0.033898305084008,-0.612499999999957,0.040677966101212,-0.606249999999978,0.047457627117935,-0.600000000000000,0.040677966100731,-0.000000000000490,-0.012499999999957,-0.013559322033917,-0.000000000000000,0.000000000000471,0.012499999999957,0.013559322033937,0.000000000000000,2 +205,208,210,213,-0.618749999999976,0.033898305084498,-0.612499999999957,0.040677966101212,-0.624999999999996,0.040677966101692,-0.618749999999976,0.047457627118406,-0.000000000000490,-0.012500000000040,0.013559322033917,0.000000000000000,-0.013559322033898,0.000000000000001,0.000000000000471,0.012500000000038,2 +206,209,211,214,-0.631250000000020,0.033898305084988,-0.624999999999996,0.040677966101692,-0.637500000000043,0.040677966102172,-0.631250000000019,0.047457627118876,-0.000000000000490,-0.012500000000047,0.013559322033898,-0.000000000000001,-0.013559322033879,-0.000000000000000,0.000000000000471,0.012500000000048,2 +207,210,215,11869,-0.643750000000022,0.033898305085478,-0.637500000000043,0.040677966102172,-0.643750000000022,0.047457627119347,-0.650000000000000,0.040677966102653,-0.000000000000490,-0.012499999999957,0.013559322033879,0.000000000000000,0.000000000000471,0.012499999999957,-0.013559322033860,0.000000000000000,1 +208,213,216,3927,-0.606249999999978,0.047457627117935,-0.612499999999957,0.054237288135128,-0.606249999999978,0.061016949151860,-0.600000000000000,0.054237288134667,-0.000000000000471,-0.012499999999957,-0.013559322033916,-0.000000000000000,0.000000000000452,0.012499999999957,0.013559322033935,0.000000000000000,2 +209,212,214,217,-0.618749999999976,0.047457627118406,-0.612499999999957,0.054237288135128,-0.624999999999994,0.054237288135590,-0.618749999999975,0.061016949152312,-0.000000000000471,-0.012500000000038,0.013559322033916,0.000000000000000,-0.013559322033897,0.000000000000002,0.000000000000452,0.012500000000037,2 +210,213,215,218,-0.631250000000019,0.047457627118876,-0.624999999999994,0.054237288135590,-0.637500000000043,0.054237288136051,-0.631250000000018,0.061016949152764,-0.000000000000471,-0.012500000000048,0.013559322033897,-0.000000000000002,-0.013559322033878,0.000000000000000,0.000000000000452,0.012500000000050,2 +211,214,219,11869,-0.643750000000022,0.047457627119347,-0.637500000000043,0.054237288136051,-0.643750000000022,0.061016949153216,-0.650000000000000,0.054237288136513,-0.000000000000471,-0.012499999999957,0.013559322033878,-0.000000000000000,0.000000000000452,0.012499999999957,-0.013559322033860,0.000000000000000,1 +212,217,220,3928,-0.606249999999978,0.061016949151860,-0.612499999999957,0.067796610169043,-0.606249999999978,0.074576271185782,-0.600000000000000,0.067796610168599,-0.000000000000452,-0.012499999999957,-0.013559322033913,-0.000000000000000,0.000000000000434,0.012499999999957,0.013559322033930,0.000000000000000,2 +213,216,218,221,-0.618749999999975,0.061016949152312,-0.612499999999957,0.067796610169043,-0.624999999999993,0.067796610169486,-0.618749999999974,0.074576271186216,-0.000000000000452,-0.012500000000037,0.013559322033913,0.000000000000000,-0.013559322033895,0.000000000000002,0.000000000000434,0.012500000000035,2 +214,217,219,222,-0.631250000000018,0.061016949152764,-0.624999999999993,0.067796610169486,-0.637500000000043,0.067796610169929,-0.631250000000018,0.074576271186650,-0.000000000000452,-0.012500000000050,0.013559322033895,-0.000000000000002,-0.013559322033877,0.000000000000000,0.000000000000434,0.012500000000051,2 +215,218,223,11869,-0.643750000000022,0.061016949153216,-0.637500000000043,0.067796610169929,-0.643750000000022,0.074576271187085,-0.650000000000000,0.067796610170372,-0.000000000000452,-0.012499999999957,0.013559322033877,-0.000000000000000,0.000000000000434,0.012499999999957,-0.013559322033860,0.000000000000000,1 +216,221,224,3929,-0.606249999999978,0.074576271185782,-0.612499999999957,0.081355932202959,-0.606249999999978,0.088135593219713,-0.600000000000000,0.081355932202535,-0.000000000000434,-0.012499999999957,-0.013559322033921,-0.000000000000000,0.000000000000414,0.012499999999957,0.013559322033941,0.000000000000000,2 +217,220,222,225,-0.618749999999974,0.074576271186216,-0.612499999999957,0.081355932202959,-0.624999999999991,0.081355932203383,-0.618749999999974,0.088135593220127,-0.000000000000434,-0.012500000000035,0.013559322033921,0.000000000000000,-0.013559322033900,0.000000000000001,0.000000000000414,0.012500000000034,2 +218,221,223,226,-0.631250000000018,0.074576271186650,-0.624999999999991,0.081355932203383,-0.637500000000043,0.081355932203808,-0.631250000000017,0.088135593220541,-0.000000000000434,-0.012500000000051,0.013559322033900,-0.000000000000001,-0.013559322033880,-0.000000000000000,0.000000000000414,0.012500000000053,2 +219,222,227,11869,-0.643750000000022,0.074576271187085,-0.637500000000043,0.081355932203808,-0.643750000000022,0.088135593220955,-0.650000000000000,0.081355932204232,-0.000000000000434,-0.012499999999957,0.013559322033880,0.000000000000000,0.000000000000414,0.012499999999957,-0.013559322033860,0.000000000000000,1 +220,225,228,3930,-0.606249999999978,0.088135593219713,-0.612499999999957,0.094915254236874,-0.606249999999978,0.101694915253632,-0.600000000000000,0.094915254236471,-0.000000000000414,-0.012499999999957,-0.013559322033909,0.000000000000000,0.000000000000393,0.012499999999957,0.013559322033930,0.000000000000000,2 +221,224,226,229,-0.618749999999974,0.088135593220127,-0.612499999999957,0.094915254236874,-0.624999999999990,0.094915254237278,-0.618749999999973,0.101694915254025,-0.000000000000414,-0.012500000000034,0.013559322033909,-0.000000000000000,-0.013559322033888,0.000000000000002,0.000000000000393,0.012500000000032,2 +222,225,227,230,-0.631250000000017,0.088135593220541,-0.624999999999990,0.094915254237278,-0.637500000000043,0.094915254237681,-0.631250000000016,0.101694915254418,-0.000000000000414,-0.012500000000053,0.013559322033888,-0.000000000000002,-0.013559322033867,-0.000000000000000,0.000000000000393,0.012500000000054,2 +223,226,231,11869,-0.643750000000022,0.088135593220955,-0.637500000000043,0.094915254237681,-0.643750000000022,0.101694915254811,-0.650000000000000,0.094915254238085,-0.000000000000414,-0.012499999999957,0.013559322033867,0.000000000000000,0.000000000000393,0.012499999999957,-0.013559322033846,0.000000000000000,1 +224,229,232,3931,-0.606249999999978,0.101694915253632,-0.612499999999957,0.108474576270790,-0.606249999999978,0.115254237287566,-0.600000000000000,0.108474576270409,-0.000000000000393,-0.012499999999957,-0.013559322033922,-0.000000000000000,0.000000000000369,0.012499999999957,0.013559322033946,0.000000000000000,2 +225,228,230,233,-0.618749999999973,0.101694915254025,-0.612499999999957,0.108474576270790,-0.624999999999988,0.108474576271171,-0.618749999999972,0.115254237287936,-0.000000000000393,-0.012500000000032,0.013559322033922,0.000000000000000,-0.013559322033899,0.000000000000001,0.000000000000369,0.012500000000031,2 +226,229,231,234,-0.631250000000016,0.101694915254418,-0.624999999999988,0.108474576271171,-0.637500000000043,0.108474576271552,-0.631250000000016,0.115254237288305,-0.000000000000393,-0.012500000000054,0.013559322033899,-0.000000000000001,-0.013559322033875,-0.000000000000000,0.000000000000369,0.012500000000056,2 +227,230,235,11869,-0.643750000000022,0.101694915254811,-0.637500000000043,0.108474576271552,-0.643750000000022,0.115254237288675,-0.650000000000000,0.108474576271933,-0.000000000000393,-0.012499999999957,0.013559322033875,0.000000000000000,0.000000000000369,0.012499999999957,-0.013559322033852,0.000000000000000,1 +228,233,236,3932,-0.606249999999978,0.115254237287566,-0.612499999999957,0.122033898304703,-0.606249999999978,0.128813559321478,-0.600000000000000,0.122033898304341,-0.000000000000369,-0.012499999999957,-0.013559322033904,-0.000000000000000,0.000000000000355,0.012499999999957,0.013559322033919,0.000000000000000,2 +229,232,234,237,-0.618749999999972,0.115254237287936,-0.612499999999957,0.122033898304703,-0.624999999999987,0.122033898305065,-0.618749999999971,0.128813559321833,-0.000000000000369,-0.012500000000031,0.013559322033904,0.000000000000000,-0.013559322033889,0.000000000000002,0.000000000000355,0.012500000000029,2 +230,233,235,238,-0.631250000000016,0.115254237288305,-0.624999999999987,0.122033898305065,-0.637500000000043,0.122033898305427,-0.631250000000015,0.128813559322187,-0.000000000000369,-0.012500000000056,0.013559322033889,-0.000000000000002,-0.013559322033874,-0.000000000000000,0.000000000000355,0.012500000000057,2 +231,234,239,11869,-0.643750000000022,0.115254237288675,-0.637500000000043,0.122033898305427,-0.643750000000022,0.128813559322542,-0.650000000000000,0.122033898305789,-0.000000000000369,-0.012499999999957,0.013559322033874,0.000000000000000,0.000000000000355,0.012499999999957,-0.013559322033860,0.000000000000000,1 +232,237,240,3933,-0.606249999999978,0.128813559321478,-0.612499999999957,0.135593220338617,-0.606249999999978,0.142372881355413,-0.600000000000000,0.135593220338273,-0.000000000000355,-0.012499999999957,-0.013559322033924,-0.000000000000000,0.000000000000333,0.012499999999957,0.013559322033945,0.000000000000000,2 +233,236,238,241,-0.618749999999971,0.128813559321833,-0.612499999999957,0.135593220338617,-0.624999999999985,0.135593220338961,-0.618749999999971,0.142372881355746,-0.000000000000355,-0.012500000000029,0.013559322033924,0.000000000000000,-0.013559322033903,0.000000000000002,0.000000000000333,0.012500000000028,2 +234,237,239,242,-0.631250000000015,0.128813559322187,-0.624999999999985,0.135593220338961,-0.637500000000043,0.135593220339305,-0.631250000000014,0.142372881356079,-0.000000000000355,-0.012500000000057,0.013559322033903,-0.000000000000002,-0.013559322033881,-0.000000000000000,0.000000000000333,0.012500000000059,2 +235,238,243,11869,-0.643750000000022,0.128813559322542,-0.637500000000043,0.135593220339305,-0.643750000000022,0.142372881356412,-0.650000000000000,0.135593220339649,-0.000000000000355,-0.012499999999957,0.013559322033881,0.000000000000000,0.000000000000333,0.012499999999957,-0.013559322033860,0.000000000000000,1 +236,241,244,3934,-0.606249999999978,0.142372881355413,-0.612499999999957,0.149152542372537,-0.606249999999978,0.155932203389337,-0.600000000000000,0.149152542372213,-0.000000000000333,-0.012499999999957,-0.013559322033915,-0.000000000000000,0.000000000000315,0.012499999999957,0.013559322033933,0.000000000000000,2 +237,240,242,245,-0.618749999999971,0.142372881355746,-0.612499999999957,0.149152542372537,-0.624999999999984,0.149152542372861,-0.618749999999970,0.155932203389651,-0.000000000000333,-0.012500000000028,0.013559322033915,0.000000000000000,-0.013559322033896,0.000000000000001,0.000000000000315,0.012500000000026,2 +238,241,243,246,-0.631250000000014,0.142372881356079,-0.624999999999984,0.149152542372861,-0.637500000000043,0.149152542373185,-0.631250000000013,0.155932203389966,-0.000000000000333,-0.012500000000059,0.013559322033896,-0.000000000000001,-0.013559322033878,0.000000000000000,0.000000000000315,0.012500000000060,2 +239,242,247,11869,-0.643750000000022,0.142372881356412,-0.637500000000043,0.149152542373185,-0.643750000000022,0.155932203390281,-0.650000000000000,0.149152542373509,-0.000000000000333,-0.012499999999957,0.013559322033878,-0.000000000000000,0.000000000000315,0.012499999999957,-0.013559322033860,0.000000000000000,1 +240,245,248,3935,-0.606249999999978,0.155932203389337,-0.612499999999957,0.162711864406451,-0.606249999999978,0.169491525423259,-0.600000000000000,0.162711864406145,-0.000000000000315,-0.012499999999957,-0.013559322033913,0.000000000000000,0.000000000000297,0.012499999999957,0.013559322033931,0.000000000000000,2 +241,244,246,249,-0.618749999999970,0.155932203389651,-0.612499999999957,0.162711864406451,-0.624999999999982,0.162711864406757,-0.618749999999969,0.169491525423556,-0.000000000000315,-0.012500000000026,0.013559322033913,-0.000000000000000,-0.013559322033895,0.000000000000001,0.000000000000297,0.012500000000025,2 +242,245,247,250,-0.631250000000013,0.155932203389966,-0.624999999999982,0.162711864406757,-0.637500000000043,0.162711864407062,-0.631250000000013,0.169491525423853,-0.000000000000315,-0.012500000000060,0.013559322033895,-0.000000000000001,-0.013559322033878,-0.000000000000000,0.000000000000297,0.012500000000062,2 +243,246,251,11869,-0.643750000000022,0.155932203390281,-0.637500000000043,0.162711864407062,-0.643750000000022,0.169491525424150,-0.650000000000000,0.162711864407368,-0.000000000000315,-0.012499999999957,0.013559322033878,0.000000000000000,0.000000000000297,0.012499999999957,-0.013559322033860,0.000000000000000,1 +244,249,252,3936,-0.606249999999978,0.169491525423259,-0.612499999999957,0.176271186440370,-0.606249999999978,0.183050847457195,-0.600000000000000,0.176271186440084,-0.000000000000297,-0.012499999999957,-0.013559322033926,-0.000000000000000,0.000000000000275,0.012499999999957,0.013559322033947,0.000000000000000,2 +245,248,250,253,-0.618749999999969,0.169491525423556,-0.612499999999957,0.176271186440370,-0.624999999999981,0.176271186440656,-0.618749999999968,0.183050847457470,-0.000000000000297,-0.012500000000025,0.013559322033926,0.000000000000000,-0.013559322033904,0.000000000000002,0.000000000000275,0.012500000000023,2 +246,249,251,254,-0.631250000000013,0.169491525423853,-0.624999999999981,0.176271186440656,-0.637500000000043,0.176271186440942,-0.631250000000012,0.183050847457745,-0.000000000000297,-0.012500000000062,0.013559322033904,-0.000000000000002,-0.013559322033881,0.000000000000000,0.000000000000275,0.012500000000063,2 +247,250,255,11869,-0.643750000000022,0.169491525424150,-0.637500000000043,0.176271186440942,-0.643750000000022,0.183050847458020,-0.650000000000000,0.176271186441228,-0.000000000000297,-0.012499999999957,0.013559322033881,-0.000000000000000,0.000000000000275,0.012499999999957,-0.013559322033860,0.000000000000000,1 +248,253,256,3937,-0.606249999999978,0.183050847457195,-0.612499999999957,0.189830508474284,-0.606249999999978,0.196610169491105,-0.600000000000000,0.189830508474016,-0.000000000000275,-0.012499999999957,-0.013559322033902,-0.000000000000000,0.000000000000261,0.012499999999957,0.013559322033917,0.000000000000000,2 +249,252,254,257,-0.618749999999968,0.183050847457470,-0.612499999999957,0.189830508474284,-0.624999999999979,0.189830508474552,-0.618749999999968,0.196610169491366,-0.000000000000275,-0.012500000000023,0.013559322033902,0.000000000000000,-0.013559322033888,0.000000000000001,0.000000000000261,0.012500000000022,2 +250,253,255,258,-0.631250000000012,0.183050847457745,-0.624999999999979,0.189830508474552,-0.637500000000043,0.189830508474820,-0.631250000000011,0.196610169491626,-0.000000000000275,-0.012500000000063,0.013559322033888,-0.000000000000001,-0.013559322033874,-0.000000000000000,0.000000000000261,0.012500000000065,2 +251,254,259,11869,-0.643750000000022,0.183050847458020,-0.637500000000043,0.189830508474820,-0.643750000000022,0.196610169491887,-0.650000000000000,0.189830508475088,-0.000000000000275,-0.012499999999957,0.013559322033874,0.000000000000000,0.000000000000261,0.012499999999957,-0.013559322033860,0.000000000000000,1 +252,257,260,3938,-0.606249999999978,0.196610169491105,-0.612499999999957,0.203389830508195,-0.606249999999978,0.210169491525035,-0.600000000000000,0.203389830507945,-0.000000000000261,-0.012499999999957,-0.013559322033920,0.000000000000000,0.000000000000241,0.012499999999957,0.013559322033940,0.000000000000000,2 +253,256,258,261,-0.618749999999968,0.196610169491366,-0.612499999999957,0.203389830508195,-0.624999999999978,0.203389830508446,-0.618749999999967,0.210169491525276,-0.000000000000261,-0.012500000000022,0.013559322033920,-0.000000000000000,-0.013559322033900,0.000000000000001,0.000000000000241,0.012500000000021,2 +254,257,259,262,-0.631250000000011,0.196610169491626,-0.624999999999978,0.203389830508446,-0.637500000000043,0.203389830508697,-0.631250000000010,0.210169491525516,-0.000000000000261,-0.012500000000065,0.013559322033900,-0.000000000000001,-0.013559322033880,-0.000000000000000,0.000000000000241,0.012500000000066,2 +255,258,263,11869,-0.643750000000022,0.196610169491887,-0.637500000000043,0.203389830508697,-0.643750000000022,0.210169491525757,-0.650000000000000,0.203389830508947,-0.000000000000261,-0.012499999999957,0.013559322033880,0.000000000000000,0.000000000000241,0.012499999999957,-0.013559322033860,0.000000000000000,1 +256,261,264,3939,-0.606249999999978,0.210169491525035,-0.612499999999957,0.216949152542109,-0.606249999999978,0.223728813558951,-0.600000000000000,0.216949152541877,-0.000000000000241,-0.012499999999957,-0.013559322033908,-0.000000000000000,0.000000000000224,0.012499999999957,0.013559322033924,0.000000000000000,2 +257,260,262,265,-0.618749999999967,0.210169491525276,-0.612499999999957,0.216949152542109,-0.624999999999976,0.216949152542342,-0.618749999999966,0.223728813559176,-0.000000000000241,-0.012500000000021,0.013559322033908,0.000000000000000,-0.013559322033892,0.000000000000002,0.000000000000225,0.012500000000019,2 +258,261,263,266,-0.631250000000010,0.210169491525516,-0.624999999999976,0.216949152542342,-0.637500000000043,0.216949152542574,-0.631250000000010,0.223728813559400,-0.000000000000241,-0.012500000000066,0.013559322033892,-0.000000000000002,-0.013559322033876,-0.000000000000000,0.000000000000224,0.012500000000068,2 +259,262,267,11869,-0.643750000000022,0.210169491525757,-0.637500000000043,0.216949152542574,-0.643750000000022,0.223728813559625,-0.650000000000000,0.216949152542807,-0.000000000000241,-0.012499999999957,0.013559322033876,0.000000000000000,0.000000000000225,0.012499999999957,-0.013559322033860,0.000000000000000,1 +260,265,268,3940,-0.606249999999978,0.223728813558951,-0.612499999999957,0.230508474576028,-0.606249999999978,0.237288135592893,-0.600000000000000,0.230508474575816,-0.000000000000224,-0.012499999999957,-0.013559322033930,0.000000000000000,0.000000000000201,0.012499999999957,0.013559322033954,0.000000000000000,2 +261,264,266,269,-0.618749999999966,0.223728813559176,-0.612499999999957,0.230508474576028,-0.624999999999975,0.230508474576241,-0.618749999999965,0.237288135593094,-0.000000000000225,-0.012500000000019,0.013559322033930,-0.000000000000000,-0.013559322033907,0.000000000000001,0.000000000000201,0.012500000000018,2 +262,265,267,270,-0.631250000000010,0.223728813559400,-0.624999999999975,0.230508474576241,-0.637500000000043,0.230508474576454,-0.631250000000009,0.237288135593295,-0.000000000000224,-0.012500000000068,0.013559322033907,-0.000000000000001,-0.013559322033883,0.000000000000000,0.000000000000201,0.012500000000069,2 +263,266,271,11869,-0.643750000000022,0.223728813559625,-0.637500000000043,0.230508474576454,-0.643750000000022,0.237288135593496,-0.650000000000000,0.230508474576667,-0.000000000000225,-0.012499999999957,0.013559322033883,-0.000000000000000,0.000000000000201,0.012499999999957,-0.013559322033860,0.000000000000000,1 +264,269,272,3941,-0.606249999999978,0.237288135592893,-0.612499999999957,0.244067796609943,-0.606249999999978,0.250847457626797,-0.600000000000000,0.244067796609748,-0.000000000000201,-0.012499999999957,-0.013559322033898,-0.000000000000000,0.000000000000188,0.012499999999957,0.013559322033910,0.000000000000000,2 +265,268,270,273,-0.618749999999965,0.237288135593094,-0.612499999999957,0.244067796609943,-0.624999999999973,0.244067796610137,-0.618749999999965,0.250847457626986,-0.000000000000201,-0.012500000000018,0.013559322033898,0.000000000000000,-0.013559322033885,0.000000000000002,0.000000000000188,0.012500000000016,2 +266,269,271,274,-0.631250000000009,0.237288135593295,-0.624999999999973,0.244067796610137,-0.637500000000043,0.244067796610332,-0.631250000000008,0.250847457627174,-0.000000000000201,-0.012500000000069,0.013559322033885,-0.000000000000002,-0.013559322033872,-0.000000000000000,0.000000000000188,0.012500000000071,2 +267,270,275,11869,-0.643750000000022,0.237288135593496,-0.637500000000043,0.244067796610332,-0.643750000000022,0.250847457627362,-0.650000000000000,0.244067796610526,-0.000000000000201,-0.012499999999957,0.013559322033872,0.000000000000000,0.000000000000188,0.012499999999957,-0.013559322033860,0.000000000000000,1 +268,273,276,3942,-0.606249999999978,0.250847457626797,-0.612499999999957,0.257627118643857,-0.606249999999978,0.264406779660739,-0.600000000000000,0.257627118643680,-0.000000000000188,-0.012499999999957,-0.013559322033930,0.000000000000000,0.000000000000165,0.012499999999957,0.013559322033954,0.000000000000000,2 +269,272,274,277,-0.618749999999965,0.250847457626986,-0.612499999999957,0.257627118643857,-0.624999999999972,0.257627118644033,-0.618749999999964,0.264406779660904,-0.000000000000188,-0.012500000000016,0.013559322033930,-0.000000000000000,-0.013559322033907,0.000000000000001,0.000000000000165,0.012500000000015,2 +270,273,275,278,-0.631250000000008,0.250847457627174,-0.624999999999972,0.257627118644033,-0.637500000000043,0.257627118644210,-0.631250000000007,0.264406779661069,-0.000000000000188,-0.012500000000071,0.013559322033907,-0.000000000000001,-0.013559322033883,-0.000000000000000,0.000000000000165,0.012500000000072,2 +271,274,279,11869,-0.643750000000022,0.250847457627362,-0.637500000000043,0.257627118644210,-0.643750000000022,0.264406779661234,-0.650000000000000,0.257627118644386,-0.000000000000188,-0.012499999999957,0.013559322033883,0.000000000000000,0.000000000000165,0.012499999999957,-0.013559322033860,0.000000000000000,1 +272,277,280,3943,-0.606249999999978,0.264406779660739,-0.612499999999957,0.271186440677775,-0.606249999999978,0.277966101694653,-0.600000000000000,0.271186440677618,-0.000000000000165,-0.012499999999957,-0.013559322033906,-0.000000000000000,0.000000000000149,0.012499999999957,0.013559322033922,0.000000000000000,2 +273,276,278,281,-0.618749999999964,0.264406779660904,-0.612499999999957,0.271186440677775,-0.624999999999971,0.271186440677932,-0.618749999999963,0.277966101694803,-0.000000000000165,-0.012500000000015,0.013559322033906,0.000000000000000,-0.013559322033891,0.000000000000002,0.000000000000149,0.012500000000013,2 +274,277,279,282,-0.631250000000007,0.264406779661069,-0.624999999999971,0.271186440677932,-0.637500000000043,0.271186440678089,-0.631250000000007,0.277966101694952,-0.000000000000165,-0.012500000000072,0.013559322033891,-0.000000000000002,-0.013559322033875,-0.000000000000000,0.000000000000149,0.012500000000073,2 +275,278,283,11869,-0.643750000000022,0.264406779661234,-0.637500000000043,0.271186440678089,-0.643750000000022,0.277966101695101,-0.650000000000000,0.271186440678246,-0.000000000000165,-0.012499999999957,0.013559322033875,0.000000000000000,0.000000000000149,0.012499999999957,-0.013559322033860,0.000000000000000,1 +276,281,284,3944,-0.606249999999978,0.277966101694653,-0.612499999999957,0.284745762711689,-0.606249999999978,0.291525423728585,-0.600000000000000,0.284745762711550,-0.000000000000149,-0.012499999999957,-0.013559322033922,0.000000000000000,0.000000000000129,0.012499999999957,0.013559322033942,0.000000000000000,2 +277,280,282,285,-0.618749999999963,0.277966101694803,-0.612499999999957,0.284745762711689,-0.624999999999969,0.284745762711828,-0.618749999999962,0.291525423728714,-0.000000000000149,-0.012500000000013,0.013559322033922,-0.000000000000000,-0.013559322033901,0.000000000000002,0.000000000000129,0.012500000000012,2 +278,281,283,286,-0.631250000000007,0.277966101694952,-0.624999999999969,0.284745762711828,-0.637500000000043,0.284745762711967,-0.631250000000006,0.291525423728843,-0.000000000000149,-0.012500000000073,0.013559322033901,-0.000000000000002,-0.013559322033880,0.000000000000000,0.000000000000129,0.012500000000075,2 +279,282,287,11869,-0.643750000000022,0.277966101695101,-0.637500000000043,0.284745762711967,-0.643750000000022,0.291525423728971,-0.650000000000000,0.284745762712106,-0.000000000000149,-0.012499999999957,0.013559322033880,-0.000000000000000,0.000000000000129,0.012499999999957,-0.013559322033860,0.000000000000000,1 +280,285,288,3945,-0.606249999999978,0.291525423728585,-0.612499999999957,0.298305084745611,-0.606249999999978,0.305084745762515,-0.600000000000000,0.298305084745489,-0.000000000000129,-0.012499999999957,-0.013559322033922,-0.000000000000000,0.000000000000114,0.012499999999957,0.013559322033936,0.000000000000000,2 +281,284,286,289,-0.618749999999962,0.291525423728714,-0.612499999999957,0.298305084745611,-0.624999999999968,0.298305084745732,-0.618749999999962,0.305084745762629,-0.000000000000129,-0.012500000000012,0.013559322033922,0.000000000000000,-0.013559322033908,0.000000000000001,0.000000000000114,0.012500000000010,2 +282,285,287,290,-0.631250000000006,0.291525423728843,-0.624999999999968,0.298305084745732,-0.637500000000043,0.298305084745854,-0.631250000000005,0.305084745762743,-0.000000000000129,-0.012500000000075,0.013559322033908,-0.000000000000001,-0.013559322033894,-0.000000000000000,0.000000000000114,0.012500000000076,2 +283,286,291,11869,-0.643750000000022,0.291525423728971,-0.637500000000043,0.298305084745854,-0.643750000000022,0.305084745762858,-0.650000000000000,0.298305084745975,-0.000000000000129,-0.012499999999957,0.013559322033894,0.000000000000000,0.000000000000114,0.012499999999957,-0.013559322033879,0.000000000000000,1 +284,289,292,3946,-0.606249999999978,0.305084745762515,-0.612499999999957,0.311864406779529,-0.606249999999978,0.318644067796436,-0.600000000000000,0.311864406779421,-0.000000000000114,-0.012499999999957,-0.013559322033914,-0.000000000000000,0.000000000000100,0.012499999999957,0.013559322033928,0.000000000000000,2 +285,288,290,293,-0.618749999999962,0.305084745762629,-0.612499999999957,0.311864406779529,-0.624999999999966,0.311864406779636,-0.618749999999961,0.318644067796536,-0.000000000000114,-0.012500000000010,0.013559322033914,0.000000000000000,-0.013559322033900,0.000000000000002,0.000000000000101,0.012500000000009,2 +286,289,291,294,-0.631250000000005,0.305084745762743,-0.624999999999966,0.311864406779636,-0.637500000000043,0.311864406779744,-0.631250000000004,0.318644067796637,-0.000000000000114,-0.012500000000076,0.013559322033900,-0.000000000000002,-0.013559322033886,-0.000000000000000,0.000000000000100,0.012500000000078,2 +287,290,295,11869,-0.643750000000022,0.305084745762858,-0.637500000000043,0.311864406779744,-0.643750000000022,0.318644067796737,-0.650000000000000,0.311864406779851,-0.000000000000114,-0.012499999999957,0.013559322033886,0.000000000000000,0.000000000000100,0.012499999999957,-0.013559322033872,0.000000000000000,1 +288,293,296,3947,-0.606249999999978,0.318644067796436,-0.612499999999957,0.325423728813453,-0.606249999999978,0.332203389830378,-0.600000000000000,0.325423728813361,-0.000000000000100,-0.012499999999957,-0.013559322033934,-0.000000000000000,0.000000000000084,0.012499999999957,0.013559322033950,0.000000000000000,2 +289,292,294,297,-0.618749999999961,0.318644067796536,-0.612499999999957,0.325423728813453,-0.624999999999965,0.325423728813545,-0.618749999999960,0.332203389830461,-0.000000000000101,-0.012500000000009,0.013559322033934,0.000000000000000,-0.013559322033917,0.000000000000002,0.000000000000084,0.012500000000007,2 +290,293,295,298,-0.631250000000004,0.318644067796637,-0.624999999999965,0.325423728813545,-0.637500000000043,0.325423728813637,-0.631250000000004,0.332203389830545,-0.000000000000100,-0.012500000000078,0.013559322033917,-0.000000000000002,-0.013559322033900,-0.000000000000000,0.000000000000084,0.012500000000080,2 +291,294,299,11869,-0.643750000000022,0.318644067796737,-0.637500000000043,0.325423728813637,-0.643750000000022,0.332203389830629,-0.650000000000000,0.325423728813729,-0.000000000000100,-0.012499999999957,0.013559322033900,0.000000000000000,0.000000000000083,0.012499999999957,-0.013559322033883,0.000000000000000,1 +292,297,300,3948,-0.606249999999978,0.332203389830378,-0.612499999999957,0.338983050847371,-0.606249999999978,0.345762711864286,-0.600000000000000,0.338983050847293,-0.000000000000084,-0.012499999999957,-0.013559322033902,-0.000000000000000,0.000000000000072,0.012499999999957,0.013559322033914,0.000000000000000,2 +293,296,298,301,-0.618749999999960,0.332203389830461,-0.612499999999957,0.338983050847371,-0.624999999999963,0.338983050847449,-0.618749999999960,0.345762711864358,-0.000000000000084,-0.012500000000007,0.013559322033902,0.000000000000000,-0.013559322033891,0.000000000000001,0.000000000000072,0.012500000000006,2 +294,297,299,302,-0.631250000000004,0.332203389830545,-0.624999999999963,0.338983050847449,-0.637500000000043,0.338983050847527,-0.631250000000003,0.345762711864431,-0.000000000000084,-0.012500000000080,0.013559322033891,-0.000000000000001,-0.013559322033880,0.000000000000000,0.000000000000072,0.012500000000081,2 +295,298,303,11869,-0.643750000000022,0.332203389830629,-0.637500000000043,0.338983050847527,-0.643750000000022,0.345762711864503,-0.650000000000000,0.338983050847605,-0.000000000000083,-0.012499999999957,0.013559322033880,-0.000000000000000,0.000000000000072,0.012499999999957,-0.013559322033869,0.000000000000000,1 +296,301,304,3949,-0.606249999999978,0.345762711864286,-0.612499999999957,0.352542372881287,-0.606249999999978,0.359322033898228,-0.600000000000000,0.352542372881227,-0.000000000000072,-0.012499999999957,-0.013559322033930,-0.000000000000000,0.000000000000049,0.012499999999957,0.013559322033954,0.000000000000000,2 +297,300,302,305,-0.618749999999960,0.345762711864358,-0.612499999999957,0.352542372881287,-0.624999999999962,0.352542372881348,-0.618749999999959,0.359322033898277,-0.000000000000072,-0.012500000000006,0.013559322033930,0.000000000000000,-0.013559322033907,0.000000000000002,0.000000000000049,0.012500000000004,2 +298,301,303,306,-0.631250000000003,0.345762711864431,-0.624999999999962,0.352542372881348,-0.637500000000043,0.352542372881409,-0.631250000000002,0.359322033898326,-0.000000000000072,-0.012500000000081,0.013559322033907,-0.000000000000002,-0.013559322033883,-0.000000000000000,0.000000000000049,0.012500000000082,2 +299,302,307,11869,-0.643750000000022,0.345762711864503,-0.637500000000043,0.352542372881409,-0.643750000000022,0.359322033898375,-0.650000000000000,0.352542372881469,-0.000000000000072,-0.012499999999957,0.013559322033883,0.000000000000000,0.000000000000049,0.012499999999957,-0.013559322033860,0.000000000000000,1 +300,305,308,3950,-0.606249999999978,0.359322033898228,-0.612499999999957,0.366101694915204,-0.606249999999978,0.372881355932139,-0.600000000000000,0.366101694915163,-0.000000000000049,-0.012499999999957,-0.013559322033903,-0.000000000000000,0.000000000000034,0.012499999999957,0.013559322033918,0.000000000000000,2 +301,304,306,309,-0.618749999999959,0.359322033898277,-0.612499999999957,0.366101694915204,-0.624999999999960,0.366101694915246,-0.618749999999958,0.372881355932173,-0.000000000000049,-0.012500000000004,0.013559322033903,0.000000000000000,-0.013559322033889,0.000000000000001,0.000000000000034,0.012500000000003,2 +302,305,307,310,-0.631250000000002,0.359322033898326,-0.624999999999960,0.366101694915246,-0.637500000000043,0.366101694915287,-0.631250000000001,0.372881355932207,-0.000000000000049,-0.012500000000082,0.013559322033889,-0.000000000000001,-0.013559322033874,-0.000000000000000,0.000000000000034,0.012500000000084,2 +303,306,311,11869,-0.643750000000022,0.359322033898375,-0.637500000000043,0.366101694915287,-0.643750000000022,0.372881355932242,-0.650000000000000,0.366101694915329,-0.000000000000049,-0.012499999999957,0.013559322033874,0.000000000000000,0.000000000000034,0.012499999999957,-0.013559322033860,0.000000000000000,1 +304,309,312,3951,-0.606249999999978,0.372881355932139,-0.612499999999957,0.379661016949118,-0.606249999999978,0.386440677966074,-0.600000000000000,0.379661016949095,-0.000000000000034,-0.012499999999957,-0.013559322033925,-0.000000000000000,0.000000000000013,0.012499999999957,0.013559322033946,0.000000000000000,2 +305,308,310,313,-0.618749999999958,0.372881355932173,-0.612499999999957,0.379661016949118,-0.624999999999959,0.379661016949142,-0.618749999999957,0.386440677966087,-0.000000000000034,-0.012500000000003,0.013559322033925,0.000000000000000,-0.013559322033903,0.000000000000001,0.000000000000013,0.012500000000002,2 +306,309,311,314,-0.631250000000001,0.372881355932207,-0.624999999999959,0.379661016949142,-0.637500000000043,0.379661016949165,-0.631250000000001,0.386440677966100,-0.000000000000034,-0.012500000000084,0.013559322033903,-0.000000000000001,-0.013559322033881,-0.000000000000000,0.000000000000013,0.012500000000085,2 +307,310,315,11869,-0.643750000000022,0.372881355932242,-0.637500000000043,0.379661016949165,-0.643750000000022,0.386440677966112,-0.650000000000000,0.379661016949189,-0.000000000000034,-0.012499999999957,0.013559322033881,0.000000000000000,0.000000000000013,0.012499999999957,-0.013559322033860,0.000000000000000,1 +24,308,313,3952,-0.606249999999978,0.400000000000000,-0.606249999999978,0.386440677966074,-0.612499999999957,0.393220338983040,-0.600000000000000,0.393220338983034,-0.000000000000000,0.012499999999957,-0.000000000000013,-0.012499999999957,-0.013559322033919,0.000000000000000,0.013559322033932,-0.000000000000000,2 +25,309,312,314,-0.618749999999957,0.400000000000000,-0.618749999999957,0.386440677966087,-0.612499999999957,0.393220338983040,-0.624999999999957,0.393220338983047,-0.000000000000000,0.012500000000000,-0.000000000000013,-0.012500000000002,0.013559322033919,-0.000000000000000,-0.013559322033907,0.000000000000002,2 +26,310,313,315,-0.631250000000000,0.400000000000000,-0.631250000000001,0.386440677966100,-0.624999999999957,0.393220338983047,-0.637500000000043,0.393220338983053,-0.000000000000000,0.012500000000087,-0.000000000000013,-0.012500000000085,0.013559322033907,-0.000000000000002,-0.013559322033894,0.000000000000000,2 +27,311,314,11869,-0.643750000000022,0.400000000000000,-0.643750000000022,0.386440677966112,-0.637500000000043,0.393220338983053,-0.650000000000000,0.393220338983059,0.000000000000000,0.012499999999957,-0.000000000000013,-0.012499999999957,0.013559322033894,-0.000000000000000,-0.013559322033881,0.000000000000000,1 +317,320,392,4345,-0.612499999999957,-0.592857142857128,-0.606249999999978,-0.585714285714256,-0.606249999999978,-0.600000000000000,-0.600000000000000,-0.592857142857127,-0.014285714285743,-0.000000000000000,-0.000000000000002,0.012499999999957,0.000000000000000,-0.012499999999957,0.014285714285745,0.000000000000000,2 +316,318,321,393,-0.612499999999957,-0.592857142857128,-0.625000000000043,-0.592857142857129,-0.618750000000000,-0.585714285714257,-0.618750000000000,-0.600000000000000,0.014285714285743,0.000000000000000,-0.014285714285742,-0.000000000000000,-0.000000000000002,0.012500000000087,-0.000000000000000,-0.012500000000087,2 +317,319,322,394,-0.625000000000043,-0.592857142857129,-0.637500000000043,-0.592857142857130,-0.631250000000043,-0.585714285714259,-0.631250000000043,-0.600000000000000,0.014285714285742,0.000000000000000,-0.014285714285740,-0.000000000000000,-0.000000000000002,0.012500000000000,-0.000000000000000,-0.012500000000000,2 +318,323,395,11869,-0.637500000000043,-0.592857142857130,-0.643750000000022,-0.585714285714261,-0.643750000000022,-0.600000000000000,-0.650000000000000,-0.592857142857131,0.014285714285740,0.000000000000000,-0.000000000000002,0.012499999999957,-0.000000000000000,-0.012499999999957,-0.014285714285738,-0.000000000000000,1 +316,321,324,4346,-0.606249999999978,-0.585714285714256,-0.612499999999957,-0.578571428571393,-0.606249999999978,-0.571428571428534,-0.600000000000000,-0.578571428571396,0.000000000000002,-0.012499999999957,-0.014285714285726,-0.000000000000000,0.000000000000007,0.012499999999957,0.014285714285717,0.000000000000000,2 +317,320,322,325,-0.618750000000000,-0.585714285714257,-0.612499999999957,-0.578571428571393,-0.625000000000044,-0.578571428571391,-0.618750000000000,-0.571428571428527,0.000000000000002,-0.012500000000087,0.014285714285726,0.000000000000000,-0.014285714285735,-0.000000000000000,0.000000000000007,0.012500000000087,2 +318,321,323,326,-0.631250000000043,-0.585714285714259,-0.625000000000044,-0.578571428571391,-0.637500000000043,-0.578571428571388,-0.631250000000043,-0.571428571428520,0.000000000000002,-0.012500000000000,0.014285714285735,0.000000000000000,-0.014285714285744,-0.000000000000000,0.000000000000007,0.012500000000000,2 +319,322,327,11869,-0.643750000000022,-0.585714285714261,-0.637500000000043,-0.578571428571388,-0.643750000000022,-0.571428571428513,-0.650000000000000,-0.578571428571386,0.000000000000002,-0.012499999999957,0.014285714285744,0.000000000000000,0.000000000000007,0.012499999999957,-0.014285714285753,0.000000000000000,1 +320,325,328,4347,-0.606249999999978,-0.571428571428534,-0.612499999999957,-0.564285714285682,-0.606249999999978,-0.557142857142847,-0.600000000000000,-0.564285714285699,-0.000000000000007,-0.012499999999957,-0.014285714285697,-0.000000000000000,0.000000000000027,0.012499999999957,0.014285714285677,0.000000000000000,2 +321,324,326,329,-0.618750000000000,-0.571428571428527,-0.612499999999957,-0.564285714285682,-0.625000000000044,-0.564285714285665,-0.618750000000000,-0.557142857142820,-0.000000000000007,-0.012500000000087,0.014285714285697,0.000000000000000,-0.014285714285717,0.000000000000000,0.000000000000027,0.012500000000087,2 +322,325,327,330,-0.631250000000043,-0.571428571428520,-0.625000000000044,-0.564285714285665,-0.637500000000043,-0.564285714285648,-0.631250000000043,-0.557142857142793,-0.000000000000007,-0.012500000000000,0.014285714285717,-0.000000000000000,-0.014285714285736,-0.000000000000000,0.000000000000027,0.012500000000000,2 +323,326,331,11869,-0.643750000000022,-0.571428571428513,-0.637500000000043,-0.564285714285648,-0.643750000000022,-0.557142857142767,-0.650000000000000,-0.564285714285631,-0.000000000000007,-0.012499999999957,0.014285714285736,0.000000000000000,0.000000000000027,0.012499999999957,-0.014285714285756,0.000000000000000,1 +324,329,332,4348,-0.606249999999978,-0.557142857142847,-0.612499999999957,-0.549999999999985,-0.606249999999978,-0.542857142857160,-0.600000000000000,-0.550000000000022,-0.000000000000027,-0.012499999999957,-0.014285714285697,-0.000000000000000,0.000000000000047,0.012499999999957,0.014285714285677,0.000000000000000,2 +325,328,330,333,-0.618750000000000,-0.557142857142820,-0.612499999999957,-0.549999999999985,-0.625000000000044,-0.549999999999948,-0.618750000000000,-0.542857142857113,-0.000000000000027,-0.012500000000087,0.014285714285697,0.000000000000000,-0.014285714285717,0.000000000000000,0.000000000000047,0.012500000000087,2 +326,329,331,334,-0.631250000000043,-0.557142857142793,-0.625000000000044,-0.549999999999948,-0.637500000000043,-0.549999999999912,-0.631250000000043,-0.542857142857067,-0.000000000000027,-0.012500000000000,0.014285714285717,-0.000000000000000,-0.014285714285736,-0.000000000000000,0.000000000000046,0.012500000000000,2 +327,330,335,11869,-0.643750000000022,-0.557142857142767,-0.637500000000043,-0.549999999999912,-0.643750000000022,-0.542857142857020,-0.650000000000000,-0.549999999999875,-0.000000000000027,-0.012499999999957,0.014285714285736,0.000000000000000,0.000000000000046,0.012499999999957,-0.014285714285756,0.000000000000000,1 +328,333,336,4349,-0.606249999999978,-0.542857142857160,-0.612499999999957,-0.535714285714289,-0.606249999999978,-0.528571428571474,-0.600000000000000,-0.535714285714345,-0.000000000000047,-0.012499999999957,-0.014285714285695,-0.000000000000000,0.000000000000065,0.012499999999957,0.014285714285677,0.000000000000000,2 +329,332,334,337,-0.618750000000000,-0.542857142857113,-0.612499999999957,-0.535714285714289,-0.625000000000044,-0.535714285714233,-0.618750000000000,-0.528571428571409,-0.000000000000047,-0.012500000000087,0.014285714285695,0.000000000000000,-0.014285714285713,-0.000000000000000,0.000000000000065,0.012500000000087,2 +330,333,335,338,-0.631250000000043,-0.542857142857067,-0.625000000000044,-0.535714285714233,-0.637500000000043,-0.535714285714178,-0.631250000000043,-0.528571428571344,-0.000000000000046,-0.012500000000000,0.014285714285713,0.000000000000000,-0.014285714285732,-0.000000000000000,0.000000000000065,0.012500000000000,2 +331,334,339,11869,-0.643750000000022,-0.542857142857020,-0.637500000000043,-0.535714285714178,-0.643750000000022,-0.528571428571279,-0.650000000000000,-0.535714285714122,-0.000000000000046,-0.012499999999957,0.014285714285732,0.000000000000000,0.000000000000065,0.012499999999957,-0.014285714285750,0.000000000000000,1 +332,337,340,4350,-0.606249999999978,-0.528571428571474,-0.612499999999957,-0.521428571428624,-0.606249999999978,-0.514285714285859,-0.600000000000000,-0.521428571428709,-0.000000000000065,-0.012499999999957,-0.014285714285635,0.000000000000000,0.000000000000106,0.012499999999957,0.014285714285593,0.000000000000000,2 +333,336,338,341,-0.618750000000000,-0.528571428571409,-0.612499999999957,-0.521428571428624,-0.625000000000044,-0.521428571428538,-0.618750000000000,-0.514285714285753,-0.000000000000065,-0.012500000000087,0.014285714285635,-0.000000000000000,-0.014285714285676,0.000000000000000,0.000000000000106,0.012500000000087,2 +334,337,339,342,-0.631250000000043,-0.528571428571344,-0.625000000000044,-0.521428571428538,-0.637500000000043,-0.521428571428453,-0.631250000000043,-0.514285714285647,-0.000000000000065,-0.012500000000000,0.014285714285676,-0.000000000000000,-0.014285714285718,0.000000000000000,0.000000000000106,0.012500000000000,2 +335,338,343,11869,-0.643750000000022,-0.528571428571279,-0.637500000000043,-0.521428571428453,-0.643750000000022,-0.514285714285541,-0.650000000000000,-0.521428571428368,-0.000000000000065,-0.012499999999957,0.014285714285718,-0.000000000000000,0.000000000000106,0.012499999999957,-0.014285714285759,0.000000000000000,1 +336,341,344,4351,-0.606249999999978,-0.514285714285859,-0.612499999999957,-0.507142857142983,-0.606249999999978,-0.500000000000226,-0.600000000000000,-0.507142857143103,-0.000000000000106,-0.012499999999957,-0.014285714285647,-0.000000000000000,0.000000000000133,0.012499999999957,0.014285714285620,0.000000000000000,2 +337,340,342,345,-0.618750000000000,-0.514285714285753,-0.612499999999957,-0.507142857142983,-0.625000000000043,-0.507142857142863,-0.618750000000000,-0.500000000000093,-0.000000000000106,-0.012500000000087,0.014285714285647,0.000000000000000,-0.014285714285673,-0.000000000000000,0.000000000000133,0.012500000000087,2 +338,341,343,346,-0.631250000000043,-0.514285714285647,-0.625000000000043,-0.507142857142863,-0.637500000000043,-0.507142857142744,-0.631250000000043,-0.499999999999960,-0.000000000000106,-0.012500000000000,0.014285714285673,0.000000000000000,-0.014285714285700,-0.000000000000000,0.000000000000133,0.012500000000000,2 +339,342,347,11869,-0.643750000000022,-0.514285714285541,-0.637500000000043,-0.507142857142744,-0.643750000000022,-0.499999999999828,-0.650000000000000,-0.507142857142625,-0.000000000000106,-0.012499999999957,0.014285714285700,0.000000000000000,0.000000000000133,0.012499999999957,-0.014285714285727,0.000000000000000,1 +340,345,348,4352,-0.606249999999978,-0.500000000000226,-0.612499999999957,-0.492857142857293,-0.606249999999978,-0.485714285714488,-0.600000000000000,-0.492857142857421,-0.000000000000133,-0.012499999999957,-0.014285714285733,-0.000000000000000,0.000000000000122,0.012499999999957,0.014285714285744,0.000000000000000,2 +341,344,346,349,-0.618750000000000,-0.500000000000093,-0.612499999999957,-0.492857142857293,-0.625000000000043,-0.492857142857165,-0.618750000000000,-0.485714285714365,-0.000000000000133,-0.012500000000087,0.014285714285733,0.000000000000000,-0.014285714285722,-0.000000000000000,0.000000000000122,0.012500000000087,2 +342,345,347,350,-0.631250000000043,-0.499999999999960,-0.625000000000043,-0.492857142857165,-0.637500000000043,-0.492857142857038,-0.631250000000043,-0.485714285714243,-0.000000000000133,-0.012500000000000,0.014285714285722,0.000000000000000,-0.014285714285712,-0.000000000000000,0.000000000000123,0.012500000000000,2 +343,346,351,11869,-0.643750000000022,-0.499999999999828,-0.637500000000043,-0.492857142857038,-0.643750000000022,-0.485714285714121,-0.650000000000000,-0.492857142856910,-0.000000000000133,-0.012499999999957,0.014285714285712,0.000000000000000,0.000000000000122,0.012499999999957,-0.014285714285702,0.000000000000000,1 +344,349,352,4353,-0.606249999999978,-0.485714285714488,-0.612499999999957,-0.478571428571560,-0.606249999999978,-0.471428571428744,-0.600000000000000,-0.478571428571672,-0.000000000000122,-0.012499999999957,-0.014285714285733,-0.000000000000000,0.000000000000101,0.012499999999957,0.014285714285754,0.000000000000000,2 +345,348,350,353,-0.618750000000000,-0.485714285714365,-0.612499999999957,-0.478571428571560,-0.625000000000043,-0.478571428571448,-0.618750000000000,-0.471428571428643,-0.000000000000122,-0.012500000000087,0.014285714285733,0.000000000000000,-0.014285714285712,0.000000000000000,0.000000000000101,0.012500000000087,2 +346,349,351,354,-0.631250000000043,-0.485714285714243,-0.625000000000043,-0.478571428571448,-0.637500000000043,-0.478571428571336,-0.631250000000043,-0.471428571428542,-0.000000000000123,-0.012500000000000,0.014285714285712,-0.000000000000000,-0.014285714285691,-0.000000000000000,0.000000000000101,0.012500000000000,2 +347,350,355,11869,-0.643750000000022,-0.485714285714121,-0.637500000000043,-0.478571428571336,-0.643750000000022,-0.471428571428441,-0.650000000000000,-0.478571428571225,-0.000000000000122,-0.012499999999957,0.014285714285691,0.000000000000000,0.000000000000101,0.012499999999957,-0.014285714285669,0.000000000000000,1 +348,353,356,4354,-0.606249999999978,-0.471428571428744,-0.612499999999957,-0.464285714285824,-0.606249999999978,-0.457142857142995,-0.600000000000000,-0.464285714285914,-0.000000000000101,-0.012499999999957,-0.014285714285738,-0.000000000000000,0.000000000000078,0.012499999999957,0.014285714285761,0.000000000000000,2 +349,352,354,357,-0.618750000000000,-0.471428571428643,-0.612499999999957,-0.464285714285824,-0.625000000000043,-0.464285714285735,-0.618750000000000,-0.457142857142916,-0.000000000000101,-0.012500000000087,0.014285714285738,0.000000000000000,-0.014285714285715,-0.000000000000000,0.000000000000078,0.012500000000087,2 +350,353,355,358,-0.631250000000043,-0.471428571428542,-0.625000000000043,-0.464285714285735,-0.637500000000043,-0.464285714285645,-0.631250000000043,-0.457142857142838,-0.000000000000101,-0.012500000000000,0.014285714285715,0.000000000000000,-0.014285714285692,-0.000000000000000,0.000000000000078,0.012500000000000,2 +351,354,359,11869,-0.643750000000022,-0.471428571428441,-0.637500000000043,-0.464285714285645,-0.643750000000022,-0.457142857142760,-0.650000000000000,-0.464285714285555,-0.000000000000101,-0.012499999999957,0.014285714285692,0.000000000000000,0.000000000000078,0.012499999999957,-0.014285714285669,0.000000000000000,1 +352,357,360,4355,-0.606249999999978,-0.457142857142995,-0.612499999999957,-0.450000000000085,-0.606249999999978,-0.442857142857243,-0.600000000000000,-0.450000000000152,-0.000000000000078,-0.012499999999957,-0.014285714285740,0.000000000000000,0.000000000000055,0.012499999999957,0.014285714285764,0.000000000000000,2 +353,356,358,361,-0.618750000000000,-0.457142857142916,-0.612499999999957,-0.450000000000085,-0.625000000000043,-0.450000000000019,-0.618750000000000,-0.442857142857188,-0.000000000000078,-0.012500000000087,0.014285714285740,-0.000000000000000,-0.014285714285717,-0.000000000000000,0.000000000000055,0.012500000000087,2 +354,357,359,362,-0.631250000000043,-0.457142857142838,-0.625000000000043,-0.450000000000019,-0.637500000000043,-0.449999999999952,-0.631250000000043,-0.442857142857133,-0.000000000000078,-0.012500000000000,0.014285714285717,0.000000000000000,-0.014285714285693,-0.000000000000000,0.000000000000054,0.012500000000000,2 +355,358,363,11869,-0.643750000000022,-0.457142857142760,-0.637500000000043,-0.449999999999952,-0.643750000000022,-0.442857142857079,-0.650000000000000,-0.449999999999886,-0.000000000000078,-0.012499999999957,0.014285714285693,0.000000000000000,0.000000000000055,0.012499999999956,-0.014285714285669,0.000000000000000,1 +356,361,364,4356,-0.606249999999978,-0.442857142857243,-0.612499999999957,-0.435714285714346,-0.606249999999978,-0.428571428571493,-0.600000000000000,-0.435714285714389,-0.000000000000055,-0.012499999999957,-0.014285714285738,-0.000000000000000,0.000000000000032,0.012499999999957,0.014285714285761,0.000000000000000,2 +357,360,362,365,-0.618750000000000,-0.442857142857188,-0.612499999999957,-0.435714285714346,-0.625000000000044,-0.435714285714303,-0.618750000000000,-0.428571428571461,-0.000000000000055,-0.012500000000087,0.014285714285738,0.000000000000000,-0.014285714285715,-0.000000000000000,0.000000000000032,0.012500000000087,2 +358,361,363,366,-0.631250000000043,-0.442857142857133,-0.625000000000044,-0.435714285714303,-0.637500000000043,-0.435714285714260,-0.631250000000043,-0.428571428571430,-0.000000000000054,-0.012500000000000,0.014285714285715,0.000000000000000,-0.014285714285692,0.000000000000000,0.000000000000032,0.012500000000000,2 +359,362,367,11869,-0.643750000000022,-0.442857142857079,-0.637500000000043,-0.435714285714260,-0.643750000000022,-0.428571428571398,-0.650000000000000,-0.435714285714217,-0.000000000000055,-0.012499999999956,0.014285714285692,-0.000000000000000,0.000000000000032,0.012499999999957,-0.014285714285669,0.000000000000000,1 +360,365,368,4357,-0.606249999999978,-0.428571428571493,-0.612499999999957,-0.421428571428606,-0.606249999999978,-0.414285714285745,-0.600000000000000,-0.421428571428633,-0.000000000000032,-0.012499999999957,-0.014285714285743,-0.000000000000000,0.000000000000022,0.012499999999957,0.014285714285753,0.000000000000000,2 +361,364,366,369,-0.618750000000000,-0.428571428571461,-0.612499999999957,-0.421428571428606,-0.625000000000043,-0.421428571428579,-0.618750000000000,-0.414285714285723,-0.000000000000032,-0.012500000000087,0.014285714285743,0.000000000000000,-0.014285714285733,0.000000000000000,0.000000000000022,0.012500000000087,2 +362,365,367,370,-0.631250000000043,-0.428571428571430,-0.625000000000043,-0.421428571428579,-0.637500000000043,-0.421428571428552,-0.631250000000043,-0.414285714285702,-0.000000000000032,-0.012500000000000,0.014285714285733,-0.000000000000000,-0.014285714285723,-0.000000000000000,0.000000000000022,0.012500000000000,2 +363,366,371,11869,-0.643750000000022,-0.428571428571398,-0.637500000000043,-0.421428571428552,-0.643750000000022,-0.414285714285680,-0.650000000000000,-0.421428571428526,-0.000000000000032,-0.012499999999957,0.014285714285723,0.000000000000000,0.000000000000022,0.012499999999957,-0.014285714285713,0.000000000000000,1 +80,364,369,4358,-0.606249999999978,-0.400000000000000,-0.606249999999978,-0.414285714285745,-0.612499999999957,-0.407142857142867,-0.600000000000000,-0.407142857142878,-0.000000000000000,0.012499999999957,-0.000000000000022,-0.012499999999957,-0.014285714285734,0.000000000000000,0.014285714285756,-0.000000000000000,2 +81,365,368,370,-0.618750000000000,-0.400000000000000,-0.618750000000000,-0.414285714285723,-0.612499999999957,-0.407142857142867,-0.625000000000043,-0.407142857142856,0.000000000000000,0.012500000000087,-0.000000000000022,-0.012500000000087,0.014285714285734,-0.000000000000000,-0.014285714285713,-0.000000000000000,2 +82,366,369,371,-0.631250000000043,-0.400000000000000,-0.631250000000043,-0.414285714285702,-0.625000000000043,-0.407142857142856,-0.637500000000043,-0.407142857142845,0.000000000000000,0.012500000000000,-0.000000000000022,-0.012500000000000,0.014285714285713,0.000000000000000,-0.014285714285691,0.000000000000000,2 +83,367,370,11869,-0.643750000000022,-0.400000000000000,-0.643750000000022,-0.414285714285680,-0.637500000000043,-0.407142857142845,-0.650000000000000,-0.407142857142835,0.000000000000000,0.012499999999957,-0.000000000000022,-0.012499999999957,0.014285714285691,-0.000000000000000,-0.014285714285669,0.000000000000000,1 +373,376,396,11869,-0.612499999999957,-0.645833333333359,-0.606249999999978,-0.641666666666717,-0.600000000000000,-0.645833333333359,-0.606249999999978,-0.650000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,0.012499999999956,0.008333333333283,0.000000000000000,0.000000000000000,-0.012499999999957,1 +372,374,377,11869,-0.612499999999957,-0.645833333333359,-0.625000000000043,-0.645833333333359,-0.618750000000000,-0.641666666666717,-0.618750000000000,-0.650000000000000,0.008333333333283,-0.000000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.012500000000087,-0.000000000000000,-0.012500000000087,1 +373,375,378,11869,-0.625000000000043,-0.645833333333359,-0.637500000000043,-0.645833333333359,-0.631250000000043,-0.641666666666717,-0.631250000000043,-0.650000000000000,0.008333333333283,0.000000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.012500000000000,-0.000000000000000,-0.012500000000000,1 +374,379,11869,-0.637500000000043,-0.645833333333359,-0.643750000000022,-0.641666666666717,-0.650000000000000,-0.645833333333359,0.008333333333283,0.000000000000000,0.000000000000000,0.012499999999957,-0.008333333333283,-0.000000000000000,1 +372,377,380,397,-0.606249999999978,-0.641666666666717,-0.612499999999957,-0.637500000000021,-0.606249999999978,-0.633333333333326,-0.600000000000000,-0.637500000000022,0.000000000000000,-0.012499999999956,-0.008333333333391,-0.000000000000000,0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,2 +373,376,378,381,-0.618750000000000,-0.641666666666717,-0.612499999999957,-0.637500000000021,-0.625000000000044,-0.637500000000021,-0.618750000000000,-0.633333333333326,0.000000000000000,-0.012500000000087,0.008333333333391,0.000000000000000,-0.008333333333391,-0.000000000000000,-0.000000000000000,0.012500000000087,2 +374,377,379,382,-0.631250000000043,-0.641666666666717,-0.625000000000044,-0.637500000000021,-0.637500000000043,-0.637500000000022,-0.631250000000043,-0.633333333333326,0.000000000000000,-0.012500000000000,0.008333333333391,0.000000000000000,-0.008333333333391,-0.000000000000000,-0.000000000000000,0.012500000000000,2 +375,378,383,11869,-0.643750000000022,-0.641666666666717,-0.637500000000043,-0.637500000000022,-0.643750000000022,-0.633333333333326,-0.650000000000000,-0.637500000000022,-0.000000000000000,-0.012499999999957,0.008333333333391,0.000000000000000,-0.000000000000000,0.012499999999957,-0.008333333333391,0.000000000000000,1 +376,381,384,398,-0.606249999999978,-0.633333333333326,-0.612499999999957,-0.629166666666674,-0.606249999999978,-0.625000000000033,-0.600000000000000,-0.629166666666685,-0.000000000000000,-0.012499999999957,-0.008333333333304,-0.000000000000000,0.000000000000022,0.012499999999957,0.008333333333283,0.000000000000000,2 +377,380,382,385,-0.618750000000000,-0.633333333333326,-0.612499999999957,-0.629166666666674,-0.625000000000044,-0.629166666666663,-0.618750000000000,-0.625000000000011,0.000000000000000,-0.012500000000087,0.008333333333304,0.000000000000000,-0.008333333333326,0.000000000000000,0.000000000000022,0.012500000000087,2 +378,381,383,386,-0.631250000000043,-0.633333333333326,-0.625000000000044,-0.629166666666663,-0.637500000000043,-0.629166666666652,-0.631250000000043,-0.624999999999989,0.000000000000000,-0.012500000000000,0.008333333333326,-0.000000000000000,-0.008333333333348,0.000000000000000,0.000000000000022,0.012500000000000,2 +379,382,387,11869,-0.643750000000022,-0.633333333333326,-0.637500000000043,-0.629166666666652,-0.643750000000022,-0.624999999999967,-0.650000000000000,-0.629166666666641,0.000000000000000,-0.012499999999957,0.008333333333348,-0.000000000000000,0.000000000000022,0.012499999999957,-0.008333333333369,0.000000000000000,1 +380,385,388,399,-0.606249999999978,-0.625000000000033,-0.612499999999957,-0.620833333333348,-0.606249999999978,-0.616666666666674,-0.600000000000000,-0.620833333333359,-0.000000000000022,-0.012499999999957,-0.008333333333348,-0.000000000000000,-0.000000000000000,0.012499999999957,0.008333333333369,0.000000000000000,2 +381,384,386,389,-0.618750000000000,-0.625000000000011,-0.612499999999957,-0.620833333333348,-0.625000000000044,-0.620833333333337,-0.618750000000000,-0.616666666666674,-0.000000000000022,-0.012500000000087,0.008333333333348,0.000000000000000,-0.008333333333326,-0.000000000000000,0.000000000000000,0.012500000000087,2 +382,385,387,390,-0.631250000000043,-0.624999999999989,-0.625000000000044,-0.620833333333337,-0.637500000000043,-0.620833333333326,-0.631250000000043,-0.616666666666674,-0.000000000000022,-0.012500000000000,0.008333333333326,0.000000000000000,-0.008333333333304,-0.000000000000000,0.000000000000000,0.012500000000000,2 +383,386,391,11869,-0.643750000000022,-0.624999999999967,-0.637500000000043,-0.620833333333326,-0.643750000000022,-0.616666666666674,-0.650000000000000,-0.620833333333315,-0.000000000000022,-0.012499999999957,0.008333333333304,0.000000000000000,0.000000000000000,0.012499999999957,-0.008333333333283,0.000000000000000,1 +384,389,392,400,-0.606249999999978,-0.616666666666674,-0.612499999999957,-0.612499999999979,-0.606249999999978,-0.608333333333283,-0.600000000000000,-0.612499999999978,0.000000000000000,-0.012499999999957,-0.008333333333391,0.000000000000000,-0.000000000000000,0.012499999999956,0.008333333333391,0.000000000000000,2 +385,388,390,393,-0.618750000000000,-0.616666666666674,-0.612499999999957,-0.612499999999979,-0.625000000000044,-0.612499999999979,-0.618750000000000,-0.608333333333283,-0.000000000000000,-0.012500000000087,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000000,-0.000000000000000,0.012500000000087,2 +386,389,391,394,-0.631250000000043,-0.616666666666674,-0.625000000000044,-0.612499999999979,-0.637500000000043,-0.612499999999978,-0.631250000000043,-0.608333333333283,-0.000000000000000,-0.012500000000000,0.008333333333391,-0.000000000000000,-0.008333333333391,-0.000000000000000,0.000000000000000,0.012500000000000,2 +387,390,395,11869,-0.643750000000022,-0.616666666666674,-0.637500000000043,-0.612499999999978,-0.643750000000022,-0.608333333333283,-0.650000000000000,-0.612499999999978,-0.000000000000000,-0.012499999999957,0.008333333333391,0.000000000000000,0.000000000000000,0.012499999999957,-0.008333333333391,0.000000000000000,1 +316,388,393,401,-0.606249999999978,-0.600000000000000,-0.606249999999978,-0.608333333333283,-0.612499999999957,-0.604166666666641,-0.600000000000000,-0.604166666666641,-0.000000000000000,0.012499999999957,0.000000000000000,-0.012499999999956,-0.008333333333283,-0.000000000000000,0.008333333333283,-0.000000000000000,2 +317,389,392,394,-0.618750000000000,-0.600000000000000,-0.618750000000000,-0.608333333333283,-0.612499999999957,-0.604166666666641,-0.625000000000043,-0.604166666666641,0.000000000000000,0.012500000000087,0.000000000000000,-0.012500000000087,0.008333333333283,0.000000000000000,-0.008333333333283,0.000000000000000,2 +318,390,393,395,-0.631250000000043,-0.600000000000000,-0.631250000000043,-0.608333333333283,-0.625000000000043,-0.604166666666641,-0.637500000000043,-0.604166666666641,0.000000000000000,0.012500000000000,-0.000000000000000,-0.012500000000000,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000000,2 +319,391,394,11869,-0.643750000000022,-0.600000000000000,-0.643750000000022,-0.608333333333283,-0.637500000000043,-0.604166666666641,-0.650000000000000,-0.604166666666641,0.000000000000000,0.012499999999957,-0.000000000000000,-0.012499999999957,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000000,1 +372,397,402,11869,-0.600000000000000,-0.645833333333359,-0.593103448275874,-0.641666666666717,-0.586206896551755,-0.645833333333359,-0.593103448275881,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448252,0.008333333333283,-0.000000000000014,-0.000000000000000,-0.013793103448238,1 +376,396,398,403,-0.600000000000000,-0.637500000000022,-0.593103448275874,-0.641666666666717,-0.593103448275867,-0.633333333333326,-0.586206896551741,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448266,0.008333333333391,-0.000000000000014,2 +380,397,399,404,-0.600000000000000,-0.629166666666685,-0.593103448275867,-0.633333333333326,-0.593103448275860,-0.625000000000044,-0.586206896551727,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448280,0.008333333333283,-0.000000000000014,2 +384,398,400,405,-0.600000000000000,-0.620833333333359,-0.593103448275860,-0.625000000000044,-0.593103448275853,-0.616666666666674,-0.586206896551713,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448294,0.008333333333370,-0.000000000000014,2 +388,399,401,406,-0.600000000000000,-0.612499999999978,-0.593103448275853,-0.616666666666674,-0.593103448275846,-0.608333333333283,-0.586206896551699,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448308,0.008333333333391,-0.000000000000014,2 +392,400,407,4345,-0.600000000000000,-0.604166666666641,-0.593103448275846,-0.608333333333283,-0.586206896551685,-0.604166666666641,-0.593103448275839,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448308,0.008333333333283,-0.000000000000014,0.000000000000000,0.013793103448322,2 +396,403,408,11869,-0.586206896551755,-0.645833333333359,-0.579310344827623,-0.641666666666717,-0.572413793103511,-0.645833333333359,-0.579310344827643,-0.650000000000000,-0.008333333333283,0.000000000000014,0.000000000000000,0.013793103448251,0.008333333333283,-0.000000000000028,-0.000000000000000,-0.013793103448238,1 +397,402,404,409,-0.586206896551741,-0.637500000000022,-0.579310344827623,-0.641666666666717,-0.579310344827602,-0.633333333333326,-0.572413793103483,-0.637500000000022,-0.008333333333391,0.000000000000014,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448264,0.008333333333391,-0.000000000000027,2 +398,403,405,410,-0.586206896551727,-0.629166666666685,-0.579310344827602,-0.633333333333326,-0.579310344827581,-0.625000000000044,-0.572413793103456,-0.629166666666685,-0.008333333333283,0.000000000000014,-0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448278,0.008333333333283,-0.000000000000027,2 +399,404,406,411,-0.586206896551713,-0.620833333333359,-0.579310344827581,-0.625000000000044,-0.579310344827560,-0.616666666666674,-0.572413793103429,-0.620833333333359,-0.008333333333370,0.000000000000014,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448291,0.008333333333369,-0.000000000000027,2 +400,405,407,412,-0.586206896551699,-0.612499999999978,-0.579310344827560,-0.616666666666674,-0.579310344827540,-0.608333333333283,-0.572413793103401,-0.612499999999978,-0.008333333333391,0.000000000000014,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448305,0.008333333333391,-0.000000000000028,2 +401,406,413,4331,-0.586206896551685,-0.604166666666641,-0.579310344827540,-0.608333333333283,-0.572413793103374,-0.604166666666641,-0.579310344827519,-0.600000000000000,-0.008333333333283,0.000000000000014,-0.000000000000000,-0.013793103448305,0.008333333333283,-0.000000000000027,-0.000000000000000,0.013793103448318,2 +402,409,414,11869,-0.572413793103511,-0.645833333333359,-0.565517241379372,-0.641666666666717,-0.558620689655267,-0.645833333333359,-0.565517241379406,-0.650000000000000,-0.008333333333283,0.000000000000028,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000039,-0.000000000000000,-0.013793103448238,1 +403,408,410,415,-0.572413793103483,-0.637500000000022,-0.565517241379372,-0.641666666666717,-0.565517241379339,-0.633333333333326,-0.558620689655228,-0.637500000000022,-0.008333333333391,0.000000000000027,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000039,2 +404,409,411,416,-0.572413793103456,-0.629166666666685,-0.565517241379339,-0.633333333333326,-0.565517241379306,-0.625000000000043,-0.558620689655189,-0.629166666666685,-0.008333333333283,0.000000000000027,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000039,2 +405,410,412,417,-0.572413793103429,-0.620833333333359,-0.565517241379306,-0.625000000000043,-0.565517241379272,-0.616666666666674,-0.558620689655149,-0.620833333333359,-0.008333333333369,0.000000000000027,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448286,0.008333333333369,-0.000000000000040,2 +406,411,413,418,-0.572413793103401,-0.612499999999978,-0.565517241379272,-0.616666666666674,-0.565517241379239,-0.608333333333283,-0.558620689655110,-0.612499999999978,-0.008333333333391,0.000000000000028,0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000039,2 +407,412,419,4317,-0.572413793103374,-0.604166666666641,-0.565517241379239,-0.608333333333283,-0.558620689655071,-0.604166666666641,-0.565517241379205,-0.600000000000000,-0.008333333333283,0.000000000000027,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000039,-0.000000000000000,0.013793103448309,2 +408,415,420,11869,-0.558620689655267,-0.645833333333359,-0.551724137931123,-0.641666666666717,-0.544827586207024,-0.645833333333359,-0.551724137931168,-0.650000000000000,-0.008333333333283,0.000000000000039,0.000000000000000,0.013793103448248,0.008333333333283,-0.000000000000050,-0.000000000000000,-0.013793103448238,1 +409,414,416,421,-0.558620689655228,-0.637500000000022,-0.551724137931123,-0.641666666666717,-0.551724137931079,-0.633333333333326,-0.544827586206974,-0.637500000000022,-0.008333333333391,0.000000000000039,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448259,0.008333333333391,-0.000000000000050,2 +410,415,417,422,-0.558620689655189,-0.629166666666685,-0.551724137931079,-0.633333333333326,-0.551724137931034,-0.625000000000043,-0.544827586206924,-0.629166666666685,-0.008333333333283,0.000000000000039,0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448270,0.008333333333283,-0.000000000000050,2 +411,416,418,423,-0.558620689655149,-0.620833333333359,-0.551724137931034,-0.625000000000043,-0.551724137930989,-0.616666666666674,-0.544827586206874,-0.620833333333359,-0.008333333333369,0.000000000000040,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448280,0.008333333333369,-0.000000000000050,2 +412,417,419,424,-0.558620689655110,-0.612499999999978,-0.551724137930989,-0.616666666666674,-0.551724137930945,-0.608333333333283,-0.544827586206824,-0.612499999999978,-0.008333333333391,0.000000000000039,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448291,0.008333333333391,-0.000000000000050,2 +413,418,425,4303,-0.558620689655071,-0.604166666666641,-0.551724137930945,-0.608333333333283,-0.544827586206774,-0.604166666666641,-0.551724137930900,-0.600000000000000,-0.008333333333283,0.000000000000039,-0.000000000000000,-0.013793103448291,0.008333333333283,-0.000000000000050,-0.000000000000000,0.013793103448302,2 +414,421,426,11869,-0.544827586207024,-0.645833333333359,-0.537931034482875,-0.641666666666717,-0.531034482758782,-0.645833333333359,-0.537931034482930,-0.650000000000000,-0.008333333333283,0.000000000000050,0.000000000000000,0.013793103448247,0.008333333333283,-0.000000000000060,-0.000000000000000,-0.013793103448238,1 +415,420,422,427,-0.544827586206974,-0.637500000000022,-0.537931034482875,-0.641666666666717,-0.537931034482820,-0.633333333333326,-0.531034482758722,-0.637500000000022,-0.008333333333391,0.000000000000050,-0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448257,0.008333333333391,-0.000000000000060,2 +416,421,423,428,-0.544827586206924,-0.629166666666685,-0.537931034482820,-0.633333333333326,-0.537931034482766,-0.625000000000044,-0.531034482758662,-0.629166666666685,-0.008333333333283,0.000000000000050,-0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448267,0.008333333333283,-0.000000000000060,2 +417,422,424,429,-0.544827586206874,-0.620833333333359,-0.537931034482766,-0.625000000000044,-0.537931034482711,-0.616666666666674,-0.531034482758602,-0.620833333333359,-0.008333333333369,0.000000000000050,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000060,2 +418,423,425,430,-0.544827586206824,-0.612499999999978,-0.537931034482711,-0.616666666666674,-0.537931034482656,-0.608333333333283,-0.531034482758542,-0.612499999999978,-0.008333333333391,0.000000000000050,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448287,0.008333333333391,-0.000000000000060,2 +419,424,431,4289,-0.544827586206774,-0.604166666666641,-0.537931034482656,-0.608333333333283,-0.531034482758483,-0.604166666666641,-0.537931034482601,-0.600000000000000,-0.008333333333283,0.000000000000050,-0.000000000000000,-0.013793103448287,0.008333333333283,-0.000000000000060,-0.000000000000000,0.013793103448296,2 +420,427,432,11869,-0.531034482758782,-0.645833333333359,-0.524137931034627,-0.641666666666717,-0.517241379310538,-0.645833333333359,-0.524137931034693,-0.650000000000000,-0.008333333333283,0.000000000000060,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000071,-0.000000000000000,-0.013793103448238,1 +421,426,428,433,-0.531034482758722,-0.637500000000022,-0.524137931034627,-0.641666666666717,-0.524137931034561,-0.633333333333326,-0.517241379310467,-0.637500000000022,-0.008333333333391,0.000000000000060,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000071,2 +422,427,429,434,-0.531034482758662,-0.629166666666685,-0.524137931034561,-0.633333333333326,-0.524137931034496,-0.625000000000043,-0.517241379310395,-0.629166666666685,-0.008333333333283,0.000000000000060,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000071,2 +423,428,430,435,-0.531034482758602,-0.620833333333359,-0.524137931034496,-0.625000000000043,-0.524137931034430,-0.616666666666674,-0.517241379310324,-0.620833333333359,-0.008333333333369,0.000000000000060,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448284,0.008333333333369,-0.000000000000071,2 +424,429,431,436,-0.531034482758542,-0.612499999999978,-0.524137931034430,-0.616666666666674,-0.524137931034365,-0.608333333333283,-0.517241379310252,-0.612499999999978,-0.008333333333391,0.000000000000060,0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448296,0.008333333333391,-0.000000000000071,2 +425,430,437,4275,-0.531034482758483,-0.604166666666641,-0.524137931034365,-0.608333333333283,-0.517241379310181,-0.604166666666641,-0.524137931034299,-0.600000000000000,-0.008333333333283,0.000000000000060,-0.000000000000000,-0.013793103448296,0.008333333333283,-0.000000000000071,-0.000000000000000,0.013793103448308,2 +426,433,438,11869,-0.517241379310538,-0.645833333333359,-0.510344827586377,-0.641666666666717,-0.503448275862294,-0.645833333333359,-0.510344827586455,-0.650000000000000,-0.008333333333283,0.000000000000071,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000084,-0.000000000000000,-0.013793103448238,1 +427,432,434,439,-0.517241379310467,-0.637500000000022,-0.510344827586377,-0.641666666666717,-0.510344827586300,-0.633333333333326,-0.503448275862211,-0.637500000000022,-0.008333333333391,0.000000000000071,-0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000084,2 +428,433,435,440,-0.517241379310395,-0.629166666666685,-0.510344827586300,-0.633333333333326,-0.510344827586222,-0.625000000000043,-0.503448275862127,-0.629166666666685,-0.008333333333283,0.000000000000071,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448275,0.008333333333283,-0.000000000000084,2 +429,434,436,441,-0.517241379310324,-0.620833333333359,-0.510344827586222,-0.625000000000043,-0.510344827586145,-0.616666666666674,-0.503448275862043,-0.620833333333359,-0.008333333333369,0.000000000000071,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448287,0.008333333333369,-0.000000000000084,2 +430,435,437,442,-0.517241379310252,-0.612499999999978,-0.510344827586145,-0.616666666666674,-0.510344827586067,-0.608333333333283,-0.503448275861959,-0.612499999999978,-0.008333333333391,0.000000000000071,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000083,2 +431,436,443,4261,-0.517241379310181,-0.604166666666641,-0.510344827586067,-0.608333333333283,-0.503448275861876,-0.604166666666641,-0.510344827585989,-0.600000000000000,-0.008333333333283,0.000000000000071,-0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000084,-0.000000000000000,0.013793103448311,2 +432,439,444,11869,-0.503448275862294,-0.645833333333359,-0.496551724138125,-0.641666666666717,-0.489655172414048,-0.645833333333359,-0.496551724138217,-0.650000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,0.013793103448254,0.008333333333283,-0.000000000000100,-0.000000000000000,-0.013793103448238,1 +433,438,440,445,-0.503448275862211,-0.637500000000022,-0.496551724138125,-0.641666666666717,-0.496551724138033,-0.633333333333326,-0.489655172413948,-0.637500000000022,-0.008333333333391,0.000000000000084,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448271,0.008333333333391,-0.000000000000100,2 +434,439,441,446,-0.503448275862127,-0.629166666666685,-0.496551724138033,-0.633333333333326,-0.496551724137942,-0.625000000000043,-0.489655172413848,-0.629166666666685,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448287,0.008333333333283,-0.000000000000100,2 +435,440,442,447,-0.503448275862043,-0.620833333333359,-0.496551724137942,-0.625000000000043,-0.496551724137850,-0.616666666666674,-0.489655172413748,-0.620833333333359,-0.008333333333369,0.000000000000084,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448303,0.008333333333369,-0.000000000000100,2 +436,441,443,448,-0.503448275861959,-0.612499999999978,-0.496551724137850,-0.616666666666674,-0.496551724137758,-0.608333333333283,-0.489655172413648,-0.612499999999978,-0.008333333333391,0.000000000000083,-0.000000000000000,-0.013793103448303,0.000000000000000,0.013793103448320,0.008333333333391,-0.000000000000100,2 +437,442,449,4247,-0.503448275861876,-0.604166666666641,-0.496551724137758,-0.608333333333283,-0.489655172413548,-0.604166666666641,-0.496551724137666,-0.600000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448320,0.008333333333283,-0.000000000000100,-0.000000000000000,0.013793103448336,2 +438,445,450,11869,-0.489655172414048,-0.645833333333359,-0.482758620689873,-0.641666666666717,-0.475862068965804,-0.645833333333359,-0.482758620689980,-0.650000000000000,-0.008333333333283,0.000000000000100,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000113,-0.000000000000000,-0.013793103448238,1 +439,444,446,451,-0.489655172413948,-0.637500000000022,-0.482758620689873,-0.641666666666717,-0.482758620689767,-0.633333333333326,-0.475862068965692,-0.637500000000022,-0.008333333333391,0.000000000000100,-0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000113,2 +440,445,447,452,-0.489655172413848,-0.629166666666685,-0.482758620689767,-0.633333333333326,-0.482758620689661,-0.625000000000043,-0.475862068965579,-0.629166666666685,-0.008333333333283,0.000000000000100,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448275,0.008333333333283,-0.000000000000112,2 +441,446,448,453,-0.489655172413748,-0.620833333333359,-0.482758620689661,-0.625000000000043,-0.482758620689554,-0.616666666666674,-0.475862068965467,-0.620833333333359,-0.008333333333369,0.000000000000100,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448288,0.008333333333369,-0.000000000000113,2 +442,447,449,454,-0.489655172413648,-0.612499999999978,-0.482758620689554,-0.616666666666674,-0.482758620689448,-0.608333333333283,-0.475862068965354,-0.612499999999978,-0.008333333333391,0.000000000000100,-0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448300,0.008333333333391,-0.000000000000113,2 +443,448,455,4233,-0.489655172413548,-0.604166666666641,-0.482758620689448,-0.608333333333283,-0.475862068965242,-0.604166666666641,-0.482758620689341,-0.600000000000000,-0.008333333333283,0.000000000000100,-0.000000000000000,-0.013793103448300,0.008333333333283,-0.000000000000113,-0.000000000000000,0.013793103448313,2 +444,451,456,11869,-0.475862068965804,-0.645833333333359,-0.468965517241623,-0.641666666666717,-0.462068965517561,-0.645833333333359,-0.468965517241742,-0.650000000000000,-0.008333333333283,0.000000000000113,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000125,-0.000000000000000,-0.013793103448238,1 +445,450,452,457,-0.475862068965692,-0.637500000000022,-0.468965517241623,-0.641666666666717,-0.468965517241505,-0.633333333333326,-0.462068965517436,-0.637500000000022,-0.008333333333391,0.000000000000113,-0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000125,2 +446,451,453,458,-0.475862068965579,-0.629166666666685,-0.468965517241505,-0.633333333333326,-0.468965517241386,-0.625000000000043,-0.462068965517312,-0.629166666666685,-0.008333333333283,0.000000000000112,-0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000124,2 +447,452,454,459,-0.475862068965467,-0.620833333333359,-0.468965517241386,-0.625000000000043,-0.468965517241268,-0.616666666666674,-0.462068965517187,-0.620833333333359,-0.008333333333369,0.000000000000113,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448285,0.008333333333369,-0.000000000000124,2 +448,453,455,460,-0.475862068965354,-0.612499999999978,-0.468965517241268,-0.616666666666674,-0.468965517241149,-0.608333333333283,-0.462068965517063,-0.612499999999978,-0.008333333333391,0.000000000000113,0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000125,2 +449,454,461,4219,-0.475862068965242,-0.604166666666641,-0.468965517241149,-0.608333333333283,-0.462068965516938,-0.604166666666641,-0.468965517241031,-0.600000000000000,-0.008333333333283,0.000000000000113,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000124,-0.000000000000000,0.013793103448309,2 +450,457,462,11869,-0.462068965517561,-0.645833333333359,-0.455172413793374,-0.641666666666717,-0.448275862069317,-0.645833333333359,-0.455172413793504,-0.650000000000000,-0.008333333333283,0.000000000000125,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000136,-0.000000000000000,-0.013793103448238,1 +451,456,458,463,-0.462068965517436,-0.637500000000022,-0.455172413793374,-0.641666666666717,-0.455172413793243,-0.633333333333326,-0.448275862069181,-0.637500000000022,-0.008333333333391,0.000000000000125,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000137,2 +452,457,459,464,-0.462068965517312,-0.629166666666685,-0.455172413793243,-0.633333333333326,-0.455172413793113,-0.625000000000043,-0.448275862069044,-0.629166666666685,-0.008333333333283,0.000000000000124,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000136,2 +453,458,460,465,-0.462068965517187,-0.620833333333359,-0.455172413793113,-0.625000000000043,-0.455172413792982,-0.616666666666674,-0.448275862068908,-0.620833333333359,-0.008333333333369,0.000000000000124,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448285,0.008333333333369,-0.000000000000136,2 +454,459,461,466,-0.462068965517063,-0.612499999999978,-0.455172413792982,-0.616666666666674,-0.455172413792852,-0.608333333333283,-0.448275862068772,-0.612499999999978,-0.008333333333391,0.000000000000125,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000137,2 +455,460,467,4205,-0.462068965516938,-0.604166666666641,-0.455172413792852,-0.608333333333283,-0.448275862068635,-0.604166666666641,-0.455172413792722,-0.600000000000000,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000136,-0.000000000000000,0.013793103448309,2 +456,463,468,11869,-0.448275862069317,-0.645833333333359,-0.441379310345124,-0.641666666666717,-0.434482758621073,-0.645833333333359,-0.441379310345266,-0.650000000000000,-0.008333333333283,0.000000000000136,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000148,-0.000000000000000,-0.013793103448238,1 +457,462,464,469,-0.448275862069181,-0.637500000000022,-0.441379310345124,-0.641666666666717,-0.441379310344982,-0.633333333333326,-0.434482758620925,-0.637500000000022,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000148,2 +458,463,465,470,-0.448275862069044,-0.629166666666685,-0.441379310344982,-0.633333333333326,-0.441379310344839,-0.625000000000043,-0.434482758620777,-0.629166666666685,-0.008333333333283,0.000000000000136,0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000148,2 +459,464,466,471,-0.448275862068908,-0.620833333333359,-0.441379310344839,-0.625000000000043,-0.441379310344697,-0.616666666666674,-0.434482758620628,-0.620833333333359,-0.008333333333369,0.000000000000136,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448285,0.008333333333369,-0.000000000000148,2 +460,465,467,472,-0.448275862068772,-0.612499999999978,-0.441379310344697,-0.616666666666674,-0.441379310344555,-0.608333333333283,-0.434482758620480,-0.612499999999979,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000148,2 +461,466,473,4191,-0.448275862068635,-0.604166666666641,-0.441379310344555,-0.608333333333283,-0.434482758620332,-0.604166666666641,-0.441379310344412,-0.600000000000000,-0.008333333333283,0.000000000000136,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000148,-0.000000000000000,0.013793103448310,2 +462,469,474,11869,-0.434482758621073,-0.645833333333359,-0.427586206896874,-0.641666666666717,-0.420689655172829,-0.645833333333359,-0.427586206897029,-0.650000000000000,-0.008333333333283,0.000000000000148,-0.000000000000000,0.013793103448251,0.008333333333283,-0.000000000000161,-0.000000000000000,-0.013793103448238,1 +463,468,470,475,-0.434482758620925,-0.637500000000022,-0.427586206896874,-0.641666666666717,-0.427586206896719,-0.633333333333326,-0.420689655172668,-0.637500000000022,-0.008333333333391,0.000000000000148,0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448264,0.008333333333391,-0.000000000000161,2 +464,469,471,476,-0.434482758620777,-0.629166666666685,-0.427586206896719,-0.633333333333326,-0.427586206896564,-0.625000000000044,-0.420689655172507,-0.629166666666685,-0.008333333333283,0.000000000000148,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448277,0.008333333333283,-0.000000000000161,2 +465,470,472,477,-0.434482758620628,-0.620833333333359,-0.427586206896564,-0.625000000000044,-0.427586206896409,-0.616666666666674,-0.420689655172345,-0.620833333333359,-0.008333333333369,0.000000000000148,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448290,0.008333333333369,-0.000000000000161,2 +466,471,473,478,-0.434482758620480,-0.612499999999979,-0.427586206896409,-0.616666666666674,-0.427586206896255,-0.608333333333283,-0.420689655172184,-0.612499999999978,-0.008333333333391,0.000000000000148,0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448303,0.008333333333391,-0.000000000000161,2 +467,472,479,4177,-0.434482758620332,-0.604166666666641,-0.427586206896255,-0.608333333333283,-0.420689655172023,-0.604166666666641,-0.427586206896100,-0.600000000000000,-0.008333333333283,0.000000000000148,-0.000000000000000,-0.013793103448303,0.008333333333283,-0.000000000000161,-0.000000000000000,0.013793103448315,2 +468,475,480,11869,-0.420689655172829,-0.645833333333359,-0.413793103448623,-0.641666666666717,-0.406896551724585,-0.645833333333359,-0.413793103448791,-0.650000000000000,-0.008333333333283,0.000000000000161,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000174,-0.000000000000000,-0.013793103448238,1 +469,474,476,481,-0.420689655172668,-0.637500000000022,-0.413793103448623,-0.641666666666717,-0.413793103448456,-0.633333333333326,-0.406896551724411,-0.637500000000022,-0.008333333333391,0.000000000000161,-0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000174,2 +470,475,477,482,-0.420689655172507,-0.629166666666685,-0.413793103448456,-0.633333333333326,-0.413793103448288,-0.625000000000044,-0.406896551724237,-0.629166666666685,-0.008333333333283,0.000000000000161,-0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448275,0.008333333333283,-0.000000000000174,2 +471,476,478,483,-0.420689655172345,-0.620833333333359,-0.413793103448288,-0.625000000000044,-0.413793103448121,-0.616666666666674,-0.406896551724064,-0.620833333333359,-0.008333333333369,0.000000000000161,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448288,0.008333333333370,-0.000000000000174,2 +472,477,479,484,-0.420689655172184,-0.612499999999978,-0.413793103448121,-0.616666666666674,-0.413793103447953,-0.608333333333283,-0.406896551723890,-0.612499999999978,-0.008333333333391,0.000000000000161,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000174,2 +473,478,485,4163,-0.420689655172023,-0.604166666666641,-0.413793103447953,-0.608333333333283,-0.406896551723716,-0.604166666666641,-0.413793103447786,-0.600000000000000,-0.008333333333283,0.000000000000161,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000174,-0.000000000000000,0.013793103448313,2 +474,481,486,11869,-0.406896551724585,-0.645833333333359,-0.400000000000365,-0.641666666666717,-0.393103448276320,-0.645833333333359,-0.400000000000540,-0.650000000000000,-0.008333333333283,0.000000000000174,0.000000000000000,0.013793103448267,0.008333333333283,-0.000000000000177,-0.000000000000000,-0.013793103448264,1 +475,480,482,487,-0.406896551724411,-0.637500000000022,-0.400000000000365,-0.641666666666717,-0.400000000000189,-0.633333333333326,-0.393103448276143,-0.637500000000022,-0.008333333333391,0.000000000000174,-0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448270,0.008333333333391,-0.000000000000177,2 +476,481,483,488,-0.406896551724237,-0.629166666666685,-0.400000000000189,-0.633333333333326,-0.400000000000014,-0.625000000000043,-0.393103448275966,-0.629166666666685,-0.008333333333283,0.000000000000174,0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000177,2 +477,482,484,489,-0.406896551724064,-0.620833333333359,-0.400000000000014,-0.625000000000043,-0.399999999999838,-0.616666666666674,-0.393103448275789,-0.620833333333359,-0.008333333333370,0.000000000000174,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000177,2 +478,483,485,490,-0.406896551723890,-0.612499999999978,-0.399999999999838,-0.616666666666674,-0.399999999999663,-0.608333333333283,-0.393103448275612,-0.612499999999978,-0.008333333333391,0.000000000000174,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448280,0.008333333333391,-0.000000000000177,2 +479,484,491,4149,-0.406896551723716,-0.604166666666641,-0.399999999999663,-0.608333333333283,-0.393103448275434,-0.604166666666641,-0.399999999999487,-0.600000000000000,-0.008333333333283,0.000000000000174,-0.000000000000000,-0.013793103448280,0.008333333333283,-0.000000000000177,-0.000000000000000,0.013793103448283,2 +480,487,492,11869,-0.393103448276320,-0.645833333333359,-0.386206896552082,-0.641666666666717,-0.379310344828014,-0.645833333333359,-0.386206896552252,-0.650000000000000,-0.008333333333283,0.000000000000177,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000164,-0.000000000000000,-0.013793103448312,1 +481,486,488,493,-0.393103448276143,-0.637500000000022,-0.386206896552082,-0.641666666666717,-0.386206896551911,-0.633333333333326,-0.379310344827850,-0.637500000000022,-0.008333333333391,0.000000000000177,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000164,2 +482,487,489,494,-0.393103448275966,-0.629166666666685,-0.386206896551911,-0.633333333333326,-0.386206896551740,-0.625000000000043,-0.379310344827686,-0.629166666666685,-0.008333333333283,0.000000000000177,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000164,2 +483,488,490,495,-0.393103448275789,-0.620833333333359,-0.386206896551740,-0.625000000000043,-0.386206896551570,-0.616666666666674,-0.379310344827521,-0.620833333333359,-0.008333333333369,0.000000000000177,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448261,0.008333333333369,-0.000000000000164,2 +484,489,491,496,-0.393103448275612,-0.612499999999978,-0.386206896551570,-0.616666666666674,-0.386206896551399,-0.608333333333283,-0.379310344827357,-0.612499999999978,-0.008333333333391,0.000000000000177,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000164,2 +485,490,497,4135,-0.393103448275434,-0.604166666666641,-0.386206896551399,-0.608333333333283,-0.379310344827193,-0.604166666666641,-0.386206896551228,-0.600000000000000,-0.008333333333283,0.000000000000177,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000164,-0.000000000000000,0.013793103448235,2 +486,493,498,11869,-0.379310344828014,-0.645833333333359,-0.372413793103778,-0.641666666666717,-0.365517241379699,-0.645833333333359,-0.372413793103935,-0.650000000000000,-0.008333333333283,0.000000000000164,0.000000000000000,0.013793103448308,0.008333333333283,-0.000000000000150,-0.000000000000000,-0.013793103448323,1 +487,492,494,499,-0.379310344827850,-0.637500000000022,-0.372413793103778,-0.641666666666717,-0.372413793103621,-0.633333333333326,-0.365517241379549,-0.637500000000022,-0.008333333333391,0.000000000000164,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448294,0.008333333333391,-0.000000000000150,2 +488,493,495,500,-0.379310344827686,-0.629166666666685,-0.372413793103621,-0.633333333333326,-0.372413793103464,-0.625000000000043,-0.365517241379400,-0.629166666666685,-0.008333333333283,0.000000000000164,0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448279,0.008333333333283,-0.000000000000150,2 +489,494,496,501,-0.379310344827521,-0.620833333333359,-0.372413793103464,-0.625000000000043,-0.372413793103307,-0.616666666666674,-0.365517241379250,-0.620833333333359,-0.008333333333369,0.000000000000164,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448264,0.008333333333369,-0.000000000000150,2 +490,495,497,502,-0.379310344827357,-0.612499999999978,-0.372413793103307,-0.616666666666674,-0.372413793103150,-0.608333333333283,-0.365517241379100,-0.612499999999978,-0.008333333333391,0.000000000000164,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000150,2 +491,496,503,4121,-0.379310344827193,-0.604166666666641,-0.372413793103150,-0.608333333333283,-0.365517241378951,-0.604166666666641,-0.372413793102993,-0.600000000000000,-0.008333333333283,0.000000000000164,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000150,-0.000000000000000,0.013793103448235,2 +492,499,504,11869,-0.365517241379699,-0.645833333333359,-0.358620689655475,-0.641666666666717,-0.351724137931394,-0.645833333333359,-0.358620689655618,-0.650000000000000,-0.008333333333283,0.000000000000150,-0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000137,-0.000000000000000,-0.013793103448312,1 +493,498,500,505,-0.365517241379549,-0.637500000000022,-0.358620689655475,-0.641666666666717,-0.358620689655331,-0.633333333333326,-0.351724137931257,-0.637500000000022,-0.008333333333391,0.000000000000150,0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000137,2 +494,499,501,506,-0.365517241379400,-0.629166666666685,-0.358620689655331,-0.633333333333326,-0.358620689655188,-0.625000000000043,-0.351724137931120,-0.629166666666685,-0.008333333333283,0.000000000000150,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000137,2 +495,500,502,507,-0.365517241379250,-0.620833333333359,-0.358620689655188,-0.625000000000043,-0.358620689655045,-0.616666666666674,-0.351724137930983,-0.620833333333359,-0.008333333333369,0.000000000000150,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448261,0.008333333333369,-0.000000000000137,2 +496,501,503,508,-0.365517241379100,-0.612499999999978,-0.358620689655045,-0.616666666666674,-0.358620689654901,-0.608333333333283,-0.351724137930846,-0.612499999999978,-0.008333333333391,0.000000000000150,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000137,2 +497,502,509,4107,-0.365517241378951,-0.604166666666641,-0.358620689654901,-0.608333333333283,-0.351724137930709,-0.604166666666641,-0.358620689654758,-0.600000000000000,-0.008333333333283,0.000000000000150,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000137,-0.000000000000000,0.013793103448235,2 +498,505,510,11869,-0.351724137931394,-0.645833333333359,-0.344827586207176,-0.641666666666717,-0.337931034483088,-0.645833333333359,-0.344827586207306,-0.650000000000000,-0.008333333333283,0.000000000000137,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000124,-0.000000000000000,-0.013793103448312,1 +499,504,506,511,-0.351724137931257,-0.637500000000022,-0.344827586207176,-0.641666666666717,-0.344827586207045,-0.633333333333326,-0.337931034482964,-0.637500000000022,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000124,2 +500,505,507,512,-0.351724137931120,-0.629166666666685,-0.344827586207045,-0.633333333333326,-0.344827586206915,-0.625000000000043,-0.337931034482840,-0.629166666666685,-0.008333333333283,0.000000000000137,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000124,2 +501,506,508,513,-0.351724137930983,-0.620833333333359,-0.344827586206915,-0.625000000000043,-0.344827586206784,-0.616666666666674,-0.337931034482716,-0.620833333333359,-0.008333333333369,0.000000000000137,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333369,-0.000000000000124,2 +502,507,509,514,-0.351724137930846,-0.612499999999978,-0.344827586206784,-0.616666666666674,-0.344827586206653,-0.608333333333283,-0.337931034482592,-0.612499999999978,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000124,2 +503,508,515,4093,-0.351724137930709,-0.604166666666641,-0.344827586206653,-0.608333333333283,-0.337931034482468,-0.604166666666641,-0.344827586206523,-0.600000000000000,-0.008333333333283,0.000000000000137,0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000124,-0.000000000000000,0.013793103448235,2 +504,511,516,11869,-0.337931034483088,-0.645833333333359,-0.331034482758877,-0.641666666666717,-0.324137931034783,-0.645833333333359,-0.331034482758994,-0.650000000000000,-0.008333333333283,0.000000000000124,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000111,-0.000000000000000,-0.013793103448312,1 +505,510,512,517,-0.337931034482964,-0.637500000000022,-0.331034482758877,-0.641666666666717,-0.331034482758759,-0.633333333333326,-0.324137931034671,-0.637500000000022,-0.008333333333391,0.000000000000124,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000111,2 +506,511,513,518,-0.337931034482840,-0.629166666666685,-0.331034482758759,-0.633333333333326,-0.331034482758641,-0.625000000000043,-0.324137931034560,-0.629166666666685,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000111,2 +507,512,514,519,-0.337931034482716,-0.620833333333359,-0.331034482758641,-0.625000000000043,-0.331034482758523,-0.616666666666674,-0.324137931034449,-0.620833333333359,-0.008333333333369,0.000000000000124,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448261,0.008333333333369,-0.000000000000111,2 +508,513,515,520,-0.337931034482592,-0.612499999999978,-0.331034482758523,-0.616666666666674,-0.331034482758406,-0.608333333333283,-0.324137931034337,-0.612499999999978,-0.008333333333391,0.000000000000124,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000111,2 +509,514,521,4079,-0.337931034482468,-0.604166666666641,-0.331034482758406,-0.608333333333283,-0.324137931034226,-0.604166666666641,-0.331034482758288,-0.600000000000000,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000111,-0.000000000000000,0.013793103448235,2 +510,517,522,11869,-0.324137931034783,-0.645833333333359,-0.317241379310576,-0.641666666666717,-0.310344827586474,-0.645833333333359,-0.317241379310681,-0.650000000000000,-0.008333333333283,0.000000000000111,0.000000000000000,0.013793103448302,0.008333333333283,-0.000000000000098,-0.000000000000000,-0.013793103448315,1 +511,516,518,523,-0.324137931034671,-0.637500000000022,-0.317241379310576,-0.641666666666717,-0.317241379310472,-0.633333333333326,-0.310344827586376,-0.637500000000022,-0.008333333333391,0.000000000000111,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448288,0.008333333333391,-0.000000000000098,2 +512,517,519,524,-0.324137931034560,-0.629166666666685,-0.317241379310472,-0.633333333333326,-0.317241379310367,-0.625000000000043,-0.310344827586278,-0.629166666666685,-0.008333333333283,0.000000000000111,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448275,0.008333333333283,-0.000000000000098,2 +513,518,520,525,-0.324137931034449,-0.620833333333359,-0.317241379310367,-0.625000000000043,-0.317241379310262,-0.616666666666674,-0.310344827586180,-0.620833333333359,-0.008333333333369,0.000000000000111,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448262,0.008333333333369,-0.000000000000098,2 +514,519,521,526,-0.324137931034337,-0.612499999999978,-0.317241379310262,-0.616666666666674,-0.317241379310158,-0.608333333333283,-0.310344827586082,-0.612499999999978,-0.008333333333391,0.000000000000111,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000098,2 +515,520,527,4065,-0.324137931034226,-0.604166666666641,-0.317241379310158,-0.608333333333283,-0.310344827585984,-0.604166666666641,-0.317241379310053,-0.600000000000000,-0.008333333333283,0.000000000000111,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000098,-0.000000000000000,0.013793103448235,2 +516,523,528,11869,-0.310344827586474,-0.645833333333359,-0.303448275862273,-0.641666666666717,-0.296551724138163,-0.645833333333359,-0.303448275862364,-0.650000000000000,-0.008333333333283,0.000000000000098,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000084,-0.000000000000000,-0.013793103448318,1 +517,522,524,529,-0.310344827586376,-0.637500000000022,-0.303448275862273,-0.641666666666717,-0.303448275862182,-0.633333333333326,-0.296551724138079,-0.637500000000022,-0.008333333333391,0.000000000000098,-0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448291,0.008333333333391,-0.000000000000084,2 +518,523,525,530,-0.310344827586278,-0.629166666666685,-0.303448275862182,-0.633333333333326,-0.303448275862091,-0.625000000000043,-0.296551724137995,-0.629166666666685,-0.008333333333283,0.000000000000098,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448277,0.008333333333283,-0.000000000000084,2 +519,524,526,531,-0.310344827586180,-0.620833333333359,-0.303448275862091,-0.625000000000043,-0.303448275862000,-0.616666666666674,-0.296551724137911,-0.620833333333359,-0.008333333333369,0.000000000000098,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448263,0.008333333333369,-0.000000000000084,2 +520,525,527,532,-0.310344827586082,-0.612499999999978,-0.303448275862000,-0.616666666666674,-0.303448275861909,-0.608333333333283,-0.296551724137826,-0.612499999999978,-0.008333333333391,0.000000000000098,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000084,2 +521,526,533,4051,-0.310344827585984,-0.604166666666641,-0.303448275861909,-0.608333333333283,-0.296551724137742,-0.604166666666641,-0.303448275861818,-0.600000000000000,-0.008333333333283,0.000000000000098,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000084,-0.000000000000000,0.013793103448235,2 +522,529,534,11869,-0.296551724138163,-0.645833333333359,-0.289655172413969,-0.641666666666717,-0.282758620689852,-0.645833333333359,-0.289655172414046,-0.650000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000070,-0.000000000000000,-0.013793103448318,1 +523,528,530,535,-0.296551724138079,-0.637500000000022,-0.289655172413969,-0.641666666666717,-0.289655172413892,-0.633333333333326,-0.282758620689782,-0.637500000000022,-0.008333333333391,0.000000000000084,0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448290,0.008333333333391,-0.000000000000070,2 +524,529,531,536,-0.296551724137995,-0.629166666666685,-0.289655172413892,-0.633333333333326,-0.289655172413814,-0.625000000000043,-0.282758620689711,-0.629166666666685,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448277,0.008333333333283,-0.000000000000070,2 +525,530,532,537,-0.296551724137911,-0.620833333333359,-0.289655172413814,-0.625000000000043,-0.289655172413737,-0.616666666666674,-0.282758620689641,-0.620833333333359,-0.008333333333369,0.000000000000084,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448263,0.008333333333369,-0.000000000000070,2 +526,531,533,538,-0.296551724137826,-0.612499999999978,-0.289655172413737,-0.616666666666674,-0.289655172413660,-0.608333333333283,-0.282758620689570,-0.612499999999978,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000070,2 +527,532,539,4037,-0.296551724137742,-0.604166666666641,-0.289655172413660,-0.608333333333283,-0.282758620689500,-0.604166666666641,-0.289655172413583,-0.600000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000070,-0.000000000000000,0.013793103448235,2 +528,535,540,11869,-0.282758620689852,-0.645833333333359,-0.275862068965665,-0.641666666666717,-0.268965517241541,-0.645833333333359,-0.275862068965729,-0.650000000000000,-0.008333333333283,0.000000000000070,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000057,-0.000000000000000,-0.013793103448317,1 +529,534,536,541,-0.282758620689782,-0.637500000000022,-0.275862068965665,-0.641666666666717,-0.275862068965601,-0.633333333333326,-0.268965517241485,-0.637500000000022,-0.008333333333391,0.000000000000070,-0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448290,0.008333333333391,-0.000000000000057,2 +530,535,537,542,-0.282758620689711,-0.629166666666685,-0.275862068965601,-0.633333333333326,-0.275862068965538,-0.625000000000043,-0.268965517241428,-0.629166666666685,-0.008333333333283,0.000000000000070,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448276,0.008333333333283,-0.000000000000057,2 +531,536,538,543,-0.282758620689641,-0.620833333333359,-0.275862068965538,-0.625000000000043,-0.275862068965474,-0.616666666666674,-0.268965517241372,-0.620833333333359,-0.008333333333369,0.000000000000070,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448263,0.008333333333370,-0.000000000000057,2 +532,537,539,544,-0.282758620689570,-0.612499999999978,-0.275862068965474,-0.616666666666674,-0.275862068965411,-0.608333333333283,-0.268965517241315,-0.612499999999978,-0.008333333333391,0.000000000000070,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000057,2 +533,538,545,4023,-0.282758620689500,-0.604166666666641,-0.275862068965411,-0.608333333333283,-0.268965517241258,-0.604166666666641,-0.275862068965347,-0.600000000000000,-0.008333333333283,0.000000000000070,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000057,-0.000000000000000,0.013793103448235,2 +534,541,546,11869,-0.268965517241541,-0.645833333333359,-0.262068965517364,-0.641666666666717,-0.255172413793236,-0.645833333333359,-0.262068965517414,-0.650000000000000,-0.008333333333283,0.000000000000057,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000044,-0.000000000000000,-0.013793103448312,1 +535,540,542,547,-0.268965517241485,-0.637500000000022,-0.262068965517364,-0.641666666666717,-0.262068965517313,-0.633333333333326,-0.255172413793192,-0.637500000000022,-0.008333333333391,0.000000000000057,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000044,2 +536,541,543,548,-0.268965517241428,-0.629166666666685,-0.262068965517313,-0.633333333333326,-0.262068965517263,-0.625000000000044,-0.255172413793148,-0.629166666666685,-0.008333333333283,0.000000000000057,0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000044,2 +537,542,544,549,-0.268965517241372,-0.620833333333359,-0.262068965517263,-0.625000000000044,-0.262068965517213,-0.616666666666674,-0.255172413793104,-0.620833333333359,-0.008333333333370,0.000000000000057,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333370,-0.000000000000044,2 +538,543,545,550,-0.268965517241315,-0.612499999999978,-0.262068965517213,-0.616666666666674,-0.262068965517163,-0.608333333333283,-0.255172413793061,-0.612499999999978,-0.008333333333391,0.000000000000057,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000044,2 +539,544,551,4009,-0.268965517241258,-0.604166666666641,-0.262068965517163,-0.608333333333283,-0.255172413793017,-0.604166666666641,-0.262068965517112,-0.600000000000000,-0.008333333333283,0.000000000000057,0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000044,-0.000000000000000,0.013793103448235,2 +540,547,552,11869,-0.255172413793236,-0.645833333333359,-0.248275862069064,-0.641666666666717,-0.241379310344930,-0.645833333333359,-0.248275862069102,-0.650000000000000,-0.008333333333283,0.000000000000044,-0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000033,-0.000000000000000,-0.013793103448312,1 +541,546,548,553,-0.255172413793192,-0.637500000000022,-0.248275862069064,-0.641666666666717,-0.248275862069025,-0.633333333333326,-0.241379310344897,-0.637500000000022,-0.008333333333391,0.000000000000044,0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448289,0.008333333333391,-0.000000000000033,2 +542,547,549,554,-0.255172413793148,-0.629166666666685,-0.248275862069025,-0.633333333333326,-0.248275862068987,-0.625000000000044,-0.241379310344864,-0.629166666666685,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448278,0.008333333333283,-0.000000000000033,2 +543,548,550,555,-0.255172413793104,-0.620833333333359,-0.248275862068987,-0.625000000000044,-0.248275862068949,-0.616666666666674,-0.241379310344832,-0.620833333333359,-0.008333333333370,0.000000000000044,-0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448267,0.008333333333370,-0.000000000000033,2 +544,549,551,556,-0.255172413793061,-0.612499999999978,-0.248275862068949,-0.616666666666674,-0.248275862068911,-0.608333333333283,-0.241379310344799,-0.612499999999978,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448256,0.008333333333391,-0.000000000000033,2 +545,550,557,3995,-0.255172413793017,-0.604166666666641,-0.248275862068911,-0.608333333333283,-0.241379310344766,-0.604166666666641,-0.248275862068872,-0.600000000000000,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448256,0.008333333333283,-0.000000000000033,-0.000000000000000,0.013793103448245,2 +546,553,558,11869,-0.241379310344930,-0.645833333333359,-0.234482758620762,-0.641666666666717,-0.227586206896623,-0.645833333333359,-0.234482758620790,-0.650000000000000,-0.008333333333283,0.000000000000033,0.000000000000000,0.013793103448302,0.008333333333283,-0.000000000000023,-0.000000000000000,-0.013793103448312,1 +547,552,554,559,-0.241379310344897,-0.637500000000022,-0.234482758620762,-0.641666666666717,-0.234482758620735,-0.633333333333326,-0.227586206896600,-0.637500000000022,-0.008333333333391,0.000000000000033,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448292,0.008333333333391,-0.000000000000023,2 +548,553,555,560,-0.241379310344864,-0.629166666666685,-0.234482758620735,-0.633333333333326,-0.234482758620707,-0.625000000000044,-0.227586206896577,-0.629166666666685,-0.008333333333283,0.000000000000033,-0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448283,0.008333333333283,-0.000000000000023,2 +549,554,556,561,-0.241379310344832,-0.620833333333359,-0.234482758620707,-0.625000000000044,-0.234482758620679,-0.616666666666674,-0.227586206896554,-0.620833333333359,-0.008333333333370,0.000000000000033,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448273,0.008333333333370,-0.000000000000023,2 +550,555,557,562,-0.241379310344799,-0.612499999999978,-0.234482758620679,-0.616666666666674,-0.234482758620651,-0.608333333333283,-0.227586206896531,-0.612499999999978,-0.008333333333391,0.000000000000033,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000023,2 +551,556,563,3981,-0.241379310344766,-0.604166666666641,-0.234482758620651,-0.608333333333283,-0.227586206896508,-0.604166666666641,-0.234482758620623,-0.600000000000000,-0.008333333333283,0.000000000000033,-0.000000000000000,-0.013793103448263,0.008333333333283,-0.000000000000023,-0.000000000000000,0.013793103448254,2 +552,559,564,11869,-0.227586206896623,-0.645833333333359,-0.220689655172459,-0.641666666666717,-0.213793103448313,-0.645833333333359,-0.220689655172476,-0.650000000000000,-0.008333333333283,0.000000000000023,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000011,-0.000000000000000,-0.013793103448316,1 +553,558,560,565,-0.227586206896600,-0.637500000000022,-0.220689655172459,-0.641666666666717,-0.220689655172442,-0.633333333333326,-0.213793103448302,-0.637500000000022,-0.008333333333391,0.000000000000023,-0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448292,0.008333333333391,-0.000000000000011,2 +554,559,561,566,-0.227586206896577,-0.629166666666685,-0.220689655172442,-0.633333333333326,-0.220689655172426,-0.625000000000044,-0.213793103448291,-0.629166666666685,-0.008333333333283,0.000000000000023,-0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448280,0.008333333333283,-0.000000000000011,2 +555,560,562,567,-0.227586206896554,-0.620833333333359,-0.220689655172426,-0.625000000000044,-0.220689655172409,-0.616666666666674,-0.213793103448280,-0.620833333333359,-0.008333333333370,0.000000000000023,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448267,0.008333333333370,-0.000000000000011,2 +556,561,563,568,-0.227586206896531,-0.612499999999978,-0.220689655172409,-0.616666666666674,-0.220689655172392,-0.608333333333283,-0.213793103448270,-0.612499999999978,-0.008333333333391,0.000000000000023,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448255,0.008333333333391,-0.000000000000011,2 +557,562,569,3967,-0.227586206896508,-0.604166666666641,-0.220689655172392,-0.608333333333283,-0.213793103448259,-0.604166666666641,-0.220689655172375,-0.600000000000000,-0.008333333333283,0.000000000000023,-0.000000000000000,-0.013793103448255,0.008333333333283,-0.000000000000011,-0.000000000000000,0.013793103448243,2 +558,565,570,11869,-0.213793103448313,-0.645833333333359,-0.206896551724154,-0.641666666666717,-0.200000000000000,-0.645833333333359,-0.206896551724159,-0.650000000000000,-0.008333333333283,0.000000000000011,-0.000000000000000,0.013793103448307,0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448318,1 +559,564,566,571,-0.213793103448302,-0.637500000000022,-0.206896551724154,-0.641666666666717,-0.206896551724148,-0.633333333333326,-0.200000000000000,-0.637500000000022,-0.008333333333391,0.000000000000011,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448297,0.008333333333391,0.000000000000000,2 +560,565,567,572,-0.213793103448291,-0.629166666666685,-0.206896551724148,-0.633333333333326,-0.206896551724143,-0.625000000000044,-0.200000000000000,-0.629166666666685,-0.008333333333283,0.000000000000011,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448286,0.008333333333283,0.000000000000000,2 +561,566,568,573,-0.213793103448280,-0.620833333333359,-0.206896551724143,-0.625000000000044,-0.206896551724138,-0.616666666666674,-0.200000000000000,-0.620833333333359,-0.008333333333370,0.000000000000011,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448275,0.008333333333369,0.000000000000000,2 +562,567,569,574,-0.213793103448270,-0.612499999999978,-0.206896551724138,-0.616666666666674,-0.206896551724132,-0.608333333333283,-0.200000000000000,-0.612499999999978,-0.008333333333391,0.000000000000011,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448264,0.008333333333391,0.000000000000000,2 +563,568,575,3953,-0.213793103448259,-0.604166666666641,-0.206896551724132,-0.608333333333283,-0.200000000000000,-0.604166666666641,-0.206896551724127,-0.600000000000000,-0.008333333333283,0.000000000000011,0.000000000000000,-0.013793103448264,0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448254,2 +564,571,576,11869,-0.200000000000000,-0.645833333333359,-0.193103448275876,-0.641666666666717,-0.186206896551752,-0.645833333333359,-0.193103448275876,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448248,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448248,1 +565,570,572,577,-0.200000000000000,-0.637500000000022,-0.193103448275876,-0.641666666666717,-0.193103448275876,-0.633333333333326,-0.186206896551753,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448247,0.008333333333391,0.000000000000000,2 +566,571,573,578,-0.200000000000000,-0.629166666666685,-0.193103448275876,-0.633333333333326,-0.193103448275876,-0.625000000000044,-0.186206896551753,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448248,0.008333333333283,-0.000000000000000,2 +567,572,574,579,-0.200000000000000,-0.620833333333359,-0.193103448275876,-0.625000000000044,-0.193103448275876,-0.616666666666674,-0.186206896551752,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.008333333333370,0.000000000000000,2 +568,573,575,580,-0.200000000000000,-0.612499999999978,-0.193103448275876,-0.616666666666674,-0.193103448275876,-0.608333333333283,-0.186206896551752,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.008333333333391,0.000000000000000,2 +569,574,581,4359,-0.200000000000000,-0.604166666666641,-0.193103448275876,-0.608333333333283,-0.186206896551752,-0.604166666666641,-0.193103448275876,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448248,2 +570,577,582,11869,-0.186206896551752,-0.645833333333359,-0.179310344827634,-0.641666666666717,-0.172413793103516,-0.645833333333359,-0.179310344827634,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,1 +571,576,578,583,-0.186206896551753,-0.637500000000022,-0.179310344827634,-0.641666666666717,-0.179310344827634,-0.633333333333326,-0.172413793103516,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +572,577,579,584,-0.186206896551753,-0.629166666666685,-0.179310344827634,-0.633333333333326,-0.179310344827634,-0.625000000000044,-0.172413793103516,-0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448236,0.008333333333283,0.000000000000000,2 +573,578,580,585,-0.186206896551752,-0.620833333333359,-0.179310344827634,-0.625000000000044,-0.179310344827634,-0.616666666666674,-0.172413793103516,-0.620833333333359,-0.008333333333370,-0.000000000000000,-0.000000000000000,-0.013793103448236,0.000000000000000,0.013793103448237,0.008333333333369,-0.000000000000000,2 +574,579,581,586,-0.186206896551752,-0.612499999999978,-0.179310344827634,-0.616666666666674,-0.179310344827634,-0.608333333333283,-0.172413793103516,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +575,580,587,4373,-0.186206896551752,-0.604166666666641,-0.179310344827634,-0.608333333333283,-0.172413793103516,-0.604166666666641,-0.179310344827634,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 +576,583,588,11869,-0.172413793103516,-0.645833333333359,-0.165517241379389,-0.641666666666717,-0.158620689655262,-0.645833333333359,-0.165517241379389,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448254,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448254,1 +577,582,584,589,-0.172413793103516,-0.637500000000022,-0.165517241379389,-0.641666666666717,-0.165517241379389,-0.633333333333326,-0.158620689655262,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333391,0.000000000000000,2 +578,583,585,590,-0.172413793103516,-0.629166666666685,-0.165517241379389,-0.633333333333326,-0.165517241379389,-0.625000000000044,-0.158620689655262,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.008333333333283,0.000000000000000,2 +579,584,586,591,-0.172413793103516,-0.620833333333359,-0.165517241379389,-0.625000000000044,-0.165517241379389,-0.616666666666674,-0.158620689655262,-0.620833333333359,-0.008333333333369,0.000000000000000,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.008333333333369,0.000000000000000,2 +580,585,587,592,-0.172413793103516,-0.612499999999978,-0.165517241379389,-0.616666666666674,-0.165517241379389,-0.608333333333283,-0.158620689655262,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333391,0.000000000000000,2 +581,586,593,4387,-0.172413793103516,-0.604166666666641,-0.165517241379389,-0.608333333333283,-0.158620689655262,-0.604166666666641,-0.165517241379389,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448254,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448254,2 +582,589,594,11869,-0.158620689655262,-0.645833333333359,-0.151724137931136,-0.641666666666717,-0.144827586207010,-0.645833333333359,-0.151724137931136,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448251,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448251,1 +583,588,590,595,-0.158620689655262,-0.637500000000022,-0.151724137931136,-0.641666666666717,-0.151724137931136,-0.633333333333326,-0.144827586207010,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448251,0.008333333333391,0.000000000000000,2 +584,589,591,596,-0.158620689655262,-0.629166666666685,-0.151724137931136,-0.633333333333326,-0.151724137931136,-0.625000000000043,-0.144827586207010,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.008333333333283,0.000000000000000,2 +585,590,592,597,-0.158620689655262,-0.620833333333359,-0.151724137931136,-0.625000000000043,-0.151724137931136,-0.616666666666674,-0.144827586207010,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.008333333333369,0.000000000000000,2 +586,591,593,598,-0.158620689655262,-0.612499999999978,-0.151724137931136,-0.616666666666674,-0.151724137931136,-0.608333333333283,-0.144827586207010,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.008333333333391,0.000000000000000,2 +587,592,599,4401,-0.158620689655262,-0.604166666666641,-0.151724137931136,-0.608333333333283,-0.144827586207010,-0.604166666666641,-0.151724137931136,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448251,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448251,2 +588,595,600,11869,-0.144827586207010,-0.645833333333359,-0.137931034482892,-0.641666666666717,-0.131034482758774,-0.645833333333359,-0.137931034482892,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,1 +589,594,596,601,-0.144827586207010,-0.637500000000022,-0.137931034482892,-0.641666666666717,-0.137931034482892,-0.633333333333326,-0.131034482758774,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +590,595,597,602,-0.144827586207010,-0.629166666666685,-0.137931034482892,-0.633333333333326,-0.137931034482892,-0.625000000000043,-0.131034482758774,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,2 +591,596,598,603,-0.144827586207010,-0.620833333333359,-0.137931034482892,-0.625000000000043,-0.137931034482892,-0.616666666666674,-0.131034482758774,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333370,0.000000000000000,2 +592,597,599,604,-0.144827586207010,-0.612499999999978,-0.137931034482892,-0.616666666666674,-0.137931034482892,-0.608333333333283,-0.131034482758774,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +593,598,605,4415,-0.144827586207010,-0.604166666666641,-0.137931034482892,-0.608333333333283,-0.131034482758774,-0.604166666666641,-0.137931034482892,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 +594,601,606,11869,-0.131034482758774,-0.645833333333359,-0.124137931034655,-0.641666666666717,-0.117241379310537,-0.645833333333359,-0.124137931034655,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,1 +595,600,602,607,-0.131034482758774,-0.637500000000022,-0.124137931034655,-0.641666666666717,-0.124137931034655,-0.633333333333326,-0.117241379310537,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +596,601,603,608,-0.131034482758774,-0.629166666666685,-0.124137931034655,-0.633333333333326,-0.124137931034655,-0.625000000000043,-0.117241379310537,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,2 +597,602,604,609,-0.131034482758774,-0.620833333333359,-0.124137931034655,-0.625000000000043,-0.124137931034655,-0.616666666666674,-0.117241379310537,-0.620833333333359,-0.008333333333370,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333369,0.000000000000000,2 +598,603,605,610,-0.131034482758774,-0.612499999999978,-0.124137931034655,-0.616666666666674,-0.124137931034655,-0.608333333333283,-0.117241379310537,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +599,604,611,4429,-0.131034482758774,-0.604166666666641,-0.124137931034655,-0.608333333333283,-0.117241379310537,-0.604166666666641,-0.124137931034655,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 +600,607,612,11869,-0.117241379310537,-0.645833333333359,-0.110344827586419,-0.641666666666717,-0.103448275862300,-0.645833333333359,-0.110344827586419,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,1 +601,606,608,613,-0.117241379310537,-0.637500000000022,-0.110344827586419,-0.641666666666717,-0.110344827586419,-0.633333333333326,-0.103448275862300,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +602,607,609,614,-0.117241379310537,-0.629166666666685,-0.110344827586419,-0.633333333333326,-0.110344827586419,-0.625000000000043,-0.103448275862300,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,2 +603,608,610,615,-0.117241379310537,-0.620833333333359,-0.110344827586419,-0.625000000000043,-0.110344827586419,-0.616666666666674,-0.103448275862300,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333370,0.000000000000000,2 +604,609,611,616,-0.117241379310537,-0.612499999999978,-0.110344827586419,-0.616666666666674,-0.110344827586419,-0.608333333333283,-0.103448275862300,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +605,610,617,4443,-0.117241379310537,-0.604166666666641,-0.110344827586419,-0.608333333333283,-0.103448275862300,-0.604166666666641,-0.110344827586419,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 +606,613,618,11869,-0.103448275862300,-0.645833333333359,-0.096551724138182,-0.641666666666717,-0.089655172414064,-0.645833333333359,-0.096551724138182,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,1 +607,612,614,619,-0.103448275862300,-0.637500000000022,-0.096551724138182,-0.641666666666717,-0.096551724138182,-0.633333333333326,-0.089655172414064,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +608,613,615,620,-0.103448275862300,-0.629166666666685,-0.096551724138182,-0.633333333333326,-0.096551724138182,-0.625000000000043,-0.089655172414064,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333283,-0.000000000000000,2 +609,614,616,621,-0.103448275862300,-0.620833333333359,-0.096551724138182,-0.625000000000043,-0.096551724138182,-0.616666666666674,-0.089655172414064,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333369,0.000000000000000,2 +610,615,617,622,-0.103448275862300,-0.612499999999978,-0.096551724138182,-0.616666666666674,-0.096551724138182,-0.608333333333283,-0.089655172414064,-0.612499999999979,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,-0.000000000000000,2 +611,616,623,4457,-0.103448275862300,-0.604166666666641,-0.096551724138182,-0.608333333333283,-0.089655172414064,-0.604166666666641,-0.096551724138182,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448237,2 +612,619,624,11869,-0.089655172414064,-0.645833333333359,-0.082758620689945,-0.641666666666717,-0.075862068965827,-0.645833333333359,-0.082758620689945,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,1 +613,618,620,625,-0.089655172414064,-0.637500000000022,-0.082758620689945,-0.641666666666717,-0.082758620689945,-0.633333333333326,-0.075862068965827,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,-0.000000000000000,2 +614,619,621,626,-0.089655172414064,-0.629166666666685,-0.082758620689945,-0.633333333333326,-0.082758620689945,-0.625000000000043,-0.075862068965827,-0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,2 +615,620,622,627,-0.089655172414064,-0.620833333333359,-0.082758620689945,-0.625000000000043,-0.082758620689945,-0.616666666666674,-0.075862068965827,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333369,0.000000000000000,2 +616,621,623,628,-0.089655172414064,-0.612499999999979,-0.082758620689945,-0.616666666666674,-0.082758620689945,-0.608333333333283,-0.075862068965827,-0.612499999999978,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +617,622,629,4471,-0.089655172414064,-0.604166666666641,-0.082758620689945,-0.608333333333283,-0.075862068965827,-0.604166666666641,-0.082758620689945,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 +618,625,630,11869,-0.075862068965827,-0.645833333333359,-0.068965517241709,-0.641666666666717,-0.062068965517591,-0.645833333333359,-0.068965517241709,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,1 +619,624,626,631,-0.075862068965827,-0.637500000000022,-0.068965517241709,-0.641666666666717,-0.068965517241709,-0.633333333333326,-0.062068965517591,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +620,625,627,632,-0.075862068965827,-0.629166666666685,-0.068965517241709,-0.633333333333326,-0.068965517241709,-0.625000000000043,-0.062068965517591,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,2 +621,626,628,633,-0.075862068965827,-0.620833333333359,-0.068965517241709,-0.625000000000043,-0.068965517241709,-0.616666666666674,-0.062068965517591,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333369,0.000000000000000,2 +622,627,629,634,-0.075862068965827,-0.612499999999978,-0.068965517241709,-0.616666666666674,-0.068965517241709,-0.608333333333283,-0.062068965517591,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,-0.000000000000000,2 +623,628,635,4485,-0.075862068965827,-0.604166666666641,-0.068965517241709,-0.608333333333283,-0.062068965517591,-0.604166666666641,-0.068965517241709,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 +624,631,636,11869,-0.062068965517591,-0.645833333333359,-0.055172413793477,-0.641666666666717,-0.048275862069362,-0.645833333333359,-0.055172413793477,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448228,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448228,1 +625,630,632,637,-0.062068965517591,-0.637500000000022,-0.055172413793477,-0.641666666666717,-0.055172413793477,-0.633333333333326,-0.048275862069362,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.008333333333391,0.000000000000000,2 +626,631,633,638,-0.062068965517591,-0.629166666666685,-0.055172413793477,-0.633333333333326,-0.055172413793477,-0.625000000000043,-0.048275862069362,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448228,-0.000000000000000,0.013793103448228,0.008333333333283,-0.000000000000000,2 +627,632,634,639,-0.062068965517591,-0.620833333333359,-0.055172413793477,-0.625000000000043,-0.055172413793477,-0.616666666666674,-0.048275862069362,-0.620833333333359,-0.008333333333369,-0.000000000000000,0.000000000000000,-0.013793103448228,-0.000000000000000,0.013793103448228,0.008333333333369,0.000000000000000,2 +628,633,635,640,-0.062068965517591,-0.612499999999978,-0.055172413793477,-0.616666666666674,-0.055172413793477,-0.608333333333283,-0.048275862069362,-0.612499999999978,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.008333333333391,0.000000000000000,2 +629,634,641,4499,-0.062068965517591,-0.604166666666641,-0.055172413793477,-0.608333333333283,-0.048275862069362,-0.604166666666641,-0.055172413793477,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448228,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448228,2 +630,637,642,11869,-0.048275862069362,-0.645833333333359,-0.041379310345245,-0.641666666666717,-0.034482758621128,-0.645833333333359,-0.041379310345245,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448234,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448234,1 +631,636,638,643,-0.048275862069362,-0.637500000000022,-0.041379310345245,-0.641666666666717,-0.041379310345245,-0.633333333333326,-0.034482758621128,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448234,-0.000000000000000,0.013793103448234,0.008333333333391,0.000000000000000,2 +632,637,639,644,-0.048275862069362,-0.629166666666685,-0.041379310345245,-0.633333333333326,-0.041379310345245,-0.625000000000043,-0.034482758621128,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.008333333333283,0.000000000000000,2 +633,638,640,645,-0.048275862069362,-0.620833333333359,-0.041379310345245,-0.625000000000043,-0.041379310345245,-0.616666666666674,-0.034482758621128,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.008333333333369,0.000000000000000,2 +634,639,641,646,-0.048275862069362,-0.612499999999978,-0.041379310345245,-0.616666666666674,-0.041379310345245,-0.608333333333283,-0.034482758621128,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.008333333333391,-0.000000000000000,2 +635,640,647,4513,-0.048275862069362,-0.604166666666641,-0.041379310345245,-0.608333333333283,-0.034482758621128,-0.604166666666641,-0.041379310345245,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448234,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448234,2 +636,643,648,11869,-0.034482758621128,-0.645833333333359,-0.027586206897010,-0.641666666666717,-0.020689655172892,-0.645833333333359,-0.027586206897010,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,1 +637,642,644,649,-0.034482758621128,-0.637500000000022,-0.027586206897010,-0.641666666666717,-0.027586206897010,-0.633333333333326,-0.020689655172892,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +638,643,645,650,-0.034482758621128,-0.629166666666685,-0.027586206897010,-0.633333333333326,-0.027586206897010,-0.625000000000043,-0.020689655172892,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,2 +639,644,646,651,-0.034482758621128,-0.620833333333359,-0.027586206897010,-0.625000000000043,-0.027586206897010,-0.616666666666674,-0.020689655172892,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333369,0.000000000000000,2 +640,645,647,652,-0.034482758621128,-0.612499999999978,-0.027586206897010,-0.616666666666674,-0.027586206897010,-0.608333333333283,-0.020689655172892,-0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,-0.000000000000000,2 +641,646,653,4527,-0.034482758621128,-0.604166666666641,-0.027586206897010,-0.608333333333283,-0.020689655172892,-0.604166666666641,-0.027586206897010,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448237,2 +642,649,654,11869,-0.020689655172892,-0.645833333333359,-0.013793103448773,-0.641666666666717,-0.006896551724655,-0.645833333333359,-0.013793103448773,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,1 +643,648,650,655,-0.020689655172892,-0.637500000000022,-0.013793103448773,-0.641666666666717,-0.013793103448773,-0.633333333333326,-0.006896551724655,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +644,649,651,656,-0.020689655172892,-0.629166666666685,-0.013793103448773,-0.633333333333326,-0.013793103448773,-0.625000000000044,-0.006896551724655,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333282,0.000000000000000,2 +645,650,652,657,-0.020689655172892,-0.620833333333359,-0.013793103448773,-0.625000000000044,-0.013793103448773,-0.616666666666674,-0.006896551724655,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333370,0.000000000000000,2 +646,651,653,658,-0.020689655172892,-0.612499999999978,-0.013793103448773,-0.616666666666674,-0.013793103448773,-0.608333333333283,-0.006896551724655,-0.612499999999978,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 +647,652,659,4541,-0.020689655172892,-0.604166666666641,-0.013793103448773,-0.608333333333283,-0.006896551724655,-0.604166666666641,-0.013793103448773,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 +648,655,660,11869,-0.006896551724655,-0.645833333333359,-0.000000000000518,-0.641666666666717,0.006896551723618,-0.645833333333359,-0.000000000000518,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448274,1 +649,654,656,661,-0.006896551724655,-0.637500000000022,-0.000000000000518,-0.641666666666717,-0.000000000000518,-0.633333333333326,0.006896551723618,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.008333333333391,0.000000000000000,2 +650,655,657,662,-0.006896551724655,-0.629166666666685,-0.000000000000518,-0.633333333333326,-0.000000000000518,-0.625000000000044,0.006896551723618,-0.629166666666685,-0.008333333333282,-0.000000000000000,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448274,0.008333333333283,0.000000000000000,2 +651,656,658,663,-0.006896551724655,-0.620833333333359,-0.000000000000518,-0.625000000000044,-0.000000000000518,-0.616666666666674,0.006896551723618,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.008333333333369,0.000000000000000,2 +652,657,659,664,-0.006896551724655,-0.612499999999978,-0.000000000000518,-0.616666666666674,-0.000000000000518,-0.608333333333283,0.006896551723618,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.008333333333391,-0.000000000000000,2 +653,658,665,4555,-0.006896551724655,-0.604166666666641,-0.000000000000518,-0.608333333333283,0.006896551723618,-0.604166666666641,-0.000000000000518,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448274,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448274,2 +654,661,666,11869,0.006896551723618,-0.645833333333359,0.013793103447775,-0.641666666666717,0.020689655171931,-0.645833333333359,0.013793103447775,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448313,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448313,1 +655,660,662,667,0.006896551723618,-0.637500000000022,0.013793103447775,-0.641666666666717,0.013793103447775,-0.633333333333326,0.020689655171931,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.008333333333391,0.000000000000000,2 +656,661,663,668,0.006896551723618,-0.629166666666685,0.013793103447775,-0.633333333333326,0.013793103447775,-0.625000000000043,0.020689655171931,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333283,0.000000000000000,2 +657,662,664,669,0.006896551723618,-0.620833333333359,0.013793103447775,-0.625000000000043,0.013793103447775,-0.616666666666674,0.020689655171931,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.008333333333369,0.000000000000000,2 +658,663,665,670,0.006896551723618,-0.612499999999978,0.013793103447775,-0.616666666666674,0.013793103447775,-0.608333333333283,0.020689655171931,-0.612499999999978,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333391,-0.000000000000000,2 +659,664,671,4569,0.006896551723618,-0.604166666666641,0.013793103447775,-0.608333333333283,0.020689655171931,-0.604166666666641,0.013793103447775,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448313,2 +660,667,672,11869,0.020689655171931,-0.645833333333359,0.027586206896088,-0.641666666666717,0.034482758620245,-0.645833333333359,0.027586206896088,-0.650000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,0.013793103448314,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448314,1 +661,666,668,673,0.020689655171931,-0.637500000000022,0.027586206896088,-0.641666666666717,0.027586206896088,-0.633333333333326,0.034482758620245,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333391,0.000000000000000,2 +662,667,669,674,0.020689655171931,-0.629166666666685,0.027586206896088,-0.633333333333326,0.027586206896088,-0.625000000000044,0.034482758620245,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333283,-0.000000000000000,2 +663,668,670,675,0.020689655171931,-0.620833333333359,0.027586206896088,-0.625000000000044,0.027586206896088,-0.616666666666674,0.034482758620245,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333370,0.000000000000000,2 +664,669,671,676,0.020689655171931,-0.612499999999978,0.027586206896088,-0.616666666666674,0.027586206896088,-0.608333333333283,0.034482758620245,-0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333391,0.000000000000000,2 +665,670,677,4583,0.020689655171931,-0.604166666666641,0.027586206896088,-0.608333333333283,0.034482758620245,-0.604166666666641,0.027586206896088,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448314,2 +666,673,678,11869,0.034482758620245,-0.645833333333359,0.041379310344402,-0.641666666666717,0.048275862068559,-0.645833333333359,0.041379310344402,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448314,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448314,1 +667,672,674,679,0.034482758620245,-0.637500000000022,0.041379310344402,-0.641666666666717,0.041379310344402,-0.633333333333326,0.048275862068559,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333391,0.000000000000000,2 +668,673,675,680,0.034482758620245,-0.629166666666685,0.041379310344402,-0.633333333333326,0.041379310344402,-0.625000000000044,0.048275862068559,-0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448314,0.008333333333283,-0.000000000000000,2 +669,674,676,681,0.034482758620245,-0.620833333333359,0.041379310344402,-0.625000000000044,0.041379310344402,-0.616666666666674,0.048275862068559,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333369,-0.000000000000000,2 +670,675,677,682,0.034482758620245,-0.612499999999978,0.041379310344402,-0.616666666666674,0.041379310344402,-0.608333333333283,0.048275862068559,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333391,0.000000000000000,2 +671,676,683,4597,0.034482758620245,-0.604166666666641,0.041379310344402,-0.608333333333283,0.048275862068559,-0.604166666666641,0.041379310344402,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448314,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448314,2 +672,679,684,11869,0.048275862068559,-0.645833333333359,0.055172413792716,-0.641666666666717,0.062068965516873,-0.645833333333359,0.055172413792716,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448315,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448315,1 +673,678,680,685,0.048275862068559,-0.637500000000022,0.055172413792716,-0.641666666666717,0.055172413792716,-0.633333333333326,0.062068965516873,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.008333333333391,0.000000000000000,2 +674,679,681,686,0.048275862068559,-0.629166666666685,0.055172413792716,-0.633333333333326,0.055172413792716,-0.625000000000043,0.062068965516873,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333283,0.000000000000000,2 +675,680,682,687,0.048275862068559,-0.620833333333359,0.055172413792716,-0.625000000000043,0.055172413792716,-0.616666666666674,0.062068965516873,-0.620833333333359,-0.008333333333369,0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.008333333333370,-0.000000000000000,2 +676,681,683,688,0.048275862068559,-0.612499999999978,0.055172413792716,-0.616666666666674,0.055172413792716,-0.608333333333283,0.062068965516873,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333391,0.000000000000000,2 +677,682,689,4611,0.048275862068559,-0.604166666666641,0.055172413792716,-0.608333333333283,0.062068965516873,-0.604166666666641,0.055172413792716,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448315,2 +678,685,690,11869,0.062068965516873,-0.645833333333359,0.068965517241032,-0.641666666666717,0.075862068965190,-0.645833333333359,0.068965517241032,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448317,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448317,1 +679,684,686,691,0.062068965516873,-0.637500000000022,0.068965517241032,-0.641666666666717,0.068965517241032,-0.633333333333326,0.075862068965190,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.008333333333391,-0.000000000000000,2 +680,685,687,692,0.062068965516873,-0.629166666666685,0.068965517241032,-0.633333333333326,0.068965517241032,-0.625000000000043,0.075862068965190,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,0.008333333333283,0.000000000000000,2 +681,686,688,693,0.062068965516873,-0.620833333333359,0.068965517241032,-0.625000000000043,0.068965517241032,-0.616666666666674,0.075862068965190,-0.620833333333359,-0.008333333333370,0.000000000000000,0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.008333333333369,0.000000000000000,2 +682,687,689,694,0.062068965516873,-0.612499999999978,0.068965517241032,-0.616666666666674,0.068965517241032,-0.608333333333283,0.075862068965190,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.008333333333391,0.000000000000000,2 +683,688,695,4625,0.062068965516873,-0.604166666666641,0.068965517241032,-0.608333333333283,0.075862068965190,-0.604166666666641,0.068965517241032,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448317,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448317,2 +684,691,696,11869,0.075862068965190,-0.645833333333359,0.082758620689347,-0.641666666666717,0.089655172413504,-0.645833333333359,0.082758620689347,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448314,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448314,1 +685,690,692,697,0.075862068965190,-0.637500000000022,0.082758620689347,-0.641666666666717,0.082758620689347,-0.633333333333326,0.089655172413504,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333391,0.000000000000000,2 +686,691,693,698,0.075862068965190,-0.629166666666685,0.082758620689347,-0.633333333333326,0.082758620689347,-0.625000000000043,0.089655172413504,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333283,-0.000000000000000,2 +687,692,694,699,0.075862068965190,-0.620833333333359,0.082758620689347,-0.625000000000043,0.082758620689347,-0.616666666666674,0.089655172413504,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333369,0.000000000000000,2 +688,693,695,700,0.075862068965190,-0.612499999999978,0.082758620689347,-0.616666666666674,0.082758620689347,-0.608333333333283,0.089655172413504,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333391,-0.000000000000000,2 +689,694,701,4639,0.075862068965190,-0.604166666666641,0.082758620689347,-0.608333333333283,0.089655172413504,-0.604166666666641,0.082758620689347,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448314,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448314,2 +690,697,702,11869,0.089655172413504,-0.645833333333359,0.096551724137659,-0.641666666666717,0.103448275861814,-0.645833333333359,0.096551724137659,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,1 +691,696,698,703,0.089655172413504,-0.637500000000022,0.096551724137659,-0.641666666666717,0.096551724137659,-0.633333333333326,0.103448275861814,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448310,0.008333333333391,0.000000000000000,2 +692,697,699,704,0.089655172413504,-0.629166666666685,0.096551724137659,-0.633333333333326,0.096551724137659,-0.625000000000044,0.103448275861814,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,2 +693,698,700,705,0.089655172413504,-0.620833333333359,0.096551724137659,-0.625000000000044,0.096551724137659,-0.616666666666674,0.103448275861814,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333370,0.000000000000000,2 +694,699,701,706,0.089655172413504,-0.612499999999978,0.096551724137659,-0.616666666666674,0.096551724137659,-0.608333333333283,0.103448275861814,-0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333391,0.000000000000000,2 +695,700,707,4653,0.089655172413504,-0.604166666666641,0.096551724137659,-0.608333333333283,0.103448275861814,-0.604166666666641,0.096551724137659,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,2 +696,703,708,11869,0.103448275861814,-0.645833333333359,0.110344827585969,-0.641666666666717,0.117241379310125,-0.645833333333359,0.110344827585969,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448312,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448312,1 +697,702,704,709,0.103448275861814,-0.637500000000022,0.110344827585969,-0.641666666666717,0.110344827585969,-0.633333333333326,0.117241379310125,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.008333333333391,-0.000000000000000,2 +698,703,705,710,0.103448275861814,-0.629166666666685,0.110344827585969,-0.633333333333326,0.110344827585969,-0.625000000000043,0.117241379310125,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448312,0.008333333333283,0.000000000000000,2 +699,704,706,711,0.103448275861814,-0.620833333333359,0.110344827585969,-0.625000000000043,0.110344827585969,-0.616666666666674,0.117241379310125,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.008333333333369,0.000000000000000,2 +700,705,707,712,0.103448275861814,-0.612499999999978,0.110344827585969,-0.616666666666674,0.110344827585969,-0.608333333333283,0.117241379310125,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448312,0.008333333333391,0.000000000000000,2 +701,706,713,4667,0.103448275861814,-0.604166666666641,0.110344827585969,-0.608333333333283,0.117241379310125,-0.604166666666641,0.110344827585969,-0.600000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448312,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448312,2 +702,709,714,11869,0.117241379310125,-0.645833333333359,0.124137931034281,-0.641666666666717,0.131034482758436,-0.645833333333359,0.124137931034281,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,1 +703,708,710,715,0.117241379310125,-0.637500000000022,0.124137931034281,-0.641666666666717,0.124137931034281,-0.633333333333326,0.131034482758436,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 +704,709,711,716,0.117241379310125,-0.629166666666685,0.124137931034281,-0.633333333333326,0.124137931034281,-0.625000000000043,0.131034482758436,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,2 +705,710,712,717,0.117241379310125,-0.620833333333359,0.124137931034281,-0.625000000000043,0.124137931034281,-0.616666666666674,0.131034482758436,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.008333333333370,0.000000000000000,2 +706,711,713,718,0.117241379310125,-0.612499999999978,0.124137931034281,-0.616666666666674,0.124137931034281,-0.608333333333283,0.131034482758436,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 +707,712,719,4681,0.117241379310125,-0.604166666666641,0.124137931034281,-0.608333333333283,0.131034482758436,-0.604166666666641,0.124137931034281,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,2 +708,715,720,11869,0.131034482758436,-0.645833333333359,0.137931034482591,-0.641666666666717,0.144827586206747,-0.645833333333359,0.137931034482591,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,1 +709,714,716,721,0.131034482758436,-0.637500000000022,0.137931034482591,-0.641666666666717,0.137931034482591,-0.633333333333326,0.144827586206747,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 +710,715,717,722,0.131034482758436,-0.629166666666685,0.137931034482591,-0.633333333333326,0.137931034482591,-0.625000000000043,0.144827586206747,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,2 +711,716,718,723,0.131034482758436,-0.620833333333359,0.137931034482591,-0.625000000000043,0.137931034482591,-0.616666666666674,0.144827586206747,-0.620833333333359,-0.008333333333370,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333370,0.000000000000000,2 +712,717,719,724,0.131034482758436,-0.612499999999978,0.137931034482591,-0.616666666666674,0.137931034482591,-0.608333333333283,0.144827586206747,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,-0.000000000000000,2 +713,718,725,4695,0.131034482758436,-0.604166666666641,0.137931034482591,-0.608333333333283,0.144827586206747,-0.604166666666641,0.137931034482591,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,2 +714,721,726,11869,0.144827586206747,-0.645833333333359,0.151724137930902,-0.641666666666717,0.158620689655057,-0.645833333333359,0.151724137930902,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,1 +715,720,722,727,0.144827586206747,-0.637500000000022,0.151724137930902,-0.641666666666717,0.151724137930902,-0.633333333333326,0.158620689655057,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 +716,721,723,728,0.144827586206747,-0.629166666666685,0.151724137930902,-0.633333333333326,0.151724137930902,-0.625000000000043,0.158620689655057,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,2 +717,722,724,729,0.144827586206747,-0.620833333333359,0.151724137930902,-0.625000000000043,0.151724137930902,-0.616666666666674,0.158620689655057,-0.620833333333359,-0.008333333333370,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333369,0.000000000000000,2 +718,723,725,730,0.144827586206747,-0.612499999999978,0.151724137930902,-0.616666666666674,0.151724137930902,-0.608333333333283,0.158620689655057,-0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 +719,724,731,4709,0.144827586206747,-0.604166666666641,0.151724137930902,-0.608333333333283,0.158620689655057,-0.604166666666641,0.151724137930902,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,2 +720,727,732,11869,0.158620689655057,-0.645833333333359,0.165517241379213,-0.641666666666717,0.172413793103368,-0.645833333333359,0.165517241379213,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,1 +721,726,728,733,0.158620689655057,-0.637500000000022,0.165517241379213,-0.641666666666717,0.165517241379213,-0.633333333333326,0.172413793103368,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 +722,727,729,734,0.158620689655057,-0.629166666666685,0.165517241379213,-0.633333333333326,0.165517241379213,-0.625000000000043,0.172413793103368,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,2 +723,728,730,735,0.158620689655057,-0.620833333333359,0.165517241379213,-0.625000000000043,0.165517241379213,-0.616666666666674,0.172413793103368,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333369,0.000000000000000,2 +724,729,731,736,0.158620689655057,-0.612499999999978,0.165517241379213,-0.616666666666674,0.165517241379213,-0.608333333333283,0.172413793103368,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 +725,730,737,4723,0.158620689655057,-0.604166666666641,0.165517241379213,-0.608333333333283,0.172413793103368,-0.604166666666641,0.165517241379213,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,2 +726,733,738,11869,0.172413793103368,-0.645833333333359,0.179310344827525,-0.641666666666717,0.186206896551683,-0.645833333333359,0.179310344827525,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448315,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448315,1 +727,732,734,739,0.172413793103368,-0.637500000000022,0.179310344827525,-0.641666666666717,0.179310344827525,-0.633333333333326,0.186206896551683,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.008333333333391,0.000000000000000,2 +728,733,735,740,0.172413793103368,-0.629166666666685,0.179310344827525,-0.633333333333326,0.179310344827525,-0.625000000000043,0.186206896551683,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333283,-0.000000000000000,2 +729,734,736,741,0.172413793103368,-0.620833333333359,0.179310344827525,-0.625000000000043,0.179310344827525,-0.616666666666674,0.186206896551683,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333369,0.000000000000000,2 +730,735,737,742,0.172413793103368,-0.612499999999978,0.179310344827525,-0.616666666666674,0.179310344827525,-0.608333333333283,0.186206896551683,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333391,0.000000000000000,2 +731,736,743,4737,0.172413793103368,-0.604166666666641,0.179310344827525,-0.608333333333283,0.186206896551683,-0.604166666666641,0.179310344827525,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448315,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448315,2 +732,739,744,11869,0.186206896551683,-0.645833333333359,0.193103448275841,-0.641666666666717,0.200000000000000,-0.645833333333359,0.193103448275841,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448317,0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448317,1 +733,738,740,745,0.186206896551683,-0.637500000000022,0.193103448275841,-0.641666666666717,0.193103448275841,-0.633333333333326,0.200000000000000,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,0.008333333333391,0.000000000000000,2 +734,739,741,746,0.186206896551683,-0.629166666666685,0.193103448275841,-0.633333333333326,0.193103448275841,-0.625000000000043,0.200000000000000,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,0.008333333333283,0.000000000000000,2 +735,740,742,747,0.186206896551683,-0.620833333333359,0.193103448275841,-0.625000000000043,0.193103448275841,-0.616666666666674,0.200000000000000,-0.620833333333359,-0.008333333333369,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,0.008333333333369,0.000000000000000,2 +736,741,743,748,0.186206896551683,-0.612499999999978,0.193103448275841,-0.616666666666674,0.193103448275841,-0.608333333333283,0.200000000000000,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,0.008333333333391,0.000000000000000,2 +737,742,749,4751,0.186206896551683,-0.604166666666641,0.193103448275841,-0.608333333333283,0.200000000000000,-0.604166666666641,0.193103448275841,-0.600000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448317,0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448317,2 +738,745,750,11869,0.200000000000000,-0.645833333333359,0.206896551724127,-0.641666666666717,0.213793103448254,-0.645833333333359,0.206896551724127,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448254,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448254,1 +739,744,746,751,0.200000000000000,-0.637500000000022,0.206896551724127,-0.641666666666717,0.206896551724127,-0.633333333333326,0.213793103448254,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333391,-0.000000000000000,2 +740,745,747,752,0.200000000000000,-0.629166666666685,0.206896551724127,-0.633333333333326,0.206896551724127,-0.625000000000043,0.213793103448254,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333283,0.000000000000000,2 +741,746,748,753,0.200000000000000,-0.620833333333359,0.206896551724127,-0.625000000000043,0.206896551724127,-0.616666666666674,0.213793103448254,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333369,0.000000000000000,2 +742,747,749,754,0.200000000000000,-0.612499999999978,0.206896551724127,-0.616666666666674,0.206896551724127,-0.608333333333283,0.213793103448254,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333391,0.000000000000000,2 +743,748,755,4765,0.200000000000000,-0.604166666666641,0.206896551724127,-0.608333333333283,0.213793103448254,-0.604166666666641,0.206896551724127,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448254,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448254,2 +744,751,756,11869,0.213793103448254,-0.645833333333359,0.220689655172375,-0.641666666666717,0.227586206896496,-0.645833333333359,0.220689655172375,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448243,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448243,1 +745,750,752,757,0.213793103448254,-0.637500000000022,0.220689655172375,-0.641666666666717,0.220689655172375,-0.633333333333326,0.227586206896496,-0.637500000000022,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.008333333333391,-0.000000000000000,2 +746,751,753,758,0.213793103448254,-0.629166666666685,0.220689655172375,-0.633333333333326,0.220689655172375,-0.625000000000043,0.227586206896496,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.008333333333283,0.000000000000000,2 +747,752,754,759,0.213793103448254,-0.620833333333359,0.220689655172375,-0.625000000000043,0.220689655172375,-0.616666666666674,0.227586206896496,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.008333333333369,0.000000000000000,2 +748,753,755,760,0.213793103448254,-0.612499999999978,0.220689655172375,-0.616666666666674,0.220689655172375,-0.608333333333283,0.227586206896496,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.008333333333391,0.000000000000000,2 +749,754,761,4779,0.213793103448254,-0.604166666666641,0.220689655172375,-0.608333333333283,0.227586206896496,-0.604166666666641,0.220689655172375,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448243,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448243,2 +750,757,762,11869,0.227586206896496,-0.645833333333359,0.234482758620623,-0.641666666666717,0.241379310344750,-0.645833333333359,0.234482758620623,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448254,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448254,1 +751,756,758,763,0.227586206896496,-0.637500000000022,0.234482758620623,-0.641666666666717,0.234482758620623,-0.633333333333326,0.241379310344750,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448253,0.008333333333391,0.000000000000000,2 +752,757,759,764,0.227586206896496,-0.629166666666685,0.234482758620623,-0.633333333333326,0.234482758620623,-0.625000000000044,0.241379310344750,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448254,0.008333333333283,-0.000000000000000,2 +753,758,760,765,0.227586206896496,-0.620833333333359,0.234482758620623,-0.625000000000044,0.234482758620623,-0.616666666666674,0.241379310344750,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.008333333333370,0.000000000000000,2 +754,759,761,766,0.227586206896496,-0.612499999999978,0.234482758620623,-0.616666666666674,0.234482758620623,-0.608333333333283,0.241379310344750,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333391,0.000000000000000,2 +755,760,767,4793,0.227586206896496,-0.604166666666641,0.234482758620623,-0.608333333333283,0.241379310344750,-0.604166666666641,0.234482758620623,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448254,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448254,2 +756,763,768,11869,0.241379310344750,-0.645833333333359,0.248275862068872,-0.641666666666717,0.255172413792995,-0.645833333333359,0.248275862068872,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448245,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448245,1 +757,762,764,769,0.241379310344750,-0.637500000000022,0.248275862068872,-0.641666666666717,0.248275862068872,-0.633333333333326,0.255172413792995,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.008333333333391,0.000000000000000,2 +758,763,765,770,0.241379310344750,-0.629166666666685,0.248275862068872,-0.633333333333326,0.248275862068872,-0.625000000000044,0.255172413792995,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.008333333333283,0.000000000000000,2 +759,764,766,771,0.241379310344750,-0.620833333333359,0.248275862068872,-0.625000000000044,0.248275862068872,-0.616666666666674,0.255172413792995,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.008333333333369,0.000000000000000,2 +760,765,767,772,0.241379310344750,-0.612499999999978,0.248275862068872,-0.616666666666674,0.248275862068872,-0.608333333333283,0.255172413792995,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.008333333333391,0.000000000000000,2 +761,766,773,4807,0.241379310344750,-0.604166666666641,0.248275862068872,-0.608333333333283,0.255172413792995,-0.604166666666641,0.248275862068872,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448245,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448245,2 +762,769,774,11869,0.255172413792995,-0.645833333333359,0.262068965517112,-0.641666666666717,0.268965517241230,-0.645833333333359,0.262068965517112,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 +763,768,770,775,0.255172413792995,-0.637500000000022,0.262068965517112,-0.641666666666717,0.262068965517112,-0.633333333333326,0.268965517241230,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +764,769,771,776,0.255172413792995,-0.629166666666685,0.262068965517112,-0.633333333333326,0.262068965517112,-0.625000000000043,0.268965517241230,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 +765,770,772,777,0.255172413792995,-0.620833333333359,0.262068965517112,-0.625000000000043,0.262068965517112,-0.616666666666674,0.268965517241230,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 +766,771,773,778,0.255172413792995,-0.612499999999978,0.262068965517112,-0.616666666666674,0.262068965517112,-0.608333333333283,0.268965517241230,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +767,772,779,4821,0.255172413792995,-0.604166666666641,0.262068965517112,-0.608333333333283,0.268965517241230,-0.604166666666641,0.262068965517112,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 +768,775,780,11869,0.268965517241230,-0.645833333333359,0.275862068965347,-0.641666666666717,0.282758620689465,-0.645833333333359,0.275862068965347,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 +769,774,776,781,0.268965517241230,-0.637500000000022,0.275862068965347,-0.641666666666717,0.275862068965347,-0.633333333333326,0.282758620689465,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +770,775,777,782,0.268965517241230,-0.629166666666685,0.275862068965347,-0.633333333333326,0.275862068965347,-0.625000000000044,0.282758620689465,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 +771,776,778,783,0.268965517241230,-0.620833333333359,0.275862068965347,-0.625000000000044,0.275862068965347,-0.616666666666674,0.282758620689465,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333370,0.000000000000000,2 +772,777,779,784,0.268965517241230,-0.612499999999978,0.275862068965347,-0.616666666666674,0.275862068965347,-0.608333333333283,0.282758620689465,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +773,778,785,4835,0.268965517241230,-0.604166666666641,0.275862068965347,-0.608333333333283,0.282758620689465,-0.604166666666641,0.275862068965347,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 +774,781,786,11869,0.282758620689465,-0.645833333333359,0.289655172413583,-0.641666666666717,0.296551724137700,-0.645833333333359,0.289655172413583,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 +775,780,782,787,0.282758620689465,-0.637500000000022,0.289655172413583,-0.641666666666717,0.289655172413583,-0.633333333333326,0.296551724137700,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +776,781,783,788,0.282758620689465,-0.629166666666685,0.289655172413583,-0.633333333333326,0.289655172413583,-0.625000000000044,0.296551724137700,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 +777,782,784,789,0.282758620689465,-0.620833333333359,0.289655172413583,-0.625000000000044,0.289655172413583,-0.616666666666674,0.296551724137700,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333370,0.000000000000000,2 +778,783,785,790,0.282758620689465,-0.612499999999978,0.289655172413583,-0.616666666666674,0.289655172413583,-0.608333333333283,0.296551724137700,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,-0.000000000000000,2 +779,784,791,4849,0.282758620689465,-0.604166666666641,0.289655172413583,-0.608333333333283,0.296551724137700,-0.604166666666641,0.289655172413583,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 +780,787,792,11869,0.296551724137700,-0.645833333333359,0.303448275861818,-0.641666666666717,0.310344827585935,-0.645833333333359,0.303448275861818,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 +781,786,788,793,0.296551724137700,-0.637500000000022,0.303448275861818,-0.641666666666717,0.303448275861818,-0.633333333333326,0.310344827585935,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +782,787,789,794,0.296551724137700,-0.629166666666685,0.303448275861818,-0.633333333333326,0.303448275861818,-0.625000000000043,0.310344827585935,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 +783,788,790,795,0.296551724137700,-0.620833333333359,0.303448275861818,-0.625000000000043,0.303448275861818,-0.616666666666674,0.310344827585935,-0.620833333333359,-0.008333333333370,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 +784,789,791,796,0.296551724137700,-0.612499999999978,0.303448275861818,-0.616666666666674,0.303448275861818,-0.608333333333283,0.310344827585935,-0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,-0.000000000000000,2 +785,790,797,4863,0.296551724137700,-0.604166666666641,0.303448275861818,-0.608333333333283,0.310344827585935,-0.604166666666641,0.303448275861818,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 +786,793,798,11869,0.310344827585935,-0.645833333333359,0.317241379310053,-0.641666666666717,0.324137931034170,-0.645833333333359,0.317241379310053,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448235,1 +787,792,794,799,0.310344827585935,-0.637500000000022,0.317241379310053,-0.641666666666717,0.317241379310053,-0.633333333333326,0.324137931034170,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +788,793,795,800,0.310344827585935,-0.629166666666685,0.317241379310053,-0.633333333333326,0.317241379310053,-0.625000000000043,0.324137931034170,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 +789,794,796,801,0.310344827585935,-0.620833333333359,0.317241379310053,-0.625000000000043,0.317241379310053,-0.616666666666674,0.324137931034170,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 +790,795,797,802,0.310344827585935,-0.612499999999978,0.317241379310053,-0.616666666666674,0.317241379310053,-0.608333333333283,0.324137931034170,-0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +791,796,803,4877,0.310344827585935,-0.604166666666641,0.317241379310053,-0.608333333333283,0.324137931034170,-0.604166666666641,0.317241379310053,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 +792,799,804,11869,0.324137931034170,-0.645833333333359,0.331034482758288,-0.641666666666717,0.337931034482406,-0.645833333333359,0.331034482758288,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 +793,798,800,805,0.324137931034170,-0.637500000000022,0.331034482758288,-0.641666666666717,0.331034482758288,-0.633333333333326,0.337931034482406,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +794,799,801,806,0.324137931034170,-0.629166666666685,0.331034482758288,-0.633333333333326,0.331034482758288,-0.625000000000044,0.337931034482406,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333282,0.000000000000000,2 +795,800,802,807,0.324137931034170,-0.620833333333359,0.331034482758288,-0.625000000000044,0.331034482758288,-0.616666666666674,0.337931034482406,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 +796,801,803,808,0.324137931034170,-0.612499999999978,0.331034482758288,-0.616666666666674,0.331034482758288,-0.608333333333283,0.337931034482406,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +797,802,809,4891,0.324137931034170,-0.604166666666641,0.331034482758288,-0.608333333333283,0.337931034482406,-0.604166666666641,0.331034482758288,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 +798,805,810,11869,0.337931034482406,-0.645833333333359,0.344827586206523,-0.641666666666717,0.351724137930641,-0.645833333333359,0.344827586206523,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 +799,804,806,811,0.337931034482406,-0.637500000000022,0.344827586206523,-0.641666666666717,0.344827586206523,-0.633333333333326,0.351724137930641,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +800,805,807,812,0.337931034482406,-0.629166666666685,0.344827586206523,-0.633333333333326,0.344827586206523,-0.625000000000044,0.351724137930641,-0.629166666666685,-0.008333333333282,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 +801,806,808,813,0.337931034482406,-0.620833333333359,0.344827586206523,-0.625000000000044,0.344827586206523,-0.616666666666674,0.351724137930641,-0.620833333333359,-0.008333333333369,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 +802,807,809,814,0.337931034482406,-0.612499999999978,0.344827586206523,-0.616666666666674,0.344827586206523,-0.608333333333283,0.351724137930641,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +803,808,815,4905,0.337931034482406,-0.604166666666641,0.344827586206523,-0.608333333333283,0.351724137930641,-0.604166666666641,0.344827586206523,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 +804,811,816,11869,0.351724137930641,-0.645833333333359,0.358620689654758,-0.641666666666717,0.365517241378876,-0.645833333333359,0.358620689654758,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448235,1 +805,810,812,817,0.351724137930641,-0.637500000000022,0.358620689654758,-0.641666666666717,0.358620689654758,-0.633333333333326,0.365517241378876,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +806,811,813,818,0.351724137930641,-0.629166666666685,0.358620689654758,-0.633333333333326,0.358620689654758,-0.625000000000044,0.365517241378876,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333283,-0.000000000000000,2 +807,812,814,819,0.351724137930641,-0.620833333333359,0.358620689654758,-0.625000000000044,0.358620689654758,-0.616666666666674,0.365517241378876,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333370,0.000000000000000,2 +808,813,815,820,0.351724137930641,-0.612499999999978,0.358620689654758,-0.616666666666674,0.358620689654758,-0.608333333333283,0.365517241378876,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +809,814,821,4919,0.351724137930641,-0.604166666666641,0.358620689654758,-0.608333333333283,0.365517241378876,-0.604166666666641,0.358620689654758,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 +810,817,822,11869,0.365517241378876,-0.645833333333359,0.372413793102993,-0.641666666666717,0.379310344827111,-0.645833333333359,0.372413793102993,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 +811,816,818,823,0.365517241378876,-0.637500000000022,0.372413793102993,-0.641666666666717,0.372413793102993,-0.633333333333326,0.379310344827111,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,-0.000000000000000,2 +812,817,819,824,0.365517241378876,-0.629166666666685,0.372413793102993,-0.633333333333326,0.372413793102993,-0.625000000000043,0.379310344827111,-0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 +813,818,820,825,0.365517241378876,-0.620833333333359,0.372413793102993,-0.625000000000043,0.372413793102993,-0.616666666666674,0.379310344827111,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 +814,819,821,826,0.365517241378876,-0.612499999999978,0.372413793102993,-0.616666666666674,0.372413793102993,-0.608333333333283,0.379310344827111,-0.612499999999979,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +815,820,827,4933,0.365517241378876,-0.604166666666641,0.372413793102993,-0.608333333333283,0.379310344827111,-0.604166666666641,0.372413793102993,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 +816,823,828,11869,0.379310344827111,-0.645833333333359,0.386206896551228,-0.641666666666717,0.393103448275346,-0.645833333333359,0.386206896551228,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 +817,822,824,829,0.379310344827111,-0.637500000000022,0.386206896551228,-0.641666666666717,0.386206896551228,-0.633333333333326,0.393103448275346,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,-0.000000000000000,2 +818,823,825,830,0.379310344827111,-0.629166666666685,0.386206896551228,-0.633333333333326,0.386206896551228,-0.625000000000043,0.393103448275346,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 +819,824,826,831,0.379310344827111,-0.620833333333359,0.386206896551228,-0.625000000000043,0.386206896551228,-0.616666666666674,0.393103448275346,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 +820,825,827,832,0.379310344827111,-0.612499999999979,0.386206896551228,-0.616666666666674,0.386206896551228,-0.608333333333283,0.393103448275346,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 +821,826,833,4947,0.379310344827111,-0.604166666666641,0.386206896551228,-0.608333333333283,0.393103448275346,-0.604166666666641,0.386206896551228,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 +822,829,834,11869,0.393103448275346,-0.645833333333359,0.399999999999487,-0.641666666666717,0.406896551723629,-0.645833333333359,0.399999999999487,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448283,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448283,1 +823,828,830,835,0.393103448275346,-0.637500000000022,0.399999999999487,-0.641666666666717,0.399999999999487,-0.633333333333326,0.406896551723629,-0.637500000000022,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.008333333333391,0.000000000000000,2 +824,829,831,836,0.393103448275346,-0.629166666666685,0.399999999999487,-0.633333333333326,0.399999999999487,-0.625000000000043,0.406896551723629,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.008333333333283,0.000000000000000,2 +825,830,832,837,0.393103448275346,-0.620833333333359,0.399999999999487,-0.625000000000043,0.399999999999487,-0.616666666666674,0.406896551723629,-0.620833333333359,-0.008333333333369,-0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.008333333333369,-0.000000000000000,2 +826,831,833,838,0.393103448275346,-0.612499999999978,0.399999999999487,-0.616666666666674,0.399999999999487,-0.608333333333283,0.406896551723629,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.008333333333391,0.000000000000000,2 +827,832,839,4961,0.393103448275346,-0.604166666666641,0.399999999999487,-0.608333333333283,0.406896551723629,-0.604166666666641,0.399999999999487,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448283,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448283,2 +828,835,840,11869,0.406896551723629,-0.645833333333359,0.413793103447786,-0.641666666666717,0.420689655171942,-0.645833333333359,0.413793103447786,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448313,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448313,1 +829,834,836,841,0.406896551723629,-0.637500000000022,0.413793103447786,-0.641666666666717,0.413793103447786,-0.633333333333326,0.420689655171942,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333391,0.000000000000000,2 +830,835,837,842,0.406896551723629,-0.629166666666685,0.413793103447786,-0.633333333333326,0.413793103447786,-0.625000000000043,0.420689655171942,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333283,0.000000000000000,2 +831,836,838,843,0.406896551723629,-0.620833333333359,0.413793103447786,-0.625000000000043,0.413793103447786,-0.616666666666674,0.420689655171942,-0.620833333333359,-0.008333333333369,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333369,0.000000000000000,2 +832,837,839,844,0.406896551723629,-0.612499999999978,0.413793103447786,-0.616666666666674,0.413793103447786,-0.608333333333283,0.420689655171942,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333391,0.000000000000000,2 +833,838,845,4975,0.406896551723629,-0.604166666666641,0.413793103447786,-0.608333333333283,0.420689655171942,-0.604166666666641,0.413793103447786,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448313,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448313,2 +834,841,846,11869,0.420689655171942,-0.645833333333359,0.427586206896100,-0.641666666666717,0.434482758620257,-0.645833333333359,0.427586206896100,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448315,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448315,1 +835,840,842,847,0.420689655171942,-0.637500000000022,0.427586206896100,-0.641666666666717,0.427586206896100,-0.633333333333326,0.434482758620257,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333391,0.000000000000000,2 +836,841,843,848,0.420689655171942,-0.629166666666685,0.427586206896100,-0.633333333333326,0.427586206896100,-0.625000000000044,0.434482758620257,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333283,0.000000000000000,2 +837,842,844,849,0.420689655171942,-0.620833333333359,0.427586206896100,-0.625000000000044,0.427586206896100,-0.616666666666674,0.434482758620257,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333370,0.000000000000000,2 +838,843,845,850,0.420689655171942,-0.612499999999978,0.427586206896100,-0.616666666666674,0.427586206896100,-0.608333333333283,0.434482758620257,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333391,0.000000000000000,2 +839,844,851,4989,0.420689655171942,-0.604166666666641,0.427586206896100,-0.608333333333283,0.434482758620257,-0.604166666666641,0.427586206896100,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448315,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448315,2 +840,847,852,11869,0.434482758620257,-0.645833333333359,0.441379310344412,-0.641666666666717,0.448275862068567,-0.645833333333359,0.441379310344412,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448310,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448310,1 +841,846,848,853,0.434482758620257,-0.637500000000022,0.441379310344412,-0.641666666666717,0.441379310344412,-0.633333333333326,0.448275862068567,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.008333333333391,0.000000000000000,2 +842,847,849,854,0.434482758620257,-0.629166666666685,0.441379310344412,-0.633333333333326,0.441379310344412,-0.625000000000043,0.448275862068567,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.008333333333283,0.000000000000000,2 +843,848,850,855,0.434482758620257,-0.620833333333359,0.441379310344412,-0.625000000000043,0.441379310344412,-0.616666666666674,0.448275862068567,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.008333333333369,0.000000000000000,2 +844,849,851,856,0.434482758620257,-0.612499999999978,0.441379310344412,-0.616666666666674,0.441379310344412,-0.608333333333283,0.448275862068567,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.008333333333391,0.000000000000000,2 +845,850,857,5003,0.434482758620257,-0.604166666666641,0.441379310344412,-0.608333333333283,0.448275862068567,-0.604166666666641,0.441379310344412,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448310,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448310,2 +846,853,858,11869,0.448275862068567,-0.645833333333359,0.455172413792722,-0.641666666666717,0.462068965516876,-0.645833333333359,0.455172413792722,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,1 +847,852,854,859,0.448275862068567,-0.637500000000022,0.455172413792722,-0.641666666666717,0.455172413792722,-0.633333333333326,0.462068965516876,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.008333333333391,0.000000000000000,2 +848,853,855,860,0.448275862068567,-0.629166666666685,0.455172413792722,-0.633333333333326,0.455172413792722,-0.625000000000043,0.462068965516876,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333283,-0.000000000000000,2 +849,854,856,861,0.448275862068567,-0.620833333333359,0.455172413792722,-0.625000000000043,0.455172413792722,-0.616666666666674,0.462068965516876,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333369,0.000000000000000,2 +850,855,857,862,0.448275862068567,-0.612499999999978,0.455172413792722,-0.616666666666674,0.455172413792722,-0.608333333333283,0.462068965516876,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333391,0.000000000000000,2 +851,856,863,5017,0.448275862068567,-0.604166666666641,0.455172413792722,-0.608333333333283,0.462068965516876,-0.604166666666641,0.455172413792722,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,2 +852,859,864,11869,0.462068965516876,-0.645833333333359,0.468965517241031,-0.641666666666717,0.475862068965185,-0.645833333333359,0.468965517241031,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,1 +853,858,860,865,0.462068965516876,-0.637500000000022,0.468965517241031,-0.641666666666717,0.468965517241031,-0.633333333333326,0.475862068965185,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333391,0.000000000000000,2 +854,859,861,866,0.462068965516876,-0.629166666666685,0.468965517241031,-0.633333333333326,0.468965517241031,-0.625000000000043,0.475862068965185,-0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,2 +855,860,862,867,0.462068965516876,-0.620833333333359,0.468965517241031,-0.625000000000043,0.468965517241031,-0.616666666666674,0.475862068965185,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333369,0.000000000000000,2 +856,861,863,868,0.462068965516876,-0.612499999999978,0.468965517241031,-0.616666666666674,0.468965517241031,-0.608333333333283,0.475862068965185,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333391,0.000000000000000,2 +857,862,869,5031,0.462068965516876,-0.604166666666641,0.468965517241031,-0.608333333333283,0.475862068965185,-0.604166666666641,0.468965517241031,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,2 +858,865,870,11869,0.475862068965185,-0.645833333333359,0.482758620689341,-0.641666666666717,0.489655172413498,-0.645833333333359,0.482758620689341,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448313,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448313,1 +859,864,866,871,0.475862068965185,-0.637500000000022,0.482758620689341,-0.641666666666717,0.482758620689341,-0.633333333333326,0.489655172413498,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333391,-0.000000000000000,2 +860,865,867,872,0.475862068965185,-0.629166666666685,0.482758620689341,-0.633333333333326,0.482758620689341,-0.625000000000043,0.489655172413498,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333283,0.000000000000000,2 +861,866,868,873,0.475862068965185,-0.620833333333359,0.482758620689341,-0.625000000000043,0.482758620689341,-0.616666666666674,0.489655172413498,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333369,-0.000000000000000,2 +862,867,869,874,0.475862068965185,-0.612499999999978,0.482758620689341,-0.616666666666674,0.482758620689341,-0.608333333333283,0.489655172413498,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333391,0.000000000000000,2 +863,868,875,5045,0.475862068965185,-0.604166666666641,0.482758620689341,-0.608333333333283,0.489655172413498,-0.604166666666641,0.482758620689341,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448313,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448313,2 +864,871,876,11869,0.489655172413498,-0.645833333333359,0.496551724137666,-0.641666666666717,0.503448275861834,-0.645833333333359,0.496551724137666,-0.650000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,0.013793103448336,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448336,1 +865,870,872,877,0.489655172413498,-0.637500000000022,0.496551724137666,-0.641666666666717,0.496551724137666,-0.633333333333326,0.503448275861834,-0.637500000000022,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.008333333333391,0.000000000000000,2 +866,871,873,878,0.489655172413498,-0.629166666666685,0.496551724137666,-0.633333333333326,0.496551724137666,-0.625000000000043,0.503448275861834,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.008333333333283,0.000000000000000,2 +867,872,874,879,0.489655172413498,-0.620833333333359,0.496551724137666,-0.625000000000043,0.496551724137666,-0.616666666666674,0.503448275861834,-0.620833333333359,-0.008333333333369,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.008333333333369,0.000000000000000,2 +868,873,875,880,0.489655172413498,-0.612499999999978,0.496551724137666,-0.616666666666674,0.496551724137666,-0.608333333333283,0.503448275861834,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.008333333333391,0.000000000000000,2 +869,874,881,5059,0.489655172413498,-0.604166666666641,0.496551724137666,-0.608333333333283,0.503448275861834,-0.604166666666641,0.496551724137666,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448336,2 +870,877,882,11869,0.503448275861834,-0.645833333333359,0.510344827585989,-0.641666666666717,0.517241379310145,-0.645833333333359,0.510344827585989,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,1 +871,876,878,883,0.503448275861834,-0.637500000000022,0.510344827585989,-0.641666666666717,0.510344827585989,-0.633333333333326,0.517241379310145,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 +872,877,879,884,0.503448275861834,-0.629166666666685,0.510344827585989,-0.633333333333326,0.510344827585989,-0.625000000000043,0.517241379310145,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,2 +873,878,880,885,0.503448275861834,-0.620833333333359,0.510344827585989,-0.625000000000043,0.510344827585989,-0.616666666666674,0.517241379310145,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333369,0.000000000000000,2 +874,879,881,886,0.503448275861834,-0.612499999999978,0.510344827585989,-0.616666666666674,0.510344827585989,-0.608333333333283,0.517241379310145,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 +875,880,887,5073,0.503448275861834,-0.604166666666641,0.510344827585989,-0.608333333333283,0.517241379310145,-0.604166666666641,0.510344827585989,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,2 +876,883,888,11869,0.517241379310145,-0.645833333333359,0.524137931034299,-0.641666666666717,0.531034482758453,-0.645833333333359,0.524137931034299,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448308,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448308,1 +877,882,884,889,0.517241379310145,-0.637500000000022,0.524137931034299,-0.641666666666717,0.524137931034299,-0.633333333333326,0.531034482758453,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.008333333333391,-0.000000000000000,2 +878,883,885,890,0.517241379310145,-0.629166666666685,0.524137931034299,-0.633333333333326,0.524137931034299,-0.625000000000043,0.531034482758453,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.008333333333283,0.000000000000000,2 +879,884,886,891,0.517241379310145,-0.620833333333359,0.524137931034299,-0.625000000000043,0.524137931034299,-0.616666666666674,0.531034482758453,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.008333333333369,-0.000000000000000,2 +880,885,887,892,0.517241379310145,-0.612499999999978,0.524137931034299,-0.616666666666674,0.524137931034299,-0.608333333333283,0.531034482758453,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.008333333333391,0.000000000000000,2 +881,886,893,5087,0.517241379310145,-0.604166666666641,0.524137931034299,-0.608333333333283,0.531034482758453,-0.604166666666641,0.524137931034299,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448308,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448308,2 +882,889,894,11869,0.531034482758453,-0.645833333333359,0.537931034482601,-0.641666666666717,0.544827586206749,-0.645833333333359,0.537931034482601,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448296,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448296,1 +883,888,890,895,0.531034482758453,-0.637500000000022,0.537931034482601,-0.641666666666717,0.537931034482601,-0.633333333333326,0.544827586206749,-0.637500000000022,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.008333333333391,0.000000000000000,2 +884,889,891,896,0.531034482758453,-0.629166666666685,0.537931034482601,-0.633333333333326,0.537931034482601,-0.625000000000043,0.544827586206749,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.008333333333283,-0.000000000000000,2 +885,890,892,897,0.531034482758453,-0.620833333333359,0.537931034482601,-0.625000000000043,0.537931034482601,-0.616666666666674,0.544827586206749,-0.620833333333359,-0.008333333333369,0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.008333333333370,0.000000000000000,2 +886,891,893,898,0.531034482758453,-0.612499999999978,0.537931034482601,-0.616666666666674,0.537931034482601,-0.608333333333283,0.544827586206749,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.008333333333391,0.000000000000000,2 +887,892,899,5101,0.531034482758453,-0.604166666666641,0.537931034482601,-0.608333333333283,0.544827586206749,-0.604166666666641,0.537931034482601,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448296,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448296,2 +888,895,900,11869,0.544827586206749,-0.645833333333359,0.551724137930900,-0.641666666666717,0.558620689655051,-0.645833333333359,0.551724137930900,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448302,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448302,1 +889,894,896,901,0.544827586206749,-0.637500000000022,0.551724137930900,-0.641666666666717,0.551724137930900,-0.633333333333326,0.558620689655051,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.008333333333391,-0.000000000000000,2 +890,895,897,902,0.544827586206749,-0.629166666666685,0.551724137930900,-0.633333333333326,0.551724137930900,-0.625000000000043,0.558620689655051,-0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.008333333333283,0.000000000000000,2 +891,896,898,903,0.544827586206749,-0.620833333333359,0.551724137930900,-0.625000000000043,0.551724137930900,-0.616666666666674,0.558620689655051,-0.620833333333359,-0.008333333333370,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.008333333333369,0.000000000000000,2 +892,897,899,904,0.544827586206749,-0.612499999999978,0.551724137930900,-0.616666666666674,0.551724137930900,-0.608333333333283,0.558620689655051,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.008333333333391,0.000000000000000,2 +893,898,905,5115,0.544827586206749,-0.604166666666641,0.551724137930900,-0.608333333333283,0.558620689655051,-0.604166666666641,0.551724137930900,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448302,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448302,2 +894,901,906,11869,0.558620689655051,-0.645833333333359,0.565517241379205,-0.641666666666717,0.572413793103360,-0.645833333333359,0.565517241379205,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,1 +895,900,902,907,0.558620689655051,-0.637500000000022,0.565517241379205,-0.641666666666717,0.565517241379206,-0.633333333333326,0.572413793103360,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333391,-0.000000000000000,2 +896,901,903,908,0.558620689655051,-0.629166666666685,0.565517241379206,-0.633333333333326,0.565517241379205,-0.625000000000043,0.572413793103360,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,2 +897,902,904,909,0.558620689655051,-0.620833333333359,0.565517241379205,-0.625000000000043,0.565517241379205,-0.616666666666674,0.572413793103360,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333369,0.000000000000000,2 +898,903,905,910,0.558620689655051,-0.612499999999978,0.565517241379205,-0.616666666666674,0.565517241379205,-0.608333333333283,0.572413793103360,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333391,0.000000000000000,2 +899,904,911,5129,0.558620689655051,-0.604166666666641,0.565517241379205,-0.608333333333283,0.572413793103360,-0.604166666666641,0.565517241379205,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,2 +900,907,912,11869,0.572413793103360,-0.645833333333359,0.579310344827519,-0.641666666666717,0.586206896551678,-0.645833333333359,0.579310344827519,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448318,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448318,1 +901,906,908,913,0.572413793103360,-0.637500000000022,0.579310344827519,-0.641666666666717,0.579310344827519,-0.633333333333326,0.586206896551678,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.008333333333391,0.000000000000000,2 +902,907,909,914,0.572413793103360,-0.629166666666685,0.579310344827519,-0.633333333333326,0.579310344827519,-0.625000000000043,0.586206896551678,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.008333333333283,-0.000000000000000,2 +903,908,910,915,0.572413793103360,-0.620833333333359,0.579310344827519,-0.625000000000043,0.579310344827519,-0.616666666666674,0.586206896551678,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.008333333333369,-0.000000000000000,2 +904,909,911,916,0.572413793103360,-0.612499999999978,0.579310344827519,-0.616666666666674,0.579310344827519,-0.608333333333283,0.586206896551678,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.008333333333391,0.000000000000000,2 +905,910,917,5143,0.572413793103360,-0.604166666666641,0.579310344827519,-0.608333333333283,0.586206896551678,-0.604166666666641,0.579310344827519,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448318,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448318,2 +906,913,918,11869,0.586206896551678,-0.645833333333359,0.593103448275839,-0.641666666666717,0.600000000000000,-0.645833333333359,0.593103448275839,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448322,0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448322,1 +907,912,914,919,0.586206896551678,-0.637500000000022,0.593103448275839,-0.641666666666717,0.593103448275839,-0.633333333333326,0.600000000000000,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,0.008333333333391,0.000000000000000,2 +908,913,915,920,0.586206896551678,-0.629166666666685,0.593103448275839,-0.633333333333326,0.593103448275839,-0.625000000000043,0.600000000000000,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,0.008333333333283,0.000000000000000,2 +909,914,916,921,0.586206896551678,-0.620833333333359,0.593103448275839,-0.625000000000043,0.593103448275839,-0.616666666666674,0.600000000000000,-0.620833333333359,-0.008333333333369,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,0.008333333333369,0.000000000000000,2 +910,915,917,922,0.586206896551678,-0.612499999999978,0.593103448275839,-0.616666666666674,0.593103448275839,-0.608333333333283,0.600000000000000,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,0.008333333333391,0.000000000000000,2 +911,916,923,5157,0.586206896551678,-0.604166666666641,0.593103448275839,-0.608333333333283,0.600000000000000,-0.604166666666641,0.593103448275839,-0.600000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448322,0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448322,2 +912,919,924,11869,0.600000000000000,-0.645833333333359,0.606249999999978,-0.641666666666717,0.612499999999957,-0.645833333333359,0.606249999999978,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.012499999999957,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012499999999957,1 +913,918,920,925,0.600000000000000,-0.637500000000022,0.606249999999978,-0.641666666666717,0.606249999999978,-0.633333333333326,0.612499999999957,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,2 +914,919,921,926,0.600000000000000,-0.629166666666685,0.606249999999978,-0.633333333333326,0.606249999999978,-0.625000000000043,0.612499999999957,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.008333333333283,0.000000000000000,2 +915,920,922,927,0.600000000000000,-0.620833333333359,0.606249999999978,-0.625000000000043,0.606249999999978,-0.616666666666674,0.612499999999957,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.008333333333369,-0.000000000000000,2 +916,921,923,928,0.600000000000000,-0.612499999999978,0.606249999999978,-0.616666666666674,0.606249999999978,-0.608333333333283,0.612499999999957,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999956,0.008333333333391,0.000000000000000,2 +917,922,929,942,0.600000000000000,-0.604166666666641,0.606249999999978,-0.608333333333283,0.612499999999957,-0.604166666666641,0.606249999999978,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.012499999999956,0.008333333333283,-0.000000000000000,0.000000000000000,0.012499999999957,2 +918,925,930,11869,0.612499999999957,-0.645833333333359,0.618749999999957,-0.641666666666717,0.624999999999956,-0.645833333333359,0.618749999999957,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.012500000000000,0.008333333333283,0.000000000000000,-0.000000000000000,-0.012500000000000,1 +919,924,926,931,0.612499999999957,-0.637500000000022,0.618749999999957,-0.641666666666717,0.618749999999957,-0.633333333333326,0.624999999999956,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333391,-0.000000000000000,2 +920,925,927,932,0.612499999999957,-0.629166666666685,0.618749999999957,-0.633333333333326,0.618749999999957,-0.625000000000043,0.624999999999956,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333283,-0.000000000000000,2 +921,926,928,933,0.612499999999957,-0.620833333333359,0.618749999999957,-0.625000000000043,0.618749999999957,-0.616666666666674,0.624999999999957,-0.620833333333359,-0.008333333333369,0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333369,0.000000000000000,2 +922,927,929,934,0.612499999999957,-0.612499999999978,0.618749999999957,-0.616666666666674,0.618749999999957,-0.608333333333283,0.624999999999957,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333391,-0.000000000000000,2 +923,928,935,956,0.612499999999957,-0.604166666666641,0.618749999999957,-0.608333333333283,0.624999999999957,-0.604166666666641,0.618749999999957,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.012500000000000,0.008333333333283,0.000000000000000,0.000000000000000,0.012500000000000,2 +924,931,936,11869,0.624999999999956,-0.645833333333359,0.631250000000000,-0.641666666666717,0.637500000000043,-0.645833333333359,0.631250000000000,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.012500000000087,0.008333333333283,0.000000000000000,-0.000000000000000,-0.012500000000087,1 +925,930,932,937,0.624999999999956,-0.637500000000022,0.631250000000000,-0.641666666666717,0.631250000000000,-0.633333333333326,0.637500000000043,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,0.008333333333391,0.000000000000000,2 +926,931,933,938,0.624999999999956,-0.629166666666685,0.631250000000000,-0.633333333333326,0.631250000000000,-0.625000000000043,0.637500000000043,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.008333333333283,0.000000000000000,2 +927,932,934,939,0.624999999999957,-0.620833333333359,0.631250000000000,-0.625000000000043,0.631250000000000,-0.616666666666674,0.637500000000043,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,0.008333333333369,0.000000000000000,2 +928,933,935,940,0.624999999999957,-0.612499999999978,0.631250000000000,-0.616666666666674,0.631250000000000,-0.608333333333283,0.637500000000043,-0.612499999999978,-0.008333333333391,0.000000000000000,0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.008333333333391,0.000000000000000,2 +929,934,941,970,0.624999999999957,-0.604166666666641,0.631250000000000,-0.608333333333283,0.637500000000043,-0.604166666666641,0.631250000000000,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.008333333333283,-0.000000000000000,0.000000000000000,0.012500000000087,2 +930,937,11869,0.637500000000043,-0.645833333333359,0.643750000000022,-0.641666666666717,0.650000000000000,-0.645833333333359,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.012499999999957,0.008333333333283,0.000000000000000,1 +931,936,938,11869,0.637500000000043,-0.637500000000022,0.643750000000022,-0.641666666666717,0.643750000000022,-0.633333333333326,0.650000000000000,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,1 +932,937,939,11869,0.637500000000043,-0.629166666666685,0.643750000000022,-0.633333333333326,0.643750000000022,-0.625000000000043,0.650000000000000,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333283,0.000000000000000,1 +933,938,940,11869,0.637500000000043,-0.620833333333359,0.643750000000022,-0.625000000000043,0.643750000000022,-0.616666666666674,0.650000000000000,-0.620833333333359,-0.008333333333369,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333369,0.000000000000000,1 +934,939,941,11869,0.637500000000043,-0.612499999999978,0.643750000000022,-0.616666666666674,0.643750000000022,-0.608333333333283,0.650000000000000,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,1 +935,940,984,11869,0.637500000000043,-0.604166666666641,0.643750000000022,-0.608333333333283,0.643750000000022,-0.600000000000000,0.650000000000000,-0.604166666666641,-0.008333333333283,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333283,-0.000000000000000,1 +923,943,956,5157,0.606249999999978,-0.600000000000000,0.606249999999978,-0.585714285714255,0.612499999999957,-0.592857142857127,0.600000000000000,-0.592857142857127,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285745,0.000000000000000,-0.014285714285745,-0.000000000000000,2 +942,944,957,5158,0.606249999999978,-0.585714285714255,0.606249999999978,-0.571428571428537,0.612499999999957,-0.578571428571396,0.600000000000000,-0.578571428571396,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285717,-0.000000000000000,-0.014285714285717,-0.000000000000000,2 +943,945,958,5159,0.606249999999978,-0.571428571428537,0.606249999999978,-0.557142857142860,0.612499999999957,-0.564285714285699,0.600000000000000,-0.564285714285699,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999956,0.014285714285677,0.000000000000000,-0.014285714285677,-0.000000000000000,2 +944,946,959,5160,0.606249999999978,-0.557142857142860,0.606249999999978,-0.542857142857183,0.612499999999957,-0.550000000000022,0.600000000000000,-0.550000000000022,-0.000000000000000,-0.012499999999956,0.000000000000000,0.012499999999957,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,2 +945,947,960,5161,0.606249999999978,-0.542857142857183,0.606249999999978,-0.528571428571506,0.612499999999957,-0.535714285714345,0.600000000000000,-0.535714285714345,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,2 +946,948,961,5162,0.606249999999978,-0.528571428571506,0.606249999999978,-0.514285714285913,0.612499999999957,-0.521428571428709,0.600000000000000,-0.521428571428709,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285594,0.000000000000000,-0.014285714285593,-0.000000000000000,2 +947,949,962,5163,0.606249999999978,-0.514285714285913,0.606249999999978,-0.500000000000293,0.612499999999957,-0.507142857143102,0.600000000000000,-0.507142857143103,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285620,0.000000000000000,-0.014285714285620,-0.000000000000000,2 +948,950,963,5164,0.606249999999978,-0.500000000000293,0.606249999999978,-0.485714285714549,0.612499999999957,-0.492857142857421,0.600000000000000,-0.492857142857421,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285744,0.000000000000000,-0.014285714285744,-0.000000000000000,2 +949,951,964,5165,0.606249999999978,-0.485714285714549,0.606249999999978,-0.471428571428794,0.612499999999957,-0.478571428571672,0.600000000000000,-0.478571428571672,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285755,-0.000000000000000,-0.014285714285754,-0.000000000000000,2 +950,952,965,5166,0.606249999999978,-0.471428571428794,0.606249999999978,-0.457142857143034,0.612499999999957,-0.464285714285914,0.600000000000000,-0.464285714285914,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285761,0.000000000000000,-0.014285714285761,-0.000000000000000,2 +951,953,966,5167,0.606249999999978,-0.457142857143034,0.606249999999978,-0.442857142857270,0.612499999999957,-0.450000000000152,0.600000000000000,-0.450000000000152,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285764,-0.000000000000000,-0.014285714285764,-0.000000000000000,2 +952,954,967,5168,0.606249999999978,-0.442857142857270,0.606249999999978,-0.428571428571509,0.612499999999957,-0.435714285714389,0.600000000000000,-0.435714285714389,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285761,0.000000000000000,-0.014285714285761,-0.000000000000000,2 +953,955,968,5169,0.606249999999978,-0.428571428571509,0.606249999999978,-0.414285714285756,0.612499999999957,-0.421428571428633,0.600000000000000,-0.421428571428633,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285753,-0.000000000000000,-0.014285714285753,-0.000000000000000,2 +954,969,998,5170,0.606249999999978,-0.414285714285756,0.612499999999957,-0.407142857142878,0.606249999999978,-0.400000000000000,0.600000000000000,-0.407142857142878,-0.000000000000000,-0.012499999999957,0.014285714285756,0.000000000000000,0.000000000000000,0.012499999999957,-0.014285714285756,0.000000000000000,2 +929,942,957,970,0.618749999999957,-0.600000000000000,0.612499999999957,-0.592857142857127,0.618749999999957,-0.585714285714255,0.624999999999957,-0.592857142857127,-0.000000000000000,-0.012500000000000,-0.014285714285745,-0.000000000000000,0.000000000000000,0.012500000000000,0.014285714285745,0.000000000000000,2 +943,956,958,971,0.612499999999957,-0.578571428571396,0.618749999999957,-0.585714285714255,0.618749999999957,-0.571428571428537,0.624999999999957,-0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285717,-0.000000000000000,2 +944,957,959,972,0.612499999999957,-0.564285714285699,0.618749999999957,-0.571428571428537,0.618749999999957,-0.557142857142860,0.624999999999957,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285677,0.000000000000000,2 +945,958,960,973,0.612499999999957,-0.550000000000022,0.618749999999957,-0.557142857142860,0.618749999999957,-0.542857142857183,0.624999999999956,-0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285677,0.000000000000000,2 +946,959,961,974,0.612499999999957,-0.535714285714345,0.618749999999957,-0.542857142857183,0.618749999999957,-0.528571428571506,0.624999999999956,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285677,-0.000000000000000,2 +947,960,962,975,0.612499999999957,-0.521428571428709,0.618749999999957,-0.528571428571506,0.618749999999957,-0.514285714285913,0.624999999999957,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285593,0.000000000000000,2 +948,961,963,976,0.612499999999957,-0.507142857143102,0.618749999999957,-0.514285714285913,0.618749999999957,-0.500000000000293,0.624999999999957,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285620,0.000000000000000,2 +949,962,964,977,0.612499999999957,-0.492857142857421,0.618749999999957,-0.500000000000293,0.618749999999957,-0.485714285714549,0.624999999999957,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.012500000000000,-0.000000000000000,0.012500000000000,0.014285714285744,0.000000000000000,2 +950,963,965,978,0.612499999999957,-0.478571428571672,0.618749999999957,-0.485714285714549,0.618749999999957,-0.471428571428794,0.624999999999957,-0.478571428571672,-0.014285714285755,0.000000000000000,0.000000000000000,-0.012500000000000,-0.000000000000000,0.012500000000000,0.014285714285755,0.000000000000000,2 +951,964,966,979,0.612499999999957,-0.464285714285914,0.618749999999957,-0.471428571428794,0.618749999999957,-0.457142857143033,0.624999999999957,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285761,0.000000000000000,2 +952,965,967,980,0.612499999999957,-0.450000000000152,0.618749999999957,-0.457142857143033,0.618749999999957,-0.442857142857270,0.624999999999957,-0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285764,0.000000000000000,2 +953,966,968,981,0.612499999999957,-0.435714285714389,0.618749999999957,-0.442857142857270,0.618749999999957,-0.428571428571509,0.624999999999956,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285761,0.000000000000000,2 +954,967,969,982,0.612499999999957,-0.421428571428633,0.618749999999957,-0.428571428571509,0.618749999999957,-0.414285714285756,0.624999999999956,-0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285753,-0.000000000000000,2 +955,968,983,1057,0.612499999999957,-0.407142857142878,0.618749999999957,-0.414285714285756,0.624999999999957,-0.407142857142878,0.618749999999957,-0.400000000000000,-0.014285714285756,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.014285714285756,-0.000000000000000,0.000000000000000,0.012500000000000,2 +935,956,971,984,0.631250000000000,-0.600000000000000,0.624999999999957,-0.592857142857127,0.631250000000000,-0.585714285714255,0.637500000000043,-0.592857142857127,-0.000000000000000,-0.012500000000087,-0.014285714285745,-0.000000000000000,0.000000000000000,0.012500000000087,0.014285714285745,0.000000000000000,2 +957,970,972,985,0.624999999999957,-0.578571428571396,0.631250000000000,-0.585714285714255,0.631250000000000,-0.571428571428537,0.637500000000043,-0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285717,-0.000000000000000,2 +958,971,973,986,0.624999999999957,-0.564285714285699,0.631250000000000,-0.571428571428537,0.631250000000000,-0.557142857142860,0.637500000000043,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,0.014285714285677,-0.000000000000000,2 +959,972,974,987,0.624999999999956,-0.550000000000022,0.631250000000000,-0.557142857142860,0.631250000000000,-0.542857142857183,0.637500000000043,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285677,0.000000000000000,2 +960,973,975,988,0.624999999999956,-0.535714285714345,0.631250000000000,-0.542857142857183,0.631250000000000,-0.528571428571506,0.637500000000043,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285677,-0.000000000000000,2 +961,974,976,989,0.624999999999957,-0.521428571428709,0.631250000000000,-0.528571428571506,0.631250000000000,-0.514285714285913,0.637500000000043,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,0.014285714285594,0.000000000000000,2 +962,975,977,990,0.624999999999957,-0.507142857143103,0.631250000000000,-0.514285714285913,0.631250000000000,-0.500000000000293,0.637500000000043,-0.507142857143102,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285620,0.000000000000000,2 +963,976,978,991,0.624999999999957,-0.492857142857421,0.631250000000000,-0.500000000000293,0.631250000000000,-0.485714285714549,0.637500000000043,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285744,0.000000000000000,2 +964,977,979,992,0.624999999999957,-0.478571428571672,0.631250000000000,-0.485714285714549,0.631250000000000,-0.471428571428794,0.637500000000043,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285755,0.000000000000000,2 +965,978,980,993,0.624999999999957,-0.464285714285914,0.631250000000000,-0.471428571428794,0.631250000000000,-0.457142857143033,0.637500000000043,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285761,0.000000000000000,2 +966,979,981,994,0.624999999999957,-0.450000000000152,0.631250000000000,-0.457142857143033,0.631250000000000,-0.442857142857270,0.637500000000043,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285764,-0.000000000000000,2 +967,980,982,995,0.624999999999956,-0.435714285714389,0.631250000000000,-0.442857142857270,0.631250000000000,-0.428571428571509,0.637500000000043,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285761,0.000000000000000,2 +968,981,983,996,0.624999999999956,-0.421428571428633,0.631250000000000,-0.428571428571509,0.631250000000000,-0.414285714285756,0.637500000000043,-0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285753,-0.000000000000000,2 +969,982,997,1116,0.624999999999957,-0.407142857142878,0.631250000000000,-0.414285714285756,0.637500000000043,-0.407142857142878,0.631250000000000,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.012500000000087,0.014285714285756,-0.000000000000000,0.000000000000000,0.012500000000087,2 +941,970,985,11869,0.643750000000022,-0.600000000000000,0.637500000000043,-0.592857142857127,0.643750000000022,-0.585714285714255,0.650000000000000,-0.592857142857127,0.000000000000000,-0.012499999999957,-0.014285714285745,-0.000000000000000,-0.000000000000000,0.012499999999957,0.014285714285745,0.000000000000000,1 +971,984,986,11869,0.637500000000043,-0.578571428571396,0.643750000000022,-0.585714285714255,0.643750000000022,-0.571428571428537,0.650000000000000,-0.578571428571396,-0.014285714285717,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285717,0.000000000000000,1 +972,985,987,11869,0.637500000000043,-0.564285714285699,0.643750000000022,-0.571428571428537,0.643750000000022,-0.557142857142860,0.650000000000000,-0.564285714285699,-0.014285714285677,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.014285714285677,0.000000000000000,1 +973,986,988,11869,0.637500000000043,-0.550000000000022,0.643750000000022,-0.557142857142860,0.643750000000022,-0.542857142857183,0.650000000000000,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.012499999999956,-0.000000000000000,0.012499999999957,0.014285714285677,0.000000000000000,1 +974,987,989,11869,0.637500000000043,-0.535714285714345,0.643750000000022,-0.542857142857183,0.643750000000022,-0.528571428571506,0.650000000000000,-0.535714285714345,-0.014285714285677,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285677,0.000000000000000,1 +975,988,990,11869,0.637500000000043,-0.521428571428709,0.643750000000022,-0.528571428571506,0.643750000000022,-0.514285714285913,0.650000000000000,-0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285593,0.000000000000000,1 +976,989,991,11869,0.637500000000043,-0.507142857143102,0.643750000000022,-0.514285714285913,0.643750000000022,-0.500000000000293,0.650000000000000,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285620,0.000000000000000,1 +977,990,992,11869,0.637500000000043,-0.492857142857421,0.643750000000022,-0.500000000000293,0.643750000000022,-0.485714285714549,0.650000000000000,-0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285744,0.000000000000000,1 +978,991,993,11869,0.637500000000043,-0.478571428571672,0.643750000000022,-0.485714285714549,0.643750000000022,-0.471428571428794,0.650000000000000,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285754,0.000000000000000,1 +979,992,994,11869,0.637500000000043,-0.464285714285914,0.643750000000022,-0.471428571428794,0.643750000000022,-0.457142857143034,0.650000000000000,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285761,0.000000000000000,1 +980,993,995,11869,0.637500000000043,-0.450000000000152,0.643750000000022,-0.457142857143034,0.643750000000022,-0.442857142857270,0.650000000000000,-0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.014285714285764,0.000000000000000,1 +981,994,996,11869,0.637500000000043,-0.435714285714389,0.643750000000022,-0.442857142857270,0.643750000000022,-0.428571428571509,0.650000000000000,-0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.012499999999956,-0.000000000000000,0.012499999999957,0.014285714285761,0.000000000000000,1 +982,995,997,11869,0.637500000000043,-0.421428571428633,0.643750000000022,-0.428571428571509,0.643750000000022,-0.414285714285756,0.650000000000000,-0.421428571428633,-0.014285714285753,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285753,0.000000000000000,1 +983,996,1175,11869,0.637500000000043,-0.407142857142878,0.643750000000022,-0.414285714285756,0.643750000000022,-0.400000000000000,0.650000000000000,-0.407142857142878,-0.014285714285756,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285756,-0.000000000000000,1 +955,999,1057,6823,0.606249999999978,-0.400000000000000,0.606249999999978,-0.386440677966068,0.612499999999957,-0.393220338983034,0.600000000000000,-0.393220338983034,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033932,0.000000000000000,-0.013559322033932,-0.000000000000000,2 +998,1000,1058,6824,0.606249999999978,-0.386440677966068,0.606249999999978,-0.372881355932122,0.612499999999957,-0.379661016949095,0.600000000000000,-0.379661016949095,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033946,-0.000000000000000,-0.013559322033946,0.000000000000000,2 +999,1001,1059,6825,0.606249999999978,-0.372881355932122,0.606249999999978,-0.359322033898204,0.612499999999957,-0.366101694915163,0.600000000000000,-0.366101694915163,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033918,0.000000000000000,-0.013559322033918,0.000000000000000,2 +1000,1002,1060,6826,0.606249999999978,-0.359322033898204,0.606249999999978,-0.345762711864250,0.612499999999957,-0.352542372881227,0.600000000000000,-0.352542372881227,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033954,0.000000000000000,-0.013559322033954,0.000000000000000,2 +1001,1003,1061,6827,0.606249999999978,-0.345762711864250,0.606249999999978,-0.332203389830336,0.612499999999957,-0.338983050847293,0.600000000000000,-0.338983050847293,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999956,0.013559322033914,0.000000000000000,-0.013559322033914,0.000000000000000,2 +1002,1004,1062,6828,0.606249999999978,-0.332203389830336,0.606249999999978,-0.318644067796385,0.612499999999957,-0.325423728813361,0.600000000000000,-0.325423728813361,-0.000000000000000,-0.012499999999956,0.000000000000000,0.012499999999957,0.013559322033951,-0.000000000000000,-0.013559322033950,0.000000000000000,2 +1003,1005,1063,6829,0.606249999999978,-0.318644067796385,0.606249999999978,-0.305084745762457,0.612499999999957,-0.311864406779421,0.600000000000000,-0.311864406779421,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999956,0.013559322033928,0.000000000000000,-0.013559322033928,0.000000000000000,2 +1004,1006,1064,6830,0.606249999999978,-0.305084745762457,0.606249999999978,-0.291525423728521,0.612499999999957,-0.298305084745489,0.600000000000000,-0.298305084745489,-0.000000000000000,-0.012499999999956,-0.000000000000000,0.012499999999957,0.013559322033936,-0.000000000000000,-0.013559322033936,0.000000000000000,2 +1005,1007,1065,6831,0.606249999999978,-0.291525423728521,0.606249999999978,-0.277966101694579,0.612499999999957,-0.284745762711550,0.600000000000000,-0.284745762711550,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033942,-0.000000000000000,-0.013559322033942,0.000000000000000,2 +1006,1008,1066,6832,0.606249999999978,-0.277966101694579,0.606249999999978,-0.264406779660657,0.612499999999957,-0.271186440677618,0.600000000000000,-0.271186440677618,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033922,0.000000000000000,-0.013559322033922,0.000000000000000,2 +1007,1009,1067,6833,0.606249999999978,-0.264406779660657,0.606249999999978,-0.250847457626703,0.612499999999957,-0.257627118643680,0.600000000000000,-0.257627118643680,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033954,0.000000000000000,-0.013559322033954,0.000000000000000,2 +1008,1010,1068,6834,0.606249999999978,-0.250847457626703,0.606249999999978,-0.237288135592793,0.612499999999957,-0.244067796609748,0.600000000000000,-0.244067796609748,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033910,-0.000000000000000,-0.013559322033910,0.000000000000000,2 +1009,1011,1069,6835,0.606249999999978,-0.237288135592793,0.606249999999978,-0.223728813558839,0.612499999999957,-0.230508474575816,0.600000000000000,-0.230508474575816,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033954,-0.000000000000000,-0.013559322033954,0.000000000000000,2 +1010,1012,1070,6836,0.606249999999978,-0.223728813558839,0.606249999999978,-0.210169491524915,0.612499999999957,-0.216949152541877,0.600000000000000,-0.216949152541877,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033924,0.000000000000000,-0.013559322033924,0.000000000000000,2 +1011,1013,1071,6837,0.606249999999978,-0.210169491524915,0.606249999999978,-0.196610169490975,0.612499999999957,-0.203389830507945,0.600000000000000,-0.203389830507945,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033940,-0.000000000000000,-0.013559322033940,0.000000000000000,2 +1012,1014,1072,6838,0.606249999999978,-0.196610169490975,0.606249999999978,-0.183050847457058,0.612499999999957,-0.189830508474016,0.600000000000000,-0.189830508474016,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033917,0.000000000000000,-0.013559322033917,0.000000000000000,2 +1013,1015,1073,6839,0.606249999999978,-0.183050847457058,0.606249999999978,-0.169491525423110,0.612499999999957,-0.176271186440084,0.600000000000000,-0.176271186440084,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033947,0.000000000000000,-0.013559322033947,0.000000000000000,2 +1014,1016,1074,6840,0.606249999999978,-0.169491525423110,0.606249999999978,-0.155932203389179,0.612499999999957,-0.162711864406145,0.600000000000000,-0.162711864406145,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033931,-0.000000000000000,-0.013559322033931,0.000000000000000,2 +1015,1017,1075,6841,0.606249999999978,-0.155932203389179,0.606249999999978,-0.142372881355246,0.612499999999957,-0.149152542372213,0.600000000000000,-0.149152542372213,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033933,0.000000000000000,-0.013559322033933,0.000000000000000,2 +1016,1018,1076,6842,0.606249999999978,-0.142372881355246,0.606249999999978,-0.128813559321301,0.612499999999957,-0.135593220338273,0.600000000000000,-0.135593220338273,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033945,0.000000000000000,-0.013559322033945,0.000000000000000,2 +1017,1019,1077,6843,0.606249999999978,-0.128813559321301,0.606249999999978,-0.115254237287382,0.612499999999957,-0.122033898304341,0.600000000000000,-0.122033898304341,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033919,-0.000000000000000,-0.013559322033919,0.000000000000000,2 +1018,1020,1078,6844,0.606249999999978,-0.115254237287382,0.606249999999978,-0.101694915253436,0.612499999999957,-0.108474576270409,0.600000000000000,-0.108474576270409,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033946,0.000000000000000,-0.013559322033946,0.000000000000000,2 +1019,1021,1079,6845,0.606249999999978,-0.101694915253436,0.606249999999978,-0.088135593219506,0.612499999999957,-0.094915254236471,0.600000000000000,-0.094915254236471,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033930,-0.000000000000000,-0.013559322033930,0.000000000000000,2 +1020,1022,1080,6846,0.606249999999978,-0.088135593219506,0.606249999999978,-0.074576271185564,0.612499999999957,-0.081355932202535,0.600000000000000,-0.081355932202535,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033941,0.000000000000000,-0.013559322033941,0.000000000000000,2 +1021,1023,1081,6847,0.606249999999978,-0.074576271185564,0.606249999999978,-0.061016949151634,0.612499999999957,-0.067796610168599,0.600000000000000,-0.067796610168599,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033930,0.000000000000000,-0.013559322033930,0.000000000000000,2 +1022,1024,1082,6848,0.606249999999978,-0.061016949151634,0.606249999999978,-0.047457627117699,0.612499999999957,-0.054237288134667,0.600000000000000,-0.054237288134667,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033935,-0.000000000000000,-0.013559322033935,0.000000000000000,2 +1023,1025,1083,6849,0.606249999999978,-0.047457627117699,0.606249999999978,-0.033898305083763,0.612499999999957,-0.040677966100731,0.600000000000000,-0.040677966100731,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033937,0.000000000000000,-0.013559322033937,0.000000000000000,2 +1024,1026,1084,6850,0.606249999999978,-0.033898305083763,0.606249999999978,-0.020338983049833,0.612499999999957,-0.027118644066798,0.600000000000000,-0.027118644066798,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033930,0.000000000000000,-0.013559322033930,0.000000000000000,2 +1025,1027,1085,6851,0.606249999999978,-0.020338983049833,0.606249999999978,-0.006779661015891,0.612499999999957,-0.013559322032862,0.600000000000000,-0.013559322032862,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033941,0.000000000000000,-0.013559322033941,0.000000000000000,2 +1026,1028,1086,6852,0.606249999999978,-0.006779661015891,0.606249999999978,0.006779661018004,0.612499999999957,0.000000000001056,0.600000000000000,0.000000000001056,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033895,0.000000000000000,-0.013559322033895,0.000000000000000,2 +1027,1029,1087,6853,0.606249999999978,0.006779661018004,0.606249999999978,0.020338983051863,0.612499999999957,0.013559322034933,0.600000000000000,0.013559322034933,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1028,1030,1088,6854,0.606249999999978,0.020338983051863,0.606249999999978,0.033898305085723,0.612499999999957,0.027118644068793,0.600000000000000,0.027118644068793,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1029,1031,1089,6855,0.606249999999978,0.033898305085723,0.606249999999978,0.047457627119583,0.612499999999957,0.040677966102653,0.600000000000000,0.040677966102653,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1030,1032,1090,6856,0.606249999999978,0.047457627119583,0.606249999999978,0.061016949153442,0.612499999999957,0.054237288136513,0.600000000000000,0.054237288136513,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1031,1033,1091,6857,0.606249999999978,0.061016949153442,0.606249999999978,0.074576271187302,0.612499999999957,0.067796610170372,0.600000000000000,0.067796610170372,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1032,1034,1092,6858,0.606249999999978,0.074576271187302,0.606249999999978,0.088135593221162,0.612499999999957,0.081355932204232,0.600000000000000,0.081355932204232,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1033,1035,1093,6859,0.606249999999978,0.088135593221162,0.606249999999978,0.101694915255008,0.612499999999957,0.094915254238085,0.600000000000000,0.094915254238085,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033846,0.000000000000000,-0.013559322033846,0.000000000000000,2 +1034,1036,1094,6860,0.606249999999978,0.101694915255008,0.606249999999978,0.115254237288859,0.612499999999957,0.108474576271933,0.600000000000000,0.108474576271933,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033852,-0.000000000000000,-0.013559322033852,0.000000000000000,2 +1035,1037,1095,6861,0.606249999999978,0.115254237288859,0.606249999999978,0.128813559322719,0.612499999999957,0.122033898305789,0.600000000000000,0.122033898305789,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1036,1038,1096,6862,0.606249999999978,0.128813559322719,0.606249999999978,0.142372881356579,0.612499999999957,0.135593220339649,0.600000000000000,0.135593220339649,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1037,1039,1097,6863,0.606249999999978,0.142372881356579,0.606249999999978,0.155932203390438,0.612499999999957,0.149152542373509,0.600000000000000,0.149152542373509,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1038,1040,1098,6864,0.606249999999978,0.155932203390438,0.606249999999978,0.169491525424298,0.612499999999957,0.162711864407368,0.600000000000000,0.162711864407368,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 +1039,1041,1099,6865,0.606249999999978,0.169491525424298,0.606249999999978,0.183050847458158,0.612499999999957,0.176271186441228,0.600000000000000,0.176271186441228,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1040,1042,1100,6866,0.606249999999978,0.183050847458158,0.606249999999978,0.196610169492018,0.612499999999957,0.189830508475088,0.600000000000000,0.189830508475088,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 +1041,1043,1101,6867,0.606249999999978,0.196610169492018,0.606249999999978,0.210169491525877,0.612499999999957,0.203389830508947,0.600000000000000,0.203389830508947,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1042,1044,1102,6868,0.606249999999978,0.210169491525877,0.606249999999978,0.223728813559737,0.612499999999957,0.216949152542807,0.600000000000000,0.216949152542807,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1043,1045,1103,6869,0.606249999999978,0.223728813559737,0.606249999999978,0.237288135593597,0.612499999999957,0.230508474576667,0.600000000000000,0.230508474576667,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1044,1046,1104,6870,0.606249999999978,0.237288135593597,0.606249999999978,0.250847457627456,0.612499999999957,0.244067796610527,0.600000000000000,0.244067796610526,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 +1045,1047,1105,6871,0.606249999999978,0.250847457627456,0.606249999999978,0.264406779661316,0.612499999999957,0.257627118644386,0.600000000000000,0.257627118644386,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1046,1048,1106,6872,0.606249999999978,0.264406779661316,0.606249999999978,0.277966101695176,0.612499999999957,0.271186440678246,0.600000000000000,0.271186440678246,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 +1047,1049,1107,6873,0.606249999999978,0.277966101695176,0.606249999999978,0.291525423729036,0.612499999999957,0.284745762712106,0.600000000000000,0.284745762712106,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1048,1050,1108,6874,0.606249999999978,0.291525423729036,0.606249999999978,0.305084745762915,0.612499999999957,0.298305084745975,0.600000000000000,0.298305084745975,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033879,-0.000000000000000,-0.013559322033879,0.000000000000000,2 +1049,1051,1109,6875,0.606249999999978,0.305084745762915,0.606249999999978,0.318644067796787,0.612499999999957,0.311864406779851,0.600000000000000,0.311864406779851,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033872,0.000000000000000,-0.013559322033872,0.000000000000000,2 +1050,1052,1110,6876,0.606249999999978,0.318644067796787,0.606249999999978,0.332203389830671,0.612499999999957,0.325423728813729,0.600000000000000,0.325423728813729,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033883,0.000000000000000,-0.013559322033883,0.000000000000000,2 +1051,1053,1111,6877,0.606249999999978,0.332203389830671,0.606249999999978,0.345762711864539,0.612499999999957,0.338983050847605,0.600000000000000,0.338983050847605,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033869,-0.000000000000000,-0.013559322033869,0.000000000000000,2 +1052,1054,1112,6878,0.606249999999978,0.345762711864539,0.606249999999978,0.359322033898399,0.612499999999957,0.352542372881469,0.600000000000000,0.352542372881469,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 +1053,1055,1113,6879,0.606249999999978,0.359322033898399,0.606249999999978,0.372881355932259,0.612499999999957,0.366101694915329,0.600000000000000,0.366101694915329,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1054,1056,1114,6880,0.606249999999978,0.372881355932259,0.606249999999978,0.386440677966119,0.612499999999957,0.379661016949189,0.600000000000000,0.379661016949189,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +1055,1115,1276,6881,0.606249999999978,0.386440677966119,0.612499999999957,0.393220338983059,0.606249999999978,0.400000000000000,0.600000000000000,0.393220338983059,0.000000000000000,-0.012499999999957,0.013559322033881,-0.000000000000000,0.000000000000000,0.012499999999957,-0.013559322033881,0.000000000000000,2 +969,998,1058,1116,0.618749999999957,-0.400000000000000,0.612499999999957,-0.393220338983034,0.618749999999957,-0.386440677966068,0.624999999999957,-0.393220338983034,-0.000000000000000,-0.012500000000000,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.012500000000002,0.013559322033932,-0.000000000000002,2 +999,1057,1059,1117,0.612499999999957,-0.379661016949095,0.618749999999957,-0.386440677966068,0.618749999999958,-0.372881355932122,0.624999999999959,-0.379661016949095,-0.013559322033946,0.000000000000000,0.000000000000000,-0.012500000000002,0.000000000000000,0.012500000000003,0.013559322033946,-0.000000000000001,2 +1000,1058,1060,1118,0.612499999999957,-0.366101694915163,0.618749999999958,-0.372881355932122,0.618749999999959,-0.359322033898204,0.624999999999960,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.012500000000003,0.000000000000000,0.012500000000004,0.013559322033918,-0.000000000000001,2 +1001,1059,1061,1119,0.612499999999957,-0.352542372881227,0.618749999999959,-0.359322033898204,0.618749999999959,-0.345762711864250,0.624999999999962,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.012500000000004,0.000000000000000,0.012500000000006,0.013559322033954,-0.000000000000002,2 +1002,1060,1062,1120,0.612499999999957,-0.338983050847293,0.618749999999959,-0.345762711864250,0.618749999999960,-0.332203389830336,0.624999999999963,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.012500000000006,-0.000000000000000,0.012500000000008,0.013559322033914,-0.000000000000001,2 +1003,1061,1063,1121,0.612499999999957,-0.325423728813361,0.618749999999960,-0.332203389830336,0.618749999999961,-0.318644067796385,0.624999999999965,-0.325423728813361,-0.013559322033951,0.000000000000000,0.000000000000000,-0.012500000000008,0.000000000000000,0.012500000000009,0.013559322033950,-0.000000000000001,2 +1004,1062,1064,1122,0.612499999999957,-0.311864406779421,0.618749999999961,-0.318644067796385,0.618749999999961,-0.305084745762457,0.624999999999966,-0.311864406779421,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.012500000000009,0.000000000000000,0.012500000000010,0.013559322033928,-0.000000000000001,2 +1005,1063,1065,1123,0.612499999999957,-0.298305084745489,0.618749999999961,-0.305084745762457,0.618749999999962,-0.291525423728521,0.624999999999968,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.012500000000010,0.000000000000000,0.012500000000012,0.013559322033936,-0.000000000000002,2 +1006,1064,1066,1124,0.612499999999957,-0.284745762711550,0.618749999999962,-0.291525423728521,0.618749999999963,-0.277966101694579,0.624999999999969,-0.284745762711550,-0.013559322033942,0.000000000000000,-0.000000000000000,-0.012500000000012,0.000000000000000,0.012500000000013,0.013559322033942,-0.000000000000001,2 +1007,1065,1067,1125,0.612499999999957,-0.271186440677618,0.618749999999963,-0.277966101694579,0.618749999999964,-0.264406779660657,0.624999999999970,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.012500000000013,0.000000000000000,0.012500000000015,0.013559322033922,-0.000000000000002,2 +1008,1066,1068,1126,0.612499999999957,-0.257627118643680,0.618749999999964,-0.264406779660657,0.618749999999965,-0.250847457626703,0.624999999999972,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.012500000000015,0.000000000000000,0.012500000000016,0.013559322033954,-0.000000000000002,2 +1009,1067,1069,1127,0.612499999999957,-0.244067796609748,0.618749999999965,-0.250847457626703,0.618749999999965,-0.237288135592793,0.624999999999973,-0.244067796609748,-0.013559322033910,0.000000000000000,-0.000000000000000,-0.012500000000016,0.000000000000000,0.012500000000017,0.013559322033910,-0.000000000000001,2 +1010,1068,1070,1128,0.612499999999957,-0.230508474575816,0.618749999999965,-0.237288135592793,0.618749999999966,-0.223728813558839,0.624999999999975,-0.230508474575816,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.012500000000017,0.000000000000000,0.012500000000019,0.013559322033954,-0.000000000000002,2 +1011,1069,1071,1129,0.612499999999957,-0.216949152541877,0.618749999999966,-0.223728813558839,0.618749999999967,-0.210169491524915,0.624999999999976,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.012500000000019,0.000000000000000,0.012500000000021,0.013559322033924,-0.000000000000002,2 +1012,1070,1072,1130,0.612499999999957,-0.203389830507945,0.618749999999967,-0.210169491524915,0.618749999999968,-0.196610169490975,0.624999999999978,-0.203389830507945,-0.013559322033940,0.000000000000000,-0.000000000000000,-0.012500000000021,0.000000000000000,0.012500000000022,0.013559322033940,-0.000000000000001,2 +1013,1071,1073,1131,0.612499999999957,-0.189830508474016,0.618749999999968,-0.196610169490975,0.618749999999968,-0.183050847457058,0.624999999999979,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.012500000000022,-0.000000000000000,0.012500000000023,0.013559322033917,-0.000000000000001,2 +1014,1072,1074,1132,0.612499999999957,-0.176271186440084,0.618749999999968,-0.183050847457058,0.618749999999969,-0.169491525423110,0.624999999999981,-0.176271186440084,-0.013559322033947,-0.000000000000000,0.000000000000000,-0.012500000000023,-0.000000000000000,0.012500000000025,0.013559322033947,-0.000000000000002,2 +1015,1073,1075,1133,0.612499999999957,-0.162711864406145,0.618749999999969,-0.169491525423110,0.618749999999970,-0.155932203389179,0.624999999999982,-0.162711864406145,-0.013559322033931,0.000000000000000,0.000000000000000,-0.012500000000025,0.000000000000000,0.012500000000026,0.013559322033931,-0.000000000000001,2 +1016,1074,1076,1134,0.612499999999957,-0.149152542372213,0.618749999999970,-0.155932203389179,0.618749999999971,-0.142372881355246,0.624999999999984,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.012500000000026,0.000000000000000,0.012500000000028,0.013559322033933,-0.000000000000002,2 +1017,1075,1077,1135,0.612499999999957,-0.135593220338273,0.618749999999971,-0.142372881355246,0.618749999999971,-0.128813559321301,0.624999999999985,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.012500000000028,0.000000000000000,0.012500000000029,0.013559322033945,-0.000000000000001,2 +1018,1076,1078,1136,0.612499999999957,-0.122033898304341,0.618749999999971,-0.128813559321301,0.618749999999972,-0.115254237287382,0.624999999999987,-0.122033898304341,-0.013559322033919,0.000000000000000,-0.000000000000000,-0.012500000000029,0.000000000000000,0.012500000000031,0.013559322033919,-0.000000000000002,2 +1019,1077,1079,1137,0.612499999999957,-0.108474576270409,0.618749999999972,-0.115254237287382,0.618749999999973,-0.101694915253436,0.624999999999988,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.012500000000031,0.000000000000000,0.012500000000032,0.013559322033946,-0.000000000000001,2 +1020,1078,1080,1138,0.612499999999957,-0.094915254236471,0.618749999999973,-0.101694915253436,0.618749999999973,-0.088135593219506,0.624999999999990,-0.094915254236471,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.012500000000032,-0.000000000000000,0.012500000000034,0.013559322033930,-0.000000000000001,2 +1021,1079,1081,1139,0.612499999999957,-0.081355932202535,0.618749999999973,-0.088135593219506,0.618749999999974,-0.074576271185564,0.624999999999991,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.012500000000034,0.000000000000000,0.012500000000035,0.013559322033941,-0.000000000000001,2 +1022,1080,1082,1140,0.612499999999957,-0.067796610168599,0.618749999999974,-0.074576271185564,0.618749999999975,-0.061016949151634,0.624999999999993,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.012500000000035,-0.000000000000000,0.012500000000037,0.013559322033930,-0.000000000000001,2 +1023,1081,1083,1141,0.612499999999957,-0.054237288134667,0.618749999999975,-0.061016949151634,0.618749999999976,-0.047457627117699,0.624999999999994,-0.054237288134667,-0.013559322033935,0.000000000000000,0.000000000000000,-0.012500000000037,0.000000000000000,0.012500000000038,0.013559322033935,-0.000000000000002,2 +1024,1082,1084,1142,0.612499999999957,-0.040677966100731,0.618749999999976,-0.047457627117699,0.618749999999976,-0.033898305083763,0.624999999999996,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.012500000000038,0.000000000000000,0.012500000000040,0.013559322033937,-0.000000000000001,2 +1025,1083,1085,1143,0.612499999999957,-0.027118644066798,0.618749999999976,-0.033898305083763,0.618749999999977,-0.020338983049833,0.624999999999997,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.012500000000040,0.000000000000000,0.012500000000041,0.013559322033930,-0.000000000000002,2 +1026,1084,1086,1144,0.612499999999957,-0.013559322032862,0.618749999999977,-0.020338983049833,0.618749999999978,-0.006779661015891,0.624999999999999,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.012500000000041,0.000000000000000,0.012500000000043,0.013559322033941,-0.000000000000002,2 +1027,1085,1087,1145,0.612499999999957,0.000000000001056,0.618749999999978,-0.006779661015891,0.618749999999979,0.006779661018004,0.625000000000000,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.012500000000043,0.000000000000000,0.012500000000044,0.013559322033895,-0.000000000000001,2 +1028,1086,1088,1146,0.612499999999957,0.013559322034933,0.618749999999979,0.006779661018004,0.618749999999979,0.020338983051863,0.625000000000001,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000044,0.000000000000000,0.012500000000045,0.013559322033860,-0.000000000000001,2 +1029,1087,1089,1147,0.612499999999957,0.027118644068793,0.618749999999979,0.020338983051863,0.618749999999980,0.033898305085723,0.625000000000003,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000045,0.000000000000000,0.012500000000047,0.013559322033860,-0.000000000000002,2 +1030,1088,1090,1148,0.612499999999957,0.040677966102653,0.618749999999980,0.033898305085723,0.618749999999981,0.047457627119583,0.625000000000004,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000047,0.000000000000000,0.012500000000049,0.013559322033860,-0.000000000000002,2 +1031,1089,1091,1149,0.612499999999957,0.054237288136513,0.618749999999981,0.047457627119583,0.618749999999982,0.061016949153442,0.625000000000006,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000049,0.000000000000000,0.012500000000050,0.013559322033860,-0.000000000000001,2 +1032,1090,1092,1150,0.612499999999957,0.067796610170372,0.618749999999982,0.061016949153442,0.618749999999982,0.074576271187302,0.625000000000007,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000050,0.000000000000000,0.012500000000051,0.013559322033860,-0.000000000000001,2 +1033,1091,1093,1151,0.612499999999957,0.081355932204232,0.618749999999982,0.074576271187302,0.618749999999983,0.088135593221162,0.625000000000009,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000051,0.000000000000000,0.012500000000053,0.013559322033860,-0.000000000000002,2 +1034,1092,1094,1152,0.612499999999957,0.094915254238085,0.618749999999983,0.088135593221162,0.618749999999984,0.101694915255008,0.625000000000010,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.012500000000053,0.000000000000000,0.012500000000054,0.013559322033846,-0.000000000000001,2 +1035,1093,1095,1153,0.612499999999957,0.108474576271933,0.618749999999984,0.101694915255008,0.618749999999985,0.115254237288859,0.625000000000012,0.108474576271933,-0.013559322033852,0.000000000000000,-0.000000000000000,-0.012500000000054,0.000000000000000,0.012500000000056,0.013559322033852,-0.000000000000002,2 +1036,1094,1096,1154,0.612499999999957,0.122033898305789,0.618749999999985,0.115254237288859,0.618749999999985,0.128813559322719,0.625000000000013,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000056,0.000000000000000,0.012500000000057,0.013559322033860,-0.000000000000002,2 +1037,1095,1097,1155,0.612499999999957,0.135593220339649,0.618749999999985,0.128813559322719,0.618749999999986,0.142372881356579,0.625000000000015,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000057,0.000000000000000,0.012500000000059,0.013559322033860,-0.000000000000001,2 +1038,1096,1098,1156,0.612499999999957,0.149152542373509,0.618749999999986,0.142372881356579,0.618749999999987,0.155932203390438,0.625000000000016,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000059,0.000000000000000,0.012500000000060,0.013559322033860,-0.000000000000002,2 +1039,1097,1099,1157,0.612499999999957,0.162711864407368,0.618749999999987,0.155932203390438,0.618749999999988,0.169491525424298,0.625000000000018,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.012500000000060,0.000000000000000,0.012500000000062,0.013559322033860,-0.000000000000002,2 +1040,1098,1100,1158,0.612499999999957,0.176271186441228,0.618749999999988,0.169491525424298,0.618749999999988,0.183050847458158,0.625000000000019,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000062,0.000000000000000,0.012500000000063,0.013559322033860,-0.000000000000001,2 +1041,1099,1101,1159,0.612499999999957,0.189830508475088,0.618749999999988,0.183050847458158,0.618749999999989,0.196610169492018,0.625000000000021,0.189830508475088,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.012500000000063,0.000000000000000,0.012500000000065,0.013559322033860,-0.000000000000002,2 +1042,1100,1102,1160,0.612499999999957,0.203389830508947,0.618749999999989,0.196610169492018,0.618749999999990,0.210169491525877,0.625000000000022,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000065,0.000000000000000,0.012500000000066,0.013559322033860,-0.000000000000001,2 +1043,1101,1103,1161,0.612499999999957,0.216949152542807,0.618749999999990,0.210169491525877,0.618749999999990,0.223728813559737,0.625000000000024,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000066,0.000000000000000,0.012500000000068,0.013559322033860,-0.000000000000002,2 +1044,1102,1104,1162,0.612499999999957,0.230508474576667,0.618749999999990,0.223728813559737,0.618749999999991,0.237288135593597,0.625000000000025,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000068,0.000000000000000,0.012500000000069,0.013559322033860,-0.000000000000001,2 +1045,1103,1105,1163,0.612499999999957,0.244067796610527,0.618749999999991,0.237288135593597,0.618749999999992,0.250847457627456,0.625000000000026,0.244067796610527,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.012500000000069,0.000000000000000,0.012500000000071,0.013559322033860,-0.000000000000002,2 +1046,1104,1106,1164,0.612499999999957,0.257627118644386,0.618749999999992,0.250847457627456,0.618749999999993,0.264406779661316,0.625000000000028,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000071,0.000000000000000,0.012500000000072,0.013559322033860,-0.000000000000002,2 +1047,1105,1107,1165,0.612499999999957,0.271186440678246,0.618749999999993,0.264406779661316,0.618749999999993,0.277966101695176,0.625000000000029,0.271186440678246,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.012500000000072,0.000000000000000,0.012500000000073,0.013559322033860,-0.000000000000001,2 +1048,1106,1108,1166,0.612499999999957,0.284745762712106,0.618749999999993,0.277966101695176,0.618749999999994,0.291525423729036,0.625000000000031,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000073,0.000000000000000,0.012500000000075,0.013559322033860,-0.000000000000002,2 +1049,1107,1109,1167,0.612499999999957,0.298305084745975,0.618749999999994,0.291525423729036,0.618749999999995,0.305084745762915,0.625000000000032,0.298305084745975,-0.013559322033879,0.000000000000000,-0.000000000000000,-0.012500000000075,0.000000000000000,0.012500000000077,0.013559322033879,-0.000000000000002,2 +1050,1108,1110,1168,0.612499999999957,0.311864406779851,0.618749999999995,0.305084745762915,0.618749999999996,0.318644067796787,0.625000000000034,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.012500000000077,0.000000000000000,0.012500000000078,0.013559322033872,-0.000000000000001,2 +1051,1109,1111,1169,0.612499999999957,0.325423728813729,0.618749999999996,0.318644067796787,0.618749999999996,0.332203389830671,0.625000000000035,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.012500000000078,0.000000000000000,0.012500000000080,0.013559322033883,-0.000000000000002,2 +1052,1110,1112,1170,0.612499999999957,0.338983050847605,0.618749999999996,0.332203389830671,0.618749999999997,0.345762711864539,0.625000000000037,0.338983050847605,-0.013559322033869,0.000000000000000,-0.000000000000000,-0.012500000000080,0.000000000000000,0.012500000000081,0.013559322033869,-0.000000000000002,2 +1053,1111,1113,1171,0.612499999999957,0.352542372881469,0.618749999999997,0.345762711864539,0.618749999999998,0.359322033898399,0.625000000000038,0.352542372881469,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.012500000000081,0.000000000000000,0.012500000000082,0.013559322033860,-0.000000000000001,2 +1054,1112,1114,1172,0.612499999999957,0.366101694915329,0.618749999999998,0.359322033898399,0.618749999999999,0.372881355932259,0.625000000000040,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000082,0.000000000000000,0.012500000000084,0.013559322033860,-0.000000000000002,2 +1055,1113,1115,1173,0.612499999999957,0.379661016949189,0.618749999999999,0.372881355932259,0.618749999999999,0.386440677966119,0.625000000000041,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000084,0.000000000000000,0.012500000000085,0.013559322033860,-0.000000000000001,2 +1056,1114,1174,1262,0.612499999999957,0.393220338983059,0.618749999999999,0.386440677966119,0.625000000000043,0.393220338983059,0.618750000000000,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.012500000000085,0.013559322033881,-0.000000000000002,-0.000000000000000,0.012500000000087,2 +983,1057,1117,1175,0.631250000000000,-0.400000000000000,0.624999999999957,-0.393220338983034,0.631250000000001,-0.386440677966068,0.637500000000043,-0.393220338983034,-0.000000000000000,-0.012500000000087,-0.013559322033932,0.000000000000002,0.000000000000000,0.012500000000085,0.013559322033932,0.000000000000000,2 +1058,1116,1118,1176,0.624999999999959,-0.379661016949095,0.631250000000001,-0.386440677966068,0.631250000000001,-0.372881355932122,0.637500000000043,-0.379661016949095,-0.013559322033946,0.000000000000001,-0.000000000000000,-0.012500000000085,0.000000000000000,0.012500000000084,0.013559322033946,-0.000000000000000,2 +1059,1117,1119,1177,0.624999999999960,-0.366101694915163,0.631250000000001,-0.372881355932122,0.631250000000002,-0.359322033898204,0.637500000000043,-0.366101694915163,-0.013559322033918,0.000000000000001,-0.000000000000000,-0.012500000000084,0.000000000000000,0.012500000000082,0.013559322033918,0.000000000000000,2 +1060,1118,1120,1178,0.624999999999962,-0.352542372881227,0.631250000000002,-0.359322033898204,0.631250000000003,-0.345762711864250,0.637500000000043,-0.352542372881227,-0.013559322033954,0.000000000000002,-0.000000000000000,-0.012500000000082,0.000000000000000,0.012500000000081,0.013559322033954,0.000000000000000,2 +1061,1119,1121,1179,0.624999999999963,-0.338983050847293,0.631250000000003,-0.345762711864250,0.631250000000004,-0.332203389830336,0.637500000000043,-0.338983050847293,-0.013559322033914,0.000000000000001,-0.000000000000000,-0.012500000000081,0.000000000000000,0.012500000000080,0.013559322033914,-0.000000000000000,2 +1062,1120,1122,1180,0.624999999999965,-0.325423728813361,0.631250000000004,-0.332203389830336,0.631250000000005,-0.318644067796385,0.637500000000043,-0.325423728813361,-0.013559322033950,0.000000000000001,-0.000000000000000,-0.012500000000080,0.000000000000000,0.012500000000078,0.013559322033951,-0.000000000000000,2 +1063,1121,1123,1181,0.624999999999966,-0.311864406779421,0.631250000000005,-0.318644067796385,0.631250000000005,-0.305084745762457,0.637500000000043,-0.311864406779421,-0.013559322033928,0.000000000000001,-0.000000000000000,-0.012500000000078,0.000000000000000,0.012500000000077,0.013559322033928,0.000000000000000,2 +1064,1122,1124,1182,0.624999999999968,-0.298305084745489,0.631250000000005,-0.305084745762457,0.631250000000006,-0.291525423728521,0.637500000000043,-0.298305084745489,-0.013559322033936,0.000000000000002,-0.000000000000000,-0.012500000000077,0.000000000000000,0.012500000000075,0.013559322033936,0.000000000000000,2 +1065,1123,1125,1183,0.624999999999969,-0.284745762711550,0.631250000000006,-0.291525423728521,0.631250000000007,-0.277966101694579,0.637500000000043,-0.284745762711550,-0.013559322033942,0.000000000000001,-0.000000000000000,-0.012500000000075,0.000000000000000,0.012500000000074,0.013559322033942,-0.000000000000000,2 +1066,1124,1126,1184,0.624999999999970,-0.271186440677618,0.631250000000007,-0.277966101694579,0.631250000000007,-0.264406779660657,0.637500000000043,-0.271186440677618,-0.013559322033922,0.000000000000002,-0.000000000000000,-0.012500000000074,0.000000000000000,0.012500000000072,0.013559322033922,0.000000000000000,2 +1067,1125,1127,1185,0.624999999999972,-0.257627118643680,0.631250000000007,-0.264406779660657,0.631250000000008,-0.250847457626703,0.637500000000043,-0.257627118643680,-0.013559322033954,0.000000000000002,-0.000000000000000,-0.012500000000072,0.000000000000000,0.012500000000070,0.013559322033954,0.000000000000000,2 +1068,1126,1128,1186,0.624999999999973,-0.244067796609748,0.631250000000008,-0.250847457626703,0.631250000000009,-0.237288135592793,0.637500000000043,-0.244067796609748,-0.013559322033910,0.000000000000001,-0.000000000000000,-0.012500000000070,0.000000000000000,0.012500000000069,0.013559322033910,-0.000000000000000,2 +1069,1127,1129,1187,0.624999999999975,-0.230508474575816,0.631250000000009,-0.237288135592793,0.631250000000010,-0.223728813558839,0.637500000000043,-0.230508474575816,-0.013559322033954,0.000000000000002,-0.000000000000000,-0.012500000000069,0.000000000000000,0.012500000000068,0.013559322033954,0.000000000000000,2 +1070,1128,1130,1188,0.624999999999976,-0.216949152541877,0.631250000000010,-0.223728813558839,0.631250000000010,-0.210169491524915,0.637500000000043,-0.216949152541877,-0.013559322033924,0.000000000000002,-0.000000000000000,-0.012500000000068,0.000000000000000,0.012500000000066,0.013559322033924,0.000000000000000,2 +1071,1129,1131,1189,0.624999999999978,-0.203389830507945,0.631250000000010,-0.210169491524915,0.631250000000011,-0.196610169490975,0.637500000000043,-0.203389830507945,-0.013559322033940,0.000000000000001,-0.000000000000000,-0.012500000000066,0.000000000000000,0.012500000000065,0.013559322033940,-0.000000000000000,2 +1072,1130,1132,1190,0.624999999999979,-0.189830508474016,0.631250000000011,-0.196610169490975,0.631250000000012,-0.183050847457058,0.637500000000043,-0.189830508474016,-0.013559322033917,0.000000000000001,-0.000000000000000,-0.012500000000065,0.000000000000000,0.012500000000063,0.013559322033917,0.000000000000000,2 +1073,1131,1133,1191,0.624999999999981,-0.176271186440084,0.631250000000012,-0.183050847457058,0.631250000000013,-0.169491525423110,0.637500000000043,-0.176271186440084,-0.013559322033947,0.000000000000002,-0.000000000000000,-0.012500000000063,0.000000000000000,0.012500000000062,0.013559322033947,0.000000000000000,2 +1074,1132,1134,1192,0.624999999999982,-0.162711864406145,0.631250000000013,-0.169491525423110,0.631250000000013,-0.155932203389179,0.637500000000043,-0.162711864406145,-0.013559322033931,0.000000000000001,-0.000000000000000,-0.012500000000062,0.000000000000000,0.012500000000060,0.013559322033931,-0.000000000000000,2 +1075,1133,1135,1193,0.624999999999984,-0.149152542372213,0.631250000000013,-0.155932203389179,0.631250000000014,-0.142372881355246,0.637500000000043,-0.149152542372213,-0.013559322033933,0.000000000000002,-0.000000000000000,-0.012500000000060,0.000000000000000,0.012500000000059,0.013559322033933,0.000000000000000,2 +1076,1134,1136,1194,0.624999999999985,-0.135593220338274,0.631250000000014,-0.142372881355246,0.631250000000015,-0.128813559321301,0.637500000000043,-0.135593220338273,-0.013559322033945,0.000000000000001,-0.000000000000000,-0.012500000000059,-0.000000000000000,0.012500000000058,0.013559322033945,-0.000000000000000,2 +1077,1135,1137,1195,0.624999999999987,-0.122033898304341,0.631250000000015,-0.128813559321301,0.631250000000015,-0.115254237287382,0.637500000000043,-0.122033898304341,-0.013559322033919,0.000000000000002,0.000000000000000,-0.012500000000058,0.000000000000000,0.012500000000056,0.013559322033919,0.000000000000000,2 +1078,1136,1138,1196,0.624999999999988,-0.108474576270409,0.631250000000015,-0.115254237287382,0.631250000000016,-0.101694915253436,0.637500000000043,-0.108474576270409,-0.013559322033946,0.000000000000001,-0.000000000000000,-0.012500000000056,0.000000000000000,0.012500000000054,0.013559322033946,0.000000000000000,2 +1079,1137,1139,1197,0.624999999999990,-0.094915254236471,0.631250000000016,-0.101694915253436,0.631250000000017,-0.088135593219506,0.637500000000043,-0.094915254236471,-0.013559322033930,0.000000000000001,-0.000000000000000,-0.012500000000054,0.000000000000000,0.012500000000053,0.013559322033930,-0.000000000000000,2 +1080,1138,1140,1198,0.624999999999991,-0.081355932202535,0.631250000000017,-0.088135593219506,0.631250000000018,-0.074576271185564,0.637500000000043,-0.081355932202535,-0.013559322033941,0.000000000000001,-0.000000000000000,-0.012500000000053,-0.000000000000000,0.012500000000052,0.013559322033941,0.000000000000000,2 +1081,1139,1141,1199,0.624999999999993,-0.067796610168599,0.631250000000018,-0.074576271185564,0.631250000000018,-0.061016949151634,0.637500000000043,-0.067796610168599,-0.013559322033930,0.000000000000001,0.000000000000000,-0.012500000000052,0.000000000000000,0.012500000000050,0.013559322033930,0.000000000000000,2 +1082,1140,1142,1200,0.624999999999994,-0.054237288134667,0.631250000000018,-0.061016949151634,0.631250000000019,-0.047457627117699,0.637500000000043,-0.054237288134667,-0.013559322033935,0.000000000000002,-0.000000000000000,-0.012500000000050,0.000000000000000,0.012500000000049,0.013559322033935,0.000000000000000,2 +1083,1141,1143,1201,0.624999999999996,-0.040677966100731,0.631250000000019,-0.047457627117699,0.631250000000020,-0.033898305083763,0.637500000000043,-0.040677966100731,-0.013559322033937,0.000000000000001,-0.000000000000000,-0.012500000000049,-0.000000000000000,0.012500000000047,0.013559322033937,0.000000000000000,2 +1084,1142,1144,1202,0.624999999999997,-0.027118644066798,0.631250000000020,-0.033898305083763,0.631250000000021,-0.020338983049833,0.637500000000043,-0.027118644066798,-0.013559322033930,0.000000000000002,0.000000000000000,-0.012500000000047,0.000000000000000,0.012500000000046,0.013559322033930,-0.000000000000000,2 +1085,1143,1145,1203,0.624999999999999,-0.013559322032862,0.631250000000021,-0.020338983049833,0.631250000000021,-0.006779661015891,0.637500000000043,-0.013559322032862,-0.013559322033941,0.000000000000002,-0.000000000000000,-0.012500000000046,-0.000000000000000,0.012500000000044,0.013559322033941,0.000000000000000,2 +1086,1144,1146,1204,0.625000000000000,0.000000000001056,0.631250000000021,-0.006779661015891,0.631250000000022,0.006779661018004,0.637500000000043,0.000000000001056,-0.013559322033895,0.000000000000001,0.000000000000000,-0.012500000000044,-0.000000000000000,0.012500000000043,0.013559322033895,0.000000000000000,2 +1087,1145,1147,1205,0.625000000000001,0.013559322034933,0.631250000000022,0.006779661018004,0.631250000000023,0.020338983051863,0.637500000000043,0.013559322034933,-0.013559322033860,0.000000000000001,0.000000000000000,-0.012500000000043,0.000000000000000,0.012500000000041,0.013559322033860,-0.000000000000000,2 +1088,1146,1148,1206,0.625000000000003,0.027118644068793,0.631250000000023,0.020338983051863,0.631250000000024,0.033898305085723,0.637500000000043,0.027118644068793,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000041,0.000000000000000,0.012500000000040,0.013559322033860,0.000000000000000,2 +1089,1147,1149,1207,0.625000000000004,0.040677966102653,0.631250000000024,0.033898305085723,0.631250000000024,0.047457627119583,0.637500000000043,0.040677966102653,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000040,-0.000000000000000,0.012500000000038,0.013559322033860,0.000000000000000,2 +1090,1148,1150,1208,0.625000000000006,0.054237288136513,0.631250000000024,0.047457627119583,0.631250000000025,0.061016949153442,0.637500000000043,0.054237288136513,-0.013559322033860,0.000000000000001,0.000000000000000,-0.012500000000038,-0.000000000000000,0.012500000000037,0.013559322033860,0.000000000000000,2 +1091,1149,1151,1209,0.625000000000007,0.067796610170372,0.631250000000025,0.061016949153442,0.631250000000026,0.074576271187302,0.637500000000043,0.067796610170372,-0.013559322033860,0.000000000000001,0.000000000000000,-0.012500000000037,0.000000000000000,0.012500000000035,0.013559322033860,0.000000000000000,2 +1092,1150,1152,1210,0.625000000000009,0.081355932204232,0.631250000000026,0.074576271187302,0.631250000000027,0.088135593221162,0.637500000000043,0.081355932204232,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000035,0.000000000000000,0.012500000000034,0.013559322033860,0.000000000000000,2 +1093,1151,1153,1211,0.625000000000010,0.094915254238085,0.631250000000027,0.088135593221162,0.631250000000027,0.101694915255008,0.637500000000043,0.094915254238085,-0.013559322033846,0.000000000000001,-0.000000000000000,-0.012500000000034,0.000000000000000,0.012500000000032,0.013559322033846,0.000000000000000,2 +1094,1152,1154,1212,0.625000000000012,0.108474576271933,0.631250000000027,0.101694915255008,0.631250000000028,0.115254237288859,0.637500000000043,0.108474576271933,-0.013559322033852,0.000000000000002,-0.000000000000000,-0.012500000000032,0.000000000000000,0.012500000000031,0.013559322033852,0.000000000000000,2 +1095,1153,1155,1213,0.625000000000013,0.122033898305789,0.631250000000028,0.115254237288859,0.631250000000029,0.128813559322719,0.637500000000043,0.122033898305789,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000031,0.000000000000000,0.012500000000029,0.013559322033860,0.000000000000000,2 +1096,1154,1156,1214,0.625000000000015,0.135593220339649,0.631250000000029,0.128813559322719,0.631250000000029,0.142372881356579,0.637500000000043,0.135593220339649,-0.013559322033860,0.000000000000001,-0.000000000000000,-0.012500000000029,0.000000000000000,0.012500000000028,0.013559322033860,-0.000000000000000,2 +1097,1155,1157,1215,0.625000000000016,0.149152542373509,0.631250000000029,0.142372881356579,0.631250000000030,0.155932203390438,0.637500000000043,0.149152542373509,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000028,0.000000000000000,0.012500000000026,0.013559322033860,0.000000000000000,2 +1098,1156,1158,1216,0.625000000000018,0.162711864407368,0.631250000000030,0.155932203390438,0.631250000000031,0.169491525424298,0.637500000000043,0.162711864407368,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000026,0.000000000000000,0.012500000000025,0.013559322033860,0.000000000000000,2 +1099,1157,1159,1217,0.625000000000019,0.176271186441228,0.631250000000031,0.169491525424298,0.631250000000032,0.183050847458158,0.637500000000043,0.176271186441228,-0.013559322033860,0.000000000000001,-0.000000000000000,-0.012500000000025,0.000000000000000,0.012500000000023,0.013559322033860,-0.000000000000000,2 +1100,1158,1160,1218,0.625000000000021,0.189830508475088,0.631250000000032,0.183050847458158,0.631250000000032,0.196610169492018,0.637500000000043,0.189830508475088,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000023,0.000000000000000,0.012500000000022,0.013559322033860,0.000000000000000,2 +1101,1159,1161,1219,0.625000000000022,0.203389830508947,0.631250000000032,0.196610169492018,0.631250000000033,0.210169491525877,0.637500000000043,0.203389830508947,-0.013559322033860,0.000000000000001,-0.000000000000000,-0.012500000000022,0.000000000000000,0.012500000000021,0.013559322033860,-0.000000000000000,2 +1102,1160,1162,1220,0.625000000000024,0.216949152542807,0.631250000000033,0.210169491525877,0.631250000000034,0.223728813559737,0.637500000000043,0.216949152542807,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000021,0.000000000000000,0.012500000000019,0.013559322033860,0.000000000000000,2 +1103,1161,1163,1221,0.625000000000025,0.230508474576667,0.631250000000034,0.223728813559737,0.631250000000035,0.237288135593597,0.637500000000043,0.230508474576667,-0.013559322033860,0.000000000000001,-0.000000000000000,-0.012500000000019,0.000000000000000,0.012500000000018,0.013559322033860,0.000000000000000,2 +1104,1162,1164,1222,0.625000000000026,0.244067796610527,0.631250000000035,0.237288135593597,0.631250000000035,0.250847457627456,0.637500000000043,0.244067796610527,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000018,0.000000000000000,0.012500000000016,0.013559322033860,0.000000000000000,2 +1105,1163,1165,1223,0.625000000000028,0.257627118644386,0.631250000000035,0.250847457627456,0.631250000000036,0.264406779661316,0.637500000000043,0.257627118644386,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000016,0.000000000000000,0.012500000000014,0.013559322033860,0.000000000000000,2 +1106,1164,1166,1224,0.625000000000029,0.271186440678246,0.631250000000036,0.264406779661316,0.631250000000037,0.277966101695176,0.637500000000043,0.271186440678246,-0.013559322033860,0.000000000000001,-0.000000000000000,-0.012500000000014,0.000000000000000,0.012500000000014,0.013559322033860,-0.000000000000000,2 +1107,1165,1167,1225,0.625000000000031,0.284745762712106,0.631250000000037,0.277966101695176,0.631250000000038,0.291525423729036,0.637500000000043,0.284745762712106,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000014,0.000000000000000,0.012500000000012,0.013559322033860,0.000000000000000,2 +1108,1166,1168,1226,0.625000000000032,0.298305084745975,0.631250000000038,0.291525423729036,0.631250000000038,0.305084745762915,0.637500000000043,0.298305084745975,-0.013559322033879,0.000000000000002,-0.000000000000000,-0.012500000000012,0.000000000000000,0.012500000000010,0.013559322033879,0.000000000000000,2 +1109,1167,1169,1227,0.625000000000034,0.311864406779851,0.631250000000038,0.305084745762915,0.631250000000039,0.318644067796787,0.637500000000043,0.311864406779851,-0.013559322033872,0.000000000000001,-0.000000000000000,-0.012500000000010,0.000000000000000,0.012500000000009,0.013559322033872,0.000000000000000,2 +1110,1168,1170,1228,0.625000000000035,0.325423728813729,0.631250000000039,0.318644067796787,0.631250000000040,0.332203389830671,0.637500000000043,0.325423728813729,-0.013559322033883,0.000000000000002,-0.000000000000000,-0.012500000000009,-0.000000000000000,0.012500000000007,0.013559322033883,0.000000000000000,2 +1111,1169,1171,1229,0.625000000000037,0.338983050847605,0.631250000000040,0.332203389830671,0.631250000000041,0.345762711864539,0.637500000000043,0.338983050847605,-0.013559322033869,0.000000000000002,0.000000000000000,-0.012500000000007,0.000000000000000,0.012500000000006,0.013559322033869,0.000000000000000,2 +1112,1170,1172,1230,0.625000000000038,0.352542372881469,0.631250000000041,0.345762711864539,0.631250000000041,0.359322033898399,0.637500000000043,0.352542372881469,-0.013559322033860,0.000000000000001,-0.000000000000000,-0.012500000000006,0.000000000000000,0.012500000000004,0.013559322033860,-0.000000000000000,2 +1113,1171,1173,1231,0.625000000000040,0.366101694915329,0.631250000000041,0.359322033898399,0.631250000000042,0.372881355932259,0.637500000000043,0.366101694915329,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000004,-0.000000000000000,0.012500000000003,0.013559322033860,-0.000000000000000,2 +1114,1172,1174,1232,0.625000000000041,0.379661016949189,0.631250000000042,0.372881355932259,0.631250000000043,0.386440677966119,0.637500000000043,0.379661016949189,-0.013559322033860,0.000000000000001,0.000000000000000,-0.012500000000003,0.000000000000000,0.012500000000002,0.013559322033860,0.000000000000000,2 +1115,1173,1233,1248,0.625000000000043,0.393220338983059,0.631250000000043,0.386440677966119,0.637500000000043,0.393220338983059,0.631250000000043,0.400000000000000,-0.013559322033881,0.000000000000002,-0.000000000000000,-0.012500000000002,0.013559322033881,-0.000000000000000,-0.000000000000000,0.012500000000000,2 +997,1116,1176,11869,0.643750000000022,-0.400000000000000,0.637500000000043,-0.393220338983034,0.643750000000022,-0.386440677966068,0.650000000000000,-0.393220338983034,0.000000000000000,-0.012499999999957,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.012499999999957,0.013559322033932,0.000000000000000,1 +1117,1175,1177,11869,0.637500000000043,-0.379661016949095,0.643750000000022,-0.386440677966068,0.643750000000022,-0.372881355932122,0.650000000000000,-0.379661016949095,-0.013559322033946,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033946,-0.000000000000000,1 +1118,1176,1178,11869,0.637500000000043,-0.366101694915163,0.643750000000022,-0.372881355932122,0.643750000000022,-0.359322033898204,0.650000000000000,-0.366101694915163,-0.013559322033918,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033918,-0.000000000000000,1 +1119,1177,1179,11869,0.637500000000043,-0.352542372881227,0.643750000000022,-0.359322033898204,0.643750000000022,-0.345762711864250,0.650000000000000,-0.352542372881227,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033954,-0.000000000000000,1 +1120,1178,1180,11869,0.637500000000043,-0.338983050847293,0.643750000000022,-0.345762711864250,0.643750000000022,-0.332203389830336,0.650000000000000,-0.338983050847293,-0.013559322033914,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033914,-0.000000000000000,1 +1121,1179,1181,11869,0.637500000000043,-0.325423728813361,0.643750000000022,-0.332203389830336,0.643750000000022,-0.318644067796385,0.650000000000000,-0.325423728813361,-0.013559322033951,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.013559322033950,-0.000000000000000,1 +1122,1180,1182,11869,0.637500000000043,-0.311864406779421,0.643750000000022,-0.318644067796385,0.643750000000022,-0.305084745762457,0.650000000000000,-0.311864406779421,-0.013559322033928,-0.000000000000000,0.000000000000000,-0.012499999999956,-0.000000000000000,0.012499999999957,0.013559322033928,-0.000000000000000,1 +1123,1181,1183,11869,0.637500000000043,-0.298305084745489,0.643750000000022,-0.305084745762457,0.643750000000022,-0.291525423728521,0.650000000000000,-0.298305084745489,-0.013559322033936,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033936,-0.000000000000000,1 +1124,1182,1184,11869,0.637500000000043,-0.284745762711550,0.643750000000022,-0.291525423728521,0.643750000000022,-0.277966101694579,0.650000000000000,-0.284745762711550,-0.013559322033942,0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.013559322033942,-0.000000000000000,1 +1125,1183,1185,11869,0.637500000000043,-0.271186440677618,0.643750000000022,-0.277966101694579,0.643750000000022,-0.264406779660657,0.650000000000000,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.012499999999956,-0.000000000000000,0.012499999999957,0.013559322033922,-0.000000000000000,1 +1126,1184,1186,11869,0.637500000000043,-0.257627118643680,0.643750000000022,-0.264406779660657,0.643750000000022,-0.250847457626703,0.650000000000000,-0.257627118643680,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033954,-0.000000000000000,1 +1127,1185,1187,11869,0.637500000000043,-0.244067796609748,0.643750000000022,-0.250847457626703,0.643750000000022,-0.237288135592793,0.650000000000000,-0.244067796609748,-0.013559322033910,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033910,-0.000000000000000,1 +1128,1186,1188,11869,0.637500000000043,-0.230508474575816,0.643750000000022,-0.237288135592793,0.643750000000022,-0.223728813558839,0.650000000000000,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033954,-0.000000000000000,1 +1129,1187,1189,11869,0.637500000000043,-0.216949152541877,0.643750000000022,-0.223728813558839,0.643750000000022,-0.210169491524915,0.650000000000000,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033924,-0.000000000000000,1 +1130,1188,1190,11869,0.637500000000043,-0.203389830507945,0.643750000000022,-0.210169491524915,0.643750000000022,-0.196610169490975,0.650000000000000,-0.203389830507945,-0.013559322033940,0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033940,-0.000000000000000,1 +1131,1189,1191,11869,0.637500000000043,-0.189830508474016,0.643750000000022,-0.196610169490975,0.643750000000022,-0.183050847457058,0.650000000000000,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033917,-0.000000000000000,1 +1132,1190,1192,11869,0.637500000000043,-0.176271186440084,0.643750000000022,-0.183050847457058,0.643750000000022,-0.169491525423110,0.650000000000000,-0.176271186440084,-0.013559322033947,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033947,-0.000000000000000,1 +1133,1191,1193,11869,0.637500000000043,-0.162711864406145,0.643750000000022,-0.169491525423110,0.643750000000022,-0.155932203389179,0.650000000000000,-0.162711864406145,-0.013559322033931,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033931,-0.000000000000000,1 +1134,1192,1194,11869,0.637500000000043,-0.149152542372213,0.643750000000022,-0.155932203389179,0.643750000000022,-0.142372881355246,0.650000000000000,-0.149152542372213,-0.013559322033933,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033933,-0.000000000000000,1 +1135,1193,1195,11869,0.637500000000043,-0.135593220338273,0.643750000000022,-0.142372881355246,0.643750000000022,-0.128813559321301,0.650000000000000,-0.135593220338273,-0.013559322033945,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.013559322033945,-0.000000000000000,1 +1136,1194,1196,11869,0.637500000000043,-0.122033898304341,0.643750000000022,-0.128813559321301,0.643750000000022,-0.115254237287382,0.650000000000000,-0.122033898304341,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.012499999999956,-0.000000000000000,0.012499999999957,0.013559322033919,-0.000000000000000,1 +1137,1195,1197,11869,0.637500000000043,-0.108474576270409,0.643750000000022,-0.115254237287382,0.643750000000022,-0.101694915253436,0.650000000000000,-0.108474576270409,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033946,-0.000000000000000,1 +1138,1196,1198,11869,0.637500000000043,-0.094915254236471,0.643750000000022,-0.101694915253436,0.643750000000022,-0.088135593219506,0.650000000000000,-0.094915254236471,-0.013559322033930,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.013559322033930,-0.000000000000000,1 +1139,1197,1199,11869,0.637500000000043,-0.081355932202535,0.643750000000022,-0.088135593219506,0.643750000000022,-0.074576271185564,0.650000000000000,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.012499999999956,0.000000000000000,0.012499999999957,0.013559322033941,-0.000000000000000,1 +1140,1198,1200,11869,0.637500000000043,-0.067796610168599,0.643750000000022,-0.074576271185564,0.643750000000022,-0.061016949151634,0.650000000000000,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033930,-0.000000000000000,1 +1141,1199,1201,11869,0.637500000000043,-0.054237288134667,0.643750000000022,-0.061016949151634,0.643750000000022,-0.047457627117699,0.650000000000000,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033935,-0.000000000000000,1 +1142,1200,1202,11869,0.637500000000043,-0.040677966100731,0.643750000000022,-0.047457627117699,0.643750000000022,-0.033898305083763,0.650000000000000,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033937,-0.000000000000000,1 +1143,1201,1203,11869,0.637500000000043,-0.027118644066798,0.643750000000022,-0.033898305083763,0.643750000000022,-0.020338983049833,0.650000000000000,-0.027118644066798,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033930,-0.000000000000000,1 +1144,1202,1204,11869,0.637500000000043,-0.013559322032862,0.643750000000022,-0.020338983049833,0.643750000000022,-0.006779661015891,0.650000000000000,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033941,-0.000000000000000,1 +1145,1203,1205,11869,0.637500000000043,0.000000000001056,0.643750000000022,-0.006779661015891,0.643750000000022,0.006779661018004,0.650000000000000,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033895,-0.000000000000000,1 +1146,1204,1206,11869,0.637500000000043,0.013559322034933,0.643750000000022,0.006779661018004,0.643750000000022,0.020338983051863,0.650000000000000,0.013559322034933,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1147,1205,1207,11869,0.637500000000043,0.027118644068793,0.643750000000022,0.020338983051863,0.643750000000022,0.033898305085723,0.650000000000000,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1148,1206,1208,11869,0.637500000000043,0.040677966102653,0.643750000000022,0.033898305085723,0.643750000000022,0.047457627119583,0.650000000000000,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1149,1207,1209,11869,0.637500000000043,0.054237288136513,0.643750000000022,0.047457627119583,0.643750000000022,0.061016949153442,0.650000000000000,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1150,1208,1210,11869,0.637500000000043,0.067796610170372,0.643750000000022,0.061016949153442,0.643750000000022,0.074576271187302,0.650000000000000,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1151,1209,1211,11869,0.637500000000043,0.081355932204232,0.643750000000022,0.074576271187302,0.643750000000022,0.088135593221162,0.650000000000000,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1152,1210,1212,11869,0.637500000000043,0.094915254238085,0.643750000000022,0.088135593221162,0.643750000000022,0.101694915255008,0.650000000000000,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033846,-0.000000000000000,1 +1153,1211,1213,11869,0.637500000000043,0.108474576271933,0.643750000000022,0.101694915255008,0.643750000000022,0.115254237288859,0.650000000000000,0.108474576271933,-0.013559322033852,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033852,-0.000000000000000,1 +1154,1212,1214,11869,0.637500000000043,0.122033898305789,0.643750000000022,0.115254237288859,0.643750000000022,0.128813559322719,0.650000000000000,0.122033898305789,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1155,1213,1215,11869,0.637500000000043,0.135593220339649,0.643750000000022,0.128813559322719,0.643750000000022,0.142372881356579,0.650000000000000,0.135593220339649,-0.013559322033860,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1156,1214,1216,11869,0.637500000000043,0.149152542373509,0.643750000000022,0.142372881356579,0.643750000000022,0.155932203390438,0.650000000000000,0.149152542373509,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1157,1215,1217,11869,0.637500000000043,0.162711864407368,0.643750000000022,0.155932203390438,0.643750000000022,0.169491525424298,0.650000000000000,0.162711864407368,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1158,1216,1218,11869,0.637500000000043,0.176271186441228,0.643750000000022,0.169491525424298,0.643750000000022,0.183050847458158,0.650000000000000,0.176271186441228,-0.013559322033860,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1159,1217,1219,11869,0.637500000000043,0.189830508475088,0.643750000000022,0.183050847458158,0.643750000000022,0.196610169492018,0.650000000000000,0.189830508475088,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1160,1218,1220,11869,0.637500000000043,0.203389830508947,0.643750000000022,0.196610169492018,0.643750000000022,0.210169491525877,0.650000000000000,0.203389830508947,-0.013559322033860,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1161,1219,1221,11869,0.637500000000043,0.216949152542807,0.643750000000022,0.210169491525877,0.643750000000022,0.223728813559737,0.650000000000000,0.216949152542807,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1162,1220,1222,11869,0.637500000000043,0.230508474576667,0.643750000000022,0.223728813559737,0.643750000000022,0.237288135593597,0.650000000000000,0.230508474576667,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1163,1221,1223,11869,0.637500000000043,0.244067796610527,0.643750000000022,0.237288135593597,0.643750000000022,0.250847457627456,0.650000000000000,0.244067796610526,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1164,1222,1224,11869,0.637500000000043,0.257627118644386,0.643750000000022,0.250847457627456,0.643750000000022,0.264406779661316,0.650000000000000,0.257627118644386,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1165,1223,1225,11869,0.637500000000043,0.271186440678246,0.643750000000022,0.264406779661316,0.643750000000022,0.277966101695176,0.650000000000000,0.271186440678246,-0.013559322033860,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.013559322033860,-0.000000000000000,1 +1166,1224,1226,11869,0.637500000000043,0.284745762712106,0.643750000000022,0.277966101695176,0.643750000000022,0.291525423729036,0.650000000000000,0.284745762712106,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999956,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1167,1225,1227,11869,0.637500000000043,0.298305084745975,0.643750000000022,0.291525423729036,0.643750000000022,0.305084745762915,0.650000000000000,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033879,-0.000000000000000,1 +1168,1226,1228,11869,0.637500000000043,0.311864406779851,0.643750000000022,0.305084745762915,0.643750000000022,0.318644067796787,0.650000000000000,0.311864406779851,-0.013559322033872,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033872,-0.000000000000000,1 +1169,1227,1229,11869,0.637500000000043,0.325423728813729,0.643750000000022,0.318644067796787,0.643750000000022,0.332203389830671,0.650000000000000,0.325423728813729,-0.013559322033883,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033883,-0.000000000000000,1 +1170,1228,1230,11869,0.637500000000043,0.338983050847605,0.643750000000022,0.332203389830671,0.643750000000022,0.345762711864539,0.650000000000000,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033869,-0.000000000000000,1 +1171,1229,1231,11869,0.637500000000043,0.352542372881469,0.643750000000022,0.345762711864539,0.643750000000022,0.359322033898399,0.650000000000000,0.352542372881469,-0.013559322033860,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1172,1230,1232,11869,0.637500000000043,0.366101694915329,0.643750000000022,0.359322033898399,0.643750000000022,0.372881355932259,0.650000000000000,0.366101694915329,-0.013559322033860,0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1173,1231,1233,11869,0.637500000000043,0.379661016949189,0.643750000000022,0.372881355932259,0.643750000000022,0.386440677966119,0.650000000000000,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 +1174,1232,1234,11869,0.637500000000043,0.393220338983059,0.643750000000022,0.386440677966119,0.643750000000022,0.400000000000000,0.650000000000000,0.393220338983059,-0.013559322033881,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033881,-0.000000000000000,1 +1233,1235,1248,11869,0.643750000000022,0.400000000000000,0.643750000000022,0.414285714285680,0.637500000000043,0.407142857142846,0.650000000000000,0.407142857142835,0.000000000000000,-0.012499999999957,0.000000000000022,0.012499999999957,-0.014285714285691,-0.000000000000000,0.014285714285669,0.000000000000000,1 +1234,1236,1249,11869,0.643750000000022,0.414285714285680,0.643750000000022,0.428571428571398,0.637500000000043,0.421428571428552,0.650000000000000,0.421428571428526,-0.000000000000022,-0.012499999999957,0.000000000000032,0.012499999999957,-0.014285714285723,0.000000000000000,0.014285714285713,0.000000000000000,1 +1235,1237,1250,11869,0.643750000000022,0.428571428571398,0.643750000000022,0.442857142857079,0.637500000000043,0.435714285714260,0.650000000000000,0.435714285714217,-0.000000000000032,-0.012499999999957,0.000000000000055,0.012499999999957,-0.014285714285692,-0.000000000000000,0.014285714285669,0.000000000000000,1 +1236,1238,1251,11869,0.643750000000022,0.442857142857079,0.643750000000022,0.457142857142760,0.637500000000043,0.449999999999952,0.650000000000000,0.449999999999886,-0.000000000000055,-0.012499999999957,0.000000000000078,0.012499999999957,-0.014285714285693,-0.000000000000000,0.014285714285669,0.000000000000000,1 +1237,1239,1252,11869,0.643750000000022,0.457142857142760,0.643750000000022,0.471428571428441,0.637500000000043,0.464285714285645,0.650000000000000,0.464285714285555,-0.000000000000078,-0.012499999999957,0.000000000000101,0.012499999999957,-0.014285714285692,0.000000000000000,0.014285714285669,0.000000000000000,1 +1238,1240,1253,11869,0.643750000000022,0.471428571428441,0.643750000000022,0.485714285714121,0.637500000000043,0.478571428571336,0.650000000000000,0.478571428571225,-0.000000000000101,-0.012499999999957,0.000000000000122,0.012499999999957,-0.014285714285690,-0.000000000000000,0.014285714285669,0.000000000000000,1 +1239,1241,1254,11869,0.643750000000022,0.485714285714121,0.643750000000022,0.499999999999828,0.637500000000043,0.492857142857038,0.650000000000000,0.492857142856910,-0.000000000000122,-0.012499999999957,0.000000000000133,0.012499999999957,-0.014285714285712,0.000000000000000,0.014285714285702,0.000000000000000,1 +1240,1242,1255,11869,0.643750000000022,0.499999999999828,0.643750000000022,0.514285714285541,0.637500000000043,0.507142857142744,0.650000000000000,0.507142857142625,-0.000000000000133,-0.012499999999957,0.000000000000106,0.012499999999957,-0.014285714285700,-0.000000000000000,0.014285714285727,0.000000000000000,1 +1241,1243,1256,11869,0.643750000000022,0.514285714285541,0.643750000000022,0.528571428571279,0.637500000000043,0.521428571428453,0.650000000000000,0.521428571428368,-0.000000000000106,-0.012499999999957,0.000000000000065,0.012499999999957,-0.014285714285718,-0.000000000000000,0.014285714285759,0.000000000000000,1 +1242,1244,1257,11869,0.643750000000022,0.528571428571279,0.643750000000022,0.542857142857020,0.637500000000043,0.535714285714178,0.650000000000000,0.535714285714122,-0.000000000000065,-0.012499999999957,0.000000000000047,0.012499999999957,-0.014285714285732,-0.000000000000000,0.014285714285750,0.000000000000000,1 +1243,1245,1258,11869,0.643750000000022,0.542857142857020,0.643750000000022,0.557142857142767,0.637500000000043,0.549999999999912,0.650000000000000,0.549999999999875,-0.000000000000047,-0.012499999999957,0.000000000000027,0.012499999999957,-0.014285714285736,0.000000000000000,0.014285714285756,0.000000000000000,1 +1244,1246,1259,11869,0.643750000000022,0.557142857142767,0.643750000000022,0.571428571428513,0.637500000000043,0.564285714285648,0.650000000000000,0.564285714285631,-0.000000000000027,-0.012499999999957,0.000000000000007,0.012499999999957,-0.014285714285737,-0.000000000000000,0.014285714285756,0.000000000000000,1 +1245,1247,1260,11869,0.643750000000022,0.571428571428513,0.643750000000022,0.585714285714261,0.637500000000043,0.578571428571389,0.650000000000000,0.578571428571386,-0.000000000000007,-0.012499999999957,-0.000000000000002,0.012499999999957,-0.014285714285744,0.000000000000000,0.014285714285753,0.000000000000000,1 +1246,1261,1308,11869,0.643750000000022,0.585714285714261,0.637500000000043,0.592857142857130,0.643750000000022,0.600000000000000,0.650000000000000,0.592857142857131,0.000000000000002,-0.012499999999957,-0.014285714285739,0.000000000000000,-0.000000000000000,0.012499999999957,0.014285714285738,-0.000000000000000,1 +1174,1234,1249,1262,0.631250000000043,0.400000000000000,0.637500000000043,0.407142857142846,0.631250000000040,0.414285714285702,0.625000000000040,0.407142857142856,0.000000000000000,-0.012500000000000,0.014285714285691,0.000000000000000,0.000000000000022,0.012500000000006,-0.014285714285713,-0.000000000000006,2 +1235,1248,1250,1263,0.637500000000043,0.421428571428552,0.631250000000040,0.414285714285702,0.631250000000037,0.428571428571430,0.625000000000034,0.421428571428579,0.014285714285723,-0.000000000000000,-0.000000000000022,-0.012500000000006,0.000000000000032,0.012500000000013,-0.014285714285733,-0.000000000000006,2 +1236,1249,1251,1264,0.637500000000043,0.435714285714260,0.631250000000037,0.428571428571430,0.631250000000034,0.442857142857133,0.625000000000028,0.435714285714303,0.014285714285692,0.000000000000000,-0.000000000000032,-0.012500000000013,0.000000000000055,0.012500000000019,-0.014285714285715,-0.000000000000006,2 +1237,1250,1252,1265,0.637500000000043,0.449999999999952,0.631250000000034,0.442857142857133,0.631250000000031,0.457142857142838,0.625000000000022,0.450000000000019,0.014285714285693,0.000000000000000,-0.000000000000055,-0.012500000000019,0.000000000000078,0.012500000000025,-0.014285714285717,-0.000000000000006,2 +1238,1251,1253,1266,0.637500000000043,0.464285714285645,0.631250000000031,0.457142857142838,0.631250000000028,0.471428571428542,0.625000000000016,0.464285714285735,0.014285714285692,-0.000000000000000,-0.000000000000078,-0.012500000000025,0.000000000000101,0.012500000000031,-0.014285714285715,-0.000000000000006,2 +1239,1252,1254,1267,0.637500000000043,0.478571428571336,0.631250000000028,0.471428571428542,0.631250000000025,0.485714285714243,0.625000000000009,0.478571428571448,0.014285714285690,0.000000000000000,-0.000000000000101,-0.012500000000031,0.000000000000123,0.012500000000037,-0.014285714285712,-0.000000000000006,2 +1240,1253,1255,1268,0.637500000000043,0.492857142857038,0.631250000000025,0.485714285714243,0.631250000000022,0.499999999999961,0.625000000000003,0.492857142857166,0.014285714285712,-0.000000000000000,-0.000000000000123,-0.012500000000037,0.000000000000133,0.012500000000043,-0.014285714285723,-0.000000000000006,2 +1241,1254,1256,1269,0.637500000000043,0.507142857142744,0.631250000000022,0.499999999999961,0.631250000000019,0.514285714285647,0.624999999999997,0.507142857142864,0.014285714285700,0.000000000000000,-0.000000000000133,-0.012500000000043,0.000000000000106,0.012500000000049,-0.014285714285673,-0.000000000000006,2 +1242,1255,1257,1270,0.637500000000043,0.521428571428453,0.631250000000019,0.514285714285647,0.631250000000016,0.528571428571344,0.624999999999991,0.521428571428538,0.014285714285718,0.000000000000000,-0.000000000000106,-0.012500000000049,0.000000000000065,0.012500000000056,-0.014285714285676,-0.000000000000006,2 +1243,1256,1258,1271,0.637500000000043,0.535714285714178,0.631250000000016,0.528571428571344,0.631250000000012,0.542857142857067,0.624999999999985,0.535714285714233,0.014285714285732,0.000000000000000,-0.000000000000065,-0.012500000000056,0.000000000000046,0.012500000000062,-0.014285714285714,-0.000000000000006,2 +1244,1257,1259,1272,0.637500000000043,0.549999999999912,0.631250000000012,0.542857142857067,0.631250000000009,0.557142857142793,0.624999999999978,0.549999999999948,0.014285714285736,-0.000000000000000,-0.000000000000046,-0.012500000000062,0.000000000000027,0.012500000000068,-0.014285714285717,-0.000000000000006,2 +1245,1258,1260,1273,0.637500000000043,0.564285714285648,0.631250000000009,0.557142857142793,0.631250000000006,0.571428571428520,0.624999999999972,0.564285714285665,0.014285714285737,0.000000000000000,-0.000000000000027,-0.012500000000068,0.000000000000007,0.012500000000074,-0.014285714285717,-0.000000000000006,2 +1246,1259,1261,1274,0.637500000000043,0.578571428571389,0.631250000000006,0.571428571428520,0.631250000000003,0.585714285714260,0.624999999999966,0.578571428571391,0.014285714285744,-0.000000000000000,-0.000000000000007,-0.012500000000074,-0.000000000000002,0.012500000000081,-0.014285714285735,-0.000000000000006,2 +1247,1260,1275,1302,0.637500000000043,0.592857142857130,0.631250000000003,0.585714285714260,0.624999999999960,0.592857142857129,0.631250000000000,0.600000000000000,0.014285714285739,-0.000000000000000,0.000000000000002,-0.012500000000081,-0.014285714285741,-0.000000000000006,0.000000000000000,0.012500000000087,2 +1115,1248,1263,1276,0.618750000000000,0.400000000000000,0.625000000000040,0.407142857142856,0.618749999999997,0.414285714285724,0.612499999999957,0.407142857142867,0.000000000000000,-0.012500000000087,0.014285714285713,0.000000000000006,0.000000000000022,0.012500000000081,-0.014285714285734,-0.000000000000000,2 +1249,1262,1264,1277,0.625000000000034,0.421428571428579,0.618749999999997,0.414285714285724,0.618749999999994,0.428571428571461,0.612499999999957,0.421428571428606,0.014285714285733,0.000000000000006,-0.000000000000022,-0.012500000000081,0.000000000000032,0.012500000000074,-0.014285714285743,-0.000000000000000,2 +1250,1263,1265,1278,0.625000000000028,0.435714285714303,0.618749999999994,0.428571428571461,0.618749999999991,0.442857142857188,0.612499999999957,0.435714285714346,0.014285714285715,0.000000000000006,-0.000000000000032,-0.012500000000074,0.000000000000055,0.012500000000068,-0.014285714285738,0.000000000000000,2 +1251,1264,1266,1279,0.625000000000022,0.450000000000019,0.618749999999991,0.442857142857188,0.618749999999988,0.457142857142916,0.612499999999957,0.450000000000085,0.014285714285717,0.000000000000006,-0.000000000000055,-0.012500000000068,0.000000000000078,0.012500000000062,-0.014285714285740,-0.000000000000000,2 +1252,1265,1267,1280,0.625000000000016,0.464285714285735,0.618749999999988,0.457142857142916,0.618749999999985,0.471428571428643,0.612499999999957,0.464285714285824,0.014285714285715,0.000000000000006,-0.000000000000078,-0.012500000000062,0.000000000000101,0.012500000000056,-0.014285714285738,0.000000000000000,2 +1253,1266,1268,1281,0.625000000000009,0.478571428571448,0.618749999999985,0.471428571428643,0.618749999999981,0.485714285714365,0.612499999999957,0.478571428571560,0.014285714285712,0.000000000000006,-0.000000000000101,-0.012500000000056,0.000000000000122,0.012500000000050,-0.014285714285733,-0.000000000000000,2 +1254,1267,1269,1282,0.625000000000003,0.492857142857166,0.618749999999981,0.485714285714365,0.618749999999978,0.500000000000093,0.612499999999957,0.492857142857293,0.014285714285723,0.000000000000006,-0.000000000000122,-0.012500000000050,0.000000000000133,0.012500000000043,-0.014285714285733,-0.000000000000000,2 +1255,1268,1270,1283,0.624999999999997,0.507142857142864,0.618749999999978,0.500000000000093,0.618749999999975,0.514285714285753,0.612499999999957,0.507142857142983,0.014285714285673,0.000000000000006,-0.000000000000133,-0.012500000000043,0.000000000000106,0.012500000000037,-0.014285714285647,-0.000000000000000,2 +1256,1269,1271,1284,0.624999999999991,0.521428571428538,0.618749999999975,0.514285714285753,0.618749999999972,0.528571428571409,0.612499999999957,0.521428571428624,0.014285714285676,0.000000000000006,-0.000000000000106,-0.012500000000037,0.000000000000065,0.012500000000031,-0.014285714285635,-0.000000000000000,2 +1257,1270,1272,1285,0.624999999999985,0.535714285714233,0.618749999999972,0.528571428571409,0.618749999999969,0.542857142857113,0.612499999999957,0.535714285714289,0.014285714285714,0.000000000000006,-0.000000000000065,-0.012500000000031,0.000000000000047,0.012500000000025,-0.014285714285695,-0.000000000000000,2 +1258,1271,1273,1286,0.624999999999978,0.549999999999948,0.618749999999969,0.542857142857113,0.618749999999966,0.557142857142820,0.612499999999957,0.549999999999985,0.014285714285717,0.000000000000006,-0.000000000000047,-0.012500000000025,0.000000000000027,0.012500000000018,-0.014285714285697,-0.000000000000000,2 +1259,1272,1274,1287,0.624999999999972,0.564285714285665,0.618749999999966,0.557142857142820,0.618749999999963,0.571428571428527,0.612499999999957,0.564285714285682,0.014285714285717,0.000000000000006,-0.000000000000027,-0.012500000000018,0.000000000000007,0.012500000000012,-0.014285714285697,-0.000000000000000,2 +1260,1273,1275,1288,0.624999999999966,0.578571428571391,0.618749999999963,0.571428571428527,0.618749999999960,0.585714285714258,0.612499999999957,0.578571428571393,0.014285714285735,0.000000000000006,-0.000000000000007,-0.012500000000012,-0.000000000000002,0.012500000000006,-0.014285714285726,-0.000000000000000,2 +1261,1274,1289,1296,0.624999999999960,0.592857142857129,0.618749999999960,0.585714285714258,0.612499999999957,0.592857142857128,0.618749999999957,0.600000000000000,0.014285714285741,0.000000000000006,0.000000000000002,-0.012500000000006,-0.014285714285743,0.000000000000000,0.000000000000000,0.012500000000000,2 +1056,1262,1277,7274,0.606249999999978,0.400000000000000,0.612499999999957,0.407142857142867,0.606249999999978,0.414285714285745,0.600000000000000,0.407142857142878,-0.000000000000000,-0.012499999999957,0.014285714285734,0.000000000000000,0.000000000000022,0.012499999999957,-0.014285714285756,-0.000000000000000,2 +1263,1276,1278,7275,0.612499999999957,0.421428571428606,0.606249999999978,0.414285714285745,0.606249999999978,0.428571428571493,0.600000000000000,0.421428571428633,0.014285714285743,0.000000000000000,-0.000000000000022,-0.012499999999957,0.000000000000032,0.012499999999957,-0.014285714285753,0.000000000000000,2 +1264,1277,1279,7276,0.612499999999957,0.435714285714346,0.606249999999978,0.428571428571493,0.606249999999978,0.442857142857243,0.600000000000000,0.435714285714389,0.014285714285738,-0.000000000000000,-0.000000000000032,-0.012499999999957,0.000000000000055,0.012499999999957,-0.014285714285761,0.000000000000000,2 +1265,1278,1280,7277,0.612499999999957,0.450000000000085,0.606249999999978,0.442857142857243,0.606249999999978,0.457142857142995,0.600000000000000,0.450000000000152,0.014285714285740,0.000000000000000,-0.000000000000055,-0.012499999999957,0.000000000000078,0.012499999999957,-0.014285714285764,0.000000000000000,2 +1266,1279,1281,7278,0.612499999999957,0.464285714285824,0.606249999999978,0.457142857142995,0.606249999999978,0.471428571428744,0.600000000000000,0.464285714285914,0.014285714285738,-0.000000000000000,-0.000000000000078,-0.012499999999957,0.000000000000101,0.012499999999957,-0.014285714285761,0.000000000000000,2 +1267,1280,1282,7279,0.612499999999957,0.478571428571560,0.606249999999978,0.471428571428744,0.606249999999978,0.485714285714488,0.600000000000000,0.478571428571672,0.014285714285733,0.000000000000000,-0.000000000000101,-0.012499999999957,0.000000000000122,0.012499999999957,-0.014285714285754,0.000000000000000,2 +1268,1281,1283,7280,0.612499999999957,0.492857142857293,0.606249999999978,0.485714285714488,0.606249999999978,0.500000000000226,0.600000000000000,0.492857142857421,0.014285714285733,0.000000000000000,-0.000000000000122,-0.012499999999957,0.000000000000133,0.012499999999957,-0.014285714285744,0.000000000000000,2 +1269,1282,1284,7281,0.612499999999957,0.507142857142983,0.606249999999978,0.500000000000226,0.606249999999978,0.514285714285859,0.600000000000000,0.507142857143103,0.014285714285647,0.000000000000000,-0.000000000000133,-0.012499999999957,0.000000000000106,0.012499999999957,-0.014285714285620,0.000000000000000,2 +1270,1283,1285,7282,0.612499999999957,0.521428571428624,0.606249999999978,0.514285714285859,0.606249999999978,0.528571428571474,0.600000000000000,0.521428571428709,0.014285714285635,0.000000000000000,-0.000000000000106,-0.012499999999957,0.000000000000065,0.012499999999957,-0.014285714285593,0.000000000000000,2 +1271,1284,1286,7283,0.612499999999957,0.535714285714289,0.606249999999978,0.528571428571474,0.606249999999978,0.542857142857160,0.600000000000000,0.535714285714345,0.014285714285695,0.000000000000000,-0.000000000000065,-0.012499999999957,0.000000000000046,0.012499999999957,-0.014285714285677,0.000000000000000,2 +1272,1285,1287,7284,0.612499999999957,0.549999999999985,0.606249999999978,0.542857142857160,0.606249999999978,0.557142857142847,0.600000000000000,0.550000000000022,0.014285714285697,0.000000000000000,-0.000000000000046,-0.012499999999957,0.000000000000027,0.012499999999957,-0.014285714285677,0.000000000000000,2 +1273,1286,1288,7285,0.612499999999957,0.564285714285682,0.606249999999978,0.557142857142847,0.606249999999978,0.571428571428534,0.600000000000000,0.564285714285699,0.014285714285697,0.000000000000000,-0.000000000000027,-0.012499999999957,0.000000000000007,0.012499999999957,-0.014285714285677,0.000000000000000,2 +1274,1287,1289,7286,0.612499999999957,0.578571428571393,0.606249999999978,0.571428571428534,0.606249999999978,0.585714285714256,0.600000000000000,0.578571428571396,0.014285714285726,0.000000000000000,-0.000000000000007,-0.012499999999957,-0.000000000000002,0.012499999999957,-0.014285714285717,0.000000000000000,2 +1275,1288,1290,7287,0.612499999999957,0.592857142857128,0.606249999999978,0.585714285714256,0.606249999999978,0.600000000000000,0.600000000000000,0.592857142857127,0.014285714285743,-0.000000000000000,0.000000000000002,-0.012499999999957,0.000000000000000,0.012499999999957,-0.014285714285745,0.000000000000000,2 +1289,1291,1296,1482,0.606249999999978,0.600000000000000,0.606249999999978,0.608333333333283,0.612499999999957,0.604166666666641,0.600000000000000,0.604166666666641,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.008333333333283,-0.000000000000000,-0.008333333333283,-0.000000000000000,2 +1290,1292,1297,1483,0.606249999999978,0.608333333333283,0.606249999999978,0.616666666666674,0.612499999999957,0.612499999999978,0.600000000000000,0.612499999999978,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,-0.008333333333391,0.000000000000000,2 +1291,1293,1298,1484,0.606249999999978,0.616666666666674,0.606249999999978,0.625000000000033,0.612499999999957,0.620833333333348,0.600000000000000,0.620833333333359,0.000000000000000,-0.012499999999957,0.000000000000022,0.012499999999957,0.008333333333348,0.000000000000000,-0.008333333333369,0.000000000000000,2 +1292,1294,1299,1485,0.606249999999978,0.625000000000033,0.606249999999978,0.633333333333326,0.612499999999957,0.629166666666674,0.600000000000000,0.629166666666685,-0.000000000000022,-0.012499999999957,0.000000000000000,0.012499999999957,0.008333333333304,-0.000000000000000,-0.008333333333283,0.000000000000000,2 +1293,1295,1300,1486,0.606249999999978,0.633333333333326,0.606249999999978,0.641666666666717,0.612499999999957,0.637500000000022,0.600000000000000,0.637500000000022,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999956,0.008333333333391,0.000000000000000,-0.008333333333391,0.000000000000000,2 +1294,1301,1487,11869,0.606249999999978,0.641666666666717,0.612499999999957,0.645833333333359,0.600000000000000,0.645833333333359,0.606249999999978,0.650000000000000,-0.000000000000000,-0.012499999999956,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.012499999999957,1 +1275,1290,1297,1302,0.618749999999957,0.600000000000000,0.612499999999957,0.604166666666641,0.618749999999957,0.608333333333283,0.624999999999956,0.604166666666641,-0.000000000000000,-0.012500000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.012500000000000,0.008333333333283,0.000000000000000,2 +1291,1296,1298,1303,0.612499999999957,0.612499999999978,0.618749999999957,0.608333333333283,0.618749999999957,0.616666666666674,0.624999999999956,0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333391,-0.000000000000000,2 +1292,1297,1299,1304,0.612499999999957,0.620833333333348,0.618749999999957,0.616666666666674,0.618749999999957,0.625000000000011,0.624999999999956,0.620833333333337,-0.008333333333348,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000022,0.012500000000000,0.008333333333326,-0.000000000000000,2 +1293,1298,1300,1305,0.612499999999957,0.629166666666674,0.618749999999957,0.625000000000011,0.618749999999957,0.633333333333326,0.624999999999957,0.629166666666663,-0.008333333333304,0.000000000000000,-0.000000000000022,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333326,0.000000000000000,2 +1294,1299,1301,1306,0.612499999999957,0.637500000000022,0.618749999999957,0.633333333333326,0.618749999999957,0.641666666666717,0.624999999999957,0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333391,-0.000000000000000,2 +1295,1300,1307,11869,0.612499999999957,0.645833333333359,0.618749999999957,0.641666666666717,0.624999999999957,0.645833333333359,0.618749999999957,0.650000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.012500000000000,0.008333333333283,0.000000000000000,0.000000000000000,0.012500000000000,1 +1261,1296,1303,1308,0.631250000000000,0.600000000000000,0.624999999999956,0.604166666666641,0.631250000000000,0.608333333333283,0.637500000000043,0.604166666666641,-0.000000000000000,-0.012500000000087,-0.008333333333283,-0.000000000000000,0.000000000000000,0.012500000000087,0.008333333333283,0.000000000000000,2 +1297,1302,1304,1309,0.624999999999956,0.612499999999978,0.631250000000000,0.608333333333283,0.631250000000000,0.616666666666674,0.637500000000043,0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,0.008333333333391,0.000000000000000,2 +1298,1303,1305,1310,0.624999999999956,0.620833333333337,0.631250000000000,0.616666666666674,0.631250000000000,0.624999999999989,0.637500000000043,0.620833333333326,-0.008333333333326,0.000000000000000,0.000000000000000,-0.012500000000087,0.000000000000022,0.012500000000087,0.008333333333304,0.000000000000000,2 +1299,1304,1306,1311,0.624999999999957,0.629166666666663,0.631250000000000,0.624999999999989,0.631250000000000,0.633333333333326,0.637500000000043,0.629166666666652,-0.008333333333326,-0.000000000000000,-0.000000000000022,-0.012500000000087,0.000000000000000,0.012500000000087,0.008333333333348,0.000000000000000,2 +1300,1305,1307,1312,0.624999999999957,0.637500000000022,0.631250000000000,0.633333333333326,0.631250000000000,0.641666666666717,0.637500000000043,0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.008333333333391,0.000000000000000,2 +1301,1306,1313,11869,0.624999999999957,0.645833333333359,0.631250000000000,0.641666666666717,0.637500000000043,0.645833333333359,0.631250000000000,0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.008333333333283,-0.000000000000000,0.000000000000000,0.012500000000087,1 +1247,1302,1309,11869,0.643750000000022,0.600000000000000,0.637500000000043,0.604166666666641,0.643750000000022,0.608333333333283,0.650000000000000,0.604166666666641,0.000000000000000,-0.012499999999957,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.012499999999957,0.008333333333283,0.000000000000000,1 +1303,1308,1310,11869,0.637500000000043,0.612499999999978,0.643750000000022,0.608333333333283,0.643750000000022,0.616666666666674,0.650000000000000,0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,1 +1304,1309,1311,11869,0.637500000000043,0.620833333333326,0.643750000000022,0.616666666666674,0.643750000000022,0.624999999999967,0.650000000000000,0.620833333333315,-0.008333333333304,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000022,0.012499999999957,0.008333333333283,0.000000000000000,1 +1305,1310,1312,11869,0.637500000000043,0.629166666666652,0.643750000000022,0.624999999999967,0.643750000000022,0.633333333333326,0.650000000000000,0.629166666666641,-0.008333333333348,-0.000000000000000,-0.000000000000022,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333369,0.000000000000000,1 +1306,1311,1313,11869,0.637500000000043,0.637500000000022,0.643750000000022,0.633333333333326,0.643750000000022,0.641666666666717,0.650000000000000,0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,1 +1307,1312,11869,0.637500000000043,0.645833333333359,0.643750000000022,0.641666666666717,0.650000000000000,0.645833333333359,-0.008333333333283,0.000000000000000,0.000000000000000,-0.012499999999957,0.008333333333283,-0.000000000000000,1 +1315,1320,1656,6895,0.206896551724132,0.608333333333283,0.213793103448259,0.604166666666641,0.200000000000000,0.604166666666641,0.206896551724127,0.600000000000000,0.000000000000000,0.013793103448264,0.008333333333282,-0.000000000000011,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448254,2 +1314,1316,1321,1657,0.206896551724132,0.608333333333283,0.206896551724138,0.616666666666674,0.213793103448270,0.612499999999978,0.200000000000000,0.612499999999978,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448275,0.008333333333391,-0.000000000000011,-0.008333333333391,0.000000000000000,2 +1315,1317,1322,1658,0.206896551724138,0.616666666666674,0.206896551724143,0.625000000000043,0.213793103448281,0.620833333333358,0.200000000000000,0.620833333333359,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448286,0.008333333333369,-0.000000000000011,-0.008333333333369,0.000000000000000,2 +1316,1318,1323,1659,0.206896551724143,0.625000000000043,0.206896551724148,0.633333333333326,0.213793103448291,0.629166666666685,0.200000000000000,0.629166666666685,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448297,0.008333333333283,-0.000000000000011,-0.008333333333283,0.000000000000000,2 +1317,1319,1324,1660,0.206896551724148,0.633333333333326,0.206896551724154,0.641666666666717,0.213793103448302,0.637500000000021,0.200000000000000,0.637500000000022,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448307,0.008333333333391,-0.000000000000011,-0.008333333333391,0.000000000000000,2 +1318,1325,1661,11869,0.206896551724154,0.641666666666717,0.213793103448313,0.645833333333358,0.200000000000000,0.645833333333359,0.206896551724159,0.650000000000000,-0.000000000000000,-0.013793103448307,0.008333333333283,-0.000000000000011,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448318,1 +1314,1321,1326,6909,0.213793103448259,0.604166666666641,0.220689655172392,0.608333333333282,0.227586206896508,0.604166666666641,0.220689655172375,0.600000000000000,-0.008333333333282,0.000000000000011,-0.000000000000000,0.013793103448255,0.008333333333283,-0.000000000000023,-0.000000000000000,-0.013793103448243,2 +1315,1320,1322,1327,0.213793103448270,0.612499999999978,0.220689655172392,0.608333333333282,0.220689655172409,0.616666666666674,0.227586206896531,0.612499999999978,-0.008333333333391,0.000000000000011,0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448267,0.008333333333391,-0.000000000000023,2 +1316,1321,1323,1328,0.213793103448281,0.620833333333358,0.220689655172409,0.616666666666674,0.220689655172426,0.625000000000043,0.227586206896554,0.620833333333358,-0.008333333333369,0.000000000000011,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448279,0.008333333333369,-0.000000000000023,2 +1317,1322,1324,1329,0.213793103448291,0.629166666666685,0.220689655172426,0.625000000000043,0.220689655172443,0.633333333333326,0.227586206896577,0.629166666666685,-0.008333333333283,0.000000000000011,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448292,0.008333333333283,-0.000000000000023,2 +1318,1323,1325,1330,0.213793103448302,0.637500000000021,0.220689655172443,0.633333333333326,0.220689655172459,0.641666666666717,0.227586206896600,0.637500000000021,-0.008333333333391,0.000000000000011,-0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448304,0.008333333333391,-0.000000000000023,2 +1319,1324,1331,11869,0.213793103448313,0.645833333333358,0.220689655172459,0.641666666666717,0.227586206896623,0.645833333333358,0.220689655172476,0.650000000000000,-0.008333333333283,0.000000000000011,-0.000000000000000,-0.013793103448304,0.008333333333283,-0.000000000000023,-0.000000000000000,0.013793103448316,1 +1320,1327,1332,6923,0.227586206896508,0.604166666666641,0.234482758620651,0.608333333333283,0.241379310344766,0.604166666666641,0.234482758620623,0.600000000000000,-0.008333333333283,0.000000000000023,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000033,-0.000000000000000,-0.013793103448254,2 +1321,1326,1328,1333,0.227586206896531,0.612499999999978,0.234482758620651,0.608333333333283,0.234482758620679,0.616666666666674,0.241379310344799,0.612499999999978,-0.008333333333391,0.000000000000023,-0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448273,0.008333333333391,-0.000000000000033,2 +1322,1327,1329,1334,0.227586206896554,0.620833333333358,0.234482758620679,0.616666666666674,0.234482758620707,0.625000000000043,0.241379310344832,0.620833333333358,-0.008333333333369,0.000000000000023,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448283,0.008333333333369,-0.000000000000033,2 +1323,1328,1330,1335,0.227586206896577,0.629166666666685,0.234482758620707,0.625000000000043,0.234482758620735,0.633333333333326,0.241379310344864,0.629166666666685,-0.008333333333283,0.000000000000023,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448292,0.008333333333283,-0.000000000000033,2 +1324,1329,1331,1336,0.227586206896600,0.637500000000021,0.234482758620735,0.633333333333326,0.234482758620762,0.641666666666717,0.241379310344897,0.637500000000021,-0.008333333333391,0.000000000000023,-0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448302,0.008333333333391,-0.000000000000033,2 +1325,1330,1337,11869,0.227586206896623,0.645833333333358,0.234482758620762,0.641666666666717,0.241379310344930,0.645833333333359,0.234482758620790,0.650000000000000,-0.008333333333283,0.000000000000023,0.000000000000000,-0.013793103448302,0.008333333333283,-0.000000000000033,-0.000000000000000,0.013793103448312,1 +1326,1333,1338,6937,0.241379310344766,0.604166666666641,0.248275862068911,0.608333333333283,0.255172413793017,0.604166666666641,0.248275862068872,0.600000000000000,-0.008333333333283,0.000000000000033,-0.000000000000000,0.013793103448256,0.008333333333283,-0.000000000000044,-0.000000000000000,-0.013793103448245,2 +1327,1332,1334,1339,0.241379310344799,0.612499999999978,0.248275862068911,0.608333333333283,0.248275862068949,0.616666666666674,0.255172413793061,0.612499999999978,-0.008333333333391,0.000000000000033,0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448267,0.008333333333391,-0.000000000000044,2 +1328,1333,1335,1340,0.241379310344832,0.620833333333358,0.248275862068949,0.616666666666674,0.248275862068987,0.625000000000043,0.255172413793104,0.620833333333358,-0.008333333333369,0.000000000000033,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448278,0.008333333333369,-0.000000000000044,2 +1329,1334,1336,1341,0.241379310344864,0.629166666666685,0.248275862068987,0.625000000000043,0.248275862069026,0.633333333333326,0.255172413793148,0.629166666666685,-0.008333333333283,0.000000000000033,-0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448289,0.008333333333283,-0.000000000000044,2 +1330,1335,1337,1342,0.241379310344897,0.637500000000021,0.248275862069026,0.633333333333326,0.248275862069064,0.641666666666717,0.255172413793192,0.637500000000021,-0.008333333333391,0.000000000000033,-0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000044,2 +1331,1336,1343,11869,0.241379310344930,0.645833333333359,0.248275862069064,0.641666666666717,0.255172413793236,0.645833333333358,0.248275862069102,0.650000000000000,-0.008333333333283,0.000000000000033,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000044,-0.000000000000000,0.013793103448312,1 +1332,1339,1344,6951,0.255172413793017,0.604166666666641,0.262068965517163,0.608333333333283,0.268965517241258,0.604166666666641,0.262068965517112,0.600000000000000,-0.008333333333283,0.000000000000044,0.000000000000000,0.013793103448248,0.008333333333282,-0.000000000000057,-0.000000000000000,-0.013793103448235,2 +1333,1338,1340,1345,0.255172413793061,0.612499999999978,0.262068965517163,0.608333333333283,0.262068965517213,0.616666666666674,0.268965517241315,0.612499999999978,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000057,2 +1334,1339,1341,1346,0.255172413793104,0.620833333333358,0.262068965517213,0.616666666666674,0.262068965517263,0.625000000000043,0.268965517241372,0.620833333333358,-0.008333333333369,0.000000000000044,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000056,2 +1335,1340,1342,1347,0.255172413793148,0.629166666666685,0.262068965517263,0.625000000000043,0.262068965517313,0.633333333333326,0.268965517241428,0.629166666666685,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000057,2 +1336,1341,1343,1348,0.255172413793192,0.637500000000021,0.262068965517313,0.633333333333326,0.262068965517364,0.641666666666717,0.268965517241485,0.637500000000021,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000057,2 +1337,1342,1349,11869,0.255172413793236,0.645833333333358,0.262068965517364,0.641666666666717,0.268965517241541,0.645833333333359,0.262068965517414,0.650000000000000,-0.008333333333283,0.000000000000044,0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000057,-0.000000000000000,0.013793103448312,1 +1338,1345,1350,6965,0.268965517241258,0.604166666666641,0.275862068965411,0.608333333333282,0.282758620689500,0.604166666666641,0.275862068965347,0.600000000000000,-0.008333333333282,0.000000000000057,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000070,-0.000000000000000,-0.013793103448235,2 +1339,1344,1346,1351,0.268965517241315,0.612499999999978,0.275862068965411,0.608333333333282,0.275862068965475,0.616666666666674,0.282758620689571,0.612499999999978,-0.008333333333391,0.000000000000057,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000070,2 +1340,1345,1347,1352,0.268965517241372,0.620833333333358,0.275862068965475,0.616666666666674,0.275862068965538,0.625000000000043,0.282758620689641,0.620833333333358,-0.008333333333369,0.000000000000056,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000070,2 +1341,1346,1348,1353,0.268965517241428,0.629166666666685,0.275862068965538,0.625000000000043,0.275862068965601,0.633333333333326,0.282758620689711,0.629166666666685,-0.008333333333283,0.000000000000057,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448290,0.008333333333283,-0.000000000000070,2 +1342,1347,1349,1354,0.268965517241485,0.637500000000021,0.275862068965601,0.633333333333326,0.275862068965665,0.641666666666717,0.282758620689782,0.637500000000021,-0.008333333333391,0.000000000000057,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448304,0.008333333333391,-0.000000000000070,2 +1343,1348,1355,11869,0.268965517241541,0.645833333333359,0.275862068965665,0.641666666666717,0.282758620689852,0.645833333333359,0.275862068965729,0.650000000000000,-0.008333333333283,0.000000000000057,-0.000000000000000,-0.013793103448304,0.008333333333283,-0.000000000000070,-0.000000000000000,0.013793103448317,1 +1344,1351,1356,6979,0.282758620689500,0.604166666666641,0.289655172413660,0.608333333333283,0.296551724137742,0.604166666666641,0.289655172413583,0.600000000000000,-0.008333333333283,0.000000000000070,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000084,-0.000000000000000,-0.013793103448235,2 +1345,1350,1352,1357,0.282758620689571,0.612499999999978,0.289655172413660,0.608333333333283,0.289655172413737,0.616666666666674,0.296551724137826,0.612499999999978,-0.008333333333391,0.000000000000070,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000084,2 +1346,1351,1353,1358,0.282758620689641,0.620833333333358,0.289655172413737,0.616666666666674,0.289655172413814,0.625000000000043,0.296551724137911,0.620833333333358,-0.008333333333369,0.000000000000070,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448276,0.008333333333369,-0.000000000000084,2 +1347,1352,1354,1359,0.282758620689711,0.629166666666685,0.289655172413814,0.625000000000043,0.289655172413892,0.633333333333326,0.296551724137995,0.629166666666685,-0.008333333333283,0.000000000000070,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448290,0.008333333333283,-0.000000000000084,2 +1348,1353,1355,1360,0.282758620689782,0.637500000000021,0.289655172413892,0.633333333333326,0.289655172413969,0.641666666666717,0.296551724138079,0.637500000000021,-0.008333333333391,0.000000000000070,-0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448304,0.008333333333391,-0.000000000000084,2 +1349,1354,1361,11869,0.282758620689852,0.645833333333359,0.289655172413969,0.641666666666717,0.296551724138163,0.645833333333359,0.289655172414046,0.650000000000000,-0.008333333333283,0.000000000000070,0.000000000000000,-0.013793103448304,0.008333333333283,-0.000000000000084,-0.000000000000000,0.013793103448318,1 +1350,1357,1362,6993,0.296551724137742,0.604166666666641,0.303448275861909,0.608333333333283,0.310344827585984,0.604166666666641,0.303448275861818,0.600000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000098,-0.000000000000000,-0.013793103448235,2 +1351,1356,1358,1363,0.296551724137826,0.612499999999978,0.303448275861909,0.608333333333283,0.303448275862000,0.616666666666674,0.310344827586082,0.612499999999978,-0.008333333333391,0.000000000000084,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000098,2 +1352,1357,1359,1364,0.296551724137911,0.620833333333358,0.303448275862000,0.616666666666674,0.303448275862091,0.625000000000043,0.310344827586180,0.620833333333358,-0.008333333333369,0.000000000000084,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000098,2 +1353,1358,1360,1365,0.296551724137995,0.629166666666685,0.303448275862091,0.625000000000043,0.303448275862182,0.633333333333326,0.310344827586278,0.629166666666685,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448290,0.008333333333283,-0.000000000000098,2 +1354,1359,1361,1366,0.296551724138079,0.637500000000021,0.303448275862182,0.633333333333326,0.303448275862273,0.641666666666717,0.310344827586376,0.637500000000021,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448304,0.008333333333391,-0.000000000000098,2 +1355,1360,1367,11869,0.296551724138163,0.645833333333359,0.303448275862273,0.641666666666717,0.310344827586474,0.645833333333358,0.303448275862364,0.650000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448304,0.008333333333283,-0.000000000000098,-0.000000000000000,0.013793103448318,1 +1356,1363,1368,7007,0.310344827585984,0.604166666666641,0.317241379310157,0.608333333333283,0.324137931034226,0.604166666666641,0.317241379310053,0.600000000000000,-0.008333333333283,0.000000000000098,0.000000000000000,0.013793103448248,0.008333333333283,-0.000000000000111,-0.000000000000000,-0.013793103448235,2 +1357,1362,1364,1369,0.310344827586082,0.612499999999978,0.317241379310157,0.608333333333283,0.317241379310262,0.616666666666674,0.324137931034337,0.612499999999978,-0.008333333333391,0.000000000000098,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000111,2 +1358,1363,1365,1370,0.310344827586180,0.620833333333358,0.317241379310262,0.616666666666674,0.317241379310367,0.625000000000043,0.324137931034449,0.620833333333358,-0.008333333333369,0.000000000000098,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000111,2 +1359,1364,1366,1371,0.310344827586278,0.629166666666685,0.317241379310367,0.625000000000043,0.317241379310472,0.633333333333326,0.324137931034560,0.629166666666685,-0.008333333333283,0.000000000000098,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448289,0.008333333333283,-0.000000000000112,2 +1360,1365,1367,1372,0.310344827586376,0.637500000000021,0.317241379310472,0.633333333333326,0.317241379310576,0.641666666666717,0.324137931034672,0.637500000000021,-0.008333333333391,0.000000000000098,-0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448302,0.008333333333391,-0.000000000000111,2 +1361,1366,1373,11869,0.310344827586474,0.645833333333358,0.317241379310576,0.641666666666717,0.324137931034783,0.645833333333359,0.317241379310681,0.650000000000000,-0.008333333333283,0.000000000000098,0.000000000000000,-0.013793103448302,0.008333333333283,-0.000000000000111,-0.000000000000000,0.013793103448315,1 +1362,1369,1374,7021,0.324137931034226,0.604166666666641,0.331034482758406,0.608333333333283,0.337931034482468,0.604166666666641,0.331034482758288,0.600000000000000,-0.008333333333283,0.000000000000111,0.000000000000000,0.013793103448248,0.008333333333282,-0.000000000000124,-0.000000000000000,-0.013793103448235,2 +1363,1368,1370,1375,0.324137931034337,0.612499999999978,0.331034482758406,0.608333333333283,0.331034482758523,0.616666666666674,0.337931034482592,0.612499999999978,-0.008333333333391,0.000000000000111,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000124,2 +1364,1369,1371,1376,0.324137931034449,0.620833333333358,0.331034482758523,0.616666666666674,0.331034482758641,0.625000000000043,0.337931034482716,0.620833333333358,-0.008333333333369,0.000000000000111,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000124,2 +1365,1370,1372,1377,0.324137931034560,0.629166666666685,0.331034482758641,0.625000000000043,0.331034482758759,0.633333333333326,0.337931034482840,0.629166666666685,-0.008333333333283,0.000000000000112,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000124,2 +1366,1371,1373,1378,0.324137931034672,0.637500000000021,0.331034482758759,0.633333333333326,0.331034482758877,0.641666666666717,0.337931034482964,0.637500000000021,-0.008333333333391,0.000000000000111,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000124,2 +1367,1372,1379,11869,0.324137931034783,0.645833333333359,0.331034482758877,0.641666666666717,0.337931034483088,0.645833333333359,0.331034482758994,0.650000000000000,-0.008333333333283,0.000000000000111,-0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000124,-0.000000000000000,0.013793103448312,1 +1368,1375,1380,7035,0.337931034482468,0.604166666666641,0.344827586206654,0.608333333333283,0.351724137930709,0.604166666666641,0.344827586206523,0.600000000000000,-0.008333333333282,0.000000000000124,-0.000000000000000,0.013793103448248,0.008333333333283,-0.000000000000137,-0.000000000000000,-0.013793103448235,2 +1369,1374,1376,1381,0.337931034482592,0.612499999999978,0.344827586206654,0.608333333333283,0.344827586206784,0.616666666666674,0.351724137930846,0.612499999999978,-0.008333333333391,0.000000000000124,0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000137,2 +1370,1375,1377,1382,0.337931034482716,0.620833333333358,0.344827586206784,0.616666666666674,0.344827586206915,0.625000000000043,0.351724137930983,0.620833333333358,-0.008333333333369,0.000000000000124,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000137,2 +1371,1376,1378,1383,0.337931034482840,0.629166666666685,0.344827586206915,0.625000000000043,0.344827586207045,0.633333333333326,0.351724137931120,0.629166666666685,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000137,2 +1372,1377,1379,1384,0.337931034482964,0.637500000000021,0.344827586207045,0.633333333333326,0.344827586207176,0.641666666666717,0.351724137931257,0.637500000000021,-0.008333333333391,0.000000000000124,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000137,2 +1373,1378,1385,11869,0.337931034483088,0.645833333333359,0.344827586207176,0.641666666666717,0.351724137931394,0.645833333333358,0.344827586207306,0.650000000000000,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000137,-0.000000000000000,0.013793103448312,1 +1374,1381,1386,7049,0.351724137930709,0.604166666666641,0.358620689654902,0.608333333333283,0.365517241378951,0.604166666666641,0.358620689654758,0.600000000000000,-0.008333333333283,0.000000000000137,0.000000000000000,0.013793103448248,0.008333333333282,-0.000000000000150,-0.000000000000000,-0.013793103448235,2 +1375,1380,1382,1387,0.351724137930846,0.612499999999978,0.358620689654902,0.608333333333283,0.358620689655045,0.616666666666674,0.365517241379100,0.612499999999978,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000150,2 +1376,1381,1383,1388,0.351724137930983,0.620833333333358,0.358620689655045,0.616666666666674,0.358620689655188,0.625000000000043,0.365517241379250,0.620833333333358,-0.008333333333369,0.000000000000137,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000150,2 +1377,1382,1384,1389,0.351724137931120,0.629166666666685,0.358620689655188,0.625000000000043,0.358620689655331,0.633333333333326,0.365517241379400,0.629166666666685,-0.008333333333283,0.000000000000137,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000150,2 +1378,1383,1385,1390,0.351724137931257,0.637500000000021,0.358620689655331,0.633333333333326,0.358620689655475,0.641666666666717,0.365517241379549,0.637500000000021,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000150,2 +1379,1384,1391,11869,0.351724137931394,0.645833333333358,0.358620689655475,0.641666666666717,0.365517241379699,0.645833333333359,0.358620689655618,0.650000000000000,-0.008333333333283,0.000000000000137,0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000150,-0.000000000000000,0.013793103448312,1 +1380,1387,1392,7063,0.365517241378951,0.604166666666641,0.372413793103150,0.608333333333283,0.379310344827193,0.604166666666641,0.372413793102993,0.600000000000000,-0.008333333333282,0.000000000000150,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000164,-0.000000000000000,-0.013793103448235,2 +1381,1386,1388,1393,0.365517241379100,0.612499999999978,0.372413793103150,0.608333333333283,0.372413793103307,0.616666666666674,0.379310344827357,0.612499999999978,-0.008333333333391,0.000000000000150,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448264,0.008333333333391,-0.000000000000164,2 +1382,1387,1389,1394,0.365517241379250,0.620833333333358,0.372413793103307,0.616666666666674,0.372413793103464,0.625000000000043,0.379310344827521,0.620833333333358,-0.008333333333369,0.000000000000150,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448279,0.008333333333369,-0.000000000000164,2 +1383,1388,1390,1395,0.365517241379400,0.629166666666685,0.372413793103464,0.625000000000043,0.372413793103621,0.633333333333326,0.379310344827686,0.629166666666685,-0.008333333333283,0.000000000000150,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448294,0.008333333333283,-0.000000000000164,2 +1384,1389,1391,1396,0.365517241379549,0.637500000000021,0.372413793103621,0.633333333333326,0.372413793103778,0.641666666666717,0.379310344827850,0.637500000000021,-0.008333333333391,0.000000000000150,-0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448308,0.008333333333391,-0.000000000000164,2 +1385,1390,1397,11869,0.365517241379699,0.645833333333359,0.372413793103778,0.641666666666717,0.379310344828015,0.645833333333358,0.372413793103935,0.650000000000000,-0.008333333333283,0.000000000000150,-0.000000000000000,-0.013793103448308,0.008333333333283,-0.000000000000164,-0.000000000000000,0.013793103448323,1 +1386,1393,1398,7077,0.379310344827193,0.604166666666641,0.386206896551399,0.608333333333283,0.393103448275434,0.604166666666641,0.386206896551228,0.600000000000000,-0.008333333333283,0.000000000000164,0.000000000000000,0.013793103448248,0.008333333333283,-0.000000000000177,-0.000000000000000,-0.013793103448235,2 +1387,1392,1394,1399,0.379310344827357,0.612499999999978,0.386206896551399,0.608333333333283,0.386206896551570,0.616666666666674,0.393103448275612,0.612499999999978,-0.008333333333391,0.000000000000164,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000177,2 +1388,1393,1395,1400,0.379310344827521,0.620833333333358,0.386206896551570,0.616666666666674,0.386206896551740,0.625000000000043,0.393103448275789,0.620833333333358,-0.008333333333369,0.000000000000164,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000177,2 +1389,1394,1396,1401,0.379310344827686,0.629166666666685,0.386206896551740,0.625000000000043,0.386206896551911,0.633333333333326,0.393103448275966,0.629166666666685,-0.008333333333283,0.000000000000164,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000177,2 +1390,1395,1397,1402,0.379310344827850,0.637500000000021,0.386206896551911,0.633333333333326,0.386206896552082,0.641666666666717,0.393103448276143,0.637500000000021,-0.008333333333391,0.000000000000164,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000177,2 +1391,1396,1403,11869,0.379310344828015,0.645833333333358,0.386206896552082,0.641666666666717,0.393103448276320,0.645833333333359,0.386206896552252,0.650000000000000,-0.008333333333283,0.000000000000164,0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000177,-0.000000000000000,0.013793103448312,1 +1392,1399,1404,7091,0.393103448275434,0.604166666666641,0.399999999999663,0.608333333333283,0.406896551723716,0.604166666666641,0.399999999999487,0.600000000000000,-0.008333333333283,0.000000000000177,0.000000000000000,0.013793103448280,0.008333333333283,-0.000000000000174,-0.000000000000000,-0.013793103448283,2 +1393,1398,1400,1405,0.393103448275612,0.612499999999978,0.399999999999663,0.608333333333283,0.399999999999838,0.616666666666674,0.406896551723890,0.612499999999978,-0.008333333333391,0.000000000000177,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448277,0.008333333333391,-0.000000000000174,2 +1394,1399,1401,1406,0.393103448275789,0.620833333333358,0.399999999999838,0.616666666666674,0.400000000000014,0.625000000000043,0.406896551724064,0.620833333333358,-0.008333333333369,0.000000000000177,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000174,2 +1395,1400,1402,1407,0.393103448275966,0.629166666666685,0.400000000000014,0.625000000000043,0.400000000000189,0.633333333333326,0.406896551724237,0.629166666666685,-0.008333333333283,0.000000000000177,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448270,0.008333333333283,-0.000000000000174,2 +1396,1401,1403,1408,0.393103448276143,0.637500000000021,0.400000000000189,0.633333333333326,0.400000000000365,0.641666666666717,0.406896551724411,0.637500000000021,-0.008333333333391,0.000000000000177,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448267,0.008333333333391,-0.000000000000174,2 +1397,1402,1409,11869,0.393103448276320,0.645833333333359,0.400000000000365,0.641666666666717,0.406896551724585,0.645833333333359,0.400000000000540,0.650000000000000,-0.008333333333283,0.000000000000177,0.000000000000000,-0.013793103448267,0.008333333333283,-0.000000000000174,-0.000000000000000,0.013793103448264,1 +1398,1405,1410,7105,0.406896551723716,0.604166666666641,0.413793103447953,0.608333333333283,0.420689655172023,0.604166666666641,0.413793103447786,0.600000000000000,-0.008333333333283,0.000000000000174,0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000161,-0.000000000000000,-0.013793103448313,2 +1399,1404,1406,1411,0.406896551723890,0.612499999999978,0.413793103447953,0.608333333333283,0.413793103448121,0.616666666666674,0.420689655172184,0.612499999999978,-0.008333333333391,0.000000000000174,-0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448288,0.008333333333391,-0.000000000000161,2 +1400,1405,1407,1412,0.406896551724064,0.620833333333358,0.413793103448121,0.616666666666674,0.413793103448288,0.625000000000043,0.420689655172345,0.620833333333358,-0.008333333333369,0.000000000000174,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448276,0.008333333333369,-0.000000000000161,2 +1401,1406,1408,1413,0.406896551724237,0.629166666666685,0.413793103448288,0.625000000000043,0.413793103448456,0.633333333333326,0.420689655172507,0.629166666666685,-0.008333333333283,0.000000000000174,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000161,2 +1402,1407,1409,1414,0.406896551724411,0.637500000000021,0.413793103448456,0.633333333333326,0.413793103448623,0.641666666666717,0.420689655172668,0.637500000000021,-0.008333333333391,0.000000000000174,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000161,2 +1403,1408,1415,11869,0.406896551724585,0.645833333333359,0.413793103448623,0.641666666666717,0.420689655172829,0.645833333333359,0.413793103448791,0.650000000000000,-0.008333333333283,0.000000000000174,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000161,-0.000000000000000,0.013793103448238,1 +1404,1411,1416,7119,0.420689655172023,0.604166666666641,0.427586206896255,0.608333333333283,0.434482758620332,0.604166666666641,0.427586206896100,0.600000000000000,-0.008333333333283,0.000000000000161,0.000000000000000,0.013793103448303,0.008333333333283,-0.000000000000148,-0.000000000000000,-0.013793103448315,2 +1405,1410,1412,1417,0.420689655172184,0.612499999999978,0.427586206896255,0.608333333333283,0.427586206896409,0.616666666666674,0.434482758620480,0.612499999999978,-0.008333333333391,0.000000000000161,-0.000000000000000,-0.013793103448303,0.000000000000000,0.013793103448289,0.008333333333391,-0.000000000000148,2 +1406,1411,1413,1418,0.420689655172345,0.620833333333358,0.427586206896409,0.616666666666674,0.427586206896564,0.625000000000043,0.434482758620628,0.620833333333358,-0.008333333333369,0.000000000000161,-0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000148,2 +1407,1412,1414,1419,0.420689655172507,0.629166666666685,0.427586206896564,0.625000000000043,0.427586206896719,0.633333333333326,0.434482758620777,0.629166666666685,-0.008333333333283,0.000000000000161,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448264,0.008333333333283,-0.000000000000148,2 +1408,1413,1415,1420,0.420689655172668,0.637500000000021,0.427586206896719,0.633333333333326,0.427586206896874,0.641666666666717,0.434482758620925,0.637500000000021,-0.008333333333391,0.000000000000161,-0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448251,0.008333333333391,-0.000000000000148,2 +1409,1414,1421,11869,0.420689655172829,0.645833333333359,0.427586206896874,0.641666666666717,0.434482758621073,0.645833333333359,0.427586206897029,0.650000000000000,-0.008333333333283,0.000000000000161,0.000000000000000,-0.013793103448251,0.008333333333283,-0.000000000000148,-0.000000000000000,0.013793103448238,1 +1410,1417,1422,7133,0.434482758620332,0.604166666666641,0.441379310344555,0.608333333333283,0.448275862068635,0.604166666666641,0.441379310344412,0.600000000000000,-0.008333333333283,0.000000000000148,-0.000000000000000,0.013793103448298,0.008333333333283,-0.000000000000136,-0.000000000000000,-0.013793103448310,2 +1411,1416,1418,1423,0.434482758620480,0.612499999999978,0.441379310344555,0.608333333333283,0.441379310344697,0.616666666666674,0.448275862068772,0.612499999999978,-0.008333333333391,0.000000000000148,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000136,2 +1412,1417,1419,1424,0.434482758620628,0.620833333333358,0.441379310344697,0.616666666666674,0.441379310344839,0.625000000000043,0.448275862068908,0.620833333333358,-0.008333333333369,0.000000000000148,0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000136,2 +1413,1418,1420,1425,0.434482758620777,0.629166666666685,0.441379310344839,0.625000000000043,0.441379310344982,0.633333333333326,0.448275862069044,0.629166666666685,-0.008333333333283,0.000000000000148,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000136,2 +1414,1419,1421,1426,0.434482758620925,0.637500000000021,0.441379310344982,0.633333333333326,0.441379310345124,0.641666666666717,0.448275862069181,0.637500000000021,-0.008333333333391,0.000000000000148,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000136,2 +1415,1420,1427,11869,0.434482758621073,0.645833333333359,0.441379310345124,0.641666666666717,0.448275862069317,0.645833333333359,0.441379310345266,0.650000000000000,-0.008333333333283,0.000000000000148,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000136,-0.000000000000000,0.013793103448238,1 +1416,1423,1428,7147,0.448275862068635,0.604166666666641,0.455172413792852,0.608333333333283,0.462068965516938,0.604166666666641,0.455172413792722,0.600000000000000,-0.008333333333283,0.000000000000136,0.000000000000000,0.013793103448297,0.008333333333283,-0.000000000000125,-0.000000000000000,-0.013793103448309,2 +1417,1422,1424,1429,0.448275862068772,0.612499999999978,0.455172413792852,0.608333333333283,0.455172413792982,0.616666666666674,0.462068965517063,0.612499999999978,-0.008333333333391,0.000000000000136,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448285,0.008333333333391,-0.000000000000124,2 +1418,1423,1425,1430,0.448275862068908,0.620833333333358,0.455172413792982,0.616666666666674,0.455172413793113,0.625000000000043,0.462068965517187,0.620833333333358,-0.008333333333369,0.000000000000136,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000124,2 +1419,1424,1426,1431,0.448275862069044,0.629166666666685,0.455172413793113,0.625000000000043,0.455172413793243,0.633333333333326,0.462068965517312,0.629166666666685,-0.008333333333283,0.000000000000136,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000124,2 +1420,1425,1427,1432,0.448275862069181,0.637500000000021,0.455172413793243,0.633333333333326,0.455172413793374,0.641666666666717,0.462068965517436,0.637500000000021,-0.008333333333391,0.000000000000136,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000125,2 +1421,1426,1433,11869,0.448275862069317,0.645833333333359,0.455172413793374,0.641666666666717,0.462068965517561,0.645833333333359,0.455172413793504,0.650000000000000,-0.008333333333283,0.000000000000136,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000125,-0.000000000000000,0.013793103448238,1 +1422,1429,1434,7161,0.462068965516938,0.604166666666641,0.468965517241149,0.608333333333283,0.475862068965242,0.604166666666641,0.468965517241031,0.600000000000000,-0.008333333333283,0.000000000000125,0.000000000000000,0.013793103448297,0.008333333333283,-0.000000000000113,-0.000000000000000,-0.013793103448309,2 +1423,1428,1430,1435,0.462068965517063,0.612499999999978,0.468965517241149,0.608333333333283,0.468965517241268,0.616666666666674,0.475862068965354,0.612499999999978,-0.008333333333391,0.000000000000124,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448285,0.008333333333391,-0.000000000000113,2 +1424,1429,1431,1436,0.462068965517187,0.620833333333358,0.468965517241268,0.616666666666674,0.468965517241386,0.625000000000043,0.475862068965467,0.620833333333358,-0.008333333333369,0.000000000000124,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000113,2 +1425,1430,1432,1437,0.462068965517312,0.629166666666685,0.468965517241386,0.625000000000043,0.468965517241505,0.633333333333326,0.475862068965579,0.629166666666685,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000113,2 +1426,1431,1433,1438,0.462068965517436,0.637500000000021,0.468965517241505,0.633333333333326,0.468965517241623,0.641666666666717,0.475862068965692,0.637500000000021,-0.008333333333391,0.000000000000125,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000113,2 +1427,1432,1439,11869,0.462068965517561,0.645833333333359,0.468965517241623,0.641666666666717,0.475862068965804,0.645833333333359,0.468965517241742,0.650000000000000,-0.008333333333283,0.000000000000125,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000113,-0.000000000000000,0.013793103448238,1 +1428,1435,1440,7175,0.475862068965242,0.604166666666641,0.482758620689448,0.608333333333283,0.489655172413548,0.604166666666641,0.482758620689341,0.600000000000000,-0.008333333333283,0.000000000000113,0.000000000000000,0.013793103448300,0.008333333333283,-0.000000000000100,-0.000000000000000,-0.013793103448313,2 +1429,1434,1436,1441,0.475862068965354,0.612499999999978,0.482758620689448,0.608333333333283,0.482758620689554,0.616666666666674,0.489655172413648,0.612499999999978,-0.008333333333391,0.000000000000113,-0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448288,0.008333333333391,-0.000000000000100,2 +1430,1435,1437,1442,0.475862068965467,0.620833333333358,0.482758620689554,0.616666666666674,0.482758620689660,0.625000000000043,0.489655172413748,0.620833333333358,-0.008333333333369,0.000000000000113,-0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000100,2 +1431,1436,1438,1443,0.475862068965579,0.629166666666685,0.482758620689660,0.625000000000043,0.482758620689767,0.633333333333326,0.489655172413848,0.629166666666685,-0.008333333333283,0.000000000000113,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000100,2 +1432,1437,1439,1444,0.475862068965692,0.637500000000021,0.482758620689767,0.633333333333326,0.482758620689873,0.641666666666717,0.489655172413948,0.637500000000021,-0.008333333333391,0.000000000000113,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000100,2 +1433,1438,1445,11869,0.475862068965804,0.645833333333359,0.482758620689873,0.641666666666717,0.489655172414048,0.645833333333359,0.482758620689980,0.650000000000000,-0.008333333333283,0.000000000000113,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000100,-0.000000000000000,0.013793103448238,1 +1434,1441,1446,7189,0.489655172413548,0.604166666666641,0.496551724137758,0.608333333333283,0.503448275861876,0.604166666666641,0.496551724137666,0.600000000000000,-0.008333333333283,0.000000000000100,0.000000000000000,0.013793103448320,0.008333333333283,-0.000000000000084,-0.000000000000000,-0.013793103448336,2 +1435,1440,1442,1447,0.489655172413648,0.612499999999978,0.496551724137758,0.608333333333283,0.496551724137850,0.616666666666674,0.503448275861959,0.612499999999978,-0.008333333333391,0.000000000000100,-0.000000000000000,-0.013793103448320,0.000000000000000,0.013793103448303,0.008333333333391,-0.000000000000084,2 +1436,1441,1443,1448,0.489655172413748,0.620833333333358,0.496551724137850,0.616666666666674,0.496551724137941,0.625000000000043,0.503448275862043,0.620833333333358,-0.008333333333369,0.000000000000100,-0.000000000000000,-0.013793103448303,0.000000000000000,0.013793103448287,0.008333333333369,-0.000000000000084,2 +1437,1442,1444,1449,0.489655172413848,0.629166666666685,0.496551724137941,0.625000000000043,0.496551724138033,0.633333333333326,0.503448275862127,0.629166666666685,-0.008333333333283,0.000000000000100,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448270,0.008333333333283,-0.000000000000084,2 +1438,1443,1445,1450,0.489655172413948,0.637500000000021,0.496551724138033,0.633333333333326,0.496551724138125,0.641666666666717,0.503448275862210,0.637500000000021,-0.008333333333391,0.000000000000100,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448254,0.008333333333391,-0.000000000000084,2 +1439,1444,1451,11869,0.489655172414048,0.645833333333359,0.496551724138125,0.641666666666717,0.503448275862294,0.645833333333358,0.496551724138217,0.650000000000000,-0.008333333333283,0.000000000000100,-0.000000000000000,-0.013793103448254,0.008333333333283,-0.000000000000084,-0.000000000000000,0.013793103448238,1 +1440,1447,1452,7203,0.503448275861876,0.604166666666641,0.510344827586067,0.608333333333283,0.517241379310181,0.604166666666641,0.510344827585989,0.600000000000000,-0.008333333333283,0.000000000000084,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000071,-0.000000000000000,-0.013793103448311,2 +1441,1446,1448,1453,0.503448275861959,0.612499999999978,0.510344827586067,0.608333333333283,0.510344827586145,0.616666666666674,0.517241379310252,0.612499999999978,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448287,0.008333333333391,-0.000000000000071,2 +1442,1447,1449,1454,0.503448275862043,0.620833333333358,0.510344827586145,0.616666666666674,0.510344827586222,0.625000000000043,0.517241379310324,0.620833333333358,-0.008333333333369,0.000000000000084,-0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448275,0.008333333333370,-0.000000000000071,2 +1443,1448,1450,1455,0.503448275862127,0.629166666666685,0.510344827586222,0.625000000000043,0.510344827586300,0.633333333333326,0.517241379310395,0.629166666666685,-0.008333333333283,0.000000000000084,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000071,2 +1444,1449,1451,1456,0.503448275862210,0.637500000000021,0.510344827586300,0.633333333333326,0.510344827586377,0.641666666666717,0.517241379310467,0.637500000000021,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000071,2 +1445,1450,1457,11869,0.503448275862294,0.645833333333358,0.510344827586377,0.641666666666717,0.517241379310538,0.645833333333358,0.510344827586455,0.650000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000071,-0.000000000000000,0.013793103448238,1 +1446,1453,1458,7217,0.517241379310181,0.604166666666641,0.524137931034364,0.608333333333283,0.531034482758483,0.604166666666641,0.524137931034299,0.600000000000000,-0.008333333333283,0.000000000000071,0.000000000000000,0.013793103448296,0.008333333333283,-0.000000000000060,-0.000000000000000,-0.013793103448308,2 +1447,1452,1454,1459,0.517241379310252,0.612499999999978,0.524137931034364,0.608333333333283,0.524137931034430,0.616666666666674,0.531034482758542,0.612499999999978,-0.008333333333391,0.000000000000071,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448284,0.008333333333391,-0.000000000000060,2 +1448,1453,1455,1460,0.517241379310324,0.620833333333358,0.524137931034430,0.616666666666674,0.524137931034496,0.625000000000043,0.531034482758602,0.620833333333358,-0.008333333333370,0.000000000000071,-0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000060,2 +1449,1454,1456,1461,0.517241379310395,0.629166666666685,0.524137931034496,0.625000000000043,0.524137931034562,0.633333333333326,0.531034482758662,0.629166666666685,-0.008333333333283,0.000000000000071,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000060,2 +1450,1455,1457,1462,0.517241379310467,0.637500000000021,0.524137931034562,0.633333333333326,0.524137931034627,0.641666666666717,0.531034482758722,0.637500000000021,-0.008333333333391,0.000000000000071,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000060,2 +1451,1456,1463,11869,0.517241379310538,0.645833333333358,0.524137931034627,0.641666666666717,0.531034482758782,0.645833333333359,0.524137931034693,0.650000000000000,-0.008333333333283,0.000000000000071,0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000060,-0.000000000000000,0.013793103448238,1 +1452,1459,1464,7231,0.531034482758483,0.604166666666641,0.537931034482656,0.608333333333283,0.544827586206774,0.604166666666641,0.537931034482601,0.600000000000000,-0.008333333333283,0.000000000000060,-0.000000000000000,0.013793103448287,0.008333333333283,-0.000000000000050,-0.000000000000000,-0.013793103448296,2 +1453,1458,1460,1465,0.531034482758542,0.612499999999978,0.537931034482656,0.608333333333283,0.537931034482711,0.616666666666674,0.544827586206824,0.612499999999978,-0.008333333333391,0.000000000000060,0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448277,0.008333333333391,-0.000000000000050,2 +1454,1459,1461,1466,0.531034482758602,0.620833333333358,0.537931034482711,0.616666666666674,0.537931034482766,0.625000000000043,0.544827586206874,0.620833333333358,-0.008333333333369,0.000000000000060,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448267,0.008333333333370,-0.000000000000050,2 +1455,1460,1462,1467,0.531034482758662,0.629166666666685,0.537931034482766,0.625000000000043,0.537931034482821,0.633333333333326,0.544827586206924,0.629166666666685,-0.008333333333283,0.000000000000060,0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448257,0.008333333333282,-0.000000000000050,2 +1456,1461,1463,1468,0.531034482758722,0.637500000000021,0.537931034482821,0.633333333333326,0.537931034482875,0.641666666666717,0.544827586206974,0.637500000000021,-0.008333333333391,0.000000000000060,-0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000050,2 +1457,1462,1469,11869,0.531034482758782,0.645833333333359,0.537931034482875,0.641666666666717,0.544827586207024,0.645833333333359,0.537931034482930,0.650000000000000,-0.008333333333283,0.000000000000060,0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000050,-0.000000000000000,0.013793103448238,1 +1458,1465,1470,7245,0.544827586206774,0.604166666666641,0.551724137930945,0.608333333333283,0.558620689655071,0.604166666666641,0.551724137930900,0.600000000000000,-0.008333333333283,0.000000000000050,0.000000000000000,0.013793103448291,0.008333333333283,-0.000000000000039,-0.000000000000000,-0.013793103448302,2 +1459,1464,1466,1471,0.544827586206824,0.612499999999978,0.551724137930945,0.608333333333283,0.551724137930989,0.616666666666674,0.558620689655110,0.612499999999978,-0.008333333333391,0.000000000000050,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448280,0.008333333333391,-0.000000000000039,2 +1460,1465,1467,1472,0.544827586206874,0.620833333333358,0.551724137930989,0.616666666666674,0.551724137931034,0.625000000000043,0.558620689655149,0.620833333333358,-0.008333333333370,0.000000000000050,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448270,0.008333333333369,-0.000000000000039,2 +1461,1466,1468,1473,0.544827586206924,0.629166666666685,0.551724137931034,0.625000000000043,0.551724137931079,0.633333333333326,0.558620689655189,0.629166666666685,-0.008333333333282,0.000000000000050,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448259,0.008333333333283,-0.000000000000039,2 +1462,1467,1469,1474,0.544827586206974,0.637500000000021,0.551724137931079,0.633333333333326,0.551724137931123,0.641666666666717,0.558620689655228,0.637500000000021,-0.008333333333391,0.000000000000050,0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000039,2 +1463,1468,1475,11869,0.544827586207024,0.645833333333359,0.551724137931123,0.641666666666717,0.558620689655267,0.645833333333359,0.551724137931168,0.650000000000000,-0.008333333333283,0.000000000000050,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000039,-0.000000000000000,0.013793103448238,1 +1464,1471,1476,7259,0.558620689655071,0.604166666666641,0.565517241379239,0.608333333333283,0.572413793103374,0.604166666666641,0.565517241379205,0.600000000000000,-0.008333333333283,0.000000000000039,0.000000000000000,0.013793103448297,0.008333333333283,-0.000000000000028,-0.000000000000000,-0.013793103448309,2 +1465,1470,1472,1477,0.558620689655110,0.612499999999978,0.565517241379239,0.608333333333283,0.565517241379272,0.616666666666674,0.572413793103401,0.612499999999978,-0.008333333333391,0.000000000000039,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448285,0.008333333333391,-0.000000000000027,2 +1466,1471,1473,1478,0.558620689655149,0.620833333333358,0.565517241379272,0.616666666666674,0.565517241379305,0.625000000000043,0.572413793103429,0.620833333333358,-0.008333333333369,0.000000000000039,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000027,2 +1467,1472,1474,1479,0.558620689655189,0.629166666666685,0.565517241379305,0.625000000000043,0.565517241379339,0.633333333333326,0.572413793103456,0.629166666666684,-0.008333333333283,0.000000000000039,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000027,2 +1468,1473,1475,1480,0.558620689655228,0.637500000000021,0.565517241379339,0.633333333333326,0.565517241379372,0.641666666666717,0.572413793103483,0.637500000000021,-0.008333333333391,0.000000000000039,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000028,2 +1469,1474,1481,11869,0.558620689655267,0.645833333333359,0.565517241379372,0.641666666666717,0.572413793103511,0.645833333333359,0.565517241379406,0.650000000000000,-0.008333333333283,0.000000000000039,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000027,-0.000000000000000,0.013793103448238,1 +1470,1477,1482,7273,0.572413793103374,0.604166666666641,0.579310344827540,0.608333333333283,0.586206896551685,0.604166666666641,0.579310344827519,0.600000000000000,-0.008333333333283,0.000000000000028,0.000000000000000,0.013793103448305,0.008333333333283,-0.000000000000014,-0.000000000000000,-0.013793103448318,2 +1471,1476,1478,1483,0.572413793103401,0.612499999999978,0.579310344827540,0.608333333333283,0.579310344827560,0.616666666666674,0.586206896551699,0.612499999999978,-0.008333333333391,0.000000000000027,-0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448291,0.008333333333391,-0.000000000000014,2 +1472,1477,1479,1484,0.572413793103429,0.620833333333358,0.579310344827560,0.616666666666674,0.579310344827581,0.625000000000043,0.586206896551713,0.620833333333358,-0.008333333333369,0.000000000000027,-0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448278,0.008333333333370,-0.000000000000014,2 +1473,1478,1480,1485,0.572413793103456,0.629166666666684,0.579310344827581,0.625000000000043,0.579310344827602,0.633333333333326,0.586206896551727,0.629166666666685,-0.008333333333283,0.000000000000027,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448265,0.008333333333283,-0.000000000000014,2 +1474,1479,1481,1486,0.572413793103483,0.637500000000021,0.579310344827602,0.633333333333326,0.579310344827623,0.641666666666717,0.586206896551741,0.637500000000021,-0.008333333333391,0.000000000000028,-0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448251,0.008333333333391,-0.000000000000014,2 +1475,1480,1487,11869,0.572413793103511,0.645833333333359,0.579310344827623,0.641666666666717,0.586206896551755,0.645833333333359,0.579310344827643,0.650000000000000,-0.008333333333283,0.000000000000027,-0.000000000000000,-0.013793103448251,0.008333333333283,-0.000000000000014,-0.000000000000000,0.013793103448238,1 +1290,1476,1483,7287,0.600000000000000,0.604166666666641,0.586206896551685,0.604166666666641,0.593103448275846,0.608333333333283,0.593103448275839,0.600000000000000,0.008333333333283,0.000000000000000,-0.008333333333283,0.000000000000014,-0.000000000000000,0.013793103448308,0.000000000000000,-0.013793103448322,2 +1291,1477,1482,1484,0.600000000000000,0.612499999999978,0.586206896551699,0.612499999999978,0.593103448275846,0.608333333333283,0.593103448275853,0.616666666666674,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000014,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448294,2 +1292,1478,1483,1485,0.600000000000000,0.620833333333359,0.586206896551713,0.620833333333358,0.593103448275853,0.616666666666674,0.593103448275860,0.625000000000043,0.008333333333369,-0.000000000000000,-0.008333333333370,0.000000000000014,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448280,2 +1293,1479,1484,1486,0.600000000000000,0.629166666666685,0.586206896551727,0.629166666666685,0.593103448275860,0.625000000000043,0.593103448275867,0.633333333333326,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000014,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448266,2 +1294,1480,1485,1487,0.600000000000000,0.637500000000022,0.586206896551741,0.637500000000021,0.593103448275867,0.633333333333326,0.593103448275874,0.641666666666717,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000014,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448252,2 +1295,1481,1486,11869,0.600000000000000,0.645833333333359,0.586206896551755,0.645833333333359,0.593103448275874,0.641666666666717,0.593103448275881,0.650000000000000,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000014,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448238,1 +1489,1494,1830,7301,-0.193103448275870,0.608333333333283,-0.186206896551747,0.604166666666641,-0.200000000000000,0.604166666666641,-0.193103448275876,0.600000000000000,0.000000000000000,0.013793103448259,0.008333333333283,-0.000000000000012,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448248,2 +1488,1490,1495,1831,-0.193103448275870,0.608333333333283,-0.193103448275865,0.616666666666674,-0.186206896551735,0.612499999999978,-0.200000000000000,0.612499999999978,-0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448271,0.008333333333391,-0.000000000000012,-0.008333333333391,0.000000000000000,2 +1489,1491,1496,1832,-0.193103448275865,0.616666666666674,-0.193103448275859,0.625000000000044,-0.186206896551724,0.620833333333359,-0.200000000000000,0.620833333333359,-0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448282,0.008333333333370,-0.000000000000012,-0.008333333333369,0.000000000000000,2 +1490,1492,1497,1833,-0.193103448275859,0.625000000000044,-0.193103448275853,0.633333333333326,-0.186206896551712,0.629166666666685,-0.200000000000000,0.629166666666685,0.000000000000000,-0.013793103448282,0.000000000000000,0.013793103448294,0.008333333333283,-0.000000000000012,-0.008333333333283,0.000000000000000,2 +1491,1493,1498,1834,-0.193103448275853,0.633333333333326,-0.193103448275847,0.641666666666717,-0.186206896551700,0.637500000000022,-0.200000000000000,0.637500000000022,-0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448305,0.008333333333391,-0.000000000000012,-0.008333333333391,0.000000000000000,2 +1492,1499,1835,11869,-0.193103448275847,0.641666666666717,-0.186206896551689,0.645833333333359,-0.200000000000000,0.645833333333359,-0.193103448275841,0.650000000000000,-0.000000000000000,-0.013793103448305,0.008333333333283,-0.000000000000012,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448317,1 +1488,1495,1500,7315,-0.186206896551747,0.604166666666641,-0.179310344827616,0.608333333333283,-0.172413793103504,0.604166666666641,-0.179310344827634,0.600000000000000,-0.008333333333283,0.000000000000012,-0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000025,-0.000000000000000,-0.013793103448237,2 +1489,1494,1496,1501,-0.186206896551735,0.612499999999978,-0.179310344827616,0.608333333333283,-0.179310344827598,0.616666666666674,-0.172413793103479,0.612499999999979,-0.008333333333391,0.000000000000012,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000025,2 +1490,1495,1497,1502,-0.186206896551724,0.620833333333359,-0.179310344827598,0.616666666666674,-0.179310344827580,0.625000000000044,-0.172413793103454,0.620833333333359,-0.008333333333370,0.000000000000012,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448276,0.008333333333369,-0.000000000000025,2 +1491,1496,1498,1503,-0.186206896551712,0.629166666666685,-0.179310344827580,0.625000000000044,-0.179310344827562,0.633333333333326,-0.172413793103430,0.629166666666685,-0.008333333333283,0.000000000000012,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448289,0.008333333333283,-0.000000000000025,2 +1492,1497,1499,1504,-0.186206896551700,0.637500000000022,-0.179310344827562,0.633333333333326,-0.179310344827544,0.641666666666717,-0.172413793103405,0.637500000000022,-0.008333333333391,0.000000000000012,-0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448302,0.008333333333391,-0.000000000000025,2 +1493,1498,1505,11869,-0.186206896551689,0.645833333333359,-0.179310344827544,0.641666666666717,-0.172413793103380,0.645833333333359,-0.179310344827525,0.650000000000000,-0.008333333333283,0.000000000000012,-0.000000000000000,-0.013793103448302,0.008333333333283,-0.000000000000025,-0.000000000000000,0.013793103448315,1 +1494,1501,1506,7329,-0.172413793103504,0.604166666666641,-0.165517241379359,0.608333333333283,-0.158620689655245,0.604166666666641,-0.165517241379389,0.600000000000000,-0.008333333333283,0.000000000000025,0.000000000000000,0.013793103448264,0.008333333333283,-0.000000000000034,-0.000000000000000,-0.013793103448254,2 +1495,1500,1502,1507,-0.172413793103479,0.612499999999979,-0.165517241379359,0.608333333333283,-0.165517241379330,0.616666666666674,-0.158620689655211,0.612499999999979,-0.008333333333391,0.000000000000025,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448273,0.008333333333391,-0.000000000000034,2 +1496,1501,1503,1508,-0.172413793103454,0.620833333333359,-0.165517241379330,0.616666666666674,-0.165517241379301,0.625000000000044,-0.158620689655176,0.620833333333359,-0.008333333333369,0.000000000000025,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448282,0.008333333333369,-0.000000000000034,2 +1497,1502,1504,1509,-0.172413793103430,0.629166666666685,-0.165517241379301,0.625000000000044,-0.165517241379271,0.633333333333326,-0.158620689655142,0.629166666666685,-0.008333333333283,0.000000000000025,-0.000000000000000,-0.013793103448282,0.000000000000000,0.013793103448292,0.008333333333283,-0.000000000000034,2 +1498,1503,1505,1510,-0.172413793103405,0.637500000000022,-0.165517241379271,0.633333333333326,-0.165517241379242,0.641666666666717,-0.158620689655108,0.637500000000022,-0.008333333333391,0.000000000000025,-0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000034,2 +1499,1504,1511,11869,-0.172413793103380,0.645833333333359,-0.165517241379242,0.641666666666717,-0.158620689655074,0.645833333333359,-0.165517241379213,0.650000000000000,-0.008333333333283,0.000000000000025,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000034,-0.000000000000000,0.013793103448311,1 +1500,1507,1512,7343,-0.158620689655245,0.604166666666641,-0.151724137931097,0.608333333333283,-0.144827586206988,0.604166666666641,-0.151724137931136,0.600000000000000,-0.008333333333283,0.000000000000034,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000044,-0.000000000000000,-0.013793103448251,2 +1501,1506,1508,1513,-0.158620689655211,0.612499999999979,-0.151724137931097,0.608333333333283,-0.151724137931058,0.616666666666674,-0.144827586206944,0.612499999999978,-0.008333333333391,0.000000000000034,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448271,0.008333333333391,-0.000000000000044,2 +1502,1507,1509,1514,-0.158620689655176,0.620833333333359,-0.151724137931058,0.616666666666674,-0.151724137931019,0.625000000000043,-0.144827586206900,0.620833333333359,-0.008333333333369,0.000000000000034,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448281,0.008333333333369,-0.000000000000044,2 +1503,1508,1510,1515,-0.158620689655142,0.629166666666685,-0.151724137931019,0.625000000000043,-0.151724137930980,0.633333333333326,-0.144827586206856,0.629166666666685,-0.008333333333283,0.000000000000034,-0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448291,0.008333333333283,-0.000000000000044,2 +1504,1509,1511,1516,-0.158620689655108,0.637500000000022,-0.151724137930980,0.633333333333326,-0.151724137930941,0.641666666666717,-0.144827586206812,0.637500000000022,-0.008333333333391,0.000000000000034,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000044,2 +1505,1510,1517,11869,-0.158620689655074,0.645833333333359,-0.151724137930941,0.641666666666717,-0.144827586206769,0.645833333333359,-0.151724137930902,0.650000000000000,-0.008333333333283,0.000000000000034,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000044,-0.000000000000000,0.013793103448311,1 +1506,1513,1518,7357,-0.144827586206988,0.604166666666641,-0.137931034482842,0.608333333333283,-0.131034482758745,0.604166666666641,-0.137931034482892,0.600000000000000,-0.008333333333283,0.000000000000044,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000056,-0.000000000000000,-0.013793103448237,2 +1507,1512,1514,1519,-0.144827586206944,0.612499999999978,-0.137931034482842,0.608333333333283,-0.137931034482792,0.616666666666674,-0.131034482758689,0.612499999999978,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000056,2 +1508,1513,1515,1520,-0.144827586206900,0.620833333333359,-0.137931034482792,0.616666666666674,-0.137931034482742,0.625000000000043,-0.131034482758633,0.620833333333359,-0.008333333333369,0.000000000000044,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000056,2 +1509,1514,1516,1521,-0.144827586206856,0.629166666666685,-0.137931034482742,0.625000000000043,-0.137931034482691,0.633333333333326,-0.131034482758577,0.629166666666685,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000056,2 +1510,1515,1517,1522,-0.144827586206812,0.637500000000022,-0.137931034482691,0.633333333333326,-0.137931034482641,0.641666666666717,-0.131034482758520,0.637500000000022,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448298,0.008333333333391,-0.000000000000056,2 +1511,1516,1523,11869,-0.144827586206769,0.645833333333359,-0.137931034482641,0.641666666666717,-0.131034482758464,0.645833333333359,-0.137931034482591,0.650000000000000,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448298,0.008333333333283,-0.000000000000056,-0.000000000000000,0.013793103448311,1 +1512,1519,1524,7371,-0.131034482758745,0.604166666666641,-0.124137931034593,0.608333333333283,-0.117241379310503,0.604166666666641,-0.124137931034655,0.600000000000000,-0.008333333333283,0.000000000000056,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000069,-0.000000000000000,-0.013793103448237,2 +1513,1518,1520,1525,-0.131034482758689,0.612499999999978,-0.124137931034593,0.608333333333283,-0.124137931034530,0.616666666666674,-0.117241379310434,0.612499999999978,-0.008333333333391,0.000000000000056,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000069,2 +1514,1519,1521,1526,-0.131034482758633,0.620833333333359,-0.124137931034530,0.616666666666674,-0.124137931034468,0.625000000000043,-0.117241379310365,0.620833333333359,-0.008333333333369,0.000000000000056,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000069,2 +1515,1520,1522,1527,-0.131034482758577,0.629166666666685,-0.124137931034468,0.625000000000043,-0.124137931034406,0.633333333333326,-0.117241379310297,0.629166666666685,-0.008333333333283,0.000000000000056,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000069,2 +1516,1521,1523,1528,-0.131034482758520,0.637500000000022,-0.124137931034406,0.633333333333326,-0.124137931034343,0.641666666666717,-0.117241379310228,0.637500000000022,-0.008333333333391,0.000000000000056,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448298,0.008333333333391,-0.000000000000069,2 +1517,1522,1529,11869,-0.131034482758464,0.645833333333359,-0.124137931034343,0.641666666666717,-0.117241379310159,0.645833333333359,-0.124137931034281,0.650000000000000,-0.008333333333283,0.000000000000056,-0.000000000000000,-0.013793103448298,0.008333333333283,-0.000000000000069,-0.000000000000000,0.013793103448311,1 +1518,1525,1530,7385,-0.117241379310503,0.604166666666641,-0.110344827586344,0.608333333333283,-0.103448275862260,0.604166666666641,-0.110344827586419,0.600000000000000,-0.008333333333283,0.000000000000069,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000081,-0.000000000000000,-0.013793103448237,2 +1519,1524,1526,1531,-0.117241379310434,0.612499999999978,-0.110344827586344,0.608333333333283,-0.110344827586269,0.616666666666674,-0.103448275862179,0.612499999999978,-0.008333333333391,0.000000000000069,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000081,2 +1520,1525,1527,1532,-0.117241379310365,0.620833333333359,-0.110344827586269,0.616666666666674,-0.110344827586194,0.625000000000043,-0.103448275862098,0.620833333333359,-0.008333333333369,0.000000000000069,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000081,2 +1521,1526,1528,1533,-0.117241379310297,0.629166666666685,-0.110344827586194,0.625000000000043,-0.110344827586119,0.633333333333326,-0.103448275862016,0.629166666666685,-0.008333333333283,0.000000000000069,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448287,0.008333333333283,-0.000000000000081,2 +1522,1527,1529,1534,-0.117241379310228,0.637500000000022,-0.110344827586119,0.633333333333326,-0.110344827586044,0.641666666666717,-0.103448275861935,0.637500000000022,-0.008333333333391,0.000000000000069,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000081,2 +1523,1528,1535,11869,-0.117241379310159,0.645833333333359,-0.110344827586044,0.641666666666717,-0.103448275861854,0.645833333333359,-0.110344827585969,0.650000000000000,-0.008333333333283,0.000000000000069,-0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000081,-0.000000000000000,0.013793103448312,1 +1524,1531,1536,7399,-0.103448275862260,0.604166666666641,-0.096551724138095,0.608333333333283,-0.089655172414017,0.604166666666641,-0.096551724138182,0.600000000000000,-0.008333333333283,0.000000000000081,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000093,-0.000000000000000,-0.013793103448237,2 +1525,1530,1532,1537,-0.103448275862179,0.612499999999978,-0.096551724138095,0.608333333333283,-0.096551724138008,0.616666666666674,-0.089655172413924,0.612499999999978,-0.008333333333391,0.000000000000081,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000093,2 +1526,1531,1533,1538,-0.103448275862098,0.620833333333359,-0.096551724138008,0.616666666666674,-0.096551724137920,0.625000000000043,-0.089655172413831,0.620833333333359,-0.008333333333369,0.000000000000081,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000093,2 +1527,1532,1534,1539,-0.103448275862016,0.629166666666685,-0.096551724137920,0.625000000000043,-0.096551724137833,0.633333333333326,-0.089655172413737,0.629166666666685,-0.008333333333283,0.000000000000081,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448285,0.008333333333283,-0.000000000000093,2 +1528,1533,1535,1540,-0.103448275861935,0.637500000000022,-0.096551724137833,0.633333333333326,-0.096551724137746,0.641666666666717,-0.089655172413644,0.637500000000022,-0.008333333333391,0.000000000000081,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000093,2 +1529,1534,1541,11869,-0.103448275861854,0.645833333333359,-0.096551724137746,0.641666666666717,-0.089655172413551,0.645833333333359,-0.096551724137659,0.650000000000000,-0.008333333333283,0.000000000000081,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000093,-0.000000000000000,0.013793103448309,1 +1530,1537,1542,7413,-0.089655172414017,0.604166666666641,-0.082758620689846,0.608333333333283,-0.075862068965774,0.604166666666641,-0.082758620689945,0.600000000000000,-0.008333333333283,0.000000000000093,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000106,-0.000000000000000,-0.013793103448237,2 +1531,1536,1538,1543,-0.089655172413924,0.612499999999978,-0.082758620689846,0.608333333333283,-0.082758620689746,0.616666666666674,-0.075862068965668,0.612499999999978,-0.008333333333391,0.000000000000093,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000106,2 +1532,1537,1539,1544,-0.089655172413831,0.620833333333359,-0.082758620689746,0.616666666666674,-0.082758620689646,0.625000000000043,-0.075862068965562,0.620833333333359,-0.008333333333369,0.000000000000093,-0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000106,2 +1533,1538,1540,1545,-0.089655172413737,0.629166666666685,-0.082758620689646,0.625000000000043,-0.082758620689547,0.633333333333326,-0.075862068965456,0.629166666666685,-0.008333333333283,0.000000000000093,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448288,0.008333333333283,-0.000000000000106,2 +1534,1539,1541,1546,-0.089655172413644,0.637500000000022,-0.082758620689547,0.633333333333326,-0.082758620689447,0.641666666666717,-0.075862068965350,0.637500000000022,-0.008333333333391,0.000000000000093,-0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000106,2 +1535,1540,1547,11869,-0.089655172413551,0.645833333333359,-0.082758620689447,0.641666666666717,-0.075862068965243,0.645833333333359,-0.082758620689347,0.650000000000000,-0.008333333333283,0.000000000000093,0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000106,-0.000000000000000,0.013793103448314,1 +1536,1543,1548,7427,-0.075862068965774,0.604166666666641,-0.068965517241596,0.608333333333283,-0.062068965517531,0.604166666666641,-0.068965517241709,0.600000000000000,-0.008333333333283,0.000000000000106,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000120,-0.000000000000000,-0.013793103448237,2 +1537,1542,1544,1549,-0.075862068965668,0.612499999999978,-0.068965517241596,0.608333333333283,-0.068965517241483,0.616666666666674,-0.062068965517411,0.612499999999978,-0.008333333333391,0.000000000000106,-0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000120,2 +1538,1543,1545,1550,-0.075862068965562,0.620833333333359,-0.068965517241483,0.616666666666674,-0.068965517241370,0.625000000000043,-0.062068965517292,0.620833333333359,-0.008333333333369,0.000000000000106,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000120,2 +1539,1544,1546,1551,-0.075862068965456,0.629166666666685,-0.068965517241370,0.625000000000043,-0.068965517241258,0.633333333333326,-0.062068965517172,0.629166666666685,-0.008333333333283,0.000000000000106,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448290,0.008333333333283,-0.000000000000120,2 +1540,1545,1547,1552,-0.075862068965350,0.637500000000022,-0.068965517241258,0.633333333333326,-0.068965517241145,0.641666666666717,-0.062068965517053,0.637500000000022,-0.008333333333391,0.000000000000106,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448304,0.008333333333391,-0.000000000000120,2 +1541,1546,1553,11869,-0.075862068965243,0.645833333333359,-0.068965517241145,0.641666666666717,-0.062068965516933,0.645833333333359,-0.068965517241032,0.650000000000000,-0.008333333333283,0.000000000000106,-0.000000000000000,-0.013793103448304,0.008333333333283,-0.000000000000120,-0.000000000000000,0.013793103448317,1 +1542,1549,1554,7441,-0.062068965517531,0.604166666666641,-0.055172413793350,0.608333333333283,-0.048275862069295,0.604166666666641,-0.055172413793477,0.600000000000000,-0.008333333333283,0.000000000000120,0.000000000000000,0.013793103448243,0.008333333333283,-0.000000000000134,-0.000000000000000,-0.013793103448228,2 +1543,1548,1550,1555,-0.062068965517411,0.612499999999978,-0.055172413793350,0.608333333333283,-0.055172413793223,0.616666666666674,-0.048275862069162,0.612499999999978,-0.008333333333391,0.000000000000120,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448257,0.008333333333391,-0.000000000000134,2 +1544,1549,1551,1556,-0.062068965517292,0.620833333333359,-0.055172413793223,0.616666666666674,-0.055172413793096,0.625000000000043,-0.048275862069028,0.620833333333359,-0.008333333333369,0.000000000000120,-0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448271,0.008333333333369,-0.000000000000134,2 +1545,1550,1552,1557,-0.062068965517172,0.629166666666685,-0.055172413793096,0.625000000000043,-0.055172413792970,0.633333333333326,-0.048275862068894,0.629166666666685,-0.008333333333283,0.000000000000120,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000134,2 +1546,1551,1553,1558,-0.062068965517053,0.637500000000022,-0.055172413792970,0.633333333333326,-0.055172413792843,0.641666666666717,-0.048275862068760,0.637500000000022,-0.008333333333391,0.000000000000120,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448300,0.008333333333391,-0.000000000000134,2 +1547,1552,1559,11869,-0.062068965516933,0.645833333333359,-0.055172413792843,0.641666666666717,-0.048275862068626,0.645833333333359,-0.055172413792716,0.650000000000000,-0.008333333333283,0.000000000000120,-0.000000000000000,-0.013793103448300,0.008333333333283,-0.000000000000134,-0.000000000000000,0.013793103448315,1 +1548,1555,1560,7455,-0.048275862069295,0.604166666666641,-0.041379310345105,0.608333333333283,-0.034482758621055,0.604166666666641,-0.041379310345245,0.600000000000000,-0.008333333333283,0.000000000000134,0.000000000000000,0.013793103448247,0.008333333333283,-0.000000000000147,-0.000000000000000,-0.013793103448234,2 +1549,1554,1556,1561,-0.048275862069162,0.612499999999978,-0.041379310345105,0.608333333333283,-0.041379310344964,0.616666666666674,-0.034482758620907,0.612499999999978,-0.008333333333391,0.000000000000134,-0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000147,2 +1550,1555,1557,1562,-0.048275862069028,0.620833333333359,-0.041379310344964,0.616666666666674,-0.041379310344824,0.625000000000043,-0.034482758620760,0.620833333333359,-0.008333333333369,0.000000000000134,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000147,2 +1551,1556,1558,1563,-0.048275862068894,0.629166666666685,-0.041379310344824,0.625000000000043,-0.041379310344683,0.633333333333326,-0.034482758620613,0.629166666666685,-0.008333333333283,0.000000000000134,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448287,0.008333333333283,-0.000000000000147,2 +1552,1557,1559,1564,-0.048275862068760,0.637500000000022,-0.041379310344683,0.633333333333326,-0.041379310344542,0.641666666666717,-0.034482758620466,0.637500000000022,-0.008333333333391,0.000000000000134,0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000147,2 +1553,1558,1565,11869,-0.048275862068626,0.645833333333359,-0.041379310344542,0.641666666666717,-0.034482758620319,0.645833333333359,-0.041379310344402,0.650000000000000,-0.008333333333283,0.000000000000134,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000147,-0.000000000000000,0.013793103448314,1 +1554,1561,1566,7469,-0.034482758621055,0.604166666666641,-0.027586206896856,0.608333333333283,-0.020689655172812,0.604166666666641,-0.027586206897010,0.600000000000000,-0.008333333333283,0.000000000000147,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000160,-0.000000000000000,-0.013793103448237,2 +1555,1560,1562,1567,-0.034482758620907,0.612499999999978,-0.027586206896856,0.608333333333283,-0.027586206896703,0.616666666666674,-0.020689655172652,0.612499999999978,-0.008333333333391,0.000000000000147,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000160,2 +1556,1561,1563,1568,-0.034482758620760,0.620833333333359,-0.027586206896703,0.616666666666674,-0.027586206896549,0.625000000000043,-0.020689655172491,0.620833333333359,-0.008333333333369,0.000000000000147,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000160,2 +1557,1562,1564,1569,-0.034482758620613,0.629166666666685,-0.027586206896549,0.625000000000043,-0.027586206896395,0.633333333333326,-0.020689655172331,0.629166666666685,-0.008333333333283,0.000000000000147,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448288,0.008333333333283,-0.000000000000160,2 +1558,1563,1565,1570,-0.034482758620466,0.637500000000022,-0.027586206896395,0.633333333333326,-0.027586206896242,0.641666666666717,-0.020689655172171,0.637500000000022,-0.008333333333391,0.000000000000147,-0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000160,2 +1559,1564,1571,11869,-0.034482758620319,0.645833333333359,-0.027586206896242,0.641666666666717,-0.020689655172011,0.645833333333359,-0.027586206896088,0.650000000000000,-0.008333333333283,0.000000000000147,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000160,-0.000000000000000,0.013793103448314,1 +1560,1567,1572,7483,-0.020689655172812,0.604166666666641,-0.013793103448607,0.608333333333283,-0.006896551724569,0.604166666666641,-0.013793103448773,0.600000000000000,-0.008333333333283,0.000000000000160,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000173,-0.000000000000000,-0.013793103448237,2 +1561,1566,1568,1573,-0.020689655172652,0.612499999999978,-0.013793103448607,0.608333333333283,-0.013793103448441,0.616666666666674,-0.006896551724396,0.612499999999978,-0.008333333333391,0.000000000000160,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000173,2 +1562,1567,1569,1574,-0.020689655172491,0.620833333333359,-0.013793103448441,0.616666666666674,-0.013793103448274,0.625000000000044,-0.006896551724223,0.620833333333359,-0.008333333333369,0.000000000000160,-0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448275,0.008333333333370,-0.000000000000173,2 +1563,1568,1570,1575,-0.020689655172331,0.629166666666685,-0.013793103448274,0.625000000000044,-0.013793103448108,0.633333333333326,-0.006896551724050,0.629166666666685,-0.008333333333283,0.000000000000160,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448287,0.008333333333282,-0.000000000000173,2 +1564,1569,1571,1576,-0.020689655172171,0.637500000000022,-0.013793103448108,0.633333333333326,-0.013793103447941,0.641666666666717,-0.006896551723878,0.637500000000022,-0.008333333333391,0.000000000000160,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448300,0.008333333333391,-0.000000000000173,2 +1565,1570,1577,11869,-0.020689655172011,0.645833333333359,-0.013793103447941,0.641666666666717,-0.006896551723705,0.645833333333359,-0.013793103447775,0.650000000000000,-0.008333333333283,0.000000000000160,-0.000000000000000,-0.013793103448300,0.008333333333283,-0.000000000000173,-0.000000000000000,0.013793103448313,1 +1566,1573,1578,7497,-0.006896551724569,0.604166666666641,-0.000000000000346,0.608333333333283,0.006896551723705,0.604166666666641,-0.000000000000518,0.600000000000000,-0.008333333333283,0.000000000000173,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000173,-0.000000000000000,-0.013793103448274,2 +1567,1572,1574,1579,-0.006896551724396,0.612499999999978,-0.000000000000346,0.608333333333283,-0.000000000000173,0.616666666666674,0.006896551723878,0.612499999999978,-0.008333333333391,0.000000000000173,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448274,0.008333333333391,-0.000000000000173,2 +1568,1573,1575,1580,-0.006896551724223,0.620833333333359,-0.000000000000173,0.616666666666674,0.000000000000000,0.625000000000044,0.006896551724050,0.620833333333359,-0.008333333333370,0.000000000000173,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000173,2 +1569,1574,1576,1581,-0.006896551724050,0.629166666666685,0.000000000000000,0.625000000000044,0.000000000000173,0.633333333333326,0.006896551724223,0.629166666666685,-0.008333333333282,0.000000000000173,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000173,2 +1570,1575,1577,1582,-0.006896551723878,0.637500000000022,0.000000000000173,0.633333333333326,0.000000000000346,0.641666666666717,0.006896551724396,0.637500000000022,-0.008333333333391,0.000000000000173,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.008333333333391,-0.000000000000173,2 +1571,1576,1583,11869,-0.006896551723705,0.645833333333359,0.000000000000346,0.641666666666717,0.006896551724569,0.645833333333359,0.000000000000518,0.650000000000000,-0.008333333333283,0.000000000000173,-0.000000000000000,-0.013793103448274,0.008333333333283,-0.000000000000173,-0.000000000000000,0.013793103448274,1 +1572,1579,1584,7511,0.006896551723705,0.604166666666641,0.013793103447941,0.608333333333283,0.020689655172011,0.604166666666641,0.013793103447775,0.600000000000000,-0.008333333333283,0.000000000000173,0.000000000000000,0.013793103448300,0.008333333333283,-0.000000000000160,-0.000000000000000,-0.013793103448313,2 +1573,1578,1580,1585,0.006896551723878,0.612499999999978,0.013793103447941,0.608333333333283,0.013793103448108,0.616666666666674,0.020689655172171,0.612499999999978,-0.008333333333391,0.000000000000173,-0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448287,0.008333333333391,-0.000000000000160,2 +1574,1579,1581,1586,0.006896551724050,0.620833333333359,0.013793103448108,0.616666666666674,0.013793103448274,0.625000000000043,0.020689655172331,0.620833333333359,-0.008333333333369,0.000000000000173,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000160,2 +1575,1580,1582,1587,0.006896551724223,0.629166666666685,0.013793103448274,0.625000000000043,0.013793103448441,0.633333333333326,0.020689655172491,0.629166666666685,-0.008333333333283,0.000000000000173,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000160,2 +1576,1581,1583,1588,0.006896551724396,0.637500000000022,0.013793103448441,0.633333333333326,0.013793103448607,0.641666666666717,0.020689655172652,0.637500000000022,-0.008333333333391,0.000000000000173,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000160,2 +1577,1582,1589,11869,0.006896551724569,0.645833333333359,0.013793103448607,0.641666666666717,0.020689655172812,0.645833333333359,0.013793103448773,0.650000000000000,-0.008333333333283,0.000000000000173,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000160,-0.000000000000000,0.013793103448237,1 +1578,1585,1590,7525,0.020689655172011,0.604166666666641,0.027586206896242,0.608333333333283,0.034482758620319,0.604166666666641,0.027586206896088,0.600000000000000,-0.008333333333283,0.000000000000160,0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000147,-0.000000000000000,-0.013793103448314,2 +1579,1584,1586,1591,0.020689655172171,0.612499999999978,0.027586206896242,0.608333333333283,0.027586206896395,0.616666666666674,0.034482758620466,0.612499999999978,-0.008333333333391,0.000000000000160,-0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448288,0.008333333333391,-0.000000000000147,2 +1580,1585,1587,1592,0.020689655172331,0.620833333333359,0.027586206896395,0.616666666666674,0.027586206896549,0.625000000000043,0.034482758620613,0.620833333333359,-0.008333333333369,0.000000000000160,-0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000147,2 +1581,1586,1588,1593,0.020689655172491,0.629166666666685,0.027586206896549,0.625000000000043,0.027586206896703,0.633333333333326,0.034482758620760,0.629166666666685,-0.008333333333283,0.000000000000160,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000147,2 +1582,1587,1589,1594,0.020689655172652,0.637500000000022,0.027586206896703,0.633333333333326,0.027586206896856,0.641666666666717,0.034482758620907,0.637500000000022,-0.008333333333391,0.000000000000160,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000147,2 +1583,1588,1595,11869,0.020689655172812,0.645833333333359,0.027586206896856,0.641666666666717,0.034482758621055,0.645833333333359,0.027586206897010,0.650000000000000,-0.008333333333283,0.000000000000160,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000147,-0.000000000000000,0.013793103448237,1 +1584,1591,1596,7539,0.034482758620319,0.604166666666641,0.041379310344542,0.608333333333283,0.048275862068626,0.604166666666641,0.041379310344402,0.600000000000000,-0.008333333333283,0.000000000000147,-0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000134,-0.000000000000000,-0.013793103448314,2 +1585,1590,1592,1597,0.034482758620466,0.612499999999978,0.041379310344542,0.608333333333283,0.041379310344683,0.616666666666674,0.048275862068760,0.612499999999978,-0.008333333333391,0.000000000000147,0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448287,0.008333333333391,-0.000000000000134,2 +1586,1591,1593,1598,0.034482758620613,0.620833333333359,0.041379310344683,0.616666666666674,0.041379310344824,0.625000000000043,0.048275862068894,0.620833333333359,-0.008333333333369,0.000000000000147,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000134,2 +1587,1592,1594,1599,0.034482758620760,0.629166666666685,0.041379310344824,0.625000000000043,0.041379310344964,0.633333333333326,0.048275862069028,0.629166666666685,-0.008333333333283,0.000000000000147,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000134,2 +1588,1593,1595,1600,0.034482758620907,0.637500000000022,0.041379310344964,0.633333333333326,0.041379310345105,0.641666666666717,0.048275862069162,0.637500000000022,-0.008333333333391,0.000000000000147,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448247,0.008333333333391,-0.000000000000134,2 +1589,1594,1601,11869,0.034482758621055,0.645833333333359,0.041379310345105,0.641666666666717,0.048275862069295,0.645833333333359,0.041379310345245,0.650000000000000,-0.008333333333283,0.000000000000147,-0.000000000000000,-0.013793103448247,0.008333333333283,-0.000000000000134,-0.000000000000000,0.013793103448234,1 +1590,1597,1602,7553,0.048275862068626,0.604166666666641,0.055172413792843,0.608333333333283,0.062068965516933,0.604166666666641,0.055172413792716,0.600000000000000,-0.008333333333283,0.000000000000134,0.000000000000000,0.013793103448300,0.008333333333283,-0.000000000000120,-0.000000000000000,-0.013793103448315,2 +1591,1596,1598,1603,0.048275862068760,0.612499999999978,0.055172413792843,0.608333333333283,0.055172413792970,0.616666666666674,0.062068965517053,0.612499999999978,-0.008333333333391,0.000000000000134,-0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000120,2 +1592,1597,1599,1604,0.048275862068894,0.620833333333359,0.055172413792970,0.616666666666674,0.055172413793096,0.625000000000043,0.062068965517172,0.620833333333359,-0.008333333333369,0.000000000000134,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448271,0.008333333333369,-0.000000000000120,2 +1593,1598,1600,1605,0.048275862069028,0.629166666666685,0.055172413793096,0.625000000000043,0.055172413793223,0.633333333333326,0.062068965517292,0.629166666666685,-0.008333333333283,0.000000000000134,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448257,0.008333333333283,-0.000000000000120,2 +1594,1599,1601,1606,0.048275862069162,0.637500000000022,0.055172413793223,0.633333333333326,0.055172413793350,0.641666666666717,0.062068965517411,0.637500000000022,-0.008333333333391,0.000000000000134,-0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448243,0.008333333333391,-0.000000000000120,2 +1595,1600,1607,11869,0.048275862069295,0.645833333333359,0.055172413793350,0.641666666666717,0.062068965517531,0.645833333333359,0.055172413793477,0.650000000000000,-0.008333333333283,0.000000000000134,-0.000000000000000,-0.013793103448243,0.008333333333283,-0.000000000000120,-0.000000000000000,0.013793103448228,1 +1596,1603,1608,7567,0.062068965516933,0.604166666666641,0.068965517241145,0.608333333333283,0.075862068965243,0.604166666666641,0.068965517241032,0.600000000000000,-0.008333333333283,0.000000000000120,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000106,-0.000000000000000,-0.013793103448317,2 +1597,1602,1604,1609,0.062068965517053,0.612499999999978,0.068965517241145,0.608333333333283,0.068965517241258,0.616666666666674,0.075862068965350,0.612499999999978,-0.008333333333391,0.000000000000120,-0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448290,0.008333333333391,-0.000000000000106,2 +1598,1603,1605,1610,0.062068965517172,0.620833333333359,0.068965517241258,0.616666666666674,0.068965517241370,0.625000000000043,0.075862068965456,0.620833333333359,-0.008333333333369,0.000000000000120,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000106,2 +1599,1604,1606,1611,0.062068965517292,0.629166666666685,0.068965517241370,0.625000000000043,0.068965517241483,0.633333333333326,0.075862068965562,0.629166666666685,-0.008333333333283,0.000000000000120,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000106,2 +1600,1605,1607,1612,0.062068965517411,0.637500000000022,0.068965517241483,0.633333333333326,0.068965517241596,0.641666666666717,0.075862068965668,0.637500000000022,-0.008333333333391,0.000000000000120,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000106,2 +1601,1606,1613,11869,0.062068965517531,0.645833333333359,0.068965517241596,0.641666666666717,0.075862068965774,0.645833333333359,0.068965517241709,0.650000000000000,-0.008333333333283,0.000000000000120,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000106,-0.000000000000000,0.013793103448237,1 +1602,1609,1614,7581,0.075862068965243,0.604166666666641,0.082758620689447,0.608333333333283,0.089655172413551,0.604166666666641,0.082758620689347,0.600000000000000,-0.008333333333283,0.000000000000106,-0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000093,-0.000000000000000,-0.013793103448314,2 +1603,1608,1610,1615,0.075862068965350,0.612499999999978,0.082758620689447,0.608333333333283,0.082758620689547,0.616666666666674,0.089655172413644,0.612499999999979,-0.008333333333391,0.000000000000106,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448288,0.008333333333391,-0.000000000000093,2 +1604,1609,1611,1616,0.075862068965456,0.620833333333359,0.082758620689547,0.616666666666674,0.082758620689646,0.625000000000043,0.089655172413737,0.620833333333359,-0.008333333333369,0.000000000000106,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000093,2 +1605,1610,1612,1617,0.075862068965562,0.629166666666685,0.082758620689646,0.625000000000043,0.082758620689746,0.633333333333326,0.089655172413831,0.629166666666685,-0.008333333333283,0.000000000000106,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000093,2 +1606,1611,1613,1618,0.075862068965668,0.637500000000022,0.082758620689746,0.633333333333326,0.082758620689846,0.641666666666717,0.089655172413924,0.637500000000022,-0.008333333333391,0.000000000000106,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000093,2 +1607,1612,1619,11869,0.075862068965774,0.645833333333359,0.082758620689846,0.641666666666717,0.089655172414017,0.645833333333359,0.082758620689945,0.650000000000000,-0.008333333333283,0.000000000000106,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000093,-0.000000000000000,0.013793103448237,1 +1608,1615,1620,7595,0.089655172413551,0.604166666666641,0.096551724137746,0.608333333333283,0.103448275861854,0.604166666666641,0.096551724137659,0.600000000000000,-0.008333333333283,0.000000000000093,0.000000000000000,0.013793103448297,0.008333333333283,-0.000000000000081,-0.000000000000000,-0.013793103448309,2 +1609,1614,1616,1621,0.089655172413644,0.612499999999979,0.096551724137746,0.608333333333283,0.096551724137833,0.616666666666674,0.103448275861935,0.612499999999978,-0.008333333333391,0.000000000000093,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448285,0.008333333333391,-0.000000000000081,2 +1610,1615,1617,1622,0.089655172413737,0.620833333333359,0.096551724137833,0.616666666666674,0.096551724137920,0.625000000000043,0.103448275862016,0.620833333333359,-0.008333333333369,0.000000000000093,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000081,2 +1611,1616,1618,1623,0.089655172413831,0.629166666666685,0.096551724137920,0.625000000000043,0.096551724138008,0.633333333333326,0.103448275862098,0.629166666666685,-0.008333333333283,0.000000000000093,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000081,2 +1612,1617,1619,1624,0.089655172413924,0.637500000000022,0.096551724138008,0.633333333333326,0.096551724138095,0.641666666666717,0.103448275862179,0.637500000000022,-0.008333333333391,0.000000000000093,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000081,2 +1613,1618,1625,11869,0.089655172414017,0.645833333333359,0.096551724138095,0.641666666666717,0.103448275862260,0.645833333333359,0.096551724138182,0.650000000000000,-0.008333333333283,0.000000000000093,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000081,-0.000000000000000,0.013793103448237,1 +1614,1621,1626,7609,0.103448275861854,0.604166666666641,0.110344827586044,0.608333333333283,0.117241379310159,0.604166666666641,0.110344827585969,0.600000000000000,-0.008333333333283,0.000000000000081,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000069,-0.000000000000000,-0.013793103448312,2 +1615,1620,1622,1627,0.103448275861935,0.612499999999978,0.110344827586044,0.608333333333283,0.110344827586119,0.616666666666674,0.117241379310228,0.612499999999979,-0.008333333333391,0.000000000000081,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448287,0.008333333333391,-0.000000000000069,2 +1616,1621,1623,1628,0.103448275862016,0.620833333333359,0.110344827586119,0.616666666666674,0.110344827586194,0.625000000000043,0.117241379310297,0.620833333333359,-0.008333333333369,0.000000000000081,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000069,2 +1617,1622,1624,1629,0.103448275862098,0.629166666666685,0.110344827586194,0.625000000000043,0.110344827586269,0.633333333333326,0.117241379310365,0.629166666666685,-0.008333333333283,0.000000000000081,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000069,2 +1618,1623,1625,1630,0.103448275862179,0.637500000000022,0.110344827586269,0.633333333333326,0.110344827586344,0.641666666666717,0.117241379310434,0.637500000000022,-0.008333333333391,0.000000000000081,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000069,2 +1619,1624,1631,11869,0.103448275862260,0.645833333333359,0.110344827586344,0.641666666666717,0.117241379310503,0.645833333333359,0.110344827586419,0.650000000000000,-0.008333333333283,0.000000000000081,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000069,-0.000000000000000,0.013793103448237,1 +1620,1627,1632,7623,0.117241379310159,0.604166666666641,0.124137931034343,0.608333333333283,0.131034482758464,0.604166666666641,0.124137931034281,0.600000000000000,-0.008333333333283,0.000000000000069,0.000000000000000,0.013793103448298,0.008333333333283,-0.000000000000056,-0.000000000000000,-0.013793103448311,2 +1621,1626,1628,1633,0.117241379310228,0.612499999999979,0.124137931034343,0.608333333333283,0.124137931034406,0.616666666666674,0.131034482758520,0.612499999999978,-0.008333333333391,0.000000000000069,-0.000000000000000,-0.013793103448298,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000056,2 +1622,1627,1629,1634,0.117241379310297,0.620833333333359,0.124137931034406,0.616666666666674,0.124137931034468,0.625000000000043,0.131034482758577,0.620833333333359,-0.008333333333369,0.000000000000069,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000056,2 +1623,1628,1630,1635,0.117241379310365,0.629166666666685,0.124137931034468,0.625000000000043,0.124137931034530,0.633333333333326,0.131034482758633,0.629166666666685,-0.008333333333283,0.000000000000069,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000056,2 +1624,1629,1631,1636,0.117241379310434,0.637500000000022,0.124137931034530,0.633333333333326,0.124137931034593,0.641666666666717,0.131034482758689,0.637500000000022,-0.008333333333391,0.000000000000069,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000056,2 +1625,1630,1637,11869,0.117241379310503,0.645833333333359,0.124137931034593,0.641666666666717,0.131034482758745,0.645833333333359,0.124137931034655,0.650000000000000,-0.008333333333283,0.000000000000069,0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000056,-0.000000000000000,0.013793103448237,1 +1626,1633,1638,7637,0.131034482758464,0.604166666666641,0.137931034482641,0.608333333333283,0.144827586206769,0.604166666666641,0.137931034482591,0.600000000000000,-0.008333333333283,0.000000000000056,0.000000000000000,0.013793103448298,0.008333333333283,-0.000000000000044,-0.000000000000000,-0.013793103448311,2 +1627,1632,1634,1639,0.131034482758520,0.612499999999978,0.137931034482641,0.608333333333283,0.137931034482691,0.616666666666674,0.144827586206812,0.612499999999978,-0.008333333333391,0.000000000000056,-0.000000000000000,-0.013793103448298,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000044,2 +1628,1633,1635,1640,0.131034482758577,0.620833333333359,0.137931034482691,0.616666666666674,0.137931034482742,0.625000000000043,0.144827586206856,0.620833333333359,-0.008333333333369,0.000000000000056,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000044,2 +1629,1634,1636,1641,0.131034482758633,0.629166666666685,0.137931034482742,0.625000000000043,0.137931034482792,0.633333333333326,0.144827586206900,0.629166666666685,-0.008333333333283,0.000000000000056,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000044,2 +1630,1635,1637,1642,0.131034482758689,0.637500000000022,0.137931034482792,0.633333333333326,0.137931034482842,0.641666666666717,0.144827586206944,0.637500000000022,-0.008333333333391,0.000000000000056,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000044,2 +1631,1636,1643,11869,0.131034482758745,0.645833333333359,0.137931034482842,0.641666666666717,0.144827586206988,0.645833333333359,0.137931034482892,0.650000000000000,-0.008333333333283,0.000000000000056,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000044,-0.000000000000000,0.013793103448237,1 +1632,1639,1644,7651,0.144827586206769,0.604166666666641,0.151724137930941,0.608333333333283,0.158620689655074,0.604166666666641,0.151724137930902,0.600000000000000,-0.008333333333283,0.000000000000044,-0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000034,-0.000000000000000,-0.013793103448311,2 +1633,1638,1640,1645,0.144827586206812,0.612499999999978,0.151724137930941,0.608333333333283,0.151724137930980,0.616666666666674,0.158620689655108,0.612499999999978,-0.008333333333391,0.000000000000044,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448291,0.008333333333391,-0.000000000000034,2 +1634,1639,1641,1646,0.144827586206856,0.620833333333359,0.151724137930980,0.616666666666674,0.151724137931019,0.625000000000043,0.158620689655142,0.620833333333359,-0.008333333333369,0.000000000000044,0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448281,0.008333333333369,-0.000000000000034,2 +1635,1640,1642,1647,0.144827586206900,0.629166666666685,0.151724137931019,0.625000000000043,0.151724137931058,0.633333333333326,0.158620689655176,0.629166666666685,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448271,0.008333333333283,-0.000000000000034,2 +1636,1641,1643,1648,0.144827586206944,0.637500000000022,0.151724137931058,0.633333333333326,0.151724137931097,0.641666666666717,0.158620689655211,0.637500000000022,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000034,2 +1637,1642,1649,11869,0.144827586206988,0.645833333333359,0.151724137931097,0.641666666666717,0.158620689655245,0.645833333333359,0.151724137931136,0.650000000000000,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448261,0.008333333333283,-0.000000000000034,-0.000000000000000,0.013793103448251,1 +1638,1645,1650,7665,0.158620689655074,0.604166666666641,0.165517241379242,0.608333333333283,0.172413793103380,0.604166666666641,0.165517241379213,0.600000000000000,-0.008333333333283,0.000000000000034,0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000025,-0.000000000000000,-0.013793103448311,2 +1639,1644,1646,1651,0.158620689655108,0.612499999999978,0.165517241379242,0.608333333333283,0.165517241379271,0.616666666666674,0.172413793103405,0.612499999999978,-0.008333333333391,0.000000000000034,-0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448292,0.008333333333391,-0.000000000000025,2 +1640,1645,1647,1652,0.158620689655142,0.620833333333359,0.165517241379271,0.616666666666674,0.165517241379301,0.625000000000043,0.172413793103430,0.620833333333359,-0.008333333333369,0.000000000000034,-0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448282,0.008333333333369,-0.000000000000025,2 +1641,1646,1648,1653,0.158620689655176,0.629166666666685,0.165517241379301,0.625000000000043,0.165517241379330,0.633333333333326,0.172413793103454,0.629166666666685,-0.008333333333283,0.000000000000034,-0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000025,2 +1642,1647,1649,1654,0.158620689655211,0.637500000000022,0.165517241379330,0.633333333333326,0.165517241379359,0.641666666666717,0.172413793103479,0.637500000000022,-0.008333333333391,0.000000000000034,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448264,0.008333333333391,-0.000000000000025,2 +1643,1648,1655,11869,0.158620689655245,0.645833333333359,0.165517241379359,0.641666666666717,0.172413793103504,0.645833333333359,0.165517241379389,0.650000000000000,-0.008333333333283,0.000000000000034,0.000000000000000,-0.013793103448264,0.008333333333283,-0.000000000000025,-0.000000000000000,0.013793103448254,1 +1644,1651,1656,7679,0.172413793103380,0.604166666666641,0.179310344827544,0.608333333333283,0.186206896551689,0.604166666666641,0.179310344827525,0.600000000000000,-0.008333333333283,0.000000000000025,-0.000000000000000,0.013793103448302,0.008333333333283,-0.000000000000012,-0.000000000000000,-0.013793103448315,2 +1645,1650,1652,1657,0.172413793103405,0.612499999999978,0.179310344827544,0.608333333333283,0.179310344827562,0.616666666666674,0.186206896551700,0.612499999999978,-0.008333333333391,0.000000000000025,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448289,0.008333333333391,-0.000000000000012,2 +1646,1651,1653,1658,0.172413793103430,0.620833333333359,0.179310344827562,0.616666666666674,0.179310344827580,0.625000000000043,0.186206896551712,0.620833333333359,-0.008333333333369,0.000000000000025,-0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448276,0.008333333333369,-0.000000000000012,2 +1647,1652,1654,1659,0.172413793103454,0.629166666666685,0.179310344827580,0.625000000000043,0.179310344827598,0.633333333333326,0.186206896551724,0.629166666666685,-0.008333333333283,0.000000000000025,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000012,2 +1648,1653,1655,1660,0.172413793103479,0.637500000000022,0.179310344827598,0.633333333333326,0.179310344827616,0.641666666666717,0.186206896551735,0.637500000000022,-0.008333333333391,0.000000000000025,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000012,2 +1649,1654,1661,11869,0.172413793103504,0.645833333333359,0.179310344827616,0.641666666666717,0.186206896551747,0.645833333333359,0.179310344827634,0.650000000000000,-0.008333333333283,0.000000000000025,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000012,-0.000000000000000,0.013793103448237,1 +1314,1650,1657,7693,0.200000000000000,0.604166666666641,0.186206896551689,0.604166666666641,0.193103448275847,0.608333333333283,0.193103448275841,0.600000000000000,0.008333333333283,0.000000000000000,-0.008333333333283,0.000000000000012,0.000000000000000,0.013793103448305,0.000000000000000,-0.013793103448317,2 +1315,1651,1656,1658,0.200000000000000,0.612499999999978,0.186206896551700,0.612499999999978,0.193103448275847,0.608333333333283,0.193103448275853,0.616666666666674,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000012,-0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448294,2 +1316,1652,1657,1659,0.200000000000000,0.620833333333359,0.186206896551712,0.620833333333359,0.193103448275853,0.616666666666674,0.193103448275859,0.625000000000043,0.008333333333369,-0.000000000000000,-0.008333333333369,0.000000000000012,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448282,2 +1317,1653,1658,1660,0.200000000000000,0.629166666666685,0.186206896551724,0.629166666666685,0.193103448275859,0.625000000000043,0.193103448275865,0.633333333333326,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000012,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448271,2 +1318,1654,1659,1661,0.200000000000000,0.637500000000022,0.186206896551735,0.637500000000022,0.193103448275865,0.633333333333326,0.193103448275870,0.641666666666717,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000012,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448259,2 +1319,1655,1660,11869,0.200000000000000,0.645833333333359,0.186206896551747,0.645833333333359,0.193103448275870,0.641666666666717,0.193103448275876,0.650000000000000,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000012,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448248,1 +0,1663,1668,1849,-0.600000000000000,0.604166666666641,-0.593103448275874,0.608333333333283,-0.586206896551755,0.604166666666641,-0.593103448275881,0.600000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448252,0.008333333333283,-0.000000000000014,-0.000000000000000,-0.013793103448238,2 +1,1662,1664,1669,-0.600000000000000,0.612499999999978,-0.593103448275874,0.608333333333283,-0.593103448275867,0.616666666666674,-0.586206896551741,0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448266,0.008333333333391,-0.000000000000014,2 +2,1663,1665,1670,-0.600000000000000,0.620833333333359,-0.593103448275867,0.616666666666674,-0.593103448275860,0.625000000000043,-0.586206896551727,0.620833333333358,-0.008333333333369,0.000000000000000,-0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448280,0.008333333333369,-0.000000000000014,2 +3,1664,1666,1671,-0.600000000000000,0.629166666666685,-0.593103448275860,0.625000000000043,-0.593103448275853,0.633333333333326,-0.586206896551713,0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448294,0.008333333333283,-0.000000000000014,2 +4,1665,1667,1672,-0.600000000000000,0.637500000000022,-0.593103448275853,0.633333333333326,-0.593103448275846,0.641666666666717,-0.586206896551699,0.637500000000021,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448308,0.008333333333391,-0.000000000000014,2 +5,1666,1673,11869,-0.600000000000000,0.645833333333359,-0.593103448275846,0.641666666666717,-0.586206896551685,0.645833333333359,-0.593103448275839,0.650000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448308,0.008333333333283,-0.000000000000014,0.000000000000000,0.013793103448322,1 +1662,1669,1674,1863,-0.586206896551755,0.604166666666641,-0.579310344827623,0.608333333333283,-0.572413793103511,0.604166666666641,-0.579310344827643,0.600000000000000,-0.008333333333283,0.000000000000014,0.000000000000000,0.013793103448251,0.008333333333283,-0.000000000000028,-0.000000000000000,-0.013793103448238,2 +1663,1668,1670,1675,-0.586206896551741,0.612499999999978,-0.579310344827623,0.608333333333283,-0.579310344827602,0.616666666666674,-0.572413793103483,0.612499999999978,-0.008333333333391,0.000000000000014,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448264,0.008333333333391,-0.000000000000027,2 +1664,1669,1671,1676,-0.586206896551727,0.620833333333358,-0.579310344827602,0.616666666666674,-0.579310344827581,0.625000000000043,-0.572413793103456,0.620833333333358,-0.008333333333369,0.000000000000014,0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448278,0.008333333333369,-0.000000000000027,2 +1665,1670,1672,1677,-0.586206896551713,0.629166666666685,-0.579310344827581,0.625000000000043,-0.579310344827560,0.633333333333326,-0.572413793103429,0.629166666666685,-0.008333333333283,0.000000000000014,-0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448291,0.008333333333283,-0.000000000000027,2 +1666,1671,1673,1678,-0.586206896551699,0.637500000000021,-0.579310344827560,0.633333333333326,-0.579310344827540,0.641666666666717,-0.572413793103401,0.637500000000021,-0.008333333333391,0.000000000000014,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448305,0.008333333333391,-0.000000000000028,2 +1667,1672,1679,11869,-0.586206896551685,0.645833333333359,-0.579310344827540,0.641666666666717,-0.572413793103374,0.645833333333358,-0.579310344827519,0.650000000000000,-0.008333333333283,0.000000000000014,-0.000000000000000,-0.013793103448305,0.008333333333283,-0.000000000000027,-0.000000000000000,0.013793103448318,1 +1668,1675,1680,1877,-0.572413793103511,0.604166666666641,-0.565517241379372,0.608333333333283,-0.558620689655267,0.604166666666641,-0.565517241379406,0.600000000000000,-0.008333333333283,0.000000000000028,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000039,-0.000000000000000,-0.013793103448238,2 +1669,1674,1676,1681,-0.572413793103483,0.612499999999978,-0.565517241379372,0.608333333333283,-0.565517241379339,0.616666666666674,-0.558620689655228,0.612499999999978,-0.008333333333391,0.000000000000027,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000039,2 +1670,1675,1677,1682,-0.572413793103456,0.620833333333358,-0.565517241379339,0.616666666666674,-0.565517241379306,0.625000000000043,-0.558620689655189,0.620833333333358,-0.008333333333369,0.000000000000027,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000039,2 +1671,1676,1678,1683,-0.572413793103429,0.629166666666685,-0.565517241379306,0.625000000000043,-0.565517241379272,0.633333333333326,-0.558620689655149,0.629166666666685,-0.008333333333283,0.000000000000027,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000040,2 +1672,1677,1679,1684,-0.572413793103401,0.637500000000021,-0.565517241379272,0.633333333333326,-0.565517241379239,0.641666666666717,-0.558620689655110,0.637500000000021,-0.008333333333391,0.000000000000028,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000039,2 +1673,1678,1685,11869,-0.572413793103374,0.645833333333358,-0.565517241379239,0.641666666666717,-0.558620689655071,0.645833333333359,-0.565517241379205,0.650000000000000,-0.008333333333283,0.000000000000027,0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000039,-0.000000000000000,0.013793103448309,1 +1674,1681,1686,1891,-0.558620689655267,0.604166666666641,-0.551724137931123,0.608333333333283,-0.544827586207024,0.604166666666641,-0.551724137931168,0.600000000000000,-0.008333333333283,0.000000000000039,-0.000000000000000,0.013793103448248,0.008333333333283,-0.000000000000050,-0.000000000000000,-0.013793103448238,2 +1675,1680,1682,1687,-0.558620689655228,0.612499999999978,-0.551724137931123,0.608333333333283,-0.551724137931079,0.616666666666674,-0.544827586206974,0.612499999999978,-0.008333333333391,0.000000000000039,0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448259,0.008333333333391,-0.000000000000050,2 +1676,1681,1683,1688,-0.558620689655189,0.620833333333358,-0.551724137931079,0.616666666666674,-0.551724137931034,0.625000000000043,-0.544827586206924,0.620833333333358,-0.008333333333369,0.000000000000039,-0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448270,0.008333333333369,-0.000000000000050,2 +1677,1682,1684,1689,-0.558620689655149,0.629166666666685,-0.551724137931034,0.625000000000043,-0.551724137930989,0.633333333333326,-0.544827586206874,0.629166666666685,-0.008333333333283,0.000000000000040,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448280,0.008333333333283,-0.000000000000050,2 +1678,1683,1685,1690,-0.558620689655110,0.637500000000021,-0.551724137930989,0.633333333333326,-0.551724137930945,0.641666666666717,-0.544827586206824,0.637500000000021,-0.008333333333391,0.000000000000039,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448291,0.008333333333391,-0.000000000000050,2 +1679,1684,1691,11869,-0.558620689655071,0.645833333333359,-0.551724137930945,0.641666666666717,-0.544827586206774,0.645833333333359,-0.551724137930900,0.650000000000000,-0.008333333333283,0.000000000000039,-0.000000000000000,-0.013793103448291,0.008333333333283,-0.000000000000050,-0.000000000000000,0.013793103448302,1 +1680,1687,1692,1905,-0.544827586207024,0.604166666666641,-0.537931034482875,0.608333333333283,-0.531034482758782,0.604166666666641,-0.537931034482930,0.600000000000000,-0.008333333333283,0.000000000000050,0.000000000000000,0.013793103448247,0.008333333333283,-0.000000000000060,-0.000000000000000,-0.013793103448238,2 +1681,1686,1688,1693,-0.544827586206974,0.612499999999978,-0.537931034482875,0.608333333333283,-0.537931034482820,0.616666666666674,-0.531034482758722,0.612499999999978,-0.008333333333391,0.000000000000050,-0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448257,0.008333333333391,-0.000000000000060,2 +1682,1687,1689,1694,-0.544827586206924,0.620833333333358,-0.537931034482820,0.616666666666674,-0.537931034482766,0.625000000000043,-0.531034482758662,0.620833333333358,-0.008333333333369,0.000000000000050,-0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448267,0.008333333333369,-0.000000000000060,2 +1683,1688,1690,1695,-0.544827586206874,0.629166666666685,-0.537931034482766,0.625000000000043,-0.537931034482711,0.633333333333326,-0.531034482758602,0.629166666666685,-0.008333333333283,0.000000000000050,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448277,0.008333333333283,-0.000000000000060,2 +1684,1689,1691,1696,-0.544827586206824,0.637500000000021,-0.537931034482711,0.633333333333326,-0.537931034482656,0.641666666666717,-0.531034482758542,0.637500000000021,-0.008333333333391,0.000000000000050,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448287,0.008333333333391,-0.000000000000060,2 +1685,1690,1697,11869,-0.544827586206774,0.645833333333359,-0.537931034482656,0.641666666666717,-0.531034482758483,0.645833333333359,-0.537931034482601,0.650000000000000,-0.008333333333283,0.000000000000050,-0.000000000000000,-0.013793103448287,0.008333333333283,-0.000000000000060,-0.000000000000000,0.013793103448296,1 +1686,1693,1698,1919,-0.531034482758782,0.604166666666641,-0.524137931034627,0.608333333333283,-0.517241379310538,0.604166666666641,-0.524137931034693,0.600000000000000,-0.008333333333283,0.000000000000060,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000071,-0.000000000000000,-0.013793103448238,2 +1687,1692,1694,1699,-0.531034482758722,0.612499999999978,-0.524137931034627,0.608333333333283,-0.524137931034561,0.616666666666674,-0.517241379310467,0.612499999999978,-0.008333333333391,0.000000000000060,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000071,2 +1688,1693,1695,1700,-0.531034482758662,0.620833333333358,-0.524137931034561,0.616666666666674,-0.524137931034496,0.625000000000043,-0.517241379310395,0.620833333333358,-0.008333333333369,0.000000000000060,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000071,2 +1689,1694,1696,1701,-0.531034482758602,0.629166666666685,-0.524137931034496,0.625000000000043,-0.524137931034430,0.633333333333326,-0.517241379310324,0.629166666666685,-0.008333333333283,0.000000000000060,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448284,0.008333333333283,-0.000000000000071,2 +1690,1695,1697,1702,-0.531034482758542,0.637500000000021,-0.524137931034430,0.633333333333326,-0.524137931034365,0.641666666666717,-0.517241379310252,0.637500000000021,-0.008333333333391,0.000000000000060,-0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448296,0.008333333333391,-0.000000000000071,2 +1691,1696,1703,11869,-0.531034482758483,0.645833333333359,-0.524137931034365,0.641666666666717,-0.517241379310181,0.645833333333358,-0.524137931034299,0.650000000000000,-0.008333333333283,0.000000000000060,-0.000000000000000,-0.013793103448296,0.008333333333283,-0.000000000000071,-0.000000000000000,0.013793103448308,1 +1692,1699,1704,1933,-0.517241379310538,0.604166666666641,-0.510344827586377,0.608333333333283,-0.503448275862294,0.604166666666641,-0.510344827586455,0.600000000000000,-0.008333333333283,0.000000000000071,-0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000084,-0.000000000000000,-0.013793103448238,2 +1693,1698,1700,1705,-0.517241379310467,0.612499999999978,-0.510344827586377,0.608333333333283,-0.510344827586300,0.616666666666674,-0.503448275862211,0.612499999999978,-0.008333333333391,0.000000000000071,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000084,2 +1694,1699,1701,1706,-0.517241379310395,0.620833333333358,-0.510344827586300,0.616666666666674,-0.510344827586222,0.625000000000043,-0.503448275862127,0.620833333333358,-0.008333333333369,0.000000000000071,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000084,2 +1695,1700,1702,1707,-0.517241379310324,0.629166666666685,-0.510344827586222,0.625000000000043,-0.510344827586145,0.633333333333326,-0.503448275862043,0.629166666666685,-0.008333333333283,0.000000000000071,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448287,0.008333333333283,-0.000000000000084,2 +1696,1701,1703,1708,-0.517241379310252,0.637500000000021,-0.510344827586145,0.633333333333326,-0.510344827586067,0.641666666666717,-0.503448275861959,0.637500000000021,-0.008333333333391,0.000000000000071,-0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000083,2 +1697,1702,1709,11869,-0.517241379310181,0.645833333333358,-0.510344827586067,0.641666666666717,-0.503448275861876,0.645833333333359,-0.510344827585989,0.650000000000000,-0.008333333333283,0.000000000000071,0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000084,-0.000000000000000,0.013793103448311,1 +1698,1705,1710,1947,-0.503448275862294,0.604166666666641,-0.496551724138125,0.608333333333283,-0.489655172414048,0.604166666666641,-0.496551724138217,0.600000000000000,-0.008333333333283,0.000000000000084,0.000000000000000,0.013793103448254,0.008333333333283,-0.000000000000100,-0.000000000000000,-0.013793103448238,2 +1699,1704,1706,1711,-0.503448275862211,0.612499999999978,-0.496551724138125,0.608333333333283,-0.496551724138033,0.616666666666674,-0.489655172413948,0.612499999999978,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448271,0.008333333333391,-0.000000000000100,2 +1700,1705,1707,1712,-0.503448275862127,0.620833333333358,-0.496551724138033,0.616666666666674,-0.496551724137942,0.625000000000043,-0.489655172413848,0.620833333333358,-0.008333333333369,0.000000000000084,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448287,0.008333333333369,-0.000000000000100,2 +1701,1706,1708,1713,-0.503448275862043,0.629166666666685,-0.496551724137942,0.625000000000043,-0.496551724137850,0.633333333333326,-0.489655172413748,0.629166666666685,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448303,0.008333333333283,-0.000000000000100,2 +1702,1707,1709,1714,-0.503448275861959,0.637500000000021,-0.496551724137850,0.633333333333326,-0.496551724137758,0.641666666666717,-0.489655172413648,0.637500000000021,-0.008333333333391,0.000000000000083,-0.000000000000000,-0.013793103448303,0.000000000000000,0.013793103448320,0.008333333333391,-0.000000000000100,2 +1703,1708,1715,11869,-0.503448275861876,0.645833333333359,-0.496551724137758,0.641666666666717,-0.489655172413548,0.645833333333359,-0.496551724137666,0.650000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448320,0.008333333333283,-0.000000000000100,-0.000000000000000,0.013793103448336,1 +1704,1711,1716,1961,-0.489655172414048,0.604166666666641,-0.482758620689873,0.608333333333283,-0.475862068965804,0.604166666666641,-0.482758620689980,0.600000000000000,-0.008333333333283,0.000000000000100,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000113,-0.000000000000000,-0.013793103448238,2 +1705,1710,1712,1717,-0.489655172413948,0.612499999999978,-0.482758620689873,0.608333333333283,-0.482758620689767,0.616666666666674,-0.475862068965692,0.612499999999978,-0.008333333333391,0.000000000000100,-0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000113,2 +1706,1711,1713,1718,-0.489655172413848,0.620833333333358,-0.482758620689767,0.616666666666674,-0.482758620689661,0.625000000000043,-0.475862068965579,0.620833333333358,-0.008333333333369,0.000000000000100,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000112,2 +1707,1712,1714,1719,-0.489655172413748,0.629166666666685,-0.482758620689661,0.625000000000043,-0.482758620689554,0.633333333333326,-0.475862068965467,0.629166666666685,-0.008333333333283,0.000000000000100,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448288,0.008333333333283,-0.000000000000113,2 +1708,1713,1715,1720,-0.489655172413648,0.637500000000021,-0.482758620689554,0.633333333333326,-0.482758620689448,0.641666666666717,-0.475862068965354,0.637500000000021,-0.008333333333391,0.000000000000100,-0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448300,0.008333333333391,-0.000000000000113,2 +1709,1714,1721,11869,-0.489655172413548,0.645833333333359,-0.482758620689448,0.641666666666717,-0.475862068965242,0.645833333333359,-0.482758620689341,0.650000000000000,-0.008333333333283,0.000000000000100,-0.000000000000000,-0.013793103448300,0.008333333333283,-0.000000000000113,-0.000000000000000,0.013793103448313,1 +1710,1717,1722,1975,-0.475862068965804,0.604166666666641,-0.468965517241623,0.608333333333283,-0.462068965517561,0.604166666666641,-0.468965517241742,0.600000000000000,-0.008333333333283,0.000000000000113,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000125,-0.000000000000000,-0.013793103448238,2 +1711,1716,1718,1723,-0.475862068965692,0.612499999999978,-0.468965517241623,0.608333333333283,-0.468965517241505,0.616666666666674,-0.462068965517436,0.612499999999978,-0.008333333333391,0.000000000000113,-0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000125,2 +1712,1717,1719,1724,-0.475862068965579,0.620833333333358,-0.468965517241505,0.616666666666674,-0.468965517241386,0.625000000000043,-0.462068965517312,0.620833333333358,-0.008333333333369,0.000000000000112,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000124,2 +1713,1718,1720,1725,-0.475862068965467,0.629166666666685,-0.468965517241386,0.625000000000043,-0.468965517241268,0.633333333333326,-0.462068965517187,0.629166666666685,-0.008333333333283,0.000000000000113,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448285,0.008333333333283,-0.000000000000124,2 +1714,1719,1721,1726,-0.475862068965354,0.637500000000021,-0.468965517241268,0.633333333333326,-0.468965517241149,0.641666666666717,-0.462068965517063,0.637500000000021,-0.008333333333391,0.000000000000113,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000125,2 +1715,1720,1727,11869,-0.475862068965242,0.645833333333359,-0.468965517241149,0.641666666666717,-0.462068965516938,0.645833333333359,-0.468965517241031,0.650000000000000,-0.008333333333283,0.000000000000113,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000124,-0.000000000000000,0.013793103448309,1 +1716,1723,1728,1989,-0.462068965517561,0.604166666666641,-0.455172413793374,0.608333333333283,-0.448275862069317,0.604166666666641,-0.455172413793504,0.600000000000000,-0.008333333333283,0.000000000000125,0.000000000000000,0.013793103448249,0.008333333333282,-0.000000000000136,-0.000000000000000,-0.013793103448238,2 +1717,1722,1724,1729,-0.462068965517436,0.612499999999978,-0.455172413793374,0.608333333333283,-0.455172413793243,0.616666666666674,-0.448275862069181,0.612499999999978,-0.008333333333391,0.000000000000125,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000137,2 +1718,1723,1725,1730,-0.462068965517312,0.620833333333358,-0.455172413793243,0.616666666666674,-0.455172413793113,0.625000000000043,-0.448275862069044,0.620833333333358,-0.008333333333369,0.000000000000124,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000136,2 +1719,1724,1726,1731,-0.462068965517187,0.629166666666685,-0.455172413793113,0.625000000000043,-0.455172413792982,0.633333333333326,-0.448275862068908,0.629166666666685,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448285,0.008333333333283,-0.000000000000136,2 +1720,1725,1727,1732,-0.462068965517063,0.637500000000021,-0.455172413792982,0.633333333333326,-0.455172413792852,0.641666666666717,-0.448275862068772,0.637500000000021,-0.008333333333391,0.000000000000125,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000137,2 +1721,1726,1733,11869,-0.462068965516938,0.645833333333359,-0.455172413792852,0.641666666666717,-0.448275862068635,0.645833333333358,-0.455172413792722,0.650000000000000,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000136,-0.000000000000000,0.013793103448309,1 +1722,1729,1734,2003,-0.448275862069317,0.604166666666641,-0.441379310345124,0.608333333333283,-0.434482758621073,0.604166666666641,-0.441379310345266,0.600000000000000,-0.008333333333282,0.000000000000136,-0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000148,-0.000000000000000,-0.013793103448238,2 +1723,1728,1730,1735,-0.448275862069181,0.612499999999978,-0.441379310345124,0.608333333333283,-0.441379310344982,0.616666666666674,-0.434482758620925,0.612499999999978,-0.008333333333391,0.000000000000137,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000148,2 +1724,1729,1731,1736,-0.448275862069044,0.620833333333358,-0.441379310344982,0.616666666666674,-0.441379310344839,0.625000000000043,-0.434482758620777,0.620833333333358,-0.008333333333369,0.000000000000136,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000148,2 +1725,1730,1732,1737,-0.448275862068908,0.629166666666685,-0.441379310344839,0.625000000000043,-0.441379310344697,0.633333333333326,-0.434482758620628,0.629166666666684,-0.008333333333283,0.000000000000136,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448285,0.008333333333283,-0.000000000000148,2 +1726,1731,1733,1738,-0.448275862068772,0.637500000000021,-0.441379310344697,0.633333333333326,-0.441379310344555,0.641666666666717,-0.434482758620480,0.637500000000021,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000148,2 +1727,1732,1739,11869,-0.448275862068635,0.645833333333358,-0.441379310344555,0.641666666666717,-0.434482758620332,0.645833333333359,-0.441379310344412,0.650000000000000,-0.008333333333283,0.000000000000136,0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000148,-0.000000000000000,0.013793103448310,1 +1728,1735,1740,2017,-0.434482758621073,0.604166666666641,-0.427586206896874,0.608333333333283,-0.420689655172829,0.604166666666641,-0.427586206897029,0.600000000000000,-0.008333333333283,0.000000000000148,0.000000000000000,0.013793103448251,0.008333333333283,-0.000000000000161,-0.000000000000000,-0.013793103448238,2 +1729,1734,1736,1741,-0.434482758620925,0.612499999999978,-0.427586206896874,0.608333333333283,-0.427586206896719,0.616666666666674,-0.420689655172668,0.612499999999978,-0.008333333333391,0.000000000000148,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448264,0.008333333333391,-0.000000000000161,2 +1730,1735,1737,1742,-0.434482758620777,0.620833333333358,-0.427586206896719,0.616666666666674,-0.427586206896564,0.625000000000043,-0.420689655172507,0.620833333333358,-0.008333333333369,0.000000000000148,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000161,2 +1731,1736,1738,1743,-0.434482758620628,0.629166666666684,-0.427586206896564,0.625000000000043,-0.427586206896409,0.633333333333326,-0.420689655172345,0.629166666666685,-0.008333333333283,0.000000000000148,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448290,0.008333333333283,-0.000000000000162,2 +1732,1737,1739,1744,-0.434482758620480,0.637500000000021,-0.427586206896409,0.633333333333326,-0.427586206896255,0.641666666666717,-0.420689655172184,0.637500000000021,-0.008333333333391,0.000000000000148,0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448303,0.008333333333391,-0.000000000000161,2 +1733,1738,1745,11869,-0.434482758620332,0.645833333333359,-0.427586206896255,0.641666666666717,-0.420689655172023,0.645833333333359,-0.427586206896100,0.650000000000000,-0.008333333333283,0.000000000000148,-0.000000000000000,-0.013793103448303,0.008333333333283,-0.000000000000161,-0.000000000000000,0.013793103448315,1 +1734,1741,1746,2031,-0.420689655172829,0.604166666666641,-0.413793103448623,0.608333333333283,-0.406896551724585,0.604166666666641,-0.413793103448791,0.600000000000000,-0.008333333333283,0.000000000000161,-0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000174,-0.000000000000000,-0.013793103448238,2 +1735,1740,1742,1747,-0.420689655172668,0.612499999999978,-0.413793103448623,0.608333333333283,-0.413793103448456,0.616666666666674,-0.406896551724411,0.612499999999978,-0.008333333333391,0.000000000000161,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000174,2 +1736,1741,1743,1748,-0.420689655172507,0.620833333333358,-0.413793103448456,0.616666666666674,-0.413793103448288,0.625000000000043,-0.406896551724237,0.620833333333358,-0.008333333333369,0.000000000000161,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448276,0.008333333333369,-0.000000000000174,2 +1737,1742,1744,1749,-0.420689655172345,0.629166666666685,-0.413793103448288,0.625000000000043,-0.413793103448121,0.633333333333326,-0.406896551724064,0.629166666666685,-0.008333333333283,0.000000000000162,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448288,0.008333333333283,-0.000000000000174,2 +1738,1743,1745,1750,-0.420689655172184,0.637500000000021,-0.413793103448121,0.633333333333326,-0.413793103447953,0.641666666666717,-0.406896551723890,0.637500000000021,-0.008333333333391,0.000000000000161,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000174,2 +1739,1744,1751,11869,-0.420689655172023,0.645833333333359,-0.413793103447953,0.641666666666717,-0.406896551723716,0.645833333333358,-0.413793103447786,0.650000000000000,-0.008333333333283,0.000000000000161,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000174,-0.000000000000000,0.013793103448313,1 +1740,1747,1752,2045,-0.406896551724585,0.604166666666641,-0.400000000000365,0.608333333333283,-0.393103448276320,0.604166666666641,-0.400000000000540,0.600000000000000,-0.008333333333283,0.000000000000174,0.000000000000000,0.013793103448267,0.008333333333283,-0.000000000000177,-0.000000000000000,-0.013793103448264,2 +1741,1746,1748,1753,-0.406896551724411,0.612499999999978,-0.400000000000365,0.608333333333283,-0.400000000000189,0.616666666666674,-0.393103448276143,0.612499999999978,-0.008333333333391,0.000000000000174,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448270,0.008333333333391,-0.000000000000177,2 +1742,1747,1749,1754,-0.406896551724237,0.620833333333358,-0.400000000000189,0.616666666666674,-0.400000000000014,0.625000000000043,-0.393103448275966,0.620833333333358,-0.008333333333369,0.000000000000174,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000177,2 +1743,1748,1750,1755,-0.406896551724064,0.629166666666685,-0.400000000000014,0.625000000000043,-0.399999999999838,0.633333333333326,-0.393103448275789,0.629166666666685,-0.008333333333283,0.000000000000174,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448277,0.008333333333283,-0.000000000000177,2 +1744,1749,1751,1756,-0.406896551723890,0.637500000000021,-0.399999999999838,0.633333333333326,-0.399999999999663,0.641666666666717,-0.393103448275612,0.637500000000021,-0.008333333333391,0.000000000000174,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448280,0.008333333333391,-0.000000000000177,2 +1745,1750,1757,11869,-0.406896551723716,0.645833333333358,-0.399999999999663,0.641666666666717,-0.393103448275434,0.645833333333359,-0.399999999999487,0.650000000000000,-0.008333333333283,0.000000000000174,0.000000000000000,-0.013793103448280,0.008333333333283,-0.000000000000177,-0.000000000000000,0.013793103448283,1 +1746,1753,1758,2059,-0.393103448276320,0.604166666666641,-0.386206896552082,0.608333333333283,-0.379310344828014,0.604166666666641,-0.386206896552252,0.600000000000000,-0.008333333333283,0.000000000000177,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000164,-0.000000000000000,-0.013793103448312,2 +1747,1752,1754,1759,-0.393103448276143,0.612499999999978,-0.386206896552082,0.608333333333283,-0.386206896551911,0.616666666666674,-0.379310344827850,0.612499999999978,-0.008333333333391,0.000000000000177,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000164,2 +1748,1753,1755,1760,-0.393103448275966,0.620833333333358,-0.386206896551911,0.616666666666674,-0.386206896551740,0.625000000000043,-0.379310344827686,0.620833333333358,-0.008333333333369,0.000000000000177,0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000164,2 +1749,1754,1756,1761,-0.393103448275789,0.629166666666685,-0.386206896551740,0.625000000000043,-0.386206896551570,0.633333333333326,-0.379310344827521,0.629166666666685,-0.008333333333283,0.000000000000177,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000164,2 +1750,1755,1757,1762,-0.393103448275612,0.637500000000021,-0.386206896551570,0.633333333333326,-0.386206896551399,0.641666666666717,-0.379310344827357,0.637500000000021,-0.008333333333391,0.000000000000177,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000164,2 +1751,1756,1763,11869,-0.393103448275434,0.645833333333359,-0.386206896551399,0.641666666666717,-0.379310344827193,0.645833333333359,-0.386206896551228,0.650000000000000,-0.008333333333283,0.000000000000177,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000164,-0.000000000000000,0.013793103448235,1 +1752,1759,1764,2073,-0.379310344828014,0.604166666666641,-0.372413793103778,0.608333333333283,-0.365517241379699,0.604166666666641,-0.372413793103935,0.600000000000000,-0.008333333333283,0.000000000000164,0.000000000000000,0.013793103448308,0.008333333333283,-0.000000000000150,-0.000000000000000,-0.013793103448323,2 +1753,1758,1760,1765,-0.379310344827850,0.612499999999978,-0.372413793103778,0.608333333333283,-0.372413793103621,0.616666666666674,-0.365517241379549,0.612499999999978,-0.008333333333391,0.000000000000164,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448294,0.008333333333391,-0.000000000000150,2 +1754,1759,1761,1766,-0.379310344827686,0.620833333333358,-0.372413793103621,0.616666666666674,-0.372413793103464,0.625000000000043,-0.365517241379400,0.620833333333358,-0.008333333333369,0.000000000000164,-0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448279,0.008333333333369,-0.000000000000150,2 +1755,1760,1762,1767,-0.379310344827521,0.629166666666685,-0.372413793103464,0.625000000000043,-0.372413793103307,0.633333333333326,-0.365517241379250,0.629166666666685,-0.008333333333283,0.000000000000164,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448264,0.008333333333283,-0.000000000000150,2 +1756,1761,1763,1768,-0.379310344827357,0.637500000000021,-0.372413793103307,0.633333333333326,-0.372413793103150,0.641666666666717,-0.365517241379100,0.637500000000021,-0.008333333333391,0.000000000000164,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000150,2 +1757,1762,1769,11869,-0.379310344827193,0.645833333333359,-0.372413793103150,0.641666666666717,-0.365517241378951,0.645833333333359,-0.372413793102993,0.650000000000000,-0.008333333333283,0.000000000000164,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000150,-0.000000000000000,0.013793103448235,1 +1758,1765,1770,2087,-0.365517241379699,0.604166666666641,-0.358620689655475,0.608333333333283,-0.351724137931394,0.604166666666641,-0.358620689655618,0.600000000000000,-0.008333333333283,0.000000000000150,-0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000137,-0.000000000000000,-0.013793103448312,2 +1759,1764,1766,1771,-0.365517241379549,0.612499999999978,-0.358620689655475,0.608333333333283,-0.358620689655331,0.616666666666674,-0.351724137931257,0.612499999999978,-0.008333333333391,0.000000000000150,0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000137,2 +1760,1765,1767,1772,-0.365517241379400,0.620833333333358,-0.358620689655331,0.616666666666674,-0.358620689655188,0.625000000000043,-0.351724137931120,0.620833333333358,-0.008333333333369,0.000000000000150,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000137,2 +1761,1766,1768,1773,-0.365517241379250,0.629166666666685,-0.358620689655188,0.625000000000043,-0.358620689655045,0.633333333333326,-0.351724137930983,0.629166666666685,-0.008333333333283,0.000000000000150,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000137,2 +1762,1767,1769,1774,-0.365517241379100,0.637500000000021,-0.358620689655045,0.633333333333326,-0.358620689654901,0.641666666666717,-0.351724137930846,0.637500000000021,-0.008333333333391,0.000000000000150,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000137,2 +1763,1768,1775,11869,-0.365517241378951,0.645833333333359,-0.358620689654901,0.641666666666717,-0.351724137930709,0.645833333333359,-0.358620689654758,0.650000000000000,-0.008333333333283,0.000000000000150,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000137,-0.000000000000000,0.013793103448235,1 +1764,1771,1776,2101,-0.351724137931394,0.604166666666641,-0.344827586207176,0.608333333333283,-0.337931034483088,0.604166666666641,-0.344827586207306,0.600000000000000,-0.008333333333283,0.000000000000137,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000124,-0.000000000000000,-0.013793103448312,2 +1765,1770,1772,1777,-0.351724137931257,0.612499999999978,-0.344827586207176,0.608333333333283,-0.344827586207045,0.616666666666674,-0.337931034482964,0.612499999999978,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000124,2 +1766,1771,1773,1778,-0.351724137931120,0.620833333333358,-0.344827586207045,0.616666666666674,-0.344827586206915,0.625000000000043,-0.337931034482840,0.620833333333358,-0.008333333333369,0.000000000000137,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000124,2 +1767,1772,1774,1779,-0.351724137930983,0.629166666666685,-0.344827586206915,0.625000000000043,-0.344827586206784,0.633333333333326,-0.337931034482716,0.629166666666685,-0.008333333333283,0.000000000000137,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000124,2 +1768,1773,1775,1780,-0.351724137930846,0.637500000000021,-0.344827586206784,0.633333333333326,-0.344827586206653,0.641666666666717,-0.337931034482592,0.637500000000021,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000124,2 +1769,1774,1781,11869,-0.351724137930709,0.645833333333359,-0.344827586206653,0.641666666666717,-0.337931034482468,0.645833333333359,-0.344827586206523,0.650000000000000,-0.008333333333283,0.000000000000137,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000124,-0.000000000000000,0.013793103448235,1 +1770,1777,1782,2115,-0.337931034483088,0.604166666666641,-0.331034482758877,0.608333333333283,-0.324137931034783,0.604166666666641,-0.331034482758994,0.600000000000000,-0.008333333333283,0.000000000000124,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000111,-0.000000000000000,-0.013793103448312,2 +1771,1776,1778,1783,-0.337931034482964,0.612499999999978,-0.331034482758877,0.608333333333283,-0.331034482758759,0.616666666666674,-0.324137931034671,0.612499999999978,-0.008333333333391,0.000000000000124,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000111,2 +1772,1777,1779,1784,-0.337931034482840,0.620833333333358,-0.331034482758759,0.616666666666674,-0.331034482758641,0.625000000000043,-0.324137931034560,0.620833333333358,-0.008333333333369,0.000000000000124,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000111,2 +1773,1778,1780,1785,-0.337931034482716,0.629166666666685,-0.331034482758641,0.625000000000043,-0.331034482758523,0.633333333333326,-0.324137931034449,0.629166666666685,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000111,2 +1774,1779,1781,1786,-0.337931034482592,0.637500000000021,-0.331034482758523,0.633333333333326,-0.331034482758406,0.641666666666717,-0.324137931034337,0.637500000000021,-0.008333333333391,0.000000000000124,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000111,2 +1775,1780,1787,11869,-0.337931034482468,0.645833333333359,-0.331034482758406,0.641666666666717,-0.324137931034226,0.645833333333359,-0.331034482758288,0.650000000000000,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000111,-0.000000000000000,0.013793103448235,1 +1776,1783,1788,2129,-0.324137931034783,0.604166666666641,-0.317241379310576,0.608333333333283,-0.310344827586474,0.604166666666641,-0.317241379310681,0.600000000000000,-0.008333333333283,0.000000000000111,-0.000000000000000,0.013793103448302,0.008333333333283,-0.000000000000098,-0.000000000000000,-0.013793103448315,2 +1777,1782,1784,1789,-0.324137931034671,0.612499999999978,-0.317241379310576,0.608333333333283,-0.317241379310472,0.616666666666674,-0.310344827586376,0.612499999999978,-0.008333333333391,0.000000000000111,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448288,0.008333333333391,-0.000000000000098,2 +1778,1783,1785,1790,-0.324137931034560,0.620833333333358,-0.317241379310472,0.616666666666674,-0.317241379310367,0.625000000000043,-0.310344827586278,0.620833333333358,-0.008333333333369,0.000000000000111,-0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000098,2 +1779,1784,1786,1791,-0.324137931034449,0.629166666666685,-0.317241379310367,0.625000000000043,-0.317241379310262,0.633333333333326,-0.310344827586180,0.629166666666684,-0.008333333333283,0.000000000000111,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000098,2 +1780,1785,1787,1792,-0.324137931034337,0.637500000000021,-0.317241379310262,0.633333333333326,-0.317241379310158,0.641666666666717,-0.310344827586082,0.637500000000021,-0.008333333333391,0.000000000000111,-0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000098,2 +1781,1786,1793,11869,-0.324137931034226,0.645833333333359,-0.317241379310158,0.641666666666717,-0.310344827585984,0.645833333333359,-0.317241379310053,0.650000000000000,-0.008333333333283,0.000000000000111,0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000098,-0.000000000000000,0.013793103448235,1 +1782,1789,1794,2143,-0.310344827586474,0.604166666666641,-0.303448275862273,0.608333333333283,-0.296551724138163,0.604166666666641,-0.303448275862364,0.600000000000000,-0.008333333333283,0.000000000000098,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000084,-0.000000000000000,-0.013793103448318,2 +1783,1788,1790,1795,-0.310344827586376,0.612499999999978,-0.303448275862273,0.608333333333283,-0.303448275862182,0.616666666666674,-0.296551724138079,0.612499999999978,-0.008333333333391,0.000000000000098,-0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448291,0.008333333333391,-0.000000000000084,2 +1784,1789,1791,1796,-0.310344827586278,0.620833333333358,-0.303448275862182,0.616666666666674,-0.303448275862091,0.625000000000043,-0.296551724137995,0.620833333333358,-0.008333333333369,0.000000000000098,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000084,2 +1785,1790,1792,1797,-0.310344827586180,0.629166666666684,-0.303448275862091,0.625000000000043,-0.303448275862000,0.633333333333326,-0.296551724137911,0.629166666666685,-0.008333333333283,0.000000000000098,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000084,2 +1786,1791,1793,1798,-0.310344827586082,0.637500000000021,-0.303448275862000,0.633333333333326,-0.303448275861909,0.641666666666717,-0.296551724137826,0.637500000000021,-0.008333333333391,0.000000000000098,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000084,2 +1787,1792,1799,11869,-0.310344827585984,0.645833333333359,-0.303448275861909,0.641666666666717,-0.296551724137742,0.645833333333359,-0.303448275861818,0.650000000000000,-0.008333333333283,0.000000000000098,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000084,-0.000000000000000,0.013793103448235,1 +1788,1795,1800,2157,-0.296551724138163,0.604166666666641,-0.289655172413969,0.608333333333283,-0.282758620689852,0.604166666666641,-0.289655172414046,0.600000000000000,-0.008333333333283,0.000000000000084,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000070,-0.000000000000000,-0.013793103448318,2 +1789,1794,1796,1801,-0.296551724138079,0.612499999999978,-0.289655172413969,0.608333333333283,-0.289655172413892,0.616666666666674,-0.282758620689782,0.612499999999978,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448290,0.008333333333391,-0.000000000000070,2 +1790,1795,1797,1802,-0.296551724137995,0.620833333333358,-0.289655172413892,0.616666666666674,-0.289655172413814,0.625000000000043,-0.282758620689711,0.620833333333358,-0.008333333333369,0.000000000000084,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000070,2 +1791,1796,1798,1803,-0.296551724137911,0.629166666666685,-0.289655172413814,0.625000000000043,-0.289655172413737,0.633333333333326,-0.282758620689641,0.629166666666685,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000070,2 +1792,1797,1799,1804,-0.296551724137826,0.637500000000021,-0.289655172413737,0.633333333333326,-0.289655172413660,0.641666666666717,-0.282758620689570,0.637500000000021,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000070,2 +1793,1798,1805,11869,-0.296551724137742,0.645833333333359,-0.289655172413660,0.641666666666717,-0.282758620689500,0.645833333333358,-0.289655172413583,0.650000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000070,-0.000000000000000,0.013793103448235,1 +1794,1801,1806,2171,-0.282758620689852,0.604166666666641,-0.275862068965665,0.608333333333283,-0.268965517241541,0.604166666666641,-0.275862068965729,0.600000000000000,-0.008333333333283,0.000000000000070,-0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000057,-0.000000000000000,-0.013793103448317,2 +1795,1800,1802,1807,-0.282758620689782,0.612499999999978,-0.275862068965665,0.608333333333283,-0.275862068965601,0.616666666666674,-0.268965517241485,0.612499999999978,-0.008333333333391,0.000000000000070,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448290,0.008333333333391,-0.000000000000057,2 +1796,1801,1803,1808,-0.282758620689711,0.620833333333358,-0.275862068965601,0.616666666666674,-0.275862068965538,0.625000000000043,-0.268965517241428,0.620833333333359,-0.008333333333369,0.000000000000070,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448276,0.008333333333369,-0.000000000000057,2 +1797,1802,1804,1809,-0.282758620689641,0.629166666666685,-0.275862068965538,0.625000000000043,-0.275862068965474,0.633333333333326,-0.268965517241372,0.629166666666685,-0.008333333333283,0.000000000000070,0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000057,2 +1798,1803,1805,1810,-0.282758620689570,0.637500000000021,-0.275862068965474,0.633333333333326,-0.275862068965411,0.641666666666717,-0.268965517241315,0.637500000000021,-0.008333333333391,0.000000000000070,-0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000057,2 +1799,1804,1811,11869,-0.282758620689500,0.645833333333358,-0.275862068965411,0.641666666666717,-0.268965517241258,0.645833333333359,-0.275862068965347,0.650000000000000,-0.008333333333283,0.000000000000070,0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000057,-0.000000000000000,0.013793103448235,1 +1800,1807,1812,2185,-0.268965517241541,0.604166666666641,-0.262068965517364,0.608333333333283,-0.255172413793236,0.604166666666641,-0.262068965517414,0.600000000000000,-0.008333333333283,0.000000000000057,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000044,-0.000000000000000,-0.013793103448312,2 +1801,1806,1808,1813,-0.268965517241485,0.612499999999978,-0.262068965517364,0.608333333333283,-0.262068965517313,0.616666666666674,-0.255172413793192,0.612499999999978,-0.008333333333391,0.000000000000057,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000044,2 +1802,1807,1809,1814,-0.268965517241428,0.620833333333359,-0.262068965517313,0.616666666666674,-0.262068965517263,0.625000000000043,-0.255172413793148,0.620833333333358,-0.008333333333369,0.000000000000057,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000044,2 +1803,1808,1810,1815,-0.268965517241372,0.629166666666685,-0.262068965517263,0.625000000000043,-0.262068965517213,0.633333333333326,-0.255172413793104,0.629166666666685,-0.008333333333283,0.000000000000057,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000044,2 +1804,1809,1811,1816,-0.268965517241315,0.637500000000021,-0.262068965517213,0.633333333333326,-0.262068965517163,0.641666666666717,-0.255172413793061,0.637500000000021,-0.008333333333391,0.000000000000057,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000044,2 +1805,1810,1817,11869,-0.268965517241258,0.645833333333359,-0.262068965517163,0.641666666666717,-0.255172413793017,0.645833333333359,-0.262068965517112,0.650000000000000,-0.008333333333283,0.000000000000057,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000044,-0.000000000000000,0.013793103448235,1 +1806,1813,1818,2199,-0.255172413793236,0.604166666666641,-0.248275862069064,0.608333333333283,-0.241379310344930,0.604166666666641,-0.248275862069102,0.600000000000000,-0.008333333333283,0.000000000000044,0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000033,-0.000000000000000,-0.013793103448312,2 +1807,1812,1814,1819,-0.255172413793192,0.612499999999978,-0.248275862069064,0.608333333333283,-0.248275862069025,0.616666666666674,-0.241379310344897,0.612499999999978,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448289,0.008333333333391,-0.000000000000033,2 +1808,1813,1815,1820,-0.255172413793148,0.620833333333358,-0.248275862069025,0.616666666666674,-0.248275862068987,0.625000000000043,-0.241379310344864,0.620833333333358,-0.008333333333369,0.000000000000044,-0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448278,0.008333333333369,-0.000000000000033,2 +1809,1814,1816,1821,-0.255172413793104,0.629166666666685,-0.248275862068987,0.625000000000043,-0.248275862068949,0.633333333333326,-0.241379310344832,0.629166666666684,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448267,0.008333333333283,-0.000000000000033,2 +1810,1815,1817,1822,-0.255172413793061,0.637500000000021,-0.248275862068949,0.633333333333326,-0.248275862068911,0.641666666666717,-0.241379310344799,0.637500000000021,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448256,0.008333333333391,-0.000000000000033,2 +1811,1816,1823,11869,-0.255172413793017,0.645833333333359,-0.248275862068911,0.641666666666717,-0.241379310344766,0.645833333333359,-0.248275862068872,0.650000000000000,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448256,0.008333333333283,-0.000000000000033,-0.000000000000000,0.013793103448245,1 +1812,1819,1824,2213,-0.241379310344930,0.604166666666641,-0.234482758620762,0.608333333333283,-0.227586206896623,0.604166666666641,-0.234482758620790,0.600000000000000,-0.008333333333283,0.000000000000033,0.000000000000000,0.013793103448302,0.008333333333283,-0.000000000000023,-0.000000000000000,-0.013793103448312,2 +1813,1818,1820,1825,-0.241379310344897,0.612499999999978,-0.234482758620762,0.608333333333283,-0.234482758620735,0.616666666666674,-0.227586206896600,0.612499999999978,-0.008333333333391,0.000000000000033,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448292,0.008333333333391,-0.000000000000023,2 +1814,1819,1821,1826,-0.241379310344864,0.620833333333358,-0.234482758620735,0.616666666666674,-0.234482758620707,0.625000000000043,-0.227586206896577,0.620833333333358,-0.008333333333369,0.000000000000033,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448283,0.008333333333369,-0.000000000000023,2 +1815,1820,1822,1827,-0.241379310344832,0.629166666666684,-0.234482758620707,0.625000000000043,-0.234482758620679,0.633333333333326,-0.227586206896554,0.629166666666685,-0.008333333333283,0.000000000000033,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000023,2 +1816,1821,1823,1828,-0.241379310344799,0.637500000000021,-0.234482758620679,0.633333333333326,-0.234482758620651,0.641666666666717,-0.227586206896531,0.637500000000021,-0.008333333333391,0.000000000000033,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000023,2 +1817,1822,1829,11869,-0.241379310344766,0.645833333333359,-0.234482758620651,0.641666666666717,-0.227586206896508,0.645833333333359,-0.234482758620623,0.650000000000000,-0.008333333333283,0.000000000000033,0.000000000000000,-0.013793103448263,0.008333333333283,-0.000000000000023,-0.000000000000000,0.013793103448254,1 +1818,1825,1830,2227,-0.227586206896623,0.604166666666641,-0.220689655172459,0.608333333333283,-0.213793103448313,0.604166666666641,-0.220689655172476,0.600000000000000,-0.008333333333283,0.000000000000023,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000011,-0.000000000000000,-0.013793103448316,2 +1819,1824,1826,1831,-0.227586206896600,0.612499999999978,-0.220689655172459,0.608333333333283,-0.220689655172442,0.616666666666674,-0.213793103448302,0.612499999999978,-0.008333333333391,0.000000000000023,-0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448292,0.008333333333391,-0.000000000000011,2 +1820,1825,1827,1832,-0.227586206896577,0.620833333333358,-0.220689655172442,0.616666666666674,-0.220689655172426,0.625000000000043,-0.213793103448291,0.620833333333358,-0.008333333333369,0.000000000000023,0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448279,0.008333333333369,-0.000000000000011,2 +1821,1826,1828,1833,-0.227586206896554,0.629166666666685,-0.220689655172426,0.625000000000043,-0.220689655172409,0.633333333333326,-0.213793103448281,0.629166666666685,-0.008333333333283,0.000000000000023,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448267,0.008333333333283,-0.000000000000011,2 +1822,1827,1829,1834,-0.227586206896531,0.637500000000021,-0.220689655172409,0.633333333333326,-0.220689655172392,0.641666666666717,-0.213793103448270,0.637500000000021,-0.008333333333391,0.000000000000023,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448255,0.008333333333391,-0.000000000000011,2 +1823,1828,1835,11869,-0.227586206896508,0.645833333333359,-0.220689655172392,0.641666666666717,-0.213793103448259,0.645833333333359,-0.220689655172375,0.650000000000000,-0.008333333333283,0.000000000000023,-0.000000000000000,-0.013793103448255,0.008333333333283,-0.000000000000011,-0.000000000000000,0.013793103448243,1 +1488,1824,1831,2241,-0.200000000000000,0.604166666666641,-0.213793103448313,0.604166666666641,-0.206896551724154,0.608333333333283,-0.206896551724159,0.600000000000000,0.008333333333283,0.000000000000000,-0.008333333333283,0.000000000000011,-0.000000000000000,0.013793103448307,0.000000000000000,-0.013793103448318,2 +1489,1825,1830,1832,-0.200000000000000,0.612499999999978,-0.213793103448302,0.612499999999978,-0.206896551724154,0.608333333333283,-0.206896551724148,0.616666666666674,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000011,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448297,2 +1490,1826,1831,1833,-0.200000000000000,0.620833333333359,-0.213793103448291,0.620833333333358,-0.206896551724148,0.616666666666674,-0.206896551724143,0.625000000000043,0.008333333333369,-0.000000000000000,-0.008333333333369,0.000000000000011,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448286,2 +1491,1827,1832,1834,-0.200000000000000,0.629166666666685,-0.213793103448281,0.629166666666685,-0.206896551724143,0.625000000000043,-0.206896551724138,0.633333333333326,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000011,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448275,2 +1492,1828,1833,1835,-0.200000000000000,0.637500000000022,-0.213793103448270,0.637500000000021,-0.206896551724138,0.633333333333326,-0.206896551724132,0.641666666666717,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000011,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448264,2 +1493,1829,1834,11869,-0.200000000000000,0.645833333333359,-0.213793103448259,0.645833333333359,-0.206896551724132,0.641666666666717,-0.206896551724127,0.650000000000000,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000011,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448254,1 +24,1837,1850,3952,-0.600000000000000,0.407142857142835,-0.593103448275881,0.414285714285671,-0.586206896551762,0.407142857142836,-0.593103448275881,0.400000000000000,-0.014285714285669,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285672,0.000000000000000,-0.000000000000000,-0.013793103448238,2 +28,1836,1838,1851,-0.600000000000000,0.421428571428526,-0.593103448275881,0.414285714285671,-0.593103448275881,0.428571428571384,-0.586206896551762,0.421428571428529,-0.014285714285713,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285714,-0.000000000000000,2 +32,1837,1839,1852,-0.600000000000000,0.435714285714217,-0.593103448275881,0.428571428571384,-0.593103448275881,0.442857142857055,-0.586206896551762,0.435714285714223,-0.014285714285669,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000007,0.013793103448238,0.014285714285672,0.000000000000000,2 +36,1838,1840,1853,-0.600000000000000,0.449999999999886,-0.593103448275881,0.442857142857055,-0.593103448275881,0.457142857142726,-0.586206896551762,0.449999999999895,-0.014285714285669,-0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285672,0.000000000000000,2 +40,1839,1841,1854,-0.600000000000000,0.464285714285555,-0.593103448275881,0.457142857142726,-0.593103448275881,0.471428571428397,-0.586206896551762,0.464285714285568,-0.014285714285669,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285672,0.000000000000000,2 +44,1840,1842,1855,-0.600000000000000,0.478571428571225,-0.593103448275881,0.471428571428397,-0.593103448275881,0.485714285714068,-0.586206896551762,0.478571428571240,-0.014285714285669,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285672,-0.000000000000000,2 +48,1841,1843,1856,-0.600000000000000,0.492857142856910,-0.593103448275881,0.485714285714068,-0.593103448275881,0.499999999999770,-0.586206896551762,0.492857142856928,-0.014285714285702,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285703,0.000000000000000,2 +52,1842,1844,1857,-0.600000000000000,0.507142857142625,-0.593103448275881,0.499999999999770,-0.593103448275881,0.514285714285495,-0.586206896551762,0.507142857142641,-0.014285714285727,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285723,0.000000000000000,2 +56,1843,1845,1858,-0.600000000000000,0.521428571428368,-0.593103448275881,0.514285714285495,-0.593103448275881,0.528571428571252,-0.586206896551762,0.521428571428379,-0.014285714285759,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285753,0.000000000000000,2 +60,1844,1846,1859,-0.600000000000000,0.535714285714122,-0.593103448275881,0.528571428571252,-0.593103448275881,0.542857142857000,-0.586206896551762,0.535714285714129,-0.014285714285750,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285747,0.000000000000000,2 +64,1845,1847,1860,-0.600000000000000,0.549999999999875,-0.593103448275881,0.542857142857000,-0.593103448275881,0.557142857142755,-0.586206896551762,0.549999999999880,-0.014285714285756,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000003,0.013793103448238,0.014285714285753,0.000000000000000,2 +68,1846,1848,1861,-0.600000000000000,0.564285714285631,-0.593103448275881,0.557142857142755,-0.593103448275881,0.571428571428510,-0.586206896551762,0.564285714285633,-0.014285714285756,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285754,0.000000000000000,2 +72,1847,1849,1862,-0.600000000000000,0.578571428571386,-0.593103448275881,0.571428571428510,-0.593103448275881,0.585714285714262,-0.586206896551762,0.578571428571386,-0.014285714285753,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000001,0.013793103448238,0.014285714285752,0.000000000000000,2 +76,1662,1848,1863,-0.600000000000000,0.592857142857131,-0.593103448275881,0.600000000000000,-0.593103448275881,0.585714285714262,-0.586206896551762,0.592857142857131,-0.014285714285738,0.000000000000000,0.000000000000000,0.013793103448238,-0.000000000000001,-0.013793103448238,0.014285714285738,-0.000000000000000,2 +1836,1851,1864,3893,-0.586206896551762,0.407142857142836,-0.579310344827643,0.414285714285674,-0.572413793103525,0.407142857142838,-0.579310344827643,0.400000000000000,-0.014285714285672,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285675,0.000000000000000,-0.000000000000000,-0.013793103448238,2 +1837,1850,1852,1865,-0.586206896551762,0.421428571428529,-0.579310344827643,0.414285714285674,-0.579310344827643,0.428571428571389,-0.572413793103524,0.421428571428533,-0.014285714285714,0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285716,-0.000000000000000,2 +1838,1851,1853,1866,-0.586206896551762,0.435714285714223,-0.579310344827643,0.428571428571389,-0.579310344827644,0.442857142857063,-0.572413793103525,0.435714285714229,-0.014285714285672,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000008,0.013793103448238,0.014285714285676,0.000000000000000,2 +1839,1852,1854,1867,-0.586206896551762,0.449999999999895,-0.579310344827644,0.442857142857063,-0.579310344827643,0.457142857142737,-0.572413793103525,0.449999999999904,-0.014285714285672,-0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285676,-0.000000000000000,2 +1840,1853,1855,1868,-0.586206896551762,0.464285714285568,-0.579310344827643,0.457142857142737,-0.579310344827643,0.471428571428411,-0.572413793103525,0.464285714285580,-0.014285714285672,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285676,0.000000000000000,2 +1841,1854,1856,1869,-0.586206896551762,0.478571428571240,-0.579310344827643,0.471428571428411,-0.579310344827643,0.485714285714085,-0.572413793103525,0.478571428571255,-0.014285714285672,0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285675,0.000000000000000,2 +1842,1855,1857,1870,-0.586206896551762,0.492857142856928,-0.579310344827643,0.485714285714085,-0.579310344827643,0.499999999999789,-0.572413793103525,0.492857142856945,-0.014285714285703,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285705,0.000000000000000,2 +1843,1856,1858,1871,-0.586206896551762,0.507142857142641,-0.579310344827643,0.499999999999789,-0.579310344827643,0.514285714285510,-0.572413793103525,0.507142857142657,-0.014285714285723,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285719,0.000000000000000,2 +1844,1857,1859,1872,-0.586206896551762,0.521428571428379,-0.579310344827643,0.514285714285510,-0.579310344827643,0.528571428571260,-0.572413793103525,0.521428571428391,-0.014285714285753,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285748,0.000000000000000,2 +1845,1858,1860,1873,-0.586206896551762,0.535714285714129,-0.579310344827643,0.528571428571260,-0.579310344827643,0.542857142857006,-0.572413793103525,0.535714285714137,-0.014285714285747,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285745,0.000000000000000,2 +1846,1859,1861,1874,-0.586206896551762,0.549999999999880,-0.579310344827643,0.542857142857006,-0.579310344827643,0.557142857142759,-0.572413793103525,0.549999999999885,-0.014285714285753,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285751,0.000000000000000,2 +1847,1860,1862,1875,-0.586206896551762,0.564285714285633,-0.579310344827643,0.557142857142759,-0.579310344827643,0.571428571428511,-0.572413793103525,0.564285714285636,-0.014285714285754,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285751,0.000000000000000,2 +1848,1861,1863,1876,-0.586206896551762,0.578571428571386,-0.579310344827643,0.571428571428511,-0.579310344827643,0.585714285714262,-0.572413793103525,0.578571428571386,-0.014285714285752,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285751,0.000000000000000,2 +1668,1849,1862,1877,-0.579310344827643,0.600000000000000,-0.586206896551762,0.592857142857131,-0.579310344827643,0.585714285714262,-0.572413793103525,0.592857142857131,0.000000000000000,0.013793103448238,-0.014285714285738,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285738,-0.000000000000000,2 +1850,1865,1878,3834,-0.572413793103525,0.407142857142838,-0.565517241379406,0.414285714285677,-0.558620689655287,0.407142857142839,-0.565517241379406,0.400000000000000,-0.014285714285675,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285678,0.000000000000000,-0.000000000000000,-0.013793103448238,2 +1851,1864,1866,1879,-0.572413793103524,0.421428571428533,-0.565517241379406,0.414285714285677,-0.565517241379406,0.428571428571393,-0.558620689655287,0.421428571428537,-0.014285714285716,0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448237,0.014285714285717,0.000000000000000,2 +1852,1865,1867,1880,-0.572413793103525,0.435714285714229,-0.565517241379406,0.428571428571393,-0.565517241379406,0.442857142857070,-0.558620689655287,0.435714285714234,-0.014285714285676,-0.000000000000000,0.000000000000004,-0.013793103448237,-0.000000000000007,0.013793103448238,0.014285714285679,-0.000000000000000,2 +1853,1866,1868,1881,-0.572413793103525,0.449999999999904,-0.565517241379406,0.442857142857070,-0.565517241379406,0.457142857142748,-0.558620689655287,0.449999999999913,-0.014285714285676,0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285679,0.000000000000000,2 +1854,1867,1869,1882,-0.572413793103525,0.464285714285580,-0.565517241379406,0.457142857142748,-0.565517241379406,0.471428571428425,-0.558620689655287,0.464285714285592,-0.014285714285676,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285679,0.000000000000000,2 +1855,1868,1870,1883,-0.572413793103525,0.478571428571255,-0.565517241379406,0.471428571428425,-0.565517241379406,0.485714285714101,-0.558620689655287,0.478571428571271,-0.014285714285675,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285678,-0.000000000000000,2 +1856,1869,1871,1884,-0.572413793103525,0.492857142856945,-0.565517241379406,0.485714285714101,-0.565517241379406,0.499999999999807,-0.558620689655287,0.492857142856963,-0.014285714285705,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285706,0.000000000000000,2 +1857,1870,1872,1885,-0.572413793103525,0.507142857142657,-0.565517241379406,0.499999999999807,-0.565517241379406,0.514285714285524,-0.558620689655287,0.507142857142674,-0.014285714285719,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285715,0.000000000000000,2 +1858,1871,1873,1886,-0.572413793103525,0.521428571428391,-0.565517241379406,0.514285714285524,-0.565517241379406,0.528571428571269,-0.558620689655287,0.521428571428403,-0.014285714285748,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285742,0.000000000000000,2 +1859,1872,1874,1887,-0.572413793103525,0.535714285714137,-0.565517241379406,0.528571428571269,-0.565517241379406,0.542857142857013,-0.558620689655287,0.535714285714145,-0.014285714285745,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285743,-0.000000000000000,2 +1860,1873,1875,1888,-0.572413793103525,0.549999999999885,-0.565517241379406,0.542857142857013,-0.565517241379406,0.557142857142762,-0.558620689655287,0.549999999999890,-0.014285714285751,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285748,0.000000000000000,2 +1861,1874,1876,1889,-0.572413793103525,0.564285714285636,-0.565517241379406,0.557142857142762,-0.565517241379406,0.571428571428512,-0.558620689655287,0.564285714285638,-0.014285714285751,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285748,0.000000000000000,2 +1862,1875,1877,1890,-0.572413793103525,0.578571428571386,-0.565517241379406,0.571428571428512,-0.565517241379406,0.585714285714261,-0.558620689655287,0.578571428571387,-0.014285714285751,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285749,0.000000000000000,2 +1674,1863,1876,1891,-0.565517241379406,0.600000000000000,-0.572413793103525,0.592857142857131,-0.565517241379406,0.585714285714261,-0.558620689655287,0.592857142857131,0.000000000000000,0.013793103448238,-0.014285714285738,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285739,-0.000000000000000,2 +1864,1879,1892,3775,-0.558620689655287,0.407142857142839,-0.551724137931168,0.414285714285680,-0.544827586207049,0.407142857142841,-0.551724137931168,0.400000000000000,-0.014285714285678,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285681,0.000000000000000,-0.000000000000000,-0.013793103448238,2 +1865,1878,1880,1893,-0.558620689655287,0.421428571428537,-0.551724137931168,0.414285714285680,-0.551724137931168,0.428571428571397,-0.544827586207049,0.421428571428540,-0.014285714285717,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285718,0.000000000000000,2 +1866,1879,1881,1894,-0.558620689655287,0.435714285714234,-0.551724137931168,0.428571428571397,-0.551724137931168,0.442857142857078,-0.544827586207049,0.435714285714241,-0.014285714285679,0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000008,0.013793103448238,0.014285714285682,-0.000000000000000,2 +1867,1880,1882,1895,-0.558620689655287,0.449999999999913,-0.551724137931168,0.442857142857078,-0.551724137931168,0.457142857142758,-0.544827586207049,0.449999999999923,-0.014285714285679,-0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285682,0.000000000000000,2 +1868,1881,1883,1896,-0.558620689655287,0.464285714285592,-0.551724137931168,0.457142857142758,-0.551724137931168,0.471428571428439,-0.544827586207049,0.464285714285605,-0.014285714285679,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285682,0.000000000000000,2 +1869,1882,1884,1897,-0.558620689655287,0.478571428571271,-0.551724137931168,0.471428571428439,-0.551724137931168,0.485714285714118,-0.544827586207049,0.478571428571286,-0.014285714285678,0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285681,0.000000000000000,2 +1870,1883,1885,1898,-0.558620689655287,0.492857142856963,-0.551724137931168,0.485714285714118,-0.551724137931168,0.499999999999825,-0.544827586207049,0.492857142856981,-0.014285714285706,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285708,0.000000000000000,2 +1871,1884,1886,1899,-0.558620689655287,0.507142857142674,-0.551724137931168,0.499999999999825,-0.551724137931168,0.514285714285539,-0.544827586207049,0.507142857142690,-0.014285714285715,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285712,0.000000000000000,2 +1872,1885,1887,1900,-0.558620689655287,0.521428571428403,-0.551724137931168,0.514285714285539,-0.551724137931168,0.528571428571278,-0.544827586207049,0.521428571428414,-0.014285714285742,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285736,0.000000000000000,2 +1873,1886,1888,1901,-0.558620689655287,0.535714285714145,-0.551724137931168,0.528571428571278,-0.551724137931168,0.542857142857019,-0.544827586207049,0.535714285714153,-0.014285714285743,0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285740,0.000000000000000,2 +1874,1887,1889,1902,-0.558620689655287,0.549999999999890,-0.551724137931168,0.542857142857019,-0.551724137931168,0.557142857142766,-0.544827586207049,0.549999999999895,-0.014285714285748,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285745,0.000000000000000,2 +1875,1888,1890,1903,-0.558620689655287,0.564285714285638,-0.551724137931168,0.557142857142766,-0.551724137931168,0.571428571428513,-0.544827586207049,0.564285714285641,-0.014285714285748,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285745,0.000000000000000,2 +1876,1889,1891,1904,-0.558620689655287,0.578571428571387,-0.551724137931168,0.571428571428513,-0.551724137931168,0.585714285714261,-0.544827586207049,0.578571428571387,-0.014285714285749,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285748,0.000000000000000,2 +1680,1877,1890,1905,-0.551724137931168,0.600000000000000,-0.558620689655287,0.592857142857131,-0.551724137931168,0.585714285714261,-0.544827586207049,0.592857142857131,0.000000000000000,0.013793103448238,-0.014285714285739,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285739,-0.000000000000000,2 +1878,1893,1906,3716,-0.544827586207049,0.407142857142841,-0.537931034482930,0.414285714285683,-0.531034482758811,0.407142857142842,-0.537931034482930,0.400000000000000,-0.014285714285681,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285684,-0.000000000000000,-0.000000000000000,-0.013793103448238,2 +1879,1892,1894,1907,-0.544827586207049,0.421428571428540,-0.537931034482930,0.414285714285683,-0.537931034482930,0.428571428571402,-0.531034482758811,0.421428571428544,-0.014285714285718,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285720,0.000000000000000,2 +1880,1893,1895,1908,-0.544827586207049,0.435714285714241,-0.537931034482930,0.428571428571402,-0.537931034482930,0.442857142857085,-0.531034482758811,0.435714285714246,-0.014285714285682,0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000007,0.013793103448238,0.014285714285685,0.000000000000000,2 +1881,1894,1896,1909,-0.544827586207049,0.449999999999923,-0.537931034482930,0.442857142857085,-0.537931034482930,0.457142857142769,-0.531034482758811,0.449999999999932,-0.014285714285682,-0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285686,0.000000000000000,2 +1882,1895,1897,1910,-0.544827586207049,0.464285714285605,-0.537931034482930,0.457142857142769,-0.537931034482930,0.471428571428453,-0.531034482758811,0.464285714285617,-0.014285714285682,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285685,0.000000000000000,2 +1883,1896,1898,1911,-0.544827586207049,0.478571428571286,-0.537931034482930,0.471428571428453,-0.537931034482930,0.485714285714135,-0.531034482758811,0.478571428571302,-0.014285714285681,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285684,0.000000000000000,2 +1884,1897,1899,1912,-0.544827586207049,0.492857142856981,-0.537931034482930,0.485714285714135,-0.537931034482930,0.499999999999844,-0.531034482758811,0.492857142856998,-0.014285714285708,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285709,0.000000000000000,2 +1885,1898,1900,1913,-0.544827586207049,0.507142857142690,-0.537931034482930,0.499999999999844,-0.537931034482930,0.514285714285553,-0.531034482758811,0.507142857142707,-0.014285714285712,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285708,0.000000000000000,2 +1886,1899,1901,1914,-0.544827586207049,0.521428571428414,-0.537931034482930,0.514285714285553,-0.537931034482930,0.528571428571287,-0.531034482758811,0.521428571428426,-0.014285714285736,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285731,-0.000000000000000,2 +1887,1900,1902,1915,-0.544827586207049,0.535714285714153,-0.537931034482930,0.528571428571287,-0.537931034482930,0.542857142857026,-0.531034482758811,0.535714285714160,-0.014285714285740,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285738,0.000000000000000,2 +1888,1901,1903,1916,-0.544827586207049,0.549999999999895,-0.537931034482930,0.542857142857026,-0.537931034482930,0.557142857142770,-0.531034482758811,0.549999999999900,-0.014285714285745,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000003,0.013793103448238,0.014285714285742,-0.000000000000000,2 +1889,1902,1904,1917,-0.544827586207049,0.564285714285641,-0.537931034482930,0.557142857142770,-0.537931034482930,0.571428571428514,-0.531034482758811,0.564285714285643,-0.014285714285745,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285743,0.000000000000000,2 +1890,1903,1905,1918,-0.544827586207049,0.578571428571387,-0.537931034482930,0.571428571428514,-0.537931034482930,0.585714285714261,-0.531034482758811,0.578571428571387,-0.014285714285748,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285747,0.000000000000000,2 +1686,1891,1904,1919,-0.537931034482930,0.600000000000000,-0.544827586207049,0.592857142857131,-0.537931034482930,0.585714285714261,-0.531034482758811,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285739,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285739,-0.000000000000000,2 +1892,1907,1920,3657,-0.531034482758811,0.407142857142842,-0.524137931034693,0.414285714285686,-0.517241379310574,0.407142857142844,-0.524137931034693,0.400000000000000,-0.014285714285684,0.000000000000000,-0.000000000000003,0.013793103448237,0.014285714285687,0.000000000000000,-0.000000000000000,-0.013793103448238,2 +1893,1906,1908,1921,-0.531034482758811,0.421428571428544,-0.524137931034693,0.414285714285686,-0.524137931034693,0.428571428571406,-0.517241379310574,0.421428571428548,-0.014285714285720,-0.000000000000000,0.000000000000003,-0.013793103448237,-0.000000000000004,0.013793103448238,0.014285714285721,0.000000000000000,2 +1894,1907,1909,1922,-0.531034482758811,0.435714285714246,-0.524137931034693,0.428571428571406,-0.524137931034693,0.442857142857093,-0.517241379310574,0.435714285714252,-0.014285714285685,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000008,0.013793103448238,0.014285714285688,0.000000000000000,2 +1895,1908,1910,1923,-0.531034482758811,0.449999999999932,-0.524137931034693,0.442857142857093,-0.524137931034693,0.457142857142780,-0.517241379310574,0.449999999999941,-0.014285714285686,-0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285689,0.000000000000000,2 +1896,1909,1911,1924,-0.531034482758811,0.464285714285617,-0.524137931034693,0.457142857142780,-0.524137931034693,0.471428571428467,-0.517241379310574,0.464285714285629,-0.014285714285685,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285688,0.000000000000000,2 +1897,1910,1912,1925,-0.531034482758811,0.478571428571302,-0.524137931034693,0.471428571428467,-0.524137931034693,0.485714285714152,-0.517241379310574,0.478571428571317,-0.014285714285684,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285687,-0.000000000000000,2 +1898,1911,1913,1926,-0.531034482758811,0.492857142856998,-0.524137931034693,0.485714285714152,-0.524137931034693,0.499999999999862,-0.517241379310574,0.492857142857016,-0.014285714285709,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285711,0.000000000000000,2 +1899,1912,1914,1927,-0.531034482758811,0.507142857142707,-0.524137931034693,0.499999999999862,-0.524137931034693,0.514285714285568,-0.517241379310574,0.507142857142723,-0.014285714285708,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285704,0.000000000000000,2 +1900,1913,1915,1928,-0.531034482758811,0.521428571428426,-0.524137931034693,0.514285714285568,-0.524137931034693,0.528571428571296,-0.517241379310574,0.521428571428438,-0.014285714285731,0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285725,-0.000000000000000,2 +1901,1914,1916,1929,-0.531034482758811,0.535714285714160,-0.524137931034693,0.528571428571296,-0.524137931034693,0.542857142857032,-0.517241379310574,0.535714285714168,-0.014285714285738,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285735,0.000000000000000,2 +1902,1915,1917,1930,-0.531034482758811,0.549999999999900,-0.524137931034693,0.542857142857032,-0.524137931034693,0.557142857142773,-0.517241379310574,0.549999999999905,-0.014285714285742,0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285740,0.000000000000000,2 +1903,1916,1918,1931,-0.531034482758811,0.564285714285643,-0.524137931034693,0.557142857142773,-0.524137931034693,0.571428571428514,-0.517241379310574,0.564285714285645,-0.014285714285743,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285740,0.000000000000000,2 +1904,1917,1919,1932,-0.531034482758811,0.578571428571387,-0.524137931034693,0.571428571428514,-0.524137931034693,0.585714285714261,-0.517241379310574,0.578571428571388,-0.014285714285747,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285746,0.000000000000000,2 +1692,1905,1918,1933,-0.524137931034693,0.600000000000000,-0.531034482758811,0.592857142857130,-0.524137931034693,0.585714285714261,-0.517241379310574,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285739,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285740,-0.000000000000000,2 +1906,1921,1934,3598,-0.517241379310574,0.407142857142844,-0.510344827586455,0.414285714285689,-0.503448275862336,0.407142857142845,-0.510344827586455,0.400000000000000,-0.014285714285687,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285690,0.000000000000000,-0.000000000000000,-0.013793103448238,2 +1907,1920,1922,1935,-0.517241379310574,0.421428571428548,-0.510344827586455,0.414285714285689,-0.510344827586455,0.428571428571410,-0.503448275862336,0.421428571428551,-0.014285714285721,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285722,0.000000000000000,2 +1908,1921,1923,1936,-0.517241379310574,0.435714285714252,-0.510344827586455,0.428571428571410,-0.510344827586455,0.442857142857100,-0.503448275862336,0.435714285714258,-0.014285714285688,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000007,0.013793103448238,0.014285714285691,0.000000000000000,2 +1909,1922,1924,1937,-0.517241379310574,0.449999999999941,-0.510344827586455,0.442857142857100,-0.510344827586455,0.457142857142791,-0.503448275862336,0.449999999999950,-0.014285714285689,-0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285692,-0.000000000000000,2 +1910,1923,1925,1938,-0.517241379310574,0.464285714285629,-0.510344827586455,0.457142857142791,-0.510344827586455,0.471428571428481,-0.503448275862336,0.464285714285642,-0.014285714285688,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285691,0.000000000000000,2 +1911,1924,1926,1939,-0.517241379310574,0.478571428571317,-0.510344827586455,0.471428571428481,-0.510344827586455,0.485714285714169,-0.503448275862336,0.478571428571332,-0.014285714285687,0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285690,-0.000000000000000,2 +1912,1925,1927,1940,-0.517241379310574,0.492857142857016,-0.510344827586455,0.485714285714169,-0.510344827586455,0.499999999999880,-0.503448275862336,0.492857142857033,-0.014285714285711,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285712,0.000000000000000,2 +1913,1926,1928,1941,-0.517241379310574,0.507142857142723,-0.510344827586455,0.499999999999880,-0.510344827586455,0.514285714285583,-0.503448275862336,0.507142857142740,-0.014285714285704,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285701,0.000000000000000,2 +1914,1927,1929,1942,-0.517241379310574,0.521428571428438,-0.510344827586455,0.514285714285583,-0.510344827586455,0.528571428571305,-0.503448275862336,0.521428571428450,-0.014285714285725,0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285719,0.000000000000000,2 +1915,1928,1930,1943,-0.517241379310574,0.535714285714168,-0.510344827586455,0.528571428571305,-0.510344827586455,0.542857142857039,-0.503448275862336,0.535714285714176,-0.014285714285735,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285732,0.000000000000000,2 +1916,1929,1931,1944,-0.517241379310574,0.549999999999905,-0.510344827586455,0.542857142857039,-0.510344827586455,0.557142857142777,-0.503448275862336,0.549999999999910,-0.014285714285740,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285737,0.000000000000000,2 +1917,1930,1932,1945,-0.517241379310574,0.564285714285645,-0.510344827586455,0.557142857142777,-0.510344827586455,0.571428571428515,-0.503448275862336,0.564285714285647,-0.014285714285740,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285737,0.000000000000000,2 +1918,1931,1933,1946,-0.517241379310574,0.578571428571388,-0.510344827586455,0.571428571428515,-0.510344827586455,0.585714285714261,-0.503448275862336,0.578571428571388,-0.014285714285746,-0.000000000000000,0.000000000000001,-0.013793103448238,-0.000000000000000,0.013793103448238,0.014285714285745,0.000000000000000,2 +1698,1919,1932,1947,-0.510344827586455,0.600000000000000,-0.517241379310574,0.592857142857130,-0.510344827586455,0.585714285714261,-0.503448275862336,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285740,0.000000000000000,0.000000000000000,-0.013793103448238,0.014285714285739,-0.000000000000000,2 +1920,1935,1948,3539,-0.503448275862336,0.407142857142845,-0.496551724138217,0.414285714285692,-0.489655172414098,0.407142857142847,-0.496551724138217,0.400000000000000,-0.014285714285690,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285693,-0.000000000000000,-0.000000000000000,-0.013793103448238,2 +1921,1934,1936,1949,-0.503448275862336,0.421428571428551,-0.496551724138217,0.414285714285692,-0.496551724138217,0.428571428571415,-0.489655172414098,0.421428571428555,-0.014285714285722,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285724,0.000000000000000,2 +1922,1935,1937,1950,-0.503448275862336,0.435714285714258,-0.496551724138217,0.428571428571415,-0.496551724138217,0.442857142857108,-0.489655172414098,0.435714285714264,-0.014285714285691,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000007,0.013793103448238,0.014285714285695,0.000000000000000,2 +1923,1936,1938,1951,-0.503448275862336,0.449999999999950,-0.496551724138217,0.442857142857108,-0.496551724138217,0.457142857142801,-0.489655172414098,0.449999999999959,-0.014285714285692,0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285695,-0.000000000000000,2 +1924,1937,1939,1952,-0.503448275862336,0.464285714285642,-0.496551724138217,0.457142857142801,-0.496551724138217,0.471428571428494,-0.489655172414098,0.464285714285654,-0.014285714285691,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285695,0.000000000000000,2 +1925,1938,1940,1953,-0.503448275862336,0.478571428571332,-0.496551724138217,0.471428571428494,-0.496551724138217,0.485714285714186,-0.489655172414098,0.478571428571348,-0.014285714285690,0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285693,0.000000000000000,2 +1926,1939,1941,1954,-0.503448275862336,0.492857142857033,-0.496551724138217,0.485714285714186,-0.496551724138217,0.499999999999899,-0.489655172414098,0.492857142857051,-0.014285714285712,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285713,0.000000000000000,2 +1927,1940,1942,1955,-0.503448275862336,0.507142857142740,-0.496551724138217,0.499999999999899,-0.496551724138217,0.514285714285597,-0.489655172414098,0.507142857142756,-0.014285714285701,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285697,0.000000000000000,2 +1928,1941,1943,1956,-0.503448275862336,0.521428571428450,-0.496551724138217,0.514285714285597,-0.496551724138217,0.528571428571314,-0.489655172414098,0.521428571428462,-0.014285714285719,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285714,0.000000000000000,2 +1929,1942,1944,1957,-0.503448275862336,0.535714285714176,-0.496551724138217,0.528571428571314,-0.496551724138217,0.542857142857045,-0.489655172414098,0.535714285714183,-0.014285714285732,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285730,0.000000000000000,2 +1930,1943,1945,1958,-0.503448275862336,0.549999999999910,-0.496551724138217,0.542857142857045,-0.496551724138217,0.557142857142781,-0.489655172414098,0.549999999999915,-0.014285714285737,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285734,0.000000000000000,2 +1931,1944,1946,1959,-0.503448275862336,0.564285714285647,-0.496551724138217,0.557142857142781,-0.496551724138217,0.571428571428516,-0.489655172414098,0.564285714285650,-0.014285714285737,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285734,-0.000000000000000,2 +1932,1945,1947,1960,-0.503448275862336,0.578571428571388,-0.496551724138217,0.571428571428516,-0.496551724138217,0.585714285714260,-0.489655172414098,0.578571428571389,-0.014285714285745,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285743,0.000000000000000,2 +1704,1933,1946,1961,-0.496551724138217,0.600000000000000,-0.503448275862336,0.592857142857130,-0.496551724138217,0.585714285714260,-0.489655172414098,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285739,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285740,-0.000000000000000,2 +1934,1949,1962,3480,-0.489655172414098,0.407142857142847,-0.482758620689979,0.414285714285695,-0.475862068965861,0.407142857142848,-0.482758620689980,0.400000000000000,-0.014285714285693,0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285696,-0.000000000000000,-0.000000000000000,-0.013793103448238,2 +1935,1948,1950,1963,-0.489655172414098,0.421428571428555,-0.482758620689979,0.414285714285695,-0.482758620689980,0.428571428571419,-0.475862068965861,0.421428571428559,-0.014285714285724,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285725,0.000000000000000,2 +1936,1949,1951,1964,-0.489655172414098,0.435714285714264,-0.482758620689980,0.428571428571419,-0.482758620689980,0.442857142857115,-0.475862068965861,0.435714285714270,-0.014285714285695,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000008,0.013793103448238,0.014285714285698,0.000000000000000,2 +1937,1950,1952,1965,-0.489655172414098,0.449999999999959,-0.482758620689980,0.442857142857115,-0.482758620689979,0.457142857142812,-0.475862068965861,0.449999999999968,-0.014285714285695,0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285699,-0.000000000000000,2 +1938,1951,1953,1966,-0.489655172414098,0.464285714285654,-0.482758620689979,0.457142857142812,-0.482758620689980,0.471428571428508,-0.475862068965861,0.464285714285667,-0.014285714285695,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285698,0.000000000000000,2 +1939,1952,1954,1967,-0.489655172414098,0.478571428571348,-0.482758620689980,0.471428571428508,-0.482758620689980,0.485714285714203,-0.475862068965861,0.478571428571363,-0.014285714285693,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285696,0.000000000000000,2 +1940,1953,1955,1968,-0.489655172414098,0.492857142857051,-0.482758620689980,0.485714285714203,-0.482758620689980,0.499999999999917,-0.475862068965861,0.492857142857069,-0.014285714285713,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285715,0.000000000000000,2 +1941,1954,1956,1969,-0.489655172414098,0.507142857142756,-0.482758620689980,0.499999999999917,-0.482758620689980,0.514285714285612,-0.475862068965861,0.507142857142773,-0.014285714285697,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285693,0.000000000000000,2 +1942,1955,1957,1970,-0.489655172414098,0.521428571428462,-0.482758620689980,0.514285714285612,-0.482758620689980,0.528571428571323,-0.475862068965861,0.521428571428473,-0.014285714285714,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285708,0.000000000000000,2 +1943,1956,1958,1971,-0.489655172414098,0.535714285714183,-0.482758620689980,0.528571428571323,-0.482758620689980,0.542857142857051,-0.475862068965861,0.535714285714191,-0.014285714285730,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285727,0.000000000000000,2 +1944,1957,1959,1972,-0.489655172414098,0.549999999999915,-0.482758620689980,0.542857142857051,-0.482758620689980,0.557142857142784,-0.475862068965861,0.549999999999920,-0.014285714285734,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285732,0.000000000000000,2 +1945,1958,1960,1973,-0.489655172414098,0.564285714285650,-0.482758620689980,0.557142857142784,-0.482758620689979,0.571428571428517,-0.475862068965861,0.564285714285652,-0.014285714285734,0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285732,0.000000000000000,2 +1946,1959,1961,1974,-0.489655172414098,0.578571428571389,-0.482758620689979,0.571428571428517,-0.482758620689979,0.585714285714260,-0.475862068965861,0.578571428571389,-0.014285714285743,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285742,-0.000000000000000,2 +1710,1947,1960,1975,-0.482758620689980,0.600000000000000,-0.489655172414098,0.592857142857130,-0.482758620689979,0.585714285714260,-0.475862068965861,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285740,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285740,0.000000000000000,2 +1948,1963,1976,3421,-0.475862068965861,0.407142857142848,-0.468965517241742,0.414285714285698,-0.462068965517623,0.407142857142850,-0.468965517241742,0.400000000000000,-0.014285714285696,0.000000000000000,-0.000000000000003,0.013793103448237,0.014285714285699,0.000000000000000,-0.000000000000000,-0.013793103448238,2 +1949,1962,1964,1977,-0.475862068965861,0.421428571428559,-0.468965517241742,0.414285714285698,-0.468965517241742,0.428571428571424,-0.462068965517623,0.421428571428562,-0.014285714285725,-0.000000000000000,0.000000000000003,-0.013793103448237,-0.000000000000005,0.013793103448238,0.014285714285727,-0.000000000000000,2 +1950,1963,1965,1978,-0.475862068965861,0.435714285714270,-0.468965517241742,0.428571428571424,-0.468965517241742,0.442857142857123,-0.462068965517623,0.435714285714276,-0.014285714285698,-0.000000000000000,0.000000000000005,-0.013793103448238,-0.000000000000008,0.013793103448238,0.014285714285701,0.000000000000000,2 +1951,1964,1966,1979,-0.475862068965861,0.449999999999968,-0.468965517241742,0.442857142857123,-0.468965517241742,0.457142857142823,-0.462068965517623,0.449999999999978,-0.014285714285699,0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285702,0.000000000000000,2 +1952,1965,1967,1980,-0.475862068965861,0.464285714285667,-0.468965517241742,0.457142857142823,-0.468965517241742,0.471428571428522,-0.462068965517623,0.464285714285679,-0.014285714285698,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285701,-0.000000000000000,2 +1953,1966,1968,1981,-0.475862068965861,0.478571428571363,-0.468965517241742,0.471428571428522,-0.468965517241742,0.485714285714220,-0.462068965517623,0.478571428571379,-0.014285714285696,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285699,0.000000000000000,2 +1954,1967,1969,1982,-0.475862068965861,0.492857142857069,-0.468965517241742,0.485714285714220,-0.468965517241742,0.499999999999935,-0.462068965517623,0.492857142857086,-0.014285714285715,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285717,0.000000000000000,2 +1955,1968,1970,1983,-0.475862068965861,0.507142857142773,-0.468965517241742,0.499999999999935,-0.468965517241742,0.514285714285627,-0.462068965517623,0.507142857142789,-0.014285714285693,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285689,0.000000000000000,2 +1956,1969,1971,1984,-0.475862068965861,0.521428571428473,-0.468965517241742,0.514285714285627,-0.468965517241742,0.528571428571332,-0.462068965517623,0.521428571428485,-0.014285714285708,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285702,-0.000000000000000,2 +1957,1970,1972,1985,-0.475862068965861,0.535714285714191,-0.468965517241742,0.528571428571332,-0.468965517241742,0.542857142857058,-0.462068965517623,0.535714285714199,-0.014285714285727,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285725,0.000000000000000,2 +1958,1971,1973,1986,-0.475862068965861,0.549999999999920,-0.468965517241742,0.542857142857058,-0.468965517241742,0.557142857142788,-0.462068965517623,0.549999999999925,-0.014285714285732,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285729,0.000000000000000,2 +1959,1972,1974,1987,-0.475862068965861,0.564285714285652,-0.468965517241742,0.557142857142788,-0.468965517241742,0.571428571428518,-0.462068965517623,0.564285714285655,-0.014285714285732,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285729,0.000000000000000,2 +1960,1973,1975,1988,-0.475862068965861,0.578571428571389,-0.468965517241742,0.571428571428518,-0.468965517241742,0.585714285714260,-0.462068965517623,0.578571428571389,-0.014285714285742,0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285741,-0.000000000000000,2 +1716,1961,1974,1989,-0.468965517241742,0.600000000000000,-0.475862068965861,0.592857142857130,-0.468965517241742,0.585714285714260,-0.462068965517623,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285740,-0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285740,0.000000000000000,2 +1962,1977,1990,3362,-0.462068965517623,0.407142857142850,-0.455172413793504,0.414285714285701,-0.448275862069385,0.407142857142851,-0.455172413793504,0.400000000000000,-0.014285714285699,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285702,-0.000000000000000,-0.000000000000000,-0.013793103448238,2 +1963,1976,1978,1991,-0.462068965517623,0.421428571428562,-0.455172413793504,0.414285714285701,-0.455172413793504,0.428571428571428,-0.448275862069385,0.421428571428566,-0.014285714285727,0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285728,0.000000000000000,2 +1964,1977,1979,1992,-0.462068965517623,0.435714285714276,-0.455172413793504,0.428571428571428,-0.455172413793504,0.442857142857130,-0.448275862069385,0.435714285714282,-0.014285714285701,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000007,0.013793103448238,0.014285714285704,-0.000000000000000,2 +1965,1978,1980,1993,-0.462068965517623,0.449999999999978,-0.455172413793504,0.442857142857130,-0.455172413793504,0.457142857142834,-0.448275862069385,0.449999999999987,-0.014285714285702,-0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285705,0.000000000000000,2 +1966,1979,1981,1994,-0.462068965517623,0.464285714285679,-0.455172413793504,0.457142857142834,-0.455172413793504,0.471428571428536,-0.448275862069385,0.464285714285691,-0.014285714285701,0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285704,0.000000000000000,2 +1967,1980,1982,1995,-0.462068965517623,0.478571428571379,-0.455172413793504,0.471428571428536,-0.455172413793504,0.485714285714236,-0.448275862069385,0.478571428571394,-0.014285714285699,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285702,-0.000000000000000,2 +1968,1981,1983,1996,-0.462068965517623,0.492857142857086,-0.455172413793504,0.485714285714236,-0.455172413793504,0.499999999999954,-0.448275862069385,0.492857142857104,-0.014285714285717,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285718,0.000000000000000,2 +1969,1982,1984,1997,-0.462068965517623,0.507142857142789,-0.455172413793504,0.499999999999954,-0.455172413793504,0.514285714285641,-0.448275862069385,0.507142857142806,-0.014285714285689,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285686,0.000000000000000,2 +1970,1983,1985,1998,-0.462068965517623,0.521428571428485,-0.455172413793504,0.514285714285641,-0.455172413793504,0.528571428571341,-0.448275862069385,0.521428571428497,-0.014285714285702,0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285696,0.000000000000000,2 +1971,1984,1986,1999,-0.462068965517623,0.535714285714199,-0.455172413793504,0.528571428571341,-0.455172413793504,0.542857142857064,-0.448275862069385,0.535714285714206,-0.014285714285725,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285722,0.000000000000000,2 +1972,1985,1987,2000,-0.462068965517623,0.549999999999925,-0.455172413793504,0.542857142857064,-0.455172413793504,0.557142857142792,-0.448275862069385,0.549999999999930,-0.014285714285729,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000003,0.013793103448238,0.014285714285726,-0.000000000000000,2 +1973,1986,1988,2001,-0.462068965517623,0.564285714285655,-0.455172413793504,0.557142857142792,-0.455172413793504,0.571428571428519,-0.448275862069385,0.564285714285657,-0.014285714285729,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285726,0.000000000000000,2 +1974,1987,1989,2002,-0.462068965517623,0.578571428571389,-0.455172413793504,0.571428571428519,-0.455172413793504,0.585714285714259,-0.448275862069385,0.578571428571389,-0.014285714285741,0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285739,0.000000000000000,2 +1722,1975,1988,2003,-0.455172413793504,0.600000000000000,-0.462068965517623,0.592857142857130,-0.455172413793504,0.585714285714259,-0.448275862069385,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285740,-0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285741,0.000000000000000,2 +1976,1991,2004,3303,-0.448275862069385,0.407142857142851,-0.441379310345266,0.414285714285704,-0.434482758621148,0.407142857142853,-0.441379310345266,0.400000000000000,-0.014285714285702,0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285705,0.000000000000000,-0.000000000000000,-0.013793103448238,2 +1977,1990,1992,2005,-0.448275862069385,0.421428571428566,-0.441379310345266,0.414285714285704,-0.441379310345266,0.428571428571432,-0.434482758621147,0.421428571428570,-0.014285714285728,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285729,-0.000000000000000,2 +1978,1991,1993,2006,-0.448275862069385,0.435714285714282,-0.441379310345266,0.428571428571432,-0.441379310345266,0.442857142857138,-0.434482758621148,0.435714285714288,-0.014285714285704,0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000008,0.013793103448237,0.014285714285707,0.000000000000000,2 +1979,1992,1994,2007,-0.448275862069385,0.449999999999987,-0.441379310345266,0.442857142857138,-0.441379310345266,0.457142857142845,-0.434482758621148,0.449999999999996,-0.014285714285705,-0.000000000000000,0.000000000000008,-0.013793103448237,-0.000000000000011,0.013793103448238,0.014285714285708,-0.000000000000000,2 +1980,1993,1995,2008,-0.448275862069385,0.464285714285691,-0.441379310345266,0.457142857142845,-0.441379310345266,0.471428571428550,-0.434482758621148,0.464285714285704,-0.014285714285704,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285707,-0.000000000000000,2 +1981,1994,1996,2009,-0.448275862069385,0.478571428571394,-0.441379310345266,0.471428571428550,-0.441379310345266,0.485714285714253,-0.434482758621148,0.478571428571410,-0.014285714285702,0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285705,0.000000000000000,2 +1982,1995,1997,2010,-0.448275862069385,0.492857142857104,-0.441379310345266,0.485714285714253,-0.441379310345266,0.499999999999972,-0.434482758621148,0.492857142857122,-0.014285714285718,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285719,0.000000000000000,2 +1983,1996,1998,2011,-0.448275862069385,0.507142857142806,-0.441379310345266,0.499999999999972,-0.441379310345266,0.514285714285656,-0.434482758621148,0.507142857142822,-0.014285714285686,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285682,0.000000000000000,2 +1984,1997,1999,2012,-0.448275862069385,0.521428571428497,-0.441379310345266,0.514285714285656,-0.441379310345266,0.528571428571350,-0.434482758621148,0.521428571428509,-0.014285714285696,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285691,0.000000000000000,2 +1985,1998,2000,2013,-0.448275862069385,0.535714285714206,-0.441379310345266,0.528571428571350,-0.441379310345266,0.542857142857071,-0.434482758621148,0.535714285714214,-0.014285714285722,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285720,-0.000000000000000,2 +1986,1999,2001,2014,-0.448275862069385,0.549999999999930,-0.441379310345266,0.542857142857071,-0.441379310345266,0.557142857142795,-0.434482758621148,0.549999999999936,-0.014285714285726,0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285724,0.000000000000000,2 +1987,2000,2002,2015,-0.448275862069385,0.564285714285657,-0.441379310345266,0.557142857142795,-0.441379310345266,0.571428571428520,-0.434482758621148,0.564285714285659,-0.014285714285726,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285723,-0.000000000000000,2 +1988,2001,2003,2016,-0.448275862069385,0.578571428571389,-0.441379310345266,0.571428571428520,-0.441379310345266,0.585714285714259,-0.434482758621147,0.578571428571390,-0.014285714285739,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285739,0.000000000000000,2 +1728,1989,2002,2017,-0.441379310345266,0.600000000000000,-0.448275862069385,0.592857142857130,-0.441379310345266,0.585714285714259,-0.434482758621148,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285741,-0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285741,0.000000000000000,2 +1990,2005,2018,3244,-0.434482758621148,0.407142857142853,-0.427586206897029,0.414285714285707,-0.420689655172910,0.407142857142854,-0.427586206897029,0.400000000000000,-0.014285714285705,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285708,-0.000000000000000,-0.000000000000000,-0.013793103448238,2 +1991,2004,2006,2019,-0.434482758621147,0.421428571428570,-0.427586206897029,0.414285714285707,-0.427586206897029,0.428571428571437,-0.420689655172910,0.421428571428573,-0.014285714285729,0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448237,0.014285714285731,0.000000000000000,2 +1992,2005,2007,2020,-0.434482758621148,0.435714285714288,-0.427586206897029,0.428571428571437,-0.427586206897029,0.442857142857145,-0.420689655172910,0.435714285714294,-0.014285714285707,-0.000000000000000,0.000000000000004,-0.013793103448237,-0.000000000000008,0.013793103448238,0.014285714285710,0.000000000000000,2 +1993,2006,2008,2021,-0.434482758621148,0.449999999999996,-0.427586206897029,0.442857142857145,-0.427586206897029,0.457142857142855,-0.420689655172910,0.450000000000005,-0.014285714285708,0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285712,0.000000000000000,2 +1994,2007,2009,2022,-0.434482758621148,0.464285714285704,-0.427586206897029,0.457142857142855,-0.427586206897029,0.471428571428564,-0.420689655172910,0.464285714285716,-0.014285714285707,0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285711,0.000000000000000,2 +1995,2008,2010,2023,-0.434482758621148,0.478571428571410,-0.427586206897029,0.471428571428564,-0.427586206897029,0.485714285714270,-0.420689655172910,0.478571428571425,-0.014285714285705,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285707,0.000000000000000,2 +1996,2009,2011,2024,-0.434482758621148,0.492857142857122,-0.427586206897029,0.485714285714270,-0.427586206897029,0.499999999999990,-0.420689655172910,0.492857142857139,-0.014285714285719,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285721,-0.000000000000000,2 +1997,2010,2012,2025,-0.434482758621148,0.507142857142822,-0.427586206897029,0.499999999999990,-0.427586206897029,0.514285714285671,-0.420689655172910,0.507142857142839,-0.014285714285682,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285679,0.000000000000000,2 +1998,2011,2013,2026,-0.434482758621148,0.521428571428509,-0.427586206897029,0.514285714285671,-0.427586206897029,0.528571428571359,-0.420689655172910,0.521428571428521,-0.014285714285691,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285685,-0.000000000000000,2 +1999,2012,2014,2027,-0.434482758621148,0.535714285714214,-0.427586206897029,0.528571428571359,-0.427586206897029,0.542857142857077,-0.420689655172910,0.535714285714222,-0.014285714285720,0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000007,0.013793103448238,0.014285714285717,0.000000000000000,2 +2000,2013,2015,2028,-0.434482758621148,0.549999999999936,-0.427586206897029,0.542857142857077,-0.427586206897029,0.557142857142799,-0.420689655172910,0.549999999999941,-0.014285714285724,-0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285721,0.000000000000000,2 +2001,2014,2016,2029,-0.434482758621148,0.564285714285659,-0.427586206897029,0.557142857142799,-0.427586206897029,0.571428571428521,-0.420689655172910,0.564285714285661,-0.014285714285723,0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285721,0.000000000000000,2 +2002,2015,2017,2030,-0.434482758621147,0.578571428571390,-0.427586206897029,0.571428571428521,-0.427586206897029,0.585714285714259,-0.420689655172910,0.578571428571390,-0.014285714285739,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285737,-0.000000000000000,2 +1734,2003,2016,2031,-0.427586206897029,0.600000000000000,-0.434482758621148,0.592857142857130,-0.427586206897029,0.585714285714259,-0.420689655172910,0.592857142857129,0.000000000000000,0.013793103448238,-0.014285714285741,-0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285741,0.000000000000000,2 +2004,2019,2032,3185,-0.420689655172910,0.407142857142854,-0.413793103448791,0.414285714285710,-0.406896551724672,0.407142857142856,-0.413793103448791,0.400000000000000,-0.014285714285708,0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285711,0.000000000000000,-0.000000000000000,-0.013793103448238,2 +2005,2018,2020,2033,-0.420689655172910,0.421428571428573,-0.413793103448791,0.414285714285710,-0.413793103448791,0.428571428571441,-0.406896551724672,0.421428571428577,-0.014285714285731,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000005,0.013793103448238,0.014285714285732,0.000000000000000,2 +2006,2019,2021,2034,-0.420689655172910,0.435714285714294,-0.413793103448791,0.428571428571441,-0.413793103448791,0.442857142857153,-0.406896551724672,0.435714285714300,-0.014285714285710,-0.000000000000000,0.000000000000005,-0.013793103448238,-0.000000000000008,0.013793103448238,0.014285714285713,0.000000000000000,2 +2007,2020,2022,2035,-0.420689655172910,0.450000000000005,-0.413793103448791,0.442857142857153,-0.413793103448791,0.457142857142866,-0.406896551724672,0.450000000000014,-0.014285714285712,-0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285715,0.000000000000000,2 +2008,2021,2023,2036,-0.420689655172910,0.464285714285716,-0.413793103448791,0.457142857142866,-0.413793103448791,0.471428571428578,-0.406896551724672,0.464285714285728,-0.014285714285711,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285713,-0.000000000000000,2 +2009,2022,2024,2037,-0.420689655172910,0.478571428571425,-0.413793103448791,0.471428571428578,-0.413793103448791,0.485714285714287,-0.406896551724672,0.478571428571440,-0.014285714285707,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285710,0.000000000000000,2 +2010,2023,2025,2038,-0.420689655172910,0.492857142857139,-0.413793103448791,0.485714285714287,-0.413793103448791,0.500000000000008,-0.406896551724672,0.492857142857157,-0.014285714285721,0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285722,0.000000000000000,2 +2011,2024,2026,2039,-0.420689655172910,0.507142857142839,-0.413793103448791,0.500000000000008,-0.413793103448791,0.514285714285685,-0.406896551724672,0.507142857142855,-0.014285714285679,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285675,0.000000000000000,2 +2012,2025,2027,2040,-0.420689655172910,0.521428571428521,-0.413793103448791,0.514285714285685,-0.413793103448791,0.528571428571367,-0.406896551724672,0.521428571428532,-0.014285714285685,0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285679,0.000000000000000,2 +2013,2026,2028,2041,-0.420689655172910,0.535714285714222,-0.413793103448791,0.528571428571367,-0.413793103448791,0.542857142857083,-0.406896551724672,0.535714285714229,-0.014285714285717,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285715,0.000000000000000,2 +2014,2027,2029,2042,-0.420689655172910,0.549999999999941,-0.413793103448791,0.542857142857083,-0.413793103448791,0.557142857142803,-0.406896551724672,0.549999999999946,-0.014285714285721,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285718,0.000000000000000,2 +2015,2028,2030,2043,-0.420689655172910,0.564285714285661,-0.413793103448791,0.557142857142803,-0.413793103448791,0.571428571428522,-0.406896551724672,0.564285714285664,-0.014285714285721,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285718,-0.000000000000000,2 +2016,2029,2031,2044,-0.420689655172910,0.578571428571390,-0.413793103448791,0.571428571428522,-0.413793103448791,0.585714285714259,-0.406896551724672,0.578571428571391,-0.014285714285737,0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285736,0.000000000000000,2 +1740,2017,2030,2045,-0.413793103448791,0.600000000000000,-0.420689655172910,0.592857142857129,-0.413793103448791,0.585714285714259,-0.406896551724672,0.592857142857129,0.000000000000000,0.013793103448238,-0.014285714285741,-0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285742,-0.000000000000000,2 +2018,2033,2046,3126,-0.406896551724672,0.407142857142856,-0.400000000000540,0.414285714285713,-0.393103448276408,0.407142857142857,-0.400000000000540,0.400000000000000,-0.014285714285711,-0.000000000000000,-0.000000000000003,0.013793103448264,0.014285714285714,0.000000000000000,-0.000000000000000,-0.013793103448264,2 +2019,2032,2034,2047,-0.406896551724672,0.421428571428577,-0.400000000000540,0.414285714285713,-0.400000000000540,0.428571428571445,-0.393103448276408,0.421428571428581,-0.014285714285732,-0.000000000000000,0.000000000000003,-0.013793103448264,-0.000000000000004,0.013793103448264,0.014285714285733,0.000000000000000,2 +2020,2033,2035,2048,-0.406896551724672,0.435714285714300,-0.400000000000540,0.428571428571445,-0.400000000000540,0.442857142857161,-0.393103448276408,0.435714285714306,-0.014285714285713,-0.000000000000000,0.000000000000004,-0.013793103448264,-0.000000000000007,0.013793103448264,0.014285714285717,0.000000000000000,2 +2021,2034,2036,2049,-0.406896551724672,0.450000000000014,-0.400000000000540,0.442857142857161,-0.400000000000540,0.457142857142877,-0.393103448276408,0.450000000000023,-0.014285714285715,-0.000000000000000,0.000000000000007,-0.013793103448264,-0.000000000000011,0.013793103448264,0.014285714285718,-0.000000000000000,2 +2022,2035,2037,2050,-0.406896551724672,0.464285714285728,-0.400000000000540,0.457142857142877,-0.400000000000540,0.471428571428592,-0.393103448276408,0.464285714285741,-0.014285714285713,0.000000000000000,0.000000000000011,-0.013793103448264,-0.000000000000014,0.013793103448264,0.014285714285717,0.000000000000000,2 +2023,2036,2038,2051,-0.406896551724672,0.478571428571440,-0.400000000000540,0.471428571428592,-0.400000000000540,0.485714285714304,-0.393103448276408,0.478571428571456,-0.014285714285710,-0.000000000000000,0.000000000000014,-0.013793103448264,-0.000000000000017,0.013793103448264,0.014285714285713,0.000000000000000,2 +2024,2037,2039,2052,-0.406896551724672,0.492857142857157,-0.400000000000540,0.485714285714304,-0.400000000000540,0.500000000000027,-0.393103448276408,0.492857142857174,-0.014285714285722,-0.000000000000000,0.000000000000017,-0.013793103448264,-0.000000000000018,0.013793103448264,0.014285714285724,0.000000000000000,2 +2025,2038,2040,2053,-0.406896551724672,0.507142857142855,-0.400000000000540,0.500000000000027,-0.400000000000540,0.514285714285700,-0.393103448276408,0.507142857142872,-0.014285714285675,-0.000000000000000,0.000000000000018,-0.013793103448264,-0.000000000000015,0.013793103448264,0.014285714285671,0.000000000000000,2 +2026,2039,2041,2054,-0.406896551724672,0.521428571428532,-0.400000000000540,0.514285714285700,-0.400000000000540,0.528571428571376,-0.393103448276408,0.521428571428544,-0.014285714285679,-0.000000000000000,0.000000000000015,-0.013793103448264,-0.000000000000009,0.013793103448264,0.014285714285673,0.000000000000000,2 +2027,2040,2042,2055,-0.406896551724672,0.535714285714229,-0.400000000000540,0.528571428571376,-0.400000000000540,0.542857142857090,-0.393103448276408,0.535714285714237,-0.014285714285715,-0.000000000000000,0.000000000000009,-0.013793103448264,-0.000000000000006,0.013793103448264,0.014285714285712,0.000000000000000,2 +2028,2041,2043,2056,-0.406896551724672,0.549999999999946,-0.400000000000540,0.542857142857090,-0.400000000000540,0.557142857142807,-0.393103448276408,0.549999999999951,-0.014285714285718,-0.000000000000000,0.000000000000006,-0.013793103448264,-0.000000000000004,0.013793103448264,0.014285714285715,0.000000000000000,2 +2029,2042,2044,2057,-0.406896551724672,0.564285714285664,-0.400000000000540,0.557142857142807,-0.400000000000540,0.571428571428523,-0.393103448276408,0.564285714285666,-0.014285714285718,0.000000000000000,0.000000000000004,-0.013793103448264,-0.000000000000001,0.013793103448264,0.014285714285715,0.000000000000000,2 +2030,2043,2045,2058,-0.406896551724672,0.578571428571391,-0.400000000000540,0.571428571428523,-0.400000000000540,0.585714285714258,-0.393103448276408,0.578571428571391,-0.014285714285736,-0.000000000000000,0.000000000000001,-0.013793103448264,0.000000000000000,0.013793103448264,0.014285714285735,0.000000000000000,2 +1746,2031,2044,2059,-0.400000000000540,0.600000000000000,-0.406896551724672,0.592857142857129,-0.400000000000540,0.585714285714258,-0.393103448276408,0.592857142857129,0.000000000000000,0.013793103448264,-0.014285714285742,0.000000000000000,-0.000000000000000,-0.013793103448264,0.014285714285742,-0.000000000000000,2 +2032,2047,2060,3067,-0.393103448276408,0.407142857142857,-0.386206896552252,0.414285714285716,-0.379310344828097,0.407142857142859,-0.386206896552252,0.400000000000000,-0.014285714285714,-0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448312,2 +2033,2046,2048,2061,-0.393103448276408,0.421428571428581,-0.386206896552252,0.414285714285716,-0.386206896552252,0.428571428571450,-0.379310344828097,0.421428571428585,-0.014285714285733,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285735,0.000000000000000,2 +2034,2047,2049,2062,-0.393103448276408,0.435714285714306,-0.386206896552252,0.428571428571450,-0.386206896552252,0.442857142857168,-0.379310344828097,0.435714285714312,-0.014285714285717,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000008,0.013793103448312,0.014285714285720,0.000000000000000,2 +2035,2048,2050,2063,-0.393103448276408,0.450000000000023,-0.386206896552252,0.442857142857168,-0.386206896552252,0.457142857142888,-0.379310344828097,0.450000000000033,-0.014285714285718,0.000000000000000,0.000000000000008,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285721,0.000000000000000,2 +2036,2049,2051,2064,-0.393103448276408,0.464285714285741,-0.386206896552252,0.457142857142888,-0.386206896552252,0.471428571428606,-0.379310344828097,0.464285714285753,-0.014285714285717,-0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285720,0.000000000000000,2 +2037,2050,2052,2065,-0.393103448276408,0.478571428571456,-0.386206896552252,0.471428571428606,-0.386206896552252,0.485714285714321,-0.379310344828097,0.478571428571471,-0.014285714285713,-0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285716,0.000000000000000,2 +2038,2051,2053,2066,-0.393103448276408,0.492857142857174,-0.386206896552252,0.485714285714321,-0.386206896552252,0.500000000000045,-0.379310344828097,0.492857142857192,-0.014285714285724,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000018,0.013793103448312,0.014285714285725,0.000000000000000,2 +2039,2052,2054,2067,-0.393103448276408,0.507142857142872,-0.386206896552252,0.500000000000045,-0.386206896552252,0.514285714285715,-0.379310344828097,0.507142857142888,-0.014285714285671,-0.000000000000000,0.000000000000018,-0.013793103448312,-0.000000000000015,0.013793103448312,0.014285714285668,0.000000000000000,2 +2040,2053,2055,2068,-0.393103448276408,0.521428571428544,-0.386206896552252,0.514285714285715,-0.386206896552252,0.528571428571385,-0.379310344828097,0.521428571428556,-0.014285714285673,-0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285667,0.000000000000000,2 +2041,2054,2056,2069,-0.393103448276408,0.535714285714237,-0.386206896552252,0.528571428571385,-0.386206896552252,0.542857142857096,-0.379310344828097,0.535714285714245,-0.014285714285712,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285710,0.000000000000000,2 +2042,2055,2057,2070,-0.393103448276408,0.549999999999951,-0.386206896552252,0.542857142857096,-0.386206896552252,0.557142857142810,-0.379310344828097,0.549999999999956,-0.014285714285715,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285713,0.000000000000000,2 +2043,2056,2058,2071,-0.393103448276408,0.564285714285666,-0.386206896552252,0.557142857142810,-0.386206896552252,0.571428571428524,-0.379310344828097,0.564285714285668,-0.014285714285715,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285713,0.000000000000000,2 +2044,2057,2059,2072,-0.393103448276408,0.578571428571391,-0.386206896552252,0.571428571428524,-0.386206896552252,0.585714285714258,-0.379310344828097,0.578571428571391,-0.014285714285735,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285733,0.000000000000000,2 +1752,2045,2058,2073,-0.386206896552252,0.600000000000000,-0.393103448276408,0.592857142857129,-0.386206896552252,0.585714285714258,-0.379310344828097,0.592857142857129,0.000000000000000,0.013793103448312,-0.014285714285742,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285742,-0.000000000000000,2 +2046,2061,2074,3008,-0.379310344828097,0.407142857142859,-0.372413793103935,0.414285714285719,-0.365517241379774,0.407142857142860,-0.372413793103935,0.400000000000000,-0.014285714285717,0.000000000000000,-0.000000000000003,0.013793103448322,0.014285714285720,0.000000000000000,-0.000000000000000,-0.013793103448323,2 +2047,2060,2062,2075,-0.379310344828097,0.421428571428585,-0.372413793103935,0.414285714285719,-0.372413793103935,0.428571428571454,-0.365517241379774,0.421428571428588,-0.014285714285735,-0.000000000000000,0.000000000000003,-0.013793103448322,-0.000000000000005,0.013793103448323,0.014285714285737,0.000000000000000,2 +2048,2061,2063,2076,-0.379310344828097,0.435714285714312,-0.372413793103935,0.428571428571454,-0.372413793103935,0.442857142857176,-0.365517241379774,0.435714285714318,-0.014285714285720,-0.000000000000000,0.000000000000005,-0.013793103448323,-0.000000000000007,0.013793103448323,0.014285714285723,-0.000000000000000,2 +2049,2062,2064,2077,-0.379310344828097,0.450000000000033,-0.372413793103935,0.442857142857176,-0.372413793103935,0.457142857142899,-0.365517241379774,0.450000000000042,-0.014285714285721,-0.000000000000000,0.000000000000007,-0.013793103448323,-0.000000000000011,0.013793103448323,0.014285714285725,0.000000000000000,2 +2050,2063,2065,2078,-0.379310344828097,0.464285714285753,-0.372413793103935,0.457142857142899,-0.372413793103935,0.471428571428620,-0.365517241379774,0.464285714285766,-0.014285714285720,-0.000000000000000,0.000000000000011,-0.013793103448323,-0.000000000000014,0.013793103448323,0.014285714285723,0.000000000000000,2 +2051,2064,2066,2079,-0.379310344828097,0.478571428571471,-0.372413793103935,0.471428571428620,-0.372413793103935,0.485714285714338,-0.365517241379774,0.478571428571487,-0.014285714285716,-0.000000000000000,0.000000000000014,-0.013793103448323,-0.000000000000017,0.013793103448323,0.014285714285719,0.000000000000000,2 +2052,2065,2067,2080,-0.379310344828097,0.492857142857192,-0.372413793103935,0.485714285714338,-0.372413793103935,0.500000000000063,-0.365517241379774,0.492857142857209,-0.014285714285725,-0.000000000000000,0.000000000000017,-0.013793103448323,-0.000000000000018,0.013793103448323,0.014285714285726,0.000000000000000,2 +2053,2066,2068,2081,-0.379310344828097,0.507142857142888,-0.372413793103935,0.500000000000063,-0.372413793103935,0.514285714285729,-0.365517241379774,0.507142857142905,-0.014285714285668,-0.000000000000000,0.000000000000018,-0.013793103448323,-0.000000000000015,0.013793103448323,0.014285714285664,0.000000000000000,2 +2054,2067,2069,2082,-0.379310344828097,0.521428571428556,-0.372413793103935,0.514285714285729,-0.372413793103935,0.528571428571394,-0.365517241379774,0.521428571428568,-0.014285714285667,-0.000000000000000,0.000000000000015,-0.013793103448323,-0.000000000000009,0.013793103448323,0.014285714285662,0.000000000000000,2 +2055,2068,2070,2083,-0.379310344828097,0.535714285714245,-0.372413793103935,0.528571428571394,-0.372413793103935,0.542857142857103,-0.365517241379774,0.535714285714252,-0.014285714285710,-0.000000000000000,0.000000000000009,-0.013793103448323,-0.000000000000006,0.013793103448323,0.014285714285707,0.000000000000000,2 +2056,2069,2071,2084,-0.379310344828097,0.549999999999956,-0.372413793103935,0.542857142857103,-0.372413793103935,0.557142857142814,-0.365517241379774,0.549999999999961,-0.014285714285713,-0.000000000000000,0.000000000000006,-0.013793103448323,-0.000000000000004,0.013793103448323,0.014285714285710,0.000000000000000,2 +2057,2070,2072,2085,-0.379310344828097,0.564285714285668,-0.372413793103935,0.557142857142814,-0.372413793103935,0.571428571428525,-0.365517241379774,0.564285714285671,-0.014285714285713,-0.000000000000000,0.000000000000004,-0.013793103448323,-0.000000000000001,0.013793103448323,0.014285714285710,0.000000000000000,2 +2058,2071,2073,2086,-0.379310344828097,0.578571428571391,-0.372413793103935,0.571428571428525,-0.372413793103935,0.585714285714258,-0.365517241379774,0.578571428571392,-0.014285714285733,-0.000000000000000,0.000000000000001,-0.013793103448323,-0.000000000000000,0.013793103448323,0.014285714285732,0.000000000000000,2 +1758,2059,2072,2087,-0.372413793103935,0.600000000000000,-0.379310344828097,0.592857142857129,-0.372413793103935,0.585714285714258,-0.365517241379774,0.592857142857129,0.000000000000000,0.013793103448323,-0.014285714285742,0.000000000000000,0.000000000000000,-0.013793103448323,0.014285714285742,-0.000000000000000,2 +2060,2075,2088,2949,-0.365517241379774,0.407142857142860,-0.358620689655618,0.414285714285722,-0.351724137931462,0.407142857142862,-0.358620689655618,0.400000000000000,-0.014285714285720,-0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285723,0.000000000000000,-0.000000000000000,-0.013793103448312,2 +2061,2074,2076,2089,-0.365517241379774,0.421428571428588,-0.358620689655618,0.414285714285722,-0.358620689655618,0.428571428571459,-0.351724137931462,0.421428571428592,-0.014285714285737,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285738,0.000000000000000,2 +2062,2075,2077,2090,-0.365517241379774,0.435714285714318,-0.358620689655618,0.428571428571459,-0.358620689655618,0.442857142857183,-0.351724137931462,0.435714285714324,-0.014285714285723,0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000007,0.013793103448312,0.014285714285726,0.000000000000000,2 +2063,2076,2078,2091,-0.365517241379774,0.450000000000042,-0.358620689655618,0.442857142857183,-0.358620689655618,0.457142857142909,-0.351724137931462,0.450000000000051,-0.014285714285725,-0.000000000000000,0.000000000000007,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285728,0.000000000000000,2 +2064,2077,2079,2092,-0.365517241379774,0.464285714285766,-0.358620689655618,0.457142857142909,-0.358620689655618,0.471428571428634,-0.351724137931462,0.464285714285778,-0.014285714285723,-0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285726,0.000000000000000,2 +2065,2078,2080,2093,-0.365517241379774,0.478571428571487,-0.358620689655618,0.471428571428634,-0.358620689655618,0.485714285714355,-0.351724137931462,0.478571428571502,-0.014285714285719,-0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285722,-0.000000000000000,2 +2066,2079,2081,2094,-0.365517241379774,0.492857142857209,-0.358620689655618,0.485714285714355,-0.358620689655618,0.500000000000082,-0.351724137931462,0.492857142857227,-0.014285714285726,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000019,0.013793103448312,0.014285714285728,0.000000000000000,2 +2067,2080,2082,2095,-0.365517241379774,0.507142857142905,-0.358620689655618,0.500000000000082,-0.358620689655618,0.514285714285744,-0.351724137931462,0.507142857142921,-0.014285714285664,-0.000000000000000,0.000000000000019,-0.013793103448312,-0.000000000000015,0.013793103448312,0.014285714285660,-0.000000000000000,2 +2068,2081,2083,2096,-0.365517241379774,0.521428571428568,-0.358620689655618,0.514285714285744,-0.358620689655618,0.528571428571403,-0.351724137931462,0.521428571428579,-0.014285714285662,-0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285656,0.000000000000000,2 +2069,2082,2084,2097,-0.365517241379774,0.535714285714252,-0.358620689655618,0.528571428571403,-0.358620689655618,0.542857142857109,-0.351724137931462,0.535714285714260,-0.014285714285707,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285705,0.000000000000000,2 +2070,2083,2085,2098,-0.365517241379774,0.549999999999961,-0.358620689655618,0.542857142857109,-0.358620689655618,0.557142857142818,-0.351724137931462,0.549999999999966,-0.014285714285710,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285707,0.000000000000000,2 +2071,2084,2086,2099,-0.365517241379774,0.564285714285671,-0.358620689655618,0.557142857142818,-0.358620689655618,0.571428571428526,-0.351724137931462,0.564285714285673,-0.014285714285710,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285707,0.000000000000000,2 +2072,2085,2087,2100,-0.365517241379774,0.578571428571392,-0.358620689655618,0.571428571428526,-0.358620689655618,0.585714285714258,-0.351724137931462,0.578571428571392,-0.014285714285732,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000001,0.013793103448312,0.014285714285731,0.000000000000000,2 +1764,2073,2086,2101,-0.358620689655618,0.600000000000000,-0.365517241379774,0.592857142857129,-0.358620689655618,0.585714285714258,-0.351724137931462,0.592857142857129,0.000000000000000,0.013793103448312,-0.014285714285742,0.000000000000000,-0.000000000000001,-0.013793103448312,0.014285714285743,-0.000000000000000,2 +2074,2089,2102,2890,-0.351724137931462,0.407142857142862,-0.344827586207306,0.414285714285725,-0.337931034483150,0.407142857142863,-0.344827586207306,0.400000000000000,-0.014285714285723,-0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285726,-0.000000000000000,-0.000000000000000,-0.013793103448312,2 +2075,2088,2090,2103,-0.351724137931462,0.421428571428592,-0.344827586207306,0.414285714285725,-0.344827586207306,0.428571428571463,-0.337931034483150,0.421428571428596,-0.014285714285738,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285739,0.000000000000000,2 +2076,2089,2091,2104,-0.351724137931462,0.435714285714324,-0.344827586207306,0.428571428571463,-0.344827586207306,0.442857142857191,-0.337931034483150,0.435714285714330,-0.014285714285726,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000008,0.013793103448312,0.014285714285729,0.000000000000000,2 +2077,2090,2092,2105,-0.351724137931462,0.450000000000051,-0.344827586207306,0.442857142857191,-0.344827586207306,0.457142857142920,-0.337931034483150,0.450000000000060,-0.014285714285728,-0.000000000000000,0.000000000000008,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285731,0.000000000000000,2 +2078,2091,2093,2106,-0.351724137931462,0.464285714285778,-0.344827586207306,0.457142857142920,-0.344827586207306,0.471428571428648,-0.337931034483150,0.464285714285790,-0.014285714285726,-0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285729,-0.000000000000000,2 +2079,2092,2094,2107,-0.351724137931462,0.478571428571502,-0.344827586207306,0.471428571428648,-0.344827586207306,0.485714285714371,-0.337931034483150,0.478571428571517,-0.014285714285722,0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285725,0.000000000000000,2 +2080,2093,2095,2108,-0.351724137931462,0.492857142857227,-0.344827586207306,0.485714285714371,-0.344827586207306,0.500000000000100,-0.337931034483150,0.492857142857245,-0.014285714285728,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000018,0.013793103448312,0.014285714285729,0.000000000000000,2 +2081,2094,2096,2109,-0.351724137931462,0.507142857142921,-0.344827586207306,0.500000000000100,-0.344827586207306,0.514285714285759,-0.337931034483150,0.507142857142938,-0.014285714285660,0.000000000000000,0.000000000000018,-0.013793103448312,-0.000000000000015,0.013793103448312,0.014285714285657,0.000000000000000,2 +2082,2095,2097,2110,-0.351724137931462,0.521428571428579,-0.344827586207306,0.514285714285759,-0.344827586207306,0.528571428571412,-0.337931034483150,0.521428571428591,-0.014285714285656,-0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285651,0.000000000000000,2 +2083,2096,2098,2111,-0.351724137931462,0.535714285714260,-0.344827586207306,0.528571428571412,-0.344827586207306,0.542857142857116,-0.337931034483150,0.535714285714268,-0.014285714285705,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285702,0.000000000000000,2 +2084,2097,2099,2112,-0.351724137931462,0.549999999999966,-0.344827586207306,0.542857142857116,-0.344827586207306,0.557142857142821,-0.337931034483150,0.549999999999971,-0.014285714285707,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000003,0.013793103448312,0.014285714285704,0.000000000000000,2 +2085,2098,2100,2113,-0.351724137931462,0.564285714285673,-0.344827586207306,0.557142857142821,-0.344827586207306,0.571428571428527,-0.337931034483150,0.564285714285675,-0.014285714285707,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285704,0.000000000000000,2 +2086,2099,2101,2114,-0.351724137931462,0.578571428571392,-0.344827586207306,0.571428571428527,-0.344827586207306,0.585714285714257,-0.337931034483150,0.578571428571392,-0.014285714285731,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285730,0.000000000000000,2 +1770,2087,2100,2115,-0.344827586207306,0.600000000000000,-0.351724137931462,0.592857142857129,-0.344827586207306,0.585714285714257,-0.337931034483150,0.592857142857129,0.000000000000000,0.013793103448312,-0.014285714285743,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285743,-0.000000000000000,2 +2088,2103,2116,2831,-0.337931034483150,0.407142857142863,-0.331034482758994,0.414285714285728,-0.324137931034839,0.407142857142865,-0.331034482758994,0.400000000000000,-0.014285714285726,0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285729,0.000000000000000,-0.000000000000000,-0.013793103448312,2 +2089,2102,2104,2117,-0.337931034483150,0.421428571428596,-0.331034482758994,0.414285714285728,-0.331034482758994,0.428571428571467,-0.324137931034839,0.421428571428599,-0.014285714285739,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000005,0.013793103448312,0.014285714285741,-0.000000000000000,2 +2090,2103,2105,2118,-0.337931034483150,0.435714285714330,-0.331034482758994,0.428571428571467,-0.331034482758994,0.442857142857198,-0.324137931034839,0.435714285714336,-0.014285714285729,-0.000000000000000,0.000000000000005,-0.013793103448312,-0.000000000000008,0.013793103448312,0.014285714285732,0.000000000000000,2 +2091,2104,2106,2119,-0.337931034483150,0.450000000000060,-0.331034482758994,0.442857142857198,-0.331034482758994,0.457142857142931,-0.324137931034839,0.450000000000069,-0.014285714285731,-0.000000000000000,0.000000000000008,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285734,0.000000000000000,2 +2092,2105,2107,2120,-0.337931034483150,0.464285714285790,-0.331034482758994,0.457142857142931,-0.331034482758994,0.471428571428662,-0.324137931034839,0.464285714285802,-0.014285714285729,0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285732,0.000000000000000,2 +2093,2106,2108,2121,-0.337931034483150,0.478571428571517,-0.331034482758994,0.471428571428662,-0.331034482758994,0.485714285714388,-0.324137931034839,0.478571428571533,-0.014285714285725,-0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285728,0.000000000000000,2 +2094,2107,2109,2122,-0.337931034483150,0.492857142857245,-0.331034482758994,0.485714285714388,-0.331034482758994,0.500000000000118,-0.324137931034839,0.492857142857262,-0.014285714285729,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000018,0.013793103448312,0.014285714285730,0.000000000000000,2 +2095,2108,2110,2123,-0.337931034483150,0.507142857142938,-0.331034482758994,0.500000000000118,-0.331034482758994,0.514285714285773,-0.324137931034839,0.507142857142954,-0.014285714285657,-0.000000000000000,0.000000000000018,-0.013793103448312,-0.000000000000015,0.013793103448312,0.014285714285653,0.000000000000000,2 +2096,2109,2111,2124,-0.337931034483150,0.521428571428591,-0.331034482758994,0.514285714285773,-0.331034482758994,0.528571428571421,-0.324137931034839,0.521428571428603,-0.014285714285651,-0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285645,0.000000000000000,2 +2097,2110,2112,2125,-0.337931034483150,0.535714285714268,-0.331034482758994,0.528571428571421,-0.331034482758994,0.542857142857122,-0.324137931034839,0.535714285714275,-0.014285714285702,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285699,0.000000000000000,2 +2098,2111,2113,2126,-0.337931034483150,0.549999999999971,-0.331034482758994,0.542857142857122,-0.331034482758994,0.557142857142825,-0.324137931034839,0.549999999999976,-0.014285714285704,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285702,0.000000000000000,2 +2099,2112,2114,2127,-0.337931034483150,0.564285714285675,-0.331034482758994,0.557142857142825,-0.331034482758994,0.571428571428528,-0.324137931034839,0.564285714285678,-0.014285714285704,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285701,0.000000000000000,2 +2100,2113,2115,2128,-0.337931034483150,0.578571428571392,-0.331034482758994,0.571428571428528,-0.331034482758995,0.585714285714257,-0.324137931034839,0.578571428571393,-0.014285714285730,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285729,0.000000000000000,2 +1776,2101,2114,2129,-0.331034482758994,0.600000000000000,-0.337931034483150,0.592857142857129,-0.331034482758995,0.585714285714257,-0.324137931034839,0.592857142857129,0.000000000000000,0.013793103448312,-0.014285714285743,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285743,-0.000000000000000,2 +2102,2117,2130,2772,-0.324137931034839,0.407142857142865,-0.317241379310681,0.414285714285731,-0.310344827586523,0.407142857142866,-0.317241379310681,0.400000000000000,-0.014285714285729,-0.000000000000000,-0.000000000000003,0.013793103448315,0.014285714285732,0.000000000000000,-0.000000000000000,-0.013793103448315,2 +2103,2116,2118,2131,-0.324137931034839,0.421428571428599,-0.317241379310681,0.414285714285731,-0.317241379310681,0.428571428571472,-0.310344827586523,0.421428571428603,-0.014285714285741,0.000000000000000,0.000000000000003,-0.013793103448315,-0.000000000000004,0.013793103448315,0.014285714285742,-0.000000000000000,2 +2104,2117,2119,2132,-0.324137931034839,0.435714285714336,-0.317241379310681,0.428571428571472,-0.317241379310681,0.442857142857206,-0.310344827586523,0.435714285714342,-0.014285714285732,-0.000000000000000,0.000000000000004,-0.013793103448315,-0.000000000000008,0.013793103448315,0.014285714285736,0.000000000000000,2 +2105,2118,2120,2133,-0.324137931034839,0.450000000000069,-0.317241379310681,0.442857142857206,-0.317241379310681,0.457142857142942,-0.310344827586523,0.450000000000078,-0.014285714285734,-0.000000000000000,0.000000000000008,-0.013793103448315,-0.000000000000011,0.013793103448315,0.014285714285738,-0.000000000000000,2 +2106,2119,2121,2134,-0.324137931034839,0.464285714285802,-0.317241379310681,0.457142857142942,-0.317241379310681,0.471428571428676,-0.310344827586523,0.464285714285815,-0.014285714285732,-0.000000000000000,0.000000000000011,-0.013793103448315,-0.000000000000014,0.013793103448315,0.014285714285735,0.000000000000000,2 +2107,2120,2122,2135,-0.324137931034839,0.478571428571533,-0.317241379310681,0.471428571428676,-0.317241379310681,0.485714285714405,-0.310344827586523,0.478571428571548,-0.014285714285728,-0.000000000000000,0.000000000000014,-0.013793103448315,-0.000000000000017,0.013793103448315,0.014285714285731,0.000000000000000,2 +2108,2121,2123,2136,-0.324137931034839,0.492857142857262,-0.317241379310681,0.485714285714405,-0.317241379310681,0.500000000000137,-0.310344827586523,0.492857142857280,-0.014285714285730,-0.000000000000000,0.000000000000017,-0.013793103448315,-0.000000000000018,0.013793103448315,0.014285714285732,-0.000000000000000,2 +2109,2122,2124,2137,-0.324137931034839,0.507142857142954,-0.317241379310681,0.500000000000137,-0.317241379310681,0.514285714285788,-0.310344827586523,0.507142857142971,-0.014285714285653,-0.000000000000000,0.000000000000018,-0.013793103448315,-0.000000000000015,0.013793103448315,0.014285714285649,0.000000000000000,2 +2110,2123,2125,2138,-0.324137931034839,0.521428571428603,-0.317241379310681,0.514285714285788,-0.317241379310681,0.528571428571430,-0.310344827586523,0.521428571428615,-0.014285714285645,-0.000000000000000,0.000000000000015,-0.013793103448315,-0.000000000000009,0.013793103448315,0.014285714285639,0.000000000000000,2 +2111,2124,2126,2139,-0.324137931034839,0.535714285714275,-0.317241379310681,0.528571428571430,-0.317241379310681,0.542857142857128,-0.310344827586523,0.535714285714283,-0.014285714285699,-0.000000000000000,0.000000000000009,-0.013793103448315,-0.000000000000007,0.013793103448315,0.014285714285697,0.000000000000000,2 +2112,2125,2127,2140,-0.324137931034839,0.549999999999976,-0.317241379310681,0.542857142857128,-0.317241379310681,0.557142857142829,-0.310344827586523,0.549999999999981,-0.014285714285702,-0.000000000000000,0.000000000000007,-0.013793103448315,-0.000000000000004,0.013793103448315,0.014285714285699,0.000000000000000,2 +2113,2126,2128,2141,-0.324137931034839,0.564285714285678,-0.317241379310681,0.557142857142829,-0.317241379310681,0.571428571428529,-0.310344827586523,0.564285714285680,-0.014285714285701,-0.000000000000000,0.000000000000004,-0.013793103448315,-0.000000000000001,0.013793103448315,0.014285714285699,0.000000000000000,2 +2114,2127,2129,2142,-0.324137931034839,0.578571428571393,-0.317241379310681,0.571428571428529,-0.317241379310681,0.585714285714257,-0.310344827586523,0.578571428571393,-0.014285714285729,-0.000000000000000,0.000000000000001,-0.013793103448315,0.000000000000001,0.013793103448315,0.014285714285727,0.000000000000000,2 +1782,2115,2128,2143,-0.317241379310681,0.600000000000000,-0.324137931034839,0.592857142857129,-0.317241379310681,0.585714285714257,-0.310344827586523,0.592857142857128,0.000000000000000,0.013793103448315,-0.014285714285743,0.000000000000000,-0.000000000000001,-0.013793103448315,0.014285714285744,-0.000000000000000,2 +2116,2131,2144,2713,-0.310344827586523,0.407142857142866,-0.303448275862364,0.414285714285734,-0.296551724138205,0.407142857142868,-0.303448275862364,0.400000000000000,-0.014285714285732,-0.000000000000000,-0.000000000000003,0.013793103448318,0.014285714285735,0.000000000000000,-0.000000000000000,-0.013793103448318,2 +2117,2130,2132,2145,-0.310344827586523,0.421428571428603,-0.303448275862364,0.414285714285734,-0.303448275862364,0.428571428571476,-0.296551724138205,0.421428571428607,-0.014285714285742,0.000000000000000,0.000000000000003,-0.013793103448318,-0.000000000000004,0.013793103448318,0.014285714285743,0.000000000000000,2 +2118,2131,2133,2146,-0.310344827586523,0.435714285714342,-0.303448275862364,0.428571428571476,-0.303448275862364,0.442857142857213,-0.296551724138205,0.435714285714348,-0.014285714285736,-0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000007,0.013793103448318,0.014285714285739,-0.000000000000000,2 +2119,2132,2134,2147,-0.310344827586523,0.450000000000078,-0.303448275862364,0.442857142857213,-0.303448275862364,0.457142857142953,-0.296551724138205,0.450000000000087,-0.014285714285738,0.000000000000000,0.000000000000007,-0.013793103448318,-0.000000000000011,0.013793103448318,0.014285714285741,-0.000000000000000,2 +2120,2133,2135,2148,-0.310344827586523,0.464285714285815,-0.303448275862364,0.457142857142953,-0.303448275862364,0.471428571428690,-0.296551724138205,0.464285714285827,-0.014285714285735,-0.000000000000000,0.000000000000011,-0.013793103448318,-0.000000000000014,0.013793103448318,0.014285714285739,0.000000000000000,2 +2121,2134,2136,2149,-0.310344827586523,0.478571428571548,-0.303448275862364,0.471428571428690,-0.303448275862364,0.485714285714422,-0.296551724138205,0.478571428571564,-0.014285714285731,-0.000000000000000,0.000000000000014,-0.013793103448318,-0.000000000000017,0.013793103448318,0.014285714285734,-0.000000000000000,2 +2122,2135,2137,2150,-0.310344827586523,0.492857142857280,-0.303448275862364,0.485714285714422,-0.303448275862364,0.500000000000155,-0.296551724138205,0.492857142857297,-0.014285714285732,0.000000000000000,0.000000000000017,-0.013793103448318,-0.000000000000018,0.013793103448318,0.014285714285733,0.000000000000000,2 +2123,2136,2138,2151,-0.310344827586523,0.507142857142971,-0.303448275862364,0.500000000000155,-0.303448275862364,0.514285714285803,-0.296551724138205,0.507142857142987,-0.014285714285649,-0.000000000000000,0.000000000000018,-0.013793103448318,-0.000000000000015,0.013793103448318,0.014285714285646,0.000000000000000,2 +2124,2137,2139,2152,-0.310344827586523,0.521428571428615,-0.303448275862364,0.514285714285803,-0.303448275862364,0.528571428571439,-0.296551724138205,0.521428571428627,-0.014285714285639,-0.000000000000000,0.000000000000015,-0.013793103448318,-0.000000000000009,0.013793103448318,0.014285714285633,0.000000000000000,2 +2125,2138,2140,2153,-0.310344827586523,0.535714285714283,-0.303448275862364,0.528571428571439,-0.303448275862364,0.542857142857135,-0.296551724138205,0.535714285714291,-0.014285714285697,-0.000000000000000,0.000000000000009,-0.013793103448318,-0.000000000000006,0.013793103448318,0.014285714285694,0.000000000000000,2 +2126,2139,2141,2154,-0.310344827586523,0.549999999999981,-0.303448275862364,0.542857142857135,-0.303448275862364,0.557142857142832,-0.296551724138205,0.549999999999986,-0.014285714285699,-0.000000000000000,0.000000000000006,-0.013793103448318,-0.000000000000004,0.013793103448318,0.014285714285696,0.000000000000000,2 +2127,2140,2142,2155,-0.310344827586523,0.564285714285680,-0.303448275862364,0.557142857142832,-0.303448275862364,0.571428571428530,-0.296551724138205,0.564285714285682,-0.014285714285699,-0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000001,0.013793103448318,0.014285714285696,0.000000000000000,2 +2128,2141,2143,2156,-0.310344827586523,0.578571428571393,-0.303448275862364,0.571428571428530,-0.303448275862364,0.585714285714257,-0.296551724138205,0.578571428571393,-0.014285714285727,-0.000000000000000,0.000000000000001,-0.013793103448318,-0.000000000000000,0.013793103448318,0.014285714285726,0.000000000000000,2 +1788,2129,2142,2157,-0.303448275862364,0.600000000000000,-0.310344827586523,0.592857142857128,-0.303448275862364,0.585714285714257,-0.296551724138205,0.592857142857128,0.000000000000000,0.013793103448318,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448318,0.014285714285743,-0.000000000000000,2 +2130,2145,2158,2654,-0.296551724138205,0.407142857142868,-0.289655172414046,0.414285714285737,-0.282758620689887,0.407142857142869,-0.289655172414046,0.400000000000000,-0.014285714285735,-0.000000000000000,-0.000000000000003,0.013793103448318,0.014285714285738,-0.000000000000000,-0.000000000000000,-0.013793103448318,2 +2131,2144,2146,2159,-0.296551724138205,0.421428571428607,-0.289655172414046,0.414285714285737,-0.289655172414046,0.428571428571481,-0.282758620689887,0.421428571428610,-0.014285714285743,-0.000000000000000,0.000000000000003,-0.013793103448318,-0.000000000000004,0.013793103448318,0.014285714285745,0.000000000000000,2 +2132,2145,2147,2160,-0.296551724138205,0.435714285714348,-0.289655172414046,0.428571428571481,-0.289655172414046,0.442857142857221,-0.282758620689887,0.435714285714354,-0.014285714285739,0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000008,0.013793103448318,0.014285714285742,-0.000000000000000,2 +2133,2146,2148,2161,-0.296551724138205,0.450000000000087,-0.289655172414046,0.442857142857221,-0.289655172414046,0.457142857142963,-0.282758620689887,0.450000000000097,-0.014285714285741,0.000000000000000,0.000000000000008,-0.013793103448318,-0.000000000000011,0.013793103448318,0.014285714285744,0.000000000000000,2 +2134,2147,2149,2162,-0.296551724138205,0.464285714285827,-0.289655172414046,0.457142857142963,-0.289655172414046,0.471428571428704,-0.282758620689887,0.464285714285840,-0.014285714285739,-0.000000000000000,0.000000000000011,-0.013793103448318,-0.000000000000014,0.013793103448318,0.014285714285742,0.000000000000000,2 +2135,2148,2150,2163,-0.296551724138205,0.478571428571564,-0.289655172414046,0.471428571428704,-0.289655172414046,0.485714285714439,-0.282758620689887,0.478571428571579,-0.014285714285734,0.000000000000000,0.000000000000014,-0.013793103448318,-0.000000000000017,0.013793103448318,0.014285714285737,0.000000000000000,2 +2136,2149,2151,2164,-0.296551724138205,0.492857142857297,-0.289655172414046,0.485714285714439,-0.289655172414046,0.500000000000173,-0.282758620689887,0.492857142857315,-0.014285714285733,-0.000000000000000,0.000000000000017,-0.013793103448318,-0.000000000000018,0.013793103448318,0.014285714285735,0.000000000000000,2 +2137,2150,2152,2165,-0.296551724138205,0.507142857142987,-0.289655172414046,0.500000000000173,-0.289655172414046,0.514285714285817,-0.282758620689887,0.507142857143004,-0.014285714285646,-0.000000000000000,0.000000000000018,-0.013793103448318,-0.000000000000015,0.013793103448318,0.014285714285642,0.000000000000000,2 +2138,2151,2153,2166,-0.296551724138205,0.521428571428627,-0.289655172414046,0.514285714285817,-0.289655172414046,0.528571428571448,-0.282758620689887,0.521428571428638,-0.014285714285633,-0.000000000000000,0.000000000000015,-0.013793103448318,-0.000000000000009,0.013793103448318,0.014285714285628,0.000000000000000,2 +2139,2152,2154,2167,-0.296551724138205,0.535714285714291,-0.289655172414046,0.528571428571448,-0.289655172414046,0.542857142857141,-0.282758620689887,0.535714285714298,-0.014285714285694,-0.000000000000000,0.000000000000009,-0.013793103448318,-0.000000000000006,0.013793103448318,0.014285714285692,0.000000000000000,2 +2140,2153,2155,2168,-0.296551724138205,0.549999999999986,-0.289655172414046,0.542857142857141,-0.289655172414046,0.557142857142836,-0.282758620689887,0.549999999999991,-0.014285714285696,-0.000000000000000,0.000000000000006,-0.013793103448318,-0.000000000000004,0.013793103448318,0.014285714285694,0.000000000000000,2 +2141,2154,2156,2169,-0.296551724138205,0.564285714285682,-0.289655172414046,0.557142857142836,-0.289655172414046,0.571428571428531,-0.282758620689887,0.564285714285685,-0.014285714285696,-0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000001,0.013793103448318,0.014285714285693,0.000000000000000,2 +2142,2155,2157,2170,-0.296551724138205,0.578571428571393,-0.289655172414046,0.571428571428531,-0.289655172414046,0.585714285714256,-0.282758620689887,0.578571428571394,-0.014285714285726,-0.000000000000000,0.000000000000001,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285725,0.000000000000000,2 +1794,2143,2156,2171,-0.289655172414046,0.600000000000000,-0.296551724138205,0.592857142857128,-0.289655172414046,0.585714285714256,-0.282758620689887,0.592857142857128,0.000000000000000,0.013793103448318,-0.014285714285743,0.000000000000000,-0.000000000000000,-0.013793103448318,0.014285714285744,-0.000000000000000,2 +2144,2159,2172,2595,-0.282758620689887,0.407142857142869,-0.275862068965728,0.414285714285740,-0.268965517241570,0.407142857142871,-0.275862068965729,0.400000000000000,-0.014285714285738,0.000000000000000,-0.000000000000003,0.013793103448318,0.014285714285741,-0.000000000000000,-0.000000000000000,-0.013793103448317,2 +2145,2158,2160,2173,-0.282758620689887,0.421428571428610,-0.275862068965728,0.414285714285740,-0.275862068965729,0.428571428571485,-0.268965517241570,0.421428571428614,-0.014285714285745,-0.000000000000000,0.000000000000003,-0.013793103448318,-0.000000000000004,0.013793103448317,0.014285714285746,0.000000000000000,2 +2146,2159,2161,2174,-0.282758620689887,0.435714285714354,-0.275862068965729,0.428571428571485,-0.275862068965729,0.442857142857228,-0.268965517241570,0.435714285714360,-0.014285714285742,0.000000000000000,0.000000000000004,-0.013793103448317,-0.000000000000007,0.013793103448317,0.014285714285745,0.000000000000000,2 +2147,2160,2162,2175,-0.282758620689887,0.450000000000097,-0.275862068965729,0.442857142857228,-0.275862068965729,0.457142857142974,-0.268965517241570,0.450000000000106,-0.014285714285744,-0.000000000000000,0.000000000000007,-0.013793103448317,-0.000000000000011,0.013793103448317,0.014285714285748,0.000000000000000,2 +2148,2161,2163,2176,-0.282758620689887,0.464285714285840,-0.275862068965729,0.457142857142974,-0.275862068965729,0.471428571428718,-0.268965517241570,0.464285714285852,-0.014285714285742,-0.000000000000000,0.000000000000011,-0.013793103448317,-0.000000000000014,0.013793103448317,0.014285714285745,0.000000000000000,2 +2149,2162,2164,2177,-0.282758620689887,0.478571428571579,-0.275862068965729,0.471428571428718,-0.275862068965728,0.485714285714456,-0.268965517241570,0.478571428571594,-0.014285714285737,-0.000000000000000,0.000000000000014,-0.013793103448317,-0.000000000000017,0.013793103448318,0.014285714285740,-0.000000000000000,2 +2150,2163,2165,2178,-0.282758620689887,0.492857142857315,-0.275862068965728,0.485714285714456,-0.275862068965729,0.500000000000192,-0.268965517241570,0.492857142857333,-0.014285714285735,-0.000000000000000,0.000000000000017,-0.013793103448318,-0.000000000000018,0.013793103448317,0.014285714285736,0.000000000000000,2 +2151,2164,2166,2179,-0.282758620689887,0.507142857143004,-0.275862068965729,0.500000000000192,-0.275862068965729,0.514285714285832,-0.268965517241570,0.507142857143020,-0.014285714285642,-0.000000000000000,0.000000000000018,-0.013793103448317,-0.000000000000015,0.013793103448317,0.014285714285639,0.000000000000000,2 +2152,2165,2167,2180,-0.282758620689887,0.521428571428638,-0.275862068965729,0.514285714285832,-0.275862068965729,0.528571428571457,-0.268965517241570,0.521428571428650,-0.014285714285628,-0.000000000000000,0.000000000000015,-0.013793103448317,-0.000000000000009,0.013793103448317,0.014285714285622,0.000000000000000,2 +2153,2166,2168,2181,-0.282758620689887,0.535714285714298,-0.275862068965729,0.528571428571457,-0.275862068965729,0.542857142857147,-0.268965517241570,0.535714285714306,-0.014285714285692,-0.000000000000000,0.000000000000009,-0.013793103448317,-0.000000000000006,0.013793103448317,0.014285714285690,0.000000000000000,2 +2154,2167,2169,2182,-0.282758620689887,0.549999999999991,-0.275862068965729,0.542857142857147,-0.275862068965729,0.557142857142840,-0.268965517241570,0.549999999999996,-0.014285714285694,-0.000000000000000,0.000000000000006,-0.013793103448317,-0.000000000000004,0.013793103448317,0.014285714285691,0.000000000000000,2 +2155,2168,2170,2183,-0.282758620689887,0.564285714285685,-0.275862068965729,0.557142857142840,-0.275862068965729,0.571428571428532,-0.268965517241570,0.564285714285687,-0.014285714285693,-0.000000000000000,0.000000000000004,-0.013793103448317,-0.000000000000001,0.013793103448317,0.014285714285691,0.000000000000000,2 +2156,2169,2171,2184,-0.282758620689887,0.578571428571394,-0.275862068965729,0.571428571428532,-0.275862068965729,0.585714285714256,-0.268965517241570,0.578571428571394,-0.014285714285725,-0.000000000000000,0.000000000000001,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285724,0.000000000000000,2 +1800,2157,2170,2185,-0.275862068965729,0.600000000000000,-0.282758620689887,0.592857142857128,-0.275862068965729,0.585714285714256,-0.268965517241570,0.592857142857128,0.000000000000000,0.013793103448317,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448317,0.014285714285744,-0.000000000000000,2 +2158,2173,2186,2536,-0.268965517241570,0.407142857142871,-0.262068965517414,0.414285714285743,-0.255172413793258,0.407142857142872,-0.262068965517414,0.400000000000000,-0.014285714285741,0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448312,2 +2159,2172,2174,2187,-0.268965517241570,0.421428571428614,-0.262068965517414,0.414285714285743,-0.262068965517414,0.428571428571489,-0.255172413793258,0.421428571428618,-0.014285714285746,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285747,0.000000000000000,2 +2160,2173,2175,2188,-0.268965517241570,0.435714285714360,-0.262068965517414,0.428571428571489,-0.262068965517414,0.442857142857236,-0.255172413793258,0.435714285714365,-0.014285714285745,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000007,0.013793103448312,0.014285714285748,0.000000000000000,2 +2161,2174,2176,2189,-0.268965517241570,0.450000000000106,-0.262068965517414,0.442857142857236,-0.262068965517414,0.457142857142985,-0.255172413793258,0.450000000000115,-0.014285714285748,-0.000000000000000,0.000000000000007,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285751,0.000000000000000,2 +2162,2175,2177,2190,-0.268965517241570,0.464285714285852,-0.262068965517414,0.457142857142985,-0.262068965517414,0.471428571428732,-0.255172413793258,0.464285714285865,-0.014285714285745,-0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285748,0.000000000000000,2 +2163,2176,2178,2191,-0.268965517241570,0.478571428571594,-0.262068965517414,0.471428571428732,-0.262068965517414,0.485714285714473,-0.255172413793258,0.478571428571610,-0.014285714285740,0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285743,0.000000000000000,2 +2164,2177,2179,2192,-0.268965517241570,0.492857142857333,-0.262068965517414,0.485714285714473,-0.262068965517414,0.500000000000210,-0.255172413793258,0.492857142857350,-0.014285714285736,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000018,0.013793103448312,0.014285714285738,0.000000000000000,2 +2165,2178,2180,2193,-0.268965517241570,0.507142857143020,-0.262068965517414,0.500000000000210,-0.262068965517414,0.514285714285847,-0.255172413793258,0.507142857143037,-0.014285714285639,-0.000000000000000,0.000000000000018,-0.013793103448312,-0.000000000000015,0.013793103448312,0.014285714285635,0.000000000000000,2 +2166,2179,2181,2194,-0.268965517241570,0.521428571428650,-0.262068965517414,0.514285714285847,-0.262068965517414,0.528571428571466,-0.255172413793258,0.521428571428662,-0.014285714285622,-0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285616,-0.000000000000000,2 +2167,2180,2182,2195,-0.268965517241570,0.535714285714306,-0.262068965517414,0.528571428571466,-0.262068965517414,0.542857142857154,-0.255172413793258,0.535714285714314,-0.014285714285690,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285687,0.000000000000000,2 +2168,2181,2183,2196,-0.268965517241570,0.549999999999996,-0.262068965517414,0.542857142857154,-0.262068965517414,0.557142857142843,-0.255172413793258,0.550000000000001,-0.014285714285691,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285688,0.000000000000000,2 +2169,2182,2184,2197,-0.268965517241570,0.564285714285687,-0.262068965517414,0.557142857142843,-0.262068965517414,0.571428571428533,-0.255172413793258,0.564285714285689,-0.014285714285691,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285688,0.000000000000000,2 +2170,2183,2185,2198,-0.268965517241570,0.578571428571394,-0.262068965517414,0.571428571428533,-0.262068965517414,0.585714285714256,-0.255172413793258,0.578571428571395,-0.014285714285724,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285722,0.000000000000000,2 +1806,2171,2184,2199,-0.262068965517414,0.600000000000000,-0.268965517241570,0.592857142857128,-0.262068965517414,0.585714285714256,-0.255172413793258,0.592857142857128,0.000000000000000,0.013793103448312,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285744,-0.000000000000000,2 +2172,2187,2200,2477,-0.255172413793258,0.407142857142872,-0.248275862069102,0.414285714285746,-0.241379310344946,0.407142857142874,-0.248275862069102,0.400000000000000,-0.014285714285744,-0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285747,0.000000000000000,-0.000000000000000,-0.013793103448312,2 +2173,2186,2188,2201,-0.255172413793258,0.421428571428618,-0.248275862069102,0.414285714285746,-0.248275862069102,0.428571428571494,-0.241379310344946,0.421428571428621,-0.014285714285747,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285749,0.000000000000000,2 +2174,2187,2189,2202,-0.255172413793258,0.435714285714365,-0.248275862069102,0.428571428571494,-0.248275862069102,0.442857142857243,-0.241379310344946,0.435714285714371,-0.014285714285748,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000008,0.013793103448312,0.014285714285751,0.000000000000000,2 +2175,2188,2190,2203,-0.255172413793258,0.450000000000115,-0.248275862069102,0.442857142857243,-0.248275862069102,0.457142857142996,-0.241379310344946,0.450000000000124,-0.014285714285751,-0.000000000000000,0.000000000000008,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285754,0.000000000000000,2 +2176,2189,2191,2204,-0.255172413793258,0.464285714285865,-0.248275862069102,0.457142857142996,-0.248275862069102,0.471428571428745,-0.241379310344946,0.464285714285877,-0.014285714285748,-0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285751,0.000000000000000,2 +2177,2190,2192,2205,-0.255172413793258,0.478571428571610,-0.248275862069102,0.471428571428745,-0.248275862069102,0.485714285714490,-0.241379310344946,0.478571428571625,-0.014285714285743,-0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285746,0.000000000000000,2 +2178,2191,2193,2206,-0.255172413793258,0.492857142857350,-0.248275862069102,0.485714285714490,-0.248275862069102,0.500000000000228,-0.241379310344946,0.492857142857368,-0.014285714285738,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000018,0.013793103448312,0.014285714285739,0.000000000000000,2 +2179,2192,2194,2207,-0.255172413793258,0.507142857143037,-0.248275862069102,0.500000000000228,-0.248275862069102,0.514285714285861,-0.241379310344946,0.507142857143053,-0.014285714285635,-0.000000000000000,0.000000000000018,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285631,0.000000000000000,2 +2180,2193,2195,2208,-0.255172413793258,0.521428571428662,-0.248275862069102,0.514285714285861,-0.248275862069102,0.528571428571474,-0.241379310344946,0.521428571428673,-0.014285714285616,0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285611,0.000000000000000,2 +2181,2194,2196,2209,-0.255172413793258,0.535714285714314,-0.248275862069102,0.528571428571474,-0.248275862069102,0.542857142857160,-0.241379310344946,0.535714285714321,-0.014285714285687,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285685,0.000000000000000,2 +2182,2195,2197,2210,-0.255172413793258,0.550000000000001,-0.248275862069102,0.542857142857160,-0.248275862069102,0.557142857142847,-0.241379310344946,0.550000000000006,-0.014285714285688,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285685,0.000000000000000,2 +2183,2196,2198,2211,-0.255172413793258,0.564285714285689,-0.248275862069102,0.557142857142847,-0.248275862069102,0.571428571428534,-0.241379310344946,0.564285714285692,-0.014285714285688,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285685,0.000000000000000,2 +2184,2197,2199,2212,-0.255172413793258,0.578571428571395,-0.248275862069102,0.571428571428534,-0.248275862069102,0.585714285714255,-0.241379310344946,0.578571428571395,-0.014285714285722,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285721,0.000000000000000,2 +1812,2185,2198,2213,-0.248275862069102,0.600000000000000,-0.255172413793258,0.592857142857128,-0.248275862069102,0.585714285714255,-0.241379310344946,0.592857142857128,0.000000000000000,0.013793103448312,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285745,-0.000000000000000,2 +2186,2201,2214,2418,-0.241379310344946,0.407142857142874,-0.234482758620790,0.414285714285749,-0.227586206896634,0.407142857142875,-0.234482758620790,0.400000000000000,-0.014285714285747,-0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285750,0.000000000000000,-0.000000000000000,-0.013793103448312,2 +2187,2200,2202,2215,-0.241379310344946,0.421428571428621,-0.234482758620790,0.414285714285749,-0.234482758620790,0.428571428571498,-0.227586206896634,0.421428571428625,-0.014285714285749,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285750,0.000000000000000,2 +2188,2201,2203,2216,-0.241379310344946,0.435714285714371,-0.234482758620790,0.428571428571498,-0.234482758620790,0.442857142857251,-0.227586206896634,0.435714285714377,-0.014285714285751,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000008,0.013793103448312,0.014285714285754,0.000000000000000,2 +2189,2202,2204,2217,-0.241379310344946,0.450000000000124,-0.234482758620790,0.442857142857251,-0.234482758620790,0.457142857143007,-0.227586206896634,0.450000000000133,-0.014285714285754,-0.000000000000000,0.000000000000008,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285757,0.000000000000000,2 +2190,2203,2205,2218,-0.241379310344946,0.464285714285877,-0.234482758620790,0.457142857143007,-0.234482758620790,0.471428571428759,-0.227586206896634,0.464285714285889,-0.014285714285751,-0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285754,-0.000000000000000,2 +2191,2204,2206,2219,-0.241379310344946,0.478571428571625,-0.234482758620790,0.471428571428759,-0.234482758620790,0.485714285714507,-0.227586206896634,0.478571428571641,-0.014285714285746,-0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285749,0.000000000000000,2 +2192,2205,2207,2220,-0.241379310344946,0.492857142857368,-0.234482758620790,0.485714285714507,-0.234482758620790,0.500000000000247,-0.227586206896634,0.492857142857385,-0.014285714285739,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000018,0.013793103448312,0.014285714285741,0.000000000000000,2 +2193,2206,2208,2221,-0.241379310344946,0.507142857143053,-0.234482758620790,0.500000000000247,-0.234482758620790,0.514285714285876,-0.227586206896634,0.507142857143069,-0.014285714285631,-0.000000000000000,0.000000000000018,-0.013793103448312,-0.000000000000015,0.013793103448312,0.014285714285627,0.000000000000000,2 +2194,2207,2209,2222,-0.241379310344946,0.521428571428673,-0.234482758620790,0.514285714285876,-0.234482758620790,0.528571428571483,-0.227586206896634,0.521428571428685,-0.014285714285611,-0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285605,0.000000000000000,2 +2195,2208,2210,2223,-0.241379310344946,0.535714285714321,-0.234482758620790,0.528571428571483,-0.234482758620790,0.542857142857167,-0.227586206896634,0.535714285714329,-0.014285714285685,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285682,0.000000000000000,2 +2196,2209,2211,2224,-0.241379310344946,0.550000000000006,-0.234482758620790,0.542857142857167,-0.234482758620790,0.557142857142851,-0.227586206896634,0.550000000000011,-0.014285714285685,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285683,0.000000000000000,2 +2197,2210,2212,2225,-0.241379310344946,0.564285714285692,-0.234482758620790,0.557142857142851,-0.234482758620790,0.571428571428535,-0.227586206896634,0.564285714285694,-0.014285714285685,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285682,0.000000000000000,2 +2198,2211,2213,2226,-0.241379310344946,0.578571428571395,-0.234482758620790,0.571428571428535,-0.234482758620790,0.585714285714255,-0.227586206896634,0.578571428571395,-0.014285714285721,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285720,0.000000000000000,2 +1818,2199,2212,2227,-0.234482758620790,0.600000000000000,-0.241379310344946,0.592857142857128,-0.234482758620790,0.585714285714255,-0.227586206896634,0.592857142857127,0.000000000000000,0.013793103448312,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285745,-0.000000000000000,2 +2200,2215,2228,2359,-0.227586206896634,0.407142857142875,-0.220689655172476,0.414285714285752,-0.213793103448318,0.407142857142877,-0.220689655172476,0.400000000000000,-0.014285714285750,-0.000000000000000,-0.000000000000003,0.013793103448316,0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448316,2 +2201,2214,2216,2229,-0.227586206896634,0.421428571428625,-0.220689655172476,0.414285714285752,-0.220689655172476,0.428571428571502,-0.213793103448318,0.421428571428629,-0.014285714285750,-0.000000000000000,0.000000000000003,-0.013793103448316,-0.000000000000004,0.013793103448316,0.014285714285752,0.000000000000000,2 +2202,2215,2217,2230,-0.227586206896634,0.435714285714377,-0.220689655172476,0.428571428571502,-0.220689655172476,0.442857142857258,-0.213793103448318,0.435714285714383,-0.014285714285754,-0.000000000000000,0.000000000000004,-0.013793103448316,-0.000000000000007,0.013793103448316,0.014285714285757,0.000000000000000,2 +2203,2216,2218,2231,-0.227586206896634,0.450000000000133,-0.220689655172476,0.442857142857258,-0.220689655172476,0.457142857143017,-0.213793103448318,0.450000000000142,-0.014285714285757,-0.000000000000000,0.000000000000007,-0.013793103448316,-0.000000000000011,0.013793103448316,0.014285714285761,-0.000000000000000,2 +2204,2217,2219,2232,-0.227586206896634,0.464285714285889,-0.220689655172476,0.457142857143017,-0.220689655172476,0.471428571428773,-0.213793103448318,0.464285714285902,-0.014285714285754,0.000000000000000,0.000000000000011,-0.013793103448316,-0.000000000000014,0.013793103448316,0.014285714285758,0.000000000000000,2 +2205,2218,2220,2233,-0.227586206896634,0.478571428571641,-0.220689655172476,0.471428571428773,-0.220689655172476,0.485714285714524,-0.213793103448318,0.478571428571656,-0.014285714285749,-0.000000000000000,0.000000000000014,-0.013793103448316,-0.000000000000017,0.013793103448316,0.014285714285752,0.000000000000000,2 +2206,2219,2221,2234,-0.227586206896634,0.492857142857385,-0.220689655172476,0.485714285714524,-0.220689655172476,0.500000000000265,-0.213793103448318,0.492857142857403,-0.014285714285741,-0.000000000000000,0.000000000000017,-0.013793103448316,-0.000000000000018,0.013793103448316,0.014285714285742,0.000000000000000,2 +2207,2220,2222,2235,-0.227586206896634,0.507142857143069,-0.220689655172476,0.500000000000265,-0.220689655172476,0.514285714285890,-0.213793103448318,0.507142857143086,-0.014285714285627,-0.000000000000000,0.000000000000018,-0.013793103448316,-0.000000000000015,0.013793103448316,0.014285714285624,0.000000000000000,2 +2208,2221,2223,2236,-0.227586206896634,0.521428571428685,-0.220689655172476,0.514285714285890,-0.220689655172476,0.528571428571492,-0.213793103448318,0.521428571428697,-0.014285714285605,-0.000000000000000,0.000000000000015,-0.013793103448316,-0.000000000000009,0.013793103448316,0.014285714285599,0.000000000000000,2 +2209,2222,2224,2237,-0.227586206896634,0.535714285714329,-0.220689655172476,0.528571428571492,-0.220689655172476,0.542857142857173,-0.213793103448318,0.535714285714337,-0.014285714285682,-0.000000000000000,0.000000000000009,-0.013793103448316,-0.000000000000007,0.013793103448316,0.014285714285680,0.000000000000000,2 +2210,2223,2225,2238,-0.227586206896634,0.550000000000011,-0.220689655172476,0.542857142857173,-0.220689655172476,0.557142857142854,-0.213793103448318,0.550000000000016,-0.014285714285683,-0.000000000000000,0.000000000000007,-0.013793103448316,-0.000000000000004,0.013793103448316,0.014285714285680,-0.000000000000000,2 +2211,2224,2226,2239,-0.227586206896634,0.564285714285694,-0.220689655172476,0.557142857142854,-0.220689655172476,0.571428571428536,-0.213793103448318,0.564285714285696,-0.014285714285682,-0.000000000000000,0.000000000000004,-0.013793103448316,-0.000000000000001,0.013793103448316,0.014285714285680,0.000000000000000,2 +2212,2225,2227,2240,-0.227586206896634,0.578571428571395,-0.220689655172476,0.571428571428536,-0.220689655172476,0.585714285714255,-0.213793103448318,0.578571428571395,-0.014285714285720,-0.000000000000000,0.000000000000001,-0.013793103448316,0.000000000000000,0.013793103448316,0.014285714285718,0.000000000000000,2 +1824,2213,2226,2241,-0.220689655172476,0.600000000000000,-0.227586206896634,0.592857142857127,-0.220689655172476,0.585714285714255,-0.213793103448318,0.592857142857127,0.000000000000000,0.013793103448316,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448316,0.014285714285745,-0.000000000000000,2 +2214,2229,2300,7288,-0.213793103448318,0.407142857142877,-0.206896551724159,0.414285714285755,-0.206896551724159,0.400000000000000,-0.200000000000000,0.407142857142878,-0.014285714285753,-0.000000000000000,-0.000000000000003,0.013793103448318,0.000000000000000,-0.013793103448318,0.014285714285756,0.000000000000000,2 +2215,2228,2230,7289,-0.213793103448318,0.421428571428629,-0.206896551724159,0.414285714285755,-0.206896551724159,0.428571428571507,-0.200000000000000,0.421428571428633,-0.014285714285752,-0.000000000000000,0.000000000000003,-0.013793103448318,-0.000000000000004,0.013793103448318,0.014285714285753,-0.000000000000000,2 +2216,2229,2231,7290,-0.213793103448318,0.435714285714383,-0.206896551724159,0.428571428571507,-0.206896551724159,0.442857142857266,-0.200000000000000,0.435714285714389,-0.014285714285757,-0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000008,0.013793103448318,0.014285714285761,-0.000000000000000,2 +2217,2230,2232,7291,-0.213793103448318,0.450000000000142,-0.206896551724159,0.442857142857266,-0.206896551724159,0.457142857143028,-0.200000000000000,0.450000000000152,-0.014285714285761,0.000000000000000,0.000000000000008,-0.013793103448318,-0.000000000000011,0.013793103448318,0.014285714285764,-0.000000000000000,2 +2218,2231,2233,7292,-0.213793103448318,0.464285714285902,-0.206896551724159,0.457142857143028,-0.206896551724159,0.471428571428787,-0.200000000000000,0.464285714285914,-0.014285714285758,-0.000000000000000,0.000000000000011,-0.013793103448318,-0.000000000000014,0.013793103448318,0.014285714285761,-0.000000000000000,2 +2219,2232,2234,7293,-0.213793103448318,0.478571428571656,-0.206896551724159,0.471428571428787,-0.206896551724159,0.485714285714540,-0.200000000000000,0.478571428571672,-0.014285714285752,-0.000000000000000,0.000000000000014,-0.013793103448318,-0.000000000000017,0.013793103448318,0.014285714285754,-0.000000000000000,2 +2220,2233,2235,7294,-0.213793103448318,0.492857142857403,-0.206896551724159,0.485714285714540,-0.206896551724159,0.500000000000283,-0.200000000000000,0.492857142857421,-0.014285714285742,-0.000000000000000,0.000000000000017,-0.013793103448318,-0.000000000000019,0.013793103448318,0.014285714285744,-0.000000000000000,2 +2221,2234,2236,7295,-0.213793103448318,0.507142857143086,-0.206896551724159,0.500000000000283,-0.206896551724159,0.514285714285905,-0.200000000000000,0.507142857143103,-0.014285714285624,-0.000000000000000,0.000000000000019,-0.013793103448318,-0.000000000000015,0.013793103448318,0.014285714285620,-0.000000000000000,2 +2222,2235,2237,7296,-0.213793103448318,0.521428571428697,-0.206896551724159,0.514285714285905,-0.206896551724159,0.528571428571501,-0.200000000000000,0.521428571428709,-0.014285714285599,-0.000000000000000,0.000000000000015,-0.013793103448318,-0.000000000000009,0.013793103448318,0.014285714285593,-0.000000000000000,2 +2223,2236,2238,7297,-0.213793103448318,0.535714285714337,-0.206896551724159,0.528571428571501,-0.206896551724159,0.542857142857180,-0.200000000000000,0.535714285714345,-0.014285714285680,-0.000000000000000,0.000000000000009,-0.013793103448318,-0.000000000000007,0.013793103448318,0.014285714285677,-0.000000000000000,2 +2224,2237,2239,7298,-0.213793103448318,0.550000000000016,-0.206896551724159,0.542857142857180,-0.206896551724159,0.557142857142858,-0.200000000000000,0.550000000000022,-0.014285714285680,0.000000000000000,0.000000000000007,-0.013793103448318,-0.000000000000004,0.013793103448318,0.014285714285677,-0.000000000000000,2 +2225,2238,2240,7299,-0.213793103448318,0.564285714285696,-0.206896551724159,0.557142857142858,-0.206896551724159,0.571428571428537,-0.200000000000000,0.564285714285699,-0.014285714285680,-0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000001,0.013793103448318,0.014285714285677,-0.000000000000000,2 +2226,2239,2241,7300,-0.213793103448318,0.578571428571395,-0.206896551724159,0.571428571428537,-0.206896551724159,0.585714285714255,-0.200000000000000,0.578571428571396,-0.014285714285718,-0.000000000000000,0.000000000000001,-0.013793103448318,-0.000000000000000,0.013793103448318,0.014285714285717,-0.000000000000000,2 +1830,2227,2240,7301,-0.206896551724159,0.600000000000000,-0.213793103448318,0.592857142857127,-0.206896551724159,0.585714285714255,-0.200000000000000,0.592857142857127,-0.000000000000000,0.013793103448318,-0.014285714285745,0.000000000000000,0.000000000000000,-0.013793103448318,0.014285714285745,-0.000000000000000,2 +2243,2301,3966,8100,-0.206896551724127,-0.386440677966119,-0.213793103448254,-0.393220338983059,-0.206896551724127,-0.400000000000000,-0.200000000000000,-0.393220338983059,0.000000000000000,0.013793103448255,-0.013559322033882,-0.000000000000001,0.000000000000000,-0.013793103448254,0.013559322033881,0.000000000000000,2 +2242,2244,2302,8114,-0.206896551724127,-0.386440677966119,-0.206896551724128,-0.372881355932259,-0.213793103448255,-0.379661016949189,-0.200000000000000,-0.379661016949189,-0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2243,2245,2303,8128,-0.206896551724128,-0.372881355932259,-0.206896551724129,-0.359322033898399,-0.213793103448256,-0.366101694915329,-0.200000000000000,-0.366101694915329,-0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2244,2246,2304,8142,-0.206896551724129,-0.359322033898399,-0.206896551724129,-0.345762711864539,-0.213793103448258,-0.352542372881469,-0.200000000000000,-0.352542372881469,-0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2245,2247,2305,8156,-0.206896551724129,-0.345762711864539,-0.206896551724130,-0.332203389830670,-0.213793103448259,-0.338983050847605,-0.200000000000000,-0.338983050847605,-0.000000000000000,-0.013793103448258,0.000000000000000,0.013793103448259,-0.013559322033869,-0.000000000000001,0.013559322033869,0.000000000000000,2 +2246,2248,2306,8170,-0.206896551724130,-0.332203389830670,-0.206896551724130,-0.318644067796787,-0.213793103448260,-0.325423728813729,-0.200000000000000,-0.325423728813729,-0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448260,-0.013559322033883,-0.000000000000001,0.013559322033883,0.000000000000000,2 +2247,2249,2307,8184,-0.206896551724130,-0.318644067796787,-0.206896551724131,-0.305084745762915,-0.213793103448261,-0.311864406779851,-0.200000000000000,-0.311864406779851,-0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033872,-0.000000000000001,0.013559322033872,0.000000000000000,2 +2248,2250,2308,8198,-0.206896551724131,-0.305084745762915,-0.206896551724131,-0.291525423729035,-0.213793103448262,-0.298305084745975,-0.200000000000000,-0.298305084745975,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448262,-0.013559322033879,-0.000000000000001,0.013559322033879,0.000000000000000,2 +2249,2251,2309,8212,-0.206896551724131,-0.291525423729035,-0.206896551724132,-0.277966101695176,-0.213793103448263,-0.284745762712106,-0.200000000000000,-0.284745762712106,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2250,2252,2310,8226,-0.206896551724132,-0.277966101695176,-0.206896551724132,-0.264406779661316,-0.213793103448264,-0.271186440678246,-0.200000000000000,-0.271186440678246,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2251,2253,2311,8240,-0.206896551724132,-0.264406779661316,-0.206896551724133,-0.250847457627456,-0.213793103448265,-0.257627118644386,-0.200000000000000,-0.257627118644386,-0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2252,2254,2312,8254,-0.206896551724133,-0.250847457627456,-0.206896551724133,-0.237288135593597,-0.213793103448266,-0.244067796610526,-0.200000000000000,-0.244067796610526,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448267,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2253,2255,2313,8268,-0.206896551724133,-0.237288135593597,-0.206896551724134,-0.223728813559737,-0.213793103448267,-0.230508474576667,-0.200000000000000,-0.230508474576667,0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2254,2256,2314,8282,-0.206896551724134,-0.223728813559737,-0.206896551724135,-0.210169491525877,-0.213793103448268,-0.216949152542807,-0.200000000000000,-0.216949152542807,-0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2255,2257,2315,8296,-0.206896551724135,-0.210169491525877,-0.206896551724135,-0.196610169492017,-0.213793103448270,-0.203389830508947,-0.200000000000000,-0.203389830508947,-0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2256,2258,2316,8310,-0.206896551724135,-0.196610169492017,-0.206896551724136,-0.183050847458158,-0.213793103448271,-0.189830508475087,-0.200000000000000,-0.189830508475088,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2257,2259,2317,8324,-0.206896551724136,-0.183050847458158,-0.206896551724136,-0.169491525424298,-0.213793103448272,-0.176271186441228,-0.200000000000000,-0.176271186441228,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2258,2260,2318,8338,-0.206896551724136,-0.169491525424298,-0.206896551724137,-0.155932203390438,-0.213793103448273,-0.162711864407368,-0.200000000000000,-0.162711864407368,-0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2259,2261,2319,8352,-0.206896551724137,-0.155932203390438,-0.206896551724137,-0.142372881356579,-0.213793103448274,-0.149152542373509,-0.200000000000000,-0.149152542373509,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2260,2262,2320,8366,-0.206896551724137,-0.142372881356579,-0.206896551724138,-0.128813559322719,-0.213793103448275,-0.135593220339649,-0.200000000000000,-0.135593220339649,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2261,2263,2321,8380,-0.206896551724138,-0.128813559322719,-0.206896551724138,-0.115254237288859,-0.213793103448276,-0.122033898305789,-0.200000000000000,-0.122033898305789,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2262,2264,2322,8394,-0.206896551724138,-0.115254237288859,-0.206896551724139,-0.101694915255008,-0.213793103448277,-0.108474576271933,-0.200000000000000,-0.108474576271933,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033852,-0.000000000000001,0.013559322033852,0.000000000000000,2 +2263,2265,2323,8408,-0.206896551724139,-0.101694915255008,-0.206896551724139,-0.088135593221162,-0.213793103448278,-0.094915254238085,-0.200000000000000,-0.094915254238085,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448279,-0.013559322033846,-0.000000000000001,0.013559322033846,0.000000000000000,2 +2264,2266,2324,8422,-0.206896551724139,-0.088135593221162,-0.206896551724140,-0.074576271187302,-0.213793103448279,-0.081355932204232,-0.200000000000000,-0.081355932204232,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2265,2267,2325,8436,-0.206896551724140,-0.074576271187302,-0.206896551724141,-0.061016949153442,-0.213793103448280,-0.067796610170372,-0.200000000000000,-0.067796610170372,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2266,2268,2326,8450,-0.206896551724141,-0.061016949153442,-0.206896551724141,-0.047457627119583,-0.213793103448282,-0.054237288136513,-0.200000000000000,-0.054237288136513,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2267,2269,2327,8464,-0.206896551724141,-0.047457627119583,-0.206896551724142,-0.033898305085723,-0.213793103448283,-0.040677966102653,-0.200000000000000,-0.040677966102653,-0.000000000000000,-0.013793103448282,0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2268,2270,2328,8478,-0.206896551724142,-0.033898305085723,-0.206896551724142,-0.020338983051863,-0.213793103448284,-0.027118644068793,-0.200000000000000,-0.027118644068793,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2269,2271,2329,8492,-0.206896551724142,-0.020338983051863,-0.206896551724143,-0.006779661018004,-0.213793103448285,-0.013559322034933,-0.200000000000000,-0.013559322034933,0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 +2270,2272,2330,8506,-0.206896551724143,-0.006779661018004,-0.206896551724143,0.006779661015891,-0.213793103448286,-0.000000000001056,-0.200000000000000,-0.000000000001056,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448286,-0.013559322033895,-0.000000000000001,0.013559322033895,0.000000000000000,2 +2271,2273,2331,8520,-0.206896551724143,0.006779661015891,-0.206896551724144,0.020338983049833,-0.213793103448287,0.013559322032862,-0.200000000000000,0.013559322032862,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448288,-0.013559322033941,-0.000000000000001,0.013559322033941,0.000000000000000,2 +2272,2274,2332,8534,-0.206896551724144,0.020338983049833,-0.206896551724144,0.033898305083763,-0.213793103448288,0.027118644066798,-0.200000000000000,0.027118644066798,-0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448289,-0.013559322033930,-0.000000000000001,0.013559322033930,0.000000000000000,2 +2273,2275,2333,8548,-0.206896551724144,0.033898305083763,-0.206896551724145,0.047457627117699,-0.213793103448289,0.040677966100731,-0.200000000000000,0.040677966100731,0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448290,-0.013559322033937,-0.000000000000001,0.013559322033937,0.000000000000000,2 +2274,2276,2334,8562,-0.206896551724145,0.047457627117699,-0.206896551724145,0.061016949151634,-0.213793103448290,0.054237288134667,-0.200000000000000,0.054237288134667,-0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033935,-0.000000000000001,0.013559322033935,0.000000000000000,2 +2275,2277,2335,8576,-0.206896551724145,0.061016949151634,-0.206896551724146,0.074576271185565,-0.213793103448291,0.067796610168599,-0.200000000000000,0.067796610168599,0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448292,-0.013559322033930,-0.000000000000001,0.013559322033930,0.000000000000000,2 +2276,2278,2336,8590,-0.206896551724146,0.074576271185565,-0.206896551724147,0.088135593219506,-0.213793103448292,0.081355932202535,-0.200000000000000,0.081355932202535,-0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448293,-0.013559322033941,-0.000000000000001,0.013559322033941,0.000000000000000,2 +2277,2279,2337,8604,-0.206896551724147,0.088135593219506,-0.206896551724147,0.101694915253436,-0.213793103448294,0.094915254236471,-0.200000000000000,0.094915254236471,-0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448294,-0.013559322033930,-0.000000000000001,0.013559322033930,0.000000000000000,2 +2278,2280,2338,8618,-0.206896551724147,0.101694915253436,-0.206896551724148,0.115254237287382,-0.213793103448295,0.108474576270409,-0.200000000000000,0.108474576270409,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033946,-0.000000000000001,0.013559322033946,0.000000000000000,2 +2279,2281,2339,8632,-0.206896551724148,0.115254237287382,-0.206896551724148,0.128813559321301,-0.213793103448296,0.122033898304341,-0.200000000000000,0.122033898304341,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033919,-0.000000000000001,0.013559322033919,0.000000000000000,2 +2280,2282,2340,8646,-0.206896551724148,0.128813559321301,-0.206896551724149,0.142372881355246,-0.213793103448297,0.135593220338273,-0.200000000000000,0.135593220338273,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033945,-0.000000000000001,0.013559322033945,0.000000000000000,2 +2281,2283,2341,8660,-0.206896551724149,0.142372881355246,-0.206896551724149,0.155932203389179,-0.213793103448298,0.149152542372213,-0.200000000000000,0.149152542372213,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448298,-0.013559322033933,-0.000000000000001,0.013559322033933,0.000000000000000,2 +2282,2284,2342,8674,-0.206896551724149,0.155932203389179,-0.206896551724150,0.169491525423110,-0.213793103448299,0.162711864406145,-0.200000000000000,0.162711864406145,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448299,-0.013559322033931,-0.000000000000001,0.013559322033931,0.000000000000000,2 +2283,2285,2343,8688,-0.206896551724150,0.169491525423110,-0.206896551724150,0.183050847457058,-0.213793103448300,0.176271186440084,-0.200000000000000,0.176271186440084,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448301,-0.013559322033948,-0.000000000000001,0.013559322033947,0.000000000000000,2 +2284,2286,2344,8702,-0.206896551724150,0.183050847457058,-0.206896551724151,0.196610169490975,-0.213793103448301,0.189830508474016,-0.200000000000000,0.189830508474016,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448302,-0.013559322033917,-0.000000000000001,0.013559322033917,0.000000000000000,2 +2285,2287,2345,8716,-0.206896551724151,0.196610169490975,-0.206896551724151,0.210169491524915,-0.213793103448302,0.203389830507945,-0.200000000000000,0.203389830507945,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448303,-0.013559322033940,-0.000000000000001,0.013559322033940,0.000000000000000,2 +2286,2288,2346,8730,-0.206896551724151,0.210169491524915,-0.206896551724152,0.223728813558839,-0.213793103448303,0.216949152541877,-0.200000000000000,0.216949152541877,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033924,-0.000000000000001,0.013559322033924,0.000000000000000,2 +2287,2289,2347,8744,-0.206896551724152,0.223728813558839,-0.206896551724152,0.237288135592793,-0.213793103448304,0.230508474575816,-0.200000000000000,0.230508474575816,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033954,-0.000000000000001,0.013559322033954,0.000000000000000,2 +2288,2290,2348,8758,-0.206896551724152,0.237288135592793,-0.206896551724153,0.250847457626703,-0.213793103448306,0.244067796609748,-0.200000000000000,0.244067796609748,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448306,-0.013559322033910,-0.000000000000001,0.013559322033910,0.000000000000000,2 +2289,2291,2349,8772,-0.206896551724153,0.250847457626703,-0.206896551724154,0.264406779660657,-0.213793103448307,0.257627118643680,-0.200000000000000,0.257627118643680,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448307,-0.013559322033954,-0.000000000000001,0.013559322033954,0.000000000000000,2 +2290,2292,2350,8786,-0.206896551724154,0.264406779660657,-0.206896551724154,0.277966101694579,-0.213793103448308,0.271186440677618,-0.200000000000000,0.271186440677618,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448308,-0.013559322033922,-0.000000000000001,0.013559322033922,0.000000000000000,2 +2291,2293,2351,8800,-0.206896551724154,0.277966101694579,-0.206896551724155,0.291525423728521,-0.213793103448309,0.284745762711550,-0.200000000000000,0.284745762711550,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033942,-0.000000000000001,0.013559322033942,0.000000000000000,2 +2292,2294,2352,8814,-0.206896551724155,0.291525423728521,-0.206896551724155,0.305084745762457,-0.213793103448310,0.298305084745489,-0.200000000000000,0.298305084745489,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448311,-0.013559322033936,-0.000000000000001,0.013559322033936,0.000000000000000,2 +2293,2295,2353,8828,-0.206896551724155,0.305084745762457,-0.206896551724156,0.318644067796385,-0.213793103448311,0.311864406779421,-0.200000000000000,0.311864406779421,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448312,-0.013559322033928,-0.000000000000001,0.013559322033928,0.000000000000000,2 +2294,2296,2354,8842,-0.206896551724156,0.318644067796385,-0.206896551724156,0.332203389830336,-0.213793103448312,0.325423728813361,-0.200000000000000,0.325423728813361,0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448313,-0.013559322033951,-0.000000000000001,0.013559322033950,0.000000000000000,2 +2295,2297,2355,8856,-0.206896551724156,0.332203389830336,-0.206896551724157,0.345762711864250,-0.213793103448313,0.338983050847293,-0.200000000000000,0.338983050847293,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448314,-0.013559322033914,-0.000000000000001,0.013559322033914,0.000000000000000,2 +2296,2298,2356,8870,-0.206896551724157,0.345762711864250,-0.206896551724157,0.359322033898204,-0.213793103448314,0.352542372881227,-0.200000000000000,0.352542372881227,0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448315,-0.013559322033954,-0.000000000000001,0.013559322033954,0.000000000000000,2 +2297,2299,2357,8884,-0.206896551724157,0.359322033898204,-0.206896551724158,0.372881355932121,-0.213793103448315,0.366101694915162,-0.200000000000000,0.366101694915163,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448316,-0.013559322033918,-0.000000000000001,0.013559322033918,0.000000000000000,2 +2298,2300,2358,8898,-0.206896551724158,0.372881355932121,-0.206896551724158,0.386440677966068,-0.213793103448317,0.379661016949095,-0.200000000000000,0.379661016949095,0.000000000000000,-0.013793103448316,-0.000000000000000,0.013793103448317,-0.013559322033946,-0.000000000000001,0.013559322033946,0.000000000000000,2 +2228,2299,2359,8912,-0.206896551724159,0.400000000000000,-0.206896551724158,0.386440677966068,-0.213793103448318,0.393220338983034,-0.200000000000000,0.393220338983034,-0.000000000000000,0.013793103448318,0.000000000000000,-0.013793103448317,-0.013559322033932,-0.000000000000001,0.013559322033932,-0.000000000000000,2 +2242,2302,2360,3980,-0.213793103448254,-0.393220338983059,-0.220689655172377,-0.386440677966118,-0.227586206896498,-0.393220338983059,-0.220689655172375,-0.400000000000000,0.013559322033882,0.000000000000001,-0.000000000000000,0.013793103448244,-0.013559322033882,-0.000000000000002,0.000000000000000,-0.013793103448243,2 +2243,2301,2303,2361,-0.213793103448255,-0.379661016949189,-0.220689655172377,-0.386440677966118,-0.220689655172379,-0.372881355932259,-0.227586206896500,-0.379661016949189,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448245,-0.013559322033860,-0.000000000000002,2 +2244,2302,2304,2362,-0.213793103448256,-0.366101694915329,-0.220689655172379,-0.372881355932259,-0.220689655172380,-0.359322033898399,-0.227586206896502,-0.366101694915329,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448246,-0.013559322033860,-0.000000000000002,2 +2245,2303,2305,2363,-0.213793103448258,-0.352542372881469,-0.220689655172380,-0.359322033898399,-0.220689655172382,-0.345762711864539,-0.227586206896505,-0.352542372881469,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000002,2 +2246,2304,2306,2364,-0.213793103448259,-0.338983050847605,-0.220689655172382,-0.345762711864539,-0.220689655172384,-0.332203389830670,-0.227586206896507,-0.338983050847605,0.013559322033869,0.000000000000001,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448249,-0.013559322033869,-0.000000000000002,2 +2247,2305,2307,2365,-0.213793103448260,-0.325423728813729,-0.220689655172384,-0.332203389830670,-0.220689655172385,-0.318644067796787,-0.227586206896509,-0.325423728813729,0.013559322033883,0.000000000000001,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448250,-0.013559322033883,-0.000000000000002,2 +2248,2306,2308,2366,-0.213793103448261,-0.311864406779851,-0.220689655172385,-0.318644067796787,-0.220689655172387,-0.305084745762915,-0.227586206896512,-0.311864406779851,0.013559322033872,0.000000000000001,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448252,-0.013559322033872,-0.000000000000002,2 +2249,2307,2309,2367,-0.213793103448262,-0.298305084745975,-0.220689655172387,-0.305084745762915,-0.220689655172389,-0.291525423729035,-0.227586206896514,-0.298305084745975,0.013559322033879,0.000000000000001,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033879,-0.000000000000002,2 +2250,2308,2310,2368,-0.213793103448263,-0.284745762712106,-0.220689655172389,-0.291525423729035,-0.220689655172391,-0.277966101695176,-0.227586206896516,-0.284745762712106,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448254,-0.013559322033860,-0.000000000000002,2 +2251,2309,2311,2369,-0.213793103448264,-0.271186440678246,-0.220689655172391,-0.277966101695176,-0.220689655172392,-0.264406779661316,-0.227586206896519,-0.271186440678246,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000002,2 +2252,2310,2312,2370,-0.213793103448265,-0.257627118644386,-0.220689655172392,-0.264406779661316,-0.220689655172394,-0.250847457627456,-0.227586206896521,-0.257627118644386,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000002,2 +2253,2311,2313,2371,-0.213793103448266,-0.244067796610526,-0.220689655172394,-0.250847457627456,-0.220689655172396,-0.237288135593597,-0.227586206896523,-0.244067796610526,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000002,2 +2254,2312,2314,2372,-0.213793103448267,-0.230508474576667,-0.220689655172396,-0.237288135593597,-0.220689655172397,-0.223728813559737,-0.227586206896526,-0.230508474576667,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000002,2 +2255,2313,2315,2373,-0.213793103448268,-0.216949152542807,-0.220689655172397,-0.223728813559737,-0.220689655172399,-0.210169491525877,-0.227586206896528,-0.216949152542807,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000002,2 +2256,2314,2316,2374,-0.213793103448270,-0.203389830508947,-0.220689655172399,-0.210169491525877,-0.220689655172401,-0.196610169492017,-0.227586206896530,-0.203389830508947,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000002,2 +2257,2315,2317,2375,-0.213793103448271,-0.189830508475087,-0.220689655172401,-0.196610169492017,-0.220689655172403,-0.183050847458158,-0.227586206896533,-0.189830508475088,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000002,2 +2258,2316,2318,2376,-0.213793103448272,-0.176271186441228,-0.220689655172403,-0.183050847458158,-0.220689655172404,-0.169491525424298,-0.227586206896535,-0.176271186441228,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448264,-0.013559322033860,-0.000000000000002,2 +2259,2317,2319,2377,-0.213793103448273,-0.162711864407368,-0.220689655172404,-0.169491525424298,-0.220689655172406,-0.155932203390438,-0.227586206896537,-0.162711864407368,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000002,2 +2260,2318,2320,2378,-0.213793103448274,-0.149152542373509,-0.220689655172406,-0.155932203390438,-0.220689655172408,-0.142372881356579,-0.227586206896540,-0.149152542373509,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000002,2 +2261,2319,2321,2379,-0.213793103448275,-0.135593220339649,-0.220689655172408,-0.142372881356579,-0.220689655172409,-0.128813559322719,-0.227586206896542,-0.135593220339649,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000002,2 +2262,2320,2322,2380,-0.213793103448276,-0.122033898305789,-0.220689655172409,-0.128813559322719,-0.220689655172411,-0.115254237288859,-0.227586206896544,-0.122033898305789,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000002,2 +2263,2321,2323,2381,-0.213793103448277,-0.108474576271933,-0.220689655172411,-0.115254237288859,-0.220689655172413,-0.101694915255008,-0.227586206896547,-0.108474576271933,0.013559322033852,0.000000000000001,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448270,-0.013559322033852,-0.000000000000002,2 +2264,2322,2324,2382,-0.213793103448278,-0.094915254238085,-0.220689655172413,-0.101694915255008,-0.220689655172415,-0.088135593221162,-0.227586206896549,-0.094915254238085,0.013559322033846,0.000000000000001,0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448271,-0.013559322033846,-0.000000000000002,2 +2265,2323,2325,2383,-0.213793103448279,-0.081355932204232,-0.220689655172415,-0.088135593221162,-0.220689655172416,-0.074576271187302,-0.227586206896551,-0.081355932204232,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000002,2 +2266,2324,2326,2384,-0.213793103448280,-0.067796610170372,-0.220689655172416,-0.074576271187302,-0.220689655172418,-0.061016949153442,-0.227586206896554,-0.067796610170372,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000002,2 +2267,2325,2327,2385,-0.213793103448282,-0.054237288136513,-0.220689655172418,-0.061016949153442,-0.220689655172420,-0.047457627119583,-0.227586206896556,-0.054237288136513,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000002,2 +2268,2326,2328,2386,-0.213793103448283,-0.040677966102653,-0.220689655172420,-0.047457627119583,-0.220689655172421,-0.033898305085723,-0.227586206896558,-0.040677966102653,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000002,2 +2269,2327,2329,2387,-0.213793103448284,-0.027118644068793,-0.220689655172421,-0.033898305085723,-0.220689655172423,-0.020338983051863,-0.227586206896561,-0.027118644068793,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000002,2 +2270,2328,2330,2388,-0.213793103448285,-0.013559322034933,-0.220689655172423,-0.020338983051863,-0.220689655172425,-0.006779661018004,-0.227586206896563,-0.013559322034934,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000002,2 +2271,2329,2331,2389,-0.213793103448286,-0.000000000001056,-0.220689655172425,-0.006779661018004,-0.220689655172427,0.006779661015891,-0.227586206896565,-0.000000000001056,0.013559322033895,0.000000000000001,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448280,-0.013559322033895,-0.000000000000002,2 +2272,2330,2332,2390,-0.213793103448287,0.013559322032862,-0.220689655172427,0.006779661015891,-0.220689655172428,0.020338983049833,-0.227586206896568,0.013559322032862,0.013559322033941,0.000000000000001,0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448281,-0.013559322033941,-0.000000000000002,2 +2273,2331,2333,2391,-0.213793103448288,0.027118644066798,-0.220689655172428,0.020338983049833,-0.220689655172430,0.033898305083763,-0.227586206896570,0.027118644066798,0.013559322033930,0.000000000000001,-0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000002,2 +2274,2332,2334,2392,-0.213793103448289,0.040677966100731,-0.220689655172430,0.033898305083763,-0.220689655172432,0.047457627117699,-0.227586206896572,0.040677966100731,0.013559322033937,0.000000000000001,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033937,-0.000000000000002,2 +2275,2333,2335,2393,-0.213793103448290,0.054237288134667,-0.220689655172432,0.047457627117699,-0.220689655172433,0.061016949151634,-0.227586206896575,0.054237288134667,0.013559322033935,0.000000000000001,0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448285,-0.013559322033935,-0.000000000000002,2 +2276,2334,2336,2394,-0.213793103448291,0.067796610168599,-0.220689655172433,0.061016949151634,-0.220689655172435,0.074576271185565,-0.227586206896577,0.067796610168599,0.013559322033930,0.000000000000001,-0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448286,-0.013559322033930,-0.000000000000002,2 +2277,2335,2337,2395,-0.213793103448292,0.081355932202535,-0.220689655172435,0.074576271185565,-0.220689655172437,0.088135593219506,-0.227586206896579,0.081355932202535,0.013559322033941,0.000000000000001,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448288,-0.013559322033941,-0.000000000000002,2 +2278,2336,2338,2396,-0.213793103448294,0.094915254236471,-0.220689655172437,0.088135593219506,-0.220689655172439,0.101694915253436,-0.227586206896582,0.094915254236471,0.013559322033930,0.000000000000001,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448289,-0.013559322033930,-0.000000000000002,2 +2279,2337,2339,2397,-0.213793103448295,0.108474576270409,-0.220689655172439,0.101694915253436,-0.220689655172440,0.115254237287382,-0.227586206896584,0.108474576270409,0.013559322033946,0.000000000000001,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448290,-0.013559322033946,-0.000000000000002,2 +2280,2338,2340,2398,-0.213793103448296,0.122033898304341,-0.220689655172440,0.115254237287382,-0.220689655172442,0.128813559321301,-0.227586206896586,0.122033898304341,0.013559322033919,0.000000000000001,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033919,-0.000000000000002,2 +2281,2339,2341,2399,-0.213793103448297,0.135593220338273,-0.220689655172442,0.128813559321301,-0.220689655172444,0.142372881355246,-0.227586206896589,0.135593220338273,0.013559322033945,0.000000000000001,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033945,-0.000000000000002,2 +2282,2340,2342,2400,-0.213793103448298,0.149152542372213,-0.220689655172444,0.142372881355246,-0.220689655172445,0.155932203389179,-0.227586206896591,0.149152542372213,0.013559322033933,0.000000000000001,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033933,-0.000000000000002,2 +2283,2341,2343,2401,-0.213793103448299,0.162711864406145,-0.220689655172445,0.155932203389179,-0.220689655172447,0.169491525423110,-0.227586206896593,0.162711864406145,0.013559322033931,0.000000000000001,0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448295,-0.013559322033931,-0.000000000000002,2 +2284,2342,2344,2402,-0.213793103448300,0.176271186440084,-0.220689655172447,0.169491525423110,-0.220689655172449,0.183050847457058,-0.227586206896596,0.176271186440084,0.013559322033948,0.000000000000001,-0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033947,-0.000000000000002,2 +2285,2343,2345,2403,-0.213793103448301,0.189830508474016,-0.220689655172449,0.183050847457058,-0.220689655172451,0.196610169490975,-0.227586206896598,0.189830508474016,0.013559322033917,0.000000000000001,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448298,-0.013559322033917,-0.000000000000002,2 +2286,2344,2346,2404,-0.213793103448302,0.203389830507945,-0.220689655172451,0.196610169490975,-0.220689655172452,0.210169491524915,-0.227586206896601,0.203389830507945,0.013559322033940,0.000000000000001,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448299,-0.013559322033940,-0.000000000000002,2 +2287,2345,2347,2405,-0.213793103448303,0.216949152541877,-0.220689655172452,0.210169491524915,-0.220689655172454,0.223728813558839,-0.227586206896603,0.216949152541877,0.013559322033924,0.000000000000001,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033924,-0.000000000000002,2 +2288,2346,2348,2406,-0.213793103448304,0.230508474575816,-0.220689655172454,0.223728813558839,-0.220689655172456,0.237288135592793,-0.227586206896605,0.230508474575816,0.013559322033954,0.000000000000001,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448301,-0.013559322033954,-0.000000000000002,2 +2289,2347,2349,2407,-0.213793103448306,0.244067796609748,-0.220689655172456,0.237288135592793,-0.220689655172457,0.250847457626703,-0.227586206896607,0.244067796609748,0.013559322033910,0.000000000000001,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448302,-0.013559322033910,-0.000000000000002,2 +2290,2348,2350,2408,-0.213793103448307,0.257627118643680,-0.220689655172457,0.250847457626703,-0.220689655172459,0.264406779660657,-0.227586206896610,0.257627118643680,0.013559322033954,0.000000000000001,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448304,-0.013559322033954,-0.000000000000002,2 +2291,2349,2351,2409,-0.213793103448308,0.271186440677618,-0.220689655172459,0.264406779660657,-0.220689655172461,0.277966101694579,-0.227586206896612,0.271186440677618,0.013559322033922,0.000000000000001,0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448305,-0.013559322033922,-0.000000000000002,2 +2292,2350,2352,2410,-0.213793103448309,0.284745762711550,-0.220689655172461,0.277966101694579,-0.220689655172463,0.291525423728521,-0.227586206896615,0.284745762711550,0.013559322033942,0.000000000000001,-0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448306,-0.013559322033942,-0.000000000000002,2 +2293,2351,2353,2411,-0.213793103448310,0.298305084745489,-0.220689655172463,0.291525423728521,-0.220689655172464,0.305084745762457,-0.227586206896617,0.298305084745489,0.013559322033936,0.000000000000001,-0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448307,-0.013559322033936,-0.000000000000002,2 +2294,2352,2354,2412,-0.213793103448311,0.311864406779421,-0.220689655172464,0.305084745762457,-0.220689655172466,0.318644067796385,-0.227586206896619,0.311864406779421,0.013559322033928,0.000000000000001,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448309,-0.013559322033928,-0.000000000000002,2 +2295,2353,2355,2413,-0.213793103448312,0.325423728813361,-0.220689655172466,0.318644067796385,-0.220689655172468,0.332203389830336,-0.227586206896622,0.325423728813361,0.013559322033951,0.000000000000001,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448310,-0.013559322033950,-0.000000000000002,2 +2296,2354,2356,2414,-0.213793103448313,0.338983050847293,-0.220689655172468,0.332203389830336,-0.220689655172469,0.345762711864250,-0.227586206896624,0.338983050847293,0.013559322033914,0.000000000000001,0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448311,-0.013559322033914,-0.000000000000002,2 +2297,2355,2357,2415,-0.213793103448314,0.352542372881227,-0.220689655172469,0.345762711864250,-0.220689655172471,0.359322033898203,-0.227586206896626,0.352542372881227,0.013559322033954,0.000000000000001,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448312,-0.013559322033954,-0.000000000000002,2 +2298,2356,2358,2416,-0.213793103448315,0.366101694915162,-0.220689655172471,0.359322033898203,-0.220689655172473,0.372881355932121,-0.227586206896629,0.366101694915162,0.013559322033918,0.000000000000001,0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448314,-0.013559322033918,-0.000000000000002,2 +2299,2357,2359,2417,-0.213793103448317,0.379661016949095,-0.220689655172473,0.372881355932121,-0.220689655172475,0.386440677966068,-0.227586206896631,0.379661016949094,0.013559322033946,0.000000000000001,0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448315,-0.013559322033947,-0.000000000000002,2 +2214,2300,2358,2418,-0.220689655172476,0.400000000000000,-0.213793103448318,0.393220338983034,-0.220689655172475,0.386440677966068,-0.227586206896633,0.393220338983034,0.000000000000000,0.013793103448316,0.013559322033932,0.000000000000001,0.000000000000000,-0.013793103448315,-0.013559322033932,-0.000000000000002,2 +2301,2361,2419,3994,-0.227586206896498,-0.393220338983059,-0.234482758620626,-0.386440677966118,-0.241379310344752,-0.393220338983059,-0.234482758620623,-0.400000000000000,0.013559322033882,0.000000000000002,-0.000000000000000,0.013793103448255,-0.013559322033882,-0.000000000000003,0.000000000000000,-0.013793103448254,2 +2302,2360,2362,2420,-0.227586206896500,-0.379661016949189,-0.234482758620626,-0.386440677966118,-0.234482758620629,-0.372881355932259,-0.241379310344755,-0.379661016949189,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000003,2 +2303,2361,2363,2421,-0.227586206896502,-0.366101694915329,-0.234482758620629,-0.372881355932259,-0.234482758620632,-0.359322033898399,-0.241379310344758,-0.366101694915329,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000003,2 +2304,2362,2364,2422,-0.227586206896505,-0.352542372881469,-0.234482758620632,-0.359322033898399,-0.234482758620635,-0.345762711864539,-0.241379310344762,-0.352542372881469,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000003,2 +2305,2363,2365,2423,-0.227586206896507,-0.338983050847605,-0.234482758620635,-0.345762711864539,-0.234482758620637,-0.332203389830670,-0.241379310344765,-0.338983050847605,0.013559322033869,0.000000000000002,0.000000000000000,-0.013793103448258,0.000000000000000,0.013793103448259,-0.013559322033869,-0.000000000000003,2 +2306,2364,2366,2424,-0.227586206896509,-0.325423728813729,-0.234482758620637,-0.332203389830670,-0.234482758620640,-0.318644067796787,-0.241379310344768,-0.325423728813729,0.013559322033883,0.000000000000002,-0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448260,-0.013559322033883,-0.000000000000003,2 +2307,2365,2367,2425,-0.227586206896512,-0.311864406779851,-0.234482758620640,-0.318644067796787,-0.234482758620643,-0.305084745762915,-0.241379310344772,-0.311864406779851,0.013559322033872,0.000000000000002,0.000000000000000,-0.013793103448260,0.000000000000000,0.013793103448261,-0.013559322033873,-0.000000000000003,2 +2308,2366,2368,2426,-0.227586206896514,-0.298305084745975,-0.234482758620643,-0.305084745762915,-0.234482758620646,-0.291525423729035,-0.241379310344775,-0.298305084745975,0.013559322033879,0.000000000000002,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448261,-0.013559322033879,-0.000000000000003,2 +2309,2367,2369,2427,-0.227586206896516,-0.284745762712106,-0.234482758620646,-0.291525423729035,-0.234482758620649,-0.277966101695176,-0.241379310344778,-0.284745762712106,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000003,2 +2310,2368,2370,2428,-0.227586206896519,-0.271186440678246,-0.234482758620649,-0.277966101695176,-0.234482758620652,-0.264406779661316,-0.241379310344782,-0.271186440678246,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448264,-0.013559322033860,-0.000000000000003,2 +2311,2369,2371,2429,-0.227586206896521,-0.257627118644386,-0.234482758620652,-0.264406779661316,-0.234482758620654,-0.250847457627456,-0.241379310344785,-0.257627118644386,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000003,2 +2312,2370,2372,2430,-0.227586206896523,-0.244067796610526,-0.234482758620654,-0.250847457627456,-0.234482758620657,-0.237288135593597,-0.241379310344788,-0.244067796610526,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448265,-0.013559322033859,-0.000000000000003,2 +2313,2371,2373,2431,-0.227586206896526,-0.230508474576667,-0.234482758620657,-0.237288135593597,-0.234482758620660,-0.223728813559737,-0.241379310344792,-0.230508474576667,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000003,2 +2314,2372,2374,2432,-0.227586206896528,-0.216949152542807,-0.234482758620660,-0.223728813559737,-0.234482758620663,-0.210169491525877,-0.241379310344795,-0.216949152542807,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448267,-0.013559322033860,-0.000000000000003,2 +2315,2373,2375,2433,-0.227586206896530,-0.203389830508947,-0.234482758620663,-0.210169491525877,-0.234482758620666,-0.196610169492017,-0.241379310344798,-0.203389830508947,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000003,2 +2316,2374,2376,2434,-0.227586206896533,-0.189830508475088,-0.234482758620666,-0.196610169492017,-0.234482758620669,-0.183050847458158,-0.241379310344802,-0.189830508475088,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000003,2 +2317,2375,2377,2435,-0.227586206896535,-0.176271186441228,-0.234482758620669,-0.183050847458158,-0.234482758620671,-0.169491525424298,-0.241379310344805,-0.176271186441228,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000003,2 +2318,2376,2378,2436,-0.227586206896537,-0.162711864407368,-0.234482758620671,-0.169491525424298,-0.234482758620674,-0.155932203390438,-0.241379310344808,-0.162711864407368,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000003,2 +2319,2377,2379,2437,-0.227586206896540,-0.149152542373509,-0.234482758620674,-0.155932203390438,-0.234482758620677,-0.142372881356579,-0.241379310344812,-0.149152542373509,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000003,2 +2320,2378,2380,2438,-0.227586206896542,-0.135593220339649,-0.234482758620677,-0.142372881356579,-0.234482758620680,-0.128813559322719,-0.241379310344815,-0.135593220339649,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000003,2 +2321,2379,2381,2439,-0.227586206896544,-0.122033898305789,-0.234482758620680,-0.128813559322719,-0.234482758620683,-0.115254237288859,-0.241379310344818,-0.122033898305789,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000003,2 +2322,2380,2382,2440,-0.227586206896547,-0.108474576271933,-0.234482758620683,-0.115254237288859,-0.234482758620686,-0.101694915255008,-0.241379310344822,-0.108474576271933,0.013559322033852,0.000000000000002,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448275,-0.013559322033852,-0.000000000000003,2 +2323,2381,2383,2441,-0.227586206896549,-0.094915254238085,-0.234482758620686,-0.101694915255008,-0.234482758620688,-0.088135593221162,-0.241379310344825,-0.094915254238085,0.013559322033846,0.000000000000002,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448276,-0.013559322033846,-0.000000000000003,2 +2324,2382,2384,2442,-0.227586206896551,-0.081355932204232,-0.234482758620688,-0.088135593221162,-0.234482758620691,-0.074576271187302,-0.241379310344828,-0.081355932204232,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000003,2 +2325,2383,2385,2443,-0.227586206896554,-0.067796610170372,-0.234482758620691,-0.074576271187302,-0.234482758620694,-0.061016949153442,-0.241379310344832,-0.067796610170372,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000003,2 +2326,2384,2386,2444,-0.227586206896556,-0.054237288136513,-0.234482758620694,-0.061016949153442,-0.234482758620697,-0.047457627119583,-0.241379310344835,-0.054237288136513,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000003,2 +2327,2385,2387,2445,-0.227586206896558,-0.040677966102653,-0.234482758620697,-0.047457627119583,-0.234482758620700,-0.033898305085723,-0.241379310344838,-0.040677966102653,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000003,2 +2328,2386,2388,2446,-0.227586206896561,-0.027118644068793,-0.234482758620700,-0.033898305085723,-0.234482758620703,-0.020338983051863,-0.241379310344841,-0.027118644068793,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000003,2 +2329,2387,2389,2447,-0.227586206896563,-0.013559322034934,-0.234482758620703,-0.020338983051863,-0.234482758620705,-0.006779661018004,-0.241379310344845,-0.013559322034934,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000003,2 +2330,2388,2390,2448,-0.227586206896565,-0.000000000001056,-0.234482758620705,-0.006779661018004,-0.234482758620708,0.006779661015891,-0.241379310344848,-0.000000000001056,0.013559322033895,0.000000000000002,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033895,-0.000000000000003,2 +2331,2389,2391,2449,-0.227586206896568,0.013559322032862,-0.234482758620708,0.006779661015891,-0.234482758620711,0.020338983049833,-0.241379310344851,0.013559322032862,0.013559322033941,0.000000000000002,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033941,-0.000000000000003,2 +2332,2390,2392,2450,-0.227586206896570,0.027118644066798,-0.234482758620711,0.020338983049833,-0.234482758620714,0.033898305083763,-0.241379310344855,0.027118644066798,0.013559322033930,0.000000000000002,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448285,-0.013559322033930,-0.000000000000003,2 +2333,2391,2393,2451,-0.227586206896572,0.040677966100731,-0.234482758620714,0.033898305083763,-0.234482758620717,0.047457627117699,-0.241379310344858,0.040677966100731,0.013559322033937,0.000000000000002,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448286,-0.013559322033937,-0.000000000000003,2 +2334,2392,2394,2452,-0.227586206896575,0.054237288134667,-0.234482758620717,0.047457627117699,-0.234482758620719,0.061016949151634,-0.241379310344861,0.054237288134667,0.013559322033935,0.000000000000002,0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448287,-0.013559322033935,-0.000000000000003,2 +2335,2393,2395,2453,-0.227586206896577,0.067796610168599,-0.234482758620719,0.061016949151634,-0.234482758620722,0.074576271185565,-0.241379310344865,0.067796610168599,0.013559322033930,0.000000000000002,-0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033930,-0.000000000000003,2 +2336,2394,2396,2454,-0.227586206896579,0.081355932202535,-0.234482758620722,0.074576271185565,-0.234482758620725,0.088135593219506,-0.241379310344868,0.081355932202535,0.013559322033941,0.000000000000002,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448289,-0.013559322033941,-0.000000000000003,2 +2337,2395,2397,2455,-0.227586206896582,0.094915254236471,-0.234482758620725,0.088135593219506,-0.234482758620728,0.101694915253436,-0.241379310344871,0.094915254236471,0.013559322033930,0.000000000000002,-0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448290,-0.013559322033930,-0.000000000000003,2 +2338,2396,2398,2456,-0.227586206896584,0.108474576270409,-0.234482758620728,0.101694915253436,-0.234482758620731,0.115254237287382,-0.241379310344875,0.108474576270409,0.013559322033946,0.000000000000002,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033946,-0.000000000000003,2 +2339,2397,2399,2457,-0.227586206896586,0.122033898304341,-0.234482758620731,0.115254237287382,-0.234482758620734,0.128813559321301,-0.241379310344878,0.122033898304341,0.013559322033919,0.000000000000002,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033919,-0.000000000000003,2 +2340,2398,2400,2458,-0.227586206896589,0.135593220338273,-0.234482758620734,0.128813559321301,-0.234482758620737,0.142372881355246,-0.241379310344881,0.135593220338273,0.013559322033945,0.000000000000002,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448293,-0.013559322033945,-0.000000000000003,2 +2341,2399,2401,2459,-0.227586206896591,0.149152542372213,-0.234482758620737,0.142372881355246,-0.234482758620739,0.155932203389179,-0.241379310344885,0.149152542372213,0.013559322033933,0.000000000000002,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448294,-0.013559322033933,-0.000000000000003,2 +2342,2400,2402,2460,-0.227586206896593,0.162711864406145,-0.234482758620739,0.155932203389179,-0.234482758620742,0.169491525423110,-0.241379310344888,0.162711864406145,0.013559322033931,0.000000000000002,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033931,-0.000000000000003,2 +2343,2401,2403,2461,-0.227586206896596,0.176271186440084,-0.234482758620742,0.169491525423110,-0.234482758620745,0.183050847457058,-0.241379310344891,0.176271186440084,0.013559322033947,0.000000000000002,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033948,-0.000000000000003,2 +2344,2402,2404,2462,-0.227586206896598,0.189830508474016,-0.234482758620745,0.183050847457058,-0.234482758620748,0.196610169490975,-0.241379310344895,0.189830508474016,0.013559322033917,0.000000000000002,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033917,-0.000000000000003,2 +2345,2403,2405,2463,-0.227586206896601,0.203389830507945,-0.234482758620748,0.196610169490975,-0.234482758620751,0.210169491524915,-0.241379310344898,0.203389830507945,0.013559322033940,0.000000000000002,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448298,-0.013559322033940,-0.000000000000003,2 +2346,2404,2406,2464,-0.227586206896603,0.216949152541877,-0.234482758620751,0.210169491524915,-0.234482758620754,0.223728813558839,-0.241379310344901,0.216949152541877,0.013559322033924,0.000000000000002,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448299,-0.013559322033924,-0.000000000000003,2 +2347,2405,2407,2465,-0.227586206896605,0.230508474575816,-0.234482758620754,0.223728813558839,-0.234482758620756,0.237288135592793,-0.241379310344905,0.230508474575816,0.013559322033954,0.000000000000002,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033954,-0.000000000000003,2 +2348,2406,2408,2466,-0.227586206896607,0.244067796609748,-0.234482758620756,0.237288135592793,-0.234482758620759,0.250847457626703,-0.241379310344908,0.244067796609748,0.013559322033910,0.000000000000002,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448301,-0.013559322033910,-0.000000000000003,2 +2349,2407,2409,2467,-0.227586206896610,0.257627118643680,-0.234482758620759,0.250847457626703,-0.234482758620762,0.264406779660657,-0.241379310344911,0.257627118643680,0.013559322033954,0.000000000000002,0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448302,-0.013559322033954,-0.000000000000003,2 +2350,2408,2410,2468,-0.227586206896612,0.271186440677618,-0.234482758620762,0.264406779660657,-0.234482758620765,0.277966101694579,-0.241379310344915,0.271186440677618,0.013559322033922,0.000000000000002,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448303,-0.013559322033922,-0.000000000000003,2 +2351,2409,2411,2469,-0.227586206896615,0.284745762711550,-0.234482758620765,0.277966101694579,-0.234482758620768,0.291525423728521,-0.241379310344918,0.284745762711550,0.013559322033942,0.000000000000002,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033942,-0.000000000000003,2 +2352,2410,2412,2470,-0.227586206896617,0.298305084745489,-0.234482758620768,0.291525423728521,-0.234482758620770,0.305084745762457,-0.241379310344921,0.298305084745489,0.013559322033936,0.000000000000002,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033936,-0.000000000000003,2 +2353,2411,2413,2471,-0.227586206896619,0.311864406779421,-0.234482758620770,0.305084745762457,-0.234482758620773,0.318644067796385,-0.241379310344925,0.311864406779421,0.013559322033928,0.000000000000002,0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448306,-0.013559322033928,-0.000000000000003,2 +2354,2412,2414,2472,-0.227586206896622,0.325423728813361,-0.234482758620773,0.318644067796385,-0.234482758620776,0.332203389830336,-0.241379310344928,0.325423728813361,0.013559322033950,0.000000000000002,-0.000000000000000,-0.013793103448306,0.000000000000000,0.013793103448307,-0.013559322033950,-0.000000000000003,2 +2355,2413,2415,2473,-0.227586206896624,0.338983050847293,-0.234482758620776,0.332203389830336,-0.234482758620779,0.345762711864250,-0.241379310344931,0.338983050847293,0.013559322033914,0.000000000000002,-0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448308,-0.013559322033914,-0.000000000000003,2 +2356,2414,2416,2474,-0.227586206896626,0.352542372881227,-0.234482758620779,0.345762711864250,-0.234482758620782,0.359322033898203,-0.241379310344935,0.352542372881227,0.013559322033954,0.000000000000002,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033954,-0.000000000000003,2 +2357,2415,2417,2475,-0.227586206896629,0.366101694915162,-0.234482758620782,0.359322033898203,-0.234482758620785,0.372881355932121,-0.241379310344938,0.366101694915162,0.013559322033918,0.000000000000002,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448310,-0.013559322033918,-0.000000000000003,2 +2358,2416,2418,2476,-0.227586206896631,0.379661016949094,-0.234482758620785,0.372881355932121,-0.234482758620787,0.386440677966068,-0.241379310344941,0.379661016949094,0.013559322033947,0.000000000000002,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448311,-0.013559322033946,-0.000000000000003,2 +2200,2359,2417,2477,-0.234482758620790,0.400000000000000,-0.227586206896633,0.393220338983034,-0.234482758620787,0.386440677966068,-0.241379310344945,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000002,0.000000000000000,-0.013793103448311,-0.013559322033932,-0.000000000000003,2 +2360,2420,2478,4008,-0.241379310344752,-0.393220338983059,-0.248275862068876,-0.386440677966118,-0.255172413792997,-0.393220338983059,-0.248275862068872,-0.400000000000000,0.013559322033882,0.000000000000003,-0.000000000000000,0.013793103448246,-0.013559322033882,-0.000000000000005,0.000000000000000,-0.013793103448245,2 +2361,2419,2421,2479,-0.241379310344755,-0.379661016949189,-0.248275862068876,-0.386440677966118,-0.248275862068880,-0.372881355932259,-0.255172413793001,-0.379661016949189,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000004,2 +2362,2420,2422,2480,-0.241379310344758,-0.366101694915329,-0.248275862068880,-0.372881355932259,-0.248275862068884,-0.359322033898399,-0.255172413793006,-0.366101694915329,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000004,2 +2363,2421,2423,2481,-0.241379310344762,-0.352542372881469,-0.248275862068884,-0.359322033898399,-0.248275862068888,-0.345762711864539,-0.255172413793010,-0.352542372881469,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000004,2 +2364,2422,2424,2482,-0.241379310344765,-0.338983050847605,-0.248275862068888,-0.345762711864539,-0.248275862068892,-0.332203389830670,-0.255172413793015,-0.338983050847605,0.013559322033869,0.000000000000003,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448250,-0.013559322033869,-0.000000000000004,2 +2365,2423,2425,2483,-0.241379310344768,-0.325423728813729,-0.248275862068892,-0.332203389830670,-0.248275862068896,-0.318644067796787,-0.255172413793019,-0.325423728813729,0.013559322033883,0.000000000000003,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448252,-0.013559322033883,-0.000000000000004,2 +2366,2424,2426,2484,-0.241379310344772,-0.311864406779851,-0.248275862068896,-0.318644067796787,-0.248275862068900,-0.305084745762915,-0.255172413793024,-0.311864406779851,0.013559322033873,0.000000000000003,-0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033872,-0.000000000000004,2 +2367,2425,2427,2485,-0.241379310344775,-0.298305084745975,-0.248275862068900,-0.305084745762915,-0.248275862068904,-0.291525423729035,-0.255172413793028,-0.298305084745975,0.013559322033879,0.000000000000003,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448254,-0.013559322033879,-0.000000000000004,2 +2368,2426,2428,2486,-0.241379310344778,-0.284745762712106,-0.248275862068904,-0.291525423729035,-0.248275862068907,-0.277966101695176,-0.255172413793033,-0.284745762712106,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000004,2 +2369,2427,2429,2487,-0.241379310344782,-0.271186440678246,-0.248275862068907,-0.277966101695176,-0.248275862068911,-0.264406779661316,-0.255172413793037,-0.271186440678246,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000004,2 +2370,2428,2430,2488,-0.241379310344785,-0.257627118644386,-0.248275862068911,-0.264406779661316,-0.248275862068915,-0.250847457627456,-0.255172413793042,-0.257627118644386,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000004,2 +2371,2429,2431,2489,-0.241379310344788,-0.244067796610526,-0.248275862068915,-0.250847457627456,-0.248275862068919,-0.237288135593597,-0.255172413793046,-0.244067796610526,0.013559322033859,0.000000000000003,0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000004,2 +2372,2430,2432,2490,-0.241379310344792,-0.230508474576667,-0.248275862068919,-0.237288135593597,-0.248275862068923,-0.223728813559737,-0.255172413793051,-0.230508474576667,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000004,2 +2373,2431,2433,2491,-0.241379310344795,-0.216949152542807,-0.248275862068923,-0.223728813559737,-0.248275862068927,-0.210169491525877,-0.255172413793055,-0.216949152542807,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000004,2 +2374,2432,2434,2492,-0.241379310344798,-0.203389830508947,-0.248275862068927,-0.210169491525877,-0.248275862068931,-0.196610169492017,-0.255172413793059,-0.203389830508947,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000004,2 +2375,2433,2435,2493,-0.241379310344802,-0.189830508475088,-0.248275862068931,-0.196610169492017,-0.248275862068935,-0.183050847458158,-0.255172413793064,-0.189830508475088,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000004,2 +2376,2434,2436,2494,-0.241379310344805,-0.176271186441228,-0.248275862068935,-0.183050847458158,-0.248275862068939,-0.169491525424298,-0.255172413793068,-0.176271186441228,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448264,-0.013559322033860,-0.000000000000004,2 +2377,2435,2437,2495,-0.241379310344808,-0.162711864407368,-0.248275862068939,-0.169491525424298,-0.248275862068942,-0.155932203390438,-0.255172413793073,-0.162711864407368,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000004,2 +2378,2436,2438,2496,-0.241379310344812,-0.149152542373509,-0.248275862068942,-0.155932203390438,-0.248275862068946,-0.142372881356579,-0.255172413793077,-0.149152542373509,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000004,2 +2379,2437,2439,2497,-0.241379310344815,-0.135593220339649,-0.248275862068946,-0.142372881356579,-0.248275862068950,-0.128813559322719,-0.255172413793082,-0.135593220339649,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448267,-0.013559322033860,-0.000000000000004,2 +2380,2438,2440,2498,-0.241379310344818,-0.122033898305789,-0.248275862068950,-0.128813559322719,-0.248275862068954,-0.115254237288859,-0.255172413793086,-0.122033898305789,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000004,2 +2381,2439,2441,2499,-0.241379310344822,-0.108474576271933,-0.248275862068954,-0.115254237288859,-0.248275862068958,-0.101694915255008,-0.255172413793091,-0.108474576271933,0.013559322033852,0.000000000000003,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448270,-0.013559322033852,-0.000000000000004,2 +2382,2440,2442,2500,-0.241379310344825,-0.094915254238085,-0.248275862068958,-0.101694915255008,-0.248275862068962,-0.088135593221162,-0.255172413793095,-0.094915254238085,0.013559322033846,0.000000000000003,0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448271,-0.013559322033846,-0.000000000000004,2 +2383,2441,2443,2501,-0.241379310344828,-0.081355932204232,-0.248275862068962,-0.088135593221162,-0.248275862068966,-0.074576271187302,-0.255172413793100,-0.081355932204232,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000004,2 +2384,2442,2444,2502,-0.241379310344832,-0.067796610170372,-0.248275862068966,-0.074576271187302,-0.248275862068970,-0.061016949153442,-0.255172413793104,-0.067796610170372,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000005,2 +2385,2443,2445,2503,-0.241379310344835,-0.054237288136513,-0.248275862068970,-0.061016949153442,-0.248275862068974,-0.047457627119583,-0.255172413793109,-0.054237288136513,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000004,2 +2386,2444,2446,2504,-0.241379310344838,-0.040677966102653,-0.248275862068974,-0.047457627119583,-0.248275862068978,-0.033898305085723,-0.255172413793113,-0.040677966102653,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000005,2 +2387,2445,2447,2505,-0.241379310344841,-0.027118644068793,-0.248275862068978,-0.033898305085723,-0.248275862068981,-0.020338983051863,-0.255172413793117,-0.027118644068793,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000004,2 +2388,2446,2448,2506,-0.241379310344845,-0.013559322034934,-0.248275862068981,-0.020338983051863,-0.248275862068985,-0.006779661018004,-0.255172413793122,-0.013559322034933,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000005,2 +2389,2447,2449,2507,-0.241379310344848,-0.000000000001056,-0.248275862068985,-0.006779661018004,-0.248275862068989,0.006779661015891,-0.255172413793126,-0.000000000001056,0.013559322033895,0.000000000000003,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448279,-0.013559322033895,-0.000000000000004,2 +2390,2448,2450,2508,-0.241379310344851,0.013559322032862,-0.248275862068989,0.006779661015891,-0.248275862068993,0.020338983049833,-0.255172413793131,0.013559322032862,0.013559322033941,0.000000000000003,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448280,-0.013559322033941,-0.000000000000004,2 +2391,2449,2451,2509,-0.241379310344855,0.027118644066798,-0.248275862068993,0.020338983049833,-0.248275862068997,0.033898305083763,-0.255172413793135,0.027118644066798,0.013559322033930,0.000000000000003,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448281,-0.013559322033930,-0.000000000000004,2 +2392,2450,2452,2510,-0.241379310344858,0.040677966100731,-0.248275862068997,0.033898305083763,-0.248275862069001,0.047457627117699,-0.255172413793140,0.040677966100731,0.013559322033937,0.000000000000003,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448282,-0.013559322033937,-0.000000000000004,2 +2393,2451,2453,2511,-0.241379310344861,0.054237288134667,-0.248275862069001,0.047457627117699,-0.248275862069005,0.061016949151634,-0.255172413793144,0.054237288134667,0.013559322033935,0.000000000000003,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033935,-0.000000000000004,2 +2394,2452,2454,2512,-0.241379310344865,0.067796610168599,-0.248275862069005,0.061016949151634,-0.248275862069009,0.074576271185565,-0.255172413793149,0.067796610168599,0.013559322033930,0.000000000000003,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033930,-0.000000000000004,2 +2395,2453,2455,2513,-0.241379310344868,0.081355932202535,-0.248275862069009,0.074576271185565,-0.248275862069013,0.088135593219506,-0.255172413793153,0.081355932202535,0.013559322033941,0.000000000000003,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448286,-0.013559322033941,-0.000000000000004,2 +2396,2454,2456,2514,-0.241379310344871,0.094915254236471,-0.248275862069013,0.088135593219506,-0.248275862069016,0.101694915253436,-0.255172413793158,0.094915254236471,0.013559322033930,0.000000000000003,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033930,-0.000000000000004,2 +2397,2455,2457,2515,-0.241379310344875,0.108474576270409,-0.248275862069016,0.101694915253436,-0.248275862069020,0.115254237287382,-0.255172413793162,0.108474576270409,0.013559322033946,0.000000000000003,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033946,-0.000000000000005,2 +2398,2456,2458,2516,-0.241379310344878,0.122033898304341,-0.248275862069020,0.115254237287382,-0.248275862069024,0.128813559321301,-0.255172413793167,0.122033898304341,0.013559322033919,0.000000000000003,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448289,-0.013559322033919,-0.000000000000004,2 +2399,2457,2459,2517,-0.241379310344881,0.135593220338273,-0.248275862069024,0.128813559321301,-0.248275862069028,0.142372881355246,-0.255172413793171,0.135593220338273,0.013559322033945,0.000000000000003,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448290,-0.013559322033945,-0.000000000000004,2 +2400,2458,2460,2518,-0.241379310344885,0.149152542372213,-0.248275862069028,0.142372881355246,-0.248275862069032,0.155932203389179,-0.255172413793175,0.149152542372213,0.013559322033933,0.000000000000003,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033933,-0.000000000000004,2 +2401,2459,2461,2519,-0.241379310344888,0.162711864406145,-0.248275862069032,0.155932203389179,-0.248275862069036,0.169491525423110,-0.255172413793180,0.162711864406145,0.013559322033931,0.000000000000003,0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448292,-0.013559322033931,-0.000000000000004,2 +2402,2460,2462,2520,-0.241379310344891,0.176271186440084,-0.248275862069036,0.169491525423110,-0.248275862069040,0.183050847457058,-0.255172413793184,0.176271186440084,0.013559322033948,0.000000000000003,-0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033947,-0.000000000000004,2 +2403,2461,2463,2521,-0.241379310344895,0.189830508474016,-0.248275862069040,0.183050847457058,-0.248275862069044,0.196610169490975,-0.255172413793189,0.189830508474016,0.013559322033917,0.000000000000003,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033917,-0.000000000000004,2 +2404,2462,2464,2522,-0.241379310344898,0.203389830507945,-0.248275862069044,0.196610169490975,-0.248275862069048,0.210169491524915,-0.255172413793193,0.203389830507945,0.013559322033940,0.000000000000003,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033940,-0.000000000000005,2 +2405,2463,2465,2523,-0.241379310344901,0.216949152541877,-0.248275862069048,0.210169491524915,-0.248275862069052,0.223728813558839,-0.255172413793198,0.216949152541877,0.013559322033924,0.000000000000003,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033924,-0.000000000000004,2 +2406,2464,2466,2524,-0.241379310344905,0.230508474575816,-0.248275862069052,0.223728813558839,-0.248275862069055,0.237288135592793,-0.255172413793202,0.230508474575816,0.013559322033954,0.000000000000003,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448298,-0.013559322033954,-0.000000000000004,2 +2407,2465,2467,2525,-0.241379310344908,0.244067796609748,-0.248275862069055,0.237288135592793,-0.248275862069059,0.250847457626703,-0.255172413793207,0.244067796609748,0.013559322033910,0.000000000000003,-0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448299,-0.013559322033910,-0.000000000000005,2 +2408,2466,2468,2526,-0.241379310344911,0.257627118643680,-0.248275862069059,0.250847457626703,-0.248275862069063,0.264406779660657,-0.255172413793211,0.257627118643680,0.013559322033954,0.000000000000003,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448301,-0.013559322033954,-0.000000000000004,2 +2409,2467,2469,2527,-0.241379310344915,0.271186440677618,-0.248275862069063,0.264406779660657,-0.248275862069067,0.277966101694579,-0.255172413793216,0.271186440677618,0.013559322033922,0.000000000000003,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448302,-0.013559322033922,-0.000000000000004,2 +2410,2468,2470,2528,-0.241379310344918,0.284745762711550,-0.248275862069067,0.277966101694579,-0.248275862069071,0.291525423728521,-0.255172413793220,0.284745762711550,0.013559322033942,0.000000000000003,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448303,-0.013559322033942,-0.000000000000004,2 +2411,2469,2471,2529,-0.241379310344921,0.298305084745489,-0.248275862069071,0.291525423728521,-0.248275862069075,0.305084745762457,-0.255172413793225,0.298305084745489,0.013559322033936,0.000000000000003,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033936,-0.000000000000004,2 +2412,2470,2472,2530,-0.241379310344925,0.311864406779421,-0.248275862069075,0.305084745762457,-0.248275862069079,0.318644067796385,-0.255172413793229,0.311864406779421,0.013559322033928,0.000000000000003,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033928,-0.000000000000004,2 +2413,2471,2473,2531,-0.241379310344928,0.325423728813361,-0.248275862069079,0.318644067796385,-0.248275862069083,0.332203389830336,-0.255172413793233,0.325423728813361,0.013559322033950,0.000000000000003,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448306,-0.013559322033950,-0.000000000000004,2 +2414,2472,2474,2532,-0.241379310344931,0.338983050847293,-0.248275862069083,0.332203389830336,-0.248275862069087,0.345762711864250,-0.255172413793238,0.338983050847293,0.013559322033914,0.000000000000003,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448307,-0.013559322033914,-0.000000000000005,2 +2415,2473,2475,2533,-0.241379310344935,0.352542372881227,-0.248275862069087,0.345762711864250,-0.248275862069090,0.359322033898204,-0.255172413793242,0.352542372881227,0.013559322033954,0.000000000000003,0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000004,2 +2416,2474,2476,2534,-0.241379310344938,0.366101694915162,-0.248275862069090,0.359322033898204,-0.248275862069094,0.372881355932121,-0.255172413793247,0.366101694915162,0.013559322033918,0.000000000000003,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448310,-0.013559322033918,-0.000000000000004,2 +2417,2475,2477,2535,-0.241379310344941,0.379661016949094,-0.248275862069094,0.372881355932121,-0.248275862069098,0.386440677966068,-0.255172413793251,0.379661016949095,0.013559322033946,0.000000000000003,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448311,-0.013559322033946,-0.000000000000004,2 +2186,2418,2476,2536,-0.248275862069102,0.400000000000000,-0.241379310344945,0.393220338983034,-0.248275862069098,0.386440677966068,-0.255172413793256,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000003,-0.000000000000000,-0.013793103448311,-0.013559322033932,-0.000000000000004,2 +2419,2479,2537,4022,-0.255172413792997,-0.393220338983059,-0.262068965517117,-0.386440677966118,-0.268965517241233,-0.393220338983059,-0.262068965517112,-0.400000000000000,0.013559322033882,0.000000000000005,0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000006,0.000000000000000,-0.013793103448235,2 +2420,2478,2480,2538,-0.255172413793001,-0.379661016949189,-0.262068965517117,-0.386440677966118,-0.262068965517122,-0.372881355932259,-0.268965517241238,-0.379661016949189,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000006,2 +2421,2479,2481,2539,-0.255172413793006,-0.366101694915329,-0.262068965517122,-0.372881355932259,-0.262068965517128,-0.359322033898399,-0.268965517241244,-0.366101694915329,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000006,2 +2422,2480,2482,2540,-0.255172413793010,-0.352542372881469,-0.262068965517128,-0.359322033898399,-0.262068965517133,-0.345762711864539,-0.268965517241250,-0.352542372881469,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448240,-0.013559322033860,-0.000000000000006,2 +2423,2481,2483,2541,-0.255172413793015,-0.338983050847605,-0.262068965517133,-0.345762711864539,-0.262068965517138,-0.332203389830670,-0.268965517241256,-0.338983050847605,0.013559322033869,0.000000000000004,0.000000000000000,-0.013793103448240,0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000006,2 +2424,2482,2484,2542,-0.255172413793019,-0.325423728813729,-0.262068965517138,-0.332203389830670,-0.262068965517143,-0.318644067796787,-0.268965517241262,-0.325423728813729,0.013559322033883,0.000000000000004,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000006,2 +2425,2483,2485,2543,-0.255172413793024,-0.311864406779851,-0.262068965517143,-0.318644067796787,-0.262068965517148,-0.305084745762915,-0.268965517241267,-0.311864406779851,0.013559322033872,0.000000000000004,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448244,-0.013559322033872,-0.000000000000006,2 +2426,2484,2486,2544,-0.255172413793028,-0.298305084745975,-0.262068965517148,-0.305084745762915,-0.262068965517153,-0.291525423729035,-0.268965517241273,-0.298305084745975,0.013559322033879,0.000000000000004,0.000000000000000,-0.013793103448244,0.000000000000000,0.013793103448245,-0.013559322033880,-0.000000000000006,2 +2427,2485,2487,2545,-0.255172413793033,-0.284745762712106,-0.262068965517153,-0.291525423729035,-0.262068965517158,-0.277966101695176,-0.268965517241279,-0.284745762712105,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000006,2 +2428,2486,2488,2546,-0.255172413793037,-0.271186440678246,-0.262068965517158,-0.277966101695176,-0.262068965517163,-0.264406779661316,-0.268965517241285,-0.271186440678246,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000006,2 +2429,2487,2489,2547,-0.255172413793042,-0.257627118644386,-0.262068965517163,-0.264406779661316,-0.262068965517169,-0.250847457627456,-0.268965517241290,-0.257627118644386,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448250,-0.013559322033860,-0.000000000000006,2 +2430,2488,2490,2548,-0.255172413793046,-0.244067796610526,-0.262068965517169,-0.250847457627456,-0.262068965517174,-0.237288135593596,-0.268965517241296,-0.244067796610526,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000006,2 +2431,2489,2491,2549,-0.255172413793051,-0.230508474576667,-0.262068965517174,-0.237288135593596,-0.262068965517179,-0.223728813559737,-0.268965517241302,-0.230508474576667,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448252,-0.013559322033860,-0.000000000000006,2 +2432,2490,2492,2550,-0.255172413793055,-0.216949152542807,-0.262068965517179,-0.223728813559737,-0.262068965517184,-0.210169491525877,-0.268965517241308,-0.216949152542807,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000006,2 +2433,2491,2493,2551,-0.255172413793059,-0.203389830508947,-0.262068965517184,-0.210169491525877,-0.262068965517189,-0.196610169492017,-0.268965517241313,-0.203389830508947,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448254,-0.013559322033860,-0.000000000000006,2 +2434,2492,2494,2552,-0.255172413793064,-0.189830508475088,-0.262068965517189,-0.196610169492017,-0.262068965517194,-0.183050847458158,-0.268965517241319,-0.189830508475088,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000006,2 +2435,2493,2495,2553,-0.255172413793068,-0.176271186441228,-0.262068965517194,-0.183050847458158,-0.262068965517199,-0.169491525424298,-0.268965517241325,-0.176271186441228,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000006,2 +2436,2494,2496,2554,-0.255172413793073,-0.162711864407368,-0.262068965517199,-0.169491525424298,-0.262068965517204,-0.155932203390438,-0.268965517241331,-0.162711864407368,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000006,2 +2437,2495,2497,2555,-0.255172413793077,-0.149152542373509,-0.262068965517204,-0.155932203390438,-0.262068965517209,-0.142372881356579,-0.268965517241336,-0.149152542373509,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000006,2 +2438,2496,2498,2556,-0.255172413793082,-0.135593220339649,-0.262068965517209,-0.142372881356579,-0.262068965517215,-0.128813559322719,-0.268965517241342,-0.135593220339649,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000006,2 +2439,2497,2499,2557,-0.255172413793086,-0.122033898305789,-0.262068965517215,-0.128813559322719,-0.262068965517220,-0.115254237288859,-0.268965517241348,-0.122033898305789,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000006,2 +2440,2498,2500,2558,-0.255172413793091,-0.108474576271933,-0.262068965517220,-0.115254237288859,-0.262068965517225,-0.101694915255008,-0.268965517241354,-0.108474576271933,0.013559322033852,0.000000000000004,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448264,-0.013559322033852,-0.000000000000006,2 +2441,2499,2501,2559,-0.255172413793095,-0.094915254238085,-0.262068965517225,-0.101694915255008,-0.262068965517230,-0.088135593221162,-0.268965517241359,-0.094915254238085,0.013559322033846,0.000000000000004,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448265,-0.013559322033846,-0.000000000000006,2 +2442,2500,2502,2560,-0.255172413793100,-0.081355932204232,-0.262068965517230,-0.088135593221162,-0.262068965517235,-0.074576271187302,-0.268965517241365,-0.081355932204232,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000006,2 +2443,2501,2503,2561,-0.255172413793104,-0.067796610170372,-0.262068965517235,-0.074576271187302,-0.262068965517240,-0.061016949153442,-0.268965517241371,-0.067796610170372,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000006,2 +2444,2502,2504,2562,-0.255172413793109,-0.054237288136513,-0.262068965517240,-0.061016949153442,-0.262068965517245,-0.047457627119583,-0.268965517241377,-0.054237288136513,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000006,2 +2445,2503,2505,2563,-0.255172413793113,-0.040677966102653,-0.262068965517245,-0.047457627119583,-0.262068965517250,-0.033898305085723,-0.268965517241383,-0.040677966102653,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000006,2 +2446,2504,2506,2564,-0.255172413793117,-0.027118644068793,-0.262068965517250,-0.033898305085723,-0.262068965517255,-0.020338983051863,-0.268965517241388,-0.027118644068793,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000006,2 +2447,2505,2507,2565,-0.255172413793122,-0.013559322034933,-0.262068965517255,-0.020338983051863,-0.262068965517261,-0.006779661018004,-0.268965517241394,-0.013559322034934,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000006,2 +2448,2506,2508,2566,-0.255172413793126,-0.000000000001056,-0.262068965517261,-0.006779661018004,-0.262068965517266,0.006779661015891,-0.268965517241400,-0.000000000001056,0.013559322033895,0.000000000000004,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000006,2 +2449,2507,2509,2567,-0.255172413793131,0.013559322032862,-0.262068965517266,0.006779661015891,-0.262068965517271,0.020338983049833,-0.268965517241406,0.013559322032862,0.013559322033941,0.000000000000004,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448276,-0.013559322033941,-0.000000000000006,2 +2450,2508,2510,2568,-0.255172413793135,0.027118644066798,-0.262068965517271,0.020338983049833,-0.262068965517276,0.033898305083763,-0.268965517241411,0.027118644066798,0.013559322033930,0.000000000000004,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448277,-0.013559322033930,-0.000000000000006,2 +2451,2509,2511,2569,-0.255172413793140,0.040677966100731,-0.262068965517276,0.033898305083763,-0.262068965517281,0.047457627117699,-0.268965517241417,0.040677966100731,0.013559322033937,0.000000000000004,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033937,-0.000000000000006,2 +2452,2510,2512,2570,-0.255172413793144,0.054237288134667,-0.262068965517281,0.047457627117699,-0.262068965517286,0.061016949151634,-0.268965517241423,0.054237288134667,0.013559322033935,0.000000000000004,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448279,-0.013559322033935,-0.000000000000006,2 +2453,2511,2513,2571,-0.255172413793149,0.067796610168599,-0.262068965517286,0.061016949151634,-0.262068965517291,0.074576271185565,-0.268965517241429,0.067796610168599,0.013559322033930,0.000000000000004,-0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448281,-0.013559322033930,-0.000000000000006,2 +2454,2512,2514,2572,-0.255172413793153,0.081355932202535,-0.262068965517291,0.074576271185565,-0.262068965517296,0.088135593219506,-0.268965517241434,0.081355932202535,0.013559322033941,0.000000000000004,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448282,-0.013559322033941,-0.000000000000006,2 +2455,2513,2515,2573,-0.255172413793158,0.094915254236471,-0.262068965517296,0.088135593219506,-0.262068965517301,0.101694915253436,-0.268965517241440,0.094915254236471,0.013559322033930,0.000000000000004,-0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000006,2 +2456,2514,2516,2574,-0.255172413793162,0.108474576270409,-0.262068965517301,0.101694915253436,-0.262068965517307,0.115254237287382,-0.268965517241446,0.108474576270409,0.013559322033946,0.000000000000005,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033946,-0.000000000000006,2 +2457,2515,2517,2575,-0.255172413793167,0.122033898304341,-0.262068965517307,0.115254237287382,-0.262068965517312,0.128813559321301,-0.268965517241452,0.122033898304341,0.013559322033919,0.000000000000004,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448286,-0.013559322033919,-0.000000000000006,2 +2458,2516,2518,2576,-0.255172413793171,0.135593220338273,-0.262068965517312,0.128813559321301,-0.262068965517317,0.142372881355246,-0.268965517241457,0.135593220338273,0.013559322033945,0.000000000000004,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033945,-0.000000000000006,2 +2459,2517,2519,2577,-0.255172413793175,0.149152542372213,-0.262068965517317,0.142372881355246,-0.262068965517322,0.155932203389179,-0.268965517241463,0.149152542372213,0.013559322033933,0.000000000000004,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033933,-0.000000000000006,2 +2460,2518,2520,2578,-0.255172413793180,0.162711864406145,-0.262068965517322,0.155932203389179,-0.262068965517327,0.169491525423110,-0.268965517241469,0.162711864406145,0.013559322033931,0.000000000000004,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448290,-0.013559322033931,-0.000000000000006,2 +2461,2519,2521,2579,-0.255172413793184,0.176271186440084,-0.262068965517327,0.169491525423110,-0.262068965517332,0.183050847457058,-0.268965517241475,0.176271186440084,0.013559322033947,0.000000000000004,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033947,-0.000000000000006,2 +2462,2520,2522,2580,-0.255172413793189,0.189830508474016,-0.262068965517332,0.183050847457058,-0.262068965517337,0.196610169490975,-0.268965517241480,0.189830508474016,0.013559322033917,0.000000000000004,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033917,-0.000000000000006,2 +2463,2521,2523,2581,-0.255172413793193,0.203389830507945,-0.262068965517337,0.196610169490975,-0.262068965517342,0.210169491524915,-0.268965517241486,0.203389830507945,0.013559322033940,0.000000000000005,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448293,-0.013559322033940,-0.000000000000006,2 +2464,2522,2524,2582,-0.255172413793198,0.216949152541877,-0.262068965517342,0.210169491524915,-0.262068965517347,0.223728813558839,-0.268965517241492,0.216949152541877,0.013559322033924,0.000000000000004,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448295,-0.013559322033924,-0.000000000000006,2 +2465,2523,2525,2583,-0.255172413793202,0.230508474575816,-0.262068965517347,0.223728813558839,-0.262068965517352,0.237288135592793,-0.268965517241498,0.230508474575816,0.013559322033954,0.000000000000004,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033954,-0.000000000000006,2 +2466,2524,2526,2584,-0.255172413793207,0.244067796609748,-0.262068965517352,0.237288135592793,-0.262068965517358,0.250847457626703,-0.268965517241503,0.244067796609748,0.013559322033910,0.000000000000005,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033910,-0.000000000000006,2 +2467,2525,2527,2585,-0.255172413793211,0.257627118643680,-0.262068965517358,0.250847457626703,-0.262068965517363,0.264406779660657,-0.268965517241509,0.257627118643680,0.013559322033954,0.000000000000004,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448299,-0.013559322033954,-0.000000000000006,2 +2468,2526,2528,2586,-0.255172413793216,0.271186440677618,-0.262068965517363,0.264406779660657,-0.262068965517368,0.277966101694579,-0.268965517241515,0.271186440677618,0.013559322033922,0.000000000000004,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033922,-0.000000000000006,2 +2469,2527,2529,2587,-0.255172413793220,0.284745762711550,-0.262068965517368,0.277966101694579,-0.262068965517373,0.291525423728521,-0.268965517241521,0.284745762711550,0.013559322033942,0.000000000000004,0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448301,-0.013559322033942,-0.000000000000006,2 +2470,2528,2530,2588,-0.255172413793225,0.298305084745489,-0.262068965517373,0.291525423728521,-0.262068965517378,0.305084745762457,-0.268965517241527,0.298305084745489,0.013559322033936,0.000000000000004,-0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448303,-0.013559322033936,-0.000000000000006,2 +2471,2529,2531,2589,-0.255172413793229,0.311864406779421,-0.262068965517378,0.305084745762457,-0.262068965517383,0.318644067796385,-0.268965517241532,0.311864406779421,0.013559322033928,0.000000000000004,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033928,-0.000000000000006,2 +2472,2530,2532,2590,-0.255172413793233,0.325423728813361,-0.262068965517383,0.318644067796385,-0.262068965517388,0.332203389830336,-0.268965517241538,0.325423728813361,0.013559322033950,0.000000000000004,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033950,-0.000000000000006,2 +2473,2531,2533,2591,-0.255172413793238,0.338983050847293,-0.262068965517388,0.332203389830336,-0.262068965517393,0.345762711864250,-0.268965517241544,0.338983050847293,0.013559322033914,0.000000000000005,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448307,-0.013559322033914,-0.000000000000006,2 +2474,2532,2534,2592,-0.255172413793242,0.352542372881227,-0.262068965517393,0.345762711864250,-0.262068965517399,0.359322033898204,-0.268965517241550,0.352542372881227,0.013559322033954,0.000000000000004,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000006,2 +2475,2533,2535,2593,-0.255172413793247,0.366101694915162,-0.262068965517399,0.359322033898204,-0.262068965517404,0.372881355932121,-0.268965517241555,0.366101694915162,0.013559322033918,0.000000000000004,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033918,-0.000000000000006,2 +2476,2534,2536,2594,-0.255172413793251,0.379661016949095,-0.262068965517404,0.372881355932121,-0.262068965517409,0.386440677966068,-0.268965517241561,0.379661016949094,0.013559322033946,0.000000000000004,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448310,-0.013559322033946,-0.000000000000006,2 +2172,2477,2535,2595,-0.262068965517414,0.400000000000000,-0.255172413793256,0.393220338983034,-0.262068965517409,0.386440677966068,-0.268965517241567,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000004,0.000000000000000,-0.013793103448310,-0.013559322033932,-0.000000000000006,2 +2478,2538,2596,4036,-0.268965517241233,-0.393220338983059,-0.275862068965354,-0.386440677966118,-0.282758620689469,-0.393220338983059,-0.275862068965347,-0.400000000000000,0.013559322033882,0.000000000000006,-0.000000000000000,0.013793103448237,-0.013559322033882,-0.000000000000007,0.000000000000000,-0.013793103448235,2 +2479,2537,2539,2597,-0.268965517241238,-0.379661016949189,-0.275862068965354,-0.386440677966118,-0.275862068965360,-0.372881355932259,-0.282758620689476,-0.379661016949189,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000007,2 +2480,2538,2540,2598,-0.268965517241244,-0.366101694915329,-0.275862068965360,-0.372881355932259,-0.275862068965367,-0.359322033898399,-0.282758620689483,-0.366101694915329,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448238,0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000007,2 +2481,2539,2541,2599,-0.268965517241250,-0.352542372881469,-0.275862068965367,-0.359322033898399,-0.275862068965373,-0.345762711864539,-0.282758620689490,-0.352542372881469,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448241,-0.013559322033860,-0.000000000000007,2 +2482,2540,2542,2600,-0.268965517241256,-0.338983050847605,-0.275862068965373,-0.345762711864539,-0.275862068965380,-0.332203389830670,-0.282758620689497,-0.338983050847605,0.013559322033869,0.000000000000006,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000007,2 +2483,2541,2543,2601,-0.268965517241262,-0.325423728813729,-0.275862068965380,-0.332203389830670,-0.275862068965386,-0.318644067796787,-0.282758620689504,-0.325423728813729,0.013559322033883,0.000000000000006,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000007,2 +2484,2542,2544,2602,-0.268965517241267,-0.311864406779851,-0.275862068965386,-0.318644067796787,-0.275862068965393,-0.305084745762915,-0.282758620689512,-0.311864406779851,0.013559322033872,0.000000000000006,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448245,-0.013559322033872,-0.000000000000007,2 +2485,2543,2545,2603,-0.268965517241273,-0.298305084745975,-0.275862068965393,-0.305084745762915,-0.275862068965399,-0.291525423729035,-0.282758620689519,-0.298305084745975,0.013559322033880,0.000000000000006,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448246,-0.013559322033880,-0.000000000000007,2 +2486,2544,2546,2604,-0.268965517241279,-0.284745762712105,-0.275862068965399,-0.291525423729035,-0.275862068965406,-0.277966101695176,-0.282758620689526,-0.284745762712105,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000007,2 +2487,2545,2547,2605,-0.268965517241285,-0.271186440678246,-0.275862068965406,-0.277966101695176,-0.275862068965412,-0.264406779661316,-0.282758620689533,-0.271186440678246,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000007,2 +2488,2546,2548,2606,-0.268965517241290,-0.257627118644386,-0.275862068965412,-0.264406779661316,-0.275862068965419,-0.250847457627456,-0.282758620689540,-0.257627118644386,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448250,-0.013559322033860,-0.000000000000007,2 +2489,2547,2549,2607,-0.268965517241296,-0.244067796610526,-0.275862068965419,-0.250847457627456,-0.275862068965425,-0.237288135593597,-0.282758620689547,-0.244067796610526,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448252,-0.013559322033859,-0.000000000000007,2 +2490,2548,2550,2608,-0.268965517241302,-0.230508474576667,-0.275862068965425,-0.237288135593597,-0.275862068965431,-0.223728813559737,-0.282758620689554,-0.230508474576667,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000007,2 +2491,2549,2551,2609,-0.268965517241308,-0.216949152542807,-0.275862068965431,-0.223728813559737,-0.275862068965438,-0.210169491525877,-0.282758620689562,-0.216949152542807,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000007,2 +2492,2550,2552,2610,-0.268965517241313,-0.203389830508947,-0.275862068965438,-0.210169491525877,-0.275862068965444,-0.196610169492017,-0.282758620689569,-0.203389830508947,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000007,2 +2493,2551,2553,2611,-0.268965517241319,-0.189830508475088,-0.275862068965444,-0.196610169492017,-0.275862068965451,-0.183050847458158,-0.282758620689576,-0.189830508475088,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000007,2 +2494,2552,2554,2612,-0.268965517241325,-0.176271186441228,-0.275862068965451,-0.183050847458158,-0.275862068965457,-0.169491525424298,-0.282758620689583,-0.176271186441228,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000007,2 +2495,2553,2555,2613,-0.268965517241331,-0.162711864407368,-0.275862068965457,-0.169491525424298,-0.275862068965464,-0.155932203390438,-0.282758620689590,-0.162711864407368,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000007,2 +2496,2554,2556,2614,-0.268965517241336,-0.149152542373509,-0.275862068965464,-0.155932203390438,-0.275862068965470,-0.142372881356579,-0.282758620689597,-0.149152542373509,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000007,2 +2497,2555,2557,2615,-0.268965517241342,-0.135593220339649,-0.275862068965470,-0.142372881356579,-0.275862068965477,-0.128813559322719,-0.282758620689605,-0.135593220339649,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000007,2 +2498,2556,2558,2616,-0.268965517241348,-0.122033898305789,-0.275862068965477,-0.128813559322719,-0.275862068965483,-0.115254237288859,-0.282758620689612,-0.122033898305789,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448264,-0.013559322033860,-0.000000000000007,2 +2499,2557,2559,2617,-0.268965517241354,-0.108474576271933,-0.275862068965483,-0.115254237288859,-0.275862068965489,-0.101694915255008,-0.282758620689619,-0.108474576271933,0.013559322033852,0.000000000000006,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448266,-0.013559322033852,-0.000000000000007,2 +2500,2558,2560,2618,-0.268965517241359,-0.094915254238085,-0.275862068965489,-0.101694915255008,-0.275862068965496,-0.088135593221162,-0.282758620689626,-0.094915254238085,0.013559322033846,0.000000000000006,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448267,-0.013559322033846,-0.000000000000007,2 +2501,2559,2561,2619,-0.268965517241365,-0.081355932204232,-0.275862068965496,-0.088135593221162,-0.275862068965502,-0.074576271187302,-0.282758620689633,-0.081355932204232,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000007,2 +2502,2560,2562,2620,-0.268965517241371,-0.067796610170372,-0.275862068965502,-0.074576271187302,-0.275862068965509,-0.061016949153442,-0.282758620689640,-0.067796610170372,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000007,2 +2503,2561,2563,2621,-0.268965517241377,-0.054237288136513,-0.275862068965509,-0.061016949153442,-0.275862068965515,-0.047457627119583,-0.282758620689648,-0.054237288136512,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000007,2 +2504,2562,2564,2622,-0.268965517241383,-0.040677966102653,-0.275862068965515,-0.047457627119583,-0.275862068965522,-0.033898305085723,-0.282758620689655,-0.040677966102653,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000007,2 +2505,2563,2565,2623,-0.268965517241388,-0.027118644068793,-0.275862068965522,-0.033898305085723,-0.275862068965528,-0.020338983051863,-0.282758620689662,-0.027118644068793,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000007,2 +2506,2564,2566,2624,-0.268965517241394,-0.013559322034934,-0.275862068965528,-0.020338983051863,-0.275862068965535,-0.006779661018004,-0.282758620689669,-0.013559322034933,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000007,2 +2507,2565,2567,2625,-0.268965517241400,-0.000000000001056,-0.275862068965535,-0.006779661018004,-0.275862068965541,0.006779661015891,-0.282758620689676,-0.000000000001056,0.013559322033895,0.000000000000006,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448277,-0.013559322033895,-0.000000000000007,2 +2508,2566,2568,2626,-0.268965517241406,0.013559322032862,-0.275862068965541,0.006779661015891,-0.275862068965548,0.020338983049833,-0.282758620689683,0.013559322032862,0.013559322033941,0.000000000000006,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033941,-0.000000000000007,2 +2509,2567,2569,2627,-0.268965517241411,0.027118644066798,-0.275862068965548,0.020338983049833,-0.275862068965554,0.033898305083763,-0.282758620689690,0.027118644066798,0.013559322033930,0.000000000000006,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448280,-0.013559322033930,-0.000000000000007,2 +2510,2568,2570,2628,-0.268965517241417,0.040677966100731,-0.275862068965554,0.033898305083763,-0.275862068965561,0.047457627117699,-0.282758620689697,0.040677966100731,0.013559322033937,0.000000000000006,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448281,-0.013559322033937,-0.000000000000007,2 +2511,2569,2571,2629,-0.268965517241423,0.054237288134667,-0.275862068965561,0.047457627117699,-0.275862068965567,0.061016949151634,-0.282758620689705,0.054237288134667,0.013559322033935,0.000000000000006,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448283,-0.013559322033935,-0.000000000000007,2 +2512,2570,2572,2630,-0.268965517241429,0.067796610168599,-0.275862068965567,0.061016949151634,-0.275862068965574,0.074576271185564,-0.282758620689712,0.067796610168599,0.013559322033930,0.000000000000006,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033930,-0.000000000000007,2 +2513,2571,2573,2631,-0.268965517241434,0.081355932202535,-0.275862068965574,0.074576271185564,-0.275862068965580,0.088135593219506,-0.282758620689719,0.081355932202535,0.013559322033941,0.000000000000006,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448285,-0.013559322033941,-0.000000000000007,2 +2514,2572,2574,2632,-0.268965517241440,0.094915254236471,-0.275862068965580,0.088135593219506,-0.275862068965586,0.101694915253436,-0.282758620689726,0.094915254236471,0.013559322033930,0.000000000000006,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448287,-0.013559322033930,-0.000000000000007,2 +2515,2573,2575,2633,-0.268965517241446,0.108474576270409,-0.275862068965586,0.101694915253436,-0.275862068965593,0.115254237287382,-0.282758620689733,0.108474576270409,0.013559322033946,0.000000000000006,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033946,-0.000000000000007,2 +2516,2574,2576,2634,-0.268965517241452,0.122033898304341,-0.275862068965593,0.115254237287382,-0.275862068965599,0.128813559321301,-0.282758620689741,0.122033898304341,0.013559322033919,0.000000000000006,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448290,-0.013559322033919,-0.000000000000007,2 +2517,2575,2577,2635,-0.268965517241457,0.135593220338273,-0.275862068965599,0.128813559321301,-0.275862068965606,0.142372881355246,-0.282758620689748,0.135593220338273,0.013559322033945,0.000000000000006,0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448291,-0.013559322033945,-0.000000000000007,2 +2518,2576,2578,2636,-0.268965517241463,0.149152542372213,-0.275862068965606,0.142372881355246,-0.275862068965612,0.155932203389179,-0.282758620689755,0.149152542372213,0.013559322033933,0.000000000000006,-0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033933,-0.000000000000007,2 +2519,2577,2579,2637,-0.268965517241469,0.162711864406145,-0.275862068965612,0.155932203389179,-0.275862068965619,0.169491525423110,-0.282758620689762,0.162711864406145,0.013559322033931,0.000000000000006,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033931,-0.000000000000007,2 +2520,2578,2580,2638,-0.268965517241475,0.176271186440084,-0.275862068965619,0.169491525423110,-0.275862068965625,0.183050847457058,-0.282758620689769,0.176271186440084,0.013559322033947,0.000000000000006,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033947,-0.000000000000007,2 +2521,2579,2581,2639,-0.268965517241480,0.189830508474016,-0.275862068965625,0.183050847457058,-0.275862068965632,0.196610169490975,-0.282758620689776,0.189830508474016,0.013559322033917,0.000000000000006,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448297,-0.013559322033917,-0.000000000000007,2 +2522,2580,2582,2640,-0.268965517241486,0.203389830507945,-0.275862068965632,0.196610169490975,-0.275862068965638,0.210169491524915,-0.282758620689783,0.203389830507945,0.013559322033940,0.000000000000006,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448298,-0.013559322033940,-0.000000000000007,2 +2523,2581,2583,2641,-0.268965517241492,0.216949152541877,-0.275862068965638,0.210169491524915,-0.275862068965645,0.223728813558839,-0.282758620689791,0.216949152541877,0.013559322033924,0.000000000000006,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448299,-0.013559322033924,-0.000000000000007,2 +2524,2582,2584,2642,-0.268965517241498,0.230508474575816,-0.275862068965645,0.223728813558839,-0.275862068965651,0.237288135592793,-0.282758620689798,0.230508474575816,0.013559322033954,0.000000000000006,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448301,-0.013559322033954,-0.000000000000007,2 +2525,2583,2585,2643,-0.268965517241503,0.244067796609748,-0.275862068965651,0.237288135592793,-0.275862068965657,0.250847457626703,-0.282758620689805,0.244067796609748,0.013559322033910,0.000000000000006,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448302,-0.013559322033910,-0.000000000000007,2 +2526,2584,2586,2644,-0.268965517241509,0.257627118643680,-0.275862068965657,0.250847457626703,-0.275862068965664,0.264406779660657,-0.282758620689812,0.257627118643680,0.013559322033954,0.000000000000006,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448304,-0.013559322033954,-0.000000000000007,2 +2527,2585,2587,2645,-0.268965517241515,0.271186440677618,-0.275862068965664,0.264406779660657,-0.275862068965670,0.277966101694579,-0.282758620689819,0.271186440677618,0.013559322033922,0.000000000000006,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033922,-0.000000000000007,2 +2528,2586,2588,2646,-0.268965517241521,0.284745762711550,-0.275862068965670,0.277966101694579,-0.275862068965677,0.291525423728521,-0.282758620689826,0.284745762711550,0.013559322033942,0.000000000000006,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448306,-0.013559322033942,-0.000000000000007,2 +2529,2587,2589,2647,-0.268965517241527,0.298305084745489,-0.275862068965677,0.291525423728521,-0.275862068965683,0.305084745762457,-0.282758620689833,0.298305084745489,0.013559322033936,0.000000000000006,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448308,-0.013559322033936,-0.000000000000007,2 +2530,2588,2590,2648,-0.268965517241532,0.311864406779421,-0.275862068965683,0.305084745762457,-0.275862068965690,0.318644067796385,-0.282758620689841,0.311864406779421,0.013559322033928,0.000000000000006,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033928,-0.000000000000007,2 +2531,2589,2591,2649,-0.268965517241538,0.325423728813361,-0.275862068965690,0.318644067796385,-0.275862068965696,0.332203389830336,-0.282758620689848,0.325423728813361,0.013559322033950,0.000000000000006,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448311,-0.013559322033951,-0.000000000000007,2 +2532,2590,2592,2650,-0.268965517241544,0.338983050847293,-0.275862068965696,0.332203389830336,-0.275862068965703,0.345762711864250,-0.282758620689855,0.338983050847293,0.013559322033914,0.000000000000006,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,-0.013559322033914,-0.000000000000007,2 +2533,2591,2593,2651,-0.268965517241550,0.352542372881227,-0.275862068965703,0.345762711864250,-0.275862068965709,0.359322033898204,-0.282758620689862,0.352542372881227,0.013559322033954,0.000000000000006,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448313,-0.013559322033954,-0.000000000000007,2 +2534,2592,2594,2652,-0.268965517241555,0.366101694915162,-0.275862068965709,0.359322033898204,-0.275862068965716,0.372881355932121,-0.282758620689869,0.366101694915162,0.013559322033918,0.000000000000006,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448315,-0.013559322033918,-0.000000000000007,2 +2535,2593,2595,2653,-0.268965517241561,0.379661016949094,-0.275862068965716,0.372881355932121,-0.275862068965722,0.386440677966068,-0.282758620689876,0.379661016949094,0.013559322033946,0.000000000000006,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448316,-0.013559322033946,-0.000000000000007,2 +2158,2536,2594,2654,-0.275862068965729,0.400000000000000,-0.268965517241567,0.393220338983034,-0.275862068965722,0.386440677966068,-0.282758620689884,0.393220338983034,0.000000000000000,0.013793103448317,0.013559322033932,0.000000000000006,0.000000000000000,-0.013793103448316,-0.013559322033932,-0.000000000000007,2 +2537,2597,2655,4050,-0.282758620689469,-0.393220338983059,-0.289655172413591,-0.386440677966118,-0.296551724137704,-0.393220338983059,-0.289655172413583,-0.400000000000000,0.013559322033882,0.000000000000007,-0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000009,0.000000000000000,-0.013793103448235,2 +2538,2596,2598,2656,-0.282758620689476,-0.379661016949189,-0.289655172413591,-0.386440677966118,-0.289655172413598,-0.372881355932259,-0.296551724137713,-0.379661016949189,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000008,2 +2539,2597,2599,2657,-0.282758620689483,-0.366101694915329,-0.289655172413598,-0.372881355932259,-0.289655172413606,-0.359322033898399,-0.296551724137721,-0.366101694915329,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000008,2 +2540,2598,2600,2658,-0.282758620689490,-0.352542372881469,-0.289655172413606,-0.359322033898399,-0.289655172413614,-0.345762711864539,-0.296551724137730,-0.352542372881469,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448241,-0.013559322033860,-0.000000000000009,2 +2541,2599,2601,2659,-0.282758620689497,-0.338983050847605,-0.289655172413614,-0.345762711864539,-0.289655172413622,-0.332203389830670,-0.296551724137739,-0.338983050847605,0.013559322033869,0.000000000000007,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000009,2 +2542,2600,2602,2660,-0.282758620689504,-0.325423728813729,-0.289655172413622,-0.332203389830670,-0.289655172413630,-0.318644067796787,-0.296551724137747,-0.325423728813729,0.013559322033883,0.000000000000007,0.000000000000000,-0.013793103448242,0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000008,2 +2543,2601,2603,2661,-0.282758620689512,-0.311864406779851,-0.289655172413630,-0.318644067796787,-0.289655172413638,-0.305084745762915,-0.296551724137756,-0.311864406779851,0.013559322033872,0.000000000000007,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448245,-0.013559322033872,-0.000000000000009,2 +2544,2602,2604,2662,-0.282758620689519,-0.298305084745975,-0.289655172413638,-0.305084745762915,-0.289655172413645,-0.291525423729035,-0.296551724137764,-0.298305084745975,0.013559322033880,0.000000000000007,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448246,-0.013559322033879,-0.000000000000008,2 +2545,2603,2605,2663,-0.282758620689526,-0.284745762712105,-0.289655172413645,-0.291525423729035,-0.289655172413653,-0.277966101695176,-0.296551724137773,-0.284745762712106,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000008,2 +2546,2604,2606,2664,-0.282758620689533,-0.271186440678246,-0.289655172413653,-0.277966101695176,-0.289655172413661,-0.264406779661316,-0.296551724137781,-0.271186440678246,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000009,2 +2547,2605,2607,2665,-0.282758620689540,-0.257627118644386,-0.289655172413661,-0.264406779661316,-0.289655172413669,-0.250847457627456,-0.296551724137790,-0.257627118644386,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000008,2 +2548,2606,2608,2666,-0.282758620689547,-0.244067796610526,-0.289655172413669,-0.250847457627456,-0.289655172413677,-0.237288135593597,-0.296551724137799,-0.244067796610526,0.013559322033859,0.000000000000007,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448252,-0.013559322033859,-0.000000000000008,2 +2549,2607,2609,2667,-0.282758620689554,-0.230508474576667,-0.289655172413677,-0.237288135593597,-0.289655172413685,-0.223728813559737,-0.296551724137807,-0.230508474576667,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000009,2 +2550,2608,2610,2668,-0.282758620689562,-0.216949152542807,-0.289655172413685,-0.223728813559737,-0.289655172413693,-0.210169491525877,-0.296551724137816,-0.216949152542807,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000009,2 +2551,2609,2611,2669,-0.282758620689569,-0.203389830508947,-0.289655172413693,-0.210169491525877,-0.289655172413700,-0.196610169492017,-0.296551724137824,-0.203389830508947,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000008,2 +2552,2610,2612,2670,-0.282758620689576,-0.189830508475088,-0.289655172413700,-0.196610169492017,-0.289655172413708,-0.183050847458158,-0.296551724137833,-0.189830508475088,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000008,2 +2553,2611,2613,2671,-0.282758620689583,-0.176271186441228,-0.289655172413708,-0.183050847458158,-0.289655172413716,-0.169491525424298,-0.296551724137841,-0.176271186441228,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000009,2 +2554,2612,2614,2672,-0.282758620689590,-0.162711864407368,-0.289655172413716,-0.169491525424298,-0.289655172413724,-0.155932203390438,-0.296551724137850,-0.162711864407368,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000008,2 +2555,2613,2615,2673,-0.282758620689597,-0.149152542373509,-0.289655172413724,-0.155932203390438,-0.289655172413732,-0.142372881356579,-0.296551724137858,-0.149152542373509,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000009,2 +2556,2614,2616,2674,-0.282758620689605,-0.135593220339649,-0.289655172413732,-0.142372881356579,-0.289655172413740,-0.128813559322719,-0.296551724137867,-0.135593220339649,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000009,2 +2557,2615,2617,2675,-0.282758620689612,-0.122033898305789,-0.289655172413740,-0.128813559322719,-0.289655172413748,-0.115254237288859,-0.296551724137876,-0.122033898305789,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000008,2 +2558,2616,2618,2676,-0.282758620689619,-0.108474576271933,-0.289655172413748,-0.115254237288859,-0.289655172413755,-0.101694915255008,-0.296551724137884,-0.108474576271933,0.013559322033852,0.000000000000007,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033852,-0.000000000000009,2 +2559,2617,2619,2677,-0.282758620689626,-0.094915254238085,-0.289655172413755,-0.101694915255008,-0.289655172413763,-0.088135593221162,-0.296551724137893,-0.094915254238085,0.013559322033846,0.000000000000007,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448268,-0.013559322033846,-0.000000000000008,2 +2560,2618,2620,2678,-0.282758620689633,-0.081355932204232,-0.289655172413763,-0.088135593221162,-0.289655172413771,-0.074576271187302,-0.296551724137901,-0.081355932204232,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000009,2 +2561,2619,2621,2679,-0.282758620689640,-0.067796610170372,-0.289655172413771,-0.074576271187302,-0.289655172413779,-0.061016949153442,-0.296551724137910,-0.067796610170372,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000008,2 +2562,2620,2622,2680,-0.282758620689648,-0.054237288136512,-0.289655172413779,-0.061016949153442,-0.289655172413787,-0.047457627119583,-0.296551724137918,-0.054237288136512,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000009,2 +2563,2621,2623,2681,-0.282758620689655,-0.040677966102653,-0.289655172413787,-0.047457627119583,-0.289655172413795,-0.033898305085723,-0.296551724137927,-0.040677966102653,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000009,2 +2564,2622,2624,2682,-0.282758620689662,-0.027118644068793,-0.289655172413795,-0.033898305085723,-0.289655172413803,-0.020338983051863,-0.296551724137936,-0.027118644068793,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000008,2 +2565,2623,2625,2683,-0.282758620689669,-0.013559322034933,-0.289655172413803,-0.020338983051863,-0.289655172413810,-0.006779661018004,-0.296551724137944,-0.013559322034934,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000008,2 +2566,2624,2626,2684,-0.282758620689676,-0.000000000001056,-0.289655172413810,-0.006779661018004,-0.289655172413818,0.006779661015891,-0.296551724137953,-0.000000000001056,0.013559322033895,0.000000000000007,0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448277,-0.013559322033895,-0.000000000000009,2 +2567,2625,2627,2685,-0.282758620689683,0.013559322032862,-0.289655172413818,0.006779661015891,-0.289655172413826,0.020338983049833,-0.296551724137961,0.013559322032862,0.013559322033941,0.000000000000007,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448279,-0.013559322033941,-0.000000000000008,2 +2568,2626,2628,2686,-0.282758620689690,0.027118644066798,-0.289655172413826,0.020338983049833,-0.289655172413834,0.033898305083763,-0.296551724137970,0.027118644066798,0.013559322033930,0.000000000000007,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448280,-0.013559322033930,-0.000000000000009,2 +2569,2627,2629,2687,-0.282758620689697,0.040677966100731,-0.289655172413834,0.033898305083763,-0.289655172413842,0.047457627117699,-0.296551724137978,0.040677966100731,0.013559322033937,0.000000000000007,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448281,-0.013559322033937,-0.000000000000008,2 +2570,2628,2630,2688,-0.282758620689705,0.054237288134667,-0.289655172413842,0.047457627117699,-0.289655172413850,0.061016949151634,-0.296551724137987,0.054237288134667,0.013559322033935,0.000000000000007,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448283,-0.013559322033935,-0.000000000000009,2 +2571,2629,2631,2689,-0.282758620689712,0.067796610168599,-0.289655172413850,0.061016949151634,-0.289655172413858,0.074576271185564,-0.296551724137995,0.067796610168599,0.013559322033930,0.000000000000007,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033930,-0.000000000000008,2 +2572,2630,2632,2690,-0.282758620689719,0.081355932202535,-0.289655172413858,0.074576271185564,-0.289655172413865,0.088135593219506,-0.296551724138004,0.081355932202535,0.013559322033941,0.000000000000007,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448286,-0.013559322033941,-0.000000000000009,2 +2573,2631,2633,2691,-0.282758620689726,0.094915254236471,-0.289655172413865,0.088135593219506,-0.289655172413873,0.101694915253436,-0.296551724138013,0.094915254236471,0.013559322033930,0.000000000000007,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033930,-0.000000000000009,2 +2574,2632,2634,2692,-0.282758620689733,0.108474576270409,-0.289655172413873,0.101694915253436,-0.289655172413881,0.115254237287382,-0.296551724138021,0.108474576270409,0.013559322033946,0.000000000000007,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033946,-0.000000000000008,2 +2575,2633,2635,2693,-0.282758620689741,0.122033898304341,-0.289655172413881,0.115254237287382,-0.289655172413889,0.128813559321301,-0.296551724138030,0.122033898304341,0.013559322033919,0.000000000000007,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448290,-0.013559322033919,-0.000000000000009,2 +2576,2634,2636,2694,-0.282758620689748,0.135593220338273,-0.289655172413889,0.128813559321301,-0.289655172413897,0.142372881355246,-0.296551724138038,0.135593220338273,0.013559322033945,0.000000000000007,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033945,-0.000000000000009,2 +2577,2635,2637,2695,-0.282758620689755,0.149152542372213,-0.289655172413897,0.142372881355246,-0.289655172413905,0.155932203389179,-0.296551724138047,0.149152542372213,0.013559322033933,0.000000000000007,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448293,-0.013559322033933,-0.000000000000008,2 +2578,2636,2638,2696,-0.282758620689762,0.162711864406145,-0.289655172413905,0.155932203389179,-0.289655172413913,0.169491525423110,-0.296551724138055,0.162711864406145,0.013559322033931,0.000000000000007,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448294,-0.013559322033931,-0.000000000000009,2 +2579,2637,2639,2697,-0.282758620689769,0.176271186440084,-0.289655172413913,0.169491525423110,-0.289655172413920,0.183050847457058,-0.296551724138064,0.176271186440084,0.013559322033947,0.000000000000007,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448296,-0.013559322033947,-0.000000000000009,2 +2580,2638,2640,2698,-0.282758620689776,0.189830508474016,-0.289655172413920,0.183050847457058,-0.289655172413928,0.196610169490975,-0.296551724138073,0.189830508474016,0.013559322033917,0.000000000000007,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033917,-0.000000000000008,2 +2581,2639,2641,2699,-0.282758620689783,0.203389830507945,-0.289655172413928,0.196610169490975,-0.289655172413936,0.210169491524915,-0.296551724138081,0.203389830507945,0.013559322033940,0.000000000000007,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448298,-0.013559322033940,-0.000000000000009,2 +2582,2640,2642,2700,-0.282758620689791,0.216949152541877,-0.289655172413936,0.210169491524915,-0.289655172413944,0.223728813558839,-0.296551724138090,0.216949152541877,0.013559322033924,0.000000000000007,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448300,-0.013559322033924,-0.000000000000009,2 +2583,2641,2643,2701,-0.282758620689798,0.230508474575816,-0.289655172413944,0.223728813558839,-0.289655172413952,0.237288135592793,-0.296551724138098,0.230508474575816,0.013559322033954,0.000000000000007,0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448301,-0.013559322033954,-0.000000000000008,2 +2584,2642,2644,2702,-0.282758620689805,0.244067796609748,-0.289655172413952,0.237288135592793,-0.289655172413960,0.250847457626703,-0.296551724138107,0.244067796609748,0.013559322033910,0.000000000000007,-0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448303,-0.013559322033910,-0.000000000000009,2 +2585,2643,2645,2703,-0.282758620689812,0.257627118643680,-0.289655172413960,0.250847457626703,-0.289655172413968,0.264406779660657,-0.296551724138115,0.257627118643680,0.013559322033954,0.000000000000007,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033954,-0.000000000000008,2 +2586,2644,2646,2704,-0.282758620689819,0.271186440677618,-0.289655172413968,0.264406779660657,-0.289655172413975,0.277966101694579,-0.296551724138124,0.271186440677618,0.013559322033922,0.000000000000007,0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448305,-0.013559322033922,-0.000000000000009,2 +2587,2645,2647,2705,-0.282758620689826,0.284745762711550,-0.289655172413975,0.277966101694579,-0.289655172413983,0.291525423728521,-0.296551724138132,0.284745762711550,0.013559322033942,0.000000000000007,-0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448307,-0.013559322033942,-0.000000000000008,2 +2588,2646,2648,2706,-0.282758620689833,0.298305084745489,-0.289655172413983,0.291525423728521,-0.289655172413991,0.305084745762457,-0.296551724138141,0.298305084745489,0.013559322033936,0.000000000000007,-0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448308,-0.013559322033936,-0.000000000000009,2 +2589,2647,2649,2707,-0.282758620689841,0.311864406779421,-0.289655172413991,0.305084745762457,-0.289655172413999,0.318644067796385,-0.296551724138150,0.311864406779421,0.013559322033928,0.000000000000007,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448309,-0.013559322033928,-0.000000000000008,2 +2590,2648,2650,2708,-0.282758620689848,0.325423728813361,-0.289655172413999,0.318644067796385,-0.289655172414007,0.332203389830336,-0.296551724138158,0.325423728813361,0.013559322033951,0.000000000000007,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448311,-0.013559322033950,-0.000000000000009,2 +2591,2649,2651,2709,-0.282758620689855,0.338983050847293,-0.289655172414007,0.332203389830336,-0.289655172414015,0.345762711864250,-0.296551724138167,0.338983050847293,0.013559322033914,0.000000000000007,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448312,-0.013559322033914,-0.000000000000009,2 +2592,2650,2652,2710,-0.282758620689862,0.352542372881227,-0.289655172414015,0.345762711864250,-0.289655172414023,0.359322033898204,-0.296551724138175,0.352542372881227,0.013559322033954,0.000000000000007,0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448314,-0.013559322033954,-0.000000000000009,2 +2593,2651,2653,2711,-0.282758620689869,0.366101694915162,-0.289655172414023,0.359322033898204,-0.289655172414031,0.372881355932121,-0.296551724138184,0.366101694915163,0.013559322033918,0.000000000000007,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448315,-0.013559322033918,-0.000000000000009,2 +2594,2652,2654,2712,-0.282758620689876,0.379661016949094,-0.289655172414031,0.372881355932121,-0.289655172414038,0.386440677966068,-0.296551724138193,0.379661016949095,0.013559322033946,0.000000000000007,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448317,-0.013559322033946,-0.000000000000008,2 +2144,2595,2653,2713,-0.289655172414046,0.400000000000000,-0.282758620689884,0.393220338983034,-0.289655172414038,0.386440677966068,-0.296551724138201,0.393220338983034,0.000000000000000,0.013793103448318,0.013559322033932,0.000000000000007,-0.000000000000000,-0.013793103448317,-0.013559322033932,-0.000000000000009,2 +2596,2656,2714,4064,-0.296551724137704,-0.393220338983059,-0.303448275861827,-0.386440677966118,-0.310344827585940,-0.393220338983059,-0.303448275861818,-0.400000000000000,0.013559322033882,0.000000000000009,-0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000010,0.000000000000000,-0.013793103448235,2 +2597,2655,2657,2715,-0.296551724137713,-0.379661016949189,-0.303448275861827,-0.386440677966118,-0.303448275861836,-0.372881355932259,-0.310344827585950,-0.379661016949189,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000010,2 +2598,2656,2658,2716,-0.296551724137721,-0.366101694915329,-0.303448275861836,-0.372881355932259,-0.303448275861845,-0.359322033898399,-0.310344827585960,-0.366101694915329,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000010,2 +2599,2657,2659,2717,-0.296551724137730,-0.352542372881469,-0.303448275861845,-0.359322033898399,-0.303448275861855,-0.345762711864539,-0.310344827585970,-0.352542372881469,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448241,-0.013559322033860,-0.000000000000010,2 +2600,2658,2660,2718,-0.296551724137739,-0.338983050847605,-0.303448275861855,-0.345762711864539,-0.303448275861864,-0.332203389830670,-0.310344827585980,-0.338983050847605,0.013559322033869,0.000000000000009,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000010,2 +2601,2659,2661,2719,-0.296551724137747,-0.325423728813729,-0.303448275861864,-0.332203389830670,-0.303448275861873,-0.318644067796787,-0.310344827585990,-0.325423728813729,0.013559322033883,0.000000000000008,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448244,-0.013559322033883,-0.000000000000010,2 +2602,2660,2662,2720,-0.296551724137756,-0.311864406779851,-0.303448275861873,-0.318644067796787,-0.303448275861883,-0.305084745762915,-0.310344827586000,-0.311864406779851,0.013559322033872,0.000000000000009,0.000000000000000,-0.013793103448244,0.000000000000000,0.013793103448245,-0.013559322033872,-0.000000000000010,2 +2603,2661,2663,2721,-0.296551724137764,-0.298305084745975,-0.303448275861883,-0.305084745762915,-0.303448275861892,-0.291525423729035,-0.310344827586010,-0.298305084745975,0.013559322033879,0.000000000000008,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448246,-0.013559322033879,-0.000000000000010,2 +2604,2662,2664,2722,-0.296551724137773,-0.284745762712106,-0.303448275861892,-0.291525423729035,-0.303448275861901,-0.277966101695176,-0.310344827586020,-0.284745762712106,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000010,2 +2605,2663,2665,2723,-0.296551724137781,-0.271186440678246,-0.303448275861901,-0.277966101695176,-0.303448275861910,-0.264406779661316,-0.310344827586030,-0.271186440678246,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000010,2 +2606,2664,2666,2724,-0.296551724137790,-0.257627118644386,-0.303448275861910,-0.264406779661316,-0.303448275861920,-0.250847457627456,-0.310344827586040,-0.257627118644386,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000010,2 +2607,2665,2667,2725,-0.296551724137799,-0.244067796610526,-0.303448275861920,-0.250847457627456,-0.303448275861929,-0.237288135593597,-0.310344827586050,-0.244067796610526,0.013559322033859,0.000000000000008,0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448252,-0.013559322033860,-0.000000000000010,2 +2608,2666,2668,2726,-0.296551724137807,-0.230508474576667,-0.303448275861929,-0.237288135593597,-0.303448275861938,-0.223728813559737,-0.310344827586060,-0.230508474576667,0.013559322033860,0.000000000000009,-0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000010,2 +2609,2667,2669,2727,-0.296551724137816,-0.216949152542807,-0.303448275861938,-0.223728813559737,-0.303448275861947,-0.210169491525877,-0.310344827586070,-0.216949152542807,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000010,2 +2610,2668,2670,2728,-0.296551724137824,-0.203389830508947,-0.303448275861947,-0.210169491525877,-0.303448275861957,-0.196610169492017,-0.310344827586080,-0.203389830508947,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000010,2 +2611,2669,2671,2729,-0.296551724137833,-0.189830508475088,-0.303448275861957,-0.196610169492017,-0.303448275861966,-0.183050847458158,-0.310344827586090,-0.189830508475088,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000010,2 +2612,2670,2672,2730,-0.296551724137841,-0.176271186441228,-0.303448275861966,-0.183050847458158,-0.303448275861975,-0.169491525424298,-0.310344827586100,-0.176271186441228,0.013559322033860,0.000000000000009,-0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000010,2 +2613,2671,2673,2731,-0.296551724137850,-0.162711864407368,-0.303448275861975,-0.169491525424298,-0.303448275861984,-0.155932203390438,-0.310344827586110,-0.162711864407368,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000010,2 +2614,2672,2674,2732,-0.296551724137858,-0.149152542373509,-0.303448275861984,-0.155932203390438,-0.303448275861994,-0.142372881356579,-0.310344827586120,-0.149152542373509,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000010,2 +2615,2673,2675,2733,-0.296551724137867,-0.135593220339649,-0.303448275861994,-0.142372881356579,-0.303448275862003,-0.128813559322719,-0.310344827586130,-0.135593220339649,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000010,2 +2616,2674,2676,2734,-0.296551724137876,-0.122033898305789,-0.303448275862003,-0.128813559322719,-0.303448275862012,-0.115254237288859,-0.310344827586140,-0.122033898305789,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000010,2 +2617,2675,2677,2735,-0.296551724137884,-0.108474576271933,-0.303448275862012,-0.115254237288859,-0.303448275862021,-0.101694915255008,-0.310344827586150,-0.108474576271933,0.013559322033852,0.000000000000009,-0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033852,-0.000000000000010,2 +2618,2676,2678,2736,-0.296551724137893,-0.094915254238085,-0.303448275862021,-0.101694915255008,-0.303448275862031,-0.088135593221162,-0.310344827586159,-0.094915254238085,0.013559322033846,0.000000000000008,0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448268,-0.013559322033846,-0.000000000000010,2 +2619,2677,2679,2737,-0.296551724137901,-0.081355932204232,-0.303448275862031,-0.088135593221162,-0.303448275862040,-0.074576271187302,-0.310344827586169,-0.081355932204232,0.013559322033860,0.000000000000009,-0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000010,2 +2620,2678,2680,2738,-0.296551724137910,-0.067796610170372,-0.303448275862040,-0.074576271187302,-0.303448275862049,-0.061016949153442,-0.310344827586179,-0.067796610170372,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000010,2 +2621,2679,2681,2739,-0.296551724137918,-0.054237288136512,-0.303448275862049,-0.061016949153442,-0.303448275862059,-0.047457627119583,-0.310344827586189,-0.054237288136513,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000010,2 +2622,2680,2682,2740,-0.296551724137927,-0.040677966102653,-0.303448275862059,-0.047457627119583,-0.303448275862068,-0.033898305085723,-0.310344827586199,-0.040677966102653,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000010,2 +2623,2681,2683,2741,-0.296551724137936,-0.027118644068793,-0.303448275862068,-0.033898305085723,-0.303448275862077,-0.020338983051863,-0.310344827586209,-0.027118644068793,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000010,2 +2624,2682,2684,2742,-0.296551724137944,-0.013559322034934,-0.303448275862077,-0.020338983051863,-0.303448275862086,-0.006779661018004,-0.310344827586219,-0.013559322034934,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000010,2 +2625,2683,2685,2743,-0.296551724137953,-0.000000000001056,-0.303448275862086,-0.006779661018004,-0.303448275862096,0.006779661015891,-0.310344827586229,-0.000000000001056,0.013559322033895,0.000000000000009,0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448277,-0.013559322033895,-0.000000000000010,2 +2626,2684,2686,2744,-0.296551724137961,0.013559322032862,-0.303448275862096,0.006779661015891,-0.303448275862105,0.020338983049833,-0.310344827586239,0.013559322032862,0.013559322033941,0.000000000000008,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448279,-0.013559322033941,-0.000000000000010,2 +2627,2685,2687,2745,-0.296551724137970,0.027118644066798,-0.303448275862105,0.020338983049833,-0.303448275862114,0.033898305083763,-0.310344827586249,0.027118644066798,0.013559322033930,0.000000000000009,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448280,-0.013559322033930,-0.000000000000010,2 +2628,2686,2688,2746,-0.296551724137978,0.040677966100731,-0.303448275862114,0.033898305083763,-0.303448275862123,0.047457627117699,-0.310344827586259,0.040677966100731,0.013559322033937,0.000000000000008,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448282,-0.013559322033937,-0.000000000000010,2 +2629,2687,2689,2747,-0.296551724137987,0.054237288134667,-0.303448275862123,0.047457627117699,-0.303448275862133,0.061016949151634,-0.310344827586269,0.054237288134667,0.013559322033935,0.000000000000009,-0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033935,-0.000000000000010,2 +2630,2688,2690,2748,-0.296551724137995,0.067796610168599,-0.303448275862133,0.061016949151634,-0.303448275862142,0.074576271185564,-0.310344827586279,0.067796610168599,0.013559322033930,0.000000000000008,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448284,-0.013559322033930,-0.000000000000010,2 +2631,2689,2691,2749,-0.296551724138004,0.081355932202535,-0.303448275862142,0.074576271185564,-0.303448275862151,0.088135593219506,-0.310344827586289,0.081355932202535,0.013559322033941,0.000000000000009,-0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448286,-0.013559322033941,-0.000000000000010,2 +2632,2690,2692,2750,-0.296551724138013,0.094915254236471,-0.303448275862151,0.088135593219506,-0.303448275862160,0.101694915253436,-0.310344827586299,0.094915254236471,0.013559322033930,0.000000000000009,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033930,-0.000000000000010,2 +2633,2691,2693,2751,-0.296551724138021,0.108474576270409,-0.303448275862160,0.101694915253436,-0.303448275862170,0.115254237287382,-0.310344827586309,0.108474576270409,0.013559322033946,0.000000000000008,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448289,-0.013559322033946,-0.000000000000010,2 +2634,2692,2694,2752,-0.296551724138030,0.122033898304341,-0.303448275862170,0.115254237287382,-0.303448275862179,0.128813559321301,-0.310344827586319,0.122033898304341,0.013559322033919,0.000000000000009,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448290,-0.013559322033919,-0.000000000000010,2 +2635,2693,2695,2753,-0.296551724138038,0.135593220338273,-0.303448275862179,0.128813559321301,-0.303448275862188,0.142372881355246,-0.310344827586329,0.135593220338273,0.013559322033945,0.000000000000009,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033945,-0.000000000000010,2 +2636,2694,2696,2754,-0.296551724138047,0.149152542372213,-0.303448275862188,0.142372881355246,-0.303448275862197,0.155932203389179,-0.310344827586339,0.149152542372213,0.013559322033933,0.000000000000008,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448293,-0.013559322033933,-0.000000000000010,2 +2637,2695,2697,2755,-0.296551724138055,0.162711864406145,-0.303448275862197,0.155932203389179,-0.303448275862207,0.169491525423110,-0.310344827586349,0.162711864406145,0.013559322033931,0.000000000000009,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448294,-0.013559322033931,-0.000000000000010,2 +2638,2696,2698,2756,-0.296551724138064,0.176271186440084,-0.303448275862207,0.169491525423110,-0.303448275862216,0.183050847457058,-0.310344827586359,0.176271186440084,0.013559322033947,0.000000000000009,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033948,-0.000000000000010,2 +2639,2697,2699,2757,-0.296551724138073,0.189830508474016,-0.303448275862216,0.183050847457058,-0.303448275862225,0.196610169490975,-0.310344827586369,0.189830508474016,0.013559322033917,0.000000000000008,0.000000000000000,-0.013793103448295,0.000000000000000,0.013793103448297,-0.013559322033917,-0.000000000000010,2 +2640,2698,2700,2758,-0.296551724138081,0.203389830507945,-0.303448275862225,0.196610169490975,-0.303448275862235,0.210169491524915,-0.310344827586379,0.203389830507945,0.013559322033940,0.000000000000009,-0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448298,-0.013559322033940,-0.000000000000010,2 +2641,2699,2701,2759,-0.296551724138090,0.216949152541877,-0.303448275862235,0.210169491524915,-0.303448275862244,0.223728813558839,-0.310344827586389,0.216949152541877,0.013559322033924,0.000000000000009,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448300,-0.013559322033924,-0.000000000000010,2 +2642,2700,2702,2760,-0.296551724138098,0.230508474575816,-0.303448275862244,0.223728813558839,-0.303448275862253,0.237288135592793,-0.310344827586399,0.230508474575816,0.013559322033954,0.000000000000008,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448301,-0.013559322033954,-0.000000000000010,2 +2643,2701,2703,2761,-0.296551724138107,0.244067796609748,-0.303448275862253,0.237288135592793,-0.303448275862262,0.250847457626703,-0.310344827586409,0.244067796609748,0.013559322033910,0.000000000000009,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448303,-0.013559322033910,-0.000000000000010,2 +2644,2702,2704,2762,-0.296551724138115,0.257627118643680,-0.303448275862262,0.250847457626703,-0.303448275862272,0.264406779660657,-0.310344827586419,0.257627118643680,0.013559322033954,0.000000000000008,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033954,-0.000000000000010,2 +2645,2703,2705,2763,-0.296551724138124,0.271186440677618,-0.303448275862272,0.264406779660657,-0.303448275862281,0.277966101694579,-0.310344827586429,0.271186440677618,0.013559322033922,0.000000000000009,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033922,-0.000000000000010,2 +2646,2704,2706,2764,-0.296551724138132,0.284745762711550,-0.303448275862281,0.277966101694579,-0.303448275862290,0.291525423728521,-0.310344827586439,0.284745762711550,0.013559322033942,0.000000000000008,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448307,-0.013559322033942,-0.000000000000010,2 +2647,2705,2707,2765,-0.296551724138141,0.298305084745489,-0.303448275862290,0.291525423728521,-0.303448275862299,0.305084745762457,-0.310344827586449,0.298305084745489,0.013559322033936,0.000000000000009,0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448308,-0.013559322033937,-0.000000000000010,2 +2648,2706,2708,2766,-0.296551724138150,0.311864406779421,-0.303448275862299,0.305084745762457,-0.303448275862309,0.318644067796385,-0.310344827586459,0.311864406779421,0.013559322033928,0.000000000000008,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448310,-0.013559322033928,-0.000000000000010,2 +2649,2707,2709,2767,-0.296551724138158,0.325423728813361,-0.303448275862309,0.318644067796385,-0.303448275862318,0.332203389830336,-0.310344827586469,0.325423728813361,0.013559322033950,0.000000000000009,0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448311,-0.013559322033951,-0.000000000000010,2 +2650,2708,2710,2768,-0.296551724138167,0.338983050847293,-0.303448275862318,0.332203389830336,-0.303448275862327,0.345762711864250,-0.310344827586479,0.338983050847293,0.013559322033914,0.000000000000009,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448313,-0.013559322033914,-0.000000000000010,2 +2651,2709,2711,2769,-0.296551724138175,0.352542372881227,-0.303448275862327,0.345762711864250,-0.303448275862337,0.359322033898204,-0.310344827586489,0.352542372881227,0.013559322033954,0.000000000000009,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448314,-0.013559322033954,-0.000000000000010,2 +2652,2710,2712,2770,-0.296551724138184,0.366101694915163,-0.303448275862337,0.359322033898204,-0.303448275862346,0.372881355932121,-0.310344827586498,0.366101694915162,0.013559322033918,0.000000000000009,0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448315,-0.013559322033918,-0.000000000000010,2 +2653,2711,2713,2771,-0.296551724138193,0.379661016949095,-0.303448275862346,0.372881355932121,-0.303448275862355,0.386440677966068,-0.310344827586508,0.379661016949094,0.013559322033946,0.000000000000008,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448317,-0.013559322033947,-0.000000000000010,2 +2130,2654,2712,2772,-0.303448275862364,0.400000000000000,-0.296551724138201,0.393220338983034,-0.303448275862355,0.386440677966068,-0.310344827586518,0.393220338983034,0.000000000000000,0.013793103448318,0.013559322033932,0.000000000000009,0.000000000000000,-0.013793103448317,-0.013559322033932,-0.000000000000010,2 +2655,2715,2773,4078,-0.310344827585940,-0.393220338983059,-0.317241379310063,-0.386440677966118,-0.324137931034176,-0.393220338983059,-0.317241379310053,-0.400000000000000,0.013559322033882,0.000000000000010,0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000011,0.000000000000000,-0.013793103448235,2 +2656,2714,2716,2774,-0.310344827585950,-0.379661016949189,-0.317241379310063,-0.386440677966118,-0.317241379310074,-0.372881355932259,-0.324137931034187,-0.379661016949189,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000011,2 +2657,2715,2717,2775,-0.310344827585960,-0.366101694915329,-0.317241379310074,-0.372881355932259,-0.317241379310085,-0.359322033898399,-0.324137931034199,-0.366101694915329,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000011,2 +2658,2716,2718,2776,-0.310344827585970,-0.352542372881469,-0.317241379310085,-0.359322033898399,-0.317241379310095,-0.345762711864539,-0.324137931034210,-0.352542372881469,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448241,-0.013559322033860,-0.000000000000011,2 +2659,2717,2719,2777,-0.310344827585980,-0.338983050847605,-0.317241379310095,-0.345762711864539,-0.317241379310106,-0.332203389830670,-0.324137931034221,-0.338983050847605,0.013559322033869,0.000000000000010,0.000000000000000,-0.013793103448241,0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000011,2 +2660,2718,2720,2778,-0.310344827585990,-0.325423728813729,-0.317241379310106,-0.332203389830670,-0.317241379310117,-0.318644067796787,-0.324137931034233,-0.325423728813729,0.013559322033883,0.000000000000010,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000011,2 +2661,2719,2721,2779,-0.310344827586000,-0.311864406779851,-0.317241379310117,-0.318644067796787,-0.317241379310127,-0.305084745762915,-0.324137931034244,-0.311864406779851,0.013559322033872,0.000000000000010,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448245,-0.013559322033872,-0.000000000000011,2 +2662,2720,2722,2780,-0.310344827586010,-0.298305084745975,-0.317241379310127,-0.305084745762915,-0.317241379310138,-0.291525423729035,-0.324137931034255,-0.298305084745975,0.013559322033879,0.000000000000010,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448246,-0.013559322033879,-0.000000000000011,2 +2663,2721,2723,2781,-0.310344827586020,-0.284745762712106,-0.317241379310138,-0.291525423729035,-0.317241379310149,-0.277966101695176,-0.324137931034267,-0.284745762712105,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000011,2 +2664,2722,2724,2782,-0.310344827586030,-0.271186440678246,-0.317241379310149,-0.277966101695176,-0.317241379310159,-0.264406779661316,-0.324137931034278,-0.271186440678246,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000011,2 +2665,2723,2725,2783,-0.310344827586040,-0.257627118644386,-0.317241379310159,-0.264406779661316,-0.317241379310170,-0.250847457627456,-0.324137931034289,-0.257627118644386,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448250,-0.013559322033860,-0.000000000000011,2 +2666,2724,2726,2784,-0.310344827586050,-0.244067796610526,-0.317241379310170,-0.250847457627456,-0.317241379310180,-0.237288135593596,-0.324137931034300,-0.244067796610526,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000011,2 +2667,2725,2727,2785,-0.310344827586060,-0.230508474576667,-0.317241379310180,-0.237288135593596,-0.317241379310191,-0.223728813559737,-0.324137931034312,-0.230508474576667,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000011,2 +2668,2726,2728,2786,-0.310344827586070,-0.216949152542807,-0.317241379310191,-0.223728813559737,-0.317241379310202,-0.210169491525877,-0.324137931034323,-0.216949152542807,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448254,-0.013559322033860,-0.000000000000011,2 +2669,2727,2729,2787,-0.310344827586080,-0.203389830508947,-0.317241379310202,-0.210169491525877,-0.317241379310213,-0.196610169492017,-0.324137931034335,-0.203389830508947,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000011,2 +2670,2728,2730,2788,-0.310344827586090,-0.189830508475088,-0.317241379310213,-0.196610169492017,-0.317241379310223,-0.183050847458158,-0.324137931034346,-0.189830508475088,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000011,2 +2671,2729,2731,2789,-0.310344827586100,-0.176271186441228,-0.317241379310223,-0.183050847458158,-0.317241379310234,-0.169491525424298,-0.324137931034357,-0.176271186441228,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000011,2 +2672,2730,2732,2790,-0.310344827586110,-0.162711864407368,-0.317241379310234,-0.169491525424298,-0.317241379310244,-0.155932203390438,-0.324137931034368,-0.162711864407368,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000011,2 +2673,2731,2733,2791,-0.310344827586120,-0.149152542373509,-0.317241379310244,-0.155932203390438,-0.317241379310255,-0.142372881356579,-0.324137931034380,-0.149152542373509,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000011,2 +2674,2732,2734,2792,-0.310344827586130,-0.135593220339649,-0.317241379310255,-0.142372881356579,-0.317241379310266,-0.128813559322719,-0.324137931034391,-0.135593220339649,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000011,2 +2675,2733,2735,2793,-0.310344827586140,-0.122033898305789,-0.317241379310266,-0.128813559322719,-0.317241379310276,-0.115254237288859,-0.324137931034402,-0.122033898305789,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448264,-0.013559322033860,-0.000000000000011,2 +2676,2734,2736,2794,-0.310344827586150,-0.108474576271933,-0.317241379310276,-0.115254237288859,-0.317241379310287,-0.101694915255008,-0.324137931034414,-0.108474576271933,0.013559322033852,0.000000000000010,0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448265,-0.013559322033852,-0.000000000000011,2 +2677,2735,2737,2795,-0.310344827586159,-0.094915254238085,-0.317241379310287,-0.101694915255008,-0.317241379310298,-0.088135593221162,-0.324137931034425,-0.094915254238085,0.013559322033846,0.000000000000010,-0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448266,-0.013559322033846,-0.000000000000011,2 +2678,2736,2738,2796,-0.310344827586169,-0.081355932204232,-0.317241379310298,-0.088135593221162,-0.317241379310308,-0.074576271187302,-0.324137931034436,-0.081355932204232,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000011,2 +2679,2737,2739,2797,-0.310344827586179,-0.067796610170372,-0.317241379310308,-0.074576271187302,-0.317241379310319,-0.061016949153442,-0.324137931034448,-0.067796610170372,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000011,2 +2680,2738,2740,2798,-0.310344827586189,-0.054237288136513,-0.317241379310319,-0.061016949153442,-0.317241379310330,-0.047457627119583,-0.324137931034459,-0.054237288136513,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000012,2 +2681,2739,2741,2799,-0.310344827586199,-0.040677966102653,-0.317241379310330,-0.047457627119583,-0.317241379310340,-0.033898305085723,-0.324137931034471,-0.040677966102653,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000011,2 +2682,2740,2742,2800,-0.310344827586209,-0.027118644068793,-0.317241379310340,-0.033898305085723,-0.317241379310351,-0.020338983051863,-0.324137931034482,-0.027118644068793,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000011,2 +2683,2741,2743,2801,-0.310344827586219,-0.013559322034934,-0.317241379310351,-0.020338983051863,-0.317241379310361,-0.006779661018004,-0.324137931034493,-0.013559322034934,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000011,2 +2684,2742,2744,2802,-0.310344827586229,-0.000000000001056,-0.317241379310361,-0.006779661018004,-0.317241379310372,0.006779661015891,-0.324137931034504,-0.000000000001056,0.013559322033895,0.000000000000010,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448276,-0.013559322033895,-0.000000000000011,2 +2685,2743,2745,2803,-0.310344827586239,0.013559322032862,-0.317241379310372,0.006779661015891,-0.317241379310383,0.020338983049833,-0.324137931034516,0.013559322032862,0.013559322033941,0.000000000000010,0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448277,-0.013559322033941,-0.000000000000011,2 +2686,2744,2746,2804,-0.310344827586249,0.027118644066798,-0.317241379310383,0.020338983049833,-0.317241379310394,0.033898305083763,-0.324137931034527,0.027118644066798,0.013559322033930,0.000000000000010,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033930,-0.000000000000011,2 +2687,2745,2747,2805,-0.310344827586259,0.040677966100731,-0.317241379310394,0.033898305083763,-0.317241379310404,0.047457627117699,-0.324137931034538,0.040677966100731,0.013559322033937,0.000000000000010,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448280,-0.013559322033937,-0.000000000000011,2 +2688,2746,2748,2806,-0.310344827586269,0.054237288134667,-0.317241379310404,0.047457627117699,-0.317241379310415,0.061016949151634,-0.324137931034550,0.054237288134667,0.013559322033935,0.000000000000010,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448281,-0.013559322033935,-0.000000000000011,2 +2689,2747,2749,2807,-0.310344827586279,0.067796610168599,-0.317241379310415,0.061016949151634,-0.317241379310425,0.074576271185564,-0.324137931034561,0.067796610168599,0.013559322033930,0.000000000000010,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448282,-0.013559322033930,-0.000000000000011,2 +2690,2748,2750,2808,-0.310344827586289,0.081355932202535,-0.317241379310425,0.074576271185564,-0.317241379310436,0.088135593219506,-0.324137931034572,0.081355932202535,0.013559322033941,0.000000000000010,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448284,-0.013559322033941,-0.000000000000011,2 +2691,2749,2751,2809,-0.310344827586299,0.094915254236471,-0.317241379310436,0.088135593219506,-0.317241379310447,0.101694915253436,-0.324137931034584,0.094915254236471,0.013559322033930,0.000000000000010,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448285,-0.013559322033930,-0.000000000000011,2 +2692,2750,2752,2810,-0.310344827586309,0.108474576270409,-0.317241379310447,0.101694915253436,-0.317241379310457,0.115254237287382,-0.324137931034595,0.108474576270409,0.013559322033946,0.000000000000010,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448287,-0.013559322033946,-0.000000000000011,2 +2693,2751,2753,2811,-0.310344827586319,0.122033898304341,-0.317241379310457,0.115254237287382,-0.317241379310468,0.128813559321301,-0.324137931034606,0.122033898304341,0.013559322033919,0.000000000000010,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033919,-0.000000000000011,2 +2694,2752,2754,2812,-0.310344827586329,0.135593220338273,-0.317241379310468,0.128813559321301,-0.317241379310479,0.142372881355246,-0.324137931034618,0.135593220338273,0.013559322033945,0.000000000000010,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448289,-0.013559322033945,-0.000000000000011,2 +2695,2753,2755,2813,-0.310344827586339,0.149152542372213,-0.317241379310479,0.142372881355246,-0.317241379310489,0.155932203389179,-0.324137931034629,0.149152542372213,0.013559322033933,0.000000000000010,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448291,-0.013559322033933,-0.000000000000011,2 +2696,2754,2756,2814,-0.310344827586349,0.162711864406145,-0.317241379310489,0.155932203389179,-0.317241379310500,0.169491525423110,-0.324137931034640,0.162711864406145,0.013559322033931,0.000000000000010,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033931,-0.000000000000011,2 +2697,2755,2757,2815,-0.310344827586359,0.176271186440084,-0.317241379310500,0.169491525423110,-0.317241379310511,0.183050847457058,-0.324137931034652,0.176271186440084,0.013559322033948,0.000000000000010,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448293,-0.013559322033948,-0.000000000000011,2 +2698,2756,2758,2816,-0.310344827586369,0.189830508474016,-0.317241379310511,0.183050847457058,-0.317241379310521,0.196610169490975,-0.324137931034663,0.189830508474016,0.013559322033917,0.000000000000010,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448295,-0.013559322033917,-0.000000000000011,2 +2699,2757,2759,2817,-0.310344827586379,0.203389830507945,-0.317241379310521,0.196610169490975,-0.317241379310532,0.210169491524915,-0.324137931034674,0.203389830507945,0.013559322033940,0.000000000000010,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033940,-0.000000000000011,2 +2700,2758,2760,2818,-0.310344827586389,0.216949152541877,-0.317241379310532,0.210169491524915,-0.317241379310543,0.223728813558839,-0.324137931034686,0.216949152541877,0.013559322033924,0.000000000000010,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033924,-0.000000000000011,2 +2701,2759,2761,2819,-0.310344827586399,0.230508474575816,-0.317241379310543,0.223728813558839,-0.317241379310553,0.237288135592793,-0.324137931034697,0.230508474575816,0.013559322033954,0.000000000000010,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448299,-0.013559322033954,-0.000000000000011,2 +2702,2760,2762,2820,-0.310344827586409,0.244067796609748,-0.317241379310553,0.237288135592793,-0.317241379310564,0.250847457626703,-0.324137931034708,0.244067796609748,0.013559322033910,0.000000000000010,0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448300,-0.013559322033910,-0.000000000000011,2 +2703,2761,2763,2821,-0.310344827586419,0.257627118643680,-0.317241379310564,0.250847457626703,-0.317241379310575,0.264406779660657,-0.324137931034720,0.257627118643680,0.013559322033954,0.000000000000010,-0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448302,-0.013559322033954,-0.000000000000011,2 +2704,2762,2764,2822,-0.310344827586429,0.271186440677618,-0.317241379310575,0.264406779660657,-0.317241379310585,0.277966101694579,-0.324137931034731,0.271186440677618,0.013559322033922,0.000000000000010,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448303,-0.013559322033922,-0.000000000000011,2 +2705,2763,2765,2823,-0.310344827586439,0.284745762711550,-0.317241379310585,0.277966101694579,-0.317241379310596,0.291525423728521,-0.324137931034742,0.284745762711550,0.013559322033942,0.000000000000010,0.000000000000000,-0.013793103448303,0.000000000000000,0.013793103448304,-0.013559322033942,-0.000000000000011,2 +2706,2764,2766,2824,-0.310344827586449,0.298305084745489,-0.317241379310596,0.291525423728521,-0.317241379310606,0.305084745762457,-0.324137931034754,0.298305084745489,0.013559322033937,0.000000000000010,-0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033936,-0.000000000000011,2 +2707,2765,2767,2825,-0.310344827586459,0.311864406779421,-0.317241379310606,0.305084745762457,-0.317241379310617,0.318644067796385,-0.324137931034765,0.311864406779421,0.013559322033928,0.000000000000010,0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448307,-0.013559322033928,-0.000000000000011,2 +2708,2766,2768,2826,-0.310344827586469,0.325423728813361,-0.317241379310617,0.318644067796385,-0.317241379310628,0.332203389830336,-0.324137931034776,0.325423728813361,0.013559322033951,0.000000000000010,-0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448308,-0.013559322033950,-0.000000000000011,2 +2709,2767,2769,2827,-0.310344827586479,0.338983050847293,-0.317241379310628,0.332203389830336,-0.317241379310638,0.345762711864250,-0.324137931034788,0.338983050847293,0.013559322033914,0.000000000000010,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448310,-0.013559322033914,-0.000000000000011,2 +2710,2768,2770,2828,-0.310344827586489,0.352542372881227,-0.317241379310638,0.345762711864250,-0.317241379310649,0.359322033898203,-0.324137931034799,0.352542372881227,0.013559322033954,0.000000000000010,0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448311,-0.013559322033954,-0.000000000000011,2 +2711,2769,2771,2829,-0.310344827586498,0.366101694915162,-0.317241379310649,0.359322033898203,-0.317241379310660,0.372881355932121,-0.324137931034810,0.366101694915162,0.013559322033918,0.000000000000010,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448313,-0.013559322033918,-0.000000000000011,2 +2712,2770,2772,2830,-0.310344827586508,0.379661016949094,-0.317241379310660,0.372881355932121,-0.317241379310670,0.386440677966068,-0.324137931034822,0.379661016949095,0.013559322033947,0.000000000000010,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448314,-0.013559322033946,-0.000000000000011,2 +2116,2713,2771,2831,-0.317241379310681,0.400000000000000,-0.310344827586518,0.393220338983034,-0.317241379310670,0.386440677966068,-0.324137931034833,0.393220338983034,0.000000000000000,0.013793103448315,0.013559322033932,0.000000000000010,0.000000000000000,-0.013793103448314,-0.013559322033932,-0.000000000000011,2 +2714,2774,2832,4092,-0.324137931034176,-0.393220338983059,-0.331034482758300,-0.386440677966118,-0.337931034482412,-0.393220338983059,-0.331034482758288,-0.400000000000000,0.013559322033882,0.000000000000011,-0.000000000000000,0.013793103448237,-0.013559322033882,-0.000000000000013,0.000000000000000,-0.013793103448235,2 +2715,2773,2775,2833,-0.324137931034187,-0.379661016949189,-0.331034482758300,-0.386440677966118,-0.331034482758312,-0.372881355932259,-0.337931034482424,-0.379661016949189,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000013,2 +2716,2774,2776,2834,-0.324137931034199,-0.366101694915329,-0.331034482758312,-0.372881355932259,-0.331034482758324,-0.359322033898399,-0.337931034482437,-0.366101694915329,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000013,2 +2717,2775,2777,2835,-0.324137931034210,-0.352542372881469,-0.331034482758324,-0.359322033898399,-0.331034482758336,-0.345762711864539,-0.337931034482450,-0.352542372881469,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448240,-0.013559322033860,-0.000000000000013,2 +2718,2776,2778,2836,-0.324137931034221,-0.338983050847605,-0.331034482758336,-0.345762711864539,-0.331034482758348,-0.332203389830670,-0.337931034482462,-0.338983050847605,0.013559322033869,0.000000000000011,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000012,2 +2719,2777,2779,2837,-0.324137931034233,-0.325423728813729,-0.331034482758348,-0.332203389830670,-0.331034482758360,-0.318644067796787,-0.337931034482475,-0.325423728813729,0.013559322033883,0.000000000000011,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000013,2 +2720,2778,2780,2838,-0.324137931034244,-0.311864406779851,-0.331034482758360,-0.318644067796787,-0.331034482758372,-0.305084745762915,-0.337931034482488,-0.311864406779851,0.013559322033872,0.000000000000011,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448244,-0.013559322033872,-0.000000000000013,2 +2721,2779,2781,2839,-0.324137931034255,-0.298305084745975,-0.331034482758372,-0.305084745762915,-0.331034482758384,-0.291525423729035,-0.337931034482500,-0.298305084745975,0.013559322033879,0.000000000000011,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448246,-0.013559322033879,-0.000000000000013,2 +2722,2780,2782,2840,-0.324137931034267,-0.284745762712105,-0.331034482758384,-0.291525423729035,-0.331034482758396,-0.277966101695176,-0.337931034482513,-0.284745762712106,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000013,2 +2723,2781,2783,2841,-0.324137931034278,-0.271186440678246,-0.331034482758396,-0.277966101695176,-0.331034482758408,-0.264406779661316,-0.337931034482525,-0.271186440678246,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000012,2 +2724,2782,2784,2842,-0.324137931034289,-0.257627118644386,-0.331034482758408,-0.264406779661316,-0.331034482758420,-0.250847457627456,-0.337931034482538,-0.257627118644386,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448250,-0.013559322033860,-0.000000000000013,2 +2725,2783,2785,2843,-0.324137931034300,-0.244067796610526,-0.331034482758420,-0.250847457627456,-0.331034482758432,-0.237288135593596,-0.337931034482551,-0.244067796610526,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000013,2 +2726,2784,2786,2844,-0.324137931034312,-0.230508474576667,-0.331034482758432,-0.237288135593596,-0.331034482758444,-0.223728813559737,-0.337931034482563,-0.230508474576667,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448252,-0.013559322033860,-0.000000000000013,2 +2727,2785,2787,2845,-0.324137931034323,-0.216949152542807,-0.331034482758444,-0.223728813559737,-0.331034482758456,-0.210169491525877,-0.337931034482576,-0.216949152542807,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000013,2 +2728,2786,2788,2846,-0.324137931034335,-0.203389830508947,-0.331034482758456,-0.210169491525877,-0.331034482758468,-0.196610169492017,-0.337931034482589,-0.203389830508947,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000013,2 +2729,2787,2789,2847,-0.324137931034346,-0.189830508475088,-0.331034482758468,-0.196610169492017,-0.331034482758480,-0.183050847458158,-0.337931034482601,-0.189830508475088,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000013,2 +2730,2788,2790,2848,-0.324137931034357,-0.176271186441228,-0.331034482758480,-0.183050847458158,-0.331034482758491,-0.169491525424298,-0.337931034482614,-0.176271186441228,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000013,2 +2731,2789,2791,2849,-0.324137931034368,-0.162711864407368,-0.331034482758491,-0.169491525424298,-0.331034482758503,-0.155932203390438,-0.337931034482626,-0.162711864407368,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000013,2 +2732,2790,2792,2850,-0.324137931034380,-0.149152542373509,-0.331034482758503,-0.155932203390438,-0.331034482758515,-0.142372881356579,-0.337931034482639,-0.149152542373509,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000013,2 +2733,2791,2793,2851,-0.324137931034391,-0.135593220339649,-0.331034482758515,-0.142372881356579,-0.331034482758527,-0.128813559322719,-0.337931034482652,-0.135593220339649,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000012,2 +2734,2792,2794,2852,-0.324137931034402,-0.122033898305789,-0.331034482758527,-0.128813559322719,-0.331034482758539,-0.115254237288859,-0.337931034482664,-0.122033898305789,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000013,2 +2735,2793,2795,2853,-0.324137931034414,-0.108474576271933,-0.331034482758539,-0.115254237288859,-0.331034482758551,-0.101694915255007,-0.337931034482677,-0.108474576271933,0.013559322033852,0.000000000000011,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448264,-0.013559322033852,-0.000000000000012,2 +2736,2794,2796,2854,-0.324137931034425,-0.094915254238085,-0.331034482758551,-0.101694915255007,-0.331034482758563,-0.088135593221162,-0.337931034482689,-0.094915254238085,0.013559322033846,0.000000000000011,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448265,-0.013559322033846,-0.000000000000013,2 +2737,2795,2797,2855,-0.324137931034436,-0.081355932204232,-0.331034482758563,-0.088135593221162,-0.331034482758575,-0.074576271187302,-0.337931034482702,-0.081355932204232,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000013,2 +2738,2796,2798,2856,-0.324137931034448,-0.067796610170372,-0.331034482758575,-0.074576271187302,-0.331034482758587,-0.061016949153442,-0.337931034482715,-0.067796610170372,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000013,2 +2739,2797,2799,2857,-0.324137931034459,-0.054237288136513,-0.331034482758587,-0.061016949153442,-0.331034482758599,-0.047457627119583,-0.337931034482728,-0.054237288136513,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000013,2 +2740,2798,2800,2858,-0.324137931034471,-0.040677966102653,-0.331034482758599,-0.047457627119583,-0.331034482758611,-0.033898305085723,-0.337931034482740,-0.040677966102653,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000013,2 +2741,2799,2801,2859,-0.324137931034482,-0.027118644068793,-0.331034482758611,-0.033898305085723,-0.331034482758623,-0.020338983051863,-0.337931034482753,-0.027118644068793,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000013,2 +2742,2800,2802,2860,-0.324137931034493,-0.013559322034934,-0.331034482758623,-0.020338983051863,-0.331034482758635,-0.006779661018004,-0.337931034482765,-0.013559322034933,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000013,2 +2743,2801,2803,2861,-0.324137931034504,-0.000000000001056,-0.331034482758635,-0.006779661018004,-0.331034482758647,0.006779661015891,-0.337931034482778,-0.000000000001056,0.013559322033895,0.000000000000011,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000013,2 +2744,2802,2804,2862,-0.324137931034516,0.013559322032862,-0.331034482758647,0.006779661015891,-0.331034482758659,0.020338983049833,-0.337931034482791,0.013559322032862,0.013559322033941,0.000000000000011,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448275,-0.013559322033941,-0.000000000000013,2 +2745,2803,2805,2863,-0.324137931034527,0.027118644066798,-0.331034482758659,0.020338983049833,-0.331034482758671,0.033898305083763,-0.337931034482803,0.027118644066798,0.013559322033930,0.000000000000011,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448277,-0.013559322033930,-0.000000000000013,2 +2746,2804,2806,2864,-0.324137931034538,0.040677966100731,-0.331034482758671,0.033898305083763,-0.331034482758683,0.047457627117699,-0.337931034482816,0.040677966100731,0.013559322033937,0.000000000000011,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033937,-0.000000000000012,2 +2747,2805,2807,2865,-0.324137931034550,0.054237288134667,-0.331034482758683,0.047457627117699,-0.331034482758695,0.061016949151634,-0.337931034482828,0.054237288134667,0.013559322033935,0.000000000000011,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448279,-0.013559322033935,-0.000000000000013,2 +2748,2806,2808,2866,-0.324137931034561,0.067796610168599,-0.331034482758695,0.061016949151634,-0.331034482758707,0.074576271185564,-0.337931034482841,0.067796610168599,0.013559322033930,0.000000000000011,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448281,-0.013559322033930,-0.000000000000013,2 +2749,2807,2809,2867,-0.324137931034572,0.081355932202535,-0.331034482758707,0.074576271185564,-0.331034482758719,0.088135593219506,-0.337931034482854,0.081355932202535,0.013559322033941,0.000000000000011,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448282,-0.013559322033941,-0.000000000000013,2 +2750,2808,2810,2868,-0.324137931034584,0.094915254236471,-0.331034482758719,0.088135593219506,-0.331034482758731,0.101694915253436,-0.337931034482866,0.094915254236471,0.013559322033930,0.000000000000011,-0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000013,2 +2751,2809,2811,2869,-0.324137931034595,0.108474576270409,-0.331034482758731,0.101694915253436,-0.331034482758743,0.115254237287382,-0.337931034482879,0.108474576270409,0.013559322033946,0.000000000000011,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033946,-0.000000000000013,2 +2752,2810,2812,2870,-0.324137931034606,0.122033898304341,-0.331034482758743,0.115254237287382,-0.331034482758755,0.128813559321301,-0.337931034482892,0.122033898304341,0.013559322033919,0.000000000000011,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448286,-0.013559322033919,-0.000000000000013,2 +2753,2811,2813,2871,-0.324137931034618,0.135593220338273,-0.331034482758755,0.128813559321301,-0.331034482758767,0.142372881355246,-0.337931034482904,0.135593220338273,0.013559322033945,0.000000000000011,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033945,-0.000000000000013,2 +2754,2812,2814,2872,-0.324137931034629,0.149152542372213,-0.331034482758767,0.142372881355246,-0.331034482758779,0.155932203389179,-0.337931034482917,0.149152542372213,0.013559322033933,0.000000000000011,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033933,-0.000000000000013,2 +2755,2813,2815,2873,-0.324137931034640,0.162711864406145,-0.331034482758779,0.155932203389179,-0.331034482758791,0.169491525423110,-0.337931034482929,0.162711864406145,0.013559322033931,0.000000000000011,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448290,-0.013559322033931,-0.000000000000013,2 +2756,2814,2816,2874,-0.324137931034652,0.176271186440084,-0.331034482758791,0.169491525423110,-0.331034482758803,0.183050847457058,-0.337931034482942,0.176271186440084,0.013559322033948,0.000000000000011,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033948,-0.000000000000013,2 +2757,2815,2817,2875,-0.324137931034663,0.189830508474016,-0.331034482758803,0.183050847457058,-0.331034482758815,0.196610169490975,-0.337931034482955,0.189830508474016,0.013559322033917,0.000000000000011,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033917,-0.000000000000013,2 +2758,2816,2818,2876,-0.324137931034674,0.203389830507945,-0.331034482758815,0.196610169490975,-0.331034482758827,0.210169491524915,-0.337931034482967,0.203389830507945,0.013559322033940,0.000000000000011,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033940,-0.000000000000013,2 +2759,2817,2819,2877,-0.324137931034686,0.216949152541877,-0.331034482758827,0.210169491524915,-0.331034482758839,0.223728813558839,-0.337931034482980,0.216949152541877,0.013559322033924,0.000000000000011,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033924,-0.000000000000013,2 +2760,2818,2820,2878,-0.324137931034697,0.230508474575816,-0.331034482758839,0.223728813558839,-0.331034482758851,0.237288135592793,-0.337931034482993,0.230508474575816,0.013559322033954,0.000000000000011,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033954,-0.000000000000013,2 +2761,2819,2821,2879,-0.324137931034708,0.244067796609748,-0.331034482758851,0.237288135592793,-0.331034482758863,0.250847457626703,-0.337931034483005,0.244067796609748,0.013559322033910,0.000000000000011,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033910,-0.000000000000013,2 +2762,2820,2822,2880,-0.324137931034720,0.257627118643680,-0.331034482758863,0.250847457626703,-0.331034482758875,0.264406779660657,-0.337931034483018,0.257627118643680,0.013559322033954,0.000000000000011,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448299,-0.013559322033954,-0.000000000000013,2 +2763,2821,2823,2881,-0.324137931034731,0.271186440677618,-0.331034482758875,0.264406779660657,-0.331034482758887,0.277966101694579,-0.337931034483030,0.271186440677618,0.013559322033922,0.000000000000011,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033922,-0.000000000000013,2 +2764,2822,2824,2882,-0.324137931034742,0.284745762711550,-0.331034482758887,0.277966101694579,-0.331034482758899,0.291525423728521,-0.337931034483043,0.284745762711550,0.013559322033942,0.000000000000011,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448301,-0.013559322033942,-0.000000000000013,2 +2765,2823,2825,2883,-0.324137931034754,0.298305084745489,-0.331034482758899,0.291525423728521,-0.331034482758911,0.305084745762457,-0.337931034483056,0.298305084745489,0.013559322033936,0.000000000000011,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448303,-0.013559322033936,-0.000000000000013,2 +2766,2824,2826,2884,-0.324137931034765,0.311864406779421,-0.331034482758911,0.305084745762457,-0.331034482758923,0.318644067796385,-0.337931034483068,0.311864406779421,0.013559322033928,0.000000000000011,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033928,-0.000000000000013,2 +2767,2825,2827,2885,-0.324137931034776,0.325423728813361,-0.331034482758923,0.318644067796385,-0.331034482758935,0.332203389830336,-0.337931034483081,0.325423728813361,0.013559322033950,0.000000000000011,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033951,-0.000000000000013,2 +2768,2826,2828,2886,-0.324137931034788,0.338983050847293,-0.331034482758935,0.332203389830336,-0.331034482758947,0.345762711864250,-0.337931034483094,0.338983050847293,0.013559322033914,0.000000000000011,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448306,-0.013559322033914,-0.000000000000012,2 +2769,2827,2829,2887,-0.324137931034799,0.352542372881227,-0.331034482758947,0.345762711864250,-0.331034482758959,0.359322033898203,-0.337931034483106,0.352542372881226,0.013559322033954,0.000000000000011,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000013,2 +2770,2828,2830,2888,-0.324137931034810,0.366101694915162,-0.331034482758959,0.359322033898203,-0.331034482758971,0.372881355932121,-0.337931034483119,0.366101694915162,0.013559322033918,0.000000000000011,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033918,-0.000000000000013,2 +2771,2829,2831,2889,-0.324137931034822,0.379661016949095,-0.331034482758971,0.372881355932121,-0.331034482758983,0.386440677966068,-0.337931034483131,0.379661016949094,0.013559322033946,0.000000000000011,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448311,-0.013559322033946,-0.000000000000013,2 +2102,2772,2830,2890,-0.331034482758994,0.400000000000000,-0.324137931034833,0.393220338983034,-0.331034482758983,0.386440677966068,-0.337931034483144,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000011,0.000000000000000,-0.013793103448311,-0.013559322033932,-0.000000000000013,2 +2773,2833,2891,4106,-0.337931034482412,-0.393220338983059,-0.344827586206536,-0.386440677966118,-0.351724137930648,-0.393220338983059,-0.344827586206523,-0.400000000000000,0.013559322033882,0.000000000000013,-0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000014,0.000000000000000,-0.013793103448235,2 +2774,2832,2834,2892,-0.337931034482424,-0.379661016949189,-0.344827586206536,-0.386440677966118,-0.344827586206550,-0.372881355932259,-0.351724137930661,-0.379661016949189,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000014,2 +2775,2833,2835,2893,-0.337931034482437,-0.366101694915329,-0.344827586206550,-0.372881355932259,-0.344827586206563,-0.359322033898399,-0.351724137930675,-0.366101694915329,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448238,0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000014,2 +2776,2834,2836,2894,-0.337931034482450,-0.352542372881469,-0.344827586206563,-0.359322033898399,-0.344827586206576,-0.345762711864539,-0.351724137930689,-0.352542372881469,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448239,0.000000000000000,0.013793103448240,-0.013559322033860,-0.000000000000014,2 +2777,2835,2837,2895,-0.337931034482462,-0.338983050847605,-0.344827586206576,-0.345762711864539,-0.344827586206589,-0.332203389830670,-0.351724137930703,-0.338983050847605,0.013559322033869,0.000000000000012,-0.000000000000000,-0.013793103448240,0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000014,2 +2778,2836,2838,2896,-0.337931034482475,-0.325423728813729,-0.344827586206589,-0.332203389830670,-0.344827586206603,-0.318644067796787,-0.351724137930717,-0.325423728813729,0.013559322033883,0.000000000000013,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000014,2 +2779,2837,2839,2897,-0.337931034482488,-0.311864406779851,-0.344827586206603,-0.318644067796787,-0.344827586206616,-0.305084745762915,-0.351724137930731,-0.311864406779851,0.013559322033872,0.000000000000013,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448244,-0.013559322033872,-0.000000000000014,2 +2780,2838,2840,2898,-0.337931034482500,-0.298305084745975,-0.344827586206616,-0.305084745762915,-0.344827586206629,-0.291525423729035,-0.351724137930745,-0.298305084745975,0.013559322033879,0.000000000000013,0.000000000000000,-0.013793103448244,0.000000000000000,0.013793103448245,-0.013559322033880,-0.000000000000014,2 +2781,2839,2841,2899,-0.337931034482513,-0.284745762712106,-0.344827586206629,-0.291525423729035,-0.344827586206643,-0.277966101695176,-0.351724137930759,-0.284745762712105,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000014,2 +2782,2840,2842,2900,-0.337931034482525,-0.271186440678246,-0.344827586206643,-0.277966101695176,-0.344827586206656,-0.264406779661316,-0.351724137930773,-0.271186440678246,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000014,2 +2783,2841,2843,2901,-0.337931034482538,-0.257627118644386,-0.344827586206656,-0.264406779661316,-0.344827586206669,-0.250847457627456,-0.351724137930787,-0.257627118644386,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000014,2 +2784,2842,2844,2902,-0.337931034482551,-0.244067796610526,-0.344827586206669,-0.250847457627456,-0.344827586206682,-0.237288135593597,-0.351724137930801,-0.244067796610526,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448251,-0.013559322033859,-0.000000000000014,2 +2785,2843,2845,2903,-0.337931034482563,-0.230508474576667,-0.344827586206682,-0.237288135593597,-0.344827586206696,-0.223728813559737,-0.351724137930815,-0.230508474576667,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448252,-0.013559322033860,-0.000000000000014,2 +2786,2844,2846,2904,-0.337931034482576,-0.216949152542807,-0.344827586206696,-0.223728813559737,-0.344827586206709,-0.210169491525877,-0.351724137930828,-0.216949152542807,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000014,2 +2787,2845,2847,2905,-0.337931034482589,-0.203389830508947,-0.344827586206709,-0.210169491525877,-0.344827586206722,-0.196610169492017,-0.351724137930842,-0.203389830508947,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448254,-0.013559322033860,-0.000000000000014,2 +2788,2846,2848,2906,-0.337931034482601,-0.189830508475088,-0.344827586206722,-0.196610169492017,-0.344827586206735,-0.183050847458158,-0.351724137930856,-0.189830508475088,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000014,2 +2789,2847,2849,2907,-0.337931034482614,-0.176271186441228,-0.344827586206735,-0.183050847458158,-0.344827586206749,-0.169491525424298,-0.351724137930870,-0.176271186441228,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000014,2 +2790,2848,2850,2908,-0.337931034482626,-0.162711864407368,-0.344827586206749,-0.169491525424298,-0.344827586206762,-0.155932203390438,-0.351724137930884,-0.162711864407368,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000014,2 +2791,2849,2851,2909,-0.337931034482639,-0.149152542373509,-0.344827586206762,-0.155932203390438,-0.344827586206775,-0.142372881356579,-0.351724137930898,-0.149152542373509,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000014,2 +2792,2850,2852,2910,-0.337931034482652,-0.135593220339649,-0.344827586206775,-0.142372881356579,-0.344827586206788,-0.128813559322719,-0.351724137930912,-0.135593220339649,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000014,2 +2793,2851,2853,2911,-0.337931034482664,-0.122033898305789,-0.344827586206788,-0.128813559322719,-0.344827586206802,-0.115254237288859,-0.351724137930926,-0.122033898305789,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000014,2 +2794,2852,2854,2912,-0.337931034482677,-0.108474576271933,-0.344827586206802,-0.115254237288859,-0.344827586206815,-0.101694915255008,-0.351724137930940,-0.108474576271933,0.013559322033852,0.000000000000012,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448264,-0.013559322033852,-0.000000000000014,2 +2795,2853,2855,2913,-0.337931034482689,-0.094915254238085,-0.344827586206815,-0.101694915255008,-0.344827586206828,-0.088135593221162,-0.351724137930954,-0.094915254238085,0.013559322033846,0.000000000000013,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448265,-0.013559322033846,-0.000000000000014,2 +2796,2854,2856,2914,-0.337931034482702,-0.081355932204232,-0.344827586206828,-0.088135593221162,-0.344827586206842,-0.074576271187302,-0.351724137930968,-0.081355932204232,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000014,2 +2797,2855,2857,2915,-0.337931034482715,-0.067796610170372,-0.344827586206842,-0.074576271187302,-0.344827586206855,-0.061016949153442,-0.351724137930982,-0.067796610170372,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448267,-0.013559322033860,-0.000000000000014,2 +2798,2856,2858,2916,-0.337931034482728,-0.054237288136513,-0.344827586206855,-0.061016949153442,-0.344827586206868,-0.047457627119583,-0.351724137930996,-0.054237288136513,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000014,2 +2799,2857,2859,2917,-0.337931034482740,-0.040677966102653,-0.344827586206868,-0.047457627119583,-0.344827586206881,-0.033898305085723,-0.351724137931009,-0.040677966102653,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000014,2 +2800,2858,2860,2918,-0.337931034482753,-0.027118644068793,-0.344827586206881,-0.033898305085723,-0.344827586206895,-0.020338983051863,-0.351724137931023,-0.027118644068793,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000014,2 +2801,2859,2861,2919,-0.337931034482765,-0.013559322034933,-0.344827586206895,-0.020338983051863,-0.344827586206908,-0.006779661018004,-0.351724137931037,-0.013559322034933,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000014,2 +2802,2860,2862,2920,-0.337931034482778,-0.000000000001056,-0.344827586206908,-0.006779661018004,-0.344827586206921,0.006779661015891,-0.351724137931051,-0.000000000001056,0.013559322033895,0.000000000000013,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000014,2 +2803,2861,2863,2921,-0.337931034482791,0.013559322032862,-0.344827586206921,0.006779661015891,-0.344827586206935,0.020338983049833,-0.351724137931065,0.013559322032862,0.013559322033941,0.000000000000013,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448275,-0.013559322033941,-0.000000000000014,2 +2804,2862,2864,2922,-0.337931034482803,0.027118644066798,-0.344827586206935,0.020338983049833,-0.344827586206948,0.033898305083763,-0.351724137931079,0.027118644066798,0.013559322033930,0.000000000000013,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448277,-0.013559322033930,-0.000000000000014,2 +2805,2863,2865,2923,-0.337931034482816,0.040677966100731,-0.344827586206948,0.033898305083763,-0.344827586206961,0.047457627117699,-0.351724137931093,0.040677966100731,0.013559322033937,0.000000000000012,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448278,-0.013559322033937,-0.000000000000014,2 +2806,2864,2866,2924,-0.337931034482828,0.054237288134667,-0.344827586206961,0.047457627117699,-0.344827586206974,0.061016949151634,-0.351724137931107,0.054237288134667,0.013559322033935,0.000000000000013,-0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448279,-0.013559322033935,-0.000000000000014,2 +2807,2865,2867,2925,-0.337931034482841,0.067796610168599,-0.344827586206974,0.061016949151634,-0.344827586206988,0.074576271185564,-0.351724137931121,0.067796610168599,0.013559322033930,0.000000000000013,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448281,-0.013559322033930,-0.000000000000014,2 +2808,2866,2868,2926,-0.337931034482854,0.081355932202535,-0.344827586206988,0.074576271185564,-0.344827586207001,0.088135593219506,-0.351724137931135,0.081355932202535,0.013559322033941,0.000000000000013,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448282,-0.013559322033941,-0.000000000000014,2 +2809,2867,2869,2927,-0.337931034482866,0.094915254236471,-0.344827586207001,0.088135593219506,-0.344827586207014,0.101694915253436,-0.351724137931149,0.094915254236471,0.013559322033930,0.000000000000013,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000014,2 +2810,2868,2870,2928,-0.337931034482879,0.108474576270409,-0.344827586207014,0.101694915253436,-0.344827586207027,0.115254237287382,-0.351724137931163,0.108474576270409,0.013559322033946,0.000000000000013,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033946,-0.000000000000014,2 +2811,2869,2871,2929,-0.337931034482892,0.122033898304341,-0.344827586207027,0.115254237287382,-0.344827586207041,0.128813559321301,-0.351724137931177,0.122033898304341,0.013559322033919,0.000000000000013,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448286,-0.013559322033919,-0.000000000000014,2 +2812,2870,2872,2930,-0.337931034482904,0.135593220338273,-0.344827586207041,0.128813559321301,-0.344827586207054,0.142372881355246,-0.351724137931191,0.135593220338273,0.013559322033945,0.000000000000013,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033945,-0.000000000000014,2 +2813,2871,2873,2931,-0.337931034482917,0.149152542372213,-0.344827586207054,0.142372881355246,-0.344827586207067,0.155932203389179,-0.351724137931204,0.149152542372213,0.013559322033933,0.000000000000013,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033933,-0.000000000000014,2 +2814,2872,2874,2932,-0.337931034482929,0.162711864406145,-0.344827586207067,0.155932203389179,-0.344827586207081,0.169491525423110,-0.351724137931218,0.162711864406145,0.013559322033931,0.000000000000013,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448290,-0.013559322033931,-0.000000000000014,2 +2815,2873,2875,2933,-0.337931034482942,0.176271186440084,-0.344827586207081,0.169491525423110,-0.344827586207094,0.183050847457058,-0.351724137931232,0.176271186440084,0.013559322033948,0.000000000000013,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033948,-0.000000000000014,2 +2816,2874,2876,2934,-0.337931034482955,0.189830508474016,-0.344827586207094,0.183050847457058,-0.344827586207107,0.196610169490975,-0.351724137931246,0.189830508474016,0.013559322033917,0.000000000000013,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033917,-0.000000000000014,2 +2817,2875,2877,2935,-0.337931034482967,0.203389830507945,-0.344827586207107,0.196610169490975,-0.344827586207120,0.210169491524915,-0.351724137931260,0.203389830507945,0.013559322033940,0.000000000000013,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033940,-0.000000000000014,2 +2818,2876,2878,2936,-0.337931034482980,0.216949152541877,-0.344827586207120,0.210169491524915,-0.344827586207134,0.223728813558839,-0.351724137931274,0.216949152541877,0.013559322033924,0.000000000000013,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033924,-0.000000000000014,2 +2819,2877,2879,2937,-0.337931034482993,0.230508474575816,-0.344827586207134,0.223728813558839,-0.344827586207147,0.237288135592793,-0.351724137931288,0.230508474575816,0.013559322033954,0.000000000000013,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033954,-0.000000000000014,2 +2820,2878,2880,2938,-0.337931034483005,0.244067796609748,-0.344827586207147,0.237288135592793,-0.344827586207160,0.250847457626703,-0.351724137931302,0.244067796609748,0.013559322033910,0.000000000000013,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448298,-0.013559322033910,-0.000000000000014,2 +2821,2879,2881,2939,-0.337931034483018,0.257627118643680,-0.344827586207160,0.250847457626703,-0.344827586207173,0.264406779660657,-0.351724137931316,0.257627118643680,0.013559322033954,0.000000000000013,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448299,-0.013559322033954,-0.000000000000014,2 +2822,2880,2882,2940,-0.337931034483030,0.271186440677618,-0.344827586207173,0.264406779660657,-0.344827586207187,0.277966101694579,-0.351724137931330,0.271186440677618,0.013559322033922,0.000000000000013,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033922,-0.000000000000014,2 +2823,2881,2883,2941,-0.337931034483043,0.284745762711550,-0.344827586207187,0.277966101694579,-0.344827586207200,0.291525423728521,-0.351724137931344,0.284745762711550,0.013559322033942,0.000000000000013,0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448301,-0.013559322033942,-0.000000000000014,2 +2824,2882,2884,2942,-0.337931034483056,0.298305084745489,-0.344827586207200,0.291525423728521,-0.344827586207213,0.305084745762457,-0.351724137931358,0.298305084745489,0.013559322033936,0.000000000000013,-0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448302,-0.013559322033936,-0.000000000000014,2 +2825,2883,2885,2943,-0.337931034483068,0.311864406779421,-0.344827586207213,0.305084745762457,-0.344827586207227,0.318644067796385,-0.351724137931372,0.311864406779421,0.013559322033928,0.000000000000013,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448304,-0.013559322033928,-0.000000000000014,2 +2826,2884,2886,2944,-0.337931034483081,0.325423728813361,-0.344827586207227,0.318644067796385,-0.344827586207240,0.332203389830336,-0.351724137931386,0.325423728813361,0.013559322033951,0.000000000000013,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033951,-0.000000000000014,2 +2827,2885,2887,2945,-0.337931034483094,0.338983050847293,-0.344827586207240,0.332203389830336,-0.344827586207253,0.345762711864250,-0.351724137931400,0.338983050847293,0.013559322033914,0.000000000000012,0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448307,-0.013559322033914,-0.000000000000014,2 +2828,2886,2888,2946,-0.337931034483106,0.352542372881226,-0.344827586207253,0.345762711864250,-0.344827586207266,0.359322033898203,-0.351724137931413,0.352542372881227,0.013559322033954,0.000000000000013,-0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000014,2 +2829,2887,2889,2947,-0.337931034483119,0.366101694915162,-0.344827586207266,0.359322033898203,-0.344827586207280,0.372881355932121,-0.351724137931427,0.366101694915162,0.013559322033918,0.000000000000013,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448309,-0.013559322033918,-0.000000000000014,2 +2830,2888,2890,2948,-0.337931034483131,0.379661016949094,-0.344827586207280,0.372881355932121,-0.344827586207293,0.386440677966068,-0.351724137931441,0.379661016949094,0.013559322033946,0.000000000000013,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448310,-0.013559322033946,-0.000000000000014,2 +2088,2831,2889,2949,-0.344827586207306,0.400000000000000,-0.337931034483144,0.393220338983034,-0.344827586207293,0.386440677966068,-0.351724137931455,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000013,0.000000000000000,-0.013793103448310,-0.013559322033932,-0.000000000000014,2 +2832,2892,2950,4120,-0.351724137930648,-0.393220338983059,-0.358620689654773,-0.386440677966118,-0.365517241378883,-0.393220338983059,-0.358620689654758,-0.400000000000000,0.013559322033882,0.000000000000014,-0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000015,0.000000000000000,-0.013793103448235,2 +2833,2891,2893,2951,-0.351724137930661,-0.379661016949189,-0.358620689654773,-0.386440677966118,-0.358620689654787,-0.372881355932259,-0.365517241378899,-0.379661016949189,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000015,2 +2834,2892,2894,2952,-0.351724137930675,-0.366101694915329,-0.358620689654787,-0.372881355932259,-0.358620689654802,-0.359322033898399,-0.365517241378914,-0.366101694915329,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000015,2 +2835,2893,2895,2953,-0.351724137930689,-0.352542372881469,-0.358620689654802,-0.359322033898399,-0.358620689654816,-0.345762711864539,-0.365517241378929,-0.352542372881469,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448241,-0.013559322033860,-0.000000000000015,2 +2836,2894,2896,2954,-0.351724137930703,-0.338983050847605,-0.358620689654816,-0.345762711864539,-0.358620689654831,-0.332203389830670,-0.365517241378944,-0.338983050847605,0.013559322033869,0.000000000000014,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000015,2 +2837,2895,2897,2955,-0.351724137930717,-0.325423728813729,-0.358620689654831,-0.332203389830670,-0.358620689654846,-0.318644067796787,-0.365517241378959,-0.325423728813729,0.013559322033883,0.000000000000014,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000015,2 +2838,2896,2898,2956,-0.351724137930731,-0.311864406779851,-0.358620689654846,-0.318644067796787,-0.358620689654860,-0.305084745762915,-0.365517241378975,-0.311864406779851,0.013559322033872,0.000000000000014,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448244,-0.013559322033872,-0.000000000000015,2 +2839,2897,2899,2957,-0.351724137930745,-0.298305084745975,-0.358620689654860,-0.305084745762915,-0.358620689654875,-0.291525423729035,-0.365517241378990,-0.298305084745975,0.013559322033880,0.000000000000014,-0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448246,-0.013559322033879,-0.000000000000015,2 +2840,2898,2900,2958,-0.351724137930759,-0.284745762712105,-0.358620689654875,-0.291525423729035,-0.358620689654889,-0.277966101695176,-0.365517241379005,-0.284745762712106,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000015,2 +2841,2899,2901,2959,-0.351724137930773,-0.271186440678246,-0.358620689654889,-0.277966101695176,-0.358620689654904,-0.264406779661316,-0.365517241379020,-0.271186440678246,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000015,2 +2842,2900,2902,2960,-0.351724137930787,-0.257627118644386,-0.358620689654904,-0.264406779661316,-0.358620689654918,-0.250847457627456,-0.365517241379036,-0.257627118644386,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000015,2 +2843,2901,2903,2961,-0.351724137930801,-0.244067796610526,-0.358620689654918,-0.250847457627456,-0.358620689654933,-0.237288135593597,-0.365517241379051,-0.244067796610526,0.013559322033859,0.000000000000014,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000015,2 +2844,2902,2904,2962,-0.351724137930815,-0.230508474576667,-0.358620689654933,-0.237288135593597,-0.358620689654948,-0.223728813559737,-0.365517241379066,-0.230508474576667,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448252,-0.013559322033860,-0.000000000000015,2 +2845,2903,2905,2963,-0.351724137930828,-0.216949152542807,-0.358620689654948,-0.223728813559737,-0.358620689654962,-0.210169491525877,-0.365517241379081,-0.216949152542807,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000015,2 +2846,2904,2906,2964,-0.351724137930842,-0.203389830508947,-0.358620689654962,-0.210169491525877,-0.358620689654977,-0.196610169492017,-0.365517241379096,-0.203389830508947,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000015,2 +2847,2905,2907,2965,-0.351724137930856,-0.189830508475088,-0.358620689654977,-0.196610169492017,-0.358620689654991,-0.183050847458158,-0.365517241379112,-0.189830508475088,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000015,2 +2848,2906,2908,2966,-0.351724137930870,-0.176271186441228,-0.358620689654991,-0.183050847458158,-0.358620689655006,-0.169491525424298,-0.365517241379127,-0.176271186441228,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000015,2 +2849,2907,2909,2967,-0.351724137930884,-0.162711864407368,-0.358620689655006,-0.169491525424298,-0.358620689655020,-0.155932203390438,-0.365517241379142,-0.162711864407368,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000015,2 +2850,2908,2910,2968,-0.351724137930898,-0.149152542373509,-0.358620689655020,-0.155932203390438,-0.358620689655035,-0.142372881356579,-0.365517241379157,-0.149152542373509,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000015,2 +2851,2909,2911,2969,-0.351724137930912,-0.135593220339649,-0.358620689655035,-0.142372881356579,-0.358620689655050,-0.128813559322719,-0.365517241379173,-0.135593220339649,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000015,2 +2852,2910,2912,2970,-0.351724137930926,-0.122033898305789,-0.358620689655050,-0.128813559322719,-0.358620689655064,-0.115254237288859,-0.365517241379188,-0.122033898305789,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000015,2 +2853,2911,2913,2971,-0.351724137930940,-0.108474576271933,-0.358620689655064,-0.115254237288859,-0.358620689655079,-0.101694915255008,-0.365517241379203,-0.108474576271933,0.013559322033852,0.000000000000014,-0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448264,-0.013559322033852,-0.000000000000015,2 +2854,2912,2914,2972,-0.351724137930954,-0.094915254238085,-0.358620689655079,-0.101694915255008,-0.358620689655093,-0.088135593221162,-0.365517241379218,-0.094915254238085,0.013559322033846,0.000000000000014,0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448265,-0.013559322033846,-0.000000000000015,2 +2855,2913,2915,2973,-0.351724137930968,-0.081355932204232,-0.358620689655093,-0.088135593221162,-0.358620689655108,-0.074576271187302,-0.365517241379233,-0.081355932204232,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000015,2 +2856,2914,2916,2974,-0.351724137930982,-0.067796610170372,-0.358620689655108,-0.074576271187302,-0.358620689655123,-0.061016949153442,-0.365517241379249,-0.067796610170372,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000015,2 +2857,2915,2917,2975,-0.351724137930996,-0.054237288136513,-0.358620689655123,-0.061016949153442,-0.358620689655137,-0.047457627119583,-0.365517241379264,-0.054237288136513,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000015,2 +2858,2916,2918,2976,-0.351724137931009,-0.040677966102653,-0.358620689655137,-0.047457627119583,-0.358620689655152,-0.033898305085723,-0.365517241379279,-0.040677966102653,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000015,2 +2859,2917,2919,2977,-0.351724137931023,-0.027118644068793,-0.358620689655152,-0.033898305085723,-0.358620689655166,-0.020338983051863,-0.365517241379294,-0.027118644068793,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000015,2 +2860,2918,2920,2978,-0.351724137931037,-0.013559322034933,-0.358620689655166,-0.020338983051863,-0.358620689655181,-0.006779661018004,-0.365517241379310,-0.013559322034933,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000015,2 +2861,2919,2921,2979,-0.351724137931051,-0.000000000001056,-0.358620689655181,-0.006779661018004,-0.358620689655195,0.006779661015891,-0.365517241379325,-0.000000000001056,0.013559322033895,0.000000000000014,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000015,2 +2862,2920,2922,2980,-0.351724137931065,0.013559322032862,-0.358620689655195,0.006779661015891,-0.358620689655210,0.020338983049833,-0.365517241379340,0.013559322032862,0.013559322033941,0.000000000000014,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448276,-0.013559322033941,-0.000000000000015,2 +2863,2921,2923,2981,-0.351724137931079,0.027118644066798,-0.358620689655210,0.020338983049833,-0.358620689655225,0.033898305083763,-0.365517241379355,0.027118644066798,0.013559322033930,0.000000000000014,0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448277,-0.013559322033930,-0.000000000000015,2 +2864,2922,2924,2982,-0.351724137931093,0.040677966100731,-0.358620689655225,0.033898305083763,-0.358620689655239,0.047457627117699,-0.365517241379370,0.040677966100731,0.013559322033937,0.000000000000014,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448278,-0.013559322033937,-0.000000000000015,2 +2865,2923,2925,2983,-0.351724137931107,0.054237288134667,-0.358620689655239,0.047457627117699,-0.358620689655254,0.061016949151634,-0.365517241379386,0.054237288134667,0.013559322033935,0.000000000000014,-0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448279,-0.013559322033935,-0.000000000000015,2 +2866,2924,2926,2984,-0.351724137931121,0.067796610168599,-0.358620689655254,0.061016949151634,-0.358620689655268,0.074576271185564,-0.365517241379401,0.067796610168599,0.013559322033930,0.000000000000014,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448281,-0.013559322033930,-0.000000000000015,2 +2867,2925,2927,2985,-0.351724137931135,0.081355932202535,-0.358620689655268,0.074576271185564,-0.358620689655283,0.088135593219506,-0.365517241379416,0.081355932202535,0.013559322033941,0.000000000000014,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448282,-0.013559322033941,-0.000000000000015,2 +2868,2926,2928,2986,-0.351724137931149,0.094915254236471,-0.358620689655283,0.088135593219506,-0.358620689655297,0.101694915253436,-0.365517241379431,0.094915254236471,0.013559322033930,0.000000000000014,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000015,2 +2869,2927,2929,2987,-0.351724137931163,0.108474576270409,-0.358620689655297,0.101694915253436,-0.358620689655312,0.115254237287382,-0.365517241379447,0.108474576270409,0.013559322033946,0.000000000000014,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448285,-0.013559322033946,-0.000000000000015,2 +2870,2928,2930,2988,-0.351724137931177,0.122033898304341,-0.358620689655312,0.115254237287382,-0.358620689655326,0.128813559321301,-0.365517241379462,0.122033898304341,0.013559322033919,0.000000000000014,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448286,-0.013559322033919,-0.000000000000015,2 +2871,2929,2931,2989,-0.351724137931191,0.135593220338273,-0.358620689655326,0.128813559321301,-0.358620689655341,0.142372881355246,-0.365517241379477,0.135593220338273,0.013559322033945,0.000000000000014,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033945,-0.000000000000015,2 +2872,2930,2932,2990,-0.351724137931204,0.149152542372213,-0.358620689655341,0.142372881355246,-0.358620689655356,0.155932203389179,-0.365517241379492,0.149152542372213,0.013559322033933,0.000000000000014,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448289,-0.013559322033933,-0.000000000000015,2 +2873,2931,2933,2991,-0.351724137931218,0.162711864406145,-0.358620689655356,0.155932203389179,-0.358620689655370,0.169491525423110,-0.365517241379507,0.162711864406145,0.013559322033931,0.000000000000014,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448290,-0.013559322033931,-0.000000000000015,2 +2874,2932,2934,2992,-0.351724137931232,0.176271186440084,-0.358620689655370,0.169491525423110,-0.358620689655385,0.183050847457058,-0.365517241379523,0.176271186440084,0.013559322033948,0.000000000000014,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033948,-0.000000000000015,2 +2875,2933,2935,2993,-0.351724137931246,0.189830508474016,-0.358620689655385,0.183050847457058,-0.358620689655399,0.196610169490975,-0.365517241379538,0.189830508474016,0.013559322033917,0.000000000000014,0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448292,-0.013559322033917,-0.000000000000015,2 +2876,2934,2936,2994,-0.351724137931260,0.203389830507945,-0.358620689655399,0.196610169490975,-0.358620689655414,0.210169491524915,-0.365517241379553,0.203389830507945,0.013559322033940,0.000000000000014,-0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033940,-0.000000000000015,2 +2877,2935,2937,2995,-0.351724137931274,0.216949152541877,-0.358620689655414,0.210169491524915,-0.358620689655428,0.223728813558839,-0.365517241379568,0.216949152541877,0.013559322033924,0.000000000000014,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033924,-0.000000000000015,2 +2878,2936,2938,2996,-0.351724137931288,0.230508474575816,-0.358620689655428,0.223728813558839,-0.358620689655443,0.237288135592793,-0.365517241379584,0.230508474575816,0.013559322033954,0.000000000000014,0.000000000000000,-0.013793103448295,0.000000000000000,0.013793103448296,-0.013559322033954,-0.000000000000015,2 +2879,2937,2939,2997,-0.351724137931302,0.244067796609748,-0.358620689655443,0.237288135592793,-0.358620689655458,0.250847457626703,-0.365517241379599,0.244067796609748,0.013559322033910,0.000000000000014,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033910,-0.000000000000015,2 +2880,2938,2940,2998,-0.351724137931316,0.257627118643680,-0.358620689655458,0.250847457626703,-0.358620689655472,0.264406779660657,-0.365517241379614,0.257627118643680,0.013559322033954,0.000000000000014,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448299,-0.013559322033954,-0.000000000000015,2 +2881,2939,2941,2999,-0.351724137931330,0.271186440677618,-0.358620689655472,0.264406779660657,-0.358620689655487,0.277966101694579,-0.365517241379629,0.271186440677618,0.013559322033922,0.000000000000014,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033922,-0.000000000000015,2 +2882,2940,2942,3000,-0.351724137931344,0.284745762711550,-0.358620689655487,0.277966101694579,-0.358620689655501,0.291525423728521,-0.365517241379644,0.284745762711550,0.013559322033942,0.000000000000014,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448301,-0.013559322033942,-0.000000000000015,2 +2883,2941,2943,3001,-0.351724137931358,0.298305084745489,-0.358620689655501,0.291525423728521,-0.358620689655516,0.305084745762457,-0.365517241379660,0.298305084745489,0.013559322033936,0.000000000000014,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448303,-0.013559322033936,-0.000000000000015,2 +2884,2942,2944,3002,-0.351724137931372,0.311864406779421,-0.358620689655516,0.305084745762457,-0.358620689655531,0.318644067796385,-0.365517241379675,0.311864406779421,0.013559322033928,0.000000000000014,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033928,-0.000000000000015,2 +2885,2943,2945,3003,-0.351724137931386,0.325423728813361,-0.358620689655531,0.318644067796385,-0.358620689655545,0.332203389830336,-0.365517241379690,0.325423728813361,0.013559322033951,0.000000000000014,0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448305,-0.013559322033951,-0.000000000000015,2 +2886,2944,2946,3004,-0.351724137931400,0.338983050847293,-0.358620689655545,0.332203389830336,-0.358620689655560,0.345762711864250,-0.365517241379705,0.338983050847293,0.013559322033914,0.000000000000014,-0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448307,-0.013559322033914,-0.000000000000015,2 +2887,2945,2947,3005,-0.351724137931413,0.352542372881227,-0.358620689655560,0.345762711864250,-0.358620689655574,0.359322033898203,-0.365517241379721,0.352542372881226,0.013559322033954,0.000000000000014,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000015,2 +2888,2946,2948,3006,-0.351724137931427,0.366101694915162,-0.358620689655574,0.359322033898203,-0.358620689655589,0.372881355932121,-0.365517241379736,0.366101694915162,0.013559322033918,0.000000000000014,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033918,-0.000000000000015,2 +2889,2947,2949,3007,-0.351724137931441,0.379661016949094,-0.358620689655589,0.372881355932121,-0.358620689655603,0.386440677966068,-0.365517241379751,0.379661016949094,0.013559322033946,0.000000000000014,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448311,-0.013559322033946,-0.000000000000015,2 +2074,2890,2948,3008,-0.358620689655618,0.400000000000000,-0.351724137931455,0.393220338983034,-0.358620689655603,0.386440677966068,-0.365517241379766,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000014,0.000000000000000,-0.013793103448311,-0.013559322033932,-0.000000000000015,2 +2891,2951,3009,4134,-0.365517241378883,-0.393220338983059,-0.372413793103009,-0.386440677966118,-0.379310344827119,-0.393220338983059,-0.372413793102993,-0.400000000000000,0.013559322033882,0.000000000000015,-0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000017,0.000000000000000,-0.013793103448235,2 +2892,2950,2952,3010,-0.365517241378899,-0.379661016949189,-0.372413793103009,-0.386440677966118,-0.372413793103025,-0.372881355932259,-0.379310344827136,-0.379661016949189,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000017,2 +2893,2951,2953,3011,-0.365517241378914,-0.366101694915329,-0.372413793103025,-0.372881355932259,-0.372413793103041,-0.359322033898399,-0.379310344827153,-0.366101694915329,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448238,0.000000000000000,0.013793103448240,-0.013559322033860,-0.000000000000017,2 +2894,2952,2954,3012,-0.365517241378929,-0.352542372881469,-0.372413793103041,-0.359322033898399,-0.372413793103057,-0.345762711864539,-0.379310344827169,-0.352542372881469,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448241,-0.013559322033860,-0.000000000000017,2 +2895,2953,2955,3013,-0.365517241378944,-0.338983050847605,-0.372413793103057,-0.345762711864539,-0.372413793103073,-0.332203389830670,-0.379310344827186,-0.338983050847605,0.013559322033869,0.000000000000015,0.000000000000000,-0.013793103448241,0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000017,2 +2896,2954,2956,3014,-0.365517241378959,-0.325423728813729,-0.372413793103073,-0.332203389830670,-0.372413793103089,-0.318644067796787,-0.379310344827203,-0.325423728813729,0.013559322033883,0.000000000000015,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448244,-0.013559322033883,-0.000000000000017,2 +2897,2955,2957,3015,-0.365517241378975,-0.311864406779851,-0.372413793103089,-0.318644067796787,-0.372413793103105,-0.305084745762915,-0.379310344827219,-0.311864406779851,0.013559322033872,0.000000000000015,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448246,-0.013559322033872,-0.000000000000017,2 +2898,2956,2958,3016,-0.365517241378990,-0.298305084745975,-0.372413793103105,-0.305084745762915,-0.372413793103121,-0.291525423729035,-0.379310344827236,-0.298305084745975,0.013559322033879,0.000000000000015,0.000000000000000,-0.013793103448246,0.000000000000000,0.013793103448247,-0.013559322033880,-0.000000000000017,2 +2899,2957,2959,3017,-0.365517241379005,-0.284745762712106,-0.372413793103121,-0.291525423729035,-0.372413793103137,-0.277966101695176,-0.379310344827253,-0.284745762712105,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000017,2 +2900,2958,2960,3018,-0.365517241379020,-0.271186440678246,-0.372413793103137,-0.277966101695176,-0.372413793103153,-0.264406779661316,-0.379310344827270,-0.271186440678246,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448250,-0.013559322033860,-0.000000000000017,2 +2901,2959,2961,3019,-0.365517241379036,-0.257627118644386,-0.372413793103153,-0.264406779661316,-0.372413793103169,-0.250847457627456,-0.379310344827286,-0.257627118644386,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000017,2 +2902,2960,2962,3020,-0.365517241379051,-0.244067796610526,-0.372413793103169,-0.250847457627456,-0.372413793103185,-0.237288135593597,-0.379310344827303,-0.244067796610526,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448253,-0.013559322033859,-0.000000000000017,2 +2903,2961,2963,3021,-0.365517241379066,-0.230508474576667,-0.372413793103185,-0.237288135593597,-0.372413793103201,-0.223728813559737,-0.379310344827320,-0.230508474576667,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448254,-0.013559322033860,-0.000000000000016,2 +2904,2962,2964,3022,-0.365517241379081,-0.216949152542807,-0.372413793103201,-0.223728813559737,-0.372413793103217,-0.210169491525877,-0.379310344827336,-0.216949152542807,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000017,2 +2905,2963,2965,3023,-0.365517241379096,-0.203389830508947,-0.372413793103217,-0.210169491525877,-0.372413793103233,-0.196610169492017,-0.379310344827353,-0.203389830508947,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000017,2 +2906,2964,2966,3024,-0.365517241379112,-0.189830508475088,-0.372413793103233,-0.196610169492017,-0.372413793103249,-0.183050847458158,-0.379310344827370,-0.189830508475087,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000017,2 +2907,2965,2967,3025,-0.365517241379127,-0.176271186441228,-0.372413793103249,-0.183050847458158,-0.372413793103265,-0.169491525424298,-0.379310344827386,-0.176271186441228,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000017,2 +2908,2966,2968,3026,-0.365517241379142,-0.162711864407368,-0.372413793103265,-0.169491525424298,-0.372413793103281,-0.155932203390438,-0.379310344827403,-0.162711864407368,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000017,2 +2909,2967,2969,3027,-0.365517241379157,-0.149152542373509,-0.372413793103281,-0.155932203390438,-0.372413793103297,-0.142372881356579,-0.379310344827420,-0.149152542373509,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000017,2 +2910,2968,2970,3028,-0.365517241379173,-0.135593220339649,-0.372413793103297,-0.142372881356579,-0.372413793103313,-0.128813559322719,-0.379310344827437,-0.135593220339649,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000017,2 +2911,2969,2971,3029,-0.365517241379188,-0.122033898305789,-0.372413793103313,-0.128813559322719,-0.372413793103329,-0.115254237288859,-0.379310344827453,-0.122033898305789,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000017,2 +2912,2970,2972,3030,-0.365517241379203,-0.108474576271933,-0.372413793103329,-0.115254237288859,-0.372413793103345,-0.101694915255008,-0.379310344827470,-0.108474576271933,0.013559322033852,0.000000000000015,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448268,-0.013559322033852,-0.000000000000017,2 +2913,2971,2973,3031,-0.365517241379218,-0.094915254238085,-0.372413793103345,-0.101694915255008,-0.372413793103361,-0.088135593221162,-0.379310344827487,-0.094915254238085,0.013559322033846,0.000000000000015,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448269,-0.013559322033846,-0.000000000000017,2 +2914,2972,2974,3032,-0.365517241379233,-0.081355932204232,-0.372413793103361,-0.088135593221162,-0.372413793103376,-0.074576271187302,-0.379310344827503,-0.081355932204232,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000017,2 +2915,2973,2975,3033,-0.365517241379249,-0.067796610170372,-0.372413793103376,-0.074576271187302,-0.372413793103392,-0.061016949153442,-0.379310344827520,-0.067796610170372,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000017,2 +2916,2974,2976,3034,-0.365517241379264,-0.054237288136513,-0.372413793103392,-0.061016949153442,-0.372413793103408,-0.047457627119583,-0.379310344827537,-0.054237288136513,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000017,2 +2917,2975,2977,3035,-0.365517241379279,-0.040677966102653,-0.372413793103408,-0.047457627119583,-0.372413793103424,-0.033898305085723,-0.379310344827554,-0.040677966102653,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000017,2 +2918,2976,2978,3036,-0.365517241379294,-0.027118644068793,-0.372413793103424,-0.033898305085723,-0.372413793103440,-0.020338983051863,-0.379310344827570,-0.027118644068793,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000017,2 +2919,2977,2979,3037,-0.365517241379310,-0.013559322034933,-0.372413793103440,-0.020338983051863,-0.372413793103456,-0.006779661018004,-0.379310344827587,-0.013559322034934,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000017,2 +2920,2978,2980,3038,-0.365517241379325,-0.000000000001056,-0.372413793103456,-0.006779661018004,-0.372413793103472,0.006779661015891,-0.379310344827604,-0.000000000001056,0.013559322033895,0.000000000000015,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448279,-0.013559322033895,-0.000000000000016,2 +2921,2979,2981,3039,-0.365517241379340,0.013559322032862,-0.372413793103472,0.006779661015891,-0.372413793103488,0.020338983049833,-0.379310344827620,0.013559322032862,0.013559322033941,0.000000000000015,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448281,-0.013559322033941,-0.000000000000017,2 +2922,2980,2982,3040,-0.365517241379355,0.027118644066798,-0.372413793103488,0.020338983049833,-0.372413793103504,0.033898305083763,-0.379310344827637,0.027118644066798,0.013559322033930,0.000000000000015,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000017,2 +2923,2981,2983,3041,-0.365517241379370,0.040677966100731,-0.372413793103504,0.033898305083763,-0.372413793103520,0.047457627117699,-0.379310344827654,0.040677966100731,0.013559322033937,0.000000000000015,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033937,-0.000000000000017,2 +2924,2982,2984,3042,-0.365517241379386,0.054237288134667,-0.372413793103520,0.047457627117699,-0.372413793103536,0.061016949151634,-0.379310344827670,0.054237288134667,0.013559322033935,0.000000000000015,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448285,-0.013559322033935,-0.000000000000017,2 +2925,2983,2985,3043,-0.365517241379401,0.067796610168599,-0.372413793103536,0.061016949151634,-0.372413793103552,0.074576271185564,-0.379310344827687,0.067796610168599,0.013559322033930,0.000000000000015,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448287,-0.013559322033930,-0.000000000000017,2 +2926,2984,2986,3044,-0.365517241379416,0.081355932202535,-0.372413793103552,0.074576271185564,-0.372413793103568,0.088135593219506,-0.379310344827704,0.081355932202535,0.013559322033941,0.000000000000015,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033941,-0.000000000000017,2 +2927,2985,2987,3045,-0.365517241379431,0.094915254236471,-0.372413793103568,0.088135593219506,-0.372413793103584,0.101694915253436,-0.379310344827721,0.094915254236471,0.013559322033930,0.000000000000015,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448290,-0.013559322033930,-0.000000000000017,2 +2928,2986,2988,3046,-0.365517241379447,0.108474576270409,-0.372413793103584,0.101694915253436,-0.372413793103600,0.115254237287382,-0.379310344827737,0.108474576270409,0.013559322033946,0.000000000000015,-0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033946,-0.000000000000017,2 +2929,2987,2989,3047,-0.365517241379462,0.122033898304341,-0.372413793103600,0.115254237287382,-0.372413793103616,0.128813559321301,-0.379310344827754,0.122033898304341,0.013559322033919,0.000000000000015,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448293,-0.013559322033919,-0.000000000000017,2 +2930,2988,2990,3048,-0.365517241379477,0.135593220338273,-0.372413793103616,0.128813559321301,-0.372413793103632,0.142372881355246,-0.379310344827771,0.135593220338273,0.013559322033945,0.000000000000015,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448294,-0.013559322033945,-0.000000000000017,2 +2931,2989,2991,3049,-0.365517241379492,0.149152542372213,-0.372413793103632,0.142372881355246,-0.372413793103648,0.155932203389179,-0.379310344827787,0.149152542372213,0.013559322033933,0.000000000000015,0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448296,-0.013559322033933,-0.000000000000017,2 +2932,2990,2992,3050,-0.365517241379507,0.162711864406145,-0.372413793103648,0.155932203389179,-0.372413793103664,0.169491525423110,-0.379310344827804,0.162711864406145,0.013559322033931,0.000000000000015,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033931,-0.000000000000017,2 +2933,2991,2993,3051,-0.365517241379523,0.176271186440084,-0.372413793103664,0.169491525423110,-0.372413793103680,0.183050847457058,-0.379310344827821,0.176271186440084,0.013559322033948,0.000000000000015,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448299,-0.013559322033948,-0.000000000000017,2 +2934,2992,2994,3052,-0.365517241379538,0.189830508474016,-0.372413793103680,0.183050847457058,-0.372413793103696,0.196610169490975,-0.379310344827838,0.189830508474016,0.013559322033917,0.000000000000015,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033917,-0.000000000000017,2 +2935,2993,2995,3053,-0.365517241379553,0.203389830507945,-0.372413793103696,0.196610169490975,-0.372413793103712,0.210169491524915,-0.379310344827854,0.203389830507945,0.013559322033940,0.000000000000015,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448302,-0.013559322033940,-0.000000000000017,2 +2936,2994,2996,3054,-0.365517241379568,0.216949152541877,-0.372413793103712,0.210169491524915,-0.372413793103728,0.223728813558839,-0.379310344827871,0.216949152541877,0.013559322033924,0.000000000000015,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448303,-0.013559322033924,-0.000000000000017,2 +2937,2995,2997,3055,-0.365517241379584,0.230508474575816,-0.372413793103728,0.223728813558839,-0.372413793103744,0.237288135592793,-0.379310344827888,0.230508474575816,0.013559322033954,0.000000000000015,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448305,-0.013559322033954,-0.000000000000017,2 +2938,2996,2998,3056,-0.365517241379599,0.244067796609748,-0.372413793103744,0.237288135592793,-0.372413793103760,0.250847457626703,-0.379310344827904,0.244067796609748,0.013559322033910,0.000000000000015,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448306,-0.013559322033910,-0.000000000000017,2 +2939,2997,2999,3057,-0.365517241379614,0.257627118643680,-0.372413793103760,0.250847457626703,-0.372413793103776,0.264406779660657,-0.379310344827921,0.257627118643680,0.013559322033954,0.000000000000015,0.000000000000000,-0.013793103448306,0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000017,2 +2940,2998,3000,3058,-0.365517241379629,0.271186440677618,-0.372413793103776,0.264406779660657,-0.372413793103792,0.277966101694579,-0.379310344827938,0.271186440677618,0.013559322033922,0.000000000000015,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033922,-0.000000000000017,2 +2941,2999,3001,3059,-0.365517241379644,0.284745762711550,-0.372413793103792,0.277966101694579,-0.372413793103808,0.291525423728521,-0.379310344827955,0.284745762711550,0.013559322033942,0.000000000000015,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448311,-0.013559322033942,-0.000000000000017,2 +2942,3000,3002,3060,-0.365517241379660,0.298305084745489,-0.372413793103808,0.291525423728521,-0.372413793103824,0.305084745762457,-0.379310344827971,0.298305084745489,0.013559322033936,0.000000000000015,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,-0.013559322033936,-0.000000000000017,2 +2943,3001,3003,3061,-0.365517241379675,0.311864406779421,-0.372413793103824,0.305084745762457,-0.372413793103839,0.318644067796385,-0.379310344827988,0.311864406779421,0.013559322033928,0.000000000000015,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448314,-0.013559322033928,-0.000000000000017,2 +2944,3002,3004,3062,-0.365517241379690,0.325423728813361,-0.372413793103839,0.318644067796385,-0.372413793103855,0.332203389830336,-0.379310344828005,0.325423728813361,0.013559322033951,0.000000000000015,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448315,-0.013559322033950,-0.000000000000017,2 +2945,3003,3005,3063,-0.365517241379705,0.338983050847293,-0.372413793103855,0.332203389830336,-0.372413793103871,0.345762711864250,-0.379310344828021,0.338983050847293,0.013559322033914,0.000000000000015,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448317,-0.013559322033914,-0.000000000000017,2 +2946,3004,3006,3064,-0.365517241379721,0.352542372881226,-0.372413793103871,0.345762711864250,-0.372413793103887,0.359322033898204,-0.379310344828038,0.352542372881227,0.013559322033954,0.000000000000015,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448318,-0.013559322033954,-0.000000000000017,2 +2947,3005,3007,3065,-0.365517241379736,0.366101694915162,-0.372413793103887,0.359322033898204,-0.372413793103903,0.372881355932121,-0.379310344828055,0.366101694915163,0.013559322033918,0.000000000000015,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448320,-0.013559322033918,-0.000000000000017,2 +2948,3006,3008,3066,-0.365517241379751,0.379661016949094,-0.372413793103903,0.372881355932121,-0.372413793103919,0.386440677966068,-0.379310344828071,0.379661016949095,0.013559322033946,0.000000000000015,-0.000000000000000,-0.013793103448320,0.000000000000000,0.013793103448321,-0.013559322033946,-0.000000000000017,2 +2060,2949,3007,3067,-0.372413793103935,0.400000000000000,-0.365517241379766,0.393220338983034,-0.372413793103919,0.386440677966068,-0.379310344828088,0.393220338983034,0.000000000000000,0.013793103448323,0.013559322033932,0.000000000000015,-0.000000000000000,-0.013793103448321,-0.013559322033932,-0.000000000000017,2 +2950,3010,3068,4148,-0.379310344827119,-0.393220338983059,-0.386206896551246,-0.386440677966118,-0.393103448275355,-0.393220338983059,-0.386206896551228,-0.400000000000000,0.013559322033882,0.000000000000017,-0.000000000000000,0.013793103448237,-0.013559322033882,-0.000000000000018,0.000000000000000,-0.013793103448235,2 +2951,3009,3011,3069,-0.379310344827136,-0.379661016949189,-0.386206896551246,-0.386440677966118,-0.386206896551263,-0.372881355932259,-0.393103448275373,-0.379661016949189,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000018,2 +2952,3010,3012,3070,-0.379310344827153,-0.366101694915329,-0.386206896551263,-0.372881355932259,-0.386206896551280,-0.359322033898399,-0.393103448275391,-0.366101694915329,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000018,2 +2953,3011,3013,3071,-0.379310344827169,-0.352542372881469,-0.386206896551280,-0.359322033898399,-0.386206896551298,-0.345762711864539,-0.393103448275409,-0.352542372881469,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448240,-0.013559322033860,-0.000000000000018,2 +2954,3012,3014,3072,-0.379310344827186,-0.338983050847605,-0.386206896551298,-0.345762711864539,-0.386206896551315,-0.332203389830670,-0.393103448275427,-0.338983050847605,0.013559322033869,0.000000000000017,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000018,2 +2955,3013,3015,3073,-0.379310344827203,-0.325423728813729,-0.386206896551315,-0.332203389830670,-0.386206896551333,-0.318644067796787,-0.393103448275445,-0.325423728813729,0.013559322033883,0.000000000000017,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000018,2 +2956,3014,3016,3074,-0.379310344827219,-0.311864406779851,-0.386206896551333,-0.318644067796787,-0.386206896551350,-0.305084745762915,-0.393103448275463,-0.311864406779851,0.013559322033872,0.000000000000017,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448244,-0.013559322033872,-0.000000000000018,2 +2957,3015,3017,3075,-0.379310344827236,-0.298305084745975,-0.386206896551350,-0.305084745762915,-0.386206896551367,-0.291525423729035,-0.393103448275481,-0.298305084745975,0.013559322033880,0.000000000000017,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448245,-0.013559322033880,-0.000000000000018,2 +2958,3016,3018,3076,-0.379310344827253,-0.284745762712105,-0.386206896551367,-0.291525423729035,-0.386206896551385,-0.277966101695176,-0.393103448275499,-0.284745762712105,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000018,2 +2959,3017,3019,3077,-0.379310344827270,-0.271186440678246,-0.386206896551385,-0.277966101695176,-0.386206896551402,-0.264406779661316,-0.393103448275517,-0.271186440678246,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000018,2 +2960,3018,3020,3078,-0.379310344827286,-0.257627118644386,-0.386206896551402,-0.264406779661316,-0.386206896551419,-0.250847457627456,-0.393103448275535,-0.257627118644386,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000018,2 +2961,3019,3021,3079,-0.379310344827303,-0.244067796610526,-0.386206896551419,-0.250847457627456,-0.386206896551437,-0.237288135593597,-0.393103448275553,-0.244067796610526,0.013559322033859,0.000000000000017,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000018,2 +2962,3020,3022,3080,-0.379310344827320,-0.230508474576667,-0.386206896551437,-0.237288135593597,-0.386206896551454,-0.223728813559737,-0.393103448275571,-0.230508474576667,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448252,-0.013559322033860,-0.000000000000018,2 +2963,3021,3023,3081,-0.379310344827336,-0.216949152542807,-0.386206896551454,-0.223728813559737,-0.386206896551471,-0.210169491525877,-0.393103448275589,-0.216949152542807,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000018,2 +2964,3022,3024,3082,-0.379310344827353,-0.203389830508947,-0.386206896551471,-0.210169491525877,-0.386206896551489,-0.196610169492017,-0.393103448275607,-0.203389830508947,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000018,2 +2965,3023,3025,3083,-0.379310344827370,-0.189830508475087,-0.386206896551489,-0.196610169492017,-0.386206896551506,-0.183050847458158,-0.393103448275625,-0.189830508475088,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000018,2 +2966,3024,3026,3084,-0.379310344827386,-0.176271186441228,-0.386206896551506,-0.183050847458158,-0.386206896551523,-0.169491525424298,-0.393103448275643,-0.176271186441228,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000018,2 +2967,3025,3027,3085,-0.379310344827403,-0.162711864407368,-0.386206896551523,-0.169491525424298,-0.386206896551541,-0.155932203390438,-0.393103448275661,-0.162711864407368,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000018,2 +2968,3026,3028,3086,-0.379310344827420,-0.149152542373509,-0.386206896551541,-0.155932203390438,-0.386206896551558,-0.142372881356579,-0.393103448275679,-0.149152542373509,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000018,2 +2969,3027,3029,3087,-0.379310344827437,-0.135593220339649,-0.386206896551558,-0.142372881356579,-0.386206896551576,-0.128813559322719,-0.393103448275697,-0.135593220339649,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000018,2 +2970,3028,3030,3088,-0.379310344827453,-0.122033898305789,-0.386206896551576,-0.128813559322719,-0.386206896551593,-0.115254237288859,-0.393103448275715,-0.122033898305789,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000018,2 +2971,3029,3031,3089,-0.379310344827470,-0.108474576271933,-0.386206896551593,-0.115254237288859,-0.386206896551610,-0.101694915255008,-0.393103448275733,-0.108474576271933,0.013559322033852,0.000000000000017,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448264,-0.013559322033852,-0.000000000000018,2 +2972,3030,3032,3090,-0.379310344827487,-0.094915254238085,-0.386206896551610,-0.101694915255008,-0.386206896551628,-0.088135593221162,-0.393103448275751,-0.094915254238085,0.013559322033846,0.000000000000017,0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448265,-0.013559322033846,-0.000000000000018,2 +2973,3031,3033,3091,-0.379310344827503,-0.081355932204232,-0.386206896551628,-0.088135593221162,-0.386206896551645,-0.074576271187302,-0.393103448275769,-0.081355932204232,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000018,2 +2974,3032,3034,3092,-0.379310344827520,-0.067796610170372,-0.386206896551645,-0.074576271187302,-0.386206896551662,-0.061016949153442,-0.393103448275787,-0.067796610170372,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000018,2 +2975,3033,3035,3093,-0.379310344827537,-0.054237288136513,-0.386206896551662,-0.061016949153442,-0.386206896551680,-0.047457627119583,-0.393103448275805,-0.054237288136513,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000018,2 +2976,3034,3036,3094,-0.379310344827554,-0.040677966102653,-0.386206896551680,-0.047457627119583,-0.386206896551697,-0.033898305085723,-0.393103448275823,-0.040677966102653,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000018,2 +2977,3035,3037,3095,-0.379310344827570,-0.027118644068793,-0.386206896551697,-0.033898305085723,-0.386206896551714,-0.020338983051863,-0.393103448275841,-0.027118644068793,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000018,2 +2978,3036,3038,3096,-0.379310344827587,-0.013559322034934,-0.386206896551714,-0.020338983051863,-0.386206896551732,-0.006779661018004,-0.393103448275859,-0.013559322034934,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000018,2 +2979,3037,3039,3097,-0.379310344827604,-0.000000000001056,-0.386206896551732,-0.006779661018004,-0.386206896551749,0.006779661015891,-0.393103448275877,-0.000000000001056,0.013559322033895,0.000000000000016,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000018,2 +2980,3038,3040,3098,-0.379310344827620,0.013559322032862,-0.386206896551749,0.006779661015891,-0.386206896551767,0.020338983049833,-0.393103448275895,0.013559322032862,0.013559322033941,0.000000000000017,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448275,-0.013559322033941,-0.000000000000018,2 +2981,3039,3041,3099,-0.379310344827637,0.027118644066798,-0.386206896551767,0.020338983049833,-0.386206896551784,0.033898305083763,-0.393103448275913,0.027118644066798,0.013559322033930,0.000000000000017,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448277,-0.013559322033930,-0.000000000000018,2 +2982,3040,3042,3100,-0.379310344827654,0.040677966100731,-0.386206896551784,0.033898305083763,-0.386206896551801,0.047457627117699,-0.393103448275931,0.040677966100731,0.013559322033937,0.000000000000017,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448278,-0.013559322033937,-0.000000000000018,2 +2983,3041,3043,3101,-0.379310344827670,0.054237288134667,-0.386206896551801,0.047457627117699,-0.386206896551818,0.061016949151634,-0.393103448275949,0.054237288134667,0.013559322033935,0.000000000000017,-0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448279,-0.013559322033935,-0.000000000000018,2 +2984,3042,3044,3102,-0.379310344827687,0.067796610168599,-0.386206896551818,0.061016949151634,-0.386206896551836,0.074576271185564,-0.393103448275967,0.067796610168599,0.013559322033930,0.000000000000017,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448281,-0.013559322033930,-0.000000000000018,2 +2985,3043,3045,3103,-0.379310344827704,0.081355932202535,-0.386206896551836,0.074576271185564,-0.386206896551853,0.088135593219506,-0.393103448275985,0.081355932202535,0.013559322033941,0.000000000000017,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448282,-0.013559322033941,-0.000000000000018,2 +2986,3044,3046,3104,-0.379310344827721,0.094915254236471,-0.386206896551853,0.088135593219506,-0.386206896551871,0.101694915253436,-0.393103448276003,0.094915254236471,0.013559322033930,0.000000000000017,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000018,2 +2987,3045,3047,3105,-0.379310344827737,0.108474576270409,-0.386206896551871,0.101694915253436,-0.386206896551888,0.115254237287382,-0.393103448276021,0.108474576270409,0.013559322033946,0.000000000000017,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033946,-0.000000000000018,2 +2988,3046,3048,3106,-0.379310344827754,0.122033898304341,-0.386206896551888,0.115254237287382,-0.386206896551905,0.128813559321301,-0.393103448276039,0.122033898304341,0.013559322033919,0.000000000000017,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448286,-0.013559322033919,-0.000000000000018,2 +2989,3047,3049,3107,-0.379310344827771,0.135593220338273,-0.386206896551905,0.128813559321301,-0.386206896551923,0.142372881355246,-0.393103448276057,0.135593220338273,0.013559322033945,0.000000000000017,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033945,-0.000000000000018,2 +2990,3048,3050,3108,-0.379310344827787,0.149152542372213,-0.386206896551923,0.142372881355246,-0.386206896551940,0.155932203389179,-0.393103448276075,0.149152542372213,0.013559322033933,0.000000000000017,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033933,-0.000000000000018,2 +2991,3049,3051,3109,-0.379310344827804,0.162711864406145,-0.386206896551940,0.155932203389179,-0.386206896551957,0.169491525423110,-0.393103448276093,0.162711864406145,0.013559322033931,0.000000000000017,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448290,-0.013559322033931,-0.000000000000018,2 +2992,3050,3052,3110,-0.379310344827821,0.176271186440084,-0.386206896551957,0.169491525423110,-0.386206896551975,0.183050847457058,-0.393103448276111,0.176271186440084,0.013559322033948,0.000000000000017,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033948,-0.000000000000018,2 +2993,3051,3053,3111,-0.379310344827838,0.189830508474016,-0.386206896551975,0.183050847457058,-0.386206896551992,0.196610169490975,-0.393103448276129,0.189830508474016,0.013559322033917,0.000000000000017,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033917,-0.000000000000018,2 +2994,3052,3054,3112,-0.379310344827854,0.203389830507945,-0.386206896551992,0.196610169490975,-0.386206896552009,0.210169491524915,-0.393103448276147,0.203389830507945,0.013559322033940,0.000000000000017,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033940,-0.000000000000018,2 +2995,3053,3055,3113,-0.379310344827871,0.216949152541877,-0.386206896552009,0.210169491524915,-0.386206896552027,0.223728813558839,-0.393103448276165,0.216949152541877,0.013559322033924,0.000000000000017,0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448295,-0.013559322033924,-0.000000000000018,2 +2996,3054,3056,3114,-0.379310344827888,0.230508474575816,-0.386206896552027,0.223728813558839,-0.386206896552044,0.237288135592793,-0.393103448276183,0.230508474575816,0.013559322033954,0.000000000000017,-0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033954,-0.000000000000018,2 +2997,3055,3057,3115,-0.379310344827904,0.244067796609748,-0.386206896552044,0.237288135592793,-0.386206896552062,0.250847457626703,-0.393103448276201,0.244067796609748,0.013559322033910,0.000000000000017,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033910,-0.000000000000018,2 +2998,3056,3058,3116,-0.379310344827921,0.257627118643680,-0.386206896552062,0.250847457626703,-0.386206896552079,0.264406779660657,-0.393103448276219,0.257627118643680,0.013559322033954,0.000000000000017,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448299,-0.013559322033954,-0.000000000000018,2 +2999,3057,3059,3117,-0.379310344827938,0.271186440677618,-0.386206896552079,0.264406779660657,-0.386206896552096,0.277966101694579,-0.393103448276237,0.271186440677618,0.013559322033922,0.000000000000017,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033922,-0.000000000000018,2 +3000,3058,3060,3118,-0.379310344827955,0.284745762711550,-0.386206896552096,0.277966101694579,-0.386206896552114,0.291525423728521,-0.393103448276255,0.284745762711550,0.013559322033942,0.000000000000017,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448301,-0.013559322033942,-0.000000000000018,2 +3001,3059,3061,3119,-0.379310344827971,0.298305084745489,-0.386206896552114,0.291525423728521,-0.386206896552131,0.305084745762457,-0.393103448276273,0.298305084745489,0.013559322033936,0.000000000000017,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448303,-0.013559322033936,-0.000000000000018,2 +3002,3060,3062,3120,-0.379310344827988,0.311864406779421,-0.386206896552131,0.305084745762457,-0.386206896552148,0.318644067796385,-0.393103448276291,0.311864406779421,0.013559322033928,0.000000000000017,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033928,-0.000000000000018,2 +3003,3061,3063,3121,-0.379310344828005,0.325423728813361,-0.386206896552148,0.318644067796385,-0.386206896552166,0.332203389830336,-0.393103448276309,0.325423728813361,0.013559322033950,0.000000000000017,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033951,-0.000000000000018,2 +3004,3062,3064,3122,-0.379310344828021,0.338983050847293,-0.386206896552166,0.332203389830336,-0.386206896552183,0.345762711864250,-0.393103448276327,0.338983050847293,0.013559322033914,0.000000000000017,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448307,-0.013559322033914,-0.000000000000018,2 +3005,3063,3065,3123,-0.379310344828038,0.352542372881227,-0.386206896552183,0.345762711864250,-0.386206896552200,0.359322033898204,-0.393103448276345,0.352542372881227,0.013559322033954,0.000000000000017,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000018,2 +3006,3064,3066,3124,-0.379310344828055,0.366101694915163,-0.386206896552200,0.359322033898204,-0.386206896552218,0.372881355932121,-0.393103448276363,0.366101694915162,0.013559322033918,0.000000000000017,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033918,-0.000000000000018,2 +3007,3065,3067,3125,-0.379310344828071,0.379661016949095,-0.386206896552218,0.372881355932121,-0.386206896552235,0.386440677966068,-0.393103448276381,0.379661016949095,0.013559322033946,0.000000000000017,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448311,-0.013559322033946,-0.000000000000018,2 +2046,3008,3066,3126,-0.386206896552252,0.400000000000000,-0.379310344828088,0.393220338983034,-0.386206896552235,0.386440677966068,-0.393103448276399,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000017,0.000000000000000,-0.013793103448311,-0.013559322033932,-0.000000000000018,2 +3009,3069,3127,4162,-0.393103448275355,-0.393220338983059,-0.399999999999505,-0.386440677966118,-0.406896551723638,-0.393220338983059,-0.399999999999487,-0.400000000000000,0.013559322033882,0.000000000000018,-0.000000000000000,0.013793103448283,-0.013559322033882,-0.000000000000018,0.000000000000000,-0.013793103448283,2 +3010,3068,3070,3128,-0.393103448275373,-0.379661016949189,-0.399999999999505,-0.386440677966118,-0.399999999999523,-0.372881355932259,-0.406896551723655,-0.379661016949189,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000018,2 +3011,3069,3071,3129,-0.393103448275391,-0.366101694915329,-0.399999999999523,-0.372881355932259,-0.399999999999541,-0.359322033898399,-0.406896551723673,-0.366101694915329,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000018,2 +3012,3070,3072,3130,-0.393103448275409,-0.352542372881469,-0.399999999999541,-0.359322033898399,-0.399999999999559,-0.345762711864539,-0.406896551723691,-0.352542372881469,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000018,2 +3013,3071,3073,3131,-0.393103448275427,-0.338983050847605,-0.399999999999559,-0.345762711864539,-0.399999999999577,-0.332203389830670,-0.406896551723709,-0.338983050847605,0.013559322033869,0.000000000000018,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448281,-0.013559322033869,-0.000000000000018,2 +3014,3072,3074,3132,-0.393103448275445,-0.325423728813729,-0.399999999999577,-0.332203389830670,-0.399999999999595,-0.318644067796787,-0.406896551723726,-0.325423728813729,0.013559322033883,0.000000000000018,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448281,-0.013559322033883,-0.000000000000018,2 +3015,3073,3075,3133,-0.393103448275463,-0.311864406779851,-0.399999999999595,-0.318644067796787,-0.399999999999612,-0.305084745762915,-0.406896551723744,-0.311864406779851,0.013559322033872,0.000000000000018,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448281,-0.013559322033872,-0.000000000000018,2 +3016,3074,3076,3134,-0.393103448275481,-0.298305084745975,-0.399999999999612,-0.305084745762915,-0.399999999999630,-0.291525423729035,-0.406896551723762,-0.298305084745975,0.013559322033880,0.000000000000018,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448281,-0.013559322033880,-0.000000000000018,2 +3017,3075,3077,3135,-0.393103448275499,-0.284745762712105,-0.399999999999630,-0.291525423729035,-0.399999999999648,-0.277966101695176,-0.406896551723779,-0.284745762712105,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000018,2 +3018,3076,3078,3136,-0.393103448275517,-0.271186440678246,-0.399999999999648,-0.277966101695176,-0.399999999999666,-0.264406779661316,-0.406896551723797,-0.271186440678246,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000018,2 +3019,3077,3079,3137,-0.393103448275535,-0.257627118644386,-0.399999999999666,-0.264406779661316,-0.399999999999684,-0.250847457627456,-0.406896551723815,-0.257627118644386,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000018,2 +3020,3078,3080,3138,-0.393103448275553,-0.244067796610526,-0.399999999999684,-0.250847457627456,-0.399999999999702,-0.237288135593597,-0.406896551723832,-0.244067796610526,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000018,2 +3021,3079,3081,3139,-0.393103448275571,-0.230508474576667,-0.399999999999702,-0.237288135593597,-0.399999999999719,-0.223728813559737,-0.406896551723850,-0.230508474576667,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000018,2 +3022,3080,3082,3140,-0.393103448275589,-0.216949152542807,-0.399999999999719,-0.223728813559737,-0.399999999999737,-0.210169491525877,-0.406896551723868,-0.216949152542807,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000018,2 +3023,3081,3083,3141,-0.393103448275607,-0.203389830508947,-0.399999999999737,-0.210169491525877,-0.399999999999755,-0.196610169492017,-0.406896551723885,-0.203389830508947,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000018,2 +3024,3082,3084,3142,-0.393103448275625,-0.189830508475088,-0.399999999999755,-0.196610169492017,-0.399999999999773,-0.183050847458158,-0.406896551723903,-0.189830508475088,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000018,2 +3025,3083,3085,3143,-0.393103448275643,-0.176271186441228,-0.399999999999773,-0.183050847458158,-0.399999999999791,-0.169491525424298,-0.406896551723921,-0.176271186441228,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000018,2 +3026,3084,3086,3144,-0.393103448275661,-0.162711864407368,-0.399999999999791,-0.169491525424298,-0.399999999999809,-0.155932203390438,-0.406896551723938,-0.162711864407368,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000018,2 +3027,3085,3087,3145,-0.393103448275679,-0.149152542373509,-0.399999999999809,-0.155932203390438,-0.399999999999826,-0.142372881356579,-0.406896551723956,-0.149152542373509,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000018,2 +3028,3086,3088,3146,-0.393103448275697,-0.135593220339649,-0.399999999999826,-0.142372881356579,-0.399999999999844,-0.128813559322719,-0.406896551723974,-0.135593220339649,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000018,2 +3029,3087,3089,3147,-0.393103448275715,-0.122033898305789,-0.399999999999844,-0.128813559322719,-0.399999999999862,-0.115254237288859,-0.406896551723991,-0.122033898305789,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000018,2 +3030,3088,3090,3148,-0.393103448275733,-0.108474576271933,-0.399999999999862,-0.115254237288859,-0.399999999999880,-0.101694915255008,-0.406896551724009,-0.108474576271933,0.013559322033852,0.000000000000018,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448276,-0.013559322033852,-0.000000000000018,2 +3031,3089,3091,3149,-0.393103448275751,-0.094915254238085,-0.399999999999880,-0.101694915255008,-0.399999999999898,-0.088135593221162,-0.406896551724027,-0.094915254238085,0.013559322033846,0.000000000000018,0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448276,-0.013559322033846,-0.000000000000017,2 +3032,3090,3092,3150,-0.393103448275769,-0.081355932204232,-0.399999999999898,-0.088135593221162,-0.399999999999916,-0.074576271187302,-0.406896551724044,-0.081355932204232,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000018,2 +3033,3091,3093,3151,-0.393103448275787,-0.067796610170372,-0.399999999999916,-0.074576271187302,-0.399999999999934,-0.061016949153442,-0.406896551724062,-0.067796610170372,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000018,2 +3034,3092,3094,3152,-0.393103448275805,-0.054237288136513,-0.399999999999934,-0.061016949153442,-0.399999999999951,-0.047457627119583,-0.406896551724080,-0.054237288136513,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000018,2 +3035,3093,3095,3153,-0.393103448275823,-0.040677966102653,-0.399999999999951,-0.047457627119583,-0.399999999999969,-0.033898305085723,-0.406896551724097,-0.040677966102653,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000018,2 +3036,3094,3096,3154,-0.393103448275841,-0.027118644068793,-0.399999999999969,-0.033898305085723,-0.399999999999987,-0.020338983051863,-0.406896551724115,-0.027118644068793,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000018,2 +3037,3095,3097,3155,-0.393103448275859,-0.013559322034934,-0.399999999999987,-0.020338983051863,-0.400000000000005,-0.006779661018004,-0.406896551724133,-0.013559322034934,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000018,2 +3038,3096,3098,3156,-0.393103448275877,-0.000000000001056,-0.400000000000005,-0.006779661018004,-0.400000000000023,0.006779661015891,-0.406896551724151,-0.000000000001056,0.013559322033895,0.000000000000018,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448273,-0.013559322033895,-0.000000000000017,2 +3039,3097,3099,3157,-0.393103448275895,0.013559322032862,-0.400000000000023,0.006779661015891,-0.400000000000041,0.020338983049833,-0.406896551724168,0.013559322032862,0.013559322033941,0.000000000000018,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448273,-0.013559322033941,-0.000000000000017,2 +3040,3098,3100,3158,-0.393103448275913,0.027118644066798,-0.400000000000041,0.020338983049833,-0.400000000000058,0.033898305083763,-0.406896551724186,0.027118644066798,0.013559322033930,0.000000000000018,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448273,-0.013559322033930,-0.000000000000018,2 +3041,3099,3101,3159,-0.393103448275931,0.040677966100731,-0.400000000000058,0.033898305083763,-0.400000000000076,0.047457627117699,-0.406896551724204,0.040677966100731,0.013559322033937,0.000000000000018,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,-0.013559322033937,-0.000000000000018,2 +3042,3100,3102,3160,-0.393103448275949,0.054237288134667,-0.400000000000076,0.047457627117699,-0.400000000000094,0.061016949151634,-0.406896551724221,0.054237288134667,0.013559322033935,0.000000000000018,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448272,-0.013559322033935,-0.000000000000018,2 +3043,3101,3103,3161,-0.393103448275967,0.067796610168599,-0.400000000000094,0.061016949151634,-0.400000000000112,0.074576271185564,-0.406896551724239,0.067796610168599,0.013559322033930,0.000000000000018,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448272,-0.013559322033930,-0.000000000000018,2 +3044,3102,3104,3162,-0.393103448275985,0.081355932202535,-0.400000000000112,0.074576271185564,-0.400000000000130,0.088135593219506,-0.406896551724257,0.081355932202535,0.013559322033941,0.000000000000018,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448271,-0.013559322033941,-0.000000000000018,2 +3045,3103,3105,3163,-0.393103448276003,0.094915254236471,-0.400000000000130,0.088135593219506,-0.400000000000148,0.101694915253436,-0.406896551724274,0.094915254236471,0.013559322033930,0.000000000000018,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448271,-0.013559322033930,-0.000000000000018,2 +3046,3104,3106,3164,-0.393103448276021,0.108474576270409,-0.400000000000148,0.101694915253436,-0.400000000000165,0.115254237287382,-0.406896551724292,0.108474576270409,0.013559322033946,0.000000000000018,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448271,-0.013559322033946,-0.000000000000018,2 +3047,3105,3107,3165,-0.393103448276039,0.122033898304341,-0.400000000000165,0.115254237287382,-0.400000000000183,0.128813559321301,-0.406896551724310,0.122033898304341,0.013559322033919,0.000000000000018,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448270,-0.013559322033919,-0.000000000000018,2 +3048,3106,3108,3166,-0.393103448276057,0.135593220338273,-0.400000000000183,0.128813559321301,-0.400000000000201,0.142372881355246,-0.406896551724327,0.135593220338273,0.013559322033945,0.000000000000018,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448270,-0.013559322033945,-0.000000000000017,2 +3049,3107,3109,3167,-0.393103448276075,0.149152542372213,-0.400000000000201,0.142372881355246,-0.400000000000219,0.155932203389179,-0.406896551724345,0.149152542372213,0.013559322033933,0.000000000000018,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448270,-0.013559322033933,-0.000000000000018,2 +3050,3108,3110,3168,-0.393103448276093,0.162711864406145,-0.400000000000219,0.155932203389179,-0.400000000000237,0.169491525423110,-0.406896551724363,0.162711864406145,0.013559322033931,0.000000000000018,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033931,-0.000000000000018,2 +3051,3109,3111,3169,-0.393103448276111,0.176271186440084,-0.400000000000237,0.169491525423110,-0.400000000000255,0.183050847457058,-0.406896551724380,0.176271186440084,0.013559322033948,0.000000000000018,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448269,-0.013559322033948,-0.000000000000018,2 +3052,3110,3112,3170,-0.393103448276129,0.189830508474016,-0.400000000000255,0.183050847457058,-0.400000000000273,0.196610169490975,-0.406896551724398,0.189830508474016,0.013559322033917,0.000000000000018,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448269,-0.013559322033917,-0.000000000000018,2 +3053,3111,3113,3171,-0.393103448276147,0.203389830507945,-0.400000000000273,0.196610169490975,-0.400000000000290,0.210169491524915,-0.406896551724416,0.203389830507945,0.013559322033940,0.000000000000018,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033940,-0.000000000000018,2 +3054,3112,3114,3172,-0.393103448276165,0.216949152541877,-0.400000000000290,0.210169491524915,-0.400000000000308,0.223728813558839,-0.406896551724433,0.216949152541877,0.013559322033924,0.000000000000018,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448268,-0.013559322033924,-0.000000000000018,2 +3055,3113,3115,3173,-0.393103448276183,0.230508474575816,-0.400000000000308,0.223728813558839,-0.400000000000326,0.237288135592793,-0.406896551724451,0.230508474575816,0.013559322033954,0.000000000000018,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448268,-0.013559322033954,-0.000000000000018,2 +3056,3114,3116,3174,-0.393103448276201,0.244067796609748,-0.400000000000326,0.237288135592793,-0.400000000000344,0.250847457626703,-0.406896551724469,0.244067796609748,0.013559322033910,0.000000000000018,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033910,-0.000000000000018,2 +3057,3115,3117,3175,-0.393103448276219,0.257627118643680,-0.400000000000344,0.250847457626703,-0.400000000000362,0.264406779660657,-0.406896551724486,0.257627118643680,0.013559322033954,0.000000000000018,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448267,-0.013559322033954,-0.000000000000018,2 +3058,3116,3118,3176,-0.393103448276237,0.271186440677618,-0.400000000000362,0.264406779660657,-0.400000000000380,0.277966101694579,-0.406896551724504,0.271186440677618,0.013559322033922,0.000000000000018,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448267,-0.013559322033922,-0.000000000000018,2 +3059,3117,3119,3177,-0.393103448276255,0.284745762711550,-0.400000000000380,0.277966101694579,-0.400000000000397,0.291525423728521,-0.406896551724522,0.284745762711550,0.013559322033942,0.000000000000018,0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448266,-0.013559322033942,-0.000000000000018,2 +3060,3118,3120,3178,-0.393103448276273,0.298305084745489,-0.400000000000397,0.291525423728521,-0.400000000000415,0.305084745762457,-0.406896551724540,0.298305084745489,0.013559322033936,0.000000000000018,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448266,-0.013559322033936,-0.000000000000018,2 +3061,3119,3121,3179,-0.393103448276291,0.311864406779421,-0.400000000000415,0.305084745762457,-0.400000000000433,0.318644067796385,-0.406896551724557,0.311864406779421,0.013559322033928,0.000000000000018,0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448266,-0.013559322033928,-0.000000000000018,2 +3062,3120,3122,3180,-0.393103448276309,0.325423728813361,-0.400000000000433,0.318644067796385,-0.400000000000451,0.332203389830336,-0.406896551724575,0.325423728813361,0.013559322033951,0.000000000000018,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448265,-0.013559322033950,-0.000000000000018,2 +3063,3121,3123,3181,-0.393103448276327,0.338983050847293,-0.400000000000451,0.332203389830336,-0.400000000000469,0.345762711864250,-0.406896551724593,0.338983050847293,0.013559322033914,0.000000000000018,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448265,-0.013559322033914,-0.000000000000018,2 +3064,3122,3124,3182,-0.393103448276345,0.352542372881227,-0.400000000000469,0.345762711864250,-0.400000000000487,0.359322033898203,-0.406896551724610,0.352542372881227,0.013559322033954,0.000000000000018,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448265,-0.013559322033954,-0.000000000000018,2 +3065,3123,3125,3183,-0.393103448276363,0.366101694915162,-0.400000000000487,0.359322033898203,-0.400000000000505,0.372881355932121,-0.406896551724628,0.366101694915162,0.013559322033918,0.000000000000018,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448265,-0.013559322033918,-0.000000000000018,2 +3066,3124,3126,3184,-0.393103448276381,0.379661016949095,-0.400000000000505,0.372881355932121,-0.400000000000522,0.386440677966068,-0.406896551724646,0.379661016949095,0.013559322033946,0.000000000000018,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448264,-0.013559322033946,-0.000000000000018,2 +2032,3067,3125,3185,-0.400000000000540,0.400000000000000,-0.393103448276399,0.393220338983034,-0.400000000000522,0.386440677966068,-0.406896551724663,0.393220338983034,0.000000000000000,0.013793103448264,0.013559322033932,0.000000000000018,0.000000000000000,-0.013793103448264,-0.013559322033932,-0.000000000000018,2 +3068,3128,3186,4176,-0.406896551723638,-0.393220338983059,-0.413793103447803,-0.386440677966118,-0.420689655171950,-0.393220338983059,-0.413793103447786,-0.400000000000000,0.013559322033882,0.000000000000018,0.000000000000000,0.013793103448312,-0.013559322033882,-0.000000000000016,0.000000000000000,-0.013793103448313,2 +3069,3127,3129,3187,-0.406896551723655,-0.379661016949189,-0.413793103447803,-0.386440677966118,-0.413793103447820,-0.372881355932259,-0.420689655171967,-0.379661016949189,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448311,-0.013559322033860,-0.000000000000017,2 +3070,3128,3130,3188,-0.406896551723673,-0.366101694915329,-0.413793103447820,-0.372881355932259,-0.413793103447837,-0.359322033898399,-0.420689655171983,-0.366101694915329,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448309,-0.013559322033860,-0.000000000000016,2 +3071,3129,3131,3189,-0.406896551723691,-0.352542372881469,-0.413793103447837,-0.359322033898399,-0.413793103447854,-0.345762711864539,-0.420689655172000,-0.352542372881469,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448308,-0.013559322033860,-0.000000000000016,2 +3072,3130,3132,3190,-0.406896551723709,-0.338983050847605,-0.413793103447854,-0.345762711864539,-0.413793103447871,-0.332203389830670,-0.420689655172016,-0.338983050847605,0.013559322033869,0.000000000000018,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448307,-0.013559322033869,-0.000000000000016,2 +3073,3131,3133,3191,-0.406896551723726,-0.325423728813729,-0.413793103447871,-0.332203389830670,-0.413793103447888,-0.318644067796787,-0.420689655172032,-0.325423728813729,0.013559322033883,0.000000000000018,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448305,-0.013559322033883,-0.000000000000016,2 +3074,3132,3134,3192,-0.406896551723744,-0.311864406779851,-0.413793103447888,-0.318644067796787,-0.413793103447905,-0.305084745762915,-0.420689655172049,-0.311864406779851,0.013559322033872,0.000000000000018,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448304,-0.013559322033872,-0.000000000000016,2 +3075,3133,3135,3193,-0.406896551723762,-0.298305084745975,-0.413793103447905,-0.305084745762915,-0.413793103447922,-0.291525423729035,-0.420689655172065,-0.298305084745975,0.013559322033880,0.000000000000018,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448303,-0.013559322033880,-0.000000000000016,2 +3076,3134,3136,3194,-0.406896551723779,-0.284745762712105,-0.413793103447922,-0.291525423729035,-0.413793103447939,-0.277966101695176,-0.420689655172082,-0.284745762712105,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,-0.013559322033860,-0.000000000000016,2 +3077,3135,3137,3195,-0.406896551723797,-0.271186440678246,-0.413793103447939,-0.277966101695176,-0.413793103447956,-0.264406779661316,-0.420689655172098,-0.271186440678246,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448300,-0.013559322033860,-0.000000000000016,2 +3078,3136,3138,3196,-0.406896551723815,-0.257627118644386,-0.413793103447956,-0.264406779661316,-0.413793103447973,-0.250847457627456,-0.420689655172114,-0.257627118644386,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448299,-0.013559322033860,-0.000000000000016,2 +3079,3137,3139,3197,-0.406896551723832,-0.244067796610526,-0.413793103447973,-0.250847457627456,-0.413793103447990,-0.237288135593597,-0.420689655172131,-0.244067796610526,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000017,2 +3080,3138,3140,3198,-0.406896551723850,-0.230508474576667,-0.413793103447990,-0.237288135593597,-0.413793103448007,-0.223728813559737,-0.420689655172147,-0.230508474576667,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448298,0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000016,2 +3081,3139,3141,3199,-0.406896551723868,-0.216949152542807,-0.413793103448007,-0.223728813559737,-0.413793103448024,-0.210169491525877,-0.420689655172164,-0.216949152542807,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000016,2 +3082,3140,3142,3200,-0.406896551723885,-0.203389830508947,-0.413793103448024,-0.210169491525877,-0.413793103448041,-0.196610169492017,-0.420689655172180,-0.203389830508947,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000016,2 +3083,3141,3143,3201,-0.406896551723903,-0.189830508475088,-0.413793103448041,-0.196610169492017,-0.413793103448058,-0.183050847458158,-0.420689655172196,-0.189830508475088,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000016,2 +3084,3142,3144,3202,-0.406896551723921,-0.176271186441228,-0.413793103448058,-0.183050847458158,-0.413793103448075,-0.169491525424298,-0.420689655172213,-0.176271186441228,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000016,2 +3085,3143,3145,3203,-0.406896551723938,-0.162711864407368,-0.413793103448075,-0.169491525424298,-0.413793103448092,-0.155932203390438,-0.420689655172229,-0.162711864407368,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000016,2 +3086,3144,3146,3204,-0.406896551723956,-0.149152542373509,-0.413793103448092,-0.155932203390438,-0.413793103448109,-0.142372881356579,-0.420689655172246,-0.149152542373509,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000016,2 +3087,3145,3147,3205,-0.406896551723974,-0.135593220339649,-0.413793103448109,-0.142372881356579,-0.413793103448126,-0.128813559322719,-0.420689655172262,-0.135593220339649,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448288,-0.013559322033860,-0.000000000000017,2 +3088,3146,3148,3206,-0.406896551723991,-0.122033898305789,-0.413793103448126,-0.128813559322719,-0.413793103448143,-0.115254237288859,-0.420689655172278,-0.122033898305789,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000016,2 +3089,3147,3149,3207,-0.406896551724009,-0.108474576271933,-0.413793103448143,-0.115254237288859,-0.413793103448161,-0.101694915255008,-0.420689655172295,-0.108474576271933,0.013559322033852,0.000000000000018,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448285,-0.013559322033852,-0.000000000000017,2 +3090,3148,3150,3208,-0.406896551724027,-0.094915254238085,-0.413793103448161,-0.101694915255008,-0.413793103448177,-0.088135593221162,-0.420689655172311,-0.094915254238085,0.013559322033846,0.000000000000017,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448284,-0.013559322033846,-0.000000000000016,2 +3091,3149,3151,3209,-0.406896551724044,-0.081355932204232,-0.413793103448177,-0.088135593221162,-0.413793103448195,-0.074576271187302,-0.420689655172328,-0.081355932204232,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000017,2 +3092,3150,3152,3210,-0.406896551724062,-0.067796610170372,-0.413793103448195,-0.074576271187302,-0.413793103448212,-0.061016949153442,-0.420689655172344,-0.067796610170372,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000016,2 +3093,3151,3153,3211,-0.406896551724080,-0.054237288136513,-0.413793103448212,-0.061016949153442,-0.413793103448229,-0.047457627119583,-0.420689655172360,-0.054237288136513,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000017,2 +3094,3152,3154,3212,-0.406896551724097,-0.040677966102653,-0.413793103448229,-0.047457627119583,-0.413793103448246,-0.033898305085723,-0.420689655172377,-0.040677966102653,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000016,2 +3095,3153,3155,3213,-0.406896551724115,-0.027118644068793,-0.413793103448246,-0.033898305085723,-0.413793103448263,-0.020338983051863,-0.420689655172393,-0.027118644068793,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000016,2 +3096,3154,3156,3214,-0.406896551724133,-0.013559322034934,-0.413793103448263,-0.020338983051863,-0.413793103448280,-0.006779661018004,-0.420689655172410,-0.013559322034933,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000016,2 +3097,3155,3157,3215,-0.406896551724151,-0.000000000001056,-0.413793103448280,-0.006779661018004,-0.413793103448297,0.006779661015891,-0.420689655172426,-0.000000000001056,0.013559322033895,0.000000000000017,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448275,-0.013559322033895,-0.000000000000017,2 +3098,3156,3158,3216,-0.406896551724168,0.013559322032862,-0.413793103448297,0.006779661015891,-0.413793103448314,0.020338983049833,-0.420689655172443,0.013559322032862,0.013559322033941,0.000000000000017,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448274,-0.013559322033941,-0.000000000000016,2 +3099,3157,3159,3217,-0.406896551724186,0.027118644066798,-0.413793103448314,0.020338983049833,-0.413793103448331,0.033898305083763,-0.420689655172459,0.027118644066798,0.013559322033930,0.000000000000018,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448272,-0.013559322033930,-0.000000000000016,2 +3100,3158,3160,3218,-0.406896551724204,0.040677966100731,-0.413793103448331,0.033898305083763,-0.413793103448348,0.047457627117699,-0.420689655172475,0.040677966100731,0.013559322033937,0.000000000000018,0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448271,-0.013559322033937,-0.000000000000016,2 +3101,3159,3161,3219,-0.406896551724221,0.054237288134667,-0.413793103448348,0.047457627117699,-0.413793103448365,0.061016949151634,-0.420689655172492,0.054237288134667,0.013559322033935,0.000000000000018,-0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448270,-0.013559322033935,-0.000000000000017,2 +3102,3160,3162,3220,-0.406896551724239,0.067796610168599,-0.413793103448365,0.061016949151634,-0.413793103448382,0.074576271185564,-0.420689655172508,0.067796610168599,0.013559322033930,0.000000000000018,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448268,-0.013559322033930,-0.000000000000016,2 +3103,3161,3163,3221,-0.406896551724257,0.081355932202535,-0.413793103448382,0.074576271185564,-0.413793103448399,0.088135593219506,-0.420689655172524,0.081355932202535,0.013559322033941,0.000000000000018,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033941,-0.000000000000016,2 +3104,3162,3164,3222,-0.406896551724274,0.094915254236471,-0.413793103448399,0.088135593219506,-0.413793103448416,0.101694915253436,-0.420689655172541,0.094915254236471,0.013559322033930,0.000000000000018,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448266,-0.013559322033930,-0.000000000000017,2 +3105,3163,3165,3223,-0.406896551724292,0.108474576270409,-0.413793103448416,0.101694915253436,-0.413793103448433,0.115254237287382,-0.420689655172557,0.108474576270409,0.013559322033946,0.000000000000018,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448265,-0.013559322033946,-0.000000000000016,2 +3106,3164,3166,3224,-0.406896551724310,0.122033898304341,-0.413793103448433,0.115254237287382,-0.413793103448450,0.128813559321301,-0.420689655172574,0.122033898304341,0.013559322033919,0.000000000000018,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448263,-0.013559322033919,-0.000000000000016,2 +3107,3165,3167,3225,-0.406896551724327,0.135593220338273,-0.413793103448450,0.128813559321301,-0.413793103448467,0.142372881355246,-0.420689655172590,0.135593220338273,0.013559322033945,0.000000000000017,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033945,-0.000000000000017,2 +3108,3166,3168,3226,-0.406896551724345,0.149152542372213,-0.413793103448467,0.142372881355246,-0.413793103448484,0.155932203389179,-0.420689655172606,0.149152542372213,0.013559322033933,0.000000000000018,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033933,-0.000000000000016,2 +3109,3167,3169,3227,-0.406896551724363,0.162711864406145,-0.413793103448484,0.155932203389179,-0.413793103448501,0.169491525423110,-0.420689655172623,0.162711864406145,0.013559322033931,0.000000000000018,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448260,-0.013559322033931,-0.000000000000016,2 +3110,3168,3170,3228,-0.406896551724380,0.176271186440084,-0.413793103448501,0.169491525423110,-0.413793103448518,0.183050847457058,-0.420689655172639,0.176271186440084,0.013559322033948,0.000000000000018,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448258,-0.013559322033948,-0.000000000000016,2 +3111,3169,3171,3229,-0.406896551724398,0.189830508474016,-0.413793103448518,0.183050847457058,-0.413793103448535,0.196610169490975,-0.420689655172656,0.189830508474016,0.013559322033917,0.000000000000018,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033917,-0.000000000000016,2 +3112,3170,3172,3230,-0.406896551724416,0.203389830507945,-0.413793103448535,0.196610169490975,-0.413793103448552,0.210169491524915,-0.420689655172672,0.203389830507945,0.013559322033940,0.000000000000018,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448256,-0.013559322033940,-0.000000000000016,2 +3113,3171,3173,3231,-0.406896551724433,0.216949152541877,-0.413793103448552,0.210169491524915,-0.413793103448569,0.223728813558839,-0.420689655172688,0.216949152541877,0.013559322033924,0.000000000000018,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448254,-0.013559322033924,-0.000000000000016,2 +3114,3172,3174,3232,-0.406896551724451,0.230508474575816,-0.413793103448569,0.223728813558839,-0.413793103448586,0.237288135592793,-0.420689655172705,0.230508474575816,0.013559322033954,0.000000000000018,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448253,-0.013559322033954,-0.000000000000017,2 +3115,3173,3175,3233,-0.406896551724469,0.244067796609748,-0.413793103448586,0.237288135592793,-0.413793103448604,0.250847457626703,-0.420689655172721,0.244067796609748,0.013559322033910,0.000000000000018,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033910,-0.000000000000016,2 +3116,3174,3176,3234,-0.406896551724486,0.257627118643680,-0.413793103448604,0.250847457626703,-0.413793103448621,0.264406779660657,-0.420689655172738,0.257627118643680,0.013559322033954,0.000000000000018,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033954,-0.000000000000016,2 +3117,3175,3177,3235,-0.406896551724504,0.271186440677618,-0.413793103448621,0.264406779660657,-0.413793103448638,0.277966101694579,-0.420689655172754,0.271186440677618,0.013559322033922,0.000000000000018,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448249,-0.013559322033922,-0.000000000000016,2 +3118,3176,3178,3236,-0.406896551724522,0.284745762711550,-0.413793103448638,0.277966101694579,-0.413793103448655,0.291525423728521,-0.420689655172771,0.284745762711550,0.013559322033942,0.000000000000018,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448248,-0.013559322033942,-0.000000000000016,2 +3119,3177,3179,3237,-0.406896551724540,0.298305084745489,-0.413793103448655,0.291525423728521,-0.413793103448672,0.305084745762457,-0.420689655172787,0.298305084745489,0.013559322033936,0.000000000000018,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033936,-0.000000000000016,2 +3120,3178,3180,3238,-0.406896551724557,0.311864406779421,-0.413793103448672,0.305084745762457,-0.413793103448689,0.318644067796385,-0.420689655172803,0.311864406779421,0.013559322033928,0.000000000000018,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000016,2 +3121,3179,3181,3239,-0.406896551724575,0.325423728813361,-0.413793103448689,0.318644067796385,-0.413793103448706,0.332203389830336,-0.420689655172820,0.325423728813361,0.013559322033950,0.000000000000018,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033950,-0.000000000000016,2 +3122,3180,3182,3240,-0.406896551724593,0.338983050847293,-0.413793103448706,0.332203389830336,-0.413793103448723,0.345762711864250,-0.420689655172836,0.338983050847293,0.013559322033914,0.000000000000018,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000016,2 +3123,3181,3183,3241,-0.406896551724610,0.352542372881227,-0.413793103448723,0.345762711864250,-0.413793103448740,0.359322033898204,-0.420689655172853,0.352542372881227,0.013559322033954,0.000000000000018,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448242,-0.013559322033954,-0.000000000000016,2 +3124,3182,3184,3242,-0.406896551724628,0.366101694915162,-0.413793103448740,0.359322033898204,-0.413793103448757,0.372881355932121,-0.420689655172869,0.366101694915162,0.013559322033918,0.000000000000018,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000016,2 +3125,3183,3185,3243,-0.406896551724646,0.379661016949095,-0.413793103448757,0.372881355932121,-0.413793103448774,0.386440677966068,-0.420689655172885,0.379661016949095,0.013559322033946,0.000000000000018,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000016,2 +2018,3126,3184,3244,-0.413793103448791,0.400000000000000,-0.406896551724663,0.393220338983034,-0.413793103448774,0.386440677966068,-0.420689655172902,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000018,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000016,2 +3127,3187,3245,4190,-0.420689655171950,-0.393220338983059,-0.427586206896116,-0.386440677966118,-0.434482758620265,-0.393220338983059,-0.427586206896100,-0.400000000000000,0.013559322033882,0.000000000000016,-0.000000000000000,0.013793103448314,-0.013559322033882,-0.000000000000015,0.000000000000000,-0.013793103448315,2 +3128,3186,3188,3246,-0.420689655171967,-0.379661016949189,-0.427586206896116,-0.386440677966118,-0.427586206896131,-0.372881355932259,-0.434482758620280,-0.379661016949189,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448313,-0.013559322033860,-0.000000000000015,2 +3129,3187,3189,3247,-0.420689655171983,-0.366101694915329,-0.427586206896131,-0.372881355932259,-0.427586206896147,-0.359322033898399,-0.434482758620295,-0.366101694915329,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448311,-0.013559322033860,-0.000000000000015,2 +3130,3188,3190,3248,-0.420689655172000,-0.352542372881469,-0.427586206896147,-0.359322033898399,-0.427586206896163,-0.345762711864539,-0.434482758620310,-0.352542372881469,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448310,-0.013559322033860,-0.000000000000015,2 +3131,3189,3191,3249,-0.420689655172016,-0.338983050847605,-0.427586206896163,-0.345762711864539,-0.427586206896179,-0.332203389830670,-0.434482758620325,-0.338983050847605,0.013559322033869,0.000000000000016,0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448309,-0.013559322033869,-0.000000000000015,2 +3132,3190,3192,3250,-0.420689655172032,-0.325423728813729,-0.427586206896179,-0.332203389830670,-0.427586206896194,-0.318644067796787,-0.434482758620340,-0.325423728813729,0.013559322033883,0.000000000000016,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448308,-0.013559322033883,-0.000000000000015,2 +3133,3191,3193,3251,-0.420689655172049,-0.311864406779851,-0.427586206896194,-0.318644067796787,-0.427586206896210,-0.305084745762915,-0.434482758620356,-0.311864406779851,0.013559322033872,0.000000000000016,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448306,-0.013559322033872,-0.000000000000015,2 +3134,3192,3194,3252,-0.420689655172065,-0.298305084745975,-0.427586206896210,-0.305084745762915,-0.427586206896226,-0.291525423729035,-0.434482758620371,-0.298305084745975,0.013559322033880,0.000000000000016,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448305,-0.013559322033880,-0.000000000000015,2 +3135,3193,3195,3253,-0.420689655172082,-0.284745762712105,-0.427586206896226,-0.291525423729035,-0.427586206896241,-0.277966101695176,-0.434482758620386,-0.284745762712105,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448304,-0.013559322033860,-0.000000000000015,2 +3136,3194,3196,3254,-0.420689655172098,-0.271186440678246,-0.427586206896241,-0.277966101695176,-0.427586206896257,-0.264406779661316,-0.434482758620401,-0.271186440678246,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448302,-0.013559322033860,-0.000000000000015,2 +3137,3195,3197,3255,-0.420689655172114,-0.257627118644386,-0.427586206896257,-0.264406779661316,-0.427586206896273,-0.250847457627456,-0.434482758620416,-0.257627118644386,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,-0.013559322033860,-0.000000000000015,2 +3138,3196,3198,3256,-0.420689655172131,-0.244067796610526,-0.427586206896273,-0.250847457627456,-0.427586206896289,-0.237288135593597,-0.434482758620431,-0.244067796610526,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448300,-0.013559322033860,-0.000000000000015,2 +3139,3197,3199,3257,-0.420689655172147,-0.230508474576667,-0.427586206896289,-0.237288135593597,-0.427586206896305,-0.223728813559737,-0.434482758620446,-0.230508474576667,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000015,2 +3140,3198,3200,3258,-0.420689655172164,-0.216949152542807,-0.427586206896305,-0.223728813559737,-0.427586206896320,-0.210169491525877,-0.434482758620461,-0.216949152542807,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000015,2 +3141,3199,3201,3259,-0.420689655172180,-0.203389830508947,-0.427586206896320,-0.210169491525877,-0.427586206896336,-0.196610169492017,-0.434482758620476,-0.203389830508947,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000015,2 +3142,3200,3202,3260,-0.420689655172196,-0.189830508475088,-0.427586206896336,-0.196610169492017,-0.427586206896352,-0.183050847458158,-0.434482758620492,-0.189830508475088,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000015,2 +3143,3201,3203,3261,-0.420689655172213,-0.176271186441228,-0.427586206896352,-0.183050847458158,-0.427586206896368,-0.169491525424298,-0.434482758620507,-0.176271186441228,0.013559322033860,0.000000000000016,-0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000015,2 +3144,3202,3204,3262,-0.420689655172229,-0.162711864407368,-0.427586206896368,-0.169491525424298,-0.427586206896383,-0.155932203390438,-0.434482758620522,-0.162711864407368,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000015,2 +3145,3203,3205,3263,-0.420689655172246,-0.149152542373509,-0.427586206896383,-0.155932203390438,-0.427586206896399,-0.142372881356579,-0.434482758620537,-0.149152542373509,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000015,2 +3146,3204,3206,3264,-0.420689655172262,-0.135593220339649,-0.427586206896399,-0.142372881356579,-0.427586206896415,-0.128813559322719,-0.434482758620552,-0.135593220339649,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000015,2 +3147,3205,3207,3265,-0.420689655172278,-0.122033898305789,-0.427586206896415,-0.128813559322719,-0.427586206896430,-0.115254237288859,-0.434482758620567,-0.122033898305789,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448288,-0.013559322033860,-0.000000000000015,2 +3148,3206,3208,3266,-0.420689655172295,-0.108474576271933,-0.427586206896430,-0.115254237288859,-0.427586206896446,-0.101694915255008,-0.434482758620582,-0.108474576271933,0.013559322033852,0.000000000000017,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448286,-0.013559322033852,-0.000000000000015,2 +3149,3207,3209,3267,-0.420689655172311,-0.094915254238085,-0.427586206896446,-0.101694915255008,-0.427586206896462,-0.088135593221162,-0.434482758620597,-0.094915254238085,0.013559322033846,0.000000000000016,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033846,-0.000000000000015,2 +3150,3208,3210,3268,-0.420689655172328,-0.081355932204232,-0.427586206896462,-0.088135593221162,-0.427586206896478,-0.074576271187302,-0.434482758620612,-0.081355932204232,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000015,2 +3151,3209,3211,3269,-0.420689655172344,-0.067796610170372,-0.427586206896478,-0.074576271187302,-0.427586206896494,-0.061016949153442,-0.434482758620627,-0.067796610170372,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000015,2 +3152,3210,3212,3270,-0.420689655172360,-0.054237288136513,-0.427586206896494,-0.061016949153442,-0.427586206896509,-0.047457627119583,-0.434482758620642,-0.054237288136513,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000015,2 +3153,3211,3213,3271,-0.420689655172377,-0.040677966102653,-0.427586206896509,-0.047457627119583,-0.427586206896525,-0.033898305085723,-0.434482758620657,-0.040677966102653,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000015,2 +3154,3212,3214,3272,-0.420689655172393,-0.027118644068793,-0.427586206896525,-0.033898305085723,-0.427586206896541,-0.020338983051863,-0.434482758620672,-0.027118644068793,0.013559322033860,0.000000000000016,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000015,2 +3155,3213,3215,3273,-0.420689655172410,-0.013559322034933,-0.427586206896541,-0.020338983051863,-0.427586206896556,-0.006779661018004,-0.434482758620688,-0.013559322034934,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000015,2 +3156,3214,3216,3274,-0.420689655172426,-0.000000000001056,-0.427586206896556,-0.006779661018004,-0.427586206896572,0.006779661015891,-0.434482758620703,-0.000000000001056,0.013559322033895,0.000000000000017,0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448276,-0.013559322033895,-0.000000000000015,2 +3157,3215,3217,3275,-0.420689655172443,0.013559322032862,-0.427586206896572,0.006779661015891,-0.427586206896588,0.020338983049833,-0.434482758620718,0.013559322032862,0.013559322033941,0.000000000000016,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448274,-0.013559322033941,-0.000000000000015,2 +3158,3216,3218,3276,-0.420689655172459,0.027118644066798,-0.427586206896588,0.020338983049833,-0.427586206896604,0.033898305083763,-0.434482758620733,0.027118644066798,0.013559322033930,0.000000000000016,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448273,-0.013559322033930,-0.000000000000015,2 +3159,3217,3219,3277,-0.420689655172475,0.040677966100731,-0.427586206896604,0.033898305083763,-0.427586206896619,0.047457627117699,-0.434482758620748,0.040677966100731,0.013559322033937,0.000000000000016,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,-0.013559322033937,-0.000000000000015,2 +3160,3218,3220,3278,-0.420689655172492,0.054237288134667,-0.427586206896619,0.047457627117699,-0.427586206896635,0.061016949151634,-0.434482758620763,0.054237288134667,0.013559322033935,0.000000000000017,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448271,-0.013559322033935,-0.000000000000015,2 +3161,3219,3221,3279,-0.420689655172508,0.067796610168599,-0.427586206896635,0.061016949151634,-0.427586206896651,0.074576271185564,-0.434482758620778,0.067796610168599,0.013559322033930,0.000000000000016,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448269,-0.013559322033930,-0.000000000000015,2 +3162,3220,3222,3280,-0.420689655172524,0.081355932202535,-0.427586206896651,0.074576271185564,-0.427586206896667,0.088135593219506,-0.434482758620793,0.081355932202535,0.013559322033941,0.000000000000016,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033941,-0.000000000000015,2 +3163,3221,3223,3281,-0.420689655172541,0.094915254236471,-0.427586206896667,0.088135593219506,-0.427586206896682,0.101694915253436,-0.434482758620808,0.094915254236471,0.013559322033930,0.000000000000017,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033930,-0.000000000000015,2 +3164,3222,3224,3282,-0.420689655172557,0.108474576270409,-0.427586206896682,0.101694915253436,-0.427586206896698,0.115254237287382,-0.434482758620823,0.108474576270409,0.013559322033946,0.000000000000016,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448266,-0.013559322033946,-0.000000000000015,2 +3165,3223,3225,3283,-0.420689655172574,0.122033898304341,-0.427586206896698,0.115254237287382,-0.427586206896714,0.128813559321301,-0.434482758620838,0.122033898304341,0.013559322033919,0.000000000000016,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448264,-0.013559322033919,-0.000000000000015,2 +3166,3224,3226,3284,-0.420689655172590,0.135593220338273,-0.427586206896714,0.128813559321301,-0.427586206896730,0.142372881355246,-0.434482758620853,0.135593220338273,0.013559322033945,0.000000000000017,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033945,-0.000000000000015,2 +3167,3225,3227,3285,-0.420689655172606,0.149152542372213,-0.427586206896730,0.142372881355246,-0.427586206896745,0.155932203389179,-0.434482758620869,0.149152542372213,0.013559322033933,0.000000000000016,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033933,-0.000000000000015,2 +3168,3226,3228,3286,-0.420689655172623,0.162711864406145,-0.427586206896745,0.155932203389179,-0.427586206896761,0.169491525423110,-0.434482758620884,0.162711864406145,0.013559322033931,0.000000000000016,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448260,-0.013559322033931,-0.000000000000015,2 +3169,3227,3229,3287,-0.420689655172639,0.176271186440084,-0.427586206896761,0.169491525423110,-0.427586206896777,0.183050847457058,-0.434482758620899,0.176271186440084,0.013559322033948,0.000000000000016,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448259,-0.013559322033948,-0.000000000000015,2 +3170,3228,3230,3288,-0.420689655172656,0.189830508474016,-0.427586206896777,0.183050847457058,-0.427586206896793,0.196610169490975,-0.434482758620914,0.189830508474016,0.013559322033917,0.000000000000016,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448257,-0.013559322033917,-0.000000000000015,2 +3171,3229,3231,3289,-0.420689655172672,0.203389830507945,-0.427586206896793,0.196610169490975,-0.427586206896808,0.210169491524915,-0.434482758620929,0.203389830507945,0.013559322033940,0.000000000000016,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448256,-0.013559322033940,-0.000000000000015,2 +3172,3230,3232,3290,-0.420689655172688,0.216949152541877,-0.427586206896808,0.210169491524915,-0.427586206896824,0.223728813558839,-0.434482758620944,0.216949152541877,0.013559322033924,0.000000000000016,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033924,-0.000000000000015,2 +3173,3231,3233,3291,-0.420689655172705,0.230508474575816,-0.427586206896824,0.223728813558839,-0.427586206896840,0.237288135592793,-0.434482758620959,0.230508474575816,0.013559322033954,0.000000000000017,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448253,-0.013559322033954,-0.000000000000015,2 +3174,3232,3234,3292,-0.420689655172721,0.244067796609748,-0.427586206896840,0.237288135592793,-0.427586206896856,0.250847457626703,-0.434482758620974,0.244067796609748,0.013559322033910,0.000000000000016,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033910,-0.000000000000015,2 +3175,3233,3235,3293,-0.420689655172738,0.257627118643680,-0.427586206896856,0.250847457626703,-0.427586206896871,0.264406779660657,-0.434482758620989,0.257627118643680,0.013559322033954,0.000000000000016,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033954,-0.000000000000015,2 +3176,3234,3236,3294,-0.420689655172754,0.271186440677618,-0.427586206896871,0.264406779660657,-0.427586206896887,0.277966101694579,-0.434482758621004,0.271186440677618,0.013559322033922,0.000000000000016,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448249,-0.013559322033922,-0.000000000000015,2 +3177,3235,3237,3295,-0.420689655172771,0.284745762711550,-0.427586206896887,0.277966101694579,-0.427586206896903,0.291525423728521,-0.434482758621019,0.284745762711550,0.013559322033942,0.000000000000016,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448248,-0.013559322033942,-0.000000000000015,2 +3178,3236,3238,3296,-0.420689655172787,0.298305084745489,-0.427586206896903,0.291525423728521,-0.427586206896919,0.305084745762457,-0.434482758621034,0.298305084745489,0.013559322033936,0.000000000000016,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033936,-0.000000000000015,2 +3179,3237,3239,3297,-0.420689655172803,0.311864406779421,-0.427586206896919,0.305084745762457,-0.427586206896934,0.318644067796385,-0.434482758621050,0.311864406779421,0.013559322033928,0.000000000000016,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033928,-0.000000000000015,2 +3180,3238,3240,3298,-0.420689655172820,0.325423728813361,-0.427586206896934,0.318644067796385,-0.427586206896950,0.332203389830336,-0.434482758621065,0.325423728813361,0.013559322033950,0.000000000000016,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448244,-0.013559322033950,-0.000000000000015,2 +3181,3239,3241,3299,-0.420689655172836,0.338983050847293,-0.427586206896950,0.332203389830336,-0.427586206896966,0.345762711864250,-0.434482758621080,0.338983050847293,0.013559322033914,0.000000000000016,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000015,2 +3182,3240,3242,3300,-0.420689655172853,0.352542372881227,-0.427586206896966,0.345762711864250,-0.427586206896982,0.359322033898204,-0.434482758621095,0.352542372881227,0.013559322033954,0.000000000000016,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448242,-0.013559322033954,-0.000000000000015,2 +3183,3241,3243,3301,-0.420689655172869,0.366101694915162,-0.427586206896982,0.359322033898204,-0.427586206896997,0.372881355932121,-0.434482758621110,0.366101694915162,0.013559322033918,0.000000000000016,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000015,2 +3184,3242,3244,3302,-0.420689655172885,0.379661016949095,-0.427586206896997,0.372881355932121,-0.427586206897013,0.386440677966068,-0.434482758621125,0.379661016949094,0.013559322033946,0.000000000000016,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000015,2 +2004,3185,3243,3303,-0.427586206897029,0.400000000000000,-0.420689655172902,0.393220338983034,-0.427586206897013,0.386440677966068,-0.434482758621140,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000016,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000015,2 +3186,3246,3304,4204,-0.434482758620265,-0.393220338983059,-0.441379310344427,-0.386440677966118,-0.448275862068574,-0.393220338983059,-0.441379310344412,-0.400000000000000,0.013559322033882,0.000000000000015,-0.000000000000000,0.013793103448308,-0.013559322033882,-0.000000000000014,0.000000000000000,-0.013793103448310,2 +3187,3245,3247,3305,-0.434482758620280,-0.379661016949189,-0.441379310344427,-0.386440677966118,-0.441379310344441,-0.372881355932259,-0.448275862068588,-0.379661016949189,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448307,-0.013559322033860,-0.000000000000014,2 +3188,3246,3248,3306,-0.434482758620295,-0.366101694915329,-0.441379310344441,-0.372881355932259,-0.441379310344456,-0.359322033898399,-0.448275862068602,-0.366101694915329,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448306,-0.013559322033860,-0.000000000000014,2 +3189,3247,3249,3307,-0.434482758620310,-0.352542372881469,-0.441379310344456,-0.359322033898399,-0.441379310344470,-0.345762711864539,-0.448275862068616,-0.352542372881469,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448305,-0.013559322033860,-0.000000000000014,2 +3190,3248,3250,3308,-0.434482758620325,-0.338983050847605,-0.441379310344470,-0.345762711864539,-0.441379310344485,-0.332203389830670,-0.448275862068629,-0.338983050847605,0.013559322033869,0.000000000000015,0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448303,-0.013559322033869,-0.000000000000014,2 +3191,3249,3251,3309,-0.434482758620340,-0.325423728813729,-0.441379310344485,-0.332203389830670,-0.441379310344499,-0.318644067796787,-0.448275862068643,-0.325423728813729,0.013559322033883,0.000000000000015,-0.000000000000000,-0.013793103448303,0.000000000000000,0.013793103448302,-0.013559322033883,-0.000000000000014,2 +3192,3250,3252,3310,-0.434482758620356,-0.311864406779851,-0.441379310344499,-0.318644067796787,-0.441379310344514,-0.305084745762915,-0.448275862068657,-0.311864406779851,0.013559322033872,0.000000000000015,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,-0.013559322033872,-0.000000000000014,2 +3193,3251,3253,3311,-0.434482758620371,-0.298305084745975,-0.441379310344514,-0.305084745762915,-0.441379310344528,-0.291525423729035,-0.448275862068671,-0.298305084745975,0.013559322033880,0.000000000000015,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448300,-0.013559322033880,-0.000000000000014,2 +3194,3252,3254,3312,-0.434482758620386,-0.284745762712105,-0.441379310344528,-0.291525423729035,-0.441379310344543,-0.277966101695176,-0.448275862068685,-0.284745762712105,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448299,-0.013559322033860,-0.000000000000014,2 +3195,3253,3255,3313,-0.434482758620401,-0.271186440678246,-0.441379310344543,-0.277966101695176,-0.441379310344557,-0.264406779661316,-0.448275862068699,-0.271186440678246,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000014,2 +3196,3254,3256,3314,-0.434482758620416,-0.257627118644386,-0.441379310344557,-0.264406779661316,-0.441379310344572,-0.250847457627456,-0.448275862068713,-0.257627118644386,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000014,2 +3197,3255,3257,3315,-0.434482758620431,-0.244067796610526,-0.441379310344572,-0.250847457627456,-0.441379310344586,-0.237288135593597,-0.448275862068727,-0.244067796610526,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000014,2 +3198,3256,3258,3316,-0.434482758620446,-0.230508474576667,-0.441379310344586,-0.237288135593597,-0.441379310344601,-0.223728813559737,-0.448275862068740,-0.230508474576667,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000014,2 +3199,3257,3259,3317,-0.434482758620461,-0.216949152542807,-0.441379310344601,-0.223728813559737,-0.441379310344615,-0.210169491525877,-0.448275862068754,-0.216949152542807,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000014,2 +3200,3258,3260,3318,-0.434482758620476,-0.203389830508947,-0.441379310344615,-0.210169491525877,-0.441379310344630,-0.196610169492017,-0.448275862068768,-0.203389830508947,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000014,2 +3201,3259,3261,3319,-0.434482758620492,-0.189830508475088,-0.441379310344630,-0.196610169492017,-0.441379310344644,-0.183050847458158,-0.448275862068782,-0.189830508475088,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000014,2 +3202,3260,3262,3320,-0.434482758620507,-0.176271186441228,-0.441379310344644,-0.183050847458158,-0.441379310344658,-0.169491525424298,-0.448275862068796,-0.176271186441228,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000014,2 +3203,3261,3263,3321,-0.434482758620522,-0.162711864407368,-0.441379310344658,-0.169491525424298,-0.441379310344673,-0.155932203390438,-0.448275862068810,-0.162711864407368,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000014,2 +3204,3262,3264,3322,-0.434482758620537,-0.149152542373509,-0.441379310344673,-0.155932203390438,-0.441379310344687,-0.142372881356579,-0.448275862068824,-0.149152542373509,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000014,2 +3205,3263,3265,3323,-0.434482758620552,-0.135593220339649,-0.441379310344687,-0.142372881356579,-0.441379310344702,-0.128813559322719,-0.448275862068838,-0.135593220339649,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000014,2 +3206,3264,3266,3324,-0.434482758620567,-0.122033898305789,-0.441379310344702,-0.128813559322719,-0.441379310344716,-0.115254237288859,-0.448275862068851,-0.122033898305789,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000014,2 +3207,3265,3267,3325,-0.434482758620582,-0.108474576271933,-0.441379310344716,-0.115254237288859,-0.441379310344731,-0.101694915255008,-0.448275862068865,-0.108474576271933,0.013559322033852,0.000000000000015,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033852,-0.000000000000014,2 +3208,3266,3268,3326,-0.434482758620597,-0.094915254238085,-0.441379310344731,-0.101694915255008,-0.441379310344745,-0.088135593221162,-0.448275862068879,-0.094915254238085,0.013559322033846,0.000000000000015,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448281,-0.013559322033846,-0.000000000000014,2 +3209,3267,3269,3327,-0.434482758620612,-0.081355932204232,-0.441379310344745,-0.088135593221162,-0.441379310344760,-0.074576271187302,-0.448275862068893,-0.081355932204232,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000014,2 +3210,3268,3270,3328,-0.434482758620627,-0.067796610170372,-0.441379310344760,-0.074576271187302,-0.441379310344774,-0.061016949153442,-0.448275862068907,-0.067796610170372,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000014,2 +3211,3269,3271,3329,-0.434482758620642,-0.054237288136513,-0.441379310344774,-0.061016949153442,-0.441379310344789,-0.047457627119583,-0.448275862068921,-0.054237288136513,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000014,2 +3212,3270,3272,3330,-0.434482758620657,-0.040677966102653,-0.441379310344789,-0.047457627119583,-0.441379310344803,-0.033898305085723,-0.448275862068935,-0.040677966102653,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000014,2 +3213,3271,3273,3331,-0.434482758620672,-0.027118644068793,-0.441379310344803,-0.033898305085723,-0.441379310344818,-0.020338983051863,-0.448275862068948,-0.027118644068793,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000014,2 +3214,3272,3274,3332,-0.434482758620688,-0.013559322034934,-0.441379310344818,-0.020338983051863,-0.441379310344832,-0.006779661018004,-0.448275862068962,-0.013559322034934,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000014,2 +3215,3273,3275,3333,-0.434482758620703,-0.000000000001056,-0.441379310344832,-0.006779661018004,-0.441379310344847,0.006779661015891,-0.448275862068976,-0.000000000001056,0.013559322033895,0.000000000000015,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448273,-0.013559322033895,-0.000000000000014,2 +3216,3274,3276,3334,-0.434482758620718,0.013559322032862,-0.441379310344847,0.006779661015891,-0.441379310344861,0.020338983049833,-0.448275862068990,0.013559322032862,0.013559322033941,0.000000000000015,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448272,-0.013559322033941,-0.000000000000014,2 +3217,3275,3277,3335,-0.434482758620733,0.027118644066798,-0.441379310344861,0.020338983049833,-0.441379310344876,0.033898305083763,-0.448275862069004,0.027118644066798,0.013559322033930,0.000000000000015,-0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448271,-0.013559322033930,-0.000000000000014,2 +3218,3276,3278,3336,-0.434482758620748,0.040677966100731,-0.441379310344876,0.033898305083763,-0.441379310344890,0.047457627117699,-0.448275862069018,0.040677966100731,0.013559322033937,0.000000000000015,0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448269,-0.013559322033937,-0.000000000000014,2 +3219,3277,3279,3337,-0.434482758620763,0.054237288134667,-0.441379310344890,0.047457627117699,-0.441379310344905,0.061016949151634,-0.448275862069032,0.054237288134667,0.013559322033935,0.000000000000015,-0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033935,-0.000000000000014,2 +3220,3278,3280,3338,-0.434482758620778,0.067796610168599,-0.441379310344905,0.061016949151634,-0.441379310344919,0.074576271185564,-0.448275862069046,0.067796610168599,0.013559322033930,0.000000000000015,0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448267,-0.013559322033930,-0.000000000000014,2 +3221,3279,3281,3339,-0.434482758620793,0.081355932202535,-0.441379310344919,0.074576271185564,-0.441379310344933,0.088135593219506,-0.448275862069059,0.081355932202535,0.013559322033941,0.000000000000015,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448266,-0.013559322033941,-0.000000000000014,2 +3222,3280,3282,3340,-0.434482758620808,0.094915254236471,-0.441379310344933,0.088135593219506,-0.441379310344948,0.101694915253436,-0.448275862069073,0.094915254236471,0.013559322033930,0.000000000000015,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448264,-0.013559322033930,-0.000000000000014,2 +3223,3281,3283,3341,-0.434482758620823,0.108474576270409,-0.441379310344948,0.101694915253436,-0.441379310344962,0.115254237287382,-0.448275862069087,0.108474576270409,0.013559322033946,0.000000000000015,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033946,-0.000000000000014,2 +3224,3282,3284,3342,-0.434482758620838,0.122033898304341,-0.441379310344962,0.115254237287382,-0.441379310344977,0.128813559321301,-0.448275862069101,0.122033898304341,0.013559322033919,0.000000000000015,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033919,-0.000000000000014,2 +3225,3283,3285,3343,-0.434482758620853,0.135593220338273,-0.441379310344977,0.128813559321301,-0.441379310344991,0.142372881355246,-0.448275862069115,0.135593220338273,0.013559322033945,0.000000000000015,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033945,-0.000000000000014,2 +3226,3284,3286,3344,-0.434482758620869,0.149152542372213,-0.441379310344991,0.142372881355246,-0.441379310345006,0.155932203389179,-0.448275862069129,0.149152542372213,0.013559322033933,0.000000000000015,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448260,-0.013559322033933,-0.000000000000014,2 +3227,3285,3287,3345,-0.434482758620884,0.162711864406145,-0.441379310345006,0.155932203389179,-0.441379310345020,0.169491525423110,-0.448275862069143,0.162711864406145,0.013559322033931,0.000000000000015,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448258,-0.013559322033931,-0.000000000000014,2 +3228,3286,3288,3346,-0.434482758620899,0.176271186440084,-0.441379310345020,0.169491525423110,-0.441379310345035,0.183050847457058,-0.448275862069156,0.176271186440084,0.013559322033948,0.000000000000015,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033948,-0.000000000000014,2 +3229,3287,3289,3347,-0.434482758620914,0.189830508474016,-0.441379310345035,0.183050847457058,-0.441379310345049,0.196610169490975,-0.448275862069170,0.189830508474016,0.013559322033917,0.000000000000015,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448256,-0.013559322033917,-0.000000000000014,2 +3230,3288,3290,3348,-0.434482758620929,0.203389830507945,-0.441379310345049,0.196610169490975,-0.441379310345064,0.210169491524915,-0.448275862069184,0.203389830507945,0.013559322033940,0.000000000000015,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033940,-0.000000000000014,2 +3231,3289,3291,3349,-0.434482758620944,0.216949152541877,-0.441379310345064,0.210169491524915,-0.441379310345078,0.223728813558839,-0.448275862069198,0.216949152541877,0.013559322033924,0.000000000000015,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448253,-0.013559322033924,-0.000000000000014,2 +3232,3290,3292,3350,-0.434482758620959,0.230508474575816,-0.441379310345078,0.223728813558839,-0.441379310345093,0.237288135592793,-0.448275862069212,0.230508474575816,0.013559322033954,0.000000000000015,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033954,-0.000000000000014,2 +3233,3291,3293,3351,-0.434482758620974,0.244067796609748,-0.441379310345093,0.237288135592793,-0.441379310345107,0.250847457626703,-0.448275862069226,0.244067796609748,0.013559322033910,0.000000000000015,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033910,-0.000000000000014,2 +3234,3292,3294,3352,-0.434482758620989,0.257627118643680,-0.441379310345107,0.250847457626703,-0.441379310345122,0.264406779660657,-0.448275862069240,0.257627118643680,0.013559322033954,0.000000000000015,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000014,2 +3235,3293,3295,3353,-0.434482758621004,0.271186440677618,-0.441379310345122,0.264406779660657,-0.441379310345136,0.277966101694579,-0.448275862069254,0.271186440677618,0.013559322033922,0.000000000000015,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448249,-0.013559322033922,-0.000000000000014,2 +3236,3294,3296,3354,-0.434482758621019,0.284745762711550,-0.441379310345136,0.277966101694579,-0.441379310345151,0.291525423728521,-0.448275862069267,0.284745762711550,0.013559322033942,0.000000000000015,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448247,-0.013559322033943,-0.000000000000014,2 +3237,3295,3297,3355,-0.434482758621034,0.298305084745489,-0.441379310345151,0.291525423728521,-0.441379310345165,0.305084745762457,-0.448275862069281,0.298305084745489,0.013559322033936,0.000000000000015,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033936,-0.000000000000014,2 +3238,3296,3298,3356,-0.434482758621050,0.311864406779421,-0.441379310345165,0.305084745762457,-0.441379310345180,0.318644067796385,-0.448275862069295,0.311864406779421,0.013559322033928,0.000000000000015,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000014,2 +3239,3297,3299,3357,-0.434482758621065,0.325423728813361,-0.441379310345180,0.318644067796385,-0.441379310345194,0.332203389830336,-0.448275862069309,0.325423728813361,0.013559322033950,0.000000000000015,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033951,-0.000000000000014,2 +3240,3298,3300,3358,-0.434482758621080,0.338983050847293,-0.441379310345194,0.332203389830336,-0.441379310345208,0.345762711864250,-0.448275862069323,0.338983050847293,0.013559322033914,0.000000000000015,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448242,-0.013559322033914,-0.000000000000014,2 +3241,3299,3301,3359,-0.434482758621095,0.352542372881227,-0.441379310345208,0.345762711864250,-0.441379310345223,0.359322033898204,-0.448275862069337,0.352542372881227,0.013559322033954,0.000000000000015,0.000000000000000,-0.013793103448242,0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000014,2 +3242,3300,3302,3360,-0.434482758621110,0.366101694915162,-0.441379310345223,0.359322033898204,-0.441379310345237,0.372881355932121,-0.448275862069351,0.366101694915162,0.013559322033918,0.000000000000015,-0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000014,2 +3243,3301,3303,3361,-0.434482758621125,0.379661016949094,-0.441379310345237,0.372881355932121,-0.441379310345252,0.386440677966068,-0.448275862069364,0.379661016949095,0.013559322033946,0.000000000000015,0.000000000000000,-0.013793103448240,0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000014,2 +1990,3244,3302,3362,-0.441379310345266,0.400000000000000,-0.434482758621140,0.393220338983034,-0.441379310345252,0.386440677966068,-0.448275862069378,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000015,-0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000014,2 +3245,3305,3363,4218,-0.448275862068574,-0.393220338983059,-0.455172413792735,-0.386440677966118,-0.462068965516882,-0.393220338983059,-0.455172413792722,-0.400000000000000,0.013559322033882,0.000000000000014,-0.000000000000000,0.013793103448308,-0.013559322033882,-0.000000000000013,0.000000000000000,-0.013793103448309,2 +3246,3304,3306,3364,-0.448275862068588,-0.379661016949189,-0.455172413792735,-0.386440677966118,-0.455172413792748,-0.372881355932259,-0.462068965516895,-0.379661016949189,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448307,-0.013559322033860,-0.000000000000013,2 +3247,3305,3307,3365,-0.448275862068602,-0.366101694915329,-0.455172413792748,-0.372881355932259,-0.455172413792761,-0.359322033898399,-0.462068965516908,-0.366101694915329,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448306,-0.013559322033860,-0.000000000000013,2 +3248,3306,3308,3366,-0.448275862068616,-0.352542372881469,-0.455172413792761,-0.359322033898399,-0.455172413792775,-0.345762711864539,-0.462068965516920,-0.352542372881469,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448304,-0.013559322033860,-0.000000000000013,2 +3249,3307,3309,3367,-0.448275862068629,-0.338983050847605,-0.455172413792775,-0.345762711864539,-0.455172413792788,-0.332203389830670,-0.462068965516933,-0.338983050847605,0.013559322033869,0.000000000000014,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448303,-0.013559322033869,-0.000000000000013,2 +3250,3308,3310,3368,-0.448275862068643,-0.325423728813729,-0.455172413792788,-0.332203389830670,-0.455172413792801,-0.318644067796787,-0.462068965516946,-0.325423728813729,0.013559322033883,0.000000000000014,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,-0.013559322033883,-0.000000000000012,2 +3251,3309,3311,3369,-0.448275862068657,-0.311864406779851,-0.455172413792801,-0.318644067796787,-0.455172413792814,-0.305084745762915,-0.462068965516958,-0.311864406779851,0.013559322033872,0.000000000000014,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,-0.013559322033872,-0.000000000000013,2 +3252,3310,3312,3370,-0.448275862068671,-0.298305084745975,-0.455172413792814,-0.305084745762915,-0.455172413792828,-0.291525423729035,-0.462068965516971,-0.298305084745975,0.013559322033880,0.000000000000014,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448300,-0.013559322033880,-0.000000000000013,2 +3253,3311,3313,3371,-0.448275862068685,-0.284745762712105,-0.455172413792828,-0.291525423729035,-0.455172413792841,-0.277966101695176,-0.462068965516984,-0.284745762712105,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000013,2 +3254,3312,3314,3372,-0.448275862068699,-0.271186440678246,-0.455172413792841,-0.277966101695176,-0.455172413792854,-0.264406779661316,-0.462068965516996,-0.271186440678246,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000013,2 +3255,3313,3315,3373,-0.448275862068713,-0.257627118644386,-0.455172413792854,-0.264406779661316,-0.455172413792867,-0.250847457627456,-0.462068965517009,-0.257627118644386,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000013,2 +3256,3314,3316,3374,-0.448275862068727,-0.244067796610526,-0.455172413792867,-0.250847457627456,-0.455172413792881,-0.237288135593597,-0.462068965517022,-0.244067796610526,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448294,-0.013559322033859,-0.000000000000013,2 +3257,3315,3317,3375,-0.448275862068740,-0.230508474576667,-0.455172413792881,-0.237288135593597,-0.455172413792894,-0.223728813559737,-0.462068965517034,-0.230508474576667,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000013,2 +3258,3316,3318,3376,-0.448275862068754,-0.216949152542807,-0.455172413792894,-0.223728813559737,-0.455172413792907,-0.210169491525877,-0.462068965517047,-0.216949152542807,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000013,2 +3259,3317,3319,3377,-0.448275862068768,-0.203389830508947,-0.455172413792907,-0.210169491525877,-0.455172413792921,-0.196610169492017,-0.462068965517060,-0.203389830508947,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000013,2 +3260,3318,3320,3378,-0.448275862068782,-0.189830508475088,-0.455172413792921,-0.196610169492017,-0.455172413792934,-0.183050847458158,-0.462068965517072,-0.189830508475088,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000013,2 +3261,3319,3321,3379,-0.448275862068796,-0.176271186441228,-0.455172413792934,-0.183050847458158,-0.455172413792947,-0.169491525424298,-0.462068965517085,-0.176271186441228,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000013,2 +3262,3320,3322,3380,-0.448275862068810,-0.162711864407368,-0.455172413792947,-0.169491525424298,-0.455172413792960,-0.155932203390438,-0.462068965517098,-0.162711864407368,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000013,2 +3263,3321,3323,3381,-0.448275862068824,-0.149152542373509,-0.455172413792960,-0.155932203390438,-0.455172413792974,-0.142372881356579,-0.462068965517110,-0.149152542373509,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000013,2 +3264,3322,3324,3382,-0.448275862068838,-0.135593220339649,-0.455172413792974,-0.142372881356579,-0.455172413792987,-0.128813559322719,-0.462068965517123,-0.135593220339649,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000013,2 +3265,3323,3325,3383,-0.448275862068851,-0.122033898305789,-0.455172413792987,-0.128813559322719,-0.455172413793000,-0.115254237288859,-0.462068965517136,-0.122033898305789,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000013,2 +3266,3324,3326,3384,-0.448275862068865,-0.108474576271933,-0.455172413793000,-0.115254237288859,-0.455172413793013,-0.101694915255008,-0.462068965517148,-0.108474576271933,0.013559322033852,0.000000000000014,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448282,-0.013559322033852,-0.000000000000012,2 +3267,3325,3327,3385,-0.448275862068879,-0.094915254238085,-0.455172413793013,-0.101694915255008,-0.455172413793027,-0.088135593221162,-0.462068965517161,-0.094915254238085,0.013559322033846,0.000000000000014,0.000000000000000,-0.013793103448282,0.000000000000000,0.013793103448281,-0.013559322033846,-0.000000000000013,2 +3268,3326,3328,3386,-0.448275862068893,-0.081355932204232,-0.455172413793027,-0.088135593221162,-0.455172413793040,-0.074576271187302,-0.462068965517174,-0.081355932204232,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000013,2 +3269,3327,3329,3387,-0.448275862068907,-0.067796610170372,-0.455172413793040,-0.074576271187302,-0.455172413793053,-0.061016949153442,-0.462068965517186,-0.067796610170372,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000013,2 +3270,3328,3330,3388,-0.448275862068921,-0.054237288136513,-0.455172413793053,-0.061016949153442,-0.455172413793066,-0.047457627119583,-0.462068965517199,-0.054237288136513,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000013,2 +3271,3329,3331,3389,-0.448275862068935,-0.040677966102653,-0.455172413793066,-0.047457627119583,-0.455172413793080,-0.033898305085723,-0.462068965517212,-0.040677966102653,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000013,2 +3272,3330,3332,3390,-0.448275862068948,-0.027118644068793,-0.455172413793080,-0.033898305085723,-0.455172413793093,-0.020338983051863,-0.462068965517224,-0.027118644068793,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000012,2 +3273,3331,3333,3391,-0.448275862068962,-0.013559322034934,-0.455172413793093,-0.020338983051863,-0.455172413793106,-0.006779661018004,-0.462068965517237,-0.013559322034934,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000013,2 +3274,3332,3334,3392,-0.448275862068976,-0.000000000001056,-0.455172413793106,-0.006779661018004,-0.455172413793119,0.006779661015891,-0.462068965517250,-0.000000000001056,0.013559322033895,0.000000000000014,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448273,-0.013559322033895,-0.000000000000013,2 +3275,3333,3335,3393,-0.448275862068990,0.013559322032862,-0.455172413793119,0.006779661015891,-0.455172413793133,0.020338983049833,-0.462068965517262,0.013559322032862,0.013559322033941,0.000000000000014,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,-0.013559322033941,-0.000000000000013,2 +3276,3334,3336,3394,-0.448275862069004,0.027118644066798,-0.455172413793133,0.020338983049833,-0.455172413793146,0.033898305083763,-0.462068965517275,0.027118644066798,0.013559322033930,0.000000000000014,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448270,-0.013559322033930,-0.000000000000013,2 +3277,3335,3337,3395,-0.448275862069018,0.040677966100731,-0.455172413793146,0.033898305083763,-0.455172413793159,0.047457627117699,-0.462068965517288,0.040677966100731,0.013559322033937,0.000000000000014,0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448269,-0.013559322033937,-0.000000000000012,2 +3278,3336,3338,3396,-0.448275862069032,0.054237288134667,-0.455172413793159,0.047457627117699,-0.455172413793173,0.061016949151634,-0.462068965517300,0.054237288134667,0.013559322033935,0.000000000000014,-0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448268,-0.013559322033935,-0.000000000000013,2 +3279,3337,3339,3397,-0.448275862069046,0.067796610168599,-0.455172413793173,0.061016949151634,-0.455172413793186,0.074576271185564,-0.462068965517313,0.067796610168599,0.013559322033930,0.000000000000014,-0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033930,-0.000000000000013,2 +3280,3338,3340,3398,-0.448275862069059,0.081355932202535,-0.455172413793186,0.074576271185564,-0.455172413793199,0.088135593219506,-0.462068965517325,0.081355932202535,0.013559322033941,0.000000000000014,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448266,-0.013559322033941,-0.000000000000013,2 +3281,3339,3341,3399,-0.448275862069073,0.094915254236471,-0.455172413793199,0.088135593219506,-0.455172413793212,0.101694915253436,-0.462068965517338,0.094915254236471,0.013559322033930,0.000000000000014,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448264,-0.013559322033930,-0.000000000000013,2 +3282,3340,3342,3400,-0.448275862069087,0.108474576270409,-0.455172413793212,0.101694915253436,-0.455172413793226,0.115254237287382,-0.462068965517351,0.108474576270409,0.013559322033946,0.000000000000014,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033946,-0.000000000000013,2 +3283,3341,3343,3401,-0.448275862069101,0.122033898304341,-0.455172413793226,0.115254237287382,-0.455172413793239,0.128813559321301,-0.462068965517363,0.122033898304341,0.013559322033919,0.000000000000014,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033919,-0.000000000000013,2 +3284,3342,3344,3402,-0.448275862069115,0.135593220338273,-0.455172413793239,0.128813559321301,-0.455172413793252,0.142372881355246,-0.462068965517376,0.135593220338273,0.013559322033945,0.000000000000014,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033945,-0.000000000000013,2 +3285,3343,3345,3403,-0.448275862069129,0.149152542372213,-0.455172413793252,0.142372881355246,-0.455172413793265,0.155932203389179,-0.462068965517389,0.149152542372213,0.013559322033933,0.000000000000014,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448259,-0.013559322033933,-0.000000000000013,2 +3286,3344,3346,3404,-0.448275862069143,0.162711864406145,-0.455172413793265,0.155932203389179,-0.455172413793279,0.169491525423110,-0.462068965517401,0.162711864406145,0.013559322033931,0.000000000000014,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033931,-0.000000000000013,2 +3287,3345,3347,3405,-0.448275862069156,0.176271186440084,-0.455172413793279,0.169491525423110,-0.455172413793292,0.183050847457058,-0.462068965517414,0.176271186440084,0.013559322033948,0.000000000000014,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033948,-0.000000000000013,2 +3288,3346,3348,3406,-0.448275862069170,0.189830508474016,-0.455172413793292,0.183050847457058,-0.455172413793305,0.196610169490975,-0.462068965517427,0.189830508474016,0.013559322033917,0.000000000000014,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448256,-0.013559322033917,-0.000000000000013,2 +3289,3347,3349,3407,-0.448275862069184,0.203389830507945,-0.455172413793305,0.196610169490975,-0.455172413793318,0.210169491524915,-0.462068965517439,0.203389830507945,0.013559322033940,0.000000000000014,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033940,-0.000000000000013,2 +3290,3348,3350,3408,-0.448275862069198,0.216949152541877,-0.455172413793318,0.210169491524915,-0.455172413793332,0.223728813558839,-0.462068965517452,0.216949152541877,0.013559322033924,0.000000000000014,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448254,-0.013559322033924,-0.000000000000013,2 +3291,3349,3351,3409,-0.448275862069212,0.230508474575816,-0.455172413793332,0.223728813558839,-0.455172413793345,0.237288135592793,-0.462068965517465,0.230508474575816,0.013559322033954,0.000000000000014,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448252,-0.013559322033954,-0.000000000000013,2 +3292,3350,3352,3410,-0.448275862069226,0.244067796609748,-0.455172413793345,0.237288135592793,-0.455172413793358,0.250847457626703,-0.462068965517478,0.244067796609748,0.013559322033910,0.000000000000014,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033910,-0.000000000000013,2 +3293,3351,3353,3411,-0.448275862069240,0.257627118643680,-0.455172413793358,0.250847457626703,-0.455172413793371,0.264406779660657,-0.462068965517490,0.257627118643680,0.013559322033954,0.000000000000014,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000012,2 +3294,3352,3354,3412,-0.448275862069254,0.271186440677618,-0.455172413793371,0.264406779660657,-0.455172413793385,0.277966101694579,-0.462068965517503,0.271186440677618,0.013559322033922,0.000000000000014,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448248,-0.013559322033922,-0.000000000000013,2 +3295,3353,3355,3413,-0.448275862069267,0.284745762711550,-0.455172413793385,0.277966101694579,-0.455172413793398,0.291525423728521,-0.462068965517515,0.284745762711550,0.013559322033943,0.000000000000014,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033942,-0.000000000000013,2 +3296,3354,3356,3414,-0.448275862069281,0.298305084745489,-0.455172413793398,0.291525423728521,-0.455172413793411,0.305084745762457,-0.462068965517528,0.298305084745489,0.013559322033936,0.000000000000014,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033936,-0.000000000000013,2 +3297,3355,3357,3415,-0.448275862069295,0.311864406779421,-0.455172413793411,0.305084745762457,-0.455172413793424,0.318644067796385,-0.462068965517541,0.311864406779421,0.013559322033928,0.000000000000014,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000012,2 +3298,3356,3358,3416,-0.448275862069309,0.325423728813361,-0.455172413793424,0.318644067796385,-0.455172413793438,0.332203389830336,-0.462068965517553,0.325423728813361,0.013559322033951,0.000000000000014,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448244,-0.013559322033951,-0.000000000000013,2 +3299,3357,3359,3417,-0.448275862069323,0.338983050847293,-0.455172413793438,0.332203389830336,-0.455172413793451,0.345762711864250,-0.462068965517566,0.338983050847293,0.013559322033914,0.000000000000014,-0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000013,2 +3300,3358,3360,3418,-0.448275862069337,0.352542372881227,-0.455172413793451,0.345762711864250,-0.455172413793464,0.359322033898204,-0.462068965517579,0.352542372881227,0.013559322033954,0.000000000000014,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000013,2 +3301,3359,3361,3419,-0.448275862069351,0.366101694915162,-0.455172413793464,0.359322033898204,-0.455172413793478,0.372881355932121,-0.462068965517591,0.366101694915162,0.013559322033918,0.000000000000014,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000013,2 +3302,3360,3362,3420,-0.448275862069364,0.379661016949095,-0.455172413793478,0.372881355932121,-0.455172413793491,0.386440677966068,-0.462068965517604,0.379661016949094,0.013559322033946,0.000000000000014,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000013,2 +1976,3303,3361,3421,-0.455172413793504,0.400000000000000,-0.448275862069378,0.393220338983034,-0.455172413793491,0.386440677966068,-0.462068965517617,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000014,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000013,2 +3304,3364,3422,4232,-0.462068965516882,-0.393220338983059,-0.468965517241043,-0.386440677966118,-0.475862068965191,-0.393220338983059,-0.468965517241031,-0.400000000000000,0.013559322033882,0.000000000000013,0.000000000000000,0.013793103448308,-0.013559322033882,-0.000000000000011,0.000000000000000,-0.013793103448309,2 +3305,3363,3365,3423,-0.462068965516895,-0.379661016949189,-0.468965517241043,-0.386440677966118,-0.468965517241055,-0.372881355932259,-0.475862068965202,-0.379661016949189,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448307,-0.013559322033860,-0.000000000000011,2 +3306,3364,3366,3424,-0.462068965516908,-0.366101694915329,-0.468965517241055,-0.372881355932259,-0.468965517241067,-0.359322033898399,-0.475862068965214,-0.366101694915329,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448305,-0.013559322033860,-0.000000000000011,2 +3307,3365,3367,3425,-0.462068965516920,-0.352542372881469,-0.468965517241067,-0.359322033898399,-0.468965517241079,-0.345762711864539,-0.475862068965225,-0.352542372881469,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448304,-0.013559322033860,-0.000000000000011,2 +3308,3366,3368,3426,-0.462068965516933,-0.338983050847605,-0.468965517241079,-0.345762711864539,-0.468965517241091,-0.332203389830670,-0.475862068965237,-0.338983050847605,0.013559322033869,0.000000000000013,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448303,-0.013559322033869,-0.000000000000011,2 +3309,3367,3369,3427,-0.462068965516946,-0.325423728813729,-0.468965517241091,-0.332203389830670,-0.468965517241103,-0.318644067796787,-0.475862068965248,-0.325423728813729,0.013559322033883,0.000000000000012,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,-0.013559322033883,-0.000000000000011,2 +3310,3368,3370,3428,-0.462068965516958,-0.311864406779851,-0.468965517241103,-0.318644067796787,-0.468965517241115,-0.305084745762915,-0.475862068965260,-0.311864406779851,0.013559322033872,0.000000000000013,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,-0.013559322033872,-0.000000000000012,2 +3311,3369,3371,3429,-0.462068965516971,-0.298305084745975,-0.468965517241115,-0.305084745762915,-0.468965517241127,-0.291525423729035,-0.475862068965271,-0.298305084745975,0.013559322033880,0.000000000000013,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448299,-0.013559322033880,-0.000000000000011,2 +3312,3370,3372,3430,-0.462068965516984,-0.284745762712105,-0.468965517241127,-0.291525423729035,-0.468965517241139,-0.277966101695176,-0.475862068965282,-0.284745762712105,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000011,2 +3313,3371,3373,3431,-0.462068965516996,-0.271186440678246,-0.468965517241139,-0.277966101695176,-0.468965517241151,-0.264406779661316,-0.475862068965294,-0.271186440678246,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448298,0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000012,2 +3314,3372,3374,3432,-0.462068965517009,-0.257627118644386,-0.468965517241151,-0.264406779661316,-0.468965517241163,-0.250847457627456,-0.475862068965305,-0.257627118644386,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000011,2 +3315,3373,3375,3433,-0.462068965517022,-0.244067796610526,-0.468965517241163,-0.250847457627456,-0.468965517241175,-0.237288135593597,-0.475862068965317,-0.244067796610526,0.013559322033859,0.000000000000013,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000011,2 +3316,3374,3376,3434,-0.462068965517034,-0.230508474576667,-0.468965517241175,-0.237288135593597,-0.468965517241187,-0.223728813559737,-0.475862068965328,-0.230508474576667,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448295,0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000011,2 +3317,3375,3377,3435,-0.462068965517047,-0.216949152542807,-0.468965517241187,-0.223728813559737,-0.468965517241199,-0.210169491525877,-0.475862068965340,-0.216949152542807,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000011,2 +3318,3376,3378,3436,-0.462068965517060,-0.203389830508947,-0.468965517241199,-0.210169491525877,-0.468965517241211,-0.196610169492017,-0.475862068965351,-0.203389830508947,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000012,2 +3319,3377,3379,3437,-0.462068965517072,-0.189830508475088,-0.468965517241211,-0.196610169492017,-0.468965517241224,-0.183050847458158,-0.475862068965363,-0.189830508475088,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033859,-0.000000000000011,2 +3320,3378,3380,3438,-0.462068965517085,-0.176271186441228,-0.468965517241224,-0.183050847458158,-0.468965517241236,-0.169491525424298,-0.475862068965374,-0.176271186441228,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448288,-0.013559322033860,-0.000000000000011,2 +3321,3379,3381,3439,-0.462068965517098,-0.162711864407368,-0.468965517241236,-0.169491525424298,-0.468965517241248,-0.155932203390438,-0.475862068965386,-0.162711864407368,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000011,2 +3322,3380,3382,3440,-0.462068965517110,-0.149152542373509,-0.468965517241248,-0.155932203390438,-0.468965517241260,-0.142372881356579,-0.475862068965397,-0.149152542373509,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000011,2 +3323,3381,3383,3441,-0.462068965517123,-0.135593220339649,-0.468965517241260,-0.142372881356579,-0.468965517241272,-0.128813559322719,-0.475862068965408,-0.135593220339649,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000011,2 +3324,3382,3384,3442,-0.462068965517136,-0.122033898305789,-0.468965517241272,-0.128813559322719,-0.468965517241284,-0.115254237288859,-0.475862068965420,-0.122033898305789,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000012,2 +3325,3383,3385,3443,-0.462068965517148,-0.108474576271933,-0.468965517241284,-0.115254237288859,-0.468965517241296,-0.101694915255008,-0.475862068965431,-0.108474576271933,0.013559322033852,0.000000000000012,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448282,-0.013559322033852,-0.000000000000011,2 +3326,3384,3386,3444,-0.462068965517161,-0.094915254238085,-0.468965517241296,-0.101694915255008,-0.468965517241308,-0.088135593221162,-0.475862068965443,-0.094915254238085,0.013559322033846,0.000000000000013,-0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448281,-0.013559322033846,-0.000000000000012,2 +3327,3385,3387,3445,-0.462068965517174,-0.081355932204232,-0.468965517241308,-0.088135593221162,-0.468965517241320,-0.074576271187302,-0.475862068965454,-0.081355932204232,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000011,2 +3328,3386,3388,3446,-0.462068965517186,-0.067796610170372,-0.468965517241320,-0.074576271187302,-0.468965517241332,-0.061016949153442,-0.475862068965466,-0.067796610170372,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000011,2 +3329,3387,3389,3447,-0.462068965517199,-0.054237288136513,-0.468965517241332,-0.061016949153442,-0.468965517241344,-0.047457627119583,-0.475862068965477,-0.054237288136513,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000011,2 +3330,3388,3390,3448,-0.462068965517212,-0.040677966102653,-0.468965517241344,-0.047457627119583,-0.468965517241356,-0.033898305085723,-0.475862068965489,-0.040677966102653,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000012,2 +3331,3389,3391,3449,-0.462068965517224,-0.027118644068793,-0.468965517241356,-0.033898305085723,-0.468965517241368,-0.020338983051863,-0.475862068965500,-0.027118644068793,0.013559322033860,0.000000000000012,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000012,2 +3332,3390,3392,3450,-0.462068965517237,-0.013559322034934,-0.468965517241368,-0.020338983051863,-0.468965517241380,-0.006779661018004,-0.475862068965512,-0.013559322034933,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000011,2 +3333,3391,3393,3451,-0.462068965517250,-0.000000000001056,-0.468965517241380,-0.006779661018004,-0.468965517241392,0.006779661015891,-0.475862068965523,-0.000000000001056,0.013559322033895,0.000000000000013,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448273,-0.013559322033895,-0.000000000000012,2 +3334,3392,3394,3452,-0.462068965517262,0.013559322032862,-0.468965517241392,0.006779661015891,-0.468965517241404,0.020338983049833,-0.475862068965534,0.013559322032862,0.013559322033941,0.000000000000013,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,-0.013559322033941,-0.000000000000011,2 +3335,3393,3395,3453,-0.462068965517275,0.027118644066798,-0.468965517241404,0.020338983049833,-0.468965517241416,0.033898305083763,-0.475862068965546,0.027118644066798,0.013559322033930,0.000000000000013,0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448270,-0.013559322033930,-0.000000000000011,2 +3336,3394,3396,3454,-0.462068965517288,0.040677966100731,-0.468965517241416,0.033898305083763,-0.468965517241428,0.047457627117699,-0.475862068965557,0.040677966100731,0.013559322033937,0.000000000000012,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033937,-0.000000000000011,2 +3337,3395,3397,3455,-0.462068965517300,0.054237288134667,-0.468965517241428,0.047457627117699,-0.468965517241440,0.061016949151634,-0.475862068965569,0.054237288134667,0.013559322033935,0.000000000000013,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033935,-0.000000000000012,2 +3338,3396,3398,3456,-0.462068965517313,0.067796610168599,-0.468965517241440,0.061016949151634,-0.468965517241453,0.074576271185564,-0.475862068965580,0.067796610168599,0.013559322033930,0.000000000000013,0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448267,-0.013559322033930,-0.000000000000011,2 +3339,3397,3399,3457,-0.462068965517325,0.081355932202535,-0.468965517241453,0.074576271185564,-0.468965517241465,0.088135593219506,-0.475862068965592,0.081355932202535,0.013559322033941,0.000000000000013,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448266,-0.013559322033941,-0.000000000000011,2 +3340,3398,3400,3458,-0.462068965517338,0.094915254236471,-0.468965517241465,0.088135593219506,-0.468965517241477,0.101694915253436,-0.475862068965603,0.094915254236471,0.013559322033930,0.000000000000013,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448265,-0.013559322033930,-0.000000000000012,2 +3341,3399,3401,3459,-0.462068965517351,0.108474576270409,-0.468965517241477,0.101694915253436,-0.468965517241489,0.115254237287382,-0.475862068965615,0.108474576270409,0.013559322033946,0.000000000000013,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448263,-0.013559322033946,-0.000000000000011,2 +3342,3400,3402,3460,-0.462068965517363,0.122033898304341,-0.468965517241489,0.115254237287382,-0.468965517241501,0.128813559321301,-0.475862068965626,0.122033898304341,0.013559322033919,0.000000000000013,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033919,-0.000000000000012,2 +3343,3401,3403,3461,-0.462068965517376,0.135593220338273,-0.468965517241501,0.128813559321301,-0.468965517241513,0.142372881355246,-0.475862068965638,0.135593220338273,0.013559322033945,0.000000000000013,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033945,-0.000000000000011,2 +3344,3402,3404,3462,-0.462068965517389,0.149152542372213,-0.468965517241513,0.142372881355246,-0.468965517241525,0.155932203389179,-0.475862068965649,0.149152542372213,0.013559322033933,0.000000000000013,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448259,-0.013559322033933,-0.000000000000011,2 +3345,3403,3405,3463,-0.462068965517401,0.162711864406145,-0.468965517241525,0.155932203389179,-0.468965517241537,0.169491525423110,-0.475862068965660,0.162711864406145,0.013559322033931,0.000000000000013,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033931,-0.000000000000011,2 +3346,3404,3406,3464,-0.462068965517414,0.176271186440084,-0.468965517241537,0.169491525423110,-0.468965517241549,0.183050847457058,-0.475862068965672,0.176271186440084,0.013559322033948,0.000000000000013,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033948,-0.000000000000011,2 +3347,3405,3407,3465,-0.462068965517427,0.189830508474016,-0.468965517241549,0.183050847457058,-0.468965517241561,0.196610169490975,-0.475862068965683,0.189830508474016,0.013559322033917,0.000000000000013,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448256,-0.013559322033917,-0.000000000000012,2 +3348,3406,3408,3466,-0.462068965517439,0.203389830507945,-0.468965517241561,0.196610169490975,-0.468965517241573,0.210169491524915,-0.475862068965695,0.203389830507945,0.013559322033940,0.000000000000013,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033940,-0.000000000000011,2 +3349,3407,3409,3467,-0.462068965517452,0.216949152541877,-0.468965517241573,0.210169491524915,-0.468965517241585,0.223728813558839,-0.475862068965706,0.216949152541877,0.013559322033924,0.000000000000013,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448254,-0.013559322033924,-0.000000000000012,2 +3350,3408,3410,3468,-0.462068965517465,0.230508474575816,-0.468965517241585,0.223728813558839,-0.468965517241597,0.237288135592793,-0.475862068965718,0.230508474575816,0.013559322033954,0.000000000000013,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448252,-0.013559322033954,-0.000000000000011,2 +3351,3409,3411,3469,-0.462068965517478,0.244067796609748,-0.468965517241597,0.237288135592793,-0.468965517241609,0.250847457626703,-0.475862068965729,0.244067796609748,0.013559322033910,0.000000000000013,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033910,-0.000000000000011,2 +3352,3410,3412,3470,-0.462068965517490,0.257627118643680,-0.468965517241609,0.250847457626703,-0.468965517241621,0.264406779660657,-0.475862068965740,0.257627118643680,0.013559322033954,0.000000000000012,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000011,2 +3353,3411,3413,3471,-0.462068965517503,0.271186440677618,-0.468965517241621,0.264406779660657,-0.468965517241633,0.277966101694579,-0.475862068965752,0.271186440677618,0.013559322033922,0.000000000000013,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448249,-0.013559322033922,-0.000000000000012,2 +3354,3412,3414,3472,-0.462068965517515,0.284745762711550,-0.468965517241633,0.277966101694579,-0.468965517241645,0.291525423728521,-0.475862068965763,0.284745762711550,0.013559322033942,0.000000000000013,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448247,-0.013559322033942,-0.000000000000011,2 +3355,3413,3415,3473,-0.462068965517528,0.298305084745489,-0.468965517241645,0.291525423728521,-0.468965517241657,0.305084745762457,-0.475862068965775,0.298305084745489,0.013559322033936,0.000000000000013,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033936,-0.000000000000011,2 +3356,3414,3416,3474,-0.462068965517541,0.311864406779421,-0.468965517241657,0.305084745762457,-0.468965517241669,0.318644067796385,-0.475862068965786,0.311864406779421,0.013559322033928,0.000000000000012,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000012,2 +3357,3415,3417,3475,-0.462068965517553,0.325423728813361,-0.468965517241669,0.318644067796385,-0.468965517241682,0.332203389830336,-0.475862068965798,0.325423728813361,0.013559322033951,0.000000000000013,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033951,-0.000000000000011,2 +3358,3416,3418,3476,-0.462068965517566,0.338983050847293,-0.468965517241682,0.332203389830336,-0.468965517241694,0.345762711864250,-0.475862068965809,0.338983050847293,0.013559322033914,0.000000000000013,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448242,-0.013559322033914,-0.000000000000011,2 +3359,3417,3419,3477,-0.462068965517579,0.352542372881227,-0.468965517241694,0.345762711864250,-0.468965517241706,0.359322033898203,-0.475862068965821,0.352542372881226,0.013559322033954,0.000000000000013,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000011,2 +3360,3418,3420,3478,-0.462068965517591,0.366101694915162,-0.468965517241706,0.359322033898203,-0.468965517241718,0.372881355932121,-0.475862068965832,0.366101694915162,0.013559322033918,0.000000000000013,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000012,2 +3361,3419,3421,3479,-0.462068965517604,0.379661016949094,-0.468965517241718,0.372881355932121,-0.468965517241730,0.386440677966068,-0.475862068965843,0.379661016949094,0.013559322033946,0.000000000000013,0.000000000000000,-0.013793103448240,0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000011,2 +1962,3362,3420,3480,-0.468965517241742,0.400000000000000,-0.462068965517617,0.393220338983034,-0.468965517241730,0.386440677966068,-0.475862068965855,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000013,-0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000011,2 +3363,3423,3481,4246,-0.475862068965191,-0.393220338983059,-0.482758620689352,-0.386440677966118,-0.489655172413503,-0.393220338983059,-0.482758620689341,-0.400000000000000,0.013559322033882,0.000000000000011,-0.000000000000000,0.013793103448311,-0.013559322033882,-0.000000000000010,0.000000000000000,-0.013793103448313,2 +3364,3422,3424,3482,-0.475862068965202,-0.379661016949189,-0.482758620689352,-0.386440677966118,-0.482758620689363,-0.372881355932259,-0.489655172413513,-0.379661016949189,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448310,-0.013559322033860,-0.000000000000010,2 +3365,3423,3425,3483,-0.475862068965214,-0.366101694915329,-0.482758620689363,-0.372881355932259,-0.482758620689374,-0.359322033898399,-0.489655172413523,-0.366101694915329,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448309,-0.013559322033860,-0.000000000000010,2 +3366,3424,3426,3484,-0.475862068965225,-0.352542372881469,-0.482758620689374,-0.359322033898399,-0.482758620689385,-0.345762711864539,-0.489655172413533,-0.352542372881469,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448308,-0.013559322033860,-0.000000000000010,2 +3367,3425,3427,3485,-0.475862068965237,-0.338983050847605,-0.482758620689385,-0.345762711864539,-0.482758620689396,-0.332203389830670,-0.489655172413544,-0.338983050847605,0.013559322033869,0.000000000000011,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448306,-0.013559322033869,-0.000000000000010,2 +3368,3426,3428,3486,-0.475862068965248,-0.325423728813729,-0.482758620689396,-0.332203389830670,-0.482758620689406,-0.318644067796787,-0.489655172413554,-0.325423728813729,0.013559322033883,0.000000000000011,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448305,-0.013559322033883,-0.000000000000010,2 +3369,3427,3429,3487,-0.475862068965260,-0.311864406779851,-0.482758620689406,-0.318644067796787,-0.482758620689417,-0.305084745762915,-0.489655172413564,-0.311864406779851,0.013559322033872,0.000000000000012,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448303,-0.013559322033872,-0.000000000000010,2 +3370,3428,3430,3488,-0.475862068965271,-0.298305084745975,-0.482758620689417,-0.305084745762915,-0.482758620689428,-0.291525423729035,-0.489655172413574,-0.298305084745975,0.013559322033880,0.000000000000011,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,-0.013559322033879,-0.000000000000010,2 +3371,3429,3431,3489,-0.475862068965282,-0.284745762712105,-0.482758620689428,-0.291525423729035,-0.482758620689439,-0.277966101695176,-0.489655172413584,-0.284745762712106,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,-0.013559322033860,-0.000000000000010,2 +3372,3430,3432,3490,-0.475862068965294,-0.271186440678246,-0.482758620689439,-0.277966101695176,-0.482758620689450,-0.264406779661316,-0.489655172413595,-0.271186440678246,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448300,-0.013559322033860,-0.000000000000010,2 +3373,3431,3433,3491,-0.475862068965305,-0.257627118644386,-0.482758620689450,-0.264406779661316,-0.482758620689460,-0.250847457627456,-0.489655172413605,-0.257627118644386,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000010,2 +3374,3432,3434,3492,-0.475862068965317,-0.244067796610526,-0.482758620689460,-0.250847457627456,-0.482758620689471,-0.237288135593597,-0.489655172413615,-0.244067796610526,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448298,-0.013559322033859,-0.000000000000010,2 +3375,3433,3435,3493,-0.475862068965328,-0.230508474576667,-0.482758620689471,-0.237288135593597,-0.482758620689482,-0.223728813559737,-0.489655172413625,-0.230508474576667,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000010,2 +3376,3434,3436,3494,-0.475862068965340,-0.216949152542807,-0.482758620689482,-0.223728813559737,-0.482758620689493,-0.210169491525877,-0.489655172413635,-0.216949152542807,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000010,2 +3377,3435,3437,3495,-0.475862068965351,-0.203389830508947,-0.482758620689493,-0.210169491525877,-0.482758620689504,-0.196610169492017,-0.489655172413645,-0.203389830508947,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000010,2 +3378,3436,3438,3496,-0.475862068965363,-0.189830508475088,-0.482758620689504,-0.196610169492017,-0.482758620689514,-0.183050847458158,-0.489655172413656,-0.189830508475087,0.013559322033859,0.000000000000011,0.000000000000000,-0.013793103448293,0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000010,2 +3379,3437,3439,3497,-0.475862068965374,-0.176271186441228,-0.482758620689514,-0.183050847458158,-0.482758620689525,-0.169491525424298,-0.489655172413666,-0.176271186441228,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000010,2 +3380,3438,3440,3498,-0.475862068965386,-0.162711864407368,-0.482758620689525,-0.169491525424298,-0.482758620689536,-0.155932203390438,-0.489655172413676,-0.162711864407368,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000010,2 +3381,3439,3441,3499,-0.475862068965397,-0.149152542373509,-0.482758620689536,-0.155932203390438,-0.482758620689547,-0.142372881356579,-0.489655172413686,-0.149152542373509,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448288,-0.013559322033860,-0.000000000000010,2 +3382,3440,3442,3500,-0.475862068965408,-0.135593220339649,-0.482758620689547,-0.142372881356579,-0.482758620689558,-0.128813559322719,-0.489655172413696,-0.135593220339649,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000010,2 +3383,3441,3443,3501,-0.475862068965420,-0.122033898305789,-0.482758620689558,-0.128813559322719,-0.482758620689569,-0.115254237288859,-0.489655172413706,-0.122033898305789,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000010,2 +3384,3442,3444,3502,-0.475862068965431,-0.108474576271933,-0.482758620689569,-0.115254237288859,-0.482758620689579,-0.101694915255007,-0.489655172413717,-0.108474576271933,0.013559322033852,0.000000000000011,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033852,-0.000000000000010,2 +3385,3443,3445,3503,-0.475862068965443,-0.094915254238085,-0.482758620689579,-0.101694915255007,-0.482758620689590,-0.088135593221162,-0.489655172413727,-0.094915254238085,0.013559322033846,0.000000000000012,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448283,-0.013559322033846,-0.000000000000010,2 +3386,3444,3446,3504,-0.475862068965454,-0.081355932204232,-0.482758620689590,-0.088135593221162,-0.482758620689601,-0.074576271187302,-0.489655172413737,-0.081355932204232,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000010,2 +3387,3445,3447,3505,-0.475862068965466,-0.067796610170372,-0.482758620689601,-0.074576271187302,-0.482758620689612,-0.061016949153442,-0.489655172413747,-0.067796610170372,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000010,2 +3388,3446,3448,3506,-0.475862068965477,-0.054237288136513,-0.482758620689612,-0.061016949153442,-0.482758620689623,-0.047457627119583,-0.489655172413757,-0.054237288136513,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000010,2 +3389,3447,3449,3507,-0.475862068965489,-0.040677966102653,-0.482758620689623,-0.047457627119583,-0.482758620689633,-0.033898305085723,-0.489655172413768,-0.040677966102653,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000010,2 +3390,3448,3450,3508,-0.475862068965500,-0.027118644068793,-0.482758620689633,-0.033898305085723,-0.482758620689644,-0.020338983051863,-0.489655172413778,-0.027118644068793,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000010,2 +3391,3449,3451,3509,-0.475862068965512,-0.013559322034933,-0.482758620689644,-0.020338983051863,-0.482758620689655,-0.006779661018004,-0.489655172413788,-0.013559322034933,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000010,2 +3392,3450,3452,3510,-0.475862068965523,-0.000000000001056,-0.482758620689655,-0.006779661018004,-0.482758620689666,0.006779661015891,-0.489655172413798,-0.000000000001056,0.013559322033895,0.000000000000012,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000010,2 +3393,3451,3453,3511,-0.475862068965534,0.013559322032862,-0.482758620689666,0.006779661015891,-0.482758620689677,0.020338983049833,-0.489655172413808,0.013559322032862,0.013559322033941,0.000000000000011,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448273,-0.013559322033941,-0.000000000000010,2 +3394,3452,3454,3512,-0.475862068965546,0.027118644066798,-0.482758620689677,0.020338983049833,-0.482758620689688,0.033898305083763,-0.489655172413818,0.027118644066798,0.013559322033930,0.000000000000011,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448272,-0.013559322033930,-0.000000000000010,2 +3395,3453,3455,3513,-0.475862068965557,0.040677966100731,-0.482758620689688,0.033898305083763,-0.482758620689698,0.047457627117699,-0.489655172413829,0.040677966100731,0.013559322033937,0.000000000000011,-0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448271,-0.013559322033937,-0.000000000000010,2 +3396,3454,3456,3514,-0.475862068965569,0.054237288134667,-0.482758620689698,0.047457627117699,-0.482758620689709,0.061016949151634,-0.489655172413839,0.054237288134667,0.013559322033935,0.000000000000012,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448269,-0.013559322033935,-0.000000000000010,2 +3397,3455,3457,3515,-0.475862068965580,0.067796610168599,-0.482758620689709,0.061016949151634,-0.482758620689720,0.074576271185564,-0.489655172413849,0.067796610168599,0.013559322033930,0.000000000000011,-0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033930,-0.000000000000010,2 +3398,3456,3458,3516,-0.475862068965592,0.081355932202535,-0.482758620689720,0.074576271185564,-0.482758620689731,0.088135593219506,-0.489655172413859,0.081355932202535,0.013559322033941,0.000000000000011,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033941,-0.000000000000010,2 +3399,3457,3459,3517,-0.475862068965603,0.094915254236471,-0.482758620689731,0.088135593219506,-0.482758620689742,0.101694915253436,-0.489655172413869,0.094915254236471,0.013559322033930,0.000000000000012,0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448266,-0.013559322033930,-0.000000000000010,2 +3400,3458,3460,3518,-0.475862068965615,0.108474576270409,-0.482758620689742,0.101694915253436,-0.482758620689752,0.115254237287382,-0.489655172413880,0.108474576270409,0.013559322033946,0.000000000000011,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448264,-0.013559322033946,-0.000000000000010,2 +3401,3459,3461,3519,-0.475862068965626,0.122033898304341,-0.482758620689752,0.115254237287382,-0.482758620689763,0.128813559321301,-0.489655172413890,0.122033898304341,0.013559322033919,0.000000000000012,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033919,-0.000000000000010,2 +3402,3460,3462,3520,-0.475862068965638,0.135593220338273,-0.482758620689763,0.128813559321301,-0.482758620689774,0.142372881355246,-0.489655172413900,0.135593220338273,0.013559322033945,0.000000000000011,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033945,-0.000000000000010,2 +3403,3461,3463,3521,-0.475862068965649,0.149152542372213,-0.482758620689774,0.142372881355246,-0.482758620689785,0.155932203389179,-0.489655172413910,0.149152542372213,0.013559322033933,0.000000000000011,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033933,-0.000000000000010,2 +3404,3462,3464,3522,-0.475862068965660,0.162711864406145,-0.482758620689785,0.155932203389179,-0.482758620689796,0.169491525423110,-0.489655172413920,0.162711864406145,0.013559322033931,0.000000000000011,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448259,-0.013559322033931,-0.000000000000010,2 +3405,3463,3465,3523,-0.475862068965672,0.176271186440084,-0.482758620689796,0.169491525423110,-0.482758620689807,0.183050847457058,-0.489655172413930,0.176271186440084,0.013559322033948,0.000000000000011,-0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033947,-0.000000000000010,2 +3406,3464,3466,3524,-0.475862068965683,0.189830508474016,-0.482758620689807,0.183050847457058,-0.482758620689817,0.196610169490975,-0.489655172413941,0.189830508474016,0.013559322033917,0.000000000000012,0.000000000000000,-0.013793103448258,0.000000000000000,0.013793103448257,-0.013559322033917,-0.000000000000010,2 +3407,3465,3467,3525,-0.475862068965695,0.203389830507945,-0.482758620689817,0.196610169490975,-0.482758620689828,0.210169491524915,-0.489655172413951,0.203389830507945,0.013559322033940,0.000000000000011,-0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448255,-0.013559322033940,-0.000000000000010,2 +3408,3466,3468,3526,-0.475862068965706,0.216949152541877,-0.482758620689828,0.210169491524915,-0.482758620689839,0.223728813558839,-0.489655172413961,0.216949152541877,0.013559322033924,0.000000000000012,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448254,-0.013559322033924,-0.000000000000010,2 +3409,3467,3469,3527,-0.475862068965718,0.230508474575816,-0.482758620689839,0.223728813558839,-0.482758620689850,0.237288135592793,-0.489655172413971,0.230508474575816,0.013559322033954,0.000000000000011,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448253,-0.013559322033954,-0.000000000000010,2 +3410,3468,3470,3528,-0.475862068965729,0.244067796609748,-0.482758620689850,0.237288135592793,-0.482758620689861,0.250847457626703,-0.489655172413981,0.244067796609748,0.013559322033910,0.000000000000011,-0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033910,-0.000000000000010,2 +3411,3469,3471,3529,-0.475862068965740,0.257627118643680,-0.482758620689861,0.250847457626703,-0.482758620689871,0.264406779660657,-0.489655172413992,0.257627118643680,0.013559322033954,0.000000000000011,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000010,2 +3412,3470,3472,3530,-0.475862068965752,0.271186440677618,-0.482758620689871,0.264406779660657,-0.482758620689882,0.277966101694579,-0.489655172414002,0.271186440677618,0.013559322033922,0.000000000000012,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448249,-0.013559322033922,-0.000000000000010,2 +3413,3471,3473,3531,-0.475862068965763,0.284745762711550,-0.482758620689882,0.277966101694579,-0.482758620689893,0.291525423728521,-0.489655172414012,0.284745762711550,0.013559322033942,0.000000000000011,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448248,-0.013559322033942,-0.000000000000010,2 +3414,3472,3474,3532,-0.475862068965775,0.298305084745489,-0.482758620689893,0.291525423728521,-0.482758620689904,0.305084745762457,-0.489655172414022,0.298305084745489,0.013559322033936,0.000000000000011,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033936,-0.000000000000010,2 +3415,3473,3475,3533,-0.475862068965786,0.311864406779421,-0.482758620689904,0.305084745762457,-0.482758620689915,0.318644067796385,-0.489655172414032,0.311864406779421,0.013559322033928,0.000000000000012,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000010,2 +3416,3474,3476,3534,-0.475862068965798,0.325423728813361,-0.482758620689915,0.318644067796385,-0.482758620689925,0.332203389830336,-0.489655172414042,0.325423728813361,0.013559322033951,0.000000000000011,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033951,-0.000000000000010,2 +3417,3475,3477,3535,-0.475862068965809,0.338983050847293,-0.482758620689925,0.332203389830336,-0.482758620689936,0.345762711864250,-0.489655172414053,0.338983050847293,0.013559322033914,0.000000000000011,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000010,2 +3418,3476,3478,3536,-0.475862068965821,0.352542372881226,-0.482758620689936,0.345762711864250,-0.482758620689947,0.359322033898203,-0.489655172414063,0.352542372881227,0.013559322033954,0.000000000000011,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448242,-0.013559322033954,-0.000000000000010,2 +3419,3477,3479,3537,-0.475862068965832,0.366101694915162,-0.482758620689947,0.359322033898203,-0.482758620689958,0.372881355932121,-0.489655172414073,0.366101694915162,0.013559322033918,0.000000000000012,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000010,2 +3420,3478,3480,3538,-0.475862068965843,0.379661016949094,-0.482758620689958,0.372881355932121,-0.482758620689969,0.386440677966068,-0.489655172414083,0.379661016949094,0.013559322033946,0.000000000000011,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000010,2 +1948,3421,3479,3539,-0.482758620689980,0.400000000000000,-0.475862068965855,0.393220338983034,-0.482758620689969,0.386440677966068,-0.489655172414093,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000011,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000010,2 +3422,3482,3540,4260,-0.489655172413503,-0.393220338983059,-0.496551724137675,-0.386440677966118,-0.503448275861838,-0.393220338983059,-0.496551724137666,-0.400000000000000,0.013559322033882,0.000000000000010,-0.000000000000000,0.013793103448334,-0.013559322033882,-0.000000000000008,0.000000000000000,-0.013793103448336,2 +3423,3481,3483,3541,-0.489655172413513,-0.379661016949189,-0.496551724137675,-0.386440677966118,-0.496551724137684,-0.372881355932259,-0.503448275861846,-0.379661016949189,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448334,-0.000000000000000,0.013793103448333,-0.013559322033860,-0.000000000000009,2 +3424,3482,3484,3542,-0.489655172413523,-0.366101694915329,-0.496551724137684,-0.372881355932259,-0.496551724137694,-0.359322033898399,-0.503448275861855,-0.366101694915329,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448333,-0.000000000000000,0.013793103448331,-0.013559322033860,-0.000000000000008,2 +3425,3483,3485,3543,-0.489655172413533,-0.352542372881469,-0.496551724137694,-0.359322033898399,-0.496551724137703,-0.345762711864539,-0.503448275861863,-0.352542372881469,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448331,-0.000000000000000,0.013793103448329,-0.013559322033860,-0.000000000000008,2 +3426,3484,3486,3544,-0.489655172413544,-0.338983050847605,-0.496551724137703,-0.345762711864539,-0.496551724137712,-0.332203389830670,-0.503448275861872,-0.338983050847605,0.013559322033869,0.000000000000010,0.000000000000000,-0.013793103448329,-0.000000000000000,0.013793103448327,-0.013559322033869,-0.000000000000008,2 +3427,3485,3487,3545,-0.489655172413554,-0.325423728813729,-0.496551724137712,-0.332203389830670,-0.496551724137722,-0.318644067796787,-0.503448275861880,-0.325423728813729,0.013559322033883,0.000000000000010,0.000000000000000,-0.013793103448327,-0.000000000000000,0.013793103448326,-0.013559322033883,-0.000000000000009,2 +3428,3486,3488,3546,-0.489655172413564,-0.311864406779851,-0.496551724137722,-0.318644067796787,-0.496551724137731,-0.305084745762915,-0.503448275861889,-0.311864406779851,0.013559322033872,0.000000000000010,0.000000000000000,-0.013793103448326,0.000000000000000,0.013793103448325,-0.013559322033872,-0.000000000000009,2 +3429,3487,3489,3547,-0.489655172413574,-0.298305084745975,-0.496551724137731,-0.305084745762915,-0.496551724137741,-0.291525423729035,-0.503448275861898,-0.298305084745975,0.013559322033879,0.000000000000010,-0.000000000000000,-0.013793103448325,0.000000000000000,0.013793103448323,-0.013559322033879,-0.000000000000008,2 +3430,3488,3490,3548,-0.489655172413584,-0.284745762712106,-0.496551724137741,-0.291525423729035,-0.496551724137750,-0.277966101695176,-0.503448275861906,-0.284745762712105,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448323,-0.000000000000000,0.013793103448321,-0.013559322033860,-0.000000000000008,2 +3431,3489,3491,3549,-0.489655172413595,-0.271186440678246,-0.496551724137750,-0.277966101695176,-0.496551724137759,-0.264406779661316,-0.503448275861915,-0.271186440678246,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448321,-0.000000000000000,0.013793103448319,-0.013559322033860,-0.000000000000008,2 +3432,3490,3492,3550,-0.489655172413605,-0.257627118644386,-0.496551724137759,-0.264406779661316,-0.496551724137769,-0.250847457627456,-0.503448275861923,-0.257627118644386,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448319,-0.000000000000000,0.013793103448318,-0.013559322033860,-0.000000000000009,2 +3433,3491,3493,3551,-0.489655172413615,-0.244067796610526,-0.496551724137769,-0.250847457627456,-0.496551724137778,-0.237288135593597,-0.503448275861932,-0.244067796610526,0.013559322033859,0.000000000000010,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448316,-0.013559322033859,-0.000000000000008,2 +3434,3492,3494,3552,-0.489655172413625,-0.230508474576667,-0.496551724137778,-0.237288135593597,-0.496551724137787,-0.223728813559737,-0.503448275861940,-0.230508474576667,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448316,-0.000000000000000,0.013793103448315,-0.013559322033860,-0.000000000000009,2 +3435,3493,3495,3553,-0.489655172413635,-0.216949152542807,-0.496551724137787,-0.223728813559737,-0.496551724137797,-0.210169491525877,-0.503448275861949,-0.216949152542807,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448313,-0.013559322033860,-0.000000000000009,2 +3436,3494,3496,3554,-0.489655172413645,-0.203389830508947,-0.496551724137797,-0.210169491525877,-0.496551724137806,-0.196610169492017,-0.503448275861957,-0.203389830508947,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448311,-0.013559322033860,-0.000000000000008,2 +3437,3495,3497,3555,-0.489655172413656,-0.189830508475087,-0.496551724137806,-0.196610169492017,-0.496551724137815,-0.183050847458158,-0.503448275861966,-0.189830508475088,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448309,-0.013559322033860,-0.000000000000009,2 +3438,3496,3498,3556,-0.489655172413666,-0.176271186441228,-0.496551724137815,-0.183050847458158,-0.496551724137825,-0.169491525424298,-0.503448275861974,-0.176271186441228,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448308,-0.013559322033860,-0.000000000000008,2 +3439,3497,3499,3557,-0.489655172413676,-0.162711864407368,-0.496551724137825,-0.169491525424298,-0.496551724137834,-0.155932203390438,-0.503448275861983,-0.162711864407368,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448306,-0.013559322033860,-0.000000000000008,2 +3440,3498,3500,3558,-0.489655172413686,-0.149152542373509,-0.496551724137834,-0.155932203390438,-0.496551724137843,-0.142372881356579,-0.503448275861991,-0.149152542373509,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448304,-0.013559322033860,-0.000000000000009,2 +3441,3499,3501,3559,-0.489655172413696,-0.135593220339649,-0.496551724137843,-0.142372881356579,-0.496551724137853,-0.128813559322719,-0.503448275862000,-0.135593220339649,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448303,-0.013559322033860,-0.000000000000008,2 +3442,3500,3502,3560,-0.489655172413706,-0.122033898305789,-0.496551724137853,-0.128813559322719,-0.496551724137862,-0.115254237288859,-0.503448275862008,-0.122033898305789,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448301,-0.013559322033860,-0.000000000000008,2 +3443,3501,3503,3561,-0.489655172413717,-0.108474576271933,-0.496551724137862,-0.115254237288859,-0.496551724137871,-0.101694915255008,-0.503448275862017,-0.108474576271933,0.013559322033852,0.000000000000010,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448299,-0.013559322033852,-0.000000000000009,2 +3444,3502,3504,3562,-0.489655172413727,-0.094915254238085,-0.496551724137871,-0.101694915255008,-0.496551724137881,-0.088135593221162,-0.503448275862025,-0.094915254238085,0.013559322033846,0.000000000000010,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033846,-0.000000000000008,2 +3445,3503,3505,3563,-0.489655172413737,-0.081355932204232,-0.496551724137881,-0.088135593221162,-0.496551724137890,-0.074576271187302,-0.503448275862034,-0.081355932204232,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000008,2 +3446,3504,3506,3564,-0.489655172413747,-0.067796610170372,-0.496551724137890,-0.074576271187302,-0.496551724137899,-0.061016949153442,-0.503448275862042,-0.067796610170372,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000008,2 +3447,3505,3507,3565,-0.489655172413757,-0.054237288136513,-0.496551724137899,-0.061016949153442,-0.496551724137909,-0.047457627119583,-0.503448275862051,-0.054237288136513,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000009,2 +3448,3506,3508,3566,-0.489655172413768,-0.040677966102653,-0.496551724137909,-0.047457627119583,-0.496551724137918,-0.033898305085723,-0.503448275862059,-0.040677966102653,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448293,0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000009,2 +3449,3507,3509,3567,-0.489655172413778,-0.027118644068793,-0.496551724137918,-0.033898305085723,-0.496551724137927,-0.020338983051863,-0.503448275862068,-0.027118644068793,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000008,2 +3450,3508,3510,3568,-0.489655172413788,-0.013559322034933,-0.496551724137927,-0.020338983051863,-0.496551724137937,-0.006779661018004,-0.503448275862076,-0.013559322034934,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448288,-0.013559322033860,-0.000000000000008,2 +3451,3509,3511,3569,-0.489655172413798,-0.000000000001056,-0.496551724137937,-0.006779661018004,-0.496551724137946,0.006779661015891,-0.503448275862085,-0.000000000001056,0.013559322033895,0.000000000000010,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448286,-0.013559322033895,-0.000000000000008,2 +3452,3510,3512,3570,-0.489655172413808,0.013559322032862,-0.496551724137946,0.006779661015891,-0.496551724137956,0.020338983049833,-0.503448275862093,0.013559322032862,0.013559322033941,0.000000000000010,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448284,-0.013559322033941,-0.000000000000009,2 +3453,3511,3513,3571,-0.489655172413818,0.027118644066798,-0.496551724137956,0.020338983049833,-0.496551724137965,0.033898305083763,-0.503448275862102,0.027118644066798,0.013559322033930,0.000000000000010,-0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000008,2 +3454,3512,3514,3572,-0.489655172413829,0.040677966100731,-0.496551724137965,0.033898305083763,-0.496551724137974,0.047457627117699,-0.503448275862110,0.040677966100731,0.013559322033937,0.000000000000010,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448281,-0.013559322033937,-0.000000000000009,2 +3455,3513,3515,3573,-0.489655172413839,0.054237288134667,-0.496551724137974,0.047457627117699,-0.496551724137984,0.061016949151634,-0.503448275862119,0.054237288134667,0.013559322033935,0.000000000000010,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448279,-0.013559322033935,-0.000000000000008,2 +3456,3514,3516,3574,-0.489655172413849,0.067796610168599,-0.496551724137984,0.061016949151634,-0.496551724137993,0.074576271185564,-0.503448275862127,0.067796610168599,0.013559322033930,0.000000000000010,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448278,-0.013559322033930,-0.000000000000008,2 +3457,3515,3517,3575,-0.489655172413859,0.081355932202535,-0.496551724137993,0.074576271185564,-0.496551724138002,0.088135593219506,-0.503448275862136,0.081355932202535,0.013559322033941,0.000000000000010,-0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448276,-0.013559322033941,-0.000000000000008,2 +3458,3516,3518,3576,-0.489655172413869,0.094915254236471,-0.496551724138002,0.088135593219506,-0.496551724138012,0.101694915253436,-0.503448275862144,0.094915254236471,0.013559322033930,0.000000000000010,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448274,-0.013559322033930,-0.000000000000009,2 +3459,3517,3519,3577,-0.489655172413880,0.108474576270409,-0.496551724138012,0.101694915253436,-0.496551724138021,0.115254237287382,-0.503448275862153,0.108474576270409,0.013559322033946,0.000000000000010,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448273,-0.013559322033946,-0.000000000000008,2 +3460,3518,3520,3578,-0.489655172413890,0.122033898304341,-0.496551724138021,0.115254237287382,-0.496551724138030,0.128813559321301,-0.503448275862162,0.122033898304341,0.013559322033919,0.000000000000010,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448271,-0.013559322033919,-0.000000000000009,2 +3461,3519,3521,3579,-0.489655172413900,0.135593220338273,-0.496551724138030,0.128813559321301,-0.496551724138040,0.142372881355246,-0.503448275862170,0.135593220338273,0.013559322033945,0.000000000000010,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448269,-0.013559322033945,-0.000000000000008,2 +3462,3520,3522,3580,-0.489655172413910,0.149152542372213,-0.496551724138040,0.142372881355246,-0.496551724138049,0.155932203389179,-0.503448275862179,0.149152542372213,0.013559322033933,0.000000000000010,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033933,-0.000000000000008,2 +3463,3521,3523,3581,-0.489655172413920,0.162711864406145,-0.496551724138049,0.155932203389179,-0.496551724138058,0.169491525423110,-0.503448275862187,0.162711864406145,0.013559322033931,0.000000000000010,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448266,-0.013559322033931,-0.000000000000008,2 +3464,3522,3524,3582,-0.489655172413930,0.176271186440084,-0.496551724138058,0.169491525423110,-0.496551724138068,0.183050847457058,-0.503448275862196,0.176271186440084,0.013559322033947,0.000000000000010,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448264,-0.013559322033947,-0.000000000000009,2 +3465,3523,3525,3583,-0.489655172413941,0.189830508474016,-0.496551724138068,0.183050847457058,-0.496551724138077,0.196610169490975,-0.503448275862204,0.189830508474016,0.013559322033917,0.000000000000010,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033917,-0.000000000000008,2 +3466,3524,3526,3584,-0.489655172413951,0.203389830507945,-0.496551724138077,0.196610169490975,-0.496551724138086,0.210169491524915,-0.503448275862213,0.203389830507945,0.013559322033940,0.000000000000010,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448261,-0.013559322033940,-0.000000000000009,2 +3467,3525,3527,3585,-0.489655172413961,0.216949152541877,-0.496551724138086,0.210169491524915,-0.496551724138096,0.223728813558839,-0.503448275862221,0.216949152541877,0.013559322033924,0.000000000000010,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448259,-0.013559322033924,-0.000000000000008,2 +3468,3526,3528,3586,-0.489655172413971,0.230508474575816,-0.496551724138096,0.223728813558839,-0.496551724138105,0.237288135592793,-0.503448275862230,0.230508474575816,0.013559322033954,0.000000000000010,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033954,-0.000000000000008,2 +3469,3527,3529,3587,-0.489655172413981,0.244067796609748,-0.496551724138105,0.237288135592793,-0.496551724138115,0.250847457626703,-0.503448275862238,0.244067796609748,0.013559322033910,0.000000000000010,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448256,-0.013559322033910,-0.000000000000009,2 +3470,3528,3530,3588,-0.489655172413992,0.257627118643680,-0.496551724138115,0.250847457626703,-0.496551724138124,0.264406779660657,-0.503448275862247,0.257627118643680,0.013559322033954,0.000000000000010,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448254,-0.013559322033954,-0.000000000000008,2 +3471,3529,3531,3589,-0.489655172414002,0.271186440677618,-0.496551724138124,0.264406779660657,-0.496551724138133,0.277966101694579,-0.503448275862255,0.271186440677618,0.013559322033922,0.000000000000010,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448253,-0.013559322033922,-0.000000000000009,2 +3472,3530,3532,3590,-0.489655172414012,0.284745762711550,-0.496551724138133,0.277966101694579,-0.496551724138142,0.291525423728521,-0.503448275862264,0.284745762711550,0.013559322033942,0.000000000000010,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448251,-0.013559322033942,-0.000000000000008,2 +3473,3531,3533,3591,-0.489655172414022,0.298305084745489,-0.496551724138142,0.291525423728521,-0.496551724138152,0.305084745762457,-0.503448275862272,0.298305084745489,0.013559322033936,0.000000000000010,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448249,-0.013559322033936,-0.000000000000008,2 +3474,3532,3534,3592,-0.489655172414032,0.311864406779421,-0.496551724138152,0.305084745762457,-0.496551724138161,0.318644067796385,-0.503448275862281,0.311864406779421,0.013559322033928,0.000000000000010,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448248,-0.013559322033928,-0.000000000000008,2 +3475,3533,3535,3593,-0.489655172414042,0.325423728813361,-0.496551724138161,0.318644067796385,-0.496551724138170,0.332203389830336,-0.503448275862289,0.325423728813361,0.013559322033951,0.000000000000010,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448246,-0.013559322033951,-0.000000000000008,2 +3476,3534,3536,3594,-0.489655172414053,0.338983050847293,-0.496551724138170,0.332203389830336,-0.496551724138180,0.345762711864250,-0.503448275862298,0.338983050847293,0.013559322033914,0.000000000000010,-0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448244,-0.013559322033914,-0.000000000000009,2 +3477,3535,3537,3595,-0.489655172414063,0.352542372881227,-0.496551724138180,0.345762711864250,-0.496551724138189,0.359322033898203,-0.503448275862306,0.352542372881226,0.013559322033954,0.000000000000010,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033954,-0.000000000000009,2 +3478,3536,3538,3596,-0.489655172414073,0.366101694915162,-0.496551724138189,0.359322033898203,-0.496551724138199,0.372881355932121,-0.503448275862315,0.366101694915162,0.013559322033918,0.000000000000010,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448241,-0.013559322033918,-0.000000000000009,2 +3479,3537,3539,3597,-0.489655172414083,0.379661016949094,-0.496551724138199,0.372881355932121,-0.496551724138208,0.386440677966068,-0.503448275862323,0.379661016949094,0.013559322033946,0.000000000000010,0.000000000000000,-0.013793103448241,0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000008,2 +1934,3480,3538,3598,-0.496551724138217,0.400000000000000,-0.489655172414093,0.393220338983034,-0.496551724138208,0.386440677966068,-0.503448275862332,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000010,-0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000009,2 +3481,3541,3599,4274,-0.503448275861838,-0.393220338983059,-0.510344827585997,-0.386440677966118,-0.517241379310149,-0.393220338983059,-0.510344827585989,-0.400000000000000,0.013559322033882,0.000000000000008,-0.000000000000000,0.013793103448310,-0.013559322033882,-0.000000000000007,0.000000000000000,-0.013793103448311,2 +3482,3540,3542,3600,-0.503448275861846,-0.379661016949189,-0.510344827585997,-0.386440677966118,-0.510344827586005,-0.372881355932259,-0.517241379310156,-0.379661016949189,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448309,-0.013559322033860,-0.000000000000008,2 +3483,3541,3543,3601,-0.503448275861855,-0.366101694915329,-0.510344827586005,-0.372881355932259,-0.510344827586013,-0.359322033898399,-0.517241379310163,-0.366101694915329,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448308,-0.013559322033860,-0.000000000000007,2 +3484,3542,3544,3602,-0.503448275861863,-0.352542372881469,-0.510344827586013,-0.359322033898399,-0.510344827586021,-0.345762711864539,-0.517241379310171,-0.352542372881469,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448307,-0.013559322033860,-0.000000000000007,2 +3485,3543,3545,3603,-0.503448275861872,-0.338983050847605,-0.510344827586021,-0.345762711864539,-0.510344827586029,-0.332203389830670,-0.517241379310178,-0.338983050847605,0.013559322033869,0.000000000000008,-0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448305,-0.013559322033869,-0.000000000000007,2 +3486,3544,3546,3604,-0.503448275861880,-0.325423728813729,-0.510344827586029,-0.332203389830670,-0.510344827586037,-0.318644067796787,-0.517241379310185,-0.325423728813729,0.013559322033883,0.000000000000009,-0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448304,-0.013559322033883,-0.000000000000007,2 +3487,3545,3547,3605,-0.503448275861889,-0.311864406779851,-0.510344827586037,-0.318644067796787,-0.510344827586045,-0.305084745762915,-0.517241379310192,-0.311864406779851,0.013559322033872,0.000000000000009,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448303,-0.013559322033872,-0.000000000000007,2 +3488,3546,3548,3606,-0.503448275861898,-0.298305084745975,-0.510344827586045,-0.305084745762915,-0.510344827586053,-0.291525423729035,-0.517241379310200,-0.298305084745975,0.013559322033879,0.000000000000008,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448301,-0.013559322033879,-0.000000000000007,2 +3489,3547,3549,3607,-0.503448275861906,-0.284745762712105,-0.510344827586053,-0.291525423729035,-0.510344827586060,-0.277966101695176,-0.517241379310207,-0.284745762712106,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448300,-0.013559322033860,-0.000000000000007,2 +3490,3548,3550,3608,-0.503448275861915,-0.271186440678246,-0.510344827586060,-0.277966101695176,-0.510344827586068,-0.264406779661316,-0.517241379310214,-0.271186440678246,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448299,-0.013559322033860,-0.000000000000007,2 +3491,3549,3551,3609,-0.503448275861923,-0.257627118644386,-0.510344827586068,-0.264406779661316,-0.510344827586076,-0.250847457627456,-0.517241379310221,-0.257627118644386,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000007,2 +3492,3550,3552,3610,-0.503448275861932,-0.244067796610526,-0.510344827586076,-0.250847457627456,-0.510344827586084,-0.237288135593597,-0.517241379310229,-0.244067796610526,0.013559322033859,0.000000000000008,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000007,2 +3493,3551,3553,3611,-0.503448275861940,-0.230508474576667,-0.510344827586084,-0.237288135593597,-0.510344827586092,-0.223728813559737,-0.517241379310236,-0.230508474576667,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000007,2 +3494,3552,3554,3612,-0.503448275861949,-0.216949152542807,-0.510344827586092,-0.223728813559737,-0.510344827586100,-0.210169491525877,-0.517241379310243,-0.216949152542807,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000007,2 +3495,3553,3555,3613,-0.503448275861957,-0.203389830508947,-0.510344827586100,-0.210169491525877,-0.510344827586108,-0.196610169492017,-0.517241379310250,-0.203389830508947,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000007,2 +3496,3554,3556,3614,-0.503448275861966,-0.189830508475088,-0.510344827586108,-0.196610169492017,-0.510344827586116,-0.183050847458158,-0.517241379310258,-0.189830508475088,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000007,2 +3497,3555,3557,3615,-0.503448275861974,-0.176271186441228,-0.510344827586116,-0.183050847458158,-0.510344827586124,-0.169491525424298,-0.517241379310265,-0.176271186441228,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000007,2 +3498,3556,3558,3616,-0.503448275861983,-0.162711864407368,-0.510344827586124,-0.169491525424298,-0.510344827586131,-0.155932203390438,-0.517241379310272,-0.162711864407368,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000007,2 +3499,3557,3559,3617,-0.503448275861991,-0.149152542373509,-0.510344827586131,-0.155932203390438,-0.510344827586139,-0.142372881356579,-0.517241379310280,-0.149152542373509,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448288,-0.013559322033860,-0.000000000000007,2 +3500,3558,3560,3618,-0.503448275862000,-0.135593220339649,-0.510344827586139,-0.142372881356579,-0.510344827586147,-0.128813559322719,-0.517241379310287,-0.135593220339649,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000007,2 +3501,3559,3561,3619,-0.503448275862008,-0.122033898305789,-0.510344827586147,-0.128813559322719,-0.510344827586155,-0.115254237288859,-0.517241379310294,-0.122033898305789,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000007,2 +3502,3560,3562,3620,-0.503448275862017,-0.108474576271933,-0.510344827586155,-0.115254237288859,-0.510344827586163,-0.101694915255008,-0.517241379310301,-0.108474576271933,0.013559322033852,0.000000000000009,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033852,-0.000000000000007,2 +3503,3561,3563,3621,-0.503448275862025,-0.094915254238085,-0.510344827586163,-0.101694915255008,-0.510344827586171,-0.088135593221162,-0.517241379310309,-0.094915254238085,0.013559322033846,0.000000000000008,0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448283,-0.013559322033846,-0.000000000000007,2 +3504,3562,3564,3622,-0.503448275862034,-0.081355932204232,-0.510344827586171,-0.088135593221162,-0.510344827586179,-0.074576271187302,-0.517241379310316,-0.081355932204232,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000007,2 +3505,3563,3565,3623,-0.503448275862042,-0.067796610170372,-0.510344827586179,-0.074576271187302,-0.510344827586187,-0.061016949153442,-0.517241379310323,-0.067796610170372,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000007,2 +3506,3564,3566,3624,-0.503448275862051,-0.054237288136513,-0.510344827586187,-0.061016949153442,-0.510344827586195,-0.047457627119583,-0.517241379310330,-0.054237288136513,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000007,2 +3507,3565,3567,3625,-0.503448275862059,-0.040677966102653,-0.510344827586195,-0.047457627119583,-0.510344827586203,-0.033898305085723,-0.517241379310338,-0.040677966102653,0.013559322033860,0.000000000000009,-0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000007,2 +3508,3566,3568,3626,-0.503448275862068,-0.027118644068793,-0.510344827586203,-0.033898305085723,-0.510344827586210,-0.020338983051863,-0.517241379310345,-0.027118644068793,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000007,2 +3509,3567,3569,3627,-0.503448275862076,-0.013559322034934,-0.510344827586210,-0.020338983051863,-0.510344827586218,-0.006779661018004,-0.517241379310352,-0.013559322034934,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000007,2 +3510,3568,3570,3628,-0.503448275862085,-0.000000000001056,-0.510344827586218,-0.006779661018004,-0.510344827586226,0.006779661015891,-0.517241379310359,-0.000000000001056,0.013559322033895,0.000000000000008,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000008,2 +3511,3569,3571,3629,-0.503448275862093,0.013559322032862,-0.510344827586226,0.006779661015891,-0.510344827586234,0.020338983049833,-0.517241379310367,0.013559322032862,0.013559322033941,0.000000000000009,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448273,-0.013559322033941,-0.000000000000007,2 +3512,3570,3572,3630,-0.503448275862102,0.027118644066798,-0.510344827586234,0.020338983049833,-0.510344827586242,0.033898305083763,-0.517241379310374,0.027118644066798,0.013559322033930,0.000000000000008,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448271,-0.013559322033930,-0.000000000000007,2 +3513,3571,3573,3631,-0.503448275862110,0.040677966100731,-0.510344827586242,0.033898305083763,-0.510344827586250,0.047457627117699,-0.517241379310381,0.040677966100731,0.013559322033937,0.000000000000009,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448270,-0.013559322033937,-0.000000000000007,2 +3514,3572,3574,3632,-0.503448275862119,0.054237288134667,-0.510344827586250,0.047457627117699,-0.510344827586258,0.061016949151634,-0.517241379310389,0.054237288134667,0.013559322033935,0.000000000000008,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033935,-0.000000000000007,2 +3515,3573,3575,3633,-0.503448275862127,0.067796610168599,-0.510344827586258,0.061016949151634,-0.510344827586266,0.074576271185564,-0.517241379310396,0.067796610168599,0.013559322033930,0.000000000000008,0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448268,-0.013559322033930,-0.000000000000007,2 +3516,3574,3576,3634,-0.503448275862136,0.081355932202535,-0.510344827586266,0.074576271185564,-0.510344827586273,0.088135593219506,-0.517241379310403,0.081355932202535,0.013559322033941,0.000000000000008,-0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033941,-0.000000000000007,2 +3517,3575,3577,3635,-0.503448275862144,0.094915254236471,-0.510344827586273,0.088135593219506,-0.510344827586281,0.101694915253436,-0.517241379310410,0.094915254236471,0.013559322033930,0.000000000000009,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448265,-0.013559322033930,-0.000000000000007,2 +3518,3576,3578,3636,-0.503448275862153,0.108474576270409,-0.510344827586281,0.101694915253436,-0.510344827586289,0.115254237287382,-0.517241379310418,0.108474576270409,0.013559322033946,0.000000000000008,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448264,-0.013559322033946,-0.000000000000008,2 +3519,3577,3579,3637,-0.503448275862162,0.122033898304341,-0.510344827586289,0.115254237287382,-0.510344827586297,0.128813559321301,-0.517241379310425,0.122033898304341,0.013559322033919,0.000000000000009,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033919,-0.000000000000007,2 +3520,3578,3580,3638,-0.503448275862170,0.135593220338273,-0.510344827586297,0.128813559321301,-0.510344827586305,0.142372881355246,-0.517241379310432,0.135593220338273,0.013559322033945,0.000000000000008,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448261,-0.013559322033945,-0.000000000000007,2 +3521,3579,3581,3639,-0.503448275862179,0.149152542372213,-0.510344827586305,0.142372881355246,-0.510344827586313,0.155932203389179,-0.517241379310439,0.149152542372213,0.013559322033933,0.000000000000008,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448260,-0.013559322033933,-0.000000000000007,2 +3522,3580,3582,3640,-0.503448275862187,0.162711864406145,-0.510344827586313,0.155932203389179,-0.510344827586321,0.169491525423110,-0.517241379310447,0.162711864406145,0.013559322033931,0.000000000000008,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448259,-0.013559322033931,-0.000000000000007,2 +3523,3581,3583,3641,-0.503448275862196,0.176271186440084,-0.510344827586321,0.169491525423110,-0.510344827586329,0.183050847457058,-0.517241379310454,0.176271186440084,0.013559322033947,0.000000000000009,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033947,-0.000000000000007,2 +3524,3582,3584,3642,-0.503448275862204,0.189830508474016,-0.510344827586329,0.183050847457058,-0.510344827586337,0.196610169490975,-0.517241379310461,0.189830508474016,0.013559322033917,0.000000000000008,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033917,-0.000000000000007,2 +3525,3583,3585,3643,-0.503448275862213,0.203389830507945,-0.510344827586337,0.196610169490975,-0.510344827586344,0.210169491524915,-0.517241379310468,0.203389830507945,0.013559322033940,0.000000000000009,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448255,-0.013559322033940,-0.000000000000007,2 +3526,3584,3586,3644,-0.503448275862221,0.216949152541877,-0.510344827586344,0.210169491524915,-0.510344827586352,0.223728813558839,-0.517241379310476,0.216949152541877,0.013559322033924,0.000000000000008,0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448254,-0.013559322033924,-0.000000000000007,2 +3527,3585,3587,3645,-0.503448275862230,0.230508474575816,-0.510344827586352,0.223728813558839,-0.510344827586360,0.237288135592793,-0.517241379310483,0.230508474575816,0.013559322033954,0.000000000000008,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448253,-0.013559322033954,-0.000000000000007,2 +3528,3586,3588,3646,-0.503448275862238,0.244067796609748,-0.510344827586360,0.237288135592793,-0.510344827586368,0.250847457626703,-0.517241379310490,0.244067796609748,0.013559322033910,0.000000000000009,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448251,-0.013559322033910,-0.000000000000007,2 +3529,3587,3589,3647,-0.503448275862247,0.257627118643680,-0.510344827586368,0.250847457626703,-0.510344827586376,0.264406779660657,-0.517241379310497,0.257627118643680,0.013559322033954,0.000000000000008,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000007,2 +3530,3588,3590,3648,-0.503448275862255,0.271186440677618,-0.510344827586376,0.264406779660657,-0.510344827586384,0.277966101694579,-0.517241379310505,0.271186440677618,0.013559322033922,0.000000000000009,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448249,-0.013559322033922,-0.000000000000007,2 +3531,3589,3591,3649,-0.503448275862264,0.284745762711550,-0.510344827586384,0.277966101694579,-0.510344827586392,0.291525423728521,-0.517241379310512,0.284745762711550,0.013559322033942,0.000000000000008,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448248,-0.013559322033942,-0.000000000000007,2 +3532,3590,3592,3650,-0.503448275862272,0.298305084745489,-0.510344827586392,0.291525423728521,-0.510344827586400,0.305084745762457,-0.517241379310519,0.298305084745489,0.013559322033936,0.000000000000008,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033936,-0.000000000000007,2 +3533,3591,3593,3651,-0.503448275862281,0.311864406779421,-0.510344827586400,0.305084745762457,-0.510344827586408,0.318644067796385,-0.517241379310527,0.311864406779421,0.013559322033928,0.000000000000008,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000007,2 +3534,3592,3594,3652,-0.503448275862289,0.325423728813361,-0.510344827586408,0.318644067796385,-0.510344827586415,0.332203389830336,-0.517241379310534,0.325423728813361,0.013559322033951,0.000000000000008,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033950,-0.000000000000007,2 +3535,3593,3595,3653,-0.503448275862298,0.338983050847293,-0.510344827586415,0.332203389830336,-0.510344827586423,0.345762711864250,-0.517241379310541,0.338983050847293,0.013559322033914,0.000000000000009,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000007,2 +3536,3594,3596,3654,-0.503448275862306,0.352542372881226,-0.510344827586423,0.345762711864250,-0.510344827586431,0.359322033898203,-0.517241379310548,0.352542372881227,0.013559322033954,0.000000000000009,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000007,2 +3537,3595,3597,3655,-0.503448275862315,0.366101694915162,-0.510344827586431,0.359322033898203,-0.510344827586439,0.372881355932121,-0.517241379310556,0.366101694915162,0.013559322033918,0.000000000000009,-0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000007,2 +3538,3596,3598,3656,-0.503448275862323,0.379661016949094,-0.510344827586439,0.372881355932121,-0.510344827586447,0.386440677966068,-0.517241379310563,0.379661016949094,0.013559322033946,0.000000000000008,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000007,2 +1920,3539,3597,3657,-0.510344827586455,0.400000000000000,-0.503448275862332,0.393220338983034,-0.510344827586447,0.386440677966068,-0.517241379310570,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000009,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000007,2 +3540,3600,3658,4288,-0.517241379310149,-0.393220338983059,-0.524137931034306,-0.386440677966118,-0.531034482758456,-0.393220338983059,-0.524137931034299,-0.400000000000000,0.013559322033882,0.000000000000007,-0.000000000000000,0.013793103448307,-0.013559322033882,-0.000000000000006,0.000000000000000,-0.013793103448308,2 +3541,3599,3601,3659,-0.517241379310156,-0.379661016949189,-0.524137931034306,-0.386440677966118,-0.524137931034312,-0.372881355932259,-0.531034482758462,-0.379661016949189,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448305,-0.013559322033860,-0.000000000000006,2 +3542,3600,3602,3660,-0.517241379310163,-0.366101694915329,-0.524137931034312,-0.372881355932259,-0.524137931034319,-0.359322033898399,-0.531034482758468,-0.366101694915329,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448304,-0.013559322033859,-0.000000000000006,2 +3543,3601,3603,3661,-0.517241379310171,-0.352542372881469,-0.524137931034319,-0.359322033898399,-0.524137931034326,-0.345762711864539,-0.531034482758474,-0.352542372881469,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448303,-0.013559322033860,-0.000000000000006,2 +3544,3602,3604,3662,-0.517241379310178,-0.338983050847605,-0.524137931034326,-0.345762711864539,-0.524137931034332,-0.332203389830670,-0.531034482758480,-0.338983050847605,0.013559322033869,0.000000000000007,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448301,-0.013559322033869,-0.000000000000006,2 +3545,3603,3605,3663,-0.517241379310185,-0.325423728813729,-0.524137931034332,-0.332203389830670,-0.524137931034339,-0.318644067796787,-0.531034482758486,-0.325423728813729,0.013559322033883,0.000000000000007,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448301,-0.013559322033883,-0.000000000000006,2 +3546,3604,3606,3664,-0.517241379310192,-0.311864406779851,-0.524137931034339,-0.318644067796787,-0.524137931034346,-0.305084745762915,-0.531034482758492,-0.311864406779851,0.013559322033872,0.000000000000007,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448299,-0.013559322033872,-0.000000000000006,2 +3547,3605,3607,3665,-0.517241379310200,-0.298305084745975,-0.524137931034346,-0.305084745762915,-0.524137931034352,-0.291525423729035,-0.531034482758498,-0.298305084745975,0.013559322033879,0.000000000000007,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033879,-0.000000000000006,2 +3548,3606,3608,3666,-0.517241379310207,-0.284745762712106,-0.524137931034352,-0.291525423729035,-0.524137931034359,-0.277966101695176,-0.531034482758504,-0.284745762712106,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000006,2 +3549,3607,3609,3667,-0.517241379310214,-0.271186440678246,-0.524137931034359,-0.277966101695176,-0.524137931034366,-0.264406779661316,-0.531034482758511,-0.271186440678246,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000006,2 +3550,3608,3610,3668,-0.517241379310221,-0.257627118644386,-0.524137931034366,-0.264406779661316,-0.524137931034372,-0.250847457627456,-0.531034482758517,-0.257627118644386,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000006,2 +3551,3609,3611,3669,-0.517241379310229,-0.244067796610526,-0.524137931034372,-0.250847457627456,-0.524137931034379,-0.237288135593597,-0.531034482758523,-0.244067796610526,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448295,0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000006,2 +3552,3610,3612,3670,-0.517241379310236,-0.230508474576667,-0.524137931034379,-0.237288135593597,-0.524137931034386,-0.223728813559737,-0.531034482758529,-0.230508474576667,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448293,0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000006,2 +3553,3611,3613,3671,-0.517241379310243,-0.216949152542807,-0.524137931034386,-0.223728813559737,-0.524137931034393,-0.210169491525877,-0.531034482758535,-0.216949152542807,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000006,2 +3554,3612,3614,3672,-0.517241379310250,-0.203389830508947,-0.524137931034393,-0.210169491525877,-0.524137931034399,-0.196610169492017,-0.531034482758541,-0.203389830508947,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000006,2 +3555,3613,3615,3673,-0.517241379310258,-0.189830508475088,-0.524137931034399,-0.196610169492017,-0.524137931034406,-0.183050847458158,-0.531034482758547,-0.189830508475088,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000006,2 +3556,3614,3616,3674,-0.517241379310265,-0.176271186441228,-0.524137931034406,-0.183050847458158,-0.524137931034412,-0.169491525424298,-0.531034482758553,-0.176271186441228,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000006,2 +3557,3615,3617,3675,-0.517241379310272,-0.162711864407368,-0.524137931034412,-0.169491525424298,-0.524137931034419,-0.155932203390438,-0.531034482758559,-0.162711864407368,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000006,2 +3558,3616,3618,3676,-0.517241379310280,-0.149152542373509,-0.524137931034419,-0.155932203390438,-0.524137931034426,-0.142372881356579,-0.531034482758565,-0.149152542373509,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000006,2 +3559,3617,3619,3677,-0.517241379310287,-0.135593220339649,-0.524137931034426,-0.142372881356579,-0.524137931034432,-0.128813559322719,-0.531034482758571,-0.135593220339649,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000006,2 +3560,3618,3620,3678,-0.517241379310294,-0.122033898305789,-0.524137931034432,-0.128813559322719,-0.524137931034439,-0.115254237288859,-0.531034482758578,-0.122033898305789,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000006,2 +3561,3619,3621,3679,-0.517241379310301,-0.108474576271933,-0.524137931034439,-0.115254237288859,-0.524137931034446,-0.101694915255008,-0.531034482758584,-0.108474576271933,0.013559322033852,0.000000000000007,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448281,-0.013559322033852,-0.000000000000006,2 +3562,3620,3622,3680,-0.517241379310309,-0.094915254238085,-0.524137931034446,-0.101694915255008,-0.524137931034452,-0.088135593221162,-0.531034482758590,-0.094915254238085,0.013559322033846,0.000000000000007,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448280,-0.013559322033846,-0.000000000000006,2 +3563,3621,3623,3681,-0.517241379310316,-0.081355932204232,-0.524137931034452,-0.088135593221162,-0.524137931034459,-0.074576271187302,-0.531034482758596,-0.081355932204232,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000006,2 +3564,3622,3624,3682,-0.517241379310323,-0.067796610170372,-0.524137931034459,-0.074576271187302,-0.524137931034466,-0.061016949153442,-0.531034482758602,-0.067796610170372,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000006,2 +3565,3623,3625,3683,-0.517241379310330,-0.054237288136513,-0.524137931034466,-0.061016949153442,-0.524137931034472,-0.047457627119583,-0.531034482758608,-0.054237288136513,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000006,2 +3566,3624,3626,3684,-0.517241379310338,-0.040677966102653,-0.524137931034472,-0.047457627119583,-0.524137931034479,-0.033898305085723,-0.531034482758614,-0.040677966102653,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000006,2 +3567,3625,3627,3685,-0.517241379310345,-0.027118644068793,-0.524137931034479,-0.033898305085723,-0.524137931034486,-0.020338983051863,-0.531034482758620,-0.027118644068793,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000006,2 +3568,3626,3628,3686,-0.517241379310352,-0.013559322034934,-0.524137931034486,-0.020338983051863,-0.524137931034492,-0.006779661018004,-0.531034482758626,-0.013559322034934,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000006,2 +3569,3627,3629,3687,-0.517241379310359,-0.000000000001056,-0.524137931034492,-0.006779661018004,-0.524137931034499,0.006779661015891,-0.531034482758632,-0.000000000001056,0.013559322033895,0.000000000000008,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448272,-0.013559322033895,-0.000000000000006,2 +3570,3628,3630,3688,-0.517241379310367,0.013559322032862,-0.524137931034499,0.006779661015891,-0.524137931034506,0.020338983049833,-0.531034482758638,0.013559322032862,0.013559322033941,0.000000000000007,-0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448271,-0.013559322033941,-0.000000000000006,2 +3571,3629,3631,3689,-0.517241379310374,0.027118644066798,-0.524137931034506,0.020338983049833,-0.524137931034512,0.033898305083763,-0.531034482758644,0.027118644066798,0.013559322033930,0.000000000000007,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448270,-0.013559322033930,-0.000000000000006,2 +3572,3630,3632,3690,-0.517241379310381,0.040677966100731,-0.524137931034512,0.033898305083763,-0.524137931034519,0.047457627117699,-0.531034482758650,0.040677966100731,0.013559322033937,0.000000000000007,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033937,-0.000000000000006,2 +3573,3631,3633,3691,-0.517241379310389,0.054237288134667,-0.524137931034519,0.047457627117699,-0.524137931034526,0.061016949151634,-0.531034482758657,0.054237288134667,0.013559322033935,0.000000000000007,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448267,-0.013559322033935,-0.000000000000006,2 +3574,3632,3634,3692,-0.517241379310396,0.067796610168599,-0.524137931034526,0.061016949151634,-0.524137931034532,0.074576271185564,-0.531034482758662,0.067796610168599,0.013559322033930,0.000000000000007,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448266,-0.013559322033930,-0.000000000000006,2 +3575,3633,3635,3693,-0.517241379310403,0.081355932202535,-0.524137931034532,0.074576271185564,-0.524137931034539,0.088135593219506,-0.531034482758669,0.081355932202535,0.013559322033941,0.000000000000007,0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448265,-0.013559322033941,-0.000000000000006,2 +3576,3634,3636,3694,-0.517241379310410,0.094915254236471,-0.524137931034539,0.088135593219506,-0.524137931034546,0.101694915253436,-0.531034482758675,0.094915254236471,0.013559322033930,0.000000000000007,-0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448264,-0.013559322033930,-0.000000000000006,2 +3577,3635,3637,3695,-0.517241379310418,0.108474576270409,-0.524137931034546,0.101694915253436,-0.524137931034553,0.115254237287382,-0.531034482758681,0.108474576270409,0.013559322033946,0.000000000000008,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448262,-0.013559322033946,-0.000000000000006,2 +3578,3636,3638,3696,-0.517241379310425,0.122033898304341,-0.524137931034553,0.115254237287382,-0.524137931034559,0.128813559321301,-0.531034482758687,0.122033898304341,0.013559322033919,0.000000000000007,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033919,-0.000000000000006,2 +3579,3637,3639,3697,-0.517241379310432,0.135593220338273,-0.524137931034559,0.128813559321301,-0.524137931034566,0.142372881355246,-0.531034482758693,0.135593220338273,0.013559322033945,0.000000000000007,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448260,-0.013559322033945,-0.000000000000006,2 +3580,3638,3640,3698,-0.517241379310439,0.149152542372213,-0.524137931034566,0.142372881355246,-0.524137931034573,0.155932203389179,-0.531034482758699,0.149152542372213,0.013559322033933,0.000000000000007,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448259,-0.013559322033933,-0.000000000000006,2 +3581,3639,3641,3699,-0.517241379310447,0.162711864406145,-0.524137931034573,0.155932203389179,-0.524137931034579,0.169491525423110,-0.531034482758705,0.162711864406145,0.013559322033931,0.000000000000007,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033931,-0.000000000000006,2 +3582,3640,3642,3700,-0.517241379310454,0.176271186440084,-0.524137931034579,0.169491525423110,-0.524137931034586,0.183050847457058,-0.531034482758711,0.176271186440084,0.013559322033947,0.000000000000007,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033947,-0.000000000000006,2 +3583,3641,3643,3701,-0.517241379310461,0.189830508474016,-0.524137931034586,0.183050847457058,-0.524137931034593,0.196610169490975,-0.531034482758717,0.189830508474016,0.013559322033917,0.000000000000007,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448255,-0.013559322033917,-0.000000000000006,2 +3584,3642,3644,3702,-0.517241379310468,0.203389830507945,-0.524137931034593,0.196610169490975,-0.524137931034599,0.210169491524915,-0.531034482758723,0.203389830507945,0.013559322033940,0.000000000000007,0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448254,-0.013559322033940,-0.000000000000006,2 +3585,3643,3645,3703,-0.517241379310476,0.216949152541877,-0.524137931034599,0.210169491524915,-0.524137931034606,0.223728813558839,-0.531034482758729,0.216949152541877,0.013559322033924,0.000000000000007,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448253,-0.013559322033924,-0.000000000000006,2 +3586,3644,3646,3704,-0.517241379310483,0.230508474575816,-0.524137931034606,0.223728813558839,-0.524137931034613,0.237288135592793,-0.531034482758736,0.230508474575816,0.013559322033954,0.000000000000007,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033954,-0.000000000000006,2 +3587,3645,3647,3705,-0.517241379310490,0.244067796609748,-0.524137931034613,0.237288135592793,-0.524137931034619,0.250847457626703,-0.531034482758742,0.244067796609748,0.013559322033910,0.000000000000007,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033910,-0.000000000000006,2 +3588,3646,3648,3706,-0.517241379310497,0.257627118643680,-0.524137931034619,0.250847457626703,-0.524137931034626,0.264406779660657,-0.531034482758748,0.257627118643680,0.013559322033954,0.000000000000007,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000006,2 +3589,3647,3649,3707,-0.517241379310505,0.271186440677618,-0.524137931034626,0.264406779660657,-0.524137931034633,0.277966101694579,-0.531034482758754,0.271186440677618,0.013559322033922,0.000000000000007,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448248,-0.013559322033922,-0.000000000000006,2 +3590,3648,3650,3708,-0.517241379310512,0.284745762711550,-0.524137931034633,0.277966101694579,-0.524137931034639,0.291525423728521,-0.531034482758760,0.284745762711550,0.013559322033942,0.000000000000007,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033942,-0.000000000000006,2 +3591,3649,3651,3709,-0.517241379310519,0.298305084745489,-0.524137931034639,0.291525423728521,-0.524137931034646,0.305084745762457,-0.531034482758766,0.298305084745489,0.013559322033936,0.000000000000007,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033936,-0.000000000000006,2 +3592,3650,3652,3710,-0.517241379310527,0.311864406779421,-0.524137931034646,0.305084745762457,-0.524137931034653,0.318644067796385,-0.531034482758772,0.311864406779421,0.013559322033928,0.000000000000007,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000006,2 +3593,3651,3653,3711,-0.517241379310534,0.325423728813361,-0.524137931034653,0.318644067796385,-0.524137931034659,0.332203389830336,-0.531034482758778,0.325423728813361,0.013559322033950,0.000000000000007,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448244,-0.013559322033951,-0.000000000000006,2 +3594,3652,3654,3712,-0.517241379310541,0.338983050847293,-0.524137931034659,0.332203389830336,-0.524137931034666,0.345762711864250,-0.531034482758784,0.338983050847293,0.013559322033914,0.000000000000007,-0.000000000000000,-0.013793103448244,0.000000000000000,0.013793103448242,-0.013559322033914,-0.000000000000006,2 +3595,3653,3655,3713,-0.517241379310548,0.352542372881227,-0.524137931034666,0.345762711864250,-0.524137931034673,0.359322033898204,-0.531034482758790,0.352542372881227,0.013559322033954,0.000000000000007,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000006,2 +3596,3654,3656,3714,-0.517241379310556,0.366101694915162,-0.524137931034673,0.359322033898204,-0.524137931034679,0.372881355932121,-0.531034482758796,0.366101694915162,0.013559322033918,0.000000000000007,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000006,2 +3597,3655,3657,3715,-0.517241379310563,0.379661016949094,-0.524137931034679,0.372881355932121,-0.524137931034686,0.386440677966068,-0.531034482758802,0.379661016949094,0.013559322033946,0.000000000000007,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000006,2 +1906,3598,3656,3716,-0.524137931034693,0.400000000000000,-0.517241379310570,0.393220338983034,-0.524137931034686,0.386440677966068,-0.531034482758808,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000007,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000006,2 +3599,3659,3717,4302,-0.531034482758456,-0.393220338983059,-0.537931034482606,-0.386440677966118,-0.544827586206752,-0.393220338983059,-0.537931034482601,-0.400000000000000,0.013559322033882,0.000000000000006,-0.000000000000000,0.013793103448296,-0.013559322033882,-0.000000000000005,0.000000000000000,-0.013793103448296,2 +3600,3658,3660,3718,-0.531034482758462,-0.379661016949189,-0.537931034482606,-0.386440677966118,-0.537931034482612,-0.372881355932259,-0.544827586206757,-0.379661016949189,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000005,2 +3601,3659,3661,3719,-0.531034482758468,-0.366101694915329,-0.537931034482612,-0.372881355932259,-0.537931034482618,-0.359322033898399,-0.544827586206762,-0.366101694915329,0.013559322033859,0.000000000000006,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000005,2 +3602,3660,3662,3720,-0.531034482758474,-0.352542372881469,-0.537931034482618,-0.359322033898399,-0.537931034482623,-0.345762711864539,-0.544827586206767,-0.352542372881469,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000005,2 +3603,3661,3663,3721,-0.531034482758480,-0.338983050847605,-0.537931034482623,-0.345762711864539,-0.537931034482629,-0.332203389830670,-0.544827586206772,-0.338983050847605,0.013559322033869,0.000000000000006,0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448292,-0.013559322033869,-0.000000000000005,2 +3604,3662,3664,3722,-0.531034482758486,-0.325423728813729,-0.537931034482629,-0.332203389830670,-0.537931034482634,-0.318644067796787,-0.544827586206777,-0.325423728813729,0.013559322033883,0.000000000000006,-0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033883,-0.000000000000005,2 +3605,3663,3665,3723,-0.531034482758492,-0.311864406779851,-0.537931034482634,-0.318644067796787,-0.537931034482640,-0.305084745762915,-0.544827586206782,-0.311864406779851,0.013559322033872,0.000000000000006,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448289,-0.013559322033872,-0.000000000000005,2 +3606,3664,3666,3724,-0.531034482758498,-0.298305084745975,-0.537931034482640,-0.305084745762915,-0.537931034482646,-0.291525423729035,-0.544827586206787,-0.298305084745975,0.013559322033879,0.000000000000006,0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448289,-0.013559322033880,-0.000000000000005,2 +3607,3665,3667,3725,-0.531034482758504,-0.284745762712106,-0.537931034482646,-0.291525423729035,-0.537931034482651,-0.277966101695176,-0.544827586206792,-0.284745762712105,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000005,2 +3608,3666,3668,3726,-0.531034482758511,-0.271186440678246,-0.537931034482651,-0.277966101695176,-0.537931034482657,-0.264406779661316,-0.544827586206797,-0.271186440678246,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000005,2 +3609,3667,3669,3727,-0.531034482758517,-0.257627118644386,-0.537931034482657,-0.264406779661316,-0.537931034482662,-0.250847457627456,-0.544827586206803,-0.257627118644386,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000005,2 +3610,3668,3670,3728,-0.531034482758523,-0.244067796610526,-0.537931034482662,-0.250847457627456,-0.537931034482668,-0.237288135593597,-0.544827586206808,-0.244067796610526,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000005,2 +3611,3669,3671,3729,-0.531034482758529,-0.230508474576667,-0.537931034482668,-0.237288135593597,-0.537931034482674,-0.223728813559737,-0.544827586206813,-0.230508474576667,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000005,2 +3612,3670,3672,3730,-0.531034482758535,-0.216949152542807,-0.537931034482674,-0.223728813559737,-0.537931034482679,-0.210169491525877,-0.544827586206818,-0.216949152542807,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000005,2 +3613,3671,3673,3731,-0.531034482758541,-0.203389830508947,-0.537931034482679,-0.210169491525877,-0.537931034482685,-0.196610169492017,-0.544827586206823,-0.203389830508947,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000005,2 +3614,3672,3674,3732,-0.531034482758547,-0.189830508475088,-0.537931034482685,-0.196610169492017,-0.537931034482690,-0.183050847458158,-0.544827586206828,-0.189830508475088,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000005,2 +3615,3673,3675,3733,-0.531034482758553,-0.176271186441228,-0.537931034482690,-0.183050847458158,-0.537931034482696,-0.169491525424298,-0.544827586206833,-0.176271186441228,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000005,2 +3616,3674,3676,3734,-0.531034482758559,-0.162711864407368,-0.537931034482696,-0.169491525424298,-0.537931034482702,-0.155932203390438,-0.544827586206838,-0.162711864407368,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000005,2 +3617,3675,3677,3735,-0.531034482758565,-0.149152542373509,-0.537931034482702,-0.155932203390438,-0.537931034482707,-0.142372881356579,-0.544827586206843,-0.149152542373509,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000005,2 +3618,3676,3678,3736,-0.531034482758571,-0.135593220339649,-0.537931034482707,-0.142372881356579,-0.537931034482713,-0.128813559322719,-0.544827586206848,-0.135593220339649,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000005,2 +3619,3677,3679,3737,-0.531034482758578,-0.122033898305789,-0.537931034482713,-0.128813559322719,-0.537931034482718,-0.115254237288859,-0.544827586206853,-0.122033898305789,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448276,-0.013559322033859,-0.000000000000005,2 +3620,3678,3680,3738,-0.531034482758584,-0.108474576271933,-0.537931034482718,-0.115254237288859,-0.537931034482724,-0.101694915255008,-0.544827586206859,-0.108474576271933,0.013559322033852,0.000000000000006,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448275,-0.013559322033852,-0.000000000000005,2 +3621,3679,3681,3739,-0.531034482758590,-0.094915254238085,-0.537931034482724,-0.101694915255008,-0.537931034482729,-0.088135593221162,-0.544827586206864,-0.094915254238085,0.013559322033846,0.000000000000006,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448273,-0.013559322033846,-0.000000000000005,2 +3622,3680,3682,3740,-0.531034482758596,-0.081355932204232,-0.537931034482729,-0.088135593221162,-0.537931034482735,-0.074576271187302,-0.544827586206869,-0.081355932204232,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000005,2 +3623,3681,3683,3741,-0.531034482758602,-0.067796610170372,-0.537931034482735,-0.074576271187302,-0.537931034482741,-0.061016949153442,-0.544827586206874,-0.067796610170372,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000005,2 +3624,3682,3684,3742,-0.531034482758608,-0.054237288136513,-0.537931034482741,-0.061016949153442,-0.537931034482746,-0.047457627119583,-0.544827586206879,-0.054237288136513,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000005,2 +3625,3683,3685,3743,-0.531034482758614,-0.040677966102653,-0.537931034482746,-0.047457627119583,-0.537931034482752,-0.033898305085723,-0.544827586206884,-0.040677966102653,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000005,2 +3626,3684,3686,3744,-0.531034482758620,-0.027118644068793,-0.537931034482752,-0.033898305085723,-0.537931034482757,-0.020338983051863,-0.544827586206889,-0.027118644068793,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000005,2 +3627,3685,3687,3745,-0.531034482758626,-0.013559322034934,-0.537931034482757,-0.020338983051863,-0.537931034482763,-0.006779661018004,-0.544827586206894,-0.013559322034934,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000005,2 +3628,3686,3688,3746,-0.531034482758632,-0.000000000001056,-0.537931034482763,-0.006779661018004,-0.537931034482768,0.006779661015891,-0.544827586206899,-0.000000000001056,0.013559322033895,0.000000000000006,-0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448267,-0.013559322033895,-0.000000000000005,2 +3629,3687,3689,3747,-0.531034482758638,0.013559322032862,-0.537931034482768,0.006779661015891,-0.537931034482774,0.020338983049833,-0.544827586206904,0.013559322032862,0.013559322033941,0.000000000000006,-0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448266,-0.013559322033941,-0.000000000000005,2 +3630,3688,3690,3748,-0.531034482758644,0.027118644066798,-0.537931034482774,0.020338983049833,-0.537931034482780,0.033898305083763,-0.544827586206909,0.027118644066798,0.013559322033930,0.000000000000006,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448265,-0.013559322033930,-0.000000000000005,2 +3631,3689,3691,3749,-0.531034482758650,0.040677966100731,-0.537931034482780,0.033898305083763,-0.537931034482785,0.047457627117699,-0.544827586206914,0.040677966100731,0.013559322033937,0.000000000000006,0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448263,-0.013559322033937,-0.000000000000005,2 +3632,3690,3692,3750,-0.531034482758657,0.054237288134667,-0.537931034482785,0.047457627117699,-0.537931034482791,0.061016949151634,-0.544827586206920,0.054237288134667,0.013559322033935,0.000000000000006,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448263,-0.013559322033935,-0.000000000000005,2 +3633,3691,3693,3751,-0.531034482758662,0.067796610168599,-0.537931034482791,0.061016949151634,-0.537931034482796,0.074576271185564,-0.544827586206925,0.067796610168599,0.013559322033930,0.000000000000006,-0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033930,-0.000000000000005,2 +3634,3692,3694,3752,-0.531034482758669,0.081355932202535,-0.537931034482796,0.074576271185564,-0.537931034482802,0.088135593219506,-0.544827586206930,0.081355932202535,0.013559322033941,0.000000000000006,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033941,-0.000000000000005,2 +3635,3693,3695,3753,-0.531034482758675,0.094915254236471,-0.537931034482802,0.088135593219506,-0.537931034482807,0.101694915253436,-0.544827586206935,0.094915254236471,0.013559322033930,0.000000000000006,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448260,-0.013559322033930,-0.000000000000005,2 +3636,3694,3696,3754,-0.531034482758681,0.108474576270409,-0.537931034482807,0.101694915253436,-0.537931034482813,0.115254237287382,-0.544827586206940,0.108474576270409,0.013559322033946,0.000000000000006,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448259,-0.013559322033946,-0.000000000000005,2 +3637,3695,3697,3755,-0.531034482758687,0.122033898304341,-0.537931034482813,0.115254237287382,-0.537931034482819,0.128813559321301,-0.544827586206945,0.122033898304341,0.013559322033919,0.000000000000006,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033919,-0.000000000000005,2 +3638,3696,3698,3756,-0.531034482758693,0.135593220338273,-0.537931034482819,0.128813559321301,-0.537931034482824,0.142372881355246,-0.544827586206950,0.135593220338273,0.013559322033945,0.000000000000006,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448256,-0.013559322033945,-0.000000000000005,2 +3639,3697,3699,3757,-0.531034482758699,0.149152542372213,-0.537931034482824,0.142372881355246,-0.537931034482830,0.155932203389179,-0.544827586206955,0.149152542372213,0.013559322033933,0.000000000000006,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033933,-0.000000000000005,2 +3640,3698,3700,3758,-0.531034482758705,0.162711864406145,-0.537931034482830,0.155932203389179,-0.537931034482835,0.169491525423110,-0.544827586206960,0.162711864406145,0.013559322033931,0.000000000000006,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448255,-0.013559322033931,-0.000000000000005,2 +3641,3699,3701,3759,-0.531034482758711,0.176271186440084,-0.537931034482835,0.169491525423110,-0.537931034482841,0.183050847457058,-0.544827586206965,0.176271186440084,0.013559322033947,0.000000000000006,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448253,-0.013559322033947,-0.000000000000005,2 +3642,3700,3702,3760,-0.531034482758717,0.189830508474016,-0.537931034482841,0.183050847457058,-0.537931034482847,0.196610169490975,-0.544827586206970,0.189830508474016,0.013559322033917,0.000000000000006,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448253,-0.013559322033917,-0.000000000000005,2 +3643,3701,3703,3761,-0.531034482758723,0.203389830507945,-0.537931034482847,0.196610169490975,-0.537931034482852,0.210169491524915,-0.544827586206976,0.203389830507945,0.013559322033940,0.000000000000006,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033940,-0.000000000000005,2 +3644,3702,3704,3762,-0.531034482758729,0.216949152541877,-0.537931034482852,0.210169491524915,-0.537931034482858,0.223728813558839,-0.544827586206981,0.216949152541877,0.013559322033924,0.000000000000006,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448250,-0.013559322033924,-0.000000000000005,2 +3645,3703,3705,3763,-0.531034482758736,0.230508474575816,-0.537931034482858,0.223728813558839,-0.537931034482863,0.237288135592793,-0.544827586206986,0.230508474575816,0.013559322033954,0.000000000000006,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448249,-0.013559322033954,-0.000000000000005,2 +3646,3704,3706,3764,-0.531034482758742,0.244067796609748,-0.537931034482863,0.237288135592793,-0.537931034482869,0.250847457626703,-0.544827586206991,0.244067796609748,0.013559322033910,0.000000000000006,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448249,-0.013559322033910,-0.000000000000005,2 +3647,3705,3707,3765,-0.531034482758748,0.257627118643680,-0.537931034482869,0.250847457626703,-0.537931034482874,0.264406779660657,-0.544827586206996,0.257627118643680,0.013559322033954,0.000000000000006,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448248,-0.013559322033954,-0.000000000000005,2 +3648,3706,3708,3766,-0.531034482758754,0.271186440677618,-0.537931034482874,0.264406779660657,-0.537931034482880,0.277966101694579,-0.544827586207001,0.271186440677618,0.013559322033922,0.000000000000006,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033922,-0.000000000000005,2 +3649,3707,3709,3767,-0.531034482758760,0.284745762711550,-0.537931034482880,0.277966101694579,-0.537931034482886,0.291525423728521,-0.544827586207006,0.284745762711550,0.013559322033942,0.000000000000006,0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448246,-0.013559322033943,-0.000000000000005,2 +3650,3708,3710,3768,-0.531034482758766,0.298305084745489,-0.537931034482886,0.291525423728521,-0.537931034482891,0.305084745762457,-0.544827586207011,0.298305084745489,0.013559322033936,0.000000000000006,-0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033936,-0.000000000000005,2 +3651,3709,3711,3769,-0.531034482758772,0.311864406779421,-0.537931034482891,0.305084745762457,-0.537931034482897,0.318644067796385,-0.544827586207016,0.311864406779421,0.013559322033928,0.000000000000006,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033928,-0.000000000000005,2 +3652,3710,3712,3770,-0.531034482758778,0.325423728813361,-0.537931034482897,0.318644067796385,-0.537931034482903,0.332203389830336,-0.544827586207021,0.325423728813361,0.013559322033951,0.000000000000006,0.000000000000000,-0.013793103448244,0.000000000000000,0.013793103448243,-0.013559322033951,-0.000000000000005,2 +3653,3711,3713,3771,-0.531034482758784,0.338983050847293,-0.537931034482903,0.332203389830336,-0.537931034482908,0.345762711864250,-0.544827586207026,0.338983050847293,0.013559322033914,0.000000000000006,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448241,-0.013559322033914,-0.000000000000005,2 +3654,3712,3714,3772,-0.531034482758790,0.352542372881227,-0.537931034482908,0.345762711864250,-0.537931034482914,0.359322033898203,-0.544827586207031,0.352542372881227,0.013559322033954,0.000000000000006,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000005,2 +3655,3713,3715,3773,-0.531034482758796,0.366101694915162,-0.537931034482914,0.359322033898203,-0.537931034482919,0.372881355932121,-0.544827586207037,0.366101694915162,0.013559322033918,0.000000000000006,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000005,2 +3656,3714,3716,3774,-0.531034482758802,0.379661016949094,-0.537931034482919,0.372881355932121,-0.537931034482925,0.386440677966068,-0.544827586207042,0.379661016949095,0.013559322033946,0.000000000000006,0.000000000000000,-0.013793103448240,0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000005,2 +1892,3657,3715,3775,-0.537931034482930,0.400000000000000,-0.531034482758808,0.393220338983034,-0.537931034482925,0.386440677966068,-0.544827586207047,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000006,-0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000005,2 +3658,3718,3776,4316,-0.544827586206752,-0.393220338983059,-0.551724137930904,-0.386440677966118,-0.558620689655053,-0.393220338983059,-0.551724137930900,-0.400000000000000,0.013559322033882,0.000000000000005,0.000000000000000,0.013793103448300,-0.013559322033882,-0.000000000000004,0.000000000000000,-0.013793103448302,2 +3659,3717,3719,3777,-0.544827586206757,-0.379661016949189,-0.551724137930904,-0.386440677966118,-0.551724137930909,-0.372881355932259,-0.558620689655057,-0.379661016949189,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448299,-0.013559322033860,-0.000000000000004,2 +3660,3718,3720,3778,-0.544827586206762,-0.366101694915329,-0.551724137930909,-0.372881355932259,-0.551724137930914,-0.359322033898399,-0.558620689655061,-0.366101694915329,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000004,2 +3661,3719,3721,3779,-0.544827586206767,-0.352542372881469,-0.551724137930914,-0.359322033898399,-0.551724137930918,-0.345762711864539,-0.558620689655065,-0.352542372881469,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000004,2 +3662,3720,3722,3780,-0.544827586206772,-0.338983050847605,-0.551724137930918,-0.345762711864539,-0.551724137930923,-0.332203389830670,-0.558620689655069,-0.338983050847605,0.013559322033869,0.000000000000005,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448296,-0.013559322033869,-0.000000000000004,2 +3663,3721,3723,3781,-0.544827586206777,-0.325423728813729,-0.551724137930923,-0.332203389830670,-0.551724137930927,-0.318644067796787,-0.558620689655073,-0.325423728813729,0.013559322033883,0.000000000000005,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448295,-0.013559322033883,-0.000000000000004,2 +3664,3722,3724,3782,-0.544827586206782,-0.311864406779851,-0.551724137930927,-0.318644067796787,-0.551724137930932,-0.305084745762915,-0.558620689655077,-0.311864406779851,0.013559322033872,0.000000000000005,0.000000000000000,-0.013793103448295,0.000000000000000,0.013793103448294,-0.013559322033872,-0.000000000000004,2 +3665,3723,3725,3783,-0.544827586206787,-0.298305084745975,-0.551724137930932,-0.305084745762915,-0.551724137930937,-0.291525423729035,-0.558620689655081,-0.298305084745975,0.013559322033880,0.000000000000005,-0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448293,-0.013559322033879,-0.000000000000004,2 +3666,3724,3726,3784,-0.544827586206792,-0.284745762712105,-0.551724137930937,-0.291525423729035,-0.551724137930941,-0.277966101695176,-0.558620689655085,-0.284745762712106,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000004,2 +3667,3725,3727,3785,-0.544827586206797,-0.271186440678246,-0.551724137930941,-0.277966101695176,-0.551724137930946,-0.264406779661316,-0.558620689655089,-0.271186440678246,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000004,2 +3668,3726,3728,3786,-0.544827586206803,-0.257627118644386,-0.551724137930946,-0.264406779661316,-0.551724137930950,-0.250847457627456,-0.558620689655093,-0.257627118644386,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000004,2 +3669,3727,3729,3787,-0.544827586206808,-0.244067796610526,-0.551724137930950,-0.250847457627456,-0.551724137930954,-0.237288135593597,-0.558620689655097,-0.244067796610526,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448289,-0.013559322033859,-0.000000000000004,2 +3670,3728,3730,3788,-0.544827586206813,-0.230508474576667,-0.551724137930954,-0.237288135593597,-0.551724137930959,-0.223728813559737,-0.558620689655101,-0.230508474576667,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000004,2 +3671,3729,3731,3789,-0.544827586206818,-0.216949152542807,-0.551724137930959,-0.223728813559737,-0.551724137930964,-0.210169491525877,-0.558620689655105,-0.216949152542807,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000004,2 +3672,3730,3732,3790,-0.544827586206823,-0.203389830508947,-0.551724137930964,-0.210169491525877,-0.551724137930968,-0.196610169492017,-0.558620689655109,-0.203389830508947,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000004,2 +3673,3731,3733,3791,-0.544827586206828,-0.189830508475088,-0.551724137930968,-0.196610169492017,-0.551724137930973,-0.183050847458158,-0.558620689655113,-0.189830508475088,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000004,2 +3674,3732,3734,3792,-0.544827586206833,-0.176271186441228,-0.551724137930973,-0.183050847458158,-0.551724137930977,-0.169491525424298,-0.558620689655117,-0.176271186441228,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000004,2 +3675,3733,3735,3793,-0.544827586206838,-0.162711864407368,-0.551724137930977,-0.169491525424298,-0.551724137930982,-0.155932203390438,-0.558620689655121,-0.162711864407368,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000004,2 +3676,3734,3736,3794,-0.544827586206843,-0.149152542373509,-0.551724137930982,-0.155932203390438,-0.551724137930986,-0.142372881356579,-0.558620689655125,-0.149152542373509,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000004,2 +3677,3735,3737,3795,-0.544827586206848,-0.135593220339649,-0.551724137930986,-0.142372881356579,-0.551724137930991,-0.128813559322719,-0.558620689655129,-0.135593220339649,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000004,2 +3678,3736,3738,3796,-0.544827586206853,-0.122033898305789,-0.551724137930991,-0.128813559322719,-0.551724137930995,-0.115254237288859,-0.558620689655133,-0.122033898305789,0.013559322033859,0.000000000000005,0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000004,2 +3679,3737,3739,3797,-0.544827586206859,-0.108474576271933,-0.551724137930995,-0.115254237288859,-0.551724137931000,-0.101694915255008,-0.558620689655137,-0.108474576271933,0.013559322033852,0.000000000000005,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448278,-0.013559322033852,-0.000000000000004,2 +3680,3738,3740,3798,-0.544827586206864,-0.094915254238085,-0.551724137931000,-0.101694915255008,-0.551724137931004,-0.088135593221162,-0.558620689655141,-0.094915254238085,0.013559322033846,0.000000000000005,-0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448277,-0.013559322033846,-0.000000000000004,2 +3681,3739,3741,3799,-0.544827586206869,-0.081355932204232,-0.551724137931004,-0.088135593221162,-0.551724137931009,-0.074576271187302,-0.558620689655145,-0.081355932204232,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000004,2 +3682,3740,3742,3800,-0.544827586206874,-0.067796610170372,-0.551724137931009,-0.074576271187302,-0.551724137931013,-0.061016949153442,-0.558620689655149,-0.067796610170372,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000004,2 +3683,3741,3743,3801,-0.544827586206879,-0.054237288136513,-0.551724137931013,-0.061016949153442,-0.551724137931018,-0.047457627119583,-0.558620689655153,-0.054237288136513,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000004,2 +3684,3742,3744,3802,-0.544827586206884,-0.040677966102653,-0.551724137931018,-0.047457627119583,-0.551724137931022,-0.033898305085723,-0.558620689655157,-0.040677966102653,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000004,2 +3685,3743,3745,3803,-0.544827586206889,-0.027118644068793,-0.551724137931022,-0.033898305085723,-0.551724137931027,-0.020338983051863,-0.558620689655161,-0.027118644068793,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000004,2 +3686,3744,3746,3804,-0.544827586206894,-0.013559322034934,-0.551724137931027,-0.020338983051863,-0.551724137931032,-0.006779661018004,-0.558620689655165,-0.013559322034934,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000004,2 +3687,3745,3747,3805,-0.544827586206899,-0.000000000001056,-0.551724137931032,-0.006779661018004,-0.551724137931036,0.006779661015891,-0.558620689655169,-0.000000000001056,0.013559322033895,0.000000000000005,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033895,-0.000000000000004,2 +3688,3746,3748,3806,-0.544827586206904,0.013559322032862,-0.551724137931036,0.006779661015891,-0.551724137931041,0.020338983049833,-0.558620689655173,0.013559322032862,0.013559322033941,0.000000000000005,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033941,-0.000000000000004,2 +3689,3747,3749,3807,-0.544827586206909,0.027118644066798,-0.551724137931041,0.020338983049833,-0.551724137931045,0.033898305083763,-0.558620689655177,0.027118644066798,0.013559322033930,0.000000000000005,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033930,-0.000000000000004,2 +3690,3748,3750,3808,-0.544827586206914,0.040677966100731,-0.551724137931045,0.033898305083763,-0.551724137931050,0.047457627117699,-0.558620689655181,0.040677966100731,0.013559322033937,0.000000000000005,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448266,-0.013559322033937,-0.000000000000004,2 +3691,3749,3751,3809,-0.544827586206920,0.054237288134667,-0.551724137931050,0.047457627117699,-0.551724137931055,0.061016949151634,-0.558620689655185,0.054237288134667,0.013559322033935,0.000000000000005,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448265,-0.013559322033935,-0.000000000000004,2 +3692,3750,3752,3810,-0.544827586206925,0.067796610168599,-0.551724137931055,0.061016949151634,-0.551724137931059,0.074576271185564,-0.558620689655189,0.067796610168599,0.013559322033930,0.000000000000005,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448264,-0.013559322033930,-0.000000000000004,2 +3693,3751,3753,3811,-0.544827586206930,0.081355932202535,-0.551724137931059,0.074576271185564,-0.551724137931064,0.088135593219506,-0.558620689655193,0.081355932202535,0.013559322033941,0.000000000000005,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448262,-0.013559322033941,-0.000000000000004,2 +3694,3752,3754,3812,-0.544827586206935,0.094915254236471,-0.551724137931064,0.088135593219506,-0.551724137931068,0.101694915253436,-0.558620689655197,0.094915254236471,0.013559322033930,0.000000000000005,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448262,-0.013559322033930,-0.000000000000004,2 +3695,3753,3755,3813,-0.544827586206940,0.108474576270409,-0.551724137931068,0.101694915253436,-0.551724137931073,0.115254237287382,-0.558620689655201,0.108474576270409,0.013559322033946,0.000000000000005,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033946,-0.000000000000004,2 +3696,3754,3756,3814,-0.544827586206945,0.122033898304341,-0.551724137931073,0.115254237287382,-0.551724137931077,0.128813559321301,-0.558620689655205,0.122033898304341,0.013559322033919,0.000000000000005,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448259,-0.013559322033919,-0.000000000000004,2 +3697,3755,3757,3815,-0.544827586206950,0.135593220338273,-0.551724137931077,0.128813559321301,-0.551724137931082,0.142372881355246,-0.558620689655209,0.135593220338273,0.013559322033945,0.000000000000005,0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448258,-0.013559322033945,-0.000000000000004,2 +3698,3756,3758,3816,-0.544827586206955,0.149152542372213,-0.551724137931082,0.142372881355246,-0.551724137931086,0.155932203389179,-0.558620689655213,0.149152542372213,0.013559322033933,0.000000000000005,-0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033933,-0.000000000000004,2 +3699,3757,3759,3817,-0.544827586206960,0.162711864406145,-0.551724137931086,0.155932203389179,-0.551724137931091,0.169491525423110,-0.558620689655217,0.162711864406145,0.013559322033931,0.000000000000005,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448256,-0.013559322033931,-0.000000000000004,2 +3700,3758,3760,3818,-0.544827586206965,0.176271186440084,-0.551724137931091,0.169491525423110,-0.551724137931095,0.183050847457058,-0.558620689655221,0.176271186440084,0.013559322033947,0.000000000000005,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033948,-0.000000000000004,2 +3701,3759,3761,3819,-0.544827586206970,0.189830508474016,-0.551724137931095,0.183050847457058,-0.551724137931100,0.196610169490975,-0.558620689655225,0.189830508474016,0.013559322033917,0.000000000000005,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448254,-0.013559322033917,-0.000000000000004,2 +3702,3760,3762,3820,-0.544827586206976,0.203389830507945,-0.551724137931100,0.196610169490975,-0.551724137931105,0.210169491524915,-0.558620689655229,0.203389830507945,0.013559322033940,0.000000000000005,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448253,-0.013559322033940,-0.000000000000004,2 +3703,3761,3763,3821,-0.544827586206981,0.216949152541877,-0.551724137931105,0.210169491524915,-0.551724137931109,0.223728813558839,-0.558620689655233,0.216949152541877,0.013559322033924,0.000000000000005,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033924,-0.000000000000004,2 +3704,3762,3764,3822,-0.544827586206986,0.230508474575816,-0.551724137931109,0.223728813558839,-0.551724137931114,0.237288135592793,-0.558620689655237,0.230508474575816,0.013559322033954,0.000000000000005,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033954,-0.000000000000004,2 +3705,3763,3765,3823,-0.544827586206991,0.244067796609748,-0.551724137931114,0.237288135592793,-0.551724137931118,0.250847457626703,-0.558620689655241,0.244067796609748,0.013559322033910,0.000000000000005,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033910,-0.000000000000004,2 +3706,3764,3766,3824,-0.544827586206996,0.257627118643680,-0.551724137931118,0.250847457626703,-0.551724137931123,0.264406779660657,-0.558620689655245,0.257627118643680,0.013559322033954,0.000000000000005,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448249,-0.013559322033954,-0.000000000000004,2 +3707,3765,3767,3825,-0.544827586207001,0.271186440677618,-0.551724137931123,0.264406779660657,-0.551724137931127,0.277966101694579,-0.558620689655249,0.271186440677618,0.013559322033922,0.000000000000005,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448247,-0.013559322033922,-0.000000000000004,2 +3708,3766,3768,3826,-0.544827586207006,0.284745762711550,-0.551724137931127,0.277966101694579,-0.551724137931132,0.291525423728521,-0.558620689655253,0.284745762711550,0.013559322033943,0.000000000000005,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033943,-0.000000000000004,2 +3709,3767,3769,3827,-0.544827586207011,0.298305084745489,-0.551724137931132,0.291525423728521,-0.551724137931136,0.305084745762457,-0.558620689655257,0.298305084745489,0.013559322033936,0.000000000000005,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033936,-0.000000000000004,2 +3710,3768,3770,3828,-0.544827586207016,0.311864406779421,-0.551724137931136,0.305084745762457,-0.551724137931141,0.318644067796385,-0.558620689655261,0.311864406779421,0.013559322033928,0.000000000000005,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448244,-0.013559322033928,-0.000000000000004,2 +3711,3769,3771,3829,-0.544827586207021,0.325423728813361,-0.551724137931141,0.318644067796385,-0.551724137931145,0.332203389830336,-0.558620689655265,0.325423728813361,0.013559322033951,0.000000000000005,-0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033950,-0.000000000000004,2 +3712,3770,3772,3830,-0.544827586207026,0.338983050847293,-0.551724137931145,0.332203389830336,-0.551724137931150,0.345762711864250,-0.558620689655269,0.338983050847293,0.013559322033914,0.000000000000005,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448242,-0.013559322033914,-0.000000000000004,2 +3713,3771,3773,3831,-0.544827586207031,0.352542372881227,-0.551724137931150,0.345762711864250,-0.551724137931154,0.359322033898204,-0.558620689655273,0.352542372881227,0.013559322033954,0.000000000000005,0.000000000000000,-0.013793103448242,0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000004,2 +3714,3772,3774,3832,-0.544827586207037,0.366101694915162,-0.551724137931154,0.359322033898204,-0.551724137931159,0.372881355932121,-0.558620689655277,0.366101694915162,0.013559322033918,0.000000000000005,-0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000004,2 +3715,3773,3775,3833,-0.544827586207042,0.379661016949095,-0.551724137931159,0.372881355932121,-0.551724137931163,0.386440677966068,-0.558620689655281,0.379661016949094,0.013559322033946,0.000000000000005,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000004,2 +1878,3716,3774,3834,-0.551724137931168,0.400000000000000,-0.544827586207047,0.393220338983034,-0.551724137931163,0.386440677966068,-0.558620689655285,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000005,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000004,2 +3717,3777,3835,4330,-0.558620689655053,-0.393220338983059,-0.565517241379209,-0.386440677966118,-0.572413793103361,-0.393220338983059,-0.565517241379205,-0.400000000000000,0.013559322033882,0.000000000000004,-0.000000000000000,0.013793103448308,-0.013559322033882,-0.000000000000003,0.000000000000000,-0.013793103448309,2 +3718,3776,3778,3836,-0.558620689655057,-0.379661016949189,-0.565517241379209,-0.386440677966118,-0.565517241379212,-0.372881355932259,-0.572413793103364,-0.379661016949189,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448307,-0.013559322033860,-0.000000000000003,2 +3719,3777,3779,3837,-0.558620689655061,-0.366101694915329,-0.565517241379212,-0.372881355932259,-0.565517241379216,-0.359322033898399,-0.572413793103367,-0.366101694915329,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448306,-0.013559322033860,-0.000000000000003,2 +3720,3778,3780,3838,-0.558620689655065,-0.352542372881469,-0.565517241379216,-0.359322033898399,-0.565517241379219,-0.345762711864539,-0.572413793103370,-0.352542372881469,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448304,-0.013559322033860,-0.000000000000003,2 +3721,3779,3781,3839,-0.558620689655069,-0.338983050847605,-0.565517241379219,-0.345762711864539,-0.565517241379222,-0.332203389830670,-0.572413793103372,-0.338983050847605,0.013559322033869,0.000000000000004,0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448303,-0.013559322033869,-0.000000000000003,2 +3722,3780,3782,3840,-0.558620689655073,-0.325423728813729,-0.565517241379222,-0.332203389830670,-0.565517241379226,-0.318644067796787,-0.572413793103375,-0.325423728813729,0.013559322033883,0.000000000000004,-0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,-0.013559322033883,-0.000000000000003,2 +3723,3781,3783,3841,-0.558620689655077,-0.311864406779851,-0.565517241379226,-0.318644067796787,-0.565517241379229,-0.305084745762915,-0.572413793103378,-0.311864406779851,0.013559322033872,0.000000000000004,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,-0.013559322033872,-0.000000000000003,2 +3724,3782,3784,3842,-0.558620689655081,-0.298305084745975,-0.565517241379229,-0.305084745762915,-0.565517241379233,-0.291525423729035,-0.572413793103381,-0.298305084745975,0.013559322033879,0.000000000000004,0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448299,-0.013559322033880,-0.000000000000003,2 +3725,3783,3785,3843,-0.558620689655085,-0.284745762712106,-0.565517241379233,-0.291525423729035,-0.565517241379236,-0.277966101695176,-0.572413793103384,-0.284745762712105,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000003,2 +3726,3784,3786,3844,-0.558620689655089,-0.271186440678246,-0.565517241379236,-0.277966101695176,-0.565517241379240,-0.264406779661316,-0.572413793103386,-0.271186440678246,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000003,2 +3727,3785,3787,3845,-0.558620689655093,-0.257627118644386,-0.565517241379240,-0.264406779661316,-0.565517241379243,-0.250847457627456,-0.572413793103389,-0.257627118644386,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000003,2 +3728,3786,3788,3846,-0.558620689655097,-0.244067796610526,-0.565517241379243,-0.250847457627456,-0.565517241379246,-0.237288135593597,-0.572413793103392,-0.244067796610526,0.013559322033859,0.000000000000004,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000003,2 +3729,3787,3789,3847,-0.558620689655101,-0.230508474576667,-0.565517241379246,-0.237288135593597,-0.565517241379250,-0.223728813559737,-0.572413793103395,-0.230508474576667,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000003,2 +3730,3788,3790,3848,-0.558620689655105,-0.216949152542807,-0.565517241379250,-0.223728813559737,-0.565517241379253,-0.210169491525877,-0.572413793103398,-0.216949152542807,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000003,2 +3731,3789,3791,3849,-0.558620689655109,-0.203389830508947,-0.565517241379253,-0.210169491525877,-0.565517241379256,-0.196610169492017,-0.572413793103400,-0.203389830508947,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000003,2 +3732,3790,3792,3850,-0.558620689655113,-0.189830508475088,-0.565517241379256,-0.196610169492017,-0.565517241379260,-0.183050847458158,-0.572413793103403,-0.189830508475087,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000003,2 +3733,3791,3793,3851,-0.558620689655117,-0.176271186441228,-0.565517241379260,-0.183050847458158,-0.565517241379263,-0.169491525424298,-0.572413793103406,-0.176271186441228,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000003,2 +3734,3792,3794,3852,-0.558620689655121,-0.162711864407368,-0.565517241379263,-0.169491525424298,-0.565517241379266,-0.155932203390438,-0.572413793103409,-0.162711864407368,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000003,2 +3735,3793,3795,3853,-0.558620689655125,-0.149152542373509,-0.565517241379266,-0.155932203390438,-0.565517241379270,-0.142372881356579,-0.572413793103412,-0.149152542373509,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000003,2 +3736,3794,3796,3854,-0.558620689655129,-0.135593220339649,-0.565517241379270,-0.142372881356579,-0.565517241379273,-0.128813559322719,-0.572413793103414,-0.135593220339649,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000003,2 +3737,3795,3797,3855,-0.558620689655133,-0.122033898305789,-0.565517241379273,-0.128813559322719,-0.565517241379277,-0.115254237288859,-0.572413793103417,-0.122033898305789,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000003,2 +3738,3796,3798,3856,-0.558620689655137,-0.108474576271933,-0.565517241379277,-0.115254237288859,-0.565517241379280,-0.101694915255007,-0.572413793103420,-0.108474576271933,0.013559322033852,0.000000000000004,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033852,-0.000000000000003,2 +3739,3797,3799,3857,-0.558620689655141,-0.094915254238085,-0.565517241379280,-0.101694915255007,-0.565517241379283,-0.088135593221162,-0.572413793103423,-0.094915254238085,0.013559322033846,0.000000000000004,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448282,-0.013559322033846,-0.000000000000003,2 +3740,3798,3800,3858,-0.558620689655145,-0.081355932204232,-0.565517241379283,-0.088135593221162,-0.565517241379287,-0.074576271187302,-0.572413793103426,-0.081355932204232,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448282,0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000003,2 +3741,3799,3801,3859,-0.558620689655149,-0.067796610170372,-0.565517241379287,-0.074576271187302,-0.565517241379290,-0.061016949153442,-0.572413793103428,-0.067796610170372,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000003,2 +3742,3800,3802,3860,-0.558620689655153,-0.054237288136513,-0.565517241379290,-0.061016949153442,-0.565517241379294,-0.047457627119583,-0.572413793103431,-0.054237288136513,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000003,2 +3743,3801,3803,3861,-0.558620689655157,-0.040677966102653,-0.565517241379294,-0.047457627119583,-0.565517241379297,-0.033898305085723,-0.572413793103434,-0.040677966102653,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000003,2 +3744,3802,3804,3862,-0.558620689655161,-0.027118644068793,-0.565517241379297,-0.033898305085723,-0.565517241379301,-0.020338983051863,-0.572413793103437,-0.027118644068793,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000003,2 +3745,3803,3805,3863,-0.558620689655165,-0.013559322034934,-0.565517241379301,-0.020338983051863,-0.565517241379304,-0.006779661018004,-0.572413793103439,-0.013559322034934,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000003,2 +3746,3804,3806,3864,-0.558620689655169,-0.000000000001056,-0.565517241379304,-0.006779661018004,-0.565517241379307,0.006779661015891,-0.572413793103442,-0.000000000001056,0.013559322033895,0.000000000000004,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448273,-0.013559322033895,-0.000000000000003,2 +3747,3805,3807,3865,-0.558620689655173,0.013559322032862,-0.565517241379307,0.006779661015891,-0.565517241379311,0.020338983049833,-0.572413793103445,0.013559322032862,0.013559322033941,0.000000000000004,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,-0.013559322033941,-0.000000000000003,2 +3748,3806,3808,3866,-0.558620689655177,0.027118644066798,-0.565517241379311,0.020338983049833,-0.565517241379314,0.033898305083763,-0.572413793103448,0.027118644066798,0.013559322033930,0.000000000000004,0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448270,-0.013559322033930,-0.000000000000003,2 +3749,3807,3809,3867,-0.558620689655181,0.040677966100731,-0.565517241379314,0.033898305083763,-0.565517241379317,0.047457627117699,-0.572413793103451,0.040677966100731,0.013559322033937,0.000000000000004,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033937,-0.000000000000003,2 +3750,3808,3810,3868,-0.558620689655185,0.054237288134667,-0.565517241379317,0.047457627117699,-0.565517241379321,0.061016949151634,-0.572413793103453,0.054237288134667,0.013559322033935,0.000000000000004,0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448268,-0.013559322033935,-0.000000000000003,2 +3751,3809,3811,3869,-0.558620689655189,0.067796610168599,-0.565517241379321,0.061016949151634,-0.565517241379324,0.074576271185564,-0.572413793103456,0.067796610168599,0.013559322033930,0.000000000000004,-0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448267,-0.013559322033930,-0.000000000000003,2 +3752,3810,3812,3870,-0.558620689655193,0.081355932202535,-0.565517241379324,0.074576271185564,-0.565517241379328,0.088135593219506,-0.572413793103459,0.081355932202535,0.013559322033941,0.000000000000004,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448265,-0.013559322033941,-0.000000000000003,2 +3753,3811,3813,3871,-0.558620689655197,0.094915254236471,-0.565517241379328,0.088135593219506,-0.565517241379331,0.101694915253436,-0.572413793103462,0.094915254236471,0.013559322033930,0.000000000000004,-0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448264,-0.013559322033930,-0.000000000000003,2 +3754,3812,3814,3872,-0.558620689655201,0.108474576270409,-0.565517241379331,0.101694915253436,-0.565517241379335,0.115254237287382,-0.572413793103465,0.108474576270409,0.013559322033946,0.000000000000004,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033946,-0.000000000000003,2 +3755,3813,3815,3873,-0.558620689655205,0.122033898304341,-0.565517241379335,0.115254237287382,-0.565517241379338,0.128813559321301,-0.572413793103467,0.122033898304341,0.013559322033919,0.000000000000004,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033919,-0.000000000000003,2 +3756,3814,3816,3874,-0.558620689655209,0.135593220338273,-0.565517241379338,0.128813559321301,-0.565517241379341,0.142372881355246,-0.572413793103470,0.135593220338273,0.013559322033945,0.000000000000004,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448260,-0.013559322033945,-0.000000000000003,2 +3757,3815,3817,3875,-0.558620689655213,0.149152542372213,-0.565517241379341,0.142372881355246,-0.565517241379345,0.155932203389179,-0.572413793103473,0.149152542372213,0.013559322033933,0.000000000000004,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448259,-0.013559322033933,-0.000000000000003,2 +3758,3816,3818,3876,-0.558620689655217,0.162711864406145,-0.565517241379345,0.155932203389179,-0.565517241379348,0.169491525423110,-0.572413793103476,0.162711864406145,0.013559322033931,0.000000000000004,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033931,-0.000000000000003,2 +3759,3817,3819,3877,-0.558620689655221,0.176271186440084,-0.565517241379348,0.169491525423110,-0.565517241379351,0.183050847457058,-0.572413793103479,0.176271186440084,0.013559322033948,0.000000000000004,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033947,-0.000000000000003,2 +3760,3818,3820,3878,-0.558620689655225,0.189830508474016,-0.565517241379351,0.183050847457058,-0.565517241379355,0.196610169490975,-0.572413793103481,0.189830508474016,0.013559322033917,0.000000000000004,0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448256,-0.013559322033917,-0.000000000000003,2 +3761,3819,3821,3879,-0.558620689655229,0.203389830507945,-0.565517241379355,0.196610169490975,-0.565517241379358,0.210169491524915,-0.572413793103484,0.203389830507945,0.013559322033940,0.000000000000004,-0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033940,-0.000000000000003,2 +3762,3820,3822,3880,-0.558620689655233,0.216949152541877,-0.565517241379358,0.210169491524915,-0.565517241379362,0.223728813558839,-0.572413793103487,0.216949152541877,0.013559322033924,0.000000000000004,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448253,-0.013559322033924,-0.000000000000003,2 +3763,3821,3823,3881,-0.558620689655237,0.230508474575816,-0.565517241379362,0.223728813558839,-0.565517241379365,0.237288135592793,-0.572413793103490,0.230508474575816,0.013559322033954,0.000000000000004,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033954,-0.000000000000003,2 +3764,3822,3824,3882,-0.558620689655241,0.244067796609748,-0.565517241379365,0.237288135592793,-0.565517241379368,0.250847457626703,-0.572413793103492,0.244067796609748,0.013559322033910,0.000000000000004,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033910,-0.000000000000003,2 +3765,3823,3825,3883,-0.558620689655245,0.257627118643680,-0.565517241379368,0.250847457626703,-0.565517241379372,0.264406779660657,-0.572413793103495,0.257627118643680,0.013559322033954,0.000000000000004,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000003,2 +3766,3824,3826,3884,-0.558620689655249,0.271186440677618,-0.565517241379372,0.264406779660657,-0.565517241379375,0.277966101694579,-0.572413793103498,0.271186440677618,0.013559322033922,0.000000000000004,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448248,-0.013559322033922,-0.000000000000003,2 +3767,3825,3827,3885,-0.558620689655253,0.284745762711550,-0.565517241379375,0.277966101694579,-0.565517241379379,0.291525423728521,-0.572413793103501,0.284745762711550,0.013559322033943,0.000000000000004,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033942,-0.000000000000003,2 +3768,3826,3828,3886,-0.558620689655257,0.298305084745489,-0.565517241379379,0.291525423728521,-0.565517241379382,0.305084745762457,-0.572413793103504,0.298305084745489,0.013559322033936,0.000000000000004,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033936,-0.000000000000003,2 +3769,3827,3829,3887,-0.558620689655261,0.311864406779421,-0.565517241379382,0.305084745762457,-0.565517241379385,0.318644067796385,-0.572413793103506,0.311864406779421,0.013559322033928,0.000000000000004,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000003,2 +3770,3828,3830,3888,-0.558620689655265,0.325423728813361,-0.565517241379385,0.318644067796385,-0.565517241379389,0.332203389830336,-0.572413793103509,0.325423728813361,0.013559322033950,0.000000000000004,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033951,-0.000000000000003,2 +3771,3829,3831,3889,-0.558620689655269,0.338983050847293,-0.565517241379389,0.332203389830336,-0.565517241379392,0.345762711864250,-0.572413793103512,0.338983050847293,0.013559322033914,0.000000000000004,0.000000000000000,-0.013793103448244,0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000003,2 +3772,3830,3832,3890,-0.558620689655273,0.352542372881227,-0.565517241379392,0.345762711864250,-0.565517241379396,0.359322033898204,-0.572413793103515,0.352542372881227,0.013559322033954,0.000000000000004,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000003,2 +3773,3831,3833,3891,-0.558620689655277,0.366101694915162,-0.565517241379396,0.359322033898204,-0.565517241379399,0.372881355932121,-0.572413793103518,0.366101694915162,0.013559322033918,0.000000000000004,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000003,2 +3774,3832,3834,3892,-0.558620689655281,0.379661016949094,-0.565517241379399,0.372881355932121,-0.565517241379402,0.386440677966068,-0.572413793103520,0.379661016949094,0.013559322033946,0.000000000000004,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000003,2 +1864,3775,3833,3893,-0.565517241379406,0.400000000000000,-0.558620689655285,0.393220338983034,-0.565517241379402,0.386440677966068,-0.572413793103523,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000004,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000003,2 +3776,3836,3894,4344,-0.572413793103361,-0.393220338983059,-0.579310344827521,-0.386440677966118,-0.586206896551679,-0.393220338983059,-0.579310344827519,-0.400000000000000,0.013559322033882,0.000000000000003,-0.000000000000000,0.013793103448317,-0.013559322033882,-0.000000000000002,0.000000000000000,-0.013793103448318,2 +3777,3835,3837,3895,-0.572413793103364,-0.379661016949189,-0.579310344827521,-0.386440677966118,-0.579310344827523,-0.372881355932259,-0.586206896551680,-0.379661016949189,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448316,-0.013559322033860,-0.000000000000001,2 +3778,3836,3838,3896,-0.572413793103367,-0.366101694915329,-0.579310344827523,-0.372881355932259,-0.579310344827526,-0.359322033898399,-0.586206896551682,-0.366101694915329,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448316,-0.000000000000000,0.013793103448314,-0.013559322033860,-0.000000000000002,2 +3779,3837,3839,3897,-0.572413793103370,-0.352542372881469,-0.579310344827526,-0.359322033898399,-0.579310344827527,-0.345762711864539,-0.586206896551683,-0.352542372881469,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448313,-0.013559322033860,-0.000000000000001,2 +3780,3838,3840,3898,-0.572413793103372,-0.338983050847605,-0.579310344827527,-0.345762711864539,-0.579310344827530,-0.332203389830670,-0.586206896551684,-0.338983050847605,0.013559322033869,0.000000000000003,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448311,-0.013559322033869,-0.000000000000001,2 +3781,3839,3841,3899,-0.572413793103375,-0.325423728813729,-0.579310344827530,-0.332203389830670,-0.579310344827532,-0.318644067796787,-0.586206896551686,-0.325423728813729,0.013559322033883,0.000000000000003,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448310,-0.013559322033883,-0.000000000000002,2 +3782,3840,3842,3900,-0.572413793103378,-0.311864406779851,-0.579310344827532,-0.318644067796787,-0.579310344827534,-0.305084745762915,-0.586206896551687,-0.311864406779851,0.013559322033872,0.000000000000003,0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448309,-0.013559322033872,-0.000000000000001,2 +3783,3841,3843,3901,-0.572413793103381,-0.298305084745975,-0.579310344827534,-0.305084745762915,-0.579310344827536,-0.291525423729035,-0.586206896551689,-0.298305084745975,0.013559322033880,0.000000000000003,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448307,-0.013559322033879,-0.000000000000001,2 +3784,3842,3844,3902,-0.572413793103384,-0.284745762712105,-0.579310344827536,-0.291525423729035,-0.579310344827538,-0.277966101695176,-0.586206896551690,-0.284745762712105,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448306,-0.013559322033860,-0.000000000000002,2 +3785,3843,3845,3903,-0.572413793103386,-0.271186440678246,-0.579310344827538,-0.277966101695176,-0.579310344827540,-0.264406779661316,-0.586206896551692,-0.271186440678246,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448305,-0.013559322033860,-0.000000000000001,2 +3786,3844,3846,3904,-0.572413793103389,-0.257627118644386,-0.579310344827540,-0.264406779661316,-0.579310344827542,-0.250847457627456,-0.586206896551693,-0.257627118644386,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448303,-0.013559322033860,-0.000000000000002,2 +3787,3845,3847,3905,-0.572413793103392,-0.244067796610526,-0.579310344827542,-0.250847457627456,-0.579310344827544,-0.237288135593597,-0.586206896551695,-0.244067796610526,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,-0.013559322033860,-0.000000000000001,2 +3788,3846,3848,3906,-0.572413793103395,-0.230508474576667,-0.579310344827544,-0.237288135593597,-0.579310344827547,-0.223728813559737,-0.586206896551696,-0.230508474576667,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448300,-0.013559322033860,-0.000000000000001,2 +3789,3847,3849,3907,-0.572413793103398,-0.216949152542807,-0.579310344827547,-0.223728813559737,-0.579310344827549,-0.210169491525877,-0.586206896551697,-0.216949152542807,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448299,-0.013559322033860,-0.000000000000001,2 +3790,3848,3850,3908,-0.572413793103400,-0.203389830508947,-0.579310344827549,-0.210169491525877,-0.579310344827551,-0.196610169492017,-0.586206896551699,-0.203389830508947,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000001,2 +3791,3849,3851,3909,-0.572413793103403,-0.189830508475087,-0.579310344827551,-0.196610169492017,-0.579310344827553,-0.183050847458158,-0.586206896551700,-0.189830508475088,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000002,2 +3792,3850,3852,3910,-0.572413793103406,-0.176271186441228,-0.579310344827553,-0.183050847458158,-0.579310344827555,-0.169491525424298,-0.586206896551702,-0.176271186441228,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000002,2 +3793,3851,3853,3911,-0.572413793103409,-0.162711864407368,-0.579310344827555,-0.169491525424298,-0.579310344827557,-0.155932203390438,-0.586206896551703,-0.162711864407368,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000001,2 +3794,3852,3854,3912,-0.572413793103412,-0.149152542373509,-0.579310344827557,-0.155932203390438,-0.579310344827559,-0.142372881356579,-0.586206896551704,-0.149152542373509,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000001,2 +3795,3853,3855,3913,-0.572413793103414,-0.135593220339649,-0.579310344827559,-0.142372881356579,-0.579310344827561,-0.128813559322719,-0.586206896551706,-0.135593220339649,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000001,2 +3796,3854,3856,3914,-0.572413793103417,-0.122033898305789,-0.579310344827561,-0.128813559322719,-0.579310344827563,-0.115254237288859,-0.586206896551707,-0.122033898305789,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000001,2 +3797,3855,3857,3915,-0.572413793103420,-0.108474576271933,-0.579310344827563,-0.115254237288859,-0.579310344827565,-0.101694915255008,-0.586206896551709,-0.108474576271933,0.013559322033852,0.000000000000003,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448288,-0.013559322033852,-0.000000000000001,2 +3798,3856,3858,3916,-0.572413793103423,-0.094915254238085,-0.579310344827565,-0.101694915255008,-0.579310344827568,-0.088135593221162,-0.586206896551710,-0.094915254238085,0.013559322033846,0.000000000000003,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448287,-0.013559322033846,-0.000000000000002,2 +3799,3857,3859,3917,-0.572413793103426,-0.081355932204232,-0.579310344827568,-0.088135593221162,-0.579310344827570,-0.074576271187302,-0.586206896551712,-0.081355932204232,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000001,2 +3800,3858,3860,3918,-0.572413793103428,-0.067796610170372,-0.579310344827570,-0.074576271187302,-0.579310344827572,-0.061016949153442,-0.586206896551713,-0.067796610170372,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000001,2 +3801,3859,3861,3919,-0.572413793103431,-0.054237288136513,-0.579310344827572,-0.061016949153442,-0.579310344827574,-0.047457627119583,-0.586206896551714,-0.054237288136513,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000002,2 +3802,3860,3862,3920,-0.572413793103434,-0.040677966102653,-0.579310344827574,-0.047457627119583,-0.579310344827576,-0.033898305085723,-0.586206896551716,-0.040677966102653,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000001,2 +3803,3861,3863,3921,-0.572413793103437,-0.027118644068793,-0.579310344827576,-0.033898305085723,-0.579310344827578,-0.020338983051863,-0.586206896551717,-0.027118644068793,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000002,2 +3804,3862,3864,3922,-0.572413793103439,-0.013559322034934,-0.579310344827578,-0.020338983051863,-0.579310344827580,-0.006779661018004,-0.586206896551719,-0.013559322034933,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000001,2 +3805,3863,3865,3923,-0.572413793103442,-0.000000000001056,-0.579310344827580,-0.006779661018004,-0.579310344827582,0.006779661015891,-0.586206896551720,-0.000000000001056,0.013559322033895,0.000000000000003,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448277,-0.013559322033895,-0.000000000000001,2 +3806,3864,3866,3924,-0.572413793103445,0.013559322032862,-0.579310344827582,0.006779661015891,-0.579310344827584,0.020338983049833,-0.586206896551722,0.013559322032862,0.013559322033941,0.000000000000003,0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448276,-0.013559322033941,-0.000000000000001,2 +3807,3865,3867,3925,-0.572413793103448,0.027118644066798,-0.579310344827584,0.020338983049833,-0.579310344827586,0.033898305083763,-0.586206896551723,0.027118644066798,0.013559322033930,0.000000000000003,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448274,-0.013559322033930,-0.000000000000001,2 +3808,3866,3868,3926,-0.572413793103451,0.040677966100731,-0.579310344827586,0.033898305083763,-0.579310344827589,0.047457627117699,-0.586206896551724,0.040677966100731,0.013559322033937,0.000000000000003,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448273,-0.013559322033937,-0.000000000000002,2 +3809,3867,3869,3927,-0.572413793103453,0.054237288134667,-0.579310344827589,0.047457627117699,-0.579310344827591,0.061016949151634,-0.586206896551726,0.054237288134667,0.013559322033935,0.000000000000003,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,-0.013559322033935,-0.000000000000002,2 +3810,3868,3870,3928,-0.572413793103456,0.067796610168599,-0.579310344827591,0.061016949151634,-0.579310344827593,0.074576271185565,-0.586206896551727,0.067796610168599,0.013559322033930,0.000000000000003,0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448270,-0.013559322033930,-0.000000000000001,2 +3811,3869,3871,3929,-0.572413793103459,0.081355932202535,-0.579310344827593,0.074576271185565,-0.579310344827595,0.088135593219506,-0.586206896551729,0.081355932202535,0.013559322033941,0.000000000000003,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448269,-0.013559322033941,-0.000000000000001,2 +3812,3870,3872,3930,-0.572413793103462,0.094915254236471,-0.579310344827595,0.088135593219506,-0.579310344827597,0.101694915253436,-0.586206896551730,0.094915254236471,0.013559322033930,0.000000000000003,-0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033930,-0.000000000000002,2 +3813,3871,3873,3931,-0.572413793103465,0.108474576270409,-0.579310344827597,0.101694915253436,-0.579310344827599,0.115254237287382,-0.586206896551732,0.108474576270409,0.013559322033946,0.000000000000003,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448266,-0.013559322033946,-0.000000000000001,2 +3814,3872,3874,3932,-0.572413793103467,0.122033898304341,-0.579310344827599,0.115254237287382,-0.579310344827601,0.128813559321301,-0.586206896551733,0.122033898304341,0.013559322033919,0.000000000000003,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448265,-0.013559322033919,-0.000000000000001,2 +3815,3873,3875,3933,-0.572413793103470,0.135593220338273,-0.579310344827601,0.128813559321301,-0.579310344827603,0.142372881355246,-0.586206896551734,0.135593220338273,0.013559322033945,0.000000000000003,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448264,-0.013559322033945,-0.000000000000002,2 +3816,3874,3876,3934,-0.572413793103473,0.149152542372213,-0.579310344827603,0.142372881355246,-0.579310344827605,0.155932203389179,-0.586206896551736,0.149152542372213,0.013559322033933,0.000000000000003,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448262,-0.013559322033933,-0.000000000000001,2 +3817,3875,3877,3935,-0.572413793103476,0.162711864406145,-0.579310344827605,0.155932203389179,-0.579310344827608,0.169491525423110,-0.586206896551737,0.162711864406145,0.013559322033931,0.000000000000003,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033931,-0.000000000000001,2 +3818,3876,3878,3936,-0.572413793103479,0.176271186440084,-0.579310344827608,0.169491525423110,-0.579310344827610,0.183050847457058,-0.586206896551739,0.176271186440084,0.013559322033947,0.000000000000003,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448260,-0.013559322033948,-0.000000000000001,2 +3819,3877,3879,3937,-0.572413793103481,0.189830508474016,-0.579310344827610,0.183050847457058,-0.579310344827612,0.196610169490975,-0.586206896551740,0.189830508474016,0.013559322033917,0.000000000000003,-0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448258,-0.013559322033917,-0.000000000000002,2 +3820,3878,3880,3938,-0.572413793103484,0.203389830507945,-0.579310344827612,0.196610169490975,-0.579310344827614,0.210169491524915,-0.586206896551742,0.203389830507945,0.013559322033940,0.000000000000003,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033940,-0.000000000000001,2 +3821,3879,3881,3939,-0.572413793103487,0.216949152541877,-0.579310344827614,0.210169491524915,-0.579310344827616,0.223728813558839,-0.586206896551743,0.216949152541877,0.013559322033924,0.000000000000003,0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448256,-0.013559322033924,-0.000000000000002,2 +3822,3880,3882,3940,-0.572413793103490,0.230508474575816,-0.579310344827616,0.223728813558839,-0.579310344827618,0.237288135592793,-0.586206896551745,0.230508474575816,0.013559322033954,0.000000000000003,-0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448254,-0.013559322033954,-0.000000000000001,2 +3823,3881,3883,3941,-0.572413793103492,0.244067796609748,-0.579310344827618,0.237288135592793,-0.579310344827620,0.250847457626703,-0.586206896551746,0.244067796609748,0.013559322033910,0.000000000000003,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448253,-0.013559322033910,-0.000000000000001,2 +3824,3882,3884,3942,-0.572413793103495,0.257627118643680,-0.579310344827620,0.250847457626703,-0.579310344827622,0.264406779660657,-0.586206896551747,0.257627118643680,0.013559322033954,0.000000000000003,0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448251,-0.013559322033954,-0.000000000000002,2 +3825,3883,3885,3943,-0.572413793103498,0.271186440677618,-0.579310344827622,0.264406779660657,-0.579310344827624,0.277966101694579,-0.586206896551749,0.271186440677618,0.013559322033922,0.000000000000003,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033922,-0.000000000000001,2 +3826,3884,3886,3944,-0.572413793103501,0.284745762711550,-0.579310344827624,0.277966101694579,-0.579310344827627,0.291525423728521,-0.586206896551750,0.284745762711550,0.013559322033942,0.000000000000003,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448249,-0.013559322033942,-0.000000000000001,2 +3827,3885,3887,3945,-0.572413793103504,0.298305084745489,-0.579310344827627,0.291525423728521,-0.579310344827629,0.305084745762457,-0.586206896551752,0.298305084745489,0.013559322033936,0.000000000000003,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448247,-0.013559322033936,-0.000000000000001,2 +3828,3886,3888,3946,-0.572413793103506,0.311864406779421,-0.579310344827629,0.305084745762457,-0.579310344827631,0.318644067796385,-0.586206896551753,0.311864406779421,0.013559322033928,0.000000000000003,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033928,-0.000000000000002,2 +3829,3887,3889,3947,-0.572413793103509,0.325423728813361,-0.579310344827631,0.318644067796385,-0.579310344827633,0.332203389830336,-0.586206896551755,0.325423728813361,0.013559322033951,0.000000000000003,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033951,-0.000000000000001,2 +3830,3888,3890,3948,-0.572413793103512,0.338983050847293,-0.579310344827633,0.332203389830336,-0.579310344827635,0.345762711864250,-0.586206896551756,0.338983050847293,0.013559322033914,0.000000000000003,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000001,2 +3831,3889,3891,3949,-0.572413793103515,0.352542372881227,-0.579310344827635,0.345762711864250,-0.579310344827637,0.359322033898204,-0.586206896551757,0.352542372881227,0.013559322033954,0.000000000000003,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448242,-0.013559322033954,-0.000000000000001,2 +3832,3890,3892,3950,-0.572413793103518,0.366101694915162,-0.579310344827637,0.359322033898204,-0.579310344827639,0.372881355932121,-0.586206896551759,0.366101694915162,0.013559322033918,0.000000000000003,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448241,-0.013559322033918,-0.000000000000002,2 +3833,3891,3893,3951,-0.572413793103520,0.379661016949094,-0.579310344827639,0.372881355932121,-0.579310344827641,0.386440677966068,-0.586206896551760,0.379661016949094,0.013559322033946,0.000000000000003,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000001,2 +1850,3834,3892,3952,-0.579310344827643,0.400000000000000,-0.572413793103523,0.393220338983034,-0.579310344827641,0.386440677966068,-0.586206896551762,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000003,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000001,2 +80,3835,3895,4358,-0.600000000000000,-0.393220338983059,-0.586206896551679,-0.393220338983059,-0.593103448275840,-0.386440677966118,-0.593103448275839,-0.400000000000000,-0.013559322033881,-0.000000000000000,0.013559322033882,0.000000000000002,-0.000000000000000,0.013793103448320,-0.000000000000000,-0.013793103448322,2 +84,3836,3894,3896,-0.600000000000000,-0.379661016949189,-0.586206896551680,-0.379661016949189,-0.593103448275840,-0.386440677966118,-0.593103448275840,-0.372881355932259,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448320,-0.000000000000000,0.013793103448319,2 +88,3837,3895,3897,-0.600000000000000,-0.366101694915329,-0.586206896551682,-0.366101694915329,-0.593103448275840,-0.372881355932259,-0.593103448275841,-0.359322033898399,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448319,0.000000000000000,0.013793103448317,2 +92,3838,3896,3898,-0.600000000000000,-0.352542372881469,-0.586206896551683,-0.352542372881469,-0.593103448275841,-0.359322033898399,-0.593103448275842,-0.345762711864539,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448316,2 +96,3839,3897,3899,-0.600000000000000,-0.338983050847605,-0.586206896551684,-0.338983050847605,-0.593103448275842,-0.345762711864539,-0.593103448275843,-0.332203389830670,-0.013559322033869,-0.000000000000000,0.013559322033869,0.000000000000001,-0.000000000000000,-0.013793103448316,-0.000000000000000,0.013793103448315,2 +100,3840,3898,3900,-0.600000000000000,-0.325423728813729,-0.586206896551686,-0.325423728813729,-0.593103448275843,-0.332203389830670,-0.593103448275843,-0.318644067796787,-0.013559322033883,-0.000000000000000,0.013559322033883,0.000000000000002,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448313,2 +104,3841,3899,3901,-0.600000000000000,-0.311864406779851,-0.586206896551687,-0.311864406779851,-0.593103448275843,-0.318644067796787,-0.593103448275844,-0.305084745762915,-0.013559322033872,-0.000000000000000,0.013559322033872,0.000000000000001,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448312,2 +108,3842,3900,3902,-0.600000000000000,-0.298305084745975,-0.586206896551689,-0.298305084745975,-0.593103448275844,-0.305084745762915,-0.593103448275845,-0.291525423729035,-0.013559322033879,-0.000000000000000,0.013559322033879,0.000000000000001,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448311,2 +112,3843,3901,3903,-0.600000000000000,-0.284745762712106,-0.586206896551690,-0.284745762712105,-0.593103448275845,-0.291525423729035,-0.593103448275845,-0.277966101695176,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448309,2 +116,3844,3902,3904,-0.600000000000000,-0.271186440678246,-0.586206896551692,-0.271186440678246,-0.593103448275845,-0.277966101695176,-0.593103448275846,-0.264406779661316,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448308,2 +120,3845,3903,3905,-0.600000000000000,-0.257627118644386,-0.586206896551693,-0.257627118644386,-0.593103448275846,-0.264406779661316,-0.593103448275847,-0.250847457627456,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448306,2 +124,3846,3904,3906,-0.600000000000000,-0.244067796610526,-0.586206896551695,-0.244067796610526,-0.593103448275847,-0.250847457627456,-0.593103448275848,-0.237288135593597,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448306,0.000000000000000,0.013793103448305,2 +128,3847,3905,3907,-0.600000000000000,-0.230508474576667,-0.586206896551696,-0.230508474576667,-0.593103448275848,-0.237288135593597,-0.593103448275848,-0.223728813559737,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448303,2 +132,3848,3906,3908,-0.600000000000000,-0.216949152542807,-0.586206896551697,-0.216949152542807,-0.593103448275848,-0.223728813559737,-0.593103448275849,-0.210169491525877,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,2 +136,3849,3907,3909,-0.600000000000000,-0.203389830508947,-0.586206896551699,-0.203389830508947,-0.593103448275849,-0.210169491525877,-0.593103448275850,-0.196610169492017,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,2 +140,3850,3908,3910,-0.600000000000000,-0.189830508475088,-0.586206896551700,-0.189830508475088,-0.593103448275850,-0.196610169492017,-0.593103448275850,-0.183050847458158,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448299,2 +144,3851,3909,3911,-0.600000000000000,-0.176271186441228,-0.586206896551702,-0.176271186441228,-0.593103448275850,-0.183050847458158,-0.593103448275851,-0.169491525424298,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448297,2 +148,3852,3910,3912,-0.600000000000000,-0.162711864407368,-0.586206896551703,-0.162711864407368,-0.593103448275851,-0.169491525424298,-0.593103448275852,-0.155932203390438,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,2 +152,3853,3911,3913,-0.600000000000000,-0.149152542373509,-0.586206896551704,-0.149152542373509,-0.593103448275852,-0.155932203390438,-0.593103448275853,-0.142372881356579,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448295,2 +156,3854,3912,3914,-0.600000000000000,-0.135593220339649,-0.586206896551706,-0.135593220339649,-0.593103448275853,-0.142372881356579,-0.593103448275853,-0.128813559322719,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448295,0.000000000000000,0.013793103448293,2 +160,3855,3913,3915,-0.600000000000000,-0.122033898305789,-0.586206896551707,-0.122033898305789,-0.593103448275853,-0.128813559322719,-0.593103448275854,-0.115254237288859,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448292,2 +164,3856,3914,3916,-0.600000000000000,-0.108474576271933,-0.586206896551709,-0.108474576271933,-0.593103448275854,-0.115254237288859,-0.593103448275855,-0.101694915255008,-0.013559322033852,-0.000000000000000,0.013559322033852,0.000000000000001,0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448291,2 +168,3857,3915,3917,-0.600000000000000,-0.094915254238085,-0.586206896551710,-0.094915254238085,-0.593103448275855,-0.101694915255008,-0.593103448275855,-0.088135593221162,-0.013559322033846,-0.000000000000000,0.013559322033846,0.000000000000002,-0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448289,2 +172,3858,3916,3918,-0.600000000000000,-0.081355932204232,-0.586206896551712,-0.081355932204232,-0.593103448275855,-0.088135593221162,-0.593103448275856,-0.074576271187302,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448288,2 +176,3859,3917,3919,-0.600000000000000,-0.067796610170372,-0.586206896551713,-0.067796610170372,-0.593103448275856,-0.074576271187302,-0.593103448275857,-0.061016949153442,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448286,2 +180,3860,3918,3920,-0.600000000000000,-0.054237288136513,-0.586206896551714,-0.054237288136513,-0.593103448275857,-0.061016949153442,-0.593103448275858,-0.047457627119583,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,2 +184,3861,3919,3921,-0.600000000000000,-0.040677966102653,-0.586206896551716,-0.040677966102653,-0.593103448275858,-0.047457627119583,-0.593103448275858,-0.033898305085723,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,2 +188,3862,3920,3922,-0.600000000000000,-0.027118644068793,-0.586206896551717,-0.027118644068793,-0.593103448275858,-0.033898305085723,-0.593103448275859,-0.020338983051863,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448282,2 +192,3863,3921,3923,-0.600000000000000,-0.013559322034933,-0.586206896551719,-0.013559322034933,-0.593103448275859,-0.020338983051863,-0.593103448275860,-0.006779661018004,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448282,0.000000000000000,0.013793103448280,2 +196,3864,3922,3924,-0.600000000000000,-0.000000000001056,-0.586206896551720,-0.000000000001056,-0.593103448275860,-0.006779661018004,-0.593103448275860,0.006779661015891,-0.013559322033895,-0.000000000000000,0.013559322033895,0.000000000000001,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,2 +200,3865,3923,3925,-0.600000000000000,0.013559322032862,-0.586206896551722,0.013559322032862,-0.593103448275860,0.006779661015891,-0.593103448275861,0.020338983049833,-0.013559322033941,-0.000000000000000,0.013559322033941,0.000000000000001,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448278,2 +204,3866,3924,3926,-0.600000000000000,0.027118644066798,-0.586206896551723,0.027118644066798,-0.593103448275861,0.020338983049833,-0.593103448275862,0.033898305083763,-0.013559322033930,-0.000000000000000,0.013559322033930,0.000000000000001,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448276,2 +208,3867,3925,3927,-0.600000000000000,0.040677966100731,-0.586206896551724,0.040677966100731,-0.593103448275862,0.033898305083763,-0.593103448275863,0.047457627117699,-0.013559322033937,-0.000000000000000,0.013559322033937,0.000000000000002,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448275,2 +212,3868,3926,3928,-0.600000000000000,0.054237288134667,-0.586206896551726,0.054237288134667,-0.593103448275863,0.047457627117699,-0.593103448275863,0.061016949151634,-0.013559322033935,-0.000000000000000,0.013559322033935,0.000000000000002,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448273,2 +216,3869,3927,3929,-0.600000000000000,0.067796610168599,-0.586206896551727,0.067796610168599,-0.593103448275863,0.061016949151634,-0.593103448275864,0.074576271185564,-0.013559322033930,-0.000000000000000,0.013559322033930,0.000000000000001,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,2 +220,3870,3928,3930,-0.600000000000000,0.081355932202535,-0.586206896551729,0.081355932202535,-0.593103448275864,0.074576271185564,-0.593103448275865,0.088135593219506,-0.013559322033941,-0.000000000000000,0.013559322033941,0.000000000000001,0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448271,2 +224,3871,3929,3931,-0.600000000000000,0.094915254236471,-0.586206896551730,0.094915254236471,-0.593103448275865,0.088135593219506,-0.593103448275865,0.101694915253436,-0.013559322033930,-0.000000000000000,0.013559322033930,0.000000000000002,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448269,2 +228,3872,3930,3932,-0.600000000000000,0.108474576270409,-0.586206896551732,0.108474576270409,-0.593103448275865,0.101694915253436,-0.593103448275866,0.115254237287382,-0.013559322033946,-0.000000000000000,0.013559322033946,0.000000000000001,-0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448268,2 +232,3873,3931,3933,-0.600000000000000,0.122033898304341,-0.586206896551733,0.122033898304341,-0.593103448275866,0.115254237287382,-0.593103448275867,0.128813559321301,-0.013559322033919,-0.000000000000000,0.013559322033919,0.000000000000001,-0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448266,2 +236,3874,3932,3934,-0.600000000000000,0.135593220338273,-0.586206896551734,0.135593220338273,-0.593103448275867,0.128813559321301,-0.593103448275867,0.142372881355246,-0.013559322033945,-0.000000000000000,0.013559322033945,0.000000000000002,-0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448265,2 +240,3875,3933,3935,-0.600000000000000,0.149152542372213,-0.586206896551736,0.149152542372213,-0.593103448275867,0.142372881355246,-0.593103448275868,0.155932203389179,-0.013559322033933,-0.000000000000000,0.013559322033933,0.000000000000001,-0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448263,2 +244,3876,3934,3936,-0.600000000000000,0.162711864406145,-0.586206896551737,0.162711864406145,-0.593103448275868,0.155932203389179,-0.593103448275869,0.169491525423110,-0.013559322033931,-0.000000000000000,0.013559322033931,0.000000000000001,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448262,2 +248,3877,3935,3937,-0.600000000000000,0.176271186440084,-0.586206896551739,0.176271186440084,-0.593103448275869,0.169491525423110,-0.593103448275870,0.183050847457058,-0.013559322033947,-0.000000000000000,0.013559322033948,0.000000000000001,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448261,2 +252,3878,3936,3938,-0.600000000000000,0.189830508474016,-0.586206896551740,0.189830508474016,-0.593103448275870,0.183050847457058,-0.593103448275870,0.196610169490975,-0.013559322033917,-0.000000000000000,0.013559322033917,0.000000000000002,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448259,2 +256,3879,3937,3939,-0.600000000000000,0.203389830507945,-0.586206896551742,0.203389830507945,-0.593103448275870,0.196610169490975,-0.593103448275871,0.210169491524915,-0.013559322033940,-0.000000000000000,0.013559322033940,0.000000000000001,-0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448258,2 +260,3880,3938,3940,-0.600000000000000,0.216949152541877,-0.586206896551743,0.216949152541877,-0.593103448275871,0.210169491524915,-0.593103448275872,0.223728813558839,-0.013559322033924,-0.000000000000000,0.013559322033924,0.000000000000002,-0.000000000000000,-0.013793103448258,0.000000000000000,0.013793103448256,2 +264,3881,3939,3941,-0.600000000000000,0.230508474575816,-0.586206896551745,0.230508474575816,-0.593103448275872,0.223728813558839,-0.593103448275873,0.237288135592793,-0.013559322033954,-0.000000000000000,0.013559322033954,0.000000000000001,-0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448255,2 +268,3882,3940,3942,-0.600000000000000,0.244067796609748,-0.586206896551746,0.244067796609748,-0.593103448275873,0.237288135592793,-0.593103448275873,0.250847457626703,-0.013559322033910,-0.000000000000000,0.013559322033910,0.000000000000001,-0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448253,2 +272,3883,3941,3943,-0.600000000000000,0.257627118643680,-0.586206896551747,0.257627118643680,-0.593103448275873,0.250847457626703,-0.593103448275874,0.264406779660657,-0.013559322033954,-0.000000000000000,0.013559322033954,0.000000000000002,-0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448252,2 +276,3884,3942,3944,-0.600000000000000,0.271186440677618,-0.586206896551749,0.271186440677618,-0.593103448275874,0.264406779660657,-0.593103448275875,0.277966101694579,-0.013559322033922,-0.000000000000000,0.013559322033922,0.000000000000001,-0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448251,2 +280,3885,3943,3945,-0.600000000000000,0.284745762711550,-0.586206896551750,0.284745762711550,-0.593103448275875,0.277966101694579,-0.593103448275875,0.291525423728521,-0.013559322033942,-0.000000000000000,0.013559322033942,0.000000000000001,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448249,2 +284,3886,3944,3946,-0.600000000000000,0.298305084745489,-0.586206896551752,0.298305084745489,-0.593103448275875,0.291525423728521,-0.593103448275876,0.305084745762457,-0.013559322033936,-0.000000000000000,0.013559322033936,0.000000000000001,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448248,2 +288,3887,3945,3947,-0.600000000000000,0.311864406779421,-0.586206896551753,0.311864406779421,-0.593103448275876,0.305084745762457,-0.593103448275877,0.318644067796385,-0.013559322033928,-0.000000000000000,0.013559322033928,0.000000000000002,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448246,2 +292,3888,3946,3948,-0.600000000000000,0.325423728813361,-0.586206896551755,0.325423728813361,-0.593103448275877,0.318644067796385,-0.593103448275878,0.332203389830336,-0.013559322033950,-0.000000000000000,0.013559322033951,0.000000000000001,-0.000000000000000,-0.013793103448246,0.000000000000000,0.013793103448245,2 +296,3889,3947,3949,-0.600000000000000,0.338983050847293,-0.586206896551756,0.338983050847293,-0.593103448275878,0.332203389830336,-0.593103448275878,0.345762711864250,-0.013559322033914,-0.000000000000000,0.013559322033914,0.000000000000001,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448243,2 +300,3890,3948,3950,-0.600000000000000,0.352542372881227,-0.586206896551757,0.352542372881227,-0.593103448275878,0.345762711864250,-0.593103448275879,0.359322033898204,-0.013559322033954,-0.000000000000000,0.013559322033954,0.000000000000001,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448242,2 +304,3891,3949,3951,-0.600000000000000,0.366101694915163,-0.586206896551759,0.366101694915162,-0.593103448275879,0.359322033898204,-0.593103448275880,0.372881355932121,-0.013559322033918,-0.000000000000000,0.013559322033918,0.000000000000002,-0.000000000000000,-0.013793103448242,0.000000000000000,0.013793103448240,2 +308,3892,3950,3952,-0.600000000000000,0.379661016949095,-0.586206896551760,0.379661016949094,-0.593103448275880,0.372881355932121,-0.593103448275880,0.386440677966068,-0.013559322033946,-0.000000000000000,0.013559322033946,0.000000000000001,-0.000000000000000,-0.013793103448240,0.000000000000000,0.013793103448239,2 +312,1836,3893,3951,-0.600000000000000,0.393220338983034,-0.593103448275881,0.400000000000000,-0.586206896551762,0.393220338983034,-0.593103448275880,0.386440677966068,-0.013559322033932,0.000000000000000,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000001,-0.000000000000000,-0.013793103448239,2 +569,3954,3967,4359,-0.206896551724127,-0.600000000000000,-0.206896551724127,-0.585714285714262,-0.213793103448254,-0.592857142857131,-0.200000000000000,-0.592857142857131,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,-0.014285714285738,-0.000000000000000,0.014285714285738,0.000000000000000,2 +3953,3955,3968,4360,-0.206896551724127,-0.585714285714262,-0.206896551724127,-0.571428571428510,-0.213793103448254,-0.578571428571386,-0.200000000000000,-0.578571428571386,-0.000000000000000,-0.013793103448254,-0.000000000000001,0.013793103448254,-0.014285714285752,0.000000000000000,0.014285714285753,-0.000000000000000,2 +3954,3956,3969,4361,-0.206896551724127,-0.571428571428510,-0.206896551724127,-0.557142857142755,-0.213793103448254,-0.564285714285634,-0.200000000000000,-0.564285714285631,0.000000000000001,-0.013793103448254,-0.000000000000004,0.013793103448254,-0.014285714285753,-0.000000000000000,0.014285714285756,-0.000000000000000,2 +3955,3957,3970,4362,-0.206896551724127,-0.557142857142755,-0.206896551724127,-0.542857142857000,-0.213793103448254,-0.549999999999880,-0.200000000000000,-0.549999999999875,0.000000000000004,-0.013793103448254,-0.000000000000006,0.013793103448254,-0.014285714285754,-0.000000000000000,0.014285714285756,-0.000000000000000,2 +3956,3958,3971,4363,-0.206896551724127,-0.542857142857000,-0.206896551724127,-0.528571428571252,-0.213793103448254,-0.535714285714130,-0.200000000000000,-0.535714285714122,0.000000000000006,-0.013793103448254,-0.000000000000009,0.013793103448254,-0.014285714285747,-0.000000000000000,0.014285714285750,-0.000000000000000,2 +3957,3959,3972,4364,-0.206896551724127,-0.528571428571252,-0.206896551724127,-0.514285714285495,-0.213793103448254,-0.521428571428379,-0.200000000000000,-0.521428571428368,0.000000000000009,-0.013793103448254,-0.000000000000015,0.013793103448254,-0.014285714285754,-0.000000000000000,0.014285714285759,-0.000000000000000,2 +3958,3960,3973,4365,-0.206896551724127,-0.514285714285495,-0.206896551724127,-0.499999999999770,-0.213793103448254,-0.507142857142641,-0.200000000000000,-0.507142857142625,0.000000000000015,-0.013793103448254,-0.000000000000018,0.013793103448254,-0.014285714285723,-0.000000000000000,0.014285714285727,-0.000000000000000,2 +3959,3961,3974,4366,-0.206896551724127,-0.499999999999770,-0.206896551724127,-0.485714285714068,-0.213793103448254,-0.492857142856928,-0.200000000000000,-0.492857142856910,0.000000000000018,-0.013793103448254,-0.000000000000017,0.013793103448254,-0.014285714285703,-0.000000000000000,0.014285714285702,-0.000000000000000,2 +3960,3962,3975,4367,-0.206896551724127,-0.485714285714068,-0.206896551724127,-0.471428571428397,-0.213793103448254,-0.478571428571240,-0.200000000000000,-0.478571428571225,0.000000000000017,-0.013793103448254,-0.000000000000014,0.013793103448254,-0.014285714285672,-0.000000000000000,0.014285714285669,-0.000000000000000,2 +3961,3963,3976,4368,-0.206896551724127,-0.471428571428397,-0.206896551724127,-0.457142857142726,-0.213793103448254,-0.464285714285568,-0.200000000000000,-0.464285714285555,0.000000000000014,-0.013793103448254,-0.000000000000011,0.013793103448254,-0.014285714285672,0.000000000000000,0.014285714285669,-0.000000000000000,2 +3962,3964,3977,4369,-0.206896551724127,-0.457142857142726,-0.206896551724127,-0.442857142857055,-0.213793103448254,-0.449999999999895,-0.200000000000000,-0.449999999999886,0.000000000000011,-0.013793103448254,-0.000000000000007,0.013793103448254,-0.014285714285673,-0.000000000000000,0.014285714285669,-0.000000000000000,2 +3963,3965,3978,4370,-0.206896551724127,-0.442857142857055,-0.206896551724127,-0.428571428571384,-0.213793103448254,-0.435714285714223,-0.200000000000000,-0.435714285714217,0.000000000000007,-0.013793103448254,-0.000000000000004,0.013793103448254,-0.014285714285672,-0.000000000000000,0.014285714285669,-0.000000000000000,2 +3964,3966,3979,4371,-0.206896551724127,-0.428571428571384,-0.206896551724127,-0.414285714285671,-0.213793103448254,-0.421428571428529,-0.200000000000000,-0.421428571428526,0.000000000000004,-0.013793103448254,-0.000000000000003,0.013793103448254,-0.014285714285714,-0.000000000000000,0.014285714285713,-0.000000000000000,2 +2242,3965,3980,4372,-0.206896551724127,-0.400000000000000,-0.206896551724127,-0.414285714285671,-0.213793103448254,-0.407142857142836,-0.200000000000000,-0.407142857142835,-0.000000000000000,0.013793103448254,0.000000000000003,-0.013793103448254,-0.014285714285672,0.000000000000000,0.014285714285669,-0.000000000000000,2 +563,3953,3968,3981,-0.220689655172375,-0.600000000000000,-0.213793103448254,-0.592857142857131,-0.220689655172375,-0.585714285714262,-0.227586206896496,-0.592857142857131,0.000000000000000,-0.013793103448243,0.014285714285738,0.000000000000000,0.000000000000000,0.013793103448243,-0.014285714285738,-0.000000000000000,2 +3954,3967,3969,3982,-0.213793103448254,-0.578571428571386,-0.220689655172375,-0.585714285714262,-0.220689655172375,-0.571428571428511,-0.227586206896496,-0.578571428571387,0.014285714285752,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000001,0.013793103448243,-0.014285714285751,-0.000000000000000,2 +3955,3968,3970,3983,-0.213793103448254,-0.564285714285634,-0.220689655172375,-0.571428571428511,-0.220689655172375,-0.557142857142759,-0.227586206896496,-0.564285714285636,0.014285714285753,0.000000000000000,0.000000000000001,-0.013793103448243,-0.000000000000004,0.013793103448243,-0.014285714285751,-0.000000000000000,2 +3956,3969,3971,3984,-0.213793103448254,-0.549999999999880,-0.220689655172375,-0.557142857142759,-0.220689655172375,-0.542857142857007,-0.227586206896496,-0.549999999999885,0.014285714285754,0.000000000000000,0.000000000000004,-0.013793103448243,-0.000000000000006,0.013793103448243,-0.014285714285751,-0.000000000000000,2 +3957,3970,3972,3985,-0.213793103448254,-0.535714285714130,-0.220689655172375,-0.542857142857007,-0.220689655172375,-0.528571428571261,-0.227586206896496,-0.535714285714137,0.014285714285747,0.000000000000000,0.000000000000006,-0.013793103448243,-0.000000000000009,0.013793103448243,-0.014285714285745,-0.000000000000000,2 +3958,3971,3973,3986,-0.213793103448254,-0.521428571428379,-0.220689655172375,-0.528571428571261,-0.220689655172375,-0.514285714285510,-0.227586206896496,-0.521428571428391,0.014285714285754,0.000000000000000,0.000000000000009,-0.013793103448243,-0.000000000000015,0.013793103448243,-0.014285714285748,0.000000000000000,2 +3959,3972,3974,3987,-0.213793103448254,-0.507142857142641,-0.220689655172375,-0.514285714285510,-0.220689655172375,-0.499999999999789,-0.227586206896496,-0.507142857142658,0.014285714285723,0.000000000000000,0.000000000000015,-0.013793103448243,-0.000000000000018,0.013793103448243,-0.014285714285719,-0.000000000000000,2 +3960,3973,3975,3988,-0.213793103448254,-0.492857142856928,-0.220689655172375,-0.499999999999789,-0.220689655172375,-0.485714285714085,-0.227586206896496,-0.492857142856946,0.014285714285703,0.000000000000000,0.000000000000018,-0.013793103448243,-0.000000000000017,0.013793103448243,-0.014285714285705,-0.000000000000000,2 +3961,3974,3976,3989,-0.213793103448254,-0.478571428571240,-0.220689655172375,-0.485714285714085,-0.220689655172375,-0.471428571428411,-0.227586206896496,-0.478571428571256,0.014285714285672,0.000000000000000,0.000000000000017,-0.013793103448243,-0.000000000000014,0.013793103448243,-0.014285714285675,-0.000000000000000,2 +3962,3975,3977,3990,-0.213793103448254,-0.464285714285568,-0.220689655172375,-0.471428571428411,-0.220689655172375,-0.457142857142737,-0.227586206896496,-0.464285714285580,0.014285714285672,-0.000000000000000,0.000000000000014,-0.013793103448243,-0.000000000000011,0.013793103448243,-0.014285714285676,-0.000000000000000,2 +3963,3976,3978,3991,-0.213793103448254,-0.449999999999895,-0.220689655172375,-0.457142857142737,-0.220689655172375,-0.442857142857063,-0.227586206896496,-0.449999999999904,0.014285714285673,0.000000000000000,0.000000000000011,-0.013793103448243,-0.000000000000008,0.013793103448243,-0.014285714285676,-0.000000000000000,2 +3964,3977,3979,3992,-0.213793103448254,-0.435714285714223,-0.220689655172375,-0.442857142857063,-0.220689655172375,-0.428571428571389,-0.227586206896496,-0.435714285714229,0.014285714285672,0.000000000000000,0.000000000000008,-0.013793103448243,-0.000000000000004,0.013793103448243,-0.014285714285676,-0.000000000000000,2 +3965,3978,3980,3993,-0.213793103448254,-0.421428571428529,-0.220689655172375,-0.428571428571389,-0.220689655172375,-0.414285714285674,-0.227586206896496,-0.421428571428533,0.014285714285714,0.000000000000000,0.000000000000004,-0.013793103448243,-0.000000000000003,0.013793103448243,-0.014285714285716,-0.000000000000000,2 +2301,3966,3979,3994,-0.220689655172375,-0.400000000000000,-0.213793103448254,-0.407142857142836,-0.220689655172375,-0.414285714285674,-0.227586206896496,-0.407142857142838,-0.000000000000000,0.013793103448243,0.014285714285672,-0.000000000000000,0.000000000000003,-0.013793103448243,-0.014285714285675,0.000000000000000,2 +557,3967,3982,3995,-0.234482758620623,-0.600000000000000,-0.227586206896496,-0.592857142857131,-0.234482758620623,-0.585714285714262,-0.241379310344750,-0.592857142857131,0.000000000000000,-0.013793103448254,0.014285714285738,0.000000000000000,0.000000000000000,0.013793103448254,-0.014285714285738,-0.000000000000000,2 +3968,3981,3983,3996,-0.227586206896496,-0.578571428571387,-0.234482758620623,-0.585714285714262,-0.234482758620623,-0.571428571428512,-0.241379310344750,-0.578571428571387,0.014285714285751,0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000001,0.013793103448254,-0.014285714285749,-0.000000000000000,2 +3969,3982,3984,3997,-0.227586206896496,-0.564285714285636,-0.234482758620623,-0.571428571428512,-0.234482758620623,-0.557142857142762,-0.241379310344750,-0.564285714285638,0.014285714285751,0.000000000000000,0.000000000000001,-0.013793103448254,-0.000000000000004,0.013793103448254,-0.014285714285748,-0.000000000000000,2 +3970,3983,3985,3998,-0.227586206896496,-0.549999999999885,-0.234482758620623,-0.557142857142762,-0.234482758620623,-0.542857142857013,-0.241379310344750,-0.549999999999890,0.014285714285751,0.000000000000000,0.000000000000004,-0.013793103448254,-0.000000000000006,0.013793103448254,-0.014285714285748,0.000000000000000,2 +3971,3984,3986,3999,-0.227586206896496,-0.535714285714137,-0.234482758620623,-0.542857142857013,-0.234482758620623,-0.528571428571270,-0.241379310344750,-0.535714285714145,0.014285714285745,0.000000000000000,0.000000000000006,-0.013793103448254,-0.000000000000009,0.013793103448253,-0.014285714285742,-0.000000000000000,2 +3972,3985,3987,4000,-0.227586206896496,-0.521428571428391,-0.234482758620623,-0.528571428571270,-0.234482758620623,-0.514285714285524,-0.241379310344750,-0.521428571428403,0.014285714285748,-0.000000000000000,0.000000000000009,-0.013793103448253,-0.000000000000014,0.013793103448254,-0.014285714285742,-0.000000000000000,2 +3973,3986,3988,4001,-0.227586206896496,-0.507142857142658,-0.234482758620623,-0.514285714285524,-0.234482758620623,-0.499999999999807,-0.241379310344750,-0.507142857142674,0.014285714285719,0.000000000000000,0.000000000000014,-0.013793103448254,-0.000000000000018,0.013793103448254,-0.014285714285716,-0.000000000000000,2 +3974,3987,3989,4002,-0.227586206896496,-0.492857142856946,-0.234482758620623,-0.499999999999807,-0.234482758620623,-0.485714285714102,-0.241379310344750,-0.492857142856963,0.014285714285705,0.000000000000000,0.000000000000018,-0.013793103448254,-0.000000000000017,0.013793103448254,-0.014285714285706,-0.000000000000000,2 +3975,3988,3990,4003,-0.227586206896496,-0.478571428571256,-0.234482758620623,-0.485714285714102,-0.234482758620623,-0.471428571428425,-0.241379310344750,-0.478571428571271,0.014285714285675,0.000000000000000,0.000000000000017,-0.013793103448254,-0.000000000000014,0.013793103448254,-0.014285714285678,-0.000000000000000,2 +3976,3989,3991,4004,-0.227586206896496,-0.464285714285580,-0.234482758620623,-0.471428571428425,-0.234482758620623,-0.457142857142748,-0.241379310344750,-0.464285714285593,0.014285714285676,0.000000000000000,0.000000000000014,-0.013793103448254,-0.000000000000011,0.013793103448254,-0.014285714285679,-0.000000000000000,2 +3977,3990,3992,4005,-0.227586206896496,-0.449999999999904,-0.234482758620623,-0.457142857142748,-0.234482758620623,-0.442857142857070,-0.241379310344750,-0.449999999999914,0.014285714285676,0.000000000000000,0.000000000000011,-0.013793103448254,-0.000000000000007,0.013793103448254,-0.014285714285679,-0.000000000000000,2 +3978,3991,3993,4006,-0.227586206896496,-0.435714285714229,-0.234482758620623,-0.442857142857070,-0.234482758620623,-0.428571428571393,-0.241379310344750,-0.435714285714235,0.014285714285676,0.000000000000000,0.000000000000007,-0.013793103448254,-0.000000000000004,0.013793103448254,-0.014285714285679,-0.000000000000000,2 +3979,3992,3994,4007,-0.227586206896496,-0.421428571428533,-0.234482758620623,-0.428571428571393,-0.234482758620623,-0.414285714285677,-0.241379310344750,-0.421428571428537,0.014285714285716,0.000000000000000,0.000000000000004,-0.013793103448254,-0.000000000000003,0.013793103448254,-0.014285714285717,-0.000000000000000,2 +2360,3980,3993,4008,-0.234482758620623,-0.400000000000000,-0.227586206896496,-0.407142857142838,-0.234482758620623,-0.414285714285677,-0.241379310344750,-0.407142857142839,-0.000000000000000,0.013793103448254,0.014285714285675,-0.000000000000000,0.000000000000003,-0.013793103448254,-0.014285714285678,0.000000000000000,2 +551,3981,3996,4009,-0.248275862068872,-0.600000000000000,-0.241379310344750,-0.592857142857131,-0.248275862068872,-0.585714285714261,-0.255172413792995,-0.592857142857131,0.000000000000000,-0.013793103448245,0.014285714285738,0.000000000000000,0.000000000000001,0.013793103448245,-0.014285714285739,-0.000000000000000,2 +3982,3995,3997,4010,-0.241379310344750,-0.578571428571387,-0.248275862068872,-0.585714285714261,-0.248275862068872,-0.571428571428513,-0.255172413792995,-0.578571428571387,0.014285714285749,0.000000000000000,-0.000000000000001,-0.013793103448245,-0.000000000000001,0.013793103448245,-0.014285714285748,-0.000000000000000,2 +3983,3996,3998,4011,-0.241379310344750,-0.564285714285638,-0.248275862068872,-0.571428571428513,-0.248275862068872,-0.557142857142766,-0.255172413792995,-0.564285714285641,0.014285714285748,0.000000000000000,0.000000000000001,-0.013793103448245,-0.000000000000004,0.013793103448245,-0.014285714285745,-0.000000000000000,2 +3984,3997,3999,4012,-0.241379310344750,-0.549999999999890,-0.248275862068872,-0.557142857142766,-0.248275862068872,-0.542857142857020,-0.255172413792995,-0.549999999999895,0.014285714285748,-0.000000000000000,0.000000000000004,-0.013793103448245,-0.000000000000006,0.013793103448245,-0.014285714285745,0.000000000000000,2 +3985,3998,4000,4013,-0.241379310344750,-0.535714285714145,-0.248275862068872,-0.542857142857020,-0.248275862068872,-0.528571428571278,-0.255172413792995,-0.535714285714153,0.014285714285742,0.000000000000000,0.000000000000006,-0.013793103448245,-0.000000000000009,0.013793103448245,-0.014285714285740,-0.000000000000000,2 +3986,3999,4001,4014,-0.241379310344750,-0.521428571428403,-0.248275862068872,-0.528571428571278,-0.248275862068872,-0.514285714285539,-0.255172413792995,-0.521428571428415,0.014285714285742,0.000000000000000,0.000000000000009,-0.013793103448245,-0.000000000000015,0.013793103448245,-0.014285714285736,0.000000000000000,2 +3987,4000,4002,4015,-0.241379310344750,-0.507142857142674,-0.248275862068872,-0.514285714285539,-0.248275862068872,-0.499999999999825,-0.255172413792995,-0.507142857142691,0.014285714285716,0.000000000000000,0.000000000000015,-0.013793103448245,-0.000000000000018,0.013793103448245,-0.014285714285712,-0.000000000000000,2 +3988,4001,4003,4016,-0.241379310344750,-0.492857142856963,-0.248275862068872,-0.499999999999825,-0.248275862068872,-0.485714285714119,-0.255172413792995,-0.492857142856981,0.014285714285706,0.000000000000000,0.000000000000018,-0.013793103448245,-0.000000000000017,0.013793103448245,-0.014285714285708,-0.000000000000000,2 +3989,4002,4004,4017,-0.241379310344750,-0.478571428571271,-0.248275862068872,-0.485714285714119,-0.248275862068872,-0.471428571428439,-0.255172413792995,-0.478571428571286,0.014285714285678,0.000000000000000,0.000000000000017,-0.013793103448245,-0.000000000000014,0.013793103448245,-0.014285714285681,-0.000000000000000,2 +3990,4003,4005,4018,-0.241379310344750,-0.464285714285593,-0.248275862068872,-0.471428571428439,-0.248275862068872,-0.457142857142758,-0.255172413792995,-0.464285714285605,0.014285714285679,0.000000000000000,0.000000000000014,-0.013793103448245,-0.000000000000011,0.013793103448245,-0.014285714285682,-0.000000000000000,2 +3991,4004,4006,4019,-0.241379310344750,-0.449999999999914,-0.248275862068872,-0.457142857142758,-0.248275862068872,-0.442857142857078,-0.255172413792995,-0.449999999999923,0.014285714285679,0.000000000000000,0.000000000000011,-0.013793103448245,-0.000000000000008,0.013793103448245,-0.014285714285682,-0.000000000000000,2 +3992,4005,4007,4020,-0.241379310344750,-0.435714285714235,-0.248275862068872,-0.442857142857078,-0.248275862068872,-0.428571428571397,-0.255172413792995,-0.435714285714241,0.014285714285679,0.000000000000000,0.000000000000008,-0.013793103448245,-0.000000000000004,0.013793103448245,-0.014285714285682,-0.000000000000000,2 +3993,4006,4008,4021,-0.241379310344750,-0.421428571428537,-0.248275862068872,-0.428571428571397,-0.248275862068872,-0.414285714285680,-0.255172413792995,-0.421428571428540,0.014285714285717,0.000000000000000,0.000000000000004,-0.013793103448245,-0.000000000000003,0.013793103448245,-0.014285714285718,-0.000000000000000,2 +2419,3994,4007,4022,-0.248275862068872,-0.400000000000000,-0.241379310344750,-0.407142857142839,-0.248275862068872,-0.414285714285680,-0.255172413792995,-0.407142857142841,-0.000000000000000,0.013793103448245,0.014285714285678,-0.000000000000000,0.000000000000003,-0.013793103448245,-0.014285714285681,0.000000000000000,2 +545,3995,4010,4023,-0.262068965517112,-0.600000000000000,-0.255172413792995,-0.592857142857131,-0.262068965517112,-0.585714285714261,-0.268965517241230,-0.592857142857131,0.000000000000000,-0.013793103448235,0.014285714285739,0.000000000000000,-0.000000000000000,0.013793103448235,-0.014285714285739,-0.000000000000000,2 +3996,4009,4011,4024,-0.255172413792995,-0.578571428571387,-0.262068965517112,-0.585714285714261,-0.262068965517112,-0.571428571428514,-0.268965517241230,-0.578571428571388,0.014285714285748,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285747,-0.000000000000000,2 +3997,4010,4012,4025,-0.255172413792995,-0.564285714285641,-0.262068965517112,-0.571428571428514,-0.262068965517112,-0.557142857142770,-0.268965517241230,-0.564285714285643,0.014285714285745,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285743,-0.000000000000000,2 +3998,4011,4013,4026,-0.255172413792995,-0.549999999999895,-0.262068965517112,-0.557142857142770,-0.262068965517112,-0.542857142857026,-0.268965517241230,-0.549999999999900,0.014285714285745,-0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285742,-0.000000000000000,2 +3999,4012,4014,4027,-0.255172413792995,-0.535714285714153,-0.262068965517112,-0.542857142857026,-0.262068965517112,-0.528571428571287,-0.268965517241230,-0.535714285714161,0.014285714285740,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285737,-0.000000000000000,2 +4000,4013,4015,4028,-0.255172413792995,-0.521428571428415,-0.262068965517112,-0.528571428571287,-0.262068965517112,-0.514285714285554,-0.268965517241230,-0.521428571428426,0.014285714285736,-0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285731,-0.000000000000000,2 +4001,4014,4016,4029,-0.255172413792995,-0.507142857142691,-0.262068965517112,-0.514285714285554,-0.262068965517112,-0.499999999999844,-0.268965517241230,-0.507142857142707,0.014285714285712,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285708,-0.000000000000000,2 +4002,4015,4017,4030,-0.255172413792995,-0.492857142856981,-0.262068965517112,-0.499999999999844,-0.262068965517112,-0.485714285714135,-0.268965517241230,-0.492857142856998,0.014285714285708,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285709,-0.000000000000000,2 +4003,4016,4018,4031,-0.255172413792995,-0.478571428571286,-0.262068965517112,-0.485714285714135,-0.262068965517112,-0.471428571428453,-0.268965517241230,-0.478571428571302,0.014285714285681,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285684,-0.000000000000000,2 +4004,4017,4019,4032,-0.255172413792995,-0.464285714285605,-0.262068965517112,-0.471428571428453,-0.262068965517112,-0.457142857142769,-0.268965517241230,-0.464285714285617,0.014285714285682,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285685,-0.000000000000000,2 +4005,4018,4020,4033,-0.255172413792995,-0.449999999999923,-0.262068965517112,-0.457142857142769,-0.262068965517112,-0.442857142857085,-0.268965517241230,-0.449999999999932,0.014285714285682,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285686,-0.000000000000000,2 +4006,4019,4021,4034,-0.255172413792995,-0.435714285714241,-0.262068965517112,-0.442857142857085,-0.262068965517112,-0.428571428571402,-0.268965517241230,-0.435714285714247,0.014285714285682,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285685,-0.000000000000000,2 +4007,4020,4022,4035,-0.255172413792995,-0.421428571428540,-0.262068965517112,-0.428571428571402,-0.262068965517112,-0.414285714285683,-0.268965517241230,-0.421428571428544,0.014285714285718,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285720,-0.000000000000000,2 +2478,4008,4021,4036,-0.262068965517112,-0.400000000000000,-0.255172413792995,-0.407142857142841,-0.262068965517112,-0.414285714285683,-0.268965517241230,-0.407142857142842,-0.000000000000000,0.013793103448235,0.014285714285681,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285684,0.000000000000000,2 +539,4009,4024,4037,-0.275862068965347,-0.600000000000000,-0.268965517241230,-0.592857142857131,-0.275862068965347,-0.585714285714261,-0.282758620689465,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285739,0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285739,-0.000000000000000,2 +4010,4023,4025,4038,-0.268965517241230,-0.578571428571388,-0.275862068965347,-0.585714285714261,-0.275862068965347,-0.571428571428515,-0.282758620689465,-0.578571428571388,0.014285714285747,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285745,-0.000000000000000,2 +4011,4024,4026,4039,-0.268965517241230,-0.564285714285643,-0.275862068965347,-0.571428571428515,-0.275862068965347,-0.557142857142774,-0.282758620689465,-0.564285714285645,0.014285714285743,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285740,-0.000000000000000,2 +4012,4025,4027,4040,-0.268965517241230,-0.549999999999900,-0.275862068965347,-0.557142857142774,-0.275862068965347,-0.542857142857033,-0.282758620689465,-0.549999999999906,0.014285714285742,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285740,-0.000000000000000,2 +4013,4026,4028,4041,-0.268965517241230,-0.535714285714161,-0.275862068965347,-0.542857142857033,-0.275862068965347,-0.528571428571296,-0.282758620689465,-0.535714285714168,0.014285714285737,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285735,-0.000000000000000,2 +4014,4027,4029,4042,-0.268965517241230,-0.521428571428426,-0.275862068965347,-0.528571428571296,-0.275862068965347,-0.514285714285568,-0.282758620689465,-0.521428571428438,0.014285714285731,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285725,-0.000000000000000,2 +4015,4028,4030,4043,-0.268965517241230,-0.507142857142707,-0.275862068965347,-0.514285714285568,-0.275862068965347,-0.499999999999862,-0.282758620689465,-0.507142857142723,0.014285714285708,0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285704,-0.000000000000000,2 +4016,4029,4031,4044,-0.268965517241230,-0.492857142856998,-0.275862068965347,-0.499999999999862,-0.275862068965347,-0.485714285714152,-0.282758620689465,-0.492857142857016,0.014285714285709,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285711,-0.000000000000000,2 +4017,4030,4032,4045,-0.268965517241230,-0.478571428571302,-0.275862068965347,-0.485714285714152,-0.275862068965347,-0.471428571428467,-0.282758620689465,-0.478571428571317,0.014285714285684,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285687,-0.000000000000000,2 +4018,4031,4033,4046,-0.268965517241230,-0.464285714285617,-0.275862068965347,-0.471428571428467,-0.275862068965347,-0.457142857142780,-0.282758620689465,-0.464285714285630,0.014285714285685,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285688,-0.000000000000000,2 +4019,4032,4034,4047,-0.268965517241230,-0.449999999999932,-0.275862068965347,-0.457142857142780,-0.275862068965347,-0.442857142857093,-0.282758620689465,-0.449999999999941,0.014285714285686,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285689,-0.000000000000000,2 +4020,4033,4035,4048,-0.268965517241230,-0.435714285714247,-0.275862068965347,-0.442857142857093,-0.275862068965347,-0.428571428571406,-0.282758620689465,-0.435714285714252,0.014285714285685,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285688,-0.000000000000000,2 +4021,4034,4036,4049,-0.268965517241230,-0.421428571428544,-0.275862068965347,-0.428571428571406,-0.275862068965347,-0.414285714285686,-0.282758620689465,-0.421428571428548,0.014285714285720,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285721,-0.000000000000000,2 +2537,4022,4035,4050,-0.275862068965347,-0.400000000000000,-0.268965517241230,-0.407142857142842,-0.275862068965347,-0.414285714285686,-0.282758620689465,-0.407142857142844,-0.000000000000000,0.013793103448235,0.014285714285684,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285687,0.000000000000000,2 +533,4023,4038,4051,-0.289655172413583,-0.600000000000000,-0.282758620689465,-0.592857142857130,-0.289655172413583,-0.585714285714261,-0.296551724137700,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285739,0.000000000000000,-0.000000000000000,0.013793103448235,-0.014285714285739,-0.000000000000000,2 +4024,4037,4039,4052,-0.282758620689465,-0.578571428571388,-0.289655172413583,-0.585714285714261,-0.289655172413583,-0.571428571428516,-0.296551724137700,-0.578571428571389,0.014285714285745,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285745,-0.000000000000000,2 +4025,4038,4040,4053,-0.282758620689465,-0.564285714285645,-0.289655172413583,-0.571428571428516,-0.289655172413583,-0.557142857142777,-0.296551724137700,-0.564285714285648,0.014285714285740,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285737,-0.000000000000000,2 +4026,4039,4041,4054,-0.282758620689465,-0.549999999999906,-0.289655172413583,-0.557142857142777,-0.289655172413583,-0.542857142857039,-0.296551724137700,-0.549999999999911,0.014285714285740,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285737,-0.000000000000000,2 +4027,4040,4042,4055,-0.282758620689465,-0.535714285714168,-0.289655172413583,-0.542857142857039,-0.289655172413583,-0.528571428571305,-0.296551724137700,-0.535714285714176,0.014285714285735,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285732,-0.000000000000000,2 +4028,4041,4043,4056,-0.282758620689465,-0.521428571428438,-0.289655172413583,-0.528571428571305,-0.289655172413583,-0.514285714285583,-0.296551724137700,-0.521428571428450,0.014285714285725,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285719,-0.000000000000000,2 +4029,4042,4044,4057,-0.282758620689465,-0.507142857142723,-0.289655172413583,-0.514285714285583,-0.289655172413583,-0.499999999999880,-0.296551724137700,-0.507142857142740,0.014285714285704,0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285701,0.000000000000000,2 +4030,4043,4045,4058,-0.282758620689465,-0.492857142857016,-0.289655172413583,-0.499999999999880,-0.289655172413583,-0.485714285714169,-0.296551724137700,-0.492857142857034,0.014285714285711,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285712,-0.000000000000000,2 +4031,4044,4046,4059,-0.282758620689465,-0.478571428571317,-0.289655172413583,-0.485714285714169,-0.289655172413583,-0.471428571428481,-0.296551724137700,-0.478571428571333,0.014285714285687,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285690,-0.000000000000000,2 +4032,4045,4047,4060,-0.282758620689465,-0.464285714285630,-0.289655172413583,-0.471428571428481,-0.289655172413583,-0.457142857142791,-0.296551724137700,-0.464285714285642,0.014285714285688,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285691,0.000000000000000,2 +4033,4046,4048,4061,-0.282758620689465,-0.449999999999941,-0.289655172413583,-0.457142857142791,-0.289655172413583,-0.442857142857100,-0.296551724137700,-0.449999999999950,0.014285714285689,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000008,0.013793103448235,-0.014285714285692,-0.000000000000000,2 +4034,4047,4049,4062,-0.282758620689465,-0.435714285714252,-0.289655172413583,-0.442857142857100,-0.289655172413583,-0.428571428571411,-0.296551724137700,-0.435714285714258,0.014285714285688,0.000000000000000,0.000000000000008,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285691,0.000000000000000,2 +4035,4048,4050,4063,-0.282758620689465,-0.421428571428548,-0.289655172413583,-0.428571428571411,-0.289655172413583,-0.414285714285689,-0.296551724137700,-0.421428571428552,0.014285714285721,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285723,-0.000000000000000,2 +2596,4036,4049,4064,-0.289655172413583,-0.400000000000000,-0.282758620689465,-0.407142857142844,-0.289655172413583,-0.414285714285689,-0.296551724137700,-0.407142857142845,-0.000000000000000,0.013793103448235,0.014285714285687,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285690,0.000000000000000,2 +527,4037,4052,4065,-0.303448275861818,-0.600000000000000,-0.296551724137700,-0.592857142857130,-0.303448275861818,-0.585714285714261,-0.310344827585935,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285739,0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285740,-0.000000000000000,2 +4038,4051,4053,4066,-0.296551724137700,-0.578571428571389,-0.303448275861818,-0.585714285714261,-0.303448275861818,-0.571428571428517,-0.310344827585935,-0.578571428571389,0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285743,0.000000000000000,2 +4039,4052,4054,4067,-0.296551724137700,-0.564285714285648,-0.303448275861818,-0.571428571428517,-0.303448275861818,-0.557142857142781,-0.310344827585935,-0.564285714285650,0.014285714285737,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285734,-0.000000000000000,2 +4040,4053,4055,4068,-0.296551724137700,-0.549999999999911,-0.303448275861818,-0.557142857142781,-0.303448275861818,-0.542857142857045,-0.310344827585935,-0.549999999999916,0.014285714285737,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285734,-0.000000000000000,2 +4041,4054,4056,4069,-0.296551724137700,-0.535714285714176,-0.303448275861818,-0.542857142857045,-0.303448275861818,-0.528571428571314,-0.310344827585935,-0.535714285714184,0.014285714285732,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285730,-0.000000000000000,2 +4042,4055,4057,4070,-0.296551724137700,-0.521428571428450,-0.303448275861818,-0.528571428571314,-0.303448275861818,-0.514285714285598,-0.310344827585935,-0.521428571428462,0.014285714285719,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285714,-0.000000000000000,2 +4043,4056,4058,4071,-0.296551724137700,-0.507142857142740,-0.303448275861818,-0.514285714285598,-0.303448275861818,-0.499999999999899,-0.310344827585935,-0.507142857142757,0.014285714285701,-0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285697,0.000000000000000,2 +4044,4057,4059,4072,-0.296551724137700,-0.492857142857034,-0.303448275861818,-0.499999999999899,-0.303448275861818,-0.485714285714186,-0.310344827585935,-0.492857142857051,0.014285714285712,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285714,-0.000000000000000,2 +4045,4058,4060,4073,-0.296551724137700,-0.478571428571333,-0.303448275861818,-0.485714285714186,-0.303448275861818,-0.471428571428495,-0.310344827585935,-0.478571428571348,0.014285714285690,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285693,0.000000000000000,2 +4046,4059,4061,4074,-0.296551724137700,-0.464285714285642,-0.303448275861818,-0.471428571428495,-0.303448275861818,-0.457142857142802,-0.310344827585935,-0.464285714285654,0.014285714285691,-0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285695,-0.000000000000000,2 +4047,4060,4062,4075,-0.296551724137700,-0.449999999999950,-0.303448275861818,-0.457142857142802,-0.303448275861818,-0.442857142857108,-0.310344827585935,-0.449999999999959,0.014285714285692,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000008,0.013793103448235,-0.014285714285695,-0.000000000000000,2 +4048,4061,4063,4076,-0.296551724137700,-0.435714285714258,-0.303448275861818,-0.442857142857108,-0.303448275861818,-0.428571428571415,-0.310344827585935,-0.435714285714264,0.014285714285691,-0.000000000000000,0.000000000000008,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285695,0.000000000000000,2 +4049,4062,4064,4077,-0.296551724137700,-0.421428571428552,-0.303448275861818,-0.428571428571415,-0.303448275861818,-0.414285714285692,-0.310344827585935,-0.421428571428555,0.014285714285723,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285724,-0.000000000000000,2 +2655,4050,4063,4078,-0.303448275861818,-0.400000000000000,-0.296551724137700,-0.407142857142845,-0.303448275861818,-0.414285714285692,-0.310344827585935,-0.407142857142847,-0.000000000000000,0.013793103448235,0.014285714285690,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285693,-0.000000000000000,2 +521,4051,4066,4079,-0.317241379310053,-0.600000000000000,-0.310344827585935,-0.592857142857130,-0.317241379310053,-0.585714285714260,-0.324137931034170,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285740,0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285740,-0.000000000000000,2 +4052,4065,4067,4080,-0.310344827585935,-0.578571428571389,-0.317241379310053,-0.585714285714260,-0.317241379310053,-0.571428571428518,-0.324137931034170,-0.578571428571389,0.014285714285743,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285742,0.000000000000000,2 +4053,4066,4068,4081,-0.310344827585935,-0.564285714285650,-0.317241379310053,-0.571428571428518,-0.317241379310053,-0.557142857142785,-0.324137931034170,-0.564285714285652,0.014285714285734,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285732,-0.000000000000000,2 +4054,4067,4069,4082,-0.310344827585935,-0.549999999999916,-0.317241379310053,-0.557142857142785,-0.317241379310053,-0.542857142857052,-0.324137931034170,-0.549999999999921,0.014285714285734,0.000000000000000,0.000000000000003,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285731,0.000000000000000,2 +4055,4068,4070,4083,-0.310344827585935,-0.535714285714184,-0.317241379310053,-0.542857142857052,-0.317241379310053,-0.528571428571323,-0.324137931034170,-0.535714285714191,0.014285714285730,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285727,-0.000000000000000,2 +4056,4069,4071,4084,-0.310344827585935,-0.521428571428462,-0.317241379310053,-0.528571428571323,-0.317241379310053,-0.514285714285612,-0.324137931034170,-0.521428571428474,0.014285714285714,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285708,-0.000000000000000,2 +4057,4070,4072,4085,-0.310344827585935,-0.507142857142757,-0.317241379310053,-0.514285714285612,-0.317241379310053,-0.499999999999917,-0.324137931034170,-0.507142857142773,0.014285714285697,-0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285694,-0.000000000000000,2 +4058,4071,4073,4086,-0.310344827585935,-0.492857142857051,-0.317241379310053,-0.499999999999917,-0.317241379310053,-0.485714285714203,-0.324137931034170,-0.492857142857069,0.014285714285714,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285715,-0.000000000000000,2 +4059,4072,4074,4087,-0.310344827585935,-0.478571428571348,-0.317241379310053,-0.485714285714203,-0.317241379310053,-0.471428571428509,-0.324137931034170,-0.478571428571363,0.014285714285693,-0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285696,-0.000000000000000,2 +4060,4073,4075,4088,-0.310344827585935,-0.464285714285654,-0.317241379310053,-0.471428571428509,-0.317241379310053,-0.457142857142812,-0.324137931034170,-0.464285714285667,0.014285714285695,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285698,-0.000000000000000,2 +4061,4074,4076,4089,-0.310344827585935,-0.449999999999959,-0.317241379310053,-0.457142857142812,-0.317241379310053,-0.442857142857115,-0.324137931034170,-0.449999999999969,0.014285714285695,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285699,-0.000000000000000,2 +4062,4075,4077,4090,-0.310344827585935,-0.435714285714264,-0.317241379310053,-0.442857142857115,-0.317241379310053,-0.428571428571419,-0.324137931034170,-0.435714285714270,0.014285714285695,-0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285698,-0.000000000000000,2 +4063,4076,4078,4091,-0.310344827585935,-0.421428571428555,-0.317241379310053,-0.428571428571419,-0.317241379310053,-0.414285714285695,-0.324137931034170,-0.421428571428559,0.014285714285724,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285725,-0.000000000000000,2 +2714,4064,4077,4092,-0.317241379310053,-0.400000000000000,-0.310344827585935,-0.407142857142847,-0.317241379310053,-0.414285714285695,-0.324137931034170,-0.407142857142848,-0.000000000000000,0.013793103448235,0.014285714285693,0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285696,0.000000000000000,2 +515,4065,4080,4093,-0.331034482758288,-0.600000000000000,-0.324137931034170,-0.592857142857130,-0.331034482758288,-0.585714285714260,-0.337931034482406,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285740,0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285740,-0.000000000000000,2 +4066,4079,4081,4094,-0.324137931034170,-0.578571428571389,-0.331034482758288,-0.585714285714260,-0.331034482758288,-0.571428571428518,-0.337931034482406,-0.578571428571389,0.014285714285742,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285741,-0.000000000000000,2 +4067,4080,4082,4095,-0.324137931034170,-0.564285714285652,-0.331034482758288,-0.571428571428518,-0.331034482758288,-0.557142857142788,-0.337931034482406,-0.564285714285655,0.014285714285732,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285729,-0.000000000000000,2 +4068,4081,4083,4096,-0.324137931034170,-0.549999999999921,-0.331034482758288,-0.557142857142788,-0.331034482758288,-0.542857142857058,-0.337931034482406,-0.549999999999926,0.014285714285731,-0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285729,-0.000000000000000,2 +4069,4082,4084,4097,-0.324137931034170,-0.535714285714191,-0.331034482758288,-0.542857142857058,-0.331034482758288,-0.528571428571332,-0.337931034482406,-0.535714285714199,0.014285714285727,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285725,-0.000000000000000,2 +4070,4083,4085,4098,-0.324137931034170,-0.521428571428474,-0.331034482758288,-0.528571428571332,-0.331034482758288,-0.514285714285627,-0.337931034482406,-0.521428571428485,0.014285714285708,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285702,-0.000000000000000,2 +4071,4084,4086,4099,-0.324137931034170,-0.507142857142773,-0.331034482758288,-0.514285714285627,-0.331034482758288,-0.499999999999935,-0.337931034482406,-0.507142857142789,0.014285714285694,0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285690,-0.000000000000000,2 +4072,4085,4087,4100,-0.324137931034170,-0.492857142857069,-0.331034482758288,-0.499999999999935,-0.331034482758288,-0.485714285714220,-0.337931034482406,-0.492857142857086,0.014285714285715,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285716,-0.000000000000000,2 +4073,4086,4088,4101,-0.324137931034170,-0.478571428571363,-0.331034482758288,-0.485714285714220,-0.331034482758288,-0.471428571428523,-0.337931034482406,-0.478571428571379,0.014285714285696,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285699,-0.000000000000000,2 +4074,4087,4089,4102,-0.324137931034170,-0.464285714285667,-0.331034482758288,-0.471428571428523,-0.331034482758288,-0.457142857142823,-0.337931034482406,-0.464285714285679,0.014285714285698,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285701,-0.000000000000000,2 +4075,4088,4090,4103,-0.324137931034170,-0.449999999999969,-0.331034482758288,-0.457142857142823,-0.331034482758288,-0.442857142857123,-0.337931034482406,-0.449999999999978,0.014285714285699,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285702,-0.000000000000000,2 +4076,4089,4091,4104,-0.324137931034170,-0.435714285714270,-0.331034482758288,-0.442857142857123,-0.331034482758288,-0.428571428571424,-0.337931034482406,-0.435714285714276,0.014285714285698,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285701,-0.000000000000000,2 +4077,4090,4092,4105,-0.324137931034170,-0.421428571428559,-0.331034482758288,-0.428571428571424,-0.331034482758288,-0.414285714285698,-0.337931034482406,-0.421428571428563,0.014285714285725,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285727,-0.000000000000000,2 +2773,4078,4091,4106,-0.331034482758288,-0.400000000000000,-0.324137931034170,-0.407142857142848,-0.331034482758288,-0.414285714285698,-0.337931034482406,-0.407142857142850,-0.000000000000000,0.013793103448235,0.014285714285696,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285699,0.000000000000000,2 +509,4079,4094,4107,-0.344827586206523,-0.600000000000000,-0.337931034482406,-0.592857142857130,-0.344827586206523,-0.585714285714260,-0.351724137930641,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285740,0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285741,0.000000000000000,2 +4080,4093,4095,4108,-0.337931034482406,-0.578571428571389,-0.344827586206523,-0.585714285714260,-0.344827586206523,-0.571428571428519,-0.351724137930641,-0.578571428571390,0.014285714285741,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285739,-0.000000000000000,2 +4081,4094,4096,4109,-0.337931034482406,-0.564285714285655,-0.344827586206523,-0.571428571428519,-0.344827586206523,-0.557142857142792,-0.351724137930641,-0.564285714285657,0.014285714285729,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285726,-0.000000000000000,2 +4082,4095,4097,4110,-0.337931034482406,-0.549999999999926,-0.344827586206523,-0.557142857142792,-0.344827586206523,-0.542857142857065,-0.351724137930641,-0.549999999999931,0.014285714285729,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285726,0.000000000000000,2 +4083,4096,4098,4111,-0.337931034482406,-0.535714285714199,-0.344827586206523,-0.542857142857065,-0.344827586206523,-0.528571428571341,-0.351724137930640,-0.535714285714207,0.014285714285725,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285722,-0.000000000000000,2 +4084,4097,4099,4112,-0.337931034482406,-0.521428571428485,-0.344827586206523,-0.528571428571341,-0.344827586206523,-0.514285714285642,-0.351724137930640,-0.521428571428497,0.014285714285702,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285696,-0.000000000000000,2 +4085,4098,4100,4113,-0.337931034482406,-0.507142857142789,-0.344827586206523,-0.514285714285642,-0.344827586206523,-0.499999999999954,-0.351724137930641,-0.507142857142806,0.014285714285690,0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285686,-0.000000000000000,2 +4086,4099,4101,4114,-0.337931034482406,-0.492857142857086,-0.344827586206523,-0.499999999999954,-0.344827586206523,-0.485714285714237,-0.351724137930641,-0.492857142857104,0.014285714285716,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285718,-0.000000000000000,2 +4087,4100,4102,4115,-0.337931034482406,-0.478571428571379,-0.344827586206523,-0.485714285714237,-0.344827586206523,-0.471428571428536,-0.351724137930641,-0.478571428571394,0.014285714285699,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285702,-0.000000000000000,2 +4088,4101,4103,4116,-0.337931034482406,-0.464285714285679,-0.344827586206523,-0.471428571428536,-0.344827586206523,-0.457142857142834,-0.351724137930641,-0.464285714285691,0.014285714285701,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285704,-0.000000000000000,2 +4089,4102,4104,4117,-0.337931034482406,-0.449999999999978,-0.344827586206523,-0.457142857142834,-0.344827586206523,-0.442857142857131,-0.351724137930641,-0.449999999999987,0.014285714285702,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000008,0.013793103448235,-0.014285714285705,0.000000000000000,2 +4090,4103,4105,4118,-0.337931034482406,-0.435714285714276,-0.344827586206523,-0.442857142857131,-0.344827586206523,-0.428571428571428,-0.351724137930641,-0.435714285714282,0.014285714285701,0.000000000000000,0.000000000000008,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285704,-0.000000000000000,2 +4091,4104,4106,4119,-0.337931034482406,-0.421428571428563,-0.344827586206523,-0.428571428571428,-0.344827586206523,-0.414285714285701,-0.351724137930641,-0.421428571428566,0.014285714285727,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285728,-0.000000000000000,2 +2832,4092,4105,4120,-0.344827586206523,-0.400000000000000,-0.337931034482406,-0.407142857142850,-0.344827586206523,-0.414285714285701,-0.351724137930641,-0.407142857142851,-0.000000000000000,0.013793103448235,0.014285714285699,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285702,0.000000000000000,2 +503,4093,4108,4121,-0.358620689654758,-0.600000000000000,-0.351724137930641,-0.592857142857130,-0.358620689654758,-0.585714285714259,-0.365517241378876,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285741,-0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285741,0.000000000000000,2 +4094,4107,4109,4122,-0.351724137930641,-0.578571428571390,-0.358620689654758,-0.585714285714259,-0.358620689654758,-0.571428571428521,-0.365517241378876,-0.578571428571390,0.014285714285739,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285738,-0.000000000000000,2 +4095,4108,4110,4123,-0.351724137930641,-0.564285714285657,-0.358620689654758,-0.571428571428521,-0.358620689654758,-0.557142857142796,-0.365517241378876,-0.564285714285659,0.014285714285726,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285724,-0.000000000000000,2 +4096,4109,4111,4124,-0.351724137930641,-0.549999999999931,-0.358620689654758,-0.557142857142796,-0.358620689654758,-0.542857142857071,-0.365517241378876,-0.549999999999936,0.014285714285726,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285723,0.000000000000000,2 +4097,4110,4112,4125,-0.351724137930640,-0.535714285714207,-0.358620689654758,-0.542857142857071,-0.358620689654758,-0.528571428571350,-0.365517241378876,-0.535714285714214,0.014285714285722,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285720,-0.000000000000000,2 +4098,4111,4113,4126,-0.351724137930640,-0.521428571428497,-0.358620689654758,-0.528571428571350,-0.358620689654758,-0.514285714285656,-0.365517241378876,-0.521428571428509,0.014285714285696,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285691,-0.000000000000000,2 +4099,4112,4114,4127,-0.351724137930641,-0.507142857142806,-0.358620689654758,-0.514285714285656,-0.358620689654758,-0.499999999999972,-0.365517241378876,-0.507142857142822,0.014285714285686,0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285683,0.000000000000000,2 +4100,4113,4115,4128,-0.351724137930641,-0.492857142857104,-0.358620689654758,-0.499999999999972,-0.358620689654758,-0.485714285714254,-0.365517241378876,-0.492857142857122,0.014285714285718,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285719,-0.000000000000000,2 +4101,4114,4116,4129,-0.351724137930641,-0.478571428571394,-0.358620689654758,-0.485714285714254,-0.358620689654758,-0.471428571428550,-0.365517241378876,-0.478571428571410,0.014285714285702,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285705,-0.000000000000000,2 +4102,4115,4117,4130,-0.351724137930641,-0.464285714285691,-0.358620689654758,-0.471428571428550,-0.358620689654758,-0.457142857142845,-0.365517241378876,-0.464285714285704,0.014285714285704,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285707,-0.000000000000000,2 +4103,4116,4118,4131,-0.351724137930641,-0.449999999999987,-0.358620689654758,-0.457142857142845,-0.358620689654758,-0.442857142857138,-0.365517241378876,-0.449999999999996,0.014285714285705,-0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285708,-0.000000000000000,2 +4104,4117,4119,4132,-0.351724137930641,-0.435714285714282,-0.358620689654758,-0.442857142857138,-0.358620689654758,-0.428571428571432,-0.365517241378876,-0.435714285714288,0.014285714285704,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285707,-0.000000000000000,2 +4105,4118,4120,4133,-0.351724137930641,-0.421428571428566,-0.358620689654758,-0.428571428571432,-0.358620689654758,-0.414285714285704,-0.365517241378876,-0.421428571428570,0.014285714285728,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285729,-0.000000000000000,2 +2891,4106,4119,4134,-0.358620689654758,-0.400000000000000,-0.351724137930641,-0.407142857142851,-0.358620689654758,-0.414285714285704,-0.365517241378876,-0.407142857142853,-0.000000000000000,0.013793103448235,0.014285714285702,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285705,0.000000000000000,2 +497,4107,4122,4135,-0.372413793102993,-0.600000000000000,-0.365517241378876,-0.592857142857130,-0.372413793102993,-0.585714285714259,-0.379310344827111,-0.592857142857129,0.000000000000000,-0.013793103448235,0.014285714285741,-0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285741,0.000000000000000,2 +4108,4121,4123,4136,-0.365517241378876,-0.578571428571390,-0.372413793102993,-0.585714285714259,-0.372413793102993,-0.571428571428521,-0.379310344827111,-0.578571428571390,0.014285714285738,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285737,-0.000000000000000,2 +4109,4122,4124,4137,-0.365517241378876,-0.564285714285659,-0.372413793102993,-0.571428571428521,-0.372413793102993,-0.557142857142799,-0.379310344827111,-0.564285714285662,0.014285714285724,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285721,-0.000000000000000,2 +4110,4123,4125,4138,-0.365517241378876,-0.549999999999936,-0.372413793102993,-0.557142857142799,-0.372413793102993,-0.542857142857077,-0.379310344827111,-0.549999999999941,0.014285714285723,-0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285721,-0.000000000000000,2 +4111,4124,4126,4139,-0.365517241378876,-0.535714285714214,-0.372413793102993,-0.542857142857077,-0.372413793102993,-0.528571428571359,-0.379310344827111,-0.535714285714222,0.014285714285720,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285717,-0.000000000000000,2 +4112,4125,4127,4140,-0.365517241378876,-0.521428571428509,-0.372413793102993,-0.528571428571359,-0.372413793102993,-0.514285714285671,-0.379310344827111,-0.521428571428521,0.014285714285691,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285685,-0.000000000000000,2 +4113,4126,4128,4141,-0.365517241378876,-0.507142857142822,-0.372413793102993,-0.514285714285671,-0.372413793102993,-0.499999999999990,-0.379310344827111,-0.507142857142839,0.014285714285683,-0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285679,0.000000000000000,2 +4114,4127,4129,4142,-0.365517241378876,-0.492857142857122,-0.372413793102993,-0.499999999999990,-0.372413793102993,-0.485714285714270,-0.379310344827111,-0.492857142857139,0.014285714285719,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285721,-0.000000000000000,2 +4115,4128,4130,4143,-0.365517241378876,-0.478571428571410,-0.372413793102993,-0.485714285714270,-0.372413793102993,-0.471428571428564,-0.379310344827111,-0.478571428571425,0.014285714285705,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285707,-0.000000000000000,2 +4116,4129,4131,4144,-0.365517241378876,-0.464285714285704,-0.372413793102993,-0.471428571428564,-0.372413793102993,-0.457142857142856,-0.379310344827111,-0.464285714285716,0.014285714285707,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285710,-0.000000000000000,2 +4117,4130,4132,4145,-0.365517241378876,-0.449999999999996,-0.372413793102993,-0.457142857142856,-0.372413793102993,-0.442857142857146,-0.379310344827111,-0.450000000000005,0.014285714285708,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000008,0.013793103448235,-0.014285714285712,-0.000000000000000,2 +4118,4131,4133,4146,-0.365517241378876,-0.435714285714288,-0.372413793102993,-0.442857142857146,-0.372413793102993,-0.428571428571437,-0.379310344827111,-0.435714285714294,0.014285714285707,0.000000000000000,0.000000000000008,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285710,-0.000000000000000,2 +4119,4132,4134,4147,-0.365517241378876,-0.421428571428570,-0.372413793102993,-0.428571428571437,-0.372413793102993,-0.414285714285707,-0.379310344827111,-0.421428571428574,0.014285714285729,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285731,-0.000000000000000,2 +2950,4120,4133,4148,-0.372413793102993,-0.400000000000000,-0.365517241378876,-0.407142857142853,-0.372413793102993,-0.414285714285707,-0.379310344827111,-0.407142857142854,-0.000000000000000,0.013793103448235,0.014285714285705,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285708,0.000000000000000,2 +491,4121,4136,4149,-0.386206896551228,-0.600000000000000,-0.379310344827111,-0.592857142857129,-0.386206896551228,-0.585714285714259,-0.393103448275346,-0.592857142857129,0.000000000000000,-0.013793103448235,0.014285714285741,-0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285741,-0.000000000000000,2 +4122,4135,4137,4150,-0.379310344827111,-0.578571428571390,-0.386206896551228,-0.585714285714259,-0.386206896551228,-0.571428571428522,-0.393103448275346,-0.578571428571391,0.014285714285737,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285736,-0.000000000000000,2 +4123,4136,4138,4151,-0.379310344827111,-0.564285714285662,-0.386206896551228,-0.571428571428522,-0.386206896551228,-0.557142857142803,-0.393103448275346,-0.564285714285664,0.014285714285721,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285718,-0.000000000000000,2 +4124,4137,4139,4152,-0.379310344827111,-0.549999999999941,-0.386206896551228,-0.557142857142803,-0.386206896551228,-0.542857142857084,-0.393103448275346,-0.549999999999946,0.014285714285721,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285718,-0.000000000000000,2 +4125,4138,4140,4153,-0.379310344827111,-0.535714285714222,-0.386206896551228,-0.542857142857084,-0.386206896551228,-0.528571428571368,-0.393103448275346,-0.535714285714230,0.014285714285717,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285715,-0.000000000000000,2 +4126,4139,4141,4154,-0.379310344827111,-0.521428571428521,-0.386206896551228,-0.528571428571368,-0.386206896551228,-0.514285714285686,-0.393103448275346,-0.521428571428532,0.014285714285685,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285679,-0.000000000000000,2 +4127,4140,4142,4155,-0.379310344827111,-0.507142857142839,-0.386206896551228,-0.514285714285686,-0.386206896551228,-0.500000000000009,-0.393103448275346,-0.507142857142855,0.014285714285679,-0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285675,0.000000000000000,2 +4128,4141,4143,4156,-0.379310344827111,-0.492857142857139,-0.386206896551228,-0.500000000000009,-0.386206896551228,-0.485714285714287,-0.393103448275346,-0.492857142857157,0.014285714285721,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285722,-0.000000000000000,2 +4129,4142,4144,4157,-0.379310344827111,-0.478571428571425,-0.386206896551228,-0.485714285714287,-0.386206896551228,-0.471428571428578,-0.393103448275346,-0.478571428571441,0.014285714285707,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285710,0.000000000000000,2 +4130,4143,4145,4158,-0.379310344827111,-0.464285714285716,-0.386206896551228,-0.471428571428578,-0.386206896551228,-0.457142857142866,-0.393103448275346,-0.464285714285729,0.014285714285710,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285714,-0.000000000000000,2 +4131,4144,4146,4159,-0.379310344827111,-0.450000000000005,-0.386206896551228,-0.457142857142866,-0.386206896551228,-0.442857142857153,-0.393103448275346,-0.450000000000014,0.014285714285712,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285715,-0.000000000000000,2 +4132,4145,4147,4160,-0.379310344827111,-0.435714285714294,-0.386206896551228,-0.442857142857153,-0.386206896551228,-0.428571428571441,-0.393103448275346,-0.435714285714300,0.014285714285710,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285713,-0.000000000000000,2 +4133,4146,4148,4161,-0.379310344827111,-0.421428571428574,-0.386206896551228,-0.428571428571441,-0.386206896551228,-0.414285714285710,-0.393103448275346,-0.421428571428577,0.014285714285731,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285732,-0.000000000000000,2 +3009,4134,4147,4162,-0.386206896551228,-0.400000000000000,-0.379310344827111,-0.407142857142854,-0.386206896551228,-0.414285714285710,-0.393103448275346,-0.407142857142856,-0.000000000000000,0.013793103448235,0.014285714285708,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285711,0.000000000000000,2 +485,4135,4150,4163,-0.399999999999487,-0.600000000000000,-0.393103448275346,-0.592857142857129,-0.399999999999487,-0.585714285714259,-0.406896551723629,-0.592857142857129,0.000000000000000,-0.013793103448283,0.014285714285741,0.000000000000000,0.000000000000000,0.013793103448283,-0.014285714285741,-0.000000000000000,2 +4136,4149,4151,4164,-0.393103448275346,-0.578571428571391,-0.399999999999487,-0.585714285714259,-0.399999999999487,-0.571428571428523,-0.406896551723629,-0.578571428571391,0.014285714285736,0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000001,0.013793103448283,-0.014285714285735,-0.000000000000000,2 +4137,4150,4152,4165,-0.393103448275346,-0.564285714285664,-0.399999999999487,-0.571428571428523,-0.399999999999487,-0.557142857142807,-0.406896551723629,-0.564285714285666,0.014285714285718,0.000000000000000,0.000000000000001,-0.013793103448283,-0.000000000000004,0.013793103448283,-0.014285714285715,-0.000000000000000,2 +4138,4151,4153,4166,-0.393103448275346,-0.549999999999946,-0.399999999999487,-0.557142857142807,-0.399999999999487,-0.542857142857090,-0.406896551723629,-0.549999999999951,0.014285714285718,0.000000000000000,0.000000000000004,-0.013793103448283,-0.000000000000006,0.013793103448283,-0.014285714285715,-0.000000000000000,2 +4139,4152,4154,4167,-0.393103448275346,-0.535714285714230,-0.399999999999487,-0.542857142857090,-0.399999999999487,-0.528571428571377,-0.406896551723629,-0.535714285714237,0.014285714285715,0.000000000000000,0.000000000000006,-0.013793103448283,-0.000000000000009,0.013793103448283,-0.014285714285712,-0.000000000000000,2 +4140,4153,4155,4168,-0.393103448275346,-0.521428571428532,-0.399999999999487,-0.528571428571377,-0.399999999999487,-0.514285714285700,-0.406896551723629,-0.521428571428544,0.014285714285679,0.000000000000000,0.000000000000009,-0.013793103448283,-0.000000000000015,0.013793103448283,-0.014285714285673,0.000000000000000,2 +4141,4154,4156,4169,-0.393103448275346,-0.507142857142855,-0.399999999999487,-0.514285714285700,-0.399999999999487,-0.500000000000027,-0.406896551723629,-0.507142857142872,0.014285714285675,-0.000000000000000,0.000000000000015,-0.013793103448283,-0.000000000000018,0.013793103448283,-0.014285714285671,-0.000000000000000,2 +4142,4155,4157,4170,-0.393103448275346,-0.492857142857157,-0.399999999999487,-0.500000000000027,-0.399999999999487,-0.485714285714304,-0.406896551723629,-0.492857142857174,0.014285714285722,0.000000000000000,0.000000000000018,-0.013793103448283,-0.000000000000017,0.013793103448283,-0.014285714285724,-0.000000000000000,2 +4143,4156,4158,4171,-0.393103448275346,-0.478571428571441,-0.399999999999487,-0.485714285714304,-0.399999999999487,-0.471428571428592,-0.406896551723629,-0.478571428571456,0.014285714285710,-0.000000000000000,0.000000000000017,-0.013793103448283,-0.000000000000014,0.013793103448283,-0.014285714285713,-0.000000000000000,2 +4144,4157,4159,4172,-0.393103448275346,-0.464285714285729,-0.399999999999487,-0.471428571428592,-0.399999999999487,-0.457142857142877,-0.406896551723629,-0.464285714285741,0.014285714285714,0.000000000000000,0.000000000000014,-0.013793103448283,-0.000000000000011,0.013793103448283,-0.014285714285717,-0.000000000000000,2 +4145,4158,4160,4173,-0.393103448275346,-0.450000000000014,-0.399999999999487,-0.457142857142877,-0.399999999999487,-0.442857142857161,-0.406896551723629,-0.450000000000023,0.014285714285715,0.000000000000000,0.000000000000011,-0.013793103448283,-0.000000000000008,0.013793103448283,-0.014285714285718,-0.000000000000000,2 +4146,4159,4161,4174,-0.393103448275346,-0.435714285714300,-0.399999999999487,-0.442857142857161,-0.399999999999487,-0.428571428571446,-0.406896551723629,-0.435714285714306,0.014285714285713,0.000000000000000,0.000000000000008,-0.013793103448283,-0.000000000000004,0.013793103448283,-0.014285714285717,-0.000000000000000,2 +4147,4160,4162,4175,-0.393103448275346,-0.421428571428577,-0.399999999999487,-0.428571428571446,-0.399999999999487,-0.414285714285713,-0.406896551723629,-0.421428571428581,0.014285714285732,0.000000000000000,0.000000000000004,-0.013793103448283,-0.000000000000003,0.013793103448283,-0.014285714285733,-0.000000000000000,2 +3068,4148,4161,4176,-0.399999999999487,-0.400000000000000,-0.393103448275346,-0.407142857142856,-0.399999999999487,-0.414285714285713,-0.406896551723629,-0.407142857142857,-0.000000000000000,0.013793103448283,0.014285714285711,-0.000000000000000,0.000000000000003,-0.013793103448283,-0.014285714285714,0.000000000000000,2 +479,4149,4164,4177,-0.413793103447786,-0.600000000000000,-0.406896551723629,-0.592857142857129,-0.413793103447786,-0.585714285714258,-0.420689655171942,-0.592857142857129,0.000000000000000,-0.013793103448313,0.014285714285741,0.000000000000000,0.000000000000000,0.013793103448313,-0.014285714285742,-0.000000000000000,2 +4150,4163,4165,4178,-0.406896551723629,-0.578571428571391,-0.413793103447786,-0.585714285714258,-0.413793103447786,-0.571428571428524,-0.420689655171942,-0.578571428571391,0.014285714285735,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000001,0.013793103448313,-0.014285714285733,-0.000000000000000,2 +4151,4164,4166,4179,-0.406896551723629,-0.564285714285666,-0.413793103447786,-0.571428571428524,-0.413793103447786,-0.557142857142811,-0.420689655171942,-0.564285714285669,0.014285714285715,0.000000000000000,0.000000000000001,-0.013793103448313,-0.000000000000004,0.013793103448313,-0.014285714285712,0.000000000000000,2 +4152,4165,4167,4180,-0.406896551723629,-0.549999999999951,-0.413793103447786,-0.557142857142811,-0.413793103447786,-0.542857142857097,-0.420689655171942,-0.549999999999956,0.014285714285715,0.000000000000000,0.000000000000004,-0.013793103448313,-0.000000000000006,0.013793103448313,-0.014285714285713,-0.000000000000000,2 +4153,4166,4168,4181,-0.406896551723629,-0.535714285714237,-0.413793103447786,-0.542857142857097,-0.413793103447786,-0.528571428571385,-0.420689655171942,-0.535714285714245,0.014285714285712,0.000000000000000,0.000000000000006,-0.013793103448313,-0.000000000000009,0.013793103448313,-0.014285714285710,-0.000000000000000,2 +4154,4167,4169,4182,-0.406896551723629,-0.521428571428544,-0.413793103447786,-0.528571428571385,-0.413793103447786,-0.514285714285715,-0.420689655171942,-0.521428571428556,0.014285714285673,-0.000000000000000,0.000000000000009,-0.013793103448313,-0.000000000000015,0.013793103448313,-0.014285714285668,-0.000000000000000,2 +4155,4168,4170,4183,-0.406896551723629,-0.507142857142872,-0.413793103447786,-0.514285714285715,-0.413793103447786,-0.500000000000045,-0.420689655171942,-0.507142857142888,0.014285714285671,0.000000000000000,0.000000000000015,-0.013793103448313,-0.000000000000018,0.013793103448313,-0.014285714285668,-0.000000000000000,2 +4156,4169,4171,4184,-0.406896551723629,-0.492857142857174,-0.413793103447786,-0.500000000000045,-0.413793103447786,-0.485714285714321,-0.420689655171942,-0.492857142857192,0.014285714285724,0.000000000000000,0.000000000000018,-0.013793103448313,-0.000000000000017,0.013793103448313,-0.014285714285725,0.000000000000000,2 +4157,4170,4172,4185,-0.406896551723629,-0.478571428571456,-0.413793103447786,-0.485714285714321,-0.413793103447786,-0.471428571428606,-0.420689655171942,-0.478571428571471,0.014285714285713,0.000000000000000,0.000000000000017,-0.013793103448313,-0.000000000000014,0.013793103448313,-0.014285714285716,-0.000000000000000,2 +4158,4171,4173,4186,-0.406896551723629,-0.464285714285741,-0.413793103447786,-0.471428571428606,-0.413793103447786,-0.457142857142888,-0.420689655171942,-0.464285714285753,0.014285714285717,0.000000000000000,0.000000000000014,-0.013793103448313,-0.000000000000011,0.013793103448313,-0.014285714285720,-0.000000000000000,2 +4159,4172,4174,4187,-0.406896551723629,-0.450000000000023,-0.413793103447786,-0.457142857142888,-0.413793103447786,-0.442857142857168,-0.420689655171942,-0.450000000000033,0.014285714285718,0.000000000000000,0.000000000000011,-0.013793103448313,-0.000000000000008,0.013793103448313,-0.014285714285721,-0.000000000000000,2 +4160,4173,4175,4188,-0.406896551723629,-0.435714285714306,-0.413793103447786,-0.442857142857168,-0.413793103447786,-0.428571428571450,-0.420689655171942,-0.435714285714312,0.014285714285717,0.000000000000000,0.000000000000008,-0.013793103448313,-0.000000000000004,0.013793103448313,-0.014285714285720,-0.000000000000000,2 +4161,4174,4176,4189,-0.406896551723629,-0.421428571428581,-0.413793103447786,-0.428571428571450,-0.413793103447786,-0.414285714285716,-0.420689655171942,-0.421428571428585,0.014285714285733,0.000000000000000,0.000000000000004,-0.013793103448313,-0.000000000000003,0.013793103448313,-0.014285714285735,-0.000000000000000,2 +3127,4162,4175,4190,-0.413793103447786,-0.400000000000000,-0.406896551723629,-0.407142857142857,-0.413793103447786,-0.414285714285716,-0.420689655171942,-0.407142857142859,-0.000000000000000,0.013793103448313,0.014285714285714,-0.000000000000000,0.000000000000003,-0.013793103448313,-0.014285714285717,0.000000000000000,2 +473,4163,4178,4191,-0.427586206896100,-0.600000000000000,-0.420689655171942,-0.592857142857129,-0.427586206896100,-0.585714285714258,-0.434482758620257,-0.592857142857129,0.000000000000000,-0.013793103448315,0.014285714285742,0.000000000000000,0.000000000000000,0.013793103448315,-0.014285714285742,-0.000000000000000,2 +4164,4177,4179,4192,-0.420689655171942,-0.578571428571391,-0.427586206896100,-0.585714285714258,-0.427586206896100,-0.571428571428525,-0.434482758620257,-0.578571428571392,0.014285714285733,0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000001,0.013793103448315,-0.014285714285732,-0.000000000000000,2 +4165,4178,4180,4193,-0.420689655171942,-0.564285714285669,-0.427586206896100,-0.571428571428525,-0.427586206896100,-0.557142857142814,-0.434482758620258,-0.564285714285671,0.014285714285712,-0.000000000000000,0.000000000000001,-0.013793103448315,-0.000000000000004,0.013793103448316,-0.014285714285710,-0.000000000000000,2 +4166,4179,4181,4194,-0.420689655171942,-0.549999999999956,-0.427586206896100,-0.557142857142814,-0.427586206896100,-0.542857142857103,-0.434482758620258,-0.549999999999961,0.014285714285713,0.000000000000000,0.000000000000004,-0.013793103448316,-0.000000000000007,0.013793103448315,-0.014285714285710,0.000000000000000,2 +4167,4180,4182,4195,-0.420689655171942,-0.535714285714245,-0.427586206896100,-0.542857142857103,-0.427586206896100,-0.528571428571394,-0.434482758620257,-0.535714285714253,0.014285714285710,0.000000000000000,0.000000000000007,-0.013793103448315,-0.000000000000009,0.013793103448315,-0.014285714285707,-0.000000000000000,2 +4168,4181,4183,4196,-0.420689655171942,-0.521428571428556,-0.427586206896100,-0.528571428571394,-0.427586206896100,-0.514285714285730,-0.434482758620257,-0.521428571428568,0.014285714285668,0.000000000000000,0.000000000000009,-0.013793103448315,-0.000000000000015,0.013793103448315,-0.014285714285662,-0.000000000000000,2 +4169,4182,4184,4197,-0.420689655171942,-0.507142857142888,-0.427586206896100,-0.514285714285730,-0.427586206896100,-0.500000000000064,-0.434482758620258,-0.507142857142905,0.014285714285668,0.000000000000000,0.000000000000015,-0.013793103448315,-0.000000000000018,0.013793103448315,-0.014285714285664,-0.000000000000000,2 +4170,4183,4185,4198,-0.420689655171942,-0.492857142857192,-0.427586206896100,-0.500000000000064,-0.427586206896100,-0.485714285714338,-0.434482758620258,-0.492857142857209,0.014285714285725,-0.000000000000000,0.000000000000018,-0.013793103448315,-0.000000000000017,0.013793103448315,-0.014285714285726,0.000000000000000,2 +4171,4184,4186,4199,-0.420689655171942,-0.478571428571471,-0.427586206896100,-0.485714285714338,-0.427586206896100,-0.471428571428620,-0.434482758620257,-0.478571428571487,0.014285714285716,0.000000000000000,0.000000000000017,-0.013793103448315,-0.000000000000014,0.013793103448315,-0.014285714285719,-0.000000000000000,2 +4172,4185,4187,4200,-0.420689655171942,-0.464285714285753,-0.427586206896100,-0.471428571428620,-0.427586206896100,-0.457142857142899,-0.434482758620257,-0.464285714285766,0.014285714285720,0.000000000000000,0.000000000000014,-0.013793103448315,-0.000000000000011,0.013793103448315,-0.014285714285723,-0.000000000000000,2 +4173,4186,4188,4201,-0.420689655171942,-0.450000000000033,-0.427586206896100,-0.457142857142899,-0.427586206896100,-0.442857142857176,-0.434482758620258,-0.450000000000042,0.014285714285721,0.000000000000000,0.000000000000011,-0.013793103448315,-0.000000000000008,0.013793103448315,-0.014285714285725,-0.000000000000000,2 +4174,4187,4189,4202,-0.420689655171942,-0.435714285714312,-0.427586206896100,-0.442857142857176,-0.427586206896100,-0.428571428571454,-0.434482758620258,-0.435714285714318,0.014285714285720,0.000000000000000,0.000000000000008,-0.013793103448315,-0.000000000000004,0.013793103448315,-0.014285714285723,0.000000000000000,2 +4175,4188,4190,4203,-0.420689655171942,-0.421428571428585,-0.427586206896100,-0.428571428571454,-0.427586206896100,-0.414285714285719,-0.434482758620257,-0.421428571428588,0.014285714285735,0.000000000000000,0.000000000000004,-0.013793103448315,-0.000000000000003,0.013793103448315,-0.014285714285736,-0.000000000000000,2 +3186,4176,4189,4204,-0.427586206896100,-0.400000000000000,-0.420689655171942,-0.407142857142859,-0.427586206896100,-0.414285714285719,-0.434482758620257,-0.407142857142860,-0.000000000000000,0.013793103448315,0.014285714285717,-0.000000000000000,0.000000000000003,-0.013793103448315,-0.014285714285720,0.000000000000000,2 +467,4177,4192,4205,-0.441379310344412,-0.600000000000000,-0.434482758620257,-0.592857142857129,-0.441379310344412,-0.585714285714258,-0.448275862068567,-0.592857142857129,0.000000000000000,-0.013793103448310,0.014285714285742,0.000000000000000,0.000000000000000,0.013793103448310,-0.014285714285742,0.000000000000000,2 +4178,4191,4193,4206,-0.434482758620257,-0.578571428571392,-0.441379310344412,-0.585714285714258,-0.441379310344412,-0.571428571428526,-0.448275862068567,-0.578571428571392,0.014285714285732,0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000001,0.013793103448309,-0.014285714285731,0.000000000000000,2 +4179,4192,4194,4207,-0.434482758620258,-0.564285714285671,-0.441379310344412,-0.571428571428526,-0.441379310344412,-0.557142857142818,-0.448275862068567,-0.564285714285673,0.014285714285710,0.000000000000000,0.000000000000001,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285707,-0.000000000000000,2 +4180,4193,4195,4208,-0.434482758620258,-0.549999999999961,-0.441379310344412,-0.557142857142818,-0.441379310344412,-0.542857142857109,-0.448275862068567,-0.549999999999966,0.014285714285710,-0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000006,0.013793103448310,-0.014285714285707,-0.000000000000000,2 +4181,4194,4196,4209,-0.434482758620257,-0.535714285714253,-0.441379310344412,-0.542857142857109,-0.441379310344412,-0.528571428571403,-0.448275862068567,-0.535714285714260,0.014285714285707,0.000000000000000,0.000000000000006,-0.013793103448310,-0.000000000000009,0.013793103448310,-0.014285714285705,-0.000000000000000,2 +4182,4195,4197,4210,-0.434482758620257,-0.521428571428568,-0.441379310344412,-0.528571428571403,-0.441379310344412,-0.514285714285744,-0.448275862068567,-0.521428571428580,0.014285714285662,0.000000000000000,0.000000000000009,-0.013793103448310,-0.000000000000015,0.013793103448310,-0.014285714285656,0.000000000000000,2 +4183,4196,4198,4211,-0.434482758620258,-0.507142857142905,-0.441379310344412,-0.514285714285744,-0.441379310344412,-0.500000000000082,-0.448275862068567,-0.507142857142921,0.014285714285664,0.000000000000000,0.000000000000015,-0.013793103448310,-0.000000000000019,0.013793103448310,-0.014285714285660,-0.000000000000000,2 +4184,4197,4199,4212,-0.434482758620258,-0.492857142857209,-0.441379310344412,-0.500000000000082,-0.441379310344412,-0.485714285714355,-0.448275862068567,-0.492857142857227,0.014285714285726,-0.000000000000000,0.000000000000019,-0.013793103448310,-0.000000000000017,0.013793103448310,-0.014285714285728,-0.000000000000000,2 +4185,4198,4200,4213,-0.434482758620257,-0.478571428571487,-0.441379310344412,-0.485714285714355,-0.441379310344412,-0.471428571428634,-0.448275862068567,-0.478571428571502,0.014285714285719,0.000000000000000,0.000000000000017,-0.013793103448310,-0.000000000000014,0.013793103448310,-0.014285714285722,-0.000000000000000,2 +4186,4199,4201,4214,-0.434482758620257,-0.464285714285766,-0.441379310344412,-0.471428571428634,-0.441379310344412,-0.457142857142909,-0.448275862068567,-0.464285714285778,0.014285714285723,0.000000000000000,0.000000000000014,-0.013793103448310,-0.000000000000011,0.013793103448310,-0.014285714285726,0.000000000000000,2 +4187,4200,4202,4215,-0.434482758620258,-0.450000000000042,-0.441379310344412,-0.457142857142909,-0.441379310344412,-0.442857142857183,-0.448275862068567,-0.450000000000051,0.014285714285725,0.000000000000000,0.000000000000011,-0.013793103448310,-0.000000000000008,0.013793103448309,-0.014285714285728,-0.000000000000000,2 +4188,4201,4203,4216,-0.434482758620258,-0.435714285714318,-0.441379310344412,-0.442857142857183,-0.441379310344412,-0.428571428571459,-0.448275862068567,-0.435714285714324,0.014285714285723,-0.000000000000000,0.000000000000008,-0.013793103448309,-0.000000000000004,0.013793103448310,-0.014285714285726,-0.000000000000000,2 +4189,4202,4204,4217,-0.434482758620257,-0.421428571428588,-0.441379310344412,-0.428571428571459,-0.441379310344412,-0.414285714285722,-0.448275862068567,-0.421428571428592,0.014285714285736,0.000000000000000,0.000000000000004,-0.013793103448310,-0.000000000000003,0.013793103448310,-0.014285714285738,-0.000000000000000,2 +3245,4190,4203,4218,-0.441379310344412,-0.400000000000000,-0.434482758620257,-0.407142857142860,-0.441379310344412,-0.414285714285722,-0.448275862068567,-0.407142857142862,-0.000000000000000,0.013793103448310,0.014285714285720,-0.000000000000000,0.000000000000003,-0.013793103448310,-0.014285714285723,0.000000000000000,2 +461,4191,4206,4219,-0.455172413792722,-0.600000000000000,-0.448275862068567,-0.592857142857129,-0.455172413792722,-0.585714285714258,-0.462068965516876,-0.592857142857129,0.000000000000000,-0.013793103448309,0.014285714285742,-0.000000000000000,0.000000000000000,0.013793103448309,-0.014285714285743,-0.000000000000000,2 +4192,4205,4207,4220,-0.448275862068567,-0.578571428571392,-0.455172413792722,-0.585714285714258,-0.455172413792722,-0.571428571428527,-0.462068965516876,-0.578571428571393,0.014285714285731,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000001,0.013793103448309,-0.014285714285730,-0.000000000000000,2 +4193,4206,4208,4221,-0.448275862068567,-0.564285714285673,-0.455172413792722,-0.571428571428527,-0.455172413792722,-0.557142857142822,-0.462068965516876,-0.564285714285676,0.014285714285707,0.000000000000000,0.000000000000001,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285704,-0.000000000000000,2 +4194,4207,4209,4222,-0.448275862068567,-0.549999999999966,-0.455172413792722,-0.557142857142822,-0.455172413792722,-0.542857142857116,-0.462068965516876,-0.549999999999971,0.014285714285707,0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000006,0.013793103448309,-0.014285714285704,0.000000000000000,2 +4195,4208,4210,4223,-0.448275862068567,-0.535714285714260,-0.455172413792722,-0.542857142857116,-0.455172413792722,-0.528571428571412,-0.462068965516876,-0.535714285714268,0.014285714285705,0.000000000000000,0.000000000000006,-0.013793103448309,-0.000000000000009,0.013793103448309,-0.014285714285702,-0.000000000000000,2 +4196,4209,4211,4224,-0.448275862068567,-0.521428571428580,-0.455172413792722,-0.528571428571412,-0.455172413792722,-0.514285714285759,-0.462068965516876,-0.521428571428592,0.014285714285656,-0.000000000000000,0.000000000000009,-0.013793103448309,-0.000000000000015,0.013793103448309,-0.014285714285651,-0.000000000000000,2 +4197,4210,4212,4225,-0.448275862068567,-0.507142857142921,-0.455172413792722,-0.514285714285759,-0.455172413792722,-0.500000000000100,-0.462068965516876,-0.507142857142938,0.014285714285660,0.000000000000000,0.000000000000015,-0.013793103448309,-0.000000000000018,0.013793103448309,-0.014285714285657,-0.000000000000000,2 +4198,4211,4213,4226,-0.448275862068567,-0.492857142857227,-0.455172413792722,-0.500000000000100,-0.455172413792722,-0.485714285714372,-0.462068965516876,-0.492857142857245,0.014285714285728,0.000000000000000,0.000000000000018,-0.013793103448309,-0.000000000000017,0.013793103448309,-0.014285714285729,-0.000000000000000,2 +4199,4212,4214,4227,-0.448275862068567,-0.478571428571502,-0.455172413792722,-0.485714285714372,-0.455172413792722,-0.471428571428648,-0.462068965516876,-0.478571428571517,0.014285714285722,0.000000000000000,0.000000000000017,-0.013793103448309,-0.000000000000014,0.013793103448309,-0.014285714285725,-0.000000000000000,2 +4200,4213,4215,4228,-0.448275862068567,-0.464285714285778,-0.455172413792722,-0.471428571428648,-0.455172413792722,-0.457142857142920,-0.462068965516876,-0.464285714285790,0.014285714285726,-0.000000000000000,0.000000000000014,-0.013793103448309,-0.000000000000011,0.013793103448309,-0.014285714285729,-0.000000000000000,2 +4201,4214,4216,4229,-0.448275862068567,-0.450000000000051,-0.455172413792722,-0.457142857142920,-0.455172413792722,-0.442857142857191,-0.462068965516876,-0.450000000000060,0.014285714285728,0.000000000000000,0.000000000000011,-0.013793103448309,-0.000000000000007,0.013793103448309,-0.014285714285731,-0.000000000000000,2 +4202,4215,4217,4230,-0.448275862068567,-0.435714285714324,-0.455172413792722,-0.442857142857191,-0.455172413792722,-0.428571428571463,-0.462068965516876,-0.435714285714330,0.014285714285726,0.000000000000000,0.000000000000007,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285729,0.000000000000000,2 +4203,4216,4218,4231,-0.448275862068567,-0.421428571428592,-0.455172413792722,-0.428571428571463,-0.455172413792722,-0.414285714285725,-0.462068965516876,-0.421428571428596,0.014285714285738,0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000003,0.013793103448309,-0.014285714285739,-0.000000000000000,2 +3304,4204,4217,4232,-0.455172413792722,-0.400000000000000,-0.448275862068567,-0.407142857142862,-0.455172413792722,-0.414285714285725,-0.462068965516876,-0.407142857142863,-0.000000000000000,0.013793103448309,0.014285714285723,-0.000000000000000,0.000000000000003,-0.013793103448309,-0.014285714285726,0.000000000000000,2 +455,4205,4220,4233,-0.468965517241031,-0.600000000000000,-0.462068965516876,-0.592857142857129,-0.468965517241031,-0.585714285714257,-0.475862068965185,-0.592857142857129,0.000000000000000,-0.013793103448309,0.014285714285743,0.000000000000000,0.000000000000000,0.013793103448309,-0.014285714285743,-0.000000000000000,2 +4206,4219,4221,4234,-0.462068965516876,-0.578571428571393,-0.468965517241031,-0.585714285714257,-0.468965517241031,-0.571428571428528,-0.475862068965185,-0.578571428571393,0.014285714285730,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000001,0.013793103448309,-0.014285714285729,-0.000000000000000,2 +4207,4220,4222,4235,-0.462068965516876,-0.564285714285676,-0.468965517241031,-0.571428571428528,-0.468965517241031,-0.557142857142825,-0.475862068965185,-0.564285714285678,0.014285714285704,0.000000000000000,0.000000000000001,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285702,-0.000000000000000,2 +4208,4221,4223,4236,-0.462068965516876,-0.549999999999971,-0.468965517241031,-0.557142857142825,-0.468965517241031,-0.542857142857122,-0.475862068965185,-0.549999999999976,0.014285714285704,-0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000006,0.013793103448309,-0.014285714285702,0.000000000000000,2 +4209,4222,4224,4237,-0.462068965516876,-0.535714285714268,-0.468965517241031,-0.542857142857122,-0.468965517241031,-0.528571428571421,-0.475862068965185,-0.535714285714276,0.014285714285702,0.000000000000000,0.000000000000006,-0.013793103448309,-0.000000000000009,0.013793103448309,-0.014285714285700,-0.000000000000000,2 +4210,4223,4225,4238,-0.462068965516876,-0.521428571428592,-0.468965517241031,-0.528571428571421,-0.468965517241031,-0.514285714285773,-0.475862068965185,-0.521428571428603,0.014285714285651,0.000000000000000,0.000000000000009,-0.013793103448309,-0.000000000000014,0.013793103448309,-0.014285714285645,0.000000000000000,2 +4211,4224,4226,4239,-0.462068965516876,-0.507142857142938,-0.468965517241031,-0.514285714285773,-0.468965517241031,-0.500000000000119,-0.475862068965185,-0.507142857142954,0.014285714285657,0.000000000000000,0.000000000000014,-0.013793103448309,-0.000000000000018,0.013793103448309,-0.014285714285653,-0.000000000000000,2 +4212,4225,4227,4240,-0.462068965516876,-0.492857142857245,-0.468965517241031,-0.500000000000119,-0.468965517241031,-0.485714285714388,-0.475862068965185,-0.492857142857262,0.014285714285729,0.000000000000000,0.000000000000018,-0.013793103448309,-0.000000000000017,0.013793103448309,-0.014285714285731,-0.000000000000000,2 +4213,4226,4228,4241,-0.462068965516876,-0.478571428571517,-0.468965517241031,-0.485714285714388,-0.468965517241031,-0.471428571428662,-0.475862068965185,-0.478571428571533,0.014285714285725,0.000000000000000,0.000000000000017,-0.013793103448309,-0.000000000000014,0.013793103448309,-0.014285714285728,-0.000000000000000,2 +4214,4227,4229,4242,-0.462068965516876,-0.464285714285790,-0.468965517241031,-0.471428571428662,-0.468965517241031,-0.457142857142931,-0.475862068965185,-0.464285714285803,0.014285714285729,0.000000000000000,0.000000000000014,-0.013793103448309,-0.000000000000011,0.013793103448309,-0.014285714285732,-0.000000000000000,2 +4215,4228,4230,4243,-0.462068965516876,-0.450000000000060,-0.468965517241031,-0.457142857142931,-0.468965517241031,-0.442857142857198,-0.475862068965185,-0.450000000000069,0.014285714285731,0.000000000000000,0.000000000000011,-0.013793103448309,-0.000000000000007,0.013793103448309,-0.014285714285735,-0.000000000000000,2 +4216,4229,4231,4244,-0.462068965516876,-0.435714285714330,-0.468965517241031,-0.442857142857198,-0.468965517241031,-0.428571428571467,-0.475862068965185,-0.435714285714336,0.014285714285729,-0.000000000000000,0.000000000000007,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285732,0.000000000000000,2 +4217,4230,4232,4245,-0.462068965516876,-0.421428571428596,-0.468965517241031,-0.428571428571467,-0.468965517241031,-0.414285714285728,-0.475862068965185,-0.421428571428599,0.014285714285739,0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000003,0.013793103448309,-0.014285714285740,-0.000000000000000,2 +3363,4218,4231,4246,-0.468965517241031,-0.400000000000000,-0.462068965516876,-0.407142857142863,-0.468965517241031,-0.414285714285728,-0.475862068965185,-0.407142857142865,-0.000000000000000,0.013793103448309,0.014285714285726,-0.000000000000000,0.000000000000003,-0.013793103448309,-0.014285714285729,0.000000000000000,2 +449,4219,4234,4247,-0.482758620689341,-0.600000000000000,-0.475862068965185,-0.592857142857129,-0.482758620689341,-0.585714285714257,-0.489655172413498,-0.592857142857128,0.000000000000000,-0.013793103448313,0.014285714285743,0.000000000000000,0.000000000000000,0.013793103448313,-0.014285714285743,-0.000000000000000,2 +4220,4233,4235,4248,-0.475862068965185,-0.578571428571393,-0.482758620689341,-0.585714285714257,-0.482758620689341,-0.571428571428529,-0.489655172413498,-0.578571428571393,0.014285714285729,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000001,0.013793103448313,-0.014285714285727,0.000000000000000,2 +4221,4234,4236,4249,-0.475862068965185,-0.564285714285678,-0.482758620689341,-0.571428571428529,-0.482758620689341,-0.557142857142829,-0.489655172413498,-0.564285714285680,0.014285714285702,0.000000000000000,0.000000000000001,-0.013793103448313,-0.000000000000004,0.013793103448313,-0.014285714285699,0.000000000000000,2 +4222,4235,4237,4250,-0.475862068965185,-0.549999999999976,-0.482758620689341,-0.557142857142829,-0.482758620689341,-0.542857142857129,-0.489655172413498,-0.549999999999981,0.014285714285702,-0.000000000000000,0.000000000000004,-0.013793103448313,-0.000000000000006,0.013793103448313,-0.014285714285699,-0.000000000000000,2 +4223,4236,4238,4251,-0.475862068965185,-0.535714285714276,-0.482758620689341,-0.542857142857129,-0.482758620689342,-0.528571428571430,-0.489655172413498,-0.535714285714283,0.014285714285700,0.000000000000000,0.000000000000006,-0.013793103448313,-0.000000000000009,0.013793103448313,-0.014285714285697,-0.000000000000000,2 +4224,4237,4239,4252,-0.475862068965185,-0.521428571428603,-0.482758620689342,-0.528571428571430,-0.482758620689341,-0.514285714285788,-0.489655172413498,-0.521428571428615,0.014285714285645,-0.000000000000000,0.000000000000009,-0.013793103448313,-0.000000000000015,0.013793103448313,-0.014285714285639,-0.000000000000000,2 +4225,4238,4240,4253,-0.475862068965185,-0.507142857142954,-0.482758620689341,-0.514285714285788,-0.482758620689341,-0.500000000000137,-0.489655172413498,-0.507142857142971,0.014285714285653,0.000000000000000,0.000000000000015,-0.013793103448313,-0.000000000000018,0.013793103448313,-0.014285714285649,-0.000000000000000,2 +4226,4239,4241,4254,-0.475862068965185,-0.492857142857262,-0.482758620689341,-0.500000000000137,-0.482758620689341,-0.485714285714405,-0.489655172413498,-0.492857142857280,0.014285714285731,0.000000000000000,0.000000000000018,-0.013793103448313,-0.000000000000017,0.013793103448313,-0.014285714285732,-0.000000000000000,2 +4227,4240,4242,4255,-0.475862068965185,-0.478571428571533,-0.482758620689341,-0.485714285714405,-0.482758620689341,-0.471428571428676,-0.489655172413498,-0.478571428571548,0.014285714285728,0.000000000000000,0.000000000000017,-0.013793103448313,-0.000000000000014,0.013793103448313,-0.014285714285731,-0.000000000000000,2 +4228,4241,4243,4256,-0.475862068965185,-0.464285714285803,-0.482758620689341,-0.471428571428676,-0.482758620689341,-0.457142857142942,-0.489655172413498,-0.464285714285815,0.014285714285732,0.000000000000000,0.000000000000014,-0.013793103448313,-0.000000000000011,0.013793103448313,-0.014285714285735,0.000000000000000,2 +4229,4242,4244,4257,-0.475862068965185,-0.450000000000069,-0.482758620689341,-0.457142857142942,-0.482758620689341,-0.442857142857206,-0.489655172413498,-0.450000000000079,0.014285714285735,0.000000000000000,0.000000000000011,-0.013793103448313,-0.000000000000008,0.013793103448313,-0.014285714285738,-0.000000000000000,2 +4230,4243,4245,4258,-0.475862068965185,-0.435714285714336,-0.482758620689341,-0.442857142857206,-0.482758620689341,-0.428571428571472,-0.489655172413498,-0.435714285714342,0.014285714285732,-0.000000000000000,0.000000000000008,-0.013793103448313,-0.000000000000004,0.013793103448313,-0.014285714285736,0.000000000000000,2 +4231,4244,4246,4259,-0.475862068965185,-0.421428571428599,-0.482758620689341,-0.428571428571472,-0.482758620689341,-0.414285714285731,-0.489655172413498,-0.421428571428603,0.014285714285740,0.000000000000000,0.000000000000004,-0.013793103448313,-0.000000000000003,0.013793103448313,-0.014285714285742,-0.000000000000000,2 +3422,4232,4245,4260,-0.482758620689341,-0.400000000000000,-0.475862068965185,-0.407142857142865,-0.482758620689341,-0.414285714285731,-0.489655172413498,-0.407142857142866,-0.000000000000000,0.013793103448313,0.014285714285729,-0.000000000000000,0.000000000000003,-0.013793103448313,-0.014285714285732,0.000000000000000,2 +443,4233,4248,4261,-0.496551724137666,-0.600000000000000,-0.489655172413498,-0.592857142857128,-0.496551724137666,-0.585714285714257,-0.503448275861834,-0.592857142857128,0.000000000000000,-0.013793103448336,0.014285714285743,0.000000000000000,0.000000000000000,0.013793103448336,-0.014285714285743,-0.000000000000000,2 +4234,4247,4249,4262,-0.489655172413498,-0.578571428571393,-0.496551724137666,-0.585714285714257,-0.496551724137666,-0.571428571428530,-0.503448275861834,-0.578571428571393,0.014285714285727,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000001,0.013793103448336,-0.014285714285726,0.000000000000000,2 +4235,4248,4250,4263,-0.489655172413498,-0.564285714285680,-0.496551724137666,-0.571428571428530,-0.496551724137666,-0.557142857142833,-0.503448275861834,-0.564285714285682,0.014285714285699,-0.000000000000000,0.000000000000001,-0.013793103448336,-0.000000000000004,0.013793103448336,-0.014285714285696,-0.000000000000000,2 +4236,4249,4251,4264,-0.489655172413498,-0.549999999999981,-0.496551724137666,-0.557142857142833,-0.496551724137666,-0.542857142857135,-0.503448275861834,-0.549999999999986,0.014285714285699,0.000000000000000,0.000000000000004,-0.013793103448336,-0.000000000000006,0.013793103448336,-0.014285714285696,-0.000000000000000,2 +4237,4250,4252,4265,-0.489655172413498,-0.535714285714283,-0.496551724137666,-0.542857142857135,-0.496551724137666,-0.528571428571439,-0.503448275861834,-0.535714285714291,0.014285714285697,0.000000000000000,0.000000000000006,-0.013793103448336,-0.000000000000009,0.013793103448336,-0.014285714285695,0.000000000000000,2 +4238,4251,4253,4266,-0.489655172413498,-0.521428571428615,-0.496551724137666,-0.528571428571439,-0.496551724137666,-0.514285714285803,-0.503448275861834,-0.521428571428627,0.014285714285639,0.000000000000000,0.000000000000009,-0.013793103448336,-0.000000000000015,0.013793103448336,-0.014285714285633,-0.000000000000000,2 +4239,4252,4254,4267,-0.489655172413498,-0.507142857142971,-0.496551724137666,-0.514285714285803,-0.496551724137666,-0.500000000000155,-0.503448275861834,-0.507142857142987,0.014285714285649,0.000000000000000,0.000000000000015,-0.013793103448336,-0.000000000000018,0.013793103448336,-0.014285714285646,-0.000000000000000,2 +4240,4253,4255,4268,-0.489655172413498,-0.492857142857280,-0.496551724137666,-0.500000000000155,-0.496551724137666,-0.485714285714422,-0.503448275861834,-0.492857142857298,0.014285714285732,0.000000000000000,0.000000000000018,-0.013793103448336,-0.000000000000017,0.013793103448336,-0.014285714285733,-0.000000000000000,2 +4241,4254,4256,4269,-0.489655172413498,-0.478571428571548,-0.496551724137666,-0.485714285714422,-0.496551724137666,-0.471428571428690,-0.503448275861834,-0.478571428571564,0.014285714285731,0.000000000000000,0.000000000000017,-0.013793103448336,-0.000000000000014,0.013793103448336,-0.014285714285734,-0.000000000000000,2 +4242,4255,4257,4270,-0.489655172413498,-0.464285714285815,-0.496551724137666,-0.471428571428690,-0.496551724137666,-0.457142857142953,-0.503448275861834,-0.464285714285827,0.014285714285735,-0.000000000000000,0.000000000000014,-0.013793103448336,-0.000000000000011,0.013793103448336,-0.014285714285739,-0.000000000000000,2 +4243,4256,4258,4271,-0.489655172413498,-0.450000000000079,-0.496551724137666,-0.457142857142953,-0.496551724137666,-0.442857142857213,-0.503448275861834,-0.450000000000088,0.014285714285738,0.000000000000000,0.000000000000011,-0.013793103448336,-0.000000000000008,0.013793103448336,-0.014285714285741,-0.000000000000000,2 +4244,4257,4259,4272,-0.489655172413498,-0.435714285714342,-0.496551724137666,-0.442857142857213,-0.496551724137666,-0.428571428571476,-0.503448275861834,-0.435714285714348,0.014285714285736,-0.000000000000000,0.000000000000008,-0.013793103448336,-0.000000000000004,0.013793103448336,-0.014285714285739,0.000000000000000,2 +4245,4258,4260,4273,-0.489655172413498,-0.421428571428603,-0.496551724137666,-0.428571428571476,-0.496551724137666,-0.414285714285734,-0.503448275861834,-0.421428571428607,0.014285714285742,0.000000000000000,0.000000000000004,-0.013793103448336,-0.000000000000003,0.013793103448336,-0.014285714285743,-0.000000000000000,2 +3481,4246,4259,4274,-0.496551724137666,-0.400000000000000,-0.489655172413498,-0.407142857142866,-0.496551724137666,-0.414285714285734,-0.503448275861834,-0.407142857142868,-0.000000000000000,0.013793103448336,0.014285714285732,-0.000000000000000,0.000000000000003,-0.013793103448336,-0.014285714285735,0.000000000000000,2 +437,4247,4262,4275,-0.510344827585989,-0.600000000000000,-0.503448275861834,-0.592857142857128,-0.510344827585989,-0.585714285714256,-0.517241379310145,-0.592857142857128,0.000000000000000,-0.013793103448311,0.014285714285743,0.000000000000000,0.000000000000000,0.013793103448311,-0.014285714285744,-0.000000000000000,2 +4248,4261,4263,4276,-0.503448275861834,-0.578571428571393,-0.510344827585989,-0.585714285714256,-0.510344827585989,-0.571428571428531,-0.517241379310145,-0.578571428571394,0.014285714285726,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000001,0.013793103448312,-0.014285714285725,-0.000000000000000,2 +4249,4262,4264,4277,-0.503448275861834,-0.564285714285682,-0.510344827585989,-0.571428571428531,-0.510344827585989,-0.557142857142836,-0.517241379310145,-0.564285714285685,0.014285714285696,0.000000000000000,0.000000000000001,-0.013793103448312,-0.000000000000004,0.013793103448311,-0.014285714285693,0.000000000000000,2 +4250,4263,4265,4278,-0.503448275861834,-0.549999999999986,-0.510344827585989,-0.557142857142836,-0.510344827585989,-0.542857142857141,-0.517241379310145,-0.549999999999991,0.014285714285696,0.000000000000000,0.000000000000004,-0.013793103448311,-0.000000000000006,0.013793103448311,-0.014285714285694,-0.000000000000000,2 +4251,4264,4266,4279,-0.503448275861834,-0.535714285714291,-0.510344827585989,-0.542857142857141,-0.510344827585989,-0.528571428571448,-0.517241379310145,-0.535714285714298,0.014285714285695,-0.000000000000000,0.000000000000006,-0.013793103448311,-0.000000000000009,0.013793103448311,-0.014285714285692,-0.000000000000000,2 +4252,4265,4267,4280,-0.503448275861834,-0.521428571428627,-0.510344827585989,-0.528571428571448,-0.510344827585989,-0.514285714285817,-0.517241379310145,-0.521428571428639,0.014285714285633,0.000000000000000,0.000000000000009,-0.013793103448311,-0.000000000000015,0.013793103448312,-0.014285714285628,-0.000000000000000,2 +4253,4266,4268,4281,-0.503448275861834,-0.507142857142987,-0.510344827585989,-0.514285714285817,-0.510344827585989,-0.500000000000174,-0.517241379310145,-0.507142857143004,0.014285714285646,0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000018,0.013793103448311,-0.014285714285642,0.000000000000000,2 +4254,4267,4269,4282,-0.503448275861834,-0.492857142857298,-0.510344827585989,-0.500000000000174,-0.510344827585989,-0.485714285714439,-0.517241379310145,-0.492857142857315,0.014285714285733,0.000000000000000,0.000000000000018,-0.013793103448311,-0.000000000000017,0.013793103448312,-0.014285714285735,-0.000000000000000,2 +4255,4268,4270,4283,-0.503448275861834,-0.478571428571564,-0.510344827585989,-0.485714285714439,-0.510344827585989,-0.471428571428704,-0.517241379310145,-0.478571428571579,0.014285714285734,0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000014,0.013793103448311,-0.014285714285737,0.000000000000000,2 +4256,4269,4271,4284,-0.503448275861834,-0.464285714285827,-0.510344827585989,-0.471428571428704,-0.510344827585989,-0.457142857142963,-0.517241379310145,-0.464285714285840,0.014285714285739,0.000000000000000,0.000000000000014,-0.013793103448311,-0.000000000000011,0.013793103448311,-0.014285714285742,-0.000000000000000,2 +4257,4270,4272,4285,-0.503448275861834,-0.450000000000088,-0.510344827585989,-0.457142857142963,-0.510344827585989,-0.442857142857221,-0.517241379310145,-0.450000000000097,0.014285714285741,0.000000000000000,0.000000000000011,-0.013793103448311,-0.000000000000007,0.013793103448311,-0.014285714285744,-0.000000000000000,2 +4258,4271,4273,4286,-0.503448275861834,-0.435714285714348,-0.510344827585989,-0.442857142857221,-0.510344827585989,-0.428571428571481,-0.517241379310145,-0.435714285714354,0.014285714285739,-0.000000000000000,0.000000000000007,-0.013793103448311,-0.000000000000004,0.013793103448311,-0.014285714285742,-0.000000000000000,2 +4259,4272,4274,4287,-0.503448275861834,-0.421428571428607,-0.510344827585989,-0.428571428571481,-0.510344827585989,-0.414285714285737,-0.517241379310145,-0.421428571428610,0.014285714285743,0.000000000000000,0.000000000000004,-0.013793103448311,-0.000000000000003,0.013793103448311,-0.014285714285745,-0.000000000000000,2 +3540,4260,4273,4288,-0.510344827585989,-0.400000000000000,-0.503448275861834,-0.407142857142868,-0.510344827585989,-0.414285714285737,-0.517241379310145,-0.407142857142869,-0.000000000000000,0.013793103448311,0.014285714285735,-0.000000000000000,0.000000000000003,-0.013793103448311,-0.014285714285738,0.000000000000000,2 +431,4261,4276,4289,-0.524137931034299,-0.600000000000000,-0.517241379310145,-0.592857142857128,-0.524137931034299,-0.585714285714256,-0.531034482758453,-0.592857142857128,0.000000000000000,-0.013793103448308,0.014285714285744,0.000000000000000,0.000000000000000,0.013793103448308,-0.014285714285744,-0.000000000000000,2 +4262,4275,4277,4290,-0.517241379310145,-0.578571428571394,-0.524137931034299,-0.585714285714256,-0.524137931034299,-0.571428571428532,-0.531034482758453,-0.578571428571394,0.014285714285725,0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000001,0.013793103448308,-0.014285714285723,-0.000000000000000,2 +4263,4276,4278,4291,-0.517241379310145,-0.564285714285685,-0.524137931034299,-0.571428571428532,-0.524137931034299,-0.557142857142840,-0.531034482758453,-0.564285714285687,0.014285714285693,-0.000000000000000,0.000000000000001,-0.013793103448308,-0.000000000000004,0.013793103448308,-0.014285714285691,-0.000000000000000,2 +4264,4277,4279,4292,-0.517241379310145,-0.549999999999991,-0.524137931034299,-0.557142857142840,-0.524137931034299,-0.542857142857148,-0.531034482758453,-0.549999999999996,0.014285714285694,0.000000000000000,0.000000000000004,-0.013793103448308,-0.000000000000007,0.013793103448308,-0.014285714285691,-0.000000000000000,2 +4265,4278,4280,4293,-0.517241379310145,-0.535714285714298,-0.524137931034299,-0.542857142857148,-0.524137931034299,-0.528571428571457,-0.531034482758453,-0.535714285714306,0.014285714285692,0.000000000000000,0.000000000000007,-0.013793103448308,-0.000000000000009,0.013793103448308,-0.014285714285690,-0.000000000000000,2 +4266,4279,4281,4294,-0.517241379310145,-0.521428571428639,-0.524137931034299,-0.528571428571457,-0.524137931034299,-0.514285714285832,-0.531034482758453,-0.521428571428650,0.014285714285628,0.000000000000000,0.000000000000009,-0.013793103448308,-0.000000000000015,0.013793103448308,-0.014285714285622,-0.000000000000000,2 +4267,4280,4282,4295,-0.517241379310145,-0.507142857143004,-0.524137931034299,-0.514285714285832,-0.524137931034299,-0.500000000000192,-0.531034482758453,-0.507142857143020,0.014285714285642,-0.000000000000000,0.000000000000015,-0.013793103448308,-0.000000000000018,0.013793103448308,-0.014285714285638,0.000000000000000,2 +4268,4281,4283,4296,-0.517241379310145,-0.492857142857315,-0.524137931034299,-0.500000000000192,-0.524137931034299,-0.485714285714456,-0.531034482758453,-0.492857142857333,0.014285714285735,0.000000000000000,0.000000000000018,-0.013793103448308,-0.000000000000017,0.013793103448308,-0.014285714285736,-0.000000000000000,2 +4269,4282,4284,4297,-0.517241379310145,-0.478571428571579,-0.524137931034299,-0.485714285714456,-0.524137931034299,-0.471428571428718,-0.531034482758453,-0.478571428571595,0.014285714285737,-0.000000000000000,0.000000000000017,-0.013793103448308,-0.000000000000014,0.013793103448308,-0.014285714285740,-0.000000000000000,2 +4270,4283,4285,4298,-0.517241379310145,-0.464285714285840,-0.524137931034299,-0.471428571428718,-0.524137931034299,-0.457142857142974,-0.531034482758453,-0.464285714285852,0.014285714285742,0.000000000000000,0.000000000000014,-0.013793103448308,-0.000000000000011,0.013793103448308,-0.014285714285745,-0.000000000000000,2 +4271,4284,4286,4299,-0.517241379310145,-0.450000000000097,-0.524137931034299,-0.457142857142974,-0.524137931034299,-0.442857142857228,-0.531034482758453,-0.450000000000106,0.014285714285744,0.000000000000000,0.000000000000011,-0.013793103448308,-0.000000000000007,0.013793103448308,-0.014285714285747,0.000000000000000,2 +4272,4285,4287,4300,-0.517241379310145,-0.435714285714354,-0.524137931034299,-0.442857142857228,-0.524137931034299,-0.428571428571485,-0.531034482758453,-0.435714285714360,0.014285714285742,0.000000000000000,0.000000000000007,-0.013793103448308,-0.000000000000004,0.013793103448308,-0.014285714285745,-0.000000000000000,2 +4273,4286,4288,4301,-0.517241379310145,-0.421428571428610,-0.524137931034299,-0.428571428571485,-0.524137931034299,-0.414285714285740,-0.531034482758453,-0.421428571428614,0.014285714285745,0.000000000000000,0.000000000000004,-0.013793103448308,-0.000000000000003,0.013793103448308,-0.014285714285746,-0.000000000000000,2 +3599,4274,4287,4302,-0.524137931034299,-0.400000000000000,-0.517241379310145,-0.407142857142869,-0.524137931034299,-0.414285714285740,-0.531034482758453,-0.407142857142871,-0.000000000000000,0.013793103448308,0.014285714285738,-0.000000000000000,0.000000000000003,-0.013793103448308,-0.014285714285741,0.000000000000000,2 +425,4275,4290,4303,-0.537931034482601,-0.600000000000000,-0.531034482758453,-0.592857142857128,-0.537931034482601,-0.585714285714256,-0.544827586206749,-0.592857142857128,0.000000000000000,-0.013793103448296,0.014285714285744,0.000000000000000,0.000000000000000,0.013793103448296,-0.014285714285744,-0.000000000000000,2 +4276,4289,4291,4304,-0.531034482758453,-0.578571428571394,-0.537931034482601,-0.585714285714256,-0.537931034482601,-0.571428571428533,-0.544827586206749,-0.578571428571395,0.014285714285723,0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000001,0.013793103448296,-0.014285714285722,0.000000000000000,2 +4277,4290,4292,4305,-0.531034482758453,-0.564285714285687,-0.537931034482601,-0.571428571428533,-0.537931034482601,-0.557142857142844,-0.544827586206749,-0.564285714285689,0.014285714285691,0.000000000000000,0.000000000000001,-0.013793103448296,-0.000000000000004,0.013793103448296,-0.014285714285688,-0.000000000000000,2 +4278,4291,4293,4306,-0.531034482758453,-0.549999999999996,-0.537931034482601,-0.557142857142844,-0.537931034482601,-0.542857142857154,-0.544827586206749,-0.550000000000001,0.014285714285691,0.000000000000000,0.000000000000004,-0.013793103448296,-0.000000000000006,0.013793103448296,-0.014285714285688,-0.000000000000000,2 +4279,4292,4294,4307,-0.531034482758453,-0.535714285714306,-0.537931034482601,-0.542857142857154,-0.537931034482601,-0.528571428571466,-0.544827586206749,-0.535714285714314,0.014285714285690,0.000000000000000,0.000000000000006,-0.013793103448296,-0.000000000000009,0.013793103448296,-0.014285714285687,-0.000000000000000,2 +4280,4293,4295,4308,-0.531034482758453,-0.521428571428650,-0.537931034482601,-0.528571428571466,-0.537931034482601,-0.514285714285847,-0.544827586206749,-0.521428571428662,0.014285714285622,0.000000000000000,0.000000000000009,-0.013793103448296,-0.000000000000015,0.013793103448296,-0.014285714285616,-0.000000000000000,2 +4281,4294,4296,4309,-0.531034482758453,-0.507142857143020,-0.537931034482601,-0.514285714285847,-0.537931034482601,-0.500000000000210,-0.544827586206749,-0.507142857143037,0.014285714285638,-0.000000000000000,0.000000000000015,-0.013793103448296,-0.000000000000018,0.013793103448296,-0.014285714285635,-0.000000000000000,2 +4282,4295,4297,4310,-0.531034482758453,-0.492857142857333,-0.537931034482601,-0.500000000000210,-0.537931034482601,-0.485714285714473,-0.544827586206749,-0.492857142857350,0.014285714285736,0.000000000000000,0.000000000000018,-0.013793103448296,-0.000000000000017,0.013793103448296,-0.014285714285738,-0.000000000000000,2 +4283,4296,4298,4311,-0.531034482758453,-0.478571428571595,-0.537931034482601,-0.485714285714473,-0.537931034482601,-0.471428571428732,-0.544827586206749,-0.478571428571610,0.014285714285740,0.000000000000000,0.000000000000017,-0.013793103448296,-0.000000000000014,0.013793103448296,-0.014285714285743,-0.000000000000000,2 +4284,4297,4299,4312,-0.531034482758453,-0.464285714285852,-0.537931034482601,-0.471428571428732,-0.537931034482601,-0.457142857142985,-0.544827586206749,-0.464285714285865,0.014285714285745,0.000000000000000,0.000000000000014,-0.013793103448296,-0.000000000000011,0.013793103448296,-0.014285714285748,-0.000000000000000,2 +4285,4298,4300,4313,-0.531034482758453,-0.450000000000106,-0.537931034482601,-0.457142857142985,-0.537931034482601,-0.442857142857236,-0.544827586206749,-0.450000000000115,0.014285714285747,-0.000000000000000,0.000000000000011,-0.013793103448296,-0.000000000000008,0.013793103448296,-0.014285714285751,0.000000000000000,2 +4286,4299,4301,4314,-0.531034482758453,-0.435714285714360,-0.537931034482601,-0.442857142857236,-0.537931034482601,-0.428571428571489,-0.544827586206749,-0.435714285714366,0.014285714285745,0.000000000000000,0.000000000000008,-0.013793103448296,-0.000000000000004,0.013793103448296,-0.014285714285748,-0.000000000000000,2 +4287,4300,4302,4315,-0.531034482758453,-0.421428571428614,-0.537931034482601,-0.428571428571489,-0.537931034482601,-0.414285714285743,-0.544827586206749,-0.421428571428618,0.014285714285746,0.000000000000000,0.000000000000004,-0.013793103448296,-0.000000000000003,0.013793103448296,-0.014285714285747,-0.000000000000000,2 +3658,4288,4301,4316,-0.537931034482601,-0.400000000000000,-0.531034482758453,-0.407142857142871,-0.537931034482601,-0.414285714285743,-0.544827586206749,-0.407142857142872,-0.000000000000000,0.013793103448296,0.014285714285741,-0.000000000000000,0.000000000000003,-0.013793103448296,-0.014285714285744,0.000000000000000,2 +419,4289,4304,4317,-0.551724137930900,-0.600000000000000,-0.544827586206749,-0.592857142857128,-0.551724137930900,-0.585714285714256,-0.558620689655051,-0.592857142857128,0.000000000000000,-0.013793103448302,0.014285714285744,0.000000000000000,0.000000000000000,0.013793103448301,-0.014285714285745,0.000000000000000,2 +4290,4303,4305,4318,-0.544827586206749,-0.578571428571395,-0.551724137930900,-0.585714285714256,-0.551724137930900,-0.571428571428534,-0.558620689655051,-0.578571428571395,0.014285714285722,-0.000000000000000,-0.000000000000000,-0.013793103448301,-0.000000000000001,0.013793103448302,-0.014285714285721,-0.000000000000000,2 +4291,4304,4306,4319,-0.544827586206749,-0.564285714285689,-0.551724137930900,-0.571428571428534,-0.551724137930900,-0.557142857142847,-0.558620689655051,-0.564285714285692,0.014285714285688,0.000000000000000,0.000000000000001,-0.013793103448302,-0.000000000000004,0.013793103448302,-0.014285714285685,0.000000000000000,2 +4292,4305,4307,4320,-0.544827586206749,-0.550000000000001,-0.551724137930900,-0.557142857142847,-0.551724137930900,-0.542857142857161,-0.558620689655051,-0.550000000000006,0.014285714285688,0.000000000000000,0.000000000000004,-0.013793103448302,-0.000000000000006,0.013793103448302,-0.014285714285685,-0.000000000000000,2 +4293,4306,4308,4321,-0.544827586206749,-0.535714285714314,-0.551724137930900,-0.542857142857161,-0.551724137930900,-0.528571428571475,-0.558620689655051,-0.535714285714321,0.014285714285687,0.000000000000000,0.000000000000006,-0.013793103448302,-0.000000000000009,0.013793103448302,-0.014285714285685,0.000000000000000,2 +4294,4307,4309,4322,-0.544827586206749,-0.521428571428662,-0.551724137930900,-0.528571428571475,-0.551724137930900,-0.514285714285861,-0.558620689655051,-0.521428571428674,0.014285714285616,0.000000000000000,0.000000000000009,-0.013793103448302,-0.000000000000015,0.013793103448302,-0.014285714285611,0.000000000000000,2 +4295,4308,4310,4323,-0.544827586206749,-0.507142857143037,-0.551724137930900,-0.514285714285861,-0.551724137930900,-0.500000000000228,-0.558620689655051,-0.507142857143053,0.014285714285635,0.000000000000000,0.000000000000015,-0.013793103448302,-0.000000000000018,0.013793103448302,-0.014285714285631,-0.000000000000000,2 +4296,4309,4311,4324,-0.544827586206749,-0.492857142857350,-0.551724137930900,-0.500000000000228,-0.551724137930900,-0.485714285714490,-0.558620689655051,-0.492857142857368,0.014285714285738,0.000000000000000,0.000000000000018,-0.013793103448302,-0.000000000000017,0.013793103448302,-0.014285714285739,-0.000000000000000,2 +4297,4310,4312,4325,-0.544827586206749,-0.478571428571610,-0.551724137930900,-0.485714285714490,-0.551724137930900,-0.471428571428746,-0.558620689655051,-0.478571428571625,0.014285714285743,0.000000000000000,0.000000000000017,-0.013793103448302,-0.000000000000014,0.013793103448302,-0.014285714285746,-0.000000000000000,2 +4298,4311,4313,4326,-0.544827586206749,-0.464285714285865,-0.551724137930900,-0.471428571428746,-0.551724137930900,-0.457142857142996,-0.558620689655051,-0.464285714285877,0.014285714285748,0.000000000000000,0.000000000000014,-0.013793103448302,-0.000000000000011,0.013793103448302,-0.014285714285751,0.000000000000000,2 +4299,4312,4314,4327,-0.544827586206749,-0.450000000000115,-0.551724137930900,-0.457142857142996,-0.551724137930900,-0.442857142857244,-0.558620689655051,-0.450000000000124,0.014285714285751,-0.000000000000000,0.000000000000011,-0.013793103448302,-0.000000000000007,0.013793103448302,-0.014285714285754,-0.000000000000000,2 +4300,4313,4315,4328,-0.544827586206749,-0.435714285714366,-0.551724137930900,-0.442857142857244,-0.551724137930900,-0.428571428571494,-0.558620689655051,-0.435714285714372,0.014285714285748,0.000000000000000,0.000000000000007,-0.013793103448302,-0.000000000000004,0.013793103448302,-0.014285714285751,-0.000000000000000,2 +4301,4314,4316,4329,-0.544827586206749,-0.421428571428618,-0.551724137930900,-0.428571428571494,-0.551724137930900,-0.414285714285746,-0.558620689655051,-0.421428571428622,0.014285714285747,0.000000000000000,0.000000000000004,-0.013793103448302,-0.000000000000003,0.013793103448302,-0.014285714285749,-0.000000000000000,2 +3717,4302,4315,4330,-0.551724137930900,-0.400000000000000,-0.544827586206749,-0.407142857142872,-0.551724137930900,-0.414285714285746,-0.558620689655051,-0.407142857142874,-0.000000000000000,0.013793103448302,0.014285714285744,-0.000000000000000,0.000000000000003,-0.013793103448302,-0.014285714285747,0.000000000000000,2 +413,4303,4318,4331,-0.565517241379205,-0.600000000000000,-0.558620689655051,-0.592857142857128,-0.565517241379205,-0.585714285714255,-0.572413793103360,-0.592857142857128,0.000000000000000,-0.013793103448309,0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448309,-0.014285714285745,-0.000000000000000,2 +4304,4317,4319,4332,-0.558620689655051,-0.578571428571395,-0.565517241379205,-0.585714285714255,-0.565517241379205,-0.571428571428535,-0.572413793103360,-0.578571428571395,0.014285714285721,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000001,0.013793103448309,-0.014285714285720,-0.000000000000000,2 +4305,4318,4320,4333,-0.558620689655051,-0.564285714285692,-0.565517241379205,-0.571428571428535,-0.565517241379205,-0.557142857142851,-0.572413793103360,-0.564285714285694,0.014285714285685,-0.000000000000000,0.000000000000001,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285682,-0.000000000000000,2 +4306,4319,4321,4334,-0.558620689655051,-0.550000000000006,-0.565517241379205,-0.557142857142851,-0.565517241379205,-0.542857142857167,-0.572413793103360,-0.550000000000012,0.014285714285685,0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000006,0.013793103448309,-0.014285714285683,-0.000000000000000,2 +4307,4320,4322,4335,-0.558620689655051,-0.535714285714321,-0.565517241379205,-0.542857142857167,-0.565517241379205,-0.528571428571484,-0.572413793103360,-0.535714285714329,0.014285714285685,-0.000000000000000,0.000000000000006,-0.013793103448309,-0.000000000000009,0.013793103448309,-0.014285714285682,-0.000000000000000,2 +4308,4321,4323,4336,-0.558620689655051,-0.521428571428674,-0.565517241379205,-0.528571428571484,-0.565517241379205,-0.514285714285876,-0.572413793103360,-0.521428571428686,0.014285714285611,-0.000000000000000,0.000000000000009,-0.013793103448309,-0.000000000000015,0.013793103448309,-0.014285714285605,0.000000000000000,2 +4309,4322,4324,4337,-0.558620689655051,-0.507142857143053,-0.565517241379205,-0.514285714285876,-0.565517241379205,-0.500000000000247,-0.572413793103360,-0.507142857143070,0.014285714285631,0.000000000000000,0.000000000000015,-0.013793103448309,-0.000000000000018,0.013793103448309,-0.014285714285627,-0.000000000000000,2 +4310,4323,4325,4338,-0.558620689655051,-0.492857142857368,-0.565517241379205,-0.500000000000247,-0.565517241379205,-0.485714285714507,-0.572413793103360,-0.492857142857386,0.014285714285739,0.000000000000000,0.000000000000018,-0.013793103448309,-0.000000000000017,0.013793103448309,-0.014285714285741,-0.000000000000000,2 +4311,4324,4326,4339,-0.558620689655051,-0.478571428571625,-0.565517241379205,-0.485714285714507,-0.565517241379205,-0.471428571428760,-0.572413793103360,-0.478571428571641,0.014285714285746,0.000000000000000,0.000000000000017,-0.013793103448309,-0.000000000000014,0.013793103448309,-0.014285714285749,0.000000000000000,2 +4312,4325,4327,4340,-0.558620689655051,-0.464285714285877,-0.565517241379205,-0.471428571428760,-0.565517241379205,-0.457142857143007,-0.572413793103360,-0.464285714285889,0.014285714285751,-0.000000000000000,0.000000000000014,-0.013793103448309,-0.000000000000011,0.013793103448309,-0.014285714285754,-0.000000000000000,2 +4313,4326,4328,4341,-0.558620689655051,-0.450000000000124,-0.565517241379205,-0.457142857143007,-0.565517241379205,-0.442857142857251,-0.572413793103360,-0.450000000000133,0.014285714285754,0.000000000000000,0.000000000000011,-0.013793103448309,-0.000000000000008,0.013793103448309,-0.014285714285757,-0.000000000000000,2 +4314,4327,4329,4342,-0.558620689655051,-0.435714285714372,-0.565517241379205,-0.442857142857251,-0.565517241379205,-0.428571428571498,-0.572413793103360,-0.435714285714378,0.014285714285751,0.000000000000000,0.000000000000008,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285755,-0.000000000000000,2 +4315,4328,4330,4343,-0.558620689655051,-0.421428571428622,-0.565517241379205,-0.428571428571498,-0.565517241379205,-0.414285714285749,-0.572413793103360,-0.421428571428625,0.014285714285749,0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000003,0.013793103448309,-0.014285714285750,-0.000000000000000,2 +3776,4316,4329,4344,-0.565517241379205,-0.400000000000000,-0.558620689655051,-0.407142857142874,-0.565517241379205,-0.414285714285749,-0.572413793103360,-0.407142857142875,-0.000000000000000,0.013793103448309,0.014285714285747,-0.000000000000000,0.000000000000003,-0.013793103448309,-0.014285714285750,0.000000000000000,2 +407,4317,4332,4345,-0.579310344827519,-0.600000000000000,-0.572413793103360,-0.592857142857128,-0.579310344827519,-0.585714285714255,-0.586206896551678,-0.592857142857127,0.000000000000000,-0.013793103448318,0.014285714285745,0.000000000000000,0.000000000000000,0.013793103448318,-0.014285714285745,0.000000000000000,2 +4318,4331,4333,4346,-0.572413793103360,-0.578571428571395,-0.579310344827519,-0.585714285714255,-0.579310344827519,-0.571428571428536,-0.586206896551678,-0.578571428571396,0.014285714285720,0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000001,0.013793103448318,-0.014285714285718,0.000000000000000,2 +4319,4332,4334,4347,-0.572413793103360,-0.564285714285694,-0.579310344827519,-0.571428571428536,-0.579310344827519,-0.557142857142855,-0.586206896551678,-0.564285714285697,0.014285714285682,0.000000000000000,0.000000000000001,-0.013793103448318,-0.000000000000004,0.013793103448318,-0.014285714285680,-0.000000000000000,2 +4320,4333,4335,4348,-0.572413793103360,-0.550000000000012,-0.579310344827519,-0.557142857142855,-0.579310344827519,-0.542857142857173,-0.586206896551678,-0.550000000000017,0.014285714285683,0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000007,0.013793103448318,-0.014285714285680,-0.000000000000000,2 +4321,4334,4336,4349,-0.572413793103360,-0.535714285714329,-0.579310344827519,-0.542857142857173,-0.579310344827519,-0.528571428571493,-0.586206896551678,-0.535714285714337,0.014285714285682,0.000000000000000,0.000000000000007,-0.013793103448318,-0.000000000000009,0.013793103448318,-0.014285714285680,-0.000000000000000,2 +4322,4335,4337,4350,-0.572413793103360,-0.521428571428686,-0.579310344827519,-0.528571428571493,-0.579310344827519,-0.514285714285891,-0.586206896551678,-0.521428571428697,0.014285714285605,-0.000000000000000,0.000000000000009,-0.013793103448318,-0.000000000000015,0.013793103448318,-0.014285714285599,-0.000000000000000,2 +4323,4336,4338,4351,-0.572413793103360,-0.507142857143070,-0.579310344827519,-0.514285714285891,-0.579310344827519,-0.500000000000265,-0.586206896551678,-0.507142857143086,0.014285714285627,0.000000000000000,0.000000000000015,-0.013793103448318,-0.000000000000018,0.013793103448318,-0.014285714285624,0.000000000000000,2 +4324,4337,4339,4352,-0.572413793103360,-0.492857142857386,-0.579310344827519,-0.500000000000265,-0.579310344827519,-0.485714285714524,-0.586206896551678,-0.492857142857403,0.014285714285741,0.000000000000000,0.000000000000018,-0.013793103448318,-0.000000000000017,0.013793103448318,-0.014285714285742,-0.000000000000000,2 +4325,4338,4340,4353,-0.572413793103360,-0.478571428571641,-0.579310344827519,-0.485714285714524,-0.579310344827519,-0.471428571428773,-0.586206896551678,-0.478571428571656,0.014285714285749,-0.000000000000000,0.000000000000017,-0.013793103448318,-0.000000000000014,0.013793103448318,-0.014285714285752,-0.000000000000000,2 +4326,4339,4341,4354,-0.572413793103360,-0.464285714285889,-0.579310344827519,-0.471428571428773,-0.579310344827519,-0.457142857143017,-0.586206896551678,-0.464285714285902,0.014285714285754,0.000000000000000,0.000000000000014,-0.013793103448318,-0.000000000000011,0.013793103448318,-0.014285714285757,-0.000000000000000,2 +4327,4340,4342,4355,-0.572413793103360,-0.450000000000133,-0.579310344827519,-0.457142857143017,-0.579310344827519,-0.442857142857259,-0.586206896551678,-0.450000000000143,0.014285714285757,0.000000000000000,0.000000000000011,-0.013793103448318,-0.000000000000007,0.013793103448318,-0.014285714285761,0.000000000000000,2 +4328,4341,4343,4356,-0.572413793103360,-0.435714285714378,-0.579310344827519,-0.442857142857259,-0.579310344827519,-0.428571428571503,-0.586206896551678,-0.435714285714384,0.014285714285755,0.000000000000000,0.000000000000007,-0.013793103448318,-0.000000000000004,0.013793103448318,-0.014285714285757,-0.000000000000000,2 +4329,4342,4344,4357,-0.572413793103360,-0.421428571428625,-0.579310344827519,-0.428571428571503,-0.579310344827519,-0.414285714285752,-0.586206896551678,-0.421428571428629,0.014285714285750,0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000003,0.013793103448318,-0.014285714285752,-0.000000000000000,2 +3835,4330,4343,4358,-0.579310344827519,-0.400000000000000,-0.572413793103360,-0.407142857142875,-0.579310344827519,-0.414285714285752,-0.586206896551678,-0.407142857142877,-0.000000000000000,0.013793103448318,0.014285714285750,-0.000000000000000,0.000000000000003,-0.013793103448318,-0.014285714285753,0.000000000000000,2 +316,401,4331,4346,-0.600000000000000,-0.592857142857127,-0.593103448275839,-0.600000000000000,-0.586206896551678,-0.592857142857127,-0.593103448275839,-0.585714285714255,-0.014285714285745,-0.000000000000000,-0.000000000000000,-0.013793103448322,0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448322,2 +320,4332,4345,4347,-0.600000000000000,-0.578571428571396,-0.586206896551678,-0.578571428571396,-0.593103448275839,-0.585714285714255,-0.593103448275839,-0.571428571428537,-0.014285714285717,-0.000000000000000,0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000001,0.013793103448322,2 +324,4333,4346,4348,-0.600000000000000,-0.564285714285699,-0.586206896551678,-0.564285714285697,-0.593103448275839,-0.571428571428537,-0.593103448275839,-0.557142857142858,-0.014285714285677,-0.000000000000000,0.014285714285680,0.000000000000000,0.000000000000001,-0.013793103448322,-0.000000000000004,0.013793103448322,2 +328,4334,4347,4349,-0.600000000000000,-0.550000000000022,-0.586206896551678,-0.550000000000017,-0.593103448275839,-0.557142857142858,-0.593103448275839,-0.542857142857180,-0.014285714285677,-0.000000000000000,0.014285714285680,0.000000000000000,0.000000000000004,-0.013793103448322,-0.000000000000006,0.013793103448322,2 +332,4335,4348,4350,-0.600000000000000,-0.535714285714345,-0.586206896551678,-0.535714285714337,-0.593103448275839,-0.542857142857180,-0.593103448275839,-0.528571428571502,-0.014285714285677,-0.000000000000000,0.014285714285680,0.000000000000000,0.000000000000006,-0.013793103448322,-0.000000000000009,0.013793103448322,2 +336,4336,4349,4351,-0.600000000000000,-0.521428571428709,-0.586206896551678,-0.521428571428697,-0.593103448275839,-0.528571428571502,-0.593103448275839,-0.514285714285905,-0.014285714285593,-0.000000000000000,0.014285714285599,0.000000000000000,0.000000000000009,-0.013793103448322,-0.000000000000015,0.013793103448322,2 +340,4337,4350,4352,-0.600000000000000,-0.507142857143103,-0.586206896551678,-0.507142857143086,-0.593103448275839,-0.514285714285905,-0.593103448275839,-0.500000000000283,-0.014285714285620,-0.000000000000000,0.014285714285624,-0.000000000000000,0.000000000000015,-0.013793103448322,-0.000000000000018,0.013793103448322,2 +344,4338,4351,4353,-0.600000000000000,-0.492857142857421,-0.586206896551678,-0.492857142857403,-0.593103448275839,-0.500000000000283,-0.593103448275839,-0.485714285714540,-0.014285714285744,-0.000000000000000,0.014285714285742,0.000000000000000,0.000000000000018,-0.013793103448322,-0.000000000000017,0.013793103448322,2 +348,4339,4352,4354,-0.600000000000000,-0.478571428571672,-0.586206896551678,-0.478571428571656,-0.593103448275839,-0.485714285714540,-0.593103448275839,-0.471428571428787,-0.014285714285754,-0.000000000000000,0.014285714285752,0.000000000000000,0.000000000000017,-0.013793103448322,-0.000000000000014,0.013793103448322,2 +352,4340,4353,4355,-0.600000000000000,-0.464285714285914,-0.586206896551678,-0.464285714285902,-0.593103448275839,-0.471428571428787,-0.593103448275839,-0.457142857143028,-0.014285714285761,-0.000000000000000,0.014285714285757,0.000000000000000,0.000000000000014,-0.013793103448322,-0.000000000000011,0.013793103448322,2 +356,4341,4354,4356,-0.600000000000000,-0.450000000000152,-0.586206896551678,-0.450000000000143,-0.593103448275839,-0.457142857143028,-0.593103448275839,-0.442857142857266,-0.014285714285764,-0.000000000000000,0.014285714285761,-0.000000000000000,0.000000000000011,-0.013793103448322,-0.000000000000007,0.013793103448322,2 +360,4342,4355,4357,-0.600000000000000,-0.435714285714389,-0.586206896551678,-0.435714285714384,-0.593103448275839,-0.442857142857266,-0.593103448275839,-0.428571428571507,-0.014285714285761,-0.000000000000000,0.014285714285757,0.000000000000000,0.000000000000007,-0.013793103448322,-0.000000000000004,0.013793103448322,2 +364,4343,4356,4358,-0.600000000000000,-0.421428571428633,-0.586206896551678,-0.421428571428629,-0.593103448275839,-0.428571428571507,-0.593103448275839,-0.414285714285755,-0.014285714285753,-0.000000000000000,0.014285714285752,0.000000000000000,0.000000000000004,-0.013793103448322,-0.000000000000003,0.013793103448322,2 +368,3894,4344,4357,-0.600000000000000,-0.407142857142878,-0.593103448275839,-0.400000000000000,-0.586206896551678,-0.407142857142877,-0.593103448275839,-0.414285714285755,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448322,0.014285714285753,-0.000000000000000,0.000000000000003,-0.013793103448322,2 +575,3953,4360,4373,-0.193103448275876,-0.600000000000000,-0.200000000000000,-0.592857142857131,-0.193103448275876,-0.585714285714262,-0.186206896551752,-0.592857142857131,-0.000000000000000,-0.013793103448248,-0.014285714285738,-0.000000000000000,-0.000000000000000,0.013793103448248,0.014285714285738,0.000000000000000,2 +3954,4359,4361,4374,-0.200000000000000,-0.578571428571386,-0.193103448275876,-0.585714285714262,-0.193103448275876,-0.571428571428510,-0.186206896551752,-0.578571428571386,-0.014285714285753,0.000000000000000,0.000000000000000,-0.013793103448248,0.000000000000001,0.013793103448248,0.014285714285752,0.000000000000000,2 +3955,4360,4362,4375,-0.200000000000000,-0.564285714285631,-0.193103448275876,-0.571428571428510,-0.193103448275876,-0.557142857142755,-0.186206896551752,-0.564285714285633,-0.014285714285756,0.000000000000000,-0.000000000000001,-0.013793103448248,0.000000000000003,0.013793103448248,0.014285714285753,0.000000000000000,2 +3956,4361,4363,4376,-0.200000000000000,-0.549999999999875,-0.193103448275876,-0.557142857142755,-0.193103448275876,-0.542857142857000,-0.186206896551752,-0.549999999999880,-0.014285714285756,0.000000000000000,-0.000000000000003,-0.013793103448248,0.000000000000006,0.013793103448248,0.014285714285753,0.000000000000000,2 +3957,4362,4364,4377,-0.200000000000000,-0.535714285714122,-0.193103448275876,-0.542857142857000,-0.193103448275876,-0.528571428571252,-0.186206896551752,-0.535714285714130,-0.014285714285750,0.000000000000000,-0.000000000000006,-0.013793103448248,0.000000000000009,0.013793103448248,0.014285714285747,0.000000000000000,2 +3958,4363,4365,4378,-0.200000000000000,-0.521428571428368,-0.193103448275876,-0.528571428571252,-0.193103448275876,-0.514285714285495,-0.186206896551752,-0.521428571428379,-0.014285714285759,0.000000000000000,-0.000000000000009,-0.013793103448248,0.000000000000014,0.013793103448248,0.014285714285754,0.000000000000000,2 +3959,4364,4366,4379,-0.200000000000000,-0.507142857142625,-0.193103448275876,-0.514285714285495,-0.193103448275876,-0.499999999999770,-0.186206896551752,-0.507142857142641,-0.014285714285727,0.000000000000000,-0.000000000000014,-0.013793103448248,0.000000000000018,0.013793103448248,0.014285714285723,0.000000000000000,2 +3960,4365,4367,4380,-0.200000000000000,-0.492857142856910,-0.193103448275876,-0.499999999999770,-0.193103448275876,-0.485714285714068,-0.186206896551752,-0.492857142856928,-0.014285714285702,0.000000000000000,-0.000000000000018,-0.013793103448248,0.000000000000017,0.013793103448248,0.014285714285704,0.000000000000000,2 +3961,4366,4368,4381,-0.200000000000000,-0.478571428571225,-0.193103448275876,-0.485714285714068,-0.193103448275876,-0.471428571428397,-0.186206896551752,-0.478571428571240,-0.014285714285669,0.000000000000000,-0.000000000000017,-0.013793103448248,0.000000000000014,0.013793103448248,0.014285714285672,0.000000000000000,2 +3962,4367,4369,4382,-0.200000000000000,-0.464285714285555,-0.193103448275876,-0.471428571428397,-0.193103448275876,-0.457142857142726,-0.186206896551752,-0.464285714285568,-0.014285714285669,0.000000000000000,-0.000000000000014,-0.013793103448248,0.000000000000011,0.013793103448248,0.014285714285673,0.000000000000000,2 +3963,4368,4370,4383,-0.200000000000000,-0.449999999999886,-0.193103448275876,-0.457142857142726,-0.193103448275876,-0.442857142857055,-0.186206896551752,-0.449999999999895,-0.014285714285669,0.000000000000000,-0.000000000000011,-0.013793103448248,0.000000000000007,0.013793103448248,0.014285714285673,0.000000000000000,2 +3964,4369,4371,4384,-0.200000000000000,-0.435714285714217,-0.193103448275876,-0.442857142857055,-0.193103448275876,-0.428571428571384,-0.186206896551752,-0.435714285714222,-0.014285714285669,0.000000000000000,-0.000000000000007,-0.013793103448248,0.000000000000004,0.013793103448248,0.014285714285672,0.000000000000000,2 +3965,4370,4372,4385,-0.200000000000000,-0.421428571428526,-0.193103448275876,-0.428571428571384,-0.193103448275876,-0.414285714285671,-0.186206896551752,-0.421428571428529,-0.014285714285713,0.000000000000000,-0.000000000000004,-0.013793103448248,0.000000000000003,0.013793103448248,0.014285714285714,0.000000000000000,2 +3966,4371,4386,9303,-0.200000000000000,-0.407142857142835,-0.193103448275876,-0.414285714285671,-0.186206896551752,-0.407142857142836,-0.193103448275876,-0.400000000000000,-0.014285714285669,0.000000000000000,-0.000000000000003,-0.013793103448248,0.014285714285672,-0.000000000000000,0.000000000000000,0.013793103448248,2 +581,4359,4374,4387,-0.179310344827634,-0.600000000000000,-0.186206896551752,-0.592857142857131,-0.179310344827634,-0.585714285714262,-0.172413793103516,-0.592857142857131,-0.000000000000000,-0.013793103448237,-0.014285714285738,-0.000000000000000,-0.000000000000000,0.013793103448237,0.014285714285738,0.000000000000000,2 +4360,4373,4375,4388,-0.186206896551752,-0.578571428571386,-0.179310344827634,-0.585714285714262,-0.179310344827634,-0.571428571428511,-0.172413793103516,-0.578571428571386,-0.014285714285752,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285751,0.000000000000000,2 +4361,4374,4376,4389,-0.186206896551752,-0.564285714285633,-0.179310344827634,-0.571428571428511,-0.179310344827634,-0.557142857142759,-0.172413793103516,-0.564285714285636,-0.014285714285753,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285751,0.000000000000000,2 +4362,4375,4377,4390,-0.186206896551752,-0.549999999999880,-0.179310344827634,-0.557142857142759,-0.179310344827634,-0.542857142857007,-0.172413793103516,-0.549999999999885,-0.014285714285753,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285751,0.000000000000000,2 +4363,4376,4378,4391,-0.186206896551752,-0.535714285714130,-0.179310344827634,-0.542857142857007,-0.179310344827634,-0.528571428571260,-0.172413793103516,-0.535714285714137,-0.014285714285747,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448236,0.014285714285745,0.000000000000000,2 +4364,4377,4379,4392,-0.186206896551752,-0.521428571428379,-0.179310344827634,-0.528571428571260,-0.179310344827634,-0.514285714285510,-0.172413793103516,-0.521428571428391,-0.014285714285754,-0.000000000000000,-0.000000000000009,-0.013793103448236,0.000000000000015,0.013793103448237,0.014285714285748,-0.000000000000000,2 +4365,4378,4380,4393,-0.186206896551752,-0.507142857142641,-0.179310344827634,-0.514285714285510,-0.179310344827634,-0.499999999999789,-0.172413793103516,-0.507142857142657,-0.014285714285723,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285719,0.000000000000000,2 +4366,4379,4381,4394,-0.186206896551752,-0.492857142856928,-0.179310344827634,-0.499999999999789,-0.179310344827634,-0.485714285714085,-0.172413793103516,-0.492857142856945,-0.014285714285704,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285705,0.000000000000000,2 +4367,4380,4382,4395,-0.186206896551752,-0.478571428571240,-0.179310344827634,-0.485714285714085,-0.179310344827634,-0.471428571428411,-0.172413793103516,-0.478571428571255,-0.014285714285672,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285675,0.000000000000000,2 +4368,4381,4383,4396,-0.186206896551752,-0.464285714285568,-0.179310344827634,-0.471428571428411,-0.179310344827634,-0.457142857142737,-0.172413793103516,-0.464285714285580,-0.014285714285673,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285676,0.000000000000000,2 +4369,4382,4384,4397,-0.186206896551752,-0.449999999999895,-0.179310344827634,-0.457142857142737,-0.179310344827634,-0.442857142857062,-0.172413793103516,-0.449999999999904,-0.014285714285673,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000008,0.013793103448236,0.014285714285676,0.000000000000000,2 +4370,4383,4385,4398,-0.186206896551752,-0.435714285714222,-0.179310344827634,-0.442857142857062,-0.179310344827634,-0.428571428571389,-0.172413793103516,-0.435714285714228,-0.014285714285672,-0.000000000000000,-0.000000000000008,-0.013793103448236,0.000000000000004,0.013793103448237,0.014285714285676,-0.000000000000000,2 +4371,4384,4386,4399,-0.186206896551752,-0.421428571428529,-0.179310344827634,-0.428571428571389,-0.179310344827634,-0.414285714285674,-0.172413793103516,-0.421428571428533,-0.014285714285714,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285715,0.000000000000000,2 +4372,4385,4400,9304,-0.186206896551752,-0.407142857142836,-0.179310344827634,-0.414285714285674,-0.172413793103516,-0.407142857142838,-0.179310344827634,-0.400000000000000,-0.014285714285672,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285675,-0.000000000000000,0.000000000000000,0.013793103448237,2 +587,4373,4388,4401,-0.165517241379389,-0.600000000000000,-0.172413793103516,-0.592857142857131,-0.165517241379389,-0.585714285714262,-0.158620689655262,-0.592857142857131,-0.000000000000000,-0.013793103448254,-0.014285714285738,-0.000000000000000,-0.000000000000000,0.013793103448254,0.014285714285739,0.000000000000000,2 +4374,4387,4389,4402,-0.172413793103516,-0.578571428571386,-0.165517241379389,-0.585714285714262,-0.165517241379389,-0.571428571428512,-0.158620689655262,-0.578571428571387,-0.014285714285751,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000001,0.013793103448254,0.014285714285749,-0.000000000000000,2 +4375,4388,4390,4403,-0.172413793103516,-0.564285714285636,-0.165517241379389,-0.571428571428512,-0.165517241379389,-0.557142857142762,-0.158620689655262,-0.564285714285638,-0.014285714285751,-0.000000000000000,-0.000000000000001,-0.013793103448254,0.000000000000004,0.013793103448254,0.014285714285748,0.000000000000000,2 +4376,4389,4391,4404,-0.172413793103516,-0.549999999999885,-0.165517241379389,-0.557142857142762,-0.165517241379389,-0.542857142857013,-0.158620689655262,-0.549999999999890,-0.014285714285751,-0.000000000000000,-0.000000000000004,-0.013793103448254,0.000000000000006,0.013793103448254,0.014285714285748,0.000000000000000,2 +4377,4390,4392,4405,-0.172413793103516,-0.535714285714137,-0.165517241379389,-0.542857142857013,-0.165517241379389,-0.528571428571269,-0.158620689655262,-0.535714285714145,-0.014285714285745,-0.000000000000000,-0.000000000000006,-0.013793103448254,0.000000000000009,0.013793103448254,0.014285714285742,0.000000000000000,2 +4378,4391,4393,4406,-0.172413793103516,-0.521428571428391,-0.165517241379389,-0.528571428571269,-0.165517241379389,-0.514285714285524,-0.158620689655262,-0.521428571428403,-0.014285714285748,0.000000000000000,-0.000000000000009,-0.013793103448254,0.000000000000015,0.013793103448254,0.014285714285742,0.000000000000000,2 +4379,4392,4394,4407,-0.172413793103516,-0.507142857142657,-0.165517241379389,-0.514285714285524,-0.165517241379389,-0.499999999999807,-0.158620689655262,-0.507142857142674,-0.014285714285719,-0.000000000000000,-0.000000000000015,-0.013793103448254,0.000000000000018,0.013793103448254,0.014285714285716,0.000000000000000,2 +4380,4393,4395,4408,-0.172413793103516,-0.492857142856945,-0.165517241379389,-0.499999999999807,-0.165517241379389,-0.485714285714102,-0.158620689655262,-0.492857142856963,-0.014285714285705,-0.000000000000000,-0.000000000000018,-0.013793103448254,0.000000000000017,0.013793103448254,0.014285714285706,0.000000000000000,2 +4381,4394,4396,4409,-0.172413793103516,-0.478571428571255,-0.165517241379389,-0.485714285714102,-0.165517241379389,-0.471428571428425,-0.158620689655262,-0.478571428571271,-0.014285714285675,-0.000000000000000,-0.000000000000017,-0.013793103448254,0.000000000000014,0.013793103448254,0.014285714285678,0.000000000000000,2 +4382,4395,4397,4410,-0.172413793103516,-0.464285714285580,-0.165517241379389,-0.471428571428425,-0.165517241379389,-0.457142857142748,-0.158620689655262,-0.464285714285592,-0.014285714285676,-0.000000000000000,-0.000000000000014,-0.013793103448254,0.000000000000011,0.013793103448254,0.014285714285679,0.000000000000000,2 +4383,4396,4398,4411,-0.172413793103516,-0.449999999999904,-0.165517241379389,-0.457142857142748,-0.165517241379389,-0.442857142857070,-0.158620689655262,-0.449999999999913,-0.014285714285676,-0.000000000000000,-0.000000000000011,-0.013793103448254,0.000000000000007,0.013793103448254,0.014285714285679,0.000000000000000,2 +4384,4397,4399,4412,-0.172413793103516,-0.435714285714228,-0.165517241379389,-0.442857142857070,-0.165517241379389,-0.428571428571393,-0.158620689655262,-0.435714285714234,-0.014285714285676,0.000000000000000,-0.000000000000007,-0.013793103448254,0.000000000000004,0.013793103448254,0.014285714285679,0.000000000000000,2 +4385,4398,4400,4413,-0.172413793103516,-0.421428571428533,-0.165517241379389,-0.428571428571393,-0.165517241379389,-0.414285714285677,-0.158620689655262,-0.421428571428537,-0.014285714285715,-0.000000000000000,-0.000000000000004,-0.013793103448254,0.000000000000003,0.013793103448254,0.014285714285717,0.000000000000000,2 +4386,4399,4414,9305,-0.172413793103516,-0.407142857142838,-0.165517241379389,-0.414285714285677,-0.158620689655262,-0.407142857142839,-0.165517241379389,-0.400000000000000,-0.014285714285675,0.000000000000000,-0.000000000000003,-0.013793103448254,0.014285714285678,-0.000000000000000,0.000000000000000,0.013793103448254,2 +593,4387,4402,4415,-0.151724137931136,-0.600000000000000,-0.158620689655262,-0.592857142857131,-0.151724137931136,-0.585714285714261,-0.144827586207010,-0.592857142857131,-0.000000000000000,-0.013793103448251,-0.014285714285739,-0.000000000000000,-0.000000000000000,0.013793103448252,0.014285714285739,0.000000000000000,2 +4388,4401,4403,4416,-0.158620689655262,-0.578571428571387,-0.151724137931136,-0.585714285714261,-0.151724137931136,-0.571428571428513,-0.144827586207010,-0.578571428571387,-0.014285714285749,0.000000000000000,0.000000000000000,-0.013793103448252,0.000000000000001,0.013793103448251,0.014285714285748,0.000000000000000,2 +4389,4402,4404,4417,-0.158620689655262,-0.564285714285638,-0.151724137931136,-0.571428571428513,-0.151724137931136,-0.557142857142766,-0.144827586207010,-0.564285714285640,-0.014285714285748,-0.000000000000000,-0.000000000000001,-0.013793103448251,0.000000000000003,0.013793103448251,0.014285714285745,-0.000000000000000,2 +4390,4403,4405,4418,-0.158620689655262,-0.549999999999890,-0.151724137931136,-0.557142857142766,-0.151724137931136,-0.542857142857019,-0.144827586207010,-0.549999999999895,-0.014285714285748,-0.000000000000000,-0.000000000000003,-0.013793103448251,0.000000000000007,0.013793103448251,0.014285714285745,0.000000000000000,2 +4391,4404,4406,4419,-0.158620689655262,-0.535714285714145,-0.151724137931136,-0.542857142857019,-0.151724137931136,-0.528571428571278,-0.144827586207010,-0.535714285714153,-0.014285714285742,-0.000000000000000,-0.000000000000007,-0.013793103448251,0.000000000000009,0.013793103448251,0.014285714285740,0.000000000000000,2 +4392,4405,4407,4420,-0.158620689655262,-0.521428571428403,-0.151724137931136,-0.528571428571278,-0.151724137931136,-0.514285714285539,-0.144827586207010,-0.521428571428414,-0.014285714285742,-0.000000000000000,-0.000000000000009,-0.013793103448251,0.000000000000015,0.013793103448251,0.014285714285736,0.000000000000000,2 +4393,4406,4408,4421,-0.158620689655262,-0.507142857142674,-0.151724137931136,-0.514285714285539,-0.151724137931136,-0.499999999999825,-0.144827586207010,-0.507142857142690,-0.014285714285716,-0.000000000000000,-0.000000000000015,-0.013793103448251,0.000000000000018,0.013793103448251,0.014285714285712,0.000000000000000,2 +4394,4407,4409,4422,-0.158620689655262,-0.492857142856963,-0.151724137931136,-0.499999999999825,-0.151724137931136,-0.485714285714118,-0.144827586207010,-0.492857142856981,-0.014285714285706,-0.000000000000000,-0.000000000000018,-0.013793103448251,0.000000000000017,0.013793103448251,0.014285714285708,0.000000000000000,2 +4395,4408,4410,4423,-0.158620689655262,-0.478571428571271,-0.151724137931136,-0.485714285714118,-0.151724137931136,-0.471428571428439,-0.144827586207010,-0.478571428571286,-0.014285714285678,-0.000000000000000,-0.000000000000017,-0.013793103448251,0.000000000000014,0.013793103448251,0.014285714285681,0.000000000000000,2 +4396,4409,4411,4424,-0.158620689655262,-0.464285714285592,-0.151724137931136,-0.471428571428439,-0.151724137931136,-0.457142857142758,-0.144827586207010,-0.464285714285605,-0.014285714285679,-0.000000000000000,-0.000000000000014,-0.013793103448251,0.000000000000011,0.013793103448251,0.014285714285682,0.000000000000000,2 +4397,4410,4412,4425,-0.158620689655262,-0.449999999999913,-0.151724137931136,-0.457142857142758,-0.151724137931136,-0.442857142857078,-0.144827586207010,-0.449999999999923,-0.014285714285679,-0.000000000000000,-0.000000000000011,-0.013793103448251,0.000000000000008,0.013793103448251,0.014285714285682,0.000000000000000,2 +4398,4411,4413,4426,-0.158620689655262,-0.435714285714234,-0.151724137931136,-0.442857142857078,-0.151724137931136,-0.428571428571397,-0.144827586207010,-0.435714285714240,-0.014285714285679,-0.000000000000000,-0.000000000000008,-0.013793103448251,0.000000000000004,0.013793103448251,0.014285714285682,0.000000000000000,2 +4399,4412,4414,4427,-0.158620689655262,-0.421428571428537,-0.151724137931136,-0.428571428571397,-0.151724137931136,-0.414285714285680,-0.144827586207010,-0.421428571428540,-0.014285714285717,-0.000000000000000,-0.000000000000004,-0.013793103448251,0.000000000000003,0.013793103448251,0.014285714285718,0.000000000000000,2 +4400,4413,4428,9306,-0.158620689655262,-0.407142857142839,-0.151724137931136,-0.414285714285680,-0.144827586207010,-0.407142857142841,-0.151724137931136,-0.400000000000000,-0.014285714285678,0.000000000000000,-0.000000000000003,-0.013793103448251,0.014285714285681,-0.000000000000000,0.000000000000000,0.013793103448251,2 +599,4401,4416,4429,-0.137931034482892,-0.600000000000000,-0.144827586207010,-0.592857142857131,-0.137931034482892,-0.585714285714261,-0.131034482758774,-0.592857142857130,-0.000000000000000,-0.013793103448237,-0.014285714285739,-0.000000000000000,-0.000000000000001,0.013793103448237,0.014285714285739,0.000000000000000,2 +4402,4415,4417,4430,-0.144827586207010,-0.578571428571387,-0.137931034482892,-0.585714285714261,-0.137931034482892,-0.571428571428514,-0.131034482758774,-0.578571428571387,-0.014285714285748,-0.000000000000000,0.000000000000001,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285747,0.000000000000000,2 +4403,4416,4418,4431,-0.144827586207010,-0.564285714285640,-0.137931034482892,-0.571428571428514,-0.137931034482892,-0.557142857142770,-0.131034482758774,-0.564285714285643,-0.014285714285745,0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285743,0.000000000000000,2 +4404,4417,4419,4432,-0.144827586207010,-0.549999999999895,-0.137931034482892,-0.557142857142770,-0.137931034482892,-0.542857142857026,-0.131034482758774,-0.549999999999900,-0.014285714285745,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285742,0.000000000000000,2 +4405,4418,4420,4433,-0.144827586207010,-0.535714285714153,-0.137931034482892,-0.542857142857026,-0.137931034482892,-0.528571428571287,-0.131034482758774,-0.535714285714160,-0.014285714285740,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285738,0.000000000000000,2 +4406,4419,4421,4434,-0.144827586207010,-0.521428571428414,-0.137931034482892,-0.528571428571287,-0.137931034482892,-0.514285714285554,-0.131034482758774,-0.521428571428426,-0.014285714285736,-0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285730,0.000000000000000,2 +4407,4420,4422,4435,-0.144827586207010,-0.507142857142690,-0.137931034482892,-0.514285714285554,-0.137931034482892,-0.499999999999844,-0.131034482758774,-0.507142857142707,-0.014285714285712,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285708,0.000000000000000,2 +4408,4421,4423,4436,-0.144827586207010,-0.492857142856981,-0.137931034482892,-0.499999999999844,-0.137931034482892,-0.485714285714135,-0.131034482758774,-0.492857142856998,-0.014285714285708,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285709,0.000000000000000,2 +4409,4422,4424,4437,-0.144827586207010,-0.478571428571286,-0.137931034482892,-0.485714285714135,-0.137931034482892,-0.471428571428453,-0.131034482758774,-0.478571428571302,-0.014285714285681,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285684,0.000000000000000,2 +4410,4423,4425,4438,-0.144827586207010,-0.464285714285605,-0.137931034482892,-0.471428571428453,-0.137931034482892,-0.457142857142769,-0.131034482758774,-0.464285714285617,-0.014285714285682,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285685,0.000000000000000,2 +4411,4424,4426,4439,-0.144827586207010,-0.449999999999923,-0.137931034482892,-0.457142857142769,-0.137931034482892,-0.442857142857085,-0.131034482758774,-0.449999999999932,-0.014285714285682,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000007,0.013793103448237,0.014285714285686,0.000000000000000,2 +4412,4425,4427,4440,-0.144827586207010,-0.435714285714240,-0.137931034482892,-0.442857142857085,-0.137931034482892,-0.428571428571402,-0.131034482758774,-0.435714285714246,-0.014285714285682,-0.000000000000000,-0.000000000000007,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285685,0.000000000000000,2 +4413,4426,4428,4441,-0.144827586207010,-0.421428571428540,-0.137931034482892,-0.428571428571402,-0.137931034482892,-0.414285714285683,-0.131034482758774,-0.421428571428544,-0.014285714285718,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285720,0.000000000000000,2 +4414,4427,4442,9307,-0.144827586207010,-0.407142857142841,-0.137931034482892,-0.414285714285683,-0.131034482758774,-0.407142857142842,-0.137931034482892,-0.400000000000000,-0.014285714285681,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285684,-0.000000000000000,0.000000000000000,0.013793103448237,2 +605,4415,4430,4443,-0.124137931034655,-0.600000000000000,-0.131034482758774,-0.592857142857130,-0.124137931034655,-0.585714285714261,-0.117241379310537,-0.592857142857130,-0.000000000000000,-0.013793103448237,-0.014285714285739,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285739,0.000000000000000,2 +4416,4429,4431,4444,-0.131034482758774,-0.578571428571387,-0.124137931034655,-0.585714285714261,-0.124137931034655,-0.571428571428514,-0.117241379310537,-0.578571428571388,-0.014285714285747,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285746,0.000000000000000,2 +4417,4430,4432,4445,-0.131034482758774,-0.564285714285643,-0.124137931034655,-0.571428571428514,-0.124137931034655,-0.557142857142773,-0.117241379310537,-0.564285714285645,-0.014285714285743,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285740,0.000000000000000,2 +4418,4431,4433,4446,-0.131034482758774,-0.549999999999900,-0.124137931034655,-0.557142857142773,-0.124137931034655,-0.542857142857032,-0.117241379310537,-0.549999999999905,-0.014285714285742,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000007,0.013793103448237,0.014285714285739,0.000000000000000,2 +4419,4432,4434,4447,-0.131034482758774,-0.535714285714160,-0.124137931034655,-0.542857142857032,-0.124137931034655,-0.528571428571296,-0.117241379310537,-0.535714285714168,-0.014285714285738,-0.000000000000000,-0.000000000000007,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285735,-0.000000000000000,2 +4420,4433,4435,4448,-0.131034482758774,-0.521428571428426,-0.124137931034655,-0.528571428571296,-0.124137931034655,-0.514285714285568,-0.117241379310537,-0.521428571428438,-0.014285714285730,-0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285725,0.000000000000000,2 +4421,4434,4436,4449,-0.131034482758774,-0.507142857142707,-0.124137931034655,-0.514285714285568,-0.124137931034655,-0.499999999999862,-0.117241379310537,-0.507142857142723,-0.014285714285708,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285705,0.000000000000000,2 +4422,4435,4437,4450,-0.131034482758774,-0.492857142856998,-0.124137931034655,-0.499999999999862,-0.124137931034655,-0.485714285714152,-0.117241379310537,-0.492857142857016,-0.014285714285709,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285710,0.000000000000000,2 +4423,4436,4438,4451,-0.131034482758774,-0.478571428571302,-0.124137931034655,-0.485714285714152,-0.124137931034655,-0.471428571428467,-0.117241379310537,-0.478571428571317,-0.014285714285684,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285687,0.000000000000000,2 +4424,4437,4439,4452,-0.131034482758774,-0.464285714285617,-0.124137931034655,-0.471428571428467,-0.124137931034655,-0.457142857142780,-0.117241379310537,-0.464285714285630,-0.014285714285685,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285688,0.000000000000000,2 +4425,4438,4440,4453,-0.131034482758774,-0.449999999999932,-0.124137931034655,-0.457142857142780,-0.124137931034655,-0.442857142857093,-0.117241379310537,-0.449999999999941,-0.014285714285686,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000008,0.013793103448237,0.014285714285689,0.000000000000000,2 +4426,4439,4441,4454,-0.131034482758774,-0.435714285714246,-0.124137931034655,-0.442857142857093,-0.124137931034655,-0.428571428571406,-0.117241379310537,-0.435714285714252,-0.014285714285685,-0.000000000000000,-0.000000000000008,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285688,0.000000000000000,2 +4427,4440,4442,4455,-0.131034482758774,-0.421428571428544,-0.124137931034655,-0.428571428571406,-0.124137931034655,-0.414285714285686,-0.117241379310537,-0.421428571428548,-0.014285714285720,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285721,0.000000000000000,2 +4428,4441,4456,9308,-0.131034482758774,-0.407142857142842,-0.124137931034655,-0.414285714285686,-0.117241379310537,-0.407142857142844,-0.124137931034655,-0.400000000000000,-0.014285714285684,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285687,-0.000000000000000,0.000000000000000,0.013793103448237,2 +611,4429,4444,4457,-0.110344827586419,-0.600000000000000,-0.117241379310537,-0.592857142857130,-0.110344827586419,-0.585714285714261,-0.103448275862300,-0.592857142857130,-0.000000000000000,-0.013793103448237,-0.014285714285739,-0.000000000000000,-0.000000000000000,0.013793103448237,0.014285714285740,0.000000000000000,2 +4430,4443,4445,4458,-0.117241379310537,-0.578571428571388,-0.110344827586419,-0.585714285714261,-0.110344827586419,-0.571428571428515,-0.103448275862300,-0.578571428571388,-0.014285714285746,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285744,0.000000000000000,2 +4431,4444,4446,4459,-0.117241379310537,-0.564285714285645,-0.110344827586419,-0.571428571428515,-0.110344827586419,-0.557142857142777,-0.103448275862300,-0.564285714285647,-0.014285714285740,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285737,0.000000000000000,2 +4432,4445,4447,4460,-0.117241379310537,-0.549999999999905,-0.110344827586419,-0.557142857142777,-0.110344827586419,-0.542857142857039,-0.103448275862300,-0.549999999999910,-0.014285714285739,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285737,0.000000000000000,2 +4433,4446,4448,4461,-0.117241379310537,-0.535714285714168,-0.110344827586419,-0.542857142857039,-0.110344827586419,-0.528571428571305,-0.103448275862300,-0.535714285714175,-0.014285714285735,0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285732,0.000000000000000,2 +4434,4447,4449,4462,-0.117241379310537,-0.521428571428438,-0.110344827586419,-0.528571428571305,-0.110344827586419,-0.514285714285583,-0.103448275862300,-0.521428571428450,-0.014285714285725,-0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285719,0.000000000000000,2 +4435,4448,4450,4463,-0.117241379310537,-0.507142857142723,-0.110344827586419,-0.514285714285583,-0.110344827586419,-0.499999999999880,-0.103448275862300,-0.507142857142740,-0.014285714285705,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285701,0.000000000000000,2 +4436,4449,4451,4464,-0.117241379310537,-0.492857142857016,-0.110344827586419,-0.499999999999880,-0.110344827586419,-0.485714285714169,-0.103448275862300,-0.492857142857034,-0.014285714285710,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285712,0.000000000000000,2 +4437,4450,4452,4465,-0.117241379310537,-0.478571428571317,-0.110344827586419,-0.485714285714169,-0.110344827586419,-0.471428571428481,-0.103448275862300,-0.478571428571332,-0.014285714285687,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285690,0.000000000000000,2 +4438,4451,4453,4466,-0.117241379310537,-0.464285714285630,-0.110344827586419,-0.471428571428481,-0.110344827586419,-0.457142857142791,-0.103448275862300,-0.464285714285642,-0.014285714285688,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285691,0.000000000000000,2 +4439,4452,4454,4467,-0.117241379310537,-0.449999999999941,-0.110344827586419,-0.457142857142791,-0.110344827586419,-0.442857142857100,-0.103448275862300,-0.449999999999950,-0.014285714285689,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000007,0.013793103448237,0.014285714285692,0.000000000000000,2 +4440,4453,4455,4468,-0.117241379310537,-0.435714285714252,-0.110344827586419,-0.442857142857100,-0.110344827586419,-0.428571428571411,-0.103448275862300,-0.435714285714258,-0.014285714285688,-0.000000000000000,-0.000000000000007,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285691,0.000000000000000,2 +4441,4454,4456,4469,-0.117241379310537,-0.421428571428548,-0.110344827586419,-0.428571428571411,-0.110344827586419,-0.414285714285689,-0.103448275862300,-0.421428571428552,-0.014285714285721,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285723,0.000000000000000,2 +4442,4455,4470,9309,-0.117241379310537,-0.407142857142844,-0.110344827586419,-0.414285714285689,-0.103448275862300,-0.407142857142845,-0.110344827586419,-0.400000000000000,-0.014285714285687,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285690,-0.000000000000000,0.000000000000000,0.013793103448237,2 +617,4443,4458,4471,-0.096551724138182,-0.600000000000000,-0.103448275862300,-0.592857142857130,-0.096551724138182,-0.585714285714260,-0.089655172414064,-0.592857142857130,-0.000000000000000,-0.013793103448237,-0.014285714285740,-0.000000000000000,-0.000000000000000,0.013793103448237,0.014285714285740,0.000000000000000,2 +4444,4457,4459,4472,-0.103448275862300,-0.578571428571388,-0.096551724138182,-0.585714285714260,-0.096551724138182,-0.571428571428516,-0.089655172414064,-0.578571428571389,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285743,0.000000000000000,2 +4445,4458,4460,4473,-0.103448275862300,-0.564285714285647,-0.096551724138182,-0.571428571428516,-0.096551724138182,-0.557142857142781,-0.089655172414064,-0.564285714285650,-0.014285714285737,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285734,0.000000000000000,2 +4446,4459,4461,4474,-0.103448275862300,-0.549999999999910,-0.096551724138182,-0.557142857142781,-0.096551724138182,-0.542857142857045,-0.089655172414064,-0.549999999999915,-0.014285714285737,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285734,-0.000000000000000,2 +4447,4460,4462,4475,-0.103448275862300,-0.535714285714175,-0.096551724138182,-0.542857142857045,-0.096551724138182,-0.528571428571314,-0.089655172414064,-0.535714285714183,-0.014285714285732,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285730,0.000000000000000,2 +4448,4461,4463,4476,-0.103448275862300,-0.521428571428450,-0.096551724138182,-0.528571428571314,-0.096551724138182,-0.514285714285598,-0.089655172414064,-0.521428571428462,-0.014285714285719,-0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285714,0.000000000000000,2 +4449,4462,4464,4477,-0.103448275862300,-0.507142857142740,-0.096551724138182,-0.514285714285598,-0.096551724138182,-0.499999999999899,-0.089655172414064,-0.507142857142756,-0.014285714285701,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285697,0.000000000000000,2 +4450,4463,4465,4478,-0.103448275862300,-0.492857142857034,-0.096551724138182,-0.499999999999899,-0.096551724138182,-0.485714285714186,-0.089655172414064,-0.492857142857051,-0.014285714285712,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285713,-0.000000000000000,2 +4451,4464,4466,4479,-0.103448275862300,-0.478571428571332,-0.096551724138182,-0.485714285714186,-0.096551724138182,-0.471428571428494,-0.089655172414064,-0.478571428571348,-0.014285714285690,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285693,0.000000000000000,2 +4452,4465,4467,4480,-0.103448275862300,-0.464285714285642,-0.096551724138182,-0.471428571428494,-0.096551724138182,-0.457142857142802,-0.089655172414064,-0.464285714285654,-0.014285714285691,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285694,0.000000000000000,2 +4453,4466,4468,4481,-0.103448275862300,-0.449999999999950,-0.096551724138182,-0.457142857142802,-0.096551724138182,-0.442857142857108,-0.089655172414064,-0.449999999999959,-0.014285714285692,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000007,0.013793103448237,0.014285714285696,0.000000000000000,2 +4454,4467,4469,4482,-0.103448275862300,-0.435714285714258,-0.096551724138182,-0.442857142857108,-0.096551724138182,-0.428571428571415,-0.089655172414064,-0.435714285714264,-0.014285714285691,-0.000000000000000,-0.000000000000007,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285695,-0.000000000000000,2 +4455,4468,4470,4483,-0.103448275862300,-0.421428571428552,-0.096551724138182,-0.428571428571415,-0.096551724138182,-0.414285714285692,-0.089655172414064,-0.421428571428555,-0.014285714285723,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285724,0.000000000000000,2 +4456,4469,4484,9310,-0.103448275862300,-0.407142857142845,-0.096551724138182,-0.414285714285692,-0.089655172414064,-0.407142857142847,-0.096551724138182,-0.400000000000000,-0.014285714285690,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285693,-0.000000000000000,0.000000000000000,0.013793103448237,2 +623,4457,4472,4485,-0.082758620689945,-0.600000000000000,-0.089655172414064,-0.592857142857130,-0.082758620689945,-0.585714285714260,-0.075862068965827,-0.592857142857130,-0.000000000000000,-0.013793103448237,-0.014285714285740,-0.000000000000000,-0.000000000000000,0.013793103448237,0.014285714285740,0.000000000000000,2 +4458,4471,4473,4486,-0.089655172414064,-0.578571428571389,-0.082758620689945,-0.585714285714260,-0.082758620689945,-0.571428571428517,-0.075862068965827,-0.578571428571389,-0.014285714285743,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285742,-0.000000000000000,2 +4459,4472,4474,4487,-0.089655172414064,-0.564285714285650,-0.082758620689945,-0.571428571428517,-0.082758620689945,-0.557142857142784,-0.075862068965827,-0.564285714285652,-0.014285714285734,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285732,-0.000000000000000,2 +4460,4473,4475,4488,-0.089655172414064,-0.549999999999915,-0.082758620689945,-0.557142857142784,-0.082758620689945,-0.542857142857051,-0.075862068965827,-0.549999999999920,-0.014285714285734,0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285732,0.000000000000000,2 +4461,4474,4476,4489,-0.089655172414064,-0.535714285714183,-0.082758620689945,-0.542857142857051,-0.082758620689945,-0.528571428571323,-0.075862068965827,-0.535714285714191,-0.014285714285730,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285727,0.000000000000000,2 +4462,4475,4477,4490,-0.089655172414064,-0.521428571428462,-0.082758620689945,-0.528571428571323,-0.082758620689945,-0.514285714285612,-0.075862068965827,-0.521428571428473,-0.014285714285714,-0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285708,-0.000000000000000,2 +4463,4476,4478,4491,-0.089655172414064,-0.507142857142756,-0.082758620689945,-0.514285714285612,-0.082758620689945,-0.499999999999917,-0.075862068965827,-0.507142857142773,-0.014285714285697,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285694,0.000000000000000,2 +4464,4477,4479,4492,-0.089655172414064,-0.492857142857051,-0.082758620689945,-0.499999999999917,-0.082758620689945,-0.485714285714203,-0.075862068965827,-0.492857142857069,-0.014285714285713,0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285715,0.000000000000000,2 +4465,4478,4480,4493,-0.089655172414064,-0.478571428571348,-0.082758620689945,-0.485714285714203,-0.082758620689945,-0.471428571428508,-0.075862068965827,-0.478571428571363,-0.014285714285693,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285696,0.000000000000000,2 +4466,4479,4481,4494,-0.089655172414064,-0.464285714285654,-0.082758620689945,-0.471428571428508,-0.082758620689945,-0.457142857142812,-0.075862068965827,-0.464285714285667,-0.014285714285694,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285698,0.000000000000000,2 +4467,4480,4482,4495,-0.089655172414064,-0.449999999999959,-0.082758620689945,-0.457142857142812,-0.082758620689945,-0.442857142857115,-0.075862068965827,-0.449999999999968,-0.014285714285696,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000008,0.013793103448237,0.014285714285699,0.000000000000000,2 +4468,4481,4483,4496,-0.089655172414064,-0.435714285714264,-0.082758620689945,-0.442857142857115,-0.082758620689945,-0.428571428571419,-0.075862068965827,-0.435714285714270,-0.014285714285695,0.000000000000000,-0.000000000000008,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285698,-0.000000000000000,2 +4469,4482,4484,4497,-0.089655172414064,-0.421428571428555,-0.082758620689945,-0.428571428571419,-0.082758620689945,-0.414285714285695,-0.075862068965827,-0.421428571428559,-0.014285714285724,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285725,0.000000000000000,2 +4470,4483,4498,9311,-0.089655172414064,-0.407142857142847,-0.082758620689945,-0.414285714285695,-0.075862068965827,-0.407142857142848,-0.082758620689945,-0.400000000000000,-0.014285714285693,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285696,-0.000000000000000,0.000000000000000,0.013793103448237,2 +629,4471,4486,4499,-0.068965517241709,-0.600000000000000,-0.075862068965827,-0.592857142857130,-0.068965517241709,-0.585714285714260,-0.062068965517591,-0.592857142857130,-0.000000000000000,-0.013793103448237,-0.014285714285740,-0.000000000000000,-0.000000000000001,0.013793103448237,0.014285714285741,0.000000000000000,2 +4472,4485,4487,4500,-0.075862068965827,-0.578571428571389,-0.068965517241709,-0.585714285714260,-0.068965517241709,-0.571428571428518,-0.062068965517591,-0.578571428571389,-0.014285714285742,0.000000000000000,0.000000000000001,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285740,0.000000000000000,2 +4473,4486,4488,4501,-0.075862068965827,-0.564285714285652,-0.068965517241709,-0.571428571428518,-0.068965517241709,-0.557142857142788,-0.062068965517591,-0.564285714285654,-0.014285714285732,0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285729,0.000000000000000,2 +4474,4487,4489,4502,-0.075862068965827,-0.549999999999920,-0.068965517241709,-0.557142857142788,-0.068965517241709,-0.542857142857058,-0.062068965517591,-0.549999999999925,-0.014285714285732,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285729,-0.000000000000000,2 +4475,4488,4490,4503,-0.075862068965827,-0.535714285714191,-0.068965517241709,-0.542857142857058,-0.068965517241709,-0.528571428571332,-0.062068965517591,-0.535714285714199,-0.014285714285727,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285725,0.000000000000000,2 +4476,4489,4491,4504,-0.075862068965827,-0.521428571428473,-0.068965517241709,-0.528571428571332,-0.068965517241709,-0.514285714285627,-0.062068965517591,-0.521428571428485,-0.014285714285708,0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285702,0.000000000000000,2 +4477,4490,4492,4505,-0.075862068965827,-0.507142857142773,-0.068965517241709,-0.514285714285627,-0.068965517241709,-0.499999999999935,-0.062068965517591,-0.507142857142789,-0.014285714285694,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285690,-0.000000000000000,2 +4478,4491,4493,4506,-0.075862068965827,-0.492857142857069,-0.068965517241709,-0.499999999999935,-0.068965517241709,-0.485714285714220,-0.062068965517591,-0.492857142857086,-0.014285714285715,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285716,0.000000000000000,2 +4479,4492,4494,4507,-0.075862068965827,-0.478571428571363,-0.068965517241709,-0.485714285714220,-0.068965517241709,-0.471428571428522,-0.062068965517591,-0.478571428571379,-0.014285714285696,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285699,0.000000000000000,2 +4480,4493,4495,4508,-0.075862068965827,-0.464285714285667,-0.068965517241709,-0.471428571428522,-0.068965517241709,-0.457142857142823,-0.062068965517591,-0.464285714285679,-0.014285714285698,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285701,0.000000000000000,2 +4481,4494,4496,4509,-0.075862068965827,-0.449999999999968,-0.068965517241709,-0.457142857142823,-0.068965517241709,-0.442857142857123,-0.062068965517591,-0.449999999999978,-0.014285714285699,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000008,0.013793103448237,0.014285714285702,0.000000000000000,2 +4482,4495,4497,4510,-0.075862068965827,-0.435714285714270,-0.068965517241709,-0.442857142857123,-0.068965517241709,-0.428571428571424,-0.062068965517591,-0.435714285714276,-0.014285714285698,0.000000000000000,-0.000000000000008,-0.013793103448237,0.000000000000005,0.013793103448237,0.014285714285701,-0.000000000000000,2 +4483,4496,4498,4511,-0.075862068965827,-0.421428571428559,-0.068965517241709,-0.428571428571424,-0.068965517241709,-0.414285714285698,-0.062068965517591,-0.421428571428562,-0.014285714285725,-0.000000000000000,-0.000000000000005,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285727,-0.000000000000000,2 +4484,4497,4512,9312,-0.075862068965827,-0.407142857142848,-0.068965517241709,-0.414285714285698,-0.062068965517591,-0.407142857142850,-0.068965517241709,-0.400000000000000,-0.014285714285696,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285699,0.000000000000000,0.000000000000000,0.013793103448237,2 +635,4485,4500,4513,-0.055172413793477,-0.600000000000000,-0.062068965517591,-0.592857142857130,-0.055172413793477,-0.585714285714259,-0.048275862069362,-0.592857142857130,-0.000000000000000,-0.013793103448228,-0.014285714285741,-0.000000000000000,0.000000000000000,0.013793103448228,0.014285714285741,0.000000000000000,2 +4486,4499,4501,4514,-0.062068965517591,-0.578571428571389,-0.055172413793477,-0.585714285714259,-0.055172413793477,-0.571428571428519,-0.048275862069362,-0.578571428571390,-0.014285714285740,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000001,0.013793103448228,0.014285714285740,0.000000000000000,2 +4487,4500,4502,4515,-0.062068965517591,-0.564285714285654,-0.055172413793477,-0.571428571428519,-0.055172413793477,-0.557142857142792,-0.048275862069362,-0.564285714285657,-0.014285714285729,-0.000000000000000,-0.000000000000001,-0.013793103448228,0.000000000000004,0.013793103448228,0.014285714285726,-0.000000000000000,2 +4488,4501,4503,4516,-0.062068965517591,-0.549999999999925,-0.055172413793477,-0.557142857142792,-0.055172413793477,-0.542857142857064,-0.048275862069362,-0.549999999999930,-0.014285714285729,0.000000000000000,-0.000000000000004,-0.013793103448228,0.000000000000006,0.013793103448228,0.014285714285726,0.000000000000000,2 +4489,4502,4504,4517,-0.062068965517591,-0.535714285714199,-0.055172413793477,-0.542857142857064,-0.055172413793477,-0.528571428571341,-0.048275862069362,-0.535714285714206,-0.014285714285725,-0.000000000000000,-0.000000000000006,-0.013793103448228,0.000000000000009,0.013793103448228,0.014285714285722,0.000000000000000,2 +4490,4503,4505,4518,-0.062068965517591,-0.521428571428485,-0.055172413793477,-0.528571428571341,-0.055172413793477,-0.514285714285642,-0.048275862069362,-0.521428571428497,-0.014285714285702,-0.000000000000000,-0.000000000000009,-0.013793103448228,0.000000000000015,0.013793103448228,0.014285714285696,0.000000000000000,2 +4491,4504,4506,4519,-0.062068965517591,-0.507142857142789,-0.055172413793477,-0.514285714285642,-0.055172413793477,-0.499999999999953,-0.048275862069362,-0.507142857142806,-0.014285714285690,0.000000000000000,-0.000000000000015,-0.013793103448228,0.000000000000019,0.013793103448228,0.014285714285686,0.000000000000000,2 +4492,4505,4507,4520,-0.062068965517591,-0.492857142857086,-0.055172413793477,-0.499999999999953,-0.055172413793477,-0.485714285714237,-0.048275862069362,-0.492857142857104,-0.014285714285716,-0.000000000000000,-0.000000000000019,-0.013793103448228,0.000000000000017,0.013793103448228,0.014285714285718,-0.000000000000000,2 +4493,4506,4508,4521,-0.062068965517591,-0.478571428571379,-0.055172413793477,-0.485714285714237,-0.055172413793477,-0.471428571428536,-0.048275862069362,-0.478571428571394,-0.014285714285699,-0.000000000000000,-0.000000000000017,-0.013793103448228,0.000000000000014,0.013793103448228,0.014285714285702,-0.000000000000000,2 +4494,4507,4509,4522,-0.062068965517591,-0.464285714285679,-0.055172413793477,-0.471428571428536,-0.055172413793477,-0.457142857142834,-0.048275862069362,-0.464285714285691,-0.014285714285701,-0.000000000000000,-0.000000000000014,-0.013793103448228,0.000000000000011,0.013793103448228,0.014285714285704,0.000000000000000,2 +4495,4508,4510,4523,-0.062068965517591,-0.449999999999978,-0.055172413793477,-0.457142857142834,-0.055172413793477,-0.442857142857130,-0.048275862069362,-0.449999999999987,-0.014285714285702,-0.000000000000000,-0.000000000000011,-0.013793103448228,0.000000000000007,0.013793103448228,0.014285714285705,-0.000000000000000,2 +4496,4509,4511,4524,-0.062068965517591,-0.435714285714276,-0.055172413793477,-0.442857142857130,-0.055172413793477,-0.428571428571428,-0.048275862069362,-0.435714285714282,-0.014285714285701,0.000000000000000,-0.000000000000007,-0.013793103448228,0.000000000000004,0.013793103448228,0.014285714285704,0.000000000000000,2 +4497,4510,4512,4525,-0.062068965517591,-0.421428571428562,-0.055172413793477,-0.428571428571428,-0.055172413793477,-0.414285714285701,-0.048275862069362,-0.421428571428566,-0.014285714285727,0.000000000000000,-0.000000000000004,-0.013793103448228,0.000000000000003,0.013793103448228,0.014285714285728,0.000000000000000,2 +4498,4511,4526,9313,-0.062068965517591,-0.407142857142850,-0.055172413793477,-0.414285714285701,-0.048275862069362,-0.407142857142851,-0.055172413793477,-0.400000000000000,-0.014285714285699,-0.000000000000000,-0.000000000000003,-0.013793103448228,0.014285714285702,-0.000000000000000,0.000000000000000,0.013793103448228,2 +641,4499,4514,4527,-0.041379310345245,-0.600000000000000,-0.048275862069362,-0.592857142857130,-0.041379310345245,-0.585714285714259,-0.034482758621128,-0.592857142857129,-0.000000000000000,-0.013793103448234,-0.014285714285741,-0.000000000000000,-0.000000000000000,0.013793103448234,0.014285714285741,0.000000000000000,2 +4500,4513,4515,4528,-0.048275862069362,-0.578571428571390,-0.041379310345245,-0.585714285714259,-0.041379310345245,-0.571428571428520,-0.034482758621128,-0.578571428571390,-0.014285714285740,-0.000000000000000,0.000000000000000,-0.013793103448234,0.000000000000001,0.013793103448234,0.014285714285738,-0.000000000000000,2 +4501,4514,4516,4529,-0.048275862069362,-0.564285714285657,-0.041379310345245,-0.571428571428520,-0.041379310345245,-0.557142857142795,-0.034482758621128,-0.564285714285659,-0.014285714285726,0.000000000000000,-0.000000000000001,-0.013793103448234,0.000000000000004,0.013793103448234,0.014285714285723,0.000000000000000,2 +4502,4515,4517,4530,-0.048275862069362,-0.549999999999930,-0.041379310345245,-0.557142857142795,-0.041379310345245,-0.542857142857071,-0.034482758621128,-0.549999999999936,-0.014285714285726,-0.000000000000000,-0.000000000000004,-0.013793103448234,0.000000000000006,0.013793103448234,0.014285714285723,0.000000000000000,2 +4503,4516,4518,4531,-0.048275862069362,-0.535714285714206,-0.041379310345245,-0.542857142857071,-0.041379310345245,-0.528571428571350,-0.034482758621128,-0.535714285714214,-0.014285714285722,-0.000000000000000,-0.000000000000006,-0.013793103448234,0.000000000000009,0.013793103448234,0.014285714285720,0.000000000000000,2 +4504,4517,4519,4532,-0.048275862069362,-0.521428571428497,-0.041379310345245,-0.528571428571350,-0.041379310345245,-0.514285714285656,-0.034482758621128,-0.521428571428509,-0.014285714285696,-0.000000000000000,-0.000000000000009,-0.013793103448234,0.000000000000014,0.013793103448234,0.014285714285691,-0.000000000000000,2 +4505,4518,4520,4533,-0.048275862069362,-0.507142857142806,-0.041379310345245,-0.514285714285656,-0.041379310345245,-0.499999999999972,-0.034482758621128,-0.507142857142822,-0.014285714285686,-0.000000000000000,-0.000000000000014,-0.013793103448234,0.000000000000018,0.013793103448234,0.014285714285682,-0.000000000000000,2 +4506,4519,4521,4534,-0.048275862069362,-0.492857142857104,-0.041379310345245,-0.499999999999972,-0.041379310345245,-0.485714285714254,-0.034482758621128,-0.492857142857122,-0.014285714285718,0.000000000000000,-0.000000000000018,-0.013793103448234,0.000000000000017,0.013793103448234,0.014285714285719,0.000000000000000,2 +4507,4520,4522,4535,-0.048275862069362,-0.478571428571394,-0.041379310345245,-0.485714285714254,-0.041379310345245,-0.471428571428550,-0.034482758621128,-0.478571428571410,-0.014285714285702,0.000000000000000,-0.000000000000017,-0.013793103448234,0.000000000000014,0.013793103448234,0.014285714285705,0.000000000000000,2 +4508,4521,4523,4536,-0.048275862069362,-0.464285714285691,-0.041379310345245,-0.471428571428550,-0.041379310345245,-0.457142857142845,-0.034482758621128,-0.464285714285704,-0.014285714285704,-0.000000000000000,-0.000000000000014,-0.013793103448234,0.000000000000011,0.013793103448234,0.014285714285707,-0.000000000000000,2 +4509,4522,4524,4537,-0.048275862069362,-0.449999999999987,-0.041379310345245,-0.457142857142845,-0.041379310345245,-0.442857142857138,-0.034482758621128,-0.449999999999996,-0.014285714285705,0.000000000000000,-0.000000000000011,-0.013793103448234,0.000000000000008,0.013793103448234,0.014285714285708,0.000000000000000,2 +4510,4523,4525,4538,-0.048275862069362,-0.435714285714282,-0.041379310345245,-0.442857142857138,-0.041379310345245,-0.428571428571432,-0.034482758621128,-0.435714285714288,-0.014285714285704,-0.000000000000000,-0.000000000000008,-0.013793103448234,0.000000000000004,0.013793103448234,0.014285714285707,0.000000000000000,2 +4511,4524,4526,4539,-0.048275862069362,-0.421428571428566,-0.041379310345245,-0.428571428571432,-0.041379310345245,-0.414285714285704,-0.034482758621128,-0.421428571428570,-0.014285714285728,-0.000000000000000,-0.000000000000004,-0.013793103448234,0.000000000000003,0.013793103448234,0.014285714285730,0.000000000000000,2 +4512,4525,4540,9314,-0.048275862069362,-0.407142857142851,-0.041379310345245,-0.414285714285704,-0.034482758621128,-0.407142857142852,-0.041379310345245,-0.400000000000000,-0.014285714285702,0.000000000000000,-0.000000000000003,-0.013793103448234,0.014285714285705,-0.000000000000000,0.000000000000000,0.013793103448234,2 +647,4513,4528,4541,-0.027586206897010,-0.600000000000000,-0.034482758621128,-0.592857142857129,-0.027586206897010,-0.585714285714259,-0.020689655172892,-0.592857142857129,-0.000000000000000,-0.013793103448237,-0.014285714285741,-0.000000000000000,-0.000000000000000,0.013793103448237,0.014285714285741,-0.000000000000000,2 +4514,4527,4529,4542,-0.034482758621128,-0.578571428571390,-0.027586206897010,-0.585714285714259,-0.027586206897010,-0.571428571428521,-0.020689655172892,-0.578571428571390,-0.014285714285738,0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285737,0.000000000000000,2 +4515,4528,4530,4543,-0.034482758621128,-0.564285714285659,-0.027586206897010,-0.571428571428521,-0.027586206897010,-0.557142857142799,-0.020689655172892,-0.564285714285661,-0.014285714285723,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285721,0.000000000000000,2 +4516,4529,4531,4544,-0.034482758621128,-0.549999999999936,-0.027586206897010,-0.557142857142799,-0.027586206897010,-0.542857142857077,-0.020689655172892,-0.549999999999941,-0.014285714285723,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285721,0.000000000000000,2 +4517,4530,4532,4545,-0.034482758621128,-0.535714285714214,-0.027586206897010,-0.542857142857077,-0.027586206897010,-0.528571428571359,-0.020689655172892,-0.535714285714222,-0.014285714285720,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285717,0.000000000000000,2 +4518,4531,4533,4546,-0.034482758621128,-0.521428571428509,-0.027586206897010,-0.528571428571359,-0.027586206897010,-0.514285714285671,-0.020689655172892,-0.521428571428521,-0.014285714285691,0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285685,-0.000000000000000,2 +4519,4532,4534,4547,-0.034482758621128,-0.507142857142822,-0.027586206897010,-0.514285714285671,-0.027586206897010,-0.499999999999990,-0.020689655172892,-0.507142857142839,-0.014285714285682,0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285679,0.000000000000000,2 +4520,4533,4535,4548,-0.034482758621128,-0.492857142857122,-0.027586206897010,-0.499999999999990,-0.027586206897010,-0.485714285714270,-0.020689655172892,-0.492857142857139,-0.014285714285719,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285721,-0.000000000000000,2 +4521,4534,4536,4549,-0.034482758621128,-0.478571428571410,-0.027586206897010,-0.485714285714270,-0.027586206897010,-0.471428571428564,-0.020689655172892,-0.478571428571425,-0.014285714285705,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285708,0.000000000000000,2 +4522,4535,4537,4550,-0.034482758621128,-0.464285714285704,-0.027586206897010,-0.471428571428564,-0.027586206897010,-0.457142857142856,-0.020689655172892,-0.464285714285716,-0.014285714285707,0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285710,-0.000000000000000,2 +4523,4536,4538,4551,-0.034482758621128,-0.449999999999996,-0.027586206897010,-0.457142857142856,-0.027586206897010,-0.442857142857146,-0.020689655172892,-0.450000000000005,-0.014285714285708,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000007,0.013793103448237,0.014285714285712,0.000000000000000,2 +4524,4537,4539,4552,-0.034482758621128,-0.435714285714288,-0.027586206897010,-0.442857142857146,-0.027586206897010,-0.428571428571437,-0.020689655172892,-0.435714285714294,-0.014285714285707,-0.000000000000000,-0.000000000000007,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285710,0.000000000000000,2 +4525,4538,4540,4553,-0.034482758621128,-0.421428571428570,-0.027586206897010,-0.428571428571437,-0.027586206897010,-0.414285714285707,-0.020689655172892,-0.421428571428574,-0.014285714285730,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285731,-0.000000000000000,2 +4526,4539,4554,9315,-0.034482758621128,-0.407142857142852,-0.027586206897010,-0.414285714285707,-0.020689655172892,-0.407142857142854,-0.027586206897010,-0.400000000000000,-0.014285714285705,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285708,0.000000000000000,0.000000000000000,0.013793103448237,2 +653,4527,4542,4555,-0.013793103448773,-0.600000000000000,-0.020689655172892,-0.592857142857129,-0.013793103448773,-0.585714285714259,-0.006896551724655,-0.592857142857129,-0.000000000000000,-0.013793103448237,-0.014285714285741,0.000000000000000,-0.000000000000000,0.013793103448237,0.014285714285741,0.000000000000000,2 +4528,4541,4543,4556,-0.020689655172892,-0.578571428571390,-0.013793103448773,-0.585714285714259,-0.013793103448773,-0.571428571428522,-0.006896551724655,-0.578571428571391,-0.014285714285737,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285736,-0.000000000000000,2 +4529,4542,4544,4557,-0.020689655172892,-0.564285714285661,-0.013793103448773,-0.571428571428522,-0.013793103448773,-0.557142857142803,-0.006896551724655,-0.564285714285664,-0.014285714285721,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285718,0.000000000000000,2 +4530,4543,4545,4558,-0.020689655172892,-0.549999999999941,-0.013793103448773,-0.557142857142803,-0.013793103448773,-0.542857142857083,-0.006896551724655,-0.549999999999946,-0.014285714285721,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285718,-0.000000000000000,2 +4531,4544,4546,4559,-0.020689655172892,-0.535714285714222,-0.013793103448773,-0.542857142857083,-0.013793103448773,-0.528571428571367,-0.006896551724655,-0.535714285714229,-0.014285714285717,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285715,-0.000000000000000,2 +4532,4545,4547,4560,-0.020689655172892,-0.521428571428521,-0.013793103448773,-0.528571428571367,-0.013793103448773,-0.514285714285686,-0.006896551724655,-0.521428571428532,-0.014285714285685,0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285679,0.000000000000000,2 +4533,4546,4548,4561,-0.020689655172892,-0.507142857142839,-0.013793103448773,-0.514285714285686,-0.013793103448773,-0.500000000000008,-0.006896551724655,-0.507142857142855,-0.014285714285679,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285675,-0.000000000000000,2 +4534,4547,4549,4562,-0.020689655172892,-0.492857142857139,-0.013793103448773,-0.500000000000008,-0.013793103448773,-0.485714285714287,-0.006896551724655,-0.492857142857157,-0.014285714285721,0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285722,0.000000000000000,2 +4535,4548,4550,4563,-0.020689655172892,-0.478571428571425,-0.013793103448773,-0.485714285714287,-0.013793103448773,-0.471428571428578,-0.006896551724655,-0.478571428571440,-0.014285714285708,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285711,0.000000000000000,2 +4536,4549,4551,4564,-0.020689655172892,-0.464285714285716,-0.013793103448773,-0.471428571428578,-0.013793103448773,-0.457142857142866,-0.006896551724655,-0.464285714285728,-0.014285714285710,0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285713,0.000000000000000,2 +4537,4550,4552,4565,-0.020689655172892,-0.450000000000005,-0.013793103448773,-0.457142857142866,-0.013793103448773,-0.442857142857153,-0.006896551724655,-0.450000000000014,-0.014285714285712,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000007,0.013793103448237,0.014285714285715,-0.000000000000000,2 +4538,4551,4553,4566,-0.020689655172892,-0.435714285714294,-0.013793103448773,-0.442857142857153,-0.013793103448773,-0.428571428571441,-0.006896551724655,-0.435714285714300,-0.014285714285710,-0.000000000000000,-0.000000000000007,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285714,0.000000000000000,2 +4539,4552,4554,4567,-0.020689655172892,-0.421428571428574,-0.013793103448773,-0.428571428571441,-0.013793103448773,-0.414285714285710,-0.006896551724655,-0.421428571428577,-0.014285714285731,0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285732,-0.000000000000000,2 +4540,4553,4568,9316,-0.020689655172892,-0.407142857142854,-0.013793103448773,-0.414285714285710,-0.006896551724655,-0.407142857142856,-0.013793103448773,-0.400000000000000,-0.014285714285708,-0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285711,0.000000000000000,0.000000000000000,0.013793103448237,2 +659,4541,4556,4569,-0.000000000000518,-0.600000000000000,-0.006896551724655,-0.592857142857129,-0.000000000000518,-0.585714285714258,0.006896551723618,-0.592857142857129,-0.000000000000000,-0.013793103448274,-0.014285714285741,-0.000000000000000,-0.000000000000000,0.013793103448274,0.014285714285742,0.000000000000000,2 +4542,4555,4557,4570,-0.006896551724655,-0.578571428571391,-0.000000000000518,-0.585714285714258,-0.000000000000518,-0.571428571428523,0.006896551723618,-0.578571428571391,-0.014285714285736,0.000000000000000,0.000000000000000,-0.013793103448274,0.000000000000001,0.013793103448274,0.014285714285734,-0.000000000000000,2 +4543,4556,4558,4571,-0.006896551724655,-0.564285714285664,-0.000000000000518,-0.571428571428523,-0.000000000000518,-0.557142857142806,0.006896551723618,-0.564285714285666,-0.014285714285718,-0.000000000000000,-0.000000000000001,-0.013793103448274,0.000000000000004,0.013793103448274,0.014285714285715,0.000000000000000,2 +4544,4557,4559,4572,-0.006896551724655,-0.549999999999946,-0.000000000000518,-0.557142857142806,-0.000000000000518,-0.542857142857090,0.006896551723618,-0.549999999999951,-0.014285714285718,0.000000000000000,-0.000000000000004,-0.013793103448274,0.000000000000006,0.013793103448274,0.014285714285715,-0.000000000000000,2 +4545,4558,4560,4573,-0.006896551724655,-0.535714285714229,-0.000000000000518,-0.542857142857090,-0.000000000000518,-0.528571428571376,0.006896551723618,-0.535714285714237,-0.014285714285715,0.000000000000000,-0.000000000000006,-0.013793103448274,0.000000000000009,0.013793103448274,0.014285714285712,0.000000000000000,2 +4546,4559,4561,4574,-0.006896551724655,-0.521428571428532,-0.000000000000518,-0.528571428571376,-0.000000000000518,-0.514285714285700,0.006896551723618,-0.521428571428544,-0.014285714285679,-0.000000000000000,-0.000000000000009,-0.013793103448274,0.000000000000014,0.013793103448274,0.014285714285673,0.000000000000000,2 +4547,4560,4562,4575,-0.006896551724655,-0.507142857142855,-0.000000000000518,-0.514285714285700,-0.000000000000518,-0.500000000000027,0.006896551723618,-0.507142857142872,-0.014285714285675,0.000000000000000,-0.000000000000014,-0.013793103448274,0.000000000000018,0.013793103448274,0.014285714285671,-0.000000000000000,2 +4548,4561,4563,4576,-0.006896551724655,-0.492857142857157,-0.000000000000518,-0.500000000000027,-0.000000000000518,-0.485714285714304,0.006896551723618,-0.492857142857174,-0.014285714285722,-0.000000000000000,-0.000000000000018,-0.013793103448274,0.000000000000017,0.013793103448274,0.014285714285723,0.000000000000000,2 +4549,4562,4564,4577,-0.006896551724655,-0.478571428571440,-0.000000000000518,-0.485714285714304,-0.000000000000518,-0.471428571428592,0.006896551723618,-0.478571428571456,-0.014285714285711,-0.000000000000000,-0.000000000000017,-0.013793103448274,0.000000000000014,0.013793103448274,0.014285714285713,-0.000000000000000,2 +4550,4563,4565,4578,-0.006896551724655,-0.464285714285728,-0.000000000000518,-0.471428571428592,-0.000000000000518,-0.457142857142877,0.006896551723618,-0.464285714285741,-0.014285714285713,-0.000000000000000,-0.000000000000014,-0.013793103448274,0.000000000000011,0.013793103448274,0.014285714285717,0.000000000000000,2 +4551,4564,4566,4579,-0.006896551724655,-0.450000000000014,-0.000000000000518,-0.457142857142877,-0.000000000000518,-0.442857142857160,0.006896551723618,-0.450000000000023,-0.014285714285715,0.000000000000000,-0.000000000000011,-0.013793103448274,0.000000000000007,0.013793103448274,0.014285714285719,-0.000000000000000,2 +4552,4565,4567,4580,-0.006896551724655,-0.435714285714300,-0.000000000000518,-0.442857142857160,-0.000000000000518,-0.428571428571445,0.006896551723618,-0.435714285714306,-0.014285714285714,-0.000000000000000,-0.000000000000007,-0.013793103448274,0.000000000000004,0.013793103448274,0.014285714285717,0.000000000000000,2 +4553,4566,4568,4581,-0.006896551724655,-0.421428571428577,-0.000000000000518,-0.428571428571445,-0.000000000000518,-0.414285714285713,0.006896551723618,-0.421428571428581,-0.014285714285732,0.000000000000000,-0.000000000000004,-0.013793103448274,0.000000000000003,0.013793103448274,0.014285714285733,0.000000000000000,2 +4554,4567,4582,9317,-0.006896551724655,-0.407142857142856,-0.000000000000518,-0.414285714285713,0.006896551723618,-0.407142857142857,-0.000000000000518,-0.400000000000000,-0.014285714285711,-0.000000000000000,-0.000000000000003,-0.013793103448274,0.014285714285714,-0.000000000000000,0.000000000000000,0.013793103448274,2 +665,4555,4570,4583,0.013793103447775,-0.600000000000000,0.006896551723618,-0.592857142857129,0.013793103447775,-0.585714285714258,0.020689655171931,-0.592857142857129,-0.000000000000000,-0.013793103448313,-0.014285714285742,-0.000000000000000,0.000000000000000,0.013793103448313,0.014285714285742,0.000000000000000,2 +4556,4569,4571,4584,0.006896551723618,-0.578571428571391,0.013793103447775,-0.585714285714258,0.013793103447775,-0.571428571428524,0.020689655171931,-0.578571428571391,-0.014285714285734,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000001,0.013793103448313,0.014285714285733,-0.000000000000000,2 +4557,4570,4572,4585,0.006896551723618,-0.564285714285666,0.013793103447775,-0.571428571428524,0.013793103447775,-0.557142857142810,0.020689655171931,-0.564285714285668,-0.014285714285715,-0.000000000000000,-0.000000000000001,-0.013793103448313,0.000000000000004,0.013793103448313,0.014285714285712,0.000000000000000,2 +4558,4571,4573,4586,0.006896551723618,-0.549999999999951,0.013793103447775,-0.557142857142810,0.013793103447775,-0.542857142857096,0.020689655171931,-0.549999999999956,-0.014285714285715,0.000000000000000,-0.000000000000004,-0.013793103448313,0.000000000000006,0.013793103448313,0.014285714285713,-0.000000000000000,2 +4559,4572,4574,4587,0.006896551723618,-0.535714285714237,0.013793103447775,-0.542857142857096,0.013793103447775,-0.528571428571385,0.020689655171931,-0.535714285714245,-0.014285714285712,-0.000000000000000,-0.000000000000006,-0.013793103448313,0.000000000000009,0.013793103448313,0.014285714285710,0.000000000000000,2 +4560,4573,4575,4588,0.006896551723618,-0.521428571428544,0.013793103447775,-0.528571428571385,0.013793103447775,-0.514285714285715,0.020689655171931,-0.521428571428556,-0.014285714285673,-0.000000000000000,-0.000000000000009,-0.013793103448313,0.000000000000015,0.013793103448313,0.014285714285668,0.000000000000000,2 +4561,4574,4576,4589,0.006896551723618,-0.507142857142872,0.013793103447775,-0.514285714285715,0.013793103447775,-0.500000000000045,0.020689655171931,-0.507142857142888,-0.014285714285671,0.000000000000000,-0.000000000000015,-0.013793103448313,0.000000000000018,0.013793103448313,0.014285714285667,0.000000000000000,2 +4562,4575,4577,4590,0.006896551723618,-0.492857142857174,0.013793103447775,-0.500000000000045,0.013793103447775,-0.485714285714321,0.020689655171931,-0.492857142857192,-0.014285714285723,-0.000000000000000,-0.000000000000018,-0.013793103448313,0.000000000000017,0.013793103448313,0.014285714285725,0.000000000000000,2 +4563,4576,4578,4591,0.006896551723618,-0.478571428571456,0.013793103447775,-0.485714285714321,0.013793103447775,-0.471428571428606,0.020689655171931,-0.478571428571471,-0.014285714285713,0.000000000000000,-0.000000000000017,-0.013793103448313,0.000000000000014,0.013793103448313,0.014285714285716,0.000000000000000,2 +4564,4577,4579,4592,0.006896551723618,-0.464285714285741,0.013793103447775,-0.471428571428606,0.013793103447775,-0.457142857142888,0.020689655171931,-0.464285714285753,-0.014285714285717,-0.000000000000000,-0.000000000000014,-0.013793103448313,0.000000000000011,0.013793103448313,0.014285714285720,-0.000000000000000,2 +4565,4578,4580,4593,0.006896551723618,-0.450000000000023,0.013793103447775,-0.457142857142888,0.013793103447775,-0.442857142857168,0.020689655171931,-0.450000000000033,-0.014285714285719,0.000000000000000,-0.000000000000011,-0.013793103448313,0.000000000000008,0.013793103448313,0.014285714285722,0.000000000000000,2 +4566,4579,4581,4594,0.006896551723618,-0.435714285714306,0.013793103447775,-0.442857142857168,0.013793103447775,-0.428571428571450,0.020689655171931,-0.435714285714312,-0.014285714285717,-0.000000000000000,-0.000000000000008,-0.013793103448313,0.000000000000004,0.013793103448313,0.014285714285720,-0.000000000000000,2 +4567,4580,4582,4595,0.006896551723618,-0.421428571428581,0.013793103447775,-0.428571428571450,0.013793103447775,-0.414285714285716,0.020689655171931,-0.421428571428584,-0.014285714285733,-0.000000000000000,-0.000000000000004,-0.013793103448313,0.000000000000003,0.013793103448313,0.014285714285735,0.000000000000000,2 +4568,4581,4596,9318,0.006896551723618,-0.407142857142857,0.013793103447775,-0.414285714285716,0.020689655171931,-0.407142857142858,0.013793103447775,-0.400000000000000,-0.014285714285714,0.000000000000000,-0.000000000000003,-0.013793103448313,0.014285714285717,-0.000000000000000,0.000000000000000,0.013793103448313,2 +671,4569,4584,4597,0.027586206896088,-0.600000000000000,0.020689655171931,-0.592857142857129,0.027586206896088,-0.585714285714258,0.034482758620245,-0.592857142857129,-0.000000000000000,-0.013793103448314,-0.014285714285742,-0.000000000000000,-0.000000000000000,0.013793103448314,0.014285714285742,0.000000000000000,2 +4570,4583,4585,4598,0.020689655171931,-0.578571428571391,0.027586206896088,-0.585714285714258,0.027586206896088,-0.571428571428525,0.034482758620245,-0.578571428571392,-0.014285714285733,0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000001,0.013793103448314,0.014285714285732,-0.000000000000000,2 +4571,4584,4586,4599,0.020689655171931,-0.564285714285668,0.027586206896088,-0.571428571428525,0.027586206896088,-0.557142857142814,0.034482758620245,-0.564285714285671,-0.014285714285712,-0.000000000000000,-0.000000000000001,-0.013793103448314,0.000000000000003,0.013793103448314,0.014285714285710,0.000000000000000,2 +4572,4585,4587,4600,0.020689655171931,-0.549999999999956,0.027586206896088,-0.557142857142814,0.027586206896088,-0.542857142857103,0.034482758620245,-0.549999999999961,-0.014285714285713,0.000000000000000,-0.000000000000003,-0.013793103448314,0.000000000000006,0.013793103448314,0.014285714285710,-0.000000000000000,2 +4573,4586,4588,4601,0.020689655171931,-0.535714285714245,0.027586206896088,-0.542857142857103,0.027586206896088,-0.528571428571394,0.034482758620245,-0.535714285714252,-0.014285714285710,-0.000000000000000,-0.000000000000006,-0.013793103448314,0.000000000000009,0.013793103448314,0.014285714285707,0.000000000000000,2 +4574,4587,4589,4602,0.020689655171931,-0.521428571428556,0.027586206896088,-0.528571428571394,0.027586206896088,-0.514285714285729,0.034482758620245,-0.521428571428568,-0.014285714285668,-0.000000000000000,-0.000000000000009,-0.013793103448314,0.000000000000015,0.013793103448314,0.014285714285662,0.000000000000000,2 +4575,4588,4590,4603,0.020689655171931,-0.507142857142888,0.027586206896088,-0.514285714285729,0.027586206896088,-0.500000000000064,0.034482758620245,-0.507142857142905,-0.014285714285667,-0.000000000000000,-0.000000000000015,-0.013793103448314,0.000000000000018,0.013793103448314,0.014285714285664,0.000000000000000,2 +4576,4589,4591,4604,0.020689655171931,-0.492857142857192,0.027586206896088,-0.500000000000064,0.027586206896088,-0.485714285714338,0.034482758620245,-0.492857142857209,-0.014285714285725,-0.000000000000000,-0.000000000000018,-0.013793103448314,0.000000000000017,0.013793103448314,0.014285714285726,-0.000000000000000,2 +4577,4590,4592,4605,0.020689655171931,-0.478571428571471,0.027586206896088,-0.485714285714338,0.027586206896088,-0.471428571428620,0.034482758620245,-0.478571428571487,-0.014285714285716,-0.000000000000000,-0.000000000000017,-0.013793103448314,0.000000000000014,0.013793103448314,0.014285714285719,0.000000000000000,2 +4578,4591,4593,4606,0.020689655171931,-0.464285714285753,0.027586206896088,-0.471428571428620,0.027586206896088,-0.457142857142899,0.034482758620245,-0.464285714285765,-0.014285714285720,0.000000000000000,-0.000000000000014,-0.013793103448314,0.000000000000011,0.013793103448314,0.014285714285723,-0.000000000000000,2 +4579,4592,4594,4607,0.020689655171931,-0.450000000000033,0.027586206896088,-0.457142857142899,0.027586206896088,-0.442857142857176,0.034482758620245,-0.450000000000042,-0.014285714285722,-0.000000000000000,-0.000000000000011,-0.013793103448314,0.000000000000007,0.013793103448314,0.014285714285725,0.000000000000000,2 +4580,4593,4595,4608,0.020689655171931,-0.435714285714312,0.027586206896088,-0.442857142857176,0.027586206896088,-0.428571428571454,0.034482758620245,-0.435714285714318,-0.014285714285720,0.000000000000000,-0.000000000000007,-0.013793103448314,0.000000000000005,0.013793103448314,0.014285714285723,-0.000000000000000,2 +4581,4594,4596,4609,0.020689655171931,-0.421428571428584,0.027586206896088,-0.428571428571454,0.027586206896088,-0.414285714285719,0.034482758620245,-0.421428571428588,-0.014285714285735,-0.000000000000000,-0.000000000000005,-0.013793103448314,0.000000000000003,0.013793103448314,0.014285714285736,0.000000000000000,2 +4582,4595,4610,9319,0.020689655171931,-0.407142857142858,0.027586206896088,-0.414285714285719,0.034482758620245,-0.407142857142860,0.027586206896088,-0.400000000000000,-0.014285714285717,0.000000000000000,-0.000000000000003,-0.013793103448314,0.014285714285720,-0.000000000000000,0.000000000000000,0.013793103448314,2 +677,4583,4598,4611,0.041379310344402,-0.600000000000000,0.034482758620245,-0.592857142857129,0.041379310344402,-0.585714285714258,0.048275862068559,-0.592857142857129,-0.000000000000000,-0.013793103448314,-0.014285714285742,-0.000000000000000,-0.000000000000000,0.013793103448314,0.014285714285743,-0.000000000000000,2 +4584,4597,4599,4612,0.034482758620245,-0.578571428571392,0.041379310344402,-0.585714285714258,0.041379310344402,-0.571428571428526,0.048275862068559,-0.578571428571392,-0.014285714285732,0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000001,0.013793103448314,0.014285714285731,0.000000000000000,2 +4585,4598,4600,4613,0.034482758620245,-0.564285714285671,0.041379310344402,-0.571428571428526,0.041379310344402,-0.557142857142818,0.048275862068559,-0.564285714285673,-0.014285714285710,-0.000000000000000,-0.000000000000001,-0.013793103448314,0.000000000000004,0.013793103448314,0.014285714285707,0.000000000000000,2 +4586,4599,4601,4614,0.034482758620245,-0.549999999999961,0.041379310344402,-0.557142857142818,0.041379310344402,-0.542857142857109,0.048275862068559,-0.549999999999966,-0.014285714285710,0.000000000000000,-0.000000000000004,-0.013793103448314,0.000000000000006,0.013793103448314,0.014285714285707,-0.000000000000000,2 +4587,4600,4602,4615,0.034482758620245,-0.535714285714252,0.041379310344402,-0.542857142857109,0.041379310344402,-0.528571428571403,0.048275862068559,-0.535714285714260,-0.014285714285707,-0.000000000000000,-0.000000000000006,-0.013793103448314,0.000000000000009,0.013793103448314,0.014285714285705,0.000000000000000,2 +4588,4601,4603,4616,0.034482758620245,-0.521428571428568,0.041379310344402,-0.528571428571403,0.041379310344402,-0.514285714285744,0.048275862068559,-0.521428571428579,-0.014285714285662,-0.000000000000000,-0.000000000000009,-0.013793103448314,0.000000000000015,0.013793103448314,0.014285714285656,-0.000000000000000,2 +4589,4602,4604,4617,0.034482758620245,-0.507142857142905,0.041379310344402,-0.514285714285744,0.041379310344402,-0.500000000000082,0.048275862068559,-0.507142857142921,-0.014285714285664,-0.000000000000000,-0.000000000000015,-0.013793103448314,0.000000000000019,0.013793103448314,0.014285714285660,0.000000000000000,2 +4590,4603,4605,4618,0.034482758620245,-0.492857142857209,0.041379310344402,-0.500000000000082,0.041379310344402,-0.485714285714355,0.048275862068559,-0.492857142857227,-0.014285714285726,0.000000000000000,-0.000000000000019,-0.013793103448314,0.000000000000017,0.013793103448314,0.014285714285728,0.000000000000000,2 +4591,4604,4606,4619,0.034482758620245,-0.478571428571487,0.041379310344402,-0.485714285714355,0.041379310344402,-0.471428571428634,0.048275862068559,-0.478571428571502,-0.014285714285719,-0.000000000000000,-0.000000000000017,-0.013793103448314,0.000000000000014,0.013793103448314,0.014285714285722,-0.000000000000000,2 +4592,4605,4607,4620,0.034482758620245,-0.464285714285765,0.041379310344402,-0.471428571428634,0.041379310344402,-0.457142857142910,0.048275862068559,-0.464285714285778,-0.014285714285723,0.000000000000000,-0.000000000000014,-0.013793103448314,0.000000000000011,0.013793103448314,0.014285714285726,0.000000000000000,2 +4593,4606,4608,4621,0.034482758620245,-0.450000000000042,0.041379310344402,-0.457142857142910,0.041379310344402,-0.442857142857183,0.048275862068559,-0.450000000000051,-0.014285714285725,-0.000000000000000,-0.000000000000011,-0.013793103448314,0.000000000000008,0.013793103448314,0.014285714285728,-0.000000000000000,2 +4594,4607,4609,4622,0.034482758620245,-0.435714285714318,0.041379310344402,-0.442857142857183,0.041379310344402,-0.428571428571459,0.048275862068559,-0.435714285714324,-0.014285714285723,0.000000000000000,-0.000000000000008,-0.013793103448314,0.000000000000004,0.013793103448314,0.014285714285726,-0.000000000000000,2 +4595,4608,4610,4623,0.034482758620245,-0.421428571428588,0.041379310344402,-0.428571428571459,0.041379310344402,-0.414285714285722,0.048275862068559,-0.421428571428592,-0.014285714285736,-0.000000000000000,-0.000000000000004,-0.013793103448314,0.000000000000003,0.013793103448314,0.014285714285738,0.000000000000000,2 +4596,4609,4624,9320,0.034482758620245,-0.407142857142860,0.041379310344402,-0.414285714285722,0.048275862068559,-0.407142857142862,0.041379310344402,-0.400000000000000,-0.014285714285720,0.000000000000000,-0.000000000000003,-0.013793103448314,0.014285714285723,0.000000000000000,0.000000000000000,0.013793103448314,2 +683,4597,4612,4625,0.055172413792716,-0.600000000000000,0.048275862068559,-0.592857142857129,0.055172413792716,-0.585714285714257,0.062068965516873,-0.592857142857129,-0.000000000000000,-0.013793103448315,-0.014285714285743,0.000000000000000,-0.000000000000000,0.013793103448315,0.014285714285743,0.000000000000000,2 +4598,4611,4613,4626,0.048275862068559,-0.578571428571392,0.055172413792716,-0.585714285714257,0.055172413792716,-0.571428571428527,0.062068965516873,-0.578571428571392,-0.014285714285731,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000001,0.013793103448315,0.014285714285730,-0.000000000000000,2 +4599,4612,4614,4627,0.048275862068559,-0.564285714285673,0.055172413792716,-0.571428571428527,0.055172413792716,-0.557142857142821,0.062068965516873,-0.564285714285675,-0.014285714285707,-0.000000000000000,-0.000000000000001,-0.013793103448315,0.000000000000004,0.013793103448315,0.014285714285704,-0.000000000000000,2 +4600,4613,4615,4628,0.048275862068559,-0.549999999999966,0.055172413792716,-0.557142857142821,0.055172413792716,-0.542857142857116,0.062068965516873,-0.549999999999971,-0.014285714285707,0.000000000000000,-0.000000000000004,-0.013793103448315,0.000000000000007,0.013793103448315,0.014285714285704,0.000000000000000,2 +4601,4614,4616,4629,0.048275862068559,-0.535714285714260,0.055172413792716,-0.542857142857116,0.055172413792716,-0.528571428571412,0.062068965516873,-0.535714285714268,-0.014285714285705,-0.000000000000000,-0.000000000000007,-0.013793103448315,0.000000000000009,0.013793103448315,0.014285714285702,0.000000000000000,2 +4602,4615,4617,4630,0.048275862068559,-0.521428571428579,0.055172413792716,-0.528571428571412,0.055172413792716,-0.514285714285759,0.062068965516873,-0.521428571428591,-0.014285714285656,0.000000000000000,-0.000000000000009,-0.013793103448315,0.000000000000015,0.013793103448315,0.014285714285651,-0.000000000000000,2 +4603,4616,4618,4631,0.048275862068559,-0.507142857142921,0.055172413792716,-0.514285714285759,0.055172413792716,-0.500000000000100,0.062068965516873,-0.507142857142937,-0.014285714285660,-0.000000000000000,-0.000000000000015,-0.013793103448315,0.000000000000018,0.013793103448315,0.014285714285657,-0.000000000000000,2 +4604,4617,4619,4632,0.048275862068559,-0.492857142857227,0.055172413792716,-0.500000000000100,0.055172413792716,-0.485714285714372,0.062068965516873,-0.492857142857245,-0.014285714285728,-0.000000000000000,-0.000000000000018,-0.013793103448315,0.000000000000017,0.013793103448315,0.014285714285729,0.000000000000000,2 +4605,4618,4620,4633,0.048275862068559,-0.478571428571502,0.055172413792716,-0.485714285714372,0.055172413792716,-0.471428571428648,0.062068965516873,-0.478571428571518,-0.014285714285722,0.000000000000000,-0.000000000000017,-0.013793103448315,0.000000000000014,0.013793103448315,0.014285714285725,0.000000000000000,2 +4606,4619,4621,4634,0.048275862068559,-0.464285714285778,0.055172413792716,-0.471428571428648,0.055172413792716,-0.457142857142920,0.062068965516873,-0.464285714285790,-0.014285714285726,-0.000000000000000,-0.000000000000014,-0.013793103448315,0.000000000000011,0.013793103448315,0.014285714285729,-0.000000000000000,2 +4607,4620,4622,4635,0.048275862068559,-0.450000000000051,0.055172413792716,-0.457142857142920,0.055172413792716,-0.442857142857191,0.062068965516873,-0.450000000000060,-0.014285714285728,0.000000000000000,-0.000000000000011,-0.013793103448315,0.000000000000007,0.013793103448315,0.014285714285731,0.000000000000000,2 +4608,4621,4623,4636,0.048275862068559,-0.435714285714324,0.055172413792716,-0.442857142857191,0.055172413792716,-0.428571428571463,0.062068965516873,-0.435714285714330,-0.014285714285726,0.000000000000000,-0.000000000000007,-0.013793103448315,0.000000000000004,0.013793103448315,0.014285714285729,0.000000000000000,2 +4609,4622,4624,4637,0.048275862068559,-0.421428571428592,0.055172413792716,-0.428571428571463,0.055172413792716,-0.414285714285725,0.062068965516873,-0.421428571428596,-0.014285714285738,-0.000000000000000,-0.000000000000004,-0.013793103448315,0.000000000000003,0.013793103448315,0.014285714285739,0.000000000000000,2 +4610,4623,4638,9321,0.048275862068559,-0.407142857142862,0.055172413792716,-0.414285714285725,0.062068965516873,-0.407142857142863,0.055172413792716,-0.400000000000000,-0.014285714285723,-0.000000000000000,-0.000000000000003,-0.013793103448315,0.014285714285726,-0.000000000000000,0.000000000000000,0.013793103448315,2 +689,4611,4626,4639,0.068965517241032,-0.600000000000000,0.062068965516873,-0.592857142857129,0.068965517241032,-0.585714285714257,0.075862068965190,-0.592857142857128,-0.000000000000000,-0.013793103448317,-0.014285714285743,-0.000000000000000,-0.000000000000000,0.013793103448317,0.014285714285743,0.000000000000000,2 +4612,4625,4627,4640,0.062068965516873,-0.578571428571392,0.068965517241032,-0.585714285714257,0.068965517241032,-0.571428571428528,0.075862068965190,-0.578571428571393,-0.014285714285730,0.000000000000000,0.000000000000000,-0.013793103448317,0.000000000000001,0.013793103448317,0.014285714285728,0.000000000000000,2 +4613,4626,4628,4641,0.062068965516873,-0.564285714285675,0.068965517241032,-0.571428571428528,0.068965517241032,-0.557142857142825,0.075862068965190,-0.564285714285678,-0.014285714285704,0.000000000000000,-0.000000000000001,-0.013793103448317,0.000000000000003,0.013793103448317,0.014285714285702,-0.000000000000000,2 +4614,4627,4629,4642,0.062068965516873,-0.549999999999971,0.068965517241032,-0.557142857142825,0.068965517241032,-0.542857142857122,0.075862068965190,-0.549999999999976,-0.014285714285704,-0.000000000000000,-0.000000000000003,-0.013793103448317,0.000000000000006,0.013793103448317,0.014285714285702,-0.000000000000000,2 +4615,4628,4630,4643,0.062068965516873,-0.535714285714268,0.068965517241032,-0.542857142857122,0.068965517241032,-0.528571428571421,0.075862068965190,-0.535714285714275,-0.014285714285702,-0.000000000000000,-0.000000000000006,-0.013793103448317,0.000000000000009,0.013793103448317,0.014285714285699,0.000000000000000,2 +4616,4629,4631,4644,0.062068965516873,-0.521428571428591,0.068965517241032,-0.528571428571421,0.068965517241032,-0.514285714285773,0.075862068965190,-0.521428571428603,-0.014285714285651,0.000000000000000,-0.000000000000009,-0.013793103448317,0.000000000000015,0.013793103448317,0.014285714285645,0.000000000000000,2 +4617,4630,4632,4645,0.062068965516873,-0.507142857142937,0.068965517241032,-0.514285714285773,0.068965517241032,-0.500000000000118,0.075862068965190,-0.507142857142954,-0.014285714285657,0.000000000000000,-0.000000000000015,-0.013793103448317,0.000000000000019,0.013793103448317,0.014285714285653,0.000000000000000,2 +4618,4631,4633,4646,0.062068965516873,-0.492857142857245,0.068965517241032,-0.500000000000118,0.068965517241032,-0.485714285714389,0.075862068965190,-0.492857142857262,-0.014285714285729,-0.000000000000000,-0.000000000000019,-0.013793103448317,0.000000000000017,0.013793103448317,0.014285714285731,0.000000000000000,2 +4619,4632,4634,4647,0.062068965516873,-0.478571428571518,0.068965517241032,-0.485714285714389,0.068965517241032,-0.471428571428662,0.075862068965190,-0.478571428571533,-0.014285714285725,-0.000000000000000,-0.000000000000017,-0.013793103448317,0.000000000000014,0.013793103448317,0.014285714285728,0.000000000000000,2 +4620,4633,4635,4648,0.062068965516873,-0.464285714285790,0.068965517241032,-0.471428571428662,0.068965517241032,-0.457142857142931,0.075862068965190,-0.464285714285803,-0.014285714285729,0.000000000000000,-0.000000000000014,-0.013793103448317,0.000000000000011,0.013793103448317,0.014285714285732,0.000000000000000,2 +4621,4634,4636,4649,0.062068965516873,-0.450000000000060,0.068965517241032,-0.457142857142931,0.068965517241032,-0.442857142857198,0.075862068965190,-0.450000000000069,-0.014285714285731,-0.000000000000000,-0.000000000000011,-0.013793103448317,0.000000000000007,0.013793103448317,0.014285714285735,0.000000000000000,2 +4622,4635,4637,4650,0.062068965516873,-0.435714285714330,0.068965517241032,-0.442857142857198,0.068965517241032,-0.428571428571467,0.075862068965190,-0.435714285714336,-0.014285714285729,-0.000000000000000,-0.000000000000007,-0.013793103448317,0.000000000000005,0.013793103448317,0.014285714285732,0.000000000000000,2 +4623,4636,4638,4651,0.062068965516873,-0.421428571428596,0.068965517241032,-0.428571428571467,0.068965517241032,-0.414285714285728,0.075862068965190,-0.421428571428599,-0.014285714285739,-0.000000000000000,-0.000000000000005,-0.013793103448317,0.000000000000003,0.013793103448317,0.014285714285741,0.000000000000000,2 +4624,4637,4652,9322,0.062068965516873,-0.407142857142863,0.068965517241032,-0.414285714285728,0.075862068965190,-0.407142857142865,0.068965517241032,-0.400000000000000,-0.014285714285726,0.000000000000000,-0.000000000000003,-0.013793103448317,0.014285714285729,-0.000000000000000,0.000000000000000,0.013793103448317,2 +695,4625,4640,4653,0.082758620689347,-0.600000000000000,0.075862068965190,-0.592857142857128,0.082758620689347,-0.585714285714257,0.089655172413504,-0.592857142857128,-0.000000000000000,-0.013793103448314,-0.014285714285743,-0.000000000000000,0.000000000000000,0.013793103448314,0.014285714285743,-0.000000000000000,2 +4626,4639,4641,4654,0.075862068965190,-0.578571428571393,0.082758620689347,-0.585714285714257,0.082758620689347,-0.571428571428529,0.089655172413504,-0.578571428571393,-0.014285714285728,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000001,0.013793103448314,0.014285714285727,0.000000000000000,2 +4627,4640,4642,4655,0.075862068965190,-0.564285714285678,0.082758620689347,-0.571428571428529,0.082758620689347,-0.557142857142829,0.089655172413504,-0.564285714285680,-0.014285714285702,0.000000000000000,-0.000000000000001,-0.013793103448314,0.000000000000004,0.013793103448314,0.014285714285699,0.000000000000000,2 +4628,4641,4643,4656,0.075862068965190,-0.549999999999976,0.082758620689347,-0.557142857142829,0.082758620689347,-0.542857142857128,0.089655172413504,-0.549999999999981,-0.014285714285702,0.000000000000000,-0.000000000000004,-0.013793103448314,0.000000000000006,0.013793103448314,0.014285714285699,0.000000000000000,2 +4629,4642,4644,4657,0.075862068965190,-0.535714285714275,0.082758620689347,-0.542857142857128,0.082758620689347,-0.528571428571430,0.089655172413504,-0.535714285714283,-0.014285714285699,-0.000000000000000,-0.000000000000006,-0.013793103448314,0.000000000000009,0.013793103448314,0.014285714285697,-0.000000000000000,2 +4630,4643,4645,4658,0.075862068965190,-0.521428571428603,0.082758620689347,-0.528571428571430,0.082758620689347,-0.514285714285788,0.089655172413504,-0.521428571428615,-0.014285714285645,-0.000000000000000,-0.000000000000009,-0.013793103448314,0.000000000000015,0.013793103448314,0.014285714285639,0.000000000000000,2 +4631,4644,4646,4659,0.075862068965190,-0.507142857142954,0.082758620689347,-0.514285714285788,0.082758620689347,-0.500000000000137,0.089655172413504,-0.507142857142970,-0.014285714285653,-0.000000000000000,-0.000000000000015,-0.013793103448314,0.000000000000018,0.013793103448314,0.014285714285649,-0.000000000000000,2 +4632,4645,4647,4660,0.075862068965190,-0.492857142857262,0.082758620689347,-0.500000000000137,0.082758620689347,-0.485714285714405,0.089655172413504,-0.492857142857280,-0.014285714285731,-0.000000000000000,-0.000000000000018,-0.013793103448314,0.000000000000017,0.013793103448314,0.014285714285732,0.000000000000000,2 +4633,4646,4648,4661,0.075862068965190,-0.478571428571533,0.082758620689347,-0.485714285714405,0.082758620689347,-0.471428571428676,0.089655172413504,-0.478571428571548,-0.014285714285728,-0.000000000000000,-0.000000000000017,-0.013793103448314,0.000000000000014,0.013793103448314,0.014285714285731,0.000000000000000,2 +4634,4647,4649,4662,0.075862068965190,-0.464285714285803,0.082758620689347,-0.471428571428676,0.082758620689347,-0.457142857142942,0.089655172413504,-0.464285714285815,-0.014285714285732,-0.000000000000000,-0.000000000000014,-0.013793103448314,0.000000000000011,0.013793103448314,0.014285714285736,0.000000000000000,2 +4635,4648,4650,4663,0.075862068965190,-0.450000000000069,0.082758620689347,-0.457142857142942,0.082758620689347,-0.442857142857206,0.089655172413504,-0.450000000000078,-0.014285714285735,-0.000000000000000,-0.000000000000011,-0.013793103448314,0.000000000000008,0.013793103448314,0.014285714285738,-0.000000000000000,2 +4636,4649,4651,4664,0.075862068965190,-0.435714285714336,0.082758620689347,-0.442857142857206,0.082758620689347,-0.428571428571472,0.089655172413504,-0.435714285714342,-0.014285714285732,-0.000000000000000,-0.000000000000008,-0.013793103448314,0.000000000000004,0.013793103448314,0.014285714285735,0.000000000000000,2 +4637,4650,4652,4665,0.075862068965190,-0.421428571428599,0.082758620689347,-0.428571428571472,0.082758620689347,-0.414285714285731,0.089655172413504,-0.421428571428603,-0.014285714285741,-0.000000000000000,-0.000000000000004,-0.013793103448314,0.000000000000003,0.013793103448314,0.014285714285742,0.000000000000000,2 +4638,4651,4666,9323,0.075862068965190,-0.407142857142865,0.082758620689347,-0.414285714285731,0.089655172413504,-0.407142857142866,0.082758620689347,-0.400000000000000,-0.014285714285729,0.000000000000000,-0.000000000000003,-0.013793103448314,0.014285714285732,-0.000000000000000,0.000000000000000,0.013793103448314,2 +701,4639,4654,4667,0.096551724137659,-0.600000000000000,0.089655172413504,-0.592857142857128,0.096551724137659,-0.585714285714257,0.103448275861814,-0.592857142857128,-0.000000000000000,-0.013793103448309,-0.014285714285743,0.000000000000000,-0.000000000000001,0.013793103448309,0.014285714285744,0.000000000000000,2 +4640,4653,4655,4668,0.089655172413504,-0.578571428571393,0.096551724137659,-0.585714285714257,0.096551724137659,-0.571428571428530,0.103448275861814,-0.578571428571393,-0.014285714285727,-0.000000000000000,0.000000000000001,-0.013793103448309,0.000000000000001,0.013793103448309,0.014285714285726,0.000000000000000,2 +4641,4654,4656,4669,0.089655172413504,-0.564285714285680,0.096551724137659,-0.571428571428530,0.096551724137659,-0.557142857142832,0.103448275861814,-0.564285714285682,-0.014285714285699,-0.000000000000000,-0.000000000000001,-0.013793103448309,0.000000000000004,0.013793103448310,0.014285714285696,-0.000000000000000,2 +4642,4655,4657,4670,0.089655172413504,-0.549999999999981,0.096551724137659,-0.557142857142832,0.096551724137659,-0.542857142857135,0.103448275861814,-0.549999999999986,-0.014285714285699,-0.000000000000000,-0.000000000000004,-0.013793103448310,0.000000000000006,0.013793103448310,0.014285714285696,0.000000000000000,2 +4643,4656,4658,4671,0.089655172413504,-0.535714285714283,0.096551724137659,-0.542857142857135,0.096551724137659,-0.528571428571439,0.103448275861814,-0.535714285714291,-0.014285714285697,0.000000000000000,-0.000000000000006,-0.013793103448310,0.000000000000009,0.013793103448309,0.014285714285695,0.000000000000000,2 +4644,4657,4659,4672,0.089655172413504,-0.521428571428615,0.096551724137659,-0.528571428571439,0.096551724137659,-0.514285714285803,0.103448275861814,-0.521428571428627,-0.014285714285639,-0.000000000000000,-0.000000000000009,-0.013793103448309,0.000000000000015,0.013793103448309,0.014285714285633,0.000000000000000,2 +4645,4658,4660,4673,0.089655172413504,-0.507142857142970,0.096551724137659,-0.514285714285803,0.096551724137659,-0.500000000000155,0.103448275861814,-0.507142857142987,-0.014285714285649,0.000000000000000,-0.000000000000015,-0.013793103448309,0.000000000000019,0.013793103448309,0.014285714285646,0.000000000000000,2 +4646,4659,4661,4674,0.089655172413504,-0.492857142857280,0.096551724137659,-0.500000000000155,0.096551724137659,-0.485714285714422,0.103448275861814,-0.492857142857298,-0.014285714285732,-0.000000000000000,-0.000000000000019,-0.013793103448309,0.000000000000017,0.013793103448309,0.014285714285733,0.000000000000000,2 +4647,4660,4662,4675,0.089655172413504,-0.478571428571548,0.096551724137659,-0.485714285714422,0.096551724137659,-0.471428571428690,0.103448275861814,-0.478571428571564,-0.014285714285731,-0.000000000000000,-0.000000000000017,-0.013793103448309,0.000000000000014,0.013793103448309,0.014285714285734,0.000000000000000,2 +4648,4661,4663,4676,0.089655172413504,-0.464285714285815,0.096551724137659,-0.471428571428690,0.096551724137659,-0.457142857142953,0.103448275861814,-0.464285714285827,-0.014285714285736,-0.000000000000000,-0.000000000000014,-0.013793103448309,0.000000000000011,0.013793103448310,0.014285714285739,0.000000000000000,2 +4649,4662,4664,4677,0.089655172413504,-0.450000000000078,0.096551724137659,-0.457142857142953,0.096551724137659,-0.442857142857213,0.103448275861814,-0.450000000000088,-0.014285714285738,0.000000000000000,-0.000000000000011,-0.013793103448310,0.000000000000008,0.013793103448309,0.014285714285741,0.000000000000000,2 +4650,4663,4665,4678,0.089655172413504,-0.435714285714342,0.096551724137659,-0.442857142857213,0.096551724137659,-0.428571428571476,0.103448275861814,-0.435714285714348,-0.014285714285735,-0.000000000000000,-0.000000000000008,-0.013793103448309,0.000000000000004,0.013793103448309,0.014285714285739,0.000000000000000,2 +4651,4664,4666,4679,0.089655172413504,-0.421428571428603,0.096551724137659,-0.428571428571476,0.096551724137659,-0.414285714285734,0.103448275861814,-0.421428571428607,-0.014285714285742,-0.000000000000000,-0.000000000000004,-0.013793103448309,0.000000000000003,0.013793103448309,0.014285714285743,0.000000000000000,2 +4652,4665,4680,9324,0.089655172413504,-0.407142857142866,0.096551724137659,-0.414285714285734,0.103448275861814,-0.407142857142868,0.096551724137659,-0.400000000000000,-0.014285714285732,0.000000000000000,-0.000000000000003,-0.013793103448309,0.014285714285735,-0.000000000000000,0.000000000000000,0.013793103448309,2 +707,4653,4668,4681,0.110344827585969,-0.600000000000000,0.103448275861814,-0.592857142857128,0.110344827585969,-0.585714285714256,0.117241379310125,-0.592857142857128,-0.000000000000000,-0.013793103448312,-0.014285714285744,-0.000000000000000,-0.000000000000000,0.013793103448312,0.014285714285744,0.000000000000000,2 +4654,4667,4669,4682,0.103448275861814,-0.578571428571393,0.110344827585969,-0.585714285714256,0.110344827585969,-0.571428571428531,0.117241379310125,-0.578571428571394,-0.014285714285726,-0.000000000000000,0.000000000000000,-0.013793103448312,0.000000000000001,0.013793103448312,0.014285714285725,0.000000000000000,2 +4655,4668,4670,4683,0.103448275861814,-0.564285714285682,0.110344827585969,-0.571428571428531,0.110344827585969,-0.557142857142836,0.117241379310125,-0.564285714285685,-0.014285714285696,0.000000000000000,-0.000000000000001,-0.013793103448312,0.000000000000004,0.013793103448312,0.014285714285693,0.000000000000000,2 +4656,4669,4671,4684,0.103448275861814,-0.549999999999986,0.110344827585969,-0.557142857142836,0.110344827585969,-0.542857142857141,0.117241379310125,-0.549999999999991,-0.014285714285696,-0.000000000000000,-0.000000000000004,-0.013793103448312,0.000000000000006,0.013793103448312,0.014285714285694,0.000000000000000,2 +4657,4670,4672,4685,0.103448275861814,-0.535714285714291,0.110344827585969,-0.542857142857141,0.110344827585969,-0.528571428571448,0.117241379310125,-0.535714285714298,-0.014285714285695,-0.000000000000000,-0.000000000000006,-0.013793103448312,0.000000000000009,0.013793103448312,0.014285714285692,0.000000000000000,2 +4658,4671,4673,4686,0.103448275861814,-0.521428571428627,0.110344827585969,-0.528571428571448,0.110344827585969,-0.514285714285817,0.117241379310125,-0.521428571428638,-0.014285714285633,-0.000000000000000,-0.000000000000009,-0.013793103448312,0.000000000000015,0.013793103448312,0.014285714285628,0.000000000000000,2 +4659,4672,4674,4687,0.103448275861814,-0.507142857142987,0.110344827585969,-0.514285714285817,0.110344827585969,-0.500000000000173,0.117241379310125,-0.507142857143003,-0.014285714285646,-0.000000000000000,-0.000000000000015,-0.013793103448312,0.000000000000018,0.013793103448312,0.014285714285642,0.000000000000000,2 +4660,4673,4675,4688,0.103448275861814,-0.492857142857298,0.110344827585969,-0.500000000000173,0.110344827585969,-0.485714285714439,0.117241379310125,-0.492857142857315,-0.014285714285733,-0.000000000000000,-0.000000000000018,-0.013793103448312,0.000000000000017,0.013793103448312,0.014285714285735,0.000000000000000,2 +4661,4674,4676,4689,0.103448275861814,-0.478571428571564,0.110344827585969,-0.485714285714439,0.110344827585969,-0.471428571428704,0.117241379310125,-0.478571428571579,-0.014285714285734,-0.000000000000000,-0.000000000000017,-0.013793103448312,0.000000000000014,0.013793103448312,0.014285714285737,0.000000000000000,2 +4662,4675,4677,4690,0.103448275861814,-0.464285714285827,0.110344827585969,-0.471428571428704,0.110344827585969,-0.457142857142963,0.117241379310125,-0.464285714285840,-0.014285714285739,-0.000000000000000,-0.000000000000014,-0.013793103448312,0.000000000000011,0.013793103448312,0.014285714285742,0.000000000000000,2 +4663,4676,4678,4691,0.103448275861814,-0.450000000000088,0.110344827585969,-0.457142857142963,0.110344827585969,-0.442857142857221,0.117241379310125,-0.450000000000097,-0.014285714285741,-0.000000000000000,-0.000000000000011,-0.013793103448312,0.000000000000007,0.013793103448312,0.014285714285744,0.000000000000000,2 +4664,4677,4679,4692,0.103448275861814,-0.435714285714348,0.110344827585969,-0.442857142857221,0.110344827585969,-0.428571428571480,0.117241379310125,-0.435714285714354,-0.014285714285739,-0.000000000000000,-0.000000000000007,-0.013793103448312,0.000000000000004,0.013793103448312,0.014285714285742,0.000000000000000,2 +4665,4678,4680,4693,0.103448275861814,-0.421428571428607,0.110344827585969,-0.428571428571480,0.110344827585969,-0.414285714285737,0.117241379310125,-0.421428571428610,-0.014285714285743,-0.000000000000000,-0.000000000000004,-0.013793103448312,0.000000000000003,0.013793103448312,0.014285714285744,0.000000000000000,2 +4666,4679,4694,9325,0.103448275861814,-0.407142857142868,0.110344827585969,-0.414285714285737,0.117241379310125,-0.407142857142869,0.110344827585969,-0.400000000000000,-0.014285714285735,0.000000000000000,-0.000000000000003,-0.013793103448312,0.014285714285738,-0.000000000000000,0.000000000000000,0.013793103448312,2 +713,4667,4682,4695,0.124137931034281,-0.600000000000000,0.117241379310125,-0.592857142857128,0.124137931034281,-0.585714285714256,0.131034482758436,-0.592857142857128,-0.000000000000000,-0.013793103448311,-0.014285714285744,-0.000000000000000,-0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 +4668,4681,4683,4696,0.117241379310125,-0.578571428571394,0.124137931034281,-0.585714285714256,0.124137931034281,-0.571428571428532,0.131034482758436,-0.578571428571394,-0.014285714285725,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000001,0.013793103448311,0.014285714285724,0.000000000000000,2 +4669,4682,4684,4697,0.117241379310125,-0.564285714285685,0.124137931034281,-0.571428571428532,0.124137931034281,-0.557142857142840,0.131034482758436,-0.564285714285687,-0.014285714285693,-0.000000000000000,-0.000000000000001,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285691,0.000000000000000,2 +4670,4683,4685,4698,0.117241379310125,-0.549999999999991,0.124137931034281,-0.557142857142840,0.124137931034281,-0.542857142857147,0.131034482758436,-0.549999999999996,-0.014285714285694,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000006,0.013793103448311,0.014285714285691,0.000000000000000,2 +4671,4684,4686,4699,0.117241379310125,-0.535714285714298,0.124137931034281,-0.542857142857147,0.124137931034281,-0.528571428571457,0.131034482758436,-0.535714285714306,-0.014285714285692,-0.000000000000000,-0.000000000000006,-0.013793103448311,0.000000000000009,0.013793103448311,0.014285714285690,0.000000000000000,2 +4672,4685,4687,4700,0.117241379310125,-0.521428571428638,0.124137931034281,-0.528571428571457,0.124137931034281,-0.514285714285832,0.131034482758436,-0.521428571428650,-0.014285714285628,-0.000000000000000,-0.000000000000009,-0.013793103448311,0.000000000000015,0.013793103448311,0.014285714285622,0.000000000000000,2 +4673,4686,4688,4701,0.117241379310125,-0.507142857143003,0.124137931034281,-0.514285714285832,0.124137931034281,-0.500000000000192,0.131034482758436,-0.507142857143020,-0.014285714285642,-0.000000000000000,-0.000000000000015,-0.013793103448311,0.000000000000018,0.013793103448311,0.014285714285638,0.000000000000000,2 +4674,4687,4689,4702,0.117241379310125,-0.492857142857315,0.124137931034281,-0.500000000000192,0.124137931034281,-0.485714285714456,0.131034482758436,-0.492857142857333,-0.014285714285735,-0.000000000000000,-0.000000000000018,-0.013793103448311,0.000000000000017,0.013793103448311,0.014285714285736,0.000000000000000,2 +4675,4688,4690,4703,0.117241379310125,-0.478571428571579,0.124137931034281,-0.485714285714456,0.124137931034281,-0.471428571428718,0.131034482758436,-0.478571428571595,-0.014285714285737,-0.000000000000000,-0.000000000000017,-0.013793103448311,0.000000000000014,0.013793103448311,0.014285714285740,0.000000000000000,2 +4676,4689,4691,4704,0.117241379310125,-0.464285714285840,0.124137931034281,-0.471428571428718,0.124137931034281,-0.457142857142974,0.131034482758436,-0.464285714285852,-0.014285714285742,-0.000000000000000,-0.000000000000014,-0.013793103448311,0.000000000000011,0.013793103448311,0.014285714285745,0.000000000000000,2 +4677,4690,4692,4705,0.117241379310125,-0.450000000000097,0.124137931034281,-0.457142857142974,0.124137931034281,-0.442857142857228,0.131034482758436,-0.450000000000106,-0.014285714285744,-0.000000000000000,-0.000000000000011,-0.013793103448311,0.000000000000007,0.013793103448311,0.014285714285747,0.000000000000000,2 +4678,4691,4693,4706,0.117241379310125,-0.435714285714354,0.124137931034281,-0.442857142857228,0.124137931034281,-0.428571428571485,0.131034482758436,-0.435714285714360,-0.014285714285742,-0.000000000000000,-0.000000000000007,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285745,0.000000000000000,2 +4679,4692,4694,4707,0.117241379310125,-0.421428571428610,0.124137931034281,-0.428571428571485,0.124137931034281,-0.414285714285740,0.131034482758436,-0.421428571428614,-0.014285714285744,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000003,0.013793103448311,0.014285714285746,0.000000000000000,2 +4680,4693,4708,9326,0.117241379310125,-0.407142857142869,0.124137931034281,-0.414285714285740,0.131034482758436,-0.407142857142871,0.124137931034281,-0.400000000000000,-0.014285714285738,0.000000000000000,-0.000000000000003,-0.013793103448311,0.014285714285741,-0.000000000000000,0.000000000000000,0.013793103448311,2 +719,4681,4696,4709,0.137931034482591,-0.600000000000000,0.131034482758436,-0.592857142857128,0.137931034482591,-0.585714285714256,0.144827586206747,-0.592857142857128,-0.000000000000000,-0.013793103448311,-0.014285714285744,-0.000000000000000,-0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 +4682,4695,4697,4710,0.131034482758436,-0.578571428571394,0.137931034482591,-0.585714285714256,0.137931034482591,-0.571428571428533,0.144827586206747,-0.578571428571394,-0.014285714285724,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000001,0.013793103448311,0.014285714285723,0.000000000000000,2 +4683,4696,4698,4711,0.131034482758436,-0.564285714285687,0.137931034482591,-0.571428571428533,0.137931034482591,-0.557142857142843,0.144827586206747,-0.564285714285689,-0.014285714285691,-0.000000000000000,-0.000000000000001,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285688,0.000000000000000,2 +4684,4697,4699,4712,0.131034482758436,-0.549999999999996,0.137931034482591,-0.557142857142843,0.137931034482591,-0.542857142857154,0.144827586206747,-0.550000000000001,-0.014285714285691,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000007,0.013793103448311,0.014285714285688,0.000000000000000,2 +4685,4698,4700,4713,0.131034482758436,-0.535714285714306,0.137931034482591,-0.542857142857154,0.137931034482591,-0.528571428571466,0.144827586206747,-0.535714285714314,-0.014285714285690,-0.000000000000000,-0.000000000000007,-0.013793103448311,0.000000000000009,0.013793103448311,0.014285714285687,0.000000000000000,2 +4686,4699,4701,4714,0.131034482758436,-0.521428571428650,0.137931034482591,-0.528571428571466,0.137931034482591,-0.514285714285847,0.144827586206747,-0.521428571428662,-0.014285714285622,-0.000000000000000,-0.000000000000009,-0.013793103448311,0.000000000000015,0.013793103448311,0.014285714285616,0.000000000000000,2 +4687,4700,4702,4715,0.131034482758436,-0.507142857143020,0.137931034482591,-0.514285714285847,0.137931034482591,-0.500000000000210,0.144827586206747,-0.507142857143037,-0.014285714285638,-0.000000000000000,-0.000000000000015,-0.013793103448311,0.000000000000018,0.013793103448311,0.014285714285635,0.000000000000000,2 +4688,4701,4703,4716,0.131034482758436,-0.492857142857333,0.137931034482591,-0.500000000000210,0.137931034482591,-0.485714285714473,0.144827586206747,-0.492857142857350,-0.014285714285736,-0.000000000000000,-0.000000000000018,-0.013793103448311,0.000000000000017,0.013793103448311,0.014285714285738,0.000000000000000,2 +4689,4702,4704,4717,0.131034482758436,-0.478571428571595,0.137931034482591,-0.485714285714473,0.137931034482591,-0.471428571428732,0.144827586206747,-0.478571428571610,-0.014285714285740,-0.000000000000000,-0.000000000000017,-0.013793103448311,0.000000000000014,0.013793103448311,0.014285714285743,0.000000000000000,2 +4690,4703,4705,4718,0.131034482758436,-0.464285714285852,0.137931034482591,-0.471428571428732,0.137931034482591,-0.457142857142985,0.144827586206747,-0.464285714285865,-0.014285714285745,-0.000000000000000,-0.000000000000014,-0.013793103448311,0.000000000000011,0.013793103448311,0.014285714285748,0.000000000000000,2 +4691,4704,4706,4719,0.131034482758436,-0.450000000000106,0.137931034482591,-0.457142857142985,0.137931034482591,-0.442857142857236,0.144827586206747,-0.450000000000115,-0.014285714285747,-0.000000000000000,-0.000000000000011,-0.013793103448311,0.000000000000008,0.013793103448311,0.014285714285751,0.000000000000000,2 +4692,4705,4707,4720,0.131034482758436,-0.435714285714360,0.137931034482591,-0.442857142857236,0.137931034482591,-0.428571428571489,0.144827586206747,-0.435714285714366,-0.014285714285745,-0.000000000000000,-0.000000000000008,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285748,0.000000000000000,2 +4693,4706,4708,4721,0.131034482758436,-0.421428571428614,0.137931034482591,-0.428571428571489,0.137931034482591,-0.414285714285743,0.144827586206747,-0.421428571428618,-0.014285714285746,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000003,0.013793103448311,0.014285714285748,0.000000000000000,2 +4694,4707,4722,9327,0.131034482758436,-0.407142857142871,0.137931034482591,-0.414285714285743,0.144827586206747,-0.407142857142872,0.137931034482591,-0.400000000000000,-0.014285714285741,0.000000000000000,-0.000000000000003,-0.013793103448311,0.014285714285744,-0.000000000000000,0.000000000000000,0.013793103448311,2 +725,4695,4710,4723,0.151724137930902,-0.600000000000000,0.144827586206747,-0.592857142857128,0.151724137930902,-0.585714285714256,0.158620689655057,-0.592857142857128,-0.000000000000000,-0.013793103448311,-0.014285714285744,-0.000000000000000,-0.000000000000000,0.013793103448311,0.014285714285745,0.000000000000000,2 +4696,4709,4711,4724,0.144827586206747,-0.578571428571394,0.151724137930902,-0.585714285714256,0.151724137930902,-0.571428571428534,0.158620689655057,-0.578571428571395,-0.014285714285723,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000001,0.013793103448311,0.014285714285721,0.000000000000000,2 +4697,4710,4712,4725,0.144827586206747,-0.564285714285689,0.151724137930902,-0.571428571428534,0.151724137930902,-0.557142857142847,0.158620689655057,-0.564285714285692,-0.014285714285688,-0.000000000000000,-0.000000000000001,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285685,0.000000000000000,2 +4698,4711,4713,4726,0.144827586206747,-0.550000000000001,0.151724137930902,-0.557142857142847,0.151724137930902,-0.542857142857160,0.158620689655057,-0.550000000000006,-0.014285714285688,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000006,0.013793103448311,0.014285714285685,0.000000000000000,2 +4699,4712,4714,4727,0.144827586206747,-0.535714285714314,0.151724137930902,-0.542857142857160,0.151724137930902,-0.528571428571474,0.158620689655057,-0.535714285714321,-0.014285714285687,-0.000000000000000,-0.000000000000006,-0.013793103448311,0.000000000000009,0.013793103448311,0.014285714285685,0.000000000000000,2 +4700,4713,4715,4728,0.144827586206747,-0.521428571428662,0.151724137930902,-0.528571428571474,0.151724137930902,-0.514285714285861,0.158620689655057,-0.521428571428673,-0.014285714285616,-0.000000000000000,-0.000000000000009,-0.013793103448311,0.000000000000014,0.013793103448311,0.014285714285611,0.000000000000000,2 +4701,4714,4716,4729,0.144827586206747,-0.507142857143037,0.151724137930902,-0.514285714285861,0.151724137930902,-0.500000000000228,0.158620689655057,-0.507142857143053,-0.014285714285635,-0.000000000000000,-0.000000000000014,-0.013793103448311,0.000000000000018,0.013793103448311,0.014285714285631,0.000000000000000,2 +4702,4715,4717,4730,0.144827586206747,-0.492857142857350,0.151724137930902,-0.500000000000228,0.151724137930902,-0.485714285714490,0.158620689655057,-0.492857142857368,-0.014285714285738,-0.000000000000000,-0.000000000000018,-0.013793103448311,0.000000000000017,0.013793103448311,0.014285714285739,0.000000000000000,2 +4703,4716,4718,4731,0.144827586206747,-0.478571428571610,0.151724137930902,-0.485714285714490,0.151724137930902,-0.471428571428746,0.158620689655057,-0.478571428571625,-0.014285714285743,-0.000000000000000,-0.000000000000017,-0.013793103448311,0.000000000000014,0.013793103448311,0.014285714285746,0.000000000000000,2 +4704,4717,4719,4732,0.144827586206747,-0.464285714285865,0.151724137930902,-0.471428571428746,0.151724137930902,-0.457142857142996,0.158620689655057,-0.464285714285877,-0.014285714285748,-0.000000000000000,-0.000000000000014,-0.013793103448311,0.000000000000011,0.013793103448311,0.014285714285751,0.000000000000000,2 +4705,4718,4720,4733,0.144827586206747,-0.450000000000115,0.151724137930902,-0.457142857142996,0.151724137930902,-0.442857142857244,0.158620689655057,-0.450000000000124,-0.014285714285751,-0.000000000000000,-0.000000000000011,-0.013793103448311,0.000000000000008,0.013793103448311,0.014285714285754,0.000000000000000,2 +4706,4719,4721,4734,0.144827586206747,-0.435714285714366,0.151724137930902,-0.442857142857244,0.151724137930902,-0.428571428571494,0.158620689655057,-0.435714285714372,-0.014285714285748,-0.000000000000000,-0.000000000000008,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285751,0.000000000000000,2 +4707,4720,4722,4735,0.144827586206747,-0.421428571428618,0.151724137930902,-0.428571428571494,0.151724137930902,-0.414285714285746,0.158620689655057,-0.421428571428621,-0.014285714285748,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000003,0.013793103448311,0.014285714285749,0.000000000000000,2 +4708,4721,4736,9328,0.144827586206747,-0.407142857142872,0.151724137930902,-0.414285714285746,0.158620689655057,-0.407142857142874,0.151724137930902,-0.400000000000000,-0.014285714285744,0.000000000000000,-0.000000000000003,-0.013793103448311,0.014285714285747,-0.000000000000000,0.000000000000000,0.013793103448311,2 +731,4709,4724,4737,0.165517241379213,-0.600000000000000,0.158620689655057,-0.592857142857128,0.165517241379213,-0.585714285714255,0.172413793103368,-0.592857142857128,-0.000000000000000,-0.013793103448311,-0.014285714285745,-0.000000000000000,-0.000000000000000,0.013793103448311,0.014285714285745,0.000000000000000,2 +4710,4723,4725,4738,0.158620689655057,-0.578571428571395,0.165517241379213,-0.585714285714255,0.165517241379213,-0.571428571428535,0.172413793103368,-0.578571428571395,-0.014285714285721,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000001,0.013793103448311,0.014285714285720,0.000000000000000,2 +4711,4724,4726,4739,0.158620689655057,-0.564285714285692,0.165517241379213,-0.571428571428535,0.165517241379213,-0.557142857142851,0.172413793103368,-0.564285714285694,-0.014285714285685,-0.000000000000000,-0.000000000000001,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285683,0.000000000000000,2 +4712,4725,4727,4740,0.158620689655057,-0.550000000000006,0.165517241379213,-0.557142857142851,0.165517241379213,-0.542857142857167,0.172413793103368,-0.550000000000011,-0.014285714285685,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000006,0.013793103448311,0.014285714285683,0.000000000000000,2 +4713,4726,4728,4741,0.158620689655057,-0.535714285714321,0.165517241379213,-0.542857142857167,0.165517241379213,-0.528571428571483,0.172413793103368,-0.535714285714329,-0.014285714285685,-0.000000000000000,-0.000000000000006,-0.013793103448311,0.000000000000009,0.013793103448311,0.014285714285682,0.000000000000000,2 +4714,4727,4729,4742,0.158620689655057,-0.521428571428673,0.165517241379213,-0.528571428571483,0.165517241379213,-0.514285714285876,0.172413793103368,-0.521428571428685,-0.014285714285611,-0.000000000000000,-0.000000000000009,-0.013793103448311,0.000000000000015,0.013793103448311,0.014285714285605,-0.000000000000000,2 +4715,4728,4730,4743,0.158620689655057,-0.507142857143053,0.165517241379213,-0.514285714285876,0.165517241379213,-0.500000000000247,0.172413793103368,-0.507142857143069,-0.014285714285631,-0.000000000000000,-0.000000000000015,-0.013793103448311,0.000000000000018,0.013793103448311,0.014285714285627,0.000000000000000,2 +4716,4729,4731,4744,0.158620689655057,-0.492857142857368,0.165517241379213,-0.500000000000247,0.165517241379213,-0.485714285714507,0.172413793103368,-0.492857142857385,-0.014285714285739,-0.000000000000000,-0.000000000000018,-0.013793103448311,0.000000000000017,0.013793103448311,0.014285714285741,0.000000000000000,2 +4717,4730,4732,4745,0.158620689655057,-0.478571428571625,0.165517241379213,-0.485714285714507,0.165517241379213,-0.471428571428759,0.172413793103368,-0.478571428571641,-0.014285714285746,-0.000000000000000,-0.000000000000017,-0.013793103448311,0.000000000000014,0.013793103448311,0.014285714285749,0.000000000000000,2 +4718,4731,4733,4746,0.158620689655057,-0.464285714285877,0.165517241379213,-0.471428571428759,0.165517241379213,-0.457142857143007,0.172413793103368,-0.464285714285889,-0.014285714285751,-0.000000000000000,-0.000000000000014,-0.013793103448311,0.000000000000011,0.013793103448311,0.014285714285754,-0.000000000000000,2 +4719,4732,4734,4747,0.158620689655057,-0.450000000000124,0.165517241379213,-0.457142857143007,0.165517241379213,-0.442857142857251,0.172413793103368,-0.450000000000133,-0.014285714285754,-0.000000000000000,-0.000000000000011,-0.013793103448311,0.000000000000007,0.013793103448311,0.014285714285757,0.000000000000000,2 +4720,4733,4735,4748,0.158620689655057,-0.435714285714372,0.165517241379213,-0.442857142857251,0.165517241379213,-0.428571428571498,0.172413793103368,-0.435714285714377,-0.014285714285751,-0.000000000000000,-0.000000000000007,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285754,0.000000000000000,2 +4721,4734,4736,4749,0.158620689655057,-0.421428571428621,0.165517241379213,-0.428571428571498,0.165517241379213,-0.414285714285749,0.172413793103368,-0.421428571428625,-0.014285714285749,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000003,0.013793103448311,0.014285714285750,0.000000000000000,2 +4722,4735,4750,9329,0.158620689655057,-0.407142857142874,0.165517241379213,-0.414285714285749,0.172413793103368,-0.407142857142875,0.165517241379213,-0.400000000000000,-0.014285714285747,0.000000000000000,-0.000000000000003,-0.013793103448311,0.014285714285750,-0.000000000000000,0.000000000000000,0.013793103448311,2 +737,4723,4738,4751,0.179310344827525,-0.600000000000000,0.172413793103368,-0.592857142857128,0.179310344827525,-0.585714285714255,0.186206896551683,-0.592857142857127,-0.000000000000000,-0.013793103448315,-0.014285714285745,-0.000000000000000,-0.000000000000000,0.013793103448315,0.014285714285745,0.000000000000000,2 +4724,4737,4739,4752,0.172413793103368,-0.578571428571395,0.179310344827525,-0.585714285714255,0.179310344827525,-0.571428571428536,0.186206896551683,-0.578571428571395,-0.014285714285720,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000001,0.013793103448315,0.014285714285719,0.000000000000000,2 +4725,4738,4740,4753,0.172413793103368,-0.564285714285694,0.179310344827525,-0.571428571428536,0.179310344827525,-0.557142857142854,0.186206896551683,-0.564285714285696,-0.014285714285683,-0.000000000000000,-0.000000000000001,-0.013793103448315,0.000000000000004,0.013793103448315,0.014285714285680,0.000000000000000,2 +4726,4739,4741,4754,0.172413793103368,-0.550000000000011,0.179310344827525,-0.557142857142854,0.179310344827525,-0.542857142857173,0.186206896551683,-0.550000000000016,-0.014285714285683,-0.000000000000000,-0.000000000000004,-0.013793103448315,0.000000000000006,0.013793103448315,0.014285714285680,0.000000000000000,2 +4727,4740,4742,4755,0.172413793103368,-0.535714285714329,0.179310344827525,-0.542857142857173,0.179310344827525,-0.528571428571492,0.186206896551683,-0.535714285714337,-0.014285714285682,-0.000000000000000,-0.000000000000006,-0.013793103448315,0.000000000000009,0.013793103448315,0.014285714285680,0.000000000000000,2 +4728,4741,4743,4756,0.172413793103368,-0.521428571428685,0.179310344827525,-0.528571428571492,0.179310344827525,-0.514285714285890,0.186206896551683,-0.521428571428697,-0.014285714285605,0.000000000000000,-0.000000000000009,-0.013793103448315,0.000000000000015,0.013793103448315,0.014285714285599,0.000000000000000,2 +4729,4742,4744,4757,0.172413793103368,-0.507142857143069,0.179310344827525,-0.514285714285890,0.179310344827525,-0.500000000000265,0.186206896551683,-0.507142857143086,-0.014285714285627,-0.000000000000000,-0.000000000000015,-0.013793103448315,0.000000000000018,0.013793103448315,0.014285714285623,0.000000000000000,2 +4730,4743,4745,4758,0.172413793103368,-0.492857142857385,0.179310344827525,-0.500000000000265,0.179310344827525,-0.485714285714524,0.186206896551683,-0.492857142857403,-0.014285714285741,-0.000000000000000,-0.000000000000018,-0.013793103448315,0.000000000000017,0.013793103448315,0.014285714285742,0.000000000000000,2 +4731,4744,4746,4759,0.172413793103368,-0.478571428571641,0.179310344827525,-0.485714285714524,0.179310344827525,-0.471428571428773,0.186206896551683,-0.478571428571656,-0.014285714285749,-0.000000000000000,-0.000000000000017,-0.013793103448315,0.000000000000014,0.013793103448315,0.014285714285752,0.000000000000000,2 +4732,4745,4747,4760,0.172413793103368,-0.464285714285889,0.179310344827525,-0.471428571428773,0.179310344827525,-0.457142857143018,0.186206896551683,-0.464285714285902,-0.014285714285754,0.000000000000000,-0.000000000000014,-0.013793103448315,0.000000000000011,0.013793103448315,0.014285714285757,0.000000000000000,2 +4733,4746,4748,4761,0.172413793103368,-0.450000000000133,0.179310344827525,-0.457142857143018,0.179310344827525,-0.442857142857259,0.186206896551683,-0.450000000000143,-0.014285714285757,-0.000000000000000,-0.000000000000011,-0.013793103448315,0.000000000000008,0.013793103448315,0.014285714285760,0.000000000000000,2 +4734,4747,4749,4762,0.172413793103368,-0.435714285714377,0.179310344827525,-0.442857142857259,0.179310344827525,-0.428571428571502,0.186206896551683,-0.435714285714384,-0.014285714285754,-0.000000000000000,-0.000000000000008,-0.013793103448315,0.000000000000004,0.013793103448315,0.014285714285758,0.000000000000000,2 +4735,4748,4750,4763,0.172413793103368,-0.421428571428625,0.179310344827525,-0.428571428571502,0.179310344827525,-0.414285714285752,0.186206896551683,-0.421428571428629,-0.014285714285750,-0.000000000000000,-0.000000000000004,-0.013793103448315,0.000000000000003,0.013793103448315,0.014285714285752,0.000000000000000,2 +4736,4749,4764,9330,0.172413793103368,-0.407142857142875,0.179310344827525,-0.414285714285752,0.186206896551683,-0.407142857142877,0.179310344827525,-0.400000000000000,-0.014285714285750,0.000000000000000,-0.000000000000003,-0.013793103448315,0.014285714285753,-0.000000000000000,0.000000000000000,0.013793103448315,2 +743,4737,4752,4765,0.193103448275841,-0.600000000000000,0.186206896551683,-0.592857142857127,0.193103448275841,-0.585714285714255,0.200000000000000,-0.592857142857127,0.000000000000000,-0.013793103448317,-0.014285714285745,-0.000000000000000,-0.000000000000000,0.013793103448317,0.014285714285745,0.000000000000000,2 +4738,4751,4753,4766,0.186206896551683,-0.578571428571395,0.193103448275841,-0.585714285714255,0.193103448275841,-0.571428571428537,0.200000000000000,-0.578571428571396,-0.014285714285719,-0.000000000000000,0.000000000000000,-0.013793103448317,0.000000000000001,0.013793103448317,0.014285714285717,0.000000000000000,2 +4739,4752,4754,4767,0.186206896551683,-0.564285714285696,0.193103448275841,-0.571428571428537,0.193103448275841,-0.557142857142858,0.200000000000000,-0.564285714285699,-0.014285714285680,-0.000000000000000,-0.000000000000001,-0.013793103448317,0.000000000000004,0.013793103448317,0.014285714285677,0.000000000000000,2 +4740,4753,4755,4768,0.186206896551683,-0.550000000000016,0.193103448275841,-0.557142857142858,0.193103448275841,-0.542857142857180,0.200000000000000,-0.550000000000022,-0.014285714285680,-0.000000000000000,-0.000000000000004,-0.013793103448317,0.000000000000007,0.013793103448317,0.014285714285677,0.000000000000000,2 +4741,4754,4756,4769,0.186206896551683,-0.535714285714337,0.193103448275841,-0.542857142857180,0.193103448275841,-0.528571428571501,0.200000000000000,-0.535714285714345,-0.014285714285680,-0.000000000000000,-0.000000000000007,-0.013793103448317,0.000000000000009,0.013793103448317,0.014285714285677,0.000000000000000,2 +4742,4755,4757,4770,0.186206896551683,-0.521428571428697,0.193103448275841,-0.528571428571501,0.193103448275841,-0.514285714285905,0.200000000000000,-0.521428571428709,-0.014285714285599,-0.000000000000000,-0.000000000000009,-0.013793103448317,0.000000000000015,0.013793103448317,0.014285714285593,0.000000000000000,2 +4743,4756,4758,4771,0.186206896551683,-0.507142857143086,0.193103448275841,-0.514285714285905,0.193103448275841,-0.500000000000283,0.200000000000000,-0.507142857143103,-0.014285714285623,-0.000000000000000,-0.000000000000015,-0.013793103448317,0.000000000000018,0.013793103448317,0.014285714285620,0.000000000000000,2 +4744,4757,4759,4772,0.186206896551683,-0.492857142857403,0.193103448275841,-0.500000000000283,0.193103448275841,-0.485714285714540,0.200000000000000,-0.492857142857421,-0.014285714285742,-0.000000000000000,-0.000000000000018,-0.013793103448317,0.000000000000017,0.013793103448317,0.014285714285744,0.000000000000000,2 +4745,4758,4760,4773,0.186206896551683,-0.478571428571656,0.193103448275841,-0.485714285714540,0.193103448275841,-0.471428571428787,0.200000000000000,-0.478571428571672,-0.014285714285752,-0.000000000000000,-0.000000000000017,-0.013793103448317,0.000000000000014,0.013793103448317,0.014285714285754,0.000000000000000,2 +4746,4759,4761,4774,0.186206896551683,-0.464285714285902,0.193103448275841,-0.471428571428787,0.193103448275841,-0.457142857143028,0.200000000000000,-0.464285714285914,-0.014285714285757,-0.000000000000000,-0.000000000000014,-0.013793103448317,0.000000000000011,0.013793103448317,0.014285714285761,0.000000000000000,2 +4747,4760,4762,4775,0.186206896551683,-0.450000000000143,0.193103448275841,-0.457142857143028,0.193103448275841,-0.442857142857266,0.200000000000000,-0.450000000000152,-0.014285714285760,-0.000000000000000,-0.000000000000011,-0.013793103448317,0.000000000000007,0.013793103448317,0.014285714285764,0.000000000000000,2 +4748,4761,4763,4776,0.186206896551683,-0.435714285714384,0.193103448275841,-0.442857142857266,0.193103448275841,-0.428571428571507,0.200000000000000,-0.435714285714389,-0.014285714285758,-0.000000000000000,-0.000000000000007,-0.013793103448317,0.000000000000004,0.013793103448317,0.014285714285761,0.000000000000000,2 +4749,4762,4764,4777,0.186206896551683,-0.421428571428629,0.193103448275841,-0.428571428571507,0.193103448275841,-0.414285714285755,0.200000000000000,-0.421428571428633,-0.014285714285752,-0.000000000000000,-0.000000000000004,-0.013793103448317,0.000000000000003,0.013793103448317,0.014285714285753,0.000000000000000,2 +4750,4763,4778,9331,0.186206896551683,-0.407142857142877,0.193103448275841,-0.414285714285755,0.200000000000000,-0.407142857142878,0.193103448275841,-0.400000000000000,-0.014285714285753,0.000000000000000,-0.000000000000003,-0.013793103448317,0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448317,2 +749,4751,4766,4779,0.206896551724127,-0.600000000000000,0.200000000000000,-0.592857142857127,0.206896551724127,-0.585714285714255,0.213793103448254,-0.592857142857127,-0.000000000000000,-0.013793103448254,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448254,0.014285714285745,-0.000000000000000,2 +4752,4765,4767,4780,0.200000000000000,-0.578571428571396,0.206896551724127,-0.585714285714255,0.206896551724127,-0.571428571428537,0.213793103448254,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285717,0.000000000000000,2 +4753,4766,4768,4781,0.200000000000000,-0.564285714285699,0.206896551724127,-0.571428571428537,0.206896551724127,-0.557142857142860,0.213793103448254,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 +4754,4767,4769,4782,0.200000000000000,-0.550000000000022,0.206896551724127,-0.557142857142860,0.206896551724127,-0.542857142857183,0.213793103448254,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 +4755,4768,4770,4783,0.200000000000000,-0.535714285714345,0.206896551724127,-0.542857142857183,0.206896551724127,-0.528571428571506,0.213793103448254,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 +4756,4769,4771,4784,0.200000000000000,-0.521428571428709,0.206896551724127,-0.528571428571506,0.206896551724127,-0.514285714285913,0.213793103448254,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285593,0.000000000000000,2 +4757,4770,4772,4785,0.200000000000000,-0.507142857143103,0.206896551724127,-0.514285714285913,0.206896551724127,-0.500000000000293,0.213793103448254,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285620,0.000000000000000,2 +4758,4771,4773,4786,0.200000000000000,-0.492857142857421,0.206896551724127,-0.500000000000293,0.206896551724127,-0.485714285714549,0.213793103448254,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285744,-0.000000000000000,2 +4759,4772,4774,4787,0.200000000000000,-0.478571428571672,0.206896551724127,-0.485714285714549,0.206896551724127,-0.471428571428794,0.213793103448254,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285755,0.000000000000000,2 +4760,4773,4775,4788,0.200000000000000,-0.464285714285914,0.206896551724127,-0.471428571428794,0.206896551724127,-0.457142857143034,0.213793103448254,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 +4761,4774,4776,4789,0.200000000000000,-0.450000000000152,0.206896551724127,-0.457142857143034,0.206896551724127,-0.442857142857270,0.213793103448254,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285764,0.000000000000000,2 +4762,4775,4777,4790,0.200000000000000,-0.435714285714389,0.206896551724127,-0.442857142857270,0.206896551724127,-0.428571428571509,0.213793103448254,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 +4763,4776,4778,4791,0.200000000000000,-0.421428571428633,0.206896551724127,-0.428571428571509,0.206896551724127,-0.414285714285756,0.213793103448254,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285753,0.000000000000000,2 +4764,4777,4792,5171,0.200000000000000,-0.407142857142878,0.206896551724127,-0.414285714285756,0.213793103448254,-0.407142857142878,0.206896551724127,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448254,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448254,2 +755,4765,4780,4793,0.220689655172375,-0.600000000000000,0.213793103448254,-0.592857142857127,0.220689655172375,-0.585714285714255,0.227586206896496,-0.592857142857127,-0.000000000000000,-0.013793103448243,-0.014285714285745,0.000000000000000,-0.000000000000000,0.013793103448243,0.014285714285745,0.000000000000000,2 +4766,4779,4781,4794,0.213793103448254,-0.578571428571396,0.220689655172375,-0.585714285714255,0.220689655172375,-0.571428571428537,0.227586206896496,-0.578571428571396,-0.014285714285717,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285717,0.000000000000000,2 +4767,4780,4782,4795,0.213793103448254,-0.564285714285699,0.220689655172375,-0.571428571428537,0.220689655172375,-0.557142857142860,0.227586206896496,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285677,0.000000000000000,2 +4768,4781,4783,4796,0.213793103448254,-0.550000000000022,0.220689655172375,-0.557142857142860,0.220689655172375,-0.542857142857183,0.227586206896496,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285677,0.000000000000000,2 +4769,4782,4784,4797,0.213793103448254,-0.535714285714345,0.220689655172375,-0.542857142857183,0.220689655172375,-0.528571428571506,0.227586206896496,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285677,-0.000000000000000,2 +4770,4783,4785,4798,0.213793103448254,-0.521428571428709,0.220689655172375,-0.528571428571506,0.220689655172375,-0.514285714285913,0.227586206896496,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285594,0.000000000000000,2 +4771,4784,4786,4799,0.213793103448254,-0.507142857143103,0.220689655172375,-0.514285714285913,0.220689655172375,-0.500000000000293,0.227586206896496,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285620,0.000000000000000,2 +4772,4785,4787,4800,0.213793103448254,-0.492857142857421,0.220689655172375,-0.500000000000293,0.220689655172375,-0.485714285714549,0.227586206896496,-0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.014285714285744,0.000000000000000,2 +4773,4786,4788,4801,0.213793103448254,-0.478571428571672,0.220689655172375,-0.485714285714549,0.220689655172375,-0.471428571428794,0.227586206896496,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.014285714285755,0.000000000000000,2 +4774,4787,4789,4802,0.213793103448254,-0.464285714285914,0.220689655172375,-0.471428571428794,0.220689655172375,-0.457142857143034,0.227586206896496,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.014285714285761,0.000000000000000,2 +4775,4788,4790,4803,0.213793103448254,-0.450000000000152,0.220689655172375,-0.457142857143034,0.220689655172375,-0.442857142857270,0.227586206896496,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285764,0.000000000000000,2 +4776,4789,4791,4804,0.213793103448254,-0.435714285714389,0.220689655172375,-0.442857142857270,0.220689655172375,-0.428571428571509,0.227586206896496,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285761,0.000000000000000,2 +4777,4790,4792,4805,0.213793103448254,-0.421428571428633,0.220689655172375,-0.428571428571509,0.220689655172375,-0.414285714285756,0.227586206896496,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285753,0.000000000000000,2 +4778,4791,4806,5230,0.213793103448254,-0.407142857142878,0.220689655172375,-0.414285714285756,0.227586206896496,-0.407142857142878,0.220689655172375,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448243,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448243,2 +761,4779,4794,4807,0.234482758620623,-0.600000000000000,0.227586206896496,-0.592857142857127,0.234482758620623,-0.585714285714255,0.241379310344750,-0.592857142857127,-0.000000000000000,-0.013793103448254,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448254,0.014285714285745,0.000000000000000,2 +4780,4793,4795,4808,0.227586206896496,-0.578571428571396,0.234482758620623,-0.585714285714255,0.234482758620623,-0.571428571428537,0.241379310344750,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285718,0.000000000000000,2 +4781,4794,4796,4809,0.227586206896496,-0.564285714285699,0.234482758620623,-0.571428571428537,0.234482758620623,-0.557142857142860,0.241379310344750,-0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 +4782,4795,4797,4810,0.227586206896496,-0.550000000000022,0.234482758620623,-0.557142857142860,0.234482758620623,-0.542857142857183,0.241379310344750,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 +4783,4796,4798,4811,0.227586206896496,-0.535714285714345,0.234482758620623,-0.542857142857183,0.234482758620623,-0.528571428571506,0.241379310344750,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448253,0.014285714285677,0.000000000000000,2 +4784,4797,4799,4812,0.227586206896496,-0.521428571428709,0.234482758620623,-0.528571428571506,0.234482758620623,-0.514285714285913,0.241379310344750,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448254,0.014285714285594,-0.000000000000000,2 +4785,4798,4800,4813,0.227586206896496,-0.507142857143103,0.234482758620623,-0.514285714285913,0.234482758620623,-0.500000000000293,0.241379310344750,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285620,0.000000000000000,2 +4786,4799,4801,4814,0.227586206896496,-0.492857142857421,0.234482758620623,-0.500000000000293,0.234482758620623,-0.485714285714549,0.241379310344750,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285744,0.000000000000000,2 +4787,4800,4802,4815,0.227586206896496,-0.478571428571672,0.234482758620623,-0.485714285714549,0.234482758620623,-0.471428571428794,0.241379310344750,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285755,0.000000000000000,2 +4788,4801,4803,4816,0.227586206896496,-0.464285714285914,0.234482758620623,-0.471428571428794,0.234482758620623,-0.457142857143033,0.241379310344750,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 +4789,4802,4804,4817,0.227586206896496,-0.450000000000152,0.234482758620623,-0.457142857143033,0.234482758620623,-0.442857142857270,0.241379310344750,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285764,0.000000000000000,2 +4790,4803,4805,4818,0.227586206896496,-0.435714285714389,0.234482758620623,-0.442857142857270,0.234482758620623,-0.428571428571509,0.241379310344750,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 +4791,4804,4806,4819,0.227586206896496,-0.421428571428633,0.234482758620623,-0.428571428571509,0.234482758620623,-0.414285714285756,0.241379310344750,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285753,0.000000000000000,2 +4792,4805,4820,5289,0.227586206896496,-0.407142857142878,0.234482758620623,-0.414285714285756,0.241379310344750,-0.407142857142878,0.234482758620623,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448254,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448254,2 +767,4793,4808,4821,0.248275862068872,-0.600000000000000,0.241379310344750,-0.592857142857127,0.248275862068872,-0.585714285714255,0.255172413792995,-0.592857142857127,-0.000000000000000,-0.013793103448245,-0.014285714285745,-0.000000000000000,-0.000000000000000,0.013793103448245,0.014285714285745,0.000000000000000,2 +4794,4807,4809,4822,0.241379310344750,-0.578571428571396,0.248275862068872,-0.585714285714255,0.248275862068872,-0.571428571428537,0.255172413792995,-0.578571428571396,-0.014285714285718,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285717,0.000000000000000,2 +4795,4808,4810,4823,0.241379310344750,-0.564285714285699,0.248275862068872,-0.571428571428537,0.248275862068872,-0.557142857142860,0.255172413792995,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.014285714285677,-0.000000000000000,2 +4796,4809,4811,4824,0.241379310344750,-0.550000000000022,0.248275862068872,-0.557142857142860,0.248275862068872,-0.542857142857183,0.255172413792995,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285677,0.000000000000000,2 +4797,4810,4812,4825,0.241379310344750,-0.535714285714345,0.248275862068872,-0.542857142857183,0.248275862068872,-0.528571428571506,0.255172413792995,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285677,-0.000000000000000,2 +4798,4811,4813,4826,0.241379310344750,-0.521428571428709,0.248275862068872,-0.528571428571506,0.248275862068872,-0.514285714285913,0.255172413792995,-0.521428571428709,-0.014285714285594,0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285594,0.000000000000000,2 +4799,4812,4814,4827,0.241379310344750,-0.507142857143103,0.248275862068872,-0.514285714285913,0.248275862068872,-0.500000000000293,0.255172413792995,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285620,0.000000000000000,2 +4800,4813,4815,4828,0.241379310344750,-0.492857142857421,0.248275862068872,-0.500000000000293,0.248275862068872,-0.485714285714549,0.255172413792995,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285744,0.000000000000000,2 +4801,4814,4816,4829,0.241379310344750,-0.478571428571672,0.248275862068872,-0.485714285714549,0.248275862068872,-0.471428571428794,0.255172413792995,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.014285714285755,0.000000000000000,2 +4802,4815,4817,4830,0.241379310344750,-0.464285714285914,0.248275862068872,-0.471428571428794,0.248275862068872,-0.457142857143034,0.255172413792995,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285761,0.000000000000000,2 +4803,4816,4818,4831,0.241379310344750,-0.450000000000152,0.248275862068872,-0.457142857143034,0.248275862068872,-0.442857142857270,0.255172413792995,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285764,0.000000000000000,2 +4804,4817,4819,4832,0.241379310344750,-0.435714285714389,0.248275862068872,-0.442857142857270,0.248275862068872,-0.428571428571509,0.255172413792995,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.014285714285761,0.000000000000000,2 +4805,4818,4820,4833,0.241379310344750,-0.421428571428633,0.248275862068872,-0.428571428571509,0.248275862068872,-0.414285714285756,0.255172413792995,-0.421428571428633,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285753,0.000000000000000,2 +4806,4819,4834,5348,0.241379310344750,-0.407142857142878,0.248275862068872,-0.414285714285756,0.255172413792995,-0.407142857142878,0.248275862068872,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448245,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448245,2 +773,4807,4822,4835,0.262068965517112,-0.600000000000000,0.255172413792995,-0.592857142857127,0.262068965517112,-0.585714285714255,0.268965517241230,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 +4808,4821,4823,4836,0.255172413792995,-0.578571428571396,0.262068965517112,-0.585714285714255,0.262068965517112,-0.571428571428537,0.268965517241230,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285718,0.000000000000000,2 +4809,4822,4824,4837,0.255172413792995,-0.564285714285699,0.262068965517112,-0.571428571428537,0.262068965517112,-0.557142857142860,0.268965517241230,-0.564285714285699,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4810,4823,4825,4838,0.255172413792995,-0.550000000000022,0.262068965517112,-0.557142857142860,0.262068965517112,-0.542857142857183,0.268965517241230,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4811,4824,4826,4839,0.255172413792995,-0.535714285714345,0.262068965517112,-0.542857142857183,0.262068965517112,-0.528571428571506,0.268965517241230,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4812,4825,4827,4840,0.255172413792995,-0.521428571428709,0.262068965517112,-0.528571428571506,0.262068965517112,-0.514285714285913,0.268965517241230,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285594,0.000000000000000,2 +4813,4826,4828,4841,0.255172413792995,-0.507142857143103,0.262068965517112,-0.514285714285913,0.262068965517112,-0.500000000000293,0.268965517241230,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +4814,4827,4829,4842,0.255172413792995,-0.492857142857421,0.262068965517112,-0.500000000000293,0.262068965517112,-0.485714285714549,0.268965517241230,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 +4815,4828,4830,4843,0.255172413792995,-0.478571428571672,0.262068965517112,-0.485714285714549,0.262068965517112,-0.471428571428794,0.268965517241230,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 +4816,4829,4831,4844,0.255172413792995,-0.464285714285914,0.262068965517112,-0.471428571428794,0.262068965517112,-0.457142857143034,0.268965517241230,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4817,4830,4832,4845,0.255172413792995,-0.450000000000152,0.262068965517112,-0.457142857143034,0.262068965517112,-0.442857142857270,0.268965517241230,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +4818,4831,4833,4846,0.255172413792995,-0.435714285714389,0.262068965517112,-0.442857142857270,0.262068965517112,-0.428571428571509,0.268965517241230,-0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4819,4832,4834,4847,0.255172413792995,-0.421428571428633,0.262068965517112,-0.428571428571509,0.262068965517112,-0.414285714285756,0.268965517241230,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +4820,4833,4848,5407,0.255172413792995,-0.407142857142878,0.262068965517112,-0.414285714285756,0.268965517241230,-0.407142857142878,0.262068965517112,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 +779,4821,4836,4849,0.275862068965347,-0.600000000000000,0.268965517241230,-0.592857142857127,0.275862068965347,-0.585714285714255,0.282758620689465,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 +4822,4835,4837,4850,0.268965517241230,-0.578571428571396,0.275862068965347,-0.585714285714255,0.275862068965347,-0.571428571428537,0.282758620689465,-0.578571428571396,-0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +4823,4836,4838,4851,0.268965517241230,-0.564285714285699,0.275862068965347,-0.571428571428537,0.275862068965347,-0.557142857142860,0.282758620689465,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4824,4837,4839,4852,0.268965517241230,-0.550000000000022,0.275862068965347,-0.557142857142860,0.275862068965347,-0.542857142857183,0.282758620689465,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4825,4838,4840,4853,0.268965517241230,-0.535714285714345,0.275862068965347,-0.542857142857183,0.275862068965347,-0.528571428571506,0.282758620689465,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4826,4839,4841,4854,0.268965517241230,-0.521428571428709,0.275862068965347,-0.528571428571506,0.275862068965347,-0.514285714285913,0.282758620689465,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285594,0.000000000000000,2 +4827,4840,4842,4855,0.268965517241230,-0.507142857143103,0.275862068965347,-0.514285714285913,0.275862068965347,-0.500000000000293,0.282758620689465,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +4828,4841,4843,4856,0.268965517241230,-0.492857142857421,0.275862068965347,-0.500000000000293,0.275862068965347,-0.485714285714549,0.282758620689465,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 +4829,4842,4844,4857,0.268965517241230,-0.478571428571672,0.275862068965347,-0.485714285714549,0.275862068965347,-0.471428571428794,0.282758620689465,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 +4830,4843,4845,4858,0.268965517241230,-0.464285714285914,0.275862068965347,-0.471428571428794,0.275862068965347,-0.457142857143033,0.282758620689465,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4831,4844,4846,4859,0.268965517241230,-0.450000000000152,0.275862068965347,-0.457142857143033,0.275862068965347,-0.442857142857270,0.282758620689465,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +4832,4845,4847,4860,0.268965517241230,-0.435714285714389,0.275862068965347,-0.442857142857270,0.275862068965347,-0.428571428571509,0.282758620689465,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4833,4846,4848,4861,0.268965517241230,-0.421428571428633,0.275862068965347,-0.428571428571509,0.275862068965347,-0.414285714285756,0.282758620689465,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +4834,4847,4862,5466,0.268965517241230,-0.407142857142878,0.275862068965347,-0.414285714285756,0.282758620689465,-0.407142857142878,0.275862068965347,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 +785,4835,4850,4863,0.289655172413583,-0.600000000000000,0.282758620689465,-0.592857142857127,0.289655172413583,-0.585714285714255,0.296551724137700,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 +4836,4849,4851,4864,0.282758620689465,-0.578571428571396,0.289655172413583,-0.585714285714255,0.289655172413583,-0.571428571428537,0.296551724137700,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +4837,4850,4852,4865,0.282758620689465,-0.564285714285699,0.289655172413583,-0.571428571428537,0.289655172413583,-0.557142857142860,0.296551724137700,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4838,4851,4853,4866,0.282758620689465,-0.550000000000022,0.289655172413583,-0.557142857142860,0.289655172413583,-0.542857142857183,0.296551724137700,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4839,4852,4854,4867,0.282758620689465,-0.535714285714345,0.289655172413583,-0.542857142857183,0.289655172413583,-0.528571428571506,0.296551724137700,-0.535714285714345,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4840,4853,4855,4868,0.282758620689465,-0.521428571428709,0.289655172413583,-0.528571428571506,0.289655172413583,-0.514285714285913,0.296551724137700,-0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 +4841,4854,4856,4869,0.282758620689465,-0.507142857143103,0.289655172413583,-0.514285714285913,0.289655172413583,-0.500000000000293,0.296551724137700,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +4842,4855,4857,4870,0.282758620689465,-0.492857142857421,0.289655172413583,-0.500000000000293,0.289655172413583,-0.485714285714549,0.296551724137700,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 +4843,4856,4858,4871,0.282758620689465,-0.478571428571672,0.289655172413583,-0.485714285714549,0.289655172413583,-0.471428571428794,0.296551724137700,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 +4844,4857,4859,4872,0.282758620689465,-0.464285714285914,0.289655172413583,-0.471428571428794,0.289655172413583,-0.457142857143033,0.296551724137700,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4845,4858,4860,4873,0.282758620689465,-0.450000000000152,0.289655172413583,-0.457142857143033,0.289655172413583,-0.442857142857270,0.296551724137700,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,-0.000000000000000,2 +4846,4859,4861,4874,0.282758620689465,-0.435714285714389,0.289655172413583,-0.442857142857270,0.289655172413583,-0.428571428571509,0.296551724137700,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4847,4860,4862,4875,0.282758620689465,-0.421428571428633,0.289655172413583,-0.428571428571509,0.289655172413583,-0.414285714285756,0.296551724137700,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,-0.000000000000000,2 +4848,4861,4876,5525,0.282758620689465,-0.407142857142878,0.289655172413583,-0.414285714285756,0.296551724137700,-0.407142857142878,0.289655172413583,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 +791,4849,4864,4877,0.303448275861818,-0.600000000000000,0.296551724137700,-0.592857142857127,0.303448275861818,-0.585714285714255,0.310344827585935,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 +4850,4863,4865,4878,0.296551724137700,-0.578571428571396,0.303448275861818,-0.585714285714255,0.303448275861818,-0.571428571428537,0.310344827585935,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +4851,4864,4866,4879,0.296551724137700,-0.564285714285699,0.303448275861818,-0.571428571428537,0.303448275861818,-0.557142857142860,0.310344827585935,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 +4852,4865,4867,4880,0.296551724137700,-0.550000000000022,0.303448275861818,-0.557142857142860,0.303448275861818,-0.542857142857183,0.310344827585935,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4853,4866,4868,4881,0.296551724137700,-0.535714285714345,0.303448275861818,-0.542857142857183,0.303448275861818,-0.528571428571506,0.310344827585935,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4854,4867,4869,4882,0.296551724137700,-0.521428571428709,0.303448275861818,-0.528571428571506,0.303448275861818,-0.514285714285913,0.310344827585935,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285594,0.000000000000000,2 +4855,4868,4870,4883,0.296551724137700,-0.507142857143103,0.303448275861818,-0.514285714285913,0.303448275861818,-0.500000000000293,0.310344827585935,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +4856,4869,4871,4884,0.296551724137700,-0.492857142857421,0.303448275861818,-0.500000000000293,0.303448275861818,-0.485714285714549,0.310344827585935,-0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 +4857,4870,4872,4885,0.296551724137700,-0.478571428571672,0.303448275861818,-0.485714285714549,0.303448275861818,-0.471428571428794,0.310344827585935,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 +4858,4871,4873,4886,0.296551724137700,-0.464285714285914,0.303448275861818,-0.471428571428794,0.303448275861818,-0.457142857143034,0.310344827585935,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 +4859,4872,4874,4887,0.296551724137700,-0.450000000000152,0.303448275861818,-0.457142857143034,0.303448275861818,-0.442857142857270,0.310344827585935,-0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +4860,4873,4875,4888,0.296551724137700,-0.435714285714389,0.303448275861818,-0.442857142857270,0.303448275861818,-0.428571428571509,0.310344827585935,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4861,4874,4876,4889,0.296551724137700,-0.421428571428633,0.303448275861818,-0.428571428571509,0.303448275861818,-0.414285714285756,0.310344827585935,-0.421428571428633,-0.014285714285753,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +4862,4875,4890,5584,0.296551724137700,-0.407142857142878,0.303448275861818,-0.414285714285756,0.310344827585935,-0.407142857142878,0.303448275861818,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 +797,4863,4878,4891,0.317241379310053,-0.600000000000000,0.310344827585935,-0.592857142857127,0.317241379310053,-0.585714285714255,0.324137931034170,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,-0.000000000000000,2 +4864,4877,4879,4892,0.310344827585935,-0.578571428571396,0.317241379310053,-0.585714285714255,0.317241379310053,-0.571428571428537,0.324137931034170,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +4865,4878,4880,4893,0.310344827585935,-0.564285714285699,0.317241379310053,-0.571428571428537,0.317241379310053,-0.557142857142860,0.324137931034170,-0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 +4866,4879,4881,4894,0.310344827585935,-0.550000000000022,0.317241379310053,-0.557142857142860,0.317241379310053,-0.542857142857183,0.324137931034170,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4867,4880,4882,4895,0.310344827585935,-0.535714285714345,0.317241379310053,-0.542857142857183,0.317241379310053,-0.528571428571506,0.324137931034170,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4868,4881,4883,4896,0.310344827585935,-0.521428571428709,0.317241379310053,-0.528571428571506,0.317241379310053,-0.514285714285913,0.324137931034170,-0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 +4869,4882,4884,4897,0.310344827585935,-0.507142857143103,0.317241379310053,-0.514285714285913,0.317241379310053,-0.500000000000293,0.324137931034170,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +4870,4883,4885,4898,0.310344827585935,-0.492857142857421,0.317241379310053,-0.500000000000293,0.317241379310053,-0.485714285714549,0.324137931034170,-0.492857142857421,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 +4871,4884,4886,4899,0.310344827585935,-0.478571428571672,0.317241379310053,-0.485714285714549,0.317241379310053,-0.471428571428794,0.324137931034170,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 +4872,4885,4887,4900,0.310344827585935,-0.464285714285914,0.317241379310053,-0.471428571428794,0.317241379310053,-0.457142857143034,0.324137931034170,-0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4873,4886,4888,4901,0.310344827585935,-0.450000000000152,0.317241379310053,-0.457142857143034,0.317241379310053,-0.442857142857270,0.324137931034170,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +4874,4887,4889,4902,0.310344827585935,-0.435714285714389,0.317241379310053,-0.442857142857270,0.317241379310053,-0.428571428571509,0.324137931034170,-0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4875,4888,4890,4903,0.310344827585935,-0.421428571428633,0.317241379310053,-0.428571428571509,0.317241379310053,-0.414285714285756,0.324137931034170,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +4876,4889,4904,5643,0.310344827585935,-0.407142857142878,0.317241379310053,-0.414285714285756,0.324137931034170,-0.407142857142878,0.317241379310053,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 +803,4877,4892,4905,0.331034482758288,-0.600000000000000,0.324137931034170,-0.592857142857127,0.331034482758288,-0.585714285714255,0.337931034482406,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 +4878,4891,4893,4906,0.324137931034170,-0.578571428571396,0.331034482758288,-0.585714285714255,0.331034482758288,-0.571428571428537,0.337931034482406,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285718,0.000000000000000,2 +4879,4892,4894,4907,0.324137931034170,-0.564285714285699,0.331034482758288,-0.571428571428537,0.331034482758288,-0.557142857142860,0.337931034482406,-0.564285714285699,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4880,4893,4895,4908,0.324137931034170,-0.550000000000022,0.331034482758288,-0.557142857142860,0.331034482758288,-0.542857142857183,0.337931034482406,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4881,4894,4896,4909,0.324137931034170,-0.535714285714345,0.331034482758288,-0.542857142857183,0.331034482758288,-0.528571428571506,0.337931034482406,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4882,4895,4897,4910,0.324137931034170,-0.521428571428709,0.331034482758288,-0.528571428571506,0.331034482758288,-0.514285714285913,0.337931034482406,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 +4883,4896,4898,4911,0.324137931034170,-0.507142857143103,0.331034482758288,-0.514285714285913,0.331034482758288,-0.500000000000293,0.337931034482406,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +4884,4897,4899,4912,0.324137931034170,-0.492857142857421,0.331034482758288,-0.500000000000293,0.331034482758288,-0.485714285714549,0.337931034482406,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 +4885,4898,4900,4913,0.324137931034170,-0.478571428571672,0.331034482758288,-0.485714285714549,0.331034482758288,-0.471428571428794,0.337931034482406,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 +4886,4899,4901,4914,0.324137931034170,-0.464285714285914,0.331034482758288,-0.471428571428794,0.331034482758288,-0.457142857143034,0.337931034482406,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4887,4900,4902,4915,0.324137931034170,-0.450000000000152,0.331034482758288,-0.457142857143034,0.331034482758288,-0.442857142857270,0.337931034482406,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +4888,4901,4903,4916,0.324137931034170,-0.435714285714389,0.331034482758288,-0.442857142857270,0.331034482758288,-0.428571428571509,0.337931034482406,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4889,4902,4904,4917,0.324137931034170,-0.421428571428633,0.331034482758288,-0.428571428571509,0.331034482758288,-0.414285714285756,0.337931034482406,-0.421428571428633,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +4890,4903,4918,5702,0.324137931034170,-0.407142857142878,0.331034482758288,-0.414285714285756,0.337931034482406,-0.407142857142878,0.331034482758288,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 +809,4891,4906,4919,0.344827586206523,-0.600000000000000,0.337931034482406,-0.592857142857127,0.344827586206523,-0.585714285714255,0.351724137930641,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 +4892,4905,4907,4920,0.337931034482406,-0.578571428571396,0.344827586206523,-0.585714285714255,0.344827586206523,-0.571428571428537,0.351724137930641,-0.578571428571396,-0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,-0.000000000000000,2 +4893,4906,4908,4921,0.337931034482406,-0.564285714285699,0.344827586206523,-0.571428571428537,0.344827586206523,-0.557142857142860,0.351724137930641,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4894,4907,4909,4922,0.337931034482406,-0.550000000000022,0.344827586206523,-0.557142857142860,0.344827586206523,-0.542857142857183,0.351724137930641,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4895,4908,4910,4923,0.337931034482406,-0.535714285714345,0.344827586206523,-0.542857142857183,0.344827586206523,-0.528571428571506,0.351724137930640,-0.535714285714345,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4896,4909,4911,4924,0.337931034482406,-0.521428571428709,0.344827586206523,-0.528571428571506,0.344827586206523,-0.514285714285913,0.351724137930640,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285594,-0.000000000000000,2 +4897,4910,4912,4925,0.337931034482406,-0.507142857143103,0.344827586206523,-0.514285714285913,0.344827586206523,-0.500000000000293,0.351724137930641,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +4898,4911,4913,4926,0.337931034482406,-0.492857142857421,0.344827586206523,-0.500000000000293,0.344827586206523,-0.485714285714549,0.351724137930641,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 +4899,4912,4914,4927,0.337931034482406,-0.478571428571672,0.344827586206523,-0.485714285714549,0.344827586206523,-0.471428571428794,0.351724137930641,-0.478571428571672,-0.014285714285754,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,-0.000000000000000,2 +4900,4913,4915,4928,0.337931034482406,-0.464285714285914,0.344827586206523,-0.471428571428794,0.344827586206523,-0.457142857143034,0.351724137930641,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4901,4914,4916,4929,0.337931034482406,-0.450000000000152,0.344827586206523,-0.457142857143034,0.344827586206523,-0.442857142857270,0.351724137930641,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +4902,4915,4917,4930,0.337931034482406,-0.435714285714389,0.344827586206523,-0.442857142857270,0.344827586206523,-0.428571428571509,0.351724137930641,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 +4903,4916,4918,4931,0.337931034482406,-0.421428571428633,0.344827586206523,-0.428571428571509,0.344827586206523,-0.414285714285756,0.351724137930641,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +4904,4917,4932,5761,0.337931034482406,-0.407142857142878,0.344827586206523,-0.414285714285756,0.351724137930641,-0.407142857142878,0.344827586206523,-0.400000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 +815,4905,4920,4933,0.358620689654758,-0.600000000000000,0.351724137930641,-0.592857142857127,0.358620689654758,-0.585714285714255,0.365517241378876,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 +4906,4919,4921,4934,0.351724137930641,-0.578571428571396,0.358620689654758,-0.585714285714255,0.358620689654758,-0.571428571428537,0.365517241378876,-0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,-0.000000000000000,2 +4907,4920,4922,4935,0.351724137930641,-0.564285714285699,0.358620689654758,-0.571428571428537,0.358620689654758,-0.557142857142860,0.365517241378876,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4908,4921,4923,4936,0.351724137930641,-0.550000000000022,0.358620689654758,-0.557142857142860,0.358620689654758,-0.542857142857183,0.365517241378876,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4909,4922,4924,4937,0.351724137930640,-0.535714285714345,0.358620689654758,-0.542857142857183,0.358620689654758,-0.528571428571506,0.365517241378876,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4910,4923,4925,4938,0.351724137930640,-0.521428571428709,0.358620689654758,-0.528571428571506,0.358620689654758,-0.514285714285913,0.365517241378876,-0.521428571428709,-0.014285714285594,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,-0.000000000000000,2 +4911,4924,4926,4939,0.351724137930641,-0.507142857143103,0.358620689654758,-0.514285714285913,0.358620689654758,-0.500000000000293,0.365517241378876,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +4912,4925,4927,4940,0.351724137930641,-0.492857142857421,0.358620689654758,-0.500000000000293,0.358620689654758,-0.485714285714549,0.365517241378876,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 +4913,4926,4928,4941,0.351724137930641,-0.478571428571672,0.358620689654758,-0.485714285714549,0.358620689654758,-0.471428571428794,0.365517241378876,-0.478571428571672,-0.014285714285754,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 +4914,4927,4929,4942,0.351724137930641,-0.464285714285914,0.358620689654758,-0.471428571428794,0.358620689654758,-0.457142857143034,0.365517241378876,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4915,4928,4930,4943,0.351724137930641,-0.450000000000152,0.358620689654758,-0.457142857143034,0.358620689654758,-0.442857142857270,0.365517241378876,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +4916,4929,4931,4944,0.351724137930641,-0.435714285714389,0.358620689654758,-0.442857142857270,0.358620689654758,-0.428571428571509,0.365517241378876,-0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4917,4930,4932,4945,0.351724137930641,-0.421428571428633,0.358620689654758,-0.428571428571509,0.358620689654758,-0.414285714285756,0.365517241378876,-0.421428571428633,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,-0.000000000000000,2 +4918,4931,4946,5820,0.351724137930641,-0.407142857142878,0.358620689654758,-0.414285714285756,0.365517241378876,-0.407142857142878,0.358620689654758,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448235,2 +821,4919,4934,4947,0.372413793102993,-0.600000000000000,0.365517241378876,-0.592857142857127,0.372413793102993,-0.585714285714255,0.379310344827111,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 +4920,4933,4935,4948,0.365517241378876,-0.578571428571396,0.372413793102993,-0.585714285714255,0.372413793102993,-0.571428571428537,0.379310344827111,-0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285718,0.000000000000000,2 +4921,4934,4936,4949,0.365517241378876,-0.564285714285699,0.372413793102993,-0.571428571428537,0.372413793102993,-0.557142857142860,0.379310344827111,-0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4922,4935,4937,4950,0.365517241378876,-0.550000000000022,0.372413793102993,-0.557142857142860,0.372413793102993,-0.542857142857183,0.379310344827111,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 +4923,4936,4938,4951,0.365517241378876,-0.535714285714345,0.372413793102993,-0.542857142857183,0.372413793102993,-0.528571428571506,0.379310344827111,-0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4924,4937,4939,4952,0.365517241378876,-0.521428571428709,0.372413793102993,-0.528571428571506,0.372413793102993,-0.514285714285913,0.379310344827111,-0.521428571428709,-0.014285714285593,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 +4925,4938,4940,4953,0.365517241378876,-0.507142857143103,0.372413793102993,-0.514285714285913,0.372413793102993,-0.500000000000293,0.379310344827111,-0.507142857143103,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +4926,4939,4941,4954,0.365517241378876,-0.492857142857421,0.372413793102993,-0.500000000000293,0.372413793102993,-0.485714285714549,0.379310344827111,-0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 +4927,4940,4942,4955,0.365517241378876,-0.478571428571672,0.372413793102993,-0.485714285714549,0.372413793102993,-0.471428571428794,0.379310344827111,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 +4928,4941,4943,4956,0.365517241378876,-0.464285714285914,0.372413793102993,-0.471428571428794,0.372413793102993,-0.457142857143034,0.379310344827111,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4929,4942,4944,4957,0.365517241378876,-0.450000000000152,0.372413793102993,-0.457142857143034,0.372413793102993,-0.442857142857270,0.379310344827111,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +4930,4943,4945,4958,0.365517241378876,-0.435714285714389,0.372413793102993,-0.442857142857270,0.372413793102993,-0.428571428571509,0.379310344827111,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4931,4944,4946,4959,0.365517241378876,-0.421428571428633,0.372413793102993,-0.428571428571509,0.372413793102993,-0.414285714285756,0.379310344827111,-0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +4932,4945,4960,5879,0.365517241378876,-0.407142857142878,0.372413793102993,-0.414285714285756,0.379310344827111,-0.407142857142878,0.372413793102993,-0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 +827,4933,4948,4961,0.386206896551228,-0.600000000000000,0.379310344827111,-0.592857142857127,0.386206896551228,-0.585714285714255,0.393103448275346,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 +4934,4947,4949,4962,0.379310344827111,-0.578571428571396,0.386206896551228,-0.585714285714255,0.386206896551228,-0.571428571428537,0.393103448275346,-0.578571428571396,-0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +4935,4948,4950,4963,0.379310344827111,-0.564285714285699,0.386206896551228,-0.571428571428537,0.386206896551228,-0.557142857142860,0.393103448275346,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4936,4949,4951,4964,0.379310344827111,-0.550000000000022,0.386206896551228,-0.557142857142860,0.386206896551228,-0.542857142857183,0.393103448275346,-0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4937,4950,4952,4965,0.379310344827111,-0.535714285714344,0.386206896551228,-0.542857142857183,0.386206896551228,-0.528571428571506,0.393103448275346,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +4938,4951,4953,4966,0.379310344827111,-0.521428571428709,0.386206896551228,-0.528571428571506,0.386206896551228,-0.514285714285913,0.393103448275346,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,-0.000000000000000,2 +4939,4952,4954,4967,0.379310344827111,-0.507142857143103,0.386206896551228,-0.514285714285913,0.386206896551228,-0.500000000000293,0.393103448275346,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +4940,4953,4955,4968,0.379310344827111,-0.492857142857421,0.386206896551228,-0.500000000000293,0.386206896551228,-0.485714285714549,0.393103448275346,-0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 +4941,4954,4956,4969,0.379310344827111,-0.478571428571672,0.386206896551228,-0.485714285714549,0.386206896551228,-0.471428571428794,0.393103448275346,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 +4942,4955,4957,4970,0.379310344827111,-0.464285714285914,0.386206896551228,-0.471428571428794,0.386206896551228,-0.457142857143034,0.393103448275346,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4943,4956,4958,4971,0.379310344827111,-0.450000000000152,0.386206896551228,-0.457142857143034,0.386206896551228,-0.442857142857270,0.393103448275346,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +4944,4957,4959,4972,0.379310344827111,-0.435714285714389,0.386206896551228,-0.442857142857270,0.386206896551228,-0.428571428571509,0.393103448275346,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +4945,4958,4960,4973,0.379310344827111,-0.421428571428633,0.386206896551228,-0.428571428571509,0.386206896551228,-0.414285714285756,0.393103448275346,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +4946,4959,4974,5938,0.379310344827111,-0.407142857142878,0.386206896551228,-0.414285714285756,0.393103448275346,-0.407142857142878,0.386206896551228,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 +833,4947,4962,4975,0.399999999999487,-0.600000000000000,0.393103448275346,-0.592857142857127,0.399999999999487,-0.585714285714255,0.406896551723629,-0.592857142857127,-0.000000000000000,-0.013793103448283,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448283,0.014285714285745,0.000000000000000,2 +4948,4961,4963,4976,0.393103448275346,-0.578571428571396,0.399999999999487,-0.585714285714255,0.399999999999487,-0.571428571428537,0.406896551723629,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285717,0.000000000000000,2 +4949,4962,4964,4977,0.393103448275346,-0.564285714285699,0.399999999999487,-0.571428571428537,0.399999999999487,-0.557142857142860,0.406896551723629,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285677,-0.000000000000000,2 +4950,4963,4965,4978,0.393103448275346,-0.550000000000022,0.399999999999487,-0.557142857142860,0.399999999999487,-0.542857142857183,0.406896551723629,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285677,0.000000000000000,2 +4951,4964,4966,4979,0.393103448275346,-0.535714285714345,0.399999999999487,-0.542857142857183,0.399999999999487,-0.528571428571506,0.406896551723629,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285677,0.000000000000000,2 +4952,4965,4967,4980,0.393103448275346,-0.521428571428709,0.399999999999487,-0.528571428571506,0.399999999999487,-0.514285714285913,0.406896551723629,-0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285593,0.000000000000000,2 +4953,4966,4968,4981,0.393103448275346,-0.507142857143103,0.399999999999487,-0.514285714285913,0.399999999999487,-0.500000000000293,0.406896551723629,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285620,0.000000000000000,2 +4954,4967,4969,4982,0.393103448275346,-0.492857142857421,0.399999999999487,-0.500000000000293,0.399999999999487,-0.485714285714549,0.406896551723629,-0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285744,0.000000000000000,2 +4955,4968,4970,4983,0.393103448275346,-0.478571428571672,0.399999999999487,-0.485714285714549,0.399999999999487,-0.471428571428794,0.406896551723629,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285755,0.000000000000000,2 +4956,4969,4971,4984,0.393103448275346,-0.464285714285914,0.399999999999487,-0.471428571428794,0.399999999999487,-0.457142857143033,0.406896551723629,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285761,0.000000000000000,2 +4957,4970,4972,4985,0.393103448275346,-0.450000000000152,0.399999999999487,-0.457142857143033,0.399999999999487,-0.442857142857270,0.406896551723629,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285764,0.000000000000000,2 +4958,4971,4973,4986,0.393103448275346,-0.435714285714389,0.399999999999487,-0.442857142857270,0.399999999999487,-0.428571428571509,0.406896551723629,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285761,0.000000000000000,2 +4959,4972,4974,4987,0.393103448275346,-0.421428571428633,0.399999999999487,-0.428571428571509,0.399999999999487,-0.414285714285756,0.406896551723629,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285753,0.000000000000000,2 +4960,4973,4988,5997,0.393103448275346,-0.407142857142878,0.399999999999487,-0.414285714285756,0.406896551723629,-0.407142857142878,0.399999999999487,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448283,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448283,2 +839,4961,4976,4989,0.413793103447786,-0.600000000000000,0.406896551723629,-0.592857142857127,0.413793103447786,-0.585714285714255,0.420689655171942,-0.592857142857127,-0.000000000000000,-0.013793103448313,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448313,0.014285714285745,0.000000000000000,2 +4962,4975,4977,4990,0.406896551723629,-0.578571428571396,0.413793103447786,-0.585714285714255,0.413793103447786,-0.571428571428537,0.420689655171942,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285717,0.000000000000000,2 +4963,4976,4978,4991,0.406896551723629,-0.564285714285699,0.413793103447786,-0.571428571428537,0.413793103447786,-0.557142857142860,0.420689655171942,-0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 +4964,4977,4979,4992,0.406896551723629,-0.550000000000022,0.413793103447786,-0.557142857142860,0.413793103447786,-0.542857142857183,0.420689655171942,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 +4965,4978,4980,4993,0.406896551723629,-0.535714285714345,0.413793103447786,-0.542857142857183,0.413793103447786,-0.528571428571506,0.420689655171942,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 +4966,4979,4981,4994,0.406896551723629,-0.521428571428709,0.413793103447786,-0.528571428571506,0.413793103447786,-0.514285714285913,0.420689655171942,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285593,-0.000000000000000,2 +4967,4980,4982,4995,0.406896551723629,-0.507142857143103,0.413793103447786,-0.514285714285913,0.413793103447786,-0.500000000000293,0.420689655171942,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285620,-0.000000000000000,2 +4968,4981,4983,4996,0.406896551723629,-0.492857142857421,0.413793103447786,-0.500000000000293,0.413793103447786,-0.485714285714549,0.420689655171942,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285744,0.000000000000000,2 +4969,4982,4984,4997,0.406896551723629,-0.478571428571672,0.413793103447786,-0.485714285714549,0.413793103447786,-0.471428571428794,0.420689655171942,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285755,0.000000000000000,2 +4970,4983,4985,4998,0.406896551723629,-0.464285714285914,0.413793103447786,-0.471428571428794,0.413793103447786,-0.457142857143033,0.420689655171942,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 +4971,4984,4986,4999,0.406896551723629,-0.450000000000152,0.413793103447786,-0.457142857143033,0.413793103447786,-0.442857142857270,0.420689655171942,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285764,0.000000000000000,2 +4972,4985,4987,5000,0.406896551723629,-0.435714285714389,0.413793103447786,-0.442857142857270,0.413793103447786,-0.428571428571509,0.420689655171942,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 +4973,4986,4988,5001,0.406896551723629,-0.421428571428633,0.413793103447786,-0.428571428571509,0.413793103447786,-0.414285714285756,0.420689655171942,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285753,-0.000000000000000,2 +4974,4987,5002,6056,0.406896551723629,-0.407142857142878,0.413793103447786,-0.414285714285756,0.420689655171942,-0.407142857142878,0.413793103447786,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448313,0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448313,2 +845,4975,4990,5003,0.427586206896100,-0.600000000000000,0.420689655171942,-0.592857142857127,0.427586206896100,-0.585714285714255,0.434482758620257,-0.592857142857127,-0.000000000000000,-0.013793103448315,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448315,0.014285714285745,0.000000000000000,2 +4976,4989,4991,5004,0.420689655171942,-0.578571428571396,0.427586206896100,-0.585714285714255,0.427586206896100,-0.571428571428537,0.434482758620257,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285717,0.000000000000000,2 +4977,4990,4992,5005,0.420689655171942,-0.564285714285699,0.427586206896100,-0.571428571428537,0.427586206896100,-0.557142857142860,0.434482758620258,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448316,0.014285714285677,-0.000000000000000,2 +4978,4991,4993,5006,0.420689655171942,-0.550000000000022,0.427586206896100,-0.557142857142860,0.427586206896100,-0.542857142857183,0.434482758620258,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448316,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 +4979,4992,4994,5007,0.420689655171942,-0.535714285714345,0.427586206896100,-0.542857142857183,0.427586206896100,-0.528571428571506,0.434482758620257,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 +4980,4993,4995,5008,0.420689655171942,-0.521428571428709,0.427586206896100,-0.528571428571506,0.427586206896100,-0.514285714285913,0.434482758620257,-0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285593,0.000000000000000,2 +4981,4994,4996,5009,0.420689655171942,-0.507142857143103,0.427586206896100,-0.514285714285913,0.427586206896100,-0.500000000000293,0.434482758620258,-0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285620,-0.000000000000000,2 +4982,4995,4997,5010,0.420689655171942,-0.492857142857421,0.427586206896100,-0.500000000000293,0.427586206896100,-0.485714285714549,0.434482758620258,-0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285744,0.000000000000000,2 +4983,4996,4998,5011,0.420689655171942,-0.478571428571672,0.427586206896100,-0.485714285714549,0.427586206896100,-0.471428571428794,0.434482758620257,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285754,0.000000000000000,2 +4984,4997,4999,5012,0.420689655171942,-0.464285714285914,0.427586206896100,-0.471428571428794,0.427586206896100,-0.457142857143033,0.434482758620257,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285761,0.000000000000000,2 +4985,4998,5000,5013,0.420689655171942,-0.450000000000152,0.427586206896100,-0.457142857143033,0.427586206896100,-0.442857142857270,0.434482758620258,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285764,-0.000000000000000,2 +4986,4999,5001,5014,0.420689655171942,-0.435714285714389,0.427586206896100,-0.442857142857270,0.427586206896100,-0.428571428571509,0.434482758620258,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285761,0.000000000000000,2 +4987,5000,5002,5015,0.420689655171942,-0.421428571428633,0.427586206896100,-0.428571428571509,0.427586206896100,-0.414285714285756,0.434482758620257,-0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285753,0.000000000000000,2 +4988,5001,5016,6115,0.420689655171942,-0.407142857142878,0.427586206896100,-0.414285714285756,0.434482758620257,-0.407142857142878,0.427586206896100,-0.400000000000000,-0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448315,2 +851,4989,5004,5017,0.441379310344412,-0.600000000000000,0.434482758620257,-0.592857142857127,0.441379310344412,-0.585714285714255,0.448275862068567,-0.592857142857127,-0.000000000000000,-0.013793103448310,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448310,0.014285714285745,0.000000000000000,2 +4990,5003,5005,5018,0.434482758620257,-0.578571428571396,0.441379310344412,-0.585714285714255,0.441379310344412,-0.571428571428537,0.448275862068567,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448309,0.014285714285718,0.000000000000000,2 +4991,5004,5006,5019,0.434482758620258,-0.564285714285699,0.441379310344412,-0.571428571428537,0.441379310344412,-0.557142857142860,0.448275862068567,-0.564285714285699,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285677,-0.000000000000000,2 +4992,5005,5007,5020,0.434482758620258,-0.550000000000022,0.441379310344412,-0.557142857142860,0.441379310344412,-0.542857142857183,0.448275862068567,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448310,0.014285714285677,-0.000000000000000,2 +4993,5006,5008,5021,0.434482758620257,-0.535714285714345,0.441379310344412,-0.542857142857183,0.441379310344412,-0.528571428571506,0.448275862068567,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285677,0.000000000000000,2 +4994,5007,5009,5022,0.434482758620257,-0.521428571428709,0.441379310344412,-0.528571428571506,0.441379310344412,-0.514285714285913,0.448275862068567,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285594,0.000000000000000,2 +4995,5008,5010,5023,0.434482758620258,-0.507142857143103,0.441379310344412,-0.514285714285913,0.441379310344412,-0.500000000000293,0.448275862068567,-0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285620,-0.000000000000000,2 +4996,5009,5011,5024,0.434482758620258,-0.492857142857421,0.441379310344412,-0.500000000000293,0.441379310344412,-0.485714285714549,0.448275862068567,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285744,0.000000000000000,2 +4997,5010,5012,5025,0.434482758620257,-0.478571428571672,0.441379310344412,-0.485714285714549,0.441379310344412,-0.471428571428794,0.448275862068567,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.014285714285754,0.000000000000000,2 +4998,5011,5013,5026,0.434482758620257,-0.464285714285914,0.441379310344412,-0.471428571428794,0.441379310344412,-0.457142857143034,0.448275862068567,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285761,0.000000000000000,2 +4999,5012,5014,5027,0.434482758620258,-0.450000000000152,0.441379310344412,-0.457142857143034,0.441379310344412,-0.442857142857270,0.448275862068567,-0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 +5000,5013,5015,5028,0.434482758620258,-0.435714285714389,0.441379310344412,-0.442857142857270,0.441379310344412,-0.428571428571509,0.448275862068567,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448310,0.014285714285761,-0.000000000000000,2 +5001,5014,5016,5029,0.434482758620257,-0.421428571428633,0.441379310344412,-0.428571428571509,0.441379310344412,-0.414285714285756,0.448275862068567,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285753,0.000000000000000,2 +5002,5015,5030,6174,0.434482758620257,-0.407142857142878,0.441379310344412,-0.414285714285756,0.448275862068567,-0.407142857142878,0.441379310344412,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448310,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448310,2 +857,5003,5018,5031,0.455172413792722,-0.600000000000000,0.448275862068567,-0.592857142857127,0.455172413792722,-0.585714285714255,0.462068965516876,-0.592857142857127,-0.000000000000000,-0.013793103448309,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285745,0.000000000000000,2 +5004,5017,5019,5032,0.448275862068567,-0.578571428571396,0.455172413792722,-0.585714285714255,0.455172413792722,-0.571428571428537,0.462068965516876,-0.578571428571396,-0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 +5005,5018,5020,5033,0.448275862068567,-0.564285714285699,0.455172413792722,-0.571428571428537,0.455172413792722,-0.557142857142860,0.462068965516876,-0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +5006,5019,5021,5034,0.448275862068567,-0.550000000000022,0.455172413792722,-0.557142857142860,0.455172413792722,-0.542857142857183,0.462068965516876,-0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +5007,5020,5022,5035,0.448275862068567,-0.535714285714345,0.455172413792722,-0.542857142857183,0.455172413792722,-0.528571428571506,0.462068965516876,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,-0.000000000000000,2 +5008,5021,5023,5036,0.448275862068567,-0.521428571428709,0.455172413792722,-0.528571428571506,0.455172413792722,-0.514285714285913,0.462068965516876,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285594,0.000000000000000,2 +5009,5022,5024,5037,0.448275862068567,-0.507142857143103,0.455172413792722,-0.514285714285913,0.455172413792722,-0.500000000000293,0.462068965516876,-0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285620,0.000000000000000,2 +5010,5023,5025,5038,0.448275862068567,-0.492857142857421,0.455172413792722,-0.500000000000293,0.455172413792722,-0.485714285714549,0.462068965516876,-0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285744,0.000000000000000,2 +5011,5024,5026,5039,0.448275862068567,-0.478571428571672,0.455172413792722,-0.485714285714549,0.455172413792722,-0.471428571428794,0.462068965516876,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285755,0.000000000000000,2 +5012,5025,5027,5040,0.448275862068567,-0.464285714285914,0.455172413792722,-0.471428571428794,0.455172413792722,-0.457142857143034,0.462068965516876,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +5013,5026,5028,5041,0.448275862068567,-0.450000000000152,0.455172413792722,-0.457142857143034,0.455172413792722,-0.442857142857270,0.462068965516876,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 +5014,5027,5029,5042,0.448275862068567,-0.435714285714389,0.455172413792722,-0.442857142857270,0.455172413792722,-0.428571428571509,0.462068965516876,-0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +5015,5028,5030,5043,0.448275862068567,-0.421428571428633,0.455172413792722,-0.428571428571509,0.455172413792722,-0.414285714285756,0.462068965516876,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285753,-0.000000000000000,2 +5016,5029,5044,6233,0.448275862068567,-0.407142857142878,0.455172413792722,-0.414285714285756,0.462068965516876,-0.407142857142878,0.455172413792722,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,2 +863,5017,5032,5045,0.468965517241031,-0.600000000000000,0.462068965516876,-0.592857142857127,0.468965517241031,-0.585714285714255,0.475862068965185,-0.592857142857127,-0.000000000000000,-0.013793103448309,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285745,0.000000000000000,2 +5018,5031,5033,5046,0.462068965516876,-0.578571428571396,0.468965517241031,-0.585714285714255,0.468965517241031,-0.571428571428537,0.475862068965185,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 +5019,5032,5034,5047,0.462068965516876,-0.564285714285699,0.468965517241031,-0.571428571428537,0.468965517241031,-0.557142857142860,0.475862068965185,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +5020,5033,5035,5048,0.462068965516876,-0.550000000000022,0.468965517241031,-0.557142857142860,0.468965517241031,-0.542857142857183,0.475862068965185,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +5021,5034,5036,5049,0.462068965516876,-0.535714285714345,0.468965517241031,-0.542857142857183,0.468965517241031,-0.528571428571506,0.475862068965185,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,-0.000000000000000,2 +5022,5035,5037,5050,0.462068965516876,-0.521428571428709,0.468965517241031,-0.528571428571506,0.468965517241031,-0.514285714285913,0.475862068965185,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285594,0.000000000000000,2 +5023,5036,5038,5051,0.462068965516876,-0.507142857143103,0.468965517241031,-0.514285714285913,0.468965517241031,-0.500000000000293,0.475862068965185,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285620,0.000000000000000,2 +5024,5037,5039,5052,0.462068965516876,-0.492857142857421,0.468965517241031,-0.500000000000293,0.468965517241031,-0.485714285714549,0.475862068965185,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285744,0.000000000000000,2 +5025,5038,5040,5053,0.462068965516876,-0.478571428571672,0.468965517241031,-0.485714285714549,0.468965517241031,-0.471428571428794,0.475862068965185,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285755,0.000000000000000,2 +5026,5039,5041,5054,0.462068965516876,-0.464285714285914,0.468965517241031,-0.471428571428794,0.468965517241031,-0.457142857143034,0.475862068965185,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +5027,5040,5042,5055,0.462068965516876,-0.450000000000152,0.468965517241031,-0.457142857143034,0.468965517241031,-0.442857142857270,0.475862068965185,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 +5028,5041,5043,5056,0.462068965516876,-0.435714285714389,0.468965517241031,-0.442857142857270,0.468965517241031,-0.428571428571509,0.475862068965185,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +5029,5042,5044,5057,0.462068965516876,-0.421428571428633,0.468965517241031,-0.428571428571509,0.468965517241031,-0.414285714285756,0.475862068965185,-0.421428571428633,-0.014285714285753,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285753,-0.000000000000000,2 +5030,5043,5058,6292,0.462068965516876,-0.407142857142878,0.468965517241031,-0.414285714285756,0.475862068965185,-0.407142857142878,0.468965517241031,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,2 +869,5031,5046,5059,0.482758620689341,-0.600000000000000,0.475862068965185,-0.592857142857127,0.482758620689341,-0.585714285714255,0.489655172413498,-0.592857142857127,-0.000000000000000,-0.013793103448313,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448313,0.014285714285745,-0.000000000000000,2 +5032,5045,5047,5060,0.475862068965185,-0.578571428571396,0.482758620689341,-0.585714285714255,0.482758620689341,-0.571428571428537,0.489655172413498,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285717,0.000000000000000,2 +5033,5046,5048,5061,0.475862068965185,-0.564285714285699,0.482758620689341,-0.571428571428537,0.482758620689341,-0.557142857142860,0.489655172413498,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 +5034,5047,5049,5062,0.475862068965185,-0.550000000000022,0.482758620689341,-0.557142857142860,0.482758620689341,-0.542857142857183,0.489655172413498,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,-0.000000000000000,2 +5035,5048,5050,5063,0.475862068965185,-0.535714285714345,0.482758620689341,-0.542857142857183,0.482758620689342,-0.528571428571506,0.489655172413498,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 +5036,5049,5051,5064,0.475862068965185,-0.521428571428709,0.482758620689342,-0.528571428571506,0.482758620689341,-0.514285714285913,0.489655172413498,-0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285593,0.000000000000000,2 +5037,5050,5052,5065,0.475862068965185,-0.507142857143103,0.482758620689341,-0.514285714285913,0.482758620689341,-0.500000000000293,0.489655172413498,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285620,0.000000000000000,2 +5038,5051,5053,5066,0.475862068965185,-0.492857142857421,0.482758620689341,-0.500000000000293,0.482758620689341,-0.485714285714549,0.489655172413498,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.014285714285744,0.000000000000000,2 +5039,5052,5054,5067,0.475862068965185,-0.478571428571672,0.482758620689341,-0.485714285714549,0.482758620689341,-0.471428571428794,0.489655172413498,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285754,0.000000000000000,2 +5040,5053,5055,5068,0.475862068965185,-0.464285714285914,0.482758620689341,-0.471428571428794,0.482758620689341,-0.457142857143034,0.489655172413498,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 +5041,5054,5056,5069,0.475862068965185,-0.450000000000152,0.482758620689341,-0.457142857143034,0.482758620689341,-0.442857142857270,0.489655172413498,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285764,-0.000000000000000,2 +5042,5055,5057,5070,0.475862068965185,-0.435714285714389,0.482758620689341,-0.442857142857270,0.482758620689341,-0.428571428571509,0.489655172413498,-0.435714285714390,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 +5043,5056,5058,5071,0.475862068965185,-0.421428571428633,0.482758620689341,-0.428571428571509,0.482758620689341,-0.414285714285756,0.489655172413498,-0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285753,-0.000000000000000,2 +5044,5057,5072,6351,0.475862068965185,-0.407142857142878,0.482758620689341,-0.414285714285756,0.489655172413498,-0.407142857142878,0.482758620689341,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448313,0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448313,2 +875,5045,5060,5073,0.496551724137666,-0.600000000000000,0.489655172413498,-0.592857142857127,0.496551724137666,-0.585714285714255,0.503448275861834,-0.592857142857127,-0.000000000000000,-0.013793103448336,-0.014285714285745,0.000000000000000,0.000000000000000,0.013793103448336,0.014285714285745,-0.000000000000000,2 +5046,5059,5061,5074,0.489655172413498,-0.578571428571396,0.496551724137666,-0.585714285714255,0.496551724137666,-0.571428571428537,0.503448275861834,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285717,0.000000000000000,2 +5047,5060,5062,5075,0.489655172413498,-0.564285714285699,0.496551724137666,-0.571428571428537,0.496551724137666,-0.557142857142860,0.503448275861834,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285677,-0.000000000000000,2 +5048,5061,5063,5076,0.489655172413498,-0.550000000000022,0.496551724137666,-0.557142857142860,0.496551724137666,-0.542857142857183,0.503448275861834,-0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.014285714285677,0.000000000000000,2 +5049,5062,5064,5077,0.489655172413498,-0.535714285714345,0.496551724137666,-0.542857142857183,0.496551724137666,-0.528571428571506,0.503448275861834,-0.535714285714345,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285677,0.000000000000000,2 +5050,5063,5065,5078,0.489655172413498,-0.521428571428709,0.496551724137666,-0.528571428571506,0.496551724137666,-0.514285714285913,0.503448275861834,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285593,0.000000000000000,2 +5051,5064,5066,5079,0.489655172413498,-0.507142857143103,0.496551724137666,-0.514285714285913,0.496551724137666,-0.500000000000293,0.503448275861834,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285620,0.000000000000000,2 +5052,5065,5067,5080,0.489655172413498,-0.492857142857421,0.496551724137666,-0.500000000000293,0.496551724137666,-0.485714285714549,0.503448275861834,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285744,0.000000000000000,2 +5053,5066,5068,5081,0.489655172413498,-0.478571428571672,0.496551724137666,-0.485714285714549,0.496551724137666,-0.471428571428794,0.503448275861834,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.014285714285755,0.000000000000000,2 +5054,5067,5069,5082,0.489655172413498,-0.464285714285914,0.496551724137666,-0.471428571428794,0.496551724137666,-0.457142857143034,0.503448275861834,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.014285714285761,0.000000000000000,2 +5055,5068,5070,5083,0.489655172413498,-0.450000000000152,0.496551724137666,-0.457142857143034,0.496551724137666,-0.442857142857270,0.503448275861834,-0.450000000000152,-0.014285714285764,0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285764,-0.000000000000000,2 +5056,5069,5071,5084,0.489655172413498,-0.435714285714390,0.496551724137666,-0.442857142857270,0.496551724137666,-0.428571428571509,0.503448275861834,-0.435714285714390,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285761,0.000000000000000,2 +5057,5070,5072,5085,0.489655172413498,-0.421428571428633,0.496551724137666,-0.428571428571509,0.496551724137666,-0.414285714285756,0.503448275861834,-0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285753,0.000000000000000,2 +5058,5071,5086,6410,0.489655172413498,-0.407142857142878,0.496551724137666,-0.414285714285756,0.503448275861834,-0.407142857142878,0.496551724137666,-0.400000000000000,-0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448336,2 +881,5059,5074,5087,0.510344827585989,-0.600000000000000,0.503448275861834,-0.592857142857127,0.510344827585989,-0.585714285714255,0.517241379310145,-0.592857142857127,-0.000000000000000,-0.013793103448311,-0.014285714285745,0.000000000000000,0.000000000000000,0.013793103448311,0.014285714285745,0.000000000000000,2 +5060,5073,5075,5088,0.503448275861834,-0.578571428571396,0.510344827585989,-0.585714285714255,0.510344827585989,-0.571428571428537,0.517241379310145,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.014285714285717,-0.000000000000000,2 +5061,5074,5076,5089,0.503448275861834,-0.564285714285699,0.510344827585989,-0.571428571428537,0.510344827585989,-0.557142857142860,0.517241379310145,-0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +5062,5075,5077,5090,0.503448275861834,-0.550000000000022,0.510344827585989,-0.557142857142860,0.510344827585989,-0.542857142857183,0.517241379310145,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +5063,5076,5078,5091,0.503448275861834,-0.535714285714345,0.510344827585989,-0.542857142857183,0.510344827585989,-0.528571428571506,0.517241379310145,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +5064,5077,5079,5092,0.503448275861834,-0.521428571428709,0.510344827585989,-0.528571428571506,0.510344827585989,-0.514285714285913,0.517241379310145,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.014285714285593,-0.000000000000000,2 +5065,5078,5080,5093,0.503448275861834,-0.507142857143103,0.510344827585989,-0.514285714285913,0.510344827585989,-0.500000000000293,0.517241379310145,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448311,0.014285714285620,0.000000000000000,2 +5066,5079,5081,5094,0.503448275861834,-0.492857142857421,0.510344827585989,-0.500000000000293,0.510344827585989,-0.485714285714549,0.517241379310145,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.014285714285744,-0.000000000000000,2 +5067,5080,5082,5095,0.503448275861834,-0.478571428571672,0.510344827585989,-0.485714285714549,0.510344827585989,-0.471428571428794,0.517241379310145,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448311,0.014285714285754,0.000000000000000,2 +5068,5081,5083,5096,0.503448275861834,-0.464285714285914,0.510344827585989,-0.471428571428794,0.510344827585989,-0.457142857143034,0.517241379310145,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 +5069,5082,5084,5097,0.503448275861834,-0.450000000000152,0.510344827585989,-0.457142857143034,0.510344827585989,-0.442857142857270,0.517241379310145,-0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285764,0.000000000000000,2 +5070,5083,5085,5098,0.503448275861834,-0.435714285714390,0.510344827585989,-0.442857142857270,0.510344827585989,-0.428571428571509,0.517241379310145,-0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 +5071,5084,5086,5099,0.503448275861834,-0.421428571428633,0.510344827585989,-0.428571428571509,0.510344827585989,-0.414285714285756,0.517241379310145,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285753,0.000000000000000,2 +5072,5085,5100,6469,0.503448275861834,-0.407142857142878,0.510344827585989,-0.414285714285756,0.517241379310145,-0.407142857142878,0.510344827585989,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448311,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448311,2 +887,5073,5088,5101,0.524137931034299,-0.600000000000000,0.517241379310145,-0.592857142857127,0.524137931034299,-0.585714285714255,0.531034482758453,-0.592857142857127,-0.000000000000000,-0.013793103448308,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448308,0.014285714285745,0.000000000000000,2 +5074,5087,5089,5102,0.517241379310145,-0.578571428571396,0.524137931034299,-0.585714285714255,0.524137931034299,-0.571428571428537,0.531034482758453,-0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285717,0.000000000000000,2 +5075,5088,5090,5103,0.517241379310145,-0.564285714285699,0.524137931034299,-0.571428571428537,0.524137931034299,-0.557142857142860,0.531034482758453,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285677,0.000000000000000,2 +5076,5089,5091,5104,0.517241379310145,-0.550000000000022,0.524137931034299,-0.557142857142860,0.524137931034299,-0.542857142857183,0.531034482758453,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285677,0.000000000000000,2 +5077,5090,5092,5105,0.517241379310145,-0.535714285714345,0.524137931034299,-0.542857142857183,0.524137931034299,-0.528571428571506,0.531034482758453,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285677,0.000000000000000,2 +5078,5091,5093,5106,0.517241379310145,-0.521428571428709,0.524137931034299,-0.528571428571506,0.524137931034299,-0.514285714285913,0.531034482758453,-0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285593,-0.000000000000000,2 +5079,5092,5094,5107,0.517241379310145,-0.507142857143103,0.524137931034299,-0.514285714285913,0.524137931034299,-0.500000000000293,0.531034482758453,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285620,0.000000000000000,2 +5080,5093,5095,5108,0.517241379310145,-0.492857142857421,0.524137931034299,-0.500000000000293,0.524137931034299,-0.485714285714549,0.531034482758453,-0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285744,0.000000000000000,2 +5081,5094,5096,5109,0.517241379310145,-0.478571428571672,0.524137931034299,-0.485714285714549,0.524137931034299,-0.471428571428794,0.531034482758453,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285755,0.000000000000000,2 +5082,5095,5097,5110,0.517241379310145,-0.464285714285914,0.524137931034299,-0.471428571428794,0.524137931034299,-0.457142857143034,0.531034482758453,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.014285714285761,-0.000000000000000,2 +5083,5096,5098,5111,0.517241379310145,-0.450000000000152,0.524137931034299,-0.457142857143034,0.524137931034299,-0.442857142857270,0.531034482758453,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285764,0.000000000000000,2 +5084,5097,5099,5112,0.517241379310145,-0.435714285714389,0.524137931034299,-0.442857142857270,0.524137931034299,-0.428571428571509,0.531034482758453,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285761,0.000000000000000,2 +5085,5098,5100,5113,0.517241379310145,-0.421428571428633,0.524137931034299,-0.428571428571509,0.524137931034299,-0.414285714285756,0.531034482758453,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285753,0.000000000000000,2 +5086,5099,5114,6528,0.517241379310145,-0.407142857142878,0.524137931034299,-0.414285714285756,0.531034482758453,-0.407142857142878,0.524137931034299,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448308,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448308,2 +893,5087,5102,5115,0.537931034482601,-0.600000000000000,0.531034482758453,-0.592857142857127,0.537931034482601,-0.585714285714255,0.544827586206749,-0.592857142857127,-0.000000000000000,-0.013793103448296,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448296,0.014285714285745,0.000000000000000,2 +5088,5101,5103,5116,0.531034482758453,-0.578571428571396,0.537931034482601,-0.585714285714255,0.537931034482601,-0.571428571428537,0.544827586206749,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285718,0.000000000000000,2 +5089,5102,5104,5117,0.531034482758453,-0.564285714285699,0.537931034482601,-0.571428571428537,0.537931034482601,-0.557142857142860,0.544827586206749,-0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285677,-0.000000000000000,2 +5090,5103,5105,5118,0.531034482758453,-0.550000000000022,0.537931034482601,-0.557142857142860,0.537931034482601,-0.542857142857183,0.544827586206749,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285677,0.000000000000000,2 +5091,5104,5106,5119,0.531034482758453,-0.535714285714345,0.537931034482601,-0.542857142857183,0.537931034482601,-0.528571428571506,0.544827586206749,-0.535714285714345,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285677,0.000000000000000,2 +5092,5105,5107,5120,0.531034482758453,-0.521428571428709,0.537931034482601,-0.528571428571506,0.537931034482601,-0.514285714285913,0.544827586206749,-0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285593,0.000000000000000,2 +5093,5106,5108,5121,0.531034482758453,-0.507142857143103,0.537931034482601,-0.514285714285913,0.537931034482601,-0.500000000000293,0.544827586206749,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285620,0.000000000000000,2 +5094,5107,5109,5122,0.531034482758453,-0.492857142857421,0.537931034482601,-0.500000000000293,0.537931034482601,-0.485714285714549,0.544827586206749,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285744,0.000000000000000,2 +5095,5108,5110,5123,0.531034482758453,-0.478571428571672,0.537931034482601,-0.485714285714549,0.537931034482601,-0.471428571428794,0.544827586206749,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285755,0.000000000000000,2 +5096,5109,5111,5124,0.531034482758453,-0.464285714285914,0.537931034482601,-0.471428571428794,0.537931034482601,-0.457142857143033,0.544827586206749,-0.464285714285914,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285761,0.000000000000000,2 +5097,5110,5112,5125,0.531034482758453,-0.450000000000152,0.537931034482601,-0.457142857143033,0.537931034482601,-0.442857142857270,0.544827586206749,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285764,0.000000000000000,2 +5098,5111,5113,5126,0.531034482758453,-0.435714285714389,0.537931034482601,-0.442857142857270,0.537931034482601,-0.428571428571509,0.544827586206749,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285761,-0.000000000000000,2 +5099,5112,5114,5127,0.531034482758453,-0.421428571428633,0.537931034482601,-0.428571428571509,0.537931034482601,-0.414285714285756,0.544827586206749,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285753,0.000000000000000,2 +5100,5113,5128,6587,0.531034482758453,-0.407142857142878,0.537931034482601,-0.414285714285756,0.544827586206749,-0.407142857142878,0.537931034482601,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448296,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448296,2 +899,5101,5116,5129,0.551724137930900,-0.600000000000000,0.544827586206749,-0.592857142857127,0.551724137930900,-0.585714285714255,0.558620689655051,-0.592857142857127,-0.000000000000000,-0.013793103448302,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448301,0.014285714285745,0.000000000000000,2 +5102,5115,5117,5130,0.544827586206749,-0.578571428571396,0.551724137930900,-0.585714285714255,0.551724137930900,-0.571428571428537,0.558620689655051,-0.578571428571396,-0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448302,0.014285714285717,-0.000000000000000,2 +5103,5116,5118,5131,0.544827586206749,-0.564285714285699,0.551724137930900,-0.571428571428537,0.551724137930900,-0.557142857142860,0.558620689655051,-0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285677,0.000000000000000,2 +5104,5117,5119,5132,0.544827586206749,-0.550000000000022,0.551724137930900,-0.557142857142860,0.551724137930900,-0.542857142857183,0.558620689655051,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285677,-0.000000000000000,2 +5105,5118,5120,5133,0.544827586206749,-0.535714285714345,0.551724137930900,-0.542857142857183,0.551724137930900,-0.528571428571506,0.558620689655051,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285677,0.000000000000000,2 +5106,5119,5121,5134,0.544827586206749,-0.521428571428709,0.551724137930900,-0.528571428571506,0.551724137930900,-0.514285714285913,0.558620689655051,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285593,0.000000000000000,2 +5107,5120,5122,5135,0.544827586206749,-0.507142857143103,0.551724137930900,-0.514285714285913,0.551724137930900,-0.500000000000293,0.558620689655051,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285620,-0.000000000000000,2 +5108,5121,5123,5136,0.544827586206749,-0.492857142857421,0.551724137930900,-0.500000000000293,0.551724137930900,-0.485714285714549,0.558620689655051,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285744,0.000000000000000,2 +5109,5122,5124,5137,0.544827586206749,-0.478571428571672,0.551724137930900,-0.485714285714549,0.551724137930900,-0.471428571428794,0.558620689655051,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285755,0.000000000000000,2 +5110,5123,5125,5138,0.544827586206749,-0.464285714285914,0.551724137930900,-0.471428571428794,0.551724137930900,-0.457142857143033,0.558620689655051,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285761,0.000000000000000,2 +5111,5124,5126,5139,0.544827586206749,-0.450000000000152,0.551724137930900,-0.457142857143033,0.551724137930900,-0.442857142857270,0.558620689655051,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285764,-0.000000000000000,2 +5112,5125,5127,5140,0.544827586206749,-0.435714285714389,0.551724137930900,-0.442857142857270,0.551724137930900,-0.428571428571509,0.558620689655051,-0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285761,0.000000000000000,2 +5113,5126,5128,5141,0.544827586206749,-0.421428571428633,0.551724137930900,-0.428571428571509,0.551724137930900,-0.414285714285756,0.558620689655051,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285753,0.000000000000000,2 +5114,5127,5142,6646,0.544827586206749,-0.407142857142878,0.551724137930900,-0.414285714285756,0.558620689655051,-0.407142857142878,0.551724137930900,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448302,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448302,2 +905,5115,5130,5143,0.565517241379205,-0.600000000000000,0.558620689655051,-0.592857142857127,0.565517241379205,-0.585714285714255,0.572413793103360,-0.592857142857127,-0.000000000000000,-0.013793103448309,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285745,0.000000000000000,2 +5116,5129,5131,5144,0.558620689655051,-0.578571428571396,0.565517241379205,-0.585714285714255,0.565517241379205,-0.571428571428537,0.572413793103360,-0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 +5117,5130,5132,5145,0.558620689655051,-0.564285714285699,0.565517241379205,-0.571428571428537,0.565517241379205,-0.557142857142860,0.572413793103360,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +5118,5131,5133,5146,0.558620689655051,-0.550000000000022,0.565517241379205,-0.557142857142860,0.565517241379205,-0.542857142857183,0.572413793103360,-0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +5119,5132,5134,5147,0.558620689655051,-0.535714285714345,0.565517241379205,-0.542857142857183,0.565517241379205,-0.528571428571506,0.572413793103360,-0.535714285714345,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,-0.000000000000000,2 +5120,5133,5135,5148,0.558620689655051,-0.521428571428709,0.565517241379205,-0.528571428571506,0.565517241379205,-0.514285714285913,0.572413793103360,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285594,0.000000000000000,2 +5121,5134,5136,5149,0.558620689655051,-0.507142857143103,0.565517241379205,-0.514285714285913,0.565517241379205,-0.500000000000293,0.572413793103360,-0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285620,-0.000000000000000,2 +5122,5135,5137,5150,0.558620689655051,-0.492857142857421,0.565517241379205,-0.500000000000293,0.565517241379205,-0.485714285714549,0.572413793103360,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285744,0.000000000000000,2 +5123,5136,5138,5151,0.558620689655051,-0.478571428571672,0.565517241379205,-0.485714285714549,0.565517241379205,-0.471428571428794,0.572413793103360,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285755,0.000000000000000,2 +5124,5137,5139,5152,0.558620689655051,-0.464285714285914,0.565517241379205,-0.471428571428794,0.565517241379205,-0.457142857143033,0.572413793103360,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +5125,5138,5140,5153,0.558620689655051,-0.450000000000152,0.565517241379205,-0.457142857143033,0.565517241379205,-0.442857142857270,0.572413793103360,-0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 +5126,5139,5141,5154,0.558620689655051,-0.435714285714389,0.565517241379205,-0.442857142857270,0.565517241379205,-0.428571428571509,0.572413793103360,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +5127,5140,5142,5155,0.558620689655051,-0.421428571428633,0.565517241379205,-0.428571428571509,0.565517241379205,-0.414285714285756,0.572413793103360,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285753,0.000000000000000,2 +5128,5141,5156,6705,0.558620689655051,-0.407142857142878,0.565517241379205,-0.414285714285756,0.572413793103360,-0.407142857142878,0.565517241379205,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,2 +911,5129,5144,5157,0.579310344827519,-0.600000000000000,0.572413793103360,-0.592857142857127,0.579310344827519,-0.585714285714255,0.586206896551678,-0.592857142857127,-0.000000000000000,-0.013793103448318,-0.014285714285745,-0.000000000000000,-0.000000000000000,0.013793103448318,0.014285714285745,0.000000000000000,2 +5130,5143,5145,5158,0.572413793103360,-0.578571428571396,0.579310344827519,-0.585714285714255,0.579310344827519,-0.571428571428537,0.586206896551678,-0.578571428571396,-0.014285714285717,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285717,0.000000000000000,2 +5131,5144,5146,5159,0.572413793103360,-0.564285714285699,0.579310344827519,-0.571428571428537,0.579310344827519,-0.557142857142860,0.586206896551678,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285677,-0.000000000000000,2 +5132,5145,5147,5160,0.572413793103360,-0.550000000000022,0.579310344827519,-0.557142857142860,0.579310344827519,-0.542857142857183,0.586206896551678,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285677,-0.000000000000000,2 +5133,5146,5148,5161,0.572413793103360,-0.535714285714345,0.579310344827519,-0.542857142857183,0.579310344827519,-0.528571428571506,0.586206896551678,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285677,0.000000000000000,2 +5134,5147,5149,5162,0.572413793103360,-0.521428571428709,0.579310344827519,-0.528571428571506,0.579310344827519,-0.514285714285913,0.586206896551678,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285594,0.000000000000000,2 +5135,5148,5150,5163,0.572413793103360,-0.507142857143103,0.579310344827519,-0.514285714285913,0.579310344827519,-0.500000000000293,0.586206896551678,-0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285620,0.000000000000000,2 +5136,5149,5151,5164,0.572413793103360,-0.492857142857421,0.579310344827519,-0.500000000000293,0.579310344827519,-0.485714285714549,0.586206896551678,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.014285714285744,-0.000000000000000,2 +5137,5150,5152,5165,0.572413793103360,-0.478571428571672,0.579310344827519,-0.485714285714549,0.579310344827519,-0.471428571428794,0.586206896551678,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285754,0.000000000000000,2 +5138,5151,5153,5166,0.572413793103360,-0.464285714285914,0.579310344827519,-0.471428571428794,0.579310344827519,-0.457142857143033,0.586206896551678,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285761,0.000000000000000,2 +5139,5152,5154,5167,0.572413793103360,-0.450000000000152,0.579310344827519,-0.457142857143033,0.579310344827519,-0.442857142857270,0.586206896551678,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285764,0.000000000000000,2 +5140,5153,5155,5168,0.572413793103360,-0.435714285714389,0.579310344827519,-0.442857142857270,0.579310344827519,-0.428571428571509,0.586206896551678,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285761,0.000000000000000,2 +5141,5154,5156,5169,0.572413793103360,-0.421428571428633,0.579310344827519,-0.428571428571509,0.579310344827519,-0.414285714285756,0.586206896551678,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285753,0.000000000000000,2 +5142,5155,5170,6764,0.572413793103360,-0.407142857142878,0.579310344827519,-0.414285714285756,0.586206896551678,-0.407142857142878,0.579310344827519,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448318,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448318,2 +917,942,5143,5158,0.593103448275839,-0.600000000000000,0.600000000000000,-0.592857142857127,0.586206896551678,-0.592857142857127,0.593103448275839,-0.585714285714255,0.000000000000000,-0.013793103448322,0.014285714285745,0.000000000000000,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448322,2 +943,5144,5157,5159,0.600000000000000,-0.578571428571396,0.586206896551678,-0.578571428571396,0.593103448275839,-0.585714285714255,0.593103448275839,-0.571428571428537,0.014285714285717,0.000000000000000,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +944,5145,5158,5160,0.600000000000000,-0.564285714285699,0.586206896551678,-0.564285714285699,0.593103448275839,-0.571428571428537,0.593103448275839,-0.557142857142860,0.014285714285677,0.000000000000000,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +945,5146,5159,5161,0.600000000000000,-0.550000000000022,0.586206896551678,-0.550000000000022,0.593103448275839,-0.557142857142860,0.593103448275839,-0.542857142857183,0.014285714285677,0.000000000000000,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +946,5147,5160,5162,0.600000000000000,-0.535714285714345,0.586206896551678,-0.535714285714345,0.593103448275839,-0.542857142857183,0.593103448275839,-0.528571428571506,0.014285714285677,0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +947,5148,5161,5163,0.600000000000000,-0.521428571428709,0.586206896551678,-0.521428571428709,0.593103448275839,-0.528571428571506,0.593103448275839,-0.514285714285913,0.014285714285593,0.000000000000000,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +948,5149,5162,5164,0.600000000000000,-0.507142857143103,0.586206896551678,-0.507142857143103,0.593103448275839,-0.514285714285913,0.593103448275839,-0.500000000000293,0.014285714285620,0.000000000000000,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +949,5150,5163,5165,0.600000000000000,-0.492857142857421,0.586206896551678,-0.492857142857421,0.593103448275839,-0.500000000000293,0.593103448275839,-0.485714285714549,0.014285714285744,0.000000000000000,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +950,5151,5164,5166,0.600000000000000,-0.478571428571672,0.586206896551678,-0.478571428571672,0.593103448275839,-0.485714285714549,0.593103448275839,-0.471428571428794,0.014285714285754,0.000000000000000,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +951,5152,5165,5167,0.600000000000000,-0.464285714285914,0.586206896551678,-0.464285714285914,0.593103448275839,-0.471428571428794,0.593103448275839,-0.457142857143034,0.014285714285761,0.000000000000000,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +952,5153,5166,5168,0.600000000000000,-0.450000000000152,0.586206896551678,-0.450000000000152,0.593103448275839,-0.457142857143034,0.593103448275839,-0.442857142857270,0.014285714285764,0.000000000000000,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +953,5154,5167,5169,0.600000000000000,-0.435714285714389,0.586206896551678,-0.435714285714389,0.593103448275839,-0.442857142857270,0.593103448275839,-0.428571428571509,0.014285714285761,0.000000000000000,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +954,5155,5168,5170,0.600000000000000,-0.421428571428633,0.586206896551678,-0.421428571428633,0.593103448275839,-0.428571428571509,0.593103448275839,-0.414285714285756,0.014285714285753,0.000000000000000,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +955,5156,5169,6823,0.600000000000000,-0.407142857142878,0.586206896551678,-0.407142857142878,0.593103448275839,-0.414285714285756,0.593103448275839,-0.400000000000000,0.014285714285756,-0.000000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +4778,5172,5230,9332,0.206896551724127,-0.400000000000000,0.206896551724127,-0.386440677966068,0.213793103448254,-0.393220338983034,0.200000000000000,-0.393220338983034,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033932,0.000000000000000,-0.013559322033932,-0.000000000000000,2 +5171,5173,5231,9333,0.206896551724127,-0.386440677966068,0.206896551724127,-0.372881355932122,0.213793103448254,-0.379661016949095,0.200000000000000,-0.379661016949095,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033946,0.000000000000000,-0.013559322033946,0.000000000000000,2 +5172,5174,5232,9334,0.206896551724127,-0.372881355932122,0.206896551724127,-0.359322033898204,0.213793103448254,-0.366101694915163,0.200000000000000,-0.366101694915163,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033918,0.000000000000000,-0.013559322033918,0.000000000000000,2 +5173,5175,5233,9335,0.206896551724127,-0.359322033898204,0.206896551724127,-0.345762711864250,0.213793103448254,-0.352542372881227,0.200000000000000,-0.352542372881227,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033954,0.000000000000000,-0.013559322033954,0.000000000000000,2 +5174,5176,5234,9336,0.206896551724127,-0.345762711864250,0.206896551724127,-0.332203389830336,0.213793103448254,-0.338983050847293,0.200000000000000,-0.338983050847293,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033914,0.000000000000000,-0.013559322033914,0.000000000000000,2 +5175,5177,5235,9337,0.206896551724127,-0.332203389830336,0.206896551724127,-0.318644067796385,0.213793103448254,-0.325423728813361,0.200000000000000,-0.325423728813361,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033951,-0.000000000000000,-0.013559322033950,0.000000000000000,2 +5176,5178,5236,9338,0.206896551724127,-0.318644067796385,0.206896551724127,-0.305084745762457,0.213793103448254,-0.311864406779421,0.200000000000000,-0.311864406779421,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033928,0.000000000000000,-0.013559322033928,0.000000000000000,2 +5177,5179,5237,9339,0.206896551724127,-0.305084745762457,0.206896551724127,-0.291525423728521,0.213793103448254,-0.298305084745489,0.200000000000000,-0.298305084745489,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033936,0.000000000000000,-0.013559322033936,0.000000000000000,2 +5178,5180,5238,9340,0.206896551724127,-0.291525423728521,0.206896551724127,-0.277966101694579,0.213793103448254,-0.284745762711550,0.200000000000000,-0.284745762711550,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033942,0.000000000000000,-0.013559322033942,0.000000000000000,2 +5179,5181,5239,9341,0.206896551724127,-0.277966101694579,0.206896551724127,-0.264406779660657,0.213793103448254,-0.271186440677618,0.200000000000000,-0.271186440677618,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033922,-0.000000000000000,-0.013559322033922,0.000000000000000,2 +5180,5182,5240,9342,0.206896551724127,-0.264406779660657,0.206896551724127,-0.250847457626703,0.213793103448254,-0.257627118643680,0.200000000000000,-0.257627118643680,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033954,0.000000000000000,-0.013559322033954,0.000000000000000,2 +5181,5183,5241,9343,0.206896551724127,-0.250847457626703,0.206896551724127,-0.237288135592793,0.213793103448254,-0.244067796609748,0.200000000000000,-0.244067796609748,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033910,0.000000000000000,-0.013559322033910,0.000000000000000,2 +5182,5184,5242,9344,0.206896551724127,-0.237288135592793,0.206896551724127,-0.223728813558839,0.213793103448254,-0.230508474575816,0.200000000000000,-0.230508474575816,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033954,0.000000000000000,-0.013559322033954,0.000000000000000,2 +5183,5185,5243,9345,0.206896551724127,-0.223728813558839,0.206896551724127,-0.210169491524915,0.213793103448254,-0.216949152541877,0.200000000000000,-0.216949152541877,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033924,0.000000000000000,-0.013559322033924,0.000000000000000,2 +5184,5186,5244,9346,0.206896551724127,-0.210169491524915,0.206896551724127,-0.196610169490975,0.213793103448254,-0.203389830507945,0.200000000000000,-0.203389830507945,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033940,0.000000000000000,-0.013559322033940,0.000000000000000,2 +5185,5187,5245,9347,0.206896551724127,-0.196610169490975,0.206896551724127,-0.183050847457058,0.213793103448254,-0.189830508474016,0.200000000000000,-0.189830508474016,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033917,0.000000000000000,-0.013559322033917,0.000000000000000,2 +5186,5188,5246,9348,0.206896551724127,-0.183050847457058,0.206896551724127,-0.169491525423110,0.213793103448254,-0.176271186440084,0.200000000000000,-0.176271186440084,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033947,-0.000000000000000,-0.013559322033947,0.000000000000000,2 +5187,5189,5247,9349,0.206896551724127,-0.169491525423110,0.206896551724127,-0.155932203389179,0.213793103448254,-0.162711864406145,0.200000000000000,-0.162711864406145,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033931,0.000000000000000,-0.013559322033931,0.000000000000000,2 +5188,5190,5248,9350,0.206896551724127,-0.155932203389179,0.206896551724127,-0.142372881355246,0.213793103448254,-0.149152542372213,0.200000000000000,-0.149152542372213,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033933,0.000000000000000,-0.013559322033933,0.000000000000000,2 +5189,5191,5249,9351,0.206896551724127,-0.142372881355246,0.206896551724127,-0.128813559321301,0.213793103448254,-0.135593220338274,0.200000000000000,-0.135593220338273,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033945,-0.000000000000000,-0.013559322033945,0.000000000000000,2 +5190,5192,5250,9352,0.206896551724127,-0.128813559321301,0.206896551724127,-0.115254237287382,0.213793103448254,-0.122033898304341,0.200000000000000,-0.122033898304341,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033919,0.000000000000000,-0.013559322033919,0.000000000000000,2 +5191,5193,5251,9353,0.206896551724127,-0.115254237287382,0.206896551724127,-0.101694915253436,0.213793103448254,-0.108474576270409,0.200000000000000,-0.108474576270409,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033946,0.000000000000000,-0.013559322033946,0.000000000000000,2 +5192,5194,5252,9354,0.206896551724127,-0.101694915253436,0.206896551724127,-0.088135593219506,0.213793103448254,-0.094915254236471,0.200000000000000,-0.094915254236471,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033930,0.000000000000000,-0.013559322033930,0.000000000000000,2 +5193,5195,5253,9355,0.206896551724127,-0.088135593219506,0.206896551724127,-0.074576271185565,0.213793103448254,-0.081355932202535,0.200000000000000,-0.081355932202535,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033941,0.000000000000000,-0.013559322033941,0.000000000000000,2 +5194,5196,5254,9356,0.206896551724127,-0.074576271185565,0.206896551724127,-0.061016949151634,0.213793103448254,-0.067796610168599,0.200000000000000,-0.067796610168599,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033930,0.000000000000000,-0.013559322033930,0.000000000000000,2 +5195,5197,5255,9357,0.206896551724127,-0.061016949151634,0.206896551724127,-0.047457627117699,0.213793103448254,-0.054237288134667,0.200000000000000,-0.054237288134667,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033935,0.000000000000000,-0.013559322033935,0.000000000000000,2 +5196,5198,5256,9358,0.206896551724127,-0.047457627117699,0.206896551724127,-0.033898305083763,0.213793103448254,-0.040677966100731,0.200000000000000,-0.040677966100731,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033937,0.000000000000000,-0.013559322033937,0.000000000000000,2 +5197,5199,5257,9359,0.206896551724127,-0.033898305083763,0.206896551724127,-0.020338983049833,0.213793103448254,-0.027118644066798,0.200000000000000,-0.027118644066798,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033930,0.000000000000000,-0.013559322033930,0.000000000000000,2 +5198,5200,5258,9360,0.206896551724127,-0.020338983049833,0.206896551724127,-0.006779661015891,0.213793103448254,-0.013559322032862,0.200000000000000,-0.013559322032862,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033941,0.000000000000000,-0.013559322033941,0.000000000000000,2 +5199,5201,5259,9361,0.206896551724127,-0.006779661015891,0.206896551724127,0.006779661018004,0.213793103448254,0.000000000001056,0.200000000000000,0.000000000001056,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033895,0.000000000000000,-0.013559322033895,0.000000000000000,2 +5200,5202,5260,9362,0.206896551724127,0.006779661018004,0.206896551724127,0.020338983051863,0.213793103448254,0.013559322034933,0.200000000000000,0.013559322034933,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5201,5203,5261,9363,0.206896551724127,0.020338983051863,0.206896551724127,0.033898305085723,0.213793103448254,0.027118644068793,0.200000000000000,0.027118644068793,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5202,5204,5262,9364,0.206896551724127,0.033898305085723,0.206896551724127,0.047457627119583,0.213793103448254,0.040677966102653,0.200000000000000,0.040677966102653,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5203,5205,5263,9365,0.206896551724127,0.047457627119583,0.206896551724127,0.061016949153442,0.213793103448254,0.054237288136513,0.200000000000000,0.054237288136513,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5204,5206,5264,9366,0.206896551724127,0.061016949153442,0.206896551724127,0.074576271187302,0.213793103448254,0.067796610170372,0.200000000000000,0.067796610170372,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5205,5207,5265,9367,0.206896551724127,0.074576271187302,0.206896551724127,0.088135593221162,0.213793103448254,0.081355932204232,0.200000000000000,0.081355932204232,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5206,5208,5266,9368,0.206896551724127,0.088135593221162,0.206896551724127,0.101694915255008,0.213793103448254,0.094915254238085,0.200000000000000,0.094915254238085,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033846,0.000000000000000,-0.013559322033846,0.000000000000000,2 +5207,5209,5267,9369,0.206896551724127,0.101694915255008,0.206896551724127,0.115254237288859,0.213793103448254,0.108474576271933,0.200000000000000,0.108474576271933,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033852,0.000000000000000,-0.013559322033852,0.000000000000000,2 +5208,5210,5268,9370,0.206896551724127,0.115254237288859,0.206896551724127,0.128813559322719,0.213793103448254,0.122033898305789,0.200000000000000,0.122033898305789,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5209,5211,5269,9371,0.206896551724127,0.128813559322719,0.206896551724127,0.142372881356579,0.213793103448254,0.135593220339649,0.200000000000000,0.135593220339649,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5210,5212,5270,9372,0.206896551724127,0.142372881356579,0.206896551724127,0.155932203390438,0.213793103448254,0.149152542373509,0.200000000000000,0.149152542373509,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5211,5213,5271,9373,0.206896551724127,0.155932203390438,0.206896551724127,0.169491525424298,0.213793103448254,0.162711864407368,0.200000000000000,0.162711864407368,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 +5212,5214,5272,9374,0.206896551724127,0.169491525424298,0.206896551724127,0.183050847458158,0.213793103448254,0.176271186441228,0.200000000000000,0.176271186441228,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5213,5215,5273,9375,0.206896551724127,0.183050847458158,0.206896551724127,0.196610169492017,0.213793103448254,0.189830508475088,0.200000000000000,0.189830508475088,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5214,5216,5274,9376,0.206896551724127,0.196610169492017,0.206896551724127,0.210169491525877,0.213793103448254,0.203389830508947,0.200000000000000,0.203389830508947,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 +5215,5217,5275,9377,0.206896551724127,0.210169491525877,0.206896551724127,0.223728813559737,0.213793103448254,0.216949152542807,0.200000000000000,0.216949152542807,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5216,5218,5276,9378,0.206896551724127,0.223728813559737,0.206896551724127,0.237288135593597,0.213793103448254,0.230508474576667,0.200000000000000,0.230508474576667,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5217,5219,5277,9379,0.206896551724127,0.237288135593597,0.206896551724127,0.250847457627456,0.213793103448254,0.244067796610527,0.200000000000000,0.244067796610526,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5218,5220,5278,9380,0.206896551724127,0.250847457627456,0.206896551724127,0.264406779661316,0.213793103448254,0.257627118644386,0.200000000000000,0.257627118644386,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5219,5221,5279,9381,0.206896551724127,0.264406779661316,0.206896551724127,0.277966101695176,0.213793103448254,0.271186440678246,0.200000000000000,0.271186440678246,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5220,5222,5280,9382,0.206896551724127,0.277966101695176,0.206896551724127,0.291525423729036,0.213793103448254,0.284745762712106,0.200000000000000,0.284745762712106,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 +5221,5223,5281,9383,0.206896551724127,0.291525423729036,0.206896551724127,0.305084745762915,0.213793103448254,0.298305084745975,0.200000000000000,0.298305084745975,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033879,0.000000000000000,-0.013559322033879,0.000000000000000,2 +5222,5224,5282,9384,0.206896551724127,0.305084745762915,0.206896551724127,0.318644067796787,0.213793103448254,0.311864406779851,0.200000000000000,0.311864406779851,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033872,0.000000000000000,-0.013559322033872,0.000000000000000,2 +5223,5225,5283,9385,0.206896551724127,0.318644067796787,0.206896551724127,0.332203389830670,0.213793103448254,0.325423728813729,0.200000000000000,0.325423728813729,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033883,0.000000000000000,-0.013559322033883,0.000000000000000,2 +5224,5226,5284,9386,0.206896551724127,0.332203389830670,0.206896551724127,0.345762711864539,0.213793103448254,0.338983050847605,0.200000000000000,0.338983050847605,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033869,0.000000000000000,-0.013559322033869,0.000000000000000,2 +5225,5227,5285,9387,0.206896551724127,0.345762711864539,0.206896551724127,0.359322033898399,0.213793103448254,0.352542372881469,0.200000000000000,0.352542372881469,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5226,5228,5286,9388,0.206896551724127,0.359322033898399,0.206896551724127,0.372881355932259,0.213793103448254,0.366101694915329,0.200000000000000,0.366101694915329,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5227,5229,5287,9389,0.206896551724127,0.372881355932259,0.206896551724127,0.386440677966119,0.213793103448254,0.379661016949189,0.200000000000000,0.379661016949189,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 +5228,5288,6882,9390,0.206896551724127,0.386440677966119,0.213793103448254,0.393220338983059,0.206896551724127,0.400000000000000,0.200000000000000,0.393220338983059,-0.000000000000000,-0.013793103448254,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448254,-0.013559322033881,0.000000000000000,2 +4792,5171,5231,5289,0.220689655172375,-0.400000000000000,0.213793103448254,-0.393220338983034,0.220689655172375,-0.386440677966068,0.227586206896496,-0.393220338983034,-0.000000000000000,-0.013793103448243,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448243,0.013559322033932,0.000000000000000,2 +5172,5230,5232,5290,0.213793103448254,-0.379661016949095,0.220689655172375,-0.386440677966068,0.220689655172375,-0.372881355932122,0.227586206896496,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033946,-0.000000000000000,2 +5173,5231,5233,5291,0.213793103448254,-0.366101694915163,0.220689655172375,-0.372881355932122,0.220689655172375,-0.359322033898204,0.227586206896496,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033918,0.000000000000000,2 +5174,5232,5234,5292,0.213793103448254,-0.352542372881227,0.220689655172375,-0.359322033898204,0.220689655172375,-0.345762711864250,0.227586206896496,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033954,0.000000000000000,2 +5175,5233,5235,5293,0.213793103448254,-0.338983050847293,0.220689655172375,-0.345762711864250,0.220689655172375,-0.332203389830336,0.227586206896496,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033914,0.000000000000000,2 +5176,5234,5236,5294,0.213793103448254,-0.325423728813361,0.220689655172375,-0.332203389830336,0.220689655172375,-0.318644067796385,0.227586206896496,-0.325423728813361,-0.013559322033951,0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033950,0.000000000000000,2 +5177,5235,5237,5295,0.213793103448254,-0.311864406779421,0.220689655172375,-0.318644067796385,0.220689655172375,-0.305084745762457,0.227586206896496,-0.311864406779421,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033928,0.000000000000000,2 +5178,5236,5238,5296,0.213793103448254,-0.298305084745489,0.220689655172375,-0.305084745762457,0.220689655172375,-0.291525423728521,0.227586206896496,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033936,-0.000000000000000,2 +5179,5237,5239,5297,0.213793103448254,-0.284745762711550,0.220689655172375,-0.291525423728521,0.220689655172375,-0.277966101694579,0.227586206896496,-0.284745762711550,-0.013559322033942,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033942,0.000000000000000,2 +5180,5238,5240,5298,0.213793103448254,-0.271186440677618,0.220689655172375,-0.277966101694579,0.220689655172375,-0.264406779660657,0.227586206896496,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033922,-0.000000000000000,2 +5181,5239,5241,5299,0.213793103448254,-0.257627118643680,0.220689655172375,-0.264406779660657,0.220689655172375,-0.250847457626703,0.227586206896496,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033954,0.000000000000000,2 +5182,5240,5242,5300,0.213793103448254,-0.244067796609748,0.220689655172375,-0.250847457626703,0.220689655172375,-0.237288135592793,0.227586206896496,-0.244067796609748,-0.013559322033910,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033910,0.000000000000000,2 +5183,5241,5243,5301,0.213793103448254,-0.230508474575816,0.220689655172375,-0.237288135592793,0.220689655172375,-0.223728813558839,0.227586206896496,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033954,0.000000000000000,2 +5184,5242,5244,5302,0.213793103448254,-0.216949152541877,0.220689655172375,-0.223728813558839,0.220689655172375,-0.210169491524915,0.227586206896496,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033924,0.000000000000000,2 +5185,5243,5245,5303,0.213793103448254,-0.203389830507945,0.220689655172375,-0.210169491524915,0.220689655172375,-0.196610169490975,0.227586206896496,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033940,0.000000000000000,2 +5186,5244,5246,5304,0.213793103448254,-0.189830508474016,0.220689655172375,-0.196610169490975,0.220689655172375,-0.183050847457058,0.227586206896496,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033917,0.000000000000000,2 +5187,5245,5247,5305,0.213793103448254,-0.176271186440084,0.220689655172375,-0.183050847457058,0.220689655172375,-0.169491525423110,0.227586206896496,-0.176271186440084,-0.013559322033947,0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033947,0.000000000000000,2 +5188,5246,5248,5306,0.213793103448254,-0.162711864406145,0.220689655172375,-0.169491525423110,0.220689655172375,-0.155932203389179,0.227586206896496,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033931,-0.000000000000000,2 +5189,5247,5249,5307,0.213793103448254,-0.149152542372213,0.220689655172375,-0.155932203389179,0.220689655172375,-0.142372881355246,0.227586206896496,-0.149152542372213,-0.013559322033933,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033933,0.000000000000000,2 +5190,5248,5250,5308,0.213793103448254,-0.135593220338274,0.220689655172375,-0.142372881355246,0.220689655172375,-0.128813559321301,0.227586206896496,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033945,0.000000000000000,2 +5191,5249,5251,5309,0.213793103448254,-0.122033898304341,0.220689655172375,-0.128813559321301,0.220689655172375,-0.115254237287382,0.227586206896496,-0.122033898304341,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033919,0.000000000000000,2 +5192,5250,5252,5310,0.213793103448254,-0.108474576270409,0.220689655172375,-0.115254237287382,0.220689655172375,-0.101694915253436,0.227586206896496,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033946,0.000000000000000,2 +5193,5251,5253,5311,0.213793103448254,-0.094915254236471,0.220689655172375,-0.101694915253436,0.220689655172375,-0.088135593219506,0.227586206896496,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033930,0.000000000000000,2 +5194,5252,5254,5312,0.213793103448254,-0.081355932202535,0.220689655172375,-0.088135593219506,0.220689655172375,-0.074576271185564,0.227586206896496,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033941,0.000000000000000,2 +5195,5253,5255,5313,0.213793103448254,-0.067796610168599,0.220689655172375,-0.074576271185564,0.220689655172375,-0.061016949151634,0.227586206896496,-0.067796610168599,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033930,0.000000000000000,2 +5196,5254,5256,5314,0.213793103448254,-0.054237288134667,0.220689655172375,-0.061016949151634,0.220689655172375,-0.047457627117699,0.227586206896496,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033935,0.000000000000000,2 +5197,5255,5257,5315,0.213793103448254,-0.040677966100731,0.220689655172375,-0.047457627117699,0.220689655172375,-0.033898305083763,0.227586206896496,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033937,-0.000000000000000,2 +5198,5256,5258,5316,0.213793103448254,-0.027118644066798,0.220689655172375,-0.033898305083763,0.220689655172375,-0.020338983049833,0.227586206896496,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033930,0.000000000000000,2 +5199,5257,5259,5317,0.213793103448254,-0.013559322032862,0.220689655172375,-0.020338983049833,0.220689655172375,-0.006779661015891,0.227586206896496,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033941,0.000000000000000,2 +5200,5258,5260,5318,0.213793103448254,0.000000000001056,0.220689655172375,-0.006779661015891,0.220689655172375,0.006779661018004,0.227586206896496,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033895,0.000000000000000,2 +5201,5259,5261,5319,0.213793103448254,0.013559322034933,0.220689655172375,0.006779661018004,0.220689655172375,0.020338983051863,0.227586206896496,0.013559322034934,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5202,5260,5262,5320,0.213793103448254,0.027118644068793,0.220689655172375,0.020338983051863,0.220689655172375,0.033898305085723,0.227586206896496,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5203,5261,5263,5321,0.213793103448254,0.040677966102653,0.220689655172375,0.033898305085723,0.220689655172375,0.047457627119583,0.227586206896496,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5204,5262,5264,5322,0.213793103448254,0.054237288136513,0.220689655172375,0.047457627119583,0.220689655172375,0.061016949153442,0.227586206896496,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5205,5263,5265,5323,0.213793103448254,0.067796610170372,0.220689655172375,0.061016949153442,0.220689655172375,0.074576271187302,0.227586206896496,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5206,5264,5266,5324,0.213793103448254,0.081355932204232,0.220689655172375,0.074576271187302,0.220689655172375,0.088135593221162,0.227586206896496,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5207,5265,5267,5325,0.213793103448254,0.094915254238085,0.220689655172375,0.088135593221162,0.220689655172375,0.101694915255008,0.227586206896496,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033846,-0.000000000000000,2 +5208,5266,5268,5326,0.213793103448254,0.108474576271933,0.220689655172375,0.101694915255008,0.220689655172375,0.115254237288859,0.227586206896496,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033852,0.000000000000000,2 +5209,5267,5269,5327,0.213793103448254,0.122033898305789,0.220689655172375,0.115254237288859,0.220689655172375,0.128813559322719,0.227586206896496,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5210,5268,5270,5328,0.213793103448254,0.135593220339649,0.220689655172375,0.128813559322719,0.220689655172375,0.142372881356579,0.227586206896496,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5211,5269,5271,5329,0.213793103448254,0.149152542373509,0.220689655172375,0.142372881356579,0.220689655172375,0.155932203390438,0.227586206896496,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5212,5270,5272,5330,0.213793103448254,0.162711864407368,0.220689655172375,0.155932203390438,0.220689655172375,0.169491525424298,0.227586206896496,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5213,5271,5273,5331,0.213793103448254,0.176271186441228,0.220689655172375,0.169491525424298,0.220689655172375,0.183050847458158,0.227586206896496,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,-0.000000000000000,2 +5214,5272,5274,5332,0.213793103448254,0.189830508475088,0.220689655172375,0.183050847458158,0.220689655172375,0.196610169492017,0.227586206896497,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5215,5273,5275,5333,0.213793103448254,0.203389830508947,0.220689655172375,0.196610169492017,0.220689655172375,0.210169491525877,0.227586206896497,0.203389830508947,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5216,5274,5276,5334,0.213793103448254,0.216949152542807,0.220689655172375,0.210169491525877,0.220689655172375,0.223728813559737,0.227586206896497,0.216949152542807,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5217,5275,5277,5335,0.213793103448254,0.230508474576667,0.220689655172375,0.223728813559737,0.220689655172375,0.237288135593597,0.227586206896497,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5218,5276,5278,5336,0.213793103448254,0.244067796610527,0.220689655172375,0.237288135593597,0.220689655172375,0.250847457627456,0.227586206896496,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5219,5277,5279,5337,0.213793103448254,0.257627118644386,0.220689655172375,0.250847457627456,0.220689655172375,0.264406779661316,0.227586206896496,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5220,5278,5280,5338,0.213793103448254,0.271186440678246,0.220689655172375,0.264406779661316,0.220689655172375,0.277966101695176,0.227586206896496,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5221,5279,5281,5339,0.213793103448254,0.284745762712106,0.220689655172375,0.277966101695176,0.220689655172375,0.291525423729036,0.227586206896496,0.284745762712106,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5222,5280,5282,5340,0.213793103448254,0.298305084745975,0.220689655172375,0.291525423729036,0.220689655172375,0.305084745762915,0.227586206896496,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033879,0.000000000000000,2 +5223,5281,5283,5341,0.213793103448254,0.311864406779851,0.220689655172375,0.305084745762915,0.220689655172375,0.318644067796787,0.227586206896496,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033872,0.000000000000000,2 +5224,5282,5284,5342,0.213793103448254,0.325423728813729,0.220689655172375,0.318644067796787,0.220689655172375,0.332203389830671,0.227586206896496,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033883,0.000000000000000,2 +5225,5283,5285,5343,0.213793103448254,0.338983050847605,0.220689655172375,0.332203389830671,0.220689655172375,0.345762711864539,0.227586206896496,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033869,0.000000000000000,2 +5226,5284,5286,5344,0.213793103448254,0.352542372881469,0.220689655172375,0.345762711864539,0.220689655172375,0.359322033898399,0.227586206896496,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5227,5285,5287,5345,0.213793103448254,0.366101694915329,0.220689655172375,0.359322033898399,0.220689655172375,0.372881355932259,0.227586206896496,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 +5228,5286,5288,5346,0.213793103448254,0.379661016949189,0.220689655172375,0.372881355932259,0.220689655172375,0.386440677966119,0.227586206896496,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,-0.000000000000000,2 +5229,5287,5347,6896,0.213793103448254,0.393220338983059,0.220689655172375,0.386440677966119,0.227586206896496,0.393220338983059,0.220689655172375,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448243,0.013559322033881,0.000000000000000,0.000000000000000,0.013793103448243,2 +4806,5230,5290,5348,0.234482758620623,-0.400000000000000,0.227586206896496,-0.393220338983034,0.234482758620623,-0.386440677966068,0.241379310344750,-0.393220338983034,-0.000000000000000,-0.013793103448254,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448254,0.013559322033932,0.000000000000000,2 +5231,5289,5291,5349,0.227586206896496,-0.379661016949095,0.234482758620623,-0.386440677966068,0.234482758620623,-0.372881355932121,0.241379310344750,-0.379661016949095,-0.013559322033946,0.000000000000000,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033946,-0.000000000000000,2 +5232,5290,5292,5350,0.227586206896496,-0.366101694915163,0.234482758620623,-0.372881355932121,0.234482758620623,-0.359322033898204,0.241379310344750,-0.366101694915163,-0.013559322033918,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033918,0.000000000000000,2 +5233,5291,5293,5351,0.227586206896496,-0.352542372881227,0.234482758620623,-0.359322033898204,0.234482758620623,-0.345762711864250,0.241379310344750,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033954,-0.000000000000000,2 +5234,5292,5294,5352,0.227586206896496,-0.338983050847293,0.234482758620623,-0.345762711864250,0.234482758620623,-0.332203389830336,0.241379310344750,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033914,0.000000000000000,2 +5235,5293,5295,5353,0.227586206896496,-0.325423728813361,0.234482758620623,-0.332203389830336,0.234482758620623,-0.318644067796386,0.241379310344750,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033950,-0.000000000000000,2 +5236,5294,5296,5354,0.227586206896496,-0.311864406779421,0.234482758620623,-0.318644067796386,0.234482758620623,-0.305084745762457,0.241379310344750,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033928,0.000000000000000,2 +5237,5295,5297,5355,0.227586206896496,-0.298305084745489,0.234482758620623,-0.305084745762457,0.234482758620623,-0.291525423728521,0.241379310344750,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448253,0.013559322033936,0.000000000000000,2 +5238,5296,5298,5356,0.227586206896496,-0.284745762711550,0.234482758620623,-0.291525423728521,0.234482758620623,-0.277966101694579,0.241379310344750,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448254,0.013559322033942,-0.000000000000000,2 +5239,5297,5299,5357,0.227586206896496,-0.271186440677618,0.234482758620623,-0.277966101694579,0.234482758620623,-0.264406779660657,0.241379310344750,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033922,0.000000000000000,2 +5240,5298,5300,5358,0.227586206896496,-0.257627118643680,0.234482758620623,-0.264406779660657,0.234482758620623,-0.250847457626703,0.241379310344750,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033954,0.000000000000000,2 +5241,5299,5301,5359,0.227586206896496,-0.244067796609748,0.234482758620623,-0.250847457626703,0.234482758620623,-0.237288135592793,0.241379310344750,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033910,0.000000000000000,2 +5242,5300,5302,5360,0.227586206896496,-0.230508474575816,0.234482758620623,-0.237288135592793,0.234482758620623,-0.223728813558839,0.241379310344750,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033954,0.000000000000000,2 +5243,5301,5303,5361,0.227586206896496,-0.216949152541877,0.234482758620623,-0.223728813558839,0.234482758620623,-0.210169491524915,0.241379310344750,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033924,0.000000000000000,2 +5244,5302,5304,5362,0.227586206896496,-0.203389830507945,0.234482758620623,-0.210169491524915,0.234482758620623,-0.196610169490975,0.241379310344750,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033940,-0.000000000000000,2 +5245,5303,5305,5363,0.227586206896496,-0.189830508474016,0.234482758620623,-0.196610169490975,0.234482758620623,-0.183050847457058,0.241379310344750,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033917,0.000000000000000,2 +5246,5304,5306,5364,0.227586206896496,-0.176271186440084,0.234482758620623,-0.183050847457058,0.234482758620623,-0.169491525423110,0.241379310344750,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033947,0.000000000000000,2 +5247,5305,5307,5365,0.227586206896496,-0.162711864406145,0.234482758620623,-0.169491525423110,0.234482758620623,-0.155932203389179,0.241379310344750,-0.162711864406145,-0.013559322033931,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033931,0.000000000000000,2 +5248,5306,5308,5366,0.227586206896496,-0.149152542372213,0.234482758620623,-0.155932203389179,0.234482758620623,-0.142372881355246,0.241379310344750,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033933,0.000000000000000,2 +5249,5307,5309,5367,0.227586206896496,-0.135593220338273,0.234482758620623,-0.142372881355246,0.234482758620623,-0.128813559321301,0.241379310344750,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033945,0.000000000000000,2 +5250,5308,5310,5368,0.227586206896496,-0.122033898304341,0.234482758620623,-0.128813559321301,0.234482758620623,-0.115254237287382,0.241379310344750,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033919,0.000000000000000,2 +5251,5309,5311,5369,0.227586206896496,-0.108474576270409,0.234482758620623,-0.115254237287382,0.234482758620623,-0.101694915253436,0.241379310344750,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033946,0.000000000000000,2 +5252,5310,5312,5370,0.227586206896496,-0.094915254236471,0.234482758620623,-0.101694915253436,0.234482758620623,-0.088135593219506,0.241379310344750,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033930,0.000000000000000,2 +5253,5311,5313,5371,0.227586206896496,-0.081355932202535,0.234482758620623,-0.088135593219506,0.234482758620623,-0.074576271185564,0.241379310344750,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033941,0.000000000000000,2 +5254,5312,5314,5372,0.227586206896496,-0.067796610168599,0.234482758620623,-0.074576271185564,0.234482758620623,-0.061016949151634,0.241379310344750,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033930,0.000000000000000,2 +5255,5313,5315,5373,0.227586206896496,-0.054237288134667,0.234482758620623,-0.061016949151634,0.234482758620623,-0.047457627117699,0.241379310344750,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033935,0.000000000000000,2 +5256,5314,5316,5374,0.227586206896496,-0.040677966100731,0.234482758620623,-0.047457627117699,0.234482758620623,-0.033898305083763,0.241379310344750,-0.040677966100731,-0.013559322033937,0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033937,0.000000000000000,2 +5257,5315,5317,5375,0.227586206896496,-0.027118644066798,0.234482758620623,-0.033898305083763,0.234482758620623,-0.020338983049833,0.241379310344750,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033930,0.000000000000000,2 +5258,5316,5318,5376,0.227586206896496,-0.013559322032862,0.234482758620623,-0.020338983049833,0.234482758620623,-0.006779661015891,0.241379310344750,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033941,0.000000000000000,2 +5259,5317,5319,5377,0.227586206896496,0.000000000001056,0.234482758620623,-0.006779661015891,0.234482758620623,0.006779661018004,0.241379310344750,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033895,0.000000000000000,2 +5260,5318,5320,5378,0.227586206896496,0.013559322034934,0.234482758620623,0.006779661018004,0.234482758620623,0.020338983051863,0.241379310344750,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5261,5319,5321,5379,0.227586206896496,0.027118644068793,0.234482758620623,0.020338983051863,0.234482758620623,0.033898305085723,0.241379310344750,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5262,5320,5322,5380,0.227586206896496,0.040677966102653,0.234482758620623,0.033898305085723,0.234482758620623,0.047457627119583,0.241379310344750,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5263,5321,5323,5381,0.227586206896496,0.054237288136513,0.234482758620623,0.047457627119583,0.234482758620623,0.061016949153442,0.241379310344750,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5264,5322,5324,5382,0.227586206896496,0.067796610170372,0.234482758620623,0.061016949153442,0.234482758620623,0.074576271187302,0.241379310344750,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5265,5323,5325,5383,0.227586206896496,0.081355932204232,0.234482758620623,0.074576271187302,0.234482758620623,0.088135593221162,0.241379310344750,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5266,5324,5326,5384,0.227586206896496,0.094915254238085,0.234482758620623,0.088135593221162,0.234482758620623,0.101694915255008,0.241379310344750,0.094915254238085,-0.013559322033846,0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033846,0.000000000000000,2 +5267,5325,5327,5385,0.227586206896496,0.108474576271933,0.234482758620623,0.101694915255008,0.234482758620623,0.115254237288859,0.241379310344750,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033852,0.000000000000000,2 +5268,5326,5328,5386,0.227586206896496,0.122033898305789,0.234482758620623,0.115254237288859,0.234482758620623,0.128813559322719,0.241379310344750,0.122033898305789,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5269,5327,5329,5387,0.227586206896496,0.135593220339649,0.234482758620623,0.128813559322719,0.234482758620623,0.142372881356579,0.241379310344750,0.135593220339649,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5270,5328,5330,5388,0.227586206896496,0.149152542373509,0.234482758620623,0.142372881356579,0.234482758620623,0.155932203390438,0.241379310344750,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5271,5329,5331,5389,0.227586206896496,0.162711864407368,0.234482758620623,0.155932203390438,0.234482758620623,0.169491525424298,0.241379310344750,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5272,5330,5332,5390,0.227586206896496,0.176271186441228,0.234482758620623,0.169491525424298,0.234482758620623,0.183050847458158,0.241379310344750,0.176271186441228,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5273,5331,5333,5391,0.227586206896497,0.189830508475088,0.234482758620623,0.183050847458158,0.234482758620623,0.196610169492018,0.241379310344750,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5274,5332,5334,5392,0.227586206896497,0.203389830508947,0.234482758620623,0.196610169492018,0.234482758620623,0.210169491525877,0.241379310344750,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5275,5333,5335,5393,0.227586206896497,0.216949152542807,0.234482758620623,0.210169491525877,0.234482758620623,0.223728813559737,0.241379310344750,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5276,5334,5336,5394,0.227586206896497,0.230508474576667,0.234482758620623,0.223728813559737,0.234482758620623,0.237288135593597,0.241379310344750,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5277,5335,5337,5395,0.227586206896496,0.244067796610527,0.234482758620623,0.237288135593597,0.234482758620623,0.250847457627456,0.241379310344750,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5278,5336,5338,5396,0.227586206896496,0.257627118644386,0.234482758620623,0.250847457627456,0.234482758620623,0.264406779661316,0.241379310344750,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5279,5337,5339,5397,0.227586206896496,0.271186440678246,0.234482758620623,0.264406779661316,0.234482758620623,0.277966101695176,0.241379310344750,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5280,5338,5340,5398,0.227586206896496,0.284745762712106,0.234482758620623,0.277966101695176,0.234482758620623,0.291525423729036,0.241379310344750,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5281,5339,5341,5399,0.227586206896496,0.298305084745975,0.234482758620623,0.291525423729036,0.234482758620623,0.305084745762915,0.241379310344750,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033879,0.000000000000000,2 +5282,5340,5342,5400,0.227586206896496,0.311864406779851,0.234482758620623,0.305084745762915,0.234482758620623,0.318644067796787,0.241379310344750,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033873,0.000000000000000,2 +5283,5341,5343,5401,0.227586206896496,0.325423728813729,0.234482758620623,0.318644067796787,0.234482758620623,0.332203389830671,0.241379310344750,0.325423728813729,-0.013559322033883,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033883,0.000000000000000,2 +5284,5342,5344,5402,0.227586206896496,0.338983050847605,0.234482758620623,0.332203389830671,0.234482758620623,0.345762711864539,0.241379310344750,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033869,0.000000000000000,2 +5285,5343,5345,5403,0.227586206896496,0.352542372881469,0.234482758620623,0.345762711864539,0.234482758620623,0.359322033898399,0.241379310344750,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5286,5344,5346,5404,0.227586206896496,0.366101694915329,0.234482758620623,0.359322033898399,0.234482758620623,0.372881355932259,0.241379310344750,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5287,5345,5347,5405,0.227586206896496,0.379661016949189,0.234482758620623,0.372881355932259,0.234482758620623,0.386440677966119,0.241379310344750,0.379661016949189,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 +5288,5346,5406,6910,0.227586206896496,0.393220338983059,0.234482758620623,0.386440677966119,0.241379310344750,0.393220338983059,0.234482758620623,0.400000000000000,-0.013559322033881,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448254,2 +4820,5289,5349,5407,0.248275862068872,-0.400000000000000,0.241379310344750,-0.393220338983034,0.248275862068872,-0.386440677966068,0.255172413792995,-0.393220338983034,-0.000000000000000,-0.013793103448245,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448245,0.013559322033932,-0.000000000000000,2 +5290,5348,5350,5408,0.241379310344750,-0.379661016949095,0.248275862068872,-0.386440677966068,0.248275862068872,-0.372881355932121,0.255172413792995,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033946,0.000000000000000,2 +5291,5349,5351,5409,0.241379310344750,-0.366101694915163,0.248275862068872,-0.372881355932121,0.248275862068872,-0.359322033898204,0.255172413792995,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033918,-0.000000000000000,2 +5292,5350,5352,5410,0.241379310344750,-0.352542372881227,0.248275862068872,-0.359322033898204,0.248275862068872,-0.345762711864250,0.255172413792995,-0.352542372881227,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033954,0.000000000000000,2 +5293,5351,5353,5411,0.241379310344750,-0.338983050847293,0.248275862068872,-0.345762711864250,0.248275862068872,-0.332203389830336,0.255172413792995,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033914,0.000000000000000,2 +5294,5352,5354,5412,0.241379310344750,-0.325423728813361,0.248275862068872,-0.332203389830336,0.248275862068872,-0.318644067796386,0.255172413792995,-0.325423728813361,-0.013559322033950,0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033950,0.000000000000000,2 +5295,5353,5355,5413,0.241379310344750,-0.311864406779422,0.248275862068872,-0.318644067796386,0.248275862068872,-0.305084745762457,0.255172413792995,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033928,0.000000000000000,2 +5296,5354,5356,5414,0.241379310344750,-0.298305084745489,0.248275862068872,-0.305084745762457,0.248275862068872,-0.291525423728521,0.255172413792995,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033936,-0.000000000000000,2 +5297,5355,5357,5415,0.241379310344750,-0.284745762711550,0.248275862068872,-0.291525423728521,0.248275862068872,-0.277966101694579,0.255172413792995,-0.284745762711550,-0.013559322033942,0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033942,0.000000000000000,2 +5298,5356,5358,5416,0.241379310344750,-0.271186440677618,0.248275862068872,-0.277966101694579,0.248275862068872,-0.264406779660657,0.255172413792995,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033922,-0.000000000000000,2 +5299,5357,5359,5417,0.241379310344750,-0.257627118643680,0.248275862068872,-0.264406779660657,0.248275862068872,-0.250847457626703,0.255172413792995,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033954,0.000000000000000,2 +5300,5358,5360,5418,0.241379310344750,-0.244067796609748,0.248275862068872,-0.250847457626703,0.248275862068872,-0.237288135592793,0.255172413792995,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033910,0.000000000000000,2 +5301,5359,5361,5419,0.241379310344750,-0.230508474575816,0.248275862068872,-0.237288135592793,0.248275862068872,-0.223728813558839,0.255172413792995,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033954,0.000000000000000,2 +5302,5360,5362,5420,0.241379310344750,-0.216949152541877,0.248275862068872,-0.223728813558839,0.248275862068872,-0.210169491524915,0.255172413792995,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033924,0.000000000000000,2 +5303,5361,5363,5421,0.241379310344750,-0.203389830507945,0.248275862068872,-0.210169491524915,0.248275862068872,-0.196610169490975,0.255172413792995,-0.203389830507945,-0.013559322033940,0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033940,0.000000000000000,2 +5304,5362,5364,5422,0.241379310344750,-0.189830508474016,0.248275862068872,-0.196610169490975,0.248275862068872,-0.183050847457058,0.255172413792995,-0.189830508474016,-0.013559322033917,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033917,0.000000000000000,2 +5305,5363,5365,5423,0.241379310344750,-0.176271186440084,0.248275862068872,-0.183050847457058,0.248275862068872,-0.169491525423110,0.255172413792995,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033947,0.000000000000000,2 +5306,5364,5366,5424,0.241379310344750,-0.162711864406145,0.248275862068872,-0.169491525423110,0.248275862068872,-0.155932203389179,0.255172413792995,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033931,0.000000000000000,2 +5307,5365,5367,5425,0.241379310344750,-0.149152542372213,0.248275862068872,-0.155932203389179,0.248275862068872,-0.142372881355246,0.255172413792995,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033933,0.000000000000000,2 +5308,5366,5368,5426,0.241379310344750,-0.135593220338274,0.248275862068872,-0.142372881355246,0.248275862068872,-0.128813559321301,0.255172413792995,-0.135593220338274,-0.013559322033945,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033945,0.000000000000000,2 +5309,5367,5369,5427,0.241379310344750,-0.122033898304341,0.248275862068872,-0.128813559321301,0.248275862068872,-0.115254237287382,0.255172413792995,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033919,0.000000000000000,2 +5310,5368,5370,5428,0.241379310344750,-0.108474576270409,0.248275862068872,-0.115254237287382,0.248275862068872,-0.101694915253436,0.255172413792995,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033946,0.000000000000000,2 +5311,5369,5371,5429,0.241379310344750,-0.094915254236471,0.248275862068872,-0.101694915253436,0.248275862068872,-0.088135593219506,0.255172413792995,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033930,0.000000000000000,2 +5312,5370,5372,5430,0.241379310344750,-0.081355932202535,0.248275862068872,-0.088135593219506,0.248275862068872,-0.074576271185564,0.255172413792995,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033941,0.000000000000000,2 +5313,5371,5373,5431,0.241379310344750,-0.067796610168599,0.248275862068872,-0.074576271185564,0.248275862068872,-0.061016949151634,0.255172413792995,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033930,0.000000000000000,2 +5314,5372,5374,5432,0.241379310344750,-0.054237288134667,0.248275862068872,-0.061016949151634,0.248275862068872,-0.047457627117699,0.255172413792995,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033935,0.000000000000000,2 +5315,5373,5375,5433,0.241379310344750,-0.040677966100731,0.248275862068872,-0.047457627117699,0.248275862068872,-0.033898305083763,0.255172413792995,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033937,0.000000000000000,2 +5316,5374,5376,5434,0.241379310344750,-0.027118644066798,0.248275862068872,-0.033898305083763,0.248275862068872,-0.020338983049833,0.255172413792995,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033930,0.000000000000000,2 +5317,5375,5377,5435,0.241379310344750,-0.013559322032862,0.248275862068872,-0.020338983049833,0.248275862068872,-0.006779661015891,0.255172413792995,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033941,0.000000000000000,2 +5318,5376,5378,5436,0.241379310344750,0.000000000001056,0.248275862068872,-0.006779661015891,0.248275862068872,0.006779661018004,0.255172413792995,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033895,0.000000000000000,2 +5319,5377,5379,5437,0.241379310344750,0.013559322034933,0.248275862068872,0.006779661018004,0.248275862068872,0.020338983051863,0.255172413792995,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5320,5378,5380,5438,0.241379310344750,0.027118644068793,0.248275862068872,0.020338983051863,0.248275862068872,0.033898305085723,0.255172413792995,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5321,5379,5381,5439,0.241379310344750,0.040677966102653,0.248275862068872,0.033898305085723,0.248275862068872,0.047457627119583,0.255172413792995,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5322,5380,5382,5440,0.241379310344750,0.054237288136513,0.248275862068872,0.047457627119583,0.248275862068872,0.061016949153442,0.255172413792995,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5323,5381,5383,5441,0.241379310344750,0.067796610170372,0.248275862068872,0.061016949153442,0.248275862068872,0.074576271187302,0.255172413792995,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5324,5382,5384,5442,0.241379310344750,0.081355932204232,0.248275862068872,0.074576271187302,0.248275862068872,0.088135593221162,0.255172413792995,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5325,5383,5385,5443,0.241379310344750,0.094915254238085,0.248275862068872,0.088135593221162,0.248275862068872,0.101694915255008,0.255172413792995,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033846,0.000000000000000,2 +5326,5384,5386,5444,0.241379310344750,0.108474576271933,0.248275862068872,0.101694915255008,0.248275862068872,0.115254237288859,0.255172413792995,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033852,0.000000000000000,2 +5327,5385,5387,5445,0.241379310344750,0.122033898305789,0.248275862068872,0.115254237288859,0.248275862068872,0.128813559322719,0.255172413792995,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5328,5386,5388,5446,0.241379310344750,0.135593220339649,0.248275862068872,0.128813559322719,0.248275862068872,0.142372881356579,0.255172413792995,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5329,5387,5389,5447,0.241379310344750,0.149152542373509,0.248275862068872,0.142372881356579,0.248275862068872,0.155932203390438,0.255172413792995,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5330,5388,5390,5448,0.241379310344750,0.162711864407368,0.248275862068872,0.155932203390438,0.248275862068872,0.169491525424298,0.255172413792995,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5331,5389,5391,5449,0.241379310344750,0.176271186441228,0.248275862068872,0.169491525424298,0.248275862068872,0.183050847458158,0.255172413792995,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5332,5390,5392,5450,0.241379310344750,0.189830508475088,0.248275862068872,0.183050847458158,0.248275862068872,0.196610169492018,0.255172413792995,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5333,5391,5393,5451,0.241379310344750,0.203389830508947,0.248275862068872,0.196610169492018,0.248275862068872,0.210169491525877,0.255172413792995,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5334,5392,5394,5452,0.241379310344750,0.216949152542807,0.248275862068872,0.210169491525877,0.248275862068872,0.223728813559737,0.255172413792995,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5335,5393,5395,5453,0.241379310344750,0.230508474576667,0.248275862068872,0.223728813559737,0.248275862068872,0.237288135593597,0.255172413792995,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5336,5394,5396,5454,0.241379310344750,0.244067796610527,0.248275862068872,0.237288135593597,0.248275862068872,0.250847457627456,0.255172413792995,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5337,5395,5397,5455,0.241379310344750,0.257627118644386,0.248275862068872,0.250847457627456,0.248275862068872,0.264406779661316,0.255172413792995,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5338,5396,5398,5456,0.241379310344750,0.271186440678246,0.248275862068872,0.264406779661316,0.248275862068872,0.277966101695176,0.255172413792995,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5339,5397,5399,5457,0.241379310344750,0.284745762712106,0.248275862068872,0.277966101695176,0.248275862068872,0.291525423729036,0.255172413792995,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5340,5398,5400,5458,0.241379310344750,0.298305084745975,0.248275862068872,0.291525423729036,0.248275862068872,0.305084745762915,0.255172413792995,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033879,0.000000000000000,2 +5341,5399,5401,5459,0.241379310344750,0.311864406779851,0.248275862068872,0.305084745762915,0.248275862068872,0.318644067796787,0.255172413792995,0.311864406779851,-0.013559322033873,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033872,0.000000000000000,2 +5342,5400,5402,5460,0.241379310344750,0.325423728813729,0.248275862068872,0.318644067796787,0.248275862068872,0.332203389830671,0.255172413792995,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033883,0.000000000000000,2 +5343,5401,5403,5461,0.241379310344750,0.338983050847605,0.248275862068872,0.332203389830671,0.248275862068872,0.345762711864539,0.255172413792995,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033869,0.000000000000000,2 +5344,5402,5404,5462,0.241379310344750,0.352542372881469,0.248275862068872,0.345762711864539,0.248275862068872,0.359322033898399,0.255172413792995,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5345,5403,5405,5463,0.241379310344750,0.366101694915329,0.248275862068872,0.359322033898399,0.248275862068872,0.372881355932259,0.255172413792995,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5346,5404,5406,5464,0.241379310344750,0.379661016949189,0.248275862068872,0.372881355932259,0.248275862068872,0.386440677966119,0.255172413792995,0.379661016949189,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 +5347,5405,5465,6924,0.241379310344750,0.393220338983059,0.248275862068872,0.386440677966119,0.255172413792995,0.393220338983059,0.248275862068872,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448245,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448245,2 +4834,5348,5408,5466,0.262068965517112,-0.400000000000000,0.255172413792995,-0.393220338983034,0.262068965517112,-0.386440677966068,0.268965517241230,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,0.000000000000000,-0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 +5349,5407,5409,5467,0.255172413792995,-0.379661016949095,0.262068965517112,-0.386440677966068,0.262068965517112,-0.372881355932121,0.268965517241230,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033946,-0.000000000000000,2 +5350,5408,5410,5468,0.255172413792995,-0.366101694915163,0.262068965517112,-0.372881355932121,0.262068965517112,-0.359322033898204,0.268965517241230,-0.366101694915163,-0.013559322033918,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 +5351,5409,5411,5469,0.255172413792995,-0.352542372881227,0.262068965517112,-0.359322033898204,0.262068965517112,-0.345762711864250,0.268965517241230,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5352,5410,5412,5470,0.255172413792995,-0.338983050847293,0.262068965517112,-0.345762711864250,0.262068965517112,-0.332203389830336,0.268965517241230,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 +5353,5411,5413,5471,0.255172413792995,-0.325423728813361,0.262068965517112,-0.332203389830336,0.262068965517112,-0.318644067796386,0.268965517241230,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 +5354,5412,5414,5472,0.255172413792995,-0.311864406779422,0.262068965517112,-0.318644067796386,0.262068965517112,-0.305084745762457,0.268965517241230,-0.311864406779421,-0.013559322033928,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,0.000000000000000,2 +5355,5413,5415,5473,0.255172413792995,-0.298305084745489,0.262068965517112,-0.305084745762457,0.262068965517112,-0.291525423728521,0.268965517241230,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 +5356,5414,5416,5474,0.255172413792995,-0.284745762711550,0.262068965517112,-0.291525423728521,0.262068965517112,-0.277966101694579,0.268965517241230,-0.284745762711550,-0.013559322033942,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 +5357,5415,5417,5475,0.255172413792995,-0.271186440677618,0.262068965517112,-0.277966101694579,0.262068965517112,-0.264406779660657,0.268965517241230,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,0.000000000000000,2 +5358,5416,5418,5476,0.255172413792995,-0.257627118643680,0.262068965517112,-0.264406779660657,0.262068965517112,-0.250847457626703,0.268965517241230,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5359,5417,5419,5477,0.255172413792995,-0.244067796609748,0.262068965517112,-0.250847457626703,0.262068965517112,-0.237288135592793,0.268965517241230,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 +5360,5418,5420,5478,0.255172413792995,-0.230508474575816,0.262068965517112,-0.237288135592793,0.262068965517112,-0.223728813558839,0.268965517241230,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5361,5419,5421,5479,0.255172413792995,-0.216949152541877,0.262068965517112,-0.223728813558839,0.262068965517112,-0.210169491524915,0.268965517241230,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,0.000000000000000,2 +5362,5420,5422,5480,0.255172413792995,-0.203389830507945,0.262068965517112,-0.210169491524915,0.262068965517112,-0.196610169490975,0.268965517241230,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 +5363,5421,5423,5481,0.255172413792995,-0.189830508474016,0.262068965517112,-0.196610169490975,0.262068965517112,-0.183050847457058,0.268965517241230,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 +5364,5422,5424,5482,0.255172413792995,-0.176271186440084,0.262068965517112,-0.183050847457058,0.262068965517112,-0.169491525423110,0.268965517241230,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 +5365,5423,5425,5483,0.255172413792995,-0.162711864406145,0.262068965517112,-0.169491525423110,0.262068965517112,-0.155932203389179,0.268965517241230,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 +5366,5424,5426,5484,0.255172413792995,-0.149152542372213,0.262068965517112,-0.155932203389179,0.262068965517112,-0.142372881355246,0.268965517241230,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 +5367,5425,5427,5485,0.255172413792995,-0.135593220338274,0.262068965517112,-0.142372881355246,0.262068965517112,-0.128813559321301,0.268965517241230,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,0.000000000000000,2 +5368,5426,5428,5486,0.255172413792995,-0.122033898304341,0.262068965517112,-0.128813559321301,0.262068965517112,-0.115254237287382,0.268965517241230,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 +5369,5427,5429,5487,0.255172413792995,-0.108474576270409,0.262068965517112,-0.115254237287382,0.262068965517112,-0.101694915253436,0.268965517241230,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5370,5428,5430,5488,0.255172413792995,-0.094915254236471,0.262068965517112,-0.101694915253436,0.262068965517112,-0.088135593219506,0.268965517241230,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5371,5429,5431,5489,0.255172413792995,-0.081355932202535,0.262068965517112,-0.088135593219506,0.262068965517112,-0.074576271185564,0.268965517241230,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5372,5430,5432,5490,0.255172413792995,-0.067796610168599,0.262068965517112,-0.074576271185564,0.262068965517112,-0.061016949151634,0.268965517241230,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5373,5431,5433,5491,0.255172413792995,-0.054237288134667,0.262068965517112,-0.061016949151634,0.262068965517112,-0.047457627117699,0.268965517241230,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,0.000000000000000,2 +5374,5432,5434,5492,0.255172413792995,-0.040677966100731,0.262068965517112,-0.047457627117699,0.262068965517112,-0.033898305083763,0.268965517241230,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 +5375,5433,5435,5493,0.255172413792995,-0.027118644066798,0.262068965517112,-0.033898305083763,0.262068965517112,-0.020338983049833,0.268965517241230,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5376,5434,5436,5494,0.255172413792995,-0.013559322032862,0.262068965517112,-0.020338983049833,0.262068965517112,-0.006779661015891,0.268965517241230,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5377,5435,5437,5495,0.255172413792995,0.000000000001056,0.262068965517112,-0.006779661015891,0.262068965517112,0.006779661018004,0.268965517241230,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 +5378,5436,5438,5496,0.255172413792995,0.013559322034933,0.262068965517112,0.006779661018004,0.262068965517112,0.020338983051863,0.268965517241230,0.013559322034933,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5379,5437,5439,5497,0.255172413792995,0.027118644068793,0.262068965517112,0.020338983051863,0.262068965517112,0.033898305085723,0.268965517241230,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5380,5438,5440,5498,0.255172413792995,0.040677966102653,0.262068965517112,0.033898305085723,0.262068965517112,0.047457627119583,0.268965517241230,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5381,5439,5441,5499,0.255172413792995,0.054237288136513,0.262068965517112,0.047457627119583,0.262068965517112,0.061016949153442,0.268965517241230,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5382,5440,5442,5500,0.255172413792995,0.067796610170372,0.262068965517112,0.061016949153442,0.262068965517112,0.074576271187302,0.268965517241230,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5383,5441,5443,5501,0.255172413792995,0.081355932204232,0.262068965517112,0.074576271187302,0.262068965517112,0.088135593221162,0.268965517241230,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5384,5442,5444,5502,0.255172413792995,0.094915254238085,0.262068965517112,0.088135593221162,0.262068965517112,0.101694915255008,0.268965517241230,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 +5385,5443,5445,5503,0.255172413792995,0.108474576271933,0.262068965517112,0.101694915255008,0.262068965517112,0.115254237288859,0.268965517241230,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 +5386,5444,5446,5504,0.255172413792995,0.122033898305789,0.262068965517112,0.115254237288859,0.262068965517112,0.128813559322719,0.268965517241230,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5387,5445,5447,5505,0.255172413792995,0.135593220339649,0.262068965517112,0.128813559322719,0.262068965517112,0.142372881356579,0.268965517241230,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5388,5446,5448,5506,0.255172413792995,0.149152542373509,0.262068965517112,0.142372881356579,0.262068965517112,0.155932203390438,0.268965517241230,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5389,5447,5449,5507,0.255172413792995,0.162711864407368,0.262068965517112,0.155932203390438,0.262068965517112,0.169491525424298,0.268965517241230,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5390,5448,5450,5508,0.255172413792995,0.176271186441228,0.262068965517112,0.169491525424298,0.262068965517112,0.183050847458158,0.268965517241230,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5391,5449,5451,5509,0.255172413792995,0.189830508475088,0.262068965517112,0.183050847458158,0.262068965517112,0.196610169492018,0.268965517241230,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5392,5450,5452,5510,0.255172413792995,0.203389830508947,0.262068965517112,0.196610169492018,0.262068965517112,0.210169491525877,0.268965517241230,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5393,5451,5453,5511,0.255172413792995,0.216949152542807,0.262068965517112,0.210169491525877,0.262068965517112,0.223728813559737,0.268965517241230,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5394,5452,5454,5512,0.255172413792995,0.230508474576667,0.262068965517112,0.223728813559737,0.262068965517112,0.237288135593597,0.268965517241230,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5395,5453,5455,5513,0.255172413792995,0.244067796610527,0.262068965517112,0.237288135593597,0.262068965517112,0.250847457627456,0.268965517241230,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5396,5454,5456,5514,0.255172413792995,0.257627118644386,0.262068965517112,0.250847457627456,0.262068965517112,0.264406779661316,0.268965517241230,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5397,5455,5457,5515,0.255172413792995,0.271186440678246,0.262068965517112,0.264406779661316,0.262068965517112,0.277966101695176,0.268965517241230,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5398,5456,5458,5516,0.255172413792995,0.284745762712106,0.262068965517112,0.277966101695176,0.262068965517112,0.291525423729036,0.268965517241230,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5399,5457,5459,5517,0.255172413792995,0.298305084745975,0.262068965517112,0.291525423729036,0.262068965517112,0.305084745762915,0.268965517241230,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 +5400,5458,5460,5518,0.255172413792995,0.311864406779851,0.262068965517112,0.305084745762915,0.262068965517112,0.318644067796787,0.268965517241230,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 +5401,5459,5461,5519,0.255172413792995,0.325423728813729,0.262068965517112,0.318644067796787,0.262068965517112,0.332203389830671,0.268965517241230,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 +5402,5460,5462,5520,0.255172413792995,0.338983050847605,0.262068965517112,0.332203389830671,0.262068965517112,0.345762711864539,0.268965517241230,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 +5403,5461,5463,5521,0.255172413792995,0.352542372881469,0.262068965517112,0.345762711864539,0.262068965517112,0.359322033898399,0.268965517241230,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5404,5462,5464,5522,0.255172413792995,0.366101694915329,0.262068965517112,0.359322033898399,0.262068965517112,0.372881355932259,0.268965517241230,0.366101694915329,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5405,5463,5465,5523,0.255172413792995,0.379661016949189,0.262068965517112,0.372881355932259,0.262068965517112,0.386440677966119,0.268965517241230,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5406,5464,5524,6938,0.255172413792995,0.393220338983059,0.262068965517112,0.386440677966119,0.268965517241230,0.393220338983059,0.262068965517112,0.400000000000000,-0.013559322033881,0.000000000000000,0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 +4848,5407,5467,5525,0.275862068965347,-0.400000000000000,0.268965517241230,-0.393220338983034,0.275862068965347,-0.386440677966068,0.282758620689465,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 +5408,5466,5468,5526,0.268965517241230,-0.379661016949095,0.275862068965347,-0.386440677966068,0.275862068965347,-0.372881355932121,0.282758620689465,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5409,5467,5469,5527,0.268965517241230,-0.366101694915163,0.275862068965347,-0.372881355932121,0.275862068965347,-0.359322033898204,0.282758620689465,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 +5410,5468,5470,5528,0.268965517241230,-0.352542372881227,0.275862068965347,-0.359322033898204,0.275862068965347,-0.345762711864250,0.282758620689465,-0.352542372881227,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,-0.000000000000000,2 +5411,5469,5471,5529,0.268965517241230,-0.338983050847293,0.275862068965347,-0.345762711864250,0.275862068965347,-0.332203389830336,0.282758620689465,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 +5412,5470,5472,5530,0.268965517241230,-0.325423728813361,0.275862068965347,-0.332203389830336,0.275862068965347,-0.318644067796386,0.282758620689465,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 +5413,5471,5473,5531,0.268965517241230,-0.311864406779421,0.275862068965347,-0.318644067796386,0.275862068965347,-0.305084745762457,0.282758620689465,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,0.000000000000000,2 +5414,5472,5474,5532,0.268965517241230,-0.298305084745489,0.275862068965347,-0.305084745762457,0.275862068965347,-0.291525423728521,0.282758620689465,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 +5415,5473,5475,5533,0.268965517241230,-0.284745762711550,0.275862068965347,-0.291525423728521,0.275862068965347,-0.277966101694579,0.282758620689465,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 +5416,5474,5476,5534,0.268965517241230,-0.271186440677618,0.275862068965347,-0.277966101694579,0.275862068965347,-0.264406779660657,0.282758620689465,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,-0.000000000000000,2 +5417,5475,5477,5535,0.268965517241230,-0.257627118643680,0.275862068965347,-0.264406779660657,0.275862068965347,-0.250847457626703,0.282758620689465,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5418,5476,5478,5536,0.268965517241230,-0.244067796609748,0.275862068965347,-0.250847457626703,0.275862068965347,-0.237288135592793,0.282758620689465,-0.244067796609748,-0.013559322033910,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 +5419,5477,5479,5537,0.268965517241230,-0.230508474575816,0.275862068965347,-0.237288135592793,0.275862068965347,-0.223728813558839,0.282758620689465,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5420,5478,5480,5538,0.268965517241230,-0.216949152541877,0.275862068965347,-0.223728813558839,0.275862068965347,-0.210169491524915,0.282758620689465,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033924,0.000000000000000,2 +5421,5479,5481,5539,0.268965517241230,-0.203389830507945,0.275862068965347,-0.210169491524915,0.275862068965347,-0.196610169490975,0.282758620689465,-0.203389830507945,-0.013559322033940,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 +5422,5480,5482,5540,0.268965517241230,-0.189830508474016,0.275862068965347,-0.196610169490975,0.275862068965347,-0.183050847457058,0.282758620689465,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 +5423,5481,5483,5541,0.268965517241230,-0.176271186440084,0.275862068965347,-0.183050847457058,0.275862068965347,-0.169491525423110,0.282758620689465,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 +5424,5482,5484,5542,0.268965517241230,-0.162711864406145,0.275862068965347,-0.169491525423110,0.275862068965347,-0.155932203389179,0.282758620689465,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 +5425,5483,5485,5543,0.268965517241230,-0.149152542372213,0.275862068965347,-0.155932203389179,0.275862068965347,-0.142372881355246,0.282758620689465,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 +5426,5484,5486,5544,0.268965517241230,-0.135593220338274,0.275862068965347,-0.142372881355246,0.275862068965347,-0.128813559321301,0.282758620689465,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,0.000000000000000,2 +5427,5485,5487,5545,0.268965517241230,-0.122033898304341,0.275862068965347,-0.128813559321301,0.275862068965347,-0.115254237287382,0.282758620689465,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 +5428,5486,5488,5546,0.268965517241230,-0.108474576270409,0.275862068965347,-0.115254237287382,0.275862068965347,-0.101694915253436,0.282758620689465,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5429,5487,5489,5547,0.268965517241230,-0.094915254236471,0.275862068965347,-0.101694915253436,0.275862068965347,-0.088135593219506,0.282758620689465,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5430,5488,5490,5548,0.268965517241230,-0.081355932202535,0.275862068965347,-0.088135593219506,0.275862068965347,-0.074576271185564,0.282758620689465,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5431,5489,5491,5549,0.268965517241230,-0.067796610168599,0.275862068965347,-0.074576271185564,0.275862068965347,-0.061016949151634,0.282758620689465,-0.067796610168599,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5432,5490,5492,5550,0.268965517241230,-0.054237288134667,0.275862068965347,-0.061016949151634,0.275862068965347,-0.047457627117699,0.282758620689465,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,0.000000000000000,2 +5433,5491,5493,5551,0.268965517241230,-0.040677966100731,0.275862068965347,-0.047457627117699,0.275862068965347,-0.033898305083763,0.282758620689465,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 +5434,5492,5494,5552,0.268965517241230,-0.027118644066798,0.275862068965347,-0.033898305083763,0.275862068965347,-0.020338983049832,0.282758620689465,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5435,5493,5495,5553,0.268965517241230,-0.013559322032862,0.275862068965347,-0.020338983049832,0.275862068965347,-0.006779661015891,0.282758620689465,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5436,5494,5496,5554,0.268965517241230,0.000000000001056,0.275862068965347,-0.006779661015891,0.275862068965347,0.006779661018004,0.282758620689465,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 +5437,5495,5497,5555,0.268965517241230,0.013559322034933,0.275862068965347,0.006779661018004,0.275862068965347,0.020338983051863,0.282758620689465,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5438,5496,5498,5556,0.268965517241230,0.027118644068793,0.275862068965347,0.020338983051863,0.275862068965347,0.033898305085723,0.282758620689465,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5439,5497,5499,5557,0.268965517241230,0.040677966102653,0.275862068965347,0.033898305085723,0.275862068965347,0.047457627119583,0.282758620689465,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5440,5498,5500,5558,0.268965517241230,0.054237288136513,0.275862068965347,0.047457627119583,0.275862068965347,0.061016949153442,0.282758620689465,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5441,5499,5501,5559,0.268965517241230,0.067796610170372,0.275862068965347,0.061016949153442,0.275862068965347,0.074576271187302,0.282758620689465,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5442,5500,5502,5560,0.268965517241230,0.081355932204232,0.275862068965347,0.074576271187302,0.275862068965347,0.088135593221162,0.282758620689465,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5443,5501,5503,5561,0.268965517241230,0.094915254238085,0.275862068965347,0.088135593221162,0.275862068965347,0.101694915255008,0.282758620689465,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 +5444,5502,5504,5562,0.268965517241230,0.108474576271933,0.275862068965347,0.101694915255008,0.275862068965347,0.115254237288859,0.282758620689465,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 +5445,5503,5505,5563,0.268965517241230,0.122033898305789,0.275862068965347,0.115254237288859,0.275862068965347,0.128813559322719,0.282758620689465,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5446,5504,5506,5564,0.268965517241230,0.135593220339649,0.275862068965347,0.128813559322719,0.275862068965347,0.142372881356579,0.282758620689465,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5447,5505,5507,5565,0.268965517241230,0.149152542373509,0.275862068965347,0.142372881356579,0.275862068965347,0.155932203390438,0.282758620689465,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5448,5506,5508,5566,0.268965517241230,0.162711864407368,0.275862068965347,0.155932203390438,0.275862068965347,0.169491525424298,0.282758620689465,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5449,5507,5509,5567,0.268965517241230,0.176271186441228,0.275862068965347,0.169491525424298,0.275862068965347,0.183050847458158,0.282758620689465,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5450,5508,5510,5568,0.268965517241230,0.189830508475088,0.275862068965347,0.183050847458158,0.275862068965347,0.196610169492018,0.282758620689465,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5451,5509,5511,5569,0.268965517241230,0.203389830508947,0.275862068965347,0.196610169492018,0.275862068965347,0.210169491525877,0.282758620689465,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5452,5510,5512,5570,0.268965517241230,0.216949152542807,0.275862068965347,0.210169491525877,0.275862068965347,0.223728813559737,0.282758620689465,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5453,5511,5513,5571,0.268965517241230,0.230508474576667,0.275862068965347,0.223728813559737,0.275862068965347,0.237288135593597,0.282758620689465,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5454,5512,5514,5572,0.268965517241230,0.244067796610527,0.275862068965347,0.237288135593597,0.275862068965347,0.250847457627456,0.282758620689465,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5455,5513,5515,5573,0.268965517241230,0.257627118644386,0.275862068965347,0.250847457627456,0.275862068965347,0.264406779661316,0.282758620689465,0.257627118644386,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5456,5514,5516,5574,0.268965517241230,0.271186440678246,0.275862068965347,0.264406779661316,0.275862068965347,0.277966101695176,0.282758620689465,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5457,5515,5517,5575,0.268965517241230,0.284745762712106,0.275862068965347,0.277966101695176,0.275862068965347,0.291525423729036,0.282758620689465,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5458,5516,5518,5576,0.268965517241230,0.298305084745975,0.275862068965347,0.291525423729036,0.275862068965347,0.305084745762915,0.282758620689465,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 +5459,5517,5519,5577,0.268965517241230,0.311864406779851,0.275862068965347,0.305084745762915,0.275862068965347,0.318644067796787,0.282758620689465,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033873,0.000000000000000,2 +5460,5518,5520,5578,0.268965517241230,0.325423728813729,0.275862068965347,0.318644067796787,0.275862068965347,0.332203389830671,0.282758620689465,0.325423728813729,-0.013559322033883,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 +5461,5519,5521,5579,0.268965517241230,0.338983050847605,0.275862068965347,0.332203389830671,0.275862068965347,0.345762711864539,0.282758620689465,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 +5462,5520,5522,5580,0.268965517241230,0.352542372881469,0.275862068965347,0.345762711864539,0.275862068965347,0.359322033898399,0.282758620689465,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5463,5521,5523,5581,0.268965517241230,0.366101694915329,0.275862068965347,0.359322033898399,0.275862068965347,0.372881355932259,0.282758620689465,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5464,5522,5524,5582,0.268965517241230,0.379661016949189,0.275862068965347,0.372881355932259,0.275862068965347,0.386440677966119,0.282758620689465,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5465,5523,5583,6952,0.268965517241230,0.393220338983059,0.275862068965347,0.386440677966119,0.282758620689465,0.393220338983059,0.275862068965347,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 +4862,5466,5526,5584,0.289655172413583,-0.400000000000000,0.282758620689465,-0.393220338983034,0.289655172413583,-0.386440677966068,0.296551724137700,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 +5467,5525,5527,5585,0.282758620689465,-0.379661016949095,0.289655172413583,-0.386440677966068,0.289655172413583,-0.372881355932122,0.296551724137700,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5468,5526,5528,5586,0.282758620689465,-0.366101694915163,0.289655172413583,-0.372881355932122,0.289655172413583,-0.359322033898204,0.296551724137700,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 +5469,5527,5529,5587,0.282758620689465,-0.352542372881227,0.289655172413583,-0.359322033898204,0.289655172413583,-0.345762711864250,0.296551724137700,-0.352542372881227,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5470,5528,5530,5588,0.282758620689465,-0.338983050847293,0.289655172413583,-0.345762711864250,0.289655172413583,-0.332203389830336,0.296551724137700,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,-0.000000000000000,2 +5471,5529,5531,5589,0.282758620689465,-0.325423728813361,0.289655172413583,-0.332203389830336,0.289655172413583,-0.318644067796386,0.296551724137700,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 +5472,5530,5532,5590,0.282758620689465,-0.311864406779422,0.289655172413583,-0.318644067796386,0.289655172413583,-0.305084745762457,0.296551724137700,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,0.000000000000000,2 +5473,5531,5533,5591,0.282758620689465,-0.298305084745489,0.289655172413583,-0.305084745762457,0.289655172413583,-0.291525423728521,0.296551724137700,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 +5474,5532,5534,5592,0.282758620689465,-0.284745762711550,0.289655172413583,-0.291525423728521,0.289655172413583,-0.277966101694579,0.296551724137700,-0.284745762711550,-0.013559322033942,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,-0.000000000000000,2 +5475,5533,5535,5593,0.282758620689465,-0.271186440677618,0.289655172413583,-0.277966101694579,0.289655172413583,-0.264406779660657,0.296551724137700,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,0.000000000000000,2 +5476,5534,5536,5594,0.282758620689465,-0.257627118643680,0.289655172413583,-0.264406779660657,0.289655172413583,-0.250847457626703,0.296551724137700,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5477,5535,5537,5595,0.282758620689465,-0.244067796609748,0.289655172413583,-0.250847457626703,0.289655172413583,-0.237288135592793,0.296551724137700,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 +5478,5536,5538,5596,0.282758620689465,-0.230508474575816,0.289655172413583,-0.237288135592793,0.289655172413583,-0.223728813558839,0.296551724137700,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,-0.000000000000000,2 +5479,5537,5539,5597,0.282758620689465,-0.216949152541877,0.289655172413583,-0.223728813558839,0.289655172413583,-0.210169491524915,0.296551724137700,-0.216949152541877,-0.013559322033924,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,0.000000000000000,2 +5480,5538,5540,5598,0.282758620689465,-0.203389830507945,0.289655172413583,-0.210169491524915,0.289655172413583,-0.196610169490975,0.296551724137700,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 +5481,5539,5541,5599,0.282758620689465,-0.189830508474016,0.289655172413583,-0.196610169490975,0.289655172413583,-0.183050847457058,0.296551724137700,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,-0.000000000000000,2 +5482,5540,5542,5600,0.282758620689465,-0.176271186440084,0.289655172413583,-0.183050847457058,0.289655172413583,-0.169491525423110,0.296551724137700,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 +5483,5541,5543,5601,0.282758620689465,-0.162711864406145,0.289655172413583,-0.169491525423110,0.289655172413583,-0.155932203389179,0.296551724137700,-0.162711864406145,-0.013559322033931,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 +5484,5542,5544,5602,0.282758620689465,-0.149152542372213,0.289655172413583,-0.155932203389179,0.289655172413583,-0.142372881355246,0.296551724137700,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 +5485,5543,5545,5603,0.282758620689465,-0.135593220338274,0.289655172413583,-0.142372881355246,0.289655172413583,-0.128813559321301,0.296551724137700,-0.135593220338273,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033945,-0.000000000000000,2 +5486,5544,5546,5604,0.282758620689465,-0.122033898304341,0.289655172413583,-0.128813559321301,0.289655172413583,-0.115254237287382,0.296551724137700,-0.122033898304341,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 +5487,5545,5547,5605,0.282758620689465,-0.108474576270409,0.289655172413583,-0.115254237287382,0.289655172413583,-0.101694915253436,0.296551724137700,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5488,5546,5548,5606,0.282758620689465,-0.094915254236471,0.289655172413583,-0.101694915253436,0.289655172413583,-0.088135593219506,0.296551724137700,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5489,5547,5549,5607,0.282758620689465,-0.081355932202535,0.289655172413583,-0.088135593219506,0.289655172413583,-0.074576271185564,0.296551724137700,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5490,5548,5550,5608,0.282758620689465,-0.067796610168599,0.289655172413583,-0.074576271185564,0.289655172413583,-0.061016949151634,0.296551724137700,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5491,5549,5551,5609,0.282758620689465,-0.054237288134667,0.289655172413583,-0.061016949151634,0.289655172413583,-0.047457627117699,0.296551724137700,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,-0.000000000000000,2 +5492,5550,5552,5610,0.282758620689465,-0.040677966100731,0.289655172413583,-0.047457627117699,0.289655172413583,-0.033898305083763,0.296551724137700,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 +5493,5551,5553,5611,0.282758620689465,-0.027118644066798,0.289655172413583,-0.033898305083763,0.289655172413583,-0.020338983049832,0.296551724137700,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5494,5552,5554,5612,0.282758620689465,-0.013559322032862,0.289655172413583,-0.020338983049832,0.289655172413583,-0.006779661015891,0.296551724137700,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5495,5553,5555,5613,0.282758620689465,0.000000000001056,0.289655172413583,-0.006779661015891,0.289655172413583,0.006779661018004,0.296551724137700,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 +5496,5554,5556,5614,0.282758620689465,0.013559322034933,0.289655172413583,0.006779661018004,0.289655172413583,0.020338983051863,0.296551724137700,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5497,5555,5557,5615,0.282758620689465,0.027118644068793,0.289655172413583,0.020338983051863,0.289655172413583,0.033898305085723,0.296551724137700,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5498,5556,5558,5616,0.282758620689465,0.040677966102653,0.289655172413583,0.033898305085723,0.289655172413583,0.047457627119583,0.296551724137700,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5499,5557,5559,5617,0.282758620689465,0.054237288136513,0.289655172413583,0.047457627119583,0.289655172413583,0.061016949153442,0.296551724137700,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5500,5558,5560,5618,0.282758620689465,0.067796610170372,0.289655172413583,0.061016949153442,0.289655172413583,0.074576271187302,0.296551724137700,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5501,5559,5561,5619,0.282758620689465,0.081355932204232,0.289655172413583,0.074576271187302,0.289655172413583,0.088135593221162,0.296551724137700,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5502,5560,5562,5620,0.282758620689465,0.094915254238085,0.289655172413583,0.088135593221162,0.289655172413583,0.101694915255008,0.296551724137700,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 +5503,5561,5563,5621,0.282758620689465,0.108474576271933,0.289655172413583,0.101694915255008,0.289655172413583,0.115254237288859,0.296551724137700,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 +5504,5562,5564,5622,0.282758620689465,0.122033898305789,0.289655172413583,0.115254237288859,0.289655172413583,0.128813559322719,0.296551724137700,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5505,5563,5565,5623,0.282758620689465,0.135593220339649,0.289655172413583,0.128813559322719,0.289655172413583,0.142372881356579,0.296551724137700,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5506,5564,5566,5624,0.282758620689465,0.149152542373509,0.289655172413583,0.142372881356579,0.289655172413583,0.155932203390438,0.296551724137700,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5507,5565,5567,5625,0.282758620689465,0.162711864407368,0.289655172413583,0.155932203390438,0.289655172413583,0.169491525424298,0.296551724137700,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5508,5566,5568,5626,0.282758620689465,0.176271186441228,0.289655172413583,0.169491525424298,0.289655172413583,0.183050847458158,0.296551724137700,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5509,5567,5569,5627,0.282758620689465,0.189830508475088,0.289655172413583,0.183050847458158,0.289655172413583,0.196610169492018,0.296551724137700,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5510,5568,5570,5628,0.282758620689465,0.203389830508947,0.289655172413583,0.196610169492018,0.289655172413583,0.210169491525877,0.296551724137700,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5511,5569,5571,5629,0.282758620689465,0.216949152542807,0.289655172413583,0.210169491525877,0.289655172413583,0.223728813559737,0.296551724137700,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5512,5570,5572,5630,0.282758620689465,0.230508474576667,0.289655172413583,0.223728813559737,0.289655172413583,0.237288135593597,0.296551724137700,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5513,5571,5573,5631,0.282758620689465,0.244067796610527,0.289655172413583,0.237288135593597,0.289655172413583,0.250847457627456,0.296551724137700,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5514,5572,5574,5632,0.282758620689465,0.257627118644386,0.289655172413583,0.250847457627456,0.289655172413583,0.264406779661316,0.296551724137700,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5515,5573,5575,5633,0.282758620689465,0.271186440678246,0.289655172413583,0.264406779661316,0.289655172413583,0.277966101695176,0.296551724137700,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5516,5574,5576,5634,0.282758620689465,0.284745762712106,0.289655172413583,0.277966101695176,0.289655172413583,0.291525423729036,0.296551724137700,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5517,5575,5577,5635,0.282758620689465,0.298305084745975,0.289655172413583,0.291525423729036,0.289655172413583,0.305084745762915,0.296551724137700,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 +5518,5576,5578,5636,0.282758620689465,0.311864406779851,0.289655172413583,0.305084745762915,0.289655172413583,0.318644067796787,0.296551724137700,0.311864406779851,-0.013559322033873,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 +5519,5577,5579,5637,0.282758620689465,0.325423728813729,0.289655172413583,0.318644067796787,0.289655172413583,0.332203389830670,0.296551724137700,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 +5520,5578,5580,5638,0.282758620689465,0.338983050847605,0.289655172413583,0.332203389830670,0.289655172413583,0.345762711864539,0.296551724137700,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,-0.000000000000000,2 +5521,5579,5581,5639,0.282758620689465,0.352542372881469,0.289655172413583,0.345762711864539,0.289655172413583,0.359322033898399,0.296551724137700,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5522,5580,5582,5640,0.282758620689465,0.366101694915329,0.289655172413583,0.359322033898399,0.289655172413583,0.372881355932259,0.296551724137700,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5523,5581,5583,5641,0.282758620689465,0.379661016949189,0.289655172413583,0.372881355932259,0.289655172413583,0.386440677966119,0.296551724137700,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5524,5582,5642,6966,0.282758620689465,0.393220338983059,0.289655172413583,0.386440677966119,0.296551724137700,0.393220338983059,0.289655172413583,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 +4876,5525,5585,5643,0.303448275861818,-0.400000000000000,0.296551724137700,-0.393220338983034,0.303448275861818,-0.386440677966068,0.310344827585935,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 +5526,5584,5586,5644,0.296551724137700,-0.379661016949095,0.303448275861818,-0.386440677966068,0.303448275861818,-0.372881355932122,0.310344827585935,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,-0.000000000000000,2 +5527,5585,5587,5645,0.296551724137700,-0.366101694915163,0.303448275861818,-0.372881355932122,0.303448275861818,-0.359322033898204,0.310344827585935,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 +5528,5586,5588,5646,0.296551724137700,-0.352542372881227,0.303448275861818,-0.359322033898204,0.303448275861818,-0.345762711864250,0.310344827585935,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5529,5587,5589,5647,0.296551724137700,-0.338983050847293,0.303448275861818,-0.345762711864250,0.303448275861818,-0.332203389830336,0.310344827585935,-0.338983050847293,-0.013559322033914,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 +5530,5588,5590,5648,0.296551724137700,-0.325423728813361,0.303448275861818,-0.332203389830336,0.303448275861818,-0.318644067796386,0.310344827585935,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 +5531,5589,5591,5649,0.296551724137700,-0.311864406779422,0.303448275861818,-0.318644067796386,0.303448275861818,-0.305084745762457,0.310344827585935,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,0.000000000000000,2 +5532,5590,5592,5650,0.296551724137700,-0.298305084745489,0.303448275861818,-0.305084745762457,0.303448275861818,-0.291525423728521,0.310344827585935,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033936,-0.000000000000000,2 +5533,5591,5593,5651,0.296551724137700,-0.284745762711550,0.303448275861818,-0.291525423728521,0.303448275861818,-0.277966101694579,0.310344827585935,-0.284745762711550,-0.013559322033942,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 +5534,5592,5594,5652,0.296551724137700,-0.271186440677618,0.303448275861818,-0.277966101694579,0.303448275861818,-0.264406779660657,0.310344827585935,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,-0.000000000000000,2 +5535,5593,5595,5653,0.296551724137700,-0.257627118643680,0.303448275861818,-0.264406779660657,0.303448275861818,-0.250847457626703,0.310344827585935,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5536,5594,5596,5654,0.296551724137700,-0.244067796609748,0.303448275861818,-0.250847457626703,0.303448275861818,-0.237288135592793,0.310344827585935,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,-0.000000000000000,2 +5537,5595,5597,5655,0.296551724137700,-0.230508474575816,0.303448275861818,-0.237288135592793,0.303448275861818,-0.223728813558839,0.310344827585935,-0.230508474575816,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5538,5596,5598,5656,0.296551724137700,-0.216949152541877,0.303448275861818,-0.223728813558839,0.303448275861818,-0.210169491524915,0.310344827585935,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,-0.000000000000000,2 +5539,5597,5599,5657,0.296551724137700,-0.203389830507945,0.303448275861818,-0.210169491524915,0.303448275861818,-0.196610169490975,0.310344827585935,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 +5540,5598,5600,5658,0.296551724137700,-0.189830508474016,0.303448275861818,-0.196610169490975,0.303448275861818,-0.183050847457058,0.310344827585935,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 +5541,5599,5601,5659,0.296551724137700,-0.176271186440084,0.303448275861818,-0.183050847457058,0.303448275861818,-0.169491525423110,0.310344827585935,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 +5542,5600,5602,5660,0.296551724137700,-0.162711864406145,0.303448275861818,-0.169491525423110,0.303448275861818,-0.155932203389179,0.310344827585935,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 +5543,5601,5603,5661,0.296551724137700,-0.149152542372213,0.303448275861818,-0.155932203389179,0.303448275861818,-0.142372881355246,0.310344827585935,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 +5544,5602,5604,5662,0.296551724137700,-0.135593220338273,0.303448275861818,-0.142372881355246,0.303448275861818,-0.128813559321301,0.310344827585935,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,-0.000000000000000,2 +5545,5603,5605,5663,0.296551724137700,-0.122033898304341,0.303448275861818,-0.128813559321301,0.303448275861818,-0.115254237287382,0.310344827585935,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 +5546,5604,5606,5664,0.296551724137700,-0.108474576270409,0.303448275861818,-0.115254237287382,0.303448275861818,-0.101694915253436,0.310344827585935,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5547,5605,5607,5665,0.296551724137700,-0.094915254236471,0.303448275861818,-0.101694915253436,0.303448275861818,-0.088135593219506,0.310344827585935,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,-0.000000000000000,2 +5548,5606,5608,5666,0.296551724137700,-0.081355932202535,0.303448275861818,-0.088135593219506,0.303448275861818,-0.074576271185565,0.310344827585935,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5549,5607,5609,5667,0.296551724137700,-0.067796610168599,0.303448275861818,-0.074576271185565,0.303448275861818,-0.061016949151634,0.310344827585935,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5550,5608,5610,5668,0.296551724137700,-0.054237288134667,0.303448275861818,-0.061016949151634,0.303448275861818,-0.047457627117699,0.310344827585935,-0.054237288134667,-0.013559322033935,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,-0.000000000000000,2 +5551,5609,5611,5669,0.296551724137700,-0.040677966100731,0.303448275861818,-0.047457627117699,0.303448275861818,-0.033898305083763,0.310344827585935,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 +5552,5610,5612,5670,0.296551724137700,-0.027118644066798,0.303448275861818,-0.033898305083763,0.303448275861818,-0.020338983049832,0.310344827585935,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5553,5611,5613,5671,0.296551724137700,-0.013559322032862,0.303448275861818,-0.020338983049832,0.303448275861818,-0.006779661015891,0.310344827585935,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5554,5612,5614,5672,0.296551724137700,0.000000000001056,0.303448275861818,-0.006779661015891,0.303448275861818,0.006779661018004,0.310344827585935,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 +5555,5613,5615,5673,0.296551724137700,0.013559322034933,0.303448275861818,0.006779661018004,0.303448275861818,0.020338983051863,0.310344827585935,0.013559322034934,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5556,5614,5616,5674,0.296551724137700,0.027118644068793,0.303448275861818,0.020338983051863,0.303448275861818,0.033898305085723,0.310344827585935,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5557,5615,5617,5675,0.296551724137700,0.040677966102653,0.303448275861818,0.033898305085723,0.303448275861818,0.047457627119583,0.310344827585935,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5558,5616,5618,5676,0.296551724137700,0.054237288136513,0.303448275861818,0.047457627119583,0.303448275861818,0.061016949153442,0.310344827585935,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5559,5617,5619,5677,0.296551724137700,0.067796610170372,0.303448275861818,0.061016949153442,0.303448275861818,0.074576271187302,0.310344827585935,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5560,5618,5620,5678,0.296551724137700,0.081355932204232,0.303448275861818,0.074576271187302,0.303448275861818,0.088135593221162,0.310344827585935,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5561,5619,5621,5679,0.296551724137700,0.094915254238085,0.303448275861818,0.088135593221162,0.303448275861818,0.101694915255008,0.310344827585935,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 +5562,5620,5622,5680,0.296551724137700,0.108474576271933,0.303448275861818,0.101694915255008,0.303448275861818,0.115254237288859,0.310344827585935,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033852,-0.000000000000000,2 +5563,5621,5623,5681,0.296551724137700,0.122033898305789,0.303448275861818,0.115254237288859,0.303448275861818,0.128813559322719,0.310344827585935,0.122033898305789,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5564,5622,5624,5682,0.296551724137700,0.135593220339649,0.303448275861818,0.128813559322719,0.303448275861818,0.142372881356579,0.310344827585935,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5565,5623,5625,5683,0.296551724137700,0.149152542373509,0.303448275861818,0.142372881356579,0.303448275861818,0.155932203390438,0.310344827585935,0.149152542373509,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5566,5624,5626,5684,0.296551724137700,0.162711864407368,0.303448275861818,0.155932203390438,0.303448275861818,0.169491525424298,0.310344827585935,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5567,5625,5627,5685,0.296551724137700,0.176271186441228,0.303448275861818,0.169491525424298,0.303448275861818,0.183050847458158,0.310344827585935,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5568,5626,5628,5686,0.296551724137700,0.189830508475088,0.303448275861818,0.183050847458158,0.303448275861818,0.196610169492018,0.310344827585935,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5569,5627,5629,5687,0.296551724137700,0.203389830508947,0.303448275861818,0.196610169492018,0.303448275861818,0.210169491525877,0.310344827585935,0.203389830508947,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5570,5628,5630,5688,0.296551724137700,0.216949152542807,0.303448275861818,0.210169491525877,0.303448275861818,0.223728813559737,0.310344827585935,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5571,5629,5631,5689,0.296551724137700,0.230508474576667,0.303448275861818,0.223728813559737,0.303448275861818,0.237288135593597,0.310344827585935,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5572,5630,5632,5690,0.296551724137700,0.244067796610527,0.303448275861818,0.237288135593597,0.303448275861818,0.250847457627456,0.310344827585935,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5573,5631,5633,5691,0.296551724137700,0.257627118644386,0.303448275861818,0.250847457627456,0.303448275861818,0.264406779661316,0.310344827585935,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5574,5632,5634,5692,0.296551724137700,0.271186440678246,0.303448275861818,0.264406779661316,0.303448275861818,0.277966101695176,0.310344827585935,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5575,5633,5635,5693,0.296551724137700,0.284745762712106,0.303448275861818,0.277966101695176,0.303448275861818,0.291525423729036,0.310344827585935,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5576,5634,5636,5694,0.296551724137700,0.298305084745975,0.303448275861818,0.291525423729036,0.303448275861818,0.305084745762915,0.310344827585935,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 +5577,5635,5637,5695,0.296551724137700,0.311864406779851,0.303448275861818,0.305084745762915,0.303448275861818,0.318644067796787,0.310344827585935,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 +5578,5636,5638,5696,0.296551724137700,0.325423728813729,0.303448275861818,0.318644067796787,0.303448275861818,0.332203389830671,0.310344827585935,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 +5579,5637,5639,5697,0.296551724137700,0.338983050847605,0.303448275861818,0.332203389830671,0.303448275861818,0.345762711864539,0.310344827585935,0.338983050847605,-0.013559322033869,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 +5580,5638,5640,5698,0.296551724137700,0.352542372881469,0.303448275861818,0.345762711864539,0.303448275861818,0.359322033898399,0.310344827585935,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5581,5639,5641,5699,0.296551724137700,0.366101694915329,0.303448275861818,0.359322033898399,0.303448275861818,0.372881355932259,0.310344827585935,0.366101694915329,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5582,5640,5642,5700,0.296551724137700,0.379661016949189,0.303448275861818,0.372881355932259,0.303448275861818,0.386440677966119,0.310344827585935,0.379661016949189,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5583,5641,5701,6980,0.296551724137700,0.393220338983059,0.303448275861818,0.386440677966119,0.310344827585935,0.393220338983059,0.303448275861818,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 +4890,5584,5644,5702,0.317241379310053,-0.400000000000000,0.310344827585935,-0.393220338983034,0.317241379310053,-0.386440677966068,0.324137931034170,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448235,0.013559322033932,-0.000000000000000,2 +5585,5643,5645,5703,0.310344827585935,-0.379661016949095,0.317241379310053,-0.386440677966068,0.317241379310053,-0.372881355932122,0.324137931034170,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5586,5644,5646,5704,0.310344827585935,-0.366101694915163,0.317241379310053,-0.372881355932122,0.317241379310053,-0.359322033898204,0.324137931034170,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 +5587,5645,5647,5705,0.310344827585935,-0.352542372881227,0.317241379310053,-0.359322033898204,0.317241379310053,-0.345762711864250,0.324137931034170,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5588,5646,5648,5706,0.310344827585935,-0.338983050847293,0.317241379310053,-0.345762711864250,0.317241379310053,-0.332203389830336,0.324137931034170,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 +5589,5647,5649,5707,0.310344827585935,-0.325423728813361,0.317241379310053,-0.332203389830336,0.317241379310053,-0.318644067796386,0.324137931034170,-0.325423728813361,-0.013559322033950,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 +5590,5648,5650,5708,0.310344827585935,-0.311864406779422,0.317241379310053,-0.318644067796386,0.317241379310053,-0.305084745762457,0.324137931034170,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,-0.000000000000000,2 +5591,5649,5651,5709,0.310344827585935,-0.298305084745489,0.317241379310053,-0.305084745762457,0.317241379310053,-0.291525423728521,0.324137931034170,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 +5592,5650,5652,5710,0.310344827585935,-0.284745762711550,0.317241379310053,-0.291525423728521,0.317241379310053,-0.277966101694579,0.324137931034170,-0.284745762711550,-0.013559322033942,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 +5593,5651,5653,5711,0.310344827585935,-0.271186440677618,0.317241379310053,-0.277966101694579,0.317241379310053,-0.264406779660657,0.324137931034170,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,0.000000000000000,2 +5594,5652,5654,5712,0.310344827585935,-0.257627118643680,0.317241379310053,-0.264406779660657,0.317241379310053,-0.250847457626703,0.324137931034170,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5595,5653,5655,5713,0.310344827585935,-0.244067796609748,0.317241379310053,-0.250847457626703,0.317241379310053,-0.237288135592793,0.324137931034170,-0.244067796609748,-0.013559322033910,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 +5596,5654,5656,5714,0.310344827585935,-0.230508474575816,0.317241379310053,-0.237288135592793,0.317241379310053,-0.223728813558839,0.324137931034170,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5597,5655,5657,5715,0.310344827585935,-0.216949152541877,0.317241379310053,-0.223728813558839,0.317241379310053,-0.210169491524915,0.324137931034170,-0.216949152541877,-0.013559322033924,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033924,-0.000000000000000,2 +5598,5656,5658,5716,0.310344827585935,-0.203389830507945,0.317241379310053,-0.210169491524915,0.317241379310053,-0.196610169490975,0.324137931034170,-0.203389830507945,-0.013559322033940,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033940,-0.000000000000000,2 +5599,5657,5659,5717,0.310344827585935,-0.189830508474016,0.317241379310053,-0.196610169490975,0.317241379310053,-0.183050847457058,0.324137931034170,-0.189830508474016,-0.013559322033917,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 +5600,5658,5660,5718,0.310344827585935,-0.176271186440084,0.317241379310053,-0.183050847457058,0.317241379310053,-0.169491525423110,0.324137931034170,-0.176271186440084,-0.013559322033947,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 +5601,5659,5661,5719,0.310344827585935,-0.162711864406145,0.317241379310053,-0.169491525423110,0.317241379310053,-0.155932203389179,0.324137931034170,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 +5602,5660,5662,5720,0.310344827585935,-0.149152542372213,0.317241379310053,-0.155932203389179,0.317241379310053,-0.142372881355246,0.324137931034170,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 +5603,5661,5663,5721,0.310344827585935,-0.135593220338273,0.317241379310053,-0.142372881355246,0.317241379310053,-0.128813559321301,0.324137931034170,-0.135593220338274,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,-0.000000000000000,2 +5604,5662,5664,5722,0.310344827585935,-0.122033898304341,0.317241379310053,-0.128813559321301,0.317241379310053,-0.115254237287382,0.324137931034170,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 +5605,5663,5665,5723,0.310344827585935,-0.108474576270409,0.317241379310053,-0.115254237287382,0.317241379310053,-0.101694915253436,0.324137931034170,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5606,5664,5666,5724,0.310344827585935,-0.094915254236471,0.317241379310053,-0.101694915253436,0.317241379310053,-0.088135593219506,0.324137931034170,-0.094915254236471,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5607,5665,5667,5725,0.310344827585935,-0.081355932202535,0.317241379310053,-0.088135593219506,0.317241379310053,-0.074576271185564,0.324137931034170,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5608,5666,5668,5726,0.310344827585935,-0.067796610168599,0.317241379310053,-0.074576271185564,0.317241379310053,-0.061016949151634,0.324137931034170,-0.067796610168599,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5609,5667,5669,5727,0.310344827585935,-0.054237288134667,0.317241379310053,-0.061016949151634,0.317241379310053,-0.047457627117700,0.324137931034170,-0.054237288134667,-0.013559322033935,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033935,0.000000000000000,2 +5610,5668,5670,5728,0.310344827585935,-0.040677966100731,0.317241379310053,-0.047457627117700,0.317241379310053,-0.033898305083763,0.324137931034170,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 +5611,5669,5671,5729,0.310344827585935,-0.027118644066798,0.317241379310053,-0.033898305083763,0.317241379310053,-0.020338983049833,0.324137931034170,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5612,5670,5672,5730,0.310344827585935,-0.013559322032862,0.317241379310053,-0.020338983049833,0.317241379310053,-0.006779661015891,0.324137931034170,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5613,5671,5673,5731,0.310344827585935,0.000000000001056,0.317241379310053,-0.006779661015891,0.317241379310053,0.006779661018004,0.324137931034170,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 +5614,5672,5674,5732,0.310344827585935,0.013559322034934,0.317241379310053,0.006779661018004,0.317241379310053,0.020338983051863,0.324137931034170,0.013559322034933,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5615,5673,5675,5733,0.310344827585935,0.027118644068793,0.317241379310053,0.020338983051863,0.317241379310053,0.033898305085723,0.324137931034170,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5616,5674,5676,5734,0.310344827585935,0.040677966102653,0.317241379310053,0.033898305085723,0.317241379310053,0.047457627119583,0.324137931034170,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5617,5675,5677,5735,0.310344827585935,0.054237288136513,0.317241379310053,0.047457627119583,0.317241379310053,0.061016949153442,0.324137931034170,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5618,5676,5678,5736,0.310344827585935,0.067796610170372,0.317241379310053,0.061016949153442,0.317241379310053,0.074576271187302,0.324137931034170,0.067796610170372,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5619,5677,5679,5737,0.310344827585935,0.081355932204232,0.317241379310053,0.074576271187302,0.317241379310053,0.088135593221162,0.324137931034170,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5620,5678,5680,5738,0.310344827585935,0.094915254238085,0.317241379310053,0.088135593221162,0.317241379310053,0.101694915255008,0.324137931034170,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 +5621,5679,5681,5739,0.310344827585935,0.108474576271933,0.317241379310053,0.101694915255008,0.317241379310053,0.115254237288859,0.324137931034170,0.108474576271933,-0.013559322033852,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 +5622,5680,5682,5740,0.310344827585935,0.122033898305789,0.317241379310053,0.115254237288859,0.317241379310053,0.128813559322719,0.324137931034170,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5623,5681,5683,5741,0.310344827585935,0.135593220339649,0.317241379310053,0.128813559322719,0.317241379310053,0.142372881356579,0.324137931034170,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5624,5682,5684,5742,0.310344827585935,0.149152542373509,0.317241379310053,0.142372881356579,0.317241379310053,0.155932203390438,0.324137931034170,0.149152542373509,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5625,5683,5685,5743,0.310344827585935,0.162711864407368,0.317241379310053,0.155932203390438,0.317241379310053,0.169491525424298,0.324137931034170,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5626,5684,5686,5744,0.310344827585935,0.176271186441228,0.317241379310053,0.169491525424298,0.317241379310053,0.183050847458158,0.324137931034170,0.176271186441228,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5627,5685,5687,5745,0.310344827585935,0.189830508475088,0.317241379310053,0.183050847458158,0.317241379310053,0.196610169492018,0.324137931034170,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5628,5686,5688,5746,0.310344827585935,0.203389830508947,0.317241379310053,0.196610169492018,0.317241379310053,0.210169491525877,0.324137931034170,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5629,5687,5689,5747,0.310344827585935,0.216949152542807,0.317241379310053,0.210169491525877,0.317241379310053,0.223728813559737,0.324137931034170,0.216949152542807,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5630,5688,5690,5748,0.310344827585935,0.230508474576667,0.317241379310053,0.223728813559737,0.317241379310053,0.237288135593597,0.324137931034170,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5631,5689,5691,5749,0.310344827585935,0.244067796610527,0.317241379310053,0.237288135593597,0.317241379310053,0.250847457627456,0.324137931034170,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5632,5690,5692,5750,0.310344827585935,0.257627118644386,0.317241379310053,0.250847457627456,0.317241379310053,0.264406779661316,0.324137931034170,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5633,5691,5693,5751,0.310344827585935,0.271186440678246,0.317241379310053,0.264406779661316,0.317241379310053,0.277966101695176,0.324137931034170,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5634,5692,5694,5752,0.310344827585935,0.284745762712106,0.317241379310053,0.277966101695176,0.317241379310053,0.291525423729036,0.324137931034170,0.284745762712106,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5635,5693,5695,5753,0.310344827585935,0.298305084745975,0.317241379310053,0.291525423729036,0.317241379310053,0.305084745762915,0.324137931034170,0.298305084745975,-0.013559322033879,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 +5636,5694,5696,5754,0.310344827585935,0.311864406779851,0.317241379310053,0.305084745762915,0.317241379310053,0.318644067796787,0.324137931034170,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 +5637,5695,5697,5755,0.310344827585935,0.325423728813729,0.317241379310053,0.318644067796787,0.317241379310053,0.332203389830671,0.324137931034170,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 +5638,5696,5698,5756,0.310344827585935,0.338983050847605,0.317241379310053,0.332203389830671,0.317241379310053,0.345762711864539,0.324137931034170,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 +5639,5697,5699,5757,0.310344827585935,0.352542372881469,0.317241379310053,0.345762711864539,0.317241379310053,0.359322033898399,0.324137931034170,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5640,5698,5700,5758,0.310344827585935,0.366101694915329,0.317241379310053,0.359322033898399,0.317241379310053,0.372881355932259,0.324137931034170,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5641,5699,5701,5759,0.310344827585935,0.379661016949189,0.317241379310053,0.372881355932259,0.317241379310053,0.386440677966119,0.324137931034170,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5642,5700,5760,6994,0.310344827585935,0.393220338983059,0.317241379310053,0.386440677966119,0.324137931034170,0.393220338983059,0.317241379310053,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 +4904,5643,5703,5761,0.331034482758288,-0.400000000000000,0.324137931034170,-0.393220338983034,0.331034482758288,-0.386440677966068,0.337931034482406,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,0.000000000000000,0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 +5644,5702,5704,5762,0.324137931034170,-0.379661016949095,0.331034482758288,-0.386440677966068,0.331034482758288,-0.372881355932122,0.337931034482405,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5645,5703,5705,5763,0.324137931034170,-0.366101694915163,0.331034482758288,-0.372881355932122,0.331034482758288,-0.359322033898204,0.337931034482405,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,-0.000000000000000,2 +5646,5704,5706,5764,0.324137931034170,-0.352542372881227,0.331034482758288,-0.359322033898204,0.331034482758288,-0.345762711864250,0.337931034482406,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5647,5705,5707,5765,0.324137931034170,-0.338983050847293,0.331034482758288,-0.345762711864250,0.331034482758288,-0.332203389830336,0.337931034482406,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 +5648,5706,5708,5766,0.324137931034170,-0.325423728813361,0.331034482758288,-0.332203389830336,0.331034482758288,-0.318644067796386,0.337931034482406,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033951,0.000000000000000,2 +5649,5707,5709,5767,0.324137931034170,-0.311864406779422,0.331034482758288,-0.318644067796386,0.331034482758288,-0.305084745762457,0.337931034482406,-0.311864406779421,-0.013559322033928,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,0.000000000000000,2 +5650,5708,5710,5768,0.324137931034170,-0.298305084745489,0.331034482758288,-0.305084745762457,0.331034482758288,-0.291525423728521,0.337931034482405,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 +5651,5709,5711,5769,0.324137931034170,-0.284745762711550,0.331034482758288,-0.291525423728521,0.331034482758288,-0.277966101694579,0.337931034482405,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033942,-0.000000000000000,2 +5652,5710,5712,5770,0.324137931034170,-0.271186440677618,0.331034482758288,-0.277966101694579,0.331034482758288,-0.264406779660657,0.337931034482406,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,0.000000000000000,2 +5653,5711,5713,5771,0.324137931034170,-0.257627118643680,0.331034482758288,-0.264406779660657,0.331034482758288,-0.250847457626703,0.337931034482406,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5654,5712,5714,5772,0.324137931034170,-0.244067796609748,0.331034482758288,-0.250847457626703,0.331034482758288,-0.237288135592793,0.337931034482406,-0.244067796609748,-0.013559322033910,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 +5655,5713,5715,5773,0.324137931034170,-0.230508474575816,0.331034482758288,-0.237288135592793,0.331034482758288,-0.223728813558839,0.337931034482405,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5656,5714,5716,5774,0.324137931034170,-0.216949152541877,0.331034482758288,-0.223728813558839,0.331034482758288,-0.210169491524915,0.337931034482405,-0.216949152541877,-0.013559322033924,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,-0.000000000000000,2 +5657,5715,5717,5775,0.324137931034170,-0.203389830507945,0.331034482758288,-0.210169491524915,0.331034482758288,-0.196610169490975,0.337931034482406,-0.203389830507945,-0.013559322033940,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 +5658,5716,5718,5776,0.324137931034170,-0.189830508474016,0.331034482758288,-0.196610169490975,0.331034482758288,-0.183050847457058,0.337931034482406,-0.189830508474016,-0.013559322033917,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 +5659,5717,5719,5777,0.324137931034170,-0.176271186440084,0.331034482758288,-0.183050847457058,0.331034482758288,-0.169491525423110,0.337931034482406,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 +5660,5718,5720,5778,0.324137931034170,-0.162711864406145,0.331034482758288,-0.169491525423110,0.331034482758288,-0.155932203389179,0.337931034482406,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 +5661,5719,5721,5779,0.324137931034170,-0.149152542372213,0.331034482758288,-0.155932203389179,0.331034482758288,-0.142372881355246,0.337931034482406,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 +5662,5720,5722,5780,0.324137931034170,-0.135593220338274,0.331034482758288,-0.142372881355246,0.331034482758288,-0.128813559321301,0.337931034482406,-0.135593220338274,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,-0.000000000000000,2 +5663,5721,5723,5781,0.324137931034170,-0.122033898304341,0.331034482758288,-0.128813559321301,0.331034482758288,-0.115254237287382,0.337931034482406,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 +5664,5722,5724,5782,0.324137931034170,-0.108474576270409,0.331034482758288,-0.115254237287382,0.331034482758288,-0.101694915253436,0.337931034482406,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5665,5723,5725,5783,0.324137931034170,-0.094915254236471,0.331034482758288,-0.101694915253436,0.331034482758288,-0.088135593219506,0.337931034482406,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5666,5724,5726,5784,0.324137931034170,-0.081355932202535,0.331034482758288,-0.088135593219506,0.331034482758288,-0.074576271185564,0.337931034482406,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5667,5725,5727,5785,0.324137931034170,-0.067796610168599,0.331034482758288,-0.074576271185564,0.331034482758288,-0.061016949151634,0.337931034482406,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5668,5726,5728,5786,0.324137931034170,-0.054237288134667,0.331034482758288,-0.061016949151634,0.331034482758288,-0.047457627117699,0.337931034482406,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,0.000000000000000,2 +5669,5727,5729,5787,0.324137931034170,-0.040677966100731,0.331034482758288,-0.047457627117699,0.331034482758288,-0.033898305083763,0.337931034482406,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 +5670,5728,5730,5788,0.324137931034170,-0.027118644066798,0.331034482758288,-0.033898305083763,0.331034482758288,-0.020338983049833,0.337931034482406,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5671,5729,5731,5789,0.324137931034170,-0.013559322032862,0.331034482758288,-0.020338983049833,0.331034482758288,-0.006779661015891,0.337931034482406,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5672,5730,5732,5790,0.324137931034170,0.000000000001056,0.331034482758288,-0.006779661015891,0.331034482758288,0.006779661018004,0.337931034482406,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 +5673,5731,5733,5791,0.324137931034170,0.013559322034933,0.331034482758288,0.006779661018004,0.331034482758288,0.020338983051863,0.337931034482406,0.013559322034933,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5674,5732,5734,5792,0.324137931034170,0.027118644068793,0.331034482758288,0.020338983051863,0.331034482758288,0.033898305085723,0.337931034482406,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5675,5733,5735,5793,0.324137931034170,0.040677966102653,0.331034482758288,0.033898305085723,0.331034482758288,0.047457627119583,0.337931034482406,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5676,5734,5736,5794,0.324137931034170,0.054237288136513,0.331034482758288,0.047457627119583,0.331034482758288,0.061016949153442,0.337931034482406,0.054237288136513,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5677,5735,5737,5795,0.324137931034170,0.067796610170372,0.331034482758288,0.061016949153442,0.331034482758288,0.074576271187302,0.337931034482406,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5678,5736,5738,5796,0.324137931034170,0.081355932204232,0.331034482758288,0.074576271187302,0.331034482758288,0.088135593221162,0.337931034482406,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5679,5737,5739,5797,0.324137931034170,0.094915254238085,0.331034482758288,0.088135593221162,0.331034482758288,0.101694915255008,0.337931034482406,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 +5680,5738,5740,5798,0.324137931034170,0.108474576271933,0.331034482758288,0.101694915255008,0.331034482758288,0.115254237288859,0.337931034482406,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 +5681,5739,5741,5799,0.324137931034170,0.122033898305789,0.331034482758288,0.115254237288859,0.331034482758288,0.128813559322719,0.337931034482406,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5682,5740,5742,5800,0.324137931034170,0.135593220339649,0.331034482758288,0.128813559322719,0.331034482758288,0.142372881356579,0.337931034482406,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5683,5741,5743,5801,0.324137931034170,0.149152542373509,0.331034482758288,0.142372881356579,0.331034482758288,0.155932203390438,0.337931034482406,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5684,5742,5744,5802,0.324137931034170,0.162711864407368,0.331034482758288,0.155932203390438,0.331034482758288,0.169491525424298,0.337931034482406,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5685,5743,5745,5803,0.324137931034170,0.176271186441228,0.331034482758288,0.169491525424298,0.331034482758288,0.183050847458158,0.337931034482406,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5686,5744,5746,5804,0.324137931034170,0.189830508475088,0.331034482758288,0.183050847458158,0.331034482758288,0.196610169492017,0.337931034482406,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5687,5745,5747,5805,0.324137931034170,0.203389830508947,0.331034482758288,0.196610169492017,0.331034482758288,0.210169491525877,0.337931034482406,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5688,5746,5748,5806,0.324137931034170,0.216949152542807,0.331034482758288,0.210169491525877,0.331034482758288,0.223728813559737,0.337931034482406,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5689,5747,5749,5807,0.324137931034170,0.230508474576667,0.331034482758288,0.223728813559737,0.331034482758288,0.237288135593597,0.337931034482406,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5690,5748,5750,5808,0.324137931034170,0.244067796610527,0.331034482758288,0.237288135593597,0.331034482758288,0.250847457627456,0.337931034482406,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5691,5749,5751,5809,0.324137931034170,0.257627118644386,0.331034482758288,0.250847457627456,0.331034482758288,0.264406779661316,0.337931034482406,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5692,5750,5752,5810,0.324137931034170,0.271186440678246,0.331034482758288,0.264406779661316,0.331034482758288,0.277966101695176,0.337931034482406,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5693,5751,5753,5811,0.324137931034170,0.284745762712106,0.331034482758288,0.277966101695176,0.331034482758288,0.291525423729036,0.337931034482406,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5694,5752,5754,5812,0.324137931034170,0.298305084745975,0.331034482758288,0.291525423729036,0.331034482758288,0.305084745762915,0.337931034482406,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 +5695,5753,5755,5813,0.324137931034170,0.311864406779851,0.331034482758288,0.305084745762915,0.331034482758288,0.318644067796787,0.337931034482406,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 +5696,5754,5756,5814,0.324137931034170,0.325423728813729,0.331034482758288,0.318644067796787,0.331034482758288,0.332203389830671,0.337931034482406,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 +5697,5755,5757,5815,0.324137931034170,0.338983050847605,0.331034482758288,0.332203389830671,0.331034482758288,0.345762711864539,0.337931034482406,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 +5698,5756,5758,5816,0.324137931034170,0.352542372881469,0.331034482758288,0.345762711864539,0.331034482758288,0.359322033898399,0.337931034482406,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5699,5757,5759,5817,0.324137931034170,0.366101694915329,0.331034482758288,0.359322033898399,0.331034482758288,0.372881355932259,0.337931034482406,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5700,5758,5760,5818,0.324137931034170,0.379661016949189,0.331034482758288,0.372881355932259,0.331034482758288,0.386440677966119,0.337931034482406,0.379661016949189,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5701,5759,5819,7008,0.324137931034170,0.393220338983059,0.331034482758288,0.386440677966119,0.337931034482406,0.393220338983059,0.331034482758288,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 +4918,5702,5762,5820,0.344827586206523,-0.400000000000000,0.337931034482406,-0.393220338983034,0.344827586206523,-0.386440677966068,0.351724137930641,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 +5703,5761,5763,5821,0.337931034482405,-0.379661016949095,0.344827586206523,-0.386440677966068,0.344827586206523,-0.372881355932122,0.351724137930641,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5704,5762,5764,5822,0.337931034482405,-0.366101694915163,0.344827586206523,-0.372881355932122,0.344827586206523,-0.359322033898204,0.351724137930641,-0.366101694915163,-0.013559322033918,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 +5705,5763,5765,5823,0.337931034482406,-0.352542372881227,0.344827586206523,-0.359322033898204,0.344827586206523,-0.345762711864250,0.351724137930641,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,-0.000000000000000,2 +5706,5764,5766,5824,0.337931034482406,-0.338983050847293,0.344827586206523,-0.345762711864250,0.344827586206523,-0.332203389830336,0.351724137930641,-0.338983050847293,-0.013559322033914,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 +5707,5765,5767,5825,0.337931034482406,-0.325423728813361,0.344827586206523,-0.332203389830336,0.344827586206523,-0.318644067796385,0.351724137930641,-0.325423728813361,-0.013559322033951,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033951,0.000000000000000,2 +5708,5766,5768,5826,0.337931034482406,-0.311864406779421,0.344827586206523,-0.318644067796385,0.344827586206523,-0.305084745762457,0.351724137930641,-0.311864406779421,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,-0.000000000000000,2 +5709,5767,5769,5827,0.337931034482405,-0.298305084745489,0.344827586206523,-0.305084745762457,0.344827586206523,-0.291525423728521,0.351724137930641,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 +5710,5768,5770,5828,0.337931034482405,-0.284745762711550,0.344827586206523,-0.291525423728521,0.344827586206523,-0.277966101694579,0.351724137930641,-0.284745762711550,-0.013559322033942,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 +5711,5769,5771,5829,0.337931034482406,-0.271186440677618,0.344827586206523,-0.277966101694579,0.344827586206523,-0.264406779660657,0.351724137930640,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,-0.000000000000000,2 +5712,5770,5772,5830,0.337931034482406,-0.257627118643680,0.344827586206523,-0.264406779660657,0.344827586206523,-0.250847457626703,0.351724137930640,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5713,5771,5773,5831,0.337931034482406,-0.244067796609748,0.344827586206523,-0.250847457626703,0.344827586206523,-0.237288135592793,0.351724137930640,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,-0.000000000000000,2 +5714,5772,5774,5832,0.337931034482405,-0.230508474575816,0.344827586206523,-0.237288135592793,0.344827586206523,-0.223728813558839,0.351724137930641,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5715,5773,5775,5833,0.337931034482405,-0.216949152541877,0.344827586206523,-0.223728813558839,0.344827586206523,-0.210169491524915,0.351724137930641,-0.216949152541877,-0.013559322033924,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,-0.000000000000000,2 +5716,5774,5776,5834,0.337931034482406,-0.203389830507945,0.344827586206523,-0.210169491524915,0.344827586206523,-0.196610169490975,0.351724137930641,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 +5717,5775,5777,5835,0.337931034482406,-0.189830508474016,0.344827586206523,-0.196610169490975,0.344827586206523,-0.183050847457058,0.351724137930641,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,-0.000000000000000,2 +5718,5776,5778,5836,0.337931034482406,-0.176271186440084,0.344827586206523,-0.183050847457058,0.344827586206523,-0.169491525423110,0.351724137930641,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 +5719,5777,5779,5837,0.337931034482406,-0.162711864406145,0.344827586206523,-0.169491525423110,0.344827586206523,-0.155932203389179,0.351724137930641,-0.162711864406145,-0.013559322033931,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 +5720,5778,5780,5838,0.337931034482406,-0.149152542372213,0.344827586206523,-0.155932203389179,0.344827586206523,-0.142372881355246,0.351724137930641,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 +5721,5779,5781,5839,0.337931034482406,-0.135593220338274,0.344827586206523,-0.142372881355246,0.344827586206523,-0.128813559321301,0.351724137930641,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033945,0.000000000000000,2 +5722,5780,5782,5840,0.337931034482406,-0.122033898304341,0.344827586206523,-0.128813559321301,0.344827586206523,-0.115254237287382,0.351724137930641,-0.122033898304341,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 +5723,5781,5783,5841,0.337931034482406,-0.108474576270409,0.344827586206523,-0.115254237287382,0.344827586206523,-0.101694915253436,0.351724137930641,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,-0.000000000000000,2 +5724,5782,5784,5842,0.337931034482406,-0.094915254236471,0.344827586206523,-0.101694915253436,0.344827586206523,-0.088135593219506,0.351724137930641,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5725,5783,5785,5843,0.337931034482406,-0.081355932202535,0.344827586206523,-0.088135593219506,0.344827586206523,-0.074576271185564,0.351724137930640,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5726,5784,5786,5844,0.337931034482406,-0.067796610168599,0.344827586206523,-0.074576271185564,0.344827586206523,-0.061016949151634,0.351724137930641,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,-0.000000000000000,2 +5727,5785,5787,5845,0.337931034482406,-0.054237288134667,0.344827586206523,-0.061016949151634,0.344827586206523,-0.047457627117699,0.351724137930641,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033935,0.000000000000000,2 +5728,5786,5788,5846,0.337931034482406,-0.040677966100731,0.344827586206523,-0.047457627117699,0.344827586206523,-0.033898305083763,0.351724137930641,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 +5729,5787,5789,5847,0.337931034482406,-0.027118644066798,0.344827586206523,-0.033898305083763,0.344827586206523,-0.020338983049833,0.351724137930641,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,-0.000000000000000,2 +5730,5788,5790,5848,0.337931034482406,-0.013559322032862,0.344827586206523,-0.020338983049833,0.344827586206523,-0.006779661015891,0.351724137930641,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5731,5789,5791,5849,0.337931034482406,0.000000000001056,0.344827586206523,-0.006779661015891,0.344827586206523,0.006779661018004,0.351724137930641,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 +5732,5790,5792,5850,0.337931034482406,0.013559322034933,0.344827586206523,0.006779661018004,0.344827586206523,0.020338983051863,0.351724137930641,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5733,5791,5793,5851,0.337931034482406,0.027118644068793,0.344827586206523,0.020338983051863,0.344827586206523,0.033898305085723,0.351724137930641,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5734,5792,5794,5852,0.337931034482406,0.040677966102653,0.344827586206523,0.033898305085723,0.344827586206523,0.047457627119583,0.351724137930641,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5735,5793,5795,5853,0.337931034482406,0.054237288136513,0.344827586206523,0.047457627119583,0.344827586206523,0.061016949153442,0.351724137930641,0.054237288136512,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5736,5794,5796,5854,0.337931034482406,0.067796610170372,0.344827586206523,0.061016949153442,0.344827586206523,0.074576271187302,0.351724137930641,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5737,5795,5797,5855,0.337931034482406,0.081355932204232,0.344827586206523,0.074576271187302,0.344827586206523,0.088135593221162,0.351724137930641,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5738,5796,5798,5856,0.337931034482406,0.094915254238085,0.344827586206523,0.088135593221162,0.344827586206523,0.101694915255008,0.351724137930641,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 +5739,5797,5799,5857,0.337931034482406,0.108474576271933,0.344827586206523,0.101694915255008,0.344827586206523,0.115254237288859,0.351724137930641,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 +5740,5798,5800,5858,0.337931034482406,0.122033898305789,0.344827586206523,0.115254237288859,0.344827586206523,0.128813559322719,0.351724137930641,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5741,5799,5801,5859,0.337931034482406,0.135593220339649,0.344827586206523,0.128813559322719,0.344827586206523,0.142372881356579,0.351724137930641,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5742,5800,5802,5860,0.337931034482406,0.149152542373509,0.344827586206523,0.142372881356579,0.344827586206523,0.155932203390438,0.351724137930641,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5743,5801,5803,5861,0.337931034482406,0.162711864407368,0.344827586206523,0.155932203390438,0.344827586206523,0.169491525424298,0.351724137930641,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5744,5802,5804,5862,0.337931034482406,0.176271186441228,0.344827586206523,0.169491525424298,0.344827586206523,0.183050847458158,0.351724137930641,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5745,5803,5805,5863,0.337931034482406,0.189830508475088,0.344827586206523,0.183050847458158,0.344827586206523,0.196610169492017,0.351724137930641,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5746,5804,5806,5864,0.337931034482406,0.203389830508947,0.344827586206523,0.196610169492017,0.344827586206523,0.210169491525877,0.351724137930641,0.203389830508947,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5747,5805,5807,5865,0.337931034482406,0.216949152542807,0.344827586206523,0.210169491525877,0.344827586206523,0.223728813559737,0.351724137930641,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5748,5806,5808,5866,0.337931034482406,0.230508474576667,0.344827586206523,0.223728813559737,0.344827586206523,0.237288135593597,0.351724137930641,0.230508474576667,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5749,5807,5809,5867,0.337931034482406,0.244067796610527,0.344827586206523,0.237288135593597,0.344827586206523,0.250847457627456,0.351724137930641,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5750,5808,5810,5868,0.337931034482406,0.257627118644386,0.344827586206523,0.250847457627456,0.344827586206523,0.264406779661316,0.351724137930641,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5751,5809,5811,5869,0.337931034482406,0.271186440678246,0.344827586206523,0.264406779661316,0.344827586206523,0.277966101695176,0.351724137930641,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5752,5810,5812,5870,0.337931034482406,0.284745762712106,0.344827586206523,0.277966101695176,0.344827586206523,0.291525423729036,0.351724137930641,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5753,5811,5813,5871,0.337931034482406,0.298305084745975,0.344827586206523,0.291525423729036,0.344827586206523,0.305084745762915,0.351724137930641,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 +5754,5812,5814,5872,0.337931034482406,0.311864406779851,0.344827586206523,0.305084745762915,0.344827586206523,0.318644067796787,0.351724137930641,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033872,-0.000000000000000,2 +5755,5813,5815,5873,0.337931034482406,0.325423728813729,0.344827586206523,0.318644067796787,0.344827586206523,0.332203389830671,0.351724137930641,0.325423728813729,-0.013559322033883,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 +5756,5814,5816,5874,0.337931034482406,0.338983050847605,0.344827586206523,0.332203389830671,0.344827586206523,0.345762711864539,0.351724137930641,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 +5757,5815,5817,5875,0.337931034482406,0.352542372881469,0.344827586206523,0.345762711864539,0.344827586206523,0.359322033898399,0.351724137930641,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5758,5816,5818,5876,0.337931034482406,0.366101694915329,0.344827586206523,0.359322033898399,0.344827586206523,0.372881355932259,0.351724137930641,0.366101694915329,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5759,5817,5819,5877,0.337931034482406,0.379661016949189,0.344827586206523,0.372881355932259,0.344827586206523,0.386440677966119,0.351724137930641,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5760,5818,5878,7022,0.337931034482406,0.393220338983059,0.344827586206523,0.386440677966119,0.351724137930641,0.393220338983059,0.344827586206523,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 +4932,5761,5821,5879,0.358620689654758,-0.400000000000000,0.351724137930641,-0.393220338983034,0.358620689654758,-0.386440677966068,0.365517241378876,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 +5762,5820,5822,5880,0.351724137930641,-0.379661016949095,0.358620689654758,-0.386440677966068,0.358620689654758,-0.372881355932122,0.365517241378876,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5763,5821,5823,5881,0.351724137930641,-0.366101694915163,0.358620689654758,-0.372881355932122,0.358620689654758,-0.359322033898204,0.365517241378876,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 +5764,5822,5824,5882,0.351724137930641,-0.352542372881227,0.358620689654758,-0.359322033898204,0.358620689654758,-0.345762711864250,0.365517241378876,-0.352542372881227,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5765,5823,5825,5883,0.351724137930641,-0.338983050847293,0.358620689654758,-0.345762711864250,0.358620689654758,-0.332203389830336,0.365517241378876,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,-0.000000000000000,2 +5766,5824,5826,5884,0.351724137930641,-0.325423728813361,0.358620689654758,-0.332203389830336,0.358620689654758,-0.318644067796386,0.365517241378876,-0.325423728813361,-0.013559322033951,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 +5767,5825,5827,5885,0.351724137930641,-0.311864406779421,0.358620689654758,-0.318644067796386,0.358620689654758,-0.305084745762457,0.365517241378876,-0.311864406779422,-0.013559322033928,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,-0.000000000000000,2 +5768,5826,5828,5886,0.351724137930641,-0.298305084745489,0.358620689654758,-0.305084745762457,0.358620689654758,-0.291525423728521,0.365517241378876,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033936,-0.000000000000000,2 +5769,5827,5829,5887,0.351724137930641,-0.284745762711550,0.358620689654758,-0.291525423728521,0.358620689654758,-0.277966101694579,0.365517241378876,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 +5770,5828,5830,5888,0.351724137930640,-0.271186440677618,0.358620689654758,-0.277966101694579,0.358620689654758,-0.264406779660657,0.365517241378876,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,-0.000000000000000,2 +5771,5829,5831,5889,0.351724137930640,-0.257627118643680,0.358620689654758,-0.264406779660657,0.358620689654758,-0.250847457626703,0.365517241378876,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5772,5830,5832,5890,0.351724137930640,-0.244067796609748,0.358620689654758,-0.250847457626703,0.358620689654758,-0.237288135592793,0.365517241378876,-0.244067796609748,-0.013559322033910,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,-0.000000000000000,2 +5773,5831,5833,5891,0.351724137930641,-0.230508474575816,0.358620689654758,-0.237288135592793,0.358620689654758,-0.223728813558839,0.365517241378876,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,-0.000000000000000,2 +5774,5832,5834,5892,0.351724137930641,-0.216949152541877,0.358620689654758,-0.223728813558839,0.358620689654758,-0.210169491524915,0.365517241378876,-0.216949152541877,-0.013559322033924,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,0.000000000000000,2 +5775,5833,5835,5893,0.351724137930641,-0.203389830507945,0.358620689654758,-0.210169491524915,0.358620689654758,-0.196610169490975,0.365517241378876,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,-0.000000000000000,2 +5776,5834,5836,5894,0.351724137930641,-0.189830508474016,0.358620689654758,-0.196610169490975,0.358620689654758,-0.183050847457058,0.365517241378876,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 +5777,5835,5837,5895,0.351724137930641,-0.176271186440084,0.358620689654758,-0.183050847457058,0.358620689654758,-0.169491525423110,0.365517241378876,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 +5778,5836,5838,5896,0.351724137930641,-0.162711864406145,0.358620689654758,-0.169491525423110,0.358620689654758,-0.155932203389179,0.365517241378876,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,-0.000000000000000,2 +5779,5837,5839,5897,0.351724137930641,-0.149152542372213,0.358620689654758,-0.155932203389179,0.358620689654758,-0.142372881355246,0.365517241378876,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 +5780,5838,5840,5898,0.351724137930641,-0.135593220338273,0.358620689654758,-0.142372881355246,0.358620689654758,-0.128813559321301,0.365517241378876,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,-0.000000000000000,2 +5781,5839,5841,5899,0.351724137930641,-0.122033898304341,0.358620689654758,-0.128813559321301,0.358620689654758,-0.115254237287382,0.365517241378876,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,-0.000000000000000,2 +5782,5840,5842,5900,0.351724137930641,-0.108474576270409,0.358620689654758,-0.115254237287382,0.358620689654758,-0.101694915253436,0.365517241378876,-0.108474576270409,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5783,5841,5843,5901,0.351724137930641,-0.094915254236471,0.358620689654758,-0.101694915253436,0.358620689654758,-0.088135593219506,0.365517241378876,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5784,5842,5844,5902,0.351724137930640,-0.081355932202535,0.358620689654758,-0.088135593219506,0.358620689654758,-0.074576271185564,0.365517241378876,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,-0.000000000000000,2 +5785,5843,5845,5903,0.351724137930641,-0.067796610168599,0.358620689654758,-0.074576271185564,0.358620689654758,-0.061016949151634,0.365517241378876,-0.067796610168599,-0.013559322033930,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5786,5844,5846,5904,0.351724137930641,-0.054237288134667,0.358620689654758,-0.061016949151634,0.358620689654758,-0.047457627117699,0.365517241378876,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,-0.000000000000000,2 +5787,5845,5847,5905,0.351724137930641,-0.040677966100731,0.358620689654758,-0.047457627117699,0.358620689654758,-0.033898305083763,0.365517241378876,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 +5788,5846,5848,5906,0.351724137930641,-0.027118644066798,0.358620689654758,-0.033898305083763,0.358620689654758,-0.020338983049833,0.365517241378876,-0.027118644066798,-0.013559322033930,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5789,5847,5849,5907,0.351724137930641,-0.013559322032862,0.358620689654758,-0.020338983049833,0.358620689654758,-0.006779661015891,0.365517241378876,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,-0.000000000000000,2 +5790,5848,5850,5908,0.351724137930641,0.000000000001056,0.358620689654758,-0.006779661015891,0.358620689654758,0.006779661018004,0.365517241378876,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 +5791,5849,5851,5909,0.351724137930641,0.013559322034933,0.358620689654758,0.006779661018004,0.358620689654758,0.020338983051863,0.365517241378876,0.013559322034934,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5792,5850,5852,5910,0.351724137930641,0.027118644068793,0.358620689654758,0.020338983051863,0.358620689654758,0.033898305085723,0.365517241378876,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5793,5851,5853,5911,0.351724137930641,0.040677966102653,0.358620689654758,0.033898305085723,0.358620689654758,0.047457627119583,0.365517241378876,0.040677966102653,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5794,5852,5854,5912,0.351724137930641,0.054237288136512,0.358620689654758,0.047457627119583,0.358620689654758,0.061016949153442,0.365517241378876,0.054237288136513,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5795,5853,5855,5913,0.351724137930641,0.067796610170372,0.358620689654758,0.061016949153442,0.358620689654758,0.074576271187302,0.365517241378876,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5796,5854,5856,5914,0.351724137930641,0.081355932204232,0.358620689654758,0.074576271187302,0.358620689654758,0.088135593221162,0.365517241378876,0.081355932204232,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5797,5855,5857,5915,0.351724137930641,0.094915254238085,0.358620689654758,0.088135593221162,0.358620689654758,0.101694915255008,0.365517241378876,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 +5798,5856,5858,5916,0.351724137930641,0.108474576271933,0.358620689654758,0.101694915255008,0.358620689654758,0.115254237288859,0.365517241378876,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033852,-0.000000000000000,2 +5799,5857,5859,5917,0.351724137930641,0.122033898305789,0.358620689654758,0.115254237288859,0.358620689654758,0.128813559322719,0.365517241378876,0.122033898305789,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5800,5858,5860,5918,0.351724137930641,0.135593220339649,0.358620689654758,0.128813559322719,0.358620689654758,0.142372881356579,0.365517241378876,0.135593220339649,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5801,5859,5861,5919,0.351724137930641,0.149152542373509,0.358620689654758,0.142372881356579,0.358620689654758,0.155932203390438,0.365517241378876,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5802,5860,5862,5920,0.351724137930641,0.162711864407368,0.358620689654758,0.155932203390438,0.358620689654758,0.169491525424298,0.365517241378876,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5803,5861,5863,5921,0.351724137930641,0.176271186441228,0.358620689654758,0.169491525424298,0.358620689654758,0.183050847458158,0.365517241378876,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5804,5862,5864,5922,0.351724137930641,0.189830508475088,0.358620689654758,0.183050847458158,0.358620689654758,0.196610169492017,0.365517241378876,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5805,5863,5865,5923,0.351724137930641,0.203389830508947,0.358620689654758,0.196610169492017,0.358620689654758,0.210169491525877,0.365517241378876,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5806,5864,5866,5924,0.351724137930641,0.216949152542807,0.358620689654758,0.210169491525877,0.358620689654758,0.223728813559737,0.365517241378876,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5807,5865,5867,5925,0.351724137930641,0.230508474576667,0.358620689654758,0.223728813559737,0.358620689654758,0.237288135593597,0.365517241378876,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5808,5866,5868,5926,0.351724137930641,0.244067796610527,0.358620689654758,0.237288135593597,0.358620689654758,0.250847457627456,0.365517241378876,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5809,5867,5869,5927,0.351724137930641,0.257627118644386,0.358620689654758,0.250847457627456,0.358620689654758,0.264406779661316,0.365517241378876,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5810,5868,5870,5928,0.351724137930641,0.271186440678246,0.358620689654758,0.264406779661316,0.358620689654758,0.277966101695176,0.365517241378876,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5811,5869,5871,5929,0.351724137930641,0.284745762712106,0.358620689654758,0.277966101695176,0.358620689654758,0.291525423729036,0.365517241378876,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5812,5870,5872,5930,0.351724137930641,0.298305084745975,0.358620689654758,0.291525423729036,0.358620689654758,0.305084745762915,0.365517241378876,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 +5813,5871,5873,5931,0.351724137930641,0.311864406779851,0.358620689654758,0.305084745762915,0.358620689654758,0.318644067796787,0.365517241378876,0.311864406779851,-0.013559322033872,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 +5814,5872,5874,5932,0.351724137930641,0.325423728813729,0.358620689654758,0.318644067796787,0.358620689654758,0.332203389830671,0.365517241378876,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033883,-0.000000000000000,2 +5815,5873,5875,5933,0.351724137930641,0.338983050847605,0.358620689654758,0.332203389830671,0.358620689654758,0.345762711864539,0.365517241378876,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 +5816,5874,5876,5934,0.351724137930641,0.352542372881469,0.358620689654758,0.345762711864539,0.358620689654758,0.359322033898399,0.365517241378876,0.352542372881469,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5817,5875,5877,5935,0.351724137930641,0.366101694915329,0.358620689654758,0.359322033898399,0.358620689654758,0.372881355932259,0.365517241378876,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5818,5876,5878,5936,0.351724137930641,0.379661016949189,0.358620689654758,0.372881355932259,0.358620689654758,0.386440677966119,0.365517241378876,0.379661016949189,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5819,5877,5937,7036,0.351724137930641,0.393220338983059,0.358620689654758,0.386440677966119,0.365517241378876,0.393220338983059,0.358620689654758,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 +4946,5820,5880,5938,0.372413793102993,-0.400000000000000,0.365517241378876,-0.393220338983034,0.372413793102993,-0.386440677966068,0.379310344827111,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 +5821,5879,5881,5939,0.365517241378876,-0.379661016949095,0.372413793102993,-0.386440677966068,0.372413793102993,-0.372881355932122,0.379310344827111,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5822,5880,5882,5940,0.365517241378876,-0.366101694915163,0.372413793102993,-0.372881355932122,0.372413793102993,-0.359322033898204,0.379310344827111,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,-0.000000000000000,2 +5823,5881,5883,5941,0.365517241378876,-0.352542372881227,0.372413793102993,-0.359322033898204,0.372413793102993,-0.345762711864250,0.379310344827111,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5824,5882,5884,5942,0.365517241378876,-0.338983050847293,0.372413793102993,-0.345762711864250,0.372413793102993,-0.332203389830336,0.379310344827111,-0.338983050847293,-0.013559322033914,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033914,-0.000000000000000,2 +5825,5883,5885,5943,0.365517241378876,-0.325423728813361,0.372413793102993,-0.332203389830336,0.372413793102993,-0.318644067796386,0.379310344827111,-0.325423728813361,-0.013559322033950,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 +5826,5884,5886,5944,0.365517241378876,-0.311864406779422,0.372413793102993,-0.318644067796386,0.372413793102993,-0.305084745762457,0.379310344827111,-0.311864406779421,-0.013559322033928,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033928,-0.000000000000000,2 +5827,5885,5887,5945,0.365517241378876,-0.298305084745489,0.372413793102993,-0.305084745762457,0.372413793102993,-0.291525423728521,0.379310344827111,-0.298305084745489,-0.013559322033936,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 +5828,5886,5888,5946,0.365517241378876,-0.284745762711550,0.372413793102993,-0.291525423728521,0.372413793102993,-0.277966101694579,0.379310344827111,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 +5829,5887,5889,5947,0.365517241378876,-0.271186440677618,0.372413793102993,-0.277966101694579,0.372413793102993,-0.264406779660657,0.379310344827111,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,0.000000000000000,2 +5830,5888,5890,5948,0.365517241378876,-0.257627118643680,0.372413793102993,-0.264406779660657,0.372413793102993,-0.250847457626703,0.379310344827111,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,-0.000000000000000,2 +5831,5889,5891,5949,0.365517241378876,-0.244067796609748,0.372413793102993,-0.250847457626703,0.372413793102993,-0.237288135592793,0.379310344827111,-0.244067796609748,-0.013559322033910,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 +5832,5890,5892,5950,0.365517241378876,-0.230508474575816,0.372413793102993,-0.237288135592793,0.372413793102993,-0.223728813558839,0.379310344827111,-0.230508474575816,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5833,5891,5893,5951,0.365517241378876,-0.216949152541877,0.372413793102993,-0.223728813558839,0.372413793102993,-0.210169491524915,0.379310344827111,-0.216949152541877,-0.013559322033924,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033924,0.000000000000000,2 +5834,5892,5894,5952,0.365517241378876,-0.203389830507945,0.372413793102993,-0.210169491524915,0.372413793102993,-0.196610169490975,0.379310344827111,-0.203389830507945,-0.013559322033940,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,-0.000000000000000,2 +5835,5893,5895,5953,0.365517241378876,-0.189830508474016,0.372413793102993,-0.196610169490975,0.372413793102993,-0.183050847457058,0.379310344827111,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 +5836,5894,5896,5954,0.365517241378876,-0.176271186440084,0.372413793102993,-0.183050847457058,0.372413793102993,-0.169491525423110,0.379310344827111,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,-0.000000000000000,2 +5837,5895,5897,5955,0.365517241378876,-0.162711864406145,0.372413793102993,-0.169491525423110,0.372413793102993,-0.155932203389179,0.379310344827111,-0.162711864406145,-0.013559322033931,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 +5838,5896,5898,5956,0.365517241378876,-0.149152542372213,0.372413793102993,-0.155932203389179,0.372413793102993,-0.142372881355246,0.379310344827111,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 +5839,5897,5899,5957,0.365517241378876,-0.135593220338274,0.372413793102993,-0.142372881355246,0.372413793102993,-0.128813559321301,0.379310344827111,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033945,0.000000000000000,2 +5840,5898,5900,5958,0.365517241378876,-0.122033898304341,0.372413793102993,-0.128813559321301,0.372413793102993,-0.115254237287382,0.379310344827111,-0.122033898304341,-0.013559322033919,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,-0.000000000000000,2 +5841,5899,5901,5959,0.365517241378876,-0.108474576270409,0.372413793102993,-0.115254237287382,0.372413793102993,-0.101694915253436,0.379310344827111,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5842,5900,5902,5960,0.365517241378876,-0.094915254236471,0.372413793102993,-0.101694915253436,0.372413793102993,-0.088135593219506,0.379310344827111,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5843,5901,5903,5961,0.365517241378876,-0.081355932202535,0.372413793102993,-0.088135593219506,0.372413793102993,-0.074576271185564,0.379310344827111,-0.081355932202535,-0.013559322033941,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5844,5902,5904,5962,0.365517241378876,-0.067796610168599,0.372413793102993,-0.074576271185564,0.372413793102993,-0.061016949151634,0.379310344827111,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5845,5903,5905,5963,0.365517241378876,-0.054237288134667,0.372413793102993,-0.061016949151634,0.372413793102993,-0.047457627117699,0.379310344827111,-0.054237288134667,-0.013559322033935,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033935,-0.000000000000000,2 +5846,5904,5906,5964,0.365517241378876,-0.040677966100731,0.372413793102993,-0.047457627117699,0.372413793102993,-0.033898305083763,0.379310344827111,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 +5847,5905,5907,5965,0.365517241378876,-0.027118644066798,0.372413793102993,-0.033898305083763,0.372413793102993,-0.020338983049832,0.379310344827111,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5848,5906,5908,5966,0.365517241378876,-0.013559322032862,0.372413793102993,-0.020338983049832,0.372413793102993,-0.006779661015891,0.379310344827111,-0.013559322032862,-0.013559322033941,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,-0.000000000000000,2 +5849,5907,5909,5967,0.365517241378876,0.000000000001056,0.372413793102993,-0.006779661015891,0.372413793102993,0.006779661018004,0.379310344827111,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 +5850,5908,5910,5968,0.365517241378876,0.013559322034934,0.372413793102993,0.006779661018004,0.372413793102993,0.020338983051863,0.379310344827111,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5851,5909,5911,5969,0.365517241378876,0.027118644068793,0.372413793102993,0.020338983051863,0.372413793102993,0.033898305085723,0.379310344827111,0.027118644068793,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5852,5910,5912,5970,0.365517241378876,0.040677966102653,0.372413793102993,0.033898305085723,0.372413793102993,0.047457627119583,0.379310344827111,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5853,5911,5913,5971,0.365517241378876,0.054237288136513,0.372413793102993,0.047457627119583,0.372413793102993,0.061016949153442,0.379310344827111,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5854,5912,5914,5972,0.365517241378876,0.067796610170372,0.372413793102993,0.061016949153442,0.372413793102993,0.074576271187302,0.379310344827111,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5855,5913,5915,5973,0.365517241378876,0.081355932204232,0.372413793102993,0.074576271187302,0.372413793102993,0.088135593221162,0.379310344827111,0.081355932204232,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5856,5914,5916,5974,0.365517241378876,0.094915254238085,0.372413793102993,0.088135593221162,0.372413793102993,0.101694915255008,0.379310344827111,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 +5857,5915,5917,5975,0.365517241378876,0.108474576271933,0.372413793102993,0.101694915255008,0.372413793102993,0.115254237288859,0.379310344827111,0.108474576271933,-0.013559322033852,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 +5858,5916,5918,5976,0.365517241378876,0.122033898305789,0.372413793102993,0.115254237288859,0.372413793102993,0.128813559322719,0.379310344827111,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5859,5917,5919,5977,0.365517241378876,0.135593220339649,0.372413793102993,0.128813559322719,0.372413793102993,0.142372881356579,0.379310344827111,0.135593220339649,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5860,5918,5920,5978,0.365517241378876,0.149152542373509,0.372413793102993,0.142372881356579,0.372413793102993,0.155932203390438,0.379310344827111,0.149152542373509,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5861,5919,5921,5979,0.365517241378876,0.162711864407368,0.372413793102993,0.155932203390438,0.372413793102993,0.169491525424298,0.379310344827111,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5862,5920,5922,5980,0.365517241378876,0.176271186441228,0.372413793102993,0.169491525424298,0.372413793102993,0.183050847458158,0.379310344827111,0.176271186441228,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5863,5921,5923,5981,0.365517241378876,0.189830508475088,0.372413793102993,0.183050847458158,0.372413793102993,0.196610169492017,0.379310344827111,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5864,5922,5924,5982,0.365517241378876,0.203389830508947,0.372413793102993,0.196610169492017,0.372413793102993,0.210169491525877,0.379310344827111,0.203389830508947,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5865,5923,5925,5983,0.365517241378876,0.216949152542807,0.372413793102993,0.210169491525877,0.372413793102993,0.223728813559737,0.379310344827111,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5866,5924,5926,5984,0.365517241378876,0.230508474576667,0.372413793102993,0.223728813559737,0.372413793102993,0.237288135593597,0.379310344827111,0.230508474576667,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5867,5925,5927,5985,0.365517241378876,0.244067796610527,0.372413793102993,0.237288135593597,0.372413793102993,0.250847457627456,0.379310344827111,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5868,5926,5928,5986,0.365517241378876,0.257627118644386,0.372413793102993,0.250847457627456,0.372413793102993,0.264406779661316,0.379310344827111,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5869,5927,5929,5987,0.365517241378876,0.271186440678246,0.372413793102993,0.264406779661316,0.372413793102993,0.277966101695176,0.379310344827111,0.271186440678246,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5870,5928,5930,5988,0.365517241378876,0.284745762712106,0.372413793102993,0.277966101695176,0.372413793102993,0.291525423729036,0.379310344827111,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5871,5929,5931,5989,0.365517241378876,0.298305084745975,0.372413793102993,0.291525423729036,0.372413793102993,0.305084745762915,0.379310344827111,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 +5872,5930,5932,5990,0.365517241378876,0.311864406779851,0.372413793102993,0.305084745762915,0.372413793102993,0.318644067796787,0.379310344827111,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 +5873,5931,5933,5991,0.365517241378876,0.325423728813729,0.372413793102993,0.318644067796787,0.372413793102993,0.332203389830671,0.379310344827111,0.325423728813729,-0.013559322033883,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 +5874,5932,5934,5992,0.365517241378876,0.338983050847605,0.372413793102993,0.332203389830671,0.372413793102993,0.345762711864539,0.379310344827111,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 +5875,5933,5935,5993,0.365517241378876,0.352542372881469,0.372413793102993,0.345762711864539,0.372413793102993,0.359322033898399,0.379310344827111,0.352542372881469,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5876,5934,5936,5994,0.365517241378876,0.366101694915329,0.372413793102993,0.359322033898399,0.372413793102993,0.372881355932259,0.379310344827111,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5877,5935,5937,5995,0.365517241378876,0.379661016949189,0.372413793102993,0.372881355932259,0.372413793102993,0.386440677966119,0.379310344827111,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5878,5936,5996,7050,0.365517241378876,0.393220338983059,0.372413793102993,0.386440677966119,0.379310344827111,0.393220338983059,0.372413793102993,0.400000000000000,-0.013559322033881,0.000000000000000,0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 +4960,5879,5939,5997,0.386206896551228,-0.400000000000000,0.379310344827111,-0.393220338983034,0.386206896551228,-0.386440677966068,0.393103448275346,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 +5880,5938,5940,5998,0.379310344827111,-0.379661016949095,0.386206896551228,-0.386440677966068,0.386206896551228,-0.372881355932122,0.393103448275346,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5881,5939,5941,5999,0.379310344827111,-0.366101694915163,0.386206896551228,-0.372881355932122,0.386206896551228,-0.359322033898204,0.393103448275346,-0.366101694915163,-0.013559322033918,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 +5882,5940,5942,6000,0.379310344827111,-0.352542372881227,0.386206896551228,-0.359322033898204,0.386206896551228,-0.345762711864250,0.393103448275346,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5883,5941,5943,6001,0.379310344827111,-0.338983050847293,0.386206896551228,-0.345762711864250,0.386206896551228,-0.332203389830336,0.393103448275346,-0.338983050847293,-0.013559322033914,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 +5884,5942,5944,6002,0.379310344827111,-0.325423728813361,0.386206896551228,-0.332203389830336,0.386206896551228,-0.318644067796385,0.393103448275346,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 +5885,5943,5945,6003,0.379310344827111,-0.311864406779421,0.386206896551228,-0.318644067796385,0.386206896551228,-0.305084745762457,0.393103448275346,-0.311864406779421,-0.013559322033928,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,0.000000000000000,2 +5886,5944,5946,6004,0.379310344827111,-0.298305084745489,0.386206896551228,-0.305084745762457,0.386206896551228,-0.291525423728521,0.393103448275346,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033936,-0.000000000000000,2 +5887,5945,5947,6005,0.379310344827111,-0.284745762711550,0.386206896551228,-0.291525423728521,0.386206896551228,-0.277966101694579,0.393103448275346,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033942,-0.000000000000000,2 +5888,5946,5948,6006,0.379310344827111,-0.271186440677618,0.386206896551228,-0.277966101694579,0.386206896551228,-0.264406779660657,0.393103448275346,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,0.000000000000000,2 +5889,5947,5949,6007,0.379310344827111,-0.257627118643680,0.386206896551228,-0.264406779660657,0.386206896551228,-0.250847457626703,0.393103448275346,-0.257627118643680,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5890,5948,5950,6008,0.379310344827111,-0.244067796609748,0.386206896551228,-0.250847457626703,0.386206896551228,-0.237288135592793,0.393103448275346,-0.244067796609748,-0.013559322033910,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 +5891,5949,5951,6009,0.379310344827111,-0.230508474575816,0.386206896551228,-0.237288135592793,0.386206896551228,-0.223728813558839,0.393103448275346,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 +5892,5950,5952,6010,0.379310344827111,-0.216949152541877,0.386206896551228,-0.223728813558839,0.386206896551228,-0.210169491524915,0.393103448275346,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,0.000000000000000,2 +5893,5951,5953,6011,0.379310344827111,-0.203389830507945,0.386206896551228,-0.210169491524915,0.386206896551228,-0.196610169490975,0.393103448275346,-0.203389830507945,-0.013559322033940,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 +5894,5952,5954,6012,0.379310344827111,-0.189830508474016,0.386206896551228,-0.196610169490975,0.386206896551228,-0.183050847457058,0.393103448275346,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033917,-0.000000000000000,2 +5895,5953,5955,6013,0.379310344827111,-0.176271186440084,0.386206896551228,-0.183050847457058,0.386206896551228,-0.169491525423110,0.393103448275346,-0.176271186440084,-0.013559322033947,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 +5896,5954,5956,6014,0.379310344827111,-0.162711864406145,0.386206896551228,-0.169491525423110,0.386206896551228,-0.155932203389179,0.393103448275346,-0.162711864406145,-0.013559322033931,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 +5897,5955,5957,6015,0.379310344827111,-0.149152542372213,0.386206896551228,-0.155932203389179,0.386206896551228,-0.142372881355246,0.393103448275346,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 +5898,5956,5958,6016,0.379310344827111,-0.135593220338273,0.386206896551228,-0.142372881355246,0.386206896551228,-0.128813559321301,0.393103448275346,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,-0.000000000000000,2 +5899,5957,5959,6017,0.379310344827111,-0.122033898304341,0.386206896551228,-0.128813559321301,0.386206896551228,-0.115254237287382,0.393103448275346,-0.122033898304341,-0.013559322033919,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 +5900,5958,5960,6018,0.379310344827111,-0.108474576270409,0.386206896551228,-0.115254237287382,0.386206896551228,-0.101694915253436,0.393103448275346,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 +5901,5959,5961,6019,0.379310344827111,-0.094915254236471,0.386206896551228,-0.101694915253436,0.386206896551228,-0.088135593219506,0.393103448275346,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5902,5960,5962,6020,0.379310344827111,-0.081355932202535,0.386206896551228,-0.088135593219506,0.386206896551228,-0.074576271185564,0.393103448275346,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5903,5961,5963,6021,0.379310344827111,-0.067796610168599,0.386206896551228,-0.074576271185564,0.386206896551228,-0.061016949151634,0.393103448275346,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5904,5962,5964,6022,0.379310344827111,-0.054237288134667,0.386206896551228,-0.061016949151634,0.386206896551228,-0.047457627117699,0.393103448275346,-0.054237288134667,-0.013559322033935,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,0.000000000000000,2 +5905,5963,5965,6023,0.379310344827111,-0.040677966100731,0.386206896551228,-0.047457627117699,0.386206896551228,-0.033898305083763,0.393103448275346,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033937,-0.000000000000000,2 +5906,5964,5966,6024,0.379310344827111,-0.027118644066798,0.386206896551228,-0.033898305083763,0.386206896551228,-0.020338983049832,0.393103448275346,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 +5907,5965,5967,6025,0.379310344827111,-0.013559322032862,0.386206896551228,-0.020338983049832,0.386206896551228,-0.006779661015891,0.393103448275346,-0.013559322032862,-0.013559322033941,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 +5908,5966,5968,6026,0.379310344827111,0.000000000001056,0.386206896551228,-0.006779661015891,0.386206896551228,0.006779661018004,0.393103448275346,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 +5909,5967,5969,6027,0.379310344827111,0.013559322034933,0.386206896551228,0.006779661018004,0.386206896551228,0.020338983051863,0.393103448275346,0.013559322034933,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5910,5968,5970,6028,0.379310344827111,0.027118644068793,0.386206896551228,0.020338983051863,0.386206896551228,0.033898305085723,0.393103448275346,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5911,5969,5971,6029,0.379310344827111,0.040677966102653,0.386206896551228,0.033898305085723,0.386206896551228,0.047457627119583,0.393103448275346,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5912,5970,5972,6030,0.379310344827111,0.054237288136513,0.386206896551228,0.047457627119583,0.386206896551228,0.061016949153442,0.393103448275346,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5913,5971,5973,6031,0.379310344827111,0.067796610170372,0.386206896551228,0.061016949153442,0.386206896551228,0.074576271187302,0.393103448275346,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5914,5972,5974,6032,0.379310344827111,0.081355932204232,0.386206896551228,0.074576271187302,0.386206896551228,0.088135593221162,0.393103448275346,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5915,5973,5975,6033,0.379310344827111,0.094915254238085,0.386206896551228,0.088135593221162,0.386206896551228,0.101694915255008,0.393103448275346,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 +5916,5974,5976,6034,0.379310344827111,0.108474576271933,0.386206896551228,0.101694915255008,0.386206896551228,0.115254237288859,0.393103448275346,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 +5917,5975,5977,6035,0.379310344827111,0.122033898305789,0.386206896551228,0.115254237288859,0.386206896551228,0.128813559322719,0.393103448275346,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5918,5976,5978,6036,0.379310344827111,0.135593220339649,0.386206896551228,0.128813559322719,0.386206896551228,0.142372881356579,0.393103448275346,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5919,5977,5979,6037,0.379310344827111,0.149152542373509,0.386206896551228,0.142372881356579,0.386206896551228,0.155932203390438,0.393103448275346,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5920,5978,5980,6038,0.379310344827111,0.162711864407368,0.386206896551228,0.155932203390438,0.386206896551228,0.169491525424298,0.393103448275346,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5921,5979,5981,6039,0.379310344827111,0.176271186441228,0.386206896551228,0.169491525424298,0.386206896551228,0.183050847458158,0.393103448275346,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5922,5980,5982,6040,0.379310344827111,0.189830508475088,0.386206896551228,0.183050847458158,0.386206896551228,0.196610169492018,0.393103448275346,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5923,5981,5983,6041,0.379310344827111,0.203389830508947,0.386206896551228,0.196610169492018,0.386206896551228,0.210169491525877,0.393103448275346,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5924,5982,5984,6042,0.379310344827111,0.216949152542807,0.386206896551228,0.210169491525877,0.386206896551228,0.223728813559737,0.393103448275346,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 +5925,5983,5985,6043,0.379310344827111,0.230508474576667,0.386206896551228,0.223728813559737,0.386206896551228,0.237288135593597,0.393103448275346,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5926,5984,5986,6044,0.379310344827111,0.244067796610527,0.386206896551228,0.237288135593597,0.386206896551228,0.250847457627456,0.393103448275346,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5927,5985,5987,6045,0.379310344827111,0.257627118644386,0.386206896551228,0.250847457627456,0.386206896551228,0.264406779661316,0.393103448275346,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5928,5986,5988,6046,0.379310344827111,0.271186440678246,0.386206896551228,0.264406779661316,0.386206896551228,0.277966101695176,0.393103448275346,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5929,5987,5989,6047,0.379310344827111,0.284745762712106,0.386206896551228,0.277966101695176,0.386206896551228,0.291525423729036,0.393103448275346,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5930,5988,5990,6048,0.379310344827111,0.298305084745975,0.386206896551228,0.291525423729036,0.386206896551228,0.305084745762915,0.393103448275346,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 +5931,5989,5991,6049,0.379310344827111,0.311864406779851,0.386206896551228,0.305084745762915,0.386206896551228,0.318644067796787,0.393103448275346,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 +5932,5990,5992,6050,0.379310344827111,0.325423728813729,0.386206896551228,0.318644067796787,0.386206896551228,0.332203389830671,0.393103448275346,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 +5933,5991,5993,6051,0.379310344827111,0.338983050847605,0.386206896551228,0.332203389830671,0.386206896551228,0.345762711864539,0.393103448275346,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 +5934,5992,5994,6052,0.379310344827111,0.352542372881469,0.386206896551228,0.345762711864539,0.386206896551228,0.359322033898399,0.393103448275346,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5935,5993,5995,6053,0.379310344827111,0.366101694915329,0.386206896551228,0.359322033898399,0.386206896551228,0.372881355932259,0.393103448275346,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5936,5994,5996,6054,0.379310344827111,0.379661016949189,0.386206896551228,0.372881355932259,0.386206896551228,0.386440677966119,0.393103448275346,0.379661016949189,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 +5937,5995,6055,7064,0.379310344827111,0.393220338983059,0.386206896551228,0.386440677966119,0.393103448275346,0.393220338983059,0.386206896551228,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 +4974,5938,5998,6056,0.399999999999487,-0.400000000000000,0.393103448275346,-0.393220338983034,0.399999999999487,-0.386440677966068,0.406896551723629,-0.393220338983034,-0.000000000000000,-0.013793103448283,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448283,0.013559322033932,0.000000000000000,2 +5939,5997,5999,6057,0.393103448275346,-0.379661016949095,0.399999999999487,-0.386440677966068,0.399999999999487,-0.372881355932122,0.406896551723629,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033946,0.000000000000000,2 +5940,5998,6000,6058,0.393103448275346,-0.366101694915163,0.399999999999487,-0.372881355932122,0.399999999999487,-0.359322033898204,0.406896551723629,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033918,0.000000000000000,2 +5941,5999,6001,6059,0.393103448275346,-0.352542372881227,0.399999999999487,-0.359322033898204,0.399999999999487,-0.345762711864250,0.406896551723629,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033954,0.000000000000000,2 +5942,6000,6002,6060,0.393103448275346,-0.338983050847293,0.399999999999487,-0.345762711864250,0.399999999999487,-0.332203389830336,0.406896551723629,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033914,0.000000000000000,2 +5943,6001,6003,6061,0.393103448275346,-0.325423728813361,0.399999999999487,-0.332203389830336,0.399999999999487,-0.318644067796386,0.406896551723629,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033950,-0.000000000000000,2 +5944,6002,6004,6062,0.393103448275346,-0.311864406779421,0.399999999999487,-0.318644067796386,0.399999999999487,-0.305084745762457,0.406896551723629,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033928,0.000000000000000,2 +5945,6003,6005,6063,0.393103448275346,-0.298305084745489,0.399999999999487,-0.305084745762457,0.399999999999487,-0.291525423728521,0.406896551723629,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033936,-0.000000000000000,2 +5946,6004,6006,6064,0.393103448275346,-0.284745762711550,0.399999999999487,-0.291525423728521,0.399999999999487,-0.277966101694579,0.406896551723629,-0.284745762711550,-0.013559322033942,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033942,0.000000000000000,2 +5947,6005,6007,6065,0.393103448275346,-0.271186440677618,0.399999999999487,-0.277966101694579,0.399999999999487,-0.264406779660657,0.406896551723629,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033922,0.000000000000000,2 +5948,6006,6008,6066,0.393103448275346,-0.257627118643680,0.399999999999487,-0.264406779660657,0.399999999999487,-0.250847457626703,0.406896551723629,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033954,0.000000000000000,2 +5949,6007,6009,6067,0.393103448275346,-0.244067796609748,0.399999999999487,-0.250847457626703,0.399999999999487,-0.237288135592793,0.406896551723629,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033910,0.000000000000000,2 +5950,6008,6010,6068,0.393103448275346,-0.230508474575816,0.399999999999487,-0.237288135592793,0.399999999999487,-0.223728813558839,0.406896551723629,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033954,-0.000000000000000,2 +5951,6009,6011,6069,0.393103448275346,-0.216949152541877,0.399999999999487,-0.223728813558839,0.399999999999487,-0.210169491524915,0.406896551723629,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033924,0.000000000000000,2 +5952,6010,6012,6070,0.393103448275346,-0.203389830507945,0.399999999999487,-0.210169491524915,0.399999999999487,-0.196610169490975,0.406896551723629,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033940,0.000000000000000,2 +5953,6011,6013,6071,0.393103448275346,-0.189830508474016,0.399999999999487,-0.196610169490975,0.399999999999488,-0.183050847457058,0.406896551723629,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033917,-0.000000000000000,2 +5954,6012,6014,6072,0.393103448275346,-0.176271186440084,0.399999999999488,-0.183050847457058,0.399999999999487,-0.169491525423110,0.406896551723629,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033947,0.000000000000000,2 +5955,6013,6015,6073,0.393103448275346,-0.162711864406145,0.399999999999487,-0.169491525423110,0.399999999999487,-0.155932203389179,0.406896551723629,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033931,0.000000000000000,2 +5956,6014,6016,6074,0.393103448275346,-0.149152542372213,0.399999999999487,-0.155932203389179,0.399999999999487,-0.142372881355246,0.406896551723629,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033933,0.000000000000000,2 +5957,6015,6017,6075,0.393103448275346,-0.135593220338274,0.399999999999487,-0.142372881355246,0.399999999999487,-0.128813559321301,0.406896551723629,-0.135593220338274,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033945,-0.000000000000000,2 +5958,6016,6018,6076,0.393103448275346,-0.122033898304341,0.399999999999487,-0.128813559321301,0.399999999999487,-0.115254237287382,0.406896551723629,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033919,0.000000000000000,2 +5959,6017,6019,6077,0.393103448275346,-0.108474576270409,0.399999999999487,-0.115254237287382,0.399999999999487,-0.101694915253436,0.406896551723629,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033946,0.000000000000000,2 +5960,6018,6020,6078,0.393103448275346,-0.094915254236471,0.399999999999487,-0.101694915253436,0.399999999999487,-0.088135593219506,0.406896551723629,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033930,0.000000000000000,2 +5961,6019,6021,6079,0.393103448275346,-0.081355932202535,0.399999999999487,-0.088135593219506,0.399999999999487,-0.074576271185564,0.406896551723629,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033941,0.000000000000000,2 +5962,6020,6022,6080,0.393103448275346,-0.067796610168599,0.399999999999487,-0.074576271185564,0.399999999999487,-0.061016949151634,0.406896551723629,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033930,0.000000000000000,2 +5963,6021,6023,6081,0.393103448275346,-0.054237288134667,0.399999999999487,-0.061016949151634,0.399999999999487,-0.047457627117699,0.406896551723629,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033935,-0.000000000000000,2 +5964,6022,6024,6082,0.393103448275346,-0.040677966100731,0.399999999999487,-0.047457627117699,0.399999999999487,-0.033898305083763,0.406896551723629,-0.040677966100731,-0.013559322033937,0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.013559322033937,0.000000000000000,2 +5965,6023,6025,6083,0.393103448275346,-0.027118644066798,0.399999999999487,-0.033898305083763,0.399999999999487,-0.020338983049833,0.406896551723629,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033930,0.000000000000000,2 +5966,6024,6026,6084,0.393103448275346,-0.013559322032862,0.399999999999487,-0.020338983049833,0.399999999999487,-0.006779661015891,0.406896551723629,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033941,-0.000000000000000,2 +5967,6025,6027,6085,0.393103448275346,0.000000000001056,0.399999999999487,-0.006779661015891,0.399999999999487,0.006779661018004,0.406896551723629,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.013559322033895,0.000000000000000,2 +5968,6026,6028,6086,0.393103448275346,0.013559322034933,0.399999999999487,0.006779661018004,0.399999999999487,0.020338983051863,0.406896551723629,0.013559322034933,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5969,6027,6029,6087,0.393103448275346,0.027118644068793,0.399999999999487,0.020338983051863,0.399999999999487,0.033898305085723,0.406896551723629,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5970,6028,6030,6088,0.393103448275346,0.040677966102653,0.399999999999487,0.033898305085723,0.399999999999487,0.047457627119583,0.406896551723629,0.040677966102653,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,-0.000000000000000,2 +5971,6029,6031,6089,0.393103448275346,0.054237288136513,0.399999999999487,0.047457627119583,0.399999999999487,0.061016949153442,0.406896551723629,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5972,6030,6032,6090,0.393103448275346,0.067796610170372,0.399999999999487,0.061016949153442,0.399999999999487,0.074576271187302,0.406896551723629,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5973,6031,6033,6091,0.393103448275346,0.081355932204232,0.399999999999487,0.074576271187302,0.399999999999487,0.088135593221162,0.406896551723629,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5974,6032,6034,6092,0.393103448275346,0.094915254238085,0.399999999999487,0.088135593221162,0.399999999999487,0.101694915255008,0.406896551723629,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033846,0.000000000000000,2 +5975,6033,6035,6093,0.393103448275346,0.108474576271933,0.399999999999487,0.101694915255008,0.399999999999487,0.115254237288859,0.406896551723629,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033852,0.000000000000000,2 +5976,6034,6036,6094,0.393103448275346,0.122033898305789,0.399999999999487,0.115254237288859,0.399999999999487,0.128813559322719,0.406896551723629,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5977,6035,6037,6095,0.393103448275346,0.135593220339649,0.399999999999487,0.128813559322719,0.399999999999487,0.142372881356579,0.406896551723629,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,-0.000000000000000,2 +5978,6036,6038,6096,0.393103448275346,0.149152542373509,0.399999999999487,0.142372881356579,0.399999999999487,0.155932203390438,0.406896551723629,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5979,6037,6039,6097,0.393103448275346,0.162711864407368,0.399999999999487,0.155932203390438,0.399999999999487,0.169491525424298,0.406896551723629,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5980,6038,6040,6098,0.393103448275346,0.176271186441228,0.399999999999487,0.169491525424298,0.399999999999487,0.183050847458158,0.406896551723629,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5981,6039,6041,6099,0.393103448275346,0.189830508475088,0.399999999999487,0.183050847458158,0.399999999999487,0.196610169492018,0.406896551723629,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5982,6040,6042,6100,0.393103448275346,0.203389830508947,0.399999999999487,0.196610169492018,0.399999999999487,0.210169491525877,0.406896551723629,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5983,6041,6043,6101,0.393103448275346,0.216949152542807,0.399999999999487,0.210169491525877,0.399999999999487,0.223728813559737,0.406896551723629,0.216949152542807,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5984,6042,6044,6102,0.393103448275346,0.230508474576667,0.399999999999487,0.223728813559737,0.399999999999487,0.237288135593597,0.406896551723629,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5985,6043,6045,6103,0.393103448275346,0.244067796610527,0.399999999999487,0.237288135593597,0.399999999999487,0.250847457627456,0.406896551723629,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5986,6044,6046,6104,0.393103448275346,0.257627118644386,0.399999999999487,0.250847457627456,0.399999999999487,0.264406779661316,0.406896551723629,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5987,6045,6047,6105,0.393103448275346,0.271186440678246,0.399999999999487,0.264406779661316,0.399999999999487,0.277966101695176,0.406896551723629,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5988,6046,6048,6106,0.393103448275346,0.284745762712106,0.399999999999487,0.277966101695176,0.399999999999487,0.291525423729036,0.406896551723629,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5989,6047,6049,6107,0.393103448275346,0.298305084745975,0.399999999999487,0.291525423729036,0.399999999999487,0.305084745762915,0.406896551723629,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033879,0.000000000000000,2 +5990,6048,6050,6108,0.393103448275346,0.311864406779851,0.399999999999487,0.305084745762915,0.399999999999487,0.318644067796787,0.406896551723629,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033872,0.000000000000000,2 +5991,6049,6051,6109,0.393103448275346,0.325423728813729,0.399999999999487,0.318644067796787,0.399999999999487,0.332203389830671,0.406896551723629,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033883,0.000000000000000,2 +5992,6050,6052,6110,0.393103448275346,0.338983050847605,0.399999999999487,0.332203389830671,0.399999999999487,0.345762711864539,0.406896551723629,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033869,0.000000000000000,2 +5993,6051,6053,6111,0.393103448275346,0.352542372881469,0.399999999999487,0.345762711864539,0.399999999999487,0.359322033898399,0.406896551723629,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5994,6052,6054,6112,0.393103448275346,0.366101694915329,0.399999999999487,0.359322033898399,0.399999999999487,0.372881355932259,0.406896551723629,0.366101694915329,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5995,6053,6055,6113,0.393103448275346,0.379661016949189,0.399999999999487,0.372881355932259,0.399999999999487,0.386440677966119,0.406896551723629,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 +5996,6054,6114,7078,0.393103448275346,0.393220338983059,0.399999999999487,0.386440677966119,0.406896551723629,0.393220338983059,0.399999999999487,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448283,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448283,2 +4988,5997,6057,6115,0.413793103447786,-0.400000000000000,0.406896551723629,-0.393220338983034,0.413793103447786,-0.386440677966068,0.420689655171942,-0.393220338983034,-0.000000000000000,-0.013793103448313,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448313,0.013559322033932,-0.000000000000000,2 +5998,6056,6058,6116,0.406896551723629,-0.379661016949095,0.413793103447786,-0.386440677966068,0.413793103447786,-0.372881355932122,0.420689655171942,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033946,0.000000000000000,2 +5999,6057,6059,6117,0.406896551723629,-0.366101694915163,0.413793103447786,-0.372881355932122,0.413793103447786,-0.359322033898204,0.420689655171942,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033918,0.000000000000000,2 +6000,6058,6060,6118,0.406896551723629,-0.352542372881227,0.413793103447786,-0.359322033898204,0.413793103447786,-0.345762711864250,0.420689655171942,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033954,-0.000000000000000,2 +6001,6059,6061,6119,0.406896551723629,-0.338983050847293,0.413793103447786,-0.345762711864250,0.413793103447786,-0.332203389830336,0.420689655171942,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033914,0.000000000000000,2 +6002,6060,6062,6120,0.406896551723629,-0.325423728813361,0.413793103447786,-0.332203389830336,0.413793103447786,-0.318644067796386,0.420689655171942,-0.325423728813361,-0.013559322033950,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033950,0.000000000000000,2 +6003,6061,6063,6121,0.406896551723629,-0.311864406779422,0.413793103447786,-0.318644067796386,0.413793103447786,-0.305084745762457,0.420689655171942,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033928,0.000000000000000,2 +6004,6062,6064,6122,0.406896551723629,-0.298305084745489,0.413793103447786,-0.305084745762457,0.413793103447786,-0.291525423728521,0.420689655171942,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033936,-0.000000000000000,2 +6005,6063,6065,6123,0.406896551723629,-0.284745762711550,0.413793103447786,-0.291525423728521,0.413793103447786,-0.277966101694579,0.420689655171942,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033942,0.000000000000000,2 +6006,6064,6066,6124,0.406896551723629,-0.271186440677618,0.413793103447786,-0.277966101694579,0.413793103447786,-0.264406779660657,0.420689655171942,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033922,-0.000000000000000,2 +6007,6065,6067,6125,0.406896551723629,-0.257627118643680,0.413793103447786,-0.264406779660657,0.413793103447786,-0.250847457626703,0.420689655171942,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033954,0.000000000000000,2 +6008,6066,6068,6126,0.406896551723629,-0.244067796609748,0.413793103447786,-0.250847457626703,0.413793103447785,-0.237288135592793,0.420689655171942,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033910,0.000000000000000,2 +6009,6067,6069,6127,0.406896551723629,-0.230508474575816,0.413793103447785,-0.237288135592793,0.413793103447786,-0.223728813558839,0.420689655171942,-0.230508474575816,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033954,-0.000000000000000,2 +6010,6068,6070,6128,0.406896551723629,-0.216949152541877,0.413793103447786,-0.223728813558839,0.413793103447786,-0.210169491524915,0.420689655171942,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033924,0.000000000000000,2 +6011,6069,6071,6129,0.406896551723629,-0.203389830507945,0.413793103447786,-0.210169491524915,0.413793103447786,-0.196610169490975,0.420689655171942,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033940,0.000000000000000,2 +6012,6070,6072,6130,0.406896551723629,-0.189830508474016,0.413793103447786,-0.196610169490975,0.413793103447786,-0.183050847457058,0.420689655171942,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033917,-0.000000000000000,2 +6013,6071,6073,6131,0.406896551723629,-0.176271186440084,0.413793103447786,-0.183050847457058,0.413793103447786,-0.169491525423110,0.420689655171942,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033947,0.000000000000000,2 +6014,6072,6074,6132,0.406896551723629,-0.162711864406145,0.413793103447786,-0.169491525423110,0.413793103447786,-0.155932203389179,0.420689655171942,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033931,0.000000000000000,2 +6015,6073,6075,6133,0.406896551723629,-0.149152542372213,0.413793103447786,-0.155932203389179,0.413793103447786,-0.142372881355246,0.420689655171942,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033933,-0.000000000000000,2 +6016,6074,6076,6134,0.406896551723629,-0.135593220338274,0.413793103447786,-0.142372881355246,0.413793103447786,-0.128813559321301,0.420689655171942,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033945,0.000000000000000,2 +6017,6075,6077,6135,0.406896551723629,-0.122033898304341,0.413793103447786,-0.128813559321301,0.413793103447786,-0.115254237287382,0.420689655171942,-0.122033898304341,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033919,0.000000000000000,2 +6018,6076,6078,6136,0.406896551723629,-0.108474576270409,0.413793103447786,-0.115254237287382,0.413793103447786,-0.101694915253436,0.420689655171942,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033946,0.000000000000000,2 +6019,6077,6079,6137,0.406896551723629,-0.094915254236471,0.413793103447786,-0.101694915253436,0.413793103447786,-0.088135593219506,0.420689655171942,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033930,0.000000000000000,2 +6020,6078,6080,6138,0.406896551723629,-0.081355932202535,0.413793103447786,-0.088135593219506,0.413793103447786,-0.074576271185564,0.420689655171942,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033941,-0.000000000000000,2 +6021,6079,6081,6139,0.406896551723629,-0.067796610168599,0.413793103447786,-0.074576271185564,0.413793103447786,-0.061016949151634,0.420689655171942,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033930,0.000000000000000,2 +6022,6080,6082,6140,0.406896551723629,-0.054237288134667,0.413793103447786,-0.061016949151634,0.413793103447786,-0.047457627117699,0.420689655171942,-0.054237288134667,-0.013559322033935,0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033935,0.000000000000000,2 +6023,6081,6083,6141,0.406896551723629,-0.040677966100731,0.413793103447786,-0.047457627117699,0.413793103447786,-0.033898305083763,0.420689655171942,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033937,0.000000000000000,2 +6024,6082,6084,6142,0.406896551723629,-0.027118644066798,0.413793103447786,-0.033898305083763,0.413793103447786,-0.020338983049833,0.420689655171942,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033930,0.000000000000000,2 +6025,6083,6085,6143,0.406896551723629,-0.013559322032862,0.413793103447786,-0.020338983049833,0.413793103447786,-0.006779661015891,0.420689655171942,-0.013559322032862,-0.013559322033941,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033941,0.000000000000000,2 +6026,6084,6086,6144,0.406896551723629,0.000000000001056,0.413793103447786,-0.006779661015891,0.413793103447786,0.006779661018004,0.420689655171942,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033895,0.000000000000000,2 +6027,6085,6087,6145,0.406896551723629,0.013559322034933,0.413793103447786,0.006779661018004,0.413793103447786,0.020338983051863,0.420689655171942,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6028,6086,6088,6146,0.406896551723629,0.027118644068793,0.413793103447786,0.020338983051863,0.413793103447786,0.033898305085723,0.420689655171942,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033860,-0.000000000000000,2 +6029,6087,6089,6147,0.406896551723629,0.040677966102653,0.413793103447786,0.033898305085723,0.413793103447786,0.047457627119583,0.420689655171942,0.040677966102653,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6030,6088,6090,6148,0.406896551723629,0.054237288136513,0.413793103447786,0.047457627119583,0.413793103447786,0.061016949153442,0.420689655171942,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6031,6089,6091,6149,0.406896551723629,0.067796610170372,0.413793103447786,0.061016949153442,0.413793103447786,0.074576271187302,0.420689655171942,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6032,6090,6092,6150,0.406896551723629,0.081355932204232,0.413793103447786,0.074576271187302,0.413793103447786,0.088135593221162,0.420689655171942,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6033,6091,6093,6151,0.406896551723629,0.094915254238085,0.413793103447786,0.088135593221162,0.413793103447786,0.101694915255008,0.420689655171942,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033846,0.000000000000000,2 +6034,6092,6094,6152,0.406896551723629,0.108474576271933,0.413793103447786,0.101694915255008,0.413793103447786,0.115254237288859,0.420689655171942,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033852,0.000000000000000,2 +6035,6093,6095,6153,0.406896551723629,0.122033898305789,0.413793103447786,0.115254237288859,0.413793103447786,0.128813559322719,0.420689655171942,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6036,6094,6096,6154,0.406896551723629,0.135593220339649,0.413793103447786,0.128813559322719,0.413793103447786,0.142372881356579,0.420689655171942,0.135593220339649,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6037,6095,6097,6155,0.406896551723629,0.149152542373509,0.413793103447786,0.142372881356579,0.413793103447786,0.155932203390438,0.420689655171942,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,-0.000000000000000,2 +6038,6096,6098,6156,0.406896551723629,0.162711864407368,0.413793103447786,0.155932203390438,0.413793103447786,0.169491525424298,0.420689655171942,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6039,6097,6099,6157,0.406896551723629,0.176271186441228,0.413793103447786,0.169491525424298,0.413793103447786,0.183050847458158,0.420689655171942,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6040,6098,6100,6158,0.406896551723629,0.189830508475088,0.413793103447786,0.183050847458158,0.413793103447786,0.196610169492018,0.420689655171942,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6041,6099,6101,6159,0.406896551723629,0.203389830508947,0.413793103447786,0.196610169492018,0.413793103447786,0.210169491525877,0.420689655171942,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6042,6100,6102,6160,0.406896551723629,0.216949152542807,0.413793103447786,0.210169491525877,0.413793103447786,0.223728813559737,0.420689655171942,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6043,6101,6103,6161,0.406896551723629,0.230508474576667,0.413793103447786,0.223728813559737,0.413793103447786,0.237288135593597,0.420689655171942,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6044,6102,6104,6162,0.406896551723629,0.244067796610527,0.413793103447786,0.237288135593597,0.413793103447786,0.250847457627456,0.420689655171942,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6045,6103,6105,6163,0.406896551723629,0.257627118644386,0.413793103447786,0.250847457627456,0.413793103447786,0.264406779661316,0.420689655171942,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6046,6104,6106,6164,0.406896551723629,0.271186440678246,0.413793103447786,0.264406779661316,0.413793103447786,0.277966101695176,0.420689655171942,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6047,6105,6107,6165,0.406896551723629,0.284745762712106,0.413793103447786,0.277966101695176,0.413793103447786,0.291525423729036,0.420689655171942,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6048,6106,6108,6166,0.406896551723629,0.298305084745975,0.413793103447786,0.291525423729036,0.413793103447786,0.305084745762915,0.420689655171942,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033879,0.000000000000000,2 +6049,6107,6109,6167,0.406896551723629,0.311864406779851,0.413793103447786,0.305084745762915,0.413793103447786,0.318644067796787,0.420689655171942,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033872,0.000000000000000,2 +6050,6108,6110,6168,0.406896551723629,0.325423728813729,0.413793103447786,0.318644067796787,0.413793103447786,0.332203389830671,0.420689655171942,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033883,0.000000000000000,2 +6051,6109,6111,6169,0.406896551723629,0.338983050847605,0.413793103447786,0.332203389830671,0.413793103447786,0.345762711864539,0.420689655171942,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033869,0.000000000000000,2 +6052,6110,6112,6170,0.406896551723629,0.352542372881469,0.413793103447786,0.345762711864539,0.413793103447786,0.359322033898399,0.420689655171942,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6053,6111,6113,6171,0.406896551723629,0.366101694915329,0.413793103447786,0.359322033898399,0.413793103447786,0.372881355932259,0.420689655171942,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6054,6112,6114,6172,0.406896551723629,0.379661016949189,0.413793103447786,0.372881355932259,0.413793103447786,0.386440677966119,0.420689655171942,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6055,6113,6173,7092,0.406896551723629,0.393220338983059,0.413793103447786,0.386440677966119,0.420689655171942,0.393220338983059,0.413793103447786,0.400000000000000,-0.013559322033881,0.000000000000000,0.000000000000000,-0.013793103448313,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448313,2 +5002,6056,6116,6174,0.427586206896100,-0.400000000000000,0.420689655171942,-0.393220338983034,0.427586206896100,-0.386440677966068,0.434482758620257,-0.393220338983034,-0.000000000000000,-0.013793103448315,-0.013559322033932,0.000000000000000,-0.000000000000000,0.013793103448315,0.013559322033932,0.000000000000000,2 +6057,6115,6117,6175,0.420689655171942,-0.379661016949095,0.427586206896100,-0.386440677966068,0.427586206896100,-0.372881355932122,0.434482758620257,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033946,-0.000000000000000,2 +6058,6116,6118,6176,0.420689655171942,-0.366101694915163,0.427586206896100,-0.372881355932122,0.427586206896100,-0.359322033898204,0.434482758620257,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033918,0.000000000000000,2 +6059,6117,6119,6177,0.420689655171942,-0.352542372881227,0.427586206896100,-0.359322033898204,0.427586206896100,-0.345762711864250,0.434482758620257,-0.352542372881227,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033954,0.000000000000000,2 +6060,6118,6120,6178,0.420689655171942,-0.338983050847293,0.427586206896100,-0.345762711864250,0.427586206896100,-0.332203389830336,0.434482758620258,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.013559322033914,-0.000000000000000,2 +6061,6119,6121,6179,0.420689655171942,-0.325423728813361,0.427586206896100,-0.332203389830336,0.427586206896100,-0.318644067796386,0.434482758620258,-0.325423728813361,-0.013559322033950,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033950,0.000000000000000,2 +6062,6120,6122,6180,0.420689655171942,-0.311864406779422,0.427586206896100,-0.318644067796386,0.427586206896100,-0.305084745762457,0.434482758620257,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033928,0.000000000000000,2 +6063,6121,6123,6181,0.420689655171942,-0.298305084745489,0.427586206896100,-0.305084745762457,0.427586206896100,-0.291525423728521,0.434482758620258,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033936,-0.000000000000000,2 +6064,6122,6124,6182,0.420689655171942,-0.284745762711550,0.427586206896100,-0.291525423728521,0.427586206896100,-0.277966101694579,0.434482758620258,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033942,0.000000000000000,2 +6065,6123,6125,6183,0.420689655171942,-0.271186440677618,0.427586206896100,-0.277966101694579,0.427586206896100,-0.264406779660657,0.434482758620257,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033922,0.000000000000000,2 +6066,6124,6126,6184,0.420689655171942,-0.257627118643680,0.427586206896100,-0.264406779660657,0.427586206896100,-0.250847457626703,0.434482758620257,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033954,0.000000000000000,2 +6067,6125,6127,6185,0.420689655171942,-0.244067796609748,0.427586206896100,-0.250847457626703,0.427586206896100,-0.237288135592793,0.434482758620257,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.013559322033910,0.000000000000000,2 +6068,6126,6128,6186,0.420689655171942,-0.230508474575816,0.427586206896100,-0.237288135592793,0.427586206896100,-0.223728813558839,0.434482758620258,-0.230508474575816,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033954,-0.000000000000000,2 +6069,6127,6129,6187,0.420689655171942,-0.216949152541877,0.427586206896100,-0.223728813558839,0.427586206896100,-0.210169491524915,0.434482758620258,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033924,0.000000000000000,2 +6070,6128,6130,6188,0.420689655171942,-0.203389830507945,0.427586206896100,-0.210169491524915,0.427586206896100,-0.196610169490975,0.434482758620257,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033940,0.000000000000000,2 +6071,6129,6131,6189,0.420689655171942,-0.189830508474016,0.427586206896100,-0.196610169490975,0.427586206896100,-0.183050847457058,0.434482758620258,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033917,-0.000000000000000,2 +6072,6130,6132,6190,0.420689655171942,-0.176271186440084,0.427586206896100,-0.183050847457058,0.427586206896100,-0.169491525423110,0.434482758620258,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.013559322033947,0.000000000000000,2 +6073,6131,6133,6191,0.420689655171942,-0.162711864406145,0.427586206896100,-0.169491525423110,0.427586206896100,-0.155932203389179,0.434482758620257,-0.162711864406145,-0.013559322033931,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033931,0.000000000000000,2 +6074,6132,6134,6192,0.420689655171942,-0.149152542372213,0.427586206896100,-0.155932203389179,0.427586206896100,-0.142372881355246,0.434482758620257,-0.149152542372213,-0.013559322033933,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033933,0.000000000000000,2 +6075,6133,6135,6193,0.420689655171942,-0.135593220338273,0.427586206896100,-0.142372881355246,0.427586206896100,-0.128813559321301,0.434482758620257,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033945,0.000000000000000,2 +6076,6134,6136,6194,0.420689655171942,-0.122033898304341,0.427586206896100,-0.128813559321301,0.427586206896100,-0.115254237287382,0.434482758620257,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033919,0.000000000000000,2 +6077,6135,6137,6195,0.420689655171942,-0.108474576270409,0.427586206896100,-0.115254237287382,0.427586206896100,-0.101694915253436,0.434482758620257,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033946,0.000000000000000,2 +6078,6136,6138,6196,0.420689655171942,-0.094915254236471,0.427586206896100,-0.101694915253436,0.427586206896100,-0.088135593219506,0.434482758620257,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.013559322033930,0.000000000000000,2 +6079,6137,6139,6197,0.420689655171942,-0.081355932202535,0.427586206896100,-0.088135593219506,0.427586206896100,-0.074576271185564,0.434482758620257,-0.081355932202535,-0.013559322033941,0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033941,0.000000000000000,2 +6080,6138,6140,6198,0.420689655171942,-0.067796610168599,0.427586206896100,-0.074576271185564,0.427586206896100,-0.061016949151634,0.434482758620257,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033930,0.000000000000000,2 +6081,6139,6141,6199,0.420689655171942,-0.054237288134667,0.427586206896100,-0.061016949151634,0.427586206896100,-0.047457627117699,0.434482758620257,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.013559322033935,0.000000000000000,2 +6082,6140,6142,6200,0.420689655171942,-0.040677966100731,0.427586206896100,-0.047457627117699,0.427586206896100,-0.033898305083763,0.434482758620258,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033937,-0.000000000000000,2 +6083,6141,6143,6201,0.420689655171942,-0.027118644066798,0.427586206896100,-0.033898305083763,0.427586206896100,-0.020338983049833,0.434482758620258,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033930,0.000000000000000,2 +6084,6142,6144,6202,0.420689655171942,-0.013559322032862,0.427586206896100,-0.020338983049833,0.427586206896100,-0.006779661015891,0.434482758620257,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033941,0.000000000000000,2 +6085,6143,6145,6203,0.420689655171942,0.000000000001056,0.427586206896100,-0.006779661015891,0.427586206896100,0.006779661018004,0.434482758620257,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033895,0.000000000000000,2 +6086,6144,6146,6204,0.420689655171942,0.013559322034933,0.427586206896100,0.006779661018004,0.427586206896100,0.020338983051863,0.434482758620257,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6087,6145,6147,6205,0.420689655171942,0.027118644068793,0.427586206896100,0.020338983051863,0.427586206896100,0.033898305085723,0.434482758620257,0.027118644068793,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6088,6146,6148,6206,0.420689655171942,0.040677966102653,0.427586206896100,0.033898305085723,0.427586206896100,0.047457627119583,0.434482758620257,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6089,6147,6149,6207,0.420689655171942,0.054237288136513,0.427586206896100,0.047457627119583,0.427586206896100,0.061016949153442,0.434482758620257,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6090,6148,6150,6208,0.420689655171942,0.067796610170372,0.427586206896100,0.061016949153442,0.427586206896100,0.074576271187302,0.434482758620257,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6091,6149,6151,6209,0.420689655171942,0.081355932204232,0.427586206896100,0.074576271187302,0.427586206896100,0.088135593221162,0.434482758620257,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6092,6150,6152,6210,0.420689655171942,0.094915254238085,0.427586206896100,0.088135593221162,0.427586206896100,0.101694915255008,0.434482758620257,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033846,0.000000000000000,2 +6093,6151,6153,6211,0.420689655171942,0.108474576271933,0.427586206896100,0.101694915255008,0.427586206896100,0.115254237288859,0.434482758620257,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033852,0.000000000000000,2 +6094,6152,6154,6212,0.420689655171942,0.122033898305789,0.427586206896100,0.115254237288859,0.427586206896100,0.128813559322719,0.434482758620257,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6095,6153,6155,6213,0.420689655171942,0.135593220339649,0.427586206896100,0.128813559322719,0.427586206896100,0.142372881356579,0.434482758620257,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6096,6154,6156,6214,0.420689655171942,0.149152542373509,0.427586206896100,0.142372881356579,0.427586206896100,0.155932203390438,0.434482758620257,0.149152542373509,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6097,6155,6157,6215,0.420689655171942,0.162711864407368,0.427586206896100,0.155932203390438,0.427586206896100,0.169491525424298,0.434482758620258,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,-0.000000000000000,2 +6098,6156,6158,6216,0.420689655171942,0.176271186441228,0.427586206896100,0.169491525424298,0.427586206896100,0.183050847458158,0.434482758620258,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6099,6157,6159,6217,0.420689655171942,0.189830508475088,0.427586206896100,0.183050847458158,0.427586206896100,0.196610169492018,0.434482758620257,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6100,6158,6160,6218,0.420689655171942,0.203389830508947,0.427586206896100,0.196610169492018,0.427586206896100,0.210169491525877,0.434482758620257,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6101,6159,6161,6219,0.420689655171942,0.216949152542807,0.427586206896100,0.210169491525877,0.427586206896100,0.223728813559737,0.434482758620257,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6102,6160,6162,6220,0.420689655171942,0.230508474576667,0.427586206896100,0.223728813559737,0.427586206896100,0.237288135593597,0.434482758620257,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6103,6161,6163,6221,0.420689655171942,0.244067796610527,0.427586206896100,0.237288135593597,0.427586206896100,0.250847457627456,0.434482758620257,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6104,6162,6164,6222,0.420689655171942,0.257627118644386,0.427586206896100,0.250847457627456,0.427586206896100,0.264406779661316,0.434482758620257,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6105,6163,6165,6223,0.420689655171942,0.271186440678246,0.427586206896100,0.264406779661316,0.427586206896100,0.277966101695176,0.434482758620257,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6106,6164,6166,6224,0.420689655171942,0.284745762712106,0.427586206896100,0.277966101695176,0.427586206896100,0.291525423729036,0.434482758620257,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6107,6165,6167,6225,0.420689655171942,0.298305084745975,0.427586206896100,0.291525423729036,0.427586206896100,0.305084745762915,0.434482758620257,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033879,0.000000000000000,2 +6108,6166,6168,6226,0.420689655171942,0.311864406779851,0.427586206896100,0.305084745762915,0.427586206896100,0.318644067796787,0.434482758620257,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033872,0.000000000000000,2 +6109,6167,6169,6227,0.420689655171942,0.325423728813729,0.427586206896100,0.318644067796787,0.427586206896100,0.332203389830671,0.434482758620257,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033883,0.000000000000000,2 +6110,6168,6170,6228,0.420689655171942,0.338983050847605,0.427586206896100,0.332203389830671,0.427586206896100,0.345762711864539,0.434482758620257,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033869,0.000000000000000,2 +6111,6169,6171,6229,0.420689655171942,0.352542372881469,0.427586206896100,0.345762711864539,0.427586206896100,0.359322033898399,0.434482758620257,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6112,6170,6172,6230,0.420689655171942,0.366101694915329,0.427586206896100,0.359322033898399,0.427586206896100,0.372881355932259,0.434482758620257,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6113,6171,6173,6231,0.420689655171942,0.379661016949189,0.427586206896100,0.372881355932259,0.427586206896100,0.386440677966119,0.434482758620257,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 +6114,6172,6232,7106,0.420689655171942,0.393220338983059,0.427586206896100,0.386440677966119,0.434482758620257,0.393220338983059,0.427586206896100,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448315,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448315,2 +5016,6115,6175,6233,0.441379310344412,-0.400000000000000,0.434482758620257,-0.393220338983034,0.441379310344412,-0.386440677966068,0.448275862068567,-0.393220338983034,-0.000000000000000,-0.013793103448310,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448310,0.013559322033932,0.000000000000000,2 +6116,6174,6176,6234,0.434482758620257,-0.379661016949095,0.441379310344412,-0.386440677966068,0.441379310344412,-0.372881355932122,0.448275862068567,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033946,0.000000000000000,2 +6117,6175,6177,6235,0.434482758620257,-0.366101694915163,0.441379310344412,-0.372881355932122,0.441379310344412,-0.359322033898204,0.448275862068567,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033918,-0.000000000000000,2 +6118,6176,6178,6236,0.434482758620257,-0.352542372881227,0.441379310344412,-0.359322033898204,0.441379310344412,-0.345762711864250,0.448275862068567,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033954,0.000000000000000,2 +6119,6177,6179,6237,0.434482758620258,-0.338983050847293,0.441379310344412,-0.345762711864250,0.441379310344412,-0.332203389830336,0.448275862068567,-0.338983050847293,-0.013559322033914,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033914,0.000000000000000,2 +6120,6178,6180,6238,0.434482758620258,-0.325423728813361,0.441379310344412,-0.332203389830336,0.441379310344412,-0.318644067796386,0.448275862068567,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033950,0.000000000000000,2 +6121,6179,6181,6239,0.434482758620257,-0.311864406779422,0.441379310344412,-0.318644067796386,0.441379310344412,-0.305084745762457,0.448275862068567,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033928,0.000000000000000,2 +6122,6180,6182,6240,0.434482758620258,-0.298305084745489,0.441379310344412,-0.305084745762457,0.441379310344412,-0.291525423728521,0.448275862068567,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033936,0.000000000000000,2 +6123,6181,6183,6241,0.434482758620258,-0.284745762711550,0.441379310344412,-0.291525423728521,0.441379310344412,-0.277966101694579,0.448275862068567,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033942,0.000000000000000,2 +6124,6182,6184,6242,0.434482758620257,-0.271186440677618,0.441379310344412,-0.277966101694579,0.441379310344412,-0.264406779660657,0.448275862068567,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033922,0.000000000000000,2 +6125,6183,6185,6243,0.434482758620257,-0.257627118643680,0.441379310344412,-0.264406779660657,0.441379310344412,-0.250847457626703,0.448275862068567,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033954,-0.000000000000000,2 +6126,6184,6186,6244,0.434482758620257,-0.244067796609748,0.441379310344412,-0.250847457626703,0.441379310344412,-0.237288135592793,0.448275862068567,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033910,0.000000000000000,2 +6127,6185,6187,6245,0.434482758620258,-0.230508474575816,0.441379310344412,-0.237288135592793,0.441379310344412,-0.223728813558839,0.448275862068567,-0.230508474575816,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033954,0.000000000000000,2 +6128,6186,6188,6246,0.434482758620258,-0.216949152541877,0.441379310344412,-0.223728813558839,0.441379310344412,-0.210169491524915,0.448275862068567,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033924,0.000000000000000,2 +6129,6187,6189,6247,0.434482758620257,-0.203389830507945,0.441379310344412,-0.210169491524915,0.441379310344412,-0.196610169490975,0.448275862068567,-0.203389830507945,-0.013559322033940,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033940,0.000000000000000,2 +6130,6188,6190,6248,0.434482758620258,-0.189830508474016,0.441379310344412,-0.196610169490975,0.441379310344412,-0.183050847457058,0.448275862068567,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033917,-0.000000000000000,2 +6131,6189,6191,6249,0.434482758620258,-0.176271186440084,0.441379310344412,-0.183050847457058,0.441379310344412,-0.169491525423110,0.448275862068567,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033947,0.000000000000000,2 +6132,6190,6192,6250,0.434482758620257,-0.162711864406145,0.441379310344412,-0.169491525423110,0.441379310344412,-0.155932203389179,0.448275862068567,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033931,0.000000000000000,2 +6133,6191,6193,6251,0.434482758620257,-0.149152542372213,0.441379310344412,-0.155932203389179,0.441379310344412,-0.142372881355246,0.448275862068567,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033933,-0.000000000000000,2 +6134,6192,6194,6252,0.434482758620257,-0.135593220338274,0.441379310344412,-0.142372881355246,0.441379310344412,-0.128813559321301,0.448275862068567,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033945,0.000000000000000,2 +6135,6193,6195,6253,0.434482758620257,-0.122033898304341,0.441379310344412,-0.128813559321301,0.441379310344412,-0.115254237287382,0.448275862068567,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033919,-0.000000000000000,2 +6136,6194,6196,6254,0.434482758620257,-0.108474576270409,0.441379310344412,-0.115254237287382,0.441379310344412,-0.101694915253436,0.448275862068567,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033946,0.000000000000000,2 +6137,6195,6197,6255,0.434482758620257,-0.094915254236471,0.441379310344412,-0.101694915253436,0.441379310344412,-0.088135593219506,0.448275862068567,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033930,0.000000000000000,2 +6138,6196,6198,6256,0.434482758620257,-0.081355932202535,0.441379310344412,-0.088135593219506,0.441379310344412,-0.074576271185564,0.448275862068567,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033941,0.000000000000000,2 +6139,6197,6199,6257,0.434482758620257,-0.067796610168599,0.441379310344412,-0.074576271185564,0.441379310344412,-0.061016949151634,0.448275862068567,-0.067796610168599,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033930,-0.000000000000000,2 +6140,6198,6200,6258,0.434482758620257,-0.054237288134667,0.441379310344412,-0.061016949151634,0.441379310344412,-0.047457627117699,0.448275862068567,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033935,0.000000000000000,2 +6141,6199,6201,6259,0.434482758620258,-0.040677966100731,0.441379310344412,-0.047457627117699,0.441379310344412,-0.033898305083763,0.448275862068567,-0.040677966100731,-0.013559322033937,0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033937,-0.000000000000000,2 +6142,6200,6202,6260,0.434482758620258,-0.027118644066798,0.441379310344412,-0.033898305083763,0.441379310344412,-0.020338983049833,0.448275862068567,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033930,0.000000000000000,2 +6143,6201,6203,6261,0.434482758620257,-0.013559322032862,0.441379310344412,-0.020338983049833,0.441379310344412,-0.006779661015891,0.448275862068567,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033941,-0.000000000000000,2 +6144,6202,6204,6262,0.434482758620257,0.000000000001056,0.441379310344412,-0.006779661015891,0.441379310344412,0.006779661018004,0.448275862068567,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033895,0.000000000000000,2 +6145,6203,6205,6263,0.434482758620257,0.013559322034933,0.441379310344412,0.006779661018004,0.441379310344412,0.020338983051863,0.448275862068567,0.013559322034933,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6146,6204,6206,6264,0.434482758620257,0.027118644068793,0.441379310344412,0.020338983051863,0.441379310344412,0.033898305085723,0.448275862068567,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6147,6205,6207,6265,0.434482758620257,0.040677966102653,0.441379310344412,0.033898305085723,0.441379310344412,0.047457627119583,0.448275862068567,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6148,6206,6208,6266,0.434482758620257,0.054237288136513,0.441379310344412,0.047457627119583,0.441379310344412,0.061016949153442,0.448275862068567,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6149,6207,6209,6267,0.434482758620257,0.067796610170372,0.441379310344412,0.061016949153442,0.441379310344412,0.074576271187302,0.448275862068567,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6150,6208,6210,6268,0.434482758620257,0.081355932204232,0.441379310344412,0.074576271187302,0.441379310344412,0.088135593221162,0.448275862068567,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6151,6209,6211,6269,0.434482758620257,0.094915254238085,0.441379310344412,0.088135593221162,0.441379310344412,0.101694915255008,0.448275862068567,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033846,-0.000000000000000,2 +6152,6210,6212,6270,0.434482758620257,0.108474576271933,0.441379310344412,0.101694915255008,0.441379310344412,0.115254237288859,0.448275862068567,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033852,0.000000000000000,2 +6153,6211,6213,6271,0.434482758620257,0.122033898305789,0.441379310344412,0.115254237288859,0.441379310344412,0.128813559322719,0.448275862068567,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,-0.000000000000000,2 +6154,6212,6214,6272,0.434482758620257,0.135593220339649,0.441379310344412,0.128813559322719,0.441379310344412,0.142372881356579,0.448275862068567,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6155,6213,6215,6273,0.434482758620257,0.149152542373509,0.441379310344412,0.142372881356579,0.441379310344412,0.155932203390438,0.448275862068567,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6156,6214,6216,6274,0.434482758620258,0.162711864407368,0.441379310344412,0.155932203390438,0.441379310344412,0.169491525424298,0.448275862068567,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6157,6215,6217,6275,0.434482758620258,0.176271186441228,0.441379310344412,0.169491525424298,0.441379310344412,0.183050847458158,0.448275862068567,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6158,6216,6218,6276,0.434482758620257,0.189830508475088,0.441379310344412,0.183050847458158,0.441379310344412,0.196610169492018,0.448275862068567,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6159,6217,6219,6277,0.434482758620257,0.203389830508947,0.441379310344412,0.196610169492018,0.441379310344412,0.210169491525877,0.448275862068567,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,-0.000000000000000,2 +6160,6218,6220,6278,0.434482758620257,0.216949152542807,0.441379310344412,0.210169491525877,0.441379310344412,0.223728813559737,0.448275862068567,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6161,6219,6221,6279,0.434482758620257,0.230508474576667,0.441379310344412,0.223728813559737,0.441379310344412,0.237288135593597,0.448275862068567,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,-0.000000000000000,2 +6162,6220,6222,6280,0.434482758620257,0.244067796610527,0.441379310344412,0.237288135593597,0.441379310344412,0.250847457627456,0.448275862068567,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6163,6221,6223,6281,0.434482758620257,0.257627118644386,0.441379310344412,0.250847457627456,0.441379310344412,0.264406779661316,0.448275862068567,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6164,6222,6224,6282,0.434482758620257,0.271186440678246,0.441379310344412,0.264406779661316,0.441379310344412,0.277966101695176,0.448275862068567,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,-0.000000000000000,2 +6165,6223,6225,6283,0.434482758620257,0.284745762712106,0.441379310344412,0.277966101695176,0.441379310344412,0.291525423729036,0.448275862068567,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6166,6224,6226,6284,0.434482758620257,0.298305084745975,0.441379310344412,0.291525423729036,0.441379310344412,0.305084745762915,0.448275862068567,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033879,0.000000000000000,2 +6167,6225,6227,6285,0.434482758620257,0.311864406779851,0.441379310344412,0.305084745762915,0.441379310344412,0.318644067796787,0.448275862068567,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033872,-0.000000000000000,2 +6168,6226,6228,6286,0.434482758620257,0.325423728813729,0.441379310344412,0.318644067796787,0.441379310344412,0.332203389830671,0.448275862068567,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033883,0.000000000000000,2 +6169,6227,6229,6287,0.434482758620257,0.338983050847605,0.441379310344412,0.332203389830671,0.441379310344412,0.345762711864539,0.448275862068567,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033869,0.000000000000000,2 +6170,6228,6230,6288,0.434482758620257,0.352542372881469,0.441379310344412,0.345762711864539,0.441379310344412,0.359322033898399,0.448275862068567,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6171,6229,6231,6289,0.434482758620257,0.366101694915329,0.441379310344412,0.359322033898399,0.441379310344412,0.372881355932259,0.448275862068567,0.366101694915329,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 +6172,6230,6232,6290,0.434482758620257,0.379661016949189,0.441379310344412,0.372881355932259,0.441379310344412,0.386440677966119,0.448275862068567,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033860,-0.000000000000000,2 +6173,6231,6291,7120,0.434482758620257,0.393220338983059,0.441379310344412,0.386440677966119,0.448275862068567,0.393220338983059,0.441379310344412,0.400000000000000,-0.013559322033881,0.000000000000000,0.000000000000000,-0.013793103448310,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448310,2 +5030,6174,6234,6292,0.455172413792722,-0.400000000000000,0.448275862068567,-0.393220338983034,0.455172413792722,-0.386440677966068,0.462068965516876,-0.393220338983034,-0.000000000000000,-0.013793103448309,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448309,0.013559322033932,0.000000000000000,2 +6175,6233,6235,6293,0.448275862068567,-0.379661016949095,0.455172413792722,-0.386440677966068,0.455172413792722,-0.372881355932122,0.462068965516876,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033946,0.000000000000000,2 +6176,6234,6236,6294,0.448275862068567,-0.366101694915163,0.455172413792722,-0.372881355932122,0.455172413792722,-0.359322033898204,0.462068965516876,-0.366101694915163,-0.013559322033918,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033918,-0.000000000000000,2 +6177,6235,6237,6295,0.448275862068567,-0.352542372881227,0.455172413792722,-0.359322033898204,0.455172413792722,-0.345762711864250,0.462068965516876,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 +6178,6236,6238,6296,0.448275862068567,-0.338983050847293,0.455172413792722,-0.345762711864250,0.455172413792722,-0.332203389830336,0.462068965516876,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033914,0.000000000000000,2 +6179,6237,6239,6297,0.448275862068567,-0.325423728813361,0.455172413792722,-0.332203389830336,0.455172413792722,-0.318644067796386,0.462068965516876,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033951,0.000000000000000,2 +6180,6238,6240,6298,0.448275862068567,-0.311864406779422,0.455172413792722,-0.318644067796386,0.455172413792722,-0.305084745762457,0.462068965516876,-0.311864406779421,-0.013559322033928,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033928,-0.000000000000000,2 +6181,6239,6241,6299,0.448275862068567,-0.298305084745489,0.455172413792722,-0.305084745762457,0.455172413792722,-0.291525423728521,0.462068965516876,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033936,0.000000000000000,2 +6182,6240,6242,6300,0.448275862068567,-0.284745762711550,0.455172413792722,-0.291525423728521,0.455172413792721,-0.277966101694579,0.462068965516876,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033942,0.000000000000000,2 +6183,6241,6243,6301,0.448275862068567,-0.271186440677618,0.455172413792721,-0.277966101694579,0.455172413792722,-0.264406779660657,0.462068965516876,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033922,-0.000000000000000,2 +6184,6242,6244,6302,0.448275862068567,-0.257627118643680,0.455172413792722,-0.264406779660657,0.455172413792722,-0.250847457626703,0.462068965516876,-0.257627118643680,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,-0.000000000000000,2 +6185,6243,6245,6303,0.448275862068567,-0.244067796609748,0.455172413792722,-0.250847457626703,0.455172413792722,-0.237288135592793,0.462068965516876,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033910,0.000000000000000,2 +6186,6244,6246,6304,0.448275862068567,-0.230508474575816,0.455172413792722,-0.237288135592793,0.455172413792722,-0.223728813558839,0.462068965516876,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 +6187,6245,6247,6305,0.448275862068567,-0.216949152541877,0.455172413792722,-0.223728813558839,0.455172413792722,-0.210169491524915,0.462068965516876,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033924,0.000000000000000,2 +6188,6246,6248,6306,0.448275862068567,-0.203389830507945,0.455172413792722,-0.210169491524915,0.455172413792722,-0.196610169490975,0.462068965516876,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033940,-0.000000000000000,2 +6189,6247,6249,6307,0.448275862068567,-0.189830508474016,0.455172413792722,-0.196610169490975,0.455172413792722,-0.183050847457058,0.462068965516876,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033917,0.000000000000000,2 +6190,6248,6250,6308,0.448275862068567,-0.176271186440084,0.455172413792722,-0.183050847457058,0.455172413792722,-0.169491525423110,0.462068965516876,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033947,0.000000000000000,2 +6191,6249,6251,6309,0.448275862068567,-0.162711864406145,0.455172413792722,-0.169491525423110,0.455172413792722,-0.155932203389179,0.462068965516876,-0.162711864406145,-0.013559322033931,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033931,0.000000000000000,2 +6192,6250,6252,6310,0.448275862068567,-0.149152542372213,0.455172413792722,-0.155932203389179,0.455172413792722,-0.142372881355246,0.462068965516876,-0.149152542372213,-0.013559322033933,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033933,0.000000000000000,2 +6193,6251,6253,6311,0.448275862068567,-0.135593220338274,0.455172413792722,-0.142372881355246,0.455172413792722,-0.128813559321301,0.462068965516876,-0.135593220338273,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033945,-0.000000000000000,2 +6194,6252,6254,6312,0.448275862068567,-0.122033898304341,0.455172413792722,-0.128813559321301,0.455172413792722,-0.115254237287382,0.462068965516876,-0.122033898304341,-0.013559322033919,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033919,0.000000000000000,2 +6195,6253,6255,6313,0.448275862068567,-0.108474576270409,0.455172413792722,-0.115254237287382,0.455172413792722,-0.101694915253436,0.462068965516876,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033946,0.000000000000000,2 +6196,6254,6256,6314,0.448275862068567,-0.094915254236471,0.455172413792722,-0.101694915253436,0.455172413792722,-0.088135593219506,0.462068965516876,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033930,-0.000000000000000,2 +6197,6255,6257,6315,0.448275862068567,-0.081355932202535,0.455172413792722,-0.088135593219506,0.455172413792722,-0.074576271185564,0.462068965516876,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033941,0.000000000000000,2 +6198,6256,6258,6316,0.448275862068567,-0.067796610168599,0.455172413792722,-0.074576271185564,0.455172413792722,-0.061016949151634,0.462068965516876,-0.067796610168599,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033930,-0.000000000000000,2 +6199,6257,6259,6317,0.448275862068567,-0.054237288134667,0.455172413792722,-0.061016949151634,0.455172413792722,-0.047457627117699,0.462068965516876,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033935,0.000000000000000,2 +6200,6258,6260,6318,0.448275862068567,-0.040677966100731,0.455172413792722,-0.047457627117699,0.455172413792722,-0.033898305083763,0.462068965516876,-0.040677966100731,-0.013559322033937,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033937,0.000000000000000,2 +6201,6259,6261,6319,0.448275862068567,-0.027118644066798,0.455172413792722,-0.033898305083763,0.455172413792722,-0.020338983049832,0.462068965516876,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033930,0.000000000000000,2 +6202,6260,6262,6320,0.448275862068567,-0.013559322032862,0.455172413792722,-0.020338983049832,0.455172413792722,-0.006779661015891,0.462068965516876,-0.013559322032862,-0.013559322033941,0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033941,0.000000000000000,2 +6203,6261,6263,6321,0.448275862068567,0.000000000001056,0.455172413792722,-0.006779661015891,0.455172413792722,0.006779661018004,0.462068965516876,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033895,0.000000000000000,2 +6204,6262,6264,6322,0.448275862068567,0.013559322034933,0.455172413792722,0.006779661018004,0.455172413792722,0.020338983051863,0.462068965516876,0.013559322034933,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6205,6263,6265,6323,0.448275862068567,0.027118644068793,0.455172413792722,0.020338983051863,0.455172413792722,0.033898305085723,0.462068965516876,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6206,6264,6266,6324,0.448275862068567,0.040677966102653,0.455172413792722,0.033898305085723,0.455172413792722,0.047457627119583,0.462068965516876,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6207,6265,6267,6325,0.448275862068567,0.054237288136513,0.455172413792722,0.047457627119583,0.455172413792722,0.061016949153442,0.462068965516876,0.054237288136513,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6208,6266,6268,6326,0.448275862068567,0.067796610170372,0.455172413792722,0.061016949153442,0.455172413792722,0.074576271187302,0.462068965516876,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6209,6267,6269,6327,0.448275862068567,0.081355932204232,0.455172413792722,0.074576271187302,0.455172413792722,0.088135593221162,0.462068965516876,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6210,6268,6270,6328,0.448275862068567,0.094915254238085,0.455172413792722,0.088135593221162,0.455172413792722,0.101694915255008,0.462068965516876,0.094915254238085,-0.013559322033846,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033846,0.000000000000000,2 +6211,6269,6271,6329,0.448275862068567,0.108474576271933,0.455172413792722,0.101694915255008,0.455172413792722,0.115254237288859,0.462068965516876,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033852,0.000000000000000,2 +6212,6270,6272,6330,0.448275862068567,0.122033898305789,0.455172413792722,0.115254237288859,0.455172413792722,0.128813559322719,0.462068965516876,0.122033898305789,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 +6213,6271,6273,6331,0.448275862068567,0.135593220339649,0.455172413792722,0.128813559322719,0.455172413792722,0.142372881356579,0.462068965516876,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6214,6272,6274,6332,0.448275862068567,0.149152542373509,0.455172413792722,0.142372881356579,0.455172413792722,0.155932203390438,0.462068965516876,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6215,6273,6275,6333,0.448275862068567,0.162711864407368,0.455172413792722,0.155932203390438,0.455172413792722,0.169491525424298,0.462068965516876,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6216,6274,6276,6334,0.448275862068567,0.176271186441228,0.455172413792722,0.169491525424298,0.455172413792722,0.183050847458158,0.462068965516876,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6217,6275,6277,6335,0.448275862068567,0.189830508475088,0.455172413792722,0.183050847458158,0.455172413792722,0.196610169492018,0.462068965516876,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 +6218,6276,6278,6336,0.448275862068567,0.203389830508947,0.455172413792722,0.196610169492018,0.455172413792722,0.210169491525877,0.462068965516876,0.203389830508947,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6219,6277,6279,6337,0.448275862068567,0.216949152542807,0.455172413792722,0.210169491525877,0.455172413792722,0.223728813559737,0.462068965516876,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6220,6278,6280,6338,0.448275862068567,0.230508474576667,0.455172413792722,0.223728813559737,0.455172413792722,0.237288135593597,0.462068965516876,0.230508474576667,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6221,6279,6281,6339,0.448275862068567,0.244067796610527,0.455172413792722,0.237288135593597,0.455172413792722,0.250847457627456,0.462068965516876,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6222,6280,6282,6340,0.448275862068567,0.257627118644386,0.455172413792722,0.250847457627456,0.455172413792722,0.264406779661316,0.462068965516876,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6223,6281,6283,6341,0.448275862068567,0.271186440678246,0.455172413792722,0.264406779661316,0.455172413792722,0.277966101695176,0.462068965516876,0.271186440678246,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6224,6282,6284,6342,0.448275862068567,0.284745762712106,0.455172413792722,0.277966101695176,0.455172413792722,0.291525423729036,0.462068965516876,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6225,6283,6285,6343,0.448275862068567,0.298305084745975,0.455172413792722,0.291525423729036,0.455172413792722,0.305084745762915,0.462068965516876,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033879,0.000000000000000,2 +6226,6284,6286,6344,0.448275862068567,0.311864406779851,0.455172413792722,0.305084745762915,0.455172413792722,0.318644067796787,0.462068965516876,0.311864406779851,-0.013559322033872,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033872,0.000000000000000,2 +6227,6285,6287,6345,0.448275862068567,0.325423728813729,0.455172413792722,0.318644067796787,0.455172413792722,0.332203389830671,0.462068965516876,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033883,0.000000000000000,2 +6228,6286,6288,6346,0.448275862068567,0.338983050847605,0.455172413792722,0.332203389830671,0.455172413792722,0.345762711864539,0.462068965516876,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033869,0.000000000000000,2 +6229,6287,6289,6347,0.448275862068567,0.352542372881469,0.455172413792722,0.345762711864539,0.455172413792722,0.359322033898399,0.462068965516876,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6230,6288,6290,6348,0.448275862068567,0.366101694915329,0.455172413792722,0.359322033898399,0.455172413792722,0.372881355932259,0.462068965516876,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6231,6289,6291,6349,0.448275862068567,0.379661016949189,0.455172413792722,0.372881355932259,0.455172413792722,0.386440677966119,0.462068965516876,0.379661016949189,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6232,6290,6350,7134,0.448275862068567,0.393220338983059,0.455172413792722,0.386440677966119,0.462068965516876,0.393220338983059,0.455172413792722,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448309,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448309,2 +5044,6233,6293,6351,0.468965517241031,-0.400000000000000,0.462068965516876,-0.393220338983034,0.468965517241031,-0.386440677966068,0.475862068965185,-0.393220338983034,-0.000000000000000,-0.013793103448309,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448309,0.013559322033932,0.000000000000000,2 +6234,6292,6294,6352,0.462068965516876,-0.379661016949095,0.468965517241031,-0.386440677966068,0.468965517241031,-0.372881355932122,0.475862068965185,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033946,0.000000000000000,2 +6235,6293,6295,6353,0.462068965516876,-0.366101694915163,0.468965517241031,-0.372881355932122,0.468965517241031,-0.359322033898204,0.475862068965185,-0.366101694915163,-0.013559322033918,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033918,0.000000000000000,2 +6236,6294,6296,6354,0.462068965516876,-0.352542372881227,0.468965517241031,-0.359322033898204,0.468965517241031,-0.345762711864250,0.475862068965185,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 +6237,6295,6297,6355,0.462068965516876,-0.338983050847293,0.468965517241031,-0.345762711864250,0.468965517241031,-0.332203389830336,0.475862068965185,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033914,0.000000000000000,2 +6238,6296,6298,6356,0.462068965516876,-0.325423728813361,0.468965517241031,-0.332203389830336,0.468965517241031,-0.318644067796386,0.475862068965185,-0.325423728813361,-0.013559322033951,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033950,-0.000000000000000,2 +6239,6297,6299,6357,0.462068965516876,-0.311864406779421,0.468965517241031,-0.318644067796386,0.468965517241031,-0.305084745762457,0.475862068965185,-0.311864406779422,-0.013559322033928,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033928,0.000000000000000,2 +6240,6298,6300,6358,0.462068965516876,-0.298305084745489,0.468965517241031,-0.305084745762457,0.468965517241031,-0.291525423728521,0.475862068965185,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033936,0.000000000000000,2 +6241,6299,6301,6359,0.462068965516876,-0.284745762711550,0.468965517241031,-0.291525423728521,0.468965517241031,-0.277966101694579,0.475862068965185,-0.284745762711550,-0.013559322033942,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033942,-0.000000000000000,2 +6242,6300,6302,6360,0.462068965516876,-0.271186440677618,0.468965517241031,-0.277966101694579,0.468965517241031,-0.264406779660657,0.475862068965185,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033922,0.000000000000000,2 +6243,6301,6303,6361,0.462068965516876,-0.257627118643680,0.468965517241031,-0.264406779660657,0.468965517241031,-0.250847457626703,0.475862068965185,-0.257627118643680,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 +6244,6302,6304,6362,0.462068965516876,-0.244067796609748,0.468965517241031,-0.250847457626703,0.468965517241031,-0.237288135592793,0.475862068965185,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033910,0.000000000000000,2 +6245,6303,6305,6363,0.462068965516876,-0.230508474575816,0.468965517241031,-0.237288135592793,0.468965517241031,-0.223728813558839,0.475862068965185,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 +6246,6304,6306,6364,0.462068965516876,-0.216949152541877,0.468965517241031,-0.223728813558839,0.468965517241031,-0.210169491524915,0.475862068965185,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033924,0.000000000000000,2 +6247,6305,6307,6365,0.462068965516876,-0.203389830507945,0.468965517241031,-0.210169491524915,0.468965517241031,-0.196610169490975,0.475862068965185,-0.203389830507945,-0.013559322033940,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033940,0.000000000000000,2 +6248,6306,6308,6366,0.462068965516876,-0.189830508474016,0.468965517241031,-0.196610169490975,0.468965517241031,-0.183050847457058,0.475862068965185,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033917,0.000000000000000,2 +6249,6307,6309,6367,0.462068965516876,-0.176271186440084,0.468965517241031,-0.183050847457058,0.468965517241031,-0.169491525423110,0.475862068965185,-0.176271186440084,-0.013559322033947,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033947,0.000000000000000,2 +6250,6308,6310,6368,0.462068965516876,-0.162711864406145,0.468965517241031,-0.169491525423110,0.468965517241031,-0.155932203389179,0.475862068965185,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033931,0.000000000000000,2 +6251,6309,6311,6369,0.462068965516876,-0.149152542372213,0.468965517241031,-0.155932203389179,0.468965517241031,-0.142372881355246,0.475862068965185,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033933,0.000000000000000,2 +6252,6310,6312,6370,0.462068965516876,-0.135593220338273,0.468965517241031,-0.142372881355246,0.468965517241031,-0.128813559321301,0.475862068965185,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033945,0.000000000000000,2 +6253,6311,6313,6371,0.462068965516876,-0.122033898304341,0.468965517241031,-0.128813559321301,0.468965517241031,-0.115254237287382,0.475862068965185,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033919,0.000000000000000,2 +6254,6312,6314,6372,0.462068965516876,-0.108474576270409,0.468965517241031,-0.115254237287382,0.468965517241031,-0.101694915253436,0.475862068965185,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033946,0.000000000000000,2 +6255,6313,6315,6373,0.462068965516876,-0.094915254236471,0.468965517241031,-0.101694915253436,0.468965517241031,-0.088135593219506,0.475862068965185,-0.094915254236471,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033930,-0.000000000000000,2 +6256,6314,6316,6374,0.462068965516876,-0.081355932202535,0.468965517241031,-0.088135593219506,0.468965517241031,-0.074576271185564,0.475862068965185,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033941,0.000000000000000,2 +6257,6315,6317,6375,0.462068965516876,-0.067796610168599,0.468965517241031,-0.074576271185564,0.468965517241031,-0.061016949151634,0.475862068965185,-0.067796610168599,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033930,0.000000000000000,2 +6258,6316,6318,6376,0.462068965516876,-0.054237288134667,0.468965517241031,-0.061016949151634,0.468965517241031,-0.047457627117699,0.475862068965185,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033935,0.000000000000000,2 +6259,6317,6319,6377,0.462068965516876,-0.040677966100731,0.468965517241031,-0.047457627117699,0.468965517241031,-0.033898305083763,0.475862068965185,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033937,0.000000000000000,2 +6260,6318,6320,6378,0.462068965516876,-0.027118644066798,0.468965517241031,-0.033898305083763,0.468965517241031,-0.020338983049832,0.475862068965185,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033930,0.000000000000000,2 +6261,6319,6321,6379,0.462068965516876,-0.013559322032862,0.468965517241031,-0.020338983049832,0.468965517241031,-0.006779661015891,0.475862068965185,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033941,0.000000000000000,2 +6262,6320,6322,6380,0.462068965516876,0.000000000001056,0.468965517241031,-0.006779661015891,0.468965517241031,0.006779661018004,0.475862068965185,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033895,0.000000000000000,2 +6263,6321,6323,6381,0.462068965516876,0.013559322034933,0.468965517241031,0.006779661018004,0.468965517241031,0.020338983051863,0.475862068965185,0.013559322034934,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6264,6322,6324,6382,0.462068965516876,0.027118644068793,0.468965517241031,0.020338983051863,0.468965517241031,0.033898305085723,0.475862068965185,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6265,6323,6325,6383,0.462068965516876,0.040677966102653,0.468965517241031,0.033898305085723,0.468965517241031,0.047457627119583,0.475862068965185,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6266,6324,6326,6384,0.462068965516876,0.054237288136513,0.468965517241031,0.047457627119583,0.468965517241031,0.061016949153442,0.475862068965185,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6267,6325,6327,6385,0.462068965516876,0.067796610170372,0.468965517241031,0.061016949153442,0.468965517241031,0.074576271187302,0.475862068965185,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6268,6326,6328,6386,0.462068965516876,0.081355932204232,0.468965517241031,0.074576271187302,0.468965517241031,0.088135593221162,0.475862068965185,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6269,6327,6329,6387,0.462068965516876,0.094915254238085,0.468965517241031,0.088135593221162,0.468965517241031,0.101694915255008,0.475862068965185,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033846,0.000000000000000,2 +6270,6328,6330,6388,0.462068965516876,0.108474576271933,0.468965517241031,0.101694915255008,0.468965517241031,0.115254237288859,0.475862068965185,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033852,0.000000000000000,2 +6271,6329,6331,6389,0.462068965516876,0.122033898305789,0.468965517241031,0.115254237288859,0.468965517241031,0.128813559322719,0.475862068965185,0.122033898305789,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6272,6330,6332,6390,0.462068965516876,0.135593220339649,0.468965517241031,0.128813559322719,0.468965517241031,0.142372881356579,0.475862068965185,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6273,6331,6333,6391,0.462068965516876,0.149152542373509,0.468965517241031,0.142372881356579,0.468965517241031,0.155932203390438,0.475862068965185,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6274,6332,6334,6392,0.462068965516876,0.162711864407368,0.468965517241031,0.155932203390438,0.468965517241031,0.169491525424298,0.475862068965185,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6275,6333,6335,6393,0.462068965516876,0.176271186441228,0.468965517241031,0.169491525424298,0.468965517241031,0.183050847458158,0.475862068965185,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6276,6334,6336,6394,0.462068965516876,0.189830508475088,0.468965517241031,0.183050847458158,0.468965517241031,0.196610169492018,0.475862068965185,0.189830508475088,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6277,6335,6337,6395,0.462068965516876,0.203389830508947,0.468965517241031,0.196610169492018,0.468965517241031,0.210169491525877,0.475862068965185,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6278,6336,6338,6396,0.462068965516876,0.216949152542807,0.468965517241031,0.210169491525877,0.468965517241031,0.223728813559737,0.475862068965185,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6279,6337,6339,6397,0.462068965516876,0.230508474576667,0.468965517241031,0.223728813559737,0.468965517241031,0.237288135593597,0.475862068965185,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6280,6338,6340,6398,0.462068965516876,0.244067796610527,0.468965517241031,0.237288135593597,0.468965517241031,0.250847457627456,0.475862068965185,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6281,6339,6341,6399,0.462068965516876,0.257627118644386,0.468965517241031,0.250847457627456,0.468965517241031,0.264406779661316,0.475862068965185,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6282,6340,6342,6400,0.462068965516876,0.271186440678246,0.468965517241031,0.264406779661316,0.468965517241031,0.277966101695176,0.475862068965185,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6283,6341,6343,6401,0.462068965516876,0.284745762712106,0.468965517241031,0.277966101695176,0.468965517241031,0.291525423729036,0.475862068965185,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6284,6342,6344,6402,0.462068965516876,0.298305084745975,0.468965517241031,0.291525423729036,0.468965517241031,0.305084745762915,0.475862068965185,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033879,-0.000000000000000,2 +6285,6343,6345,6403,0.462068965516876,0.311864406779851,0.468965517241031,0.305084745762915,0.468965517241031,0.318644067796787,0.475862068965185,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033872,0.000000000000000,2 +6286,6344,6346,6404,0.462068965516876,0.325423728813729,0.468965517241031,0.318644067796787,0.468965517241031,0.332203389830671,0.475862068965185,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033883,0.000000000000000,2 +6287,6345,6347,6405,0.462068965516876,0.338983050847605,0.468965517241031,0.332203389830671,0.468965517241031,0.345762711864539,0.475862068965185,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033869,0.000000000000000,2 +6288,6346,6348,6406,0.462068965516876,0.352542372881469,0.468965517241031,0.345762711864539,0.468965517241031,0.359322033898399,0.475862068965185,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6289,6347,6349,6407,0.462068965516876,0.366101694915329,0.468965517241031,0.359322033898399,0.468965517241031,0.372881355932259,0.475862068965185,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6290,6348,6350,6408,0.462068965516876,0.379661016949189,0.468965517241031,0.372881355932259,0.468965517241031,0.386440677966119,0.475862068965185,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 +6291,6349,6409,7148,0.462068965516876,0.393220338983059,0.468965517241031,0.386440677966119,0.475862068965185,0.393220338983059,0.468965517241031,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448309,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448309,2 +5058,6292,6352,6410,0.482758620689341,-0.400000000000000,0.475862068965185,-0.393220338983034,0.482758620689341,-0.386440677966068,0.489655172413498,-0.393220338983034,-0.000000000000000,-0.013793103448313,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448313,0.013559322033932,0.000000000000000,2 +6293,6351,6353,6411,0.475862068965185,-0.379661016949095,0.482758620689341,-0.386440677966068,0.482758620689341,-0.372881355932122,0.489655172413498,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033946,-0.000000000000000,2 +6294,6352,6354,6412,0.475862068965185,-0.366101694915163,0.482758620689341,-0.372881355932122,0.482758620689341,-0.359322033898204,0.489655172413498,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033918,0.000000000000000,2 +6295,6353,6355,6413,0.475862068965185,-0.352542372881227,0.482758620689341,-0.359322033898204,0.482758620689341,-0.345762711864250,0.489655172413498,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033954,0.000000000000000,2 +6296,6354,6356,6414,0.475862068965185,-0.338983050847293,0.482758620689341,-0.345762711864250,0.482758620689341,-0.332203389830336,0.489655172413498,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033914,-0.000000000000000,2 +6297,6355,6357,6415,0.475862068965185,-0.325423728813361,0.482758620689341,-0.332203389830336,0.482758620689341,-0.318644067796386,0.489655172413498,-0.325423728813361,-0.013559322033950,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033950,0.000000000000000,2 +6298,6356,6358,6416,0.475862068965185,-0.311864406779422,0.482758620689341,-0.318644067796386,0.482758620689341,-0.305084745762457,0.489655172413498,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033928,-0.000000000000000,2 +6299,6357,6359,6417,0.475862068965185,-0.298305084745489,0.482758620689341,-0.305084745762457,0.482758620689341,-0.291525423728521,0.489655172413498,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033936,-0.000000000000000,2 +6300,6358,6360,6418,0.475862068965185,-0.284745762711550,0.482758620689341,-0.291525423728521,0.482758620689341,-0.277966101694579,0.489655172413498,-0.284745762711550,-0.013559322033942,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033942,0.000000000000000,2 +6301,6359,6361,6419,0.475862068965185,-0.271186440677618,0.482758620689341,-0.277966101694579,0.482758620689341,-0.264406779660657,0.489655172413498,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033922,0.000000000000000,2 +6302,6360,6362,6420,0.475862068965185,-0.257627118643680,0.482758620689341,-0.264406779660657,0.482758620689341,-0.250847457626703,0.489655172413498,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033954,-0.000000000000000,2 +6303,6361,6363,6421,0.475862068965185,-0.244067796609748,0.482758620689341,-0.250847457626703,0.482758620689341,-0.237288135592793,0.489655172413498,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033910,0.000000000000000,2 +6304,6362,6364,6422,0.475862068965185,-0.230508474575816,0.482758620689341,-0.237288135592793,0.482758620689341,-0.223728813558839,0.489655172413498,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033954,0.000000000000000,2 +6305,6363,6365,6423,0.475862068965185,-0.216949152541877,0.482758620689341,-0.223728813558839,0.482758620689341,-0.210169491524915,0.489655172413498,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033924,0.000000000000000,2 +6306,6364,6366,6424,0.475862068965185,-0.203389830507945,0.482758620689341,-0.210169491524915,0.482758620689341,-0.196610169490975,0.489655172413498,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033940,0.000000000000000,2 +6307,6365,6367,6425,0.475862068965185,-0.189830508474016,0.482758620689341,-0.196610169490975,0.482758620689341,-0.183050847457058,0.489655172413498,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033917,-0.000000000000000,2 +6308,6366,6368,6426,0.475862068965185,-0.176271186440084,0.482758620689341,-0.183050847457058,0.482758620689341,-0.169491525423110,0.489655172413498,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033947,0.000000000000000,2 +6309,6367,6369,6427,0.475862068965185,-0.162711864406145,0.482758620689341,-0.169491525423110,0.482758620689341,-0.155932203389179,0.489655172413498,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033931,-0.000000000000000,2 +6310,6368,6370,6428,0.475862068965185,-0.149152542372213,0.482758620689341,-0.155932203389179,0.482758620689341,-0.142372881355246,0.489655172413498,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033933,0.000000000000000,2 +6311,6369,6371,6429,0.475862068965185,-0.135593220338273,0.482758620689341,-0.142372881355246,0.482758620689341,-0.128813559321301,0.489655172413498,-0.135593220338273,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033945,-0.000000000000000,2 +6312,6370,6372,6430,0.475862068965185,-0.122033898304341,0.482758620689341,-0.128813559321301,0.482758620689341,-0.115254237287382,0.489655172413498,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033919,0.000000000000000,2 +6313,6371,6373,6431,0.475862068965185,-0.108474576270409,0.482758620689341,-0.115254237287382,0.482758620689341,-0.101694915253436,0.489655172413498,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033946,0.000000000000000,2 +6314,6372,6374,6432,0.475862068965185,-0.094915254236471,0.482758620689341,-0.101694915253436,0.482758620689342,-0.088135593219506,0.489655172413498,-0.094915254236471,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033930,-0.000000000000000,2 +6315,6373,6375,6433,0.475862068965185,-0.081355932202535,0.482758620689342,-0.088135593219506,0.482758620689342,-0.074576271185564,0.489655172413498,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033941,0.000000000000000,2 +6316,6374,6376,6434,0.475862068965185,-0.067796610168599,0.482758620689342,-0.074576271185564,0.482758620689341,-0.061016949151634,0.489655172413498,-0.067796610168599,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033930,0.000000000000000,2 +6317,6375,6377,6435,0.475862068965185,-0.054237288134667,0.482758620689341,-0.061016949151634,0.482758620689341,-0.047457627117699,0.489655172413498,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033935,0.000000000000000,2 +6318,6376,6378,6436,0.475862068965185,-0.040677966100731,0.482758620689341,-0.047457627117699,0.482758620689341,-0.033898305083763,0.489655172413498,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033937,0.000000000000000,2 +6319,6377,6379,6437,0.475862068965185,-0.027118644066798,0.482758620689341,-0.033898305083763,0.482758620689341,-0.020338983049832,0.489655172413498,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033930,-0.000000000000000,2 +6320,6378,6380,6438,0.475862068965185,-0.013559322032862,0.482758620689341,-0.020338983049832,0.482758620689341,-0.006779661015891,0.489655172413498,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033941,0.000000000000000,2 +6321,6379,6381,6439,0.475862068965185,0.000000000001056,0.482758620689341,-0.006779661015891,0.482758620689341,0.006779661018004,0.489655172413498,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033895,0.000000000000000,2 +6322,6380,6382,6440,0.475862068965185,0.013559322034934,0.482758620689341,0.006779661018004,0.482758620689341,0.020338983051863,0.489655172413498,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6323,6381,6383,6441,0.475862068965185,0.027118644068793,0.482758620689341,0.020338983051863,0.482758620689341,0.033898305085723,0.489655172413498,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,-0.000000000000000,2 +6324,6382,6384,6442,0.475862068965185,0.040677966102653,0.482758620689341,0.033898305085723,0.482758620689341,0.047457627119583,0.489655172413498,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6325,6383,6385,6443,0.475862068965185,0.054237288136513,0.482758620689341,0.047457627119583,0.482758620689341,0.061016949153442,0.489655172413498,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6326,6384,6386,6444,0.475862068965185,0.067796610170372,0.482758620689341,0.061016949153442,0.482758620689341,0.074576271187302,0.489655172413498,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6327,6385,6387,6445,0.475862068965185,0.081355932204232,0.482758620689341,0.074576271187302,0.482758620689341,0.088135593221162,0.489655172413498,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6328,6386,6388,6446,0.475862068965185,0.094915254238085,0.482758620689341,0.088135593221162,0.482758620689341,0.101694915255008,0.489655172413498,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033846,-0.000000000000000,2 +6329,6387,6389,6447,0.475862068965185,0.108474576271933,0.482758620689341,0.101694915255008,0.482758620689341,0.115254237288859,0.489655172413498,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033852,0.000000000000000,2 +6330,6388,6390,6448,0.475862068965185,0.122033898305789,0.482758620689341,0.115254237288859,0.482758620689341,0.128813559322719,0.489655172413498,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6331,6389,6391,6449,0.475862068965185,0.135593220339649,0.482758620689341,0.128813559322719,0.482758620689341,0.142372881356579,0.489655172413498,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6332,6390,6392,6450,0.475862068965185,0.149152542373509,0.482758620689341,0.142372881356579,0.482758620689341,0.155932203390438,0.489655172413498,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6333,6391,6393,6451,0.475862068965185,0.162711864407368,0.482758620689341,0.155932203390438,0.482758620689341,0.169491525424298,0.489655172413498,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,-0.000000000000000,2 +6334,6392,6394,6452,0.475862068965185,0.176271186441228,0.482758620689341,0.169491525424298,0.482758620689341,0.183050847458158,0.489655172413498,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,-0.000000000000000,2 +6335,6393,6395,6453,0.475862068965185,0.189830508475088,0.482758620689341,0.183050847458158,0.482758620689341,0.196610169492018,0.489655172413498,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6336,6394,6396,6454,0.475862068965185,0.203389830508947,0.482758620689341,0.196610169492018,0.482758620689341,0.210169491525877,0.489655172413498,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6337,6395,6397,6455,0.475862068965185,0.216949152542807,0.482758620689341,0.210169491525877,0.482758620689341,0.223728813559737,0.489655172413498,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6338,6396,6398,6456,0.475862068965185,0.230508474576667,0.482758620689341,0.223728813559737,0.482758620689341,0.237288135593597,0.489655172413498,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,-0.000000000000000,2 +6339,6397,6399,6457,0.475862068965185,0.244067796610527,0.482758620689341,0.237288135593597,0.482758620689341,0.250847457627456,0.489655172413498,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6340,6398,6400,6458,0.475862068965185,0.257627118644386,0.482758620689341,0.250847457627456,0.482758620689341,0.264406779661316,0.489655172413498,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6341,6399,6401,6459,0.475862068965185,0.271186440678246,0.482758620689341,0.264406779661316,0.482758620689341,0.277966101695176,0.489655172413498,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6342,6400,6402,6460,0.475862068965185,0.284745762712106,0.482758620689341,0.277966101695176,0.482758620689341,0.291525423729036,0.489655172413498,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6343,6401,6403,6461,0.475862068965185,0.298305084745975,0.482758620689341,0.291525423729036,0.482758620689341,0.305084745762915,0.489655172413498,0.298305084745975,-0.013559322033879,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033879,0.000000000000000,2 +6344,6402,6404,6462,0.475862068965185,0.311864406779851,0.482758620689341,0.305084745762915,0.482758620689341,0.318644067796787,0.489655172413498,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033872,-0.000000000000000,2 +6345,6403,6405,6463,0.475862068965185,0.325423728813729,0.482758620689341,0.318644067796787,0.482758620689341,0.332203389830671,0.489655172413498,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033883,0.000000000000000,2 +6346,6404,6406,6464,0.475862068965185,0.338983050847605,0.482758620689341,0.332203389830671,0.482758620689341,0.345762711864539,0.489655172413498,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033869,0.000000000000000,2 +6347,6405,6407,6465,0.475862068965185,0.352542372881469,0.482758620689341,0.345762711864539,0.482758620689341,0.359322033898399,0.489655172413498,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6348,6406,6408,6466,0.475862068965185,0.366101694915329,0.482758620689341,0.359322033898399,0.482758620689341,0.372881355932259,0.489655172413498,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6349,6407,6409,6467,0.475862068965185,0.379661016949189,0.482758620689341,0.372881355932259,0.482758620689341,0.386440677966119,0.489655172413498,0.379661016949189,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 +6350,6408,6468,7162,0.475862068965185,0.393220338983059,0.482758620689341,0.386440677966119,0.489655172413498,0.393220338983059,0.482758620689341,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448313,0.013559322033881,0.000000000000000,0.000000000000000,0.013793103448313,2 +5072,6351,6411,6469,0.496551724137666,-0.400000000000000,0.489655172413498,-0.393220338983034,0.496551724137666,-0.386440677966068,0.503448275861834,-0.393220338983034,-0.000000000000000,-0.013793103448336,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448336,0.013559322033932,0.000000000000000,2 +6352,6410,6412,6470,0.489655172413498,-0.379661016949095,0.496551724137666,-0.386440677966068,0.496551724137666,-0.372881355932122,0.503448275861834,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033946,-0.000000000000000,2 +6353,6411,6413,6471,0.489655172413498,-0.366101694915163,0.496551724137666,-0.372881355932122,0.496551724137666,-0.359322033898204,0.503448275861834,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033918,0.000000000000000,2 +6354,6412,6414,6472,0.489655172413498,-0.352542372881227,0.496551724137666,-0.359322033898204,0.496551724137666,-0.345762711864250,0.503448275861834,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033954,0.000000000000000,2 +6355,6413,6415,6473,0.489655172413498,-0.338983050847293,0.496551724137666,-0.345762711864250,0.496551724137666,-0.332203389830336,0.503448275861834,-0.338983050847293,-0.013559322033914,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033914,-0.000000000000000,2 +6356,6414,6416,6474,0.489655172413498,-0.325423728813361,0.496551724137666,-0.332203389830336,0.496551724137666,-0.318644067796386,0.503448275861834,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033951,0.000000000000000,2 +6357,6415,6417,6475,0.489655172413498,-0.311864406779422,0.496551724137666,-0.318644067796386,0.496551724137666,-0.305084745762457,0.503448275861834,-0.311864406779421,-0.013559322033928,0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033928,0.000000000000000,2 +6358,6416,6418,6476,0.489655172413498,-0.298305084745489,0.496551724137666,-0.305084745762457,0.496551724137666,-0.291525423728521,0.503448275861834,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033936,0.000000000000000,2 +6359,6417,6419,6477,0.489655172413498,-0.284745762711550,0.496551724137666,-0.291525423728521,0.496551724137666,-0.277966101694579,0.503448275861834,-0.284745762711550,-0.013559322033942,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033942,0.000000000000000,2 +6360,6418,6420,6478,0.489655172413498,-0.271186440677618,0.496551724137666,-0.277966101694579,0.496551724137666,-0.264406779660657,0.503448275861834,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033922,0.000000000000000,2 +6361,6419,6421,6479,0.489655172413498,-0.257627118643680,0.496551724137666,-0.264406779660657,0.496551724137666,-0.250847457626703,0.503448275861834,-0.257627118643680,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033954,0.000000000000000,2 +6362,6420,6422,6480,0.489655172413498,-0.244067796609748,0.496551724137666,-0.250847457626703,0.496551724137666,-0.237288135592793,0.503448275861834,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033910,0.000000000000000,2 +6363,6421,6423,6481,0.489655172413498,-0.230508474575816,0.496551724137666,-0.237288135592793,0.496551724137666,-0.223728813558839,0.503448275861834,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033954,0.000000000000000,2 +6364,6422,6424,6482,0.489655172413498,-0.216949152541877,0.496551724137666,-0.223728813558839,0.496551724137666,-0.210169491524915,0.503448275861834,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033924,-0.000000000000000,2 +6365,6423,6425,6483,0.489655172413498,-0.203389830507945,0.496551724137666,-0.210169491524915,0.496551724137666,-0.196610169490975,0.503448275861834,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033940,0.000000000000000,2 +6366,6424,6426,6484,0.489655172413498,-0.189830508474016,0.496551724137666,-0.196610169490975,0.496551724137666,-0.183050847457058,0.503448275861834,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033917,0.000000000000000,2 +6367,6425,6427,6485,0.489655172413498,-0.176271186440084,0.496551724137666,-0.183050847457058,0.496551724137666,-0.169491525423110,0.503448275861834,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033947,0.000000000000000,2 +6368,6426,6428,6486,0.489655172413498,-0.162711864406145,0.496551724137666,-0.169491525423110,0.496551724137666,-0.155932203389179,0.503448275861834,-0.162711864406145,-0.013559322033931,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033931,0.000000000000000,2 +6369,6427,6429,6487,0.489655172413498,-0.149152542372213,0.496551724137666,-0.155932203389179,0.496551724137666,-0.142372881355246,0.503448275861834,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033933,0.000000000000000,2 +6370,6428,6430,6488,0.489655172413498,-0.135593220338273,0.496551724137666,-0.142372881355246,0.496551724137666,-0.128813559321301,0.503448275861834,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033945,0.000000000000000,2 +6371,6429,6431,6489,0.489655172413498,-0.122033898304341,0.496551724137666,-0.128813559321301,0.496551724137666,-0.115254237287382,0.503448275861834,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033919,0.000000000000000,2 +6372,6430,6432,6490,0.489655172413498,-0.108474576270409,0.496551724137666,-0.115254237287382,0.496551724137666,-0.101694915253436,0.503448275861834,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033946,-0.000000000000000,2 +6373,6431,6433,6491,0.489655172413498,-0.094915254236471,0.496551724137666,-0.101694915253436,0.496551724137666,-0.088135593219506,0.503448275861834,-0.094915254236471,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033930,0.000000000000000,2 +6374,6432,6434,6492,0.489655172413498,-0.081355932202535,0.496551724137666,-0.088135593219506,0.496551724137666,-0.074576271185564,0.503448275861834,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033941,0.000000000000000,2 +6375,6433,6435,6493,0.489655172413498,-0.067796610168599,0.496551724137666,-0.074576271185564,0.496551724137666,-0.061016949151634,0.503448275861834,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033930,-0.000000000000000,2 +6376,6434,6436,6494,0.489655172413498,-0.054237288134667,0.496551724137666,-0.061016949151634,0.496551724137666,-0.047457627117699,0.503448275861834,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033935,0.000000000000000,2 +6377,6435,6437,6495,0.489655172413498,-0.040677966100731,0.496551724137666,-0.047457627117699,0.496551724137666,-0.033898305083763,0.503448275861834,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033937,0.000000000000000,2 +6378,6436,6438,6496,0.489655172413498,-0.027118644066798,0.496551724137666,-0.033898305083763,0.496551724137666,-0.020338983049832,0.503448275861834,-0.027118644066798,-0.013559322033930,0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033930,0.000000000000000,2 +6379,6437,6439,6497,0.489655172413498,-0.013559322032862,0.496551724137666,-0.020338983049832,0.496551724137666,-0.006779661015891,0.503448275861834,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033941,0.000000000000000,2 +6380,6438,6440,6498,0.489655172413498,0.000000000001056,0.496551724137666,-0.006779661015891,0.496551724137666,0.006779661018004,0.503448275861834,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033895,0.000000000000000,2 +6381,6439,6441,6499,0.489655172413498,0.013559322034933,0.496551724137666,0.006779661018004,0.496551724137666,0.020338983051863,0.503448275861834,0.013559322034933,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6382,6440,6442,6500,0.489655172413498,0.027118644068793,0.496551724137666,0.020338983051863,0.496551724137666,0.033898305085723,0.503448275861834,0.027118644068793,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6383,6441,6443,6501,0.489655172413498,0.040677966102653,0.496551724137666,0.033898305085723,0.496551724137666,0.047457627119583,0.503448275861834,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6384,6442,6444,6502,0.489655172413498,0.054237288136513,0.496551724137666,0.047457627119583,0.496551724137666,0.061016949153442,0.503448275861834,0.054237288136513,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6385,6443,6445,6503,0.489655172413498,0.067796610170372,0.496551724137666,0.061016949153442,0.496551724137666,0.074576271187302,0.503448275861834,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6386,6444,6446,6504,0.489655172413498,0.081355932204232,0.496551724137666,0.074576271187302,0.496551724137666,0.088135593221162,0.503448275861834,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6387,6445,6447,6505,0.489655172413498,0.094915254238085,0.496551724137666,0.088135593221162,0.496551724137666,0.101694915255008,0.503448275861834,0.094915254238085,-0.013559322033846,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033846,0.000000000000000,2 +6388,6446,6448,6506,0.489655172413498,0.108474576271933,0.496551724137666,0.101694915255008,0.496551724137666,0.115254237288859,0.503448275861834,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033852,0.000000000000000,2 +6389,6447,6449,6507,0.489655172413498,0.122033898305789,0.496551724137666,0.115254237288859,0.496551724137666,0.128813559322719,0.503448275861834,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6390,6448,6450,6508,0.489655172413498,0.135593220339649,0.496551724137666,0.128813559322719,0.496551724137666,0.142372881356579,0.503448275861834,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6391,6449,6451,6509,0.489655172413498,0.149152542373509,0.496551724137666,0.142372881356579,0.496551724137666,0.155932203390438,0.503448275861834,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6392,6450,6452,6510,0.489655172413498,0.162711864407368,0.496551724137666,0.155932203390438,0.496551724137666,0.169491525424298,0.503448275861834,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6393,6451,6453,6511,0.489655172413498,0.176271186441228,0.496551724137666,0.169491525424298,0.496551724137666,0.183050847458158,0.503448275861834,0.176271186441228,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033859,0.000000000000000,2 +6394,6452,6454,6512,0.489655172413498,0.189830508475088,0.496551724137666,0.183050847458158,0.496551724137666,0.196610169492018,0.503448275861834,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6395,6453,6455,6513,0.489655172413498,0.203389830508947,0.496551724137666,0.196610169492018,0.496551724137666,0.210169491525877,0.503448275861834,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6396,6454,6456,6514,0.489655172413498,0.216949152542807,0.496551724137666,0.210169491525877,0.496551724137666,0.223728813559737,0.503448275861834,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6397,6455,6457,6515,0.489655172413498,0.230508474576667,0.496551724137666,0.223728813559737,0.496551724137666,0.237288135593597,0.503448275861834,0.230508474576667,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6398,6456,6458,6516,0.489655172413498,0.244067796610527,0.496551724137666,0.237288135593597,0.496551724137666,0.250847457627456,0.503448275861834,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6399,6457,6459,6517,0.489655172413498,0.257627118644386,0.496551724137666,0.250847457627456,0.496551724137666,0.264406779661316,0.503448275861834,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6400,6458,6460,6518,0.489655172413498,0.271186440678246,0.496551724137666,0.264406779661316,0.496551724137666,0.277966101695176,0.503448275861834,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6401,6459,6461,6519,0.489655172413498,0.284745762712106,0.496551724137666,0.277966101695176,0.496551724137666,0.291525423729036,0.503448275861834,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6402,6460,6462,6520,0.489655172413498,0.298305084745975,0.496551724137666,0.291525423729036,0.496551724137666,0.305084745762915,0.503448275861834,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033879,0.000000000000000,2 +6403,6461,6463,6521,0.489655172413498,0.311864406779851,0.496551724137666,0.305084745762915,0.496551724137666,0.318644067796787,0.503448275861834,0.311864406779851,-0.013559322033872,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033872,0.000000000000000,2 +6404,6462,6464,6522,0.489655172413498,0.325423728813729,0.496551724137666,0.318644067796787,0.496551724137666,0.332203389830671,0.503448275861834,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033883,0.000000000000000,2 +6405,6463,6465,6523,0.489655172413498,0.338983050847605,0.496551724137666,0.332203389830671,0.496551724137666,0.345762711864539,0.503448275861834,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033869,0.000000000000000,2 +6406,6464,6466,6524,0.489655172413498,0.352542372881469,0.496551724137666,0.345762711864539,0.496551724137666,0.359322033898399,0.503448275861834,0.352542372881469,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6407,6465,6467,6525,0.489655172413498,0.366101694915329,0.496551724137666,0.359322033898399,0.496551724137666,0.372881355932259,0.503448275861834,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6408,6466,6468,6526,0.489655172413498,0.379661016949189,0.496551724137666,0.372881355932259,0.496551724137666,0.386440677966119,0.503448275861834,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 +6409,6467,6527,7176,0.489655172413498,0.393220338983059,0.496551724137666,0.386440677966119,0.503448275861834,0.393220338983059,0.496551724137666,0.400000000000000,-0.013559322033881,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448336,2 +5086,6410,6470,6528,0.510344827585989,-0.400000000000000,0.503448275861834,-0.393220338983034,0.510344827585989,-0.386440677966068,0.517241379310145,-0.393220338983034,-0.000000000000000,-0.013793103448311,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448311,0.013559322033932,0.000000000000000,2 +6411,6469,6471,6529,0.503448275861834,-0.379661016949095,0.510344827585989,-0.386440677966068,0.510344827585989,-0.372881355932122,0.517241379310145,-0.379661016949095,-0.013559322033946,0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033946,-0.000000000000000,2 +6412,6470,6472,6530,0.503448275861834,-0.366101694915163,0.510344827585989,-0.372881355932122,0.510344827585990,-0.359322033898204,0.517241379310145,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.013559322033918,-0.000000000000000,2 +6413,6471,6473,6531,0.503448275861834,-0.352542372881227,0.510344827585990,-0.359322033898204,0.510344827585989,-0.345762711864250,0.517241379310145,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.013559322033954,0.000000000000000,2 +6414,6472,6474,6532,0.503448275861834,-0.338983050847293,0.510344827585989,-0.345762711864250,0.510344827585989,-0.332203389830336,0.517241379310145,-0.338983050847293,-0.013559322033914,0.000000000000000,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448311,0.013559322033914,0.000000000000000,2 +6415,6473,6475,6533,0.503448275861834,-0.325423728813361,0.510344827585989,-0.332203389830336,0.510344827585989,-0.318644067796386,0.517241379310145,-0.325423728813361,-0.013559322033951,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033950,0.000000000000000,2 +6416,6474,6476,6534,0.503448275861834,-0.311864406779421,0.510344827585989,-0.318644067796386,0.510344827585989,-0.305084745762457,0.517241379310145,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033928,0.000000000000000,2 +6417,6475,6477,6535,0.503448275861834,-0.298305084745489,0.510344827585989,-0.305084745762457,0.510344827585989,-0.291525423728521,0.517241379310145,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.013559322033936,-0.000000000000000,2 +6418,6476,6478,6536,0.503448275861834,-0.284745762711550,0.510344827585989,-0.291525423728521,0.510344827585989,-0.277966101694579,0.517241379310145,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448311,0.013559322033942,0.000000000000000,2 +6419,6477,6479,6537,0.503448275861834,-0.271186440677618,0.510344827585989,-0.277966101694579,0.510344827585989,-0.264406779660657,0.517241379310145,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033922,0.000000000000000,2 +6420,6478,6480,6538,0.503448275861834,-0.257627118643680,0.510344827585989,-0.264406779660657,0.510344827585989,-0.250847457626703,0.517241379310145,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.013559322033954,0.000000000000000,2 +6421,6479,6481,6539,0.503448275861834,-0.244067796609748,0.510344827585989,-0.250847457626703,0.510344827585989,-0.237288135592793,0.517241379310145,-0.244067796609748,-0.013559322033910,-0.000000000000000,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.013559322033910,0.000000000000000,2 +6422,6480,6482,6540,0.503448275861834,-0.230508474575816,0.510344827585989,-0.237288135592793,0.510344827585989,-0.223728813558839,0.517241379310145,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033954,0.000000000000000,2 +6423,6481,6483,6541,0.503448275861834,-0.216949152541877,0.510344827585989,-0.223728813558839,0.510344827585989,-0.210169491524915,0.517241379310145,-0.216949152541877,-0.013559322033924,0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033924,-0.000000000000000,2 +6424,6482,6484,6542,0.503448275861834,-0.203389830507945,0.510344827585989,-0.210169491524915,0.510344827585989,-0.196610169490975,0.517241379310145,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.013559322033940,-0.000000000000000,2 +6425,6483,6485,6543,0.503448275861834,-0.189830508474016,0.510344827585989,-0.196610169490975,0.510344827585989,-0.183050847457058,0.517241379310145,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448311,0.013559322033917,0.000000000000000,2 +6426,6484,6486,6544,0.503448275861834,-0.176271186440084,0.510344827585989,-0.183050847457058,0.510344827585989,-0.169491525423110,0.517241379310145,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033947,-0.000000000000000,2 +6427,6485,6487,6545,0.503448275861834,-0.162711864406145,0.510344827585989,-0.169491525423110,0.510344827585989,-0.155932203389179,0.517241379310145,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.013559322033931,-0.000000000000000,2 +6428,6486,6488,6546,0.503448275861834,-0.149152542372213,0.510344827585989,-0.155932203389179,0.510344827585989,-0.142372881355246,0.517241379310145,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448311,0.013559322033933,0.000000000000000,2 +6429,6487,6489,6547,0.503448275861834,-0.135593220338273,0.510344827585989,-0.142372881355246,0.510344827585989,-0.128813559321301,0.517241379310145,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033945,0.000000000000000,2 +6430,6488,6490,6548,0.503448275861834,-0.122033898304341,0.510344827585989,-0.128813559321301,0.510344827585989,-0.115254237287382,0.517241379310145,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033919,0.000000000000000,2 +6431,6489,6491,6549,0.503448275861834,-0.108474576270409,0.510344827585989,-0.115254237287382,0.510344827585989,-0.101694915253436,0.517241379310145,-0.108474576270409,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033946,0.000000000000000,2 +6432,6490,6492,6550,0.503448275861834,-0.094915254236471,0.510344827585989,-0.101694915253436,0.510344827585989,-0.088135593219506,0.517241379310145,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.013559322033930,0.000000000000000,2 +6433,6491,6493,6551,0.503448275861834,-0.081355932202535,0.510344827585989,-0.088135593219506,0.510344827585989,-0.074576271185565,0.517241379310145,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033941,0.000000000000000,2 +6434,6492,6494,6552,0.503448275861834,-0.067796610168599,0.510344827585989,-0.074576271185565,0.510344827585989,-0.061016949151634,0.517241379310145,-0.067796610168599,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.013559322033930,0.000000000000000,2 +6435,6493,6495,6553,0.503448275861834,-0.054237288134667,0.510344827585989,-0.061016949151634,0.510344827585989,-0.047457627117699,0.517241379310145,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.013559322033935,0.000000000000000,2 +6436,6494,6496,6554,0.503448275861834,-0.040677966100731,0.510344827585989,-0.047457627117699,0.510344827585989,-0.033898305083763,0.517241379310145,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033937,0.000000000000000,2 +6437,6495,6497,6555,0.503448275861834,-0.027118644066798,0.510344827585989,-0.033898305083763,0.510344827585989,-0.020338983049833,0.517241379310145,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033930,0.000000000000000,2 +6438,6496,6498,6556,0.503448275861834,-0.013559322032862,0.510344827585989,-0.020338983049833,0.510344827585989,-0.006779661015891,0.517241379310145,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033941,0.000000000000000,2 +6439,6497,6499,6557,0.503448275861834,0.000000000001056,0.510344827585989,-0.006779661015891,0.510344827585989,0.006779661018004,0.517241379310145,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033895,0.000000000000000,2 +6440,6498,6500,6558,0.503448275861834,0.013559322034933,0.510344827585989,0.006779661018004,0.510344827585989,0.020338983051863,0.517241379310145,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6441,6499,6501,6559,0.503448275861834,0.027118644068793,0.510344827585989,0.020338983051863,0.510344827585989,0.033898305085723,0.517241379310145,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6442,6500,6502,6560,0.503448275861834,0.040677966102653,0.510344827585989,0.033898305085723,0.510344827585989,0.047457627119583,0.517241379310145,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6443,6501,6503,6561,0.503448275861834,0.054237288136513,0.510344827585989,0.047457627119583,0.510344827585989,0.061016949153442,0.517241379310145,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6444,6502,6504,6562,0.503448275861834,0.067796610170372,0.510344827585989,0.061016949153442,0.510344827585989,0.074576271187302,0.517241379310145,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6445,6503,6505,6563,0.503448275861834,0.081355932204232,0.510344827585989,0.074576271187302,0.510344827585989,0.088135593221162,0.517241379310145,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6446,6504,6506,6564,0.503448275861834,0.094915254238085,0.510344827585989,0.088135593221162,0.510344827585989,0.101694915255008,0.517241379310145,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033846,0.000000000000000,2 +6447,6505,6507,6565,0.503448275861834,0.108474576271933,0.510344827585989,0.101694915255008,0.510344827585989,0.115254237288859,0.517241379310145,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033852,0.000000000000000,2 +6448,6506,6508,6566,0.503448275861834,0.122033898305789,0.510344827585989,0.115254237288859,0.510344827585989,0.128813559322719,0.517241379310145,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6449,6507,6509,6567,0.503448275861834,0.135593220339649,0.510344827585989,0.128813559322719,0.510344827585989,0.142372881356579,0.517241379310145,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6450,6508,6510,6568,0.503448275861834,0.149152542373509,0.510344827585989,0.142372881356579,0.510344827585989,0.155932203390438,0.517241379310145,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6451,6509,6511,6569,0.503448275861834,0.162711864407368,0.510344827585989,0.155932203390438,0.510344827585989,0.169491525424298,0.517241379310145,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6452,6510,6512,6570,0.503448275861834,0.176271186441228,0.510344827585989,0.169491525424298,0.510344827585989,0.183050847458158,0.517241379310145,0.176271186441228,-0.013559322033859,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448312,0.013559322033860,-0.000000000000000,2 +6453,6511,6513,6571,0.503448275861834,0.189830508475088,0.510344827585989,0.183050847458158,0.510344827585989,0.196610169492018,0.517241379310145,0.189830508475088,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6454,6512,6514,6572,0.503448275861834,0.203389830508947,0.510344827585989,0.196610169492018,0.510344827585989,0.210169491525877,0.517241379310145,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6455,6513,6515,6573,0.503448275861834,0.216949152542807,0.510344827585989,0.210169491525877,0.510344827585989,0.223728813559737,0.517241379310145,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6456,6514,6516,6574,0.503448275861834,0.230508474576667,0.510344827585989,0.223728813559737,0.510344827585989,0.237288135593597,0.517241379310145,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6457,6515,6517,6575,0.503448275861834,0.244067796610527,0.510344827585989,0.237288135593597,0.510344827585989,0.250847457627456,0.517241379310145,0.244067796610526,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.013559322033860,-0.000000000000000,2 +6458,6516,6518,6576,0.503448275861834,0.257627118644386,0.510344827585989,0.250847457627456,0.510344827585989,0.264406779661316,0.517241379310145,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6459,6517,6519,6577,0.503448275861834,0.271186440678246,0.510344827585989,0.264406779661316,0.510344827585989,0.277966101695176,0.517241379310145,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6460,6518,6520,6578,0.503448275861834,0.284745762712106,0.510344827585989,0.277966101695176,0.510344827585989,0.291525423729036,0.517241379310145,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6461,6519,6521,6579,0.503448275861834,0.298305084745975,0.510344827585989,0.291525423729036,0.510344827585989,0.305084745762915,0.517241379310145,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033879,0.000000000000000,2 +6462,6520,6522,6580,0.503448275861834,0.311864406779851,0.510344827585989,0.305084745762915,0.510344827585989,0.318644067796787,0.517241379310145,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033872,0.000000000000000,2 +6463,6521,6523,6581,0.503448275861834,0.325423728813729,0.510344827585989,0.318644067796787,0.510344827585989,0.332203389830671,0.517241379310145,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033883,0.000000000000000,2 +6464,6522,6524,6582,0.503448275861834,0.338983050847605,0.510344827585989,0.332203389830671,0.510344827585989,0.345762711864539,0.517241379310145,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033869,0.000000000000000,2 +6465,6523,6525,6583,0.503448275861834,0.352542372881469,0.510344827585989,0.345762711864539,0.510344827585989,0.359322033898399,0.517241379310145,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6466,6524,6526,6584,0.503448275861834,0.366101694915329,0.510344827585989,0.359322033898399,0.510344827585989,0.372881355932259,0.517241379310145,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6467,6525,6527,6585,0.503448275861834,0.379661016949189,0.510344827585989,0.372881355932259,0.510344827585989,0.386440677966119,0.517241379310145,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 +6468,6526,6586,7190,0.503448275861834,0.393220338983059,0.510344827585989,0.386440677966119,0.517241379310145,0.393220338983059,0.510344827585989,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448311,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448311,2 +5100,6469,6529,6587,0.524137931034299,-0.400000000000000,0.517241379310145,-0.393220338983034,0.524137931034299,-0.386440677966068,0.531034482758453,-0.393220338983034,-0.000000000000000,-0.013793103448308,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448308,0.013559322033932,0.000000000000000,2 +6470,6528,6530,6588,0.517241379310145,-0.379661016949095,0.524137931034299,-0.386440677966068,0.524137931034299,-0.372881355932122,0.531034482758453,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033946,-0.000000000000000,2 +6471,6529,6531,6589,0.517241379310145,-0.366101694915163,0.524137931034299,-0.372881355932122,0.524137931034299,-0.359322033898204,0.531034482758453,-0.366101694915163,-0.013559322033918,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448307,0.013559322033918,0.000000000000000,2 +6472,6530,6532,6590,0.517241379310145,-0.352542372881227,0.524137931034299,-0.359322033898204,0.524137931034299,-0.345762711864250,0.531034482758453,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448308,0.013559322033954,-0.000000000000000,2 +6473,6531,6533,6591,0.517241379310145,-0.338983050847293,0.524137931034299,-0.345762711864250,0.524137931034299,-0.332203389830336,0.531034482758453,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033914,0.000000000000000,2 +6474,6532,6534,6592,0.517241379310145,-0.325423728813361,0.524137931034299,-0.332203389830336,0.524137931034299,-0.318644067796386,0.531034482758453,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033950,0.000000000000000,2 +6475,6533,6535,6593,0.517241379310145,-0.311864406779422,0.524137931034299,-0.318644067796386,0.524137931034299,-0.305084745762457,0.531034482758453,-0.311864406779421,-0.013559322033928,-0.000000000000000,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033928,0.000000000000000,2 +6476,6534,6536,6594,0.517241379310145,-0.298305084745489,0.524137931034299,-0.305084745762457,0.524137931034299,-0.291525423728521,0.531034482758453,-0.298305084745489,-0.013559322033936,0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033936,-0.000000000000000,2 +6477,6535,6537,6595,0.517241379310145,-0.284745762711550,0.524137931034299,-0.291525423728521,0.524137931034299,-0.277966101694579,0.531034482758453,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033942,0.000000000000000,2 +6478,6536,6538,6596,0.517241379310145,-0.271186440677618,0.524137931034299,-0.277966101694579,0.524137931034299,-0.264406779660657,0.531034482758453,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033922,0.000000000000000,2 +6479,6537,6539,6597,0.517241379310145,-0.257627118643680,0.524137931034299,-0.264406779660657,0.524137931034299,-0.250847457626703,0.531034482758453,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033954,0.000000000000000,2 +6480,6538,6540,6598,0.517241379310145,-0.244067796609748,0.524137931034299,-0.250847457626703,0.524137931034299,-0.237288135592793,0.531034482758453,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033910,-0.000000000000000,2 +6481,6539,6541,6599,0.517241379310145,-0.230508474575816,0.524137931034299,-0.237288135592793,0.524137931034299,-0.223728813558839,0.531034482758453,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033954,0.000000000000000,2 +6482,6540,6542,6600,0.517241379310145,-0.216949152541877,0.524137931034299,-0.223728813558839,0.524137931034299,-0.210169491524915,0.531034482758453,-0.216949152541877,-0.013559322033924,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033924,0.000000000000000,2 +6483,6541,6543,6601,0.517241379310145,-0.203389830507945,0.524137931034299,-0.210169491524915,0.524137931034299,-0.196610169490975,0.531034482758453,-0.203389830507945,-0.013559322033940,0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448307,0.013559322033940,0.000000000000000,2 +6484,6542,6544,6602,0.517241379310145,-0.189830508474016,0.524137931034299,-0.196610169490975,0.524137931034299,-0.183050847457058,0.531034482758453,-0.189830508474016,-0.013559322033917,-0.000000000000000,0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448308,0.013559322033917,-0.000000000000000,2 +6485,6543,6545,6603,0.517241379310145,-0.176271186440084,0.524137931034299,-0.183050847457058,0.524137931034299,-0.169491525423110,0.531034482758453,-0.176271186440084,-0.013559322033947,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033947,0.000000000000000,2 +6486,6544,6546,6604,0.517241379310145,-0.162711864406145,0.524137931034299,-0.169491525423110,0.524137931034299,-0.155932203389179,0.531034482758453,-0.162711864406145,-0.013559322033931,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033931,0.000000000000000,2 +6487,6545,6547,6605,0.517241379310145,-0.149152542372213,0.524137931034299,-0.155932203389179,0.524137931034299,-0.142372881355246,0.531034482758453,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033933,0.000000000000000,2 +6488,6546,6548,6606,0.517241379310145,-0.135593220338274,0.524137931034299,-0.142372881355246,0.524137931034299,-0.128813559321301,0.531034482758453,-0.135593220338273,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033945,-0.000000000000000,2 +6489,6547,6549,6607,0.517241379310145,-0.122033898304341,0.524137931034299,-0.128813559321301,0.524137931034299,-0.115254237287382,0.531034482758453,-0.122033898304341,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033919,0.000000000000000,2 +6490,6548,6550,6608,0.517241379310145,-0.108474576270409,0.524137931034299,-0.115254237287382,0.524137931034299,-0.101694915253436,0.531034482758453,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033946,-0.000000000000000,2 +6491,6549,6551,6609,0.517241379310145,-0.094915254236471,0.524137931034299,-0.101694915253436,0.524137931034299,-0.088135593219506,0.531034482758453,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033930,-0.000000000000000,2 +6492,6550,6552,6610,0.517241379310145,-0.081355932202535,0.524137931034299,-0.088135593219506,0.524137931034299,-0.074576271185564,0.531034482758453,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033941,0.000000000000000,2 +6493,6551,6553,6611,0.517241379310145,-0.067796610168599,0.524137931034299,-0.074576271185564,0.524137931034299,-0.061016949151634,0.531034482758453,-0.067796610168599,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033930,0.000000000000000,2 +6494,6552,6554,6612,0.517241379310145,-0.054237288134667,0.524137931034299,-0.061016949151634,0.524137931034299,-0.047457627117699,0.531034482758453,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033935,0.000000000000000,2 +6495,6553,6555,6613,0.517241379310145,-0.040677966100731,0.524137931034299,-0.047457627117699,0.524137931034299,-0.033898305083763,0.531034482758453,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033937,0.000000000000000,2 +6496,6554,6556,6614,0.517241379310145,-0.027118644066798,0.524137931034299,-0.033898305083763,0.524137931034299,-0.020338983049833,0.531034482758453,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033930,0.000000000000000,2 +6497,6555,6557,6615,0.517241379310145,-0.013559322032862,0.524137931034299,-0.020338983049833,0.524137931034299,-0.006779661015891,0.531034482758453,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033941,0.000000000000000,2 +6498,6556,6558,6616,0.517241379310145,0.000000000001056,0.524137931034299,-0.006779661015891,0.524137931034299,0.006779661018004,0.531034482758453,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033895,0.000000000000000,2 +6499,6557,6559,6617,0.517241379310145,0.013559322034933,0.524137931034299,0.006779661018004,0.524137931034299,0.020338983051863,0.531034482758453,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,-0.000000000000000,2 +6500,6558,6560,6618,0.517241379310145,0.027118644068793,0.524137931034299,0.020338983051863,0.524137931034299,0.033898305085723,0.531034482758453,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6501,6559,6561,6619,0.517241379310145,0.040677966102653,0.524137931034299,0.033898305085723,0.524137931034299,0.047457627119583,0.531034482758453,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6502,6560,6562,6620,0.517241379310145,0.054237288136513,0.524137931034299,0.047457627119583,0.524137931034299,0.061016949153442,0.531034482758453,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6503,6561,6563,6621,0.517241379310145,0.067796610170372,0.524137931034299,0.061016949153442,0.524137931034299,0.074576271187302,0.531034482758453,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6504,6562,6564,6622,0.517241379310145,0.081355932204232,0.524137931034299,0.074576271187302,0.524137931034299,0.088135593221162,0.531034482758453,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6505,6563,6565,6623,0.517241379310145,0.094915254238085,0.524137931034299,0.088135593221162,0.524137931034299,0.101694915255008,0.531034482758453,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033846,-0.000000000000000,2 +6506,6564,6566,6624,0.517241379310145,0.108474576271933,0.524137931034299,0.101694915255008,0.524137931034299,0.115254237288859,0.531034482758453,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033852,0.000000000000000,2 +6507,6565,6567,6625,0.517241379310145,0.122033898305789,0.524137931034299,0.115254237288859,0.524137931034299,0.128813559322719,0.531034482758453,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6508,6566,6568,6626,0.517241379310145,0.135593220339649,0.524137931034299,0.128813559322719,0.524137931034299,0.142372881356579,0.531034482758453,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6509,6567,6569,6627,0.517241379310145,0.149152542373509,0.524137931034299,0.142372881356579,0.524137931034299,0.155932203390438,0.531034482758453,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6510,6568,6570,6628,0.517241379310145,0.162711864407368,0.524137931034299,0.155932203390438,0.524137931034299,0.169491525424298,0.531034482758453,0.162711864407368,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,-0.000000000000000,2 +6511,6569,6571,6629,0.517241379310145,0.176271186441228,0.524137931034299,0.169491525424298,0.524137931034299,0.183050847458158,0.531034482758453,0.176271186441228,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6512,6570,6572,6630,0.517241379310145,0.189830508475088,0.524137931034299,0.183050847458158,0.524137931034299,0.196610169492018,0.531034482758453,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6513,6571,6573,6631,0.517241379310145,0.203389830508947,0.524137931034299,0.196610169492018,0.524137931034299,0.210169491525877,0.531034482758453,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6514,6572,6574,6632,0.517241379310145,0.216949152542807,0.524137931034299,0.210169491525877,0.524137931034299,0.223728813559737,0.531034482758453,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6515,6573,6575,6633,0.517241379310145,0.230508474576667,0.524137931034299,0.223728813559737,0.524137931034299,0.237288135593597,0.531034482758453,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,-0.000000000000000,2 +6516,6574,6576,6634,0.517241379310145,0.244067796610526,0.524137931034299,0.237288135593597,0.524137931034299,0.250847457627456,0.531034482758453,0.244067796610527,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6517,6575,6577,6635,0.517241379310145,0.257627118644386,0.524137931034299,0.250847457627456,0.524137931034299,0.264406779661316,0.531034482758453,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6518,6576,6578,6636,0.517241379310145,0.271186440678246,0.524137931034299,0.264406779661316,0.524137931034299,0.277966101695176,0.531034482758453,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6519,6577,6579,6637,0.517241379310145,0.284745762712106,0.524137931034299,0.277966101695176,0.524137931034299,0.291525423729036,0.531034482758453,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6520,6578,6580,6638,0.517241379310145,0.298305084745975,0.524137931034299,0.291525423729036,0.524137931034299,0.305084745762915,0.531034482758453,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033879,0.000000000000000,2 +6521,6579,6581,6639,0.517241379310145,0.311864406779851,0.524137931034299,0.305084745762915,0.524137931034299,0.318644067796787,0.531034482758453,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033872,0.000000000000000,2 +6522,6580,6582,6640,0.517241379310145,0.325423728813729,0.524137931034299,0.318644067796787,0.524137931034299,0.332203389830670,0.531034482758453,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033883,0.000000000000000,2 +6523,6581,6583,6641,0.517241379310145,0.338983050847605,0.524137931034299,0.332203389830670,0.524137931034299,0.345762711864539,0.531034482758453,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033869,0.000000000000000,2 +6524,6582,6584,6642,0.517241379310145,0.352542372881469,0.524137931034299,0.345762711864539,0.524137931034299,0.359322033898399,0.531034482758453,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6525,6583,6585,6643,0.517241379310145,0.366101694915329,0.524137931034299,0.359322033898399,0.524137931034299,0.372881355932259,0.531034482758453,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6526,6584,6586,6644,0.517241379310145,0.379661016949189,0.524137931034299,0.372881355932259,0.524137931034299,0.386440677966119,0.531034482758453,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 +6527,6585,6645,7204,0.517241379310145,0.393220338983059,0.524137931034299,0.386440677966119,0.531034482758453,0.393220338983059,0.524137931034299,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448308,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448308,2 +5114,6528,6588,6646,0.537931034482601,-0.400000000000000,0.531034482758453,-0.393220338983034,0.537931034482601,-0.386440677966068,0.544827586206749,-0.393220338983034,-0.000000000000000,-0.013793103448296,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448297,0.013559322033932,0.000000000000000,2 +6529,6587,6589,6647,0.531034482758453,-0.379661016949095,0.537931034482601,-0.386440677966068,0.537931034482601,-0.372881355932122,0.544827586206749,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033946,0.000000000000000,2 +6530,6588,6590,6648,0.531034482758453,-0.366101694915163,0.537931034482601,-0.372881355932122,0.537931034482601,-0.359322033898204,0.544827586206749,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033918,-0.000000000000000,2 +6531,6589,6591,6649,0.531034482758453,-0.352542372881227,0.537931034482601,-0.359322033898204,0.537931034482601,-0.345762711864250,0.544827586206749,-0.352542372881227,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033954,0.000000000000000,2 +6532,6590,6592,6650,0.531034482758453,-0.338983050847293,0.537931034482601,-0.345762711864250,0.537931034482601,-0.332203389830336,0.544827586206749,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033914,0.000000000000000,2 +6533,6591,6593,6651,0.531034482758453,-0.325423728813361,0.537931034482601,-0.332203389830336,0.537931034482601,-0.318644067796386,0.544827586206749,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033950,0.000000000000000,2 +6534,6592,6594,6652,0.531034482758453,-0.311864406779421,0.537931034482601,-0.318644067796386,0.537931034482601,-0.305084745762457,0.544827586206749,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033928,0.000000000000000,2 +6535,6593,6595,6653,0.531034482758453,-0.298305084745489,0.537931034482601,-0.305084745762457,0.537931034482601,-0.291525423728521,0.544827586206749,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033936,-0.000000000000000,2 +6536,6594,6596,6654,0.531034482758453,-0.284745762711550,0.537931034482601,-0.291525423728521,0.537931034482601,-0.277966101694579,0.544827586206749,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.013559322033942,0.000000000000000,2 +6537,6595,6597,6655,0.531034482758453,-0.271186440677618,0.537931034482601,-0.277966101694579,0.537931034482601,-0.264406779660657,0.544827586206749,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033922,-0.000000000000000,2 +6538,6596,6598,6656,0.531034482758453,-0.257627118643680,0.537931034482601,-0.264406779660657,0.537931034482601,-0.250847457626703,0.544827586206749,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033954,0.000000000000000,2 +6539,6597,6599,6657,0.531034482758453,-0.244067796609748,0.537931034482601,-0.250847457626703,0.537931034482601,-0.237288135592793,0.544827586206749,-0.244067796609748,-0.013559322033910,0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033910,0.000000000000000,2 +6540,6598,6600,6658,0.531034482758453,-0.230508474575816,0.537931034482601,-0.237288135592793,0.537931034482601,-0.223728813558839,0.544827586206749,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033954,0.000000000000000,2 +6541,6599,6601,6659,0.531034482758453,-0.216949152541877,0.537931034482601,-0.223728813558839,0.537931034482601,-0.210169491524915,0.544827586206749,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033924,-0.000000000000000,2 +6542,6600,6602,6660,0.531034482758453,-0.203389830507945,0.537931034482601,-0.210169491524915,0.537931034482601,-0.196610169490975,0.544827586206749,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,0.013559322033940,0.000000000000000,2 +6543,6601,6603,6661,0.531034482758453,-0.189830508474016,0.537931034482601,-0.196610169490975,0.537931034482601,-0.183050847457058,0.544827586206749,-0.189830508474016,-0.013559322033917,0.000000000000000,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033917,0.000000000000000,2 +6544,6602,6604,6662,0.531034482758453,-0.176271186440084,0.537931034482601,-0.183050847457058,0.537931034482601,-0.169491525423110,0.544827586206749,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033947,0.000000000000000,2 +6545,6603,6605,6663,0.531034482758453,-0.162711864406145,0.537931034482601,-0.169491525423110,0.537931034482601,-0.155932203389179,0.544827586206749,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033931,-0.000000000000000,2 +6546,6604,6606,6664,0.531034482758453,-0.149152542372213,0.537931034482601,-0.155932203389179,0.537931034482601,-0.142372881355246,0.544827586206749,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448297,0.013559322033933,0.000000000000000,2 +6547,6605,6607,6665,0.531034482758453,-0.135593220338273,0.537931034482601,-0.142372881355246,0.537931034482601,-0.128813559321301,0.544827586206749,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033945,0.000000000000000,2 +6548,6606,6608,6666,0.531034482758453,-0.122033898304341,0.537931034482601,-0.128813559321301,0.537931034482601,-0.115254237287382,0.544827586206749,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033919,-0.000000000000000,2 +6549,6607,6609,6667,0.531034482758453,-0.108474576270409,0.537931034482601,-0.115254237287382,0.537931034482601,-0.101694915253436,0.544827586206749,-0.108474576270409,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,0.013559322033946,0.000000000000000,2 +6550,6608,6610,6668,0.531034482758453,-0.094915254236471,0.537931034482601,-0.101694915253436,0.537931034482601,-0.088135593219506,0.544827586206749,-0.094915254236471,-0.013559322033930,0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033930,0.000000000000000,2 +6551,6609,6611,6669,0.531034482758453,-0.081355932202535,0.537931034482601,-0.088135593219506,0.537931034482601,-0.074576271185564,0.544827586206749,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033941,0.000000000000000,2 +6552,6610,6612,6670,0.531034482758453,-0.067796610168599,0.537931034482601,-0.074576271185564,0.537931034482601,-0.061016949151634,0.544827586206749,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033930,-0.000000000000000,2 +6553,6611,6613,6671,0.531034482758453,-0.054237288134667,0.537931034482601,-0.061016949151634,0.537931034482601,-0.047457627117699,0.544827586206749,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.013559322033935,0.000000000000000,2 +6554,6612,6614,6672,0.531034482758453,-0.040677966100731,0.537931034482601,-0.047457627117699,0.537931034482601,-0.033898305083763,0.544827586206749,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.013559322033937,0.000000000000000,2 +6555,6613,6615,6673,0.531034482758453,-0.027118644066798,0.537931034482601,-0.033898305083763,0.537931034482601,-0.020338983049833,0.544827586206749,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033930,-0.000000000000000,2 +6556,6614,6616,6674,0.531034482758453,-0.013559322032862,0.537931034482601,-0.020338983049833,0.537931034482601,-0.006779661015891,0.544827586206749,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,0.013559322033941,0.000000000000000,2 +6557,6615,6617,6675,0.531034482758453,0.000000000001056,0.537931034482601,-0.006779661015891,0.537931034482601,0.006779661018004,0.544827586206749,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,0.013559322033895,-0.000000000000000,2 +6558,6616,6618,6676,0.531034482758453,0.013559322034933,0.537931034482601,0.006779661018004,0.537931034482601,0.020338983051863,0.544827586206749,0.013559322034933,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6559,6617,6619,6677,0.531034482758453,0.027118644068793,0.537931034482601,0.020338983051863,0.537931034482601,0.033898305085723,0.544827586206749,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6560,6618,6620,6678,0.531034482758453,0.040677966102653,0.537931034482601,0.033898305085723,0.537931034482601,0.047457627119583,0.544827586206749,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6561,6619,6621,6679,0.531034482758453,0.054237288136513,0.537931034482601,0.047457627119583,0.537931034482601,0.061016949153442,0.544827586206749,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6562,6620,6622,6680,0.531034482758453,0.067796610170372,0.537931034482601,0.061016949153442,0.537931034482601,0.074576271187302,0.544827586206749,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6563,6621,6623,6681,0.531034482758453,0.081355932204232,0.537931034482601,0.074576271187302,0.537931034482601,0.088135593221162,0.544827586206749,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6564,6622,6624,6682,0.531034482758453,0.094915254238085,0.537931034482601,0.088135593221162,0.537931034482601,0.101694915255008,0.544827586206749,0.094915254238085,-0.013559322033846,0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033846,0.000000000000000,2 +6565,6623,6625,6683,0.531034482758453,0.108474576271933,0.537931034482601,0.101694915255008,0.537931034482601,0.115254237288859,0.544827586206749,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033852,0.000000000000000,2 +6566,6624,6626,6684,0.531034482758453,0.122033898305789,0.537931034482601,0.115254237288859,0.537931034482601,0.128813559322719,0.544827586206749,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6567,6625,6627,6685,0.531034482758453,0.135593220339649,0.537931034482601,0.128813559322719,0.537931034482601,0.142372881356579,0.544827586206749,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,-0.000000000000000,2 +6568,6626,6628,6686,0.531034482758453,0.149152542373509,0.537931034482601,0.142372881356579,0.537931034482601,0.155932203390438,0.544827586206749,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6569,6627,6629,6687,0.531034482758453,0.162711864407368,0.537931034482601,0.155932203390438,0.537931034482601,0.169491525424298,0.544827586206749,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,-0.000000000000000,2 +6570,6628,6630,6688,0.531034482758453,0.176271186441228,0.537931034482601,0.169491525424298,0.537931034482601,0.183050847458158,0.544827586206749,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6571,6629,6631,6689,0.531034482758453,0.189830508475088,0.537931034482601,0.183050847458158,0.537931034482601,0.196610169492018,0.544827586206749,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,-0.000000000000000,2 +6572,6630,6632,6690,0.531034482758453,0.203389830508947,0.537931034482601,0.196610169492018,0.537931034482601,0.210169491525877,0.544827586206749,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6573,6631,6633,6691,0.531034482758453,0.216949152542807,0.537931034482601,0.210169491525877,0.537931034482601,0.223728813559737,0.544827586206749,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033860,0.000000000000000,2 +6574,6632,6634,6692,0.531034482758453,0.230508474576667,0.537931034482601,0.223728813559737,0.537931034482601,0.237288135593597,0.544827586206749,0.230508474576667,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6575,6633,6635,6693,0.531034482758453,0.244067796610527,0.537931034482601,0.237288135593597,0.537931034482601,0.250847457627456,0.544827586206749,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6576,6634,6636,6694,0.531034482758453,0.257627118644386,0.537931034482601,0.250847457627456,0.537931034482601,0.264406779661316,0.544827586206749,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6577,6635,6637,6695,0.531034482758453,0.271186440678246,0.537931034482601,0.264406779661316,0.537931034482601,0.277966101695176,0.544827586206749,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6578,6636,6638,6696,0.531034482758453,0.284745762712106,0.537931034482601,0.277966101695176,0.537931034482601,0.291525423729036,0.544827586206749,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6579,6637,6639,6697,0.531034482758453,0.298305084745975,0.537931034482601,0.291525423729036,0.537931034482601,0.305084745762915,0.544827586206749,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033879,0.000000000000000,2 +6580,6638,6640,6698,0.531034482758453,0.311864406779851,0.537931034482601,0.305084745762915,0.537931034482601,0.318644067796787,0.544827586206749,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033872,0.000000000000000,2 +6581,6639,6641,6699,0.531034482758453,0.325423728813729,0.537931034482601,0.318644067796787,0.537931034482601,0.332203389830670,0.544827586206749,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033883,0.000000000000000,2 +6582,6640,6642,6700,0.531034482758453,0.338983050847605,0.537931034482601,0.332203389830670,0.537931034482601,0.345762711864539,0.544827586206749,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033869,0.000000000000000,2 +6583,6641,6643,6701,0.531034482758453,0.352542372881469,0.537931034482601,0.345762711864539,0.537931034482601,0.359322033898399,0.544827586206749,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,0.013559322033860,-0.000000000000000,2 +6584,6642,6644,6702,0.531034482758453,0.366101694915329,0.537931034482601,0.359322033898399,0.537931034482601,0.372881355932259,0.544827586206749,0.366101694915329,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 +6585,6643,6645,6703,0.531034482758453,0.379661016949189,0.537931034482601,0.372881355932259,0.537931034482601,0.386440677966119,0.544827586206749,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033860,-0.000000000000000,2 +6586,6644,6704,7218,0.531034482758453,0.393220338983059,0.537931034482601,0.386440677966119,0.544827586206749,0.393220338983059,0.537931034482601,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448297,0.013559322033881,0.000000000000000,0.000000000000000,0.013793103448296,2 +5128,6587,6647,6705,0.551724137930900,-0.400000000000000,0.544827586206749,-0.393220338983034,0.551724137930900,-0.386440677966068,0.558620689655051,-0.393220338983034,-0.000000000000000,-0.013793103448302,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448301,0.013559322033932,0.000000000000000,2 +6588,6646,6648,6706,0.544827586206749,-0.379661016949095,0.551724137930900,-0.386440677966068,0.551724137930900,-0.372881355932122,0.558620689655051,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448302,0.013559322033946,-0.000000000000000,2 +6589,6647,6649,6707,0.544827586206749,-0.366101694915163,0.551724137930900,-0.372881355932122,0.551724137930900,-0.359322033898204,0.558620689655051,-0.366101694915163,-0.013559322033918,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448301,0.013559322033918,0.000000000000000,2 +6590,6648,6650,6708,0.544827586206749,-0.352542372881227,0.551724137930900,-0.359322033898204,0.551724137930900,-0.345762711864250,0.558620689655051,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448302,0.013559322033954,-0.000000000000000,2 +6591,6649,6651,6709,0.544827586206749,-0.338983050847293,0.551724137930900,-0.345762711864250,0.551724137930900,-0.332203389830336,0.558620689655051,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033914,0.000000000000000,2 +6592,6650,6652,6710,0.544827586206749,-0.325423728813361,0.551724137930900,-0.332203389830336,0.551724137930900,-0.318644067796386,0.558620689655051,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033950,0.000000000000000,2 +6593,6651,6653,6711,0.544827586206749,-0.311864406779422,0.551724137930900,-0.318644067796386,0.551724137930900,-0.305084745762457,0.558620689655051,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033928,0.000000000000000,2 +6594,6652,6654,6712,0.544827586206749,-0.298305084745489,0.551724137930900,-0.305084745762457,0.551724137930900,-0.291525423728521,0.558620689655051,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033936,-0.000000000000000,2 +6595,6653,6655,6713,0.544827586206749,-0.284745762711550,0.551724137930900,-0.291525423728521,0.551724137930900,-0.277966101694579,0.558620689655051,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033942,0.000000000000000,2 +6596,6654,6656,6714,0.544827586206749,-0.271186440677618,0.551724137930900,-0.277966101694579,0.551724137930900,-0.264406779660657,0.558620689655051,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033922,0.000000000000000,2 +6597,6655,6657,6715,0.544827586206749,-0.257627118643680,0.551724137930900,-0.264406779660657,0.551724137930900,-0.250847457626703,0.558620689655051,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033954,-0.000000000000000,2 +6598,6656,6658,6716,0.544827586206749,-0.244067796609748,0.551724137930900,-0.250847457626703,0.551724137930900,-0.237288135592793,0.558620689655051,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033910,0.000000000000000,2 +6599,6657,6659,6717,0.544827586206749,-0.230508474575816,0.551724137930900,-0.237288135592793,0.551724137930900,-0.223728813558839,0.558620689655051,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033954,0.000000000000000,2 +6600,6658,6660,6718,0.544827586206749,-0.216949152541877,0.551724137930900,-0.223728813558839,0.551724137930900,-0.210169491524915,0.558620689655051,-0.216949152541877,-0.013559322033924,0.000000000000000,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033924,0.000000000000000,2 +6601,6659,6661,6719,0.544827586206749,-0.203389830507945,0.551724137930900,-0.210169491524915,0.551724137930900,-0.196610169490975,0.558620689655051,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033940,0.000000000000000,2 +6602,6660,6662,6720,0.544827586206749,-0.189830508474016,0.551724137930900,-0.196610169490975,0.551724137930900,-0.183050847457058,0.558620689655051,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033917,0.000000000000000,2 +6603,6661,6663,6721,0.544827586206749,-0.176271186440084,0.551724137930900,-0.183050847457058,0.551724137930900,-0.169491525423110,0.558620689655051,-0.176271186440084,-0.013559322033947,-0.000000000000000,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033947,0.000000000000000,2 +6604,6662,6664,6722,0.544827586206749,-0.162711864406145,0.551724137930900,-0.169491525423110,0.551724137930900,-0.155932203389179,0.558620689655051,-0.162711864406145,-0.013559322033931,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033931,0.000000000000000,2 +6605,6663,6665,6723,0.544827586206749,-0.149152542372213,0.551724137930900,-0.155932203389179,0.551724137930900,-0.142372881355246,0.558620689655051,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033933,0.000000000000000,2 +6606,6664,6666,6724,0.544827586206749,-0.135593220338273,0.551724137930900,-0.142372881355246,0.551724137930900,-0.128813559321301,0.558620689655051,-0.135593220338273,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033945,-0.000000000000000,2 +6607,6665,6667,6725,0.544827586206749,-0.122033898304341,0.551724137930900,-0.128813559321301,0.551724137930900,-0.115254237287382,0.558620689655051,-0.122033898304341,-0.013559322033919,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033919,0.000000000000000,2 +6608,6666,6668,6726,0.544827586206749,-0.108474576270409,0.551724137930900,-0.115254237287382,0.551724137930900,-0.101694915253436,0.558620689655051,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033946,0.000000000000000,2 +6609,6667,6669,6727,0.544827586206749,-0.094915254236471,0.551724137930900,-0.101694915253436,0.551724137930900,-0.088135593219506,0.558620689655051,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033930,0.000000000000000,2 +6610,6668,6670,6728,0.544827586206749,-0.081355932202535,0.551724137930900,-0.088135593219506,0.551724137930900,-0.074576271185564,0.558620689655051,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033941,0.000000000000000,2 +6611,6669,6671,6729,0.544827586206749,-0.067796610168599,0.551724137930900,-0.074576271185564,0.551724137930900,-0.061016949151634,0.558620689655051,-0.067796610168599,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033930,-0.000000000000000,2 +6612,6670,6672,6730,0.544827586206749,-0.054237288134667,0.551724137930900,-0.061016949151634,0.551724137930900,-0.047457627117699,0.558620689655051,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033935,0.000000000000000,2 +6613,6671,6673,6731,0.544827586206749,-0.040677966100731,0.551724137930900,-0.047457627117699,0.551724137930900,-0.033898305083763,0.558620689655051,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033937,-0.000000000000000,2 +6614,6672,6674,6732,0.544827586206749,-0.027118644066798,0.551724137930900,-0.033898305083763,0.551724137930900,-0.020338983049833,0.558620689655051,-0.027118644066798,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033930,0.000000000000000,2 +6615,6673,6675,6733,0.544827586206749,-0.013559322032862,0.551724137930900,-0.020338983049833,0.551724137930900,-0.006779661015891,0.558620689655051,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033941,0.000000000000000,2 +6616,6674,6676,6734,0.544827586206749,0.000000000001056,0.551724137930900,-0.006779661015891,0.551724137930900,0.006779661018004,0.558620689655051,0.000000000001056,-0.013559322033895,0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033895,0.000000000000000,2 +6617,6675,6677,6735,0.544827586206749,0.013559322034933,0.551724137930900,0.006779661018004,0.551724137930900,0.020338983051863,0.558620689655051,0.013559322034934,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6618,6676,6678,6736,0.544827586206749,0.027118644068793,0.551724137930900,0.020338983051863,0.551724137930900,0.033898305085723,0.558620689655051,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6619,6677,6679,6737,0.544827586206749,0.040677966102653,0.551724137930900,0.033898305085723,0.551724137930900,0.047457627119583,0.558620689655051,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6620,6678,6680,6738,0.544827586206749,0.054237288136513,0.551724137930900,0.047457627119583,0.551724137930900,0.061016949153442,0.558620689655051,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6621,6679,6681,6739,0.544827586206749,0.067796610170372,0.551724137930900,0.061016949153442,0.551724137930900,0.074576271187302,0.558620689655051,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6622,6680,6682,6740,0.544827586206749,0.081355932204232,0.551724137930900,0.074576271187302,0.551724137930900,0.088135593221162,0.558620689655051,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6623,6681,6683,6741,0.544827586206749,0.094915254238085,0.551724137930900,0.088135593221162,0.551724137930900,0.101694915255008,0.558620689655051,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033846,-0.000000000000000,2 +6624,6682,6684,6742,0.544827586206749,0.108474576271933,0.551724137930900,0.101694915255008,0.551724137930900,0.115254237288859,0.558620689655051,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033852,0.000000000000000,2 +6625,6683,6685,6743,0.544827586206749,0.122033898305789,0.551724137930900,0.115254237288859,0.551724137930900,0.128813559322719,0.558620689655051,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6626,6684,6686,6744,0.544827586206749,0.135593220339649,0.551724137930900,0.128813559322719,0.551724137930900,0.142372881356579,0.558620689655051,0.135593220339649,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6627,6685,6687,6745,0.544827586206749,0.149152542373509,0.551724137930900,0.142372881356579,0.551724137930900,0.155932203390438,0.558620689655051,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,-0.000000000000000,2 +6628,6686,6688,6746,0.544827586206749,0.162711864407368,0.551724137930900,0.155932203390438,0.551724137930900,0.169491525424298,0.558620689655051,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6629,6687,6689,6747,0.544827586206749,0.176271186441228,0.551724137930900,0.169491525424298,0.551724137930900,0.183050847458158,0.558620689655051,0.176271186441228,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033860,-0.000000000000000,2 +6630,6688,6690,6748,0.544827586206749,0.189830508475088,0.551724137930900,0.183050847458158,0.551724137930900,0.196610169492018,0.558620689655051,0.189830508475088,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6631,6689,6691,6749,0.544827586206749,0.203389830508947,0.551724137930900,0.196610169492018,0.551724137930900,0.210169491525877,0.558620689655051,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,-0.000000000000000,2 +6632,6690,6692,6750,0.544827586206749,0.216949152542807,0.551724137930900,0.210169491525877,0.551724137930900,0.223728813559737,0.558620689655051,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6633,6691,6693,6751,0.544827586206749,0.230508474576667,0.551724137930900,0.223728813559737,0.551724137930900,0.237288135593597,0.558620689655051,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6634,6692,6694,6752,0.544827586206749,0.244067796610527,0.551724137930900,0.237288135593597,0.551724137930900,0.250847457627456,0.558620689655051,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6635,6693,6695,6753,0.544827586206749,0.257627118644386,0.551724137930900,0.250847457627456,0.551724137930900,0.264406779661316,0.558620689655051,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6636,6694,6696,6754,0.544827586206749,0.271186440678246,0.551724137930900,0.264406779661316,0.551724137930900,0.277966101695176,0.558620689655051,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,-0.000000000000000,2 +6637,6695,6697,6755,0.544827586206749,0.284745762712106,0.551724137930900,0.277966101695176,0.551724137930900,0.291525423729036,0.558620689655051,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6638,6696,6698,6756,0.544827586206749,0.298305084745975,0.551724137930900,0.291525423729036,0.551724137930900,0.305084745762915,0.558620689655051,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033879,0.000000000000000,2 +6639,6697,6699,6757,0.544827586206749,0.311864406779851,0.551724137930900,0.305084745762915,0.551724137930900,0.318644067796787,0.558620689655051,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033872,0.000000000000000,2 +6640,6698,6700,6758,0.544827586206749,0.325423728813729,0.551724137930900,0.318644067796787,0.551724137930900,0.332203389830670,0.558620689655051,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033883,0.000000000000000,2 +6641,6699,6701,6759,0.544827586206749,0.338983050847605,0.551724137930900,0.332203389830670,0.551724137930900,0.345762711864539,0.558620689655051,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033869,-0.000000000000000,2 +6642,6700,6702,6760,0.544827586206749,0.352542372881469,0.551724137930900,0.345762711864539,0.551724137930900,0.359322033898399,0.558620689655051,0.352542372881469,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6643,6701,6703,6761,0.544827586206749,0.366101694915329,0.551724137930900,0.359322033898399,0.551724137930900,0.372881355932259,0.558620689655051,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 +6644,6702,6704,6762,0.544827586206749,0.379661016949189,0.551724137930900,0.372881355932259,0.551724137930900,0.386440677966119,0.558620689655051,0.379661016949189,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033860,-0.000000000000000,2 +6645,6703,6763,7232,0.544827586206749,0.393220338983059,0.551724137930900,0.386440677966119,0.558620689655051,0.393220338983059,0.551724137930900,0.400000000000000,-0.013559322033881,-0.000000000000000,0.000000000000000,-0.013793103448302,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448302,2 +5142,6646,6706,6764,0.565517241379205,-0.400000000000000,0.558620689655051,-0.393220338983034,0.565517241379205,-0.386440677966068,0.572413793103360,-0.393220338983034,-0.000000000000000,-0.013793103448309,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448309,0.013559322033932,0.000000000000000,2 +6647,6705,6707,6765,0.558620689655051,-0.379661016949095,0.565517241379205,-0.386440677966068,0.565517241379205,-0.372881355932122,0.572413793103360,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033946,0.000000000000000,2 +6648,6706,6708,6766,0.558620689655051,-0.366101694915163,0.565517241379205,-0.372881355932122,0.565517241379205,-0.359322033898204,0.572413793103360,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448310,0.013559322033918,-0.000000000000000,2 +6649,6707,6709,6767,0.558620689655051,-0.352542372881227,0.565517241379205,-0.359322033898204,0.565517241379206,-0.345762711864250,0.572413793103360,-0.352542372881227,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 +6650,6708,6710,6768,0.558620689655051,-0.338983050847293,0.565517241379206,-0.345762711864250,0.565517241379205,-0.332203389830336,0.572413793103360,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033914,0.000000000000000,2 +6651,6709,6711,6769,0.558620689655051,-0.325423728813361,0.565517241379205,-0.332203389830336,0.565517241379205,-0.318644067796386,0.572413793103360,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033951,0.000000000000000,2 +6652,6710,6712,6770,0.558620689655051,-0.311864406779422,0.565517241379205,-0.318644067796386,0.565517241379205,-0.305084745762457,0.572413793103360,-0.311864406779421,-0.013559322033928,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033928,0.000000000000000,2 +6653,6711,6713,6771,0.558620689655051,-0.298305084745489,0.565517241379205,-0.305084745762457,0.565517241379205,-0.291525423728521,0.572413793103360,-0.298305084745489,-0.013559322033936,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033936,0.000000000000000,2 +6654,6712,6714,6772,0.558620689655051,-0.284745762711550,0.565517241379205,-0.291525423728521,0.565517241379206,-0.277966101694579,0.572413793103360,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033942,-0.000000000000000,2 +6655,6713,6715,6773,0.558620689655051,-0.271186440677618,0.565517241379206,-0.277966101694579,0.565517241379205,-0.264406779660657,0.572413793103360,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033922,0.000000000000000,2 +6656,6714,6716,6774,0.558620689655051,-0.257627118643680,0.565517241379205,-0.264406779660657,0.565517241379206,-0.250847457626703,0.572413793103360,-0.257627118643680,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 +6657,6715,6717,6775,0.558620689655051,-0.244067796609748,0.565517241379206,-0.250847457626703,0.565517241379205,-0.237288135592793,0.572413793103360,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033910,0.000000000000000,2 +6658,6716,6718,6776,0.558620689655051,-0.230508474575816,0.565517241379205,-0.237288135592793,0.565517241379205,-0.223728813558839,0.572413793103360,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,-0.000000000000000,2 +6659,6717,6719,6777,0.558620689655051,-0.216949152541877,0.565517241379205,-0.223728813558839,0.565517241379205,-0.210169491524915,0.572413793103360,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033924,0.000000000000000,2 +6660,6718,6720,6778,0.558620689655051,-0.203389830507945,0.565517241379205,-0.210169491524915,0.565517241379205,-0.196610169490975,0.572413793103360,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033940,0.000000000000000,2 +6661,6719,6721,6779,0.558620689655051,-0.189830508474016,0.565517241379205,-0.196610169490975,0.565517241379205,-0.183050847457058,0.572413793103360,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033917,0.000000000000000,2 +6662,6720,6722,6780,0.558620689655051,-0.176271186440084,0.565517241379205,-0.183050847457058,0.565517241379205,-0.169491525423110,0.572413793103360,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033947,0.000000000000000,2 +6663,6721,6723,6781,0.558620689655051,-0.162711864406145,0.565517241379205,-0.169491525423110,0.565517241379205,-0.155932203389179,0.572413793103360,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033931,-0.000000000000000,2 +6664,6722,6724,6782,0.558620689655051,-0.149152542372213,0.565517241379205,-0.155932203389179,0.565517241379205,-0.142372881355246,0.572413793103360,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033933,0.000000000000000,2 +6665,6723,6725,6783,0.558620689655051,-0.135593220338273,0.565517241379205,-0.142372881355246,0.565517241379205,-0.128813559321301,0.572413793103360,-0.135593220338274,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033945,0.000000000000000,2 +6666,6724,6726,6784,0.558620689655051,-0.122033898304341,0.565517241379205,-0.128813559321301,0.565517241379205,-0.115254237287382,0.572413793103360,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033919,0.000000000000000,2 +6667,6725,6727,6785,0.558620689655051,-0.108474576270409,0.565517241379205,-0.115254237287382,0.565517241379205,-0.101694915253436,0.572413793103360,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033946,0.000000000000000,2 +6668,6726,6728,6786,0.558620689655051,-0.094915254236471,0.565517241379205,-0.101694915253436,0.565517241379205,-0.088135593219506,0.572413793103360,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033930,0.000000000000000,2 +6669,6727,6729,6787,0.558620689655051,-0.081355932202535,0.565517241379205,-0.088135593219506,0.565517241379205,-0.074576271185564,0.572413793103360,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033941,0.000000000000000,2 +6670,6728,6730,6788,0.558620689655051,-0.067796610168599,0.565517241379205,-0.074576271185564,0.565517241379205,-0.061016949151634,0.572413793103360,-0.067796610168599,-0.013559322033930,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033930,-0.000000000000000,2 +6671,6729,6731,6789,0.558620689655051,-0.054237288134667,0.565517241379205,-0.061016949151634,0.565517241379205,-0.047457627117699,0.572413793103360,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033935,0.000000000000000,2 +6672,6730,6732,6790,0.558620689655051,-0.040677966100731,0.565517241379205,-0.047457627117699,0.565517241379205,-0.033898305083763,0.572413793103360,-0.040677966100731,-0.013559322033937,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033937,0.000000000000000,2 +6673,6731,6733,6791,0.558620689655051,-0.027118644066798,0.565517241379205,-0.033898305083763,0.565517241379205,-0.020338983049833,0.572413793103360,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033930,0.000000000000000,2 +6674,6732,6734,6792,0.558620689655051,-0.013559322032862,0.565517241379205,-0.020338983049833,0.565517241379205,-0.006779661015891,0.572413793103360,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033941,0.000000000000000,2 +6675,6733,6735,6793,0.558620689655051,0.000000000001056,0.565517241379205,-0.006779661015891,0.565517241379205,0.006779661018004,0.572413793103360,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033895,0.000000000000000,2 +6676,6734,6736,6794,0.558620689655051,0.013559322034934,0.565517241379205,0.006779661018004,0.565517241379205,0.020338983051863,0.572413793103360,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 +6677,6735,6737,6795,0.558620689655051,0.027118644068793,0.565517241379205,0.020338983051863,0.565517241379205,0.033898305085723,0.572413793103360,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6678,6736,6738,6796,0.558620689655051,0.040677966102653,0.565517241379205,0.033898305085723,0.565517241379205,0.047457627119583,0.572413793103360,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6679,6737,6739,6797,0.558620689655051,0.054237288136513,0.565517241379205,0.047457627119583,0.565517241379205,0.061016949153442,0.572413793103360,0.054237288136513,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 +6680,6738,6740,6798,0.558620689655051,0.067796610170372,0.565517241379205,0.061016949153442,0.565517241379205,0.074576271187302,0.572413793103360,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6681,6739,6741,6799,0.558620689655051,0.081355932204232,0.565517241379205,0.074576271187302,0.565517241379205,0.088135593221162,0.572413793103360,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6682,6740,6742,6800,0.558620689655051,0.094915254238085,0.565517241379205,0.088135593221162,0.565517241379205,0.101694915255008,0.572413793103360,0.094915254238085,-0.013559322033846,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033846,0.000000000000000,2 +6683,6741,6743,6801,0.558620689655051,0.108474576271933,0.565517241379205,0.101694915255008,0.565517241379205,0.115254237288859,0.572413793103360,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033852,0.000000000000000,2 +6684,6742,6744,6802,0.558620689655051,0.122033898305789,0.565517241379205,0.115254237288859,0.565517241379205,0.128813559322719,0.572413793103360,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6685,6743,6745,6803,0.558620689655051,0.135593220339649,0.565517241379205,0.128813559322719,0.565517241379205,0.142372881356579,0.572413793103360,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6686,6744,6746,6804,0.558620689655051,0.149152542373509,0.565517241379205,0.142372881356579,0.565517241379205,0.155932203390438,0.572413793103360,0.149152542373509,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6687,6745,6747,6805,0.558620689655051,0.162711864407368,0.565517241379205,0.155932203390438,0.565517241379205,0.169491525424298,0.572413793103360,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6688,6746,6748,6806,0.558620689655051,0.176271186441228,0.565517241379205,0.169491525424298,0.565517241379205,0.183050847458158,0.572413793103360,0.176271186441228,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6689,6747,6749,6807,0.558620689655051,0.189830508475088,0.565517241379205,0.183050847458158,0.565517241379205,0.196610169492018,0.572413793103360,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 +6690,6748,6750,6808,0.558620689655051,0.203389830508947,0.565517241379205,0.196610169492018,0.565517241379205,0.210169491525877,0.572413793103360,0.203389830508947,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6691,6749,6751,6809,0.558620689655051,0.216949152542807,0.565517241379205,0.210169491525877,0.565517241379205,0.223728813559737,0.572413793103360,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6692,6750,6752,6810,0.558620689655051,0.230508474576667,0.565517241379205,0.223728813559737,0.565517241379205,0.237288135593597,0.572413793103360,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 +6693,6751,6753,6811,0.558620689655051,0.244067796610527,0.565517241379205,0.237288135593597,0.565517241379205,0.250847457627456,0.572413793103360,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6694,6752,6754,6812,0.558620689655051,0.257627118644386,0.565517241379205,0.250847457627456,0.565517241379205,0.264406779661316,0.572413793103360,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 +6695,6753,6755,6813,0.558620689655051,0.271186440678246,0.565517241379205,0.264406779661316,0.565517241379205,0.277966101695176,0.572413793103360,0.271186440678246,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6696,6754,6756,6814,0.558620689655051,0.284745762712106,0.565517241379205,0.277966101695176,0.565517241379205,0.291525423729036,0.572413793103360,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6697,6755,6757,6815,0.558620689655051,0.298305084745975,0.565517241379205,0.291525423729036,0.565517241379205,0.305084745762915,0.572413793103360,0.298305084745975,-0.013559322033879,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033879,0.000000000000000,2 +6698,6756,6758,6816,0.558620689655051,0.311864406779851,0.565517241379205,0.305084745762915,0.565517241379205,0.318644067796787,0.572413793103360,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033872,0.000000000000000,2 +6699,6757,6759,6817,0.558620689655051,0.325423728813729,0.565517241379205,0.318644067796787,0.565517241379205,0.332203389830670,0.572413793103360,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033883,-0.000000000000000,2 +6700,6758,6760,6818,0.558620689655051,0.338983050847605,0.565517241379205,0.332203389830670,0.565517241379205,0.345762711864539,0.572413793103360,0.338983050847605,-0.013559322033869,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033869,0.000000000000000,2 +6701,6759,6761,6819,0.558620689655051,0.352542372881469,0.565517241379205,0.345762711864539,0.565517241379205,0.359322033898399,0.572413793103360,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6702,6760,6762,6820,0.558620689655051,0.366101694915329,0.565517241379205,0.359322033898399,0.565517241379205,0.372881355932259,0.572413793103360,0.366101694915329,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6703,6761,6763,6821,0.558620689655051,0.379661016949189,0.565517241379205,0.372881355932259,0.565517241379205,0.386440677966119,0.572413793103360,0.379661016949189,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 +6704,6762,6822,7246,0.558620689655051,0.393220338983059,0.565517241379205,0.386440677966119,0.572413793103360,0.393220338983059,0.565517241379205,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448309,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448309,2 +5156,6705,6765,6823,0.579310344827519,-0.400000000000000,0.572413793103360,-0.393220338983034,0.579310344827519,-0.386440677966068,0.586206896551678,-0.393220338983034,-0.000000000000000,-0.013793103448318,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448318,0.013559322033932,0.000000000000000,2 +6706,6764,6766,6824,0.572413793103360,-0.379661016949095,0.579310344827519,-0.386440677966068,0.579310344827519,-0.372881355932122,0.586206896551678,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033946,0.000000000000000,2 +6707,6765,6767,6825,0.572413793103360,-0.366101694915163,0.579310344827519,-0.372881355932122,0.579310344827519,-0.359322033898204,0.586206896551678,-0.366101694915163,-0.013559322033918,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033918,0.000000000000000,2 +6708,6766,6768,6826,0.572413793103360,-0.352542372881227,0.579310344827519,-0.359322033898204,0.579310344827519,-0.345762711864250,0.586206896551678,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033954,-0.000000000000000,2 +6709,6767,6769,6827,0.572413793103360,-0.338983050847293,0.579310344827519,-0.345762711864250,0.579310344827519,-0.332203389830336,0.586206896551678,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033914,-0.000000000000000,2 +6710,6768,6770,6828,0.572413793103360,-0.325423728813361,0.579310344827519,-0.332203389830336,0.579310344827519,-0.318644067796385,0.586206896551678,-0.325423728813361,-0.013559322033951,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033950,0.000000000000000,2 +6711,6769,6771,6829,0.572413793103360,-0.311864406779421,0.579310344827519,-0.318644067796385,0.579310344827519,-0.305084745762457,0.586206896551678,-0.311864406779421,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033928,0.000000000000000,2 +6712,6770,6772,6830,0.572413793103360,-0.298305084745489,0.579310344827519,-0.305084745762457,0.579310344827519,-0.291525423728521,0.586206896551678,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033936,0.000000000000000,2 +6713,6771,6773,6831,0.572413793103360,-0.284745762711550,0.579310344827519,-0.291525423728521,0.579310344827519,-0.277966101694579,0.586206896551678,-0.284745762711550,-0.013559322033942,0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033942,0.000000000000000,2 +6714,6772,6774,6832,0.572413793103360,-0.271186440677618,0.579310344827519,-0.277966101694579,0.579310344827519,-0.264406779660657,0.586206896551678,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033922,0.000000000000000,2 +6715,6773,6775,6833,0.572413793103360,-0.257627118643680,0.579310344827519,-0.264406779660657,0.579310344827519,-0.250847457626703,0.586206896551678,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033954,-0.000000000000000,2 +6716,6774,6776,6834,0.572413793103360,-0.244067796609748,0.579310344827519,-0.250847457626703,0.579310344827519,-0.237288135592793,0.586206896551678,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033910,0.000000000000000,2 +6717,6775,6777,6835,0.572413793103360,-0.230508474575816,0.579310344827519,-0.237288135592793,0.579310344827519,-0.223728813558839,0.586206896551678,-0.230508474575816,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033954,-0.000000000000000,2 +6718,6776,6778,6836,0.572413793103360,-0.216949152541877,0.579310344827519,-0.223728813558839,0.579310344827519,-0.210169491524915,0.586206896551678,-0.216949152541877,-0.013559322033924,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033924,0.000000000000000,2 +6719,6777,6779,6837,0.572413793103360,-0.203389830507945,0.579310344827519,-0.210169491524915,0.579310344827519,-0.196610169490975,0.586206896551678,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033940,0.000000000000000,2 +6720,6778,6780,6838,0.572413793103360,-0.189830508474016,0.579310344827519,-0.196610169490975,0.579310344827519,-0.183050847457058,0.586206896551678,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033917,0.000000000000000,2 +6721,6779,6781,6839,0.572413793103360,-0.176271186440084,0.579310344827519,-0.183050847457058,0.579310344827519,-0.169491525423110,0.586206896551678,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033947,0.000000000000000,2 +6722,6780,6782,6840,0.572413793103360,-0.162711864406145,0.579310344827519,-0.169491525423110,0.579310344827519,-0.155932203389179,0.586206896551678,-0.162711864406145,-0.013559322033931,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033931,0.000000000000000,2 +6723,6781,6783,6841,0.572413793103360,-0.149152542372213,0.579310344827519,-0.155932203389179,0.579310344827519,-0.142372881355246,0.586206896551678,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033933,0.000000000000000,2 +6724,6782,6784,6842,0.572413793103360,-0.135593220338274,0.579310344827519,-0.142372881355246,0.579310344827519,-0.128813559321301,0.586206896551678,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033945,0.000000000000000,2 +6725,6783,6785,6843,0.572413793103360,-0.122033898304341,0.579310344827519,-0.128813559321301,0.579310344827519,-0.115254237287382,0.586206896551678,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033919,0.000000000000000,2 +6726,6784,6786,6844,0.572413793103360,-0.108474576270409,0.579310344827519,-0.115254237287382,0.579310344827519,-0.101694915253436,0.586206896551678,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033946,0.000000000000000,2 +6727,6785,6787,6845,0.572413793103360,-0.094915254236471,0.579310344827519,-0.101694915253436,0.579310344827519,-0.088135593219506,0.586206896551678,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033930,-0.000000000000000,2 +6728,6786,6788,6846,0.572413793103360,-0.081355932202535,0.579310344827519,-0.088135593219506,0.579310344827519,-0.074576271185564,0.586206896551678,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033941,0.000000000000000,2 +6729,6787,6789,6847,0.572413793103360,-0.067796610168599,0.579310344827519,-0.074576271185564,0.579310344827519,-0.061016949151634,0.586206896551678,-0.067796610168599,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033930,0.000000000000000,2 +6730,6788,6790,6848,0.572413793103360,-0.054237288134667,0.579310344827519,-0.061016949151634,0.579310344827519,-0.047457627117699,0.586206896551678,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033935,-0.000000000000000,2 +6731,6789,6791,6849,0.572413793103360,-0.040677966100731,0.579310344827519,-0.047457627117699,0.579310344827519,-0.033898305083763,0.586206896551678,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033937,0.000000000000000,2 +6732,6790,6792,6850,0.572413793103360,-0.027118644066798,0.579310344827519,-0.033898305083763,0.579310344827519,-0.020338983049832,0.586206896551678,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033930,0.000000000000000,2 +6733,6791,6793,6851,0.572413793103360,-0.013559322032862,0.579310344827519,-0.020338983049832,0.579310344827519,-0.006779661015891,0.586206896551678,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033941,-0.000000000000000,2 +6734,6792,6794,6852,0.572413793103360,0.000000000001056,0.579310344827519,-0.006779661015891,0.579310344827519,0.006779661018004,0.586206896551678,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033895,0.000000000000000,2 +6735,6793,6795,6853,0.572413793103360,0.013559322034933,0.579310344827519,0.006779661018004,0.579310344827519,0.020338983051863,0.586206896551678,0.013559322034933,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6736,6794,6796,6854,0.572413793103360,0.027118644068793,0.579310344827519,0.020338983051863,0.579310344827519,0.033898305085723,0.586206896551678,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6737,6795,6797,6855,0.572413793103360,0.040677966102653,0.579310344827519,0.033898305085723,0.579310344827519,0.047457627119583,0.586206896551678,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6738,6796,6798,6856,0.572413793103360,0.054237288136513,0.579310344827519,0.047457627119583,0.579310344827519,0.061016949153442,0.586206896551678,0.054237288136513,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6739,6797,6799,6857,0.572413793103360,0.067796610170372,0.579310344827519,0.061016949153442,0.579310344827519,0.074576271187302,0.586206896551678,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6740,6798,6800,6858,0.572413793103360,0.081355932204232,0.579310344827519,0.074576271187302,0.579310344827519,0.088135593221162,0.586206896551678,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6741,6799,6801,6859,0.572413793103360,0.094915254238085,0.579310344827519,0.088135593221162,0.579310344827519,0.101694915255008,0.586206896551678,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033846,0.000000000000000,2 +6742,6800,6802,6860,0.572413793103360,0.108474576271933,0.579310344827519,0.101694915255008,0.579310344827519,0.115254237288859,0.586206896551678,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033852,0.000000000000000,2 +6743,6801,6803,6861,0.572413793103360,0.122033898305789,0.579310344827519,0.115254237288859,0.579310344827519,0.128813559322719,0.586206896551678,0.122033898305789,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6744,6802,6804,6862,0.572413793103360,0.135593220339649,0.579310344827519,0.128813559322719,0.579310344827519,0.142372881356579,0.586206896551678,0.135593220339649,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6745,6803,6805,6863,0.572413793103360,0.149152542373509,0.579310344827519,0.142372881356579,0.579310344827519,0.155932203390438,0.586206896551678,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6746,6804,6806,6864,0.572413793103360,0.162711864407368,0.579310344827519,0.155932203390438,0.579310344827519,0.169491525424298,0.586206896551678,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6747,6805,6807,6865,0.572413793103360,0.176271186441228,0.579310344827519,0.169491525424298,0.579310344827519,0.183050847458158,0.586206896551678,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6748,6806,6808,6866,0.572413793103360,0.189830508475088,0.579310344827519,0.183050847458158,0.579310344827519,0.196610169492018,0.586206896551678,0.189830508475088,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6749,6807,6809,6867,0.572413793103360,0.203389830508947,0.579310344827519,0.196610169492018,0.579310344827519,0.210169491525877,0.586206896551678,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6750,6808,6810,6868,0.572413793103360,0.216949152542807,0.579310344827519,0.210169491525877,0.579310344827519,0.223728813559737,0.586206896551678,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6751,6809,6811,6869,0.572413793103360,0.230508474576667,0.579310344827519,0.223728813559737,0.579310344827519,0.237288135593597,0.586206896551678,0.230508474576667,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6752,6810,6812,6870,0.572413793103360,0.244067796610527,0.579310344827519,0.237288135593597,0.579310344827519,0.250847457627456,0.586206896551678,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6753,6811,6813,6871,0.572413793103360,0.257627118644386,0.579310344827519,0.250847457627456,0.579310344827519,0.264406779661316,0.586206896551678,0.257627118644386,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6754,6812,6814,6872,0.572413793103360,0.271186440678246,0.579310344827519,0.264406779661316,0.579310344827519,0.277966101695176,0.586206896551678,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6755,6813,6815,6873,0.572413793103360,0.284745762712106,0.579310344827519,0.277966101695176,0.579310344827519,0.291525423729036,0.586206896551678,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6756,6814,6816,6874,0.572413793103360,0.298305084745975,0.579310344827519,0.291525423729036,0.579310344827519,0.305084745762915,0.586206896551678,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033879,0.000000000000000,2 +6757,6815,6817,6875,0.572413793103360,0.311864406779851,0.579310344827519,0.305084745762915,0.579310344827519,0.318644067796787,0.586206896551678,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033872,-0.000000000000000,2 +6758,6816,6818,6876,0.572413793103360,0.325423728813729,0.579310344827519,0.318644067796787,0.579310344827519,0.332203389830670,0.586206896551678,0.325423728813729,-0.013559322033883,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033883,0.000000000000000,2 +6759,6817,6819,6877,0.572413793103360,0.338983050847605,0.579310344827519,0.332203389830670,0.579310344827519,0.345762711864539,0.586206896551678,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033869,0.000000000000000,2 +6760,6818,6820,6878,0.572413793103360,0.352542372881469,0.579310344827519,0.345762711864539,0.579310344827519,0.359322033898399,0.586206896551678,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,-0.000000000000000,2 +6761,6819,6821,6879,0.572413793103360,0.366101694915329,0.579310344827519,0.359322033898399,0.579310344827519,0.372881355932259,0.586206896551678,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6762,6820,6822,6880,0.572413793103360,0.379661016949189,0.579310344827519,0.372881355932259,0.579310344827519,0.386440677966119,0.586206896551678,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 +6763,6821,6881,7260,0.572413793103360,0.393220338983059,0.579310344827519,0.386440677966119,0.586206896551678,0.393220338983059,0.579310344827519,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448318,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448318,2 +998,5170,6764,6824,0.600000000000000,-0.393220338983034,0.593103448275839,-0.400000000000000,0.586206896551678,-0.393220338983034,0.593103448275839,-0.386440677966068,0.013559322033932,0.000000000000000,0.000000000000000,-0.013793103448322,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448322,2 +999,6765,6823,6825,0.600000000000000,-0.379661016949095,0.586206896551678,-0.379661016949095,0.593103448275839,-0.386440677966068,0.593103448275839,-0.372881355932122,0.013559322033946,-0.000000000000000,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1000,6766,6824,6826,0.600000000000000,-0.366101694915163,0.586206896551678,-0.366101694915163,0.593103448275839,-0.372881355932122,0.593103448275839,-0.359322033898204,0.013559322033918,-0.000000000000000,-0.013559322033918,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1001,6767,6825,6827,0.600000000000000,-0.352542372881227,0.586206896551678,-0.352542372881227,0.593103448275839,-0.359322033898204,0.593103448275839,-0.345762711864250,0.013559322033954,-0.000000000000000,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1002,6768,6826,6828,0.600000000000000,-0.338983050847293,0.586206896551678,-0.338983050847293,0.593103448275839,-0.345762711864250,0.593103448275839,-0.332203389830336,0.013559322033914,-0.000000000000000,-0.013559322033914,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1003,6769,6827,6829,0.600000000000000,-0.325423728813361,0.586206896551678,-0.325423728813361,0.593103448275839,-0.332203389830336,0.593103448275839,-0.318644067796385,0.013559322033950,-0.000000000000000,-0.013559322033950,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1004,6770,6828,6830,0.600000000000000,-0.311864406779421,0.586206896551678,-0.311864406779421,0.593103448275839,-0.318644067796385,0.593103448275839,-0.305084745762457,0.013559322033928,-0.000000000000000,-0.013559322033928,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1005,6771,6829,6831,0.600000000000000,-0.298305084745489,0.586206896551678,-0.298305084745489,0.593103448275839,-0.305084745762457,0.593103448275839,-0.291525423728521,0.013559322033936,-0.000000000000000,-0.013559322033936,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +1006,6772,6830,6832,0.600000000000000,-0.284745762711550,0.586206896551678,-0.284745762711550,0.593103448275839,-0.291525423728521,0.593103448275839,-0.277966101694579,0.013559322033942,-0.000000000000000,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1007,6773,6831,6833,0.600000000000000,-0.271186440677618,0.586206896551678,-0.271186440677618,0.593103448275839,-0.277966101694579,0.593103448275839,-0.264406779660657,0.013559322033922,-0.000000000000000,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1008,6774,6832,6834,0.600000000000000,-0.257627118643680,0.586206896551678,-0.257627118643680,0.593103448275839,-0.264406779660657,0.593103448275839,-0.250847457626703,0.013559322033954,-0.000000000000000,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1009,6775,6833,6835,0.600000000000000,-0.244067796609748,0.586206896551678,-0.244067796609748,0.593103448275839,-0.250847457626703,0.593103448275839,-0.237288135592793,0.013559322033910,-0.000000000000000,-0.013559322033910,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1010,6776,6834,6836,0.600000000000000,-0.230508474575816,0.586206896551678,-0.230508474575816,0.593103448275839,-0.237288135592793,0.593103448275839,-0.223728813558839,0.013559322033954,-0.000000000000000,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +1011,6777,6835,6837,0.600000000000000,-0.216949152541877,0.586206896551678,-0.216949152541877,0.593103448275839,-0.223728813558839,0.593103448275839,-0.210169491524915,0.013559322033924,-0.000000000000000,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1012,6778,6836,6838,0.600000000000000,-0.203389830507945,0.586206896551678,-0.203389830507945,0.593103448275839,-0.210169491524915,0.593103448275839,-0.196610169490975,0.013559322033940,-0.000000000000000,-0.013559322033940,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +1013,6779,6837,6839,0.600000000000000,-0.189830508474016,0.586206896551678,-0.189830508474016,0.593103448275839,-0.196610169490975,0.593103448275839,-0.183050847457058,0.013559322033917,-0.000000000000000,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1014,6780,6838,6840,0.600000000000000,-0.176271186440084,0.586206896551678,-0.176271186440084,0.593103448275839,-0.183050847457058,0.593103448275839,-0.169491525423110,0.013559322033947,-0.000000000000000,-0.013559322033947,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1015,6781,6839,6841,0.600000000000000,-0.162711864406145,0.586206896551678,-0.162711864406145,0.593103448275839,-0.169491525423110,0.593103448275839,-0.155932203389179,0.013559322033931,-0.000000000000000,-0.013559322033931,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1016,6782,6840,6842,0.600000000000000,-0.149152542372213,0.586206896551678,-0.149152542372213,0.593103448275839,-0.155932203389179,0.593103448275839,-0.142372881355246,0.013559322033933,-0.000000000000000,-0.013559322033933,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1017,6783,6841,6843,0.600000000000000,-0.135593220338273,0.586206896551678,-0.135593220338274,0.593103448275839,-0.142372881355246,0.593103448275839,-0.128813559321301,0.013559322033945,-0.000000000000000,-0.013559322033945,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1018,6784,6842,6844,0.600000000000000,-0.122033898304341,0.586206896551678,-0.122033898304341,0.593103448275839,-0.128813559321301,0.593103448275839,-0.115254237287382,0.013559322033919,-0.000000000000000,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1019,6785,6843,6845,0.600000000000000,-0.108474576270409,0.586206896551678,-0.108474576270409,0.593103448275839,-0.115254237287382,0.593103448275839,-0.101694915253436,0.013559322033946,-0.000000000000000,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1020,6786,6844,6846,0.600000000000000,-0.094915254236471,0.586206896551678,-0.094915254236471,0.593103448275839,-0.101694915253436,0.593103448275839,-0.088135593219506,0.013559322033930,-0.000000000000000,-0.013559322033930,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1021,6787,6845,6847,0.600000000000000,-0.081355932202535,0.586206896551678,-0.081355932202535,0.593103448275839,-0.088135593219506,0.593103448275839,-0.074576271185564,0.013559322033941,-0.000000000000000,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1022,6788,6846,6848,0.600000000000000,-0.067796610168599,0.586206896551678,-0.067796610168599,0.593103448275839,-0.074576271185564,0.593103448275839,-0.061016949151634,0.013559322033930,-0.000000000000000,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +1023,6789,6847,6849,0.600000000000000,-0.054237288134667,0.586206896551678,-0.054237288134667,0.593103448275839,-0.061016949151634,0.593103448275839,-0.047457627117699,0.013559322033935,-0.000000000000000,-0.013559322033935,0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1024,6790,6848,6850,0.600000000000000,-0.040677966100731,0.586206896551678,-0.040677966100731,0.593103448275839,-0.047457627117699,0.593103448275839,-0.033898305083763,0.013559322033937,-0.000000000000000,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +1025,6791,6849,6851,0.600000000000000,-0.027118644066798,0.586206896551678,-0.027118644066798,0.593103448275839,-0.033898305083763,0.593103448275839,-0.020338983049832,0.013559322033930,-0.000000000000000,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +1026,6792,6850,6852,0.600000000000000,-0.013559322032862,0.586206896551678,-0.013559322032862,0.593103448275839,-0.020338983049832,0.593103448275839,-0.006779661015891,0.013559322033941,-0.000000000000000,-0.013559322033941,0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1027,6793,6851,6853,0.600000000000000,0.000000000001056,0.586206896551678,0.000000000001056,0.593103448275839,-0.006779661015891,0.593103448275839,0.006779661018004,0.013559322033895,-0.000000000000000,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +1028,6794,6852,6854,0.600000000000000,0.013559322034933,0.586206896551678,0.013559322034933,0.593103448275839,0.006779661018004,0.593103448275839,0.020338983051863,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1029,6795,6853,6855,0.600000000000000,0.027118644068793,0.586206896551678,0.027118644068793,0.593103448275839,0.020338983051863,0.593103448275839,0.033898305085723,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1030,6796,6854,6856,0.600000000000000,0.040677966102653,0.586206896551678,0.040677966102653,0.593103448275839,0.033898305085723,0.593103448275839,0.047457627119583,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1031,6797,6855,6857,0.600000000000000,0.054237288136513,0.586206896551678,0.054237288136513,0.593103448275839,0.047457627119583,0.593103448275839,0.061016949153442,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1032,6798,6856,6858,0.600000000000000,0.067796610170372,0.586206896551678,0.067796610170372,0.593103448275839,0.061016949153442,0.593103448275839,0.074576271187302,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +1033,6799,6857,6859,0.600000000000000,0.081355932204232,0.586206896551678,0.081355932204232,0.593103448275839,0.074576271187302,0.593103448275839,0.088135593221162,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +1034,6800,6858,6860,0.600000000000000,0.094915254238085,0.586206896551678,0.094915254238085,0.593103448275839,0.088135593221162,0.593103448275839,0.101694915255008,0.013559322033846,-0.000000000000000,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1035,6801,6859,6861,0.600000000000000,0.108474576271933,0.586206896551678,0.108474576271933,0.593103448275839,0.101694915255008,0.593103448275839,0.115254237288859,0.013559322033852,-0.000000000000000,-0.013559322033852,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1036,6802,6860,6862,0.600000000000000,0.122033898305789,0.586206896551678,0.122033898305789,0.593103448275839,0.115254237288859,0.593103448275839,0.128813559322719,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +1037,6803,6861,6863,0.600000000000000,0.135593220339649,0.586206896551678,0.135593220339649,0.593103448275839,0.128813559322719,0.593103448275839,0.142372881356579,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1038,6804,6862,6864,0.600000000000000,0.149152542373509,0.586206896551678,0.149152542373509,0.593103448275839,0.142372881356579,0.593103448275839,0.155932203390438,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1039,6805,6863,6865,0.600000000000000,0.162711864407368,0.586206896551678,0.162711864407368,0.593103448275839,0.155932203390438,0.593103448275839,0.169491525424298,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1040,6806,6864,6866,0.600000000000000,0.176271186441228,0.586206896551678,0.176271186441228,0.593103448275839,0.169491525424298,0.593103448275839,0.183050847458158,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1041,6807,6865,6867,0.600000000000000,0.189830508475088,0.586206896551678,0.189830508475088,0.593103448275839,0.183050847458158,0.593103448275839,0.196610169492018,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1042,6808,6866,6868,0.600000000000000,0.203389830508947,0.586206896551678,0.203389830508947,0.593103448275839,0.196610169492018,0.593103448275839,0.210169491525877,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1043,6809,6867,6869,0.600000000000000,0.216949152542807,0.586206896551678,0.216949152542807,0.593103448275839,0.210169491525877,0.593103448275839,0.223728813559737,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1044,6810,6868,6870,0.600000000000000,0.230508474576667,0.586206896551678,0.230508474576667,0.593103448275839,0.223728813559737,0.593103448275839,0.237288135593597,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +1045,6811,6869,6871,0.600000000000000,0.244067796610526,0.586206896551678,0.244067796610527,0.593103448275839,0.237288135593597,0.593103448275839,0.250847457627456,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1046,6812,6870,6872,0.600000000000000,0.257627118644386,0.586206896551678,0.257627118644386,0.593103448275839,0.250847457627456,0.593103448275839,0.264406779661316,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1047,6813,6871,6873,0.600000000000000,0.271186440678246,0.586206896551678,0.271186440678246,0.593103448275839,0.264406779661316,0.593103448275839,0.277966101695176,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1048,6814,6872,6874,0.600000000000000,0.284745762712106,0.586206896551678,0.284745762712106,0.593103448275839,0.277966101695176,0.593103448275839,0.291525423729036,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 +1049,6815,6873,6875,0.600000000000000,0.298305084745975,0.586206896551678,0.298305084745975,0.593103448275839,0.291525423729036,0.593103448275839,0.305084745762915,0.013559322033879,-0.000000000000000,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1050,6816,6874,6876,0.600000000000000,0.311864406779851,0.586206896551678,0.311864406779851,0.593103448275839,0.305084745762915,0.593103448275839,0.318644067796787,0.013559322033872,-0.000000000000000,-0.013559322033872,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1051,6817,6875,6877,0.600000000000000,0.325423728813729,0.586206896551678,0.325423728813729,0.593103448275839,0.318644067796787,0.593103448275839,0.332203389830670,0.013559322033883,-0.000000000000000,-0.013559322033883,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1052,6818,6876,6878,0.600000000000000,0.338983050847605,0.586206896551678,0.338983050847605,0.593103448275839,0.332203389830670,0.593103448275839,0.345762711864539,0.013559322033869,-0.000000000000000,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1053,6819,6877,6879,0.600000000000000,0.352542372881469,0.586206896551678,0.352542372881469,0.593103448275839,0.345762711864539,0.593103448275839,0.359322033898399,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1054,6820,6878,6880,0.600000000000000,0.366101694915329,0.586206896551678,0.366101694915329,0.593103448275839,0.359322033898399,0.593103448275839,0.372881355932259,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1055,6821,6879,6881,0.600000000000000,0.379661016949189,0.586206896551678,0.379661016949189,0.593103448275839,0.372881355932259,0.593103448275839,0.386440677966119,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1056,6822,6880,7274,0.600000000000000,0.393220338983059,0.586206896551678,0.393220338983059,0.593103448275839,0.386440677966119,0.593103448275839,0.400000000000000,0.013559322033881,-0.000000000000000,-0.013559322033881,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +5229,6883,6896,7680,0.206896551724127,0.400000000000000,0.206896551724127,0.414285714285756,0.213793103448254,0.407142857142878,0.200000000000000,0.407142857142878,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285756,0.000000000000000,-0.014285714285756,-0.000000000000000,2 +6882,6884,6897,7681,0.206896551724127,0.414285714285756,0.206896551724127,0.428571428571509,0.213793103448254,0.421428571428632,0.200000000000000,0.421428571428633,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285753,-0.000000000000000,-0.014285714285753,0.000000000000000,2 +6883,6885,6898,7682,0.206896551724127,0.428571428571509,0.206896551724127,0.442857142857270,0.213793103448254,0.435714285714389,0.200000000000000,0.435714285714389,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,-0.014285714285761,0.000000000000000,2 +6884,6886,6899,7683,0.206896551724127,0.442857142857270,0.206896551724127,0.457142857143034,0.213793103448254,0.450000000000152,0.200000000000000,0.450000000000152,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285764,0.000000000000000,-0.014285714285764,0.000000000000000,2 +6885,6887,6900,7684,0.206896551724127,0.457142857143034,0.206896551724127,0.471428571428794,0.213793103448254,0.464285714285914,0.200000000000000,0.464285714285914,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,-0.014285714285761,0.000000000000000,2 +6886,6888,6901,7685,0.206896551724127,0.471428571428794,0.206896551724127,0.485714285714549,0.213793103448254,0.478571428571672,0.200000000000000,0.478571428571672,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285755,0.000000000000000,-0.014285714285754,0.000000000000000,2 +6887,6889,6902,7686,0.206896551724127,0.485714285714549,0.206896551724127,0.500000000000293,0.213793103448254,0.492857142857421,0.200000000000000,0.492857142857421,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285744,0.000000000000000,-0.014285714285744,0.000000000000000,2 +6888,6890,6903,7687,0.206896551724127,0.500000000000293,0.206896551724127,0.514285714285912,0.213793103448254,0.507142857143102,0.200000000000000,0.507142857143103,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285620,0.000000000000000,-0.014285714285620,0.000000000000000,2 +6889,6891,6904,7688,0.206896551724127,0.514285714285912,0.206896551724127,0.528571428571506,0.213793103448254,0.521428571428709,0.200000000000000,0.521428571428709,-0.000000000000000,-0.013793103448254,0.000000000000001,0.013793103448254,0.014285714285593,0.000000000000000,-0.014285714285593,0.000000000000000,2 +6890,6892,6905,7689,0.206896551724127,0.528571428571506,0.206896551724127,0.542857142857183,0.213793103448254,0.535714285714344,0.200000000000000,0.535714285714345,-0.000000000000001,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,-0.014285714285677,0.000000000000000,2 +6891,6893,6906,7690,0.206896551724127,0.542857142857183,0.206896551724127,0.557142857142860,0.213793103448254,0.550000000000021,0.200000000000000,0.550000000000022,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,-0.000000000000000,-0.014285714285677,0.000000000000000,2 +6892,6894,6907,7691,0.206896551724127,0.557142857142860,0.206896551724127,0.571428571428537,0.213793103448254,0.564285714285699,0.200000000000000,0.564285714285699,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,-0.014285714285677,0.000000000000000,2 +6893,6895,6908,7692,0.206896551724127,0.571428571428537,0.206896551724127,0.585714285714255,0.213793103448254,0.578571428571396,0.200000000000000,0.578571428571396,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285717,0.000000000000000,-0.014285714285717,0.000000000000000,2 +1314,6894,6909,7693,0.206896551724127,0.600000000000000,0.206896551724127,0.585714285714255,0.213793103448254,0.592857142857127,0.200000000000000,0.592857142857127,0.000000000000000,0.013793103448254,-0.000000000000000,-0.013793103448254,0.014285714285745,-0.000000000000000,-0.014285714285745,0.000000000000000,2 +5288,6882,6897,6910,0.220689655172375,0.400000000000000,0.213793103448254,0.407142857142878,0.220689655172375,0.414285714285756,0.227586206896496,0.407142857142878,-0.000000000000000,-0.013793103448243,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448243,0.014285714285756,0.000000000000000,2 +6883,6896,6898,6911,0.213793103448254,0.421428571428632,0.220689655172375,0.414285714285756,0.220689655172375,0.428571428571509,0.227586206896496,0.421428571428632,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285753,0.000000000000000,2 +6884,6897,6899,6912,0.213793103448254,0.435714285714389,0.220689655172375,0.428571428571509,0.220689655172375,0.442857142857270,0.227586206896496,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285761,0.000000000000000,2 +6885,6898,6900,6913,0.213793103448254,0.450000000000152,0.220689655172375,0.442857142857270,0.220689655172375,0.457142857143034,0.227586206896496,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.014285714285764,0.000000000000000,2 +6886,6899,6901,6914,0.213793103448254,0.464285714285914,0.220689655172375,0.457142857143034,0.220689655172375,0.471428571428794,0.227586206896496,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285761,0.000000000000000,2 +6887,6900,6902,6915,0.213793103448254,0.478571428571672,0.220689655172375,0.471428571428794,0.220689655172375,0.485714285714549,0.227586206896496,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285755,0.000000000000000,2 +6888,6901,6903,6916,0.213793103448254,0.492857142857421,0.220689655172375,0.485714285714549,0.220689655172375,0.500000000000292,0.227586206896496,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285744,-0.000000000000000,2 +6889,6902,6904,6917,0.213793103448254,0.507142857143102,0.220689655172375,0.500000000000292,0.220689655172375,0.514285714285912,0.227586206896496,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285620,0.000000000000000,2 +6890,6903,6905,6918,0.213793103448254,0.521428571428709,0.220689655172375,0.514285714285912,0.220689655172375,0.528571428571506,0.227586206896496,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.014285714285594,0.000000000000000,2 +6891,6904,6906,6919,0.213793103448254,0.535714285714344,0.220689655172375,0.528571428571506,0.220689655172375,0.542857142857183,0.227586206896496,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.014285714285677,0.000000000000000,2 +6892,6905,6907,6920,0.213793103448254,0.550000000000021,0.220689655172375,0.542857142857183,0.220689655172375,0.557142857142860,0.227586206896496,0.550000000000021,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285677,0.000000000000000,2 +6893,6906,6908,6921,0.213793103448254,0.564285714285699,0.220689655172375,0.557142857142860,0.220689655172375,0.571428571428537,0.227586206896496,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285677,-0.000000000000000,2 +6894,6907,6909,6922,0.213793103448254,0.578571428571396,0.220689655172375,0.571428571428537,0.220689655172375,0.585714285714255,0.227586206896496,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285717,0.000000000000000,2 +1320,6895,6908,6923,0.220689655172375,0.600000000000000,0.213793103448254,0.592857142857127,0.220689655172375,0.585714285714255,0.227586206896496,0.592857142857127,0.000000000000000,0.013793103448243,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448243,0.014285714285745,-0.000000000000000,2 +5347,6896,6911,6924,0.234482758620623,0.400000000000000,0.227586206896496,0.407142857142878,0.234482758620623,0.414285714285756,0.241379310344750,0.407142857142878,-0.000000000000000,-0.013793103448254,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448254,0.014285714285756,0.000000000000000,2 +6897,6910,6912,6925,0.227586206896496,0.421428571428632,0.234482758620623,0.414285714285756,0.234482758620623,0.428571428571509,0.241379310344750,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285753,0.000000000000000,2 +6898,6911,6913,6926,0.227586206896496,0.435714285714389,0.234482758620623,0.428571428571509,0.234482758620623,0.442857142857270,0.241379310344750,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285761,-0.000000000000000,2 +6899,6912,6914,6927,0.227586206896496,0.450000000000152,0.234482758620623,0.442857142857270,0.234482758620623,0.457142857143034,0.241379310344750,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285764,0.000000000000000,2 +6900,6913,6915,6928,0.227586206896496,0.464285714285914,0.234482758620623,0.457142857143034,0.234482758620623,0.471428571428794,0.241379310344750,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 +6901,6914,6916,6929,0.227586206896496,0.478571428571671,0.234482758620623,0.471428571428794,0.234482758620623,0.485714285714549,0.241379310344750,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285755,0.000000000000000,2 +6902,6915,6917,6930,0.227586206896496,0.492857142857421,0.234482758620623,0.485714285714549,0.234482758620623,0.500000000000292,0.241379310344750,0.492857142857421,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285744,0.000000000000000,2 +6903,6916,6918,6931,0.227586206896496,0.507142857143102,0.234482758620623,0.500000000000292,0.234482758620623,0.514285714285912,0.241379310344750,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285620,0.000000000000000,2 +6904,6917,6919,6932,0.227586206896496,0.521428571428709,0.234482758620623,0.514285714285912,0.234482758620623,0.528571428571506,0.241379310344750,0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285593,0.000000000000000,2 +6905,6918,6920,6933,0.227586206896496,0.535714285714344,0.234482758620623,0.528571428571506,0.234482758620623,0.542857142857183,0.241379310344750,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 +6906,6919,6921,6934,0.227586206896496,0.550000000000021,0.234482758620623,0.542857142857183,0.234482758620623,0.557142857142860,0.241379310344750,0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 +6907,6920,6922,6935,0.227586206896496,0.564285714285699,0.234482758620623,0.557142857142860,0.234482758620623,0.571428571428537,0.241379310344750,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 +6908,6921,6923,6936,0.227586206896496,0.578571428571396,0.234482758620623,0.571428571428537,0.234482758620623,0.585714285714254,0.241379310344750,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285717,0.000000000000000,2 +1326,6909,6922,6937,0.234482758620623,0.600000000000000,0.227586206896496,0.592857142857127,0.234482758620623,0.585714285714254,0.241379310344750,0.592857142857127,0.000000000000000,0.013793103448254,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448254,0.014285714285746,-0.000000000000000,2 +5406,6910,6925,6938,0.248275862068872,0.400000000000000,0.241379310344750,0.407142857142878,0.248275862068872,0.414285714285756,0.255172413792995,0.407142857142878,-0.000000000000000,-0.013793103448245,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448245,0.014285714285756,0.000000000000000,2 +6911,6924,6926,6939,0.241379310344750,0.421428571428632,0.248275862068872,0.414285714285756,0.248275862068872,0.428571428571509,0.255172413792995,0.421428571428632,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285753,0.000000000000000,2 +6912,6925,6927,6940,0.241379310344750,0.435714285714389,0.248275862068872,0.428571428571509,0.248275862068872,0.442857142857270,0.255172413792995,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285761,-0.000000000000000,2 +6913,6926,6928,6941,0.241379310344750,0.450000000000152,0.248275862068872,0.442857142857270,0.248275862068872,0.457142857143034,0.255172413792995,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285764,0.000000000000000,2 +6914,6927,6929,6942,0.241379310344750,0.464285714285914,0.248275862068872,0.457142857143034,0.248275862068872,0.471428571428794,0.255172413792995,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285761,0.000000000000000,2 +6915,6928,6930,6943,0.241379310344750,0.478571428571672,0.248275862068872,0.471428571428794,0.248275862068872,0.485714285714549,0.255172413792995,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285755,0.000000000000000,2 +6916,6929,6931,6944,0.241379310344750,0.492857142857421,0.248275862068872,0.485714285714549,0.248275862068872,0.500000000000292,0.255172413792995,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285744,0.000000000000000,2 +6917,6930,6932,6945,0.241379310344750,0.507142857143102,0.248275862068872,0.500000000000292,0.248275862068872,0.514285714285912,0.255172413792995,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285620,0.000000000000000,2 +6918,6931,6933,6946,0.241379310344750,0.521428571428709,0.248275862068872,0.514285714285912,0.248275862068872,0.528571428571506,0.255172413792995,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285593,0.000000000000000,2 +6919,6932,6934,6947,0.241379310344750,0.535714285714344,0.248275862068872,0.528571428571506,0.248275862068872,0.542857142857183,0.255172413792995,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285677,0.000000000000000,2 +6920,6933,6935,6948,0.241379310344750,0.550000000000022,0.248275862068872,0.542857142857183,0.248275862068872,0.557142857142860,0.255172413792995,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285677,0.000000000000000,2 +6921,6934,6936,6949,0.241379310344750,0.564285714285699,0.248275862068872,0.557142857142860,0.248275862068872,0.571428571428537,0.255172413792995,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285677,0.000000000000000,2 +6922,6935,6937,6950,0.241379310344750,0.578571428571396,0.248275862068872,0.571428571428537,0.248275862068872,0.585714285714254,0.255172413792995,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.014285714285717,0.000000000000000,2 +1332,6923,6936,6951,0.248275862068872,0.600000000000000,0.241379310344750,0.592857142857127,0.248275862068872,0.585714285714254,0.255172413792995,0.592857142857127,0.000000000000000,0.013793103448245,-0.014285714285746,0.000000000000000,0.000000000000000,-0.013793103448245,0.014285714285745,-0.000000000000000,2 +5465,6924,6939,6952,0.262068965517112,0.400000000000000,0.255172413792995,0.407142857142878,0.262068965517112,0.414285714285756,0.268965517241230,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 +6925,6938,6940,6953,0.255172413792995,0.421428571428632,0.262068965517112,0.414285714285756,0.262068965517112,0.428571428571509,0.268965517241230,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +6926,6939,6941,6954,0.255172413792995,0.435714285714389,0.262068965517112,0.428571428571509,0.262068965517112,0.442857142857270,0.268965517241230,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +6927,6940,6942,6955,0.255172413792995,0.450000000000152,0.262068965517112,0.442857142857270,0.262068965517112,0.457142857143034,0.268965517241230,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +6928,6941,6943,6956,0.255172413792995,0.464285714285914,0.262068965517112,0.457142857143034,0.262068965517112,0.471428571428794,0.268965517241230,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285760,0.000000000000000,2 +6929,6942,6944,6957,0.255172413792995,0.478571428571671,0.262068965517112,0.471428571428794,0.262068965517112,0.485714285714549,0.268965517241230,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 +6930,6943,6945,6958,0.255172413792995,0.492857142857421,0.262068965517112,0.485714285714549,0.262068965517112,0.500000000000292,0.268965517241230,0.492857142857420,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285743,0.000000000000000,2 +6931,6944,6946,6959,0.255172413792995,0.507142857143102,0.262068965517112,0.500000000000292,0.262068965517112,0.514285714285912,0.268965517241230,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +6932,6945,6947,6960,0.255172413792995,0.521428571428709,0.262068965517112,0.514285714285912,0.262068965517112,0.528571428571506,0.268965517241230,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 +6933,6946,6948,6961,0.255172413792995,0.535714285714344,0.262068965517112,0.528571428571506,0.262068965517112,0.542857142857183,0.268965517241230,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6934,6947,6949,6962,0.255172413792995,0.550000000000021,0.262068965517112,0.542857142857183,0.262068965517112,0.557142857142860,0.268965517241230,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6935,6948,6950,6963,0.255172413792995,0.564285714285699,0.262068965517112,0.557142857142860,0.262068965517112,0.571428571428537,0.268965517241230,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6936,6949,6951,6964,0.255172413792995,0.578571428571396,0.262068965517112,0.571428571428537,0.262068965517112,0.585714285714255,0.268965517241230,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +1338,6937,6950,6965,0.262068965517112,0.600000000000000,0.255172413792995,0.592857142857127,0.262068965517112,0.585714285714255,0.268965517241230,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 +5524,6938,6953,6966,0.275862068965347,0.400000000000000,0.268965517241230,0.407142857142878,0.275862068965347,0.414285714285756,0.282758620689465,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 +6939,6952,6954,6967,0.268965517241230,0.421428571428632,0.275862068965347,0.414285714285756,0.275862068965347,0.428571428571509,0.282758620689465,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +6940,6953,6955,6968,0.268965517241230,0.435714285714389,0.275862068965347,0.428571428571509,0.275862068965347,0.442857142857270,0.282758620689465,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +6941,6954,6956,6969,0.268965517241230,0.450000000000152,0.275862068965347,0.442857142857270,0.275862068965347,0.457142857143034,0.282758620689465,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +6942,6955,6957,6970,0.268965517241230,0.464285714285914,0.275862068965347,0.457142857143034,0.275862068965347,0.471428571428794,0.282758620689465,0.464285714285914,-0.014285714285760,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +6943,6956,6958,6971,0.268965517241230,0.478571428571671,0.275862068965347,0.471428571428794,0.275862068965347,0.485714285714549,0.282758620689465,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 +6944,6957,6959,6972,0.268965517241230,0.492857142857420,0.275862068965347,0.485714285714549,0.275862068965347,0.500000000000292,0.282758620689465,0.492857142857421,-0.014285714285743,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 +6945,6958,6960,6973,0.268965517241230,0.507142857143102,0.275862068965347,0.500000000000292,0.275862068965347,0.514285714285912,0.282758620689465,0.507142857143102,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +6946,6959,6961,6974,0.268965517241230,0.521428571428709,0.275862068965347,0.514285714285912,0.275862068965347,0.528571428571506,0.282758620689465,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 +6947,6960,6962,6975,0.268965517241230,0.535714285714344,0.275862068965347,0.528571428571506,0.275862068965347,0.542857142857183,0.282758620689465,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6948,6961,6963,6976,0.268965517241230,0.550000000000021,0.275862068965347,0.542857142857183,0.275862068965347,0.557142857142860,0.282758620689465,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6949,6962,6964,6977,0.268965517241230,0.564285714285699,0.275862068965347,0.557142857142860,0.275862068965347,0.571428571428537,0.282758620689465,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6950,6963,6965,6978,0.268965517241230,0.578571428571396,0.275862068965347,0.571428571428537,0.275862068965347,0.585714285714255,0.282758620689465,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285718,0.000000000000000,2 +1344,6951,6964,6979,0.275862068965347,0.600000000000000,0.268965517241230,0.592857142857127,0.275862068965347,0.585714285714255,0.282758620689465,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 +5583,6952,6967,6980,0.289655172413583,0.400000000000000,0.282758620689465,0.407142857142878,0.289655172413583,0.414285714285756,0.296551724137700,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 +6953,6966,6968,6981,0.282758620689465,0.421428571428632,0.289655172413583,0.414285714285756,0.289655172413583,0.428571428571509,0.296551724137700,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +6954,6967,6969,6982,0.282758620689465,0.435714285714389,0.289655172413583,0.428571428571509,0.289655172413583,0.442857142857270,0.296551724137700,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 +6955,6968,6970,6983,0.282758620689465,0.450000000000152,0.289655172413583,0.442857142857270,0.289655172413583,0.457142857143033,0.296551724137700,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +6956,6969,6971,6984,0.282758620689465,0.464285714285914,0.289655172413583,0.457142857143033,0.289655172413583,0.471428571428794,0.296551724137700,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 +6957,6970,6972,6985,0.282758620689465,0.478571428571671,0.289655172413583,0.471428571428794,0.289655172413583,0.485714285714549,0.296551724137700,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 +6958,6971,6973,6986,0.282758620689465,0.492857142857421,0.289655172413583,0.485714285714549,0.289655172413583,0.500000000000292,0.296551724137700,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 +6959,6972,6974,6987,0.282758620689465,0.507142857143102,0.289655172413583,0.500000000000292,0.289655172413583,0.514285714285912,0.296551724137700,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +6960,6973,6975,6988,0.282758620689465,0.521428571428709,0.289655172413583,0.514285714285912,0.289655172413583,0.528571428571506,0.296551724137700,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 +6961,6974,6976,6989,0.282758620689465,0.535714285714344,0.289655172413583,0.528571428571506,0.289655172413583,0.542857142857183,0.296551724137700,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 +6962,6975,6977,6990,0.282758620689465,0.550000000000021,0.289655172413583,0.542857142857183,0.289655172413583,0.557142857142860,0.296551724137700,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6963,6976,6978,6991,0.282758620689465,0.564285714285699,0.289655172413583,0.557142857142860,0.289655172413583,0.571428571428537,0.296551724137700,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6964,6977,6979,6992,0.282758620689465,0.578571428571396,0.289655172413583,0.571428571428537,0.289655172413583,0.585714285714255,0.296551724137700,0.578571428571396,-0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +1350,6965,6978,6993,0.289655172413583,0.600000000000000,0.282758620689465,0.592857142857127,0.289655172413583,0.585714285714255,0.296551724137700,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 +5642,6966,6981,6994,0.303448275861818,0.400000000000000,0.296551724137700,0.407142857142878,0.303448275861818,0.414285714285756,0.310344827585935,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 +6967,6980,6982,6995,0.296551724137700,0.421428571428632,0.303448275861818,0.414285714285756,0.303448275861818,0.428571428571509,0.310344827585935,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,-0.000000000000000,2 +6968,6981,6983,6996,0.296551724137700,0.435714285714389,0.303448275861818,0.428571428571509,0.303448275861818,0.442857142857270,0.310344827585935,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 +6969,6982,6984,6997,0.296551724137700,0.450000000000152,0.303448275861818,0.442857142857270,0.303448275861818,0.457142857143033,0.310344827585935,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +6970,6983,6985,6998,0.296551724137700,0.464285714285914,0.303448275861818,0.457142857143033,0.303448275861818,0.471428571428794,0.310344827585935,0.464285714285914,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +6971,6984,6986,6999,0.296551724137700,0.478571428571671,0.303448275861818,0.471428571428794,0.303448275861818,0.485714285714549,0.310344827585935,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,-0.000000000000000,2 +6972,6985,6987,7000,0.296551724137700,0.492857142857421,0.303448275861818,0.485714285714549,0.303448275861818,0.500000000000292,0.310344827585935,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 +6973,6986,6988,7001,0.296551724137700,0.507142857143102,0.303448275861818,0.500000000000292,0.303448275861818,0.514285714285912,0.310344827585935,0.507142857143102,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +6974,6987,6989,7002,0.296551724137700,0.521428571428709,0.303448275861818,0.514285714285912,0.303448275861818,0.528571428571506,0.310344827585935,0.521428571428709,-0.014285714285593,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285594,0.000000000000000,2 +6975,6988,6990,7003,0.296551724137700,0.535714285714344,0.303448275861818,0.528571428571506,0.303448275861818,0.542857142857183,0.310344827585935,0.535714285714344,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6976,6989,6991,7004,0.296551724137700,0.550000000000021,0.303448275861818,0.542857142857183,0.303448275861818,0.557142857142860,0.310344827585935,0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 +6977,6990,6992,7005,0.296551724137700,0.564285714285699,0.303448275861818,0.557142857142860,0.303448275861818,0.571428571428537,0.310344827585935,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6978,6991,6993,7006,0.296551724137700,0.578571428571396,0.303448275861818,0.571428571428537,0.303448275861818,0.585714285714255,0.310344827585935,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +1356,6979,6992,7007,0.303448275861818,0.600000000000000,0.296551724137700,0.592857142857127,0.303448275861818,0.585714285714255,0.310344827585935,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285746,-0.000000000000000,2 +5701,6980,6995,7008,0.317241379310053,0.400000000000000,0.310344827585935,0.407142857142878,0.317241379310053,0.414285714285756,0.324137931034170,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 +6981,6994,6996,7009,0.310344827585935,0.421428571428632,0.317241379310053,0.414285714285756,0.317241379310053,0.428571428571509,0.324137931034170,0.421428571428633,-0.014285714285753,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +6982,6995,6997,7010,0.310344827585935,0.435714285714389,0.317241379310053,0.428571428571509,0.317241379310053,0.442857142857270,0.324137931034170,0.435714285714389,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +6983,6996,6998,7011,0.310344827585935,0.450000000000152,0.317241379310053,0.442857142857270,0.317241379310053,0.457142857143034,0.324137931034170,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +6984,6997,6999,7012,0.310344827585935,0.464285714285914,0.317241379310053,0.457142857143034,0.317241379310053,0.471428571428794,0.324137931034170,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +6985,6998,7000,7013,0.310344827585935,0.478571428571672,0.317241379310053,0.471428571428794,0.317241379310053,0.485714285714549,0.324137931034170,0.478571428571672,-0.014285714285754,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 +6986,6999,7001,7014,0.310344827585935,0.492857142857421,0.317241379310053,0.485714285714549,0.317241379310053,0.500000000000292,0.324137931034170,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 +6987,7000,7002,7015,0.310344827585935,0.507142857143102,0.317241379310053,0.500000000000292,0.317241379310053,0.514285714285912,0.324137931034170,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +6988,7001,7003,7016,0.310344827585935,0.521428571428709,0.317241379310053,0.514285714285912,0.317241379310053,0.528571428571506,0.324137931034170,0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 +6989,7002,7004,7017,0.310344827585935,0.535714285714344,0.317241379310053,0.528571428571506,0.317241379310053,0.542857142857183,0.324137931034170,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6990,7003,7005,7018,0.310344827585935,0.550000000000022,0.317241379310053,0.542857142857183,0.317241379310053,0.557142857142860,0.324137931034170,0.550000000000021,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6991,7004,7006,7019,0.310344827585935,0.564285714285699,0.317241379310053,0.557142857142860,0.317241379310053,0.571428571428537,0.324137931034170,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +6992,7005,7007,7020,0.310344827585935,0.578571428571396,0.317241379310053,0.571428571428537,0.317241379310053,0.585714285714255,0.324137931034170,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +1362,6993,7006,7021,0.317241379310053,0.600000000000000,0.310344827585935,0.592857142857127,0.317241379310053,0.585714285714255,0.324137931034170,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285746,0.000000000000000,0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 +5760,6994,7009,7022,0.331034482758288,0.400000000000000,0.324137931034170,0.407142857142878,0.331034482758288,0.414285714285756,0.337931034482406,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 +6995,7008,7010,7023,0.324137931034170,0.421428571428633,0.331034482758288,0.414285714285756,0.331034482758288,0.428571428571509,0.337931034482406,0.421428571428633,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +6996,7009,7011,7024,0.324137931034170,0.435714285714389,0.331034482758288,0.428571428571509,0.331034482758288,0.442857142857270,0.337931034482406,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 +6997,7010,7012,7025,0.324137931034170,0.450000000000152,0.331034482758288,0.442857142857270,0.331034482758288,0.457142857143034,0.337931034482406,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +6998,7011,7013,7026,0.324137931034170,0.464285714285914,0.331034482758288,0.457142857143034,0.331034482758288,0.471428571428794,0.337931034482406,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +6999,7012,7014,7027,0.324137931034170,0.478571428571672,0.331034482758288,0.471428571428794,0.331034482758288,0.485714285714549,0.337931034482405,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 +7000,7013,7015,7028,0.324137931034170,0.492857142857421,0.331034482758288,0.485714285714549,0.331034482758288,0.500000000000292,0.337931034482405,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 +7001,7014,7016,7029,0.324137931034170,0.507142857143102,0.331034482758288,0.500000000000292,0.331034482758288,0.514285714285912,0.337931034482406,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +7002,7015,7017,7030,0.324137931034170,0.521428571428709,0.331034482758288,0.514285714285912,0.331034482758288,0.528571428571506,0.337931034482406,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285594,0.000000000000000,2 +7003,7016,7018,7031,0.324137931034170,0.535714285714344,0.331034482758288,0.528571428571506,0.331034482758288,0.542857142857183,0.337931034482406,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7004,7017,7019,7032,0.324137931034170,0.550000000000021,0.331034482758288,0.542857142857183,0.331034482758288,0.557142857142860,0.337931034482406,0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7005,7018,7020,7033,0.324137931034170,0.564285714285699,0.331034482758288,0.557142857142860,0.331034482758288,0.571428571428537,0.337931034482406,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7006,7019,7021,7034,0.324137931034170,0.578571428571396,0.331034482758288,0.571428571428537,0.331034482758288,0.585714285714254,0.337931034482406,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +1368,7007,7020,7035,0.331034482758288,0.600000000000000,0.324137931034170,0.592857142857127,0.331034482758288,0.585714285714254,0.337931034482406,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285746,-0.000000000000000,2 +5819,7008,7023,7036,0.344827586206523,0.400000000000000,0.337931034482406,0.407142857142878,0.344827586206523,0.414285714285756,0.351724137930641,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 +7009,7022,7024,7037,0.337931034482406,0.421428571428633,0.344827586206523,0.414285714285756,0.344827586206523,0.428571428571509,0.351724137930641,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +7010,7023,7025,7038,0.337931034482406,0.435714285714389,0.344827586206523,0.428571428571509,0.344827586206523,0.442857142857270,0.351724137930641,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 +7011,7024,7026,7039,0.337931034482406,0.450000000000152,0.344827586206523,0.442857142857270,0.344827586206523,0.457142857143034,0.351724137930641,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +7012,7025,7027,7040,0.337931034482406,0.464285714285914,0.344827586206523,0.457142857143034,0.344827586206523,0.471428571428794,0.351724137930640,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +7013,7026,7028,7041,0.337931034482405,0.478571428571672,0.344827586206523,0.471428571428794,0.344827586206523,0.485714285714549,0.351724137930641,0.478571428571671,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,-0.000000000000000,2 +7014,7027,7029,7042,0.337931034482405,0.492857142857421,0.344827586206523,0.485714285714549,0.344827586206523,0.500000000000292,0.351724137930641,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 +7015,7028,7030,7043,0.337931034482406,0.507142857143102,0.344827586206523,0.500000000000292,0.344827586206523,0.514285714285912,0.351724137930641,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +7016,7029,7031,7044,0.337931034482406,0.521428571428709,0.344827586206523,0.514285714285912,0.344827586206523,0.528571428571506,0.351724137930641,0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,-0.000000000000000,2 +7017,7030,7032,7045,0.337931034482406,0.535714285714344,0.344827586206523,0.528571428571506,0.344827586206523,0.542857142857183,0.351724137930641,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7018,7031,7033,7046,0.337931034482406,0.550000000000022,0.344827586206523,0.542857142857183,0.344827586206523,0.557142857142860,0.351724137930641,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 +7019,7032,7034,7047,0.337931034482406,0.564285714285699,0.344827586206523,0.557142857142860,0.344827586206523,0.571428571428537,0.351724137930641,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7020,7033,7035,7048,0.337931034482406,0.578571428571396,0.344827586206523,0.571428571428537,0.344827586206523,0.585714285714254,0.351724137930641,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +1374,7021,7034,7049,0.344827586206523,0.600000000000000,0.337931034482406,0.592857142857127,0.344827586206523,0.585714285714254,0.351724137930641,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285746,0.000000000000000,0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 +5878,7022,7037,7050,0.358620689654758,0.400000000000000,0.351724137930641,0.407142857142878,0.358620689654758,0.414285714285756,0.365517241378876,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 +7023,7036,7038,7051,0.351724137930641,0.421428571428633,0.358620689654758,0.414285714285756,0.358620689654758,0.428571428571509,0.365517241378876,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +7024,7037,7039,7052,0.351724137930641,0.435714285714389,0.358620689654758,0.428571428571509,0.358620689654758,0.442857142857270,0.365517241378876,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 +7025,7038,7040,7053,0.351724137930641,0.450000000000152,0.358620689654758,0.442857142857270,0.358620689654758,0.457142857143034,0.365517241378876,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +7026,7039,7041,7054,0.351724137930640,0.464285714285914,0.358620689654758,0.457142857143034,0.358620689654758,0.471428571428794,0.365517241378876,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285760,-0.000000000000000,2 +7027,7040,7042,7055,0.351724137930641,0.478571428571671,0.358620689654758,0.471428571428794,0.358620689654758,0.485714285714549,0.365517241378876,0.478571428571671,-0.014285714285755,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,-0.000000000000000,2 +7028,7041,7043,7056,0.351724137930641,0.492857142857421,0.358620689654758,0.485714285714549,0.358620689654758,0.500000000000292,0.365517241378876,0.492857142857420,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285743,0.000000000000000,2 +7029,7042,7044,7057,0.351724137930641,0.507142857143102,0.358620689654758,0.500000000000292,0.358620689654758,0.514285714285912,0.365517241378876,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,-0.000000000000000,2 +7030,7043,7045,7058,0.351724137930641,0.521428571428709,0.358620689654758,0.514285714285912,0.358620689654758,0.528571428571506,0.365517241378876,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 +7031,7044,7046,7059,0.351724137930641,0.535714285714344,0.358620689654758,0.528571428571506,0.358620689654758,0.542857142857183,0.365517241378876,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7032,7045,7047,7060,0.351724137930641,0.550000000000021,0.358620689654758,0.542857142857183,0.358620689654758,0.557142857142860,0.365517241378876,0.550000000000021,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7033,7046,7048,7061,0.351724137930641,0.564285714285699,0.358620689654758,0.557142857142860,0.358620689654758,0.571428571428537,0.365517241378876,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7034,7047,7049,7062,0.351724137930641,0.578571428571396,0.358620689654758,0.571428571428537,0.358620689654758,0.585714285714255,0.365517241378876,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +1380,7035,7048,7063,0.358620689654758,0.600000000000000,0.351724137930641,0.592857142857127,0.358620689654758,0.585714285714255,0.365517241378876,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 +5937,7036,7051,7064,0.372413793102993,0.400000000000000,0.365517241378876,0.407142857142878,0.372413793102993,0.414285714285756,0.379310344827111,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 +7037,7050,7052,7065,0.365517241378876,0.421428571428633,0.372413793102993,0.414285714285756,0.372413793102993,0.428571428571509,0.379310344827111,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +7038,7051,7053,7066,0.365517241378876,0.435714285714389,0.372413793102993,0.428571428571509,0.372413793102993,0.442857142857270,0.379310344827111,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +7039,7052,7054,7067,0.365517241378876,0.450000000000152,0.372413793102993,0.442857142857270,0.372413793102993,0.457142857143034,0.379310344827111,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +7040,7053,7055,7068,0.365517241378876,0.464285714285914,0.372413793102993,0.457142857143034,0.372413793102993,0.471428571428794,0.379310344827111,0.464285714285914,-0.014285714285760,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +7041,7054,7056,7069,0.365517241378876,0.478571428571671,0.372413793102993,0.471428571428794,0.372413793102993,0.485714285714549,0.379310344827111,0.478571428571672,-0.014285714285755,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 +7042,7055,7057,7070,0.365517241378876,0.492857142857420,0.372413793102993,0.485714285714549,0.372413793102993,0.500000000000292,0.379310344827111,0.492857142857421,-0.014285714285743,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 +7043,7056,7058,7071,0.365517241378876,0.507142857143102,0.372413793102993,0.500000000000292,0.372413793102993,0.514285714285912,0.379310344827111,0.507142857143102,-0.014285714285620,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 +7044,7057,7059,7072,0.365517241378876,0.521428571428709,0.372413793102993,0.514285714285912,0.372413793102993,0.528571428571506,0.379310344827111,0.521428571428709,-0.014285714285593,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 +7045,7058,7060,7073,0.365517241378876,0.535714285714344,0.372413793102993,0.528571428571506,0.372413793102993,0.542857142857183,0.379310344827111,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7046,7059,7061,7074,0.365517241378876,0.550000000000021,0.372413793102993,0.542857142857183,0.372413793102993,0.557142857142860,0.379310344827111,0.550000000000021,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 +7047,7060,7062,7075,0.365517241378876,0.564285714285699,0.372413793102993,0.557142857142860,0.372413793102993,0.571428571428537,0.379310344827111,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7048,7061,7063,7076,0.365517241378876,0.578571428571396,0.372413793102993,0.571428571428537,0.372413793102993,0.585714285714255,0.379310344827111,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285718,-0.000000000000000,2 +1386,7049,7062,7077,0.372413793102993,0.600000000000000,0.365517241378876,0.592857142857127,0.372413793102993,0.585714285714255,0.379310344827111,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 +5996,7050,7065,7078,0.386206896551228,0.400000000000000,0.379310344827111,0.407142857142878,0.386206896551228,0.414285714285756,0.393103448275346,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 +7051,7064,7066,7079,0.379310344827111,0.421428571428632,0.386206896551228,0.414285714285756,0.386206896551228,0.428571428571509,0.393103448275346,0.421428571428632,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 +7052,7065,7067,7080,0.379310344827111,0.435714285714389,0.386206896551228,0.428571428571509,0.386206896551228,0.442857142857270,0.393103448275346,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 +7053,7066,7068,7081,0.379310344827111,0.450000000000152,0.386206896551228,0.442857142857270,0.386206896551228,0.457142857143033,0.393103448275346,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 +7054,7067,7069,7082,0.379310344827111,0.464285714285914,0.386206896551228,0.457142857143033,0.386206896551228,0.471428571428794,0.393103448275346,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 +7055,7068,7070,7083,0.379310344827111,0.478571428571672,0.386206896551228,0.471428571428794,0.386206896551228,0.485714285714549,0.393103448275346,0.478571428571671,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 +7056,7069,7071,7084,0.379310344827111,0.492857142857421,0.386206896551228,0.485714285714549,0.386206896551228,0.500000000000293,0.393103448275346,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 +7057,7070,7072,7085,0.379310344827111,0.507142857143102,0.386206896551228,0.500000000000293,0.386206896551228,0.514285714285912,0.393103448275346,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,-0.000000000000000,2 +7058,7071,7073,7086,0.379310344827111,0.521428571428709,0.386206896551228,0.514285714285912,0.386206896551228,0.528571428571506,0.393103448275346,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 +7059,7072,7074,7087,0.379310344827111,0.535714285714344,0.386206896551228,0.528571428571506,0.386206896551228,0.542857142857183,0.393103448275346,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7060,7073,7075,7088,0.379310344827111,0.550000000000021,0.386206896551228,0.542857142857183,0.386206896551228,0.557142857142860,0.393103448275346,0.550000000000021,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7061,7074,7076,7089,0.379310344827111,0.564285714285699,0.386206896551228,0.557142857142860,0.386206896551228,0.571428571428537,0.393103448275346,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 +7062,7075,7077,7090,0.379310344827111,0.578571428571396,0.386206896551228,0.571428571428537,0.386206896551228,0.585714285714255,0.393103448275346,0.578571428571396,-0.014285714285718,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 +1392,7063,7076,7091,0.386206896551228,0.600000000000000,0.379310344827111,0.592857142857127,0.386206896551228,0.585714285714255,0.393103448275346,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 +6055,7064,7079,7092,0.399999999999487,0.400000000000000,0.393103448275346,0.407142857142878,0.399999999999487,0.414285714285756,0.406896551723629,0.407142857142878,-0.000000000000000,-0.013793103448283,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448283,0.014285714285756,0.000000000000000,2 +7065,7078,7080,7093,0.393103448275346,0.421428571428632,0.399999999999487,0.414285714285756,0.399999999999487,0.428571428571509,0.406896551723629,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285753,0.000000000000000,2 +7066,7079,7081,7094,0.393103448275346,0.435714285714389,0.399999999999487,0.428571428571509,0.399999999999487,0.442857142857270,0.406896551723629,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285761,0.000000000000000,2 +7067,7080,7082,7095,0.393103448275346,0.450000000000152,0.399999999999487,0.442857142857270,0.399999999999487,0.457142857143034,0.406896551723629,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.014285714285764,-0.000000000000000,2 +7068,7081,7083,7096,0.393103448275346,0.464285714285914,0.399999999999487,0.457142857143034,0.399999999999487,0.471428571428794,0.406896551723629,0.464285714285914,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285761,-0.000000000000000,2 +7069,7082,7084,7097,0.393103448275346,0.478571428571671,0.399999999999487,0.471428571428794,0.399999999999487,0.485714285714549,0.406896551723629,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285755,0.000000000000000,2 +7070,7083,7085,7098,0.393103448275346,0.492857142857421,0.399999999999487,0.485714285714549,0.399999999999487,0.500000000000292,0.406896551723629,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285744,0.000000000000000,2 +7071,7084,7086,7099,0.393103448275346,0.507142857143102,0.399999999999487,0.500000000000292,0.399999999999487,0.514285714285912,0.406896551723629,0.507142857143102,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285620,0.000000000000000,2 +7072,7085,7087,7100,0.393103448275346,0.521428571428709,0.399999999999487,0.514285714285912,0.399999999999487,0.528571428571506,0.406896551723629,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.014285714285593,0.000000000000000,2 +7073,7086,7088,7101,0.393103448275346,0.535714285714344,0.399999999999487,0.528571428571506,0.399999999999487,0.542857142857183,0.406896551723629,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285677,0.000000000000000,2 +7074,7087,7089,7102,0.393103448275346,0.550000000000021,0.399999999999487,0.542857142857183,0.399999999999487,0.557142857142860,0.406896551723629,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285677,-0.000000000000000,2 +7075,7088,7090,7103,0.393103448275346,0.564285714285699,0.399999999999487,0.557142857142860,0.399999999999487,0.571428571428537,0.406896551723629,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285677,0.000000000000000,2 +7076,7089,7091,7104,0.393103448275346,0.578571428571396,0.399999999999487,0.571428571428537,0.399999999999487,0.585714285714255,0.406896551723629,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285717,0.000000000000000,2 +1398,7077,7090,7105,0.399999999999487,0.600000000000000,0.393103448275346,0.592857142857127,0.399999999999487,0.585714285714255,0.406896551723629,0.592857142857127,0.000000000000000,0.013793103448283,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448283,0.014285714285745,-0.000000000000000,2 +6114,7078,7093,7106,0.413793103447786,0.400000000000000,0.406896551723629,0.407142857142878,0.413793103447786,0.414285714285756,0.420689655171942,0.407142857142878,-0.000000000000000,-0.013793103448313,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448313,0.014285714285756,-0.000000000000000,2 +7079,7092,7094,7107,0.406896551723629,0.421428571428632,0.413793103447786,0.414285714285756,0.413793103447786,0.428571428571509,0.420689655171942,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285753,0.000000000000000,2 +7080,7093,7095,7108,0.406896551723629,0.435714285714389,0.413793103447786,0.428571428571509,0.413793103447786,0.442857142857270,0.420689655171942,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,-0.000000000000000,2 +7081,7094,7096,7109,0.406896551723629,0.450000000000152,0.413793103447786,0.442857142857270,0.413793103447786,0.457142857143034,0.420689655171942,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285764,0.000000000000000,2 +7082,7095,7097,7110,0.406896551723629,0.464285714285914,0.413793103447786,0.457142857143034,0.413793103447786,0.471428571428794,0.420689655171942,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 +7083,7096,7098,7111,0.406896551723629,0.478571428571671,0.413793103447786,0.471428571428794,0.413793103447786,0.485714285714549,0.420689655171942,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285755,0.000000000000000,2 +7084,7097,7099,7112,0.406896551723629,0.492857142857421,0.413793103447786,0.485714285714549,0.413793103447786,0.500000000000292,0.420689655171942,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285744,0.000000000000000,2 +7085,7098,7100,7113,0.406896551723629,0.507142857143102,0.413793103447786,0.500000000000292,0.413793103447786,0.514285714285912,0.420689655171942,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285620,-0.000000000000000,2 +7086,7099,7101,7114,0.406896551723629,0.521428571428709,0.413793103447786,0.514285714285912,0.413793103447786,0.528571428571506,0.420689655171942,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285593,0.000000000000000,2 +7087,7100,7102,7115,0.406896551723629,0.535714285714344,0.413793103447786,0.528571428571506,0.413793103447786,0.542857142857183,0.420689655171942,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 +7088,7101,7103,7116,0.406896551723629,0.550000000000021,0.413793103447786,0.542857142857183,0.413793103447786,0.557142857142860,0.420689655171942,0.550000000000021,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 +7089,7102,7104,7117,0.406896551723629,0.564285714285699,0.413793103447786,0.557142857142860,0.413793103447786,0.571428571428537,0.420689655171942,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 +7090,7103,7105,7118,0.406896551723629,0.578571428571396,0.413793103447786,0.571428571428537,0.413793103447786,0.585714285714255,0.420689655171942,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285717,0.000000000000000,2 +1404,7091,7104,7119,0.413793103447786,0.600000000000000,0.406896551723629,0.592857142857127,0.413793103447786,0.585714285714255,0.420689655171942,0.592857142857127,0.000000000000000,0.013793103448313,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448313,0.014285714285745,-0.000000000000000,2 +6173,7092,7107,7120,0.427586206896100,0.400000000000000,0.420689655171942,0.407142857142878,0.427586206896100,0.414285714285756,0.434482758620257,0.407142857142878,-0.000000000000000,-0.013793103448315,-0.014285714285756,0.000000000000000,-0.000000000000000,0.013793103448315,0.014285714285756,0.000000000000000,2 +7093,7106,7108,7121,0.420689655171942,0.421428571428632,0.427586206896100,0.414285714285756,0.427586206896100,0.428571428571509,0.434482758620257,0.421428571428633,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285753,0.000000000000000,2 +7094,7107,7109,7122,0.420689655171942,0.435714285714389,0.427586206896100,0.428571428571509,0.427586206896100,0.442857142857270,0.434482758620258,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285761,-0.000000000000000,2 +7095,7108,7110,7123,0.420689655171942,0.450000000000152,0.427586206896100,0.442857142857270,0.427586206896100,0.457142857143033,0.434482758620258,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285764,0.000000000000000,2 +7096,7109,7111,7124,0.420689655171942,0.464285714285914,0.427586206896100,0.457142857143033,0.427586206896100,0.471428571428794,0.434482758620257,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285761,-0.000000000000000,2 +7097,7110,7112,7125,0.420689655171942,0.478571428571671,0.427586206896100,0.471428571428794,0.427586206896100,0.485714285714549,0.434482758620257,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285755,0.000000000000000,2 +7098,7111,7113,7126,0.420689655171942,0.492857142857421,0.427586206896100,0.485714285714549,0.427586206896100,0.500000000000292,0.434482758620257,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285744,0.000000000000000,2 +7099,7112,7114,7127,0.420689655171942,0.507142857143102,0.427586206896100,0.500000000000292,0.427586206896100,0.514285714285912,0.434482758620258,0.507142857143102,-0.014285714285620,0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285620,-0.000000000000000,2 +7100,7113,7115,7128,0.420689655171942,0.521428571428709,0.427586206896100,0.514285714285912,0.427586206896100,0.528571428571506,0.434482758620258,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285594,0.000000000000000,2 +7101,7114,7116,7129,0.420689655171942,0.535714285714344,0.427586206896100,0.528571428571506,0.427586206896100,0.542857142857183,0.434482758620257,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 +7102,7115,7117,7130,0.420689655171942,0.550000000000021,0.427586206896100,0.542857142857183,0.427586206896100,0.557142857142860,0.434482758620257,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 +7103,7116,7118,7131,0.420689655171942,0.564285714285699,0.427586206896100,0.557142857142860,0.427586206896100,0.571428571428537,0.434482758620257,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 +7104,7117,7119,7132,0.420689655171942,0.578571428571396,0.427586206896100,0.571428571428537,0.427586206896100,0.585714285714255,0.434482758620257,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285717,0.000000000000000,2 +1410,7105,7118,7133,0.427586206896100,0.600000000000000,0.420689655171942,0.592857142857127,0.427586206896100,0.585714285714255,0.434482758620257,0.592857142857127,0.000000000000000,0.013793103448315,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448315,0.014285714285745,-0.000000000000000,2 +6232,7106,7121,7134,0.441379310344412,0.400000000000000,0.434482758620257,0.407142857142878,0.441379310344412,0.414285714285756,0.448275862068567,0.407142857142878,-0.000000000000000,-0.013793103448310,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448310,0.014285714285756,0.000000000000000,2 +7107,7120,7122,7135,0.434482758620257,0.421428571428633,0.441379310344412,0.414285714285756,0.441379310344412,0.428571428571509,0.448275862068567,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285753,-0.000000000000000,2 +7108,7121,7123,7136,0.434482758620258,0.435714285714389,0.441379310344412,0.428571428571509,0.441379310344412,0.442857142857270,0.448275862068567,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285761,0.000000000000000,2 +7109,7122,7124,7137,0.434482758620258,0.450000000000152,0.441379310344412,0.442857142857270,0.441379310344412,0.457142857143034,0.448275862068567,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.014285714285764,0.000000000000000,2 +7110,7123,7125,7138,0.434482758620257,0.464285714285914,0.441379310344412,0.457142857143034,0.441379310344412,0.471428571428794,0.448275862068567,0.464285714285914,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285761,-0.000000000000000,2 +7111,7124,7126,7139,0.434482758620257,0.478571428571671,0.441379310344412,0.471428571428794,0.441379310344412,0.485714285714549,0.448275862068567,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285755,0.000000000000000,2 +7112,7125,7127,7140,0.434482758620257,0.492857142857421,0.441379310344412,0.485714285714549,0.441379310344412,0.500000000000292,0.448275862068567,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285744,0.000000000000000,2 +7113,7126,7128,7141,0.434482758620258,0.507142857143102,0.441379310344412,0.500000000000292,0.441379310344412,0.514285714285912,0.448275862068567,0.507142857143102,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.014285714285620,-0.000000000000000,2 +7114,7127,7129,7142,0.434482758620258,0.521428571428709,0.441379310344412,0.514285714285912,0.441379310344412,0.528571428571506,0.448275862068567,0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285593,0.000000000000000,2 +7115,7128,7130,7143,0.434482758620257,0.535714285714344,0.441379310344412,0.528571428571506,0.441379310344412,0.542857142857183,0.448275862068567,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285677,0.000000000000000,2 +7116,7129,7131,7144,0.434482758620257,0.550000000000021,0.441379310344412,0.542857142857183,0.441379310344412,0.557142857142860,0.448275862068567,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285677,0.000000000000000,2 +7117,7130,7132,7145,0.434482758620257,0.564285714285699,0.441379310344412,0.557142857142860,0.441379310344412,0.571428571428537,0.448275862068567,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285677,0.000000000000000,2 +7118,7131,7133,7146,0.434482758620257,0.578571428571396,0.441379310344412,0.571428571428537,0.441379310344412,0.585714285714255,0.448275862068567,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285718,0.000000000000000,2 +1416,7119,7132,7147,0.441379310344412,0.600000000000000,0.434482758620257,0.592857142857127,0.441379310344412,0.585714285714255,0.448275862068567,0.592857142857127,0.000000000000000,0.013793103448310,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448310,0.014285714285745,-0.000000000000000,2 +6291,7120,7135,7148,0.455172413792722,0.400000000000000,0.448275862068567,0.407142857142878,0.455172413792722,0.414285714285756,0.462068965516876,0.407142857142878,-0.000000000000000,-0.013793103448309,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285756,0.000000000000000,2 +7121,7134,7136,7149,0.448275862068567,0.421428571428632,0.455172413792722,0.414285714285756,0.455172413792722,0.428571428571509,0.462068965516876,0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285753,-0.000000000000000,2 +7122,7135,7137,7150,0.448275862068567,0.435714285714389,0.455172413792722,0.428571428571509,0.455172413792722,0.442857142857270,0.462068965516876,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +7123,7136,7138,7151,0.448275862068567,0.450000000000152,0.455172413792722,0.442857142857270,0.455172413792722,0.457142857143034,0.462068965516876,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 +7124,7137,7139,7152,0.448275862068567,0.464285714285914,0.455172413792722,0.457142857143034,0.455172413792722,0.471428571428794,0.462068965516876,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +7125,7138,7140,7153,0.448275862068567,0.478571428571671,0.455172413792722,0.471428571428794,0.455172413792722,0.485714285714549,0.462068965516876,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285755,0.000000000000000,2 +7126,7139,7141,7154,0.448275862068567,0.492857142857421,0.455172413792722,0.485714285714549,0.455172413792722,0.500000000000292,0.462068965516876,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285744,-0.000000000000000,2 +7127,7140,7142,7155,0.448275862068567,0.507142857143102,0.455172413792722,0.500000000000292,0.455172413792722,0.514285714285912,0.462068965516876,0.507142857143102,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285620,0.000000000000000,2 +7128,7141,7143,7156,0.448275862068567,0.521428571428709,0.455172413792722,0.514285714285912,0.455172413792722,0.528571428571506,0.462068965516876,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285594,0.000000000000000,2 +7129,7142,7144,7157,0.448275862068567,0.535714285714344,0.455172413792722,0.528571428571506,0.455172413792722,0.542857142857183,0.462068965516876,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +7130,7143,7145,7158,0.448275862068567,0.550000000000021,0.455172413792722,0.542857142857183,0.455172413792722,0.557142857142860,0.462068965516876,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +7131,7144,7146,7159,0.448275862068567,0.564285714285699,0.455172413792722,0.557142857142860,0.455172413792722,0.571428571428537,0.462068965516876,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +7132,7145,7147,7160,0.448275862068567,0.578571428571396,0.455172413792722,0.571428571428537,0.455172413792722,0.585714285714255,0.462068965516876,0.578571428571396,-0.014285714285718,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 +1422,7133,7146,7161,0.455172413792722,0.600000000000000,0.448275862068567,0.592857142857127,0.455172413792722,0.585714285714255,0.462068965516876,0.592857142857127,0.000000000000000,0.013793103448309,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285745,-0.000000000000000,2 +6350,7134,7149,7162,0.468965517241031,0.400000000000000,0.462068965516876,0.407142857142878,0.468965517241031,0.414285714285756,0.475862068965185,0.407142857142878,-0.000000000000000,-0.013793103448309,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285756,0.000000000000000,2 +7135,7148,7150,7163,0.462068965516876,0.421428571428633,0.468965517241031,0.414285714285756,0.468965517241031,0.428571428571509,0.475862068965185,0.421428571428632,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285753,0.000000000000000,2 +7136,7149,7151,7164,0.462068965516876,0.435714285714389,0.468965517241031,0.428571428571509,0.468965517241031,0.442857142857270,0.475862068965185,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,-0.000000000000000,2 +7137,7150,7152,7165,0.462068965516876,0.450000000000152,0.468965517241031,0.442857142857270,0.468965517241031,0.457142857143033,0.475862068965185,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 +7138,7151,7153,7166,0.462068965516876,0.464285714285914,0.468965517241031,0.457142857143033,0.468965517241031,0.471428571428794,0.475862068965185,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +7139,7152,7154,7167,0.462068965516876,0.478571428571671,0.468965517241031,0.471428571428794,0.468965517241031,0.485714285714549,0.475862068965185,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285755,0.000000000000000,2 +7140,7153,7155,7168,0.462068965516876,0.492857142857421,0.468965517241031,0.485714285714549,0.468965517241031,0.500000000000292,0.475862068965185,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285744,0.000000000000000,2 +7141,7154,7156,7169,0.462068965516876,0.507142857143102,0.468965517241031,0.500000000000292,0.468965517241031,0.514285714285912,0.475862068965185,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285620,0.000000000000000,2 +7142,7155,7157,7170,0.462068965516876,0.521428571428709,0.468965517241031,0.514285714285912,0.468965517241031,0.528571428571506,0.475862068965185,0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285593,-0.000000000000000,2 +7143,7156,7158,7171,0.462068965516876,0.535714285714344,0.468965517241031,0.528571428571506,0.468965517241031,0.542857142857183,0.475862068965185,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +7144,7157,7159,7172,0.462068965516876,0.550000000000021,0.468965517241031,0.542857142857183,0.468965517241031,0.557142857142860,0.475862068965185,0.550000000000021,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +7145,7158,7160,7173,0.462068965516876,0.564285714285699,0.468965517241031,0.557142857142860,0.468965517241031,0.571428571428537,0.475862068965185,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +7146,7159,7161,7174,0.462068965516876,0.578571428571396,0.468965517241031,0.571428571428537,0.468965517241031,0.585714285714255,0.475862068965185,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 +1428,7147,7160,7175,0.468965517241031,0.600000000000000,0.462068965516876,0.592857142857127,0.468965517241031,0.585714285714255,0.475862068965185,0.592857142857127,0.000000000000000,0.013793103448309,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285745,-0.000000000000000,2 +6409,7148,7163,7176,0.482758620689341,0.400000000000000,0.475862068965185,0.407142857142878,0.482758620689341,0.414285714285756,0.489655172413498,0.407142857142878,-0.000000000000000,-0.013793103448313,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448313,0.014285714285756,-0.000000000000000,2 +7149,7162,7164,7177,0.475862068965185,0.421428571428632,0.482758620689341,0.414285714285756,0.482758620689341,0.428571428571509,0.489655172413498,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285753,0.000000000000000,2 +7150,7163,7165,7178,0.475862068965185,0.435714285714389,0.482758620689341,0.428571428571509,0.482758620689341,0.442857142857270,0.489655172413498,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448312,0.014285714285761,0.000000000000000,2 +7151,7164,7166,7179,0.475862068965185,0.450000000000152,0.482758620689341,0.442857142857270,0.482758620689341,0.457142857143033,0.489655172413498,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448313,0.014285714285764,0.000000000000000,2 +7152,7165,7167,7180,0.475862068965185,0.464285714285914,0.482758620689341,0.457142857143033,0.482758620689341,0.471428571428794,0.489655172413498,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 +7153,7166,7168,7181,0.475862068965185,0.478571428571671,0.482758620689341,0.471428571428794,0.482758620689341,0.485714285714549,0.489655172413498,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285755,-0.000000000000000,2 +7154,7167,7169,7182,0.475862068965185,0.492857142857421,0.482758620689341,0.485714285714549,0.482758620689341,0.500000000000292,0.489655172413498,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.014285714285744,0.000000000000000,2 +7155,7168,7170,7183,0.475862068965185,0.507142857143102,0.482758620689341,0.500000000000292,0.482758620689341,0.514285714285912,0.489655172413498,0.507142857143102,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285620,0.000000000000000,2 +7156,7169,7171,7184,0.475862068965185,0.521428571428709,0.482758620689341,0.514285714285912,0.482758620689341,0.528571428571506,0.489655172413498,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448312,0.014285714285593,0.000000000000000,2 +7157,7170,7172,7185,0.475862068965185,0.535714285714344,0.482758620689341,0.528571428571506,0.482758620689341,0.542857142857183,0.489655172413498,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 +7158,7171,7173,7186,0.475862068965185,0.550000000000021,0.482758620689341,0.542857142857183,0.482758620689341,0.557142857142860,0.489655172413498,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,-0.000000000000000,2 +7159,7172,7174,7187,0.475862068965185,0.564285714285699,0.482758620689341,0.557142857142860,0.482758620689341,0.571428571428537,0.489655172413498,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 +7160,7173,7175,7188,0.475862068965185,0.578571428571396,0.482758620689341,0.571428571428537,0.482758620689341,0.585714285714255,0.489655172413498,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285717,-0.000000000000000,2 +1434,7161,7174,7189,0.482758620689341,0.600000000000000,0.475862068965185,0.592857142857127,0.482758620689341,0.585714285714255,0.489655172413498,0.592857142857127,0.000000000000000,0.013793103448313,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448313,0.014285714285745,0.000000000000000,2 +6468,7162,7177,7190,0.496551724137666,0.400000000000000,0.489655172413498,0.407142857142878,0.496551724137666,0.414285714285756,0.503448275861834,0.407142857142878,-0.000000000000000,-0.013793103448336,-0.014285714285756,0.000000000000000,-0.000000000000000,0.013793103448336,0.014285714285756,0.000000000000000,2 +7163,7176,7178,7191,0.489655172413498,0.421428571428632,0.496551724137666,0.414285714285756,0.496551724137666,0.428571428571509,0.503448275861834,0.421428571428632,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285753,0.000000000000000,2 +7164,7177,7179,7192,0.489655172413498,0.435714285714389,0.496551724137666,0.428571428571509,0.496551724137666,0.442857142857270,0.503448275861834,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.014285714285761,-0.000000000000000,2 +7165,7178,7180,7193,0.489655172413498,0.450000000000152,0.496551724137666,0.442857142857270,0.496551724137666,0.457142857143033,0.503448275861834,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285764,0.000000000000000,2 +7166,7179,7181,7194,0.489655172413498,0.464285714285914,0.496551724137666,0.457142857143033,0.496551724137666,0.471428571428794,0.503448275861834,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285761,0.000000000000000,2 +7167,7180,7182,7195,0.489655172413498,0.478571428571671,0.496551724137666,0.471428571428794,0.496551724137666,0.485714285714549,0.503448275861834,0.478571428571671,-0.014285714285755,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285755,0.000000000000000,2 +7168,7181,7183,7196,0.489655172413498,0.492857142857421,0.496551724137666,0.485714285714549,0.496551724137666,0.500000000000292,0.503448275861834,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285744,0.000000000000000,2 +7169,7182,7184,7197,0.489655172413498,0.507142857143102,0.496551724137666,0.500000000000292,0.496551724137666,0.514285714285912,0.503448275861834,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285620,0.000000000000000,2 +7170,7183,7185,7198,0.489655172413498,0.521428571428709,0.496551724137666,0.514285714285912,0.496551724137666,0.528571428571506,0.503448275861834,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285594,0.000000000000000,2 +7171,7184,7186,7199,0.489655172413498,0.535714285714344,0.496551724137666,0.528571428571506,0.496551724137666,0.542857142857183,0.503448275861834,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285677,0.000000000000000,2 +7172,7185,7187,7200,0.489655172413498,0.550000000000021,0.496551724137666,0.542857142857183,0.496551724137666,0.557142857142860,0.503448275861834,0.550000000000021,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.014285714285677,0.000000000000000,2 +7173,7186,7188,7201,0.489655172413498,0.564285714285699,0.496551724137666,0.557142857142860,0.496551724137666,0.571428571428537,0.503448275861834,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285677,0.000000000000000,2 +7174,7187,7189,7202,0.489655172413498,0.578571428571396,0.496551724137666,0.571428571428537,0.496551724137666,0.585714285714255,0.503448275861834,0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285717,0.000000000000000,2 +1440,7175,7188,7203,0.496551724137666,0.600000000000000,0.489655172413498,0.592857142857127,0.496551724137666,0.585714285714255,0.503448275861834,0.592857142857127,0.000000000000000,0.013793103448336,-0.014285714285745,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.014285714285745,-0.000000000000000,2 +6527,7176,7191,7204,0.510344827585989,0.400000000000000,0.503448275861834,0.407142857142878,0.510344827585989,0.414285714285756,0.517241379310145,0.407142857142878,-0.000000000000000,-0.013793103448311,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448311,0.014285714285756,0.000000000000000,2 +7177,7190,7192,7205,0.503448275861834,0.421428571428632,0.510344827585989,0.414285714285756,0.510344827585989,0.428571428571509,0.517241379310145,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285753,0.000000000000000,2 +7178,7191,7193,7206,0.503448275861834,0.435714285714389,0.510344827585989,0.428571428571509,0.510344827585990,0.442857142857270,0.517241379310145,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,-0.000000000000000,2 +7179,7192,7194,7207,0.503448275861834,0.450000000000152,0.510344827585990,0.442857142857270,0.510344827585989,0.457142857143033,0.517241379310145,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285764,0.000000000000000,2 +7180,7193,7195,7208,0.503448275861834,0.464285714285914,0.510344827585989,0.457142857143033,0.510344827585989,0.471428571428794,0.517241379310145,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 +7181,7194,7196,7209,0.503448275861834,0.478571428571671,0.510344827585989,0.471428571428794,0.510344827585989,0.485714285714549,0.517241379310145,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285755,0.000000000000000,2 +7182,7195,7197,7210,0.503448275861834,0.492857142857421,0.510344827585989,0.485714285714549,0.510344827585989,0.500000000000292,0.517241379310145,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 +7183,7196,7198,7211,0.503448275861834,0.507142857143102,0.510344827585989,0.500000000000292,0.510344827585989,0.514285714285912,0.517241379310145,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285620,0.000000000000000,2 +7184,7197,7199,7212,0.503448275861834,0.521428571428709,0.510344827585989,0.514285714285912,0.510344827585989,0.528571428571506,0.517241379310145,0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285594,0.000000000000000,2 +7185,7198,7200,7213,0.503448275861834,0.535714285714344,0.510344827585989,0.528571428571506,0.510344827585989,0.542857142857183,0.517241379310145,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7186,7199,7201,7214,0.503448275861834,0.550000000000021,0.510344827585989,0.542857142857183,0.510344827585989,0.557142857142860,0.517241379310145,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7187,7200,7202,7215,0.503448275861834,0.564285714285699,0.510344827585989,0.557142857142860,0.510344827585989,0.571428571428537,0.517241379310145,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7188,7201,7203,7216,0.503448275861834,0.578571428571396,0.510344827585989,0.571428571428537,0.510344827585989,0.585714285714255,0.517241379310145,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285717,0.000000000000000,2 +1446,7189,7202,7217,0.510344827585989,0.600000000000000,0.503448275861834,0.592857142857127,0.510344827585989,0.585714285714255,0.517241379310145,0.592857142857127,0.000000000000000,0.013793103448311,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448311,0.014285714285745,-0.000000000000000,2 +6586,7190,7205,7218,0.524137931034299,0.400000000000000,0.517241379310145,0.407142857142878,0.524137931034299,0.414285714285756,0.531034482758453,0.407142857142878,-0.000000000000000,-0.013793103448308,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448308,0.014285714285756,-0.000000000000000,2 +7191,7204,7206,7219,0.517241379310145,0.421428571428632,0.524137931034299,0.414285714285756,0.524137931034299,0.428571428571509,0.531034482758453,0.421428571428633,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.014285714285753,0.000000000000000,2 +7192,7205,7207,7220,0.517241379310145,0.435714285714389,0.524137931034299,0.428571428571509,0.524137931034299,0.442857142857270,0.531034482758453,0.435714285714389,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285761,0.000000000000000,2 +7193,7206,7208,7221,0.517241379310145,0.450000000000152,0.524137931034299,0.442857142857270,0.524137931034299,0.457142857143033,0.531034482758453,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285764,0.000000000000000,2 +7194,7207,7209,7222,0.517241379310145,0.464285714285914,0.524137931034299,0.457142857143033,0.524137931034299,0.471428571428794,0.531034482758453,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285761,0.000000000000000,2 +7195,7208,7210,7223,0.517241379310145,0.478571428571671,0.524137931034299,0.471428571428794,0.524137931034299,0.485714285714549,0.531034482758453,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285755,0.000000000000000,2 +7196,7209,7211,7224,0.517241379310145,0.492857142857421,0.524137931034299,0.485714285714549,0.524137931034299,0.500000000000292,0.531034482758453,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285744,-0.000000000000000,2 +7197,7210,7212,7225,0.517241379310145,0.507142857143102,0.524137931034299,0.500000000000292,0.524137931034299,0.514285714285912,0.531034482758453,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285620,0.000000000000000,2 +7198,7211,7213,7226,0.517241379310145,0.521428571428709,0.524137931034299,0.514285714285912,0.524137931034299,0.528571428571506,0.531034482758453,0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285594,0.000000000000000,2 +7199,7212,7214,7227,0.517241379310145,0.535714285714344,0.524137931034299,0.528571428571506,0.524137931034299,0.542857142857183,0.531034482758453,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285677,0.000000000000000,2 +7200,7213,7215,7228,0.517241379310145,0.550000000000021,0.524137931034299,0.542857142857183,0.524137931034299,0.557142857142860,0.531034482758453,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.014285714285677,0.000000000000000,2 +7201,7214,7216,7229,0.517241379310145,0.564285714285699,0.524137931034299,0.557142857142860,0.524137931034299,0.571428571428537,0.531034482758453,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285677,0.000000000000000,2 +7202,7215,7217,7230,0.517241379310145,0.578571428571396,0.524137931034299,0.571428571428537,0.524137931034299,0.585714285714255,0.531034482758453,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285717,0.000000000000000,2 +1452,7203,7216,7231,0.524137931034299,0.600000000000000,0.517241379310145,0.592857142857127,0.524137931034299,0.585714285714255,0.531034482758453,0.592857142857127,0.000000000000000,0.013793103448308,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448308,0.014285714285746,-0.000000000000000,2 +6645,7204,7219,7232,0.537931034482601,0.400000000000000,0.531034482758453,0.407142857142878,0.537931034482601,0.414285714285756,0.544827586206749,0.407142857142878,-0.000000000000000,-0.013793103448296,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448296,0.014285714285756,0.000000000000000,2 +7205,7218,7220,7233,0.531034482758453,0.421428571428633,0.537931034482601,0.414285714285756,0.537931034482601,0.428571428571509,0.544827586206749,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285753,0.000000000000000,2 +7206,7219,7221,7234,0.531034482758453,0.435714285714389,0.537931034482601,0.428571428571509,0.537931034482601,0.442857142857270,0.544827586206749,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.014285714285761,-0.000000000000000,2 +7207,7220,7222,7235,0.531034482758453,0.450000000000152,0.537931034482601,0.442857142857270,0.537931034482601,0.457142857143033,0.544827586206749,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.014285714285764,0.000000000000000,2 +7208,7221,7223,7236,0.531034482758453,0.464285714285914,0.537931034482601,0.457142857143033,0.537931034482601,0.471428571428794,0.544827586206749,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285761,0.000000000000000,2 +7209,7222,7224,7237,0.531034482758453,0.478571428571671,0.537931034482601,0.471428571428794,0.537931034482601,0.485714285714549,0.544827586206749,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285755,0.000000000000000,2 +7210,7223,7225,7238,0.531034482758453,0.492857142857421,0.537931034482601,0.485714285714549,0.537931034482601,0.500000000000292,0.544827586206749,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285744,0.000000000000000,2 +7211,7224,7226,7239,0.531034482758453,0.507142857143102,0.537931034482601,0.500000000000292,0.537931034482601,0.514285714285912,0.544827586206749,0.507142857143102,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285620,0.000000000000000,2 +7212,7225,7227,7240,0.531034482758453,0.521428571428709,0.537931034482601,0.514285714285912,0.537931034482601,0.528571428571506,0.544827586206749,0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285593,0.000000000000000,2 +7213,7226,7228,7241,0.531034482758453,0.535714285714344,0.537931034482601,0.528571428571506,0.537931034482601,0.542857142857183,0.544827586206749,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285677,0.000000000000000,2 +7214,7227,7229,7242,0.531034482758453,0.550000000000021,0.537931034482601,0.542857142857183,0.537931034482601,0.557142857142860,0.544827586206749,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285677,0.000000000000000,2 +7215,7228,7230,7243,0.531034482758453,0.564285714285699,0.537931034482601,0.557142857142860,0.537931034482601,0.571428571428537,0.544827586206749,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285677,0.000000000000000,2 +7216,7229,7231,7244,0.531034482758453,0.578571428571396,0.537931034482601,0.571428571428537,0.537931034482601,0.585714285714255,0.544827586206749,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285717,0.000000000000000,2 +1458,7217,7230,7245,0.537931034482601,0.600000000000000,0.531034482758453,0.592857142857127,0.537931034482601,0.585714285714255,0.544827586206749,0.592857142857127,0.000000000000000,0.013793103448296,-0.014285714285746,0.000000000000000,0.000000000000000,-0.013793103448296,0.014285714285745,-0.000000000000000,2 +6704,7218,7233,7246,0.551724137930900,0.400000000000000,0.544827586206749,0.407142857142878,0.551724137930900,0.414285714285756,0.558620689655051,0.407142857142878,-0.000000000000000,-0.013793103448302,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448302,0.014285714285756,0.000000000000000,2 +7219,7232,7234,7247,0.544827586206749,0.421428571428632,0.551724137930900,0.414285714285756,0.551724137930900,0.428571428571509,0.558620689655051,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285753,-0.000000000000000,2 +7220,7233,7235,7248,0.544827586206749,0.435714285714389,0.551724137930900,0.428571428571509,0.551724137930900,0.442857142857270,0.558620689655051,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285761,0.000000000000000,2 +7221,7234,7236,7249,0.544827586206749,0.450000000000152,0.551724137930900,0.442857142857270,0.551724137930900,0.457142857143033,0.558620689655051,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285764,0.000000000000000,2 +7222,7235,7237,7250,0.544827586206749,0.464285714285914,0.551724137930900,0.457142857143033,0.551724137930900,0.471428571428794,0.558620689655051,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285761,0.000000000000000,2 +7223,7236,7238,7251,0.544827586206749,0.478571428571671,0.551724137930900,0.471428571428794,0.551724137930900,0.485714285714549,0.558620689655051,0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.014285714285755,0.000000000000000,2 +7224,7237,7239,7252,0.544827586206749,0.492857142857421,0.551724137930900,0.485714285714549,0.551724137930900,0.500000000000292,0.558620689655051,0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285743,-0.000000000000000,2 +7225,7238,7240,7253,0.544827586206749,0.507142857143102,0.551724137930900,0.500000000000292,0.551724137930900,0.514285714285912,0.558620689655051,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285620,0.000000000000000,2 +7226,7239,7241,7254,0.544827586206749,0.521428571428709,0.551724137930900,0.514285714285912,0.551724137930900,0.528571428571506,0.558620689655051,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285593,0.000000000000000,2 +7227,7240,7242,7255,0.544827586206749,0.535714285714344,0.551724137930900,0.528571428571506,0.551724137930900,0.542857142857183,0.558620689655051,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285677,0.000000000000000,2 +7228,7241,7243,7256,0.544827586206749,0.550000000000021,0.551724137930900,0.542857142857183,0.551724137930900,0.557142857142860,0.558620689655051,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285677,-0.000000000000000,2 +7229,7242,7244,7257,0.544827586206749,0.564285714285699,0.551724137930900,0.557142857142860,0.551724137930900,0.571428571428537,0.558620689655051,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285677,0.000000000000000,2 +7230,7243,7245,7258,0.544827586206749,0.578571428571396,0.551724137930900,0.571428571428537,0.551724137930900,0.585714285714255,0.558620689655051,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285717,0.000000000000000,2 +1464,7231,7244,7259,0.551724137930900,0.600000000000000,0.544827586206749,0.592857142857127,0.551724137930900,0.585714285714255,0.558620689655051,0.592857142857127,0.000000000000000,0.013793103448302,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448302,0.014285714285745,-0.000000000000000,2 +6763,7232,7247,7260,0.565517241379205,0.400000000000000,0.558620689655051,0.407142857142878,0.565517241379205,0.414285714285756,0.572413793103360,0.407142857142878,-0.000000000000000,-0.013793103448309,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285756,0.000000000000000,2 +7233,7246,7248,7261,0.558620689655051,0.421428571428632,0.565517241379205,0.414285714285756,0.565517241379206,0.428571428571509,0.572413793103360,0.421428571428632,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285753,-0.000000000000000,2 +7234,7247,7249,7262,0.558620689655051,0.435714285714389,0.565517241379206,0.428571428571509,0.565517241379205,0.442857142857270,0.572413793103360,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +7235,7248,7250,7263,0.558620689655051,0.450000000000152,0.565517241379205,0.442857142857270,0.565517241379205,0.457142857143033,0.572413793103360,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,-0.000000000000000,2 +7236,7249,7251,7264,0.558620689655051,0.464285714285914,0.565517241379205,0.457142857143033,0.565517241379205,0.471428571428794,0.572413793103360,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +7237,7250,7252,7265,0.558620689655051,0.478571428571672,0.565517241379205,0.471428571428794,0.565517241379205,0.485714285714549,0.572413793103360,0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285755,-0.000000000000000,2 +7238,7251,7253,7266,0.558620689655051,0.492857142857421,0.565517241379205,0.485714285714549,0.565517241379205,0.500000000000292,0.572413793103360,0.492857142857421,-0.014285714285743,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285744,0.000000000000000,2 +7239,7252,7254,7267,0.558620689655051,0.507142857143102,0.565517241379205,0.500000000000292,0.565517241379205,0.514285714285912,0.572413793103360,0.507142857143102,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285620,0.000000000000000,2 +7240,7253,7255,7268,0.558620689655051,0.521428571428709,0.565517241379205,0.514285714285912,0.565517241379205,0.528571428571506,0.572413793103360,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285593,0.000000000000000,2 +7241,7254,7256,7269,0.558620689655051,0.535714285714344,0.565517241379205,0.528571428571506,0.565517241379205,0.542857142857183,0.572413793103360,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +7242,7255,7257,7270,0.558620689655051,0.550000000000021,0.565517241379205,0.542857142857183,0.565517241379205,0.557142857142860,0.572413793103360,0.550000000000021,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +7243,7256,7258,7271,0.558620689655051,0.564285714285699,0.565517241379205,0.557142857142860,0.565517241379205,0.571428571428537,0.572413793103360,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +7244,7257,7259,7272,0.558620689655051,0.578571428571396,0.565517241379205,0.571428571428537,0.565517241379205,0.585714285714255,0.572413793103360,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 +1470,7245,7258,7273,0.565517241379205,0.600000000000000,0.558620689655051,0.592857142857127,0.565517241379205,0.585714285714255,0.572413793103360,0.592857142857127,0.000000000000000,0.013793103448309,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285745,-0.000000000000000,2 +6822,7246,7261,7274,0.579310344827519,0.400000000000000,0.572413793103360,0.407142857142878,0.579310344827519,0.414285714285756,0.586206896551678,0.407142857142878,-0.000000000000000,-0.013793103448318,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448318,0.014285714285756,0.000000000000000,2 +7247,7260,7262,7275,0.572413793103360,0.421428571428632,0.579310344827519,0.414285714285756,0.579310344827519,0.428571428571509,0.586206896551678,0.421428571428632,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285753,0.000000000000000,2 +7248,7261,7263,7276,0.572413793103360,0.435714285714389,0.579310344827519,0.428571428571509,0.579310344827519,0.442857142857270,0.586206896551678,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.014285714285761,0.000000000000000,2 +7249,7262,7264,7277,0.572413793103360,0.450000000000152,0.579310344827519,0.442857142857270,0.579310344827519,0.457142857143033,0.586206896551678,0.450000000000152,-0.014285714285764,0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285764,0.000000000000000,2 +7250,7263,7265,7278,0.572413793103360,0.464285714285914,0.579310344827519,0.457142857143033,0.579310344827519,0.471428571428794,0.586206896551678,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285761,-0.000000000000000,2 +7251,7264,7266,7279,0.572413793103360,0.478571428571672,0.579310344827519,0.471428571428794,0.579310344827519,0.485714285714549,0.586206896551678,0.478571428571671,-0.014285714285755,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285755,0.000000000000000,2 +7252,7265,7267,7280,0.572413793103360,0.492857142857421,0.579310344827519,0.485714285714549,0.579310344827519,0.500000000000292,0.586206896551678,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285744,0.000000000000000,2 +7253,7266,7268,7281,0.572413793103360,0.507142857143102,0.579310344827519,0.500000000000292,0.579310344827519,0.514285714285912,0.586206896551678,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285620,0.000000000000000,2 +7254,7267,7269,7282,0.572413793103360,0.521428571428709,0.579310344827519,0.514285714285912,0.579310344827519,0.528571428571506,0.586206896551678,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285593,0.000000000000000,2 +7255,7268,7270,7283,0.572413793103360,0.535714285714344,0.579310344827519,0.528571428571506,0.579310344827519,0.542857142857183,0.586206896551678,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.014285714285677,0.000000000000000,2 +7256,7269,7271,7284,0.572413793103360,0.550000000000021,0.579310344827519,0.542857142857183,0.579310344827519,0.557142857142860,0.586206896551678,0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285677,0.000000000000000,2 +7257,7270,7272,7285,0.572413793103360,0.564285714285699,0.579310344827519,0.557142857142860,0.579310344827519,0.571428571428537,0.586206896551678,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285677,0.000000000000000,2 +7258,7271,7273,7286,0.572413793103360,0.578571428571396,0.579310344827519,0.571428571428537,0.579310344827519,0.585714285714255,0.586206896551678,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285717,0.000000000000000,2 +1476,7259,7272,7287,0.579310344827519,0.600000000000000,0.572413793103360,0.592857142857127,0.579310344827519,0.585714285714255,0.586206896551678,0.592857142857127,0.000000000000000,0.013793103448318,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448318,0.014285714285746,-0.000000000000000,2 +1276,6881,7260,7275,0.600000000000000,0.407142857142878,0.593103448275839,0.400000000000000,0.586206896551678,0.407142857142878,0.593103448275839,0.414285714285756,0.014285714285756,0.000000000000000,0.000000000000000,-0.013793103448322,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448322,2 +1277,7261,7274,7276,0.600000000000000,0.421428571428633,0.586206896551678,0.421428571428632,0.593103448275839,0.414285714285756,0.593103448275839,0.428571428571509,0.014285714285753,-0.000000000000000,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1278,7262,7275,7277,0.600000000000000,0.435714285714389,0.586206896551678,0.435714285714389,0.593103448275839,0.428571428571509,0.593103448275839,0.442857142857270,0.014285714285761,-0.000000000000000,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1279,7263,7276,7278,0.600000000000000,0.450000000000152,0.586206896551678,0.450000000000152,0.593103448275839,0.442857142857270,0.593103448275839,0.457142857143034,0.014285714285764,-0.000000000000000,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1280,7264,7277,7279,0.600000000000000,0.464285714285914,0.586206896551678,0.464285714285914,0.593103448275839,0.457142857143034,0.593103448275839,0.471428571428794,0.014285714285761,-0.000000000000000,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1281,7265,7278,7280,0.600000000000000,0.478571428571672,0.586206896551678,0.478571428571671,0.593103448275839,0.471428571428794,0.593103448275839,0.485714285714549,0.014285714285754,-0.000000000000000,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1282,7266,7279,7281,0.600000000000000,0.492857142857421,0.586206896551678,0.492857142857421,0.593103448275839,0.485714285714549,0.593103448275839,0.500000000000293,0.014285714285744,-0.000000000000000,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1283,7267,7280,7282,0.600000000000000,0.507142857143103,0.586206896551678,0.507142857143102,0.593103448275839,0.500000000000293,0.593103448275839,0.514285714285912,0.014285714285620,-0.000000000000000,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1284,7268,7281,7283,0.600000000000000,0.521428571428709,0.586206896551678,0.521428571428709,0.593103448275839,0.514285714285912,0.593103448275839,0.528571428571506,0.014285714285593,-0.000000000000000,-0.014285714285593,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1285,7269,7282,7284,0.600000000000000,0.535714285714345,0.586206896551678,0.535714285714344,0.593103448275839,0.528571428571506,0.593103448275839,0.542857142857183,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1286,7270,7283,7285,0.600000000000000,0.550000000000022,0.586206896551678,0.550000000000022,0.593103448275839,0.542857142857183,0.593103448275839,0.557142857142860,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1287,7271,7284,7286,0.600000000000000,0.564285714285699,0.586206896551678,0.564285714285699,0.593103448275839,0.557142857142860,0.593103448275839,0.571428571428537,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1288,7272,7285,7287,0.600000000000000,0.578571428571396,0.586206896551678,0.578571428571396,0.593103448275839,0.571428571428537,0.593103448275839,0.585714285714255,0.014285714285717,-0.000000000000000,-0.014285714285717,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 +1289,1482,7273,7286,0.600000000000000,0.592857142857127,0.593103448275839,0.600000000000000,0.586206896551678,0.592857142857127,0.593103448275839,0.585714285714255,0.014285714285745,-0.000000000000000,-0.000000000000000,0.013793103448322,-0.014285714285746,0.000000000000000,0.000000000000000,-0.013793103448322,2 +2228,7289,7302,8099,-0.200000000000000,0.407142857142878,-0.193103448275876,0.414285714285756,-0.186206896551752,0.407142857142878,-0.193103448275876,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448248,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448248,2 +2229,7288,7290,7303,-0.200000000000000,0.421428571428633,-0.193103448275876,0.414285714285756,-0.193103448275876,0.428571428571509,-0.186206896551752,0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285753,0.000000000000000,2 +2230,7289,7291,7304,-0.200000000000000,0.435714285714389,-0.193103448275876,0.428571428571509,-0.193103448275876,0.442857142857270,-0.186206896551752,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285761,0.000000000000000,2 +2231,7290,7292,7305,-0.200000000000000,0.450000000000152,-0.193103448275876,0.442857142857270,-0.193103448275876,0.457142857143034,-0.186206896551752,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285764,0.000000000000000,2 +2232,7291,7293,7306,-0.200000000000000,0.464285714285914,-0.193103448275876,0.457142857143034,-0.193103448275876,0.471428571428794,-0.186206896551752,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285761,0.000000000000000,2 +2233,7292,7294,7307,-0.200000000000000,0.478571428571672,-0.193103448275876,0.471428571428794,-0.193103448275876,0.485714285714549,-0.186206896551753,0.478571428571672,-0.014285714285754,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448247,0.014285714285754,0.000000000000000,2 +2234,7293,7295,7308,-0.200000000000000,0.492857142857421,-0.193103448275876,0.485714285714549,-0.193103448275876,0.500000000000293,-0.186206896551753,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448248,0.014285714285744,-0.000000000000000,2 +2235,7294,7296,7309,-0.200000000000000,0.507142857143103,-0.193103448275876,0.500000000000293,-0.193103448275876,0.514285714285913,-0.186206896551752,0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285620,0.000000000000000,2 +2236,7295,7297,7310,-0.200000000000000,0.521428571428709,-0.193103448275876,0.514285714285913,-0.193103448275876,0.528571428571506,-0.186206896551753,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448247,0.014285714285593,0.000000000000000,2 +2237,7296,7298,7311,-0.200000000000000,0.535714285714345,-0.193103448275876,0.528571428571506,-0.193103448275876,0.542857142857183,-0.186206896551753,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448248,0.014285714285677,-0.000000000000000,2 +2238,7297,7299,7312,-0.200000000000000,0.550000000000022,-0.193103448275876,0.542857142857183,-0.193103448275876,0.557142857142860,-0.186206896551752,0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285677,0.000000000000000,2 +2239,7298,7300,7313,-0.200000000000000,0.564285714285699,-0.193103448275876,0.557142857142860,-0.193103448275876,0.571428571428537,-0.186206896551752,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285677,0.000000000000000,2 +2240,7299,7301,7314,-0.200000000000000,0.578571428571396,-0.193103448275876,0.571428571428537,-0.193103448275876,0.585714285714255,-0.186206896551752,0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285717,0.000000000000000,2 +1488,2241,7300,7315,-0.193103448275876,0.600000000000000,-0.200000000000000,0.592857142857127,-0.193103448275876,0.585714285714255,-0.186206896551752,0.592857142857127,0.000000000000000,0.013793103448248,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448248,0.014285714285745,-0.000000000000000,2 +7288,7303,7316,8085,-0.186206896551752,0.407142857142878,-0.179310344827634,0.414285714285756,-0.172413793103516,0.407142857142878,-0.179310344827634,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 +7289,7302,7304,7317,-0.186206896551752,0.421428571428633,-0.179310344827634,0.414285714285756,-0.179310344827634,0.428571428571509,-0.172413793103516,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 +7290,7303,7305,7318,-0.186206896551752,0.435714285714389,-0.179310344827634,0.428571428571509,-0.179310344827634,0.442857142857270,-0.172413793103516,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448236,0.014285714285761,0.000000000000000,2 +7291,7304,7306,7319,-0.186206896551752,0.450000000000152,-0.179310344827634,0.442857142857270,-0.179310344827634,0.457142857143034,-0.172413793103516,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448237,0.014285714285764,-0.000000000000000,2 +7292,7305,7307,7320,-0.186206896551752,0.464285714285914,-0.179310344827634,0.457142857143034,-0.179310344827634,0.471428571428794,-0.172413793103516,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 +7293,7306,7308,7321,-0.186206896551753,0.478571428571672,-0.179310344827634,0.471428571428794,-0.179310344827634,0.485714285714549,-0.172413793103516,0.478571428571672,-0.014285714285754,-0.000000000000000,0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285754,0.000000000000000,2 +7294,7307,7309,7322,-0.186206896551753,0.492857142857421,-0.179310344827634,0.485714285714549,-0.179310344827634,0.500000000000293,-0.172413793103516,0.492857142857421,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,-0.000000000000000,2 +7295,7308,7310,7323,-0.186206896551752,0.507142857143103,-0.179310344827634,0.500000000000293,-0.179310344827634,0.514285714285913,-0.172413793103516,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,0.000000000000000,2 +7296,7309,7311,7324,-0.186206896551753,0.521428571428709,-0.179310344827634,0.514285714285913,-0.179310344827634,0.528571428571506,-0.172413793103516,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 +7297,7310,7312,7325,-0.186206896551753,0.535714285714345,-0.179310344827634,0.528571428571506,-0.179310344827634,0.542857142857183,-0.172413793103516,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,-0.000000000000000,2 +7298,7311,7313,7326,-0.186206896551752,0.550000000000022,-0.179310344827634,0.542857142857183,-0.179310344827634,0.557142857142860,-0.172413793103516,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7299,7312,7314,7327,-0.186206896551752,0.564285714285699,-0.179310344827634,0.557142857142860,-0.179310344827634,0.571428571428537,-0.172413793103516,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7300,7313,7315,7328,-0.186206896551752,0.578571428571396,-0.179310344827634,0.571428571428537,-0.179310344827634,0.585714285714255,-0.172413793103516,0.578571428571396,-0.014285714285717,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 +1494,7301,7314,7329,-0.179310344827634,0.600000000000000,-0.186206896551752,0.592857142857127,-0.179310344827634,0.585714285714255,-0.172413793103516,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 +7302,7317,7330,8071,-0.172413793103516,0.407142857142878,-0.165517241379389,0.414285714285756,-0.158620689655262,0.407142857142878,-0.165517241379389,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448254,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448254,2 +7303,7316,7318,7331,-0.172413793103516,0.421428571428633,-0.165517241379389,0.414285714285756,-0.165517241379389,0.428571428571509,-0.158620689655262,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285753,0.000000000000000,2 +7304,7317,7319,7332,-0.172413793103516,0.435714285714389,-0.165517241379389,0.428571428571509,-0.165517241379389,0.442857142857270,-0.158620689655262,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 +7305,7318,7320,7333,-0.172413793103516,0.450000000000152,-0.165517241379389,0.442857142857270,-0.165517241379389,0.457142857143034,-0.158620689655262,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285764,0.000000000000000,2 +7306,7319,7321,7334,-0.172413793103516,0.464285714285914,-0.165517241379389,0.457142857143034,-0.165517241379389,0.471428571428795,-0.158620689655262,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 +7307,7320,7322,7335,-0.172413793103516,0.478571428571672,-0.165517241379389,0.471428571428795,-0.165517241379389,0.485714285714549,-0.158620689655262,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285754,-0.000000000000000,2 +7308,7321,7323,7336,-0.172413793103516,0.492857142857421,-0.165517241379389,0.485714285714549,-0.165517241379389,0.500000000000293,-0.158620689655262,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285744,0.000000000000000,2 +7309,7322,7324,7337,-0.172413793103516,0.507142857143103,-0.165517241379389,0.500000000000293,-0.165517241379389,0.514285714285913,-0.158620689655262,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285620,0.000000000000000,2 +7310,7323,7325,7338,-0.172413793103516,0.521428571428709,-0.165517241379389,0.514285714285913,-0.165517241379389,0.528571428571506,-0.158620689655262,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285593,0.000000000000000,2 +7311,7324,7326,7339,-0.172413793103516,0.535714285714345,-0.165517241379389,0.528571428571506,-0.165517241379389,0.542857142857183,-0.158620689655262,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 +7312,7325,7327,7340,-0.172413793103516,0.550000000000022,-0.165517241379389,0.542857142857183,-0.165517241379389,0.557142857142860,-0.158620689655262,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,-0.000000000000000,2 +7313,7326,7328,7341,-0.172413793103516,0.564285714285699,-0.165517241379389,0.557142857142860,-0.165517241379389,0.571428571428537,-0.158620689655262,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 +7314,7327,7329,7342,-0.172413793103516,0.578571428571396,-0.165517241379389,0.571428571428537,-0.165517241379389,0.585714285714255,-0.158620689655262,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285717,0.000000000000000,2 +1500,7315,7328,7343,-0.165517241379389,0.600000000000000,-0.172413793103516,0.592857142857127,-0.165517241379389,0.585714285714255,-0.158620689655262,0.592857142857127,0.000000000000000,0.013793103448254,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448254,0.014285714285745,-0.000000000000000,2 +7316,7331,7344,8057,-0.158620689655262,0.407142857142878,-0.151724137931136,0.414285714285756,-0.144827586207010,0.407142857142878,-0.151724137931136,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448251,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448251,2 +7317,7330,7332,7345,-0.158620689655262,0.421428571428633,-0.151724137931136,0.414285714285756,-0.151724137931136,0.428571428571509,-0.144827586207010,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.014285714285753,0.000000000000000,2 +7318,7331,7333,7346,-0.158620689655262,0.435714285714389,-0.151724137931136,0.428571428571509,-0.151724137931136,0.442857142857270,-0.144827586207010,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448251,0.014285714285761,0.000000000000000,2 +7319,7332,7334,7347,-0.158620689655262,0.450000000000152,-0.151724137931136,0.442857142857270,-0.151724137931136,0.457142857143034,-0.144827586207010,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.014285714285764,0.000000000000000,2 +7320,7333,7335,7348,-0.158620689655262,0.464285714285914,-0.151724137931136,0.457142857143034,-0.151724137931136,0.471428571428794,-0.144827586207010,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448252,0.014285714285761,0.000000000000000,2 +7321,7334,7336,7349,-0.158620689655262,0.478571428571672,-0.151724137931136,0.471428571428794,-0.151724137931136,0.485714285714549,-0.144827586207010,0.478571428571672,-0.014285714285754,0.000000000000000,-0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448251,0.014285714285754,0.000000000000000,2 +7322,7335,7337,7350,-0.158620689655262,0.492857142857421,-0.151724137931136,0.485714285714549,-0.151724137931136,0.500000000000293,-0.144827586207010,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.014285714285744,0.000000000000000,2 +7323,7336,7338,7351,-0.158620689655262,0.507142857143103,-0.151724137931136,0.500000000000293,-0.151724137931136,0.514285714285913,-0.144827586207010,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.014285714285620,0.000000000000000,2 +7324,7337,7339,7352,-0.158620689655262,0.521428571428709,-0.151724137931136,0.514285714285913,-0.151724137931136,0.528571428571506,-0.144827586207010,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.014285714285593,0.000000000000000,2 +7325,7338,7340,7353,-0.158620689655262,0.535714285714345,-0.151724137931136,0.528571428571506,-0.151724137931136,0.542857142857183,-0.144827586207010,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448252,0.014285714285677,0.000000000000000,2 +7326,7339,7341,7354,-0.158620689655262,0.550000000000022,-0.151724137931136,0.542857142857183,-0.151724137931136,0.557142857142860,-0.144827586207010,0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448251,0.014285714285677,0.000000000000000,2 +7327,7340,7342,7355,-0.158620689655262,0.564285714285699,-0.151724137931136,0.557142857142860,-0.151724137931136,0.571428571428537,-0.144827586207010,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448251,0.014285714285677,0.000000000000000,2 +7328,7341,7343,7356,-0.158620689655262,0.578571428571396,-0.151724137931136,0.571428571428537,-0.151724137931136,0.585714285714255,-0.144827586207010,0.578571428571396,-0.014285714285717,-0.000000000000000,0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.014285714285717,0.000000000000000,2 +1506,7329,7342,7357,-0.151724137931136,0.600000000000000,-0.158620689655262,0.592857142857127,-0.151724137931136,0.585714285714255,-0.144827586207010,0.592857142857127,0.000000000000000,0.013793103448251,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448251,0.014285714285745,-0.000000000000000,2 +7330,7345,7358,8043,-0.144827586207010,0.407142857142878,-0.137931034482892,0.414285714285756,-0.131034482758774,0.407142857142878,-0.137931034482892,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 +7331,7344,7346,7359,-0.144827586207010,0.421428571428633,-0.137931034482892,0.414285714285756,-0.137931034482892,0.428571428571509,-0.131034482758774,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 +7332,7345,7347,7360,-0.144827586207010,0.435714285714389,-0.137931034482892,0.428571428571509,-0.137931034482892,0.442857142857270,-0.131034482758774,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 +7333,7346,7348,7361,-0.144827586207010,0.450000000000152,-0.137931034482892,0.442857142857270,-0.137931034482892,0.457142857143034,-0.131034482758774,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 +7334,7347,7349,7362,-0.144827586207010,0.464285714285914,-0.137931034482892,0.457142857143034,-0.137931034482892,0.471428571428794,-0.131034482758774,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 +7335,7348,7350,7363,-0.144827586207010,0.478571428571672,-0.137931034482892,0.471428571428794,-0.137931034482892,0.485714285714549,-0.131034482758774,0.478571428571672,-0.014285714285754,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285754,0.000000000000000,2 +7336,7349,7351,7364,-0.144827586207010,0.492857142857421,-0.137931034482892,0.485714285714549,-0.137931034482892,0.500000000000293,-0.131034482758774,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 +7337,7350,7352,7365,-0.144827586207010,0.507142857143103,-0.137931034482892,0.500000000000293,-0.137931034482892,0.514285714285913,-0.131034482758774,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,0.000000000000000,2 +7338,7351,7353,7366,-0.144827586207010,0.521428571428709,-0.137931034482892,0.514285714285913,-0.137931034482892,0.528571428571506,-0.131034482758774,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 +7339,7352,7354,7367,-0.144827586207010,0.535714285714345,-0.137931034482892,0.528571428571506,-0.137931034482892,0.542857142857183,-0.131034482758774,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7340,7353,7355,7368,-0.144827586207010,0.550000000000022,-0.137931034482892,0.542857142857183,-0.137931034482892,0.557142857142860,-0.131034482758774,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7341,7354,7356,7369,-0.144827586207010,0.564285714285699,-0.137931034482892,0.557142857142860,-0.137931034482892,0.571428571428537,-0.131034482758774,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7342,7355,7357,7370,-0.144827586207010,0.578571428571396,-0.137931034482892,0.571428571428537,-0.137931034482892,0.585714285714255,-0.131034482758774,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 +1512,7343,7356,7371,-0.137931034482892,0.600000000000000,-0.144827586207010,0.592857142857127,-0.137931034482892,0.585714285714255,-0.131034482758774,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 +7344,7359,7372,8029,-0.131034482758774,0.407142857142878,-0.124137931034655,0.414285714285756,-0.117241379310537,0.407142857142878,-0.124137931034655,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 +7345,7358,7360,7373,-0.131034482758774,0.421428571428633,-0.124137931034655,0.414285714285756,-0.124137931034655,0.428571428571509,-0.117241379310537,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 +7346,7359,7361,7374,-0.131034482758774,0.435714285714389,-0.124137931034655,0.428571428571509,-0.124137931034655,0.442857142857270,-0.117241379310537,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 +7347,7360,7362,7375,-0.131034482758774,0.450000000000152,-0.124137931034655,0.442857142857270,-0.124137931034655,0.457142857143034,-0.117241379310537,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 +7348,7361,7363,7376,-0.131034482758774,0.464285714285914,-0.124137931034655,0.457142857143034,-0.124137931034655,0.471428571428794,-0.117241379310537,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 +7349,7362,7364,7377,-0.131034482758774,0.478571428571672,-0.124137931034655,0.471428571428794,-0.124137931034655,0.485714285714549,-0.117241379310537,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285754,0.000000000000000,2 +7350,7363,7365,7378,-0.131034482758774,0.492857142857421,-0.124137931034655,0.485714285714549,-0.124137931034655,0.500000000000293,-0.117241379310537,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 +7351,7364,7366,7379,-0.131034482758774,0.507142857143103,-0.124137931034655,0.500000000000293,-0.124137931034655,0.514285714285913,-0.117241379310537,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,0.000000000000000,2 +7352,7365,7367,7380,-0.131034482758774,0.521428571428709,-0.124137931034655,0.514285714285913,-0.124137931034655,0.528571428571506,-0.117241379310537,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 +7353,7366,7368,7381,-0.131034482758774,0.535714285714345,-0.124137931034655,0.528571428571506,-0.124137931034655,0.542857142857183,-0.117241379310537,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7354,7367,7369,7382,-0.131034482758774,0.550000000000022,-0.124137931034655,0.542857142857183,-0.124137931034655,0.557142857142860,-0.117241379310537,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7355,7368,7370,7383,-0.131034482758774,0.564285714285699,-0.124137931034655,0.557142857142860,-0.124137931034655,0.571428571428537,-0.117241379310537,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7356,7369,7371,7384,-0.131034482758774,0.578571428571396,-0.124137931034655,0.571428571428537,-0.124137931034655,0.585714285714255,-0.117241379310537,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 +1518,7357,7370,7385,-0.124137931034655,0.600000000000000,-0.131034482758774,0.592857142857127,-0.124137931034655,0.585714285714255,-0.117241379310537,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 +7358,7373,7386,8015,-0.117241379310537,0.407142857142878,-0.110344827586419,0.414285714285756,-0.103448275862300,0.407142857142878,-0.110344827586419,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 +7359,7372,7374,7387,-0.117241379310537,0.421428571428633,-0.110344827586419,0.414285714285756,-0.110344827586419,0.428571428571509,-0.103448275862300,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 +7360,7373,7375,7388,-0.117241379310537,0.435714285714389,-0.110344827586419,0.428571428571509,-0.110344827586419,0.442857142857270,-0.103448275862300,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 +7361,7374,7376,7389,-0.117241379310537,0.450000000000152,-0.110344827586419,0.442857142857270,-0.110344827586419,0.457142857143034,-0.103448275862300,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 +7362,7375,7377,7390,-0.117241379310537,0.464285714285914,-0.110344827586419,0.457142857143034,-0.110344827586419,0.471428571428794,-0.103448275862300,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 +7363,7376,7378,7391,-0.117241379310537,0.478571428571672,-0.110344827586419,0.471428571428794,-0.110344827586419,0.485714285714549,-0.103448275862300,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285755,0.000000000000000,2 +7364,7377,7379,7392,-0.117241379310537,0.492857142857421,-0.110344827586419,0.485714285714549,-0.110344827586419,0.500000000000293,-0.103448275862300,0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 +7365,7378,7380,7393,-0.117241379310537,0.507142857143103,-0.110344827586419,0.500000000000293,-0.110344827586419,0.514285714285913,-0.103448275862300,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,0.000000000000000,2 +7366,7379,7381,7394,-0.117241379310537,0.521428571428709,-0.110344827586419,0.514285714285913,-0.110344827586419,0.528571428571506,-0.103448275862300,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 +7367,7380,7382,7395,-0.117241379310537,0.535714285714345,-0.110344827586419,0.528571428571506,-0.110344827586419,0.542857142857183,-0.103448275862300,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7368,7381,7383,7396,-0.117241379310537,0.550000000000022,-0.110344827586419,0.542857142857183,-0.110344827586419,0.557142857142860,-0.103448275862300,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7369,7382,7384,7397,-0.117241379310537,0.564285714285699,-0.110344827586419,0.557142857142860,-0.110344827586419,0.571428571428537,-0.103448275862300,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7370,7383,7385,7398,-0.117241379310537,0.578571428571396,-0.110344827586419,0.571428571428537,-0.110344827586419,0.585714285714255,-0.103448275862300,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 +1524,7371,7384,7399,-0.110344827586419,0.600000000000000,-0.117241379310537,0.592857142857127,-0.110344827586419,0.585714285714255,-0.103448275862300,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 +7372,7387,7400,8001,-0.103448275862300,0.407142857142878,-0.096551724138182,0.414285714285756,-0.089655172414064,0.407142857142878,-0.096551724138182,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 +7373,7386,7388,7401,-0.103448275862300,0.421428571428633,-0.096551724138182,0.414285714285756,-0.096551724138182,0.428571428571509,-0.089655172414064,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 +7374,7387,7389,7402,-0.103448275862300,0.435714285714389,-0.096551724138182,0.428571428571509,-0.096551724138182,0.442857142857270,-0.089655172414064,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 +7375,7388,7390,7403,-0.103448275862300,0.450000000000152,-0.096551724138182,0.442857142857270,-0.096551724138182,0.457142857143034,-0.089655172414064,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 +7376,7389,7391,7404,-0.103448275862300,0.464285714285914,-0.096551724138182,0.457142857143034,-0.096551724138182,0.471428571428794,-0.089655172414064,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 +7377,7390,7392,7405,-0.103448275862300,0.478571428571672,-0.096551724138182,0.471428571428794,-0.096551724138182,0.485714285714549,-0.089655172414064,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285754,0.000000000000000,2 +7378,7391,7393,7406,-0.103448275862300,0.492857142857421,-0.096551724138182,0.485714285714549,-0.096551724138182,0.500000000000293,-0.089655172414064,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 +7379,7392,7394,7407,-0.103448275862300,0.507142857143103,-0.096551724138182,0.500000000000293,-0.096551724138182,0.514285714285913,-0.089655172414064,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,-0.000000000000000,2 +7380,7393,7395,7408,-0.103448275862300,0.521428571428709,-0.096551724138182,0.514285714285913,-0.096551724138182,0.528571428571506,-0.089655172414064,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,-0.000000000000000,2 +7381,7394,7396,7409,-0.103448275862300,0.535714285714345,-0.096551724138182,0.528571428571506,-0.096551724138182,0.542857142857183,-0.089655172414064,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7382,7395,7397,7410,-0.103448275862300,0.550000000000022,-0.096551724138182,0.542857142857183,-0.096551724138182,0.557142857142860,-0.089655172414064,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7383,7396,7398,7411,-0.103448275862300,0.564285714285699,-0.096551724138182,0.557142857142860,-0.096551724138182,0.571428571428537,-0.089655172414064,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7384,7397,7399,7412,-0.103448275862300,0.578571428571396,-0.096551724138182,0.571428571428537,-0.096551724138182,0.585714285714255,-0.089655172414064,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 +1530,7385,7398,7413,-0.096551724138182,0.600000000000000,-0.103448275862300,0.592857142857127,-0.096551724138182,0.585714285714255,-0.089655172414064,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 +7386,7401,7414,7987,-0.089655172414064,0.407142857142878,-0.082758620689945,0.414285714285756,-0.075862068965827,0.407142857142878,-0.082758620689945,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 +7387,7400,7402,7415,-0.089655172414064,0.421428571428633,-0.082758620689945,0.414285714285756,-0.082758620689945,0.428571428571509,-0.075862068965827,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 +7388,7401,7403,7416,-0.089655172414064,0.435714285714389,-0.082758620689945,0.428571428571509,-0.082758620689945,0.442857142857270,-0.075862068965827,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 +7389,7402,7404,7417,-0.089655172414064,0.450000000000152,-0.082758620689945,0.442857142857270,-0.082758620689945,0.457142857143034,-0.075862068965827,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 +7390,7403,7405,7418,-0.089655172414064,0.464285714285914,-0.082758620689945,0.457142857143034,-0.082758620689945,0.471428571428794,-0.075862068965827,0.464285714285914,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 +7391,7404,7406,7419,-0.089655172414064,0.478571428571672,-0.082758620689945,0.471428571428794,-0.082758620689945,0.485714285714549,-0.075862068965827,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285755,0.000000000000000,2 +7392,7405,7407,7420,-0.089655172414064,0.492857142857421,-0.082758620689945,0.485714285714549,-0.082758620689945,0.500000000000293,-0.075862068965827,0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 +7393,7406,7408,7421,-0.089655172414064,0.507142857143103,-0.082758620689945,0.500000000000293,-0.082758620689945,0.514285714285913,-0.075862068965827,0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,0.000000000000000,2 +7394,7407,7409,7422,-0.089655172414064,0.521428571428709,-0.082758620689945,0.514285714285913,-0.082758620689945,0.528571428571506,-0.075862068965827,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 +7395,7408,7410,7423,-0.089655172414064,0.535714285714345,-0.082758620689945,0.528571428571506,-0.082758620689945,0.542857142857183,-0.075862068965827,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7396,7409,7411,7424,-0.089655172414064,0.550000000000022,-0.082758620689945,0.542857142857183,-0.082758620689945,0.557142857142860,-0.075862068965827,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,-0.000000000000000,2 +7397,7410,7412,7425,-0.089655172414064,0.564285714285699,-0.082758620689945,0.557142857142860,-0.082758620689945,0.571428571428537,-0.075862068965827,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7398,7411,7413,7426,-0.089655172414064,0.578571428571396,-0.082758620689945,0.571428571428537,-0.082758620689945,0.585714285714255,-0.075862068965827,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 +1536,7399,7412,7427,-0.082758620689945,0.600000000000000,-0.089655172414064,0.592857142857127,-0.082758620689945,0.585714285714255,-0.075862068965827,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 +7400,7415,7428,7973,-0.075862068965827,0.407142857142878,-0.068965517241709,0.414285714285756,-0.062068965517591,0.407142857142878,-0.068965517241709,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 +7401,7414,7416,7429,-0.075862068965827,0.421428571428633,-0.068965517241709,0.414285714285756,-0.068965517241709,0.428571428571509,-0.062068965517591,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 +7402,7415,7417,7430,-0.075862068965827,0.435714285714389,-0.068965517241709,0.428571428571509,-0.068965517241709,0.442857142857270,-0.062068965517591,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 +7403,7416,7418,7431,-0.075862068965827,0.450000000000152,-0.068965517241709,0.442857142857270,-0.068965517241709,0.457142857143034,-0.062068965517591,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 +7404,7417,7419,7432,-0.075862068965827,0.464285714285914,-0.068965517241709,0.457142857143034,-0.068965517241709,0.471428571428794,-0.062068965517591,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 +7405,7418,7420,7433,-0.075862068965827,0.478571428571672,-0.068965517241709,0.471428571428794,-0.068965517241709,0.485714285714549,-0.062068965517591,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285754,0.000000000000000,2 +7406,7419,7421,7434,-0.075862068965827,0.492857142857421,-0.068965517241709,0.485714285714549,-0.068965517241709,0.500000000000293,-0.062068965517591,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 +7407,7420,7422,7435,-0.075862068965827,0.507142857143103,-0.068965517241709,0.500000000000293,-0.068965517241709,0.514285714285913,-0.062068965517591,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,-0.000000000000000,2 +7408,7421,7423,7436,-0.075862068965827,0.521428571428709,-0.068965517241709,0.514285714285913,-0.068965517241709,0.528571428571506,-0.062068965517591,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 +7409,7422,7424,7437,-0.075862068965827,0.535714285714345,-0.068965517241709,0.528571428571506,-0.068965517241709,0.542857142857183,-0.062068965517591,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,-0.000000000000000,2 +7410,7423,7425,7438,-0.075862068965827,0.550000000000022,-0.068965517241709,0.542857142857183,-0.068965517241709,0.557142857142860,-0.062068965517591,0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7411,7424,7426,7439,-0.075862068965827,0.564285714285699,-0.068965517241709,0.557142857142860,-0.068965517241709,0.571428571428537,-0.062068965517591,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,-0.000000000000000,2 +7412,7425,7427,7440,-0.075862068965827,0.578571428571396,-0.068965517241709,0.571428571428537,-0.068965517241709,0.585714285714255,-0.062068965517591,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 +1542,7413,7426,7441,-0.068965517241709,0.600000000000000,-0.075862068965827,0.592857142857127,-0.068965517241709,0.585714285714255,-0.062068965517591,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 +7414,7429,7442,7959,-0.062068965517591,0.407142857142878,-0.055172413793477,0.414285714285756,-0.048275862069362,0.407142857142878,-0.055172413793477,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448228,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448228,2 +7415,7428,7430,7443,-0.062068965517591,0.421428571428633,-0.055172413793477,0.414285714285756,-0.055172413793477,0.428571428571509,-0.048275862069362,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448228,-0.000000000000000,0.013793103448228,0.014285714285753,-0.000000000000000,2 +7416,7429,7431,7444,-0.062068965517591,0.435714285714389,-0.055172413793477,0.428571428571509,-0.055172413793477,0.442857142857270,-0.048275862069362,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448228,-0.000000000000000,0.013793103448228,0.014285714285761,0.000000000000000,2 +7417,7430,7432,7445,-0.062068965517591,0.450000000000152,-0.055172413793477,0.442857142857270,-0.055172413793477,0.457142857143034,-0.048275862069362,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285764,0.000000000000000,2 +7418,7431,7433,7446,-0.062068965517591,0.464285714285914,-0.055172413793477,0.457142857143034,-0.055172413793477,0.471428571428795,-0.048275862069362,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285761,-0.000000000000000,2 +7419,7432,7434,7447,-0.062068965517591,0.478571428571672,-0.055172413793477,0.471428571428795,-0.055172413793477,0.485714285714549,-0.048275862069362,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285754,0.000000000000000,2 +7420,7433,7435,7448,-0.062068965517591,0.492857142857421,-0.055172413793477,0.485714285714549,-0.055172413793477,0.500000000000293,-0.048275862069362,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285744,0.000000000000000,2 +7421,7434,7436,7449,-0.062068965517591,0.507142857143103,-0.055172413793477,0.500000000000293,-0.055172413793477,0.514285714285913,-0.048275862069362,0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285620,0.000000000000000,2 +7422,7435,7437,7450,-0.062068965517591,0.521428571428709,-0.055172413793477,0.514285714285913,-0.055172413793477,0.528571428571506,-0.048275862069362,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285593,0.000000000000000,2 +7423,7436,7438,7451,-0.062068965517591,0.535714285714345,-0.055172413793477,0.528571428571506,-0.055172413793477,0.542857142857183,-0.048275862069362,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285677,0.000000000000000,2 +7424,7437,7439,7452,-0.062068965517591,0.550000000000022,-0.055172413793477,0.542857142857183,-0.055172413793477,0.557142857142860,-0.048275862069362,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285677,-0.000000000000000,2 +7425,7438,7440,7453,-0.062068965517591,0.564285714285699,-0.055172413793477,0.557142857142860,-0.055172413793477,0.571428571428537,-0.048275862069362,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285677,0.000000000000000,2 +7426,7439,7441,7454,-0.062068965517591,0.578571428571396,-0.055172413793477,0.571428571428537,-0.055172413793477,0.585714285714255,-0.048275862069362,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285717,0.000000000000000,2 +1548,7427,7440,7455,-0.055172413793477,0.600000000000000,-0.062068965517591,0.592857142857127,-0.055172413793477,0.585714285714255,-0.048275862069362,0.592857142857127,0.000000000000000,0.013793103448228,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448228,0.014285714285745,-0.000000000000000,2 +7428,7443,7456,7945,-0.048275862069362,0.407142857142878,-0.041379310345245,0.414285714285756,-0.034482758621128,0.407142857142878,-0.041379310345245,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448234,0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448234,2 +7429,7442,7444,7457,-0.048275862069362,0.421428571428633,-0.041379310345245,0.414285714285756,-0.041379310345245,0.428571428571509,-0.034482758621128,0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285753,0.000000000000000,2 +7430,7443,7445,7458,-0.048275862069362,0.435714285714389,-0.041379310345245,0.428571428571509,-0.041379310345245,0.442857142857270,-0.034482758621128,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285761,0.000000000000000,2 +7431,7444,7446,7459,-0.048275862069362,0.450000000000152,-0.041379310345245,0.442857142857270,-0.041379310345245,0.457142857143034,-0.034482758621128,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285764,-0.000000000000000,2 +7432,7445,7447,7460,-0.048275862069362,0.464285714285914,-0.041379310345245,0.457142857143034,-0.041379310345245,0.471428571428794,-0.034482758621128,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285761,0.000000000000000,2 +7433,7446,7448,7461,-0.048275862069362,0.478571428571672,-0.041379310345245,0.471428571428794,-0.041379310345245,0.485714285714549,-0.034482758621128,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448234,-0.000000000000000,0.013793103448234,0.014285714285755,-0.000000000000000,2 +7434,7447,7449,7462,-0.048275862069362,0.492857142857421,-0.041379310345245,0.485714285714549,-0.041379310345245,0.500000000000293,-0.034482758621128,0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285744,0.000000000000000,2 +7435,7448,7450,7463,-0.048275862069362,0.507142857143103,-0.041379310345245,0.500000000000293,-0.041379310345245,0.514285714285913,-0.034482758621128,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285620,0.000000000000000,2 +7436,7449,7451,7464,-0.048275862069362,0.521428571428709,-0.041379310345245,0.514285714285913,-0.041379310345245,0.528571428571506,-0.034482758621128,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285593,0.000000000000000,2 +7437,7450,7452,7465,-0.048275862069362,0.535714285714345,-0.041379310345245,0.528571428571506,-0.041379310345245,0.542857142857183,-0.034482758621128,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285677,-0.000000000000000,2 +7438,7451,7453,7466,-0.048275862069362,0.550000000000022,-0.041379310345245,0.542857142857183,-0.041379310345245,0.557142857142860,-0.034482758621128,0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285677,0.000000000000000,2 +7439,7452,7454,7467,-0.048275862069362,0.564285714285699,-0.041379310345245,0.557142857142860,-0.041379310345245,0.571428571428537,-0.034482758621128,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285677,-0.000000000000000,2 +7440,7453,7455,7468,-0.048275862069362,0.578571428571396,-0.041379310345245,0.571428571428537,-0.041379310345245,0.585714285714255,-0.034482758621128,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285717,0.000000000000000,2 +1554,7441,7454,7469,-0.041379310345245,0.600000000000000,-0.048275862069362,0.592857142857127,-0.041379310345245,0.585714285714255,-0.034482758621128,0.592857142857127,0.000000000000000,0.013793103448234,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448234,0.014285714285745,-0.000000000000000,2 +7442,7457,7470,7931,-0.034482758621128,0.407142857142878,-0.027586206897010,0.414285714285756,-0.020689655172892,0.407142857142878,-0.027586206897010,0.400000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448237,2 +7443,7456,7458,7471,-0.034482758621128,0.421428571428633,-0.027586206897010,0.414285714285756,-0.027586206897010,0.428571428571509,-0.020689655172892,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 +7444,7457,7459,7472,-0.034482758621128,0.435714285714389,-0.027586206897010,0.428571428571509,-0.027586206897010,0.442857142857270,-0.020689655172892,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 +7445,7458,7460,7473,-0.034482758621128,0.450000000000152,-0.027586206897010,0.442857142857270,-0.027586206897010,0.457142857143034,-0.020689655172892,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285764,-0.000000000000000,2 +7446,7459,7461,7474,-0.034482758621128,0.464285714285914,-0.027586206897010,0.457142857143034,-0.027586206897010,0.471428571428794,-0.020689655172892,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 +7447,7460,7462,7475,-0.034482758621128,0.478571428571672,-0.027586206897010,0.471428571428794,-0.027586206897010,0.485714285714549,-0.020689655172892,0.478571428571672,-0.014285714285755,0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285754,-0.000000000000000,2 +7448,7461,7463,7476,-0.034482758621128,0.492857142857421,-0.027586206897010,0.485714285714549,-0.027586206897010,0.500000000000293,-0.020689655172892,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 +7449,7462,7464,7477,-0.034482758621128,0.507142857143103,-0.027586206897010,0.500000000000293,-0.027586206897010,0.514285714285913,-0.020689655172892,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,-0.000000000000000,2 +7450,7463,7465,7478,-0.034482758621128,0.521428571428709,-0.027586206897010,0.514285714285913,-0.027586206897010,0.528571428571506,-0.020689655172892,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 +7451,7464,7466,7479,-0.034482758621128,0.535714285714345,-0.027586206897010,0.528571428571506,-0.027586206897010,0.542857142857183,-0.020689655172892,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7452,7465,7467,7480,-0.034482758621128,0.550000000000022,-0.027586206897010,0.542857142857183,-0.027586206897010,0.557142857142860,-0.020689655172892,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7453,7466,7468,7481,-0.034482758621128,0.564285714285699,-0.027586206897010,0.557142857142860,-0.027586206897010,0.571428571428537,-0.020689655172892,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7454,7467,7469,7482,-0.034482758621128,0.578571428571396,-0.027586206897010,0.571428571428537,-0.027586206897010,0.585714285714255,-0.020689655172892,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,-0.000000000000000,2 +1560,7455,7468,7483,-0.027586206897010,0.600000000000000,-0.034482758621128,0.592857142857127,-0.027586206897010,0.585714285714255,-0.020689655172892,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,0.000000000000000,2 +7456,7471,7484,7917,-0.020689655172892,0.407142857142878,-0.013793103448773,0.414285714285756,-0.006896551724655,0.407142857142878,-0.013793103448773,0.400000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448237,2 +7457,7470,7472,7485,-0.020689655172892,0.421428571428633,-0.013793103448773,0.414285714285756,-0.013793103448773,0.428571428571509,-0.006896551724655,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 +7458,7471,7473,7486,-0.020689655172892,0.435714285714389,-0.013793103448773,0.428571428571509,-0.013793103448773,0.442857142857270,-0.006896551724655,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 +7459,7472,7474,7487,-0.020689655172892,0.450000000000152,-0.013793103448773,0.442857142857270,-0.013793103448773,0.457142857143034,-0.006896551724655,0.450000000000152,-0.014285714285764,0.000000000000000,0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 +7460,7473,7475,7488,-0.020689655172892,0.464285714285914,-0.013793103448773,0.457142857143034,-0.013793103448773,0.471428571428794,-0.006896551724655,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 +7461,7474,7476,7489,-0.020689655172892,0.478571428571672,-0.013793103448773,0.471428571428794,-0.013793103448773,0.485714285714549,-0.006896551724655,0.478571428571672,-0.014285714285754,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285754,0.000000000000000,2 +7462,7475,7477,7490,-0.020689655172892,0.492857142857421,-0.013793103448773,0.485714285714549,-0.013793103448773,0.500000000000293,-0.006896551724655,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 +7463,7476,7478,7491,-0.020689655172892,0.507142857143103,-0.013793103448773,0.500000000000293,-0.013793103448773,0.514285714285913,-0.006896551724655,0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,0.000000000000000,2 +7464,7477,7479,7492,-0.020689655172892,0.521428571428709,-0.013793103448773,0.514285714285913,-0.013793103448773,0.528571428571506,-0.006896551724655,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,-0.000000000000000,2 +7465,7478,7480,7493,-0.020689655172892,0.535714285714345,-0.013793103448773,0.528571428571506,-0.013793103448773,0.542857142857183,-0.006896551724655,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7466,7479,7481,7494,-0.020689655172892,0.550000000000022,-0.013793103448773,0.542857142857183,-0.013793103448773,0.557142857142860,-0.006896551724655,0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,-0.000000000000000,2 +7467,7480,7482,7495,-0.020689655172892,0.564285714285699,-0.013793103448773,0.557142857142860,-0.013793103448773,0.571428571428537,-0.006896551724655,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 +7468,7481,7483,7496,-0.020689655172892,0.578571428571396,-0.013793103448773,0.571428571428537,-0.013793103448773,0.585714285714255,-0.006896551724655,0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 +1566,7469,7482,7497,-0.013793103448773,0.600000000000000,-0.020689655172892,0.592857142857127,-0.013793103448773,0.585714285714255,-0.006896551724655,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 +7470,7485,7498,7903,-0.006896551724655,0.407142857142878,-0.000000000000518,0.414285714285756,0.006896551723618,0.407142857142878,-0.000000000000518,0.400000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448274,0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448274,2 +7471,7484,7486,7499,-0.006896551724655,0.421428571428633,-0.000000000000518,0.414285714285756,-0.000000000000518,0.428571428571509,0.006896551723618,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285753,-0.000000000000000,2 +7472,7485,7487,7500,-0.006896551724655,0.435714285714389,-0.000000000000518,0.428571428571509,-0.000000000000518,0.442857142857270,0.006896551723618,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285761,0.000000000000000,2 +7473,7486,7488,7501,-0.006896551724655,0.450000000000152,-0.000000000000518,0.442857142857270,-0.000000000000518,0.457142857143034,0.006896551723618,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285764,0.000000000000000,2 +7474,7487,7489,7502,-0.006896551724655,0.464285714285914,-0.000000000000518,0.457142857143034,-0.000000000000518,0.471428571428794,0.006896551723618,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285761,-0.000000000000000,2 +7475,7488,7490,7503,-0.006896551724655,0.478571428571672,-0.000000000000518,0.471428571428794,-0.000000000000518,0.485714285714549,0.006896551723618,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285754,0.000000000000000,2 +7476,7489,7491,7504,-0.006896551724655,0.492857142857421,-0.000000000000518,0.485714285714549,-0.000000000000518,0.500000000000293,0.006896551723618,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285744,-0.000000000000000,2 +7477,7490,7492,7505,-0.006896551724655,0.507142857143103,-0.000000000000518,0.500000000000293,-0.000000000000518,0.514285714285913,0.006896551723618,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285620,0.000000000000000,2 +7478,7491,7493,7506,-0.006896551724655,0.521428571428709,-0.000000000000518,0.514285714285913,-0.000000000000518,0.528571428571506,0.006896551723618,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285593,0.000000000000000,2 +7479,7492,7494,7507,-0.006896551724655,0.535714285714345,-0.000000000000518,0.528571428571506,-0.000000000000518,0.542857142857183,0.006896551723618,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285677,-0.000000000000000,2 +7480,7493,7495,7508,-0.006896551724655,0.550000000000022,-0.000000000000518,0.542857142857183,-0.000000000000518,0.557142857142860,0.006896551723618,0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285677,0.000000000000000,2 +7481,7494,7496,7509,-0.006896551724655,0.564285714285699,-0.000000000000518,0.557142857142860,-0.000000000000518,0.571428571428537,0.006896551723618,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285677,-0.000000000000000,2 +7482,7495,7497,7510,-0.006896551724655,0.578571428571396,-0.000000000000518,0.571428571428537,-0.000000000000518,0.585714285714255,0.006896551723618,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285717,0.000000000000000,2 +1572,7483,7496,7511,-0.000000000000518,0.600000000000000,-0.006896551724655,0.592857142857127,-0.000000000000518,0.585714285714255,0.006896551723618,0.592857142857127,0.000000000000000,0.013793103448274,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448274,0.014285714285745,-0.000000000000000,2 +7484,7499,7512,7889,0.006896551723618,0.407142857142878,0.013793103447775,0.414285714285756,0.020689655171931,0.407142857142878,0.013793103447775,0.400000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448313,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448313,2 +7485,7498,7500,7513,0.006896551723618,0.421428571428633,0.013793103447775,0.414285714285756,0.013793103447775,0.428571428571509,0.020689655171931,0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285753,-0.000000000000000,2 +7486,7499,7501,7514,0.006896551723618,0.435714285714389,0.013793103447775,0.428571428571509,0.013793103447775,0.442857142857270,0.020689655171931,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 +7487,7500,7502,7515,0.006896551723618,0.450000000000152,0.013793103447775,0.442857142857270,0.013793103447775,0.457142857143034,0.020689655171931,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285764,-0.000000000000000,2 +7488,7501,7503,7516,0.006896551723618,0.464285714285914,0.013793103447775,0.457142857143034,0.013793103447775,0.471428571428794,0.020689655171931,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 +7489,7502,7504,7517,0.006896551723618,0.478571428571672,0.013793103447775,0.471428571428794,0.013793103447775,0.485714285714549,0.020689655171931,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285754,0.000000000000000,2 +7490,7503,7505,7518,0.006896551723618,0.492857142857421,0.013793103447775,0.485714285714549,0.013793103447775,0.500000000000293,0.020689655171931,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285744,-0.000000000000000,2 +7491,7504,7506,7519,0.006896551723618,0.507142857143103,0.013793103447775,0.500000000000293,0.013793103447775,0.514285714285913,0.020689655171931,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285620,0.000000000000000,2 +7492,7505,7507,7520,0.006896551723618,0.521428571428709,0.013793103447775,0.514285714285913,0.013793103447775,0.528571428571506,0.020689655171931,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285593,0.000000000000000,2 +7493,7506,7508,7521,0.006896551723618,0.535714285714345,0.013793103447775,0.528571428571506,0.013793103447775,0.542857142857183,0.020689655171931,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 +7494,7507,7509,7522,0.006896551723618,0.550000000000022,0.013793103447775,0.542857142857183,0.013793103447775,0.557142857142860,0.020689655171931,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 +7495,7508,7510,7523,0.006896551723618,0.564285714285699,0.013793103447775,0.557142857142860,0.013793103447775,0.571428571428537,0.020689655171931,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,-0.000000000000000,2 +7496,7509,7511,7524,0.006896551723618,0.578571428571396,0.013793103447775,0.571428571428537,0.013793103447775,0.585714285714255,0.020689655171931,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285717,0.000000000000000,2 +1578,7497,7510,7525,0.013793103447775,0.600000000000000,0.006896551723618,0.592857142857127,0.013793103447775,0.585714285714255,0.020689655171931,0.592857142857127,0.000000000000000,0.013793103448313,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448313,0.014285714285745,-0.000000000000000,2 +7498,7513,7526,7875,0.020689655171931,0.407142857142878,0.027586206896088,0.414285714285756,0.034482758620245,0.407142857142878,0.027586206896088,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448314,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448314,2 +7499,7512,7514,7527,0.020689655171931,0.421428571428633,0.027586206896088,0.414285714285756,0.027586206896088,0.428571428571509,0.034482758620245,0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448314,0.014285714285753,0.000000000000000,2 +7500,7513,7515,7528,0.020689655171931,0.435714285714389,0.027586206896088,0.428571428571509,0.027586206896088,0.442857142857270,0.034482758620245,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285761,0.000000000000000,2 +7501,7514,7516,7529,0.020689655171931,0.450000000000152,0.027586206896088,0.442857142857270,0.027586206896088,0.457142857143034,0.034482758620245,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448314,0.014285714285764,-0.000000000000000,2 +7502,7515,7517,7530,0.020689655171931,0.464285714285914,0.027586206896088,0.457142857143034,0.027586206896088,0.471428571428794,0.034482758620245,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285761,0.000000000000000,2 +7503,7516,7518,7531,0.020689655171931,0.478571428571672,0.027586206896088,0.471428571428794,0.027586206896088,0.485714285714549,0.034482758620245,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285754,0.000000000000000,2 +7504,7517,7519,7532,0.020689655171931,0.492857142857421,0.027586206896088,0.485714285714549,0.027586206896088,0.500000000000293,0.034482758620245,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285744,-0.000000000000000,2 +7505,7518,7520,7533,0.020689655171931,0.507142857143103,0.027586206896088,0.500000000000293,0.027586206896088,0.514285714285913,0.034482758620245,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285620,0.000000000000000,2 +7506,7519,7521,7534,0.020689655171931,0.521428571428709,0.027586206896088,0.514285714285913,0.027586206896088,0.528571428571506,0.034482758620245,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285593,0.000000000000000,2 +7507,7520,7522,7535,0.020689655171931,0.535714285714345,0.027586206896088,0.528571428571506,0.027586206896088,0.542857142857183,0.034482758620245,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 +7508,7521,7523,7536,0.020689655171931,0.550000000000022,0.027586206896088,0.542857142857183,0.027586206896088,0.557142857142860,0.034482758620245,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 +7509,7522,7524,7537,0.020689655171931,0.564285714285699,0.027586206896088,0.557142857142860,0.027586206896088,0.571428571428537,0.034482758620245,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,-0.000000000000000,2 +7510,7523,7525,7538,0.020689655171931,0.578571428571396,0.027586206896088,0.571428571428537,0.027586206896088,0.585714285714255,0.034482758620245,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285717,0.000000000000000,2 +1584,7511,7524,7539,0.027586206896088,0.600000000000000,0.020689655171931,0.592857142857127,0.027586206896088,0.585714285714255,0.034482758620245,0.592857142857127,0.000000000000000,0.013793103448314,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448314,0.014285714285745,-0.000000000000000,2 +7512,7527,7540,7861,0.034482758620245,0.407142857142878,0.041379310344402,0.414285714285756,0.048275862068559,0.407142857142878,0.041379310344402,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448314,0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448314,2 +7513,7526,7528,7541,0.034482758620245,0.421428571428633,0.041379310344402,0.414285714285756,0.041379310344402,0.428571428571509,0.048275862068559,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285753,0.000000000000000,2 +7514,7527,7529,7542,0.034482758620245,0.435714285714389,0.041379310344402,0.428571428571509,0.041379310344402,0.442857142857270,0.048275862068559,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285761,0.000000000000000,2 +7515,7528,7530,7543,0.034482758620245,0.450000000000152,0.041379310344402,0.442857142857270,0.041379310344402,0.457142857143034,0.048275862068559,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285764,0.000000000000000,2 +7516,7529,7531,7544,0.034482758620245,0.464285714285914,0.041379310344402,0.457142857143034,0.041379310344402,0.471428571428794,0.048275862068559,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285761,-0.000000000000000,2 +7517,7530,7532,7545,0.034482758620245,0.478571428571672,0.041379310344402,0.471428571428794,0.041379310344402,0.485714285714549,0.048275862068559,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448314,0.014285714285755,0.000000000000000,2 +7518,7531,7533,7546,0.034482758620245,0.492857142857421,0.041379310344402,0.485714285714549,0.041379310344402,0.500000000000293,0.048275862068559,0.492857142857421,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285744,-0.000000000000000,2 +7519,7532,7534,7547,0.034482758620245,0.507142857143103,0.041379310344402,0.500000000000293,0.041379310344402,0.514285714285913,0.048275862068559,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285620,0.000000000000000,2 +7520,7533,7535,7548,0.034482758620245,0.521428571428709,0.041379310344402,0.514285714285913,0.041379310344402,0.528571428571506,0.048275862068559,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285593,0.000000000000000,2 +7521,7534,7536,7549,0.034482758620245,0.535714285714345,0.041379310344402,0.528571428571506,0.041379310344402,0.542857142857183,0.048275862068559,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,-0.000000000000000,2 +7522,7535,7537,7550,0.034482758620245,0.550000000000022,0.041379310344402,0.542857142857183,0.041379310344402,0.557142857142860,0.048275862068559,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 +7523,7536,7538,7551,0.034482758620245,0.564285714285699,0.041379310344402,0.557142857142860,0.041379310344402,0.571428571428537,0.048275862068559,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 +7524,7537,7539,7552,0.034482758620245,0.578571428571396,0.041379310344402,0.571428571428537,0.041379310344402,0.585714285714255,0.048275862068559,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285717,-0.000000000000000,2 +1590,7525,7538,7553,0.041379310344402,0.600000000000000,0.034482758620245,0.592857142857127,0.041379310344402,0.585714285714255,0.048275862068559,0.592857142857127,0.000000000000000,0.013793103448314,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448314,0.014285714285745,0.000000000000000,2 +7526,7541,7554,7847,0.048275862068559,0.407142857142878,0.055172413792716,0.414285714285756,0.062068965516873,0.407142857142878,0.055172413792716,0.400000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448315,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448315,2 +7527,7540,7542,7555,0.048275862068559,0.421428571428633,0.055172413792716,0.414285714285756,0.055172413792716,0.428571428571509,0.062068965516873,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285753,0.000000000000000,2 +7528,7541,7543,7556,0.048275862068559,0.435714285714389,0.055172413792716,0.428571428571509,0.055172413792716,0.442857142857270,0.062068965516873,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285761,0.000000000000000,2 +7529,7542,7544,7557,0.048275862068559,0.450000000000152,0.055172413792716,0.442857142857270,0.055172413792716,0.457142857143034,0.062068965516873,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285764,0.000000000000000,2 +7530,7543,7545,7558,0.048275862068559,0.464285714285914,0.055172413792716,0.457142857143034,0.055172413792716,0.471428571428794,0.062068965516873,0.464285714285914,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285761,-0.000000000000000,2 +7531,7544,7546,7559,0.048275862068559,0.478571428571672,0.055172413792716,0.471428571428794,0.055172413792716,0.485714285714549,0.062068965516873,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285754,0.000000000000000,2 +7532,7545,7547,7560,0.048275862068559,0.492857142857421,0.055172413792716,0.485714285714549,0.055172413792716,0.500000000000293,0.062068965516873,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285744,0.000000000000000,2 +7533,7546,7548,7561,0.048275862068559,0.507142857143103,0.055172413792716,0.500000000000293,0.055172413792716,0.514285714285913,0.062068965516873,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285620,-0.000000000000000,2 +7534,7547,7549,7562,0.048275862068559,0.521428571428709,0.055172413792716,0.514285714285913,0.055172413792716,0.528571428571506,0.062068965516873,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285593,0.000000000000000,2 +7535,7548,7550,7563,0.048275862068559,0.535714285714345,0.055172413792716,0.528571428571506,0.055172413792716,0.542857142857183,0.062068965516873,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 +7536,7549,7551,7564,0.048275862068559,0.550000000000022,0.055172413792716,0.542857142857183,0.055172413792716,0.557142857142860,0.062068965516873,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 +7537,7550,7552,7565,0.048275862068559,0.564285714285699,0.055172413792716,0.557142857142860,0.055172413792716,0.571428571428537,0.062068965516873,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,-0.000000000000000,2 +7538,7551,7553,7566,0.048275862068559,0.578571428571396,0.055172413792716,0.571428571428537,0.055172413792716,0.585714285714255,0.062068965516873,0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285717,0.000000000000000,2 +1596,7539,7552,7567,0.055172413792716,0.600000000000000,0.048275862068559,0.592857142857127,0.055172413792716,0.585714285714255,0.062068965516873,0.592857142857127,0.000000000000000,0.013793103448315,-0.014285714285745,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.014285714285745,-0.000000000000000,2 +7540,7555,7568,7833,0.062068965516873,0.407142857142878,0.068965517241032,0.414285714285756,0.075862068965190,0.407142857142878,0.068965517241032,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448317,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448317,2 +7541,7554,7556,7569,0.062068965516873,0.421428571428633,0.068965517241032,0.414285714285756,0.068965517241032,0.428571428571509,0.075862068965190,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,0.014285714285753,-0.000000000000000,2 +7542,7555,7557,7570,0.062068965516873,0.435714285714389,0.068965517241032,0.428571428571509,0.068965517241032,0.442857142857270,0.075862068965190,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285761,0.000000000000000,2 +7543,7556,7558,7571,0.062068965516873,0.450000000000152,0.068965517241032,0.442857142857270,0.068965517241032,0.457142857143034,0.075862068965190,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285764,0.000000000000000,2 +7544,7557,7559,7572,0.062068965516873,0.464285714285914,0.068965517241032,0.457142857143034,0.068965517241032,0.471428571428794,0.075862068965190,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285761,0.000000000000000,2 +7545,7558,7560,7573,0.062068965516873,0.478571428571672,0.068965517241032,0.471428571428794,0.068965517241032,0.485714285714549,0.075862068965190,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285755,0.000000000000000,2 +7546,7559,7561,7574,0.062068965516873,0.492857142857421,0.068965517241032,0.485714285714549,0.068965517241032,0.500000000000293,0.075862068965190,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285744,0.000000000000000,2 +7547,7560,7562,7575,0.062068965516873,0.507142857143103,0.068965517241032,0.500000000000293,0.068965517241032,0.514285714285913,0.075862068965190,0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285620,-0.000000000000000,2 +7548,7561,7563,7576,0.062068965516873,0.521428571428709,0.068965517241032,0.514285714285913,0.068965517241032,0.528571428571506,0.075862068965190,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285593,0.000000000000000,2 +7549,7562,7564,7577,0.062068965516873,0.535714285714345,0.068965517241032,0.528571428571506,0.068965517241032,0.542857142857183,0.075862068965190,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285677,0.000000000000000,2 +7550,7563,7565,7578,0.062068965516873,0.550000000000022,0.068965517241032,0.542857142857183,0.068965517241032,0.557142857142860,0.075862068965190,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285677,0.000000000000000,2 +7551,7564,7566,7579,0.062068965516873,0.564285714285699,0.068965517241032,0.557142857142860,0.068965517241032,0.571428571428537,0.075862068965190,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285677,0.000000000000000,2 +7552,7565,7567,7580,0.062068965516873,0.578571428571396,0.068965517241032,0.571428571428537,0.068965517241032,0.585714285714255,0.075862068965190,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285717,0.000000000000000,2 +1602,7553,7566,7581,0.068965517241032,0.600000000000000,0.062068965516873,0.592857142857127,0.068965517241032,0.585714285714255,0.075862068965190,0.592857142857127,0.000000000000000,0.013793103448317,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448317,0.014285714285745,-0.000000000000000,2 +7554,7569,7582,7819,0.075862068965190,0.407142857142878,0.082758620689347,0.414285714285756,0.089655172413504,0.407142857142878,0.082758620689347,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448314,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448314,2 +7555,7568,7570,7583,0.075862068965190,0.421428571428633,0.082758620689347,0.414285714285756,0.082758620689347,0.428571428571509,0.089655172413504,0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285753,0.000000000000000,2 +7556,7569,7571,7584,0.075862068965190,0.435714285714389,0.082758620689347,0.428571428571509,0.082758620689347,0.442857142857270,0.089655172413504,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285761,-0.000000000000000,2 +7557,7570,7572,7585,0.075862068965190,0.450000000000152,0.082758620689347,0.442857142857270,0.082758620689347,0.457142857143034,0.089655172413504,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285764,0.000000000000000,2 +7558,7571,7573,7586,0.075862068965190,0.464285714285914,0.082758620689347,0.457142857143034,0.082758620689347,0.471428571428794,0.089655172413504,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285761,0.000000000000000,2 +7559,7572,7574,7587,0.075862068965190,0.478571428571672,0.082758620689347,0.471428571428794,0.082758620689347,0.485714285714549,0.089655172413504,0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285755,0.000000000000000,2 +7560,7573,7575,7588,0.075862068965190,0.492857142857421,0.082758620689347,0.485714285714549,0.082758620689347,0.500000000000293,0.089655172413504,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285744,-0.000000000000000,2 +7561,7574,7576,7589,0.075862068965190,0.507142857143103,0.082758620689347,0.500000000000293,0.082758620689347,0.514285714285913,0.089655172413504,0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285620,0.000000000000000,2 +7562,7575,7577,7590,0.075862068965190,0.521428571428709,0.082758620689347,0.514285714285913,0.082758620689347,0.528571428571506,0.089655172413504,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285593,-0.000000000000000,2 +7563,7576,7578,7591,0.075862068965190,0.535714285714345,0.082758620689347,0.528571428571506,0.082758620689347,0.542857142857183,0.089655172413504,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 +7564,7577,7579,7592,0.075862068965190,0.550000000000022,0.082758620689347,0.542857142857183,0.082758620689347,0.557142857142860,0.089655172413504,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 +7565,7578,7580,7593,0.075862068965190,0.564285714285699,0.082758620689347,0.557142857142860,0.082758620689347,0.571428571428537,0.089655172413504,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 +7566,7579,7581,7594,0.075862068965190,0.578571428571396,0.082758620689347,0.571428571428537,0.082758620689347,0.585714285714255,0.089655172413504,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285717,-0.000000000000000,2 +1608,7567,7580,7595,0.082758620689347,0.600000000000000,0.075862068965190,0.592857142857127,0.082758620689347,0.585714285714255,0.089655172413504,0.592857142857127,0.000000000000000,0.013793103448314,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448314,0.014285714285745,0.000000000000000,2 +7568,7583,7596,7805,0.089655172413504,0.407142857142878,0.096551724137659,0.414285714285756,0.103448275861814,0.407142857142878,0.096551724137659,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448309,2 +7569,7582,7584,7597,0.089655172413504,0.421428571428633,0.096551724137659,0.414285714285756,0.096551724137659,0.428571428571509,0.103448275861814,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285753,0.000000000000000,2 +7570,7583,7585,7598,0.089655172413504,0.435714285714389,0.096551724137659,0.428571428571509,0.096551724137659,0.442857142857270,0.103448275861814,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +7571,7584,7586,7599,0.089655172413504,0.450000000000152,0.096551724137659,0.442857142857270,0.096551724137659,0.457142857143034,0.103448275861814,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 +7572,7585,7587,7600,0.089655172413504,0.464285714285914,0.096551724137659,0.457142857143034,0.096551724137659,0.471428571428794,0.103448275861814,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 +7573,7586,7588,7601,0.089655172413504,0.478571428571672,0.096551724137659,0.471428571428794,0.096551724137659,0.485714285714549,0.103448275861814,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285755,0.000000000000000,2 +7574,7587,7589,7602,0.089655172413504,0.492857142857421,0.096551724137659,0.485714285714549,0.096551724137659,0.500000000000293,0.103448275861814,0.492857142857421,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285744,0.000000000000000,2 +7575,7588,7590,7603,0.089655172413504,0.507142857143103,0.096551724137659,0.500000000000293,0.096551724137659,0.514285714285913,0.103448275861814,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285620,0.000000000000000,2 +7576,7589,7591,7604,0.089655172413504,0.521428571428709,0.096551724137659,0.514285714285913,0.096551724137659,0.528571428571506,0.103448275861814,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285593,0.000000000000000,2 +7577,7590,7592,7605,0.089655172413504,0.535714285714345,0.096551724137659,0.528571428571506,0.096551724137659,0.542857142857183,0.103448275861814,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +7578,7591,7593,7606,0.089655172413504,0.550000000000022,0.096551724137659,0.542857142857183,0.096551724137659,0.557142857142860,0.103448275861814,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +7579,7592,7594,7607,0.089655172413504,0.564285714285699,0.096551724137659,0.557142857142860,0.096551724137659,0.571428571428537,0.103448275861814,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 +7580,7593,7595,7608,0.089655172413504,0.578571428571396,0.096551724137659,0.571428571428537,0.096551724137659,0.585714285714255,0.103448275861814,0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 +1614,7581,7594,7609,0.096551724137659,0.600000000000000,0.089655172413504,0.592857142857127,0.096551724137659,0.585714285714255,0.103448275861814,0.592857142857127,0.000000000000000,0.013793103448309,-0.014285714285745,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285745,-0.000000000000000,2 +7582,7597,7610,7791,0.103448275861814,0.407142857142878,0.110344827585969,0.414285714285756,0.117241379310125,0.407142857142878,0.110344827585969,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448312,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448312,2 +7583,7596,7598,7611,0.103448275861814,0.421428571428633,0.110344827585969,0.414285714285756,0.110344827585969,0.428571428571509,0.117241379310125,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285753,0.000000000000000,2 +7584,7597,7599,7612,0.103448275861814,0.435714285714389,0.110344827585969,0.428571428571509,0.110344827585969,0.442857142857270,0.117241379310125,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285761,-0.000000000000000,2 +7585,7598,7600,7613,0.103448275861814,0.450000000000152,0.110344827585969,0.442857142857270,0.110344827585969,0.457142857143034,0.117241379310125,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285764,0.000000000000000,2 +7586,7599,7601,7614,0.103448275861814,0.464285714285914,0.110344827585969,0.457142857143034,0.110344827585969,0.471428571428794,0.117241379310125,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285761,0.000000000000000,2 +7587,7600,7602,7615,0.103448275861814,0.478571428571672,0.110344827585969,0.471428571428794,0.110344827585969,0.485714285714549,0.117241379310125,0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285754,0.000000000000000,2 +7588,7601,7603,7616,0.103448275861814,0.492857142857421,0.110344827585969,0.485714285714549,0.110344827585969,0.500000000000293,0.117241379310125,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285744,0.000000000000000,2 +7589,7602,7604,7617,0.103448275861814,0.507142857143103,0.110344827585969,0.500000000000293,0.110344827585969,0.514285714285913,0.117241379310125,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285620,0.000000000000000,2 +7590,7603,7605,7618,0.103448275861814,0.521428571428709,0.110344827585969,0.514285714285913,0.110344827585969,0.528571428571506,0.117241379310125,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285593,0.000000000000000,2 +7591,7604,7606,7619,0.103448275861814,0.535714285714345,0.110344827585969,0.528571428571506,0.110344827585969,0.542857142857183,0.117241379310125,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285677,0.000000000000000,2 +7592,7605,7607,7620,0.103448275861814,0.550000000000022,0.110344827585969,0.542857142857183,0.110344827585969,0.557142857142860,0.117241379310125,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285677,0.000000000000000,2 +7593,7606,7608,7621,0.103448275861814,0.564285714285699,0.110344827585969,0.557142857142860,0.110344827585969,0.571428571428537,0.117241379310125,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285677,0.000000000000000,2 +7594,7607,7609,7622,0.103448275861814,0.578571428571396,0.110344827585969,0.571428571428537,0.110344827585969,0.585714285714255,0.117241379310125,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285717,0.000000000000000,2 +1620,7595,7608,7623,0.110344827585969,0.600000000000000,0.103448275861814,0.592857142857127,0.110344827585969,0.585714285714255,0.117241379310125,0.592857142857127,0.000000000000000,0.013793103448312,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285745,-0.000000000000000,2 +7596,7611,7624,7777,0.117241379310125,0.407142857142878,0.124137931034281,0.414285714285756,0.131034482758436,0.407142857142878,0.124137931034281,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448311,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448311,2 +7597,7610,7612,7625,0.117241379310125,0.421428571428633,0.124137931034281,0.414285714285756,0.124137931034281,0.428571428571509,0.131034482758436,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285753,0.000000000000000,2 +7598,7611,7613,7626,0.117241379310125,0.435714285714389,0.124137931034281,0.428571428571509,0.124137931034281,0.442857142857270,0.131034482758436,0.435714285714389,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 +7599,7612,7614,7627,0.117241379310125,0.450000000000152,0.124137931034281,0.442857142857270,0.124137931034281,0.457142857143034,0.131034482758436,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285764,0.000000000000000,2 +7600,7613,7615,7628,0.117241379310125,0.464285714285914,0.124137931034281,0.457142857143034,0.124137931034281,0.471428571428794,0.131034482758436,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 +7601,7614,7616,7629,0.117241379310125,0.478571428571672,0.124137931034281,0.471428571428794,0.124137931034281,0.485714285714549,0.131034482758436,0.478571428571672,-0.014285714285754,-0.000000000000000,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285754,0.000000000000000,2 +7602,7615,7617,7630,0.117241379310125,0.492857142857421,0.124137931034281,0.485714285714549,0.124137931034281,0.500000000000293,0.131034482758436,0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 +7603,7616,7618,7631,0.117241379310125,0.507142857143103,0.124137931034281,0.500000000000293,0.124137931034281,0.514285714285913,0.131034482758436,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285620,0.000000000000000,2 +7604,7617,7619,7632,0.117241379310125,0.521428571428709,0.124137931034281,0.514285714285913,0.124137931034281,0.528571428571506,0.131034482758436,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285593,0.000000000000000,2 +7605,7618,7620,7633,0.117241379310125,0.535714285714345,0.124137931034281,0.528571428571506,0.124137931034281,0.542857142857183,0.131034482758436,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7606,7619,7621,7634,0.117241379310125,0.550000000000022,0.124137931034281,0.542857142857183,0.124137931034281,0.557142857142860,0.131034482758436,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7607,7620,7622,7635,0.117241379310125,0.564285714285699,0.124137931034281,0.557142857142860,0.124137931034281,0.571428571428537,0.131034482758436,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7608,7621,7623,7636,0.117241379310125,0.578571428571396,0.124137931034281,0.571428571428537,0.124137931034281,0.585714285714255,0.131034482758436,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285717,0.000000000000000,2 +1626,7609,7622,7637,0.124137931034281,0.600000000000000,0.117241379310125,0.592857142857127,0.124137931034281,0.585714285714255,0.131034482758436,0.592857142857127,0.000000000000000,0.013793103448311,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448311,0.014285714285745,-0.000000000000000,2 +7610,7625,7638,7763,0.131034482758436,0.407142857142878,0.137931034482591,0.414285714285756,0.144827586206747,0.407142857142878,0.137931034482591,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448311,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448311,2 +7611,7624,7626,7639,0.131034482758436,0.421428571428633,0.137931034482591,0.414285714285756,0.137931034482591,0.428571428571509,0.144827586206747,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285753,0.000000000000000,2 +7612,7625,7627,7640,0.131034482758436,0.435714285714389,0.137931034482591,0.428571428571509,0.137931034482591,0.442857142857270,0.144827586206747,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 +7613,7626,7628,7641,0.131034482758436,0.450000000000152,0.137931034482591,0.442857142857270,0.137931034482591,0.457142857143034,0.144827586206747,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285764,0.000000000000000,2 +7614,7627,7629,7642,0.131034482758436,0.464285714285914,0.137931034482591,0.457142857143034,0.137931034482591,0.471428571428794,0.144827586206747,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 +7615,7628,7630,7643,0.131034482758436,0.478571428571672,0.137931034482591,0.471428571428794,0.137931034482591,0.485714285714549,0.144827586206747,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285754,0.000000000000000,2 +7616,7629,7631,7644,0.131034482758436,0.492857142857421,0.137931034482591,0.485714285714549,0.137931034482591,0.500000000000293,0.144827586206747,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 +7617,7630,7632,7645,0.131034482758436,0.507142857143103,0.137931034482591,0.500000000000293,0.137931034482591,0.514285714285913,0.144827586206747,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285620,0.000000000000000,2 +7618,7631,7633,7646,0.131034482758436,0.521428571428709,0.137931034482591,0.514285714285913,0.137931034482591,0.528571428571506,0.144827586206747,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285593,-0.000000000000000,2 +7619,7632,7634,7647,0.131034482758436,0.535714285714345,0.137931034482591,0.528571428571506,0.137931034482591,0.542857142857183,0.144827586206747,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7620,7633,7635,7648,0.131034482758436,0.550000000000022,0.137931034482591,0.542857142857183,0.137931034482591,0.557142857142860,0.144827586206747,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7621,7634,7636,7649,0.131034482758436,0.564285714285699,0.137931034482591,0.557142857142860,0.137931034482591,0.571428571428537,0.144827586206747,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7622,7635,7637,7650,0.131034482758436,0.578571428571396,0.137931034482591,0.571428571428537,0.137931034482591,0.585714285714255,0.144827586206747,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285718,0.000000000000000,2 +1632,7623,7636,7651,0.137931034482591,0.600000000000000,0.131034482758436,0.592857142857127,0.137931034482591,0.585714285714255,0.144827586206747,0.592857142857127,0.000000000000000,0.013793103448311,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448311,0.014285714285745,-0.000000000000000,2 +7624,7639,7652,7749,0.144827586206747,0.407142857142878,0.151724137930902,0.414285714285756,0.158620689655057,0.407142857142878,0.151724137930902,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448311,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448311,2 +7625,7638,7640,7653,0.144827586206747,0.421428571428633,0.151724137930902,0.414285714285756,0.151724137930902,0.428571428571509,0.158620689655057,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285753,0.000000000000000,2 +7626,7639,7641,7654,0.144827586206747,0.435714285714389,0.151724137930902,0.428571428571509,0.151724137930902,0.442857142857270,0.158620689655057,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 +7627,7640,7642,7655,0.144827586206747,0.450000000000152,0.151724137930902,0.442857142857270,0.151724137930902,0.457142857143034,0.158620689655057,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285764,0.000000000000000,2 +7628,7641,7643,7656,0.144827586206747,0.464285714285914,0.151724137930902,0.457142857143034,0.151724137930902,0.471428571428794,0.158620689655057,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 +7629,7642,7644,7657,0.144827586206747,0.478571428571672,0.151724137930902,0.471428571428794,0.151724137930902,0.485714285714549,0.158620689655057,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285754,0.000000000000000,2 +7630,7643,7645,7658,0.144827586206747,0.492857142857421,0.151724137930902,0.485714285714549,0.151724137930902,0.500000000000293,0.158620689655057,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 +7631,7644,7646,7659,0.144827586206747,0.507142857143103,0.151724137930902,0.500000000000293,0.151724137930902,0.514285714285913,0.158620689655057,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285620,0.000000000000000,2 +7632,7645,7647,7660,0.144827586206747,0.521428571428709,0.151724137930902,0.514285714285913,0.151724137930902,0.528571428571506,0.158620689655057,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285593,0.000000000000000,2 +7633,7646,7648,7661,0.144827586206747,0.535714285714345,0.151724137930902,0.528571428571506,0.151724137930902,0.542857142857183,0.158620689655057,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7634,7647,7649,7662,0.144827586206747,0.550000000000022,0.151724137930902,0.542857142857183,0.151724137930902,0.557142857142860,0.158620689655057,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7635,7648,7650,7663,0.144827586206747,0.564285714285699,0.151724137930902,0.557142857142860,0.151724137930902,0.571428571428537,0.158620689655057,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7636,7649,7651,7664,0.144827586206747,0.578571428571396,0.151724137930902,0.571428571428537,0.151724137930902,0.585714285714255,0.158620689655057,0.578571428571396,-0.014285714285718,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285717,0.000000000000000,2 +1638,7637,7650,7665,0.151724137930902,0.600000000000000,0.144827586206747,0.592857142857127,0.151724137930902,0.585714285714255,0.158620689655057,0.592857142857127,0.000000000000000,0.013793103448311,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448311,0.014285714285745,-0.000000000000000,2 +7638,7653,7666,7735,0.158620689655057,0.407142857142878,0.165517241379213,0.414285714285756,0.172413793103368,0.407142857142878,0.165517241379213,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448311,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448311,2 +7639,7652,7654,7667,0.158620689655057,0.421428571428633,0.165517241379213,0.414285714285756,0.165517241379213,0.428571428571509,0.172413793103368,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285753,0.000000000000000,2 +7640,7653,7655,7668,0.158620689655057,0.435714285714389,0.165517241379213,0.428571428571509,0.165517241379213,0.442857142857270,0.172413793103368,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 +7641,7654,7656,7669,0.158620689655057,0.450000000000152,0.165517241379213,0.442857142857270,0.165517241379213,0.457142857143034,0.172413793103368,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285764,-0.000000000000000,2 +7642,7655,7657,7670,0.158620689655057,0.464285714285914,0.165517241379213,0.457142857143034,0.165517241379213,0.471428571428794,0.172413793103368,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 +7643,7656,7658,7671,0.158620689655057,0.478571428571672,0.165517241379213,0.471428571428794,0.165517241379213,0.485714285714549,0.172413793103368,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285755,0.000000000000000,2 +7644,7657,7659,7672,0.158620689655057,0.492857142857421,0.165517241379213,0.485714285714549,0.165517241379213,0.500000000000293,0.172413793103368,0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 +7645,7658,7660,7673,0.158620689655057,0.507142857143103,0.165517241379213,0.500000000000293,0.165517241379213,0.514285714285913,0.172413793103368,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285620,0.000000000000000,2 +7646,7659,7661,7674,0.158620689655057,0.521428571428709,0.165517241379213,0.514285714285913,0.165517241379213,0.528571428571506,0.172413793103368,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285593,0.000000000000000,2 +7647,7660,7662,7675,0.158620689655057,0.535714285714345,0.165517241379213,0.528571428571506,0.165517241379213,0.542857142857183,0.172413793103368,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7648,7661,7663,7676,0.158620689655057,0.550000000000022,0.165517241379213,0.542857142857183,0.165517241379213,0.557142857142860,0.172413793103368,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 +7649,7662,7664,7677,0.158620689655057,0.564285714285699,0.165517241379213,0.557142857142860,0.165517241379213,0.571428571428537,0.172413793103368,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,-0.000000000000000,2 +7650,7663,7665,7678,0.158620689655057,0.578571428571396,0.165517241379213,0.571428571428537,0.165517241379213,0.585714285714255,0.172413793103368,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285717,0.000000000000000,2 +1644,7651,7664,7679,0.165517241379213,0.600000000000000,0.158620689655057,0.592857142857127,0.165517241379213,0.585714285714255,0.172413793103368,0.592857142857127,0.000000000000000,0.013793103448311,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448311,0.014285714285745,-0.000000000000000,2 +7652,7667,7680,7721,0.172413793103368,0.407142857142878,0.179310344827525,0.414285714285756,0.186206896551683,0.407142857142878,0.179310344827525,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448315,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448315,2 +7653,7666,7668,7681,0.172413793103368,0.421428571428633,0.179310344827525,0.414285714285756,0.179310344827525,0.428571428571509,0.186206896551683,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285753,0.000000000000000,2 +7654,7667,7669,7682,0.172413793103368,0.435714285714389,0.179310344827525,0.428571428571509,0.179310344827525,0.442857142857270,0.186206896551683,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285761,0.000000000000000,2 +7655,7668,7670,7683,0.172413793103368,0.450000000000152,0.179310344827525,0.442857142857270,0.179310344827525,0.457142857143034,0.186206896551683,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285764,0.000000000000000,2 +7656,7669,7671,7684,0.172413793103368,0.464285714285914,0.179310344827525,0.457142857143034,0.179310344827525,0.471428571428794,0.186206896551683,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285761,0.000000000000000,2 +7657,7670,7672,7685,0.172413793103368,0.478571428571672,0.179310344827525,0.471428571428794,0.179310344827525,0.485714285714549,0.186206896551683,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285754,0.000000000000000,2 +7658,7671,7673,7686,0.172413793103368,0.492857142857421,0.179310344827525,0.485714285714549,0.179310344827525,0.500000000000293,0.186206896551683,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285744,0.000000000000000,2 +7659,7672,7674,7687,0.172413793103368,0.507142857143103,0.179310344827525,0.500000000000293,0.179310344827525,0.514285714285913,0.186206896551683,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285620,0.000000000000000,2 +7660,7673,7675,7688,0.172413793103368,0.521428571428709,0.179310344827525,0.514285714285913,0.179310344827525,0.528571428571506,0.186206896551683,0.521428571428709,-0.014285714285593,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285593,0.000000000000000,2 +7661,7674,7676,7689,0.172413793103368,0.535714285714345,0.179310344827525,0.528571428571506,0.179310344827525,0.542857142857183,0.186206896551683,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 +7662,7675,7677,7690,0.172413793103368,0.550000000000022,0.179310344827525,0.542857142857183,0.179310344827525,0.557142857142860,0.186206896551683,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 +7663,7676,7678,7691,0.172413793103368,0.564285714285699,0.179310344827525,0.557142857142860,0.179310344827525,0.571428571428537,0.186206896551683,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 +7664,7677,7679,7692,0.172413793103368,0.578571428571396,0.179310344827525,0.571428571428537,0.179310344827525,0.585714285714255,0.186206896551683,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285717,0.000000000000000,2 +1650,7665,7678,7693,0.179310344827525,0.600000000000000,0.172413793103368,0.592857142857127,0.179310344827525,0.585714285714255,0.186206896551683,0.592857142857127,0.000000000000000,0.013793103448315,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448315,0.014285714285745,-0.000000000000000,2 +6882,7666,7681,7707,0.200000000000000,0.407142857142878,0.186206896551683,0.407142857142878,0.193103448275841,0.414285714285756,0.193103448275841,0.400000000000000,0.014285714285756,0.000000000000000,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448317,0.000000000000000,-0.013793103448317,2 +6883,7667,7680,7682,0.200000000000000,0.421428571428633,0.186206896551683,0.421428571428633,0.193103448275841,0.414285714285756,0.193103448275841,0.428571428571509,0.014285714285753,-0.000000000000000,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 +6884,7668,7681,7683,0.200000000000000,0.435714285714389,0.186206896551683,0.435714285714389,0.193103448275841,0.428571428571509,0.193103448275841,0.442857142857270,0.014285714285761,-0.000000000000000,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 +6885,7669,7682,7684,0.200000000000000,0.450000000000152,0.186206896551683,0.450000000000152,0.193103448275841,0.442857142857270,0.193103448275841,0.457142857143034,0.014285714285764,-0.000000000000000,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 +6886,7670,7683,7685,0.200000000000000,0.464285714285914,0.186206896551683,0.464285714285914,0.193103448275841,0.457142857143034,0.193103448275841,0.471428571428794,0.014285714285761,-0.000000000000000,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,2 +6887,7671,7684,7686,0.200000000000000,0.478571428571672,0.186206896551683,0.478571428571672,0.193103448275841,0.471428571428794,0.193103448275841,0.485714285714549,0.014285714285754,-0.000000000000000,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,2 +6888,7672,7685,7687,0.200000000000000,0.492857142857421,0.186206896551683,0.492857142857421,0.193103448275841,0.485714285714549,0.193103448275841,0.500000000000293,0.014285714285744,-0.000000000000000,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 +6889,7673,7686,7688,0.200000000000000,0.507142857143103,0.186206896551683,0.507142857143103,0.193103448275841,0.500000000000293,0.193103448275841,0.514285714285913,0.014285714285620,-0.000000000000000,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,2 +6890,7674,7687,7689,0.200000000000000,0.521428571428709,0.186206896551683,0.521428571428709,0.193103448275841,0.514285714285913,0.193103448275841,0.528571428571506,0.014285714285593,-0.000000000000000,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 +6891,7675,7688,7690,0.200000000000000,0.535714285714345,0.186206896551683,0.535714285714345,0.193103448275841,0.528571428571506,0.193103448275841,0.542857142857183,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 +6892,7676,7689,7691,0.200000000000000,0.550000000000022,0.186206896551683,0.550000000000022,0.193103448275841,0.542857142857183,0.193103448275841,0.557142857142860,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 +6893,7677,7690,7692,0.200000000000000,0.564285714285699,0.186206896551683,0.564285714285699,0.193103448275841,0.557142857142860,0.193103448275841,0.571428571428537,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 +6894,7678,7691,7693,0.200000000000000,0.578571428571396,0.186206896551683,0.578571428571396,0.193103448275841,0.571428571428537,0.193103448275841,0.585714285714255,0.014285714285717,-0.000000000000000,-0.014285714285717,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 +1656,6895,7679,7692,0.193103448275841,0.600000000000000,0.200000000000000,0.592857142857127,0.186206896551683,0.592857142857127,0.193103448275841,0.585714285714255,-0.000000000000000,0.013793103448317,0.014285714285745,-0.000000000000000,-0.014285714285745,0.000000000000000,0.000000000000000,-0.013793103448317,2 +7695,7708,10157,11868,0.148275862068959,0.353571428571415,0.141317733990158,0.351785714285707,0.151785714285707,0.351785714285707,0.144827586206906,0.350000000000000,0.000000000000000,0.010591133004911,-0.003571428571415,0.003325123152692,0.003571428571415,-0.003571428571415,0.000000000000000,-0.010344827586188,2 +7694,7696,7709,10098,0.148275862068959,0.353571428571415,0.151724137931032,0.357142857142849,0.144642857142859,0.355357142857132,0.155357142857132,0.355357142857132,-0.000000000000000,-0.010591133004911,0.000000000000000,0.010837438423635,-0.003571428571434,0.003325123152711,0.003571428571434,-0.003571428571434,2 +7695,7697,7710,10039,0.151724137931032,0.357142857142849,0.155172413793118,0.360714285714297,0.147967980295576,0.358928571428573,0.158928571428573,0.358928571428573,-0.000000000000000,-0.010837438423635,-0.000000000000001,0.011083743842359,-0.003571428571447,0.003325123152724,0.003571428571448,-0.003571428571448,2 +7696,7698,7711,9980,0.155172413793118,0.360714285714297,0.158620689655216,0.364285714285756,0.151293103448306,0.362500000000025,0.162500000000027,0.362500000000027,0.000000000000001,-0.011083743842359,-0.000000000000002,0.011330049261083,-0.003571428571458,0.003325123152736,0.003571428571460,-0.003571428571460,2 +7697,7699,7712,9921,0.158620689655216,0.364285714285756,0.162068965517299,0.367857142857201,0.154618226601035,0.366071428571477,0.166071428571480,0.366071428571480,0.000000000000002,-0.011330049261083,-0.000000000000003,0.011576354679806,-0.003571428571444,0.003325123152722,0.003571428571445,-0.003571428571445,2 +7698,7700,7713,9862,0.162068965517299,0.367857142857201,0.165517241379370,0.371428571428632,0.157943349753751,0.369642857142915,0.169642857142918,0.369642857142918,0.000000000000003,-0.011576354679806,-0.000000000000004,0.011822660098529,-0.003571428571431,0.003325123152709,0.003571428571432,-0.003571428571432,2 +7699,7701,7714,9803,0.165517241379370,0.371428571428632,0.168965517241436,0.375000000000060,0.161268472906458,0.373214285714344,0.173214285714348,0.373214285714348,0.000000000000004,-0.011822660098529,-0.000000000000005,0.012068965517252,-0.003571428571427,0.003325123152705,0.003571428571428,-0.003571428571428,2 +7700,7702,7715,9744,0.168965517241436,0.375000000000060,0.172413793103481,0.378571428571466,0.164593596059152,0.376785714285761,0.176785714285765,0.376785714285765,0.000000000000005,-0.012068965517252,-0.000000000000004,0.012315270935975,-0.003571428571407,0.003325123152683,0.003571428571406,-0.003571428571406,2 +7701,7703,7716,9685,0.172413793103481,0.378571428571466,0.175862068965541,0.382142857142889,0.167918719211843,0.380357142857175,0.180357142857179,0.380357142857179,0.000000000000004,-0.012315270935975,-0.000000000000004,0.012561576354698,-0.003571428571422,0.003325123152698,0.003571428571422,-0.003571428571422,2 +7702,7704,7717,9626,0.175862068965541,0.382142857142889,0.179310344827613,0.385714285714322,0.171243842364547,0.383928571428604,0.183928571428607,0.383928571428607,0.000000000000004,-0.012561576354698,-0.000000000000003,0.012807881773422,-0.003571428571434,0.003325123152709,0.003571428571434,-0.003571428571434,2 +7703,7705,7718,9567,0.179310344827613,0.385714285714322,0.182758620689657,0.389285714285730,0.174568965517243,0.387500000000025,0.187500000000027,0.387500000000027,0.000000000000003,-0.012807881773422,-0.000000000000001,0.013054187192146,-0.003571428571408,0.003325123152682,0.003571428571406,-0.003571428571406,2 +7704,7706,7719,9508,0.182758620689657,0.389285714285730,0.186206896551721,0.392857142857156,0.177894088669935,0.391071428571442,0.191071428571443,0.391071428571443,0.000000000000001,-0.013054187192146,-0.000000000000000,0.013300492610871,-0.003571428571427,0.003325123152702,0.003571428571426,-0.003571428571426,2 +7705,7707,7720,9449,0.186206896551721,0.392857142857156,0.189655172413783,0.396428571428580,0.181219211822636,0.394642857142868,0.194642857142868,0.394642857142868,0.000000000000000,-0.013300492610871,0.000000000000000,0.013546798029594,-0.003571428571425,0.003325123152700,0.003571428571424,-0.003571428571424,2 +7680,7706,7721,9390,0.193103448275841,0.400000000000000,0.189655172413783,0.396428571428580,0.184544334975335,0.398214285714290,0.198214285714290,0.398214285714290,-0.000000000000000,0.013793103448317,-0.000000000000000,-0.013546798029594,-0.003571428571420,0.003325123152697,0.003571428571420,-0.003571428571420,2 +7694,7709,7722,11809,0.141317733990158,0.351785714285707,0.137684729064053,0.353571428571415,0.130849753694619,0.351785714285708,0.134482758620723,0.350000000000000,0.003571428571415,-0.003325123152692,0.000000000000000,0.010591133004901,-0.003571428571415,0.003078817733968,0.000000000000000,-0.010344827586177,2 +7695,7708,7710,7723,0.144642857142859,0.355357142857132,0.137684729064053,0.353571428571415,0.140886699507402,0.357142857142849,0.133928571428596,0.355357142857132,0.003571428571434,-0.003325123152711,-0.000000000000000,-0.010591133004901,-0.000000000000000,0.010837438423625,-0.003571428571434,0.003078817733986,2 +7696,7709,7711,7724,0.147967980295576,0.358928571428573,0.140886699507402,0.357142857142849,0.144088669950763,0.360714285714296,0.137007389162589,0.358928571428572,0.003571428571447,-0.003325123152724,0.000000000000000,-0.010837438423625,-0.000000000000000,0.011083743842350,-0.003571428571447,0.003078817733999,2 +7697,7710,7712,7725,0.151293103448306,0.362500000000025,0.144088669950763,0.360714285714296,0.147290640394137,0.364285714285753,0.140086206896594,0.362500000000024,0.003571428571458,-0.003325123152736,0.000000000000000,-0.011083743842350,-0.000000000000002,0.011330049261074,-0.003571428571456,0.003078817734012,2 +7698,7711,7713,7726,0.154618226601035,0.366071428571477,0.147290640394137,0.364285714285753,0.150492610837497,0.367857142857197,0.143165024630599,0.366071428571474,0.003571428571444,-0.003325123152722,0.000000000000002,-0.011330049261074,-0.000000000000003,0.011576354679799,-0.003571428571443,0.003078817733997,2 +7699,7712,7714,7727,0.157943349753751,0.369642857142915,0.150492610837497,0.367857142857197,0.153694581280844,0.371428571428628,0.146243842364590,0.369642857142911,0.003571428571431,-0.003325123152709,0.000000000000003,-0.011576354679799,-0.000000000000004,0.011822660098522,-0.003571428571430,0.003078817733986,2 +7700,7713,7715,7728,0.161268472906458,0.373214285714344,0.153694581280844,0.371428571428628,0.156896551724188,0.375000000000055,0.149322660098574,0.373214285714339,0.003571428571427,-0.003325123152705,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517245,-0.003571428571426,0.003078817733982,2 +7701,7714,7716,7729,0.164593596059152,0.376785714285761,0.156896551724188,0.375000000000055,0.160098522167509,0.378571428571462,0.152401477832545,0.376785714285756,0.003571428571407,-0.003325123152683,0.000000000000005,-0.012068965517245,-0.000000000000004,0.012315270935969,-0.003571428571408,0.003078817733960,2 +7702,7715,7717,7730,0.167918719211843,0.380357142857175,0.160098522167509,0.378571428571462,0.163300492610846,0.382142857142885,0.155480295566512,0.380357142857172,0.003571428571422,-0.003325123152698,0.000000000000004,-0.012315270935969,-0.000000000000004,0.012561576354693,-0.003571428571423,0.003078817733974,2 +7703,7716,7718,7731,0.171243842364547,0.383928571428604,0.163300492610846,0.382142857142885,0.166502463054192,0.385714285714319,0.158559113300491,0.383928571428600,0.003571428571434,-0.003325123152709,0.000000000000004,-0.012561576354693,-0.000000000000003,0.012807881773418,-0.003571428571435,0.003078817733984,2 +7704,7717,7719,7732,0.174568965517243,0.387500000000025,0.166502463054192,0.385714285714319,0.169704433497513,0.389285714285728,0.161637931034462,0.387500000000023,0.003571428571408,-0.003325123152682,0.000000000000003,-0.012807881773418,-0.000000000000001,0.013054187192143,-0.003571428571410,0.003078817733958,2 +7705,7718,7720,7733,0.177894088669935,0.391071428571442,0.169704433497513,0.389285714285728,0.172906403940852,0.392857142857156,0.164716748768430,0.391071428571442,0.003571428571427,-0.003325123152702,0.000000000000001,-0.013054187192143,-0.000000000000000,0.013300492610867,-0.003571428571428,0.003078817733977,2 +7706,7719,7721,7734,0.181219211822636,0.394642857142868,0.172906403940852,0.392857142857156,0.176108374384190,0.396428571428581,0.167795566502406,0.394642857142868,0.003571428571425,-0.003325123152700,0.000000000000000,-0.013300492610867,-0.000000000000000,0.013546798029592,-0.003571428571425,0.003078817733976,2 +7666,7707,7720,7735,0.179310344827525,0.400000000000000,0.184544334975335,0.398214285714290,0.176108374384190,0.396428571428581,0.170874384236381,0.398214285714290,0.000000000000000,0.013793103448315,0.003571428571420,-0.003325123152697,0.000000000000000,-0.013546798029592,-0.003571428571420,0.003078817733974,2 +7708,7723,7736,11750,0.130849753694619,0.351785714285708,0.127093596059146,0.353571428571415,0.120381773399066,0.351785714285708,0.124137931034539,0.350000000000000,0.003571428571415,-0.003078817733968,0.000000000000000,0.010591133004914,-0.003571428571415,0.002832512315246,0.000000000000000,-0.010344827586192,2 +7709,7722,7724,7737,0.133928571428596,0.355357142857132,0.127093596059146,0.353571428571415,0.130049261083771,0.357142857142849,0.123214285714321,0.355357142857132,0.003571428571434,-0.003078817733986,-0.000000000000000,-0.010591133004914,0.000000000000000,0.010837438423637,-0.003571428571434,0.002832512315264,2 +7710,7723,7725,7738,0.137007389162589,0.358928571428572,0.130049261083771,0.357142857142849,0.133004926108408,0.360714285714295,0.126046798029590,0.358928571428572,0.003571428571447,-0.003078817733999,-0.000000000000000,-0.010837438423637,-0.000000000000001,0.011083743842360,-0.003571428571446,0.002832512315275,2 +7711,7724,7726,7739,0.140086206896594,0.362500000000024,0.133004926108408,0.360714285714295,0.135960591133059,0.364285714285751,0.128879310344873,0.362500000000022,0.003571428571456,-0.003078817734012,0.000000000000001,-0.011083743842360,-0.000000000000002,0.011330049261083,-0.003571428571455,0.002832512315289,2 +7712,7725,7727,7740,0.143165024630599,0.366071428571474,0.135960591133059,0.364285714285751,0.138916256157694,0.367857142857194,0.131711822660154,0.366071428571471,0.003571428571443,-0.003078817733997,0.000000000000002,-0.011330049261083,-0.000000000000003,0.011576354679806,-0.003571428571443,0.002832512315274,2 +7713,7726,7728,7741,0.146243842364590,0.369642857142911,0.138916256157694,0.367857142857194,0.141871921182319,0.371428571428624,0.134544334975423,0.369642857142907,0.003571428571430,-0.003078817733986,0.000000000000003,-0.011576354679806,-0.000000000000004,0.011822660098528,-0.003571428571430,0.002832512315263,2 +7714,7727,7729,7742,0.149322660098574,0.373214285714339,0.141871921182319,0.371428571428624,0.144827586206940,0.375000000000050,0.137376847290685,0.373214285714334,0.003571428571426,-0.003078817733982,0.000000000000004,-0.011822660098528,-0.000000000000005,0.012068965517250,-0.003571428571425,0.002832512315260,2 +7715,7728,7730,7743,0.152401477832545,0.376785714285756,0.144827586206940,0.375000000000050,0.147783251231539,0.378571428571458,0.140209359605934,0.376785714285751,0.003571428571408,-0.003078817733960,0.000000000000005,-0.012068965517250,-0.000000000000004,0.012315270935973,-0.003571428571409,0.002832512315238,2 +7716,7729,7731,7744,0.155480295566512,0.380357142857172,0.147783251231539,0.378571428571458,0.150738916256152,0.382142857142881,0.143041871921178,0.380357142857168,0.003571428571423,-0.003078817733974,0.000000000000004,-0.012315270935973,-0.000000000000004,0.012561576354695,-0.003571428571424,0.002832512315252,2 +7717,7730,7732,7745,0.158559113300491,0.383928571428600,0.150738916256152,0.382142857142881,0.153694581280774,0.385714285714316,0.145874384236434,0.383928571428597,0.003571428571435,-0.003078817733984,0.000000000000004,-0.012561576354695,-0.000000000000003,0.012807881773419,-0.003571428571435,0.002832512315261,2 +7718,7731,7733,7746,0.161637931034462,0.387500000000023,0.153694581280774,0.385714285714316,0.156650246305370,0.389285714285727,0.148706896551682,0.387500000000020,0.003571428571410,-0.003078817733958,0.000000000000003,-0.012807881773419,-0.000000000000001,0.013054187192142,-0.003571428571412,0.002832512315235,2 +7719,7732,7734,7747,0.164716748768430,0.391071428571442,0.156650246305370,0.389285714285727,0.159605911329986,0.392857142857155,0.151539408866926,0.391071428571441,0.003571428571428,-0.003078817733977,0.000000000000001,-0.013054187192142,-0.000000000000000,0.013300492610865,-0.003571428571429,0.002832512315254,2 +7720,7733,7735,7748,0.167795566502406,0.394642857142868,0.159605911329986,0.392857142857155,0.162561576354600,0.396428571428581,0.154371921182179,0.394642857142868,0.003571428571425,-0.003078817733976,0.000000000000000,-0.013300492610865,0.000000000000000,0.013546798029588,-0.003571428571425,0.002832512315253,2 +7652,7721,7734,7749,0.165517241379213,0.400000000000000,0.170874384236381,0.398214285714290,0.162561576354600,0.396428571428581,0.157204433497432,0.398214285714290,0.000000000000000,0.013793103448311,0.003571428571420,-0.003078817733974,-0.000000000000000,-0.013546798029588,-0.003571428571419,0.002832512315251,2 +7722,7737,7750,11691,0.120381773399066,0.351785714285708,0.116502463054238,0.353571428571416,0.109913793103525,0.351785714285708,0.113793103448353,0.350000000000000,0.003571428571415,-0.002832512315246,0.000000000000000,0.010591133004902,-0.003571428571416,0.002586206896523,0.000000000000000,-0.010344827586179,2 +7723,7736,7738,7751,0.123214285714321,0.355357142857132,0.116502463054238,0.353571428571416,0.119211822660140,0.357142857142849,0.112500000000057,0.355357142857132,0.003571428571434,-0.002832512315264,-0.000000000000000,-0.010591133004902,-0.000000000000000,0.010837438423626,-0.003571428571433,0.002586206896540,2 +7724,7737,7739,7752,0.126046798029590,0.358928571428572,0.119211822660140,0.357142857142849,0.121921182266053,0.360714285714295,0.115086206896602,0.358928571428572,0.003571428571446,-0.002832512315275,0.000000000000000,-0.010837438423626,-0.000000000000001,0.011083743842350,-0.003571428571445,0.002586206896551,2 +7725,7738,7740,7753,0.128879310344873,0.362500000000022,0.121921182266053,0.360714285714295,0.124630541871980,0.364285714285748,0.117672413793160,0.362500000000021,0.003571428571455,-0.002832512315289,0.000000000000001,-0.011083743842350,-0.000000000000002,0.011330049261074,-0.003571428571453,0.002586206896565,2 +7726,7739,7741,7754,0.131711822660154,0.366071428571471,0.124630541871980,0.364285714285748,0.127339901477892,0.367857142857191,0.120258620689718,0.366071428571468,0.003571428571443,-0.002832512315274,0.000000000000002,-0.011330049261074,-0.000000000000003,0.011576354679798,-0.003571428571442,0.002586206896550,2 +7727,7740,7742,7755,0.134544334975423,0.369642857142907,0.127339901477892,0.367857142857191,0.130049261083794,0.371428571428620,0.122844827586263,0.369642857142903,0.003571428571430,-0.002832512315263,0.000000000000003,-0.011576354679798,-0.000000000000004,0.011822660098521,-0.003571428571429,0.002586206896540,2 +7728,7741,7743,7756,0.137376847290685,0.373214285714334,0.130049261083794,0.371428571428620,0.132758620689693,0.375000000000045,0.125431034482802,0.373214285714330,0.003571428571425,-0.002832512315260,0.000000000000004,-0.011822660098521,-0.000000000000005,0.012068965517244,-0.003571428571425,0.002586206896537,2 +7729,7742,7744,7757,0.140209359605934,0.376785714285751,0.132758620689693,0.375000000000045,0.135467980295569,0.378571428571454,0.128017241379328,0.376785714285747,0.003571428571409,-0.002832512315238,0.000000000000005,-0.012068965517244,-0.000000000000004,0.012315270935967,-0.003571428571410,0.002586206896515,2 +7730,7743,7745,7758,0.143041871921178,0.380357142857168,0.135467980295569,0.378571428571454,0.138177339901458,0.382142857142877,0.130603448275849,0.380357142857164,0.003571428571424,-0.002832512315252,0.000000000000004,-0.012315270935967,-0.000000000000004,0.012561576354691,-0.003571428571424,0.002586206896528,2 +7731,7744,7746,7759,0.145874384236434,0.383928571428597,0.138177339901458,0.382142857142877,0.140886699507357,0.385714285714313,0.133189655172381,0.383928571428593,0.003571428571435,-0.002832512315261,0.000000000000004,-0.012561576354691,-0.000000000000003,0.012807881773415,-0.003571428571436,0.002586206896536,2 +7732,7745,7747,7760,0.148706896551682,0.387500000000020,0.140886699507357,0.385714285714313,0.143596059113229,0.389285714285726,0.135775862068904,0.387500000000018,0.003571428571412,-0.002832512315235,0.000000000000003,-0.012807881773415,-0.000000000000001,0.013054187192139,-0.003571428571414,0.002586206896511,2 +7733,7746,7748,7761,0.151539408866926,0.391071428571441,0.143596059113229,0.389285714285726,0.146305418719121,0.392857142857155,0.138362068965424,0.391071428571440,0.003571428571429,-0.002832512315254,0.000000000000001,-0.013054187192139,-0.000000000000000,0.013300492610864,-0.003571428571430,0.002586206896529,2 +7734,7747,7749,7762,0.154371921182179,0.394642857142868,0.146305418719121,0.392857142857155,0.149014778325012,0.396428571428581,0.140948275861954,0.394642857142868,0.003571428571425,-0.002832512315253,0.000000000000000,-0.013300492610864,0.000000000000000,0.013546798029588,-0.003571428571426,0.002586206896529,2 +7638,7735,7748,7763,0.151724137930902,0.400000000000000,0.157204433497432,0.398214285714290,0.149014778325012,0.396428571428581,0.143534482758482,0.398214285714290,0.000000000000000,0.013793103448311,0.003571428571419,-0.002832512315251,-0.000000000000000,-0.013546798029588,-0.003571428571419,0.002586206896528,2 +7736,7751,7764,11632,0.109913793103525,0.351785714285708,0.105911330049337,0.353571428571416,0.099445812807986,0.351785714285708,0.103448275862175,0.350000000000000,0.003571428571416,-0.002586206896523,0.000000000000000,0.010591133004900,-0.003571428571416,0.002339901477800,0.000000000000000,-0.010344827586177,2 +7737,7750,7752,7765,0.112500000000057,0.355357142857132,0.105911330049337,0.353571428571416,0.108374384236514,0.357142857142849,0.101785714285794,0.355357142857133,0.003571428571433,-0.002586206896540,-0.000000000000000,-0.010591133004900,0.000000000000000,0.010837438423624,-0.003571428571433,0.002339901477816,2 +7738,7751,7753,7766,0.115086206896602,0.358928571428572,0.108374384236514,0.357142857142849,0.110837438423703,0.360714285714294,0.104125615763615,0.358928571428571,0.003571428571445,-0.002586206896551,-0.000000000000000,-0.010837438423624,-0.000000000000001,0.011083743842349,-0.003571428571445,0.002339901477827,2 +7739,7752,7754,7767,0.117672413793160,0.362500000000021,0.110837438423703,0.360714285714294,0.113300492610906,0.364285714285746,0.106465517241449,0.362500000000019,0.003571428571453,-0.002586206896565,0.000000000000001,-0.011083743842349,-0.000000000000002,0.011330049261073,-0.003571428571451,0.002339901477841,2 +7740,7753,7755,7768,0.120258620689718,0.366071428571468,0.113300492610906,0.364285714285746,0.115763546798094,0.367857142857187,0.108805418719283,0.366071428571465,0.003571428571442,-0.002586206896550,0.000000000000002,-0.011330049261073,-0.000000000000003,0.011576354679797,-0.003571428571441,0.002339901477826,2 +7741,7754,7756,7769,0.122844827586263,0.369642857142903,0.115763546798094,0.367857142857187,0.118226600985273,0.371428571428616,0.111145320197104,0.369642857142900,0.003571428571429,-0.002586206896540,0.000000000000003,-0.011576354679797,-0.000000000000004,0.011822660098520,-0.003571428571428,0.002339901477817,2 +7742,7755,7757,7770,0.125431034482802,0.373214285714330,0.118226600985273,0.371428571428616,0.120689655172449,0.375000000000040,0.113485221674920,0.373214285714325,0.003571428571425,-0.002586206896537,0.000000000000004,-0.011822660098520,-0.000000000000005,0.012068965517243,-0.003571428571424,0.002339901477814,2 +7743,7756,7758,7771,0.128017241379328,0.376785714285747,0.120689655172449,0.375000000000040,0.123152709359602,0.378571428571450,0.115825123152723,0.376785714285742,0.003571428571410,-0.002586206896515,0.000000000000005,-0.012068965517243,-0.000000000000004,0.012315270935966,-0.003571428571410,0.002339901477792,2 +7744,7757,7759,7772,0.130603448275849,0.380357142857164,0.123152709359602,0.378571428571450,0.125615763546768,0.382142857142874,0.118165024630521,0.380357142857160,0.003571428571424,-0.002586206896528,0.000000000000004,-0.012315270935966,-0.000000000000004,0.012561576354690,-0.003571428571425,0.002339901477804,2 +7745,7758,7760,7773,0.133189655172381,0.383928571428593,0.125615763546768,0.382142857142874,0.128078817733942,0.385714285714310,0.120504926108328,0.383928571428590,0.003571428571436,-0.002586206896536,0.000000000000004,-0.012561576354690,-0.000000000000003,0.012807881773415,-0.003571428571436,0.002339901477811,2 +7746,7759,7761,7774,0.135775862068904,0.387500000000018,0.128078817733942,0.385714285714310,0.130541871921090,0.389285714285725,0.122844827586127,0.387500000000016,0.003571428571414,-0.002586206896511,0.000000000000003,-0.012807881773415,-0.000000000000001,0.013054187192139,-0.003571428571416,0.002339901477786,2 +7747,7760,7762,7775,0.138362068965424,0.391071428571440,0.130541871921090,0.389285714285725,0.133004926108257,0.392857142857155,0.125184729063923,0.391071428571439,0.003571428571430,-0.002586206896529,0.000000000000001,-0.013054187192139,-0.000000000000000,0.013300492610864,-0.003571428571431,0.002339901477805,2 +7748,7761,7763,7776,0.140948275861954,0.394642857142868,0.133004926108257,0.392857142857155,0.135467980295424,0.396428571428581,0.127524630541728,0.394642857142868,0.003571428571426,-0.002586206896529,0.000000000000000,-0.013300492610864,0.000000000000000,0.013546798029588,-0.003571428571426,0.002339901477805,2 +7624,7749,7762,7777,0.137931034482591,0.400000000000000,0.143534482758482,0.398214285714290,0.135467980295424,0.396428571428581,0.129864532019533,0.398214285714290,0.000000000000000,0.013793103448311,0.003571428571419,-0.002586206896528,-0.000000000000000,-0.013546798029588,-0.003571428571419,0.002339901477805,2 +7750,7765,7778,11573,0.099445812807986,0.351785714285708,0.095320197044436,0.353571428571416,0.088977832512447,0.351785714285708,0.093103448275998,0.350000000000000,0.003571428571416,-0.002339901477800,0.000000000000000,0.010591133004900,-0.003571428571416,0.002093596059077,0.000000000000000,-0.010344827586177,2 +7751,7764,7766,7779,0.101785714285794,0.355357142857133,0.095320197044436,0.353571428571416,0.097536945812890,0.357142857142849,0.091071428571532,0.355357142857133,0.003571428571433,-0.002339901477816,-0.000000000000000,-0.010591133004900,-0.000000000000000,0.010837438423624,-0.003571428571433,0.002093596059092,2 +7752,7765,7767,7780,0.104125615763615,0.358928571428571,0.097536945812890,0.357142857142849,0.099753694581354,0.360714285714293,0.093165024630629,0.358928571428571,0.003571428571445,-0.002339901477827,0.000000000000000,-0.010837438423624,-0.000000000000001,0.011083743842349,-0.003571428571444,0.002093596059102,2 +7753,7766,7768,7781,0.106465517241449,0.362500000000019,0.099753694581354,0.360714285714293,0.101970443349833,0.364285714285743,0.095258620689738,0.362500000000018,0.003571428571451,-0.002339901477841,0.000000000000001,-0.011083743842349,-0.000000000000003,0.011330049261073,-0.003571428571449,0.002093596059117,2 +7754,7767,7769,7782,0.108805418719283,0.366071428571465,0.101970443349833,0.364285714285743,0.104187192118297,0.367857142857184,0.097352216748848,0.366071428571462,0.003571428571441,-0.002339901477826,0.000000000000003,-0.011330049261073,-0.000000000000003,0.011576354679797,-0.003571428571440,0.002093596059102,2 +7755,7768,7770,7783,0.111145320197104,0.369642857142900,0.104187192118297,0.367857142857184,0.106403940886753,0.371428571428611,0.099445812807945,0.369642857142896,0.003571428571428,-0.002339901477817,0.000000000000003,-0.011576354679797,-0.000000000000004,0.011822660098520,-0.003571428571427,0.002093596059094,2 +7756,7769,7771,7784,0.113485221674920,0.373214285714325,0.106403940886753,0.371428571428611,0.108620689655205,0.375000000000035,0.101539408867038,0.373214285714321,0.003571428571424,-0.002339901477814,0.000000000000004,-0.011822660098520,-0.000000000000005,0.012068965517243,-0.003571428571423,0.002093596059091,2 +7757,7770,7772,7785,0.115825123152723,0.376785714285742,0.108620689655205,0.375000000000035,0.110837438423636,0.378571428571445,0.103633004926118,0.376785714285738,0.003571428571410,-0.002339901477792,0.000000000000005,-0.012068965517243,-0.000000000000004,0.012315270935966,-0.003571428571411,0.002093596059069,2 +7758,7771,7773,7786,0.118165024630521,0.380357142857160,0.110837438423636,0.378571428571445,0.113054187192078,0.382142857142870,0.105726600985193,0.380357142857156,0.003571428571425,-0.002339901477804,0.000000000000004,-0.012315270935966,-0.000000000000004,0.012561576354690,-0.003571428571425,0.002093596059080,2 +7759,7772,7774,7787,0.120504926108328,0.383928571428590,0.113054187192078,0.382142857142870,0.115270935960527,0.385714285714306,0.107820197044276,0.383928571428587,0.003571428571436,-0.002339901477811,0.000000000000004,-0.012561576354690,-0.000000000000003,0.012807881773415,-0.003571428571437,0.002093596059087,2 +7760,7773,7775,7788,0.122844827586127,0.387500000000016,0.115270935960527,0.385714285714306,0.117487684728951,0.389285714285723,0.109913793103350,0.387500000000014,0.003571428571416,-0.002339901477786,0.000000000000003,-0.012807881773415,-0.000000000000001,0.013054187192139,-0.003571428571418,0.002093596059062,2 +7761,7774,7776,7789,0.125184729063923,0.391071428571439,0.117487684728951,0.389285714285723,0.119704433497394,0.392857142857154,0.112007389162422,0.391071428571438,0.003571428571431,-0.002339901477805,0.000000000000001,-0.013054187192139,-0.000000000000000,0.013300492610864,-0.003571428571431,0.002093596059080,2 +7762,7775,7777,7790,0.127524630541728,0.394642857142868,0.119704433497394,0.392857142857154,0.121921182265837,0.396428571428581,0.114100985221502,0.394642857142868,0.003571428571426,-0.002339901477805,0.000000000000000,-0.013300492610864,0.000000000000000,0.013546798029588,-0.003571428571427,0.002093596059081,2 +7610,7763,7776,7791,0.124137931034281,0.400000000000000,0.129864532019533,0.398214285714290,0.121921182265837,0.396428571428581,0.116194581280584,0.398214285714290,0.000000000000000,0.013793103448311,0.003571428571419,-0.002339901477805,-0.000000000000000,-0.013546798029588,-0.003571428571419,0.002093596059082,2 +7764,7779,7792,11514,0.088977832512447,0.351785714285708,0.084729064039536,0.353571428571416,0.078509852216908,0.351785714285708,0.082758620689820,0.350000000000000,0.003571428571416,-0.002093596059077,0.000000000000000,0.010591133004901,-0.003571428571417,0.001847290640354,0.000000000000000,-0.010344827586177,2 +7765,7778,7780,7793,0.091071428571532,0.355357142857133,0.084729064039536,0.353571428571416,0.086699507389265,0.357142857142849,0.080357142857269,0.355357142857133,0.003571428571433,-0.002093596059092,-0.000000000000000,-0.010591133004901,0.000000000000000,0.010837438423625,-0.003571428571433,0.001847290640368,2 +7766,7779,7781,7794,0.093165024630629,0.358928571428571,0.086699507389265,0.357142857142849,0.088669950739005,0.360714285714293,0.082204433497642,0.358928571428571,0.003571428571444,-0.002093596059102,-0.000000000000000,-0.010837438423625,-0.000000000000000,0.011083743842349,-0.003571428571443,0.001847290640378,2 +7767,7780,7782,7795,0.095258620689738,0.362500000000018,0.088669950739005,0.360714285714293,0.090640394088760,0.364285714285741,0.084051724138027,0.362500000000016,0.003571428571449,-0.002093596059117,0.000000000000000,-0.011083743842349,-0.000000000000002,0.011330049261073,-0.003571428571447,0.001847290640393,2 +7768,7781,7783,7796,0.097352216748848,0.366071428571462,0.090640394088760,0.364285714285741,0.092610837438500,0.367857142857181,0.085899014778412,0.366071428571459,0.003571428571440,-0.002093596059102,0.000000000000002,-0.011330049261073,-0.000000000000003,0.011576354679797,-0.003571428571439,0.001847290640378,2 +7769,7782,7784,7797,0.099445812807945,0.369642857142896,0.092610837438500,0.367857142857181,0.094581280788232,0.371428571428607,0.087746305418786,0.369642857142892,0.003571428571427,-0.002093596059094,0.000000000000003,-0.011576354679797,-0.000000000000004,0.011822660098521,-0.003571428571426,0.001847290640371,2 +7770,7783,7785,7798,0.101539408867038,0.373214285714321,0.094581280788232,0.371428571428607,0.096551724137962,0.375000000000030,0.089593596059156,0.373214285714316,0.003571428571423,-0.002093596059091,0.000000000000004,-0.011822660098521,-0.000000000000005,0.012068965517244,-0.003571428571422,0.001847290640368,2 +7771,7784,7786,7799,0.103633004926118,0.376785714285738,0.096551724137962,0.375000000000030,0.098522167487669,0.378571428571441,0.091440886699513,0.376785714285733,0.003571428571411,-0.002093596059069,0.000000000000005,-0.012068965517244,-0.000000000000004,0.012315270935967,-0.003571428571412,0.001847290640345,2 +7772,7785,7787,7800,0.105726600985193,0.380357142857156,0.098522167487669,0.378571428571441,0.100492610837387,0.382142857142866,0.093288177339864,0.380357142857152,0.003571428571425,-0.002093596059080,0.000000000000004,-0.012315270935967,-0.000000000000004,0.012561576354691,-0.003571428571425,0.001847290640356,2 +7773,7786,7788,7801,0.107820197044276,0.383928571428587,0.100492610837387,0.382142857142866,0.102463054187112,0.385714285714303,0.095135467980223,0.383928571428583,0.003571428571437,-0.002093596059087,0.000000000000004,-0.012561576354691,-0.000000000000003,0.012807881773416,-0.003571428571437,0.001847290640362,2 +7774,7787,7789,7802,0.109913793103350,0.387500000000014,0.102463054187112,0.385714285714303,0.104433497536811,0.389285714285722,0.096982758620573,0.387500000000012,0.003571428571418,-0.002093596059062,0.000000000000003,-0.012807881773416,-0.000000000000001,0.013054187192140,-0.003571428571420,0.001847290640338,2 +7775,7788,7790,7803,0.112007389162422,0.391071428571438,0.104433497536811,0.389285714285722,0.106403940886530,0.392857142857154,0.098830049260919,0.391071428571438,0.003571428571431,-0.002093596059080,0.000000000000001,-0.013054187192140,-0.000000000000000,0.013300492610864,-0.003571428571432,0.001847290640356,2 +7776,7789,7791,7804,0.114100985221502,0.394642857142868,0.106403940886530,0.392857142857154,0.108374384236249,0.396428571428581,0.100677339901276,0.394642857142867,0.003571428571427,-0.002093596059081,0.000000000000000,-0.013300492610864,0.000000000000000,0.013546798029589,-0.003571428571427,0.001847290640357,2 +7596,7777,7790,7805,0.110344827585969,0.400000000000000,0.116194581280584,0.398214285714290,0.108374384236249,0.396428571428581,0.102524630541634,0.398214285714291,0.000000000000000,0.013793103448312,0.003571428571419,-0.002093596059082,-0.000000000000000,-0.013546798029589,-0.003571428571419,0.001847290640359,2 +7778,7793,7806,11455,0.078509852216908,0.351785714285708,0.074137931034635,0.353571428571417,0.068041871921370,0.351785714285708,0.072413793103643,0.350000000000000,0.003571428571417,-0.001847290640354,0.000000000000000,0.010591133004900,-0.003571428571417,0.001600985221631,0.000000000000000,-0.010344827586177,2 +7779,7792,7794,7807,0.080357142857269,0.355357142857133,0.074137931034635,0.353571428571417,0.075862068965641,0.357142857142849,0.069642857143007,0.355357142857133,0.003571428571433,-0.001847290640368,-0.000000000000000,-0.010591133004900,0.000000000000000,0.010837438423624,-0.003571428571432,0.001600985221644,2 +7780,7793,7795,7808,0.082204433497642,0.358928571428571,0.075862068965641,0.357142857142849,0.077586206896656,0.360714285714292,0.071243842364655,0.358928571428571,0.003571428571443,-0.001847290640378,-0.000000000000000,-0.010837438423624,-0.000000000000001,0.011083743842349,-0.003571428571443,0.001600985221653,2 +7781,7794,7796,7809,0.084051724138027,0.362500000000016,0.077586206896656,0.360714285714292,0.079310344827687,0.364285714285738,0.072844827586316,0.362500000000015,0.003571428571447,-0.001847290640393,0.000000000000001,-0.011083743842349,-0.000000000000002,0.011330049261073,-0.003571428571445,0.001600985221669,2 +7782,7795,7797,7810,0.085899014778412,0.366071428571459,0.079310344827687,0.364285714285738,0.081034482758703,0.367857142857177,0.074445812807977,0.366071428571456,0.003571428571439,-0.001847290640378,0.000000000000002,-0.011330049261073,-0.000000000000003,0.011576354679797,-0.003571428571438,0.001600985221654,2 +7783,7796,7798,7811,0.087746305418786,0.369642857142892,0.081034482758703,0.367857142857177,0.082758620689712,0.371428571428603,0.076046798029628,0.369642857142888,0.003571428571426,-0.001847290640371,0.000000000000003,-0.011576354679797,-0.000000000000004,0.011822660098520,-0.003571428571425,0.001600985221648,2 +7784,7797,7799,7812,0.089593596059156,0.373214285714316,0.082758620689712,0.371428571428603,0.084482758620719,0.375000000000024,0.077647783251275,0.373214285714311,0.003571428571422,-0.001847290640368,0.000000000000004,-0.011822660098520,-0.000000000000005,0.012068965517243,-0.003571428571421,0.001600985221646,2 +7785,7798,7800,7813,0.091440886699513,0.376785714285733,0.084482758620719,0.375000000000024,0.086206896551703,0.378571428571437,0.079248768472909,0.376785714285728,0.003571428571412,-0.001847290640345,0.000000000000005,-0.012068965517243,-0.000000000000004,0.012315270935966,-0.003571428571413,0.001600985221622,2 +7786,7799,7801,7814,0.093288177339864,0.380357142857152,0.086206896551703,0.378571428571437,0.087931034482697,0.382142857142863,0.080849753694536,0.380357142857148,0.003571428571425,-0.001847290640356,0.000000000000004,-0.012315270935966,-0.000000000000004,0.012561576354689,-0.003571428571426,0.001600985221633,2 +7787,7800,7802,7815,0.095135467980223,0.383928571428583,0.087931034482697,0.382142857142863,0.089655172413697,0.385714285714300,0.082450738916171,0.383928571428580,0.003571428571437,-0.001847290640362,0.000000000000004,-0.012561576354689,-0.000000000000003,0.012807881773414,-0.003571428571438,0.001600985221637,2 +7788,7801,7803,7816,0.096982758620573,0.387500000000012,0.089655172413697,0.385714285714300,0.091379310344672,0.389285714285721,0.084051724137796,0.387500000000009,0.003571428571420,-0.001847290640338,0.000000000000003,-0.012807881773414,-0.000000000000001,0.013054187192138,-0.003571428571421,0.001600985221614,2 +7789,7802,7804,7817,0.098830049260919,0.391071428571438,0.091379310344672,0.389285714285721,0.093103448275666,0.392857142857153,0.085652709359419,0.391071428571437,0.003571428571432,-0.001847290640356,0.000000000000001,-0.013054187192138,-0.000000000000000,0.013300492610863,-0.003571428571433,0.001600985221631,2 +7790,7803,7805,7818,0.100677339901276,0.394642857142867,0.093103448275666,0.392857142857153,0.094827586206661,0.396428571428581,0.087253694581051,0.394642857142867,0.003571428571427,-0.001847290640357,0.000000000000000,-0.013300492610863,-0.000000000000000,0.013546798029587,-0.003571428571428,0.001600985221633,2 +7582,7791,7804,7819,0.096551724137659,0.400000000000000,0.102524630541634,0.398214285714291,0.094827586206661,0.396428571428581,0.088854679802686,0.398214285714291,0.000000000000000,0.013793103448309,0.003571428571419,-0.001847290640359,0.000000000000000,-0.013546798029587,-0.003571428571419,0.001600985221636,2 +7792,7807,7820,11396,0.068041871921370,0.351785714285708,0.063546798029735,0.353571428571417,0.057573891625831,0.351785714285709,0.062068965517465,0.350000000000000,0.003571428571417,-0.001600985221631,0.000000000000000,0.010591133004901,-0.003571428571417,0.001354679802907,0.000000000000000,-0.010344827586177,2 +7793,7806,7808,7821,0.069642857143007,0.355357142857133,0.063546798029735,0.353571428571417,0.065024630542016,0.357142857142849,0.058928571428744,0.355357142857133,0.003571428571432,-0.001600985221644,-0.000000000000000,-0.010591133004901,0.000000000000000,0.010837438423625,-0.003571428571432,0.001354679802920,2 +7794,7807,7809,7822,0.071243842364655,0.358928571428571,0.065024630542016,0.357142857142849,0.066502463054307,0.360714285714292,0.060283251231668,0.358928571428570,0.003571428571443,-0.001600985221653,-0.000000000000000,-0.010837438423625,-0.000000000000001,0.011083743842350,-0.003571428571442,0.001354679802928,2 +7795,7808,7810,7823,0.072844827586316,0.362500000000015,0.066502463054307,0.360714285714292,0.067980295566614,0.364285714285736,0.061637931034605,0.362500000000013,0.003571428571445,-0.001600985221669,0.000000000000001,-0.011083743842350,-0.000000000000003,0.011330049261074,-0.003571428571443,0.001354679802945,2 +7796,7809,7811,7824,0.074445812807977,0.366071428571456,0.067980295566614,0.364285714285736,0.069458128078905,0.367857142857174,0.062992610837541,0.366071428571453,0.003571428571438,-0.001600985221654,0.000000000000003,-0.011330049261074,-0.000000000000003,0.011576354679798,-0.003571428571438,0.001354679802929,2 +7797,7810,7812,7825,0.076046798029628,0.369642857142888,0.069458128078905,0.367857142857174,0.070935960591191,0.371428571428599,0.064347290640468,0.369642857142884,0.003571428571425,-0.001600985221648,0.000000000000003,-0.011576354679798,-0.000000000000004,0.011822660098522,-0.003571428571424,0.001354679802924,2 +7798,7811,7813,7826,0.077647783251275,0.373214285714311,0.070935960591191,0.371428571428599,0.072413793103475,0.375000000000019,0.065701970443391,0.373214285714307,0.003571428571421,-0.001600985221646,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517245,-0.003571428571420,0.001354679802922,2 +7799,7812,7814,7827,0.079248768472909,0.376785714285728,0.072413793103475,0.375000000000019,0.073891625615736,0.378571428571433,0.067056650246302,0.376785714285724,0.003571428571413,-0.001600985221622,0.000000000000005,-0.012068965517245,-0.000000000000004,0.012315270935968,-0.003571428571414,0.001354679802899,2 +7800,7813,7815,7828,0.080849753694536,0.380357142857148,0.073891625615736,0.378571428571433,0.075369458128006,0.382142857142859,0.068411330049206,0.380357142857144,0.003571428571426,-0.001600985221633,0.000000000000004,-0.012315270935968,-0.000000000000003,0.012561576354692,-0.003571428571426,0.001354679802908,2 +7801,7814,7816,7829,0.082450738916171,0.383928571428580,0.075369458128006,0.382142857142859,0.076847290640281,0.385714285714297,0.069766009852116,0.383928571428576,0.003571428571438,-0.001600985221637,0.000000000000003,-0.012561576354692,-0.000000000000003,0.012807881773417,-0.003571428571438,0.001354679802912,2 +7802,7815,7817,7830,0.084051724137796,0.387500000000009,0.076847290640281,0.385714285714297,0.078325123152533,0.389285714285719,0.071120689655017,0.387500000000007,0.003571428571421,-0.001600985221614,0.000000000000003,-0.012807881773417,-0.000000000000001,0.013054187192141,-0.003571428571424,0.001354679802889,2 +7803,7816,7818,7831,0.085652709359419,0.391071428571437,0.078325123152533,0.389285714285719,0.079802955664802,0.392857142857153,0.072475369457915,0.391071428571436,0.003571428571433,-0.001600985221631,0.000000000000001,-0.013054187192141,-0.000000000000000,0.013300492610866,-0.003571428571434,0.001354679802907,2 +7804,7817,7819,7832,0.087253694581051,0.394642857142867,0.079802955664802,0.392857142857153,0.081280788177073,0.396428571428581,0.073830049260823,0.394642857142867,0.003571428571428,-0.001600985221633,0.000000000000000,-0.013300492610866,-0.000000000000000,0.013546798029590,-0.003571428571428,0.001354679802909,2 +7568,7805,7818,7833,0.082758620689347,0.400000000000000,0.088854679802686,0.398214285714291,0.081280788177073,0.396428571428581,0.075184729063734,0.398214285714291,0.000000000000000,0.013793103448314,0.003571428571419,-0.001600985221636,0.000000000000000,-0.013546798029590,-0.003571428571419,0.001354679802913,2 +7806,7821,7834,11337,0.057573891625831,0.351785714285709,0.052955665024834,0.353571428571417,0.047105911330291,0.351785714285709,0.051724137931288,0.350000000000000,0.003571428571417,-0.001354679802907,0.000000000000000,0.010591133004901,-0.003571428571417,0.001108374384184,0.000000000000000,-0.010344827586177,2 +7807,7820,7822,7835,0.058928571428744,0.355357142857133,0.052955665024834,0.353571428571417,0.054187192118391,0.357142857142849,0.048214285714481,0.355357142857133,0.003571428571432,-0.001354679802920,-0.000000000000000,-0.010591133004901,-0.000000000000000,0.010837438423625,-0.003571428571432,0.001108374384195,2 +7808,7821,7823,7836,0.060283251231668,0.358928571428570,0.054187192118391,0.357142857142849,0.055418719211957,0.360714285714291,0.049322660098680,0.358928571428570,0.003571428571442,-0.001354679802928,0.000000000000000,-0.010837438423625,-0.000000000000001,0.011083743842350,-0.003571428571441,0.001108374384203,2 +7809,7822,7824,7837,0.061637931034605,0.362500000000013,0.055418719211957,0.360714285714291,0.056650246305539,0.364285714285733,0.050431034482892,0.362500000000011,0.003571428571443,-0.001354679802945,0.000000000000001,-0.011083743842350,-0.000000000000002,0.011330049261075,-0.003571428571441,0.001108374384220,2 +7810,7823,7825,7838,0.062992610837541,0.366071428571453,0.056650246305539,0.364285714285733,0.057881773399106,0.367857142857171,0.051539408867104,0.366071428571450,0.003571428571438,-0.001354679802929,0.000000000000002,-0.011330049261075,-0.000000000000003,0.011576354679799,-0.003571428571437,0.001108374384205,2 +7811,7824,7826,7839,0.064347290640468,0.369642857142884,0.057881773399106,0.367857142857171,0.059113300492669,0.371428571428594,0.052647783251307,0.369642857142881,0.003571428571424,-0.001354679802924,0.000000000000003,-0.011576354679799,-0.000000000000004,0.011822660098523,-0.003571428571423,0.001108374384201,2 +7812,7825,7827,7840,0.065701970443391,0.373214285714307,0.059113300492669,0.371428571428594,0.060344827586229,0.375000000000014,0.053756157635507,0.373214285714302,0.003571428571420,-0.001354679802922,0.000000000000004,-0.011822660098523,-0.000000000000005,0.012068965517246,-0.003571428571420,0.001108374384199,2 +7813,7826,7828,7841,0.067056650246302,0.376785714285724,0.060344827586229,0.375000000000014,0.061576354679767,0.378571428571429,0.054864532019694,0.376785714285719,0.003571428571414,-0.001354679802899,0.000000000000005,-0.012068965517246,-0.000000000000004,0.012315270935970,-0.003571428571415,0.001108374384175,2 +7814,7827,7829,7842,0.068411330049206,0.380357142857144,0.061576354679767,0.378571428571429,0.062807881773313,0.382142857142855,0.055972906403874,0.380357142857140,0.003571428571426,-0.001354679802908,0.000000000000004,-0.012315270935970,-0.000000000000004,0.012561576354694,-0.003571428571427,0.001108374384184,2 +7815,7828,7830,7843,0.069766009852116,0.383928571428576,0.062807881773313,0.382142857142855,0.064039408866863,0.385714285714294,0.057081280788059,0.383928571428573,0.003571428571438,-0.001354679802912,0.000000000000004,-0.012561576354694,-0.000000000000003,0.012807881773419,-0.003571428571439,0.001108374384187,2 +7816,7829,7831,7844,0.071120689655017,0.387500000000007,0.064039408866863,0.385714285714294,0.065270935960390,0.389285714285718,0.058189655172235,0.387500000000005,0.003571428571424,-0.001354679802889,0.000000000000003,-0.012807881773419,-0.000000000000001,0.013054187192144,-0.003571428571426,0.001108374384165,2 +7817,7830,7832,7845,0.072475369457915,0.391071428571436,0.065270935960390,0.389285714285718,0.066502463053934,0.392857142857153,0.059298029556409,0.391071428571435,0.003571428571434,-0.001354679802907,0.000000000000001,-0.013054187192144,-0.000000000000000,0.013300492610869,-0.003571428571435,0.001108374384182,2 +7818,7831,7833,7846,0.073830049260823,0.394642857142867,0.066502463053934,0.392857142857153,0.067733990147481,0.396428571428581,0.060406403940592,0.394642857142867,0.003571428571428,-0.001354679802909,0.000000000000000,-0.013300492610869,0.000000000000000,0.013546798029593,-0.003571428571429,0.001108374384185,2 +7554,7819,7832,7847,0.068965517241032,0.400000000000000,0.075184729063734,0.398214285714291,0.067733990147481,0.396428571428581,0.061514778324779,0.398214285714291,0.000000000000000,0.013793103448317,0.003571428571419,-0.001354679802913,-0.000000000000000,-0.013546798029593,-0.003571428571419,0.001108374384189,2 +7820,7835,7848,11278,0.047105911330291,0.351785714285709,0.042364532019931,0.353571428571418,0.036637931034748,0.351785714285709,0.041379310345109,0.350000000000000,0.003571428571417,-0.001108374384184,0.000000000000000,0.010591133004905,-0.003571428571418,0.000862068965461,0.000000000000000,-0.010344827586182,2 +7821,7834,7836,7849,0.048214285714481,0.355357142857133,0.042364532019931,0.353571428571418,0.043349753694764,0.357142857142849,0.037500000000214,0.355357142857133,0.003571428571432,-0.001108374384195,-0.000000000000000,-0.010591133004905,-0.000000000000000,0.010837438423629,-0.003571428571431,0.000862068965471,2 +7822,7835,7837,7850,0.049322660098680,0.358928571428570,0.043349753694764,0.357142857142849,0.044334975369605,0.360714285714290,0.038362068965690,0.358928571428570,0.003571428571441,-0.001108374384203,0.000000000000000,-0.010837438423629,-0.000000000000000,0.011083743842353,-0.003571428571441,0.000862068965479,2 +7823,7836,7838,7851,0.050431034482892,0.362500000000011,0.044334975369605,0.360714285714290,0.045320197044463,0.364285714285731,0.039224137931177,0.362500000000010,0.003571428571441,-0.001108374384220,0.000000000000000,-0.011083743842353,-0.000000000000002,0.011330049261077,-0.003571428571439,0.000862068965496,2 +7824,7837,7839,7852,0.051539408867104,0.366071428571450,0.045320197044463,0.364285714285731,0.046305418719306,0.367857142857167,0.040086206896665,0.366071428571447,0.003571428571437,-0.001108374384205,0.000000000000002,-0.011330049261077,-0.000000000000003,0.011576354679801,-0.003571428571436,0.000862068965480,2 +7825,7838,7840,7853,0.052647783251307,0.369642857142881,0.046305418719306,0.367857142857167,0.047290640394145,0.371428571428590,0.040948275862144,0.369642857142877,0.003571428571423,-0.001108374384201,0.000000000000003,-0.011576354679801,-0.000000000000004,0.011822660098524,-0.003571428571423,0.000862068965477,2 +7826,7839,7841,7854,0.053756157635507,0.373214285714302,0.047290640394145,0.371428571428590,0.048275862068983,0.375000000000009,0.041810344827621,0.373214285714297,0.003571428571420,-0.001108374384199,0.000000000000004,-0.011822660098524,-0.000000000000005,0.012068965517247,-0.003571428571419,0.000862068965476,2 +7827,7840,7842,7855,0.054864532019694,0.376785714285719,0.048275862068983,0.375000000000009,0.049261083743796,0.378571428571424,0.042672413793085,0.376785714285715,0.003571428571415,-0.001108374384175,0.000000000000005,-0.012068965517247,-0.000000000000004,0.012315270935970,-0.003571428571416,0.000862068965452,2 +7828,7841,7843,7856,0.055972906403874,0.380357142857140,0.049261083743796,0.378571428571424,0.050246305418619,0.382142857142851,0.043534482758541,0.380357142857136,0.003571428571427,-0.001108374384184,0.000000000000004,-0.012315270935970,-0.000000000000004,0.012561576354694,-0.003571428571427,0.000862068965460,2 +7829,7842,7844,7857,0.057081280788059,0.383928571428573,0.050246305418619,0.382142857142851,0.051231527093444,0.385714285714291,0.044396551724003,0.383928571428569,0.003571428571439,-0.001108374384187,0.000000000000004,-0.012561576354694,-0.000000000000003,0.012807881773419,-0.003571428571439,0.000862068965463,2 +7830,7843,7845,7858,0.058189655172235,0.387500000000005,0.051231527093444,0.385714285714291,0.052216748768246,0.389285714285717,0.045258620689455,0.387500000000003,0.003571428571426,-0.001108374384165,0.000000000000003,-0.012807881773419,-0.000000000000001,0.013054187192143,-0.003571428571427,0.000862068965440,2 +7831,7844,7846,7859,0.059298029556409,0.391071428571435,0.052216748768246,0.389285714285717,0.053201970443066,0.392857142857152,0.046120689654903,0.391071428571434,0.003571428571435,-0.001108374384182,0.000000000000001,-0.013054187192143,-0.000000000000000,0.013300492610867,-0.003571428571436,0.000862068965457,2 +7832,7845,7847,7860,0.060406403940592,0.394642857142867,0.053201970443066,0.392857142857152,0.054187192117889,0.396428571428581,0.046982758620362,0.394642857142867,0.003571428571429,-0.001108374384185,0.000000000000000,-0.013300492610867,0.000000000000000,0.013546798029591,-0.003571428571429,0.000862068965461,2 +7540,7833,7846,7861,0.055172413792716,0.400000000000000,0.061514778324779,0.398214285714291,0.054187192117889,0.396428571428581,0.047844827585826,0.398214285714291,0.000000000000000,0.013793103448315,0.003571428571419,-0.001108374384189,-0.000000000000000,-0.013546798029591,-0.003571428571419,0.000862068965466,2 +7834,7849,7862,11219,0.036637931034748,0.351785714285709,0.031773399015028,0.353571428571418,0.026169950739208,0.351785714285709,0.031034482758929,0.350000000000000,0.003571428571418,-0.000862068965461,0.000000000000000,0.010591133004902,-0.003571428571418,0.000615763546737,0.000000000000000,-0.010344827586179,2 +7835,7848,7850,7863,0.037500000000214,0.355357142857133,0.031773399015028,0.353571428571418,0.032512315271137,0.357142857142849,0.026785714285951,0.355357142857134,0.003571428571431,-0.000862068965471,-0.000000000000000,-0.010591133004902,0.000000000000000,0.010837438423626,-0.003571428571431,0.000615763546747,2 +7836,7849,7851,7864,0.038362068965690,0.358928571428570,0.032512315271137,0.357142857142849,0.033251231527254,0.360714285714290,0.027401477832701,0.358928571428569,0.003571428571441,-0.000862068965479,-0.000000000000000,-0.010837438423626,-0.000000000000001,0.011083743842351,-0.003571428571440,0.000615763546754,2 +7837,7850,7852,7865,0.039224137931177,0.362500000000010,0.033251231527254,0.360714285714290,0.033990147783387,0.364285714285728,0.028017241379464,0.362500000000008,0.003571428571439,-0.000862068965496,0.000000000000001,-0.011083743842351,-0.000000000000003,0.011330049261075,-0.003571428571437,0.000615763546772,2 +7838,7851,7853,7866,0.040086206896665,0.366071428571447,0.033990147783387,0.364285714285728,0.034729064039506,0.367857142857164,0.028633004926228,0.366071428571444,0.003571428571436,-0.000862068965480,0.000000000000003,-0.011330049261075,-0.000000000000003,0.011576354679799,-0.003571428571435,0.000615763546756,2 +7839,7852,7854,7867,0.040948275862144,0.369642857142877,0.034729064039506,0.367857142857164,0.035467980295622,0.371428571428586,0.029248768472983,0.369642857142873,0.003571428571423,-0.000862068965477,0.000000000000003,-0.011576354679799,-0.000000000000004,0.011822660098522,-0.003571428571422,0.000615763546754,2 +7840,7853,7855,7868,0.041810344827621,0.373214285714297,0.035467980295622,0.371428571428586,0.036206896551736,0.375000000000004,0.029864532019737,0.373214285714293,0.003571428571419,-0.000862068965476,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517245,-0.003571428571418,0.000615763546753,2 +7841,7854,7856,7869,0.042672413793085,0.376785714285715,0.036206896551736,0.375000000000004,0.036945812807827,0.378571428571420,0.030480295566478,0.376785714285710,0.003571428571416,-0.000862068965452,0.000000000000005,-0.012068965517245,-0.000000000000004,0.012315270935969,-0.003571428571416,0.000615763546729,2 +7842,7855,7857,7870,0.043534482758541,0.380357142857136,0.036945812807827,0.378571428571420,0.037684729063925,0.382142857142848,0.031096059113211,0.380357142857132,0.003571428571427,-0.000862068965460,0.000000000000004,-0.012315270935969,-0.000000000000003,0.012561576354693,-0.003571428571428,0.000615763546736,2 +7843,7856,7858,7871,0.044396551724003,0.383928571428569,0.037684729063925,0.382142857142848,0.038423645320026,0.385714285714287,0.031711822659948,0.383928571428566,0.003571428571439,-0.000862068965463,0.000000000000003,-0.012561576354693,-0.000000000000003,0.012807881773417,-0.003571428571440,0.000615763546738,2 +7844,7857,7859,7872,0.045258620689455,0.387500000000003,0.038423645320026,0.385714285714287,0.039162561576104,0.389285714285716,0.032327586206675,0.387500000000000,0.003571428571427,-0.000862068965440,0.000000000000003,-0.012807881773417,-0.000000000000001,0.013054187192142,-0.003571428571430,0.000615763546716,2 +7845,7858,7860,7873,0.046120689654903,0.391071428571434,0.039162561576104,0.389285714285716,0.039901477832199,0.392857142857152,0.032943349753399,0.391071428571433,0.003571428571436,-0.000862068965457,0.000000000000001,-0.013054187192142,-0.000000000000000,0.013300492610866,-0.003571428571436,0.000615763546733,2 +7846,7859,7861,7874,0.046982758620362,0.394642857142867,0.039901477832199,0.392857142857152,0.040640394088298,0.396428571428581,0.033559113300134,0.394642857142866,0.003571428571429,-0.000862068965461,0.000000000000000,-0.013300492610866,0.000000000000000,0.013546798029591,-0.003571428571430,0.000615763546737,2 +7526,7847,7860,7875,0.041379310344402,0.400000000000000,0.047844827585826,0.398214285714291,0.040640394088298,0.396428571428581,0.034174876846874,0.398214285714291,0.000000000000000,0.013793103448314,0.003571428571419,-0.000862068965466,-0.000000000000000,-0.013546798029591,-0.003571428571419,0.000615763546743,2 +7848,7863,7876,11160,0.026169950739208,0.351785714285709,0.021182266010127,0.353571428571418,0.015701970443669,0.351785714285709,0.020689655172751,0.350000000000000,0.003571428571418,-0.000615763546737,0.000000000000000,0.010591133004901,-0.003571428571418,0.000369458128014,0.000000000000000,-0.010344827586177,2 +7849,7862,7864,7877,0.026785714285951,0.355357142857134,0.021182266010127,0.353571428571418,0.021674876847512,0.357142857142849,0.016071428571688,0.355357142857134,0.003571428571431,-0.000615763546747,-0.000000000000000,-0.010591133004901,0.000000000000000,0.010837438423625,-0.003571428571431,0.000369458128023,2 +7850,7863,7865,7878,0.027401477832701,0.358928571428569,0.021674876847512,0.357142857142849,0.022167487684904,0.360714285714289,0.016440886699714,0.358928571428569,0.003571428571440,-0.000615763546754,-0.000000000000000,-0.010837438423625,-0.000000000000001,0.011083743842350,-0.003571428571439,0.000369458128030,2 +7851,7864,7866,7879,0.028017241379464,0.362500000000008,0.022167487684904,0.360714285714289,0.022660098522313,0.364285714285726,0.016810344827752,0.362500000000007,0.003571428571437,-0.000615763546772,0.000000000000001,-0.011083743842350,-0.000000000000002,0.011330049261074,-0.003571428571436,0.000369458128047,2 +7852,7865,7867,7880,0.028633004926228,0.366071428571444,0.022660098522313,0.364285714285726,0.023152709359707,0.367857142857160,0.017179802955792,0.366071428571442,0.003571428571435,-0.000615763546756,0.000000000000002,-0.011330049261074,-0.000000000000003,0.011576354679798,-0.003571428571434,0.000369458128032,2 +7853,7866,7868,7881,0.029248768472983,0.369642857142873,0.023152709359707,0.367857142857160,0.023645320197100,0.371428571428582,0.017549261083823,0.369642857142869,0.003571428571422,-0.000615763546754,0.000000000000003,-0.011576354679798,-0.000000000000004,0.011822660098522,-0.003571428571421,0.000369458128031,2 +7854,7867,7869,7882,0.029864532019737,0.373214285714293,0.023645320197100,0.371428571428582,0.024137931034491,0.374999999999999,0.017918719211854,0.373214285714288,0.003571428571418,-0.000615763546753,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517245,-0.003571428571417,0.000369458128030,2 +7855,7868,7870,7883,0.030480295566478,0.376785714285710,0.024137931034491,0.374999999999999,0.024630541871858,0.378571428571416,0.018288177339872,0.376785714285705,0.003571428571416,-0.000615763546729,0.000000000000005,-0.012068965517245,-0.000000000000004,0.012315270935968,-0.003571428571417,0.000369458128006,2 +7856,7869,7871,7884,0.031096059113211,0.380357142857132,0.024630541871858,0.378571428571416,0.025123152709233,0.382142857142844,0.018657635467881,0.380357142857128,0.003571428571428,-0.000615763546736,0.000000000000004,-0.012315270935968,-0.000000000000004,0.012561576354692,-0.003571428571428,0.000369458128012,2 +7857,7870,7872,7885,0.031711822659948,0.383928571428566,0.025123152709233,0.382142857142844,0.025615763546608,0.385714285714284,0.019027093595893,0.383928571428562,0.003571428571440,-0.000615763546738,0.000000000000004,-0.012561576354692,-0.000000000000003,0.012807881773417,-0.003571428571440,0.000369458128013,2 +7858,7871,7873,7886,0.032327586206675,0.387500000000000,0.025615763546608,0.385714285714284,0.026108374383962,0.389285714285714,0.019396551723896,0.387499999999998,0.003571428571430,-0.000615763546716,0.000000000000003,-0.012807881773417,-0.000000000000001,0.013054187192142,-0.003571428571431,0.000369458127992,2 +7859,7872,7874,7887,0.032943349753399,0.391071428571433,0.026108374383962,0.389285714285714,0.026600985221332,0.392857142857151,0.019766009851895,0.391071428571433,0.003571428571436,-0.000615763546733,0.000000000000001,-0.013054187192142,-0.000000000000000,0.013300492610866,-0.003571428571437,0.000369458128008,2 +7860,7873,7875,7888,0.033559113300134,0.394642857142866,0.026600985221332,0.392857142857151,0.027093596058707,0.396428571428581,0.020135467979906,0.394642857142866,0.003571428571430,-0.000615763546737,0.000000000000000,-0.013300492610866,-0.000000000000000,0.013546798029590,-0.003571428571430,0.000369458128012,2 +7512,7861,7874,7889,0.027586206896088,0.400000000000000,0.034174876846874,0.398214285714291,0.027093596058707,0.396428571428581,0.020504926107921,0.398214285714291,0.000000000000000,0.013793103448314,0.003571428571419,-0.000615763546743,0.000000000000000,-0.013546798029590,-0.003571428571419,0.000369458128019,2 +7862,7877,7890,11101,0.015701970443669,0.351785714285709,0.010591133005226,0.353571428571418,0.005233990148130,0.351785714285709,0.010344827586573,0.350000000000000,0.003571428571418,-0.000369458128014,0.000000000000000,0.010591133004901,-0.003571428571419,0.000123152709291,0.000000000000000,-0.010344827586177,2 +7863,7876,7878,7891,0.016071428571688,0.355357142857134,0.010591133005226,0.353571428571418,0.010837438423887,0.357142857142849,0.005357142857425,0.355357142857134,0.003571428571431,-0.000369458128023,-0.000000000000000,-0.010591133004901,-0.000000000000000,0.010837438423625,-0.003571428571431,0.000123152709299,2 +7864,7877,7879,7892,0.016440886699714,0.358928571428569,0.010837438423887,0.357142857142849,0.011083743842554,0.360714285714289,0.005480295566727,0.358928571428569,0.003571428571439,-0.000369458128030,0.000000000000000,-0.010837438423625,-0.000000000000001,0.011083743842349,-0.003571428571439,0.000123152709305,2 +7865,7878,7880,7893,0.016810344827752,0.362500000000007,0.011083743842554,0.360714285714289,0.011330049261239,0.364285714285723,0.005603448276041,0.362500000000005,0.003571428571436,-0.000369458128047,0.000000000000001,-0.011083743842349,-0.000000000000002,0.011330049261074,-0.003571428571434,0.000123152709323,2 +7866,7879,7881,7894,0.017179802955792,0.366071428571442,0.011330049261239,0.364285714285723,0.011576354679909,0.367857142857157,0.005726600985356,0.366071428571439,0.003571428571434,-0.000369458128032,0.000000000000002,-0.011330049261074,-0.000000000000003,0.011576354679798,-0.003571428571433,0.000123152709308,2 +7867,7880,7882,7895,0.017549261083823,0.369642857142869,0.011576354679909,0.367857142857157,0.011822660098578,0.371428571428578,0.005849753694664,0.369642857142865,0.003571428571421,-0.000369458128031,0.000000000000003,-0.011576354679798,-0.000000000000004,0.011822660098521,-0.003571428571420,0.000123152709307,2 +7868,7881,7883,7896,0.017918719211854,0.373214285714288,0.011822660098578,0.371428571428578,0.012068965517246,0.374999999999994,0.005972906403971,0.373214285714284,0.003571428571417,-0.000369458128030,0.000000000000004,-0.011822660098521,-0.000000000000005,0.012068965517244,-0.003571428571416,0.000123152709307,2 +7869,7882,7884,7897,0.018288177339872,0.376785714285705,0.012068965517246,0.374999999999994,0.012315270935891,0.378571428571412,0.006096059113266,0.376785714285701,0.003571428571417,-0.000369458128006,0.000000000000005,-0.012068965517244,-0.000000000000004,0.012315270935968,-0.003571428571418,0.000123152709283,2 +7870,7883,7885,7898,0.018657635467881,0.380357142857128,0.012315270935891,0.378571428571412,0.012561576354541,0.382142857142840,0.006219211822551,0.380357142857124,0.003571428571428,-0.000369458128012,0.000000000000004,-0.012315270935968,-0.000000000000004,0.012561576354692,-0.003571428571429,0.000123152709288,2 +7871,7884,7886,7899,0.019027093595893,0.383928571428562,0.012561576354541,0.382142857142840,0.012807881773191,0.385714285714281,0.006342364531839,0.383928571428559,0.003571428571440,-0.000369458128013,0.000000000000004,-0.012561576354692,-0.000000000000003,0.012807881773416,-0.003571428571441,0.000123152709288,2 +7872,7885,7887,7900,0.019396551723896,0.387499999999998,0.012807881773191,0.385714285714281,0.013054187191821,0.389285714285713,0.006465517241117,0.387499999999996,0.003571428571431,-0.000369458127992,0.000000000000003,-0.012807881773416,-0.000000000000001,0.013054187192141,-0.003571428571433,0.000123152709267,2 +7873,7886,7888,7901,0.019766009851895,0.391071428571433,0.013054187191821,0.389285714285713,0.013300492610467,0.392857142857151,0.006588669950392,0.391071428571432,0.003571428571437,-0.000369458128008,0.000000000000001,-0.013054187192141,-0.000000000000000,0.013300492610865,-0.003571428571438,0.000123152709283,2 +7874,7887,7889,7902,0.020135467979906,0.394642857142866,0.013300492610467,0.392857142857151,0.013546798029117,0.396428571428581,0.006711822659678,0.394642857142866,0.003571428571430,-0.000369458128012,0.000000000000000,-0.013300492610865,0.000000000000000,0.013546798029589,-0.003571428571431,0.000123152709288,2 +7498,7875,7888,7903,0.013793103447775,0.400000000000000,0.020504926107921,0.398214285714291,0.013546798029117,0.396428571428581,0.006834975368970,0.398214285714291,0.000000000000000,0.013793103448313,0.003571428571419,-0.000369458128019,-0.000000000000000,-0.013546798029589,-0.003571428571419,0.000123152709296,2 +7876,7891,7904,11042,0.005233990148130,0.351785714285709,0.000000000000313,0.353571428571419,-0.005233990147436,0.351785714285709,0.000000000000381,0.350000000000000,0.003571428571419,-0.000123152709291,0.000000000000000,0.010591133004925,-0.003571428571419,-0.000123152709428,0.000000000000000,-0.010344827586207,2 +7877,7890,7892,7905,0.005357142857425,0.355357142857134,0.000000000000313,0.353571428571419,0.000000000000252,0.357142857142849,-0.005357142856860,0.355357142857134,0.003571428571431,-0.000123152709299,-0.000000000000000,-0.010591133004925,0.000000000000000,0.010837438423644,-0.003571428571431,-0.000123152709420,2 +7878,7891,7893,7906,0.005480295566727,0.358928571428569,0.000000000000252,0.357142857142849,0.000000000000197,0.360714285714288,-0.005480295566277,0.358928571428569,0.003571428571439,-0.000123152709305,-0.000000000000000,-0.010837438423644,-0.000000000000000,0.011083743842364,-0.003571428571438,-0.000123152709415,2 +7879,7892,7894,7907,0.005603448276041,0.362500000000005,0.000000000000197,0.360714285714288,0.000000000000161,0.364285714285721,-0.005603448275683,0.362500000000004,0.003571428571434,-0.000123152709323,0.000000000000000,-0.011083743842364,-0.000000000000003,0.011330049261083,-0.003571428571432,-0.000123152709396,2 +7880,7893,7895,7908,0.005726600985356,0.366071428571439,0.000000000000161,0.364285714285721,0.000000000000109,0.367857142857154,-0.005726600985087,0.366071428571436,0.003571428571433,-0.000123152709308,0.000000000000003,-0.011330049261083,-0.000000000000003,0.011576354679803,-0.003571428571433,-0.000123152709412,2 +7881,7894,7896,7909,0.005849753694664,0.369642857142865,0.000000000000109,0.367857142857154,0.000000000000057,0.371428571428573,-0.005849753694498,0.369642857142862,0.003571428571420,-0.000123152709307,0.000000000000003,-0.011576354679803,-0.000000000000004,0.011822660098521,-0.003571428571419,-0.000123152709411,2 +7882,7895,7897,7910,0.005972906403971,0.373214285714284,0.000000000000057,0.371428571428573,0.000000000000005,0.374999999999989,-0.005972906403909,0.373214285714279,0.003571428571416,-0.000123152709307,0.000000000000004,-0.011822660098521,-0.000000000000005,0.012068965517239,-0.003571428571415,-0.000123152709411,2 +7883,7896,7898,7911,0.006096059113266,0.376785714285701,0.000000000000005,0.374999999999989,-0.000000000000072,0.378571428571408,-0.006096059113333,0.376785714285696,0.003571428571418,-0.000123152709283,0.000000000000005,-0.012068965517239,-0.000000000000004,0.012315270935958,-0.003571428571419,-0.000123152709436,2 +7884,7897,7899,7912,0.006219211822551,0.380357142857124,-0.000000000000072,0.378571428571408,-0.000000000000143,0.382142857142836,-0.006219211822766,0.380357142857120,0.003571428571429,-0.000123152709288,0.000000000000004,-0.012315270935958,-0.000000000000004,0.012561576354677,-0.003571428571429,-0.000123152709431,2 +7885,7898,7900,7913,0.006342364531839,0.383928571428559,-0.000000000000143,0.382142857142836,-0.000000000000215,0.385714285714278,-0.006342364532198,0.383928571428555,0.003571428571441,-0.000123152709288,0.000000000000004,-0.012561576354677,-0.000000000000003,0.012807881773397,-0.003571428571441,-0.000123152709432,2 +7886,7899,7901,7914,0.006465517241117,0.387499999999996,-0.000000000000215,0.385714285714278,-0.000000000000307,0.389285714285712,-0.006465517241640,0.387499999999994,0.003571428571433,-0.000123152709267,0.000000000000003,-0.012807881773397,-0.000000000000001,0.013054187192116,-0.003571428571435,-0.000123152709452,2 +7887,7900,7902,7915,0.006588669950392,0.391071428571432,-0.000000000000307,0.389285714285712,-0.000000000000384,0.392857142857151,-0.006588669951084,0.391071428571431,0.003571428571438,-0.000123152709283,0.000000000000001,-0.013054187192116,-0.000000000000000,0.013300492610836,-0.003571428571439,-0.000123152709437,2 +7888,7901,7903,7916,0.006711822659678,0.394642857142866,-0.000000000000384,0.392857142857151,-0.000000000000455,0.396428571428582,-0.006711822660517,0.394642857142866,0.003571428571431,-0.000123152709288,0.000000000000000,-0.013300492610836,0.000000000000000,0.013546798029555,-0.003571428571431,-0.000123152709431,2 +7484,7889,7902,7917,-0.000000000000518,0.400000000000000,0.006834975368970,0.398214285714291,-0.000000000000455,0.396428571428582,-0.006834975369944,0.398214285714291,0.000000000000000,0.013793103448274,0.003571428571419,-0.000123152709296,-0.000000000000000,-0.013546798029555,-0.003571428571418,-0.000123152709422,2 +7890,7905,7918,10983,-0.005233990147436,0.351785714285709,-0.010591133004624,0.353571428571419,-0.015701970443029,0.351785714285710,-0.010344827585840,0.350000000000000,0.003571428571419,0.000123152709428,0.000000000000000,0.010591133004950,-0.003571428571419,-0.000369458128141,0.000000000000000,-0.010344827586236,2 +7891,7904,7906,7919,-0.005357142856860,0.355357142857134,-0.010591133004624,0.353571428571419,-0.010837438423402,0.357142857142849,-0.016071428571167,0.355357142857134,0.003571428571431,0.000123152709420,-0.000000000000000,-0.010591133004950,-0.000000000000000,0.010837438423664,-0.003571428571430,-0.000369458128135,2 +7892,7905,7907,7920,-0.005480295566277,0.358928571428569,-0.010837438423402,0.357142857142849,-0.011083743842174,0.360714285714287,-0.016440886699299,0.358928571428568,0.003571428571438,0.000123152709415,0.000000000000000,-0.010837438423664,-0.000000000000001,0.011083743842379,-0.003571428571438,-0.000369458128130,2 +7893,7906,7908,7921,-0.005603448275683,0.362500000000004,-0.011083743842174,0.360714285714287,-0.011330049260928,0.364285714285718,-0.016810344827419,0.362500000000002,0.003571428571432,0.000123152709396,0.000000000000001,-0.011083743842379,-0.000000000000002,0.011330049261094,-0.003571428571430,-0.000369458128111,2 +7894,7907,7909,7922,-0.005726600985087,0.366071428571436,-0.011330049260928,0.364285714285718,-0.011576354679697,0.367857142857150,-0.017179802955538,0.366071428571433,0.003571428571433,0.000123152709412,0.000000000000002,-0.011330049261094,-0.000000000000003,0.011576354679808,-0.003571428571432,-0.000369458128126,2 +7895,7908,7910,7923,-0.005849753694498,0.369642857142862,-0.011576354679697,0.367857142857150,-0.011822660098465,0.371428571428569,-0.017549261083663,0.369642857142858,0.003571428571419,0.000123152709411,0.000000000000003,-0.011576354679808,-0.000000000000004,0.011822660098522,-0.003571428571418,-0.000369458128125,2 +7896,7909,7911,7924,-0.005972906403909,0.373214285714279,-0.011822660098465,0.371428571428569,-0.012068965517233,0.374999999999984,-0.017918719211788,0.373214285714274,0.003571428571415,0.000123152709411,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517236,-0.003571428571415,-0.000369458128125,2 +7897,7910,7912,7925,-0.006096059113333,0.376785714285696,-0.012068965517233,0.374999999999984,-0.012315270936026,0.378571428571403,-0.018288177339925,0.376785714285692,0.003571428571419,0.000123152709436,0.000000000000005,-0.012068965517236,-0.000000000000004,0.012315270935949,-0.003571428571420,-0.000369458128149,2 +7898,7911,7913,7926,-0.006219211822766,0.380357142857120,-0.012315270936026,0.378571428571403,-0.012561576354813,0.382142857142833,-0.018657635468073,0.380357142857116,0.003571428571429,0.000123152709431,0.000000000000004,-0.012315270935949,-0.000000000000003,0.012561576354664,-0.003571428571430,-0.000369458128145,2 +7899,7912,7914,7927,-0.006342364532198,0.383928571428555,-0.012561576354813,0.382142857142833,-0.012807881773603,0.385714285714275,-0.019027093596219,0.383928571428552,0.003571428571441,0.000123152709432,0.000000000000003,-0.012561576354664,-0.000000000000003,0.012807881773379,-0.003571428571442,-0.000369458128147,2 +7900,7913,7915,7928,-0.006465517241640,0.387499999999994,-0.012807881773603,0.385714285714275,-0.013054187192412,0.389285714285711,-0.019396551724376,0.387499999999992,0.003571428571435,0.000123152709452,0.000000000000003,-0.012807881773379,-0.000000000000001,0.013054187192093,-0.003571428571437,-0.000369458128167,2 +7901,7914,7916,7929,-0.006588669951084,0.391071428571431,-0.013054187192412,0.389285714285711,-0.013300492611206,0.392857142857150,-0.019766009852535,0.391071428571430,0.003571428571439,0.000123152709437,0.000000000000001,-0.013054187192093,-0.000000000000000,0.013300492610808,-0.003571428571440,-0.000369458128152,2 +7902,7915,7917,7930,-0.006711822660517,0.394642857142866,-0.013300492611206,0.392857142857150,-0.013546798029994,0.396428571428582,-0.020135467980683,0.394642857142866,0.003571428571431,0.000123152709431,0.000000000000000,-0.013300492610808,-0.000000000000000,0.013546798029523,-0.003571428571432,-0.000369458128145,2 +7470,7903,7916,7931,-0.013793103448773,0.400000000000000,-0.006834975369944,0.398214285714291,-0.013546798029994,0.396428571428582,-0.020504926108824,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.000123152709422,0.000000000000000,-0.013546798029523,-0.003571428571418,-0.000369458128136,2 +7904,7919,7932,10924,-0.015701970443029,0.351785714285710,-0.021182266009574,0.353571428571419,-0.026169950738622,0.351785714285710,-0.020689655172076,0.350000000000000,0.003571428571419,0.000369458128141,0.000000000000000,0.010591133004950,-0.003571428571419,-0.000615763546855,0.000000000000000,-0.010344827586236,2 +7905,7918,7920,7933,-0.016071428571167,0.355357142857134,-0.021182266009574,0.353571428571419,-0.021674876847066,0.357142857142849,-0.026785714285474,0.355357142857134,0.003571428571430,0.000369458128135,-0.000000000000000,-0.010591133004950,-0.000000000000000,0.010837438423664,-0.003571428571430,-0.000615763546849,2 +7906,7919,7921,7934,-0.016440886699299,0.358928571428568,-0.021674876847066,0.357142857142849,-0.022167487684553,0.360714285714287,-0.027401477832321,0.358928571428568,0.003571428571438,0.000369458128130,0.000000000000000,-0.010837438423664,-0.000000000000001,0.011083743842379,-0.003571428571437,-0.000615763546845,2 +7907,7920,7922,7935,-0.016810344827419,0.362500000000002,-0.022167487684553,0.360714285714287,-0.022660098522022,0.364285714285716,-0.028017241379156,0.362500000000000,0.003571428571430,0.000369458128111,0.000000000000001,-0.011083743842379,-0.000000000000003,0.011330049261094,-0.003571428571428,-0.000615763546825,2 +7908,7921,7923,7936,-0.017179802955538,0.366071428571433,-0.022660098522022,0.364285714285716,-0.023152709359505,0.367857142857147,-0.028633004925989,0.366071428571430,0.003571428571432,0.000369458128126,0.000000000000003,-0.011330049261094,-0.000000000000003,0.011576354679808,-0.003571428571431,-0.000615763546841,2 +7909,7922,7924,7937,-0.017549261083663,0.369642857142858,-0.023152709359505,0.367857142857147,-0.023645320196987,0.371428571428565,-0.029248768472829,0.369642857142854,0.003571428571418,0.000369458128125,0.000000000000003,-0.011576354679808,-0.000000000000004,0.011822660098522,-0.003571428571418,-0.000615763546839,2 +7910,7923,7925,7938,-0.017918719211788,0.373214285714274,-0.023645320196987,0.371428571428565,-0.024137931034468,0.374999999999979,-0.029864532019667,0.373214285714270,0.003571428571415,0.000369458128125,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517236,-0.003571428571414,-0.000615763546838,2 +7911,7924,7926,7939,-0.018288177339925,0.376785714285692,-0.024137931034468,0.374999999999979,-0.024630541871975,0.378571428571399,-0.030480295566518,0.376785714285687,0.003571428571420,0.000369458128149,0.000000000000005,-0.012068965517236,-0.000000000000004,0.012315270935949,-0.003571428571421,-0.000615763546863,2 +7912,7925,7927,7940,-0.018657635468073,0.380357142857116,-0.024630541871975,0.378571428571399,-0.025123152709477,0.382142857142829,-0.031096059113379,0.380357142857112,0.003571428571430,0.000369458128145,0.000000000000004,-0.012315270935949,-0.000000000000004,0.012561576354664,-0.003571428571430,-0.000615763546860,2 +7913,7926,7928,7941,-0.019027093596219,0.383928571428552,-0.025123152709477,0.382142857142829,-0.025615763546982,0.385714285714271,-0.031711822660240,0.383928571428549,0.003571428571442,0.000369458128147,0.000000000000004,-0.012561576354664,-0.000000000000003,0.012807881773379,-0.003571428571442,-0.000615763546862,2 +7914,7927,7929,7942,-0.019396551724376,0.387499999999992,-0.025615763546982,0.385714285714271,-0.026108374384506,0.389285714285709,-0.032327586207112,0.387499999999989,0.003571428571437,0.000369458128167,0.000000000000003,-0.012807881773379,-0.000000000000001,0.013054187192093,-0.003571428571439,-0.000615763546881,2 +7915,7928,7930,7943,-0.019766009852535,0.391071428571430,-0.026108374384506,0.389285714285709,-0.026600985222015,0.392857142857150,-0.032943349753986,0.391071428571429,0.003571428571440,0.000369458128152,0.000000000000001,-0.013054187192093,-0.000000000000000,0.013300492610808,-0.003571428571441,-0.000615763546867,2 +7916,7929,7931,7944,-0.020135467980683,0.394642857142866,-0.026600985222015,0.392857142857150,-0.027093596059517,0.396428571428582,-0.033559113300849,0.394642857142866,0.003571428571432,0.000369458128145,0.000000000000000,-0.013300492610808,0.000000000000000,0.013546798029523,-0.003571428571432,-0.000615763546860,2 +7456,7917,7930,7945,-0.027586206897010,0.400000000000000,-0.020504926108824,0.398214285714291,-0.027093596059517,0.396428571428582,-0.034174876847704,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.000369458128136,-0.000000000000000,-0.013546798029523,-0.003571428571418,-0.000615763546850,2 +7918,7933,7946,10865,-0.026169950738622,0.351785714285710,-0.031773399014522,0.353571428571420,-0.036637931034211,0.351785714285710,-0.031034482758311,0.350000000000000,0.003571428571419,0.000615763546855,0.000000000000000,0.010591133004947,-0.003571428571420,-0.000862068965568,0.000000000000000,-0.010344827586233,2 +7919,7932,7934,7947,-0.026785714285474,0.355357142857134,-0.031773399014522,0.353571428571420,-0.032512315270729,0.357142857142849,-0.037499999999778,0.355357142857135,0.003571428571430,0.000615763546849,-0.000000000000000,-0.010591133004947,-0.000000000000000,0.010837438423661,-0.003571428571430,-0.000862068965564,2 +7920,7933,7935,7948,-0.027401477832321,0.358928571428568,-0.032512315270729,0.357142857142849,-0.033251231526931,0.360714285714286,-0.038362068965339,0.358928571428568,0.003571428571437,0.000615763546845,0.000000000000000,-0.010837438423661,-0.000000000000001,0.011083743842376,-0.003571428571436,-0.000862068965560,2 +7921,7934,7936,7949,-0.028017241379156,0.362500000000000,-0.033251231526931,0.360714285714286,-0.033990147783114,0.364285714285713,-0.039224137930889,0.362499999999999,0.003571428571428,0.000615763546825,0.000000000000001,-0.011083743842376,-0.000000000000002,0.011330049261091,-0.003571428571426,-0.000862068965540,2 +7922,7935,7937,7950,-0.028633004925989,0.366071428571430,-0.033990147783114,0.364285714285713,-0.034729064039312,0.367857142857144,-0.040086206896437,0.366071428571427,0.003571428571431,0.000615763546841,0.000000000000002,-0.011330049261091,-0.000000000000003,0.011576354679806,-0.003571428571430,-0.000862068965556,2 +7923,7936,7938,7951,-0.029248768472829,0.369642857142854,-0.034729064039312,0.367857142857144,-0.035467980295508,0.371428571428561,-0.040948275861991,0.369642857142850,0.003571428571418,0.000615763546839,0.000000000000003,-0.011576354679806,-0.000000000000004,0.011822660098519,-0.003571428571417,-0.000862068965552,2 +7924,7937,7939,7952,-0.029864532019667,0.373214285714270,-0.035467980295508,0.371428571428561,-0.036206896551703,0.374999999999974,-0.041810344827543,0.373214285714265,0.003571428571414,0.000615763546838,0.000000000000004,-0.011822660098519,-0.000000000000005,0.012068965517233,-0.003571428571413,-0.000862068965552,2 +7925,7938,7940,7953,-0.030480295566518,0.376785714285687,-0.036206896551703,0.374999999999974,-0.036945812807923,0.378571428571395,-0.042672413793107,0.376785714285682,0.003571428571421,0.000615763546863,0.000000000000005,-0.012068965517233,-0.000000000000004,0.012315270935947,-0.003571428571421,-0.000862068965577,2 +7926,7939,7941,7954,-0.031096059113379,0.380357142857112,-0.036945812807923,0.378571428571395,-0.037684729064139,0.382142857142825,-0.043534482758683,0.380357142857108,0.003571428571430,0.000615763546860,0.000000000000004,-0.012315270935947,-0.000000000000004,0.012561576354661,-0.003571428571431,-0.000862068965574,2 +7927,7940,7942,7955,-0.031711822660240,0.383928571428549,-0.037684729064139,0.382142857142825,-0.038423645320359,0.385714285714268,-0.044396551724258,0.383928571428545,0.003571428571442,0.000615763546862,0.000000000000004,-0.012561576354661,-0.000000000000003,0.012807881773376,-0.003571428571443,-0.000862068965577,2 +7928,7941,7943,7956,-0.032327586207112,0.387499999999989,-0.038423645320359,0.385714285714268,-0.039162561576598,0.389285714285708,-0.045258620689845,0.387499999999987,0.003571428571439,0.000615763546881,0.000000000000003,-0.012807881773376,-0.000000000000001,0.013054187192091,-0.003571428571441,-0.000862068965596,2 +7929,7942,7944,7957,-0.032943349753986,0.391071428571429,-0.039162561576598,0.389285714285708,-0.039901477832822,0.392857142857149,-0.046120689655434,0.391071428571428,0.003571428571441,0.000615763546867,0.000000000000001,-0.013054187192091,-0.000000000000000,0.013300492610806,-0.003571428571442,-0.000862068965582,2 +7930,7943,7945,7958,-0.033559113300849,0.394642857142866,-0.039901477832822,0.392857142857149,-0.040640394089039,0.396428571428582,-0.046982758621012,0.394642857142866,0.003571428571432,0.000615763546860,0.000000000000000,-0.013300492610806,-0.000000000000000,0.013546798029520,-0.003571428571433,-0.000862068965574,2 +7442,7931,7944,7959,-0.041379310345245,0.400000000000000,-0.034174876847704,0.398214285714291,-0.040640394089039,0.396428571428582,-0.047844827586581,0.398214285714291,0.000000000000000,0.013793103448234,0.003571428571418,0.000615763546850,0.000000000000000,-0.013546798029520,-0.003571428571418,-0.000862068965563,2 +7932,7947,7960,10806,-0.036637931034211,0.351785714285710,-0.042364532019469,0.353571428571420,-0.047105911329801,0.351785714285710,-0.041379310344544,0.350000000000000,0.003571428571420,0.000862068965568,0.000000000000000,0.010591133004946,-0.003571428571420,-0.001108374384282,0.000000000000000,-0.010344827586233,2 +7933,7946,7948,7961,-0.037499999999778,0.355357142857135,-0.042364532019469,0.353571428571420,-0.043349753694390,0.357142857142850,-0.048214285714081,0.355357142857135,0.003571428571430,0.000862068965564,-0.000000000000000,-0.010591133004946,0.000000000000000,0.010837438423660,-0.003571428571430,-0.001108374384278,2 +7934,7947,7949,7962,-0.038362068965339,0.358928571428568,-0.043349753694390,0.357142857142850,-0.044334975369307,0.360714285714286,-0.049322660098357,0.358928571428567,0.003571428571436,0.000862068965560,-0.000000000000000,-0.010837438423660,-0.000000000000000,0.011083743842375,-0.003571428571436,-0.001108374384275,2 +7935,7948,7950,7963,-0.039224137930889,0.362499999999999,-0.044334975369307,0.360714285714286,-0.045320197044204,0.364285714285711,-0.050431034482621,0.362499999999997,0.003571428571426,0.000862068965540,0.000000000000000,-0.011083743842375,-0.000000000000002,0.011330049261089,-0.003571428571424,-0.001108374384254,2 +7936,7949,7951,7964,-0.040086206896437,0.366071428571427,-0.045320197044204,0.364285714285711,-0.046305418719117,0.367857142857140,-0.051539408866884,0.366071428571424,0.003571428571430,0.000862068965556,0.000000000000002,-0.011330049261089,-0.000000000000003,0.011576354679803,-0.003571428571429,-0.001108374384270,2 +7937,7950,7952,7965,-0.040948275861991,0.369642857142850,-0.046305418719117,0.367857142857140,-0.047290640394026,0.371428571428557,-0.052647783251151,0.369642857142847,0.003571428571417,0.000862068965552,0.000000000000003,-0.011576354679803,-0.000000000000004,0.011822660098517,-0.003571428571416,-0.001108374384266,2 +7938,7951,7953,7966,-0.041810344827543,0.373214285714265,-0.047290640394026,0.371428571428557,-0.048275862068934,0.374999999999969,-0.053756157635416,0.373214285714260,0.003571428571413,0.000862068965552,0.000000000000004,-0.011822660098517,-0.000000000000005,0.012068965517230,-0.003571428571412,-0.001108374384265,2 +7939,7952,7954,7967,-0.042672413793107,0.376785714285682,-0.048275862068934,0.374999999999969,-0.049261083743867,0.378571428571391,-0.054864532019694,0.376785714285678,0.003571428571421,0.000862068965577,0.000000000000005,-0.012068965517230,-0.000000000000004,0.012315270935943,-0.003571428571422,-0.001108374384290,2 +7940,7953,7955,7968,-0.043534482758683,0.380357142857108,-0.049261083743867,0.378571428571391,-0.050246305418798,0.382142857142822,-0.055972906403983,0.380357142857104,0.003571428571431,0.000862068965574,0.000000000000004,-0.012315270935943,-0.000000000000004,0.012561576354657,-0.003571428571431,-0.001108374384288,2 +7941,7954,7956,7969,-0.044396551724258,0.383928571428545,-0.050246305418798,0.382142857142822,-0.051231527093733,0.385714285714265,-0.057081280788273,0.383928571428542,0.003571428571443,0.000862068965577,0.000000000000004,-0.012561576354657,-0.000000000000003,0.012807881773372,-0.003571428571444,-0.001108374384292,2 +7942,7955,7957,7970,-0.045258620689845,0.387499999999987,-0.051231527093733,0.385714285714265,-0.052216748768686,0.389285714285707,-0.058189655172574,0.387499999999985,0.003571428571441,0.000862068965596,0.000000000000003,-0.012807881773372,-0.000000000000001,0.013054187192086,-0.003571428571443,-0.001108374384311,2 +7943,7956,7958,7971,-0.046120689655434,0.391071428571428,-0.052216748768686,0.389285714285707,-0.053201970443625,0.392857142857149,-0.059298029556878,0.391071428571428,0.003571428571442,0.000862068965582,0.000000000000001,-0.013054187192086,-0.000000000000000,0.013300492610801,-0.003571428571442,-0.001108374384296,2 +7944,7957,7959,7972,-0.046982758621012,0.394642857142866,-0.053201970443625,0.392857142857149,-0.054187192118557,0.396428571428582,-0.060406403941170,0.394642857142865,0.003571428571433,0.000862068965574,0.000000000000000,-0.013300492610801,0.000000000000000,0.013546798029515,-0.003571428571433,-0.001108374384288,2 +7428,7945,7958,7973,-0.055172413793477,0.400000000000000,-0.047844827586581,0.398214285714291,-0.054187192118557,0.396428571428582,-0.061514778325452,0.398214285714291,0.000000000000000,0.013793103448228,0.003571428571418,0.000862068965563,-0.000000000000000,-0.013546798029515,-0.003571428571418,-0.001108374384276,2 +7946,7961,7974,10747,-0.047105911329801,0.351785714285710,-0.052955665024415,0.353571428571420,-0.057573891625391,0.351785714285710,-0.051724137930777,0.350000000000000,0.003571428571420,0.001108374384282,0.000000000000000,0.010591133004947,-0.003571428571420,-0.001354679802996,0.000000000000000,-0.010344827586233,2 +7947,7960,7962,7975,-0.048214285714081,0.355357142857135,-0.052955665024415,0.353571428571420,-0.054187192118050,0.357142857142850,-0.058928571428385,0.355357142857135,0.003571428571430,0.001108374384278,-0.000000000000000,-0.010591133004947,-0.000000000000000,0.010837438423661,-0.003571428571429,-0.001354679802992,2 +7948,7961,7963,7976,-0.049322660098357,0.358928571428567,-0.054187192118050,0.357142857142850,-0.055418719211683,0.360714285714285,-0.060283251231376,0.358928571428567,0.003571428571436,0.001108374384275,0.000000000000000,-0.010837438423661,-0.000000000000001,0.011083743842377,-0.003571428571435,-0.001354679802990,2 +7949,7962,7964,7977,-0.050431034482621,0.362499999999997,-0.055418719211683,0.360714285714285,-0.056650246305294,0.364285714285708,-0.061637931034356,0.362499999999996,0.003571428571424,0.001108374384254,0.000000000000001,-0.011083743842377,-0.000000000000003,0.011330049261092,-0.003571428571422,-0.001354679802969,2 +7950,7963,7965,7978,-0.051539408866884,0.366071428571424,-0.056650246305294,0.364285714285708,-0.057881773398922,0.367857142857137,-0.062992610837332,0.366071428571421,0.003571428571429,0.001108374384270,0.000000000000003,-0.011330049261092,-0.000000000000003,0.011576354679806,-0.003571428571428,-0.001354679802985,2 +7951,7964,7966,7979,-0.052647783251151,0.369642857142847,-0.057881773398922,0.367857142857137,-0.059113300492544,0.371428571428552,-0.064347290640315,0.369642857142843,0.003571428571416,0.001108374384266,0.000000000000003,-0.011576354679806,-0.000000000000004,0.011822660098520,-0.003571428571415,-0.001354679802980,2 +7952,7965,7967,7980,-0.053756157635416,0.373214285714260,-0.059113300492544,0.371428571428552,-0.060344827586166,0.374999999999964,-0.065701970443294,0.373214285714256,0.003571428571412,0.001108374384265,0.000000000000004,-0.011822660098520,-0.000000000000005,0.012068965517234,-0.003571428571411,-0.001354679802978,2 +7953,7966,7968,7981,-0.054864532019694,0.376785714285678,-0.060344827586166,0.374999999999964,-0.061576354679813,0.378571428571387,-0.067056650246285,0.376785714285673,0.003571428571422,0.001108374384290,0.000000000000005,-0.012068965517234,-0.000000000000004,0.012315270935948,-0.003571428571423,-0.001354679803004,2 +7954,7967,7969,7982,-0.055972906403983,0.380357142857104,-0.061576354679813,0.378571428571387,-0.062807881773458,0.382142857142818,-0.068411330049288,0.380357142857100,0.003571428571431,0.001108374384288,0.000000000000004,-0.012315270935948,-0.000000000000003,0.012561576354662,-0.003571428571432,-0.001354679803002,2 +7955,7968,7970,7983,-0.057081280788273,0.383928571428542,-0.062807881773458,0.382142857142818,-0.064039408867108,0.385714285714262,-0.069766009852293,0.383928571428538,0.003571428571444,0.001108374384292,0.000000000000003,-0.012561576354662,-0.000000000000003,0.012807881773378,-0.003571428571444,-0.001354679803008,2 +7956,7969,7971,7984,-0.058189655172574,0.387499999999985,-0.064039408867108,0.385714285714262,-0.065270935960776,0.389285714285706,-0.071120689655309,0.387499999999983,0.003571428571443,0.001108374384311,0.000000000000003,-0.012807881773378,-0.000000000000001,0.013054187192093,-0.003571428571445,-0.001354679803025,2 +7957,7970,7972,7985,-0.059298029556878,0.391071428571428,-0.065270935960776,0.389285714285706,-0.066502463054430,0.392857142857149,-0.072475369458328,0.391071428571427,0.003571428571442,0.001108374384296,0.000000000000001,-0.013054187192093,-0.000000000000000,0.013300492610808,-0.003571428571443,-0.001354679803012,2 +7958,7971,7973,7986,-0.060406403941170,0.394642857142865,-0.066502463054430,0.392857142857149,-0.067733990148076,0.396428571428582,-0.073830049261335,0.394642857142865,0.003571428571433,0.001108374384288,0.000000000000000,-0.013300492610808,0.000000000000000,0.013546798029523,-0.003571428571434,-0.001354679803003,2 +7414,7959,7972,7987,-0.068965517241709,0.400000000000000,-0.061514778325452,0.398214285714291,-0.067733990148076,0.396428571428582,-0.075184729064332,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.001108374384276,-0.000000000000000,-0.013546798029523,-0.003571428571418,-0.001354679802990,2 +7960,7975,7988,10688,-0.057573891625391,0.351785714285710,-0.063546798029363,0.353571428571420,-0.068041871920982,0.351785714285710,-0.062068965517010,0.350000000000000,0.003571428571420,0.001354679802996,0.000000000000000,0.010591133004948,-0.003571428571421,-0.001600985221709,0.000000000000000,-0.010344827586235,2 +7961,7974,7976,7989,-0.058928571428385,0.355357142857135,-0.063546798029363,0.353571428571420,-0.065024630541713,0.357142857142850,-0.069642857142690,0.355357142857135,0.003571428571429,0.001354679802992,-0.000000000000000,-0.010591133004948,-0.000000000000000,0.010837438423663,-0.003571428571429,-0.001600985221707,2 +7962,7975,7977,7990,-0.060283251231376,0.358928571428567,-0.065024630541713,0.357142857142850,-0.066502463054060,0.360714285714284,-0.071243842364396,0.358928571428567,0.003571428571435,0.001354679802990,0.000000000000000,-0.010837438423663,-0.000000000000001,0.011083743842378,-0.003571428571434,-0.001600985221705,2 +7963,7976,7978,7991,-0.061637931034356,0.362499999999996,-0.066502463054060,0.360714285714284,-0.067980295566386,0.364285714285706,-0.072844827586091,0.362499999999994,0.003571428571422,0.001354679802969,0.000000000000001,-0.011083743842378,-0.000000000000002,0.011330049261093,-0.003571428571420,-0.001600985221684,2 +7964,7977,7979,7992,-0.062992610837332,0.366071428571421,-0.067980295566386,0.364285714285706,-0.069458128078729,0.367857142857134,-0.074445812807783,0.366071428571418,0.003571428571428,0.001354679802985,0.000000000000002,-0.011330049261093,-0.000000000000003,0.011576354679807,-0.003571428571428,-0.001600985221700,2 +7965,7978,7980,7993,-0.064347290640315,0.369642857142843,-0.069458128078729,0.367857142857134,-0.070935960591065,0.371428571428548,-0.076046798029479,0.369642857142839,0.003571428571415,0.001354679802980,0.000000000000003,-0.011576354679807,-0.000000000000004,0.011822660098521,-0.003571428571414,-0.001600985221693,2 +7966,7979,7981,7994,-0.065701970443294,0.373214285714256,-0.070935960591065,0.371428571428548,-0.072413793103400,0.374999999999959,-0.077647783251172,0.373214285714251,0.003571428571411,0.001354679802978,0.000000000000004,-0.011822660098521,-0.000000000000005,0.012068965517235,-0.003571428571411,-0.001600985221692,2 +7967,7980,7982,7995,-0.067056650246285,0.376785714285673,-0.072413793103400,0.374999999999959,-0.073891625615761,0.378571428571382,-0.079248768472876,0.376785714285668,0.003571428571423,0.001354679803004,0.000000000000005,-0.012068965517235,-0.000000000000004,0.012315270935949,-0.003571428571424,-0.001600985221718,2 +7968,7981,7983,7996,-0.068411330049288,0.380357142857100,-0.073891625615761,0.378571428571382,-0.075369458128121,0.382142857142814,-0.080849753694594,0.380357142857096,0.003571428571432,0.001354679803002,0.000000000000004,-0.012315270935949,-0.000000000000004,0.012561576354663,-0.003571428571432,-0.001600985221717,2 +7969,7982,7984,7997,-0.069766009852293,0.383928571428538,-0.075369458128121,0.382142857142814,-0.076847290640486,0.385714285714259,-0.082450738916314,0.383928571428535,0.003571428571444,0.001354679803008,0.000000000000004,-0.012561576354663,-0.000000000000003,0.012807881773378,-0.003571428571445,-0.001600985221723,2 +7970,7983,7985,7998,-0.071120689655309,0.387499999999983,-0.076847290640486,0.385714285714259,-0.078325123152869,0.389285714285704,-0.084051724138045,0.387499999999980,0.003571428571445,0.001354679803025,0.000000000000003,-0.012807881773378,-0.000000000000001,0.013054187192093,-0.003571428571447,-0.001600985221740,2 +7971,7984,7986,7999,-0.072475369458328,0.391071428571427,-0.078325123152869,0.389285714285704,-0.079802955665238,0.392857142857148,-0.085652709359779,0.391071428571426,0.003571428571443,0.001354679803012,0.000000000000001,-0.013054187192093,-0.000000000000000,0.013300492610808,-0.003571428571444,-0.001600985221727,2 +7972,7985,7987,8000,-0.073830049261335,0.394642857142865,-0.079802955665238,0.392857142857148,-0.081280788177598,0.396428571428582,-0.087253694581501,0.394642857142865,0.003571428571434,0.001354679803003,0.000000000000000,-0.013300492610808,-0.000000000000000,0.013546798029523,-0.003571428571434,-0.001600985221718,2 +7400,7973,7986,8001,-0.082758620689945,0.400000000000000,-0.075184729064332,0.398214285714291,-0.081280788177598,0.396428571428582,-0.088854679803212,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.001354679802990,0.000000000000000,-0.013546798029523,-0.003571428571418,-0.001600985221704,2 +7974,7989,8002,10629,-0.068041871920982,0.351785714285710,-0.074137931034312,0.353571428571421,-0.078509852216576,0.351785714285710,-0.072413793103246,0.350000000000000,0.003571428571421,0.001600985221709,0.000000000000000,0.010591133004950,-0.003571428571421,-0.001847290640423,0.000000000000000,-0.010344827586237,2 +7975,7988,7990,8003,-0.069642857142690,0.355357142857135,-0.074137931034312,0.353571428571421,-0.075862068965376,0.357142857142850,-0.080357142856998,0.355357142857135,0.003571428571429,0.001600985221707,-0.000000000000000,-0.010591133004950,-0.000000000000000,0.010837438423665,-0.003571428571429,-0.001847290640421,2 +7976,7989,7991,8004,-0.071243842364396,0.358928571428567,-0.075862068965376,0.357142857142850,-0.077586206896439,0.360714285714284,-0.082204433497419,0.358928571428566,0.003571428571434,0.001600985221705,0.000000000000000,-0.010837438423665,-0.000000000000001,0.011083743842380,-0.003571428571434,-0.001847290640420,2 +7977,7990,7992,8005,-0.072844827586091,0.362499999999994,-0.077586206896439,0.360714285714284,-0.079310344827480,0.364285714285703,-0.084051724137828,0.362499999999992,0.003571428571420,0.001600985221684,0.000000000000001,-0.011083743842380,-0.000000000000003,0.011330049261094,-0.003571428571418,-0.001847290640398,2 +7978,7991,7993,8006,-0.074445812807783,0.366071428571418,-0.079310344827480,0.364285714285703,-0.081034482758537,0.367857142857130,-0.085899014778234,0.366071428571415,0.003571428571428,0.001600985221700,0.000000000000003,-0.011330049261094,-0.000000000000003,0.011576354679809,-0.003571428571427,-0.001847290640414,2 +7979,7992,7994,8007,-0.076046798029479,0.369642857142839,-0.081034482758537,0.367857142857130,-0.082758620689587,0.371428571428544,-0.087746305418645,0.369642857142835,0.003571428571414,0.001600985221693,0.000000000000003,-0.011576354679809,-0.000000000000004,0.011822660098522,-0.003571428571413,-0.001847290640407,2 +7980,7993,7995,8008,-0.077647783251172,0.373214285714251,-0.082758620689587,0.371428571428544,-0.084482758620636,0.374999999999954,-0.089593596059051,0.373214285714246,0.003571428571411,0.001600985221692,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517236,-0.003571428571410,-0.001847290640405,2 +7981,7994,7996,8009,-0.079248768472876,0.376785714285668,-0.084482758620636,0.374999999999954,-0.086206896551710,0.378571428571378,-0.091440886699469,0.376785714285664,0.003571428571424,0.001600985221718,0.000000000000005,-0.012068965517236,-0.000000000000004,0.012315270935949,-0.003571428571425,-0.001847290640431,2 +7982,7995,7997,8010,-0.080849753694594,0.380357142857096,-0.086206896551710,0.378571428571378,-0.087931034482784,0.382142857142811,-0.093288177339900,0.380357142857092,0.003571428571432,0.001600985221717,0.000000000000004,-0.012315270935949,-0.000000000000004,0.012561576354664,-0.003571428571433,-0.001847290640431,2 +7983,7996,7998,8011,-0.082450738916314,0.383928571428535,-0.087931034482784,0.382142857142811,-0.089655172413864,0.385714285714255,-0.095135467980335,0.383928571428531,0.003571428571445,0.001600985221723,0.000000000000004,-0.012561576354664,-0.000000000000003,0.012807881773379,-0.003571428571445,-0.001847290640438,2 +7984,7997,7999,8012,-0.084051724138045,0.387499999999980,-0.089655172413864,0.385714285714255,-0.091379310344962,0.389285714285703,-0.096982758620781,0.387499999999978,0.003571428571447,0.001600985221740,0.000000000000003,-0.012807881773379,-0.000000000000001,0.013054187192094,-0.003571428571449,-0.001847290640455,2 +7985,7998,8000,8013,-0.085652709359779,0.391071428571426,-0.091379310344962,0.389285714285703,-0.093103448276046,0.392857142857148,-0.098830049261230,0.391071428571425,0.003571428571444,0.001600985221727,0.000000000000001,-0.013054187192094,-0.000000000000000,0.013300492610809,-0.003571428571445,-0.001847290640442,2 +7986,7999,8001,8014,-0.087253694581501,0.394642857142865,-0.093103448276046,0.392857142857148,-0.094827586207121,0.396428571428582,-0.100677339901667,0.394642857142865,0.003571428571434,0.001600985221718,0.000000000000000,-0.013300492610809,0.000000000000000,0.013546798029523,-0.003571428571434,-0.001847290640432,2 +7386,7987,8000,8015,-0.096551724138182,0.400000000000000,-0.088854679803212,0.398214285714291,-0.094827586207121,0.396428571428582,-0.102524630542092,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.001600985221704,-0.000000000000000,-0.013546798029523,-0.003571428571418,-0.001847290640418,2 +7988,8003,8016,10570,-0.078509852216576,0.351785714285710,-0.084729064039262,0.353571428571421,-0.088977832512168,0.351785714285710,-0.082758620689482,0.350000000000000,0.003571428571421,0.001847290640423,0.000000000000000,0.010591133004949,-0.003571428571421,-0.002093596059137,0.000000000000000,-0.010344827586236,2 +7989,8002,8004,8017,-0.080357142856998,0.355357142857135,-0.084729064039262,0.353571428571421,-0.086699507389040,0.357142857142850,-0.091071428571304,0.355357142857135,0.003571428571429,0.001847290640421,-0.000000000000000,-0.010591133004949,0.000000000000000,0.010837438423664,-0.003571428571429,-0.002093596059136,2 +7990,8003,8005,8018,-0.082204433497419,0.358928571428566,-0.086699507389040,0.357142857142850,-0.088669950738818,0.360714285714283,-0.093165024630440,0.358928571428566,0.003571428571434,0.001847290640420,-0.000000000000000,-0.010837438423664,-0.000000000000001,0.011083743842379,-0.003571428571433,-0.002093596059135,2 +7991,8004,8006,8019,-0.084051724137828,0.362499999999992,-0.088669950738818,0.360714285714283,-0.090640394088574,0.364285714285700,-0.095258620689564,0.362499999999991,0.003571428571418,0.001847290640398,0.000000000000001,-0.011083743842379,-0.000000000000002,0.011330049261093,-0.003571428571417,-0.002093596059113,2 +7992,8005,8007,8020,-0.085899014778234,0.366071428571415,-0.090640394088574,0.364285714285700,-0.092610837438345,0.367857142857127,-0.097352216748685,0.366071428571412,0.003571428571427,0.001847290640414,0.000000000000002,-0.011330049261093,-0.000000000000003,0.011576354679808,-0.003571428571426,-0.002093596059129,2 +7993,8006,8008,8021,-0.087746305418645,0.369642857142835,-0.092610837438345,0.367857142857127,-0.094581280788109,0.371428571428540,-0.099445812807810,0.369642857142831,0.003571428571413,0.001847290640407,0.000000000000003,-0.011576354679808,-0.000000000000004,0.011822660098522,-0.003571428571412,-0.002093596059121,2 +7994,8007,8009,8022,-0.089593596059051,0.373214285714246,-0.094581280788109,0.371428571428540,-0.096551724137871,0.374999999999949,-0.101539408866929,0.373214285714242,0.003571428571410,0.001847290640405,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517235,-0.003571428571409,-0.002093596059119,2 +7995,8008,8010,8023,-0.091440886699469,0.376785714285664,-0.096551724137871,0.374999999999949,-0.098522167487659,0.378571428571374,-0.103633004926061,0.376785714285659,0.003571428571425,0.001847290640431,0.000000000000005,-0.012068965517235,-0.000000000000004,0.012315270935949,-0.003571428571426,-0.002093596059145,2 +7996,8009,8011,8024,-0.093288177339900,0.380357142857092,-0.098522167487659,0.378571428571374,-0.100492610837448,0.382142857142807,-0.105726600985207,0.380357142857089,0.003571428571433,0.001847290640431,0.000000000000004,-0.012315270935949,-0.000000000000004,0.012561576354663,-0.003571428571433,-0.002093596059146,2 +7997,8010,8012,8025,-0.095135467980335,0.383928571428531,-0.100492610837448,0.382142857142807,-0.102463054187243,0.385714285714252,-0.107820197044356,0.383928571428528,0.003571428571445,0.001847290640438,0.000000000000004,-0.012561576354663,-0.000000000000003,0.012807881773379,-0.003571428571445,-0.002093596059153,2 +7998,8011,8013,8026,-0.096982758620781,0.387499999999978,-0.102463054187243,0.385714285714252,-0.104433497537056,0.389285714285702,-0.109913793103517,0.387499999999976,0.003571428571449,0.001847290640455,0.000000000000003,-0.012807881773379,-0.000000000000001,0.013054187192093,-0.003571428571451,-0.002093596059170,2 +7999,8012,8014,8027,-0.098830049261230,0.391071428571425,-0.104433497537056,0.389285714285702,-0.106403940886855,0.392857142857147,-0.112007389162681,0.391071428571424,0.003571428571445,0.001847290640442,0.000000000000001,-0.013054187192093,-0.000000000000000,0.013300492610808,-0.003571428571446,-0.002093596059157,2 +8000,8013,8015,8028,-0.100677339901667,0.394642857142865,-0.106403940886855,0.392857142857147,-0.108374384236644,0.396428571428582,-0.114100985221832,0.394642857142865,0.003571428571434,0.001847290640432,0.000000000000000,-0.013300492610808,0.000000000000000,0.013546798029523,-0.003571428571435,-0.002093596059147,2 +7372,8001,8014,8029,-0.110344827586419,0.400000000000000,-0.102524630542092,0.398214285714291,-0.108374384236644,0.396428571428582,-0.116194581280971,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.001847290640418,-0.000000000000000,-0.013546798029523,-0.003571428571418,-0.002093596059131,2 +8002,8017,8030,10511,-0.088977832512168,0.351785714285710,-0.095320197044211,0.353571428571421,-0.099445812807761,0.351785714285711,-0.093103448275718,0.350000000000000,0.003571428571421,0.002093596059137,0.000000000000000,0.010591133004950,-0.003571428571421,-0.002339901477850,0.000000000000000,-0.010344827586236,2 +8003,8016,8018,8031,-0.091071428571304,0.355357142857135,-0.095320197044211,0.353571428571421,-0.097536945812704,0.357142857142850,-0.101785714285611,0.355357142857135,0.003571428571429,0.002093596059136,-0.000000000000000,-0.010591133004950,-0.000000000000000,0.010837438423664,-0.003571428571428,-0.002339901477851,2 +8004,8017,8019,8032,-0.093165024630440,0.358928571428566,-0.097536945812704,0.357142857142850,-0.099753694581197,0.360714285714282,-0.104125615763461,0.358928571428566,0.003571428571433,0.002093596059135,0.000000000000000,-0.010837438423664,-0.000000000000000,0.011083743842379,-0.003571428571433,-0.002339901477850,2 +8005,8018,8020,8033,-0.095258620689564,0.362499999999991,-0.099753694581197,0.360714285714282,-0.101970443349667,0.364285714285698,-0.106465517241300,0.362499999999989,0.003571428571417,0.002093596059113,0.000000000000000,-0.011083743842379,-0.000000000000002,0.011330049261094,-0.003571428571415,-0.002339901477828,2 +8006,8019,8021,8034,-0.097352216748685,0.366071428571412,-0.101970443349667,0.364285714285698,-0.104187192118153,0.367857142857123,-0.108805418719136,0.366071428571409,0.003571428571426,0.002093596059129,0.000000000000002,-0.011330049261094,-0.000000000000003,0.011576354679808,-0.003571428571425,-0.002339901477843,2 +8007,8020,8022,8035,-0.099445812807810,0.369642857142831,-0.104187192118153,0.367857142857123,-0.106403940886631,0.371428571428535,-0.111145320196975,0.369642857142827,0.003571428571412,0.002093596059121,0.000000000000003,-0.011576354679808,-0.000000000000004,0.011822660098522,-0.003571428571412,-0.002339901477834,2 +8008,8021,8023,8036,-0.101539408866929,0.373214285714242,-0.106403940886631,0.371428571428535,-0.108620689655107,0.374999999999944,-0.113485221674808,0.373214285714237,0.003571428571409,0.002093596059119,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517236,-0.003571428571408,-0.002339901477832,2 +8009,8022,8024,8037,-0.103633004926061,0.376785714285659,-0.108620689655107,0.374999999999944,-0.110837438423608,0.378571428571370,-0.115825123152654,0.376785714285655,0.003571428571426,0.002093596059145,0.000000000000005,-0.012068965517236,-0.000000000000004,0.012315270935949,-0.003571428571426,-0.002339901477858,2 +8010,8023,8025,8038,-0.105726600985207,0.380357142857089,-0.110837438423608,0.378571428571370,-0.113054187192111,0.382142857142803,-0.118165024630513,0.380357142857085,0.003571428571433,0.002093596059146,0.000000000000004,-0.012315270935949,-0.000000000000004,0.012561576354664,-0.003571428571433,-0.002339901477860,2 +8011,8024,8026,8039,-0.107820197044356,0.383928571428528,-0.113054187192111,0.382142857142803,-0.115270935960622,0.385714285714249,-0.120504926108377,0.383928571428524,0.003571428571445,0.002093596059153,0.000000000000004,-0.012561576354664,-0.000000000000003,0.012807881773379,-0.003571428571446,-0.002339901477869,2 +8012,8025,8027,8040,-0.109913793103517,0.387499999999976,-0.115270935960622,0.385714285714249,-0.117487684729149,0.389285714285701,-0.122844827586254,0.387499999999974,0.003571428571451,0.002093596059170,0.000000000000003,-0.012807881773379,-0.000000000000001,0.013054187192093,-0.003571428571453,-0.002339901477884,2 +8013,8026,8028,8041,-0.112007389162681,0.391071428571424,-0.117487684729149,0.389285714285701,-0.119704433497663,0.392857142857147,-0.125184729064132,0.391071428571423,0.003571428571446,0.002093596059157,0.000000000000001,-0.013054187192093,-0.000000000000000,0.013300492610808,-0.003571428571447,-0.002339901477872,2 +8014,8027,8029,8042,-0.114100985221832,0.394642857142865,-0.119704433497663,0.392857142857147,-0.121921182266167,0.396428571428582,-0.127524630541998,0.394642857142864,0.003571428571435,0.002093596059147,0.000000000000000,-0.013300492610808,-0.000000000000000,0.013546798029523,-0.003571428571435,-0.002339901477861,2 +7358,8015,8028,8043,-0.124137931034655,0.400000000000000,-0.116194581280971,0.398214285714291,-0.121921182266167,0.396428571428582,-0.129864532019851,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.002093596059131,0.000000000000000,-0.013546798029523,-0.003571428571418,-0.002339901477845,2 +8016,8031,8044,10452,-0.099445812807761,0.351785714285711,-0.105911330049155,0.353571428571421,-0.109913793103342,0.351785714285711,-0.103448275861948,0.350000000000000,0.003571428571421,0.002339901477850,0.000000000000000,0.010591133004938,-0.003571428571422,-0.002586206896565,0.000000000000000,-0.010344827586224,2 +8017,8030,8032,8045,-0.101785714285611,0.355357142857135,-0.105911330049155,0.353571428571421,-0.108374384236363,0.357142857142850,-0.112499999999907,0.355357142857136,0.003571428571428,0.002339901477851,-0.000000000000000,-0.010591133004938,0.000000000000000,0.010837438423654,-0.003571428571428,-0.002586206896566,2 +8018,8031,8033,8046,-0.104125615763461,0.358928571428566,-0.108374384236363,0.357142857142850,-0.110837438423571,0.360714285714282,-0.115086206896473,0.358928571428566,0.003571428571433,0.002339901477850,-0.000000000000000,-0.010837438423654,-0.000000000000001,0.011083743842369,-0.003571428571432,-0.002586206896566,2 +8019,8032,8034,8047,-0.106465517241300,0.362499999999989,-0.110837438423571,0.360714285714282,-0.113300492610757,0.364285714285695,-0.117672413793028,0.362499999999988,0.003571428571415,0.002339901477828,0.000000000000001,-0.011083743842369,-0.000000000000003,0.011330049261085,-0.003571428571413,-0.002586206896543,2 +8020,8033,8035,8048,-0.108805418719136,0.366071428571409,-0.113300492610757,0.364285714285695,-0.115763546797958,0.367857142857120,-0.120258620689579,0.366071428571406,0.003571428571425,0.002339901477843,0.000000000000003,-0.011330049261085,-0.000000000000003,0.011576354679800,-0.003571428571424,-0.002586206896559,2 +8021,8034,8036,8049,-0.111145320196975,0.369642857142827,-0.115763546797958,0.367857142857120,-0.118226600985150,0.371428571428531,-0.122844827586133,0.369642857142824,0.003571428571412,0.002339901477834,0.000000000000003,-0.011576354679800,-0.000000000000004,0.011822660098515,-0.003571428571411,-0.002586206896549,2 +8022,8035,8037,8050,-0.113485221674808,0.373214285714237,-0.118226600985150,0.371428571428531,-0.120689655172339,0.374999999999939,-0.125431034482680,0.373214285714233,0.003571428571408,0.002339901477832,0.000000000000004,-0.011822660098515,-0.000000000000005,0.012068965517229,-0.003571428571407,-0.002586206896547,2 +8023,8036,8038,8051,-0.115825123152654,0.376785714285655,-0.120689655172339,0.374999999999939,-0.123152709359555,0.378571428571366,-0.128017241379240,0.376785714285650,0.003571428571426,0.002339901477858,0.000000000000005,-0.012068965517229,-0.000000000000004,0.012315270935944,-0.003571428571427,-0.002586206896573,2 +8024,8037,8039,8052,-0.118165024630513,0.380357142857085,-0.123152709359555,0.378571428571366,-0.125615763546772,0.382142857142799,-0.130603448275814,0.380357142857081,0.003571428571433,0.002339901477860,0.000000000000004,-0.012315270935944,-0.000000000000004,0.012561576354659,-0.003571428571434,-0.002586206896575,2 +8025,8038,8040,8053,-0.120504926108377,0.383928571428524,-0.125615763546772,0.382142857142799,-0.128078817733999,0.385714285714246,-0.133189655172394,0.383928571428521,0.003571428571446,0.002339901477869,0.000000000000004,-0.012561576354659,-0.000000000000003,0.012807881773375,-0.003571428571447,-0.002586206896585,2 +8026,8039,8041,8054,-0.122844827586254,0.387499999999974,-0.128078817733999,0.385714285714246,-0.130541871921241,0.389285714285699,-0.135775862068987,0.387499999999971,0.003571428571453,0.002339901477884,0.000000000000003,-0.012807881773375,-0.000000000000001,0.013054187192091,-0.003571428571454,-0.002586206896600,2 +8027,8040,8042,8055,-0.125184729064132,0.391071428571423,-0.130541871921241,0.389285714285699,-0.133004926108471,0.392857142857147,-0.138362068965580,0.391071428571423,0.003571428571447,0.002339901477872,0.000000000000001,-0.013054187192091,-0.000000000000000,0.013300492610807,-0.003571428571448,-0.002586206896588,2 +8028,8041,8043,8056,-0.127524630541998,0.394642857142864,-0.133004926108471,0.392857142857147,-0.135467980295690,0.396428571428582,-0.140948275862162,0.394642857142864,0.003571428571435,0.002339901477861,0.000000000000000,-0.013300492610807,0.000000000000000,0.013546798029522,-0.003571428571436,-0.002586206896576,2 +7344,8029,8042,8057,-0.137931034482892,0.400000000000000,-0.129864532019851,0.398214285714291,-0.135467980295690,0.396428571428582,-0.143534482758730,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.002339901477845,-0.000000000000000,-0.013546798029522,-0.003571428571418,-0.002586206896560,2 +8030,8045,8058,10393,-0.109913793103342,0.351785714285711,-0.116502463054098,0.353571428571422,-0.120381773398932,0.351785714285711,-0.113793103448176,0.350000000000000,0.003571428571422,0.002586206896565,0.000000000000000,0.010591133004947,-0.003571428571422,-0.002832512315280,0.000000000000000,-0.010344827586232,2 +8031,8044,8046,8059,-0.112499999999907,0.355357142857136,-0.116502463054098,0.353571428571422,-0.119211822660022,0.357142857142850,-0.123214285714212,0.355357142857136,0.003571428571428,0.002586206896566,-0.000000000000000,-0.010591133004947,-0.000000000000000,0.010837438423663,-0.003571428571428,-0.002832512315282,2 +8032,8045,8047,8060,-0.115086206896473,0.358928571428566,-0.119211822660022,0.357142857142850,-0.121921182265946,0.360714285714281,-0.126046798029494,0.358928571428565,0.003571428571432,0.002586206896566,0.000000000000000,-0.010837438423663,-0.000000000000001,0.011083743842379,-0.003571428571431,-0.002832512315282,2 +8033,8046,8048,8061,-0.117672413793028,0.362499999999988,-0.121921182265946,0.360714285714281,-0.124630541871847,0.364285714285693,-0.128879310344765,0.362499999999986,0.003571428571413,0.002586206896543,0.000000000000001,-0.011083743842379,-0.000000000000002,0.011330049261095,-0.003571428571411,-0.002832512315259,2 +8034,8047,8049,8062,-0.120258620689579,0.366071428571406,-0.124630541871847,0.364285714285693,-0.127339901477764,0.367857142857117,-0.131711822660032,0.366071428571403,0.003571428571424,0.002586206896559,0.000000000000002,-0.011330049261095,-0.000000000000003,0.011576354679811,-0.003571428571423,-0.002832512315275,2 +8035,8048,8050,8063,-0.122844827586133,0.369642857142824,-0.127339901477764,0.367857142857117,-0.130049261083670,0.371428571428527,-0.134544334975301,0.369642857142820,0.003571428571411,0.002586206896549,0.000000000000003,-0.011576354679811,-0.000000000000004,0.011822660098526,-0.003571428571410,-0.002832512315264,2 +8036,8049,8051,8064,-0.125431034482680,0.373214285714233,-0.130049261083670,0.371428571428527,-0.132758620689574,0.374999999999934,-0.137376847290564,0.373214285714228,0.003571428571407,0.002586206896547,0.000000000000004,-0.011822660098526,-0.000000000000005,0.012068965517241,-0.003571428571406,-0.002832512315262,2 +8037,8050,8052,8065,-0.128017241379240,0.376785714285650,-0.132758620689574,0.374999999999934,-0.135467980295505,0.378571428571362,-0.140209359605839,0.376785714285645,0.003571428571427,0.002586206896573,0.000000000000005,-0.012068965517241,-0.000000000000004,0.012315270935956,-0.003571428571428,-0.002832512315288,2 +8038,8051,8053,8066,-0.130603448275814,0.380357142857081,-0.135467980295505,0.378571428571362,-0.138177339901438,0.382142857142796,-0.143041871921128,0.380357142857077,0.003571428571434,0.002586206896575,0.000000000000004,-0.012315270935956,-0.000000000000004,0.012561576354672,-0.003571428571434,-0.002832512315291,2 +8039,8052,8054,8067,-0.133189655172394,0.383928571428521,-0.138177339901438,0.382142857142796,-0.140886699507381,0.385714285714243,-0.145874384236424,0.383928571428517,0.003571428571447,0.002586206896585,0.000000000000004,-0.012561576354672,-0.000000000000003,0.012807881773388,-0.003571428571447,-0.002832512315301,2 +8040,8053,8055,8068,-0.135775862068987,0.387499999999971,-0.140886699507381,0.385714285714243,-0.143596059113339,0.389285714285698,-0.148706896551733,0.387499999999969,0.003571428571454,0.002586206896600,0.000000000000003,-0.012807881773388,-0.000000000000001,0.013054187192104,-0.003571428571457,-0.002832512315316,2 +8041,8054,8056,8069,-0.138362068965580,0.391071428571423,-0.143596059113339,0.389285714285698,-0.146305418719285,0.392857142857146,-0.151539408867043,0.391071428571422,0.003571428571448,0.002586206896588,0.000000000000001,-0.013054187192104,-0.000000000000000,0.013300492610821,-0.003571428571448,-0.002832512315304,2 +8042,8055,8057,8070,-0.140948275862162,0.394642857142864,-0.146305418719285,0.392857142857146,-0.149014778325219,0.396428571428582,-0.154371921182341,0.394642857142864,0.003571428571436,0.002586206896576,0.000000000000000,-0.013300492610821,0.000000000000000,0.013546798029537,-0.003571428571436,-0.002832512315292,2 +7330,8043,8056,8071,-0.151724137931136,0.400000000000000,-0.143534482758730,0.398214285714291,-0.149014778325219,0.396428571428582,-0.157204433497624,0.398214285714291,0.000000000000000,0.013793103448251,0.003571428571418,0.002586206896560,-0.000000000000000,-0.013546798029537,-0.003571428571418,-0.002832512315274,2 +8044,8059,8072,10334,-0.120381773398932,0.351785714285711,-0.127093596059047,0.353571428571422,-0.130849753694525,0.351785714285711,-0.124137931034410,0.350000000000000,0.003571428571422,0.002832512315280,0.000000000000000,0.010591133004951,-0.003571428571422,-0.003078817733995,0.000000000000000,-0.010344827586236,2 +8045,8058,8060,8073,-0.123214285714212,0.355357142857136,-0.127093596059047,0.353571428571422,-0.130049261083687,0.357142857142850,-0.133928571428521,0.355357142857136,0.003571428571428,0.002832512315282,-0.000000000000000,-0.010591133004951,-0.000000000000000,0.010837438423667,-0.003571428571428,-0.003078817733997,2 +8046,8059,8061,8074,-0.126046798029494,0.358928571428565,-0.130049261083687,0.357142857142850,-0.133004926108327,0.360714285714281,-0.137007389162519,0.358928571428565,0.003571428571431,0.002832512315282,0.000000000000000,-0.010837438423667,-0.000000000000001,0.011083743842383,-0.003571428571430,-0.003078817733998,2 +8047,8060,8062,8075,-0.128879310344765,0.362499999999986,-0.133004926108327,0.360714285714281,-0.135960591132944,0.364285714285690,-0.140086206896506,0.362499999999985,0.003571428571411,0.002832512315259,0.000000000000001,-0.011083743842383,-0.000000000000002,0.011330049261099,-0.003571428571409,-0.003078817733975,2 +8048,8061,8063,8076,-0.131711822660032,0.366071428571403,-0.135960591132944,0.364285714285690,-0.138916256157577,0.367857142857113,-0.143165024630489,0.366071428571400,0.003571428571423,0.002832512315275,0.000000000000002,-0.011330049261099,-0.000000000000003,0.011576354679815,-0.003571428571423,-0.003078817733991,2 +8049,8062,8064,8077,-0.134544334975301,0.369642857142820,-0.138916256157577,0.367857142857113,-0.141871921182198,0.371428571428523,-0.146243842364474,0.369642857142816,0.003571428571410,0.002832512315264,0.000000000000003,-0.011576354679815,-0.000000000000004,0.011822660098530,-0.003571428571409,-0.003078817733979,2 +8050,8063,8065,8078,-0.137376847290564,0.373214285714228,-0.141871921182198,0.371428571428523,-0.144827586206817,0.374999999999929,-0.149322660098451,0.373214285714223,0.003571428571406,0.002832512315262,0.000000000000004,-0.011822660098530,-0.000000000000005,0.012068965517244,-0.003571428571406,-0.003078817733976,2 +8051,8064,8066,8079,-0.140209359605839,0.376785714285645,-0.144827586206817,0.374999999999929,-0.147783251231463,0.378571428571357,-0.152401477832441,0.376785714285641,0.003571428571428,0.002832512315288,0.000000000000005,-0.012068965517244,-0.000000000000004,0.012315270935959,-0.003571428571429,-0.003078817734003,2 +8052,8065,8067,8080,-0.143041871921128,0.380357142857077,-0.147783251231463,0.378571428571357,-0.150738916256111,0.382142857142792,-0.155480295566445,0.380357142857073,0.003571428571434,0.002832512315291,0.000000000000004,-0.012315270935959,-0.000000000000004,0.012561576354675,-0.003571428571435,-0.003078817734006,2 +8053,8066,8068,8081,-0.145874384236424,0.383928571428517,-0.150738916256111,0.382142857142792,-0.153694581280771,0.385714285714239,-0.158559113300457,0.383928571428514,0.003571428571447,0.002832512315301,0.000000000000004,-0.012561576354675,-0.000000000000003,0.012807881773391,-0.003571428571448,-0.003078817734018,2 +8054,8067,8069,8082,-0.148706896551733,0.387499999999969,-0.153694581280771,0.385714285714239,-0.156650246305445,0.389285714285697,-0.161637931034482,0.387499999999967,0.003571428571457,0.002832512315316,0.000000000000003,-0.012807881773391,-0.000000000000001,0.013054187192107,-0.003571428571458,-0.003078817734032,2 +8055,8068,8070,8083,-0.151539408867043,0.391071428571422,-0.156650246305445,0.389285714285697,-0.159605911330107,0.392857142857146,-0.164716748768508,0.391071428571421,0.003571428571448,0.002832512315304,0.000000000000001,-0.013054187192107,-0.000000000000000,0.013300492610823,-0.003571428571449,-0.003078817734020,2 +8056,8069,8071,8084,-0.154371921182341,0.394642857142864,-0.159605911330107,0.392857142857146,-0.162561576354757,0.396428571428583,-0.167795566502523,0.394642857142864,0.003571428571436,0.002832512315292,0.000000000000000,-0.013300492610823,-0.000000000000000,0.013546798029539,-0.003571428571437,-0.003078817734008,2 +7316,8057,8070,8085,-0.165517241379389,0.400000000000000,-0.157204433497624,0.398214285714291,-0.162561576354757,0.396428571428583,-0.170874384236521,0.398214285714291,0.000000000000000,0.013793103448254,0.003571428571418,0.002832512315274,0.000000000000000,-0.013546798029539,-0.003571428571418,-0.003078817733989,2 +8058,8073,8086,10275,-0.130849753694525,0.351785714285711,-0.137684729063997,0.353571428571422,-0.141317733990118,0.351785714285711,-0.134482758620646,0.350000000000000,0.003571428571422,0.003078817733995,0.000000000000000,0.010591133004950,-0.003571428571422,-0.003325123152708,0.000000000000000,-0.010344827586236,2 +8059,8072,8074,8087,-0.133928571428521,0.355357142857136,-0.137684729063997,0.353571428571422,-0.140886699507352,0.357142857142850,-0.144642857142828,0.355357142857136,0.003571428571428,0.003078817733997,-0.000000000000000,-0.010591133004950,-0.000000000000000,0.010837438423664,-0.003571428571427,-0.003325123152712,2 +8060,8073,8075,8088,-0.137007389162519,0.358928571428565,-0.140886699507352,0.357142857142850,-0.144088669950708,0.360714285714280,-0.147967980295541,0.358928571428565,0.003571428571430,0.003078817733998,0.000000000000000,-0.010837438423664,-0.000000000000000,0.011083743842379,-0.003571428571430,-0.003325123152714,2 +8061,8074,8076,8089,-0.140086206896506,0.362499999999985,-0.144088669950708,0.360714285714280,-0.147290640394040,0.364285714285688,-0.151293103448242,0.362499999999983,0.003571428571409,0.003078817733975,0.000000000000000,-0.011083743842379,-0.000000000000003,0.011330049261094,-0.003571428571407,-0.003325123152690,2 +8062,8075,8077,8090,-0.143165024630489,0.366071428571400,-0.147290640394040,0.364285714285688,-0.150492610837388,0.367857142857110,-0.154618226600940,0.366071428571397,0.003571428571423,0.003078817733991,0.000000000000003,-0.011330049261094,-0.000000000000003,0.011576354679808,-0.003571428571422,-0.003325123152705,2 +8063,8076,8078,8091,-0.146243842364474,0.369642857142816,-0.150492610837388,0.367857142857110,-0.153694581280724,0.371428571428518,-0.157943349753639,0.369642857142812,0.003571428571409,0.003078817733979,0.000000000000003,-0.011576354679808,-0.000000000000004,0.011822660098522,-0.003571428571408,-0.003325123152693,2 +8064,8077,8079,8092,-0.149322660098451,0.373214285714223,-0.153694581280724,0.371428571428518,-0.156896551724057,0.374999999999924,-0.161268472906330,0.373214285714219,0.003571428571406,0.003078817733976,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517236,-0.003571428571405,-0.003325123152690,2 +8065,8078,8080,8093,-0.152401477832441,0.376785714285641,-0.156896551724057,0.374999999999924,-0.160098522167417,0.378571428571353,-0.164593596059033,0.376785714285636,0.003571428571429,0.003078817734003,0.000000000000005,-0.012068965517236,-0.000000000000004,0.012315270935949,-0.003571428571430,-0.003325123152716,2 +8066,8079,8081,8094,-0.155480295566445,0.380357142857073,-0.160098522167417,0.378571428571353,-0.163300492610780,0.382142857142788,-0.167918719211752,0.380357142857069,0.003571428571435,0.003078817734006,0.000000000000004,-0.012315270935949,-0.000000000000004,0.012561576354664,-0.003571428571435,-0.003325123152721,2 +8067,8080,8082,8095,-0.158559113300457,0.383928571428514,-0.163300492610780,0.382142857142788,-0.166502463054156,0.385714285714236,-0.171243842364479,0.383928571428511,0.003571428571448,0.003078817734018,0.000000000000004,-0.012561576354664,-0.000000000000003,0.012807881773379,-0.003571428571448,-0.003325123152733,2 +8068,8081,8083,8096,-0.161637931034482,0.387499999999967,-0.166502463054156,0.385714285714236,-0.169704433497545,0.389285714285696,-0.174568965517218,0.387499999999965,0.003571428571458,0.003078817734032,0.000000000000003,-0.012807881773379,-0.000000000000001,0.013054187192094,-0.003571428571460,-0.003325123152747,2 +8069,8082,8084,8097,-0.164716748768508,0.391071428571421,-0.169704433497545,0.389285714285696,-0.172906403940923,0.392857142857145,-0.177894088669959,0.391071428571420,0.003571428571449,0.003078817734020,0.000000000000001,-0.013054187192094,-0.000000000000000,0.013300492610809,-0.003571428571450,-0.003325123152735,2 +8070,8083,8085,8098,-0.167795566502523,0.394642857142864,-0.172906403940923,0.392857142857145,-0.176108374384288,0.396428571428583,-0.181219211822688,0.394642857142864,0.003571428571437,0.003078817734008,0.000000000000000,-0.013300492610809,0.000000000000000,0.013546798029523,-0.003571428571437,-0.003325123152723,2 +7302,8071,8084,8099,-0.179310344827634,0.400000000000000,-0.170874384236521,0.398214285714291,-0.176108374384288,0.396428571428583,-0.184544334975401,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.003078817733989,-0.000000000000000,-0.013546798029523,-0.003571428571417,-0.003325123152703,2 +8072,8087,8925,10216,-0.141317733990118,0.351785714285711,-0.148275862068947,0.353571428571423,-0.151785714285711,0.351785714285711,-0.144827586206882,0.350000000000000,0.003571428571422,0.003325123152708,0.000000000000000,0.010591133004951,-0.003571428571423,-0.003571428571423,-0.000000000000000,-0.010344827586236,2 +8073,8086,8088,8924,-0.144642857142828,0.355357142857136,-0.148275862068947,0.353571428571423,-0.151724137931017,0.357142857142850,-0.155357142857136,0.355357142857136,0.003571428571427,0.003325123152712,-0.000000000000000,-0.010591133004951,0.000000000000000,0.010837438423666,-0.003571428571427,-0.003571428571427,2 +8074,8087,8089,8923,-0.147967980295541,0.358928571428565,-0.151724137931017,0.357142857142850,-0.155172413793088,0.360714285714279,-0.158928571428564,0.358928571428564,0.003571428571430,0.003325123152714,-0.000000000000000,-0.010837438423666,-0.000000000000001,0.011083743842382,-0.003571428571429,-0.003571428571429,2 +8075,8088,8090,8922,-0.151293103448242,0.362499999999983,-0.155172413793088,0.360714285714279,-0.158620689655136,0.364285714285685,-0.162499999999982,0.362499999999982,0.003571428571407,0.003325123152690,0.000000000000001,-0.011083743842382,-0.000000000000002,0.011330049261097,-0.003571428571405,-0.003571428571405,2 +8076,8089,8091,8921,-0.154618226600940,0.366071428571397,-0.158620689655136,0.364285714285685,-0.162068965517199,0.367857142857107,-0.166071428571395,0.366071428571395,0.003571428571422,0.003325123152705,0.000000000000002,-0.011330049261097,-0.000000000000003,0.011576354679812,-0.003571428571421,-0.003571428571421,2 +8077,8090,8092,8920,-0.157943349753639,0.369642857142812,-0.162068965517199,0.367857142857107,-0.165517241379249,0.371428571428514,-0.169642857142809,0.369642857142809,0.003571428571408,0.003325123152693,0.000000000000003,-0.011576354679812,-0.000000000000004,0.011822660098527,-0.003571428571407,-0.003571428571407,2 +8078,8091,8093,8919,-0.161268472906330,0.373214285714219,-0.165517241379249,0.371428571428514,-0.168965517241295,0.374999999999919,-0.173214285714214,0.373214285714214,0.003571428571405,0.003325123152690,0.000000000000004,-0.011822660098527,-0.000000000000005,0.012068965517241,-0.003571428571404,-0.003571428571404,2 +8079,8092,8094,8918,-0.164593596059033,0.376785714285636,-0.168965517241295,0.374999999999919,-0.172413793103369,0.378571428571349,-0.176785714285631,0.376785714285631,0.003571428571430,0.003325123152716,0.000000000000005,-0.012068965517241,-0.000000000000004,0.012315270935955,-0.003571428571431,-0.003571428571431,2 +8080,8093,8095,8917,-0.167918719211752,0.380357142857069,-0.172413793103369,0.378571428571349,-0.175862068965447,0.382142857142785,-0.180357142857065,0.380357142857065,0.003571428571435,0.003325123152721,0.000000000000004,-0.012315270935955,-0.000000000000004,0.012561576354671,-0.003571428571436,-0.003571428571436,2 +8081,8094,8096,8916,-0.171243842364479,0.383928571428511,-0.175862068965447,0.382142857142785,-0.179310344827538,0.385714285714233,-0.183928571428507,0.383928571428507,0.003571428571448,0.003325123152733,0.000000000000004,-0.012561576354671,-0.000000000000003,0.012807881773386,-0.003571428571449,-0.003571428571449,2 +8082,8095,8097,8915,-0.174568965517218,0.387499999999965,-0.179310344827538,0.385714285714233,-0.182758620689643,0.389285714285694,-0.187499999999963,0.387499999999963,0.003571428571460,0.003325123152747,0.000000000000003,-0.012807881773386,-0.000000000000001,0.013054187192102,-0.003571428571462,-0.003571428571462,2 +8083,8096,8098,8914,-0.177894088669959,0.391071428571420,-0.182758620689643,0.389285714285694,-0.186206896551736,0.392857142857145,-0.191071428571419,0.391071428571419,0.003571428571450,0.003325123152735,0.000000000000001,-0.013054187192102,-0.000000000000000,0.013300492610818,-0.003571428571451,-0.003571428571451,2 +8084,8097,8099,8913,-0.181219211822688,0.394642857142864,-0.186206896551736,0.392857142857145,-0.189655172413816,0.396428571428583,-0.194642857142864,0.394642857142864,0.003571428571437,0.003325123152723,0.000000000000000,-0.013300492610818,0.000000000000000,0.013546798029533,-0.003571428571438,-0.003571428571438,2 +7288,8085,8098,8912,-0.193103448275876,0.400000000000000,-0.184544334975401,0.398214285714291,-0.189655172413816,0.396428571428583,-0.198214285714291,0.398214285714291,0.000000000000000,0.013793103448248,0.003571428571417,0.003325123152703,-0.000000000000000,-0.013546798029533,-0.003571428571417,-0.003571428571417,2 +2242,8101,8114,9303,-0.200000000000000,-0.393220338983059,-0.196428571428583,-0.389709443099291,-0.198214285714291,-0.384715496368059,-0.198214285714291,-0.398214285714291,-0.013559322033881,-0.000000000000000,0.013438256658583,0.000000000000000,-0.003450363196119,0.003571428571417,0.003571428571417,-0.003571428571417,2 +8100,8102,8115,9274,-0.196428571428583,-0.389709443099291,-0.192857142857145,-0.386198547215503,-0.194642857142864,-0.381265133171930,-0.194642857142864,-0.394642857142864,-0.013438256658583,-0.000000000000000,0.013317191283284,0.000000000000000,-0.003450363196139,0.003571428571438,0.003571428571438,-0.003571428571438,2 +8101,8103,8116,9245,-0.192857142857145,-0.386198547215503,-0.189285714285694,-0.382687651331702,-0.191071428571419,-0.377814769975785,-0.191071428571419,-0.391071428571419,-0.013317191283284,-0.000000000000000,0.013196125907985,-0.000000000000000,-0.003450363196152,0.003571428571451,0.003571428571451,-0.003571428571451,2 +8102,8104,8117,9216,-0.189285714285694,-0.382687651331702,-0.185714285714231,-0.379176755447889,-0.187499999999963,-0.374364406779628,-0.187499999999963,-0.387499999999963,-0.013196125907985,0.000000000000000,0.013075060532685,0.000000000000000,-0.003450363196162,0.003571428571462,0.003571428571462,-0.003571428571462,2 +8103,8105,8118,9187,-0.185714285714231,-0.379176755447889,-0.182142857142783,-0.375665859564090,-0.183928571428507,-0.370914043583472,-0.183928571428507,-0.383928571428507,-0.013075060532685,-0.000000000000000,0.012953995157385,0.000000000000000,-0.003450363196149,0.003571428571449,0.003571428571449,-0.003571428571449,2 +8104,8106,8119,9158,-0.182142857142783,-0.375665859564090,-0.178571428571347,-0.372154963680304,-0.180357142857065,-0.367463680387329,-0.180357142857065,-0.380357142857065,-0.012953995157385,-0.000000000000000,0.012832929782086,-0.000000000000000,-0.003450363196137,0.003571428571436,0.003571428571436,-0.003571428571436,2 +8105,8107,8120,9129,-0.178571428571347,-0.372154963680304,-0.174999999999916,-0.368644067796522,-0.176785714285631,-0.364013317191195,-0.176785714285631,-0.376785714285631,-0.012832929782086,0.000000000000000,0.012711864406787,0.000000000000000,-0.003450363196132,0.003571428571431,0.003571428571431,-0.003571428571431,2 +8106,8108,8121,9100,-0.174999999999916,-0.368644067796522,-0.171428571428512,-0.365133171912767,-0.173214285714214,-0.360562953995076,-0.173214285714214,-0.373214285714214,-0.012711864406787,-0.000000000000000,0.012590799031490,0.000000000000000,-0.003450363196106,0.003571428571404,0.003571428571404,-0.003571428571404,2 +8107,8109,8122,9071,-0.171428571428512,-0.365133171912767,-0.167857142857105,-0.361622276029009,-0.169642857142809,-0.357112590798968,-0.169642857142809,-0.369642857142809,-0.012590799031490,-0.000000000000000,0.012469733656192,0.000000000000000,-0.003450363196109,0.003571428571407,0.003571428571407,-0.003571428571407,2 +8108,8110,8123,9042,-0.167857142857105,-0.361622276029009,-0.164285714285684,-0.358111380145238,-0.166071428571394,-0.353662227602852,-0.166071428571395,-0.366071428571395,-0.012469733656192,-0.000000000000000,0.012348668280893,-0.000000000000000,-0.003450363196122,0.003571428571421,0.003571428571421,-0.003571428571421,2 +8109,8111,8124,9013,-0.164285714285684,-0.358111380145238,-0.160714285714279,-0.354600484261481,-0.162499999999982,-0.350211864406737,-0.162499999999982,-0.362499999999982,-0.012348668280893,0.000000000000000,0.012227602905595,0.000000000000000,-0.003450363196107,0.003571428571405,0.003571428571405,-0.003571428571405,2 +8110,8112,8125,8984,-0.160714285714279,-0.354600484261481,-0.157142857142850,-0.351089588377702,-0.158928571428564,-0.346761501210619,-0.158928571428564,-0.358928571428564,-0.012227602905595,-0.000000000000000,0.012106537530296,0.000000000000000,-0.003450363196131,0.003571428571429,0.003571428571429,-0.003571428571429,2 +8111,8113,8126,8955,-0.157142857142850,-0.351089588377702,-0.153571428571423,-0.347578692493924,-0.155357142857136,-0.343311138014489,-0.155357142857136,-0.355357142857136,-0.012106537530296,-0.000000000000000,0.011985472154998,-0.000000000000000,-0.003450363196128,0.003571428571427,0.003571428571427,-0.003571428571427,2 +8112,8127,8926,10158,-0.153571428571423,-0.347578692493924,-0.151785714285711,-0.339860774818363,-0.151785714285711,-0.351785714285711,-0.150000000000000,-0.344067796610150,-0.011985472154998,0.000000000000000,-0.003450363196124,0.003571428571423,0.003571428571423,-0.003571428571423,0.011864406779699,0.000000000000000,2 +2243,8100,8115,8128,-0.200000000000000,-0.379661016949189,-0.198214285714291,-0.384715496368059,-0.196428571428583,-0.376271186440718,-0.198214285714291,-0.371216707021848,-0.013559322033860,-0.000000000000000,0.003450363196119,-0.003571428571417,0.013438256658562,0.000000000000000,-0.003329297820822,0.003571428571417,2 +8101,8114,8116,8129,-0.194642857142864,-0.381265133171930,-0.196428571428583,-0.376271186440718,-0.192857142857145,-0.372881355932229,-0.194642857142864,-0.367887409201017,0.003450363196139,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.003329297820841,0.003571428571438,2 +8102,8115,8117,8130,-0.191071428571419,-0.377814769975785,-0.192857142857145,-0.372881355932229,-0.189285714285694,-0.369491525423726,-0.191071428571419,-0.364558111380170,0.003450363196152,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907966,0.000000000000000,-0.003329297820853,0.003571428571451,2 +8103,8116,8118,8131,-0.187499999999963,-0.374364406779628,-0.189285714285694,-0.369491525423726,-0.185714285714231,-0.366101694915213,-0.187499999999963,-0.361228813559312,0.003450363196162,-0.003571428571462,-0.013196125907966,-0.000000000000000,0.013075060532667,0.000000000000000,-0.003329297820864,0.003571428571462,2 +8104,8117,8119,8132,-0.183928571428507,-0.370914043583472,-0.185714285714231,-0.366101694915213,-0.182142857142783,-0.362711864406713,-0.183928571428507,-0.357899515738454,0.003450363196149,-0.003571428571449,-0.013075060532667,-0.000000000000000,0.012953995157369,0.000000000000000,-0.003329297820851,0.003571428571449,2 +8105,8118,8120,8133,-0.180357142857065,-0.367463680387329,-0.182142857142783,-0.362711864406713,-0.178571428571347,-0.359322033898225,-0.180357142857065,-0.354570217917610,0.003450363196137,-0.003571428571436,-0.012953995157369,-0.000000000000000,0.012832929782071,0.000000000000000,-0.003329297820839,0.003571428571436,2 +8106,8119,8121,8134,-0.176785714285631,-0.364013317191195,-0.178571428571347,-0.359322033898225,-0.174999999999916,-0.355932203389742,-0.176785714285631,-0.351240920096773,0.003450363196132,-0.003571428571431,-0.012832929782071,-0.000000000000000,0.012711864406773,0.000000000000000,-0.003329297820835,0.003571428571431,2 +8107,8120,8122,8135,-0.173214285714214,-0.360562953995076,-0.174999999999916,-0.355932203389742,-0.171428571428512,-0.352542372881285,-0.173214285714214,-0.347911622275951,0.003450363196106,-0.003571428571404,-0.012711864406773,-0.000000000000000,0.012590799031476,-0.000000000000000,-0.003329297820809,0.003571428571404,2 +8108,8121,8123,8136,-0.169642857142809,-0.357112590798968,-0.171428571428512,-0.352542372881285,-0.167857142857105,-0.349152542372824,-0.169642857142808,-0.344582324455141,0.003450363196109,-0.003571428571407,-0.012590799031476,0.000000000000000,0.012469733656179,0.000000000000000,-0.003329297820812,0.003571428571407,2 +8109,8122,8124,8137,-0.166071428571394,-0.353662227602852,-0.167857142857105,-0.349152542372824,-0.164285714285684,-0.345762711864350,-0.166071428571395,-0.341253026634322,0.003450363196122,-0.003571428571421,-0.012469733656179,-0.000000000000000,0.012348668280881,0.000000000000000,-0.003329297820825,0.003571428571421,2 +8110,8123,8125,8138,-0.162499999999982,-0.350211864406737,-0.164285714285684,-0.345762711864350,-0.160714285714279,-0.342372881355892,-0.162499999999982,-0.337923728813505,0.003450363196107,-0.003571428571405,-0.012348668280881,-0.000000000000000,0.012227602905585,0.000000000000000,-0.003329297820810,0.003571428571405,2 +8111,8124,8126,8139,-0.158928571428564,-0.346761501210619,-0.160714285714279,-0.342372881355892,-0.157142857142850,-0.338983050847410,-0.158928571428565,-0.334594430992683,0.003450363196131,-0.003571428571429,-0.012227602905585,-0.000000000000000,0.012106537530287,0.000000000000000,-0.003329297820833,0.003571428571429,2 +8112,8125,8127,8140,-0.155357142857136,-0.343311138014489,-0.157142857142850,-0.338983050847410,-0.153571428571423,-0.335593220338930,-0.155357142857136,-0.331265133171851,0.003450363196128,-0.003571428571427,-0.012106537530287,-0.000000000000000,0.011985472154989,0.000000000000000,-0.003329297820831,0.003571428571427,2 +8113,8126,8141,10159,-0.151785714285711,-0.339860774818363,-0.153571428571423,-0.335593220338930,-0.151785714285711,-0.327935835351022,-0.150000000000000,-0.332203389830455,0.003450363196124,-0.003571428571423,-0.011985472154989,-0.000000000000000,-0.003329297820827,0.003571428571423,0.011864406779692,-0.000000000000000,2 +2244,8114,8129,8142,-0.200000000000000,-0.366101694915329,-0.198214285714291,-0.371216707021848,-0.196428571428583,-0.362832929782156,-0.198214285714291,-0.357717917675637,-0.013559322033860,-0.000000000000000,0.003329297820822,-0.003571428571417,0.013438256658562,0.000000000000000,-0.003208232445524,0.003571428571417,2 +8115,8128,8130,8143,-0.194642857142864,-0.367887409201017,-0.196428571428583,-0.362832929782156,-0.192857142857145,-0.359564164648965,-0.194642857142864,-0.354509685230104,0.003329297820841,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.003208232445542,0.003571428571438,2 +8116,8129,8131,8144,-0.191071428571419,-0.364558111380170,-0.192857142857145,-0.359564164648965,-0.189285714285694,-0.356295399515761,-0.191071428571419,-0.351301452784556,0.003329297820853,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907965,0.000000000000000,-0.003208232445554,0.003571428571451,2 +8117,8130,8132,8145,-0.187499999999963,-0.361228813559312,-0.189285714285694,-0.356295399515761,-0.185714285714231,-0.353026634382547,-0.187499999999963,-0.348093220338997,0.003329297820864,-0.003571428571462,-0.013196125907965,-0.000000000000000,0.013075060532665,0.000000000000000,-0.003208232445564,0.003571428571462,2 +8118,8131,8133,8146,-0.183928571428507,-0.357899515738454,-0.185714285714231,-0.353026634382547,-0.182142857142783,-0.349757869249346,-0.183928571428507,-0.344884987893439,0.003329297820851,-0.003571428571449,-0.013075060532665,-0.000000000000000,0.012953995157366,0.000000000000000,-0.003208232445552,0.003571428571449,2 +8119,8132,8134,8147,-0.180357142857065,-0.354570217917610,-0.182142857142783,-0.349757869249346,-0.178571428571347,-0.346489104116156,-0.180357142857065,-0.341676755447893,0.003329297820839,-0.003571428571436,-0.012953995157366,-0.000000000000000,0.012832929782068,0.000000000000000,-0.003208232445540,0.003571428571436,2 +8120,8133,8135,8148,-0.176785714285631,-0.351240920096773,-0.178571428571347,-0.346489104116156,-0.174999999999916,-0.343220338982971,-0.176785714285631,-0.338468523002354,0.003329297820835,-0.003571428571431,-0.012832929782068,-0.000000000000000,0.012711864406769,0.000000000000000,-0.003208232445536,0.003571428571431,2 +8121,8134,8136,8149,-0.173214285714214,-0.347911622275951,-0.174999999999916,-0.343220338982971,-0.171428571428512,-0.339951573849811,-0.173214285714214,-0.335260290556830,0.003329297820809,-0.003571428571404,-0.012711864406769,-0.000000000000000,0.012590799031472,0.000000000000000,-0.003208232445512,0.003571428571404,2 +8122,8135,8137,8150,-0.169642857142808,-0.344582324455141,-0.171428571428512,-0.339951573849811,-0.167857142857105,-0.336682808716647,-0.169642857142809,-0.332052058111317,0.003329297820812,-0.003571428571407,-0.012590799031472,-0.000000000000000,0.012469733656174,0.000000000000000,-0.003208232445515,0.003571428571407,2 +8123,8136,8138,8151,-0.166071428571395,-0.341253026634322,-0.167857142857105,-0.336682808716647,-0.164285714285684,-0.333414043583471,-0.166071428571395,-0.328843825665797,0.003329297820825,-0.003571428571421,-0.012469733656174,-0.000000000000000,0.012348668280877,0.000000000000000,-0.003208232445527,0.003571428571421,2 +8124,8137,8139,8152,-0.162499999999982,-0.337923728813505,-0.164285714285684,-0.333414043583471,-0.160714285714279,-0.330145278450310,-0.162499999999982,-0.325635593220277,0.003329297820810,-0.003571428571405,-0.012348668280877,-0.000000000000000,0.012227602905579,-0.000000000000000,-0.003208232445513,0.003571428571405,2 +8125,8138,8140,8153,-0.158928571428565,-0.334594430992683,-0.160714285714279,-0.330145278450310,-0.157142857142850,-0.326876513317126,-0.158928571428564,-0.322427360774753,0.003329297820833,-0.003571428571429,-0.012227602905579,0.000000000000000,0.012106537530281,0.000000000000000,-0.003208232445535,0.003571428571429,2 +8126,8139,8141,8154,-0.155357142857136,-0.331265133171851,-0.157142857142850,-0.326876513317126,-0.153571428571423,-0.323607748183944,-0.155357142857136,-0.319219128329219,0.003329297820831,-0.003571428571427,-0.012106537530281,-0.000000000000000,0.011985472154983,-0.000000000000000,-0.003208232445532,0.003571428571427,2 +8127,8140,8155,10160,-0.151785714285711,-0.327935835351022,-0.153571428571423,-0.323607748183944,-0.151785714285711,-0.316010895883689,-0.150000000000000,-0.320338983050767,0.003329297820827,-0.003571428571423,-0.011985472154983,0.000000000000000,-0.003208232445529,0.003571428571423,0.011864406779685,-0.000000000000000,2 +2245,8128,8143,8156,-0.200000000000000,-0.352542372881469,-0.198214285714291,-0.357717917675637,-0.196428571428583,-0.349394673123594,-0.198214285714291,-0.344219128329426,-0.013559322033860,-0.000000000000000,0.003208232445524,-0.003571428571417,0.013438256658563,0.000000000000000,-0.003087167070227,0.003571428571417,2 +8129,8142,8144,8157,-0.194642857142864,-0.354509685230104,-0.196428571428583,-0.349394673123594,-0.192857142857145,-0.346246973365700,-0.194642857142864,-0.341131961259189,0.003208232445542,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283266,0.000000000000000,-0.003087167070245,0.003571428571438,2 +8130,8143,8145,8158,-0.191071428571419,-0.351301452784556,-0.192857142857145,-0.346246973365700,-0.189285714285694,-0.343099273607795,-0.191071428571419,-0.338044794188938,0.003208232445554,-0.003571428571451,-0.013317191283266,-0.000000000000000,0.013196125907969,0.000000000000000,-0.003087167070257,0.003571428571451,2 +8131,8144,8146,8159,-0.187499999999963,-0.348093220338997,-0.189285714285694,-0.343099273607795,-0.185714285714231,-0.339951573849879,-0.187499999999963,-0.334957627118677,0.003208232445564,-0.003571428571462,-0.013196125907969,-0.000000000000000,0.013075060532671,0.000000000000000,-0.003087167070266,0.003571428571462,2 +8132,8145,8147,8160,-0.183928571428507,-0.344884987893439,-0.185714285714231,-0.339951573849879,-0.182142857142783,-0.336803874091976,-0.183928571428507,-0.331870460048416,0.003208232445552,-0.003571428571449,-0.013075060532671,-0.000000000000000,0.012953995157374,0.000000000000000,-0.003087167070255,0.003571428571449,2 +8133,8146,8148,8161,-0.180357142857065,-0.341676755447893,-0.182142857142783,-0.336803874091976,-0.178571428571347,-0.333656174334084,-0.180357142857065,-0.328783292978167,0.003208232445540,-0.003571428571436,-0.012953995157374,-0.000000000000000,0.012832929782077,0.000000000000000,-0.003087167070244,0.003571428571436,2 +8134,8147,8149,8162,-0.176785714285631,-0.338468523002354,-0.178571428571347,-0.333656174334084,-0.174999999999916,-0.330508474576196,-0.176785714285631,-0.325696125907926,0.003208232445536,-0.003571428571431,-0.012832929782077,-0.000000000000000,0.012711864406780,0.000000000000000,-0.003087167070239,0.003571428571431,2 +8135,8148,8150,8163,-0.173214285714214,-0.335260290556830,-0.174999999999916,-0.330508474576196,-0.171428571428512,-0.327360774818332,-0.173214285714214,-0.322608958837698,0.003208232445512,-0.003571428571404,-0.012711864406780,-0.000000000000000,0.012590799031484,-0.000000000000000,-0.003087167070216,0.003571428571404,2 +8136,8149,8151,8164,-0.169642857142809,-0.332052058111317,-0.171428571428512,-0.327360774818332,-0.167857142857105,-0.324213075060466,-0.169642857142808,-0.319521791767481,0.003208232445515,-0.003571428571407,-0.012590799031484,0.000000000000000,0.012469733656188,0.000000000000000,-0.003087167070219,0.003571428571407,2 +8137,8150,8152,8165,-0.166071428571395,-0.328843825665797,-0.167857142857105,-0.324213075060466,-0.164285714285684,-0.321065375302587,-0.166071428571395,-0.316434624697256,0.003208232445527,-0.003571428571421,-0.012469733656188,-0.000000000000000,0.012348668280892,0.000000000000000,-0.003087167070231,0.003571428571421,2 +8138,8151,8153,8166,-0.162499999999982,-0.325635593220277,-0.164285714285684,-0.321065375302587,-0.160714285714279,-0.317917675544722,-0.162499999999982,-0.313347457627033,0.003208232445513,-0.003571428571405,-0.012348668280892,-0.000000000000000,0.012227602905596,0.000000000000000,-0.003087167070217,0.003571428571405,2 +8139,8152,8154,8167,-0.158928571428564,-0.322427360774753,-0.160714285714279,-0.317917675544722,-0.157142857142850,-0.314769975786836,-0.158928571428564,-0.310260290556805,0.003208232445535,-0.003571428571429,-0.012227602905596,-0.000000000000000,0.012106537530299,0.000000000000000,-0.003087167070238,0.003571428571429,2 +8140,8153,8155,8168,-0.155357142857136,-0.319219128329219,-0.157142857142850,-0.314769975786836,-0.153571428571423,-0.311622276028952,-0.155357142857136,-0.307173123486569,0.003208232445532,-0.003571428571427,-0.012106537530299,-0.000000000000000,0.011985472155003,0.000000000000000,-0.003087167070236,0.003571428571427,2 +8141,8154,8169,10161,-0.151785714285711,-0.316010895883689,-0.153571428571423,-0.311622276028952,-0.151785714285711,-0.304085956416335,-0.150000000000000,-0.308474576271071,0.003208232445529,-0.003571428571423,-0.011985472155003,-0.000000000000000,-0.003087167070232,0.003571428571423,0.011864406779706,-0.000000000000000,2 +2246,8142,8157,8170,-0.200000000000000,-0.338983050847605,-0.198214285714291,-0.344219128329426,-0.196428571428583,-0.335956416465027,-0.198214285714291,-0.330720338983206,-0.013559322033869,-0.000000000000000,0.003087167070227,-0.003571428571417,0.013438256658570,0.000000000000000,-0.002966101694928,0.003571428571417,2 +8143,8156,8158,8171,-0.194642857142864,-0.341131961259189,-0.196428571428583,-0.335956416465027,-0.192857142857145,-0.332929782082432,-0.194642857142864,-0.327754237288270,0.003087167070245,-0.003571428571438,-0.013438256658570,-0.000000000000000,0.013317191283270,0.000000000000000,-0.002966101694945,0.003571428571438,2 +8144,8157,8159,8172,-0.191071428571419,-0.338044794188938,-0.192857142857145,-0.332929782082432,-0.189285714285694,-0.329903147699826,-0.191071428571419,-0.324788135593319,0.003087167070257,-0.003571428571451,-0.013317191283270,-0.000000000000000,0.013196125907969,0.000000000000000,-0.002966101694956,0.003571428571451,2 +8145,8158,8160,8173,-0.187499999999963,-0.334957627118677,-0.189285714285694,-0.329903147699826,-0.185714285714231,-0.326876513317210,-0.187499999999963,-0.321822033898358,0.003087167070266,-0.003571428571462,-0.013196125907969,-0.000000000000000,0.013075060532668,0.000000000000000,-0.002966101694966,0.003571428571462,2 +8146,8159,8161,8174,-0.183928571428507,-0.331870460048416,-0.185714285714231,-0.326876513317210,-0.182142857142783,-0.323849878934605,-0.183928571428507,-0.318855932203398,0.003087167070255,-0.003571428571449,-0.013075060532668,-0.000000000000000,0.012953995157368,-0.000000000000000,-0.002966101694954,0.003571428571449,2 +8147,8160,8162,8175,-0.180357142857065,-0.328783292978167,-0.182142857142783,-0.323849878934605,-0.178571428571347,-0.320823244552011,-0.180357142857065,-0.315889830508449,0.003087167070244,-0.003571428571436,-0.012953995157368,0.000000000000000,0.012832929782068,0.000000000000000,-0.002966101694944,0.003571428571436,2 +8148,8161,8163,8176,-0.176785714285631,-0.325696125907926,-0.178571428571347,-0.320823244552011,-0.174999999999916,-0.317796610169422,-0.176785714285631,-0.312923728813508,0.003087167070239,-0.003571428571431,-0.012832929782068,-0.000000000000000,0.012711864406768,0.000000000000000,-0.002966101694939,0.003571428571431,2 +8149,8162,8164,8177,-0.173214285714214,-0.322608958837698,-0.174999999999916,-0.317796610169422,-0.171428571428512,-0.314769975786856,-0.173214285714214,-0.309957627118579,0.003087167070216,-0.003571428571404,-0.012711864406768,-0.000000000000000,0.012590799031470,0.000000000000000,-0.002966101694917,0.003571428571404,2 +8150,8163,8165,8178,-0.169642857142808,-0.319521791767481,-0.171428571428512,-0.314769975786856,-0.167857142857105,-0.311743341404286,-0.169642857142809,-0.306991525423661,0.003087167070219,-0.003571428571407,-0.012590799031470,-0.000000000000000,0.012469733656171,0.000000000000000,-0.002966101694920,0.003571428571407,2 +8151,8164,8166,8179,-0.166071428571395,-0.316434624697256,-0.167857142857105,-0.311743341404286,-0.164285714285684,-0.308716707021706,-0.166071428571395,-0.304025423728735,0.003087167070231,-0.003571428571421,-0.012469733656171,-0.000000000000000,0.012348668280871,0.000000000000000,-0.002966101694931,0.003571428571421,2 +8152,8165,8167,8180,-0.162499999999982,-0.313347457627033,-0.164285714285684,-0.308716707021706,-0.160714285714279,-0.305690072639138,-0.162499999999982,-0.301059322033811,0.003087167070217,-0.003571428571405,-0.012348668280871,-0.000000000000000,0.012227602905573,0.000000000000000,-0.002966101694918,0.003571428571405,2 +8153,8166,8168,8181,-0.158928571428564,-0.310260290556805,-0.160714285714279,-0.305690072639138,-0.157142857142850,-0.302663438256550,-0.158928571428565,-0.298093220338883,0.003087167070238,-0.003571428571429,-0.012227602905573,-0.000000000000000,0.012106537530273,0.000000000000000,-0.002966101694938,0.003571428571429,2 +8154,8167,8169,8182,-0.155357142857136,-0.307173123486569,-0.157142857142850,-0.302663438256550,-0.153571428571423,-0.299636803873964,-0.155357142857136,-0.295127118643946,0.003087167070236,-0.003571428571427,-0.012106537530273,-0.000000000000000,0.011985472154973,0.000000000000000,-0.002966101694936,0.003571428571427,2 +8155,8168,8183,10162,-0.151785714285711,-0.304085956416335,-0.153571428571423,-0.299636803873964,-0.151785714285711,-0.292161016949011,-0.150000000000000,-0.296610169491382,0.003087167070232,-0.003571428571423,-0.011985472154973,-0.000000000000000,-0.002966101694933,0.003571428571423,0.011864406779674,-0.000000000000000,2 +2247,8156,8171,8184,-0.200000000000000,-0.325423728813729,-0.198214285714291,-0.330720338983206,-0.196428571428583,-0.322518159806449,-0.198214285714291,-0.317221549636972,-0.013559322033883,-0.000000000000000,0.002966101694928,-0.003571428571417,0.013438256658586,0.000000000000000,-0.002845036319631,0.003571428571417,2 +8157,8170,8172,8185,-0.194642857142864,-0.327754237288270,-0.196428571428583,-0.322518159806449,-0.192857142857145,-0.319612590799153,-0.194642857142864,-0.314376513317333,0.002966101694945,-0.003571428571438,-0.013438256658586,-0.000000000000000,0.013317191283288,0.000000000000000,-0.002845036319647,0.003571428571438,2 +8158,8171,8173,8186,-0.191071428571419,-0.324788135593319,-0.192857142857145,-0.319612590799153,-0.189285714285694,-0.316707021791846,-0.191071428571419,-0.311531476997680,0.002966101694956,-0.003571428571451,-0.013317191283288,-0.000000000000000,0.013196125907990,0.000000000000000,-0.002845036319658,0.003571428571451,2 +8159,8172,8174,8187,-0.187499999999963,-0.321822033898358,-0.189285714285694,-0.316707021791846,-0.185714285714231,-0.313801452784530,-0.187499999999963,-0.308686440678018,0.002966101694966,-0.003571428571462,-0.013196125907990,-0.000000000000000,0.013075060532691,0.000000000000000,-0.002845036319667,0.003571428571462,2 +8160,8173,8175,8188,-0.183928571428507,-0.318855932203398,-0.185714285714231,-0.313801452784530,-0.182142857142783,-0.310895883777225,-0.183928571428507,-0.305841404358356,0.002966101694954,-0.003571428571449,-0.013075060532691,-0.000000000000000,0.012953995157393,0.000000000000000,-0.002845036319656,0.003571428571449,2 +8161,8174,8176,8189,-0.180357142857065,-0.315889830508449,-0.182142857142783,-0.310895883777225,-0.178571428571347,-0.307990314769930,-0.180357142857065,-0.302996368038705,0.002966101694944,-0.003571428571436,-0.012953995157393,-0.000000000000000,0.012832929782095,-0.000000000000000,-0.002845036319646,0.003571428571436,2 +8162,8175,8177,8190,-0.176785714285631,-0.312923728813508,-0.178571428571347,-0.307990314769930,-0.174999999999916,-0.305084745762639,-0.176785714285631,-0.300151331719061,0.002966101694939,-0.003571428571431,-0.012832929782095,0.000000000000000,0.012711864406797,-0.000000000000000,-0.002845036319642,0.003571428571431,2 +8163,8176,8178,8191,-0.173214285714214,-0.309957627118579,-0.174999999999916,-0.305084745762639,-0.171428571428512,-0.302179176755371,-0.173214285714214,-0.297306295399430,0.002966101694917,-0.003571428571404,-0.012711864406797,0.000000000000000,0.012590799031501,0.000000000000000,-0.002845036319620,0.003571428571404,2 +8164,8177,8179,8192,-0.169642857142809,-0.306991525423661,-0.171428571428512,-0.302179176755371,-0.167857142857105,-0.299273607748099,-0.169642857142809,-0.294461259079809,0.002966101694920,-0.003571428571407,-0.012590799031501,-0.000000000000000,0.012469733656204,0.000000000000000,-0.002845036319623,0.003571428571407,2 +8165,8178,8180,8193,-0.166071428571395,-0.304025423728735,-0.167857142857105,-0.299273607748099,-0.164285714285684,-0.296368038740817,-0.166071428571395,-0.291616222760180,0.002966101694931,-0.003571428571421,-0.012469733656204,-0.000000000000000,0.012348668280906,0.000000000000000,-0.002845036319634,0.003571428571421,2 +8166,8179,8181,8194,-0.162499999999982,-0.301059322033811,-0.164285714285684,-0.296368038740817,-0.160714285714279,-0.293462469733547,-0.162499999999982,-0.288771186440553,0.002966101694918,-0.003571428571405,-0.012348668280906,-0.000000000000000,0.012227602905610,0.000000000000000,-0.002845036319621,0.003571428571405,2 +8167,8180,8182,8195,-0.158928571428565,-0.298093220338883,-0.160714285714279,-0.293462469733547,-0.157142857142850,-0.290556900726258,-0.158928571428565,-0.285926150120922,0.002966101694938,-0.003571428571429,-0.012227602905610,-0.000000000000000,0.012106537530312,0.000000000000000,-0.002845036319641,0.003571428571429,2 +8168,8181,8183,8196,-0.155357142857136,-0.295127118643946,-0.157142857142850,-0.290556900726258,-0.153571428571423,-0.287651331718970,-0.155357142857136,-0.283081113801282,0.002966101694936,-0.003571428571427,-0.012106537530312,-0.000000000000000,0.011985472155014,-0.000000000000000,-0.002845036319639,0.003571428571427,2 +8169,8182,8197,10163,-0.151785714285711,-0.292161016949011,-0.153571428571423,-0.287651331718970,-0.151785714285711,-0.280236077481645,-0.150000000000000,-0.284745762711686,0.002966101694933,-0.003571428571423,-0.011985472155014,0.000000000000000,-0.002845036319635,0.003571428571423,0.011864406779717,-0.000000000000000,2 +2248,8170,8185,8198,-0.200000000000000,-0.311864406779851,-0.198214285714291,-0.317221549636972,-0.196428571428583,-0.309079903147870,-0.198214285714291,-0.303722760290749,-0.013559322033872,-0.000000000000000,0.002845036319631,-0.003571428571417,0.013438256658573,-0.000000000000000,-0.002723970944332,0.003571428571417,2 +8171,8184,8186,8199,-0.194642857142864,-0.314376513317333,-0.196428571428583,-0.309079903147870,-0.192857142857145,-0.306295399515872,-0.194642857142864,-0.300998789346410,0.002845036319647,-0.003571428571438,-0.013438256658573,0.000000000000000,0.013317191283273,0.000000000000000,-0.002723970944347,0.003571428571438,2 +8172,8185,8187,8200,-0.191071428571419,-0.311531476997680,-0.192857142857145,-0.306295399515872,-0.189285714285694,-0.303510895883865,-0.191071428571419,-0.298274818402058,0.002845036319658,-0.003571428571451,-0.013317191283273,-0.000000000000000,0.013196125907972,0.000000000000000,-0.002723970944357,0.003571428571451,2 +8173,8186,8188,8201,-0.187499999999963,-0.308686440678018,-0.189285714285694,-0.303510895883865,-0.185714285714232,-0.300726392251849,-0.187499999999963,-0.295550847457696,0.002845036319667,-0.003571428571462,-0.013196125907972,-0.000000000000000,0.013075060532671,0.000000000000000,-0.002723970944366,0.003571428571462,2 +8174,8187,8189,8202,-0.183928571428507,-0.305841404358356,-0.185714285714232,-0.300726392251849,-0.182142857142783,-0.297941888619843,-0.183928571428507,-0.292826876513336,0.002845036319656,-0.003571428571449,-0.013075060532671,-0.000000000000000,0.012953995157370,0.000000000000000,-0.002723970944355,0.003571428571449,2 +8175,8188,8190,8203,-0.180357142857065,-0.302996368038705,-0.182142857142783,-0.297941888619843,-0.178571428571347,-0.295157384987847,-0.180357142857065,-0.290102905568985,0.002845036319646,-0.003571428571436,-0.012953995157370,-0.000000000000000,0.012832929782070,0.000000000000000,-0.002723970944346,0.003571428571436,2 +8176,8189,8191,8204,-0.176785714285631,-0.300151331719061,-0.178571428571347,-0.295157384987847,-0.174999999999916,-0.292372881355855,-0.176785714285631,-0.287378934624641,0.002845036319642,-0.003571428571431,-0.012832929782070,-0.000000000000000,0.012711864406770,0.000000000000000,-0.002723970944342,0.003571428571431,2 +8177,8190,8192,8205,-0.173214285714214,-0.297306295399430,-0.174999999999916,-0.292372881355855,-0.171428571428512,-0.289588377723885,-0.173214285714214,-0.284654963680310,0.002845036319620,-0.003571428571404,-0.012711864406770,-0.000000000000000,0.012590799031471,-0.000000000000000,-0.002723970944321,0.003571428571404,2 +8178,8191,8193,8206,-0.169642857142809,-0.294461259079809,-0.171428571428512,-0.289588377723885,-0.167857142857105,-0.286803874091911,-0.169642857142808,-0.281930992735987,0.002845036319623,-0.003571428571407,-0.012590799031471,0.000000000000000,0.012469733656172,0.000000000000000,-0.002723970944324,0.003571428571407,2 +8179,8192,8194,8207,-0.166071428571395,-0.291616222760180,-0.167857142857105,-0.286803874091911,-0.164285714285684,-0.284019370459927,-0.166071428571395,-0.279207021791658,0.002845036319634,-0.003571428571421,-0.012469733656172,-0.000000000000000,0.012348668280872,0.000000000000000,-0.002723970944334,0.003571428571421,2 +8180,8193,8195,8208,-0.162499999999982,-0.288771186440553,-0.164285714285684,-0.284019370459927,-0.160714285714279,-0.281234866827956,-0.162499999999982,-0.276483050847330,0.002845036319621,-0.003571428571405,-0.012348668280872,-0.000000000000000,0.012227602905573,-0.000000000000000,-0.002723970944322,0.003571428571405,2 +8181,8194,8196,8209,-0.158928571428565,-0.285926150120922,-0.160714285714279,-0.281234866827956,-0.157142857142850,-0.278450363195965,-0.158928571428564,-0.273759079902999,0.002845036319641,-0.003571428571429,-0.012227602905573,0.000000000000000,0.012106537530273,0.000000000000000,-0.002723970944341,0.003571428571429,2 +8182,8195,8197,8210,-0.155357142857136,-0.283081113801282,-0.157142857142850,-0.278450363195965,-0.153571428571423,-0.275665859563976,-0.155357142857136,-0.271035108958659,0.002845036319639,-0.003571428571427,-0.012106537530273,-0.000000000000000,0.011985472154974,0.000000000000000,-0.002723970944339,0.003571428571427,2 +8183,8196,8211,10164,-0.151785714285711,-0.280236077481645,-0.153571428571423,-0.275665859563976,-0.151785714285711,-0.268311138014322,-0.150000000000000,-0.272881355931991,0.002845036319635,-0.003571428571423,-0.011985472154974,-0.000000000000000,-0.002723970944336,0.003571428571423,0.011864406779674,-0.000000000000000,2 +2249,8184,8199,8212,-0.200000000000000,-0.298305084745975,-0.198214285714291,-0.303722760290749,-0.196428571428583,-0.295641646489293,-0.198214285714291,-0.290223970944519,-0.013559322033879,-0.000000000000000,0.002723970944332,-0.003571428571417,0.013438256658581,0.000000000000000,-0.002602905569034,0.003571428571417,2 +8185,8198,8200,8213,-0.194642857142864,-0.300998789346410,-0.196428571428583,-0.295641646489293,-0.192857142857145,-0.292978208232595,-0.194642857142864,-0.287621065375478,0.002723970944347,-0.003571428571438,-0.013438256658581,-0.000000000000000,0.013317191283283,0.000000000000000,-0.002602905569049,0.003571428571438,2 +8186,8199,8201,8214,-0.191071428571419,-0.298274818402058,-0.192857142857145,-0.292978208232595,-0.189285714285694,-0.290314769975887,-0.191071428571419,-0.285018159806424,0.002723970944357,-0.003571428571451,-0.013317191283283,-0.000000000000000,0.013196125907984,-0.000000000000000,-0.002602905569058,0.003571428571451,2 +8187,8200,8202,8215,-0.187499999999963,-0.295550847457696,-0.189285714285694,-0.290314769975887,-0.185714285714232,-0.287651331719171,-0.187499999999963,-0.282415254237362,0.002723970944366,-0.003571428571462,-0.013196125907984,0.000000000000000,0.013075060532684,-0.000000000000000,-0.002602905569066,0.003571428571462,2 +8188,8201,8203,8216,-0.183928571428507,-0.292826876513336,-0.185714285714232,-0.287651331719171,-0.182142857142783,-0.284987893462465,-0.183928571428507,-0.279812348668301,0.002723970944355,-0.003571428571449,-0.013075060532684,0.000000000000000,0.012953995157385,0.000000000000000,-0.002602905569057,0.003571428571449,2 +8189,8202,8204,8217,-0.180357142857065,-0.290102905568985,-0.182142857142783,-0.284987893462465,-0.178571428571347,-0.282324455205769,-0.180357142857065,-0.277209443099249,0.002723970944346,-0.003571428571436,-0.012953995157385,-0.000000000000000,0.012832929782087,0.000000000000000,-0.002602905569047,0.003571428571436,2 +8190,8203,8205,8218,-0.176785714285631,-0.287378934624641,-0.178571428571347,-0.282324455205769,-0.174999999999916,-0.279661016949076,-0.176785714285631,-0.274606537530204,0.002723970944342,-0.003571428571431,-0.012832929782087,-0.000000000000000,0.012711864406788,0.000000000000000,-0.002602905569043,0.003571428571431,2 +8191,8204,8206,8219,-0.173214285714214,-0.284654963680310,-0.174999999999916,-0.279661016949076,-0.171428571428512,-0.276997578692404,-0.173214285714214,-0.272003631961170,0.002723970944321,-0.003571428571404,-0.012711864406788,-0.000000000000000,0.012590799031491,0.000000000000000,-0.002602905569024,0.003571428571404,2 +8192,8205,8207,8220,-0.169642857142808,-0.281930992735987,-0.171428571428512,-0.276997578692404,-0.167857142857105,-0.274334140435729,-0.169642857142808,-0.269400726392145,0.002723970944324,-0.003571428571407,-0.012590799031491,-0.000000000000000,0.012469733656193,0.000000000000000,-0.002602905569026,0.003571428571407,2 +8193,8206,8208,8221,-0.166071428571395,-0.279207021791658,-0.167857142857105,-0.274334140435729,-0.164285714285684,-0.271670702179044,-0.166071428571395,-0.266797820823114,0.002723970944334,-0.003571428571421,-0.012469733656193,-0.000000000000000,0.012348668280895,0.000000000000000,-0.002602905569036,0.003571428571421,2 +8194,8207,8209,8222,-0.162499999999982,-0.276483050847330,-0.164285714285684,-0.271670702179044,-0.160714285714279,-0.269007263922370,-0.162499999999982,-0.264194915254084,0.002723970944322,-0.003571428571405,-0.012348668280895,-0.000000000000000,0.012227602905598,0.000000000000000,-0.002602905569025,0.003571428571405,2 +8195,8208,8210,8223,-0.158928571428564,-0.273759079902999,-0.160714285714279,-0.269007263922370,-0.157142857142850,-0.266343825665679,-0.158928571428564,-0.261592009685050,0.002723970944341,-0.003571428571429,-0.012227602905598,-0.000000000000000,0.012106537530299,0.000000000000000,-0.002602905569042,0.003571428571429,2 +8196,8209,8211,8224,-0.155357142857136,-0.271035108958659,-0.157142857142850,-0.266343825665679,-0.153571428571423,-0.263680387408989,-0.155357142857136,-0.258989104116009,0.002723970944339,-0.003571428571427,-0.012106537530299,-0.000000000000000,0.011985472155001,0.000000000000000,-0.002602905569041,0.003571428571427,2 +8197,8210,8225,10165,-0.151785714285711,-0.268311138014322,-0.153571428571423,-0.263680387408989,-0.151785714285711,-0.256386198546970,-0.150000000000000,-0.261016949152303,0.002723970944336,-0.003571428571423,-0.011985472155001,-0.000000000000000,-0.002602905569038,0.003571428571423,0.011864406779703,-0.000000000000000,2 +2250,8198,8213,8226,-0.200000000000000,-0.284745762712106,-0.198214285714291,-0.290223970944519,-0.196428571428583,-0.282203389830721,-0.198214285714291,-0.276725181598308,-0.013559322033860,-0.000000000000000,0.002602905569034,-0.003571428571417,0.013438256658562,0.000000000000000,-0.002481840193736,0.003571428571417,2 +8199,8212,8214,8227,-0.194642857142864,-0.287621065375478,-0.196428571428583,-0.282203389830721,-0.192857142857145,-0.279661016949321,-0.194642857142864,-0.274243341404565,0.002602905569049,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.002481840193750,0.003571428571438,2 +8200,8213,8215,8228,-0.191071428571419,-0.285018159806424,-0.192857142857145,-0.279661016949321,-0.189285714285694,-0.277118644067913,-0.191071428571419,-0.271761501210810,0.002602905569058,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907965,0.000000000000000,-0.002481840193759,0.003571428571451,2 +8201,8214,8216,8229,-0.187499999999963,-0.282415254237362,-0.189285714285694,-0.277118644067913,-0.185714285714231,-0.274576271186496,-0.187499999999963,-0.269279661017047,0.002602905569066,-0.003571428571462,-0.013196125907965,-0.000000000000000,0.013075060532666,0.000000000000000,-0.002481840193767,0.003571428571462,2 +8202,8215,8217,8230,-0.183928571428507,-0.279812348668301,-0.185714285714231,-0.274576271186496,-0.182142857142783,-0.272033898305089,-0.183928571428507,-0.266797820823284,0.002602905569057,-0.003571428571449,-0.013075060532666,-0.000000000000000,0.012953995157367,-0.000000000000000,-0.002481840193758,0.003571428571449,2 +8203,8216,8218,8231,-0.180357142857065,-0.277209443099249,-0.182142857142783,-0.272033898305089,-0.178571428571347,-0.269491525423691,-0.180357142857065,-0.264315980629531,0.002602905569047,-0.003571428571436,-0.012953995157367,0.000000000000000,0.012832929782069,0.000000000000000,-0.002481840193749,0.003571428571436,2 +8204,8217,8219,8232,-0.176785714285631,-0.274606537530204,-0.178571428571347,-0.269491525423691,-0.174999999999916,-0.266949152542296,-0.176785714285631,-0.261834140435784,0.002602905569043,-0.003571428571431,-0.012832929782069,-0.000000000000000,0.012711864406771,0.000000000000000,-0.002481840193745,0.003571428571431,2 +8205,8218,8220,8233,-0.173214285714214,-0.272003631961170,-0.174999999999916,-0.266949152542296,-0.171428571428512,-0.264406779660921,-0.173214285714214,-0.259352300242048,0.002602905569024,-0.003571428571404,-0.012711864406771,-0.000000000000000,0.012590799031474,0.000000000000000,-0.002481840193727,0.003571428571404,2 +8206,8219,8221,8234,-0.169642857142808,-0.269400726392145,-0.171428571428512,-0.264406779660921,-0.167857142857105,-0.261864406779544,-0.169642857142808,-0.256870460048320,0.002602905569026,-0.003571428571407,-0.012590799031474,-0.000000000000000,0.012469733656176,0.000000000000000,-0.002481840193729,0.003571428571407,2 +8207,8220,8222,8235,-0.166071428571395,-0.266797820823114,-0.167857142857105,-0.261864406779544,-0.164285714285684,-0.259322033898157,-0.166071428571395,-0.254388619854587,0.002602905569036,-0.003571428571421,-0.012469733656176,-0.000000000000000,0.012348668280879,0.000000000000000,-0.002481840193739,0.003571428571421,2 +8208,8221,8223,8236,-0.162499999999982,-0.264194915254084,-0.164285714285684,-0.259322033898157,-0.160714285714279,-0.256779661016781,-0.162499999999982,-0.251906779660854,0.002602905569025,-0.003571428571405,-0.012348668280879,-0.000000000000000,0.012227602905581,0.000000000000000,-0.002481840193727,0.003571428571405,2 +8209,8222,8224,8237,-0.158928571428564,-0.261592009685050,-0.160714285714279,-0.256779661016781,-0.157142857142850,-0.254237288135387,-0.158928571428564,-0.249424939467118,0.002602905569042,-0.003571428571429,-0.012227602905581,-0.000000000000000,0.012106537530284,0.000000000000000,-0.002481840193744,0.003571428571429,2 +8210,8223,8225,8238,-0.155357142857136,-0.258989104116009,-0.157142857142850,-0.254237288135387,-0.153571428571423,-0.251694915253996,-0.155357142857136,-0.246943099273374,0.002602905569041,-0.003571428571427,-0.012106537530284,-0.000000000000000,0.011985472154985,0.000000000000000,-0.002481840193742,0.003571428571427,2 +8211,8224,8239,10166,-0.151785714285711,-0.256386198546970,-0.153571428571423,-0.251694915253996,-0.151785714285711,-0.244461259079633,-0.150000000000000,-0.249152542372607,0.002602905569038,-0.003571428571423,-0.011985472154985,-0.000000000000000,-0.002481840193740,0.003571428571423,0.011864406779688,-0.000000000000000,2 +2251,8212,8227,8240,-0.200000000000000,-0.271186440678246,-0.198214285714291,-0.276725181598308,-0.196428571428583,-0.268765133172159,-0.198214285714291,-0.263226392252097,-0.013559322033860,-0.000000000000000,0.002481840193736,-0.003571428571417,0.013438256658562,0.000000000000000,-0.002360774818438,0.003571428571417,2 +8213,8226,8228,8241,-0.194642857142864,-0.274243341404565,-0.196428571428583,-0.268765133172159,-0.192857142857145,-0.266343825666058,-0.194642857142864,-0.260865617433652,0.002481840193750,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.002360774818452,0.003571428571438,2 +8214,8227,8229,8242,-0.191071428571419,-0.271761501210810,-0.192857142857145,-0.266343825666058,-0.189285714285694,-0.263922518159948,-0.191071428571419,-0.258504842615195,0.002481840193759,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907965,-0.000000000000000,-0.002360774818461,0.003571428571451,2 +8215,8228,8230,8243,-0.187499999999963,-0.269279661017047,-0.189285714285694,-0.263922518159948,-0.185714285714231,-0.261501210653830,-0.187499999999963,-0.256144067796731,0.002481840193767,-0.003571428571462,-0.013196125907965,0.000000000000000,0.013075060532666,0.000000000000000,-0.002360774818468,0.003571428571462,2 +8216,8229,8231,8244,-0.183928571428507,-0.266797820823284,-0.185714285714231,-0.261501210653830,-0.182142857142783,-0.259079903147722,-0.183928571428507,-0.253783292978267,0.002481840193758,-0.003571428571449,-0.013075060532666,-0.000000000000000,0.012953995157368,0.000000000000000,-0.002360774818459,0.003571428571449,2 +8217,8230,8232,8245,-0.180357142857065,-0.264315980629531,-0.182142857142783,-0.259079903147722,-0.178571428571347,-0.256658595641622,-0.180357142857065,-0.251422518159813,0.002481840193749,-0.003571428571436,-0.012953995157368,-0.000000000000000,0.012832929782069,-0.000000000000000,-0.002360774818451,0.003571428571436,2 +8218,8231,8233,8246,-0.176785714285631,-0.261834140435784,-0.178571428571347,-0.256658595641622,-0.174999999999916,-0.254237288135525,-0.176785714285631,-0.249061743341363,0.002481840193745,-0.003571428571431,-0.012832929782069,0.000000000000000,0.012711864406771,-0.000000000000000,-0.002360774818447,0.003571428571431,2 +8219,8232,8234,8247,-0.173214285714214,-0.259352300242048,-0.174999999999916,-0.254237288135525,-0.171428571428512,-0.251815980629447,-0.173214285714214,-0.246700968522925,0.002481840193727,-0.003571428571404,-0.012711864406771,0.000000000000000,0.012590799031474,0.000000000000000,-0.002360774818429,0.003571428571404,2 +8220,8233,8235,8248,-0.169642857142808,-0.256870460048320,-0.171428571428512,-0.251815980629447,-0.167857142857105,-0.249394673123367,-0.169642857142808,-0.244340193704495,0.002481840193729,-0.003571428571407,-0.012590799031474,-0.000000000000000,0.012469733656177,0.000000000000000,-0.002360774818432,0.003571428571407,2 +8221,8234,8236,8249,-0.166071428571395,-0.254388619854587,-0.167857142857105,-0.249394673123367,-0.164285714285684,-0.246973365617278,-0.166071428571395,-0.241979418886058,0.002481840193739,-0.003571428571421,-0.012469733656177,-0.000000000000000,0.012348668280879,0.000000000000000,-0.002360774818441,0.003571428571421,2 +8222,8235,8237,8250,-0.162499999999982,-0.251906779660854,-0.164285714285684,-0.246973365617278,-0.160714285714279,-0.244552058111199,-0.162499999999982,-0.239618644067623,0.002481840193727,-0.003571428571405,-0.012348668280879,-0.000000000000000,0.012227602905582,0.000000000000000,-0.002360774818430,0.003571428571405,2 +8223,8236,8238,8251,-0.158928571428564,-0.249424939467118,-0.160714285714279,-0.244552058111199,-0.157142857142850,-0.242130750605104,-0.158928571428564,-0.237257869249185,0.002481840193744,-0.003571428571429,-0.012227602905582,-0.000000000000000,0.012106537530284,0.000000000000000,-0.002360774818446,0.003571428571429,2 +8224,8237,8239,8252,-0.155357142857136,-0.246943099273374,-0.157142857142850,-0.242130750605104,-0.153571428571423,-0.239709443099010,-0.155357142857136,-0.234897094430739,0.002481840193742,-0.003571428571427,-0.012106537530284,-0.000000000000000,0.011985472154987,0.000000000000000,-0.002360774818445,0.003571428571427,2 +8225,8238,8253,10167,-0.151785714285711,-0.244461259079633,-0.153571428571423,-0.239709443099010,-0.151785714285711,-0.232536319612296,-0.150000000000000,-0.237288135592919,0.002481840193740,-0.003571428571423,-0.011985472154987,-0.000000000000000,-0.002360774818442,0.003571428571423,0.011864406779689,-0.000000000000000,2 +2252,8226,8241,8254,-0.200000000000000,-0.257627118644386,-0.198214285714291,-0.263226392252097,-0.196428571428583,-0.255326876513596,-0.198214285714291,-0.249727602905885,-0.013559322033860,-0.000000000000000,0.002360774818438,-0.003571428571417,0.013438256658563,0.000000000000000,-0.002239709443142,0.003571428571417,2 +8227,8240,8242,8255,-0.194642857142864,-0.260865617433652,-0.196428571428583,-0.255326876513596,-0.192857142857145,-0.253026634382793,-0.194642857142864,-0.247487893462737,0.002360774818452,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283266,0.000000000000000,-0.002239709443155,0.003571428571438,2 +8228,8241,8243,8256,-0.191071428571419,-0.258504842615195,-0.192857142857145,-0.253026634382793,-0.189285714285694,-0.250726392251981,-0.191071428571419,-0.245248184019578,0.002360774818461,-0.003571428571451,-0.013317191283266,-0.000000000000000,0.013196125907968,0.000000000000000,-0.002239709443163,0.003571428571451,2 +8229,8242,8244,8257,-0.187499999999963,-0.256144067796731,-0.189285714285694,-0.250726392251981,-0.185714285714231,-0.248426150121162,-0.187499999999963,-0.243008474576412,0.002360774818468,-0.003571428571462,-0.013196125907968,-0.000000000000000,0.013075060532670,0.000000000000000,-0.002239709443170,0.003571428571462,2 +8230,8243,8245,8258,-0.183928571428507,-0.253783292978267,-0.185714285714231,-0.248426150121162,-0.182142857142783,-0.246125907990352,-0.183928571428507,-0.240768765133246,0.002360774818459,-0.003571428571449,-0.013075060532670,-0.000000000000000,0.012953995157372,0.000000000000000,-0.002239709443161,0.003571428571449,2 +8231,8244,8246,8259,-0.180357142857065,-0.251422518159813,-0.182142857142783,-0.246125907990352,-0.178571428571347,-0.243825665859550,-0.180357142857065,-0.238529055690089,0.002360774818451,-0.003571428571436,-0.012953995157372,-0.000000000000000,0.012832929782075,0.000000000000000,-0.002239709443154,0.003571428571436,2 +8232,8245,8247,8260,-0.176785714285631,-0.249061743341363,-0.178571428571347,-0.243825665859550,-0.174999999999916,-0.241525423728751,-0.176785714285631,-0.236289346246937,0.002360774818447,-0.003571428571431,-0.012832929782075,-0.000000000000000,0.012711864406778,0.000000000000000,-0.002239709443150,0.003571428571431,2 +8233,8246,8248,8261,-0.173214285714214,-0.246700968522925,-0.174999999999916,-0.241525423728751,-0.171428571428512,-0.239225181597969,-0.173214285714214,-0.234049636803795,0.002360774818429,-0.003571428571404,-0.012711864406778,-0.000000000000000,0.012590799031482,0.000000000000000,-0.002239709443133,0.003571428571404,2 +8234,8247,8249,8262,-0.169642857142808,-0.244340193704495,-0.171428571428512,-0.239225181597969,-0.167857142857105,-0.236924939467186,-0.169642857142809,-0.231809927360661,0.002360774818432,-0.003571428571407,-0.012590799031482,-0.000000000000000,0.012469733656186,0.000000000000000,-0.002239709443136,0.003571428571407,2 +8235,8248,8250,8263,-0.166071428571395,-0.241979418886058,-0.167857142857105,-0.236924939467186,-0.164285714285684,-0.234624697336393,-0.166071428571395,-0.229570217917521,0.002360774818441,-0.003571428571421,-0.012469733656186,-0.000000000000000,0.012348668280889,0.000000000000000,-0.002239709443144,0.003571428571421,2 +8236,8249,8251,8264,-0.162499999999982,-0.239618644067623,-0.164285714285684,-0.234624697336393,-0.160714285714279,-0.232324455205611,-0.162499999999982,-0.227330508474382,0.002360774818430,-0.003571428571405,-0.012348668280889,-0.000000000000000,0.012227602905593,0.000000000000000,-0.002239709443134,0.003571428571405,2 +8237,8250,8252,8265,-0.158928571428564,-0.237257869249185,-0.160714285714279,-0.232324455205611,-0.157142857142850,-0.230024213074814,-0.158928571428564,-0.225090799031240,0.002360774818446,-0.003571428571429,-0.012227602905593,-0.000000000000000,0.012106537530296,0.000000000000000,-0.002239709443149,0.003571428571429,2 +8238,8251,8253,8266,-0.155357142857136,-0.234897094430739,-0.157142857142850,-0.230024213074814,-0.153571428571423,-0.227723970944017,-0.155357142857136,-0.222851089588092,0.002360774818445,-0.003571428571427,-0.012106537530296,-0.000000000000000,0.011985472154999,-0.000000000000000,-0.002239709443148,0.003571428571427,2 +8239,8252,8267,10168,-0.151785714285711,-0.232536319612296,-0.153571428571423,-0.227723970944017,-0.151785714285711,-0.220611380144945,-0.150000000000000,-0.225423728813224,0.002360774818442,-0.003571428571423,-0.011985472154999,0.000000000000000,-0.002239709443145,0.003571428571423,0.011864406779702,-0.000000000000000,2 +2253,8240,8255,8268,-0.200000000000000,-0.244067796610526,-0.198214285714291,-0.249727602905885,-0.196428571428583,-0.241888619855034,-0.198214285714291,-0.236228813559675,-0.013559322033860,-0.000000000000000,0.002239709443142,-0.003571428571417,0.013438256658561,-0.000000000000000,-0.002118644067843,0.003571428571417,2 +8241,8254,8256,8269,-0.194642857142864,-0.247487893462737,-0.196428571428583,-0.241888619855034,-0.192857142857145,-0.239709443099529,-0.194642857142864,-0.234110169491826,0.002239709443155,-0.003571428571438,-0.013438256658561,0.000000000000000,0.013317191283262,0.000000000000000,-0.002118644067855,0.003571428571438,2 +8242,8255,8257,8270,-0.191071428571419,-0.245248184019578,-0.192857142857145,-0.239709443099529,-0.189285714285694,-0.237530266344016,-0.191071428571419,-0.231991525423967,0.002239709443163,-0.003571428571451,-0.013317191283262,-0.000000000000000,0.013196125907962,0.000000000000000,-0.002118644067863,0.003571428571451,2 +8243,8256,8258,8271,-0.187499999999963,-0.243008474576412,-0.189285714285694,-0.237530266344016,-0.185714285714231,-0.235351089588496,-0.187499999999963,-0.229872881356100,0.002239709443170,-0.003571428571462,-0.013196125907962,-0.000000000000000,0.013075060532662,0.000000000000000,-0.002118644067870,0.003571428571462,2 +8244,8257,8259,8272,-0.183928571428507,-0.240768765133246,-0.185714285714231,-0.235351089588496,-0.182142857142783,-0.233171912832984,-0.183928571428507,-0.227754237288234,0.002239709443161,-0.003571428571449,-0.013075060532662,-0.000000000000000,0.012953995157363,-0.000000000000000,-0.002118644067862,0.003571428571449,2 +8245,8258,8260,8273,-0.180357142857065,-0.238529055690089,-0.182142857142783,-0.233171912832984,-0.178571428571347,-0.230992736077480,-0.180357142857065,-0.225635593220376,0.002239709443154,-0.003571428571436,-0.012953995157363,0.000000000000000,0.012832929782063,-0.000000000000000,-0.002118644067854,0.003571428571436,2 +8246,8259,8261,8274,-0.176785714285631,-0.236289346246937,-0.178571428571347,-0.230992736077480,-0.174999999999916,-0.228813559321980,-0.176785714285631,-0.223516949152523,0.002239709443150,-0.003571428571431,-0.012832929782063,0.000000000000000,0.012711864406764,0.000000000000000,-0.002118644067851,0.003571428571431,2 +8247,8260,8262,8275,-0.173214285714214,-0.234049636803795,-0.174999999999916,-0.228813559321980,-0.171428571428512,-0.226634382566495,-0.173214285714214,-0.221398305084680,0.002239709443133,-0.003571428571404,-0.012711864406764,-0.000000000000000,0.012590799031466,-0.000000000000000,-0.002118644067835,0.003571428571404,2 +8248,8261,8263,8276,-0.169642857142809,-0.231809927360661,-0.171428571428512,-0.226634382566495,-0.167857142857105,-0.224455205811009,-0.169642857142808,-0.219279661016844,0.002239709443136,-0.003571428571407,-0.012590799031466,0.000000000000000,0.012469733656168,0.000000000000000,-0.002118644067837,0.003571428571407,2 +8249,8262,8264,8277,-0.166071428571395,-0.229570217917521,-0.167857142857105,-0.224455205811009,-0.164285714285684,-0.222276029055514,-0.166071428571395,-0.217161016949002,0.002239709443144,-0.003571428571421,-0.012469733656168,-0.000000000000000,0.012348668280869,0.000000000000000,-0.002118644067845,0.003571428571421,2 +8250,8263,8265,8278,-0.162499999999982,-0.227330508474382,-0.164285714285684,-0.222276029055514,-0.160714285714279,-0.220096852300029,-0.162499999999982,-0.215042372881162,0.002239709443134,-0.003571428571405,-0.012348668280869,-0.000000000000000,0.012227602905571,0.000000000000000,-0.002118644067836,0.003571428571405,2 +8251,8264,8266,8279,-0.158928571428564,-0.225090799031240,-0.160714285714279,-0.220096852300029,-0.157142857142850,-0.217917675544530,-0.158928571428564,-0.212923728813319,0.002239709443149,-0.003571428571429,-0.012227602905571,-0.000000000000000,0.012106537530272,0.000000000000000,-0.002118644067850,0.003571428571429,2 +8252,8265,8267,8280,-0.155357142857136,-0.222851089588092,-0.157142857142850,-0.217917675544530,-0.153571428571423,-0.215738498789031,-0.155357142857136,-0.210805084745469,0.002239709443148,-0.003571428571427,-0.012106537530272,-0.000000000000000,0.011985472154973,0.000000000000000,-0.002118644067849,0.003571428571427,2 +8253,8266,8281,10169,-0.151785714285711,-0.220611380144945,-0.153571428571423,-0.215738498789031,-0.151785714285711,-0.208686440677621,-0.150000000000000,-0.213559322033535,0.002239709443145,-0.003571428571423,-0.011985472154973,-0.000000000000000,-0.002118644067846,0.003571428571423,0.011864406779674,-0.000000000000000,2 +2254,8254,8269,8282,-0.200000000000000,-0.230508474576667,-0.198214285714291,-0.236228813559675,-0.196428571428583,-0.228450363196471,-0.198214285714291,-0.222730024213463,-0.013559322033860,-0.000000000000000,0.002118644067843,-0.003571428571417,0.013438256658564,0.000000000000000,-0.001997578692548,0.003571428571417,2 +8255,8268,8270,8283,-0.194642857142864,-0.234110169491826,-0.196428571428583,-0.228450363196471,-0.192857142857145,-0.226392251816264,-0.194642857142864,-0.220732445520910,0.002118644067855,-0.003571428571438,-0.013438256658564,-0.000000000000000,0.013317191283268,0.000000000000000,-0.001997578692559,0.003571428571438,2 +8256,8269,8271,8284,-0.191071428571419,-0.231991525423967,-0.192857142857145,-0.226392251816264,-0.189285714285694,-0.224334140436049,-0.191071428571419,-0.218734866828347,0.002118644067863,-0.003571428571451,-0.013317191283268,-0.000000000000000,0.013196125907971,0.000000000000000,-0.001997578692566,0.003571428571451,2 +8257,8270,8272,8285,-0.187499999999963,-0.229872881356100,-0.189285714285694,-0.224334140436049,-0.185714285714231,-0.222276029055828,-0.187499999999963,-0.216737288135777,0.002118644067870,-0.003571428571462,-0.013196125907971,-0.000000000000000,0.013075060532674,0.000000000000000,-0.001997578692573,0.003571428571462,2 +8258,8271,8273,8286,-0.183928571428507,-0.227754237288234,-0.185714285714231,-0.222276029055828,-0.182142857142783,-0.220217917675614,-0.183928571428507,-0.214739709443208,0.002118644067862,-0.003571428571449,-0.013075060532674,-0.000000000000000,0.012953995157377,0.000000000000000,-0.001997578692565,0.003571428571449,2 +8259,8272,8274,8287,-0.180357142857065,-0.225635593220376,-0.182142857142783,-0.220217917675614,-0.178571428571347,-0.218159806295408,-0.180357142857065,-0.212742130750647,0.002118644067854,-0.003571428571436,-0.012953995157377,-0.000000000000000,0.012832929782081,0.000000000000000,-0.001997578692558,0.003571428571436,2 +8260,8273,8275,8288,-0.176785714285631,-0.223516949152523,-0.178571428571347,-0.218159806295408,-0.174999999999916,-0.216101694915205,-0.176785714285631,-0.210744552058090,0.002118644067851,-0.003571428571431,-0.012832929782081,-0.000000000000000,0.012711864406785,-0.000000000000000,-0.001997578692555,0.003571428571431,2 +8261,8274,8276,8289,-0.173214285714214,-0.221398305084680,-0.174999999999916,-0.216101694915205,-0.171428571428512,-0.214043583535017,-0.173214285714214,-0.208746973365542,0.002118644067835,-0.003571428571404,-0.012711864406785,0.000000000000000,0.012590799031490,0.000000000000000,-0.001997578692540,0.003571428571404,2 +8262,8275,8277,8290,-0.169642857142808,-0.219279661016844,-0.171428571428512,-0.214043583535017,-0.167857142857105,-0.211985472154828,-0.169642857142808,-0.206749394673001,0.002118644067837,-0.003571428571407,-0.012590799031490,-0.000000000000000,0.012469733656195,0.000000000000000,-0.001997578692542,0.003571428571407,2 +8263,8276,8278,8291,-0.166071428571395,-0.217161016949002,-0.167857142857105,-0.211985472154828,-0.164285714285684,-0.209927360774630,-0.166071428571395,-0.204751815980455,0.002118644067845,-0.003571428571421,-0.012469733656195,-0.000000000000000,0.012348668280899,0.000000000000000,-0.001997578692549,0.003571428571421,2 +8264,8277,8279,8292,-0.162499999999982,-0.215042372881162,-0.164285714285684,-0.209927360774630,-0.160714285714279,-0.207869249394442,-0.162499999999982,-0.202754237287910,0.002118644067836,-0.003571428571405,-0.012348668280899,-0.000000000000000,0.012227602905604,0.000000000000000,-0.001997578692541,0.003571428571405,2 +8265,8278,8280,8293,-0.158928571428564,-0.212923728813319,-0.160714285714279,-0.207869249394442,-0.157142857142850,-0.205811138014240,-0.158928571428564,-0.200756658595363,0.002118644067850,-0.003571428571429,-0.012227602905604,-0.000000000000000,0.012106537530308,0.000000000000000,-0.001997578692554,0.003571428571429,2 +8266,8279,8281,8294,-0.155357142857136,-0.210805084745469,-0.157142857142850,-0.205811138014240,-0.153571428571423,-0.203753026634039,-0.155357142857136,-0.198759079902809,0.002118644067849,-0.003571428571427,-0.012106537530308,-0.000000000000000,0.011985472155012,0.000000000000000,-0.001997578692553,0.003571428571427,2 +8267,8280,8295,10170,-0.151785714285711,-0.208686440677621,-0.153571428571423,-0.203753026634039,-0.151785714285711,-0.196761501210257,-0.150000000000000,-0.201694915253840,0.002118644067846,-0.003571428571423,-0.011985472155012,-0.000000000000000,-0.001997578692551,0.003571428571423,0.011864406779716,-0.000000000000000,2 +2255,8268,8283,8296,-0.200000000000000,-0.216949152542807,-0.198214285714291,-0.222730024213463,-0.196428571428583,-0.215012106537909,-0.198214285714291,-0.209231234867253,-0.013559322033860,-0.000000000000000,0.001997578692548,-0.003571428571417,0.013438256658561,0.000000000000000,-0.001876513317249,0.003571428571417,2 +8269,8282,8284,8297,-0.194642857142864,-0.220732445520910,-0.196428571428583,-0.215012106537909,-0.192857142857145,-0.213075060532999,-0.194642857142864,-0.207354721549998,0.001997578692559,-0.003571428571438,-0.013438256658561,-0.000000000000000,0.013317191283262,0.000000000000000,-0.001876513317260,0.003571428571438,2 +8270,8283,8285,8298,-0.191071428571419,-0.218734866828347,-0.192857142857145,-0.213075060532999,-0.189285714285694,-0.211138014528083,-0.191071428571419,-0.205478208232735,0.001997578692566,-0.003571428571451,-0.013317191283262,-0.000000000000000,0.013196125907962,-0.000000000000000,-0.001876513317267,0.003571428571451,2 +8271,8284,8286,8299,-0.187499999999963,-0.216737288135777,-0.189285714285694,-0.211138014528083,-0.185714285714231,-0.209200968523160,-0.187499999999963,-0.203601694915465,0.001997578692573,-0.003571428571462,-0.013196125907962,0.000000000000000,0.013075060532662,0.000000000000000,-0.001876513317273,0.003571428571462,2 +8272,8285,8287,8300,-0.183928571428507,-0.214739709443208,-0.185714285714231,-0.209200968523160,-0.182142857142783,-0.207263922518245,-0.183928571428507,-0.201725181598196,0.001997578692565,-0.003571428571449,-0.013075060532662,-0.000000000000000,0.012953995157362,0.000000000000000,-0.001876513317266,0.003571428571449,2 +8273,8286,8288,8301,-0.180357142857065,-0.212742130750647,-0.182142857142783,-0.207263922518245,-0.178571428571347,-0.205326876513336,-0.180357142857065,-0.199848668280934,0.001997578692558,-0.003571428571436,-0.012953995157362,-0.000000000000000,0.012832929782063,0.000000000000000,-0.001876513317259,0.003571428571436,2 +8274,8287,8289,8302,-0.176785714285631,-0.210744552058090,-0.178571428571347,-0.205326876513336,-0.174999999999916,-0.203389830508431,-0.176785714285631,-0.197972154963677,0.001997578692555,-0.003571428571431,-0.012832929782063,-0.000000000000000,0.012711864406764,0.000000000000000,-0.001876513317256,0.003571428571431,2 +8275,8288,8290,8303,-0.173214285714214,-0.208746973365542,-0.174999999999916,-0.203389830508431,-0.171428571428512,-0.201452784503539,-0.173214285714214,-0.196095641646428,0.001997578692540,-0.003571428571404,-0.012711864406764,-0.000000000000000,0.012590799031466,0.000000000000000,-0.001876513317242,0.003571428571404,2 +8276,8289,8291,8304,-0.169642857142808,-0.206749394673001,-0.171428571428512,-0.201452784503539,-0.167857142857105,-0.199515738498647,-0.169642857142808,-0.194219128329185,0.001997578692542,-0.003571428571407,-0.012590799031466,-0.000000000000000,0.012469733656167,0.000000000000000,-0.001876513317244,0.003571428571407,2 +8277,8290,8292,8305,-0.166071428571395,-0.204751815980455,-0.167857142857105,-0.199515738498647,-0.164285714285684,-0.197578692493746,-0.166071428571395,-0.192342615011937,0.001997578692549,-0.003571428571421,-0.012469733656167,-0.000000000000000,0.012348668280869,0.000000000000000,-0.001876513317251,0.003571428571421,2 +8278,8291,8293,8306,-0.162499999999982,-0.202754237287910,-0.164285714285684,-0.197578692493746,-0.160714285714279,-0.195641646488855,-0.162499999999982,-0.190466101694691,0.001997578692541,-0.003571428571405,-0.012348668280869,-0.000000000000000,0.012227602905570,0.000000000000000,-0.001876513317242,0.003571428571405,2 +8279,8292,8294,8307,-0.158928571428564,-0.200756658595363,-0.160714285714279,-0.195641646488855,-0.157142857142850,-0.193704600483950,-0.158928571428564,-0.188589588377442,0.001997578692554,-0.003571428571429,-0.012227602905570,-0.000000000000000,0.012106537530271,0.000000000000000,-0.001876513317255,0.003571428571429,2 +8280,8293,8295,8308,-0.155357142857136,-0.198759079902809,-0.157142857142850,-0.193704600483950,-0.153571428571423,-0.191767554479046,-0.155357142857136,-0.186713075060187,0.001997578692553,-0.003571428571427,-0.012106537530271,-0.000000000000000,0.011985472154972,0.000000000000000,-0.001876513317254,0.003571428571427,2 +8281,8294,8309,10171,-0.151785714285711,-0.196761501210257,-0.153571428571423,-0.191767554479046,-0.151785714285711,-0.184836561742934,-0.150000000000000,-0.189830508474145,0.001997578692551,-0.003571428571423,-0.011985472154972,-0.000000000000000,-0.001876513317252,0.003571428571423,0.011864406779674,-0.000000000000000,2 +2256,8282,8297,8310,-0.200000000000000,-0.203389830508947,-0.198214285714291,-0.209231234867253,-0.196428571428583,-0.201573849879346,-0.198214285714291,-0.195732445521041,-0.013559322033860,-0.000000000000000,0.001876513317249,-0.003571428571417,0.013438256658563,0.000000000000000,-0.001755447941953,0.003571428571417,2 +8283,8296,8298,8311,-0.194642857142864,-0.207354721549998,-0.196428571428583,-0.201573849879346,-0.192857142857145,-0.199757869249735,-0.194642857142864,-0.193976997579083,0.001876513317260,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283267,0.000000000000000,-0.001755447941963,0.003571428571438,2 +8284,8297,8299,8312,-0.191071428571419,-0.205478208232735,-0.192857142857145,-0.199757869249735,-0.189285714285694,-0.197941888620117,-0.191071428571419,-0.192221549637117,0.001876513317267,-0.003571428571451,-0.013317191283267,-0.000000000000000,0.013196125907969,0.000000000000000,-0.001755447941969,0.003571428571451,2 +8285,8298,8300,8313,-0.187499999999963,-0.203601694915465,-0.189285714285694,-0.197941888620117,-0.185714285714231,-0.196125907990493,-0.187499999999963,-0.190466101695145,0.001876513317273,-0.003571428571462,-0.013196125907969,-0.000000000000000,0.013075060532671,0.000000000000000,-0.001755447941975,0.003571428571462,2 +8286,8299,8301,8314,-0.183928571428507,-0.201725181598196,-0.185714285714231,-0.196125907990493,-0.182142857142783,-0.194309927360876,-0.183928571428507,-0.188710653753174,0.001876513317266,-0.003571428571449,-0.013075060532671,-0.000000000000000,0.012953995157374,0.000000000000000,-0.001755447941968,0.003571428571449,2 +8287,8300,8302,8315,-0.180357142857065,-0.199848668280934,-0.182142857142783,-0.194309927360876,-0.178571428571347,-0.192493946731266,-0.180357142857065,-0.186955205811208,0.001876513317259,-0.003571428571436,-0.012953995157374,-0.000000000000000,0.012832929782077,-0.000000000000000,-0.001755447941962,0.003571428571436,2 +8288,8301,8303,8316,-0.176785714285631,-0.197972154963677,-0.178571428571347,-0.192493946731266,-0.174999999999916,-0.190677966101658,-0.176785714285631,-0.185199757869248,0.001876513317256,-0.003571428571431,-0.012832929782077,0.000000000000000,0.012711864406781,0.000000000000000,-0.001755447941960,0.003571428571431,2 +8289,8302,8304,8317,-0.173214285714214,-0.196095641646428,-0.174999999999916,-0.190677966101658,-0.171428571428512,-0.188861985472064,-0.173214285714214,-0.183444309927295,0.001876513317242,-0.003571428571404,-0.012711864406781,-0.000000000000000,0.012590799031485,0.000000000000000,-0.001755447941946,0.003571428571404,2 +8290,8303,8305,8318,-0.169642857142808,-0.194219128329185,-0.171428571428512,-0.188861985472064,-0.167857142857105,-0.187046004842468,-0.169642857142808,-0.181688861985348,0.001876513317244,-0.003571428571407,-0.012590799031485,-0.000000000000000,0.012469733656189,0.000000000000000,-0.001755447941948,0.003571428571407,2 +8291,8304,8306,8319,-0.166071428571395,-0.192342615011937,-0.167857142857105,-0.187046004842468,-0.164285714285684,-0.185230024212866,-0.166071428571395,-0.179933414043397,0.001876513317251,-0.003571428571421,-0.012469733656189,-0.000000000000000,0.012348668280892,0.000000000000000,-0.001755447941954,0.003571428571421,2 +8292,8305,8307,8320,-0.162499999999982,-0.190466101694691,-0.164285714285684,-0.185230024212866,-0.160714285714279,-0.183414043583271,-0.162499999999982,-0.178177966101446,0.001876513317242,-0.003571428571405,-0.012348668280892,-0.000000000000000,0.012227602905597,0.000000000000000,-0.001755447941947,0.003571428571405,2 +8293,8306,8308,8321,-0.158928571428564,-0.188589588377442,-0.160714285714279,-0.183414043583271,-0.157142857142850,-0.181598062953664,-0.158928571428564,-0.176422518159494,0.001876513317255,-0.003571428571429,-0.012227602905597,-0.000000000000000,0.012106537530300,0.000000000000000,-0.001755447941959,0.003571428571429,2 +8294,8307,8309,8322,-0.155357142857136,-0.186713075060187,-0.157142857142850,-0.181598062953664,-0.153571428571423,-0.179782082324058,-0.155357142857136,-0.174667070217535,0.001876513317254,-0.003571428571427,-0.012106537530300,-0.000000000000000,0.011985472155004,0.000000000000000,-0.001755447941958,0.003571428571427,2 +8295,8308,8323,10172,-0.151785714285711,-0.184836561742934,-0.153571428571423,-0.179782082324058,-0.151785714285711,-0.172911622275579,-0.150000000000000,-0.177966101694455,0.001876513317252,-0.003571428571423,-0.011985472155004,-0.000000000000000,-0.001755447941955,0.003571428571423,0.011864406779707,-0.000000000000000,2 +2257,8296,8311,8324,-0.200000000000000,-0.189830508475088,-0.198214285714291,-0.195732445521041,-0.196428571428583,-0.188135593220784,-0.198214285714291,-0.182233656174830,-0.013559322033860,-0.000000000000000,0.001755447941953,-0.003571428571417,0.013438256658562,0.000000000000000,-0.001634382566655,0.003571428571417,2 +8297,8310,8312,8325,-0.194642857142864,-0.193976997579083,-0.196428571428583,-0.188135593220784,-0.192857142857145,-0.186440677966470,-0.194642857142864,-0.180599273608171,0.001755447941963,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283263,0.000000000000000,-0.001634382566664,0.003571428571438,2 +8298,8311,8313,8326,-0.191071428571419,-0.192221549637117,-0.192857142857145,-0.186440677966470,-0.189285714285694,-0.184745762712150,-0.191071428571419,-0.178964891041504,0.001755447941969,-0.003571428571451,-0.013317191283263,-0.000000000000000,0.013196125907964,0.000000000000000,-0.001634382566670,0.003571428571451,2 +8299,8312,8314,8327,-0.187499999999963,-0.190466101695145,-0.189285714285694,-0.184745762712150,-0.185714285714231,-0.183050847457825,-0.187499999999963,-0.177330508474831,0.001755447941975,-0.003571428571462,-0.013196125907964,-0.000000000000000,0.013075060532665,0.000000000000000,-0.001634382566675,0.003571428571462,2 +8300,8313,8315,8328,-0.183928571428507,-0.188710653753174,-0.185714285714231,-0.183050847457825,-0.182142857142783,-0.181355932203507,-0.183928571428507,-0.175696125908158,0.001755447941968,-0.003571428571449,-0.013075060532665,-0.000000000000000,0.012953995157366,0.000000000000000,-0.001634382566669,0.003571428571449,2 +8301,8314,8316,8329,-0.180357142857065,-0.186955205811208,-0.182142857142783,-0.181355932203507,-0.178571428571347,-0.179661016949194,-0.180357142857065,-0.174061743341492,0.001755447941962,-0.003571428571436,-0.012953995157366,-0.000000000000000,0.012832929782067,0.000000000000000,-0.001634382566663,0.003571428571436,2 +8302,8315,8317,8330,-0.176785714285631,-0.185199757869248,-0.178571428571347,-0.179661016949194,-0.174999999999916,-0.177966101694884,-0.176785714285631,-0.172427360774830,0.001755447941960,-0.003571428571431,-0.012832929782067,-0.000000000000000,0.012711864406769,0.000000000000000,-0.001634382566661,0.003571428571431,2 +8303,8316,8318,8331,-0.173214285714214,-0.183444309927295,-0.174999999999916,-0.177966101694884,-0.171428571428512,-0.176271186440586,-0.173214285714214,-0.170792978208175,0.001755447941946,-0.003571428571404,-0.012711864406769,-0.000000000000000,0.012590799031471,0.000000000000000,-0.001634382566649,0.003571428571404,2 +8304,8317,8319,8332,-0.169642857142808,-0.181688861985348,-0.171428571428512,-0.176271186440586,-0.167857142857105,-0.174576271186287,-0.169642857142808,-0.169158595641525,0.001755447941948,-0.003571428571407,-0.012590799031471,-0.000000000000000,0.012469733656174,0.000000000000000,-0.001634382566650,0.003571428571407,2 +8305,8318,8320,8333,-0.166071428571395,-0.179933414043397,-0.167857142857105,-0.174576271186287,-0.164285714285684,-0.172881355931982,-0.166071428571395,-0.167524213074872,0.001755447941954,-0.003571428571421,-0.012469733656174,-0.000000000000000,0.012348668280876,0.000000000000000,-0.001634382566656,0.003571428571421,2 +8306,8319,8321,8334,-0.162499999999982,-0.178177966101446,-0.164285714285684,-0.172881355931982,-0.160714285714279,-0.171186440677684,-0.162499999999982,-0.165889830508219,0.001755447941947,-0.003571428571405,-0.012348668280876,-0.000000000000000,0.012227602905578,0.000000000000000,-0.001634382566649,0.003571428571405,2 +8307,8320,8322,8335,-0.158928571428564,-0.176422518159494,-0.160714285714279,-0.171186440677684,-0.157142857142850,-0.169491525423374,-0.158928571428564,-0.164255447941564,0.001755447941959,-0.003571428571429,-0.012227602905578,-0.000000000000000,0.012106537530280,0.000000000000000,-0.001634382566660,0.003571428571429,2 +8308,8321,8323,8336,-0.155357142857136,-0.174667070217535,-0.157142857142850,-0.169491525423374,-0.153571428571423,-0.167796610169066,-0.155357142857136,-0.162621065374905,0.001755447941958,-0.003571428571427,-0.012106537530280,-0.000000000000000,0.011985472154982,0.000000000000000,-0.001634382566659,0.003571428571427,2 +8309,8322,8337,10173,-0.151785714285711,-0.172911622275579,-0.153571428571423,-0.167796610169066,-0.151785714285711,-0.160986682808246,-0.150000000000000,-0.166101694914759,0.001755447941955,-0.003571428571423,-0.011985472154982,-0.000000000000000,-0.001634382566657,0.003571428571423,0.011864406779684,-0.000000000000000,2 +2258,8310,8325,8338,-0.200000000000000,-0.176271186441228,-0.198214285714291,-0.182233656174830,-0.196428571428583,-0.174697336562222,-0.198214285714291,-0.168734866828620,-0.013559322033860,-0.000000000000000,0.001634382566655,-0.003571428571417,0.013438256658561,0.000000000000000,-0.001513317191356,0.003571428571417,2 +8311,8324,8326,8339,-0.194642857142864,-0.180599273608171,-0.196428571428583,-0.174697336562222,-0.192857142857145,-0.173123486683208,-0.194642857142864,-0.167221549637259,0.001634382566664,-0.003571428571438,-0.013438256658561,-0.000000000000000,0.013317191283262,0.000000000000000,-0.001513317191365,0.003571428571438,2 +8312,8325,8327,8340,-0.191071428571419,-0.178964891041504,-0.192857142857145,-0.173123486683208,-0.189285714285694,-0.171549636804187,-0.191071428571419,-0.165708232445892,0.001634382566670,-0.003571428571451,-0.013317191283262,-0.000000000000000,0.013196125907962,0.000000000000000,-0.001513317191371,0.003571428571451,2 +8313,8326,8328,8341,-0.187499999999963,-0.177330508474831,-0.189285714285694,-0.171549636804187,-0.185714285714231,-0.169975786925162,-0.187499999999963,-0.164194915254519,0.001634382566675,-0.003571428571462,-0.013196125907962,-0.000000000000000,0.013075060532662,0.000000000000000,-0.001513317191375,0.003571428571462,2 +8314,8327,8329,8342,-0.183928571428507,-0.175696125908158,-0.185714285714231,-0.169975786925162,-0.182142857142783,-0.168401937046143,-0.183928571428507,-0.162681598063146,0.001634382566669,-0.003571428571449,-0.013075060532662,-0.000000000000000,0.012953995157362,-0.000000000000000,-0.001513317191369,0.003571428571449,2 +8315,8328,8330,8343,-0.180357142857065,-0.174061743341492,-0.182142857142783,-0.168401937046143,-0.178571428571347,-0.166828087167129,-0.180357142857065,-0.161168280871779,0.001634382566663,-0.003571428571436,-0.012953995157362,0.000000000000000,0.012832929782063,-0.000000000000000,-0.001513317191364,0.003571428571436,2 +8316,8329,8331,8344,-0.176785714285631,-0.172427360774830,-0.178571428571347,-0.166828087167129,-0.174999999999916,-0.165254237288117,-0.176785714285631,-0.159654963680416,0.001634382566661,-0.003571428571431,-0.012832929782063,0.000000000000000,0.012711864406764,0.000000000000000,-0.001513317191362,0.003571428571431,2 +8317,8330,8332,8345,-0.173214285714214,-0.170792978208175,-0.174999999999916,-0.165254237288117,-0.171428571428512,-0.163680387409118,-0.173214285714214,-0.158141646489060,0.001634382566649,-0.003571428571404,-0.012711864406764,-0.000000000000000,0.012590799031466,0.000000000000000,-0.001513317191351,0.003571428571404,2 +8318,8331,8333,8346,-0.169642857142808,-0.169158595641525,-0.171428571428512,-0.163680387409118,-0.167857142857105,-0.162106537530117,-0.169642857142809,-0.156628329297709,0.001634382566650,-0.003571428571407,-0.012590799031466,-0.000000000000000,0.012469733656167,0.000000000000000,-0.001513317191352,0.003571428571407,2 +8319,8332,8334,8347,-0.166071428571395,-0.167524213074872,-0.167857142857105,-0.162106537530117,-0.164285714285684,-0.160532687651109,-0.166071428571395,-0.155115012106354,0.001634382566656,-0.003571428571421,-0.012469733656167,-0.000000000000000,0.012348668280869,0.000000000000000,-0.001513317191358,0.003571428571421,2 +8320,8333,8335,8348,-0.162499999999982,-0.165889830508219,-0.164285714285684,-0.160532687651109,-0.160714285714279,-0.158958837772109,-0.162499999999982,-0.153601694915000,0.001634382566649,-0.003571428571405,-0.012348668280869,-0.000000000000000,0.012227602905570,0.000000000000000,-0.001513317191351,0.003571428571405,2 +8321,8334,8336,8349,-0.158928571428564,-0.164255447941564,-0.160714285714279,-0.158958837772109,-0.157142857142850,-0.157384987893099,-0.158928571428565,-0.152088377723643,0.001634382566660,-0.003571428571429,-0.012227602905570,-0.000000000000000,0.012106537530271,0.000000000000000,-0.001513317191361,0.003571428571429,2 +8322,8335,8337,8350,-0.155357142857136,-0.162621065374905,-0.157142857142850,-0.157384987893099,-0.153571428571423,-0.155811138014089,-0.155357142857136,-0.150575060532283,0.001634382566659,-0.003571428571427,-0.012106537530271,-0.000000000000000,0.011985472154973,0.000000000000000,-0.001513317191360,0.003571428571427,2 +8323,8336,8351,10174,-0.151785714285711,-0.160986682808246,-0.153571428571423,-0.155811138014089,-0.151785714285711,-0.149061743340923,-0.150000000000000,-0.154237288135081,0.001634382566657,-0.003571428571423,-0.011985472154973,-0.000000000000000,-0.001513317191359,0.003571428571423,0.011864406779674,-0.000000000000000,2 +2259,8324,8339,8352,-0.200000000000000,-0.162711864407368,-0.198214285714291,-0.168734866828620,-0.196428571428583,-0.161259079903661,-0.198214285714291,-0.155236077482409,-0.013559322033860,-0.000000000000000,0.001513317191356,-0.003571428571417,0.013438256658563,0.000000000000000,-0.001392251816059,0.003571428571417,2 +8325,8338,8340,8353,-0.194642857142864,-0.167221549637259,-0.196428571428583,-0.161259079903661,-0.192857142857145,-0.159806295399944,-0.194642857142864,-0.153843825666346,0.001513317191365,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283265,-0.000000000000000,-0.001392251816067,0.003571428571438,2 +8326,8339,8341,8354,-0.191071428571419,-0.165708232445892,-0.192857142857145,-0.159806295399944,-0.189285714285694,-0.158353510896223,-0.191071428571419,-0.152451573850276,0.001513317191371,-0.003571428571451,-0.013317191283265,0.000000000000000,0.013196125907967,0.000000000000000,-0.001392251816072,0.003571428571451,2 +8327,8340,8342,8355,-0.187499999999963,-0.164194915254519,-0.189285714285694,-0.158353510896223,-0.185714285714231,-0.156900726392497,-0.187499999999963,-0.151059322034201,0.001513317191375,-0.003571428571462,-0.013196125907967,-0.000000000000000,0.013075060532668,0.000000000000000,-0.001392251816077,0.003571428571462,2 +8328,8341,8343,8356,-0.183928571428507,-0.162681598063146,-0.185714285714231,-0.156900726392497,-0.182142857142783,-0.155447941888777,-0.183928571428507,-0.149667070218127,0.001513317191369,-0.003571428571449,-0.013075060532668,-0.000000000000000,0.012953995157370,0.000000000000000,-0.001392251816071,0.003571428571449,2 +8329,8342,8344,8357,-0.180357142857065,-0.161168280871779,-0.182142857142783,-0.155447941888777,-0.178571428571347,-0.153995157385061,-0.180357142857065,-0.148274818402058,0.001513317191364,-0.003571428571436,-0.012953995157370,-0.000000000000000,0.012832929782072,0.000000000000000,-0.001392251816067,0.003571428571436,2 +8330,8343,8345,8358,-0.176785714285631,-0.159654963680416,-0.178571428571347,-0.153995157385061,-0.174999999999916,-0.152542372881348,-0.176785714285631,-0.146882566585993,0.001513317191362,-0.003571428571431,-0.012832929782072,-0.000000000000000,0.012711864406775,0.000000000000000,-0.001392251816064,0.003571428571431,2 +8331,8344,8346,8359,-0.173214285714214,-0.158141646489060,-0.174999999999916,-0.152542372881348,-0.171428571428512,-0.151089588377646,-0.173214285714214,-0.145490314769934,0.001513317191351,-0.003571428571404,-0.012711864406775,-0.000000000000000,0.012590799031478,-0.000000000000000,-0.001392251816054,0.003571428571404,2 +8332,8345,8347,8360,-0.169642857142809,-0.156628329297709,-0.171428571428512,-0.151089588377646,-0.167857142857105,-0.149636803873942,-0.169642857142808,-0.144098062953879,0.001513317191352,-0.003571428571407,-0.012590799031478,0.000000000000000,0.012469733656181,0.000000000000000,-0.001392251816055,0.003571428571407,2 +8333,8346,8348,8361,-0.166071428571395,-0.155115012106354,-0.167857142857105,-0.149636803873942,-0.164285714285684,-0.148184019370233,-0.166071428571395,-0.142705811137821,0.001513317191358,-0.003571428571421,-0.012469733656181,-0.000000000000000,0.012348668280884,0.000000000000000,-0.001392251816061,0.003571428571421,2 +8334,8347,8349,8362,-0.162499999999982,-0.153601694915000,-0.164285714285684,-0.148184019370233,-0.160714285714279,-0.146731234866530,-0.162499999999982,-0.141313559321764,0.001513317191351,-0.003571428571405,-0.012348668280884,-0.000000000000000,0.012227602905588,0.000000000000000,-0.001392251816054,0.003571428571405,2 +8335,8348,8350,8363,-0.158928571428565,-0.152088377723643,-0.160714285714279,-0.146731234866530,-0.157142857142850,-0.145278450362818,-0.158928571428565,-0.139921307505705,0.001513317191361,-0.003571428571429,-0.012227602905588,-0.000000000000000,0.012106537530290,0.000000000000000,-0.001392251816064,0.003571428571429,2 +8336,8349,8351,8364,-0.155357142857136,-0.150575060532283,-0.157142857142850,-0.145278450362818,-0.153571428571423,-0.143825665859106,-0.155357142857136,-0.138529055689641,0.001513317191360,-0.003571428571427,-0.012106537530290,-0.000000000000000,0.011985472154993,0.000000000000000,-0.001392251816063,0.003571428571427,2 +8337,8350,8365,10175,-0.151785714285711,-0.149061743340923,-0.153571428571423,-0.143825665859106,-0.151785714285711,-0.137136803873579,-0.150000000000000,-0.142372881355396,0.001513317191359,-0.003571428571423,-0.011985472154993,-0.000000000000000,-0.001392251816061,0.003571428571423,0.011864406779695,-0.000000000000000,2 +2260,8338,8353,8366,-0.200000000000000,-0.149152542373509,-0.198214285714291,-0.155236077482409,-0.196428571428583,-0.147820823245098,-0.198214285714291,-0.141737288136198,-0.013559322033860,-0.000000000000000,0.001392251816059,-0.003571428571417,0.013438256658562,0.000000000000000,-0.001271186440761,0.003571428571417,2 +8339,8352,8354,8367,-0.194642857142864,-0.153843825666346,-0.196428571428583,-0.147820823245098,-0.192857142857145,-0.146489104116680,-0.194642857142864,-0.140466101695433,0.001392251816067,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.001271186440769,0.003571428571438,2 +8340,8353,8355,8368,-0.191071428571419,-0.152451573850276,-0.192857142857145,-0.146489104116680,-0.189285714285694,-0.145157384988257,-0.191071428571419,-0.139194915254662,0.001392251816072,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907965,-0.000000000000000,-0.001271186440774,0.003571428571451,2 +8341,8354,8356,8369,-0.187499999999963,-0.151059322034201,-0.189285714285694,-0.145157384988257,-0.185714285714231,-0.143825665859830,-0.187499999999963,-0.137923728813886,0.001392251816077,-0.003571428571462,-0.013196125907965,0.000000000000000,0.013075060532666,0.000000000000000,-0.001271186440778,0.003571428571462,2 +8342,8355,8357,8370,-0.183928571428507,-0.149667070218127,-0.185714285714231,-0.143825665859830,-0.182142857142783,-0.142493946731408,-0.183928571428507,-0.136652542373111,0.001392251816071,-0.003571428571449,-0.013075060532666,-0.000000000000000,0.012953995157367,0.000000000000000,-0.001271186440773,0.003571428571449,2 +8343,8356,8358,8371,-0.180357142857065,-0.148274818402058,-0.182142857142783,-0.142493946731408,-0.178571428571347,-0.141162227602991,-0.180357142857065,-0.135381355932341,0.001392251816067,-0.003571428571436,-0.012953995157367,-0.000000000000000,0.012832929782069,0.000000000000000,-0.001271186440768,0.003571428571436,2 +8344,8357,8359,8372,-0.176785714285631,-0.146882566585993,-0.178571428571347,-0.141162227602991,-0.174999999999916,-0.139830508474575,-0.176785714285631,-0.134110169491573,0.001392251816064,-0.003571428571431,-0.012832929782069,-0.000000000000000,0.012711864406770,-0.000000000000000,-0.001271186440766,0.003571428571431,2 +8345,8358,8360,8373,-0.173214285714214,-0.145490314769934,-0.174999999999916,-0.139830508474575,-0.171428571428512,-0.138498789346170,-0.173214285714214,-0.132838983050812,0.001392251816054,-0.003571428571404,-0.012711864406770,0.000000000000000,0.012590799031473,0.000000000000000,-0.001271186440757,0.003571428571404,2 +8346,8359,8361,8374,-0.169642857142808,-0.144098062953879,-0.171428571428512,-0.138498789346170,-0.167857142857105,-0.137167070217764,-0.169642857142808,-0.131567796610055,0.001392251816055,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656176,0.000000000000000,-0.001271186440758,0.003571428571407,2 +8347,8360,8362,8375,-0.166071428571395,-0.142705811137821,-0.167857142857105,-0.137167070217764,-0.164285714285684,-0.135835351089352,-0.166071428571395,-0.130296610169294,0.001392251816061,-0.003571428571421,-0.012469733656176,-0.000000000000000,0.012348668280878,0.000000000000000,-0.001271186440763,0.003571428571421,2 +8348,8361,8363,8376,-0.162499999999982,-0.141313559321764,-0.164285714285684,-0.135835351089352,-0.160714285714279,-0.134503631960946,-0.162499999999982,-0.129025423728534,0.001392251816054,-0.003571428571405,-0.012348668280878,-0.000000000000000,0.012227602905581,-0.000000000000000,-0.001271186440757,0.003571428571405,2 +8349,8362,8364,8377,-0.158928571428565,-0.139921307505705,-0.160714285714279,-0.134503631960946,-0.157142857142850,-0.133171912832531,-0.158928571428564,-0.127754237287773,0.001392251816064,-0.003571428571429,-0.012227602905581,0.000000000000000,0.012106537530283,0.000000000000000,-0.001271186440766,0.003571428571429,2 +8350,8363,8365,8378,-0.155357142857136,-0.138529055689641,-0.157142857142850,-0.133171912832531,-0.153571428571423,-0.131840193704117,-0.155357142857136,-0.126483050847007,0.001392251816063,-0.003571428571427,-0.012106537530283,-0.000000000000000,0.011985472154985,-0.000000000000000,-0.001271186440765,0.003571428571427,2 +8351,8364,8379,10176,-0.151785714285711,-0.137136803873579,-0.153571428571423,-0.131840193704117,-0.151785714285711,-0.125211864406243,-0.150000000000000,-0.130508474575705,0.001392251816061,-0.003571428571423,-0.011985472154985,0.000000000000000,-0.001271186440763,0.003571428571423,0.011864406779687,-0.000000000000000,2 +2261,8352,8367,8380,-0.200000000000000,-0.135593220339649,-0.198214285714291,-0.141737288136198,-0.196428571428583,-0.134382566586536,-0.198214285714291,-0.128238498789987,-0.013559322033860,-0.000000000000000,0.001271186440761,-0.003571428571417,0.013438256658563,0.000000000000000,-0.001150121065464,0.003571428571417,2 +8353,8366,8368,8381,-0.194642857142864,-0.140466101695433,-0.196428571428583,-0.134382566586536,-0.192857142857145,-0.133171912833416,-0.194642857142864,-0.127088377724519,0.001271186440769,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283265,0.000000000000000,-0.001150121065471,0.003571428571438,2 +8354,8367,8369,8382,-0.191071428571419,-0.139194915254662,-0.192857142857145,-0.133171912833416,-0.189285714285694,-0.131961259080291,-0.191071428571419,-0.125938256659046,0.001271186440774,-0.003571428571451,-0.013317191283265,-0.000000000000000,0.013196125907967,0.000000000000000,-0.001150121065475,0.003571428571451,2 +8355,8368,8370,8383,-0.187499999999963,-0.137923728813886,-0.189285714285694,-0.131961259080291,-0.185714285714231,-0.130750605327163,-0.187499999999963,-0.124788135593568,0.001271186440778,-0.003571428571462,-0.013196125907967,-0.000000000000000,0.013075060532669,0.000000000000000,-0.001150121065479,0.003571428571462,2 +8356,8369,8371,8384,-0.183928571428507,-0.136652542373111,-0.185714285714231,-0.130750605327163,-0.182142857142783,-0.129539951574039,-0.183928571428507,-0.123638014528091,0.001271186440773,-0.003571428571449,-0.013075060532669,-0.000000000000000,0.012953995157371,0.000000000000000,-0.001150121065475,0.003571428571449,2 +8357,8370,8372,8385,-0.180357142857065,-0.135381355932341,-0.182142857142783,-0.129539951574039,-0.178571428571347,-0.128329297820920,-0.180357142857065,-0.122487893462619,0.001271186440768,-0.003571428571436,-0.012953995157371,-0.000000000000000,0.012832929782073,0.000000000000000,-0.001150121065470,0.003571428571436,2 +8358,8371,8373,8386,-0.176785714285631,-0.134110169491573,-0.178571428571347,-0.128329297820920,-0.174999999999916,-0.127118644067802,-0.176785714285631,-0.121337772397149,0.001271186440766,-0.003571428571431,-0.012832929782073,-0.000000000000000,0.012711864406776,0.000000000000000,-0.001150121065469,0.003571428571431,2 +8359,8372,8374,8387,-0.173214285714214,-0.132838983050812,-0.174999999999916,-0.127118644067802,-0.171428571428512,-0.125907990314694,-0.173214285714214,-0.120187651331684,0.001271186440757,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031479,0.000000000000000,-0.001150121065460,0.003571428571404,2 +8360,8373,8375,8388,-0.169642857142808,-0.131567796610055,-0.171428571428512,-0.125907990314694,-0.167857142857105,-0.124697336561584,-0.169642857142808,-0.119037530266224,0.001271186440758,-0.003571428571407,-0.012590799031479,-0.000000000000000,0.012469733656183,0.000000000000000,-0.001150121065461,0.003571428571407,2 +8361,8374,8376,8389,-0.166071428571395,-0.130296610169294,-0.167857142857105,-0.124697336561584,-0.164285714285684,-0.123486682808470,-0.166071428571395,-0.117887409200760,0.001271186440763,-0.003571428571421,-0.012469733656183,-0.000000000000000,0.012348668280886,0.000000000000000,-0.001150121065466,0.003571428571421,2 +8362,8375,8377,8390,-0.162499999999982,-0.129025423728534,-0.164285714285684,-0.123486682808470,-0.160714285714279,-0.122276029055361,-0.162499999999982,-0.116737288135297,0.001271186440757,-0.003571428571405,-0.012348668280886,-0.000000000000000,0.012227602905589,0.000000000000000,-0.001150121065461,0.003571428571405,2 +8363,8376,8378,8391,-0.158928571428564,-0.127754237287773,-0.160714285714279,-0.122276029055361,-0.157142857142850,-0.121065375302244,-0.158928571428565,-0.115587167069832,0.001271186440766,-0.003571428571429,-0.012227602905589,-0.000000000000000,0.012106537530292,0.000000000000000,-0.001150121065468,0.003571428571429,2 +8364,8377,8379,8392,-0.155357142857136,-0.126483050847007,-0.157142857142850,-0.121065375302244,-0.153571428571423,-0.119854721549128,-0.155357142857136,-0.114437046004364,0.001271186440765,-0.003571428571427,-0.012106537530292,-0.000000000000000,0.011985472154994,0.000000000000000,-0.001150121065468,0.003571428571427,2 +8365,8378,8393,10177,-0.151785714285711,-0.125211864406243,-0.153571428571423,-0.119854721549128,-0.151785714285711,-0.113286924938897,-0.150000000000000,-0.118644067796013,0.001271186440763,-0.003571428571423,-0.011985472154994,-0.000000000000000,-0.001150121065466,0.003571428571423,0.011864406779697,-0.000000000000000,2 +2262,8366,8381,8394,-0.200000000000000,-0.122033898305789,-0.198214285714291,-0.128238498789987,-0.196428571428583,-0.120944309927974,-0.198214285714291,-0.114739709443776,-0.013559322033860,-0.000000000000000,0.001150121065464,-0.003571428571417,0.013438256658562,0.000000000000000,-0.001029055690167,0.003571428571417,2 +8367,8380,8382,8395,-0.194642857142864,-0.127088377724519,-0.196428571428583,-0.120944309927974,-0.192857142857145,-0.119854721550151,-0.194642857142864,-0.113710653753606,0.001150121065471,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283263,0.000000000000000,-0.001029055690173,0.003571428571438,2 +8368,8381,8383,8396,-0.191071428571419,-0.125938256659046,-0.192857142857145,-0.119854721550151,-0.189285714285694,-0.118765133172325,-0.191071428571419,-0.112681598063431,0.001150121065475,-0.003571428571451,-0.013317191283263,-0.000000000000000,0.013196125907965,0.000000000000000,-0.001029055690177,0.003571428571451,2 +8369,8382,8384,8397,-0.187499999999963,-0.124788135593568,-0.189285714285694,-0.118765133172325,-0.185714285714231,-0.117675544794496,-0.187499999999963,-0.111652542373253,0.001150121065479,-0.003571428571462,-0.013196125907965,-0.000000000000000,0.013075060532666,0.000000000000000,-0.001029055690180,0.003571428571462,2 +8370,8383,8385,8398,-0.183928571428507,-0.123638014528091,-0.185714285714231,-0.117675544794496,-0.182142857142783,-0.116585956416671,-0.183928571428507,-0.110623486683075,0.001150121065475,-0.003571428571449,-0.013075060532666,-0.000000000000000,0.012953995157367,0.000000000000000,-0.001029055690176,0.003571428571449,2 +8371,8384,8386,8399,-0.180357142857065,-0.122487893462619,-0.182142857142783,-0.116585956416671,-0.178571428571347,-0.115496368038849,-0.180357142857065,-0.109594430992901,0.001150121065470,-0.003571428571436,-0.012953995157367,-0.000000000000000,0.012832929782068,-0.000000000000000,-0.001029055690172,0.003571428571436,2 +8372,8385,8387,8400,-0.176785714285631,-0.121337772397149,-0.178571428571347,-0.115496368038849,-0.174999999999916,-0.114406779661029,-0.176785714285631,-0.108565375302730,0.001150121065469,-0.003571428571431,-0.012832929782068,0.000000000000000,0.012711864406770,-0.000000000000000,-0.001029055690171,0.003571428571431,2 +8373,8386,8388,8401,-0.173214285714214,-0.120187651331684,-0.174999999999916,-0.114406779661029,-0.171428571428512,-0.113317191283218,-0.173214285714214,-0.107536319612563,0.001150121065460,-0.003571428571404,-0.012711864406770,0.000000000000000,0.012590799031473,0.000000000000000,-0.001029055690163,0.003571428571404,2 +8374,8387,8389,8402,-0.169642857142808,-0.119037530266224,-0.171428571428512,-0.113317191283218,-0.167857142857105,-0.112227602905405,-0.169642857142809,-0.106507263922399,0.001150121065461,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656176,0.000000000000000,-0.001029055690164,0.003571428571407,2 +8375,8388,8390,8403,-0.166071428571395,-0.117887409200760,-0.167857142857105,-0.112227602905405,-0.164285714285684,-0.111138014527588,-0.166071428571395,-0.105478208232233,0.001150121065466,-0.003571428571421,-0.012469733656176,-0.000000000000000,0.012348668280878,0.000000000000000,-0.001029055690168,0.003571428571421,2 +8376,8389,8391,8404,-0.162499999999982,-0.116737288135297,-0.164285714285684,-0.111138014527588,-0.160714285714279,-0.110048426149776,-0.162499999999982,-0.104449152542068,0.001150121065461,-0.003571428571405,-0.012348668280878,-0.000000000000000,0.012227602905580,0.000000000000000,-0.001029055690163,0.003571428571405,2 +8377,8390,8392,8405,-0.158928571428565,-0.115587167069832,-0.160714285714279,-0.110048426149776,-0.157142857142850,-0.108958837771957,-0.158928571428565,-0.103420096851901,0.001150121065468,-0.003571428571429,-0.012227602905580,-0.000000000000000,0.012106537530282,0.000000000000000,-0.001029055690170,0.003571428571429,2 +8378,8391,8393,8406,-0.155357142857136,-0.114437046004364,-0.157142857142850,-0.108958837771957,-0.153571428571423,-0.107869249394138,-0.155357142857136,-0.102391041161731,0.001150121065468,-0.003571428571427,-0.012106537530282,-0.000000000000000,0.011985472154984,0.000000000000000,-0.001029055690170,0.003571428571427,2 +8379,8392,8407,10178,-0.151785714285711,-0.113286924938897,-0.153571428571423,-0.107869249394138,-0.151785714285711,-0.101361985471562,-0.150000000000000,-0.106779661016321,0.001150121065466,-0.003571428571423,-0.011985472154984,-0.000000000000000,-0.001029055690168,0.003571428571423,0.011864406779686,-0.000000000000000,2 +2263,8380,8395,8408,-0.200000000000000,-0.108474576271933,-0.198214285714291,-0.114739709443776,-0.196428571428583,-0.107506053269415,-0.198214285714291,-0.101240920097572,-0.013559322033852,-0.000000000000000,0.001029055690167,-0.003571428571417,0.013438256658555,0.000000000000000,-0.000907990314871,0.003571428571417,2 +8381,8394,8396,8409,-0.194642857142864,-0.113710653753606,-0.196428571428583,-0.107506053269415,-0.192857142857145,-0.106537530266891,-0.194642857142864,-0.100332929782699,0.001029055690173,-0.003571428571438,-0.013438256658555,-0.000000000000000,0.013317191283258,0.000000000000000,-0.000907990314876,0.003571428571438,2 +8382,8395,8397,8410,-0.191071428571419,-0.112681598063431,-0.192857142857145,-0.106537530266891,-0.189285714285694,-0.105569007264363,-0.191071428571419,-0.099424939467822,0.001029055690177,-0.003571428571451,-0.013317191283258,-0.000000000000000,0.013196125907961,0.000000000000000,-0.000907990314879,0.003571428571451,2 +8383,8396,8398,8411,-0.187499999999963,-0.111652542373253,-0.189285714285694,-0.105569007264363,-0.185714285714231,-0.104600484261832,-0.187499999999963,-0.098516949152941,0.001029055690180,-0.003571428571462,-0.013196125907961,-0.000000000000000,0.013075060532663,0.000000000000000,-0.000907990314882,0.003571428571462,2 +8384,8397,8399,8412,-0.183928571428507,-0.110623486683075,-0.185714285714231,-0.104600484261832,-0.182142857142783,-0.103631961259305,-0.183928571428507,-0.097608958838061,0.001029055690176,-0.003571428571449,-0.013075060532663,-0.000000000000000,0.012953995157365,0.000000000000000,-0.000907990314878,0.003571428571449,2 +8385,8398,8400,8413,-0.180357142857065,-0.109594430992901,-0.182142857142783,-0.103631961259305,-0.178571428571347,-0.102663438256781,-0.180357142857065,-0.096700968523184,0.001029055690172,-0.003571428571436,-0.012953995157365,-0.000000000000000,0.012832929782068,0.000000000000000,-0.000907990314875,0.003571428571436,2 +8386,8399,8401,8414,-0.176785714285631,-0.108565375302730,-0.178571428571347,-0.102663438256781,-0.174999999999916,-0.101694915254259,-0.176785714285631,-0.095792978208310,0.001029055690171,-0.003571428571431,-0.012832929782068,-0.000000000000000,0.012711864406772,0.000000000000000,-0.000907990314874,0.003571428571431,2 +8387,8400,8402,8415,-0.173214285714214,-0.107536319612563,-0.174999999999916,-0.101694915254259,-0.171428571428512,-0.100726392251743,-0.173214285714214,-0.094884987893439,0.001029055690163,-0.003571428571404,-0.012711864406772,-0.000000000000000,0.012590799031476,-0.000000000000000,-0.000907990314867,0.003571428571404,2 +8388,8401,8403,8416,-0.169642857142809,-0.106507263922399,-0.171428571428512,-0.100726392251743,-0.167857142857105,-0.099757869249228,-0.169642857142808,-0.093976997578572,0.001029055690164,-0.003571428571407,-0.012590799031476,0.000000000000000,0.012469733656180,0.000000000000000,-0.000907990314868,0.003571428571407,2 +8389,8402,8404,8417,-0.166071428571395,-0.105478208232233,-0.167857142857105,-0.099757869249228,-0.164285714285684,-0.098789346246708,-0.166071428571395,-0.093069007263702,0.001029055690168,-0.003571428571421,-0.012469733656180,-0.000000000000000,0.012348668280883,0.000000000000000,-0.000907990314871,0.003571428571421,2 +8390,8403,8405,8418,-0.162499999999982,-0.104449152542068,-0.164285714285684,-0.098789346246708,-0.160714285714279,-0.097820823244193,-0.162499999999982,-0.092161016948833,0.001029055690163,-0.003571428571405,-0.012348668280883,-0.000000000000000,0.012227602905587,-0.000000000000000,-0.000907990314867,0.003571428571405,2 +8391,8404,8406,8419,-0.158928571428565,-0.103420096851901,-0.160714285714279,-0.097820823244193,-0.157142857142850,-0.096852300241671,-0.158928571428564,-0.091253026633962,0.001029055690170,-0.003571428571429,-0.012227602905587,0.000000000000000,0.012106537530291,0.000000000000000,-0.000907990314874,0.003571428571429,2 +8392,8405,8407,8420,-0.155357142857136,-0.102391041161731,-0.157142857142850,-0.096852300241671,-0.153571428571423,-0.095883777239149,-0.155357142857136,-0.090345036319089,0.001029055690170,-0.003571428571427,-0.012106537530291,-0.000000000000000,0.011985472154994,-0.000000000000000,-0.000907990314873,0.003571428571427,2 +8393,8406,8421,10179,-0.151785714285711,-0.101361985471562,-0.153571428571423,-0.095883777239149,-0.151785714285711,-0.089437046004216,-0.150000000000000,-0.094915254236629,0.001029055690168,-0.003571428571423,-0.011985472154994,0.000000000000000,-0.000907990314872,0.003571428571423,0.011864406779697,-0.000000000000000,2 +2264,8394,8409,8422,-0.200000000000000,-0.094915254238085,-0.198214285714291,-0.101240920097572,-0.196428571428583,-0.094067796610862,-0.198214285714291,-0.087742130751374,-0.013559322033846,-0.000000000000000,0.000907990314871,-0.003571428571417,0.013438256658550,0.000000000000000,-0.000786924939575,0.003571428571417,2 +8395,8408,8410,8423,-0.194642857142864,-0.100332929782699,-0.196428571428583,-0.094067796610862,-0.192857142857145,-0.093220338983635,-0.194642857142864,-0.086955205811798,0.000907990314876,-0.003571428571438,-0.013438256658550,-0.000000000000000,0.013317191283253,0.000000000000000,-0.000786924939579,0.003571428571438,2 +8396,8409,8411,8424,-0.191071428571419,-0.099424939467822,-0.192857142857145,-0.093220338983635,-0.189285714285694,-0.092372881356404,-0.191071428571419,-0.086168280872217,0.000907990314879,-0.003571428571451,-0.013317191283253,-0.000000000000000,0.013196125907956,0.000000000000000,-0.000786924939582,0.003571428571451,2 +8397,8410,8412,8425,-0.187499999999963,-0.098516949152941,-0.189285714285694,-0.092372881356404,-0.185714285714231,-0.091525423729171,-0.187499999999963,-0.085381355932634,0.000907990314882,-0.003571428571462,-0.013196125907956,-0.000000000000000,0.013075060532659,0.000000000000000,-0.000786924939585,0.003571428571462,2 +8398,8411,8413,8426,-0.183928571428507,-0.097608958838061,-0.185714285714231,-0.091525423729171,-0.182142857142783,-0.090677966101941,-0.183928571428507,-0.084594430993051,0.000907990314878,-0.003571428571449,-0.013075060532659,-0.000000000000000,0.012953995157362,0.000000000000000,-0.000786924939581,0.003571428571449,2 +8399,8412,8414,8427,-0.180357142857065,-0.096700968523184,-0.182142857142783,-0.090677966101941,-0.178571428571347,-0.089830508474714,-0.180357142857065,-0.083807506053471,0.000907990314875,-0.003571428571436,-0.012953995157362,-0.000000000000000,0.012832929782065,-0.000000000000000,-0.000786924939579,0.003571428571436,2 +8400,8413,8415,8428,-0.176785714285631,-0.095792978208310,-0.178571428571347,-0.089830508474714,-0.174999999999916,-0.088983050847488,-0.176785714285631,-0.083020581113893,0.000907990314874,-0.003571428571431,-0.012832929782065,0.000000000000000,0.012711864406769,0.000000000000000,-0.000786924939578,0.003571428571431,2 +8401,8414,8416,8429,-0.173214285714214,-0.094884987893439,-0.174999999999916,-0.088983050847488,-0.171428571428512,-0.088135593220269,-0.173214285714214,-0.082233656174318,0.000907990314867,-0.003571428571404,-0.012711864406769,-0.000000000000000,0.012590799031473,0.000000000000000,-0.000786924939572,0.003571428571404,2 +8402,8415,8417,8430,-0.169642857142808,-0.093976997578572,-0.171428571428512,-0.088135593220269,-0.167857142857105,-0.087288135593049,-0.169642857142808,-0.081446731234746,0.000907990314868,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656178,0.000000000000000,-0.000786924939572,0.003571428571407,2 +8403,8416,8418,8431,-0.166071428571395,-0.093069007263702,-0.167857142857105,-0.087288135593049,-0.164285714285684,-0.086440677965825,-0.166071428571395,-0.080659806295172,0.000907990314871,-0.003571428571421,-0.012469733656178,-0.000000000000000,0.012348668280882,0.000000000000000,-0.000786924939575,0.003571428571421,2 +8404,8417,8419,8432,-0.162499999999982,-0.092161016948833,-0.164285714285684,-0.086440677965825,-0.160714285714279,-0.085593220338606,-0.162499999999982,-0.079872881355599,0.000907990314867,-0.003571428571405,-0.012348668280882,-0.000000000000000,0.012227602905586,0.000000000000000,-0.000786924939572,0.003571428571405,2 +8405,8418,8420,8433,-0.158928571428564,-0.091253026633962,-0.160714285714279,-0.085593220338606,-0.157142857142850,-0.084745762711380,-0.158928571428564,-0.079085956416024,0.000907990314874,-0.003571428571429,-0.012227602905586,-0.000000000000000,0.012106537530290,0.000000000000000,-0.000786924939577,0.003571428571429,2 +8406,8419,8421,8434,-0.155357142857136,-0.090345036319089,-0.157142857142850,-0.084745762711380,-0.153571428571423,-0.083898305084156,-0.155357142857136,-0.078299031476447,0.000907990314873,-0.003571428571427,-0.012106537530290,-0.000000000000000,0.011985472154993,0.000000000000000,-0.000786924939577,0.003571428571427,2 +8407,8420,8435,10180,-0.151785714285711,-0.089437046004216,-0.153571428571423,-0.083898305084156,-0.151785714285711,-0.077512106536871,-0.150000000000000,-0.083050847456932,0.000907990314872,-0.003571428571423,-0.011985472154993,-0.000000000000000,-0.000786924939576,0.003571428571423,0.011864406779697,-0.000000000000000,2 +2265,8408,8423,8436,-0.200000000000000,-0.081355932204232,-0.198214285714291,-0.087742130751374,-0.196428571428583,-0.080629539952306,-0.198214285714291,-0.074243341405164,-0.013559322033860,-0.000000000000000,0.000786924939575,-0.003571428571417,0.013438256658562,0.000000000000000,-0.000665859564277,0.003571428571417,2 +8409,8422,8424,8437,-0.194642857142864,-0.086955205811798,-0.196428571428583,-0.080629539952306,-0.192857142857145,-0.079903147700376,-0.194642857142864,-0.073577481840885,0.000786924939579,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.000665859564281,0.003571428571438,2 +8410,8423,8425,8438,-0.191071428571419,-0.086168280872217,-0.192857142857145,-0.079903147700376,-0.189285714285694,-0.079176755448444,-0.191071428571419,-0.072911622276603,0.000786924939582,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907965,-0.000000000000000,-0.000665859564283,0.003571428571451,2 +8411,8424,8426,8439,-0.187499999999963,-0.085381355932634,-0.189285714285694,-0.079176755448444,-0.185714285714231,-0.078450363196509,-0.187499999999963,-0.072245762712319,0.000786924939585,-0.003571428571462,-0.013196125907965,0.000000000000000,0.013075060532665,0.000000000000000,-0.000665859564285,0.003571428571462,2 +8412,8425,8427,8440,-0.183928571428507,-0.084594430993051,-0.185714285714231,-0.078450363196509,-0.182142857142783,-0.077723970944577,-0.183928571428507,-0.071579903148035,0.000786924939581,-0.003571428571449,-0.013075060532665,-0.000000000000000,0.012953995157367,0.000000000000000,-0.000665859564283,0.003571428571449,2 +8413,8426,8428,8441,-0.180357142857065,-0.083807506053471,-0.182142857142783,-0.077723970944577,-0.178571428571347,-0.076997578692647,-0.180357142857065,-0.070914043583753,0.000786924939579,-0.003571428571436,-0.012953995157367,-0.000000000000000,0.012832929782068,0.000000000000000,-0.000665859564280,0.003571428571436,2 +8414,8427,8429,8442,-0.176785714285631,-0.083020581113893,-0.178571428571347,-0.076997578692647,-0.174999999999916,-0.076271186440719,-0.176785714285631,-0.070248184019473,0.000786924939578,-0.003571428571431,-0.012832929782068,-0.000000000000000,0.012711864406770,-0.000000000000000,-0.000665859564279,0.003571428571431,2 +8415,8428,8430,8443,-0.173214285714214,-0.082233656174318,-0.174999999999916,-0.076271186440719,-0.171428571428512,-0.075544794188796,-0.173214285714214,-0.069582324455197,0.000786924939572,-0.003571428571404,-0.012711864406770,0.000000000000000,0.012590799031473,0.000000000000000,-0.000665859564274,0.003571428571404,2 +8416,8429,8431,8444,-0.169642857142808,-0.081446731234746,-0.171428571428512,-0.075544794188796,-0.167857142857105,-0.074818401936872,-0.169642857142808,-0.068916464890922,0.000786924939572,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656176,0.000000000000000,-0.000665859564275,0.003571428571407,2 +8417,8430,8432,8445,-0.166071428571395,-0.080659806295172,-0.167857142857105,-0.074818401936872,-0.164285714285684,-0.074092009684946,-0.166071428571395,-0.068250605326646,0.000786924939575,-0.003571428571421,-0.012469733656176,-0.000000000000000,0.012348668280878,0.000000000000000,-0.000665859564278,0.003571428571421,2 +8418,8431,8433,8446,-0.162499999999982,-0.079872881355599,-0.164285714285684,-0.074092009684946,-0.160714285714279,-0.073365617433023,-0.162499999999982,-0.067584745762370,0.000786924939572,-0.003571428571405,-0.012348668280878,-0.000000000000000,0.012227602905580,0.000000000000000,-0.000665859564275,0.003571428571405,2 +8419,8432,8434,8447,-0.158928571428564,-0.079085956416024,-0.160714285714279,-0.073365617433023,-0.157142857142850,-0.072639225181094,-0.158928571428564,-0.066918886198093,0.000786924939577,-0.003571428571429,-0.012227602905580,-0.000000000000000,0.012106537530282,0.000000000000000,-0.000665859564279,0.003571428571429,2 +8420,8433,8435,8448,-0.155357142857136,-0.078299031476447,-0.157142857142850,-0.072639225181094,-0.153571428571423,-0.071912832929167,-0.155357142857136,-0.066253026633814,0.000786924939577,-0.003571428571427,-0.012106537530282,-0.000000000000000,0.011985472154984,0.000000000000000,-0.000665859564279,0.003571428571427,2 +8421,8434,8449,10181,-0.151785714285711,-0.077512106536871,-0.153571428571423,-0.071912832929167,-0.151785714285711,-0.065587167069536,-0.150000000000000,-0.071186440677240,0.000786924939576,-0.003571428571423,-0.011985472154984,-0.000000000000000,-0.000665859564278,0.003571428571423,0.011864406779686,-0.000000000000000,2 +2266,8422,8437,8450,-0.200000000000000,-0.067796610170372,-0.198214285714291,-0.074243341405164,-0.196428571428583,-0.067191283293744,-0.198214285714291,-0.060744552058952,-0.013559322033860,-0.000000000000000,0.000665859564277,-0.003571428571417,0.013438256658563,0.000000000000000,-0.000544794188980,0.003571428571417,2 +8423,8436,8438,8451,-0.194642857142864,-0.073577481840885,-0.196428571428583,-0.067191283293744,-0.192857142857145,-0.066585956417112,-0.194642857142864,-0.060199757869971,0.000665859564281,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283265,0.000000000000000,-0.000544794188983,0.003571428571438,2 +8424,8437,8439,8452,-0.191071428571419,-0.072911622276603,-0.192857142857145,-0.066585956417112,-0.189285714285694,-0.065980629540478,-0.191071428571419,-0.059654963680987,0.000665859564283,-0.003571428571451,-0.013317191283265,-0.000000000000000,0.013196125907967,0.000000000000000,-0.000544794188985,0.003571428571451,2 +8425,8438,8440,8453,-0.187499999999963,-0.072245762712319,-0.189285714285694,-0.065980629540478,-0.185714285714232,-0.065375302663842,-0.187499999999963,-0.059110169492001,0.000665859564285,-0.003571428571462,-0.013196125907967,-0.000000000000000,0.013075060532669,0.000000000000000,-0.000544794188987,0.003571428571462,2 +8426,8439,8441,8454,-0.183928571428507,-0.071579903148035,-0.185714285714232,-0.065375302663842,-0.182142857142783,-0.064769975787208,-0.183928571428507,-0.058565375303015,0.000665859564283,-0.003571428571449,-0.013075060532669,-0.000000000000000,0.012953995157371,-0.000000000000000,-0.000544794188985,0.003571428571449,2 +8427,8440,8442,8455,-0.180357142857065,-0.070914043583753,-0.182142857142783,-0.064769975787208,-0.178571428571347,-0.064164648910577,-0.180357142857065,-0.058020581114031,0.000665859564280,-0.003571428571436,-0.012953995157371,0.000000000000000,0.012832929782073,0.000000000000000,-0.000544794188983,0.003571428571436,2 +8428,8441,8443,8456,-0.176785714285631,-0.070248184019473,-0.178571428571347,-0.064164648910577,-0.174999999999916,-0.063559322033946,-0.176785714285631,-0.057475786925049,0.000665859564279,-0.003571428571431,-0.012832929782073,-0.000000000000000,0.012711864406776,0.000000000000000,-0.000544794188982,0.003571428571431,2 +8429,8442,8444,8457,-0.173214285714214,-0.069582324455197,-0.174999999999916,-0.063559322033946,-0.171428571428512,-0.062953995157320,-0.173214285714214,-0.056930992736069,0.000665859564274,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031479,0.000000000000000,-0.000544794188978,0.003571428571404,2 +8430,8443,8445,8458,-0.169642857142808,-0.068916464890922,-0.171428571428512,-0.062953995157320,-0.167857142857105,-0.062348668280693,-0.169642857142808,-0.056386198547091,0.000665859564275,-0.003571428571407,-0.012590799031479,-0.000000000000000,0.012469733656183,0.000000000000000,-0.000544794188978,0.003571428571407,2 +8431,8444,8446,8459,-0.166071428571395,-0.068250605326646,-0.167857142857105,-0.062348668280693,-0.164285714285684,-0.061743341404064,-0.166071428571395,-0.055841404358112,0.000665859564278,-0.003571428571421,-0.012469733656183,-0.000000000000000,0.012348668280886,0.000000000000000,-0.000544794188980,0.003571428571421,2 +8432,8445,8447,8460,-0.162499999999982,-0.067584745762370,-0.164285714285684,-0.061743341404064,-0.160714285714279,-0.061138014527438,-0.162499999999982,-0.055296610169132,0.000665859564275,-0.003571428571405,-0.012348668280886,-0.000000000000000,0.012227602905589,0.000000000000000,-0.000544794188978,0.003571428571405,2 +8433,8446,8448,8461,-0.158928571428564,-0.066918886198093,-0.160714285714279,-0.061138014527438,-0.157142857142850,-0.060532687650807,-0.158928571428564,-0.054751815980153,0.000665859564279,-0.003571428571429,-0.012227602905589,-0.000000000000000,0.012106537530292,-0.000000000000000,-0.000544794188982,0.003571428571429,2 +8434,8447,8449,8462,-0.155357142857136,-0.066253026633814,-0.157142857142850,-0.060532687650807,-0.153571428571423,-0.059927360774177,-0.155357142857136,-0.054207021791171,0.000665859564279,-0.003571428571427,-0.012106537530292,0.000000000000000,0.011985472154994,0.000000000000000,-0.000544794188981,0.003571428571427,2 +8435,8448,8463,10182,-0.151785714285711,-0.065587167069536,-0.153571428571423,-0.059927360774177,-0.151785714285711,-0.053662227602190,-0.150000000000000,-0.059322033897548,0.000665859564278,-0.003571428571423,-0.011985472154994,-0.000000000000000,-0.000544794188981,0.003571428571423,0.011864406779697,-0.000000000000000,2 +2267,8436,8451,8464,-0.200000000000000,-0.054237288136513,-0.198214285714291,-0.060744552058952,-0.196428571428583,-0.053753026635181,-0.198214285714291,-0.047245762712741,-0.013559322033860,-0.000000000000000,0.000544794188980,-0.003571428571417,0.013438256658562,0.000000000000000,-0.000423728813683,0.003571428571417,2 +8437,8450,8452,8465,-0.194642857142864,-0.060199757869971,-0.196428571428583,-0.053753026635181,-0.192857142857145,-0.053268765133847,-0.194642857142864,-0.046822033899057,0.000544794188983,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.000423728813685,0.003571428571438,2 +8438,8451,8453,8466,-0.191071428571419,-0.059654963680987,-0.192857142857145,-0.053268765133847,-0.189285714285694,-0.052784503632511,-0.191071428571419,-0.046398305085372,0.000544794188985,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907966,0.000000000000000,-0.000423728813687,0.003571428571451,2 +8439,8452,8454,8467,-0.187499999999963,-0.059110169492001,-0.189285714285694,-0.052784503632511,-0.185714285714232,-0.052300242131174,-0.187499999999963,-0.045974576271684,0.000544794188987,-0.003571428571462,-0.013196125907966,-0.000000000000000,0.013075060532667,-0.000000000000000,-0.000423728813688,0.003571428571462,2 +8440,8453,8455,8468,-0.183928571428507,-0.058565375303015,-0.185714285714232,-0.052300242131174,-0.182142857142783,-0.051815980629838,-0.183928571428507,-0.045550847457997,0.000544794188985,-0.003571428571449,-0.013075060532667,0.000000000000000,0.012953995157369,0.000000000000000,-0.000423728813686,0.003571428571449,2 +8441,8454,8456,8469,-0.180357142857065,-0.058020581114031,-0.182142857142783,-0.051815980629838,-0.178571428571347,-0.051331719128505,-0.180357142857065,-0.045127118644311,0.000544794188983,-0.003571428571436,-0.012953995157369,-0.000000000000000,0.012832929782071,0.000000000000000,-0.000423728813685,0.003571428571436,2 +8442,8455,8457,8470,-0.176785714285631,-0.057475786925049,-0.178571428571347,-0.051331719128505,-0.174999999999916,-0.050847457627171,-0.176785714285631,-0.044703389830627,0.000544794188982,-0.003571428571431,-0.012832929782071,-0.000000000000000,0.012711864406773,0.000000000000000,-0.000423728813684,0.003571428571431,2 +8443,8456,8458,8471,-0.173214285714214,-0.056930992736069,-0.174999999999916,-0.050847457627171,-0.171428571428512,-0.050363196125842,-0.173214285714214,-0.044279661016944,0.000544794188978,-0.003571428571404,-0.012711864406773,-0.000000000000000,0.012590799031477,0.000000000000000,-0.000423728813681,0.003571428571404,2 +8444,8457,8459,8472,-0.169642857142808,-0.056386198547091,-0.171428571428512,-0.050363196125842,-0.167857142857105,-0.049878934624512,-0.169642857142809,-0.043855932203263,0.000544794188978,-0.003571428571407,-0.012590799031477,-0.000000000000000,0.012469733656180,0.000000000000000,-0.000423728813682,0.003571428571407,2 +8445,8458,8460,8473,-0.166071428571395,-0.055841404358112,-0.167857142857105,-0.049878934624512,-0.164285714285684,-0.049394673123180,-0.166071428571395,-0.043432203389581,0.000544794188980,-0.003571428571421,-0.012469733656180,-0.000000000000000,0.012348668280882,0.000000000000000,-0.000423728813683,0.003571428571421,2 +8446,8459,8461,8474,-0.162499999999982,-0.055296610169132,-0.164285714285684,-0.049394673123180,-0.160714285714279,-0.048910411621851,-0.162499999999982,-0.043008474575898,0.000544794188978,-0.003571428571405,-0.012348668280882,-0.000000000000000,0.012227602905586,0.000000000000000,-0.000423728813681,0.003571428571405,2 +8447,8460,8462,8475,-0.158928571428564,-0.054751815980153,-0.160714285714279,-0.048910411621851,-0.157142857142850,-0.048426150120518,-0.158928571428564,-0.042584745762216,0.000544794188982,-0.003571428571429,-0.012227602905586,-0.000000000000000,0.012106537530288,0.000000000000000,-0.000423728813684,0.003571428571429,2 +8448,8461,8463,8476,-0.155357142857136,-0.054207021791171,-0.157142857142850,-0.048426150120518,-0.153571428571423,-0.047941888619185,-0.155357142857136,-0.042161016948532,0.000544794188981,-0.003571428571427,-0.012106537530288,-0.000000000000000,0.011985472154990,0.000000000000000,-0.000423728813684,0.003571428571427,2 +8449,8462,8477,10183,-0.151785714285711,-0.053662227602190,-0.153571428571423,-0.047941888619185,-0.151785714285711,-0.041737288134848,-0.150000000000000,-0.047457627117853,0.000544794188981,-0.003571428571423,-0.011985472154990,-0.000000000000000,-0.000423728813683,0.003571428571423,0.011864406779693,-0.000000000000000,2 +2268,8450,8465,8478,-0.200000000000000,-0.040677966102653,-0.198214285714291,-0.047245762712741,-0.196428571428583,-0.040314769976619,-0.198214285714291,-0.033746973366530,-0.013559322033860,-0.000000000000000,0.000423728813683,-0.003571428571417,0.013438256658562,0.000000000000000,-0.000302663438385,0.003571428571417,2 +8451,8464,8466,8479,-0.194642857142864,-0.046822033899057,-0.196428571428583,-0.040314769976619,-0.192857142857145,-0.039951573850583,-0.194642857142864,-0.033444309928144,0.000423728813685,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.000302663438387,0.003571428571438,2 +8452,8465,8467,8480,-0.191071428571419,-0.046398305085372,-0.192857142857145,-0.039951573850583,-0.189285714285694,-0.039588377724545,-0.191071428571419,-0.033141646489757,0.000423728813687,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907966,0.000000000000000,-0.000302663438388,0.003571428571451,2 +8453,8466,8468,8481,-0.187499999999963,-0.045974576271684,-0.189285714285694,-0.039588377724545,-0.185714285714231,-0.039225181598507,-0.187499999999963,-0.032838983051368,0.000423728813688,-0.003571428571462,-0.013196125907966,-0.000000000000000,0.013075060532667,0.000000000000000,-0.000302663438389,0.003571428571462,2 +8454,8467,8469,8482,-0.183928571428507,-0.045550847457997,-0.185714285714231,-0.039225181598507,-0.182142857142783,-0.038861985472470,-0.183928571428507,-0.032536319612980,0.000423728813686,-0.003571428571449,-0.013075060532667,-0.000000000000000,0.012953995157368,0.000000000000000,-0.000302663438388,0.003571428571449,2 +8455,8468,8470,8483,-0.180357142857065,-0.045127118644311,-0.182142857142783,-0.038861985472470,-0.178571428571347,-0.038498789346434,-0.180357142857065,-0.032233656174592,0.000423728813685,-0.003571428571436,-0.012953995157368,-0.000000000000000,0.012832929782070,0.000000000000000,-0.000302663438387,0.003571428571436,2 +8456,8469,8471,8484,-0.176785714285631,-0.044703389830627,-0.178571428571347,-0.038498789346434,-0.174999999999916,-0.038135593220399,-0.176785714285631,-0.031930992736206,0.000423728813684,-0.003571428571431,-0.012832929782070,-0.000000000000000,0.012711864406772,0.000000000000000,-0.000302663438386,0.003571428571431,2 +8457,8470,8472,8485,-0.173214285714214,-0.044279661016944,-0.174999999999916,-0.038135593220399,-0.171428571428512,-0.037772397094366,-0.173214285714214,-0.031628329297820,0.000423728813681,-0.003571428571404,-0.012711864406772,-0.000000000000000,0.012590799031475,-0.000000000000000,-0.000302663438384,0.003571428571404,2 +8458,8471,8473,8486,-0.169642857142809,-0.043855932203263,-0.171428571428512,-0.037772397094366,-0.167857142857105,-0.037409200968333,-0.169642857142808,-0.031325665859436,0.000423728813682,-0.003571428571407,-0.012590799031475,0.000000000000000,0.012469733656178,0.000000000000000,-0.000302663438384,0.003571428571407,2 +8459,8472,8474,8487,-0.166071428571395,-0.043432203389581,-0.167857142857105,-0.037409200968333,-0.164285714285684,-0.037046004842299,-0.166071428571395,-0.031023002421051,0.000423728813683,-0.003571428571421,-0.012469733656178,-0.000000000000000,0.012348668280881,0.000000000000000,-0.000302663438386,0.003571428571421,2 +8460,8473,8475,8488,-0.162499999999982,-0.043008474575898,-0.164285714285684,-0.037046004842299,-0.160714285714279,-0.036682808716266,-0.162499999999982,-0.030720338982666,0.000423728813681,-0.003571428571405,-0.012348668280881,-0.000000000000000,0.012227602905584,0.000000000000000,-0.000302663438384,0.003571428571405,2 +8461,8474,8476,8489,-0.158928571428564,-0.042584745762216,-0.160714285714279,-0.036682808716266,-0.157142857142850,-0.036319612590231,-0.158928571428564,-0.030417675544281,0.000423728813684,-0.003571428571429,-0.012227602905584,-0.000000000000000,0.012106537530286,0.000000000000000,-0.000302663438386,0.003571428571429,2 +8462,8475,8477,8490,-0.155357142857136,-0.042161016948532,-0.157142857142850,-0.036319612590231,-0.153571428571423,-0.035956416464196,-0.155357142857136,-0.030115012105895,0.000423728813684,-0.003571428571427,-0.012106537530286,-0.000000000000000,0.011985472154988,-0.000000000000000,-0.000302663438386,0.003571428571427,2 +8463,8476,8491,10184,-0.151785714285711,-0.041737288134848,-0.153571428571423,-0.035956416464196,-0.151785714285711,-0.029812348667509,-0.150000000000000,-0.035593220338161,0.000423728813683,-0.003571428571423,-0.011985472154988,0.000000000000000,-0.000302663438386,0.003571428571423,0.011864406779691,-0.000000000000000,2 +2269,8464,8479,8492,-0.200000000000000,-0.027118644068793,-0.198214285714291,-0.033746973366530,-0.196428571428583,-0.026876513318056,-0.198214285714291,-0.020248184020319,-0.013559322033860,-0.000000000000000,0.000302663438385,-0.003571428571417,0.013438256658563,0.000000000000000,-0.000181598063088,0.003571428571417,2 +8465,8478,8480,8493,-0.194642857142864,-0.033444309928144,-0.196428571428583,-0.026876513318056,-0.192857142857145,-0.026634382567318,-0.194642857142864,-0.020066585957230,0.000302663438387,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283265,0.000000000000000,-0.000181598063089,0.003571428571438,2 +8466,8479,8481,8494,-0.191071428571419,-0.033141646489757,-0.192857142857145,-0.026634382567318,-0.189285714285694,-0.026392251816579,-0.191071428571419,-0.019884987894141,0.000302663438388,-0.003571428571451,-0.013317191283265,-0.000000000000000,0.013196125907967,-0.000000000000000,-0.000181598063090,0.003571428571451,2 +8467,8480,8482,8495,-0.187499999999963,-0.032838983051368,-0.189285714285694,-0.026392251816579,-0.185714285714231,-0.026150121065839,-0.187499999999963,-0.019703389831050,0.000302663438389,-0.003571428571462,-0.013196125907967,0.000000000000000,0.013075060532669,0.000000000000000,-0.000181598063091,0.003571428571462,2 +8468,8481,8483,8496,-0.183928571428507,-0.032536319612980,-0.185714285714231,-0.026150121065839,-0.182142857142783,-0.025907990315100,-0.183928571428507,-0.019521791767960,0.000302663438388,-0.003571428571449,-0.013075060532669,-0.000000000000000,0.012953995157371,-0.000000000000000,-0.000181598063090,0.003571428571449,2 +8469,8482,8484,8497,-0.180357142857065,-0.032233656174592,-0.182142857142783,-0.025907990315100,-0.178571428571347,-0.025665859564362,-0.180357142857065,-0.019340193704870,0.000302663438387,-0.003571428571436,-0.012953995157371,0.000000000000000,0.012832929782073,0.000000000000000,-0.000181598063089,0.003571428571436,2 +8470,8483,8485,8498,-0.176785714285631,-0.031930992736206,-0.178571428571347,-0.025665859564362,-0.174999999999916,-0.025423728813624,-0.176785714285631,-0.019158595641781,0.000302663438386,-0.003571428571431,-0.012832929782073,-0.000000000000000,0.012711864406776,0.000000000000000,-0.000181598063089,0.003571428571431,2 +8471,8484,8486,8499,-0.173214285714214,-0.031628329297820,-0.174999999999916,-0.025423728813624,-0.171428571428512,-0.025181598062889,-0.173214285714214,-0.018976997578693,0.000302663438384,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031479,0.000000000000000,-0.000181598063088,0.003571428571404,2 +8472,8485,8487,8500,-0.169642857142808,-0.031325665859436,-0.171428571428512,-0.025181598062889,-0.167857142857105,-0.024939467312152,-0.169642857142808,-0.018795399515605,0.000302663438384,-0.003571428571407,-0.012590799031479,-0.000000000000000,0.012469733656183,0.000000000000000,-0.000181598063088,0.003571428571407,2 +8473,8486,8488,8501,-0.166071428571395,-0.031023002421051,-0.167857142857105,-0.024939467312152,-0.164285714285684,-0.024697336561415,-0.166071428571395,-0.018613801452517,0.000302663438386,-0.003571428571421,-0.012469733656183,-0.000000000000000,0.012348668280885,0.000000000000000,-0.000181598063088,0.003571428571421,2 +8474,8487,8489,8502,-0.162499999999982,-0.030720338982666,-0.164285714285684,-0.024697336561415,-0.160714285714279,-0.024455205810679,-0.162499999999982,-0.018432203389429,0.000302663438384,-0.003571428571405,-0.012348668280885,-0.000000000000000,0.012227602905589,0.000000000000000,-0.000181598063088,0.003571428571405,2 +8475,8488,8490,8503,-0.158928571428564,-0.030417675544281,-0.160714285714279,-0.024455205810679,-0.157142857142850,-0.024213075059942,-0.158928571428565,-0.018250605326340,0.000302663438386,-0.003571428571429,-0.012227602905589,-0.000000000000000,0.012106537530292,0.000000000000000,-0.000181598063089,0.003571428571429,2 +8476,8489,8491,8504,-0.155357142857136,-0.030115012105895,-0.157142857142850,-0.024213075059942,-0.153571428571423,-0.023970944309204,-0.155357142857136,-0.018069007263252,0.000302663438386,-0.003571428571427,-0.012106537530292,-0.000000000000000,0.011985472154994,0.000000000000000,-0.000181598063089,0.003571428571427,2 +8477,8490,8505,10185,-0.151785714285711,-0.029812348667509,-0.153571428571423,-0.023970944309204,-0.151785714285711,-0.017887409200163,-0.150000000000000,-0.023728813558467,0.000302663438386,-0.003571428571423,-0.011985472154994,-0.000000000000000,-0.000181598063089,0.003571428571423,0.011864406779697,-0.000000000000000,2 +2270,8478,8493,8506,-0.200000000000000,-0.013559322034933,-0.198214285714291,-0.020248184020319,-0.196428571428583,-0.013438256659494,-0.198214285714291,-0.006749394674108,-0.013559322033860,-0.000000000000000,0.000181598063088,-0.003571428571417,0.013438256658562,0.000000000000000,-0.000060532687791,0.003571428571417,2 +8479,8492,8494,8507,-0.194642857142864,-0.020066585957230,-0.196428571428583,-0.013438256659494,-0.192857142857145,-0.013317191284054,-0.194642857142864,-0.006688861986318,0.000181598063089,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.000060532687791,0.003571428571438,2 +8480,8493,8495,8508,-0.191071428571419,-0.019884987894141,-0.192857142857145,-0.013317191284054,-0.189285714285694,-0.013196125908613,-0.191071428571419,-0.006628329298526,0.000181598063090,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907965,0.000000000000000,-0.000060532687791,0.003571428571451,2 +8481,8494,8496,8509,-0.187499999999963,-0.019703389831050,-0.189285714285694,-0.013196125908613,-0.185714285714231,-0.013075060533172,-0.187499999999963,-0.006567796610735,0.000181598063091,-0.003571428571462,-0.013196125907965,-0.000000000000000,0.013075060532665,0.000000000000000,-0.000060532687791,0.003571428571462,2 +8482,8495,8497,8510,-0.183928571428507,-0.019521791767960,-0.185714285714231,-0.013075060533172,-0.182142857142783,-0.012953995157732,-0.183928571428507,-0.006507263922944,0.000181598063090,-0.003571428571449,-0.013075060532665,-0.000000000000000,0.012953995157367,0.000000000000000,-0.000060532687791,0.003571428571449,2 +8483,8496,8498,8511,-0.180357142857065,-0.019340193704870,-0.182142857142783,-0.012953995157732,-0.178571428571347,-0.012832929782292,-0.180357142857065,-0.006446731235153,0.000181598063089,-0.003571428571436,-0.012953995157367,-0.000000000000000,0.012832929782068,0.000000000000000,-0.000060532687791,0.003571428571436,2 +8484,8497,8499,8512,-0.176785714285631,-0.019158595641781,-0.178571428571347,-0.012832929782292,-0.174999999999916,-0.012711864406852,-0.176785714285631,-0.006386198547362,0.000181598063089,-0.003571428571431,-0.012832929782068,-0.000000000000000,0.012711864406770,-0.000000000000000,-0.000060532687791,0.003571428571431,2 +8485,8498,8500,8513,-0.173214285714214,-0.018976997578693,-0.174999999999916,-0.012711864406852,-0.171428571428512,-0.012590799031413,-0.173214285714214,-0.006325665859571,0.000181598063088,-0.003571428571404,-0.012711864406770,0.000000000000000,0.012590799031473,0.000000000000000,-0.000060532687790,0.003571428571404,2 +8486,8499,8501,8514,-0.169642857142808,-0.018795399515605,-0.171428571428512,-0.012590799031413,-0.167857142857105,-0.012469733655973,-0.169642857142808,-0.006265133171781,0.000181598063088,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656176,0.000000000000000,-0.000060532687790,0.003571428571407,2 +8487,8500,8502,8515,-0.166071428571395,-0.018613801452517,-0.167857142857105,-0.012469733655973,-0.164285714285684,-0.012348668280534,-0.166071428571395,-0.006204600483990,0.000181598063088,-0.003571428571421,-0.012469733656176,-0.000000000000000,0.012348668280878,0.000000000000000,-0.000060532687791,0.003571428571421,2 +8488,8501,8503,8516,-0.162499999999982,-0.018432203389429,-0.164285714285684,-0.012348668280534,-0.160714285714279,-0.012227602905095,-0.162499999999982,-0.006144067796200,0.000181598063088,-0.003571428571405,-0.012348668280878,-0.000000000000000,0.012227602905580,0.000000000000000,-0.000060532687790,0.003571428571405,2 +8489,8502,8504,8517,-0.158928571428565,-0.018250605326340,-0.160714285714279,-0.012227602905095,-0.157142857142850,-0.012106537529655,-0.158928571428565,-0.006083535108409,0.000181598063089,-0.003571428571429,-0.012227602905580,-0.000000000000000,0.012106537530282,0.000000000000000,-0.000060532687791,0.003571428571429,2 +8490,8503,8505,8518,-0.155357142857136,-0.018069007263252,-0.157142857142850,-0.012106537529655,-0.153571428571423,-0.011985472154215,-0.155357142857136,-0.006023002420618,0.000181598063089,-0.003571428571427,-0.012106537530282,-0.000000000000000,0.011985472154984,0.000000000000000,-0.000060532687791,0.003571428571427,2 +8491,8504,8519,10186,-0.151785714285711,-0.017887409200163,-0.153571428571423,-0.011985472154215,-0.151785714285711,-0.005962469732828,-0.150000000000000,-0.011864406778775,0.000181598063089,-0.003571428571423,-0.011985472154984,-0.000000000000000,-0.000060532687791,0.003571428571423,0.011864406779686,-0.000000000000000,2 +2271,8492,8507,8520,-0.200000000000000,-0.000000000001056,-0.198214285714291,-0.006749394674108,-0.196428571428583,-0.000000000000916,-0.198214285714291,0.006749394672136,-0.013559322033895,-0.000000000000000,0.000060532687791,-0.003571428571417,0.013438256658594,0.000000000000000,0.000060532687511,0.003571428571417,2 +8493,8506,8508,8521,-0.194642857142864,-0.006688861986318,-0.196428571428583,-0.000000000000916,-0.192857142857145,-0.000000000000776,-0.194642857142864,0.006688861984625,0.000060532687791,-0.003571428571438,-0.013438256658594,-0.000000000000000,0.013317191283292,0.000000000000000,0.000060532687511,0.003571428571438,2 +8494,8507,8509,8522,-0.191071428571419,-0.006628329298526,-0.192857142857145,-0.000000000000776,-0.189285714285694,-0.000000000000636,-0.191071428571419,0.006628329297114,0.000060532687791,-0.003571428571451,-0.013317191283292,-0.000000000000000,0.013196125907989,0.000000000000000,0.000060532687511,0.003571428571451,2 +8495,8508,8510,8523,-0.187499999999963,-0.006567796610735,-0.189285714285694,-0.000000000000636,-0.185714285714231,-0.000000000000496,-0.187499999999963,0.006567796609603,0.000060532687791,-0.003571428571462,-0.013196125907989,-0.000000000000000,0.013075060532687,0.000000000000000,0.000060532687511,0.003571428571462,2 +8496,8509,8511,8524,-0.183928571428507,-0.006507263922944,-0.185714285714231,-0.000000000000496,-0.182142857142783,-0.000000000000356,-0.183928571428507,0.006507263922092,0.000060532687791,-0.003571428571449,-0.013075060532687,-0.000000000000000,0.012953995157385,0.000000000000000,0.000060532687511,0.003571428571449,2 +8497,8510,8512,8525,-0.180357142857065,-0.006446731235153,-0.182142857142783,-0.000000000000356,-0.178571428571347,-0.000000000000216,-0.180357142857065,0.006446731234581,0.000060532687791,-0.003571428571436,-0.012953995157385,-0.000000000000000,0.012832929782083,-0.000000000000000,0.000060532687511,0.003571428571436,2 +8498,8511,8513,8526,-0.176785714285631,-0.006386198547362,-0.178571428571347,-0.000000000000216,-0.174999999999916,-0.000000000000076,-0.176785714285631,0.006386198547070,0.000060532687791,-0.003571428571431,-0.012832929782083,0.000000000000000,0.012711864406781,0.000000000000000,0.000060532687511,0.003571428571431,2 +8499,8512,8514,8527,-0.173214285714214,-0.006325665859571,-0.174999999999916,-0.000000000000076,-0.171428571428512,0.000000000000064,-0.173214285714214,0.006325665859559,0.000060532687790,-0.003571428571404,-0.012711864406781,-0.000000000000000,0.012590799031480,0.000000000000000,0.000060532687510,0.003571428571404,2 +8500,8513,8515,8528,-0.169642857142808,-0.006265133171781,-0.171428571428512,0.000000000000064,-0.167857142857105,0.000000000000204,-0.169642857142808,0.006265133172049,0.000060532687790,-0.003571428571407,-0.012590799031480,-0.000000000000000,0.012469733656179,0.000000000000000,0.000060532687510,0.003571428571407,2 +8501,8514,8516,8529,-0.166071428571395,-0.006204600483990,-0.167857142857105,0.000000000000204,-0.164285714285684,0.000000000000344,-0.166071428571395,0.006204600484538,0.000060532687791,-0.003571428571421,-0.012469733656179,-0.000000000000000,0.012348668280878,0.000000000000000,0.000060532687511,0.003571428571421,2 +8502,8515,8517,8530,-0.162499999999982,-0.006144067796200,-0.164285714285684,0.000000000000344,-0.160714285714279,0.000000000000484,-0.162499999999982,0.006144067797028,0.000060532687790,-0.003571428571405,-0.012348668280878,-0.000000000000000,0.012227602905577,-0.000000000000000,0.000060532687510,0.003571428571405,2 +8503,8516,8518,8531,-0.158928571428565,-0.006083535108409,-0.160714285714279,0.000000000000484,-0.157142857142850,0.000000000000624,-0.158928571428564,0.006083535109517,0.000060532687791,-0.003571428571429,-0.012227602905577,0.000000000000000,0.012106537530276,0.000000000000000,0.000060532687511,0.003571428571429,2 +8504,8517,8519,8532,-0.155357142857136,-0.006023002420618,-0.157142857142850,0.000000000000624,-0.153571428571423,0.000000000000764,-0.155357142857136,0.006023002422007,0.000060532687791,-0.003571428571427,-0.012106537530276,-0.000000000000000,0.011985472154974,0.000000000000000,0.000060532687511,0.003571428571427,2 +8505,8518,8533,10187,-0.151785714285711,-0.005962469732828,-0.153571428571423,0.000000000000764,-0.151785714285711,0.005962469734496,-0.150000000000000,0.000000000000904,0.000060532687791,-0.003571428571423,-0.011985472154974,-0.000000000000000,0.000060532687511,0.003571428571423,0.011864406779673,-0.000000000000000,2 +2272,8506,8521,8534,-0.200000000000000,0.013559322032862,-0.198214285714291,0.006749394672136,-0.196428571428583,0.013438256657697,-0.198214285714291,0.020248184018423,-0.013559322033941,-0.000000000000000,-0.000060532687511,-0.003571428571417,0.013438256658633,0.000000000000000,0.000181598062818,0.003571428571417,2 +8507,8520,8522,8535,-0.194642857142864,0.006688861984625,-0.196428571428583,0.013438256657697,-0.192857142857145,0.013317191282532,-0.194642857142864,0.020066585955604,-0.000060532687511,-0.003571428571438,-0.013438256658633,-0.000000000000000,0.013317191283325,0.000000000000000,0.000181598062819,0.003571428571438,2 +8508,8521,8523,8536,-0.191071428571419,0.006628329297114,-0.192857142857145,0.013317191282532,-0.189285714285694,0.013196125907367,-0.191071428571419,0.019884987892785,-0.000060532687511,-0.003571428571451,-0.013317191283325,-0.000000000000000,0.013196125908016,0.000000000000000,0.000181598062820,0.003571428571451,2 +8509,8522,8524,8537,-0.187499999999963,0.006567796609603,-0.189285714285694,0.013196125907367,-0.185714285714231,0.013075060532201,-0.187499999999963,0.019703389829964,-0.000060532687511,-0.003571428571462,-0.013196125908016,-0.000000000000000,0.013075060532707,0.000000000000000,0.000181598062821,0.003571428571462,2 +8510,8523,8525,8538,-0.183928571428507,0.006507263922092,-0.185714285714231,0.013075060532201,-0.182142857142783,0.012953995157035,-0.183928571428507,0.019521791767144,-0.000060532687511,-0.003571428571449,-0.013075060532707,-0.000000000000000,0.012953995157398,0.000000000000000,0.000181598062820,0.003571428571449,2 +8511,8524,8526,8539,-0.180357142857065,0.006446731234581,-0.182142857142783,0.012953995157035,-0.178571428571347,0.012832929781870,-0.180357142857065,0.019340193704324,-0.000060532687511,-0.003571428571436,-0.012953995157398,-0.000000000000000,0.012832929782089,0.000000000000000,0.000181598062819,0.003571428571436,2 +8512,8525,8527,8540,-0.176785714285631,0.006386198547070,-0.178571428571347,0.012832929781870,-0.174999999999916,0.012711864406705,-0.176785714285631,0.019158595641505,-0.000060532687511,-0.003571428571431,-0.012832929782089,-0.000000000000000,0.012711864406781,0.000000000000000,0.000181598062819,0.003571428571431,2 +8513,8526,8528,8541,-0.173214285714214,0.006325665859559,-0.174999999999916,0.012711864406705,-0.171428571428512,0.012590799031541,-0.173214285714214,0.018976997578687,-0.000060532687510,-0.003571428571404,-0.012711864406781,-0.000000000000000,0.012590799031474,0.000000000000000,0.000181598062818,0.003571428571404,2 +8514,8527,8529,8542,-0.169642857142808,0.006265133172049,-0.171428571428512,0.012590799031541,-0.167857142857105,0.012469733656377,-0.169642857142808,0.018795399515869,-0.000060532687510,-0.003571428571407,-0.012590799031474,-0.000000000000000,0.012469733656166,0.000000000000000,0.000181598062818,0.003571428571407,2 +8515,8528,8530,8543,-0.166071428571395,0.006204600484538,-0.167857142857105,0.012469733656377,-0.164285714285684,0.012348668281212,-0.166071428571395,0.018613801453051,-0.000060532687511,-0.003571428571421,-0.012469733656166,-0.000000000000000,0.012348668280858,0.000000000000000,0.000181598062819,0.003571428571421,2 +8516,8529,8531,8544,-0.162499999999982,0.006144067797028,-0.164285714285684,0.012348668281212,-0.160714285714279,0.012227602906048,-0.162499999999982,0.018432203390233,-0.000060532687510,-0.003571428571405,-0.012348668280858,-0.000000000000000,0.012227602905551,0.000000000000000,0.000181598062818,0.003571428571405,2 +8517,8530,8532,8545,-0.158928571428564,0.006083535109517,-0.160714285714279,0.012227602906048,-0.157142857142850,0.012106537530883,-0.158928571428564,0.018250605327414,-0.000060532687511,-0.003571428571429,-0.012227602905551,-0.000000000000000,0.012106537530243,0.000000000000000,0.000181598062819,0.003571428571429,2 +8518,8531,8533,8546,-0.155357142857136,0.006023002422007,-0.157142857142850,0.012106537530883,-0.153571428571423,0.011985472155719,-0.155357142857136,0.018069007264595,-0.000060532687511,-0.003571428571427,-0.012106537530243,-0.000000000000000,0.011985472154935,0.000000000000000,0.000181598062819,0.003571428571427,2 +8519,8532,8547,10188,-0.151785714285711,0.005962469734496,-0.153571428571423,0.011985472155719,-0.151785714285711,0.017887409201777,-0.150000000000000,0.011864406780554,-0.000060532687511,-0.003571428571423,-0.011985472154935,-0.000000000000000,0.000181598062819,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2273,8520,8535,8548,-0.200000000000000,0.027118644066798,-0.198214285714291,0.020248184018423,-0.196428571428583,0.026876513316326,-0.198214285714291,0.033746973364700,-0.013559322033930,-0.000000000000000,-0.000181598062818,-0.003571428571417,0.013438256658623,0.000000000000000,0.000302663438125,0.003571428571417,2 +8521,8534,8536,8549,-0.194642857142864,0.020066585955604,-0.196428571428583,0.026876513316326,-0.192857142857145,0.026634382565852,-0.194642857142864,0.033444309926574,-0.000181598062819,-0.003571428571438,-0.013438256658623,-0.000000000000000,0.013317191283315,0.000000000000000,0.000302663438127,0.003571428571438,2 +8522,8535,8537,8550,-0.191071428571419,0.019884987892785,-0.192857142857145,0.026634382565852,-0.189285714285694,0.026392251815378,-0.191071428571419,0.033141646488446,-0.000181598062820,-0.003571428571451,-0.013317191283315,-0.000000000000000,0.013196125908007,0.000000000000000,0.000302663438128,0.003571428571451,2 +8523,8536,8538,8551,-0.187499999999963,0.019703389829964,-0.189285714285694,0.026392251815378,-0.185714285714231,0.026150121064903,-0.187499999999963,0.032838983050317,-0.000181598062821,-0.003571428571462,-0.013196125908007,-0.000000000000000,0.013075060532699,0.000000000000000,0.000302663438129,0.003571428571462,2 +8524,8537,8539,8552,-0.183928571428507,0.019521791767144,-0.185714285714231,0.026150121064903,-0.182142857142783,0.025907990314429,-0.183928571428507,0.032536319612189,-0.000181598062820,-0.003571428571449,-0.013075060532699,-0.000000000000000,0.012953995157391,0.000000000000000,0.000302663438128,0.003571428571449,2 +8525,8538,8540,8553,-0.180357142857065,0.019340193704324,-0.182142857142783,0.025907990314429,-0.178571428571347,0.025665859563956,-0.180357142857065,0.032233656174061,-0.000181598062819,-0.003571428571436,-0.012953995157391,-0.000000000000000,0.012832929782083,0.000000000000000,0.000302663438127,0.003571428571436,2 +8526,8539,8541,8554,-0.176785714285631,0.019158595641505,-0.178571428571347,0.025665859563956,-0.174999999999916,0.025423728813483,-0.176785714285631,0.031930992735934,-0.000181598062819,-0.003571428571431,-0.012832929782083,-0.000000000000000,0.012711864406776,0.000000000000000,0.000302663438127,0.003571428571431,2 +8527,8540,8542,8555,-0.173214285714214,0.018976997578687,-0.174999999999916,0.025423728813483,-0.171428571428512,0.025181598063012,-0.173214285714214,0.031628329297809,-0.000181598062818,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031469,0.000000000000000,0.000302663438124,0.003571428571404,2 +8528,8541,8543,8556,-0.169642857142808,0.018795399515869,-0.171428571428512,0.025181598063012,-0.167857142857105,0.024939467312541,-0.169642857142808,0.031325665859685,-0.000181598062818,-0.003571428571407,-0.012590799031469,-0.000000000000000,0.012469733656162,0.000000000000000,0.000302663438125,0.003571428571407,2 +8529,8542,8544,8557,-0.166071428571395,0.018613801453051,-0.167857142857105,0.024939467312541,-0.164285714285684,0.024697336562069,-0.166071428571395,0.031023002421560,-0.000181598062819,-0.003571428571421,-0.012469733656162,-0.000000000000000,0.012348668280855,0.000000000000000,0.000302663438126,0.003571428571421,2 +8530,8543,8545,8558,-0.162499999999982,0.018432203390233,-0.164285714285684,0.024697336562069,-0.160714285714279,0.024455205811598,-0.162499999999982,0.030720338983435,-0.000181598062818,-0.003571428571405,-0.012348668280855,-0.000000000000000,0.012227602905549,0.000000000000000,0.000302663438124,0.003571428571405,2 +8531,8544,8546,8559,-0.158928571428564,0.018250605327414,-0.160714285714279,0.024455205811598,-0.157142857142850,0.024213075061125,-0.158928571428564,0.030417675545309,-0.000181598062819,-0.003571428571429,-0.012227602905549,-0.000000000000000,0.012106537530241,0.000000000000000,0.000302663438126,0.003571428571429,2 +8532,8545,8547,8560,-0.155357142857136,0.018069007264595,-0.157142857142850,0.024213075061125,-0.153571428571423,0.023970944310653,-0.155357142857136,0.030115012107183,-0.000181598062819,-0.003571428571427,-0.012106537530241,-0.000000000000000,0.011985472154934,-0.000000000000000,0.000302663438126,0.003571428571427,2 +8533,8546,8561,10189,-0.151785714285711,0.017887409201777,-0.153571428571423,0.023970944310653,-0.151785714285711,0.029812348669057,-0.150000000000000,0.023728813560181,-0.000181598062819,-0.003571428571423,-0.011985472154934,0.000000000000000,0.000302663438126,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2274,8534,8549,8562,-0.200000000000000,0.040677966100731,-0.198214285714291,0.033746973364700,-0.196428571428583,0.040314769974952,-0.198214285714291,0.047245762710983,-0.013559322033937,-0.000000000000000,-0.000302663438125,-0.003571428571417,0.013438256658629,0.000000000000000,0.000423728813433,0.003571428571417,2 +8535,8548,8550,8563,-0.194642857142864,0.033444309926574,-0.196428571428583,0.040314769974952,-0.192857142857145,0.039951573849171,-0.194642857142864,0.046822033897549,-0.000302663438127,-0.003571428571438,-0.013438256658629,-0.000000000000000,0.013317191283321,0.000000000000000,0.000423728813435,0.003571428571438,2 +8536,8549,8551,8564,-0.191071428571419,0.033141646488446,-0.192857142857145,0.039951573849171,-0.189285714285694,0.039588377723388,-0.191071428571419,0.046398305084113,-0.000302663438128,-0.003571428571451,-0.013317191283321,-0.000000000000000,0.013196125908012,0.000000000000000,0.000423728813437,0.003571428571451,2 +8537,8550,8552,8565,-0.187499999999963,0.032838983050317,-0.189285714285694,0.039588377723388,-0.185714285714231,0.039225181597604,-0.187499999999963,0.045974576270675,-0.000302663438129,-0.003571428571462,-0.013196125908012,-0.000000000000000,0.013075060532703,0.000000000000000,0.000423728813438,0.003571428571462,2 +8538,8551,8553,8566,-0.183928571428507,0.032536319612189,-0.185714285714231,0.039225181597604,-0.182142857142783,0.038861985471822,-0.183928571428507,0.045550847457238,-0.000302663438128,-0.003571428571449,-0.013075060532703,-0.000000000000000,0.012953995157395,0.000000000000000,0.000423728813437,0.003571428571449,2 +8539,8552,8554,8567,-0.180357142857065,0.032233656174061,-0.182142857142783,0.038861985471822,-0.178571428571347,0.038498789346041,-0.180357142857065,0.045127118643802,-0.000302663438127,-0.003571428571436,-0.012953995157395,-0.000000000000000,0.012832929782087,0.000000000000000,0.000423728813435,0.003571428571436,2 +8540,8553,8555,8568,-0.176785714285631,0.031930992735934,-0.178571428571347,0.038498789346041,-0.174999999999916,0.038135593220261,-0.176785714285631,0.044703389830367,-0.000302663438127,-0.003571428571431,-0.012832929782087,-0.000000000000000,0.012711864406779,0.000000000000000,0.000423728813434,0.003571428571431,2 +8541,8554,8556,8569,-0.173214285714214,0.031628329297809,-0.174999999999916,0.038135593220261,-0.171428571428512,0.037772397094483,-0.173214285714214,0.044279661016934,-0.000302663438124,-0.003571428571404,-0.012711864406779,-0.000000000000000,0.012590799031472,0.000000000000000,0.000423728813431,0.003571428571404,2 +8542,8555,8557,8570,-0.169642857142808,0.031325665859685,-0.171428571428512,0.037772397094483,-0.167857142857105,0.037409200968705,-0.169642857142809,0.043855932203503,-0.000302663438125,-0.003571428571407,-0.012590799031472,-0.000000000000000,0.012469733656165,0.000000000000000,0.000423728813432,0.003571428571407,2 +8543,8556,8558,8571,-0.166071428571395,0.031023002421560,-0.167857142857105,0.037409200968705,-0.164285714285684,0.037046004842925,-0.166071428571395,0.043432203390070,-0.000302663438126,-0.003571428571421,-0.012469733656165,-0.000000000000000,0.012348668280857,0.000000000000000,0.000423728813433,0.003571428571421,2 +8544,8557,8559,8572,-0.162499999999982,0.030720338983435,-0.164285714285684,0.037046004842925,-0.160714285714279,0.036682808717147,-0.162499999999982,0.043008474576638,-0.000302663438124,-0.003571428571405,-0.012348668280857,-0.000000000000000,0.012227602905550,0.000000000000000,0.000423728813431,0.003571428571405,2 +8545,8558,8560,8573,-0.158928571428564,0.030417675545309,-0.160714285714279,0.036682808717147,-0.157142857142850,0.036319612591367,-0.158928571428564,0.042584745763205,-0.000302663438126,-0.003571428571429,-0.012227602905550,-0.000000000000000,0.012106537530242,0.000000000000000,0.000423728813434,0.003571428571429,2 +8546,8559,8561,8574,-0.155357142857136,0.030115012107183,-0.157142857142850,0.036319612591367,-0.153571428571423,0.035956416465587,-0.155357142857136,0.042161016949771,-0.000302663438126,-0.003571428571427,-0.012106537530242,-0.000000000000000,0.011985472154934,0.000000000000000,0.000423728813434,0.003571428571427,2 +8547,8560,8575,10190,-0.151785714285711,0.029812348669057,-0.153571428571423,0.035956416465587,-0.151785714285711,0.041737288136337,-0.150000000000000,0.035593220339807,-0.000302663438126,-0.003571428571423,-0.011985472154934,-0.000000000000000,0.000423728813433,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2275,8548,8563,8576,-0.200000000000000,0.054237288134667,-0.198214285714291,0.047245762710983,-0.196428571428583,0.053753026633580,-0.198214285714291,0.060744552057264,-0.013559322033935,-0.000000000000000,-0.000423728813433,-0.003571428571417,0.013438256658627,0.000000000000000,0.000544794188740,0.003571428571417,2 +8549,8562,8564,8577,-0.194642857142864,0.046822033897549,-0.196428571428583,0.053753026633580,-0.192857142857145,0.053268765132491,-0.194642857142864,0.060199757868522,-0.000423728813435,-0.003571428571438,-0.013438256658627,-0.000000000000000,0.013317191283319,0.000000000000000,0.000544794188743,0.003571428571438,2 +8550,8563,8565,8578,-0.191071428571419,0.046398305084113,-0.192857142857145,0.053268765132491,-0.189285714285694,0.052784503631400,-0.191071428571419,0.059654963679778,-0.000423728813437,-0.003571428571451,-0.013317191283319,-0.000000000000000,0.013196125908011,0.000000000000000,0.000544794188745,0.003571428571451,2 +8551,8564,8566,8579,-0.187499999999963,0.045974576270675,-0.189285714285694,0.052784503631400,-0.185714285714231,0.052300242130307,-0.187499999999963,0.059110169491032,-0.000423728813438,-0.003571428571462,-0.013196125908011,-0.000000000000000,0.013075060532702,0.000000000000000,0.000544794188747,0.003571428571462,2 +8552,8565,8567,8580,-0.183928571428507,0.045550847457238,-0.185714285714231,0.052300242130307,-0.182142857142783,0.051815980629216,-0.183928571428507,0.058565375302286,-0.000423728813437,-0.003571428571449,-0.013075060532702,-0.000000000000000,0.012953995157394,0.000000000000000,0.000544794188745,0.003571428571449,2 +8553,8566,8568,8581,-0.180357142857065,0.045127118643802,-0.182142857142783,0.051815980629216,-0.178571428571347,0.051331719128127,-0.180357142857065,0.058020581113542,-0.000423728813435,-0.003571428571436,-0.012953995157394,-0.000000000000000,0.012832929782086,-0.000000000000000,0.000544794188743,0.003571428571436,2 +8554,8567,8569,8582,-0.176785714285631,0.044703389830367,-0.178571428571347,0.051331719128127,-0.174999999999916,0.050847457627039,-0.176785714285631,0.057475786924799,-0.000423728813434,-0.003571428571431,-0.012832929782086,0.000000000000000,0.012711864406778,0.000000000000000,0.000544794188742,0.003571428571431,2 +8555,8568,8570,8583,-0.173214285714214,0.044279661016934,-0.174999999999916,0.050847457627039,-0.171428571428512,0.050363196125954,-0.173214285714214,0.056930992736059,-0.000423728813431,-0.003571428571404,-0.012711864406778,-0.000000000000000,0.012590799031471,0.000000000000000,0.000544794188738,0.003571428571404,2 +8556,8569,8571,8584,-0.169642857142809,0.043855932203503,-0.171428571428512,0.050363196125954,-0.167857142857105,0.049878934624869,-0.169642857142809,0.056386198547320,-0.000423728813432,-0.003571428571407,-0.012590799031471,-0.000000000000000,0.012469733656164,0.000000000000000,0.000544794188739,0.003571428571407,2 +8557,8570,8572,8585,-0.166071428571395,0.043432203390070,-0.167857142857105,0.049878934624869,-0.164285714285684,0.049394673123782,-0.166071428571395,0.055841404358581,-0.000423728813433,-0.003571428571421,-0.012469733656164,-0.000000000000000,0.012348668280857,0.000000000000000,0.000544794188741,0.003571428571421,2 +8558,8571,8573,8586,-0.162499999999982,0.043008474576638,-0.164285714285684,0.049394673123782,-0.160714285714279,0.048910411622697,-0.162499999999982,0.055296610169841,-0.000423728813431,-0.003571428571405,-0.012348668280857,-0.000000000000000,0.012227602905550,0.000000000000000,0.000544794188738,0.003571428571405,2 +8559,8572,8574,8587,-0.158928571428564,0.042584745763205,-0.160714285714279,0.048910411622697,-0.157142857142850,0.048426150121609,-0.158928571428564,0.054751815981101,-0.000423728813434,-0.003571428571429,-0.012227602905550,-0.000000000000000,0.012106537530242,0.000000000000000,0.000544794188742,0.003571428571429,2 +8560,8573,8575,8588,-0.155357142857136,0.042161016949771,-0.157142857142850,0.048426150121609,-0.153571428571423,0.047941888620521,-0.155357142857136,0.054207021792359,-0.000423728813434,-0.003571428571427,-0.012106537530242,-0.000000000000000,0.011985472154934,0.000000000000000,0.000544794188742,0.003571428571427,2 +8561,8574,8589,10191,-0.151785714285711,0.041737288136337,-0.153571428571423,0.047941888620521,-0.151785714285711,0.053662227603618,-0.150000000000000,0.047457627119434,-0.000423728813433,-0.003571428571423,-0.011985472154934,-0.000000000000000,0.000544794188741,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2276,8562,8577,8590,-0.200000000000000,0.067796610168599,-0.198214285714291,0.060744552057264,-0.196428571428583,0.067191283292206,-0.198214285714291,0.074243341403541,-0.013559322033930,-0.000000000000000,-0.000544794188740,-0.003571428571417,0.013438256658623,0.000000000000000,0.000665859564047,0.003571428571417,2 +8563,8576,8578,8591,-0.194642857142864,0.060199757868522,-0.196428571428583,0.067191283292206,-0.192857142857145,0.066585956415808,-0.194642857142864,0.073577481839492,-0.000544794188743,-0.003571428571438,-0.013438256658623,-0.000000000000000,0.013317191283316,0.000000000000000,0.000665859564051,0.003571428571438,2 +8564,8577,8579,8592,-0.191071428571419,0.059654963679778,-0.192857142857145,0.066585956415808,-0.189285714285694,0.065980629539409,-0.191071428571419,0.072911622275439,-0.000544794188745,-0.003571428571451,-0.013317191283316,-0.000000000000000,0.013196125908007,0.000000000000000,0.000665859564053,0.003571428571451,2 +8565,8578,8580,8593,-0.187499999999963,0.059110169491032,-0.189285714285694,0.065980629539409,-0.185714285714231,0.065375302663008,-0.187499999999963,0.072245762711385,-0.000544794188747,-0.003571428571462,-0.013196125908007,-0.000000000000000,0.013075060532699,0.000000000000000,0.000665859564056,0.003571428571462,2 +8566,8579,8581,8594,-0.183928571428507,0.058565375302286,-0.185714285714231,0.065375302663008,-0.182142857142783,0.064769975786609,-0.183928571428507,0.071579903147330,-0.000544794188745,-0.003571428571449,-0.013075060532699,-0.000000000000000,0.012953995157391,0.000000000000000,0.000665859564053,0.003571428571449,2 +8567,8580,8582,8595,-0.180357142857065,0.058020581113542,-0.182142857142783,0.064769975786609,-0.178571428571347,0.064164648910212,-0.180357142857065,0.070914043583279,-0.000544794188743,-0.003571428571436,-0.012953995157391,-0.000000000000000,0.012832929782083,0.000000000000000,0.000665859564051,0.003571428571436,2 +8568,8581,8583,8596,-0.176785714285631,0.057475786924799,-0.178571428571347,0.064164648910212,-0.174999999999916,0.063559322033816,-0.176785714285631,0.070248184019228,-0.000544794188742,-0.003571428571431,-0.012832929782083,-0.000000000000000,0.012711864406776,-0.000000000000000,0.000665859564050,0.003571428571431,2 +8569,8582,8584,8597,-0.173214285714214,0.056930992736059,-0.174999999999916,0.063559322033816,-0.171428571428512,0.062953995157424,-0.173214285714214,0.069582324455181,-0.000544794188738,-0.003571428571404,-0.012711864406776,0.000000000000000,0.012590799031469,0.000000000000000,0.000665859564045,0.003571428571404,2 +8570,8583,8585,8598,-0.169642857142809,0.056386198547320,-0.171428571428512,0.062953995157424,-0.167857142857105,0.062348668281032,-0.169642857142809,0.068916464891136,-0.000544794188739,-0.003571428571407,-0.012590799031469,-0.000000000000000,0.012469733656162,0.000000000000000,0.000665859564045,0.003571428571407,2 +8571,8584,8586,8599,-0.166071428571395,0.055841404358581,-0.167857142857105,0.062348668281032,-0.164285714285684,0.061743341404638,-0.166071428571395,0.068250605327089,-0.000544794188741,-0.003571428571421,-0.012469733656162,-0.000000000000000,0.012348668280855,0.000000000000000,0.000665859564048,0.003571428571421,2 +8572,8585,8587,8600,-0.162499999999982,0.055296610169841,-0.164285714285684,0.061743341404638,-0.160714285714279,0.061138014528246,-0.162499999999982,0.067584745763043,-0.000544794188738,-0.003571428571405,-0.012348668280855,-0.000000000000000,0.012227602905549,0.000000000000000,0.000665859564045,0.003571428571405,2 +8573,8586,8588,8601,-0.158928571428564,0.054751815981101,-0.160714285714279,0.061138014528246,-0.157142857142850,0.060532687651851,-0.158928571428564,0.066918886198996,-0.000544794188742,-0.003571428571429,-0.012227602905549,-0.000000000000000,0.012106537530241,0.000000000000000,0.000665859564049,0.003571428571429,2 +8574,8587,8589,8602,-0.155357142857136,0.054207021792359,-0.157142857142850,0.060532687651851,-0.153571428571423,0.059927360775455,-0.155357142857136,0.066253026634947,-0.000544794188742,-0.003571428571427,-0.012106537530241,-0.000000000000000,0.011985472154934,0.000000000000000,0.000665859564049,0.003571428571427,2 +8575,8588,8603,10192,-0.151785714285711,0.053662227603618,-0.153571428571423,0.059927360775455,-0.151785714285711,0.065587167070898,-0.150000000000000,0.059322033899060,-0.000544794188741,-0.003571428571423,-0.011985472154934,-0.000000000000000,0.000665859564048,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2277,8576,8591,8604,-0.200000000000000,0.081355932202535,-0.198214285714291,0.074243341403541,-0.196428571428583,0.080629539950834,-0.198214285714291,0.087742130749828,-0.013559322033941,-0.000000000000000,-0.000665859564047,-0.003571428571417,0.013438256658633,0.000000000000000,0.000786924939355,0.003571428571417,2 +8577,8590,8592,8605,-0.194642857142864,0.073577481839492,-0.196428571428583,0.080629539950834,-0.192857142857145,0.079903147699129,-0.194642857142864,0.086955205810471,-0.000665859564051,-0.003571428571438,-0.013438256658633,-0.000000000000000,0.013317191283325,0.000000000000000,0.000786924939360,0.003571428571438,2 +8578,8591,8593,8606,-0.191071428571419,0.072911622275439,-0.192857142857145,0.079903147699129,-0.189285714285694,0.079176755447421,-0.191071428571419,0.086168280871110,-0.000665859564053,-0.003571428571451,-0.013317191283325,-0.000000000000000,0.013196125908016,0.000000000000000,0.000786924939362,0.003571428571451,2 +8579,8592,8594,8607,-0.187499999999963,0.072245762711385,-0.189285714285694,0.079176755447421,-0.185714285714231,0.078450363195710,-0.187499999999963,0.085381355931746,-0.000665859564056,-0.003571428571462,-0.013196125908016,-0.000000000000000,0.013075060532707,0.000000000000000,0.000786924939365,0.003571428571462,2 +8580,8593,8595,8608,-0.183928571428507,0.071579903147330,-0.185714285714231,0.078450363195710,-0.182142857142783,0.077723970944003,-0.183928571428507,0.084594430992383,-0.000665859564053,-0.003571428571449,-0.013075060532707,-0.000000000000000,0.012953995157398,0.000000000000000,0.000786924939362,0.003571428571449,2 +8581,8594,8596,8609,-0.180357142857065,0.070914043583279,-0.182142857142783,0.077723970944003,-0.178571428571347,0.076997578692298,-0.180357142857065,0.083807506053022,-0.000665859564051,-0.003571428571436,-0.012953995157398,-0.000000000000000,0.012832929782089,0.000000000000000,0.000786924939359,0.003571428571436,2 +8582,8595,8597,8610,-0.176785714285631,0.070248184019228,-0.178571428571347,0.076997578692298,-0.174999999999916,0.076271186440594,-0.176785714285631,0.083020581113664,-0.000665859564050,-0.003571428571431,-0.012832929782089,-0.000000000000000,0.012711864406781,0.000000000000000,0.000786924939358,0.003571428571431,2 +8583,8596,8598,8611,-0.173214285714214,0.069582324455181,-0.174999999999916,0.076271186440594,-0.171428571428512,0.075544794188896,-0.173214285714214,0.082233656174309,-0.000665859564045,-0.003571428571404,-0.012711864406781,-0.000000000000000,0.012590799031474,0.000000000000000,0.000786924939352,0.003571428571404,2 +8584,8597,8599,8612,-0.169642857142809,0.068916464891136,-0.171428571428512,0.075544794188896,-0.167857142857105,0.074818401937197,-0.169642857142809,0.081446731234956,-0.000665859564045,-0.003571428571407,-0.012590799031474,-0.000000000000000,0.012469733656166,0.000000000000000,0.000786924939353,0.003571428571407,2 +8585,8598,8600,8613,-0.166071428571395,0.068250605327089,-0.167857142857105,0.074818401937197,-0.164285714285684,0.074092009685495,-0.166071428571395,0.080659806295602,-0.000665859564048,-0.003571428571421,-0.012469733656166,-0.000000000000000,0.012348668280858,0.000000000000000,0.000786924939356,0.003571428571421,2 +8586,8599,8601,8614,-0.162499999999982,0.067584745763043,-0.164285714285684,0.074092009685495,-0.160714285714279,0.073365617433796,-0.162499999999982,0.079872881356248,-0.000665859564045,-0.003571428571405,-0.012348668280858,-0.000000000000000,0.012227602905551,0.000000000000000,0.000786924939352,0.003571428571405,2 +8587,8600,8602,8615,-0.158928571428564,0.066918886198996,-0.160714285714279,0.073365617433796,-0.157142857142850,0.072639225182092,-0.158928571428565,0.079085956416893,-0.000665859564049,-0.003571428571429,-0.012227602905551,-0.000000000000000,0.012106537530243,0.000000000000000,0.000786924939358,0.003571428571429,2 +8588,8601,8603,8616,-0.155357142857136,0.066253026634947,-0.157142857142850,0.072639225182092,-0.153571428571423,0.071912832930389,-0.155357142857136,0.078299031477535,-0.000665859564049,-0.003571428571427,-0.012106537530243,-0.000000000000000,0.011985472154935,-0.000000000000000,0.000786924939357,0.003571428571427,2 +8589,8602,8617,10193,-0.151785714285711,0.065587167070898,-0.153571428571423,0.071912832930389,-0.151785714285711,0.077512106538179,-0.150000000000000,0.071186440678687,-0.000665859564048,-0.003571428571423,-0.011985472154935,0.000000000000000,0.000786924939356,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2278,8590,8605,8618,-0.200000000000000,0.094915254236471,-0.198214285714291,0.087742130749828,-0.196428571428583,0.094067796609462,-0.198214285714291,0.101240920096105,-0.013559322033930,-0.000000000000000,-0.000786924939355,-0.003571428571417,0.013438256658623,0.000000000000000,0.000907990314662,0.003571428571417,2 +8591,8604,8606,8619,-0.194642857142864,0.086955205810471,-0.196428571428583,0.094067796609462,-0.192857142857145,0.093220338982449,-0.194642857142864,0.100332929781440,-0.000786924939360,-0.003571428571438,-0.013438256658623,-0.000000000000000,0.013317191283316,0.000000000000000,0.000907990314667,0.003571428571438,2 +8592,8605,8607,8620,-0.191071428571419,0.086168280871110,-0.192857142857145,0.093220338982449,-0.189285714285694,0.092372881355432,-0.191071428571419,0.099424939466771,-0.000786924939362,-0.003571428571451,-0.013317191283316,-0.000000000000000,0.013196125908007,-0.000000000000000,0.000907990314671,0.003571428571451,2 +8593,8606,8608,8621,-0.187499999999963,0.085381355931746,-0.189285714285694,0.092372881355432,-0.185714285714231,0.091525423728413,-0.187499999999963,0.098516949152099,-0.000786924939365,-0.003571428571462,-0.013196125908007,0.000000000000000,0.013075060532699,0.000000000000000,0.000907990314673,0.003571428571462,2 +8594,8607,8609,8622,-0.183928571428507,0.084594430992383,-0.185714285714231,0.091525423728413,-0.182142857142783,0.090677966101397,-0.183928571428507,0.097608958837427,-0.000786924939362,-0.003571428571449,-0.013075060532699,-0.000000000000000,0.012953995157391,0.000000000000000,0.000907990314670,0.003571428571449,2 +8595,8608,8610,8623,-0.180357142857065,0.083807506053022,-0.182142857142783,0.090677966101397,-0.178571428571347,0.089830508474384,-0.180357142857065,0.096700968522759,-0.000786924939359,-0.003571428571436,-0.012953995157391,-0.000000000000000,0.012832929782083,0.000000000000000,0.000907990314667,0.003571428571436,2 +8596,8609,8611,8624,-0.176785714285631,0.083020581113664,-0.178571428571347,0.089830508474384,-0.174999999999916,0.088983050847372,-0.176785714285631,0.095792978208093,-0.000786924939358,-0.003571428571431,-0.012832929782083,-0.000000000000000,0.012711864406776,0.000000000000000,0.000907990314665,0.003571428571431,2 +8597,8610,8612,8625,-0.173214285714214,0.082233656174309,-0.174999999999916,0.088983050847372,-0.171428571428512,0.088135593220367,-0.173214285714214,0.094884987893431,-0.000786924939352,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031469,-0.000000000000000,0.000907990314659,0.003571428571404,2 +8598,8611,8613,8626,-0.169642857142809,0.081446731234956,-0.171428571428512,0.088135593220367,-0.167857142857105,0.087288135593361,-0.169642857142808,0.093976997578772,-0.000786924939353,-0.003571428571407,-0.012590799031469,0.000000000000000,0.012469733656162,0.000000000000000,0.000907990314660,0.003571428571407,2 +8599,8612,8614,8627,-0.166071428571395,0.080659806295602,-0.167857142857105,0.087288135593361,-0.164285714285684,0.086440677966351,-0.166071428571395,0.093069007264110,-0.000786924939356,-0.003571428571421,-0.012469733656162,-0.000000000000000,0.012348668280855,0.000000000000000,0.000907990314663,0.003571428571421,2 +8600,8613,8615,8628,-0.162499999999982,0.079872881356248,-0.164285714285684,0.086440677966351,-0.160714285714279,0.085593220339346,-0.162499999999982,0.092161016949450,-0.000786924939352,-0.003571428571405,-0.012348668280855,-0.000000000000000,0.012227602905549,-0.000000000000000,0.000907990314659,0.003571428571405,2 +8601,8614,8616,8629,-0.158928571428565,0.079085956416893,-0.160714285714279,0.085593220339346,-0.157142857142850,0.084745762712334,-0.158928571428564,0.091253026634788,-0.000786924939358,-0.003571428571429,-0.012227602905549,0.000000000000000,0.012106537530241,0.000000000000000,0.000907990314665,0.003571428571429,2 +8602,8615,8617,8630,-0.155357142857136,0.078299031477535,-0.157142857142850,0.084745762712334,-0.153571428571423,0.083898305085324,-0.155357142857136,0.090345036320123,-0.000786924939357,-0.003571428571427,-0.012106537530241,-0.000000000000000,0.011985472154934,0.000000000000000,0.000907990314665,0.003571428571427,2 +8603,8616,8631,10194,-0.151785714285711,0.077512106538179,-0.153571428571423,0.083898305085324,-0.151785714285711,0.089437046005459,-0.150000000000000,0.083050847458314,-0.000786924939356,-0.003571428571423,-0.011985472154934,-0.000000000000000,0.000907990314663,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2279,8604,8619,8632,-0.200000000000000,0.108474576270409,-0.198214285714291,0.101240920096105,-0.196428571428583,0.107506053268093,-0.198214285714291,0.114739709442397,-0.013559322033946,-0.000000000000000,-0.000907990314662,-0.003571428571417,0.013438256658638,0.000000000000000,0.001029055689970,0.003571428571417,2 +8605,8618,8620,8633,-0.194642857142864,0.100332929781440,-0.196428571428583,0.107506053268093,-0.192857142857145,0.106537530265771,-0.194642857142864,0.113710653752424,-0.000907990314667,-0.003571428571438,-0.013438256658638,-0.000000000000000,0.013317191283329,0.000000000000000,0.001029055689976,0.003571428571438,2 +8606,8619,8621,8634,-0.191071428571419,0.099424939466771,-0.192857142857145,0.106537530265771,-0.189285714285694,0.105569007263446,-0.191071428571419,0.112681598062446,-0.000907990314671,-0.003571428571451,-0.013317191283329,-0.000000000000000,0.013196125908020,0.000000000000000,0.001029055689980,0.003571428571451,2 +8607,8620,8622,8635,-0.187499999999963,0.098516949152099,-0.189285714285694,0.105569007263446,-0.185714285714231,0.104600484261117,-0.187499999999963,0.111652542372464,-0.000907990314673,-0.003571428571462,-0.013196125908020,-0.000000000000000,0.013075060532710,0.000000000000000,0.001029055689983,0.003571428571462,2 +8608,8621,8623,8636,-0.183928571428507,0.097608958837427,-0.185714285714231,0.104600484261117,-0.182142857142783,0.103631961258793,-0.183928571428507,0.110623486682483,-0.000907990314670,-0.003571428571449,-0.013075060532710,-0.000000000000000,0.012953995157401,0.000000000000000,0.001029055689979,0.003571428571449,2 +8609,8622,8624,8637,-0.180357142857065,0.096700968522759,-0.182142857142783,0.103631961258793,-0.178571428571347,0.102663438256472,-0.180357142857065,0.109594430992505,-0.000907990314667,-0.003571428571436,-0.012953995157401,-0.000000000000000,0.012832929782092,0.000000000000000,0.001029055689976,0.003571428571436,2 +8610,8623,8625,8638,-0.176785714285631,0.095792978208093,-0.178571428571347,0.102663438256472,-0.174999999999916,0.101694915254152,-0.176785714285631,0.108565375302531,-0.000907990314665,-0.003571428571431,-0.012832929782092,-0.000000000000000,0.012711864406783,0.000000000000000,0.001029055689974,0.003571428571431,2 +8611,8624,8626,8639,-0.173214285714214,0.094884987893431,-0.174999999999916,0.101694915254152,-0.171428571428512,0.100726392251839,-0.173214285714214,0.107536319612560,-0.000907990314659,-0.003571428571404,-0.012711864406783,-0.000000000000000,0.012590799031476,0.000000000000000,0.001029055689966,0.003571428571404,2 +8612,8625,8627,8640,-0.169642857142808,0.093976997578772,-0.171428571428512,0.100726392251839,-0.167857142857105,0.099757869249526,-0.169642857142809,0.106507263922594,-0.000907990314660,-0.003571428571407,-0.012590799031476,-0.000000000000000,0.012469733656168,0.000000000000000,0.001029055689967,0.003571428571407,2 +8613,8626,8628,8641,-0.166071428571395,0.093069007264110,-0.167857142857105,0.099757869249526,-0.164285714285684,0.098789346247209,-0.166071428571395,0.105478208232624,-0.000907990314663,-0.003571428571421,-0.012469733656168,-0.000000000000000,0.012348668280860,0.000000000000000,0.001029055689971,0.003571428571421,2 +8614,8627,8629,8642,-0.162499999999982,0.092161016949450,-0.164285714285684,0.098789346247209,-0.160714285714279,0.097820823244896,-0.162499999999982,0.104449152542655,-0.000907990314659,-0.003571428571405,-0.012348668280860,-0.000000000000000,0.012227602905552,0.000000000000000,0.001029055689967,0.003571428571405,2 +8615,8628,8630,8643,-0.158928571428564,0.091253026634788,-0.160714285714279,0.097820823244896,-0.157142857142850,0.096852300242577,-0.158928571428565,0.103420096852685,-0.000907990314665,-0.003571428571429,-0.012227602905552,-0.000000000000000,0.012106537530243,0.000000000000000,0.001029055689974,0.003571428571429,2 +8616,8629,8631,8644,-0.155357142857136,0.090345036320123,-0.157142857142850,0.096852300242577,-0.153571428571423,0.095883777240258,-0.155357142857136,0.102391041162712,-0.000907990314665,-0.003571428571427,-0.012106537530243,-0.000000000000000,0.011985472154935,0.000000000000000,0.001029055689973,0.003571428571427,2 +8617,8630,8645,10195,-0.151785714285711,0.089437046005459,-0.153571428571423,0.095883777240258,-0.151785714285711,0.101361985472740,-0.150000000000000,0.094915254237940,-0.000907990314663,-0.003571428571423,-0.011985472154935,-0.000000000000000,0.001029055689972,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2280,8618,8633,8646,-0.200000000000000,0.122033898304341,-0.198214285714291,0.114739709442397,-0.196428571428583,0.120944309926718,-0.198214285714291,0.128238498788663,-0.013559322033919,-0.000000000000000,-0.001029055689970,-0.003571428571417,0.013438256658613,0.000000000000000,0.001150121065276,0.003571428571417,2 +8619,8632,8634,8647,-0.194642857142864,0.113710653752424,-0.196428571428583,0.120944309926718,-0.192857142857145,0.119854721549088,-0.194642857142864,0.127088377723383,-0.001029055689976,-0.003571428571438,-0.013438256658613,-0.000000000000000,0.013317191283306,0.000000000000000,0.001150121065283,0.003571428571438,2 +8620,8633,8635,8648,-0.191071428571419,0.112681598062446,-0.192857142857145,0.119854721549088,-0.189285714285694,0.118765133171455,-0.191071428571419,0.125938256658098,-0.001029055689980,-0.003571428571451,-0.013317191283306,-0.000000000000000,0.013196125907998,0.000000000000000,0.001150121065287,0.003571428571451,2 +8621,8634,8636,8649,-0.187499999999963,0.111652542372464,-0.189285714285694,0.118765133171455,-0.185714285714231,0.117675544793818,-0.187499999999963,0.124788135592809,-0.001029055689983,-0.003571428571462,-0.013196125907998,-0.000000000000000,0.013075060532691,0.000000000000000,0.001150121065291,0.003571428571462,2 +8622,8635,8637,8650,-0.183928571428507,0.110623486682483,-0.185714285714231,0.117675544793818,-0.182142857142783,0.116585956416185,-0.183928571428507,0.123638014527520,-0.001029055689979,-0.003571428571449,-0.013075060532691,-0.000000000000000,0.012953995157383,0.000000000000000,0.001150121065287,0.003571428571449,2 +8623,8636,8638,8651,-0.180357142857065,0.109594430992505,-0.182142857142783,0.116585956416185,-0.178571428571347,0.115496368038556,-0.180357142857065,0.122487893462235,-0.001029055689976,-0.003571428571436,-0.012953995157383,-0.000000000000000,0.012832929782077,-0.000000000000000,0.001150121065282,0.003571428571436,2 +8624,8637,8639,8652,-0.176785714285631,0.108565375302531,-0.178571428571347,0.115496368038556,-0.174999999999916,0.114406779660928,-0.176785714285631,0.121337772396954,-0.001029055689974,-0.003571428571431,-0.012832929782077,0.000000000000000,0.012711864406770,0.000000000000000,0.001150121065281,0.003571428571431,2 +8625,8638,8640,8653,-0.173214285714214,0.107536319612560,-0.174999999999916,0.114406779660928,-0.171428571428512,0.113317191283309,-0.173214285714214,0.120187651331677,-0.001029055689966,-0.003571428571404,-0.012711864406770,-0.000000000000000,0.012590799031464,0.000000000000000,0.001150121065272,0.003571428571404,2 +8626,8639,8641,8654,-0.169642857142809,0.106507263922594,-0.171428571428512,0.113317191283309,-0.167857142857105,0.112227602905689,-0.169642857142809,0.119037530266405,-0.001029055689967,-0.003571428571407,-0.012590799031464,-0.000000000000000,0.012469733656158,0.000000000000000,0.001150121065273,0.003571428571407,2 +8627,8640,8642,8655,-0.166071428571395,0.105478208232624,-0.167857142857105,0.112227602905689,-0.164285714285684,0.111138014528065,-0.166071428571395,0.117887409201129,-0.001029055689971,-0.003571428571421,-0.012469733656158,-0.000000000000000,0.012348668280852,0.000000000000000,0.001150121065277,0.003571428571421,2 +8628,8641,8643,8656,-0.162499999999982,0.104449152542655,-0.164285714285684,0.111138014528065,-0.160714285714279,0.110048426150445,-0.162499999999982,0.116737288135855,-0.001029055689967,-0.003571428571405,-0.012348668280852,-0.000000000000000,0.012227602905546,0.000000000000000,0.001150121065272,0.003571428571405,2 +8629,8642,8644,8657,-0.158928571428565,0.103420096852685,-0.160714285714279,0.110048426150445,-0.157142857142850,0.108958837772818,-0.158928571428565,0.115587167070578,-0.001029055689974,-0.003571428571429,-0.012227602905546,-0.000000000000000,0.012106537530240,0.000000000000000,0.001150121065280,0.003571428571429,2 +8630,8643,8645,8658,-0.155357142857136,0.102391041162712,-0.157142857142850,0.108958837772818,-0.153571428571423,0.107869249395192,-0.155357142857136,0.114437046005298,-0.001029055689973,-0.003571428571427,-0.012106537530240,-0.000000000000000,0.011985472154933,0.000000000000000,0.001150121065280,0.003571428571427,2 +8631,8644,8659,10196,-0.151785714285711,0.101361985472740,-0.153571428571423,0.107869249395192,-0.151785714285711,0.113286924940019,-0.150000000000000,0.106779661017567,-0.001029055689972,-0.003571428571423,-0.011985472154933,-0.000000000000000,0.001150121065278,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2281,8632,8647,8660,-0.200000000000000,0.135593220338273,-0.198214285714291,0.128238498788663,-0.196428571428583,0.134382566585343,-0.198214285714291,0.141737288134954,-0.013559322033945,-0.000000000000000,-0.001150121065276,-0.003571428571417,0.013438256658637,0.000000000000000,0.001271186440584,0.003571428571417,2 +8633,8646,8648,8661,-0.194642857142864,0.127088377723383,-0.196428571428583,0.134382566585343,-0.192857142857145,0.133171912832405,-0.194642857142864,0.140466101694366,-0.001150121065283,-0.003571428571438,-0.013438256658637,-0.000000000000000,0.013317191283329,0.000000000000000,0.001271186440592,0.003571428571438,2 +8634,8647,8649,8662,-0.191071428571419,0.125938256658098,-0.192857142857145,0.133171912832405,-0.189285714285694,0.131961259079464,-0.191071428571419,0.139194915253772,-0.001150121065287,-0.003571428571451,-0.013317191283329,-0.000000000000000,0.013196125908019,0.000000000000000,0.001271186440597,0.003571428571451,2 +8635,8648,8650,8663,-0.187499999999963,0.124788135592809,-0.189285714285694,0.131961259079464,-0.185714285714231,0.130750605326518,-0.187499999999963,0.137923728813173,-0.001150121065291,-0.003571428571462,-0.013196125908019,-0.000000000000000,0.013075060532710,0.000000000000000,0.001271186440600,0.003571428571462,2 +8636,8649,8651,8664,-0.183928571428507,0.123638014527520,-0.185714285714231,0.130750605326518,-0.182142857142783,0.129539951573577,-0.183928571428507,0.136652542372575,-0.001150121065287,-0.003571428571449,-0.013075060532710,-0.000000000000000,0.012953995157401,0.000000000000000,0.001271186440596,0.003571428571449,2 +8637,8650,8652,8665,-0.180357142857065,0.122487893462235,-0.182142857142783,0.129539951573577,-0.178571428571347,0.128329297820640,-0.180357142857065,0.135381355931982,-0.001150121065282,-0.003571428571436,-0.012953995157401,-0.000000000000000,0.012832929782092,0.000000000000000,0.001271186440591,0.003571428571436,2 +8638,8651,8653,8666,-0.176785714285631,0.121337772396954,-0.178571428571347,0.128329297820640,-0.174999999999916,0.127118644067705,-0.176785714285631,0.134110169491391,-0.001150121065281,-0.003571428571431,-0.012832929782092,-0.000000000000000,0.012711864406783,0.000000000000000,0.001271186440589,0.003571428571431,2 +8639,8652,8654,8667,-0.173214285714214,0.120187651331677,-0.174999999999916,0.127118644067705,-0.171428571428512,0.125907990314779,-0.173214285714214,0.132838983050807,-0.001150121065272,-0.003571428571404,-0.012711864406783,-0.000000000000000,0.012590799031476,0.000000000000000,0.001271186440580,0.003571428571404,2 +8640,8653,8655,8668,-0.169642857142809,0.119037530266405,-0.171428571428512,0.125907990314779,-0.167857142857105,0.124697336561852,-0.169642857142809,0.131567796610227,-0.001150121065273,-0.003571428571407,-0.012590799031476,-0.000000000000000,0.012469733656168,0.000000000000000,0.001271186440581,0.003571428571407,2 +8641,8654,8656,8669,-0.166071428571395,0.117887409201129,-0.167857142857105,0.124697336561852,-0.164285714285684,0.123486682808921,-0.166071428571395,0.130296610169643,-0.001150121065277,-0.003571428571421,-0.012469733656168,-0.000000000000000,0.012348668280860,0.000000000000000,0.001271186440586,0.003571428571421,2 +8642,8655,8657,8670,-0.162499999999982,0.116737288135855,-0.164285714285684,0.123486682808921,-0.160714285714279,0.122276029055994,-0.162499999999982,0.129025423729060,-0.001150121065272,-0.003571428571405,-0.012348668280860,-0.000000000000000,0.012227602905552,-0.000000000000000,0.001271186440580,0.003571428571405,2 +8643,8656,8658,8671,-0.158928571428565,0.115587167070578,-0.160714285714279,0.122276029055994,-0.157142857142850,0.121065375303060,-0.158928571428564,0.127754237288476,-0.001150121065280,-0.003571428571429,-0.012227602905552,0.000000000000000,0.012106537530243,0.000000000000000,0.001271186440589,0.003571428571429,2 +8644,8657,8659,8672,-0.155357142857136,0.114437046005298,-0.157142857142850,0.121065375303060,-0.153571428571423,0.119854721550126,-0.155357142857136,0.126483050847887,-0.001150121065280,-0.003571428571427,-0.012106537530243,-0.000000000000000,0.011985472154935,0.000000000000000,0.001271186440588,0.003571428571427,2 +8645,8658,8673,10197,-0.151785714285711,0.113286924940019,-0.153571428571423,0.119854721550126,-0.151785714285711,0.125211864407300,-0.150000000000000,0.118644067797194,-0.001150121065278,-0.003571428571423,-0.011985472154935,-0.000000000000000,0.001271186440586,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2282,8646,8661,8674,-0.200000000000000,0.149152542372213,-0.198214285714291,0.141737288134954,-0.196428571428583,0.147820823243975,-0.198214285714291,0.155236077481234,-0.013559322033933,-0.000000000000000,-0.001271186440584,-0.003571428571417,0.013438256658627,0.000000000000000,0.001392251815891,0.003571428571417,2 +8647,8660,8662,8675,-0.194642857142864,0.140466101694366,-0.196428571428583,0.147820823243975,-0.192857142857145,0.146489104115730,-0.194642857142864,0.153843825665339,-0.001271186440592,-0.003571428571438,-0.013438256658627,-0.000000000000000,0.013317191283319,0.000000000000000,0.001392251815899,0.003571428571438,2 +8648,8661,8663,8676,-0.191071428571419,0.139194915253772,-0.192857142857145,0.146489104115730,-0.189285714285694,0.145157384987479,-0.191071428571419,0.152451573849437,-0.001271186440597,-0.003571428571451,-0.013317191283319,-0.000000000000000,0.013196125908012,-0.000000000000000,0.001392251815904,0.003571428571451,2 +8649,8662,8664,8677,-0.187499999999963,0.137923728813173,-0.189285714285694,0.145157384987479,-0.185714285714231,0.143825665859225,-0.187499999999963,0.151059322033531,-0.001271186440600,-0.003571428571462,-0.013196125908012,0.000000000000000,0.013075060532704,0.000000000000000,0.001392251815909,0.003571428571462,2 +8650,8663,8665,8678,-0.183928571428507,0.136652542372575,-0.185714285714231,0.143825665859225,-0.182142857142783,0.142493946730975,-0.183928571428507,0.149667070217625,-0.001271186440596,-0.003571428571449,-0.013075060532704,-0.000000000000000,0.012953995157396,0.000000000000000,0.001392251815903,0.003571428571449,2 +8651,8664,8666,8679,-0.180357142857065,0.135381355931982,-0.182142857142783,0.142493946730975,-0.178571428571347,0.141162227602731,-0.180357142857065,0.148274818401724,-0.001271186440591,-0.003571428571436,-0.012953995157396,-0.000000000000000,0.012832929782089,0.000000000000000,0.001392251815898,0.003571428571436,2 +8652,8665,8667,8680,-0.176785714285631,0.134110169491391,-0.178571428571347,0.141162227602731,-0.174999999999916,0.139830508474488,-0.176785714285631,0.146882566585827,-0.001271186440589,-0.003571428571431,-0.012832929782089,-0.000000000000000,0.012711864406782,0.000000000000000,0.001392251815896,0.003571428571431,2 +8653,8666,8668,8681,-0.173214285714214,0.132838983050807,-0.174999999999916,0.139830508474488,-0.171428571428512,0.138498789346255,-0.173214285714214,0.145490314769936,-0.001271186440580,-0.003571428571404,-0.012711864406782,-0.000000000000000,0.012590799031476,-0.000000000000000,0.001392251815886,0.003571428571404,2 +8654,8667,8669,8682,-0.169642857142809,0.131567796610227,-0.171428571428512,0.138498789346255,-0.167857142857105,0.137167070218021,-0.169642857142808,0.144098062954050,-0.001271186440581,-0.003571428571407,-0.012590799031476,0.000000000000000,0.012469733656170,0.000000000000000,0.001392251815887,0.003571428571407,2 +8655,8668,8670,8683,-0.166071428571395,0.130296610169643,-0.167857142857105,0.137167070218021,-0.164285714285684,0.135835351089782,-0.166071428571395,0.142705811138160,-0.001271186440586,-0.003571428571421,-0.012469733656170,-0.000000000000000,0.012348668280864,0.000000000000000,0.001392251815892,0.003571428571421,2 +8656,8669,8671,8684,-0.162499999999982,0.129025423729060,-0.164285714285684,0.135835351089782,-0.160714285714279,0.134503631961549,-0.162499999999982,0.141313559322271,-0.001271186440580,-0.003571428571405,-0.012348668280864,-0.000000000000000,0.012227602905558,0.000000000000000,0.001392251815886,0.003571428571405,2 +8657,8670,8672,8685,-0.158928571428564,0.127754237288476,-0.160714285714279,0.134503631961549,-0.157142857142850,0.133171912833307,-0.158928571428565,0.139921307506380,-0.001271186440589,-0.003571428571429,-0.012227602905558,-0.000000000000000,0.012106537530251,0.000000000000000,0.001392251815896,0.003571428571429,2 +8658,8671,8673,8686,-0.155357142857136,0.126483050847887,-0.157142857142850,0.133171912833307,-0.153571428571423,0.131840193705065,-0.155357142857136,0.138529055690485,-0.001271186440588,-0.003571428571427,-0.012106537530251,-0.000000000000000,0.011985472154944,-0.000000000000000,0.001392251815895,0.003571428571427,2 +8659,8672,8687,10198,-0.151785714285711,0.125211864407300,-0.153571428571423,0.131840193705065,-0.151785714285711,0.137136803874591,-0.150000000000000,0.130508474576826,-0.001271186440586,-0.003571428571423,-0.011985472154944,0.000000000000000,0.001392251815893,0.003571428571423,0.011864406779637,-0.000000000000000,2 +2283,8660,8675,8688,-0.200000000000000,0.162711864406145,-0.198214285714291,0.155236077481234,-0.196428571428583,0.161259079902600,-0.198214285714291,0.168734866827511,-0.013559322033931,-0.000000000000000,-0.001392251815891,-0.003571428571417,0.013438256658624,-0.000000000000000,0.001513317191198,0.003571428571417,2 +8661,8674,8676,8689,-0.194642857142864,0.153843825665339,-0.196428571428583,0.161259079902600,-0.192857142857145,0.159806295399047,-0.194642857142864,0.167221549636309,-0.001392251815899,-0.003571428571438,-0.013438256658624,0.000000000000000,0.013317191283316,0.000000000000000,0.001513317191207,0.003571428571438,2 +8662,8675,8677,8690,-0.191071428571419,0.152451573849437,-0.192857142857145,0.159806295399047,-0.189285714285694,0.158353510895489,-0.191071428571419,0.165708232445099,-0.001392251815904,-0.003571428571451,-0.013317191283316,-0.000000000000000,0.013196125908008,0.000000000000000,0.001513317191212,0.003571428571451,2 +8663,8676,8678,8691,-0.187499999999963,0.151059322033531,-0.189285714285694,0.158353510895489,-0.185714285714231,0.156900726391926,-0.187499999999963,0.164194915253885,-0.001392251815909,-0.003571428571462,-0.013196125908008,-0.000000000000000,0.013075060532699,0.000000000000000,0.001513317191217,0.003571428571462,2 +8664,8677,8679,8692,-0.183928571428507,0.149667070217625,-0.185714285714231,0.156900726391926,-0.182142857142783,0.155447941888369,-0.183928571428507,0.162681598062670,-0.001392251815903,-0.003571428571449,-0.013075060532699,-0.000000000000000,0.012953995157391,0.000000000000000,0.001513317191211,0.003571428571449,2 +8665,8678,8680,8693,-0.180357142857065,0.148274818401724,-0.182142857142783,0.155447941888369,-0.178571428571347,0.153995157384817,-0.180357142857065,0.161168280871462,-0.001392251815898,-0.003571428571436,-0.012953995157391,-0.000000000000000,0.012832929782084,-0.000000000000000,0.001513317191206,0.003571428571436,2 +8666,8679,8681,8694,-0.176785714285631,0.146882566585827,-0.178571428571347,0.153995157384817,-0.174999999999916,0.152542372881267,-0.176785714285631,0.159654963680257,-0.001392251815896,-0.003571428571431,-0.012832929782084,0.000000000000000,0.012711864406776,0.000000000000000,0.001513317191204,0.003571428571431,2 +8667,8680,8682,8695,-0.173214285714214,0.145490314769936,-0.174999999999916,0.152542372881267,-0.171428571428512,0.151089588377728,-0.173214285714214,0.158141646489059,-0.001392251815886,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031470,0.000000000000000,0.001513317191192,0.003571428571404,2 +8668,8681,8683,8696,-0.169642857142808,0.144098062954050,-0.171428571428512,0.151089588377728,-0.167857142857105,0.149636803874188,-0.169642857142808,0.156628329297866,-0.001392251815887,-0.003571428571407,-0.012590799031470,-0.000000000000000,0.012469733656163,0.000000000000000,0.001513317191194,0.003571428571407,2 +8669,8682,8684,8697,-0.166071428571395,0.142705811138160,-0.167857142857105,0.149636803874188,-0.164285714285684,0.148184019370642,-0.166071428571395,0.155115012106669,-0.001392251815892,-0.003571428571421,-0.012469733656163,-0.000000000000000,0.012348668280856,0.000000000000000,0.001513317191199,0.003571428571421,2 +8670,8683,8685,8698,-0.162499999999982,0.141313559322271,-0.164285714285684,0.148184019370642,-0.160714285714279,0.146731234867102,-0.162499999999982,0.153601694915473,-0.001392251815886,-0.003571428571405,-0.012348668280856,-0.000000000000000,0.012227602905549,0.000000000000000,0.001513317191193,0.003571428571405,2 +8671,8684,8686,8699,-0.158928571428565,0.139921307506380,-0.160714285714279,0.146731234867102,-0.157142857142850,0.145278450363553,-0.158928571428565,0.152088377724275,-0.001392251815896,-0.003571428571429,-0.012227602905549,-0.000000000000000,0.012106537530242,0.000000000000000,0.001513317191203,0.003571428571429,2 +8672,8685,8687,8700,-0.155357142857136,0.138529055690485,-0.157142857142850,0.145278450363553,-0.153571428571423,0.143825665860004,-0.155357142857136,0.150575060533073,-0.001392251815895,-0.003571428571427,-0.012106537530242,-0.000000000000000,0.011985472154934,0.000000000000000,0.001513317191202,0.003571428571427,2 +8673,8686,8701,10199,-0.151785714285711,0.137136803874591,-0.153571428571423,0.143825665860004,-0.151785714285711,0.149061743341871,-0.150000000000000,0.142372881356458,-0.001392251815893,-0.003571428571423,-0.011985472154934,-0.000000000000000,0.001513317191200,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2284,8674,8689,8702,-0.200000000000000,0.176271186440084,-0.198214285714291,0.168734866827511,-0.196428571428583,0.174697336561232,-0.198214285714291,0.182233656173805,-0.013559322033947,-0.000000000000000,-0.001513317191198,-0.003571428571417,0.013438256658639,0.000000000000000,0.001634382566506,0.003571428571417,2 +8675,8688,8690,8703,-0.194642857142864,0.167221549636309,-0.196428571428583,0.174697336561232,-0.192857142857145,0.173123486682371,-0.194642857142864,0.180599273607294,-0.001513317191207,-0.003571428571438,-0.013438256658639,-0.000000000000000,0.013317191283330,0.000000000000000,0.001634382566516,0.003571428571438,2 +8676,8689,8691,8704,-0.191071428571419,0.165708232445099,-0.192857142857145,0.173123486682371,-0.189285714285694,0.171549636803504,-0.191071428571419,0.178964891040775,-0.001513317191212,-0.003571428571451,-0.013317191283330,-0.000000000000000,0.013196125908021,0.000000000000000,0.001634382566522,0.003571428571451,2 +8677,8690,8692,8705,-0.187499999999963,0.164194915253885,-0.189285714285694,0.171549636803504,-0.185714285714231,0.169975786924632,-0.187499999999963,0.177330508474251,-0.001513317191217,-0.003571428571462,-0.013196125908021,-0.000000000000000,0.013075060532711,0.000000000000000,0.001634382566527,0.003571428571462,2 +8678,8691,8693,8706,-0.183928571428507,0.162681598062670,-0.185714285714231,0.169975786924632,-0.182142857142783,0.168401937045766,-0.183928571428507,0.175696125907727,-0.001513317191211,-0.003571428571449,-0.013075060532711,-0.000000000000000,0.012953995157402,0.000000000000000,0.001634382566521,0.003571428571449,2 +8679,8692,8694,8707,-0.180357142857065,0.161168280871462,-0.182142857142783,0.168401937045766,-0.178571428571347,0.166828087166905,-0.180357142857065,0.174061743341209,-0.001513317191206,-0.003571428571436,-0.012953995157402,-0.000000000000000,0.012832929782093,0.000000000000000,0.001634382566515,0.003571428571436,2 +8680,8693,8695,8708,-0.176785714285631,0.159654963680257,-0.178571428571347,0.166828087166905,-0.174999999999916,0.165254237288047,-0.176785714285631,0.172427360774696,-0.001513317191204,-0.003571428571431,-0.012832929782093,-0.000000000000000,0.012711864406784,0.000000000000000,0.001634382566513,0.003571428571431,2 +8681,8694,8696,8709,-0.173214285714214,0.158141646489059,-0.174999999999916,0.165254237288047,-0.171428571428512,0.163680387409201,-0.173214285714214,0.170792978208189,-0.001513317191192,-0.003571428571404,-0.012711864406784,-0.000000000000000,0.012590799031477,0.000000000000000,0.001634382566500,0.003571428571404,2 +8682,8695,8697,8710,-0.169642857142808,0.156628329297866,-0.171428571428512,0.163680387409201,-0.167857142857105,0.162106537530353,-0.169642857142808,0.169158595641688,-0.001513317191194,-0.003571428571407,-0.012590799031477,-0.000000000000000,0.012469733656169,0.000000000000000,0.001634382566502,0.003571428571407,2 +8683,8696,8698,8711,-0.166071428571395,0.155115012106669,-0.167857142857105,0.162106537530353,-0.164285714285684,0.160532687651500,-0.166071428571395,0.167524213075184,-0.001513317191199,-0.003571428571421,-0.012469733656169,-0.000000000000000,0.012348668280860,0.000000000000000,0.001634382566508,0.003571428571421,2 +8684,8697,8699,8712,-0.162499999999982,0.153601694915473,-0.164285714285684,0.160532687651500,-0.160714285714279,0.158958837772653,-0.162499999999982,0.165889830508679,-0.001513317191193,-0.003571428571405,-0.012348668280860,-0.000000000000000,0.012227602905552,-0.000000000000000,0.001634382566501,0.003571428571405,2 +8685,8698,8700,8713,-0.158928571428565,0.152088377724275,-0.160714285714279,0.158958837772653,-0.157142857142850,0.157384987893795,-0.158928571428564,0.164255447942173,-0.001513317191203,-0.003571428571429,-0.012227602905552,0.000000000000000,0.012106537530244,0.000000000000000,0.001634382566512,0.003571428571429,2 +8686,8699,8701,8714,-0.155357142857136,0.150575060533073,-0.157142857142850,0.157384987893795,-0.153571428571423,0.155811138014939,-0.155357142857136,0.162621065375662,-0.001513317191202,-0.003571428571427,-0.012106537530244,-0.000000000000000,0.011985472154935,0.000000000000000,0.001634382566511,0.003571428571427,2 +8687,8700,8715,10200,-0.151785714285711,0.149061743341871,-0.153571428571423,0.155811138014939,-0.151785714285711,0.160986682809152,-0.150000000000000,0.154237288136084,-0.001513317191200,-0.003571428571423,-0.011985472154935,-0.000000000000000,0.001634382566509,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2285,8688,8703,8716,-0.200000000000000,0.189830508474016,-0.198214285714291,0.182233656173805,-0.196428571428583,0.188135593219857,-0.198214285714291,0.195732445520069,-0.013559322033917,-0.000000000000000,-0.001634382566506,-0.003571428571417,0.013438256658611,0.000000000000000,0.001755447941812,0.003571428571417,2 +8689,8702,8704,8717,-0.194642857142864,0.180599273607294,-0.196428571428583,0.188135593219857,-0.192857142857145,0.186440677965688,-0.194642857142864,0.193976997578251,-0.001634382566516,-0.003571428571438,-0.013438256658611,-0.000000000000000,0.013317191283304,0.000000000000000,0.001755447941823,0.003571428571438,2 +8690,8703,8705,8718,-0.191071428571419,0.178964891040775,-0.192857142857145,0.186440677965688,-0.189285714285694,0.184745762711513,-0.191071428571419,0.192221549636425,-0.001634382566522,-0.003571428571451,-0.013317191283304,-0.000000000000000,0.013196125907997,0.000000000000000,0.001755447941829,0.003571428571451,2 +8691,8704,8706,8719,-0.187499999999963,0.177330508474251,-0.189285714285694,0.184745762711513,-0.185714285714231,0.183050847457332,-0.187499999999963,0.190466101694594,-0.001634382566527,-0.003571428571462,-0.013196125907997,-0.000000000000000,0.013075060532689,0.000000000000000,0.001755447941834,0.003571428571462,2 +8692,8705,8707,8720,-0.183928571428507,0.175696125907727,-0.185714285714231,0.183050847457332,-0.182142857142783,0.181355932203158,-0.183928571428507,0.188710653752763,-0.001634382566521,-0.003571428571449,-0.013075060532689,-0.000000000000000,0.012953995157382,0.000000000000000,0.001755447941828,0.003571428571449,2 +8693,8706,8708,8721,-0.180357142857065,0.174061743341209,-0.182142857142783,0.181355932203158,-0.178571428571347,0.179661016948990,-0.180357142857065,0.186955205810938,-0.001634382566515,-0.003571428571436,-0.012953995157382,-0.000000000000000,0.012832929782075,0.000000000000000,0.001755447941822,0.003571428571436,2 +8694,8707,8709,8722,-0.176785714285631,0.172427360774696,-0.178571428571347,0.179661016948990,-0.174999999999916,0.177966101694824,-0.176785714285631,0.185199757869118,-0.001634382566513,-0.003571428571431,-0.012832929782075,-0.000000000000000,0.012711864406769,0.000000000000000,0.001755447941819,0.003571428571431,2 +8695,8708,8710,8723,-0.173214285714214,0.170792978208189,-0.174999999999916,0.177966101694824,-0.171428571428512,0.176271186440671,-0.173214285714214,0.183444309927305,-0.001634382566500,-0.003571428571404,-0.012711864406769,-0.000000000000000,0.012590799031463,0.000000000000000,0.001755447941806,0.003571428571404,2 +8696,8709,8711,8724,-0.169642857142808,0.169158595641688,-0.171428571428512,0.176271186440671,-0.167857142857105,0.174576271186516,-0.169642857142809,0.181688861985499,-0.001634382566502,-0.003571428571407,-0.012590799031463,-0.000000000000000,0.012469733656158,0.000000000000000,0.001755447941807,0.003571428571407,2 +8697,8710,8712,8725,-0.166071428571395,0.167524213075184,-0.167857142857105,0.174576271186516,-0.164285714285684,0.172881355932355,-0.166071428571395,0.179933414043688,-0.001634382566508,-0.003571428571421,-0.012469733656158,-0.000000000000000,0.012348668280851,0.000000000000000,0.001755447941814,0.003571428571421,2 +8698,8711,8713,8726,-0.162499999999982,0.165889830508679,-0.164285714285684,0.172881355932355,-0.160714285714279,0.171186440678202,-0.162499999999982,0.178177966101878,-0.001634382566501,-0.003571428571405,-0.012348668280851,-0.000000000000000,0.012227602905546,0.000000000000000,0.001755447941806,0.003571428571405,2 +8699,8712,8714,8727,-0.158928571428564,0.164255447942173,-0.160714285714279,0.171186440678202,-0.157142857142850,0.169491525424037,-0.158928571428565,0.176422518160066,-0.001634382566512,-0.003571428571429,-0.012227602905546,-0.000000000000000,0.012106537530239,0.000000000000000,0.001755447941818,0.003571428571429,2 +8700,8713,8715,8728,-0.155357142857136,0.162621065375662,-0.157142857142850,0.169491525424037,-0.153571428571423,0.167796610169873,-0.155357142857136,0.174667070218248,-0.001634382566511,-0.003571428571427,-0.012106537530239,-0.000000000000000,0.011985472154933,0.000000000000000,0.001755447941817,0.003571428571427,2 +8701,8714,8729,10201,-0.151785714285711,0.160986682809152,-0.153571428571423,0.167796610169873,-0.151785714285711,0.172911622276432,-0.150000000000000,0.166101694915711,-0.001634382566509,-0.003571428571423,-0.011985472154933,-0.000000000000000,0.001755447941815,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2286,8702,8717,8730,-0.200000000000000,0.203389830507945,-0.198214285714291,0.195732445520069,-0.196428571428583,0.201573849878479,-0.198214285714291,0.209231234866355,-0.013559322033940,-0.000000000000000,-0.001755447941812,-0.003571428571417,0.013438256658632,0.000000000000000,0.001876513317120,0.003571428571417,2 +8703,8716,8718,8731,-0.194642857142864,0.193976997578251,-0.196428571428583,0.201573849878479,-0.192857142857145,0.199757869249002,-0.194642857142864,0.207354721549229,-0.001755447941823,-0.003571428571438,-0.013438256658632,-0.000000000000000,0.013317191283324,0.000000000000000,0.001876513317131,0.003571428571438,2 +8704,8717,8719,8732,-0.191071428571419,0.192221549636425,-0.192857142857145,0.199757869249002,-0.189285714285694,0.197941888619519,-0.191071428571419,0.205478208232095,-0.001755447941829,-0.003571428571451,-0.013317191283324,-0.000000000000000,0.013196125908015,0.000000000000000,0.001876513317138,0.003571428571451,2 +8705,8718,8720,8733,-0.187499999999963,0.190466101694594,-0.189285714285694,0.197941888619519,-0.185714285714231,0.196125907990029,-0.187499999999963,0.203601694914954,-0.001755447941834,-0.003571428571462,-0.013196125908015,-0.000000000000000,0.013075060532706,0.000000000000000,0.001876513317144,0.003571428571462,2 +8706,8719,8721,8734,-0.183928571428507,0.188710653752763,-0.185714285714231,0.196125907990029,-0.182142857142783,0.194309927360547,-0.183928571428507,0.201725181597814,-0.001755447941828,-0.003571428571449,-0.013075060532706,-0.000000000000000,0.012953995157397,0.000000000000000,0.001876513317137,0.003571428571449,2 +8707,8720,8722,8735,-0.180357142857065,0.186955205810938,-0.182142857142783,0.194309927360547,-0.178571428571347,0.192493946731072,-0.180357142857065,0.199848668280681,-0.001755447941822,-0.003571428571436,-0.012953995157397,-0.000000000000000,0.012832929782089,-0.000000000000000,0.001876513317130,0.003571428571436,2 +8708,8721,8723,8736,-0.176785714285631,0.185199757869118,-0.178571428571347,0.192493946731072,-0.174999999999916,0.190677966101598,-0.176785714285631,0.197972154963552,-0.001755447941819,-0.003571428571431,-0.012832929782089,0.000000000000000,0.012711864406781,0.000000000000000,0.001876513317127,0.003571428571431,2 +8709,8722,8724,8737,-0.173214285714214,0.183444309927305,-0.174999999999916,0.190677966101598,-0.171428571428512,0.188861985472139,-0.173214285714214,0.196095641646432,-0.001755447941806,-0.003571428571404,-0.012711864406781,-0.000000000000000,0.012590799031473,0.000000000000000,0.001876513317113,0.003571428571404,2 +8710,8723,8725,8738,-0.169642857142809,0.181688861985499,-0.171428571428512,0.188861985472139,-0.167857142857105,0.187046004842678,-0.169642857142809,0.194219128329318,-0.001755447941807,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656166,0.000000000000000,0.001876513317115,0.003571428571407,2 +8711,8724,8726,8739,-0.166071428571395,0.179933414043688,-0.167857142857105,0.187046004842678,-0.164285714285684,0.185230024213210,-0.166071428571395,0.192342615012200,-0.001755447941814,-0.003571428571421,-0.012469733656166,-0.000000000000000,0.012348668280858,0.000000000000000,0.001876513317122,0.003571428571421,2 +8712,8725,8727,8740,-0.162499999999982,0.178177966101878,-0.164285714285684,0.185230024213210,-0.160714285714279,0.183414043583750,-0.162499999999982,0.190466101695082,-0.001755447941806,-0.003571428571405,-0.012348668280858,-0.000000000000000,0.012227602905551,0.000000000000000,0.001876513317114,0.003571428571405,2 +8713,8726,8728,8741,-0.158928571428565,0.176422518160066,-0.160714285714279,0.183414043583750,-0.157142857142850,0.181598062954278,-0.158928571428565,0.188589588377962,-0.001755447941818,-0.003571428571429,-0.012227602905551,-0.000000000000000,0.012106537530243,0.000000000000000,0.001876513317126,0.003571428571429,2 +8714,8727,8729,8742,-0.155357142857136,0.174667070218248,-0.157142857142850,0.181598062954278,-0.153571428571423,0.179782082324807,-0.155357142857136,0.186713075060837,-0.001755447941817,-0.003571428571427,-0.012106537530243,-0.000000000000000,0.011985472154935,0.000000000000000,0.001876513317125,0.003571428571427,2 +8715,8728,8743,10202,-0.151785714285711,0.172911622276432,-0.153571428571423,0.179782082324807,-0.151785714285711,0.184836561743712,-0.150000000000000,0.177966101695338,-0.001755447941815,-0.003571428571423,-0.011985472154935,-0.000000000000000,0.001876513317123,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2287,8716,8731,8744,-0.200000000000000,0.216949152541877,-0.198214285714291,0.209231234866355,-0.196428571428583,0.215012106537104,-0.198214285714291,0.222730024212626,-0.013559322033924,-0.000000000000000,-0.001876513317120,-0.003571428571417,0.013438256658617,0.000000000000000,0.001997578692427,0.003571428571417,2 +8717,8730,8732,8745,-0.194642857142864,0.207354721549229,-0.196428571428583,0.215012106537104,-0.192857142857145,0.213075060532319,-0.194642857142864,0.220732445520193,-0.001876513317131,-0.003571428571438,-0.013438256658617,-0.000000000000000,0.013317191283310,0.000000000000000,0.001997578692438,0.003571428571438,2 +8718,8731,8733,8746,-0.191071428571419,0.205478208232095,-0.192857142857145,0.213075060532319,-0.189285714285694,0.211138014527527,-0.191071428571419,0.218734866827751,-0.001876513317138,-0.003571428571451,-0.013317191283310,-0.000000000000000,0.013196125908002,0.000000000000000,0.001997578692446,0.003571428571451,2 +8719,8732,8734,8747,-0.187499999999963,0.203601694914954,-0.189285714285694,0.211138014527527,-0.185714285714231,0.209200968522730,-0.187499999999963,0.216737288135303,-0.001876513317144,-0.003571428571462,-0.013196125908002,-0.000000000000000,0.013075060532694,0.000000000000000,0.001997578692452,0.003571428571462,2 +8720,8733,8735,8748,-0.183928571428507,0.201725181597814,-0.185714285714231,0.209200968522730,-0.182142857142783,0.207263922517939,-0.183928571428507,0.214739709442855,-0.001876513317137,-0.003571428571449,-0.013075060532694,-0.000000000000000,0.012953995157387,-0.000000000000000,0.001997578692444,0.003571428571449,2 +8721,8734,8736,8749,-0.180357142857065,0.199848668280681,-0.182142857142783,0.207263922517939,-0.178571428571347,0.205326876513156,-0.180357142857065,0.212742130750414,-0.001876513317130,-0.003571428571436,-0.012953995157387,0.000000000000000,0.012832929782080,0.000000000000000,0.001997578692437,0.003571428571436,2 +8722,8735,8737,8750,-0.176785714285631,0.197972154963552,-0.178571428571347,0.205326876513156,-0.174999999999916,0.203389830508375,-0.176785714285631,0.210744552057978,-0.001876513317127,-0.003571428571431,-0.012832929782080,-0.000000000000000,0.012711864406772,0.000000000000000,0.001997578692434,0.003571428571431,2 +8723,8736,8738,8751,-0.173214285714214,0.196095641646432,-0.174999999999916,0.203389830508375,-0.171428571428512,0.201452784503609,-0.173214285714214,0.208746973365552,-0.001876513317113,-0.003571428571404,-0.012711864406772,-0.000000000000000,0.012590799031466,0.000000000000000,0.001997578692419,0.003571428571404,2 +8724,8737,8739,8752,-0.169642857142809,0.194219128329318,-0.171428571428512,0.201452784503609,-0.167857142857105,0.199515738498841,-0.169642857142809,0.206749394673132,-0.001876513317115,-0.003571428571407,-0.012590799031466,-0.000000000000000,0.012469733656160,0.000000000000000,0.001997578692421,0.003571428571407,2 +8725,8738,8740,8753,-0.166071428571395,0.192342615012200,-0.167857142857105,0.199515738498841,-0.164285714285684,0.197578692494066,-0.166071428571395,0.204751815980707,-0.001876513317122,-0.003571428571421,-0.012469733656160,-0.000000000000000,0.012348668280853,0.000000000000000,0.001997578692429,0.003571428571421,2 +8726,8739,8741,8754,-0.162499999999982,0.190466101695082,-0.164285714285684,0.197578692494066,-0.160714285714279,0.195641646489299,-0.162499999999982,0.202754237288283,-0.001876513317114,-0.003571428571405,-0.012348668280853,-0.000000000000000,0.012227602905547,0.000000000000000,0.001997578692420,0.003571428571405,2 +8727,8740,8742,8755,-0.158928571428565,0.188589588377962,-0.160714285714279,0.195641646489299,-0.157142857142850,0.193704600484519,-0.158928571428565,0.200756658595856,-0.001876513317126,-0.003571428571429,-0.012227602905547,-0.000000000000000,0.012106537530240,0.000000000000000,0.001997578692433,0.003571428571429,2 +8728,8741,8743,8756,-0.155357142857136,0.186713075060837,-0.157142857142850,0.193704600484519,-0.153571428571423,0.191767554479741,-0.155357142857136,0.198759079903423,-0.001876513317125,-0.003571428571427,-0.012106537530240,-0.000000000000000,0.011985472154933,0.000000000000000,0.001997578692432,0.003571428571427,2 +8729,8742,8757,10203,-0.151785714285711,0.184836561743712,-0.153571428571423,0.191767554479741,-0.151785714285711,0.196761501210992,-0.150000000000000,0.189830508474964,-0.001876513317123,-0.003571428571423,-0.011985472154933,-0.000000000000000,0.001997578692430,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2288,8730,8745,8758,-0.200000000000000,0.230508474575816,-0.198214285714291,0.222730024212626,-0.196428571428583,0.228450363195735,-0.198214285714291,0.236228813558925,-0.013559322033954,-0.000000000000000,-0.001997578692427,-0.003571428571417,0.013438256658645,0.000000000000000,0.002118644067735,0.003571428571417,2 +8731,8744,8746,8759,-0.194642857142864,0.220732445520193,-0.196428571428583,0.228450363195735,-0.192857142857145,0.226392251815642,-0.194642857142864,0.234110169491184,-0.001997578692438,-0.003571428571438,-0.013438256658645,-0.000000000000000,0.013317191283336,0.000000000000000,0.002118644067748,0.003571428571438,2 +8732,8745,8747,8760,-0.191071428571419,0.218734866827751,-0.192857142857145,0.226392251815642,-0.189285714285694,0.224334140435542,-0.191071428571419,0.231991525423432,-0.001997578692446,-0.003571428571451,-0.013317191283336,-0.000000000000000,0.013196125908026,0.000000000000000,0.002118644067755,0.003571428571451,2 +8733,8746,8748,8761,-0.187499999999963,0.216737288135303,-0.189285714285694,0.224334140435542,-0.185714285714231,0.222276029055435,-0.187499999999963,0.229872881355673,-0.001997578692452,-0.003571428571462,-0.013196125908026,-0.000000000000000,0.013075060532715,0.000000000000000,0.002118644067762,0.003571428571462,2 +8734,8747,8749,8762,-0.183928571428507,0.214739709442855,-0.185714285714231,0.222276029055435,-0.182142857142783,0.220217917675335,-0.183928571428507,0.227754237287915,-0.001997578692444,-0.003571428571449,-0.013075060532715,-0.000000000000000,0.012953995157406,0.000000000000000,0.002118644067754,0.003571428571449,2 +8735,8748,8750,8763,-0.180357142857065,0.212742130750414,-0.182142857142783,0.220217917675335,-0.178571428571347,0.218159806295244,-0.180357142857065,0.225635593220165,-0.001997578692437,-0.003571428571436,-0.012953995157406,-0.000000000000000,0.012832929782096,0.000000000000000,0.002118644067747,0.003571428571436,2 +8736,8749,8751,8764,-0.176785714285631,0.210744552057978,-0.178571428571347,0.218159806295244,-0.174999999999916,0.216101694915155,-0.176785714285631,0.223516949152420,-0.001997578692434,-0.003571428571431,-0.012832929782096,-0.000000000000000,0.012711864406787,0.000000000000000,0.002118644067743,0.003571428571431,2 +8737,8750,8752,8765,-0.173214285714214,0.208746973365552,-0.174999999999916,0.216101694915155,-0.171428571428512,0.214043583535082,-0.173214285714214,0.221398305084685,-0.001997578692419,-0.003571428571404,-0.012711864406787,-0.000000000000000,0.012590799031479,0.000000000000000,0.002118644067727,0.003571428571404,2 +8738,8751,8753,8766,-0.169642857142809,0.206749394673132,-0.171428571428512,0.214043583535082,-0.167857142857105,0.211985472155006,-0.169642857142809,0.219279661016957,-0.001997578692421,-0.003571428571407,-0.012590799031479,-0.000000000000000,0.012469733656171,0.000000000000000,0.002118644067730,0.003571428571407,2 +8739,8752,8754,8767,-0.166071428571395,0.204751815980707,-0.167857142857105,0.211985472155006,-0.164285714285684,0.209927360774923,-0.166071428571395,0.217161016949223,-0.001997578692429,-0.003571428571421,-0.012469733656171,-0.000000000000000,0.012348668280862,0.000000000000000,0.002118644067737,0.003571428571421,2 +8740,8753,8755,8768,-0.162499999999982,0.202754237288283,-0.164285714285684,0.209927360774923,-0.160714285714279,0.207869249394850,-0.162499999999982,0.215042372881491,-0.001997578692420,-0.003571428571405,-0.012348668280862,-0.000000000000000,0.012227602905554,-0.000000000000000,0.002118644067728,0.003571428571405,2 +8741,8754,8756,8769,-0.158928571428565,0.200756658595856,-0.160714285714279,0.207869249394850,-0.157142857142850,0.205811138014762,-0.158928571428564,0.212923728813755,-0.001997578692433,-0.003571428571429,-0.012227602905554,0.000000000000000,0.012106537530245,0.000000000000000,0.002118644067743,0.003571428571429,2 +8742,8755,8757,8770,-0.155357142857136,0.198759079903423,-0.157142857142850,0.205811138014762,-0.153571428571423,0.203753026634675,-0.155357142857136,0.210805084746013,-0.001997578692432,-0.003571428571427,-0.012106537530245,-0.000000000000000,0.011985472154935,0.000000000000000,0.002118644067741,0.003571428571427,2 +8743,8756,8771,10204,-0.151785714285711,0.196761501210992,-0.153571428571423,0.203753026634675,-0.151785714285711,0.208686440678274,-0.150000000000000,0.201694915254591,-0.001997578692430,-0.003571428571423,-0.011985472154935,-0.000000000000000,0.002118644067738,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2289,8744,8759,8772,-0.200000000000000,0.244067796609748,-0.198214285714291,0.236228813558925,-0.196428571428583,0.241888619854360,-0.198214285714291,0.249727602905183,-0.013559322033910,-0.000000000000000,-0.002118644067735,-0.003571428571417,0.013438256658605,0.000000000000000,0.002239709443040,0.003571428571417,2 +8745,8758,8760,8773,-0.194642857142864,0.234110169491184,-0.196428571428583,0.241888619854360,-0.192857142857145,0.239709443098960,-0.194642857142864,0.247487893462136,-0.002118644067748,-0.003571428571438,-0.013438256658605,-0.000000000000000,0.013317191283299,0.000000000000000,0.002239709443053,0.003571428571438,2 +8746,8759,8761,8774,-0.191071428571419,0.231991525423432,-0.192857142857145,0.239709443098960,-0.189285714285694,0.237530266343551,-0.191071428571419,0.245248184019078,-0.002118644067755,-0.003571428571451,-0.013317191283299,-0.000000000000000,0.013196125907993,0.000000000000000,0.002239709443062,0.003571428571451,2 +8747,8760,8762,8775,-0.187499999999963,0.229872881355673,-0.189285714285694,0.237530266343551,-0.185714285714231,0.235351089588136,-0.187499999999963,0.243008474576013,-0.002118644067762,-0.003571428571462,-0.013196125907993,-0.000000000000000,0.013075060532687,0.000000000000000,0.002239709443069,0.003571428571462,2 +8748,8761,8763,8776,-0.183928571428507,0.227754237287915,-0.185714285714231,0.235351089588136,-0.182142857142783,0.233171912832729,-0.183928571428507,0.240768765132949,-0.002118644067754,-0.003571428571449,-0.013075060532687,-0.000000000000000,0.012953995157380,0.000000000000000,0.002239709443060,0.003571428571449,2 +8749,8762,8764,8777,-0.180357142857065,0.225635593220165,-0.182142857142783,0.233171912832729,-0.178571428571347,0.230992736077329,-0.180357142857065,0.238529055689893,-0.002118644067747,-0.003571428571436,-0.012953995157380,-0.000000000000000,0.012832929782075,0.000000000000000,0.002239709443052,0.003571428571436,2 +8750,8763,8765,8778,-0.176785714285631,0.223516949152420,-0.178571428571347,0.230992736077329,-0.174999999999916,0.228813559321933,-0.176785714285631,0.236289346246842,-0.002118644067743,-0.003571428571431,-0.012832929782075,-0.000000000000000,0.012711864406769,0.000000000000000,0.002239709443049,0.003571428571431,2 +8751,8764,8766,8779,-0.173214285714214,0.221398305084685,-0.174999999999916,0.228813559321933,-0.171428571428512,0.226634382566553,-0.173214285714214,0.234049636803801,-0.002118644067727,-0.003571428571404,-0.012711864406769,-0.000000000000000,0.012590799031464,0.000000000000000,0.002239709443032,0.003571428571404,2 +8752,8765,8767,8780,-0.169642857142809,0.219279661016957,-0.171428571428512,0.226634382566553,-0.167857142857105,0.224455205811171,-0.169642857142809,0.231809927360768,-0.002118644067730,-0.003571428571407,-0.012590799031464,-0.000000000000000,0.012469733656159,0.000000000000000,0.002239709443034,0.003571428571407,2 +8753,8766,8768,8781,-0.166071428571395,0.217161016949223,-0.167857142857105,0.224455205811171,-0.164285714285684,0.222276029055781,-0.166071428571395,0.229570217917730,-0.002118644067737,-0.003571428571421,-0.012469733656159,-0.000000000000000,0.012348668280854,0.000000000000000,0.002239709443043,0.003571428571421,2 +8754,8767,8769,8782,-0.162499999999982,0.215042372881491,-0.164285714285684,0.222276029055781,-0.160714285714279,0.220096852300401,-0.162499999999982,0.227330508474692,-0.002118644067728,-0.003571428571405,-0.012348668280854,-0.000000000000000,0.012227602905549,0.000000000000000,0.002239709443033,0.003571428571405,2 +8755,8768,8770,8783,-0.158928571428564,0.212923728813755,-0.160714285714279,0.220096852300401,-0.157142857142850,0.217917675545006,-0.158928571428564,0.225090799031652,-0.002118644067743,-0.003571428571429,-0.012227602905549,-0.000000000000000,0.012106537530244,0.000000000000000,0.002239709443048,0.003571428571429,2 +8756,8769,8771,8784,-0.155357142857136,0.210805084746013,-0.157142857142850,0.217917675545006,-0.153571428571423,0.215738498789612,-0.155357142857136,0.222851089588604,-0.002118644067741,-0.003571428571427,-0.012106537530244,-0.000000000000000,0.011985472154938,0.000000000000000,0.002239709443047,0.003571428571427,2 +8757,8770,8785,10205,-0.151785714285711,0.208686440678274,-0.153571428571423,0.215738498789612,-0.151785714285711,0.220611380145559,-0.150000000000000,0.213559322034221,-0.002118644067738,-0.003571428571423,-0.011985472154938,-0.000000000000000,0.002239709443044,0.003571428571423,0.011864406779633,-0.000000000000000,2 +2290,8758,8773,8786,-0.200000000000000,0.257627118643680,-0.198214285714291,0.249727602905183,-0.196428571428583,0.255326876512985,-0.198214285714291,0.263226392251483,-0.013559322033954,-0.000000000000000,-0.002239709443040,-0.003571428571417,0.013438256658646,0.000000000000000,0.002360774818349,0.003571428571417,2 +8759,8772,8774,8787,-0.194642857142864,0.247487893462136,-0.196428571428583,0.255326876512985,-0.192857142857145,0.253026634382277,-0.194642857142864,0.260865617433127,-0.002239709443053,-0.003571428571438,-0.013438256658646,-0.000000000000000,0.013317191283336,0.000000000000000,0.002360774818363,0.003571428571438,2 +8760,8773,8775,8788,-0.191071428571419,0.245248184019078,-0.192857142857145,0.253026634382277,-0.189285714285694,0.250726392251561,-0.191071428571419,0.258504842614760,-0.002239709443062,-0.003571428571451,-0.013317191283336,-0.000000000000000,0.013196125908027,0.000000000000000,0.002360774818371,0.003571428571451,2 +8761,8774,8776,8789,-0.187499999999963,0.243008474576013,-0.189285714285694,0.250726392251561,-0.185714285714231,0.248426150120837,-0.187499999999963,0.256144067796385,-0.002239709443069,-0.003571428571462,-0.013196125908027,-0.000000000000000,0.013075060532717,0.000000000000000,0.002360774818379,0.003571428571462,2 +8762,8775,8777,8790,-0.183928571428507,0.240768765132949,-0.185714285714231,0.248426150120837,-0.182142857142783,0.246125907990122,-0.183928571428507,0.253783292978011,-0.002239709443060,-0.003571428571449,-0.013075060532717,-0.000000000000000,0.012953995157407,0.000000000000000,0.002360774818370,0.003571428571449,2 +8763,8776,8778,8791,-0.180357142857065,0.238529055689893,-0.182142857142783,0.246125907990122,-0.178571428571347,0.243825665859416,-0.180357142857065,0.251422518159646,-0.002239709443052,-0.003571428571436,-0.012953995157407,-0.000000000000000,0.012832929782098,0.000000000000000,0.002360774818361,0.003571428571436,2 +8764,8777,8779,8792,-0.176785714285631,0.236289346246842,-0.178571428571347,0.243825665859416,-0.174999999999916,0.241525423728712,-0.176785714285631,0.249061743341286,-0.002239709443049,-0.003571428571431,-0.012832929782098,-0.000000000000000,0.012711864406790,0.000000000000000,0.002360774818358,0.003571428571431,2 +8765,8778,8780,8793,-0.173214285714214,0.234049636803801,-0.174999999999916,0.241525423728712,-0.171428571428512,0.239225181598026,-0.173214285714214,0.246700968522937,-0.002239709443032,-0.003571428571404,-0.012711864406790,-0.000000000000000,0.012590799031482,0.000000000000000,0.002360774818340,0.003571428571404,2 +8766,8779,8781,8794,-0.169642857142809,0.231809927360768,-0.171428571428512,0.239225181598026,-0.167857142857105,0.236924939467338,-0.169642857142809,0.244340193704596,-0.002239709443034,-0.003571428571407,-0.012590799031482,-0.000000000000000,0.012469733656174,0.000000000000000,0.002360774818342,0.003571428571407,2 +8767,8780,8782,8795,-0.166071428571395,0.229570217917730,-0.167857142857105,0.236924939467338,-0.164285714285684,0.234624697336641,-0.166071428571395,0.241979418886249,-0.002239709443043,-0.003571428571421,-0.012469733656174,-0.000000000000000,0.012348668280865,0.000000000000000,0.002360774818351,0.003571428571421,2 +8768,8781,8783,8796,-0.162499999999982,0.227330508474692,-0.164285714285684,0.234624697336641,-0.160714285714279,0.232324455205954,-0.162499999999982,0.239618644067903,-0.002239709443033,-0.003571428571405,-0.012348668280865,-0.000000000000000,0.012227602905557,0.000000000000000,0.002360774818341,0.003571428571405,2 +8769,8782,8784,8797,-0.158928571428564,0.225090799031652,-0.160714285714279,0.232324455205954,-0.157142857142850,0.230024213075252,-0.158928571428564,0.237257869249555,-0.002239709443048,-0.003571428571429,-0.012227602905557,-0.000000000000000,0.012106537530249,0.000000000000000,0.002360774818357,0.003571428571429,2 +8770,8783,8785,8798,-0.155357142857136,0.222851089588604,-0.157142857142850,0.230024213075252,-0.153571428571423,0.227723970944551,-0.155357142857136,0.234897094431199,-0.002239709443047,-0.003571428571427,-0.012106537530249,-0.000000000000000,0.011985472154940,0.000000000000000,0.002360774818355,0.003571428571427,2 +8771,8784,8799,10206,-0.151785714285711,0.220611380145559,-0.153571428571423,0.227723970944551,-0.151785714285711,0.232536319612845,-0.150000000000000,0.225423728813853,-0.002239709443044,-0.003571428571423,-0.011985472154940,-0.000000000000000,0.002360774818353,0.003571428571423,0.011864406779631,-0.000000000000000,2 +2291,8772,8787,8800,-0.200000000000000,0.271186440677618,-0.198214285714291,0.263226392251483,-0.196428571428583,0.268765133171616,-0.198214285714291,0.276725181597751,-0.013559322033922,-0.000000000000000,-0.002360774818349,-0.003571428571417,0.013438256658616,0.000000000000000,0.002481840193655,0.003571428571417,2 +8773,8786,8788,8801,-0.194642857142864,0.260865617433127,-0.196428571428583,0.268765133171616,-0.192857142857145,0.266343825665600,-0.194642857142864,0.274243341404090,-0.002360774818363,-0.003571428571438,-0.013438256658616,-0.000000000000000,0.013317191283309,0.000000000000000,0.002481840193669,0.003571428571438,2 +8774,8787,8789,8802,-0.191071428571419,0.258504842614760,-0.192857142857145,0.266343825665600,-0.189285714285694,0.263922518159576,-0.191071428571419,0.271761501210416,-0.002360774818371,-0.003571428571451,-0.013317191283309,-0.000000000000000,0.013196125908002,0.000000000000000,0.002481840193678,0.003571428571451,2 +8775,8788,8790,8803,-0.187499999999963,0.256144067796385,-0.189285714285694,0.263922518159576,-0.185714285714231,0.261501210653543,-0.187499999999963,0.269279661016734,-0.002360774818379,-0.003571428571462,-0.013196125908002,-0.000000000000000,0.013075060532695,0.000000000000000,0.002481840193686,0.003571428571462,2 +8776,8789,8791,8804,-0.183928571428507,0.253783292978011,-0.185714285714231,0.261501210653543,-0.182142857142783,0.259079903147520,-0.183928571428507,0.266797820823053,-0.002360774818370,-0.003571428571449,-0.013075060532695,-0.000000000000000,0.012953995157388,0.000000000000000,0.002481840193676,0.003571428571449,2 +8777,8790,8792,8805,-0.180357142857065,0.251422518159646,-0.182142857142783,0.259079903147520,-0.178571428571347,0.256658595641506,-0.180357142857065,0.264315980629381,-0.002360774818361,-0.003571428571436,-0.012953995157388,-0.000000000000000,0.012832929782082,0.000000000000000,0.002481840193668,0.003571428571436,2 +8778,8791,8793,8806,-0.176785714285631,0.249061743341286,-0.178571428571347,0.256658595641506,-0.174999999999916,0.254237288135495,-0.176785714285631,0.261834140435715,-0.002360774818358,-0.003571428571431,-0.012832929782082,-0.000000000000000,0.012711864406775,0.000000000000000,0.002481840193664,0.003571428571431,2 +8779,8792,8794,8807,-0.173214285714214,0.246700968522937,-0.174999999999916,0.254237288135495,-0.171428571428512,0.251815980629502,-0.173214285714214,0.259352300242060,-0.002360774818340,-0.003571428571404,-0.012711864406775,-0.000000000000000,0.012590799031470,-0.000000000000000,0.002481840193645,0.003571428571404,2 +8780,8793,8795,8808,-0.169642857142809,0.244340193704596,-0.171428571428512,0.251815980629502,-0.167857142857105,0.249394673123507,-0.169642857142808,0.256870460048413,-0.002360774818342,-0.003571428571407,-0.012590799031470,0.000000000000000,0.012469733656164,0.000000000000000,0.002481840193648,0.003571428571407,2 +8781,8794,8796,8809,-0.166071428571395,0.241979418886249,-0.167857142857105,0.249394673123507,-0.164285714285684,0.246973365617503,-0.166071428571395,0.254388619854761,-0.002360774818351,-0.003571428571421,-0.012469733656164,-0.000000000000000,0.012348668280859,0.000000000000000,0.002481840193657,0.003571428571421,2 +8782,8795,8797,8810,-0.162499999999982,0.239618644067903,-0.164285714285684,0.246973365617503,-0.160714285714279,0.244552058111510,-0.162499999999982,0.251906779661109,-0.002360774818341,-0.003571428571405,-0.012348668280859,-0.000000000000000,0.012227602905553,0.000000000000000,0.002481840193646,0.003571428571405,2 +8783,8796,8798,8811,-0.158928571428564,0.237257869249555,-0.160714285714279,0.244552058111510,-0.157142857142850,0.242130750605500,-0.158928571428565,0.249424939467455,-0.002360774818357,-0.003571428571429,-0.012227602905553,-0.000000000000000,0.012106537530247,0.000000000000000,0.002481840193663,0.003571428571429,2 +8784,8797,8799,8812,-0.155357142857136,0.234897094431199,-0.157142857142850,0.242130750605500,-0.153571428571423,0.239709443099491,-0.155357142857136,0.246943099273792,-0.002360774818355,-0.003571428571427,-0.012106537530247,-0.000000000000000,0.011985472154941,0.000000000000000,0.002481840193661,0.003571428571427,2 +8785,8798,8813,10207,-0.151785714285711,0.232536319612845,-0.153571428571423,0.239709443099491,-0.151785714285711,0.244461259080132,-0.150000000000000,0.237288135593486,-0.002360774818353,-0.003571428571423,-0.011985472154941,-0.000000000000000,0.002481840193658,0.003571428571423,0.011864406779635,-0.000000000000000,2 +2292,8786,8801,8814,-0.200000000000000,0.284745762711550,-0.198214285714291,0.276725181597751,-0.196428571428583,0.282203389830241,-0.198214285714291,0.290223970944040,-0.013559322033942,-0.000000000000000,-0.002481840193655,-0.003571428571417,0.013438256658634,0.000000000000000,0.002602905568963,0.003571428571417,2 +8787,8800,8802,8815,-0.194642857142864,0.274243341404090,-0.196428571428583,0.282203389830241,-0.192857142857145,0.279661016948918,-0.194642857142864,0.287621065375069,-0.002481840193669,-0.003571428571438,-0.013438256658634,-0.000000000000000,0.013317191283325,0.000000000000000,0.002602905568978,0.003571428571438,2 +8788,8801,8803,8816,-0.191071428571419,0.271761501210416,-0.192857142857145,0.279661016948918,-0.189285714285694,0.277118644067585,-0.191071428571419,0.285018159806087,-0.002481840193678,-0.003571428571451,-0.013317191283325,-0.000000000000000,0.013196125908016,0.000000000000000,0.002602905568988,0.003571428571451,2 +8789,8802,8804,8817,-0.187499999999963,0.269279661016734,-0.189285714285694,0.277118644067585,-0.185714285714231,0.274576271186244,-0.187499999999963,0.282415254237095,-0.002481840193686,-0.003571428571462,-0.013196125908016,-0.000000000000000,0.013075060532706,0.000000000000000,0.002602905568996,0.003571428571462,2 +8790,8803,8805,8818,-0.183928571428507,0.266797820823053,-0.185714285714231,0.274576271186244,-0.182142857142783,0.272033898304913,-0.183928571428507,0.279812348668104,-0.002481840193676,-0.003571428571449,-0.013075060532706,-0.000000000000000,0.012953995157397,0.000000000000000,0.002602905568986,0.003571428571449,2 +8791,8804,8806,8819,-0.180357142857065,0.264315980629381,-0.182142857142783,0.272033898304913,-0.178571428571347,0.269491525423591,-0.180357142857065,0.277209443099123,-0.002481840193668,-0.003571428571436,-0.012953995157397,-0.000000000000000,0.012832929782088,-0.000000000000000,0.002602905568976,0.003571428571436,2 +8792,8805,8807,8820,-0.176785714285631,0.261834140435715,-0.178571428571347,0.269491525423591,-0.174999999999916,0.266949152542272,-0.176785714285631,0.274606537530149,-0.002481840193664,-0.003571428571431,-0.012832929782088,0.000000000000000,0.012711864406780,0.000000000000000,0.002602905568973,0.003571428571431,2 +8793,8806,8808,8821,-0.173214285714214,0.259352300242060,-0.174999999999916,0.266949152542272,-0.171428571428512,0.264406779660973,-0.173214285714214,0.272003631961186,-0.002481840193645,-0.003571428571404,-0.012711864406780,-0.000000000000000,0.012590799031472,0.000000000000000,0.002602905568953,0.003571428571404,2 +8794,8807,8809,8822,-0.169642857142808,0.256870460048413,-0.171428571428512,0.264406779660973,-0.167857142857105,0.261864406779671,-0.169642857142809,0.269400726392231,-0.002481840193648,-0.003571428571407,-0.012590799031472,-0.000000000000000,0.012469733656164,0.000000000000000,0.002602905568956,0.003571428571407,2 +8795,8808,8810,8823,-0.166071428571395,0.254388619854761,-0.167857142857105,0.261864406779671,-0.164285714285684,0.259322033898360,-0.166071428571395,0.266797820823271,-0.002481840193657,-0.003571428571421,-0.012469733656164,-0.000000000000000,0.012348668280856,0.000000000000000,0.002602905568965,0.003571428571421,2 +8796,8809,8811,8824,-0.162499999999982,0.251906779661109,-0.164285714285684,0.259322033898360,-0.160714285714279,0.256779661017060,-0.162499999999982,0.264194915254311,-0.002481840193646,-0.003571428571405,-0.012348668280856,-0.000000000000000,0.012227602905548,0.000000000000000,0.002602905568954,0.003571428571405,2 +8797,8810,8812,8825,-0.158928571428565,0.249424939467455,-0.160714285714279,0.256779661017060,-0.157142857142850,0.254237288135743,-0.158928571428564,0.261592009685348,-0.002481840193663,-0.003571428571429,-0.012227602905548,-0.000000000000000,0.012106537530239,-0.000000000000000,0.002602905568972,0.003571428571430,2 +8798,8811,8813,8826,-0.155357142857136,0.246943099273792,-0.157142857142850,0.254237288135743,-0.153571428571423,0.251694915254427,-0.155357142857136,0.258989104116377,-0.002481840193661,-0.003571428571427,-0.012106537530239,0.000000000000000,0.011985472154931,0.000000000000000,0.002602905568970,0.003571428571427,2 +8799,8812,8827,10208,-0.151785714285711,0.244461259080132,-0.153571428571423,0.251694915254427,-0.151785714285711,0.256386198547409,-0.150000000000000,0.249152542373114,-0.002481840193658,-0.003571428571423,-0.011985472154931,-0.000000000000000,0.002602905568967,0.003571428571423,0.011864406779622,-0.000000000000000,2 +2293,8800,8815,8828,-0.200000000000000,0.298305084745489,-0.198214285714291,0.290223970944040,-0.196428571428583,0.295641646488872,-0.198214285714291,0.303722760290322,-0.013559322033936,-0.000000000000000,-0.002602905568963,-0.003571428571417,0.013438256658628,0.000000000000000,0.002723970944271,0.003571428571417,2 +8801,8814,8816,8829,-0.194642857142864,0.287621065375069,-0.196428571428583,0.295641646488872,-0.192857142857145,0.292978208232240,-0.194642857142864,0.300998789346043,-0.002602905568978,-0.003571428571438,-0.013438256658628,-0.000000000000000,0.013317191283320,0.000000000000000,0.002723970944287,0.003571428571438,2 +8802,8815,8817,8830,-0.191071428571419,0.285018159806087,-0.192857142857145,0.292978208232240,-0.189285714285694,0.290314769975598,-0.191071428571419,0.298274818401752,-0.002602905568988,-0.003571428571451,-0.013317191283320,-0.000000000000000,0.013196125908011,0.000000000000000,0.002723970944296,0.003571428571451,2 +8803,8816,8818,8831,-0.187499999999963,0.282415254237095,-0.189285714285694,0.290314769975598,-0.185714285714231,0.287651331718948,-0.187499999999963,0.295550847457451,-0.002602905568996,-0.003571428571462,-0.013196125908011,-0.000000000000000,0.013075060532701,0.000000000000000,0.002723970944305,0.003571428571462,2 +8804,8817,8819,8832,-0.183928571428507,0.279812348668104,-0.185714285714231,0.287651331718948,-0.182142857142783,0.284987893462308,-0.183928571428507,0.292826876513151,-0.002602905568986,-0.003571428571449,-0.013075060532701,-0.000000000000000,0.012953995157393,0.000000000000000,0.002723970944295,0.003571428571449,2 +8805,8818,8820,8833,-0.180357142857065,0.277209443099123,-0.182142857142783,0.284987893462308,-0.178571428571347,0.282324455205677,-0.180357142857065,0.290102905568861,-0.002602905568976,-0.003571428571436,-0.012953995157393,-0.000000000000000,0.012832929782084,0.000000000000000,0.002723970944285,0.003571428571436,2 +8806,8819,8821,8834,-0.176785714285631,0.274606537530149,-0.178571428571347,0.282324455205677,-0.174999999999916,0.279661016949050,-0.176785714285631,0.287378934624578,-0.002602905568973,-0.003571428571431,-0.012832929782084,-0.000000000000000,0.012711864406776,0.000000000000000,0.002723970944281,0.003571428571431,2 +8807,8820,8822,8835,-0.173214285714214,0.272003631961186,-0.174999999999916,0.279661016949050,-0.171428571428512,0.276997578692443,-0.173214285714214,0.284654963680307,-0.002602905568953,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031468,-0.000000000000000,0.002723970944260,0.003571428571404,2 +8808,8821,8823,8836,-0.169642857142809,0.269400726392231,-0.171428571428512,0.276997578692443,-0.167857142857105,0.274334140435834,-0.169642857142808,0.281930992736046,-0.002602905568956,-0.003571428571407,-0.012590799031468,0.000000000000000,0.012469733656161,0.000000000000000,0.002723970944263,0.003571428571407,2 +8809,8822,8824,8837,-0.166071428571395,0.266797820823271,-0.167857142857105,0.274334140435834,-0.164285714285684,0.271670702179214,-0.166071428571395,0.279207021791777,-0.002602905568965,-0.003571428571421,-0.012469733656161,-0.000000000000000,0.012348668280853,0.000000000000000,0.002723970944274,0.003571428571421,2 +8810,8823,8825,8838,-0.162499999999982,0.264194915254311,-0.164285714285684,0.271670702179214,-0.160714285714279,0.269007263922607,-0.162499999999982,0.276483050847510,-0.002602905568954,-0.003571428571405,-0.012348668280853,-0.000000000000000,0.012227602905545,0.000000000000000,0.002723970944261,0.003571428571405,2 +8811,8824,8826,8839,-0.158928571428564,0.261592009685348,-0.160714285714279,0.269007263922607,-0.157142857142850,0.266343825665981,-0.158928571428565,0.273759079903239,-0.002602905568972,-0.003571428571430,-0.012227602905545,-0.000000000000000,0.012106537530237,0.000000000000000,0.002723970944280,0.003571428571429,2 +8812,8825,8827,8840,-0.155357142857136,0.258989104116377,-0.157142857142850,0.266343825665981,-0.153571428571423,0.263680387409357,-0.155357142857136,0.271035108958960,-0.002602905568970,-0.003571428571427,-0.012106537530237,-0.000000000000000,0.011985472154929,0.000000000000000,0.002723970944278,0.003571428571427,2 +8813,8826,8841,10209,-0.151785714285711,0.256386198547409,-0.153571428571423,0.263680387409357,-0.151785714285711,0.268311138014684,-0.150000000000000,0.261016949152736,-0.002602905568967,-0.003571428571423,-0.011985472154929,-0.000000000000000,0.002723970944275,0.003571428571423,0.011864406779621,-0.000000000000000,2 +2294,8814,8829,8842,-0.200000000000000,0.311864406779421,-0.198214285714291,0.303722760290322,-0.196428571428583,0.309079903147498,-0.198214285714291,0.317221549636597,-0.013559322033928,-0.000000000000000,-0.002723970944271,-0.003571428571417,0.013438256658622,0.000000000000000,0.002845036319577,0.003571428571417,2 +8815,8828,8830,8843,-0.194642857142864,0.300998789346043,-0.196428571428583,0.309079903147498,-0.192857142857145,0.306295399515558,-0.194642857142864,0.314376513317012,-0.002723970944287,-0.003571428571438,-0.013438256658622,-0.000000000000000,0.013317191283316,0.000000000000000,0.002845036319593,0.003571428571438,2 +8816,8829,8831,8844,-0.191071428571419,0.298274818401752,-0.192857142857145,0.306295399515558,-0.189285714285694,0.303510895883608,-0.191071428571419,0.311531476997414,-0.002723970944296,-0.003571428571451,-0.013317191283316,-0.000000000000000,0.013196125908009,0.000000000000000,0.002845036319604,0.003571428571451,2 +8817,8830,8832,8845,-0.187499999999963,0.295550847457451,-0.189285714285694,0.303510895883608,-0.185714285714232,0.300726392251649,-0.187499999999963,0.308686440677806,-0.002723970944305,-0.003571428571462,-0.013196125908009,-0.000000000000000,0.013075060532701,0.000000000000000,0.002845036319612,0.003571428571462,2 +8818,8831,8833,8846,-0.183928571428507,0.292826876513151,-0.185714285714232,0.300726392251649,-0.182142857142783,0.297941888619701,-0.183928571428507,0.305841404358199,-0.002723970944295,-0.003571428571449,-0.013075060532701,-0.000000000000000,0.012953995157394,0.000000000000000,0.002845036319602,0.003571428571449,2 +8819,8832,8834,8847,-0.180357142857065,0.290102905568861,-0.182142857142783,0.297941888619701,-0.178571428571347,0.295157384987763,-0.180357142857065,0.302996368038602,-0.002723970944285,-0.003571428571436,-0.012953995157394,-0.000000000000000,0.012832929782087,0.000000000000000,0.002845036319592,0.003571428571436,2 +8820,8833,8835,8848,-0.176785714285631,0.287378934624578,-0.178571428571347,0.295157384987763,-0.174999999999916,0.292372881355828,-0.176785714285631,0.300151331719013,-0.002723970944281,-0.003571428571431,-0.012832929782087,-0.000000000000000,0.012711864406781,0.000000000000000,0.002845036319587,0.003571428571431,2 +8821,8834,8836,8849,-0.173214285714214,0.284654963680307,-0.174999999999916,0.292372881355828,-0.171428571428512,0.289588377723915,-0.173214285714214,0.297306295399436,-0.002723970944260,-0.003571428571404,-0.012711864406781,-0.000000000000000,0.012590799031475,0.000000000000000,0.002845036319566,0.003571428571404,2 +8822,8835,8837,8850,-0.169642857142808,0.281930992736046,-0.171428571428512,0.289588377723915,-0.167857142857105,0.286803874091999,-0.169642857142808,0.294461259079868,-0.002723970944263,-0.003571428571407,-0.012590799031475,-0.000000000000000,0.012469733656170,0.000000000000000,0.002845036319569,0.003571428571407,2 +8823,8836,8838,8851,-0.166071428571395,0.279207021791777,-0.167857142857105,0.286803874091999,-0.164285714285684,0.284019370460073,-0.166071428571394,0.291616222760294,-0.002723970944274,-0.003571428571421,-0.012469733656170,-0.000000000000000,0.012348668280864,-0.000000000000000,0.002845036319579,0.003571428571421,2 +8824,8837,8839,8852,-0.162499999999982,0.276483050847510,-0.164285714285684,0.284019370460073,-0.160714285714279,0.281234866828158,-0.162499999999982,0.288771186440721,-0.002723970944261,-0.003571428571405,-0.012348668280864,0.000000000000000,0.012227602905558,-0.000000000000000,0.002845036319567,0.003571428571405,2 +8825,8838,8840,8853,-0.158928571428565,0.273759079903239,-0.160714285714279,0.281234866828158,-0.157142857142850,0.278450363196225,-0.158928571428564,0.285926150121145,-0.002723970944280,-0.003571428571429,-0.012227602905558,0.000000000000000,0.012106537530252,0.000000000000000,0.002845036319586,0.003571428571429,2 +8826,8839,8841,8854,-0.155357142857136,0.271035108958960,-0.157142857142850,0.278450363196225,-0.153571428571423,0.275665859564294,-0.155357142857136,0.283081113801559,-0.002723970944278,-0.003571428571427,-0.012106537530252,-0.000000000000000,0.011985472154946,0.000000000000000,0.002845036319585,0.003571428571427,2 +8827,8840,8855,10210,-0.151785714285711,0.268311138014684,-0.153571428571423,0.275665859564294,-0.151785714285711,0.280236077481976,-0.150000000000000,0.272881355932366,-0.002723970944275,-0.003571428571423,-0.011985472154946,-0.000000000000000,0.002845036319581,0.003571428571423,0.011864406779640,-0.000000000000000,2 +2295,8828,8843,8856,-0.200000000000000,0.325423728813361,-0.198214285714291,0.317221549636597,-0.196428571428583,0.322518159806130,-0.198214285714291,0.330720338982893,-0.013559322033950,-0.000000000000000,-0.002845036319577,-0.003571428571417,0.013438256658642,0.000000000000000,0.002966101694885,0.003571428571417,2 +8829,8842,8844,8857,-0.194642857142864,0.314376513317012,-0.196428571428583,0.322518159806130,-0.192857142857145,0.319612590798882,-0.194642857142864,0.327754237288000,-0.002845036319593,-0.003571428571438,-0.013438256658642,-0.000000000000000,0.013317191283333,0.000000000000000,0.002966101694902,0.003571428571438,2 +8830,8843,8845,8858,-0.191071428571419,0.311531476997414,-0.192857142857145,0.319612590798882,-0.189285714285694,0.316707021791624,-0.191071428571419,0.324788135593092,-0.002845036319604,-0.003571428571451,-0.013317191283333,-0.000000000000000,0.013196125908024,0.000000000000000,0.002966101694913,0.003571428571451,2 +8831,8844,8846,8859,-0.187499999999963,0.308686440677806,-0.189285714285694,0.316707021791624,-0.185714285714232,0.313801452784357,-0.187499999999963,0.321822033898175,-0.002845036319612,-0.003571428571462,-0.013196125908024,-0.000000000000000,0.013075060532714,-0.000000000000000,0.002966101694923,0.003571428571462,2 +8832,8845,8847,8860,-0.183928571428507,0.305841404358199,-0.185714285714232,0.313801452784357,-0.182142857142783,0.310895883777100,-0.183928571428507,0.318855932203258,-0.002845036319602,-0.003571428571449,-0.013075060532714,0.000000000000000,0.012953995157404,0.000000000000000,0.002966101694911,0.003571428571449,2 +8833,8846,8848,8861,-0.180357142857065,0.302996368038602,-0.182142857142783,0.310895883777100,-0.178571428571347,0.307990314769854,-0.180357142857065,0.315889830508352,-0.002845036319592,-0.003571428571436,-0.012953995157404,-0.000000000000000,0.012832929782095,0.000000000000000,0.002966101694901,0.003571428571436,2 +8834,8847,8849,8862,-0.176785714285631,0.300151331719013,-0.178571428571347,0.307990314769854,-0.174999999999916,0.305084745762612,-0.176785714285631,0.312923728813453,-0.002845036319587,-0.003571428571431,-0.012832929782095,-0.000000000000000,0.012711864406786,0.000000000000000,0.002966101694896,0.003571428571431,2 +8835,8848,8850,8863,-0.173214285714214,0.297306295399436,-0.174999999999916,0.305084745762612,-0.171428571428512,0.302179176755392,-0.173214285714214,0.309957627118568,-0.002845036319566,-0.003571428571404,-0.012711864406786,-0.000000000000000,0.012590799031479,0.000000000000000,0.002966101694874,0.003571428571404,2 +8836,8849,8851,8864,-0.169642857142808,0.294461259079868,-0.171428571428512,0.302179176755392,-0.167857142857105,0.299273607748169,-0.169642857142808,0.306991525423693,-0.002845036319569,-0.003571428571407,-0.012590799031479,-0.000000000000000,0.012469733656171,0.000000000000000,0.002966101694877,0.003571428571407,2 +8837,8850,8852,8865,-0.166071428571394,0.291616222760294,-0.167857142857105,0.299273607748169,-0.164285714285684,0.296368038740936,-0.166071428571395,0.304025423728811,-0.002845036319579,-0.003571428571421,-0.012469733656171,-0.000000000000000,0.012348668280862,0.000000000000000,0.002966101694888,0.003571428571421,2 +8838,8851,8853,8866,-0.162499999999982,0.288771186440721,-0.164285714285684,0.296368038740936,-0.160714285714279,0.293462469733715,-0.162499999999982,0.301059322033929,-0.002845036319567,-0.003571428571405,-0.012348668280862,-0.000000000000000,0.012227602905554,0.000000000000000,0.002966101694875,0.003571428571405,2 +8839,8852,8854,8867,-0.158928571428564,0.285926150121145,-0.160714285714279,0.293462469733715,-0.157142857142850,0.290556900726474,-0.158928571428565,0.298093220339044,-0.002845036319586,-0.003571428571429,-0.012227602905554,-0.000000000000000,0.012106537530245,0.000000000000000,0.002966101694895,0.003571428571429,2 +8840,8853,8855,8868,-0.155357142857136,0.283081113801559,-0.157142857142850,0.290556900726474,-0.153571428571423,0.287651331719235,-0.155357142857136,0.295127118644150,-0.002845036319585,-0.003571428571427,-0.012106537530245,-0.000000000000000,0.011985472154937,-0.000000000000000,0.002966101694893,0.003571428571427,2 +8841,8854,8869,10211,-0.151785714285711,0.280236077481976,-0.153571428571423,0.287651331719235,-0.151785714285711,0.292161016949259,-0.150000000000000,0.284745762712000,-0.002845036319581,-0.003571428571423,-0.011985472154937,0.000000000000000,0.002966101694890,0.003571428571423,0.011864406779628,-0.000000000000000,2 +2296,8842,8857,8870,-0.200000000000000,0.338983050847293,-0.198214285714291,0.330720338982893,-0.196428571428583,0.335956416464756,-0.198214285714291,0.344219128329155,-0.013559322033914,-0.000000000000000,-0.002966101694885,-0.003571428571417,0.013438256658609,0.000000000000000,0.003087167070189,0.003571428571417,2 +8843,8856,8858,8871,-0.194642857142864,0.327754237288000,-0.196428571428583,0.335956416464756,-0.192857142857145,0.332929782082201,-0.194642857142864,0.341131961258957,-0.002966101694902,-0.003571428571438,-0.013438256658609,-0.000000000000000,0.013317191283304,0.000000000000000,0.003087167070207,0.003571428571438,2 +8844,8857,8859,8872,-0.191071428571419,0.324788135593092,-0.192857142857145,0.332929782082201,-0.189285714285694,0.329903147699635,-0.191071428571419,0.338044794188744,-0.002966101694913,-0.003571428571451,-0.013317191283304,-0.000000000000000,0.013196125907999,-0.000000000000000,0.003087167070219,0.003571428571451,2 +8845,8858,8860,8873,-0.187499999999963,0.321822033898175,-0.189285714285694,0.329903147699635,-0.185714285714231,0.326876513317060,-0.187499999999963,0.334957627118520,-0.002966101694923,-0.003571428571462,-0.013196125907999,0.000000000000000,0.013075060532693,0.000000000000000,0.003087167070228,0.003571428571462,2 +8846,8859,8861,8874,-0.183928571428507,0.318855932203258,-0.185714285714231,0.326876513317060,-0.182142857142783,0.323849878934496,-0.183928571428507,0.331870460048298,-0.002966101694911,-0.003571428571449,-0.013075060532693,-0.000000000000000,0.012953995157387,0.000000000000000,0.003087167070217,0.003571428571449,2 +8847,8860,8862,8875,-0.180357142857065,0.315889830508352,-0.182142857142783,0.323849878934496,-0.178571428571347,0.320823244551943,-0.180357142857065,0.328783292978087,-0.002966101694901,-0.003571428571436,-0.012953995157387,-0.000000000000000,0.012832929782082,-0.000000000000000,0.003087167070205,0.003571428571436,2 +8848,8861,8863,8876,-0.176785714285631,0.312923728813453,-0.178571428571347,0.320823244551943,-0.174999999999916,0.317796610169394,-0.176785714285631,0.325696125907883,-0.002966101694896,-0.003571428571431,-0.012832929782082,0.000000000000000,0.012711864406777,0.000000000000000,0.003087167070201,0.003571428571431,2 +8849,8862,8864,8877,-0.173214285714214,0.309957627118568,-0.174999999999916,0.317796610169394,-0.171428571428512,0.314769975786868,-0.173214285714214,0.322608958837694,-0.002966101694874,-0.003571428571404,-0.012711864406777,-0.000000000000000,0.012590799031473,0.000000000000000,0.003087167070178,0.003571428571404,2 +8850,8863,8865,8878,-0.169642857142808,0.306991525423693,-0.171428571428512,0.314769975786868,-0.167857142857105,0.311743341404339,-0.169642857142809,0.319521791767514,-0.002966101694877,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656169,0.000000000000000,0.003087167070181,0.003571428571407,2 +8851,8864,8866,8879,-0.166071428571395,0.304025423728811,-0.167857142857105,0.311743341404339,-0.164285714285684,0.308716707021799,-0.166071428571395,0.316434624697328,-0.002966101694888,-0.003571428571421,-0.012469733656169,-0.000000000000000,0.012348668280865,0.000000000000000,0.003087167070193,0.003571428571421,2 +8852,8865,8867,8880,-0.162499999999982,0.301059322033929,-0.164285714285684,0.308716707021799,-0.160714285714279,0.305690072639272,-0.162499999999982,0.313347457627142,-0.002966101694875,-0.003571428571405,-0.012348668280865,-0.000000000000000,0.012227602905561,0.000000000000000,0.003087167070179,0.003571428571405,2 +8853,8866,8868,8881,-0.158928571428565,0.298093220339044,-0.160714285714279,0.305690072639272,-0.157142857142850,0.302663438256725,-0.158928571428565,0.310260290556953,-0.002966101694895,-0.003571428571429,-0.012227602905561,-0.000000000000000,0.012106537530256,0.000000000000000,0.003087167070200,0.003571428571429,2 +8854,8867,8869,8882,-0.155357142857136,0.295127118644150,-0.157142857142850,0.302663438256725,-0.153571428571423,0.299636803874179,-0.155357142857136,0.307173123486754,-0.002966101694893,-0.003571428571427,-0.012106537530256,-0.000000000000000,0.011985472154951,0.000000000000000,0.003087167070198,0.003571428571427,2 +8855,8868,8883,10212,-0.151785714285711,0.292161016949259,-0.153571428571423,0.299636803874179,-0.151785714285711,0.304085956416558,-0.150000000000000,0.296610169491638,-0.002966101694890,-0.003571428571423,-0.011985472154951,-0.000000000000000,0.003087167070194,0.003571428571423,0.011864406779647,-0.000000000000000,2 +2297,8856,8871,8884,-0.200000000000000,0.352542372881227,-0.198214285714291,0.344219128329155,-0.196428571428583,0.349394673123383,-0.198214285714291,0.357717917675454,-0.013559322033954,-0.000000000000000,-0.003087167070189,-0.003571428571417,0.013438256658645,0.000000000000000,0.003208232445498,0.003571428571417,2 +8857,8870,8872,8885,-0.194642857142864,0.341131961258957,-0.196428571428583,0.349394673123383,-0.192857142857145,0.346246973365521,-0.194642857142864,0.354509685229947,-0.003087167070207,-0.003571428571438,-0.013438256658645,-0.000000000000000,0.013317191283336,0.000000000000000,0.003208232445517,0.003571428571438,2 +8858,8871,8873,8886,-0.191071428571419,0.338044794188744,-0.192857142857145,0.346246973365521,-0.189285714285694,0.343099273607647,-0.191071428571419,0.351301452784424,-0.003087167070219,-0.003571428571451,-0.013317191283336,-0.000000000000000,0.013196125908026,0.000000000000000,0.003208232445528,0.003571428571451,2 +8859,8872,8874,8887,-0.187499999999963,0.334957627118520,-0.189285714285694,0.343099273607647,-0.185714285714231,0.339951573849764,-0.187499999999963,0.348093220338891,-0.003087167070228,-0.003571428571462,-0.013196125908026,-0.000000000000000,0.013075060532716,0.000000000000000,0.003208232445539,0.003571428571462,2 +8860,8873,8875,8888,-0.183928571428507,0.331870460048298,-0.185714285714231,0.339951573849764,-0.182142857142783,0.336803874091892,-0.183928571428507,0.344884987893359,-0.003087167070217,-0.003571428571449,-0.013075060532716,-0.000000000000000,0.012953995157406,-0.000000000000000,0.003208232445526,0.003571428571449,2 +8861,8874,8876,8889,-0.180357142857065,0.328783292978087,-0.182142857142783,0.336803874091892,-0.178571428571347,0.333656174334032,-0.180357142857065,0.341676755447838,-0.003087167070205,-0.003571428571436,-0.012953995157406,0.000000000000000,0.012832929782096,0.000000000000000,0.003208232445515,0.003571428571436,2 +8862,8875,8877,8890,-0.176785714285631,0.325696125907883,-0.178571428571347,0.333656174334032,-0.174999999999916,0.330508474576176,-0.176785714285631,0.338468523002325,-0.003087167070201,-0.003571428571431,-0.012832929782096,-0.000000000000000,0.012711864406787,0.000000000000000,0.003208232445510,0.003571428571431,2 +8863,8876,8878,8891,-0.173214285714214,0.322608958837694,-0.174999999999916,0.330508474576176,-0.171428571428512,0.327360774818344,-0.173214285714214,0.335260290556827,-0.003087167070178,-0.003571428571404,-0.012711864406787,-0.000000000000000,0.012590799031479,-0.000000000000000,0.003208232445486,0.003571428571404,2 +8864,8877,8879,8892,-0.169642857142809,0.319521791767514,-0.171428571428512,0.327360774818344,-0.167857142857105,0.324213075060510,-0.169642857142808,0.332052058111339,-0.003087167070181,-0.003571428571407,-0.012590799031479,0.000000000000000,0.012469733656171,0.000000000000000,0.003208232445489,0.003571428571407,2 +8865,8878,8880,8893,-0.166071428571395,0.316434624697328,-0.167857142857105,0.324213075060510,-0.164285714285684,0.321065375302663,-0.166071428571395,0.328843825665844,-0.003087167070193,-0.003571428571421,-0.012469733656171,-0.000000000000000,0.012348668280862,0.000000000000000,0.003208232445501,0.003571428571421,2 +8866,8879,8881,8894,-0.162499999999982,0.313347457627142,-0.164285714285684,0.321065375302663,-0.160714285714279,0.317917675544830,-0.162499999999982,0.325635593220350,-0.003087167070179,-0.003571428571405,-0.012348668280862,-0.000000000000000,0.012227602905554,-0.000000000000000,0.003208232445487,0.003571428571405,2 +8867,8880,8882,8895,-0.158928571428565,0.310260290556953,-0.160714285714279,0.317917675544830,-0.157142857142850,0.314769975786975,-0.158928571428564,0.322427360774852,-0.003087167070200,-0.003571428571429,-0.012227602905554,0.000000000000000,0.012106537530245,0.000000000000000,0.003208232445509,0.003571428571429,2 +8868,8881,8883,8896,-0.155357142857136,0.307173123486754,-0.157142857142850,0.314769975786975,-0.153571428571423,0.311622276029123,-0.155357142857136,0.319219128329344,-0.003087167070198,-0.003571428571427,-0.012106537530245,-0.000000000000000,0.011985472154936,0.000000000000000,0.003208232445507,0.003571428571427,2 +8869,8882,8897,10213,-0.151785714285711,0.304085956416558,-0.153571428571423,0.311622276029123,-0.151785714285711,0.316010895883839,-0.150000000000000,0.308474576271274,-0.003087167070194,-0.003571428571423,-0.011985472154936,-0.000000000000000,0.003208232445503,0.003571428571423,0.011864406779627,-0.000000000000000,2 +2298,8870,8885,8898,-0.200000000000000,0.366101694915163,-0.198214285714291,0.357717917675454,-0.196428571428583,0.362832929782012,-0.198214285714291,0.371216707021720,-0.013559322033918,-0.000000000000000,-0.003208232445498,-0.003571428571417,0.013438256658613,0.000000000000000,0.003329297820803,0.003571428571417,2 +8871,8884,8886,8899,-0.194642857142864,0.354509685229947,-0.196428571428583,0.362832929782012,-0.192857142857145,0.359564164648842,-0.194642857142864,0.367887409200907,-0.003208232445517,-0.003571428571438,-0.013438256658613,-0.000000000000000,0.013317191283307,0.000000000000000,0.003329297820822,0.003571428571438,2 +8872,8885,8887,8900,-0.191071428571419,0.351301452784424,-0.192857142857145,0.359564164648842,-0.189285714285694,0.356295399515661,-0.191071428571419,0.364558111380079,-0.003208232445528,-0.003571428571451,-0.013317191283307,-0.000000000000000,0.013196125908002,-0.000000000000000,0.003329297820834,0.003571428571451,2 +8873,8886,8888,8901,-0.187499999999963,0.348093220338891,-0.189285714285694,0.356295399515661,-0.185714285714231,0.353026634382469,-0.187499999999963,0.361228813559239,-0.003208232445539,-0.003571428571462,-0.013196125908002,0.000000000000000,0.013075060532695,0.000000000000000,0.003329297820845,0.003571428571462,2 +8874,8887,8889,8902,-0.183928571428507,0.344884987893359,-0.185714285714231,0.353026634382469,-0.182142857142783,0.349757869249290,-0.183928571428507,0.357899515738401,-0.003208232445526,-0.003571428571449,-0.013075060532695,-0.000000000000000,0.012953995157389,0.000000000000000,0.003329297820832,0.003571428571449,2 +8875,8888,8890,8903,-0.180357142857065,0.341676755447838,-0.182142857142783,0.349757869249290,-0.178571428571347,0.346489104116122,-0.180357142857065,0.354570217917574,-0.003208232445515,-0.003571428571436,-0.012953995157389,-0.000000000000000,0.012832929782084,0.000000000000000,0.003329297820821,0.003571428571436,2 +8876,8889,8891,8904,-0.176785714285631,0.338468523002325,-0.178571428571347,0.346489104116122,-0.174999999999916,0.343220338982959,-0.176785714285631,0.351240920096756,-0.003208232445510,-0.003571428571431,-0.012832929782084,-0.000000000000000,0.012711864406778,0.000000000000000,0.003329297820816,0.003571428571431,2 +8877,8890,8892,8905,-0.173214285714214,0.335260290556827,-0.174999999999916,0.343220338982959,-0.171428571428512,0.339951573849821,-0.173214285714214,0.347911622275953,-0.003208232445486,-0.003571428571404,-0.012711864406778,-0.000000000000000,0.012590799031474,0.000000000000000,0.003329297820790,0.003571428571404,2 +8878,8891,8893,8906,-0.169642857142808,0.332052058111339,-0.171428571428512,0.339951573849821,-0.167857142857105,0.336682808716680,-0.169642857142808,0.344582324455161,-0.003208232445489,-0.003571428571407,-0.012590799031474,-0.000000000000000,0.012469733656169,0.000000000000000,0.003329297820794,0.003571428571407,2 +8879,8892,8894,8907,-0.166071428571395,0.328843825665844,-0.167857142857105,0.336682808716680,-0.164285714285684,0.333414043583526,-0.166071428571395,0.341253026634361,-0.003208232445501,-0.003571428571421,-0.012469733656169,-0.000000000000000,0.012348668280865,0.000000000000000,0.003329297820806,0.003571428571421,2 +8880,8893,8895,8908,-0.162499999999982,0.325635593220350,-0.164285714285684,0.333414043583526,-0.160714285714279,0.330145278450386,-0.162499999999982,0.337923728813562,-0.003208232445487,-0.003571428571405,-0.012348668280865,-0.000000000000000,0.012227602905560,0.000000000000000,0.003329297820792,0.003571428571405,2 +8881,8894,8896,8909,-0.158928571428564,0.322427360774852,-0.160714285714279,0.330145278450386,-0.157142857142850,0.326876513317225,-0.158928571428564,0.334594430992759,-0.003208232445509,-0.003571428571429,-0.012227602905560,-0.000000000000000,0.012106537530255,0.000000000000000,0.003329297820814,0.003571428571429,2 +8882,8895,8897,8910,-0.155357142857136,0.319219128329344,-0.157142857142850,0.326876513317225,-0.153571428571423,0.323607748184065,-0.155357142857136,0.331265133171946,-0.003208232445507,-0.003571428571427,-0.012106537530255,-0.000000000000000,0.011985472154950,0.000000000000000,0.003329297820812,0.003571428571427,2 +8883,8896,8911,10214,-0.151785714285711,0.316010895883839,-0.153571428571423,0.323607748184065,-0.151785714285711,0.327935835351136,-0.150000000000000,0.320338983050910,-0.003208232445503,-0.003571428571423,-0.011985472154950,-0.000000000000000,0.003329297820808,0.003571428571423,0.011864406779645,-0.000000000000000,2 +2299,8884,8899,8912,-0.200000000000000,0.379661016949095,-0.198214285714291,0.371216707021720,-0.196428571428583,0.376271186440638,-0.198214285714291,0.384715496368012,-0.013559322033946,-0.000000000000000,-0.003329297820803,-0.003571428571417,0.013438256658639,0.000000000000000,0.003450363196111,0.003571428571417,2 +8885,8898,8900,8913,-0.194642857142864,0.367887409200907,-0.196428571428583,0.376271186440638,-0.192857142857145,0.372881355932161,-0.194642857142864,0.381265133171891,-0.003329297820822,-0.003571428571438,-0.013438256658639,-0.000000000000000,0.013317191283330,0.000000000000000,0.003450363196131,0.003571428571438,2 +8886,8899,8901,8914,-0.191071428571419,0.364558111380079,-0.192857142857145,0.372881355932161,-0.189285714285694,0.369491525423672,-0.191071428571419,0.377814769975754,-0.003329297820834,-0.003571428571451,-0.013317191283330,-0.000000000000000,0.013196125908021,0.000000000000000,0.003450363196144,0.003571428571451,2 +8887,8900,8902,8915,-0.187499999999963,0.361228813559239,-0.189285714285694,0.369491525423672,-0.185714285714231,0.366101694915173,-0.187499999999963,0.374364406779605,-0.003329297820845,-0.003571428571462,-0.013196125908021,-0.000000000000000,0.013075060532712,0.000000000000000,0.003450363196154,0.003571428571462,2 +8888,8901,8903,8916,-0.183928571428507,0.357899515738401,-0.185714285714231,0.366101694915173,-0.182142857142783,0.362711864406686,-0.183928571428507,0.370914043583458,-0.003329297820832,-0.003571428571449,-0.013075060532712,-0.000000000000000,0.012953995157402,0.000000000000000,0.003450363196141,0.003571428571449,2 +8889,8902,8904,8917,-0.180357142857065,0.354570217917574,-0.182142857142783,0.362711864406686,-0.178571428571347,0.359322033898211,-0.180357142857065,0.367463680387323,-0.003329297820821,-0.003571428571436,-0.012953995157402,-0.000000000000000,0.012832929782094,0.000000000000000,0.003450363196129,0.003571428571436,2 +8890,8903,8905,8918,-0.176785714285631,0.351240920096756,-0.178571428571347,0.359322033898211,-0.174999999999916,0.355932203389741,-0.176785714285631,0.364013317191196,-0.003329297820816,-0.003571428571431,-0.012832929782094,-0.000000000000000,0.012711864406786,0.000000000000000,0.003450363196124,0.003571428571431,2 +8891,8904,8906,8919,-0.173214285714214,0.347911622275953,-0.174999999999916,0.355932203389741,-0.171428571428512,0.352542372881297,-0.173214285714214,0.360562953995085,-0.003329297820790,-0.003571428571404,-0.012711864406786,-0.000000000000000,0.012590799031478,0.000000000000000,0.003450363196098,0.003571428571404,2 +8892,8905,8907,8920,-0.169642857142808,0.344582324455161,-0.171428571428512,0.352542372881297,-0.167857142857105,0.349152542372850,-0.169642857142808,0.357112590798985,-0.003329297820794,-0.003571428571407,-0.012590799031478,-0.000000000000000,0.012469733656171,0.000000000000000,0.003450363196101,0.003571428571407,2 +8893,8906,8908,8921,-0.166071428571395,0.341253026634361,-0.167857142857105,0.349152542372850,-0.164285714285684,0.345762711864389,-0.166071428571395,0.353662227602878,-0.003329297820806,-0.003571428571421,-0.012469733656171,-0.000000000000000,0.012348668280862,0.000000000000000,0.003450363196114,0.003571428571421,2 +8894,8907,8909,8922,-0.162499999999982,0.337923728813562,-0.164285714285684,0.345762711864389,-0.160714285714279,0.342372881355944,-0.162499999999982,0.350211864406771,-0.003329297820792,-0.003571428571405,-0.012348668280862,-0.000000000000000,0.012227602905555,0.000000000000000,0.003450363196099,0.003571428571405,2 +8895,8908,8910,8923,-0.158928571428564,0.334594430992759,-0.160714285714279,0.342372881355944,-0.157142857142850,0.338983050847476,-0.158928571428564,0.346761501210660,-0.003329297820814,-0.003571428571429,-0.012227602905555,-0.000000000000000,0.012106537530247,0.000000000000000,0.003450363196123,0.003571428571429,2 +8896,8909,8911,8924,-0.155357142857136,0.331265133171946,-0.157142857142850,0.338983050847476,-0.153571428571423,0.335593220339010,-0.155357142857136,0.343311138014539,-0.003329297820812,-0.003571428571427,-0.012106537530247,-0.000000000000000,0.011985472154938,0.000000000000000,0.003450363196120,0.003571428571427,2 +8897,8910,8925,10215,-0.151785714285711,0.327935835351136,-0.153571428571423,0.335593220339010,-0.151785714285711,0.339860774818421,-0.150000000000000,0.332203389830547,-0.003329297820808,-0.003571428571423,-0.011985472154938,-0.000000000000000,0.003450363196116,0.003571428571423,0.011864406779630,-0.000000000000000,2 +2300,8099,8898,8913,-0.200000000000000,0.393220338983034,-0.198214285714291,0.398214285714291,-0.198214285714291,0.384715496368012,-0.196428571428583,0.389709443099270,-0.013559322033932,0.000000000000000,0.003571428571417,0.003571428571417,-0.003450363196111,-0.003571428571417,0.013438256658626,-0.000000000000000,2 +8098,8899,8912,8914,-0.194642857142864,0.394642857142864,-0.194642857142864,0.381265133171891,-0.196428571428583,0.389709443099270,-0.192857142857145,0.386198547215485,0.003571428571438,0.003571428571438,-0.003450363196131,-0.003571428571438,-0.013438256658626,0.000000000000000,0.013317191283319,-0.000000000000000,2 +8097,8900,8913,8915,-0.191071428571419,0.391071428571419,-0.191071428571419,0.377814769975754,-0.192857142857145,0.386198547215485,-0.189285714285694,0.382687651331688,0.003571428571451,0.003571428571451,-0.003450363196144,-0.003571428571451,-0.013317191283319,0.000000000000000,0.013196125908011,0.000000000000000,2 +8096,8901,8914,8916,-0.187499999999963,0.387499999999963,-0.187499999999963,0.374364406779605,-0.189285714285694,0.382687651331688,-0.185714285714231,0.379176755447880,0.003571428571462,0.003571428571462,-0.003450363196154,-0.003571428571462,-0.013196125908011,-0.000000000000000,0.013075060532703,-0.000000000000000,2 +8095,8902,8915,8917,-0.183928571428507,0.383928571428507,-0.183928571428507,0.370914043583458,-0.185714285714231,0.379176755447880,-0.182142857142783,0.375665859564085,0.003571428571449,0.003571428571449,-0.003450363196141,-0.003571428571449,-0.013075060532703,0.000000000000000,0.012953995157396,-0.000000000000000,2 +8094,8903,8916,8918,-0.180357142857065,0.380357142857065,-0.180357142857065,0.367463680387323,-0.182142857142783,0.375665859564085,-0.178571428571347,0.372154963680302,0.003571428571436,0.003571428571436,-0.003450363196129,-0.003571428571436,-0.012953995157396,0.000000000000000,0.012832929782089,-0.000000000000000,2 +8093,8904,8917,8919,-0.176785714285631,0.376785714285631,-0.176785714285631,0.364013317191196,-0.178571428571347,0.372154963680302,-0.174999999999916,0.368644067796525,0.003571428571431,0.003571428571431,-0.003450363196124,-0.003571428571431,-0.012832929782089,0.000000000000000,0.012711864406782,-0.000000000000000,2 +8092,8905,8918,8920,-0.173214285714214,0.373214285714214,-0.173214285714214,0.360562953995085,-0.174999999999916,0.368644067796525,-0.171428571428512,0.365133171912774,0.003571428571404,0.003571428571404,-0.003450363196098,-0.003571428571404,-0.012711864406782,0.000000000000000,0.012590799031476,0.000000000000000,2 +8091,8906,8919,8921,-0.169642857142809,0.369642857142809,-0.169642857142808,0.357112590798985,-0.171428571428512,0.365133171912774,-0.167857142857105,0.361622276029020,0.003571428571407,0.003571428571407,-0.003450363196101,-0.003571428571407,-0.012590799031476,-0.000000000000000,0.012469733656170,-0.000000000000000,2 +8090,8907,8920,8922,-0.166071428571395,0.366071428571395,-0.166071428571395,0.353662227602878,-0.167857142857105,0.361622276029020,-0.164285714285684,0.358111380145252,0.003571428571421,0.003571428571421,-0.003450363196114,-0.003571428571421,-0.012469733656170,0.000000000000000,0.012348668280864,-0.000000000000000,2 +8089,8908,8921,8923,-0.162499999999982,0.362499999999982,-0.162499999999982,0.350211864406771,-0.164285714285684,0.358111380145252,-0.160714285714279,0.354600484261500,0.003571428571405,0.003571428571405,-0.003450363196099,-0.003571428571405,-0.012348668280864,0.000000000000000,0.012227602905558,-0.000000000000000,2 +8088,8909,8922,8924,-0.158928571428564,0.358928571428564,-0.158928571428564,0.346761501210660,-0.160714285714279,0.354600484261500,-0.157142857142850,0.351089588377724,0.003571428571429,0.003571428571429,-0.003450363196123,-0.003571428571429,-0.012227602905558,0.000000000000000,0.012106537530251,-0.000000000000000,2 +8087,8910,8923,8925,-0.155357142857136,0.355357142857136,-0.155357142857136,0.343311138014539,-0.157142857142850,0.351089588377724,-0.153571428571423,0.347578692493951,0.003571428571427,0.003571428571427,-0.003450363196120,-0.003571428571427,-0.012106537530251,0.000000000000000,0.011985472154944,-0.000000000000000,2 +8086,8911,8924,10216,-0.151785714285711,0.351785714285711,-0.151785714285711,0.339860774818421,-0.153571428571423,0.347578692493951,-0.150000000000000,0.344067796610181,0.003571428571423,0.003571428571423,-0.003450363196116,-0.003571428571423,-0.011985472154944,0.000000000000000,0.011864406779637,-0.000000000000000,2 +8113,8927,8955,10158,-0.151785714285711,-0.351785714285711,-0.141317733990164,-0.351785714285711,-0.148275862068970,-0.353571428571423,-0.144827586206906,-0.350000000000000,-0.003571428571423,0.003571428571423,0.003571428571423,-0.003325123152705,0.000000000000000,-0.010591133004906,0.000000000000000,0.010344827586188,2 +8926,8928,8956,10217,-0.141317733990164,-0.351785714285711,-0.130849753694628,-0.351785714285711,-0.137684729064069,-0.353571428571422,-0.134482758620723,-0.350000000000000,-0.003571428571423,0.003325123152705,0.003571428571422,-0.003078817733987,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 +8927,8929,8957,10276,-0.130849753694628,-0.351785714285711,-0.120381773399077,-0.351785714285711,-0.127093596059167,-0.353571428571422,-0.124137931034539,-0.350000000000000,-0.003571428571422,0.003078817733987,0.003571428571422,-0.002832512315269,0.000000000000000,-0.010591133004910,0.000000000000000,0.010344827586192,2 +8928,8930,8958,10335,-0.120381773399077,-0.351785714285711,-0.109913793103539,-0.351785714285711,-0.116502463054263,-0.353571428571422,-0.113793103448353,-0.350000000000000,-0.003571428571422,0.002832512315269,0.003571428571422,-0.002586206896550,0.000000000000000,-0.010591133004898,0.000000000000000,0.010344827586179,2 +8929,8931,8959,10394,-0.109913793103539,-0.351785714285711,-0.099445812808002,-0.351785714285711,-0.105911330049366,-0.353571428571422,-0.103448275862175,-0.350000000000000,-0.003571428571422,0.002586206896550,0.003571428571422,-0.002339901477832,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 +8930,8932,8960,10453,-0.099445812808002,-0.351785714285711,-0.088977832512466,-0.351785714285711,-0.095320197044471,-0.353571428571421,-0.093103448275998,-0.350000000000000,-0.003571428571422,0.002339901477832,0.003571428571421,-0.002093596059115,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 +8931,8933,8961,10512,-0.088977832512466,-0.351785714285711,-0.078509852216930,-0.351785714285710,-0.084729064039576,-0.353571428571421,-0.082758620689820,-0.350000000000000,-0.003571428571421,0.002093596059115,0.003571428571421,-0.001847290640397,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 +8932,8934,8962,10571,-0.078509852216930,-0.351785714285710,-0.068041871921394,-0.351785714285710,-0.074137931034681,-0.353571428571421,-0.072413793103643,-0.350000000000000,-0.003571428571421,0.001847290640397,0.003571428571421,-0.001600985221679,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 +8933,8935,8963,10630,-0.068041871921394,-0.351785714285710,-0.057573891625857,-0.351785714285710,-0.063546798029785,-0.353571428571420,-0.062068965517465,-0.350000000000000,-0.003571428571421,0.001600985221679,0.003571428571420,-0.001354679802961,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 +8934,8936,8964,10689,-0.057573891625857,-0.351785714285710,-0.047105911330321,-0.351785714285710,-0.052955665024890,-0.353571428571420,-0.051724137931288,-0.350000000000000,-0.003571428571420,0.001354679802961,0.003571428571420,-0.001108374384243,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 +8935,8937,8965,10748,-0.047105911330321,-0.351785714285710,-0.036637931034781,-0.351785714285710,-0.042364532019993,-0.353571428571420,-0.041379310345109,-0.350000000000000,-0.003571428571420,0.001108374384243,0.003571428571420,-0.000862068965526,0.000000000000000,-0.010591133004898,0.000000000000000,0.010344827586182,2 +8936,8938,8966,10807,-0.036637931034781,-0.351785714285710,-0.026169950739244,-0.351785714285710,-0.031773399015096,-0.353571428571420,-0.031034482758929,-0.350000000000000,-0.003571428571420,0.000862068965526,0.003571428571419,-0.000615763546809,0.000000000000000,-0.010591133004896,0.000000000000000,0.010344827586179,2 +8937,8939,8967,10866,-0.026169950739244,-0.351785714285710,-0.015701970443707,-0.351785714285710,-0.021182266010200,-0.353571428571419,-0.020689655172751,-0.350000000000000,-0.003571428571419,0.000615763546809,0.003571428571419,-0.000369458128091,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 +8938,8940,8968,10925,-0.015701970443707,-0.351785714285710,-0.005233990148171,-0.351785714285709,-0.010591133005305,-0.353571428571419,-0.010344827586573,-0.350000000000000,-0.003571428571419,0.000369458128091,0.003571428571419,-0.000123152709373,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 +8939,8941,8969,10984,-0.005233990148171,-0.351785714285709,0.005233990147395,-0.351785714285709,-0.000000000000395,-0.353571428571419,-0.000000000000381,-0.350000000000000,-0.003571428571419,0.000123152709373,0.003571428571419,0.000123152709345,0.000000000000000,-0.010591133004925,0.000000000000000,0.010344827586207,2 +8940,8942,8970,11043,0.005233990147395,-0.351785714285709,0.015701970442990,-0.351785714285709,0.010591133004545,-0.353571428571418,0.010344827585840,-0.350000000000000,-0.003571428571419,-0.000123152709345,0.003571428571418,0.000369458128064,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586236,2 +8941,8943,8971,11102,0.015701970442990,-0.351785714285709,0.026169950738586,-0.351785714285709,0.021182266009500,-0.353571428571418,0.020689655172076,-0.350000000000000,-0.003571428571418,-0.000369458128064,0.003571428571418,0.000615763546784,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586236,2 +8942,8944,8972,11161,0.026169950738586,-0.351785714285709,0.036637931034179,-0.351785714285709,0.031773399014454,-0.353571428571418,0.031034482758311,-0.350000000000000,-0.003571428571418,-0.000615763546784,0.003571428571418,0.000862068965503,0.000000000000000,-0.010591133004952,0.000000000000000,0.010344827586233,2 +8943,8945,8973,11220,0.036637931034179,-0.351785714285709,0.047105911329771,-0.351785714285709,0.042364532019406,-0.353571428571418,0.041379310344544,-0.350000000000000,-0.003571428571418,-0.000862068965503,0.003571428571417,0.001108374384222,0.000000000000000,-0.010591133004952,0.000000000000000,0.010344827586233,2 +8944,8946,8974,11279,0.047105911329771,-0.351785714285709,0.057573891625364,-0.351785714285709,0.052955665024359,-0.353571428571417,0.051724137930777,-0.350000000000000,-0.003571428571417,-0.001108374384222,0.003571428571417,0.001354679802942,0.000000000000000,-0.010591133004953,0.000000000000000,0.010344827586233,2 +8945,8947,8975,11338,0.057573891625364,-0.351785714285709,0.068041871920958,-0.351785714285708,0.063546798029312,-0.353571428571417,0.062068965517010,-0.350000000000000,-0.003571428571417,-0.001354679802942,0.003571428571417,0.001600985221661,0.000000000000000,-0.010591133004954,0.000000000000000,0.010344827586235,2 +8946,8948,8976,11397,0.068041871920958,-0.351785714285708,0.078509852216554,-0.351785714285708,0.074137931034267,-0.353571428571417,0.072413793103246,-0.350000000000000,-0.003571428571417,-0.001600985221661,0.003571428571417,0.001847290640380,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586237,2 +8947,8949,8977,11456,0.078509852216554,-0.351785714285708,0.088977832512149,-0.351785714285708,0.084729064039222,-0.353571428571416,0.082758620689482,-0.350000000000000,-0.003571428571417,-0.001847290640380,0.003571428571416,0.002093596059099,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586236,2 +8948,8950,8978,11515,0.088977832512149,-0.351785714285708,0.099445812807745,-0.351785714285708,0.095320197044176,-0.353571428571416,0.093103448275718,-0.350000000000000,-0.003571428571416,-0.002093596059099,0.003571428571416,0.002339901477818,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586236,2 +8949,8951,8979,11574,0.099445812807745,-0.351785714285708,0.109913793103328,-0.351785714285708,0.105911330049126,-0.353571428571416,0.103448275861948,-0.350000000000000,-0.003571428571416,-0.002339901477818,0.003571428571416,0.002586206896538,0.000000000000000,-0.010591133004943,0.000000000000000,0.010344827586224,2 +8950,8952,8980,11633,0.109913793103328,-0.351785714285708,0.120381773398920,-0.351785714285708,0.116502463054073,-0.353571428571416,0.113793103448176,-0.350000000000000,-0.003571428571416,-0.002586206896538,0.003571428571415,0.002832512315257,0.000000000000000,-0.010591133004952,0.000000000000000,0.010344827586232,2 +8951,8953,8981,11692,0.120381773398920,-0.351785714285708,0.130849753694516,-0.351785714285708,0.127093596059026,-0.353571428571415,0.124137931034410,-0.350000000000000,-0.003571428571415,-0.002832512315257,0.003571428571415,0.003078817733976,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586236,2 +8952,8954,8982,11751,0.130849753694516,-0.351785714285708,0.141317733990111,-0.351785714285707,0.137684729063981,-0.353571428571415,0.134482758620646,-0.350000000000000,-0.003571428571415,-0.003078817733976,0.003571428571415,0.003325123152695,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586236,2 +8953,8983,10099,11810,0.141317733990111,-0.351785714285707,0.148275862068937,-0.353571428571415,0.151785714285707,-0.351785714285707,0.144827586206882,-0.350000000000000,-0.003571428571415,-0.003325123152695,0.000000000000000,-0.010591133004955,0.003571428571415,0.003571428571415,-0.000000000000000,0.010344827586236,2 +8112,8926,8956,8984,-0.155357142857136,-0.355357142857136,-0.148275862068970,-0.353571428571423,-0.144642857142871,-0.355357142857136,-0.151724137931037,-0.357142857142850,-0.003571428571427,0.003571428571427,-0.000000000000000,0.010591133004906,0.003571428571427,-0.003325123152708,-0.000000000000000,-0.010837438423625,2 +8927,8955,8957,8985,-0.137684729064069,-0.353571428571422,-0.144642857142871,-0.355357142857136,-0.133928571428616,-0.355357142857136,-0.140886699507418,-0.357142857142850,-0.000000000000000,0.010591133004895,-0.003571428571427,0.003325123152708,0.003571428571428,-0.003078817733990,0.000000000000000,-0.010837438423614,2 +8928,8956,8958,8986,-0.127093596059167,-0.353571428571422,-0.133928571428616,-0.355357142857136,-0.123214285714347,-0.355357142857136,-0.130049261083797,-0.357142857142850,-0.000000000000000,0.010591133004910,-0.003571428571428,0.003078817733990,0.003571428571428,-0.002832512315271,-0.000000000000000,-0.010837438423629,2 +8929,8957,8959,8987,-0.116502463054263,-0.353571428571422,-0.123214285714347,-0.355357142857136,-0.112500000000089,-0.355357142857136,-0.119211822660174,-0.357142857142850,-0.000000000000000,0.010591133004898,-0.003571428571428,0.002832512315271,0.003571428571428,-0.002586206896551,-0.000000000000000,-0.010837438423618,2 +8930,8958,8960,8988,-0.105911330049366,-0.353571428571422,-0.112500000000089,-0.355357142857136,-0.101785714285835,-0.355357142857135,-0.108374384236558,-0.357142857142850,-0.000000000000000,0.010591133004895,-0.003571428571428,0.002586206896551,0.003571428571428,-0.002339901477833,0.000000000000000,-0.010837438423614,2 +8931,8959,8961,8989,-0.095320197044471,-0.353571428571421,-0.101785714285835,-0.355357142857135,-0.091071428571580,-0.355357142857135,-0.097536945812944,-0.357142857142849,-0.000000000000000,0.010591133004895,-0.003571428571428,0.002339901477833,0.003571428571428,-0.002093596059114,-0.000000000000000,-0.010837438423614,2 +8932,8960,8962,8990,-0.084729064039576,-0.353571428571421,-0.091071428571580,-0.355357142857135,-0.080357142857326,-0.355357142857135,-0.086699507389330,-0.357142857142850,-0.000000000000000,0.010591133004895,-0.003571428571428,0.002093596059114,0.003571428571429,-0.001847290640395,-0.000000000000000,-0.010837438423614,2 +8933,8961,8963,8991,-0.074137931034681,-0.353571428571421,-0.080357142857326,-0.355357142857135,-0.069642857143071,-0.355357142857135,-0.075862068965717,-0.357142857142850,-0.000000000000000,0.010591133004895,-0.003571428571429,0.001847290640395,0.003571428571429,-0.001600985221677,0.000000000000000,-0.010837438423614,2 +8934,8962,8964,8992,-0.063546798029785,-0.353571428571420,-0.069642857143071,-0.355357142857135,-0.058928571428817,-0.355357142857135,-0.065024630542103,-0.357142857142849,-0.000000000000000,0.010591133004895,-0.003571428571429,0.001600985221677,0.003571428571429,-0.001354679802958,0.000000000000000,-0.010837438423614,2 +8935,8963,8965,8993,-0.052955665024890,-0.353571428571420,-0.058928571428817,-0.355357142857135,-0.048214285714562,-0.355357142857135,-0.054187192118489,-0.357142857142849,-0.000000000000000,0.010591133004895,-0.003571428571429,0.001354679802958,0.003571428571430,-0.001108374384239,-0.000000000000000,-0.010837438423614,2 +8936,8964,8966,8994,-0.042364532019993,-0.353571428571420,-0.048214285714562,-0.355357142857135,-0.037500000000305,-0.355357142857135,-0.043349753694874,-0.357142857142849,-0.000000000000000,0.010591133004898,-0.003571428571430,0.001108374384239,0.003571428571430,-0.000862068965521,-0.000000000000000,-0.010837438423616,2 +8937,8965,8967,8995,-0.031773399015096,-0.353571428571420,-0.037500000000305,-0.355357142857135,-0.026785714286050,-0.355357142857134,-0.032512315271258,-0.357142857142849,-0.000000000000000,0.010591133004896,-0.003571428571430,0.000862068965521,0.003571428571430,-0.000615763546803,-0.000000000000000,-0.010837438423615,2 +8938,8966,8968,8996,-0.021182266010200,-0.353571428571419,-0.026785714286050,-0.355357142857134,-0.016071428571795,-0.355357142857134,-0.021674876847644,-0.357142857142849,-0.000000000000000,0.010591133004895,-0.003571428571430,0.000615763546803,0.003571428571430,-0.000369458128084,0.000000000000000,-0.010837438423614,2 +8939,8967,8969,8997,-0.010591133005305,-0.353571428571419,-0.016071428571795,-0.355357142857134,-0.005357142857541,-0.355357142857134,-0.010837438424030,-0.357142857142849,-0.000000000000000,0.010591133004895,-0.003571428571430,0.000369458128084,0.003571428571431,-0.000123152709366,-0.000000000000000,-0.010837438423614,2 +8940,8968,8970,8998,-0.000000000000395,-0.353571428571419,-0.005357142857541,-0.355357142857134,0.005357142856744,-0.355357142857134,-0.000000000000401,-0.357142857142849,-0.000000000000000,0.010591133004925,-0.003571428571431,0.000123152709366,0.003571428571431,0.000123152709354,-0.000000000000000,-0.010837438423644,2 +8941,8969,8971,8999,0.010591133004545,-0.353571428571418,0.005357142856744,-0.355357142857134,0.016071428571059,-0.355357142857134,0.010837438423258,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571431,-0.000123152709354,0.003571428571431,0.000369458128073,-0.000000000000000,-0.010837438423675,2 +8942,8970,8972,9000,0.021182266009500,-0.353571428571418,0.016071428571059,-0.355357142857134,0.026785714285374,-0.355357142857134,0.021674876846934,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571431,-0.000369458128073,0.003571428571431,0.000615763546793,-0.000000000000000,-0.010837438423675,2 +8943,8971,8973,9001,0.031773399014454,-0.353571428571418,0.026785714285374,-0.355357142857134,0.037499999999687,-0.355357142857133,0.032512315270607,-0.357142857142849,-0.000000000000000,0.010591133004952,-0.003571428571431,-0.000615763546793,0.003571428571432,0.000862068965514,-0.000000000000000,-0.010837438423673,2 +8944,8972,8974,9002,0.042364532019406,-0.353571428571418,0.037499999999687,-0.355357142857133,0.048214285713999,-0.355357142857133,0.043349753694280,-0.357142857142849,-0.000000000000000,0.010591133004952,-0.003571428571432,-0.000862068965514,0.003571428571432,0.001108374384234,-0.000000000000000,-0.010837438423673,2 +8945,8973,8975,9003,0.052955665024359,-0.353571428571417,0.048214285713999,-0.355357142857133,0.058928571428312,-0.355357142857133,0.054187192117953,-0.357142857142849,-0.000000000000000,0.010591133004953,-0.003571428571432,-0.001108374384234,0.003571428571432,0.001354679802954,0.000000000000000,-0.010837438423673,2 +8946,8974,8976,9004,0.063546798029312,-0.353571428571417,0.058928571428312,-0.355357142857133,0.069642857142626,-0.355357142857133,0.065024630541626,-0.357142857142849,-0.000000000000000,0.010591133004954,-0.003571428571432,-0.001354679802954,0.003571428571432,0.001600985221674,-0.000000000000000,-0.010837438423674,2 +8947,8975,8977,9005,0.074137931034267,-0.353571428571417,0.069642857142626,-0.355357142857133,0.080357142856941,-0.355357142857133,0.075862068965301,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571432,-0.001600985221674,0.003571428571433,0.001847290640394,0.000000000000000,-0.010837438423675,2 +8948,8976,8978,9006,0.084729064039222,-0.353571428571416,0.080357142856941,-0.355357142857133,0.091071428571256,-0.355357142857133,0.086699507388975,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571433,-0.001847290640394,0.003571428571433,0.002093596059114,-0.000000000000000,-0.010837438423674,2 +8949,8977,8979,9007,0.095320197044176,-0.353571428571416,0.091071428571256,-0.355357142857133,0.101785714285571,-0.355357142857133,0.097536945812650,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571433,-0.002093596059114,0.003571428571433,0.002339901477834,-0.000000000000000,-0.010837438423675,2 +8950,8978,8980,9008,0.105911330049126,-0.353571428571416,0.101785714285571,-0.355357142857133,0.112499999999874,-0.355357142857132,0.108374384236319,-0.357142857142849,-0.000000000000000,0.010591133004943,-0.003571428571433,-0.002339901477834,0.003571428571433,0.002586206896554,-0.000000000000000,-0.010837438423664,2 +8951,8979,8981,9009,0.116502463054073,-0.353571428571416,0.112499999999874,-0.355357142857132,0.123214285714186,-0.355357142857132,0.119211822659987,-0.357142857142849,-0.000000000000000,0.010591133004952,-0.003571428571433,-0.002586206896554,0.003571428571434,0.002832512315274,-0.000000000000000,-0.010837438423672,2 +8952,8980,8982,9010,0.127093596059026,-0.353571428571415,0.123214285714186,-0.355357142857132,0.133928571428501,-0.355357142857132,0.130049261083660,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571434,-0.002832512315274,0.003571428571434,0.003078817733994,-0.000000000000000,-0.010837438423675,2 +8953,8981,8983,9011,0.137684729063981,-0.353571428571415,0.133928571428501,-0.355357142857132,0.144642857142816,-0.355357142857132,0.140886699507336,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571434,-0.003078817733994,0.003571428571434,0.003325123152714,0.000000000000000,-0.010837438423675,2 +8954,8982,9012,10040,0.148275862068937,-0.353571428571415,0.144642857142816,-0.355357142857132,0.151724137931011,-0.357142857142849,0.155357142857132,-0.355357142857132,-0.000000000000000,0.010591133004955,-0.003571428571434,-0.003325123152714,0.000000000000000,-0.010837438423676,0.003571428571434,0.003571428571434,2 +8111,8955,8985,9013,-0.158928571428564,-0.358928571428564,-0.151724137931037,-0.357142857142850,-0.147967980295580,-0.358928571428565,-0.155172413793107,-0.360714285714279,-0.003571428571429,0.003571428571429,0.000000000000000,0.010837438423625,0.003571428571430,-0.003325123152710,-0.000000000000001,-0.011083743842344,2 +8956,8984,8986,9014,-0.140886699507418,-0.357142857142850,-0.147967980295580,-0.358928571428565,-0.137007389162607,-0.358928571428565,-0.144088669950769,-0.360714285714280,-0.000000000000000,0.010837438423614,-0.003571428571430,0.003325123152710,0.003571428571431,-0.003078817733991,-0.000000000000000,-0.011083743842333,2 +8957,8985,8987,9015,-0.130049261083797,-0.357142857142850,-0.137007389162607,-0.358928571428565,-0.126046798029618,-0.358928571428565,-0.133004926108428,-0.360714285714281,0.000000000000000,0.010837438423629,-0.003571428571431,0.003078817733991,0.003571428571431,-0.002832512315271,-0.000000000000001,-0.011083743842348,2 +8958,8986,8988,9016,-0.119211822660174,-0.357142857142850,-0.126046798029618,-0.358928571428565,-0.115086206896641,-0.358928571428566,-0.121921182266085,-0.360714285714281,0.000000000000000,0.010837438423618,-0.003571428571431,0.002832512315271,0.003571428571432,-0.002586206896551,-0.000000000000001,-0.011083743842338,2 +8959,8987,8989,9017,-0.108374384236558,-0.357142857142850,-0.115086206896641,-0.358928571428566,-0.104125615763667,-0.358928571428566,-0.110837438423750,-0.360714285714282,-0.000000000000000,0.010837438423614,-0.003571428571432,0.002586206896551,0.003571428571433,-0.002339901477832,-0.000000000000001,-0.011083743842333,2 +8960,8988,8990,9018,-0.097536945812944,-0.357142857142849,-0.104125615763667,-0.358928571428566,-0.093165024630694,-0.358928571428566,-0.099753694581417,-0.360714285714283,0.000000000000000,0.010837438423614,-0.003571428571433,0.002339901477832,0.003571428571433,-0.002093596059113,-0.000000000000001,-0.011083743842333,2 +8961,8989,8991,9019,-0.086699507389330,-0.357142857142850,-0.093165024630694,-0.358928571428566,-0.082204433497720,-0.358928571428566,-0.088669950739084,-0.360714285714283,0.000000000000000,0.010837438423614,-0.003571428571433,0.002093596059113,0.003571428571434,-0.001847290640394,-0.000000000000001,-0.011083743842333,2 +8962,8990,8992,9020,-0.075862068965717,-0.357142857142850,-0.082204433497720,-0.358928571428566,-0.071243842364747,-0.358928571428567,-0.077586206896751,-0.360714285714284,-0.000000000000000,0.010837438423614,-0.003571428571434,0.001847290640394,0.003571428571434,-0.001600985221675,-0.000000000000001,-0.011083743842333,2 +8963,8991,8993,9021,-0.065024630542103,-0.357142857142849,-0.071243842364747,-0.358928571428567,-0.060283251231773,-0.358928571428567,-0.066502463054418,-0.360714285714284,-0.000000000000000,0.010837438423614,-0.003571428571434,0.001600985221675,0.003571428571435,-0.001354679802955,-0.000000000000001,-0.011083743842333,2 +8964,8992,8994,9022,-0.054187192118489,-0.357142857142849,-0.060283251231773,-0.358928571428567,-0.049322660098800,-0.358928571428567,-0.055418719212085,-0.360714285714285,0.000000000000000,0.010837438423614,-0.003571428571435,0.001354679802955,0.003571428571436,-0.001108374384236,-0.000000000000000,-0.011083743842333,2 +8965,8993,8995,9023,-0.043349753694874,-0.357142857142849,-0.049322660098800,-0.358928571428567,-0.038362068965825,-0.358928571428568,-0.044334975369751,-0.360714285714286,0.000000000000000,0.010837438423616,-0.003571428571436,0.001108374384236,0.003571428571436,-0.000862068965518,-0.000000000000001,-0.011083743842335,2 +8966,8994,8996,9024,-0.032512315271258,-0.357142857142849,-0.038362068965825,-0.358928571428568,-0.027401477832851,-0.358928571428568,-0.033251231527417,-0.360714285714286,0.000000000000000,0.010837438423615,-0.003571428571436,0.000862068965518,0.003571428571437,-0.000615763546799,-0.000000000000000,-0.011083743842333,2 +8967,8995,8997,9025,-0.021674876847644,-0.357142857142849,-0.027401477832851,-0.358928571428568,-0.016440886699877,-0.358928571428568,-0.022167487685083,-0.360714285714287,-0.000000000000000,0.010837438423614,-0.003571428571437,0.000615763546799,0.003571428571438,-0.000369458128080,-0.000000000000001,-0.011083743842333,2 +8968,8996,8998,9026,-0.010837438424030,-0.357142857142849,-0.016440886699877,-0.358928571428568,-0.005480295566904,-0.358928571428569,-0.011083743842750,-0.360714285714287,0.000000000000000,0.010837438423614,-0.003571428571438,0.000369458128080,0.003571428571438,-0.000123152709360,-0.000000000000001,-0.011083743842333,2 +8969,8997,8999,9027,-0.000000000000401,-0.357142857142849,-0.005480295566904,-0.358928571428569,0.005480295566101,-0.358928571428569,-0.000000000000402,-0.360714285714288,0.000000000000000,0.010837438423644,-0.003571428571438,0.000123152709360,0.003571428571439,0.000123152709359,-0.000000000000000,-0.011083743842364,2 +8970,8998,9000,9028,0.010837438423258,-0.357142857142849,0.005480295566101,-0.358928571428569,0.016440886699136,-0.358928571428569,0.011083743841978,-0.360714285714289,0.000000000000000,0.010837438423675,-0.003571428571439,-0.000123152709359,0.003571428571440,0.000369458128080,-0.000000000000001,-0.011083743842395,2 +8971,8999,9001,9029,0.021674876846934,-0.357142857142849,0.016440886699136,-0.358928571428569,0.027401477832171,-0.358928571428569,0.022167487684374,-0.360714285714289,0.000000000000000,0.010837438423675,-0.003571428571440,-0.000369458128080,0.003571428571440,0.000615763546800,-0.000000000000001,-0.011083743842396,2 +8972,9000,9002,9030,0.032512315270607,-0.357142857142849,0.027401477832171,-0.358928571428569,0.038362068965204,-0.358928571428570,0.033251231526768,-0.360714285714290,0.000000000000000,0.010837438423673,-0.003571428571440,-0.000615763546800,0.003571428571441,0.000862068965521,-0.000000000000001,-0.011083743842393,2 +8973,9001,9003,9031,0.043349753694280,-0.357142857142849,0.038362068965204,-0.358928571428570,0.049322660098237,-0.358928571428570,0.044334975369162,-0.360714285714291,0.000000000000000,0.010837438423673,-0.003571428571441,-0.000862068965521,0.003571428571441,0.001108374384242,-0.000000000000001,-0.011083743842393,2 +8974,9002,9004,9032,0.054187192117953,-0.357142857142849,0.049322660098237,-0.358928571428570,0.060283251231271,-0.358928571428570,0.055418719211555,-0.360714285714291,-0.000000000000000,0.010837438423673,-0.003571428571441,-0.001108374384242,0.003571428571442,0.001354679802963,-0.000000000000000,-0.011083743842394,2 +8975,9003,9005,9033,0.065024630541626,-0.357142857142849,0.060283251231271,-0.358928571428570,0.071243842364305,-0.358928571428571,0.066502463053949,-0.360714285714292,0.000000000000000,0.010837438423674,-0.003571428571442,-0.001354679802963,0.003571428571443,0.001600985221684,-0.000000000000001,-0.011083743842395,2 +8976,9004,9006,9034,0.075862068965301,-0.357142857142849,0.071243842364305,-0.358928571428571,0.082204433497340,-0.358928571428571,0.077586206896344,-0.360714285714292,-0.000000000000000,0.010837438423675,-0.003571428571443,-0.001600985221684,0.003571428571443,0.001847290640404,-0.000000000000001,-0.011083743842395,2 +8977,9005,9007,9035,0.086699507388975,-0.357142857142849,0.082204433497340,-0.358928571428571,0.093165024630375,-0.358928571428571,0.088669950738739,-0.360714285714293,0.000000000000000,0.010837438423674,-0.003571428571443,-0.001847290640404,0.003571428571444,0.002093596059124,-0.000000000000001,-0.011083743842395,2 +8978,9006,9008,9036,0.097536945812650,-0.357142857142849,0.093165024630375,-0.358928571428571,0.104125615763410,-0.358928571428571,0.099753694581134,-0.360714285714294,0.000000000000000,0.010837438423675,-0.003571428571444,-0.002093596059124,0.003571428571445,0.002339901477845,-0.000000000000001,-0.011083743842395,2 +8979,9007,9009,9037,0.108374384236319,-0.357142857142849,0.104125615763410,-0.358928571428571,0.115086206896434,-0.358928571428572,0.110837438423525,-0.360714285714294,0.000000000000000,0.010837438423664,-0.003571428571445,-0.002339901477845,0.003571428571445,0.002586206896566,-0.000000000000000,-0.011083743842385,2 +8980,9008,9010,9038,0.119211822659987,-0.357142857142849,0.115086206896434,-0.358928571428572,0.126046798029466,-0.358928571428572,0.121921182265913,-0.360714285714295,0.000000000000000,0.010837438423672,-0.003571428571445,-0.002586206896566,0.003571428571446,0.002832512315286,-0.000000000000001,-0.011083743842392,2 +8981,9009,9011,9039,0.130049261083660,-0.357142857142849,0.126046798029466,-0.358928571428572,0.137007389162501,-0.358928571428572,0.133004926108307,-0.360714285714295,0.000000000000000,0.010837438423675,-0.003571428571446,-0.002832512315286,0.003571428571446,0.003078817734007,-0.000000000000001,-0.011083743842395,2 +8982,9010,9012,9040,0.140886699507336,-0.357142857142849,0.137007389162501,-0.358928571428572,0.147967980295537,-0.358928571428573,0.144088669950702,-0.360714285714296,-0.000000000000000,0.010837438423675,-0.003571428571446,-0.003078817734007,0.003571428571447,0.003325123152727,-0.000000000000001,-0.011083743842396,2 +8983,9011,9041,9981,0.151724137931011,-0.357142857142849,0.147967980295537,-0.358928571428573,0.155172413793099,-0.360714285714297,0.158928571428573,-0.358928571428573,-0.000000000000000,0.010837438423676,-0.003571428571447,-0.003325123152727,-0.000000000000001,-0.011083743842396,0.003571428571448,0.003571428571448,2 +8110,8984,9014,9042,-0.162499999999982,-0.362499999999982,-0.155172413793107,-0.360714285714279,-0.151293103448278,-0.362499999999983,-0.158620689655153,-0.364285714285685,-0.003571428571405,0.003571428571405,0.000000000000001,0.011083743842344,0.003571428571407,-0.003325123152686,-0.000000000000002,-0.011330049261063,2 +8985,9013,9015,9043,-0.144088669950769,-0.360714285714280,-0.151293103448278,-0.362499999999983,-0.140086206896586,-0.362499999999985,-0.147290640394096,-0.364285714285688,0.000000000000000,0.011083743842333,-0.003571428571407,0.003325123152686,0.003571428571409,-0.003078817733967,-0.000000000000003,-0.011330049261052,2 +8986,9014,9016,9044,-0.133004926108428,-0.360714285714281,-0.140086206896586,-0.362499999999985,-0.128879310344878,-0.362499999999986,-0.135960591133036,-0.364285714285690,0.000000000000001,0.011083743842348,-0.003571428571409,0.003078817733967,0.003571428571411,-0.002832512315248,-0.000000000000002,-0.011330049261067,2 +8987,9015,9017,9045,-0.121921182266085,-0.360714285714281,-0.128879310344878,-0.362499999999986,-0.117672413793181,-0.362499999999988,-0.124630541871974,-0.364285714285693,0.000000000000001,0.011083743842338,-0.003571428571411,0.002832512315248,0.003571428571413,-0.002586206896529,-0.000000000000002,-0.011330049261058,2 +8988,9016,9018,9046,-0.110837438423750,-0.360714285714282,-0.117672413793181,-0.362499999999988,-0.106465517241488,-0.362499999999989,-0.113300492610919,-0.364285714285695,0.000000000000001,0.011083743842333,-0.003571428571413,0.002586206896529,0.003571428571415,-0.002339901477810,-0.000000000000003,-0.011330049261052,2 +8989,9017,9019,9047,-0.099753694581417,-0.360714285714283,-0.106465517241488,-0.362499999999989,-0.095258620689796,-0.362499999999991,-0.101970443349867,-0.364285714285698,0.000000000000001,0.011083743842333,-0.003571428571415,0.002339901477810,0.003571428571416,-0.002093596059091,-0.000000000000003,-0.011330049261052,2 +8990,9018,9020,9048,-0.088669950739084,-0.360714285714283,-0.095258620689796,-0.362499999999991,-0.084051724138103,-0.362499999999993,-0.090640394088815,-0.364285714285701,0.000000000000001,0.011083743842333,-0.003571428571416,0.002093596059091,0.003571428571418,-0.001847290640372,-0.000000000000002,-0.011330049261052,2 +8991,9019,9021,9049,-0.077586206896751,-0.360714285714284,-0.084051724138103,-0.362499999999993,-0.072844827586411,-0.362499999999994,-0.079310344827763,-0.364285714285703,0.000000000000001,0.011083743842333,-0.003571428571418,0.001847290640372,0.003571428571420,-0.001600985221653,-0.000000000000003,-0.011330049261052,2 +8992,9020,9022,9050,-0.066502463054418,-0.360714285714284,-0.072844827586411,-0.362499999999994,-0.061637931034718,-0.362499999999996,-0.067980295566712,-0.364285714285706,0.000000000000001,0.011083743842333,-0.003571428571420,0.001600985221653,0.003571428571422,-0.001354679802935,-0.000000000000002,-0.011330049261052,2 +8993,9021,9023,9051,-0.055418719212085,-0.360714285714285,-0.061637931034718,-0.362499999999996,-0.050431034483026,-0.362499999999997,-0.056650246305660,-0.364285714285708,0.000000000000000,0.011083743842333,-0.003571428571422,0.001354679802935,0.003571428571424,-0.001108374384216,-0.000000000000002,-0.011330049261052,2 +8994,9022,9024,9052,-0.044334975369751,-0.360714285714286,-0.050431034483026,-0.362499999999997,-0.039224137931332,-0.362499999999999,-0.045320197044608,-0.364285714285711,0.000000000000001,0.011083743842335,-0.003571428571424,0.001108374384216,0.003571428571426,-0.000862068965498,-0.000000000000003,-0.011330049261052,2 +8995,9023,9025,9053,-0.033251231527417,-0.360714285714286,-0.039224137931332,-0.362499999999999,-0.028017241379640,-0.362500000000000,-0.033990147783555,-0.364285714285713,0.000000000000000,0.011083743842333,-0.003571428571426,0.000862068965498,0.003571428571428,-0.000615763546779,-0.000000000000002,-0.011330049261052,2 +8996,9024,9026,9054,-0.022167487685083,-0.360714285714287,-0.028017241379640,-0.362500000000000,-0.016810344827947,-0.362500000000002,-0.022660098522503,-0.364285714285716,0.000000000000001,0.011083743842333,-0.003571428571428,0.000615763546779,0.003571428571430,-0.000369458128061,-0.000000000000002,-0.011330049261052,2 +8997,9025,9027,9055,-0.011083743842750,-0.360714285714287,-0.016810344827947,-0.362500000000002,-0.005603448276255,-0.362500000000004,-0.011330049261452,-0.364285714285718,0.000000000000001,0.011083743842333,-0.003571428571430,0.000369458128061,0.003571428571432,-0.000123152709342,-0.000000000000003,-0.011330049261052,2 +8998,9026,9028,9056,-0.000000000000402,-0.360714285714288,-0.005603448276255,-0.362500000000004,0.005603448275469,-0.362500000000005,-0.000000000000384,-0.364285714285721,0.000000000000000,0.011083743842364,-0.003571428571432,0.000123152709342,0.003571428571434,0.000123152709378,-0.000000000000002,-0.011330049261083,2 +8999,9027,9029,9057,0.011083743841978,-0.360714285714289,0.005603448275469,-0.362500000000005,0.016810344827225,-0.362500000000007,0.011330049260716,-0.364285714285723,0.000000000000001,0.011083743842395,-0.003571428571434,-0.000123152709378,0.003571428571436,0.000369458128098,-0.000000000000003,-0.011330049261116,2 +9000,9028,9030,9058,0.022167487684374,-0.360714285714289,0.016810344827225,-0.362500000000007,0.028017241378980,-0.362500000000008,0.022660098521831,-0.364285714285726,0.000000000000001,0.011083743842396,-0.003571428571436,-0.000369458128098,0.003571428571437,0.000615763546818,-0.000000000000003,-0.011330049261116,2 +9001,9029,9031,9059,0.033251231526768,-0.360714285714290,0.028017241378980,-0.362500000000008,0.039224137930734,-0.362500000000010,0.033990147782946,-0.364285714285728,0.000000000000001,0.011083743842393,-0.003571428571437,-0.000615763546818,0.003571428571439,0.000862068965538,-0.000000000000002,-0.011330049261114,2 +9002,9030,9032,9060,0.044334975369162,-0.360714285714291,0.039224137930734,-0.362500000000010,0.050431034482488,-0.362500000000011,0.045320197044060,-0.364285714285731,0.000000000000001,0.011083743842393,-0.003571428571439,-0.000862068965538,0.003571428571441,0.001108374384258,-0.000000000000002,-0.011330049261114,2 +9003,9031,9033,9061,0.055418719211555,-0.360714285714291,0.050431034482488,-0.362500000000011,0.061637931034242,-0.362500000000013,0.056650246305174,-0.364285714285733,0.000000000000000,0.011083743842394,-0.003571428571441,-0.001108374384258,0.003571428571443,0.001354679802979,-0.000000000000003,-0.011330049261115,2 +9004,9032,9034,9062,0.066502463053949,-0.360714285714292,0.061637931034242,-0.362500000000013,0.072844827585996,-0.362500000000015,0.067980295566289,-0.364285714285736,0.000000000000001,0.011083743842395,-0.003571428571443,-0.001354679802979,0.003571428571445,0.001600985221699,-0.000000000000002,-0.011330049261115,2 +9005,9033,9035,9063,0.077586206896344,-0.360714285714292,0.072844827585996,-0.362500000000015,0.084051724137752,-0.362500000000016,0.079310344827404,-0.364285714285738,0.000000000000001,0.011083743842395,-0.003571428571445,-0.001600985221699,0.003571428571447,0.001847290640419,-0.000000000000002,-0.011330049261115,2 +9006,9034,9036,9064,0.088669950738739,-0.360714285714293,0.084051724137752,-0.362500000000016,0.095258620689506,-0.362500000000018,0.090640394088518,-0.364285714285741,0.000000000000001,0.011083743842395,-0.003571428571447,-0.001847290640419,0.003571428571449,0.002093596059139,-0.000000000000002,-0.011330049261115,2 +9007,9035,9037,9065,0.099753694581134,-0.360714285714294,0.095258620689506,-0.362500000000018,0.106465517241261,-0.362500000000019,0.101970443349633,-0.364285714285743,0.000000000000001,0.011083743842395,-0.003571428571449,-0.002093596059139,0.003571428571451,0.002339901477859,-0.000000000000002,-0.011330049261115,2 +9008,9036,9038,9066,0.110837438423525,-0.360714285714294,0.106465517241261,-0.362500000000019,0.117672413793007,-0.362500000000021,0.113300492610744,-0.364285714285746,0.000000000000000,0.011083743842385,-0.003571428571451,-0.002339901477859,0.003571428571453,0.002586206896580,-0.000000000000003,-0.011330049261106,2 +9009,9037,9039,9067,0.121921182265913,-0.360714285714295,0.117672413793007,-0.362500000000021,0.128879310344759,-0.362500000000022,0.124630541871853,-0.364285714285748,0.000000000000001,0.011083743842392,-0.003571428571453,-0.002586206896580,0.003571428571454,0.002832512315300,-0.000000000000002,-0.011330049261112,2 +9010,9038,9040,9068,0.133004926108307,-0.360714285714295,0.128879310344759,-0.362500000000022,0.140086206896514,-0.362500000000024,0.135960591132967,-0.364285714285751,0.000000000000001,0.011083743842395,-0.003571428571454,-0.002832512315300,0.003571428571457,0.003078817734020,-0.000000000000003,-0.011330049261115,2 +9011,9039,9041,9069,0.144088669950702,-0.360714285714296,0.140086206896514,-0.362500000000024,0.151293103448270,-0.362500000000026,0.147290640394082,-0.364285714285754,0.000000000000001,0.011083743842396,-0.003571428571457,-0.003078817734020,0.003571428571458,0.003325123152740,-0.000000000000002,-0.011330049261116,2 +9012,9040,9070,9922,0.155172413793099,-0.360714285714297,0.151293103448270,-0.362500000000026,0.158620689655199,-0.364285714285756,0.162500000000027,-0.362500000000027,0.000000000000001,0.011083743842396,-0.003571428571458,-0.003325123152740,-0.000000000000002,-0.011330049261117,0.003571428571460,0.003571428571460,2 +8109,9013,9043,9071,-0.166071428571395,-0.366071428571395,-0.158620689655153,-0.364285714285685,-0.154618226600972,-0.366071428571397,-0.162068965517214,-0.367857142857107,-0.003571428571421,0.003571428571421,0.000000000000002,0.011330049261063,0.003571428571422,-0.003325123152702,-0.000000000000003,-0.011576354679781,2 +9014,9042,9044,9072,-0.147290640394096,-0.364285714285688,-0.154618226600972,-0.366071428571397,-0.143165024630561,-0.366071428571400,-0.150492610837438,-0.367857142857110,0.000000000000003,0.011330049261052,-0.003571428571422,0.003325123152702,0.003571428571423,-0.003078817733983,-0.000000000000003,-0.011576354679771,2 +9015,9043,9045,9073,-0.135960591133036,-0.364285714285690,-0.143165024630561,-0.366071428571400,-0.131711822660135,-0.366071428571403,-0.138916256157660,-0.367857142857113,0.000000000000002,0.011330049261067,-0.003571428571423,0.003078817733983,0.003571428571423,-0.002832512315264,-0.000000000000003,-0.011576354679786,2 +9016,9044,9046,9074,-0.124630541871974,-0.364285714285693,-0.131711822660135,-0.366071428571403,-0.120258620689717,-0.366071428571406,-0.127339901477878,-0.367857142857117,0.000000000000002,0.011330049261058,-0.003571428571423,0.002832512315264,0.003571428571424,-0.002586206896544,-0.000000000000003,-0.011576354679777,2 +9017,9045,9047,9075,-0.113300492610919,-0.364285714285695,-0.120258620689717,-0.366071428571406,-0.108805418719306,-0.366071428571409,-0.115763546798104,-0.367857142857120,0.000000000000003,0.011330049261052,-0.003571428571424,0.002586206896544,0.003571428571425,-0.002339901477826,-0.000000000000003,-0.011576354679771,2 +9018,9046,9048,9076,-0.101970443349867,-0.364285714285698,-0.108805418719306,-0.366071428571409,-0.097352216748895,-0.366071428571412,-0.104187192118333,-0.367857142857123,0.000000000000003,0.011330049261052,-0.003571428571425,0.002339901477826,0.003571428571426,-0.002093596059107,-0.000000000000003,-0.011576354679771,2 +9019,9047,9049,9077,-0.090640394088815,-0.364285714285701,-0.097352216748895,-0.366071428571412,-0.085899014778483,-0.366071428571415,-0.092610837438563,-0.367857142857127,0.000000000000002,0.011330049261052,-0.003571428571426,0.002093596059107,0.003571428571427,-0.001847290640388,-0.000000000000003,-0.011576354679771,2 +9020,9048,9050,9078,-0.079310344827763,-0.364285714285703,-0.085899014778483,-0.366071428571415,-0.074445812808072,-0.366071428571418,-0.081034482758792,-0.367857142857130,0.000000000000003,0.011330049261052,-0.003571428571427,0.001847290640388,0.003571428571427,-0.001600985221669,-0.000000000000003,-0.011576354679771,2 +9021,9049,9051,9079,-0.067980295566712,-0.364285714285706,-0.074445812808072,-0.366071428571418,-0.062992610837661,-0.366071428571421,-0.069458128079021,-0.367857142857134,0.000000000000002,0.011330049261052,-0.003571428571427,0.001600985221669,0.003571428571428,-0.001354679802950,-0.000000000000003,-0.011576354679771,2 +9022,9050,9052,9080,-0.056650246305660,-0.364285714285708,-0.062992610837661,-0.366071428571421,-0.051539408867249,-0.366071428571424,-0.057881773399250,-0.367857142857137,0.000000000000002,0.011330049261052,-0.003571428571428,0.001354679802950,0.003571428571429,-0.001108374384231,-0.000000000000003,-0.011576354679771,2 +9023,9051,9053,9081,-0.045320197044608,-0.364285714285711,-0.051539408867249,-0.366071428571424,-0.040086206896838,-0.366071428571427,-0.046305418719480,-0.367857142857140,0.000000000000003,0.011330049261052,-0.003571428571429,0.001108374384231,0.003571428571430,-0.000862068965513,-0.000000000000004,-0.011576354679770,2 +9024,9052,9054,9082,-0.033990147783555,-0.364285714285713,-0.040086206896838,-0.366071428571427,-0.028633004926427,-0.366071428571430,-0.034729064039710,-0.367857142857144,0.000000000000002,0.011330049261052,-0.003571428571430,0.000862068965513,0.003571428571431,-0.000615763546795,-0.000000000000003,-0.011576354679771,2 +9025,9053,9055,9083,-0.022660098522503,-0.364285714285716,-0.028633004926427,-0.366071428571430,-0.017179802956015,-0.366071428571433,-0.023152709359939,-0.367857142857147,0.000000000000002,0.011330049261052,-0.003571428571431,0.000615763546795,0.003571428571432,-0.000369458128076,-0.000000000000003,-0.011576354679771,2 +9026,9054,9056,9084,-0.011330049261452,-0.364285714285718,-0.017179802956015,-0.366071428571433,-0.005726600985604,-0.366071428571436,-0.011576354680168,-0.367857142857150,0.000000000000003,0.011330049261052,-0.003571428571432,0.000369458128076,0.003571428571433,-0.000123152709357,-0.000000000000003,-0.011576354679771,2 +9027,9055,9057,9085,-0.000000000000384,-0.364285714285721,-0.005726600985604,-0.366071428571436,0.005726600984839,-0.366071428571439,-0.000000000000381,-0.367857142857154,0.000000000000002,0.011330049261083,-0.003571428571433,0.000123152709357,0.003571428571433,0.000123152709362,-0.000000000000003,-0.011576354679803,2 +9028,9056,9058,9086,0.011330049260716,-0.364285714285723,0.005726600984839,-0.366071428571439,0.017179802955314,-0.366071428571441,0.011576354679438,-0.367857142857157,0.000000000000003,0.011330049261116,-0.003571428571433,-0.000123152709362,0.003571428571434,0.000369458128082,-0.000000000000003,-0.011576354679836,2 +9029,9057,9059,9087,0.022660098521831,-0.364285714285726,0.017179802955314,-0.366071428571441,0.028633004925790,-0.366071428571445,0.023152709359274,-0.367857142857160,0.000000000000003,0.011330049261116,-0.003571428571434,-0.000369458128082,0.003571428571435,0.000615763546802,-0.000000000000003,-0.011576354679836,2 +9030,9058,9060,9088,0.033990147782946,-0.364285714285728,0.028633004925790,-0.366071428571445,0.040086206896264,-0.366071428571447,0.034729064039109,-0.367857142857164,0.000000000000002,0.011330049261114,-0.003571428571435,-0.000615763546802,0.003571428571436,0.000862068965523,-0.000000000000003,-0.011576354679834,2 +9031,9059,9061,9089,0.045320197044060,-0.364285714285731,0.040086206896264,-0.366071428571447,0.051539408866738,-0.366071428571450,0.046305418718943,-0.367857142857167,0.000000000000002,0.011330049261114,-0.003571428571436,-0.000862068965523,0.003571428571437,0.001108374384243,-0.000000000000003,-0.011576354679834,2 +9032,9060,9062,9090,0.056650246305174,-0.364285714285733,0.051539408866738,-0.366071428571450,0.062992610837213,-0.366071428571453,0.057881773398777,-0.367857142857171,0.000000000000003,0.011330049261115,-0.003571428571437,-0.001108374384243,0.003571428571438,0.001354679802964,-0.000000000000003,-0.011576354679835,2 +9033,9061,9063,9091,0.067980295566289,-0.364285714285736,0.062992610837213,-0.366071428571453,0.074445812807688,-0.366071428571456,0.069458128078612,-0.367857142857174,0.000000000000002,0.011330049261115,-0.003571428571438,-0.001354679802964,0.003571428571438,0.001600985221684,-0.000000000000003,-0.011576354679835,2 +9034,9062,9064,9092,0.079310344827404,-0.364285714285738,0.074445812807688,-0.366071428571456,0.085899014778163,-0.366071428571459,0.081034482758447,-0.367857142857177,0.000000000000002,0.011330049261115,-0.003571428571438,-0.001600985221684,0.003571428571439,0.001847290640404,-0.000000000000003,-0.011576354679835,2 +9035,9063,9065,9093,0.090640394088518,-0.364285714285741,0.085899014778163,-0.366071428571459,0.097352216748638,-0.366071428571462,0.092610837438282,-0.367857142857181,0.000000000000002,0.011330049261115,-0.003571428571439,-0.001847290640404,0.003571428571440,0.002093596059124,-0.000000000000003,-0.011576354679835,2 +9036,9064,9066,9094,0.101970443349633,-0.364285714285743,0.097352216748638,-0.366071428571462,0.108805418719113,-0.366071428571465,0.104187192118117,-0.367857142857184,0.000000000000002,0.011330049261115,-0.003571428571440,-0.002093596059124,0.003571428571441,0.002339901477844,-0.000000000000003,-0.011576354679835,2 +9037,9065,9067,9095,0.113300492610744,-0.364285714285746,0.108805418719113,-0.366071428571465,0.120258620689579,-0.366071428571468,0.115763546797948,-0.367857142857187,0.000000000000003,0.011330049261106,-0.003571428571441,-0.002339901477844,0.003571428571442,0.002586206896564,-0.000000000000003,-0.011576354679827,2 +9038,9066,9068,9096,0.124630541871853,-0.364285714285748,0.120258620689579,-0.366071428571468,0.131711822660052,-0.366071428571471,0.127339901477778,-0.367857142857191,0.000000000000002,0.011330049261112,-0.003571428571442,-0.002586206896564,0.003571428571443,0.002832512315285,-0.000000000000003,-0.011576354679832,2 +9039,9067,9069,9097,0.135960591132967,-0.364285714285751,0.131711822660052,-0.366071428571471,0.143165024630526,-0.366071428571474,0.138916256157611,-0.367857142857194,0.000000000000003,0.011330049261115,-0.003571428571443,-0.002832512315285,0.003571428571443,0.003078817734005,-0.000000000000003,-0.011576354679835,2 +9040,9068,9070,9098,0.147290640394082,-0.364285714285754,0.143165024630526,-0.366071428571474,0.154618226601003,-0.366071428571477,0.150492610837447,-0.367857142857197,0.000000000000002,0.011330049261116,-0.003571428571443,-0.003078817734005,0.003571428571444,0.003325123152725,-0.000000000000003,-0.011576354679837,2 +9041,9069,9099,9863,0.158620689655199,-0.364285714285756,0.154618226601003,-0.366071428571477,0.162068965517284,-0.367857142857201,0.166071428571480,-0.366071428571480,0.000000000000002,0.011330049261117,-0.003571428571444,-0.003325123152725,-0.000000000000003,-0.011576354679837,0.003571428571445,0.003571428571445,2 +8108,9042,9072,9100,-0.169642857142809,-0.369642857142809,-0.162068965517214,-0.367857142857107,-0.157943349753668,-0.369642857142812,-0.165517241379262,-0.371428571428514,-0.003571428571407,0.003571428571407,0.000000000000003,0.011576354679781,0.003571428571408,-0.003325123152689,-0.000000000000004,-0.011822660098499,2 +9043,9071,9073,9101,-0.150492610837438,-0.367857142857110,-0.157943349753668,-0.369642857142812,-0.146243842364538,-0.369642857142816,-0.153694581280769,-0.371428571428518,0.000000000000003,0.011576354679771,-0.003571428571408,0.003325123152689,0.003571428571409,-0.003078817733972,-0.000000000000004,-0.011822660098489,2 +9044,9072,9074,9102,-0.138916256157660,-0.367857142857113,-0.146243842364538,-0.369642857142816,-0.134544334975393,-0.369642857142820,-0.141871921182272,-0.371428571428523,0.000000000000003,0.011576354679786,-0.003571428571409,0.003078817733972,0.003571428571410,-0.002832512315253,-0.000000000000004,-0.011822660098504,2 +9045,9073,9075,9103,-0.127339901477878,-0.367857142857117,-0.134544334975393,-0.369642857142820,-0.122844827586257,-0.369642857142824,-0.130049261083772,-0.371428571428527,0.000000000000003,0.011576354679777,-0.003571428571410,0.002832512315253,0.003571428571411,-0.002586206896534,-0.000000000000004,-0.011822660098496,2 +9046,9074,9076,9104,-0.115763546798104,-0.367857142857120,-0.122844827586257,-0.369642857142824,-0.111145320197127,-0.369642857142827,-0.118226600985279,-0.371428571428531,0.000000000000003,0.011576354679771,-0.003571428571411,0.002586206896534,0.003571428571412,-0.002339901477817,-0.000000000000004,-0.011822660098489,2 +9047,9075,9077,9105,-0.104187192118333,-0.367857142857123,-0.111145320197127,-0.369642857142827,-0.099445812807997,-0.369642857142831,-0.106403940886791,-0.371428571428535,0.000000000000003,0.011576354679771,-0.003571428571412,0.002339901477817,0.003571428571412,-0.002093596059099,-0.000000000000004,-0.011822660098489,2 +9048,9076,9078,9106,-0.092610837438563,-0.367857142857127,-0.099445812807997,-0.369642857142831,-0.087746305418868,-0.369642857142835,-0.094581280788302,-0.371428571428540,0.000000000000003,0.011576354679771,-0.003571428571412,0.002093596059099,0.003571428571413,-0.001847290640381,-0.000000000000004,-0.011822660098489,2 +9049,9077,9079,9107,-0.081034482758792,-0.367857142857130,-0.087746305418868,-0.369642857142835,-0.076046798029738,-0.369642857142839,-0.082758620689814,-0.371428571428544,0.000000000000003,0.011576354679771,-0.003571428571413,0.001847290640381,0.003571428571414,-0.001600985221663,-0.000000000000004,-0.011822660098489,2 +9050,9078,9080,9108,-0.069458128079021,-0.367857142857134,-0.076046798029738,-0.369642857142839,-0.064347290640608,-0.369642857142843,-0.070935960591325,-0.371428571428548,0.000000000000003,0.011576354679771,-0.003571428571414,0.001600985221663,0.003571428571415,-0.001354679802945,-0.000000000000004,-0.011822660098489,2 +9051,9079,9081,9109,-0.057881773399250,-0.367857142857137,-0.064347290640608,-0.369642857142843,-0.052647783251479,-0.369642857142846,-0.059113300492837,-0.371428571428552,0.000000000000003,0.011576354679771,-0.003571428571415,0.001354679802945,0.003571428571416,-0.001108374384227,-0.000000000000004,-0.011822660098489,2 +9052,9080,9082,9110,-0.046305418719480,-0.367857142857140,-0.052647783251479,-0.369642857142846,-0.040948275862350,-0.369642857142850,-0.047290640394349,-0.371428571428556,0.000000000000004,0.011576354679770,-0.003571428571416,0.001108374384227,0.003571428571417,-0.000862068965510,-0.000000000000004,-0.011822660098487,2 +9053,9081,9083,9111,-0.034729064039710,-0.367857142857144,-0.040948275862350,-0.369642857142850,-0.029248768473220,-0.369642857142854,-0.035467980295861,-0.371428571428561,0.000000000000003,0.011576354679771,-0.003571428571417,0.000862068965510,0.003571428571417,-0.000615763546792,-0.000000000000004,-0.011822660098488,2 +9054,9082,9084,9112,-0.023152709359939,-0.367857142857147,-0.029248768473220,-0.369642857142854,-0.017549261084091,-0.369642857142858,-0.023645320197372,-0.371428571428565,0.000000000000003,0.011576354679771,-0.003571428571417,0.000615763546792,0.003571428571418,-0.000369458128075,-0.000000000000004,-0.011822660098489,2 +9055,9083,9085,9113,-0.011576354680168,-0.367857142857150,-0.017549261084091,-0.369642857142858,-0.005849753694961,-0.369642857142862,-0.011822660098884,-0.371428571428569,0.000000000000003,0.011576354679771,-0.003571428571418,0.000369458128075,0.003571428571419,-0.000123152709357,-0.000000000000004,-0.011822660098489,2 +9056,9084,9086,9114,-0.000000000000381,-0.367857142857154,-0.005849753694961,-0.369642857142862,0.005849753694201,-0.369642857142865,-0.000000000000379,-0.371428571428573,0.000000000000003,0.011576354679803,-0.003571428571419,0.000123152709357,0.003571428571420,0.000123152709362,-0.000000000000004,-0.011822660098521,2 +9057,9085,9087,9115,0.011576354679438,-0.367857142857157,0.005849753694201,-0.369642857142865,0.017549261083396,-0.369642857142869,0.011822660098159,-0.371428571428578,0.000000000000003,0.011576354679836,-0.003571428571420,-0.000123152709362,0.003571428571421,0.000369458128081,-0.000000000000004,-0.011822660098555,2 +9058,9086,9088,9116,0.023152709359274,-0.367857142857160,0.017549261083396,-0.369642857142869,0.029248768472592,-0.369642857142873,0.023645320196714,-0.371428571428582,0.000000000000003,0.011576354679836,-0.003571428571421,-0.000369458128081,0.003571428571422,0.000615763546800,-0.000000000000004,-0.011822660098555,2 +9059,9087,9089,9117,0.034729064039109,-0.367857142857164,0.029248768472592,-0.369642857142873,0.040948275861785,-0.369642857142877,0.035467980295269,-0.371428571428586,0.000000000000003,0.011576354679834,-0.003571428571422,-0.000615763546800,0.003571428571423,0.000862068965520,-0.000000000000004,-0.011822660098554,2 +9060,9088,9090,9118,0.046305418718943,-0.367857142857167,0.040948275861785,-0.369642857142877,0.052647783250979,-0.369642857142881,0.047290640393822,-0.371428571428590,0.000000000000003,0.011576354679834,-0.003571428571423,-0.000862068965520,0.003571428571423,0.001108374384239,-0.000000000000004,-0.011822660098554,2 +9061,9089,9091,9119,0.057881773398777,-0.367857142857171,0.052647783250979,-0.369642857142881,0.064347290640174,-0.369642857142884,0.059113300492376,-0.371428571428594,0.000000000000003,0.011576354679835,-0.003571428571423,-0.001108374384239,0.003571428571424,0.001354679802959,-0.000000000000004,-0.011822660098555,2 +9062,9090,9092,9120,0.069458128078612,-0.367857142857174,0.064347290640174,-0.369642857142884,0.076046798029369,-0.369642857142888,0.070935960590931,-0.371428571428599,0.000000000000003,0.011576354679835,-0.003571428571424,-0.001354679802959,0.003571428571425,0.001600985221678,-0.000000000000004,-0.011822660098554,2 +9063,9091,9093,9121,0.081034482758447,-0.367857142857177,0.076046798029369,-0.369642857142888,0.087746305418563,-0.369642857142892,0.082758620689485,-0.371428571428603,0.000000000000003,0.011576354679835,-0.003571428571425,-0.001600985221678,0.003571428571426,0.001847290640397,-0.000000000000004,-0.011822660098554,2 +9064,9092,9094,9122,0.092610837438282,-0.367857142857181,0.087746305418563,-0.369642857142892,0.099445812807758,-0.369642857142896,0.094581280788039,-0.371428571428607,0.000000000000003,0.011576354679835,-0.003571428571426,-0.001847290640397,0.003571428571427,0.002093596059116,-0.000000000000004,-0.011822660098554,2 +9065,9093,9095,9123,0.104187192118117,-0.367857142857184,0.099445812807758,-0.369642857142896,0.111145320196952,-0.369642857142900,0.106403940886593,-0.371428571428611,0.000000000000003,0.011576354679835,-0.003571428571427,-0.002093596059116,0.003571428571428,0.002339901477835,-0.000000000000004,-0.011822660098554,2 +9066,9094,9096,9124,0.115763546797948,-0.367857142857187,0.111145320196952,-0.369642857142900,0.122844827586139,-0.369642857142903,0.118226600985143,-0.371428571428616,0.000000000000003,0.011576354679827,-0.003571428571428,-0.002339901477835,0.003571428571429,0.002586206896555,-0.000000000000004,-0.011822660098547,2 +9067,9095,9097,9125,0.127339901477778,-0.367857142857191,0.122844827586139,-0.369642857142903,0.134544334975331,-0.369642857142907,0.130049261083692,-0.371428571428620,0.000000000000003,0.011576354679832,-0.003571428571429,-0.002586206896555,0.003571428571429,0.002832512315274,-0.000000000000004,-0.011822660098552,2 +9068,9096,9098,9126,0.138916256157611,-0.367857142857194,0.134544334975331,-0.369642857142907,0.146243842364525,-0.369642857142911,0.141871921182245,-0.371428571428624,0.000000000000003,0.011576354679835,-0.003571428571429,-0.002832512315274,0.003571428571430,0.003078817733993,-0.000000000000004,-0.011822660098554,2 +9069,9097,9099,9127,0.150492610837447,-0.367857142857197,0.146243842364525,-0.369642857142911,0.157943349753722,-0.369642857142915,0.153694581280800,-0.371428571428628,0.000000000000003,0.011576354679837,-0.003571428571430,-0.003078817733993,0.003571428571431,0.003325123152713,-0.000000000000004,-0.011822660098556,2 +9070,9098,9128,9804,0.162068965517284,-0.367857142857201,0.157943349753722,-0.369642857142915,0.165517241379356,-0.371428571428632,0.169642857142918,-0.369642857142918,0.000000000000003,0.011576354679837,-0.003571428571431,-0.003325123152713,-0.000000000000004,-0.011822660098557,0.003571428571432,0.003571428571432,2 +8107,9071,9101,9129,-0.173214285714214,-0.373214285714214,-0.165517241379262,-0.371428571428514,-0.161268472906356,-0.373214285714219,-0.168965517241307,-0.374999999999919,-0.003571428571404,0.003571428571404,0.000000000000004,0.011822660098499,0.003571428571405,-0.003325123152686,-0.000000000000005,-0.012068965517217,2 +9072,9100,9102,9130,-0.153694581280769,-0.371428571428518,-0.161268472906356,-0.373214285714219,-0.149322660098508,-0.373214285714223,-0.156896551724096,-0.374999999999924,0.000000000000004,0.011822660098489,-0.003571428571405,0.003325123152686,0.003571428571406,-0.003078817733969,-0.000000000000005,-0.012068965517206,2 +9073,9101,9103,9131,-0.141871921182272,-0.371428571428523,-0.149322660098508,-0.373214285714223,-0.137376847290645,-0.373214285714228,-0.144827586206882,-0.374999999999929,0.000000000000004,0.011822660098504,-0.003571428571406,0.003078817733969,0.003571428571406,-0.002832512315251,-0.000000000000005,-0.012068965517222,2 +9074,9102,9104,9132,-0.130049261083772,-0.371428571428527,-0.137376847290645,-0.373214285714228,-0.125431034482790,-0.373214285714233,-0.132758620689663,-0.374999999999934,0.000000000000004,0.011822660098496,-0.003571428571406,0.002832512315251,0.003571428571407,-0.002586206896532,-0.000000000000005,-0.012068965517215,2 +9075,9103,9105,9133,-0.118226600985279,-0.371428571428531,-0.125431034482790,-0.373214285714233,-0.113485221674942,-0.373214285714237,-0.120689655172453,-0.374999999999939,0.000000000000004,0.011822660098489,-0.003571428571407,0.002586206896532,0.003571428571408,-0.002339901477814,-0.000000000000005,-0.012068965517206,2 +9076,9104,9106,9134,-0.106403940886791,-0.371428571428535,-0.113485221674942,-0.373214285714237,-0.101539408867095,-0.373214285714242,-0.108620689655246,-0.374999999999944,0.000000000000004,0.011822660098489,-0.003571428571408,0.002339901477814,0.003571428571409,-0.002093596059097,-0.000000000000005,-0.012068965517206,2 +9077,9105,9107,9135,-0.094581280788302,-0.371428571428540,-0.101539408867095,-0.373214285714242,-0.089593596059248,-0.373214285714247,-0.096551724138040,-0.374999999999949,0.000000000000004,0.011822660098489,-0.003571428571409,0.002093596059097,0.003571428571410,-0.001847290640379,-0.000000000000005,-0.012068965517206,2 +9078,9106,9108,9136,-0.082758620689814,-0.371428571428544,-0.089593596059248,-0.373214285714247,-0.077647783251400,-0.373214285714251,-0.084482758620834,-0.374999999999954,0.000000000000004,0.011822660098489,-0.003571428571410,0.001847290640379,0.003571428571411,-0.001600985221661,-0.000000000000005,-0.012068965517206,2 +9079,9107,9109,9137,-0.070935960591325,-0.371428571428548,-0.077647783251400,-0.373214285714251,-0.065701970443553,-0.373214285714256,-0.072413793103628,-0.374999999999959,0.000000000000004,0.011822660098489,-0.003571428571411,0.001600985221661,0.003571428571411,-0.001354679802944,-0.000000000000005,-0.012068965517206,2 +9080,9108,9110,9138,-0.059113300492837,-0.371428571428552,-0.065701970443553,-0.373214285714256,-0.053756157635705,-0.373214285714260,-0.060344827586422,-0.374999999999964,0.000000000000004,0.011822660098489,-0.003571428571411,0.001354679802944,0.003571428571412,-0.001108374384226,-0.000000000000005,-0.012068965517206,2 +9081,9109,9111,9139,-0.047290640394349,-0.371428571428556,-0.053756157635705,-0.373214285714260,-0.041810344827860,-0.373214285714265,-0.048275862069216,-0.374999999999969,0.000000000000004,0.011822660098487,-0.003571428571412,0.001108374384226,0.003571428571413,-0.000862068965509,-0.000000000000005,-0.012068965517204,2 +9082,9110,9112,9140,-0.035467980295861,-0.371428571428561,-0.041810344827860,-0.373214285714265,-0.029864532020013,-0.373214285714270,-0.036206896552012,-0.374999999999974,0.000000000000004,0.011822660098488,-0.003571428571413,0.000862068965509,0.003571428571414,-0.000615763546792,-0.000000000000005,-0.012068965517206,2 +9083,9111,9113,9141,-0.023645320197372,-0.371428571428565,-0.029864532020013,-0.373214285714270,-0.017918719212165,-0.373214285714274,-0.024137931034806,-0.374999999999979,0.000000000000004,0.011822660098489,-0.003571428571414,0.000615763546792,0.003571428571415,-0.000369458128075,-0.000000000000005,-0.012068965517206,2 +9084,9112,9114,9142,-0.011822660098884,-0.371428571428569,-0.017918719212165,-0.373214285714274,-0.005972906404318,-0.373214285714279,-0.012068965517599,-0.374999999999984,0.000000000000004,0.011822660098489,-0.003571428571415,0.000369458128075,0.003571428571415,-0.000123152709357,-0.000000000000005,-0.012068965517206,2 +9085,9113,9115,9143,-0.000000000000379,-0.371428571428573,-0.005972906404318,-0.373214285714279,0.005972906403562,-0.373214285714284,-0.000000000000377,-0.374999999999989,0.000000000000004,0.011822660098521,-0.003571428571415,0.000123152709357,0.003571428571416,0.000123152709361,-0.000000000000005,-0.012068965517239,2 +9086,9114,9116,9144,0.011822660098159,-0.371428571428578,0.005972906403562,-0.373214285714284,0.017918719211477,-0.373214285714288,0.012068965516880,-0.374999999999994,0.000000000000004,0.011822660098555,-0.003571428571416,-0.000123152709361,0.003571428571417,0.000369458128080,-0.000000000000005,-0.012068965517274,2 +9087,9115,9117,9145,0.023645320196714,-0.371428571428582,0.017918719211477,-0.373214285714288,0.029864532019391,-0.373214285714293,0.024137931034154,-0.374999999999999,0.000000000000004,0.011822660098555,-0.003571428571417,-0.000369458128080,0.003571428571418,0.000615763546799,-0.000000000000005,-0.012068965517274,2 +9088,9116,9118,9146,0.035467980295269,-0.371428571428586,0.029864532019391,-0.373214285714293,0.041810344827304,-0.373214285714297,0.036206896551427,-0.375000000000004,0.000000000000004,0.011822660098554,-0.003571428571418,-0.000615763546799,0.003571428571419,0.000862068965518,-0.000000000000005,-0.012068965517273,2 +9089,9117,9119,9147,0.047290640393822,-0.371428571428590,0.041810344827304,-0.373214285714297,0.053756157635218,-0.373214285714302,0.048275862068700,-0.375000000000009,0.000000000000004,0.011822660098554,-0.003571428571419,-0.000862068965518,0.003571428571420,0.001108374384238,-0.000000000000005,-0.012068965517273,2 +9090,9118,9120,9148,0.059113300492376,-0.371428571428594,0.053756157635218,-0.373214285714302,0.065701970443132,-0.373214285714307,0.060344827585974,-0.375000000000014,0.000000000000004,0.011822660098555,-0.003571428571420,-0.001108374384238,0.003571428571421,0.001354679802957,-0.000000000000005,-0.012068965517274,2 +9091,9119,9121,9149,0.070935960590931,-0.371428571428599,0.065701970443132,-0.373214285714307,0.077647783251046,-0.373214285714311,0.072413793103247,-0.375000000000019,0.000000000000004,0.011822660098554,-0.003571428571421,-0.001354679802957,0.003571428571421,0.001600985221676,-0.000000000000005,-0.012068965517273,2 +9092,9120,9122,9150,0.082758620689485,-0.371428571428603,0.077647783251046,-0.373214285714311,0.089593596058959,-0.373214285714316,0.084482758620520,-0.375000000000024,0.000000000000004,0.011822660098554,-0.003571428571421,-0.001600985221676,0.003571428571422,0.001847290640395,-0.000000000000005,-0.012068965517272,2 +9093,9121,9123,9151,0.094581280788039,-0.371428571428607,0.089593596058959,-0.373214285714316,0.101539408866873,-0.373214285714321,0.096551724137793,-0.375000000000030,0.000000000000004,0.011822660098554,-0.003571428571422,-0.001847290640395,0.003571428571423,0.002093596059114,-0.000000000000005,-0.012068965517273,2 +9094,9122,9124,9152,0.106403940886593,-0.371428571428611,0.101539408866873,-0.373214285714321,0.113485221674786,-0.373214285714325,0.108620689655066,-0.375000000000035,0.000000000000004,0.011822660098554,-0.003571428571423,-0.002093596059114,0.003571428571424,0.002339901477832,-0.000000000000005,-0.012068965517273,2 +9095,9123,9125,9153,0.118226600985143,-0.371428571428616,0.113485221674786,-0.373214285714325,0.125431034482692,-0.373214285714330,0.120689655172335,-0.375000000000040,0.000000000000004,0.011822660098547,-0.003571428571424,-0.002339901477832,0.003571428571424,0.002586206896552,-0.000000000000005,-0.012068965517266,2 +9096,9124,9126,9154,0.130049261083692,-0.371428571428620,0.125431034482692,-0.373214285714330,0.137376847290604,-0.373214285714334,0.132758620689604,-0.375000000000045,0.000000000000004,0.011822660098552,-0.003571428571424,-0.002586206896552,0.003571428571425,0.002832512315271,-0.000000000000005,-0.012068965517271,2 +9097,9125,9127,9155,0.141871921182245,-0.371428571428624,0.137376847290604,-0.373214285714334,0.149322660098517,-0.373214285714339,0.144827586206875,-0.375000000000050,0.000000000000004,0.011822660098554,-0.003571428571425,-0.002832512315271,0.003571428571426,0.003078817733990,-0.000000000000005,-0.012068965517273,2 +9098,9126,9128,9156,0.153694581280800,-0.371428571428628,0.149322660098517,-0.373214285714339,0.161268472906432,-0.373214285714344,0.156896551724149,-0.375000000000055,0.000000000000004,0.011822660098556,-0.003571428571426,-0.003078817733990,0.003571428571427,0.003325123152709,-0.000000000000005,-0.012068965517275,2 +9099,9127,9157,9745,0.165517241379356,-0.371428571428632,0.161268472906432,-0.373214285714344,0.168965517241424,-0.375000000000060,0.173214285714348,-0.373214285714348,0.000000000000004,0.011822660098557,-0.003571428571427,-0.003325123152709,-0.000000000000005,-0.012068965517276,0.003571428571428,0.003571428571428,2 +8106,9100,9130,9158,-0.176785714285631,-0.376785714285631,-0.168965517241307,-0.374999999999919,-0.164593596059055,-0.376785714285636,-0.172413793103379,-0.378571428571349,-0.003571428571431,0.003571428571431,0.000000000000005,0.012068965517217,0.003571428571430,-0.003325123152713,-0.000000000000004,-0.012315270935935,2 +9101,9129,9131,9159,-0.156896551724096,-0.374999999999924,-0.164593596059055,-0.376785714285636,-0.152401477832490,-0.376785714285641,-0.160098522167450,-0.378571428571353,0.000000000000005,0.012068965517206,-0.003571428571430,0.003325123152713,0.003571428571429,-0.003078817733995,-0.000000000000004,-0.012315270935924,2 +9102,9130,9132,9160,-0.144827586206882,-0.374999999999929,-0.152401477832490,-0.376785714285641,-0.140209359605909,-0.376785714285645,-0.147783251231518,-0.378571428571357,0.000000000000005,0.012068965517222,-0.003571428571429,0.003078817733995,0.003571428571429,-0.002832512315277,-0.000000000000004,-0.012315270935940,2 +9103,9131,9133,9161,-0.132758620689663,-0.374999999999934,-0.140209359605909,-0.376785714285645,-0.128017241379335,-0.376785714285650,-0.135467980295581,-0.378571428571362,0.000000000000005,0.012068965517215,-0.003571428571429,0.002832512315277,0.003571428571428,-0.002586206896558,-0.000000000000004,-0.012315270935934,2 +9104,9132,9134,9162,-0.120689655172453,-0.374999999999939,-0.128017241379335,-0.376785714285650,-0.115825123152770,-0.376785714285654,-0.123152709359652,-0.378571428571366,0.000000000000005,0.012068965517206,-0.003571428571428,0.002586206896558,0.003571428571427,-0.002339901477841,-0.000000000000004,-0.012315270935924,2 +9105,9133,9135,9163,-0.108620689655246,-0.374999999999944,-0.115825123152770,-0.376785714285654,-0.103633004926205,-0.376785714285659,-0.110837438423728,-0.378571428571370,0.000000000000005,0.012068965517206,-0.003571428571427,0.002339901477841,0.003571428571426,-0.002093596059123,-0.000000000000004,-0.012315270935924,2 +9106,9134,9136,9164,-0.096551724138040,-0.374999999999949,-0.103633004926205,-0.376785714285659,-0.091440886699640,-0.376785714285664,-0.098522167487804,-0.378571428571374,0.000000000000005,0.012068965517206,-0.003571428571426,0.002093596059123,0.003571428571425,-0.001847290640405,-0.000000000000004,-0.012315270935924,2 +9107,9135,9137,9165,-0.084482758620834,-0.374999999999954,-0.091440886699640,-0.376785714285664,-0.079248768473074,-0.376785714285668,-0.086206896551880,-0.378571428571378,0.000000000000005,0.012068965517206,-0.003571428571425,0.001847290640405,0.003571428571424,-0.001600985221687,-0.000000000000004,-0.012315270935924,2 +9108,9136,9138,9166,-0.072413793103628,-0.374999999999959,-0.079248768473074,-0.376785714285668,-0.067056650246509,-0.376785714285673,-0.073891625615956,-0.378571428571382,0.000000000000005,0.012068965517206,-0.003571428571424,0.001600985221687,0.003571428571423,-0.001354679802969,-0.000000000000004,-0.012315270935924,2 +9109,9137,9139,9167,-0.060344827586422,-0.374999999999964,-0.067056650246509,-0.376785714285673,-0.054864532019944,-0.376785714285678,-0.061576354680032,-0.378571428571387,0.000000000000005,0.012068965517206,-0.003571428571423,0.001354679802969,0.003571428571422,-0.001108374384252,-0.000000000000004,-0.012315270935924,2 +9110,9138,9140,9168,-0.048275862069216,-0.374999999999969,-0.054864532019944,-0.376785714285678,-0.042672413793382,-0.376785714285682,-0.049261083744109,-0.378571428571391,0.000000000000005,0.012068965517204,-0.003571428571422,0.001108374384252,0.003571428571421,-0.000862068965535,-0.000000000000004,-0.012315270935921,2 +9111,9139,9141,9169,-0.036206896552012,-0.374999999999974,-0.042672413793382,-0.376785714285682,-0.030480295566817,-0.376785714285687,-0.036945812808187,-0.378571428571395,0.000000000000005,0.012068965517206,-0.003571428571421,0.000862068965535,0.003571428571421,-0.000615763546817,-0.000000000000004,-0.012315270935923,2 +9112,9140,9142,9170,-0.024137931034806,-0.374999999999979,-0.030480295566817,-0.376785714285687,-0.018288177340252,-0.376785714285692,-0.024630541872264,-0.378571428571399,0.000000000000005,0.012068965517206,-0.003571428571421,0.000615763546817,0.003571428571420,-0.000369458128099,-0.000000000000004,-0.012315270935924,2 +9113,9141,9143,9171,-0.012068965517599,-0.374999999999984,-0.018288177340252,-0.376785714285692,-0.006096059113687,-0.376785714285696,-0.012315270936340,-0.378571428571403,0.000000000000005,0.012068965517206,-0.003571428571420,0.000369458128099,0.003571428571419,-0.000123152709381,-0.000000000000004,-0.012315270935924,2 +9114,9142,9144,9172,-0.000000000000377,-0.374999999999989,-0.006096059113687,-0.376785714285696,0.006096059112912,-0.376785714285701,-0.000000000000399,-0.378571428571408,0.000000000000005,0.012068965517239,-0.003571428571419,0.000123152709381,0.003571428571418,0.000123152709337,-0.000000000000004,-0.012315270935958,2 +9115,9143,9145,9173,0.012068965516880,-0.374999999999994,0.006096059112912,-0.376785714285701,0.018288177339545,-0.376785714285705,0.012315270935576,-0.378571428571412,0.000000000000005,0.012068965517274,-0.003571428571418,-0.000123152709337,0.003571428571417,0.000369458128056,-0.000000000000004,-0.012315270935993,2 +9116,9144,9146,9174,0.024137931034154,-0.374999999999999,0.018288177339545,-0.376785714285705,0.030480295566178,-0.376785714285710,0.024630541871569,-0.378571428571416,0.000000000000005,0.012068965517274,-0.003571428571417,-0.000369458128056,0.003571428571416,0.000615763546775,-0.000000000000004,-0.012315270935993,2 +9117,9145,9147,9175,0.036206896551427,-0.375000000000004,0.030480295566178,-0.376785714285710,0.042672413792811,-0.376785714285715,0.036945812807562,-0.378571428571420,0.000000000000005,0.012068965517273,-0.003571428571416,-0.000615763546775,0.003571428571415,0.000862068965495,-0.000000000000004,-0.012315270935992,2 +9118,9146,9148,9176,0.048275862068700,-0.375000000000009,0.042672413792811,-0.376785714285715,0.054864532019444,-0.376785714285719,0.049261083743554,-0.378571428571424,0.000000000000005,0.012068965517273,-0.003571428571415,-0.000862068965495,0.003571428571415,0.001108374384214,-0.000000000000004,-0.012315270935992,2 +9119,9147,9149,9177,0.060344827585974,-0.375000000000014,0.054864532019444,-0.376785714285719,0.067056650246078,-0.376785714285724,0.061576354679547,-0.378571428571429,0.000000000000005,0.012068965517274,-0.003571428571415,-0.001108374384214,0.003571428571414,0.001354679802934,-0.000000000000004,-0.012315270935994,2 +9120,9148,9150,9178,0.072413793103247,-0.375000000000019,0.067056650246078,-0.376785714285724,0.079248768472711,-0.376785714285728,0.073891625615541,-0.378571428571433,0.000000000000005,0.012068965517273,-0.003571428571414,-0.001354679802934,0.003571428571413,0.001600985221653,-0.000000000000004,-0.012315270935993,2 +9121,9149,9151,9179,0.084482758620520,-0.375000000000024,0.079248768472711,-0.376785714285728,0.091440886699342,-0.376785714285733,0.086206896551533,-0.378571428571437,0.000000000000005,0.012068965517272,-0.003571428571413,-0.001600985221653,0.003571428571412,0.001847290640372,-0.000000000000004,-0.012315270935991,2 +9122,9150,9152,9180,0.096551724137793,-0.375000000000030,0.091440886699342,-0.376785714285733,0.103633004925975,-0.376785714285738,0.098522167487524,-0.378571428571441,0.000000000000005,0.012068965517273,-0.003571428571412,-0.001847290640372,0.003571428571411,0.002093596059091,-0.000000000000004,-0.012315270935992,2 +9123,9151,9153,9181,0.108620689655066,-0.375000000000035,0.103633004925975,-0.376785714285738,0.115825123152607,-0.376785714285742,0.110837438423516,-0.378571428571445,0.000000000000005,0.012068965517273,-0.003571428571411,-0.002093596059091,0.003571428571410,0.002339901477810,-0.000000000000004,-0.012315270935992,2 +9124,9152,9154,9182,0.120689655172335,-0.375000000000040,0.115825123152607,-0.376785714285742,0.128017241379233,-0.376785714285747,0.123152709359505,-0.378571428571450,0.000000000000005,0.012068965517266,-0.003571428571410,-0.002339901477810,0.003571428571410,0.002586206896529,-0.000000000000004,-0.012315270935986,2 +9125,9153,9155,9183,0.132758620689604,-0.375000000000045,0.128017241379233,-0.376785714285747,0.140209359605863,-0.376785714285752,0.135467980295493,-0.378571428571454,0.000000000000005,0.012068965517271,-0.003571428571410,-0.002586206896529,0.003571428571409,0.002832512315249,-0.000000000000004,-0.012315270935990,2 +9126,9154,9156,9184,0.144827586206875,-0.375000000000050,0.140209359605863,-0.376785714285752,0.152401477832495,-0.376785714285756,0.147783251231483,-0.378571428571458,0.000000000000005,0.012068965517273,-0.003571428571409,-0.002832512315249,0.003571428571408,0.003078817733967,-0.000000000000004,-0.012315270935992,2 +9127,9155,9157,9185,0.156896551724149,-0.375000000000055,0.152401477832495,-0.376785714285756,0.164593596059130,-0.376785714285761,0.160098522167476,-0.378571428571462,0.000000000000005,0.012068965517275,-0.003571428571408,-0.003078817733967,0.003571428571407,0.003325123152687,-0.000000000000004,-0.012315270935994,2 +9128,9156,9186,9686,0.168965517241424,-0.375000000000060,0.164593596059130,-0.376785714285761,0.172413793103471,-0.378571428571466,0.176785714285765,-0.376785714285765,0.000000000000005,0.012068965517276,-0.003571428571407,-0.003325123152687,-0.000000000000004,-0.012315270935995,0.003571428571406,0.003571428571406,2 +8105,9129,9159,9187,-0.180357142857065,-0.380357142857065,-0.172413793103379,-0.378571428571349,-0.167918719211771,-0.380357142857069,-0.175862068965456,-0.382142857142785,-0.003571428571436,0.003571428571436,0.000000000000004,0.012315270935935,0.003571428571435,-0.003325123152717,-0.000000000000004,-0.012561576354653,2 +9130,9158,9160,9188,-0.160098522167450,-0.378571428571353,-0.167918719211771,-0.380357142857069,-0.155480295566487,-0.380357142857073,-0.163300492610808,-0.382142857142788,0.000000000000004,0.012315270935924,-0.003571428571435,0.003325123152717,0.003571428571435,-0.003078817733999,-0.000000000000004,-0.012561576354643,2 +9131,9159,9161,9189,-0.147783251231518,-0.378571428571357,-0.155480295566487,-0.380357142857073,-0.143041871921188,-0.380357142857077,-0.150738916256157,-0.382142857142792,0.000000000000004,0.012315270935940,-0.003571428571435,0.003078817733999,0.003571428571434,-0.002832512315280,-0.000000000000004,-0.012561576354659,2 +9132,9160,9162,9190,-0.135467980295581,-0.378571428571362,-0.143041871921188,-0.380357142857077,-0.130603448275895,-0.380357142857081,-0.138177339901501,-0.382142857142796,0.000000000000004,0.012315270935934,-0.003571428571434,0.002832512315280,0.003571428571434,-0.002586206896561,-0.000000000000004,-0.012561576354653,2 +9133,9161,9163,9191,-0.123152709359652,-0.378571428571366,-0.130603448275895,-0.380357142857081,-0.118165024630611,-0.380357142857084,-0.125615763546854,-0.382142857142799,0.000000000000004,0.012315270935924,-0.003571428571434,0.002586206896561,0.003571428571434,-0.002339901477842,-0.000000000000004,-0.012561576354643,2 +9134,9162,9164,9192,-0.110837438423728,-0.378571428571370,-0.118165024630611,-0.380357142857084,-0.105726600985328,-0.380357142857089,-0.113054187192211,-0.382142857142803,0.000000000000004,0.012315270935924,-0.003571428571434,0.002339901477842,0.003571428571433,-0.002093596059124,-0.000000000000004,-0.012561576354643,2 +9135,9163,9165,9193,-0.098522167487804,-0.378571428571374,-0.105726600985328,-0.380357142857089,-0.093288177340045,-0.380357142857092,-0.100492610837568,-0.382142857142807,0.000000000000004,0.012315270935924,-0.003571428571433,0.002093596059124,0.003571428571433,-0.001847290640405,-0.000000000000003,-0.012561576354643,2 +9136,9164,9166,9194,-0.086206896551880,-0.378571428571378,-0.093288177340045,-0.380357142857092,-0.080849753694761,-0.380357142857096,-0.087931034482926,-0.382142857142811,0.000000000000004,0.012315270935924,-0.003571428571433,0.001847290640405,0.003571428571432,-0.001600985221686,-0.000000000000004,-0.012561576354643,2 +9137,9165,9167,9195,-0.073891625615956,-0.378571428571382,-0.080849753694761,-0.380357142857096,-0.068411330049478,-0.380357142857100,-0.075369458128283,-0.382142857142814,0.000000000000004,0.012315270935924,-0.003571428571432,0.001600985221686,0.003571428571432,-0.001354679802968,-0.000000000000004,-0.012561576354643,2 +9138,9166,9168,9196,-0.061576354680032,-0.378571428571387,-0.068411330049478,-0.380357142857100,-0.055972906404195,-0.380357142857104,-0.062807881773641,-0.382142857142818,0.000000000000004,0.012315270935924,-0.003571428571432,0.001354679802968,0.003571428571431,-0.001108374384249,-0.000000000000004,-0.012561576354643,2 +9139,9167,9169,9197,-0.049261083744109,-0.378571428571391,-0.055972906404195,-0.380357142857104,-0.043534482758915,-0.380357142857108,-0.050246305419000,-0.382142857142822,0.000000000000004,0.012315270935921,-0.003571428571431,0.001108374384249,0.003571428571431,-0.000862068965532,-0.000000000000004,-0.012561576354639,2 +9140,9168,9170,9198,-0.036945812808187,-0.378571428571395,-0.043534482758915,-0.380357142857108,-0.031096059113633,-0.380357142857112,-0.037684729064360,-0.382142857142825,0.000000000000004,0.012315270935923,-0.003571428571431,0.000862068965532,0.003571428571430,-0.000615763546813,-0.000000000000004,-0.012561576354641,2 +9141,9169,9171,9199,-0.024630541872264,-0.378571428571399,-0.031096059113633,-0.380357142857112,-0.018657635468349,-0.380357142857116,-0.025123152709718,-0.382142857142829,0.000000000000004,0.012315270935924,-0.003571428571430,0.000615763546813,0.003571428571430,-0.000369458128095,-0.000000000000004,-0.012561576354643,2 +9142,9170,9172,9200,-0.012315270936340,-0.378571428571403,-0.018657635468349,-0.380357142857116,-0.006219211823066,-0.380357142857120,-0.012561576355075,-0.382142857142833,0.000000000000004,0.012315270935924,-0.003571428571430,0.000369458128095,0.003571428571429,-0.000123152709376,-0.000000000000004,-0.012561576354643,2 +9143,9171,9173,9201,-0.000000000000399,-0.378571428571408,-0.006219211823066,-0.380357142857120,0.006219211822251,-0.380357142857124,-0.000000000000416,-0.382142857142837,0.000000000000004,0.012315270935958,-0.003571428571429,0.000123152709376,0.003571428571429,0.000123152709343,-0.000000000000004,-0.012561576354677,2 +9144,9172,9174,9202,0.012315270935576,-0.378571428571412,0.006219211822251,-0.380357142857124,0.018657635467604,-0.380357142857128,0.012561576354279,-0.382142857142840,0.000000000000004,0.012315270935993,-0.003571428571429,-0.000123152709343,0.003571428571428,0.000369458128063,-0.000000000000004,-0.012561576354712,2 +9145,9173,9175,9203,0.024630541871569,-0.378571428571416,0.018657635467604,-0.380357142857128,0.031096059112957,-0.380357142857132,0.025123152708992,-0.382142857142844,0.000000000000004,0.012315270935993,-0.003571428571428,-0.000369458128063,0.003571428571428,0.000615763546782,-0.000000000000004,-0.012561576354713,2 +9146,9174,9176,9204,0.036945812807562,-0.378571428571420,0.031096059112957,-0.380357142857132,0.043534482758309,-0.380357142857136,0.037684729063705,-0.382142857142848,0.000000000000004,0.012315270935992,-0.003571428571428,-0.000615763546782,0.003571428571427,0.000862068965503,-0.000000000000004,-0.012561576354712,2 +9147,9175,9177,9205,0.049261083743554,-0.378571428571424,0.043534482758309,-0.380357142857136,0.055972906403662,-0.380357142857140,0.050246305418417,-0.382142857142851,0.000000000000004,0.012315270935992,-0.003571428571427,-0.000862068965503,0.003571428571427,0.001108374384223,-0.000000000000004,-0.012561576354713,2 +9148,9176,9178,9206,0.061576354679547,-0.378571428571429,0.055972906403662,-0.380357142857140,0.068411330049016,-0.380357142857144,0.062807881773130,-0.382142857142855,0.000000000000004,0.012315270935994,-0.003571428571427,-0.001108374384223,0.003571428571426,0.001354679802943,-0.000000000000004,-0.012561576354714,2 +9149,9177,9179,9207,0.073891625615541,-0.378571428571433,0.068411330049016,-0.380357142857144,0.080849753694368,-0.380357142857148,0.075369458127844,-0.382142857142859,0.000000000000004,0.012315270935993,-0.003571428571426,-0.001354679802943,0.003571428571426,0.001600985221663,-0.000000000000004,-0.012561576354713,2 +9150,9178,9180,9208,0.086206896551533,-0.378571428571437,0.080849753694368,-0.380357142857148,0.093288177339719,-0.380357142857152,0.087931034482555,-0.382142857142863,0.000000000000004,0.012315270935991,-0.003571428571426,-0.001600985221663,0.003571428571425,0.001847290640382,-0.000000000000004,-0.012561576354711,2 +9151,9179,9181,9209,0.098522167487524,-0.378571428571441,0.093288177339719,-0.380357142857152,0.105726600985071,-0.380357142857156,0.100492610837266,-0.382142857142866,0.000000000000004,0.012315270935992,-0.003571428571425,-0.001847290640382,0.003571428571425,0.002093596059102,-0.000000000000004,-0.012561576354712,2 +9152,9180,9182,9210,0.110837438423516,-0.378571428571445,0.105726600985071,-0.380357142857156,0.118165024630422,-0.380357142857160,0.113054187191978,-0.382142857142870,0.000000000000004,0.012315270935992,-0.003571428571425,-0.002093596059102,0.003571428571424,0.002339901477822,-0.000000000000004,-0.012561576354711,2 +9153,9181,9183,9211,0.123152709359505,-0.378571428571450,0.118165024630422,-0.380357142857160,0.130603448275769,-0.380357142857164,0.125615763546687,-0.382142857142874,0.000000000000004,0.012315270935986,-0.003571428571424,-0.002339901477822,0.003571428571424,0.002586206896543,-0.000000000000004,-0.012561576354707,2 +9154,9182,9184,9212,0.135467980295493,-0.378571428571454,0.130603448275769,-0.380357142857164,0.143041871921119,-0.380357142857168,0.138177339901395,-0.382142857142877,0.000000000000004,0.012315270935990,-0.003571428571424,-0.002586206896543,0.003571428571423,0.002832512315262,-0.000000000000004,-0.012561576354710,2 +9155,9183,9185,9213,0.147783251231483,-0.378571428571458,0.143041871921119,-0.380357142857168,0.155480295566470,-0.380357142857172,0.150738916256105,-0.382142857142881,0.000000000000004,0.012315270935992,-0.003571428571423,-0.002832512315262,0.003571428571423,0.003078817733982,-0.000000000000004,-0.012561576354711,2 +9156,9184,9186,9214,0.160098522167476,-0.378571428571462,0.155480295566470,-0.380357142857172,0.167918719211824,-0.380357142857175,0.163300492610818,-0.382142857142885,0.000000000000004,0.012315270935994,-0.003571428571423,-0.003078817733982,0.003571428571423,0.003325123152702,-0.000000000000004,-0.012561576354714,2 +9157,9185,9215,9627,0.172413793103471,-0.378571428571466,0.167918719211824,-0.380357142857175,0.175862068965533,-0.382142857142889,0.180357142857179,-0.380357142857179,0.000000000000004,0.012315270935995,-0.003571428571423,-0.003325123152702,-0.000000000000004,-0.012561576354715,0.003571428571422,0.003571428571422,2 +8104,9158,9188,9216,-0.183928571428507,-0.383928571428507,-0.175862068965456,-0.382142857142785,-0.171243842364494,-0.383928571428511,-0.179310344827545,-0.385714285714233,-0.003571428571449,0.003571428571449,0.000000000000004,0.012561576354653,0.003571428571448,-0.003325123152729,-0.000000000000003,-0.012807881773373,2 +9159,9187,9189,9217,-0.163300492610808,-0.382142857142788,-0.171243842364494,-0.383928571428511,-0.158559113300492,-0.383928571428514,-0.166502463054178,-0.385714285714236,0.000000000000004,0.012561576354643,-0.003571428571448,0.003325123152729,0.003571428571448,-0.003078817734010,-0.000000000000003,-0.012807881773362,2 +9160,9188,9190,9218,-0.150738916256157,-0.382142857142792,-0.158559113300492,-0.383928571428514,-0.145874384236473,-0.383928571428517,-0.153694581280807,-0.385714285714239,0.000000000000004,0.012561576354659,-0.003571428571448,0.003078817734010,0.003571428571447,-0.002832512315290,-0.000000000000003,-0.012807881773379,2 +9161,9189,9191,9219,-0.138177339901501,-0.382142857142796,-0.145874384236473,-0.383928571428517,-0.133189655172460,-0.383928571428521,-0.140886699507431,-0.385714285714243,0.000000000000004,0.012561576354653,-0.003571428571447,0.002832512315290,0.003571428571447,-0.002586206896570,-0.000000000000003,-0.012807881773373,2 +9162,9190,9192,9220,-0.125615763546854,-0.382142857142799,-0.133189655172460,-0.383928571428521,-0.120504926108458,-0.383928571428524,-0.128078817734064,-0.385714285714246,0.000000000000004,0.012561576354643,-0.003571428571447,0.002586206896570,0.003571428571446,-0.002339901477851,-0.000000000000003,-0.012807881773362,2 +9163,9191,9193,9221,-0.113054187192211,-0.382142857142803,-0.120504926108458,-0.383928571428524,-0.107820197044455,-0.383928571428528,-0.115270935960702,-0.385714285714249,0.000000000000004,0.012561576354643,-0.003571428571446,0.002339901477851,0.003571428571445,-0.002093596059131,-0.000000000000003,-0.012807881773362,2 +9164,9192,9194,9222,-0.100492610837568,-0.382142857142807,-0.107820197044455,-0.383928571428528,-0.095135467980453,-0.383928571428531,-0.102463054187340,-0.385714285714252,0.000000000000003,0.012561576354643,-0.003571428571445,0.002093596059131,0.003571428571445,-0.001847290640412,-0.000000000000003,-0.012807881773362,2 +9165,9193,9195,9223,-0.087931034482926,-0.382142857142811,-0.095135467980453,-0.383928571428531,-0.082450738916451,-0.383928571428535,-0.089655172413978,-0.385714285714255,0.000000000000004,0.012561576354643,-0.003571428571445,0.001847290640412,0.003571428571445,-0.001600985221692,-0.000000000000003,-0.012807881773362,2 +9166,9194,9196,9224,-0.075369458128283,-0.382142857142814,-0.082450738916451,-0.383928571428535,-0.069766009852448,-0.383928571428538,-0.076847290640616,-0.385714285714259,0.000000000000004,0.012561576354643,-0.003571428571445,0.001600985221692,0.003571428571444,-0.001354679802973,-0.000000000000003,-0.012807881773362,2 +9167,9195,9197,9225,-0.062807881773641,-0.382142857142818,-0.069766009852448,-0.383928571428538,-0.057081280788446,-0.383928571428542,-0.064039408867254,-0.385714285714262,0.000000000000004,0.012561576354643,-0.003571428571444,0.001354679802973,0.003571428571444,-0.001108374384254,-0.000000000000003,-0.012807881773362,2 +9168,9196,9198,9226,-0.050246305419000,-0.382142857142822,-0.057081280788446,-0.383928571428542,-0.044396551724448,-0.383928571428545,-0.051231527093894,-0.385714285714265,0.000000000000004,0.012561576354639,-0.003571428571444,0.001108374384254,0.003571428571443,-0.000862068965535,-0.000000000000003,-0.012807881773357,2 +9169,9197,9199,9227,-0.037684729064360,-0.382142857142825,-0.044396551724448,-0.383928571428545,-0.031711822660447,-0.383928571428549,-0.038423645320536,-0.385714285714268,0.000000000000004,0.012561576354641,-0.003571428571443,0.000862068965535,0.003571428571442,-0.000615763546816,-0.000000000000003,-0.012807881773361,2 +9170,9198,9200,9228,-0.025123152709718,-0.382142857142829,-0.031711822660447,-0.383928571428549,-0.019027093596445,-0.383928571428552,-0.025615763547174,-0.385714285714271,0.000000000000004,0.012561576354643,-0.003571428571442,0.000615763546816,0.003571428571442,-0.000369458128097,-0.000000000000003,-0.012807881773362,2 +9171,9199,9201,9229,-0.012561576355075,-0.382142857142833,-0.019027093596445,-0.383928571428552,-0.006342364532443,-0.383928571428555,-0.012807881773812,-0.385714285714275,0.000000000000004,0.012561576354643,-0.003571428571442,0.000369458128097,0.003571428571441,-0.000123152709377,-0.000000000000003,-0.012807881773362,2 +9172,9200,9202,9230,-0.000000000000416,-0.382142857142837,-0.006342364532443,-0.383928571428555,0.006342364531594,-0.383928571428559,-0.000000000000433,-0.385714285714278,0.000000000000004,0.012561576354677,-0.003571428571441,0.000123152709377,0.003571428571441,0.000123152709343,-0.000000000000003,-0.012807881773397,2 +9173,9201,9203,9231,0.012561576354279,-0.382142857142840,0.006342364531594,-0.383928571428559,0.019027093595667,-0.383928571428562,0.012807881772982,-0.385714285714281,0.000000000000004,0.012561576354712,-0.003571428571441,-0.000123152709343,0.003571428571440,0.000369458128063,-0.000000000000003,-0.012807881773433,2 +9174,9202,9204,9232,0.025123152708992,-0.382142857142844,0.019027093595667,-0.383928571428562,0.031711822659740,-0.383928571428566,0.025615763546416,-0.385714285714284,0.000000000000004,0.012561576354713,-0.003571428571440,-0.000369458128063,0.003571428571440,0.000615763546784,-0.000000000000003,-0.012807881773434,2 +9175,9203,9205,9233,0.037684729063705,-0.382142857142848,0.031711822659740,-0.383928571428566,0.044396551723813,-0.383928571428569,0.038423645319849,-0.385714285714287,0.000000000000004,0.012561576354712,-0.003571428571440,-0.000615763546784,0.003571428571439,0.000862068965505,-0.000000000000003,-0.012807881773433,2 +9176,9204,9206,9234,0.050246305418417,-0.382142857142851,0.044396551723813,-0.383928571428569,0.057081280787886,-0.383928571428573,0.051231527093282,-0.385714285714291,0.000000000000004,0.012561576354713,-0.003571428571439,-0.000862068965505,0.003571428571439,0.001108374384226,-0.000000000000003,-0.012807881773434,2 +9177,9205,9207,9235,0.062807881773130,-0.382142857142855,0.057081280787886,-0.383928571428573,0.069766009851961,-0.383928571428576,0.064039408866717,-0.385714285714294,0.000000000000004,0.012561576354714,-0.003571428571439,-0.001108374384226,0.003571428571438,0.001354679802947,-0.000000000000003,-0.012807881773435,2 +9178,9206,9208,9236,0.075369458127844,-0.382142857142859,0.069766009851961,-0.383928571428576,0.082450738916034,-0.383928571428580,0.076847290640151,-0.385714285714297,0.000000000000004,0.012561576354713,-0.003571428571438,-0.001354679802947,0.003571428571438,0.001600985221668,-0.000000000000003,-0.012807881773433,2 +9179,9207,9209,9237,0.087931034482555,-0.382142857142863,0.082450738916034,-0.383928571428580,0.095135467980105,-0.383928571428583,0.089655172413583,-0.385714285714300,0.000000000000004,0.012561576354711,-0.003571428571438,-0.001600985221668,0.003571428571437,0.001847290640388,-0.000000000000003,-0.012807881773431,2 +9180,9208,9210,9238,0.100492610837266,-0.382142857142866,0.095135467980105,-0.383928571428583,0.107820197044177,-0.383928571428587,0.102463054187015,-0.385714285714303,0.000000000000004,0.012561576354712,-0.003571428571437,-0.001847290640388,0.003571428571437,0.002093596059109,-0.000000000000003,-0.012807881773432,2 +9181,9209,9211,9239,0.113054187191978,-0.382142857142870,0.107820197044177,-0.383928571428587,0.120504926108248,-0.383928571428590,0.115270935960447,-0.385714285714306,0.000000000000004,0.012561576354711,-0.003571428571437,-0.002093596059109,0.003571428571436,0.002339901477829,-0.000000000000003,-0.012807881773432,2 +9182,9210,9212,9240,0.125615763546687,-0.382142857142874,0.120504926108248,-0.383928571428590,0.133189655172315,-0.383928571428593,0.128078817733877,-0.385714285714310,0.000000000000004,0.012561576354707,-0.003571428571436,-0.002339901477829,0.003571428571436,0.002586206896551,-0.000000000000003,-0.012807881773428,2 +9183,9211,9213,9241,0.138177339901395,-0.382142857142877,0.133189655172315,-0.383928571428593,0.145874384236386,-0.383928571428597,0.140886699507306,-0.385714285714313,0.000000000000004,0.012561576354710,-0.003571428571436,-0.002586206896551,0.003571428571435,0.002832512315271,-0.000000000000003,-0.012807881773431,2 +9184,9212,9214,9242,0.150738916256105,-0.382142857142881,0.145874384236386,-0.383928571428597,0.158559113300457,-0.383928571428600,0.153694581280737,-0.385714285714316,0.000000000000004,0.012561576354711,-0.003571428571435,-0.002832512315271,0.003571428571435,0.003078817733992,-0.000000000000003,-0.012807881773432,2 +9185,9213,9215,9243,0.163300492610818,-0.382142857142885,0.158559113300457,-0.383928571428600,0.171243842364531,-0.383928571428604,0.166502463054170,-0.385714285714319,0.000000000000004,0.012561576354714,-0.003571428571435,-0.003078817733992,0.003571428571434,0.003325123152713,-0.000000000000003,-0.012807881773435,2 +9186,9214,9244,9568,0.175862068965533,-0.382142857142889,0.171243842364531,-0.383928571428604,0.179310344827606,-0.385714285714322,0.183928571428607,-0.383928571428607,0.000000000000004,0.012561576354715,-0.003571428571434,-0.003325123152713,-0.000000000000003,-0.012807881773436,0.003571428571434,0.003571428571434,2 +8103,9187,9217,9245,-0.187499999999963,-0.387499999999963,-0.179310344827545,-0.385714285714233,-0.174568965517230,-0.387499999999965,-0.182758620689648,-0.389285714285694,-0.003571428571462,0.003571428571462,0.000000000000003,0.012807881773373,0.003571428571460,-0.003325123152743,-0.000000000000001,-0.013054187192092,2 +9188,9216,9218,9246,-0.166502463054178,-0.385714285714236,-0.174568965517230,-0.387499999999965,-0.161637931034509,-0.387499999999967,-0.169704433497562,-0.389285714285695,0.000000000000003,0.012807881773362,-0.003571428571460,0.003325123152743,0.003571428571458,-0.003078817734024,-0.000000000000001,-0.013054187192081,2 +9189,9217,9219,9247,-0.153694581280807,-0.385714285714239,-0.161637931034509,-0.387499999999967,-0.148706896551771,-0.387499999999969,-0.156650246305472,-0.389285714285697,0.000000000000003,0.012807881773379,-0.003571428571458,0.003078817734024,0.003571428571457,-0.002832512315305,-0.000000000000001,-0.013054187192098,2 +9190,9218,9220,9248,-0.140886699507431,-0.385714285714243,-0.148706896551771,-0.387499999999969,-0.135775862069038,-0.387499999999972,-0.143596059113377,-0.389285714285698,0.000000000000003,0.012807881773373,-0.003571428571457,0.002832512315305,0.003571428571454,-0.002586206896585,-0.000000000000001,-0.013054187192093,2 +9191,9219,9221,9249,-0.128078817734064,-0.385714285714246,-0.135775862069038,-0.387499999999972,-0.122844827586316,-0.387499999999974,-0.130541871921290,-0.389285714285699,0.000000000000003,0.012807881773362,-0.003571428571454,0.002586206896585,0.003571428571453,-0.002339901477867,-0.000000000000001,-0.013054187192081,2 +9192,9220,9222,9250,-0.115270935960702,-0.385714285714249,-0.122844827586316,-0.387499999999974,-0.109913793103595,-0.387499999999976,-0.117487684729209,-0.389285714285701,0.000000000000003,0.012807881773362,-0.003571428571453,0.002339901477867,0.003571428571451,-0.002093596059148,-0.000000000000001,-0.013054187192081,2 +9193,9221,9223,9251,-0.102463054187340,-0.385714285714252,-0.109913793103595,-0.387499999999976,-0.096982758620873,-0.387499999999978,-0.104433497537128,-0.389285714285702,0.000000000000003,0.012807881773362,-0.003571428571451,0.002093596059148,0.003571428571449,-0.001847290640429,-0.000000000000001,-0.013054187192081,2 +9194,9222,9224,9252,-0.089655172413978,-0.385714285714255,-0.096982758620873,-0.387499999999978,-0.084051724138152,-0.387499999999981,-0.091379310345047,-0.389285714285703,0.000000000000003,0.012807881773362,-0.003571428571449,0.001847290640429,0.003571428571447,-0.001600985221710,-0.000000000000001,-0.013054187192081,2 +9195,9223,9225,9253,-0.076847290640616,-0.385714285714259,-0.084051724138152,-0.387499999999981,-0.071120689655430,-0.387499999999983,-0.078325123152966,-0.389285714285704,0.000000000000003,0.012807881773362,-0.003571428571447,0.001600985221710,0.003571428571445,-0.001354679802991,-0.000000000000001,-0.013054187192081,2 +9196,9224,9226,9254,-0.064039408867254,-0.385714285714262,-0.071120689655430,-0.387499999999983,-0.058189655172709,-0.387499999999985,-0.065270935960885,-0.389285714285706,0.000000000000003,0.012807881773362,-0.003571428571445,0.001354679802991,0.003571428571443,-0.001108374384272,-0.000000000000001,-0.013054187192081,2 +9197,9225,9227,9255,-0.051231527093894,-0.385714285714265,-0.058189655172709,-0.387499999999985,-0.045258620689993,-0.387499999999987,-0.052216748768807,-0.389285714285707,0.000000000000003,0.012807881773357,-0.003571428571443,0.001108374384272,0.003571428571441,-0.000862068965554,-0.000000000000001,-0.013054187192075,2 +9198,9226,9228,9256,-0.038423645320536,-0.385714285714268,-0.045258620689993,-0.387499999999987,-0.032327586207273,-0.387499999999989,-0.039162561576730,-0.389285714285708,0.000000000000003,0.012807881773361,-0.003571428571441,0.000862068965554,0.003571428571439,-0.000615763546835,-0.000000000000001,-0.013054187192079,2 +9199,9227,9229,9257,-0.025615763547174,-0.385714285714271,-0.032327586207273,-0.387499999999989,-0.019396551724552,-0.387499999999992,-0.026108374384650,-0.389285714285709,0.000000000000003,0.012807881773362,-0.003571428571439,0.000615763546835,0.003571428571437,-0.000369458128116,-0.000000000000001,-0.013054187192081,2 +9200,9228,9230,9258,-0.012807881773812,-0.385714285714275,-0.019396551724552,-0.387499999999992,-0.006465517241830,-0.387499999999994,-0.013054187192569,-0.389285714285711,0.000000000000003,0.012807881773362,-0.003571428571437,0.000369458128116,0.003571428571435,-0.000123152709398,-0.000000000000001,-0.013054187192081,2 +9201,9229,9231,9259,-0.000000000000433,-0.385714285714278,-0.006465517241830,-0.387499999999994,0.006465517240926,-0.387499999999996,-0.000000000000471,-0.389285714285712,0.000000000000003,0.012807881773397,-0.003571428571435,0.000123152709398,0.003571428571433,0.000123152709322,-0.000000000000001,-0.013054187192116,2 +9202,9230,9232,9260,0.012807881772982,-0.385714285714281,0.006465517240926,-0.387499999999996,0.019396551723720,-0.387499999999998,0.013054187191664,-0.389285714285713,0.000000000000003,0.012807881773433,-0.003571428571433,-0.000123152709322,0.003571428571431,0.000369458128042,-0.000000000000001,-0.013054187192153,2 +9203,9231,9233,9261,0.025615763546416,-0.385714285714284,0.019396551723720,-0.387499999999998,0.032327586206514,-0.387500000000001,0.026108374383818,-0.389285714285714,0.000000000000003,0.012807881773434,-0.003571428571431,-0.000369458128042,0.003571428571429,0.000615763546762,-0.000000000000001,-0.013054187192154,2 +9204,9232,9234,9262,0.038423645319849,-0.385714285714287,0.032327586206514,-0.387500000000001,0.045258620689307,-0.387500000000003,0.039162561575971,-0.389285714285716,0.000000000000003,0.012807881773433,-0.003571428571429,-0.000615763546762,0.003571428571427,0.000862068965483,-0.000000000000001,-0.013054187192153,2 +9205,9233,9235,9263,0.051231527093282,-0.385714285714291,0.045258620689307,-0.387500000000003,0.058189655172101,-0.387500000000005,0.052216748768125,-0.389285714285717,0.000000000000003,0.012807881773434,-0.003571428571427,-0.000862068965483,0.003571428571426,0.001108374384203,-0.000000000000001,-0.013054187192154,2 +9206,9234,9236,9264,0.064039408866717,-0.385714285714294,0.058189655172101,-0.387500000000005,0.071120689654896,-0.387500000000007,0.065270935960280,-0.389285714285718,0.000000000000003,0.012807881773435,-0.003571428571426,-0.001108374384203,0.003571428571424,0.001354679802924,-0.000000000000001,-0.013054187192156,2 +9207,9235,9237,9265,0.076847290640151,-0.385714285714297,0.071120689654896,-0.387500000000007,0.084051724137690,-0.387500000000009,0.078325123152435,-0.389285714285719,0.000000000000003,0.012807881773433,-0.003571428571424,-0.001354679802924,0.003571428571421,0.001600985221644,-0.000000000000001,-0.013054187192154,2 +9208,9236,9238,9266,0.089655172413583,-0.385714285714300,0.084051724137690,-0.387500000000009,0.096982758620481,-0.387500000000012,0.091379310344587,-0.389285714285721,0.000000000000003,0.012807881773431,-0.003571428571421,-0.001600985221644,0.003571428571420,0.001847290640364,-0.000000000000001,-0.013054187192151,2 +9209,9237,9239,9267,0.102463054187015,-0.385714285714303,0.096982758620481,-0.387500000000012,0.109913793103273,-0.387500000000014,0.104433497536739,-0.389285714285722,0.000000000000003,0.012807881773432,-0.003571428571420,-0.001847290640364,0.003571428571418,0.002093596059084,-0.000000000000001,-0.013054187192152,2 +9210,9238,9240,9268,0.115270935960447,-0.385714285714306,0.109913793103273,-0.387500000000014,0.122844827586065,-0.387500000000016,0.117487684728891,-0.389285714285723,0.000000000000003,0.012807881773432,-0.003571428571418,-0.002093596059084,0.003571428571416,0.002339901477804,-0.000000000000001,-0.013054187192152,2 +9211,9239,9241,9269,0.128078817733877,-0.385714285714310,0.122844827586065,-0.387500000000016,0.135775862068853,-0.387500000000018,0.130541871921041,-0.389285714285725,0.000000000000003,0.012807881773428,-0.003571428571416,-0.002339901477804,0.003571428571414,0.002586206896525,-0.000000000000001,-0.013054187192149,2 +9212,9240,9242,9270,0.140886699507306,-0.385714285714313,0.135775862068853,-0.387500000000018,0.148706896551644,-0.387500000000020,0.143596059113191,-0.389285714285726,0.000000000000003,0.012807881773431,-0.003571428571414,-0.002586206896525,0.003571428571412,0.002832512315245,-0.000000000000001,-0.013054187192151,2 +9213,9241,9243,9271,0.153694581280737,-0.385714285714316,0.148706896551644,-0.387500000000020,0.161637931034436,-0.387500000000023,0.156650246305342,-0.389285714285727,0.000000000000003,0.012807881773432,-0.003571428571412,-0.002832512315245,0.003571428571410,0.003078817733965,-0.000000000000001,-0.013054187192152,2 +9214,9242,9244,9272,0.166502463054170,-0.385714285714319,0.161637931034436,-0.387500000000023,0.174568965517231,-0.387500000000025,0.169704433497496,-0.389285714285728,0.000000000000003,0.012807881773435,-0.003571428571410,-0.003078817733965,0.003571428571408,0.003325123152686,-0.000000000000001,-0.013054187192155,2 +9215,9243,9273,9509,0.179310344827606,-0.385714285714322,0.174568965517231,-0.387500000000025,0.182758620689652,-0.389285714285730,0.187500000000027,-0.387500000000027,0.000000000000003,0.012807881773436,-0.003571428571408,-0.003325123152686,-0.000000000000001,-0.013054187192157,0.003571428571406,0.003571428571406,2 +8102,9216,9246,9274,-0.191071428571419,-0.391071428571419,-0.182758620689648,-0.389285714285694,-0.177894088669968,-0.391071428571420,-0.186206896551739,-0.392857142857145,-0.003571428571451,0.003571428571451,0.000000000000001,0.013054187192092,0.003571428571450,-0.003325123152732,-0.000000000000000,-0.013300492610811,2 +9217,9245,9247,9275,-0.169704433497562,-0.389285714285695,-0.177894088669968,-0.391071428571420,-0.164716748768527,-0.391071428571421,-0.172906403940934,-0.392857142857145,0.000000000000001,0.013054187192081,-0.003571428571450,0.003325123152732,0.003571428571450,-0.003078817734013,-0.000000000000000,-0.013300492610800,2 +9218,9246,9248,9276,-0.156650246305472,-0.389285714285697,-0.164716748768527,-0.391071428571421,-0.151539408867070,-0.391071428571422,-0.159605911330125,-0.392857142857146,0.000000000000001,0.013054187192098,-0.003571428571450,0.003078817734013,0.003571428571448,-0.002832512315293,-0.000000000000000,-0.013300492610817,2 +9219,9247,9249,9277,-0.143596059113377,-0.389285714285698,-0.151539408867070,-0.391071428571422,-0.138362068965617,-0.391071428571423,-0.146305418719310,-0.392857142857146,0.000000000000001,0.013054187192093,-0.003571428571448,0.002832512315293,0.003571428571448,-0.002586206896573,-0.000000000000000,-0.013300492610813,2 +9220,9248,9250,9278,-0.130541871921290,-0.389285714285699,-0.138362068965617,-0.391071428571423,-0.125184729064176,-0.391071428571423,-0.133004926108503,-0.392857142857147,0.000000000000001,0.013054187192081,-0.003571428571448,0.002586206896573,0.003571428571447,-0.002339901477854,-0.000000000000000,-0.013300492610800,2 +9221,9249,9251,9279,-0.117487684729209,-0.389285714285701,-0.125184729064176,-0.391071428571423,-0.112007389162736,-0.391071428571424,-0.119704433497703,-0.392857142857147,0.000000000000001,0.013054187192081,-0.003571428571447,0.002339901477854,0.003571428571446,-0.002093596059135,-0.000000000000000,-0.013300492610800,2 +9222,9250,9252,9280,-0.104433497537128,-0.389285714285702,-0.112007389162736,-0.391071428571424,-0.098830049261295,-0.391071428571425,-0.106403940886903,-0.392857142857147,0.000000000000001,0.013054187192081,-0.003571428571446,0.002093596059135,0.003571428571445,-0.001847290640415,-0.000000000000000,-0.013300492610800,2 +9223,9251,9253,9281,-0.091379310345047,-0.389285714285703,-0.098830049261295,-0.391071428571425,-0.085652709359855,-0.391071428571426,-0.093103448276103,-0.392857142857148,0.000000000000001,0.013054187192081,-0.003571428571445,0.001847290640415,0.003571428571444,-0.001600985221696,-0.000000000000000,-0.013300492610800,2 +9224,9252,9254,9282,-0.078325123152966,-0.389285714285704,-0.085652709359855,-0.391071428571426,-0.072475369458414,-0.391071428571427,-0.079802955665303,-0.392857142857148,0.000000000000001,0.013054187192081,-0.003571428571444,0.001600985221696,0.003571428571443,-0.001354679802977,-0.000000000000000,-0.013300492610800,2 +9225,9253,9255,9283,-0.065270935960885,-0.389285714285706,-0.072475369458414,-0.391071428571427,-0.059298029556974,-0.391071428571428,-0.066502463054503,-0.392857142857149,0.000000000000001,0.013054187192081,-0.003571428571443,0.001354679802977,0.003571428571443,-0.001108374384258,-0.000000000000000,-0.013300492610800,2 +9226,9254,9256,9284,-0.052216748768807,-0.389285714285707,-0.059298029556974,-0.391071428571428,-0.046120689655540,-0.391071428571428,-0.053201970443706,-0.392857142857149,0.000000000000001,0.013054187192075,-0.003571428571443,0.001108374384258,0.003571428571442,-0.000862068965539,-0.000000000000000,-0.013300492610793,2 +9227,9255,9257,9285,-0.039162561576730,-0.389285714285708,-0.046120689655540,-0.391071428571428,-0.032943349754101,-0.391071428571429,-0.039901477832910,-0.392857142857149,0.000000000000001,0.013054187192079,-0.003571428571442,0.000862068965539,0.003571428571441,-0.000615763546821,-0.000000000000000,-0.013300492610798,2 +9228,9256,9258,9286,-0.026108374384650,-0.389285714285709,-0.032943349754101,-0.391071428571429,-0.019766009852660,-0.391071428571430,-0.026600985222111,-0.392857142857150,0.000000000000001,0.013054187192081,-0.003571428571441,0.000615763546821,0.003571428571440,-0.000369458128101,-0.000000000000000,-0.013300492610800,2 +9229,9257,9259,9287,-0.013054187192569,-0.389285714285711,-0.019766009852660,-0.391071428571430,-0.006588669951220,-0.391071428571431,-0.013300492611311,-0.392857142857150,0.000000000000001,0.013054187192081,-0.003571428571440,0.000369458128101,0.003571428571439,-0.000123152709382,-0.000000000000000,-0.013300492610800,2 +9230,9258,9260,9288,-0.000000000000471,-0.389285714285712,-0.006588669951220,-0.391071428571431,0.006588669950256,-0.391071428571432,-0.000000000000493,-0.392857142857151,0.000000000000001,0.013054187192116,-0.003571428571439,0.000123152709382,0.003571428571438,0.000123152709338,-0.000000000000000,-0.013300492610836,2 +9231,9259,9261,9289,0.013054187191664,-0.389285714285713,0.006588669950256,-0.391071428571432,0.019766009851770,-0.391071428571433,0.013300492610362,-0.392857142857151,0.000000000000001,0.013054187192153,-0.003571428571438,-0.000123152709338,0.003571428571437,0.000369458128058,-0.000000000000000,-0.013300492610874,2 +9232,9260,9262,9290,0.026108374383818,-0.389285714285714,0.019766009851770,-0.391071428571433,0.032943349753284,-0.391071428571433,0.026600985221236,-0.392857142857151,0.000000000000001,0.013054187192154,-0.003571428571437,-0.000369458128058,0.003571428571436,0.000615763546779,-0.000000000000000,-0.013300492610875,2 +9233,9261,9263,9291,0.039162561575971,-0.389285714285716,0.032943349753284,-0.391071428571433,0.046120689654798,-0.391071428571434,0.039901477832111,-0.392857142857152,0.000000000000001,0.013054187192153,-0.003571428571436,-0.000615763546779,0.003571428571436,0.000862068965499,-0.000000000000000,-0.013300492610874,2 +9234,9262,9264,9292,0.052216748768125,-0.389285714285717,0.046120689654798,-0.391071428571434,0.059298029556312,-0.391071428571435,0.053201970442985,-0.392857142857152,0.000000000000001,0.013054187192154,-0.003571428571436,-0.000862068965499,0.003571428571435,0.001108374384220,-0.000000000000000,-0.013300492610875,2 +9235,9263,9265,9293,0.065270935960280,-0.389285714285718,0.059298029556312,-0.391071428571435,0.072475369457829,-0.391071428571436,0.066502463053861,-0.392857142857153,0.000000000000001,0.013054187192156,-0.003571428571435,-0.001108374384220,0.003571428571434,0.001354679802941,-0.000000000000000,-0.013300492610877,2 +9236,9264,9266,9294,0.078325123152435,-0.389285714285719,0.072475369457829,-0.391071428571436,0.085652709359343,-0.391071428571437,0.079802955664737,-0.392857142857153,0.000000000000001,0.013054187192154,-0.003571428571434,-0.001354679802941,0.003571428571433,0.001600985221662,-0.000000000000000,-0.013300492610874,2 +9237,9265,9267,9295,0.091379310344587,-0.389285714285721,0.085652709359343,-0.391071428571437,0.098830049260854,-0.391071428571438,0.093103448275609,-0.392857142857153,0.000000000000001,0.013054187192151,-0.003571428571433,-0.001600985221662,0.003571428571432,0.001847290640382,-0.000000000000000,-0.013300492610871,2 +9238,9266,9268,9296,0.104433497536739,-0.389285714285722,0.098830049260854,-0.391071428571438,0.112007389162366,-0.391071428571438,0.106403940886481,-0.392857142857154,0.000000000000001,0.013054187192152,-0.003571428571432,-0.001847290640382,0.003571428571431,0.002093596059102,-0.000000000000000,-0.013300492610873,2 +9239,9267,9269,9297,0.117487684728891,-0.389285714285723,0.112007389162366,-0.391071428571438,0.125184729063878,-0.391071428571439,0.119704433497354,-0.392857142857154,0.000000000000001,0.013054187192152,-0.003571428571431,-0.002093596059102,0.003571428571430,0.002339901477823,-0.000000000000000,-0.013300492610872,2 +9240,9268,9270,9298,0.130541871921041,-0.389285714285725,0.125184729063878,-0.391071428571439,0.138362068965388,-0.391071428571440,0.133004926108225,-0.392857142857155,0.000000000000001,0.013054187192149,-0.003571428571430,-0.002339901477823,0.003571428571430,0.002586206896544,-0.000000000000000,-0.013300492610870,2 +9241,9269,9271,9299,0.143596059113191,-0.389285714285726,0.138362068965388,-0.391071428571440,0.151539408866899,-0.391071428571441,0.146305418719095,-0.392857142857155,0.000000000000001,0.013054187192151,-0.003571428571430,-0.002586206896544,0.003571428571429,0.002832512315265,-0.000000000000000,-0.013300492610871,2 +9242,9270,9272,9300,0.156650246305342,-0.389285714285727,0.151539408866899,-0.391071428571441,0.164716748768411,-0.391071428571442,0.159605911329967,-0.392857142857155,0.000000000000001,0.013054187192152,-0.003571428571429,-0.002832512315265,0.003571428571428,0.003078817733985,-0.000000000000000,-0.013300492610872,2 +9243,9271,9273,9301,0.169704433497496,-0.389285714285728,0.164716748768411,-0.391071428571442,0.177894088669926,-0.391071428571443,0.172906403940841,-0.392857142857156,0.000000000000001,0.013054187192155,-0.003571428571428,-0.003078817733985,0.003571428571427,0.003325123152706,-0.000000000000000,-0.013300492610876,2 +9244,9272,9302,9450,0.182758620689652,-0.389285714285730,0.177894088669926,-0.391071428571443,0.186206896551718,-0.392857142857156,0.191071428571443,-0.391071428571443,0.000000000000001,0.013054187192157,-0.003571428571427,-0.003325123152706,-0.000000000000000,-0.013300492610877,0.003571428571426,0.003571428571426,2 +8101,9245,9275,9303,-0.194642857142864,-0.394642857142864,-0.186206896551739,-0.392857142857145,-0.181219211822694,-0.394642857142864,-0.189655172413818,-0.396428571428583,-0.003571428571438,0.003571428571438,0.000000000000000,0.013300492610811,0.003571428571438,-0.003325123152719,-0.000000000000000,-0.013546798029530,2 +9246,9274,9276,9304,-0.172906403940934,-0.392857142857145,-0.181219211822694,-0.394642857142864,-0.167795566502534,-0.394642857142864,-0.176108374384294,-0.396428571428583,0.000000000000000,0.013300492610800,-0.003571428571438,0.003325123152719,0.003571428571437,-0.003078817734000,0.000000000000000,-0.013546798029519,2 +9247,9275,9277,9305,-0.159605911330125,-0.392857142857146,-0.167795566502534,-0.394642857142864,-0.154371921182357,-0.394642857142864,-0.162561576354766,-0.396428571428583,0.000000000000000,0.013300492610817,-0.003571428571437,0.003078817734000,0.003571428571436,-0.002832512315282,0.000000000000000,-0.013546798029536,2 +9248,9276,9278,9306,-0.146305418719310,-0.392857142857146,-0.154371921182357,-0.394642857142864,-0.140948275862184,-0.394642857142864,-0.149014778325232,-0.396428571428582,0.000000000000000,0.013300492610813,-0.003571428571436,0.002832512315282,0.003571428571436,-0.002586206896562,0.000000000000000,-0.013546798029533,2 +9249,9277,9279,9307,-0.133004926108503,-0.392857142857147,-0.140948275862184,-0.394642857142864,-0.127524630542025,-0.394642857142864,-0.135467980295706,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571436,0.002586206896562,0.003571428571435,-0.002339901477843,0.000000000000000,-0.013546798029519,2 +9250,9278,9280,9308,-0.119704433497703,-0.392857142857147,-0.127524630542025,-0.394642857142864,-0.114100985221865,-0.394642857142865,-0.121921182266187,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571435,0.002339901477843,0.003571428571435,-0.002093596059125,0.000000000000000,-0.013546798029519,2 +9251,9279,9281,9309,-0.106403940886903,-0.392857142857147,-0.114100985221865,-0.394642857142865,-0.100677339901706,-0.394642857142865,-0.108374384236668,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571435,0.002093596059125,0.003571428571435,-0.001847290640406,-0.000000000000000,-0.013546798029519,2 +9252,9280,9282,9310,-0.093103448276103,-0.392857142857148,-0.100677339901706,-0.394642857142865,-0.087253694581547,-0.394642857142865,-0.094827586207150,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571435,0.001847290640406,0.003571428571434,-0.001600985221687,0.000000000000000,-0.013546798029519,2 +9253,9281,9283,9311,-0.079802955665303,-0.392857142857148,-0.087253694581547,-0.394642857142865,-0.073830049261387,-0.394642857142865,-0.081280788177631,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571434,0.001600985221687,0.003571428571433,-0.001354679802969,0.000000000000000,-0.013546798029519,2 +9254,9282,9284,9312,-0.066502463054503,-0.392857142857149,-0.073830049261387,-0.394642857142865,-0.060406403941228,-0.394642857142865,-0.067733990148112,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571433,0.001354679802969,0.003571428571433,-0.001108374384250,-0.000000000000000,-0.013546798029519,2 +9255,9283,9285,9313,-0.053201970443706,-0.392857142857149,-0.060406403941228,-0.394642857142865,-0.046982758621075,-0.394642857142866,-0.054187192118597,-0.396428571428582,0.000000000000000,0.013300492610793,-0.003571428571433,0.001108374384250,0.003571428571433,-0.000862068965532,-0.000000000000000,-0.013546798029511,2 +9256,9284,9286,9314,-0.039901477832910,-0.392857142857149,-0.046982758621075,-0.394642857142866,-0.033559113300918,-0.394642857142866,-0.040640394089083,-0.396428571428582,0.000000000000000,0.013300492610798,-0.003571428571433,0.000862068965532,0.003571428571432,-0.000615763546814,-0.000000000000000,-0.013546798029517,2 +9257,9285,9287,9315,-0.026600985222111,-0.392857142857150,-0.033559113300918,-0.394642857142866,-0.020135467980759,-0.394642857142866,-0.027093596059565,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571432,0.000615763546814,0.003571428571432,-0.000369458128095,0.000000000000000,-0.013546798029519,2 +9258,9286,9288,9316,-0.013300492611311,-0.392857142857150,-0.020135467980759,-0.394642857142866,-0.006711822660599,-0.394642857142866,-0.013546798030047,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571432,0.000369458128095,0.003571428571431,-0.000123152709376,0.000000000000000,-0.013546798029519,2 +9259,9287,9289,9317,-0.000000000000493,-0.392857142857151,-0.006711822660599,-0.394642857142866,0.006711822659596,-0.394642857142866,-0.000000000000510,-0.396428571428582,0.000000000000000,0.013300492610836,-0.003571428571431,0.000123152709376,0.003571428571431,0.000123152709343,-0.000000000000000,-0.013546798029555,2 +9260,9288,9290,9318,0.013300492610362,-0.392857142857151,0.006711822659596,-0.394642857142866,0.020135467979830,-0.394642857142866,0.013546798029065,-0.396428571428582,0.000000000000000,0.013300492610874,-0.003571428571431,-0.000123152709343,0.003571428571430,0.000369458128063,0.000000000000000,-0.013546798029594,2 +9261,9289,9291,9319,0.026600985221236,-0.392857142857151,0.020135467979830,-0.394642857142866,0.033559113300065,-0.394642857142867,0.027093596058659,-0.396428571428581,0.000000000000000,0.013300492610875,-0.003571428571430,-0.000369458128063,0.003571428571430,0.000615763546783,0.000000000000000,-0.013546798029595,2 +9262,9290,9292,9320,0.039901477832111,-0.392857142857152,0.033559113300065,-0.394642857142867,0.046982758620299,-0.394642857142867,0.040640394088253,-0.396428571428581,0.000000000000000,0.013300492610874,-0.003571428571430,-0.000615763546783,0.003571428571429,0.000862068965503,0.000000000000000,-0.013546798029594,2 +9263,9291,9293,9321,0.053201970442985,-0.392857142857152,0.046982758620299,-0.394642857142867,0.060406403940534,-0.394642857142867,0.054187192117848,-0.396428571428581,0.000000000000000,0.013300492610875,-0.003571428571429,-0.000862068965503,0.003571428571429,0.001108374384223,-0.000000000000000,-0.013546798029595,2 +9264,9292,9294,9322,0.066502463053861,-0.392857142857153,0.060406403940534,-0.394642857142867,0.073830049260771,-0.394642857142867,0.067733990147444,-0.396428571428581,0.000000000000000,0.013300492610877,-0.003571428571429,-0.001108374384223,0.003571428571428,0.001354679802944,0.000000000000000,-0.013546798029597,2 +9265,9293,9295,9323,0.079802955664737,-0.392857142857153,0.073830049260771,-0.394642857142867,0.087253694581006,-0.394642857142867,0.081280788177040,-0.396428571428581,0.000000000000000,0.013300492610874,-0.003571428571428,-0.001354679802944,0.003571428571428,0.001600985221664,0.000000000000000,-0.013546798029594,2 +9266,9294,9296,9324,0.093103448275609,-0.392857142857153,0.087253694581006,-0.394642857142867,0.100677339901237,-0.394642857142867,0.094827586206633,-0.396428571428581,0.000000000000000,0.013300492610871,-0.003571428571428,-0.001600985221664,0.003571428571427,0.001847290640383,0.000000000000000,-0.013546798029591,2 +9267,9295,9297,9325,0.106403940886481,-0.392857142857154,0.100677339901237,-0.394642857142867,0.114100985221469,-0.394642857142867,0.108374384236225,-0.396428571428581,0.000000000000000,0.013300492610873,-0.003571428571427,-0.001847290640383,0.003571428571427,0.002093596059103,0.000000000000000,-0.013546798029593,2 +9268,9296,9298,9326,0.119704433497354,-0.392857142857154,0.114100985221469,-0.394642857142867,0.127524630541701,-0.394642857142868,0.121921182265817,-0.396428571428581,0.000000000000000,0.013300492610872,-0.003571428571427,-0.002093596059103,0.003571428571426,0.002339901477823,0.000000000000000,-0.013546798029592,2 +9269,9297,9299,9327,0.133004926108225,-0.392857142857155,0.127524630541701,-0.394642857142868,0.140948275861932,-0.394642857142868,0.135467980295408,-0.396428571428581,0.000000000000000,0.013300492610870,-0.003571428571426,-0.002339901477823,0.003571428571426,0.002586206896544,-0.000000000000000,-0.013546798029591,2 +9270,9298,9300,9328,0.146305418719095,-0.392857142857155,0.140948275861932,-0.394642857142868,0.154371921182163,-0.394642857142868,0.149014778324999,-0.396428571428581,0.000000000000000,0.013300492610871,-0.003571428571426,-0.002586206896544,0.003571428571425,0.002832512315264,0.000000000000000,-0.013546798029592,2 +9271,9299,9301,9329,0.159605911329967,-0.392857142857155,0.154371921182163,-0.394642857142868,0.167795566502395,-0.394642857142868,0.162561576354591,-0.396428571428581,0.000000000000000,0.013300492610872,-0.003571428571425,-0.002832512315264,0.003571428571425,0.003078817733984,0.000000000000000,-0.013546798029592,2 +9272,9300,9302,9330,0.172906403940841,-0.392857142857156,0.167795566502395,-0.394642857142868,0.181219211822631,-0.394642857142868,0.176108374384185,-0.396428571428581,0.000000000000000,0.013300492610876,-0.003571428571425,-0.003078817733984,0.003571428571424,0.003325123152704,-0.000000000000000,-0.013546798029596,2 +9273,9301,9331,9391,0.186206896551718,-0.392857142857156,0.181219211822631,-0.394642857142868,0.189655172413781,-0.396428571428580,0.194642857142868,-0.394642857142868,0.000000000000000,0.013300492610877,-0.003571428571424,-0.003325123152704,0.000000000000000,-0.013546798029598,0.003571428571424,0.003571428571424,2 +4372,8100,9274,9304,-0.193103448275876,-0.400000000000000,-0.198214285714291,-0.398214285714291,-0.189655172413818,-0.396428571428583,-0.184544334975403,-0.398214285714291,-0.000000000000000,-0.013793103448248,-0.003571428571417,0.003571428571417,0.000000000000000,0.013546798029530,0.003571428571417,-0.003325123152699,2 +4386,9275,9303,9305,-0.179310344827634,-0.400000000000000,-0.176108374384294,-0.396428571428583,-0.184544334975403,-0.398214285714291,-0.170874384236525,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571417,0.003325123152699,0.003571428571417,-0.003078817733982,2 +4400,9276,9304,9306,-0.165517241379389,-0.400000000000000,-0.162561576354766,-0.396428571428583,-0.170874384236525,-0.398214285714291,-0.157204433497630,-0.398214285714291,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013546798029536,-0.003571428571417,0.003078817733982,0.003571428571418,-0.002832512315264,2 +4414,9277,9305,9307,-0.151724137931136,-0.400000000000000,-0.149014778325232,-0.396428571428582,-0.157204433497630,-0.398214285714291,-0.143534482758738,-0.398214285714291,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013546798029533,-0.003571428571418,0.002832512315264,0.003571428571418,-0.002586206896545,2 +4428,9278,9306,9308,-0.137931034482892,-0.400000000000000,-0.135467980295706,-0.396428571428582,-0.143534482758738,-0.398214285714291,-0.129864532019860,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571418,0.002586206896545,0.003571428571418,-0.002339901477827,2 +4442,9279,9307,9309,-0.124137931034655,-0.400000000000000,-0.121921182266187,-0.396428571428582,-0.129864532019860,-0.398214285714291,-0.116194581280982,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571418,0.002339901477827,0.003571428571418,-0.002093596059109,2 +4456,9280,9308,9310,-0.110344827586419,-0.400000000000000,-0.108374384236668,-0.396428571428582,-0.116194581280982,-0.398214285714291,-0.102524630542105,-0.398214285714291,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013546798029519,-0.003571428571418,0.002093596059109,0.003571428571418,-0.001847290640391,2 +4470,9281,9309,9311,-0.096551724138182,-0.400000000000000,-0.094827586207150,-0.396428571428582,-0.102524630542105,-0.398214285714291,-0.088854679803227,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571418,0.001847290640391,0.003571428571418,-0.001600985221674,2 +4484,9282,9310,9312,-0.082758620689945,-0.400000000000000,-0.081280788177631,-0.396428571428582,-0.088854679803227,-0.398214285714291,-0.075184729064349,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571418,0.001600985221674,0.003571428571418,-0.001354679802956,2 +4498,9283,9311,9313,-0.068965517241709,-0.400000000000000,-0.067733990148112,-0.396428571428582,-0.075184729064349,-0.398214285714291,-0.061514778325472,-0.398214285714291,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013546798029519,-0.003571428571418,0.001354679802956,0.003571428571418,-0.001108374384238,2 +4512,9284,9312,9314,-0.055172413793477,-0.400000000000000,-0.054187192118597,-0.396428571428582,-0.061514778325472,-0.398214285714291,-0.047844827586602,-0.398214285714291,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013546798029511,-0.003571428571418,0.001108374384238,0.003571428571418,-0.000862068965521,2 +4526,9285,9313,9315,-0.041379310345245,-0.400000000000000,-0.040640394089083,-0.396428571428582,-0.047844827586602,-0.398214285714291,-0.034174876847727,-0.398214285714291,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013546798029517,-0.003571428571418,0.000862068965521,0.003571428571418,-0.000615763546803,2 +4540,9286,9314,9316,-0.027586206897010,-0.400000000000000,-0.027093596059565,-0.396428571428582,-0.034174876847727,-0.398214285714291,-0.020504926108849,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571418,0.000615763546803,0.003571428571418,-0.000369458128086,2 +4554,9287,9315,9317,-0.013793103448773,-0.400000000000000,-0.013546798030047,-0.396428571428582,-0.020504926108849,-0.398214285714291,-0.006834975369971,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571418,0.000369458128086,0.003571428571419,-0.000123152709368,2 +4568,9288,9316,9318,-0.000000000000518,-0.400000000000000,-0.000000000000510,-0.396428571428582,-0.006834975369971,-0.398214285714291,0.006834975368943,-0.398214285714291,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013546798029555,-0.003571428571419,0.000123152709368,0.003571428571418,0.000123152709351,2 +4582,9289,9317,9319,0.013793103447775,-0.400000000000000,0.013546798029065,-0.396428571428582,0.006834975368943,-0.398214285714291,0.020504926107896,-0.398214285714291,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013546798029594,-0.003571428571418,-0.000123152709351,0.003571428571419,0.000369458128070,2 +4596,9290,9318,9320,0.027586206896088,-0.400000000000000,0.027093596058659,-0.396428571428581,0.020504926107896,-0.398214285714291,0.034174876846851,-0.398214285714291,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013546798029595,-0.003571428571419,-0.000369458128070,0.003571428571419,0.000615763546789,2 +4610,9291,9319,9321,0.041379310344402,-0.400000000000000,0.040640394088253,-0.396428571428581,0.034174876846851,-0.398214285714291,0.047844827585805,-0.398214285714291,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013546798029594,-0.003571428571419,-0.000615763546789,0.003571428571419,0.000862068965508,2 +4624,9292,9320,9322,0.055172413792716,-0.400000000000000,0.054187192117848,-0.396428571428581,0.047844827585805,-0.398214285714291,0.061514778324760,-0.398214285714291,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013546798029595,-0.003571428571419,-0.000862068965508,0.003571428571419,0.001108374384228,2 +4638,9293,9321,9323,0.068965517241032,-0.400000000000000,0.067733990147444,-0.396428571428581,0.061514778324760,-0.398214285714291,0.075184729063717,-0.398214285714291,-0.000000000000000,-0.013793103448317,-0.000000000000000,0.013546798029597,-0.003571428571419,-0.001108374384228,0.003571428571419,0.001354679802947,2 +4652,9294,9322,9324,0.082758620689347,-0.400000000000000,0.081280788177040,-0.396428571428581,0.075184729063717,-0.398214285714291,0.088854679802671,-0.398214285714291,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013546798029594,-0.003571428571419,-0.001354679802947,0.003571428571419,0.001600985221666,2 +4666,9295,9323,9325,0.096551724137659,-0.400000000000000,0.094827586206633,-0.396428571428581,0.088854679802671,-0.398214285714291,0.102524630541621,-0.398214285714290,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013546798029591,-0.003571428571419,-0.001600985221666,0.003571428571419,0.001847290640385,2 +4680,9296,9324,9326,0.110344827585969,-0.400000000000000,0.108374384236225,-0.396428571428581,0.102524630541621,-0.398214285714290,0.116194581280573,-0.398214285714290,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013546798029593,-0.003571428571419,-0.001847290640385,0.003571428571419,0.002093596059104,2 +4694,9297,9325,9327,0.124137931034281,-0.400000000000000,0.121921182265817,-0.396428571428581,0.116194581280573,-0.398214285714290,0.129864532019524,-0.398214285714290,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013546798029592,-0.003571428571419,-0.002093596059104,0.003571428571419,0.002339901477823,2 +4708,9298,9326,9328,0.137931034482591,-0.400000000000000,0.135467980295408,-0.396428571428581,0.129864532019524,-0.398214285714290,0.143534482758475,-0.398214285714290,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013546798029591,-0.003571428571419,-0.002339901477823,0.003571428571419,0.002586206896543,2 +4722,9299,9327,9329,0.151724137930902,-0.400000000000000,0.149014778324999,-0.396428571428581,0.143534482758475,-0.398214285714290,0.157204433497426,-0.398214285714290,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013546798029592,-0.003571428571419,-0.002586206896543,0.003571428571419,0.002832512315262,2 +4736,9300,9328,9330,0.165517241379213,-0.400000000000000,0.162561576354591,-0.396428571428581,0.157204433497426,-0.398214285714290,0.170874384236377,-0.398214285714290,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013546798029592,-0.003571428571419,-0.002832512315262,0.003571428571420,0.003078817733981,2 +4750,9301,9329,9331,0.179310344827525,-0.400000000000000,0.176108374384185,-0.396428571428581,0.170874384236377,-0.398214285714290,0.184544334975333,-0.398214285714290,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013546798029596,-0.003571428571420,-0.003078817733981,0.003571428571420,0.003325123152700,2 +4764,9302,9330,9332,0.193103448275841,-0.400000000000000,0.189655172413781,-0.396428571428580,0.184544334975333,-0.398214285714290,0.198214285714290,-0.398214285714290,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013546798029598,-0.003571428571420,-0.003325123152700,0.003571428571420,0.003571428571420,2 +5171,9331,9333,9391,0.200000000000000,-0.393220338983034,0.198214285714290,-0.398214285714290,0.198214285714290,-0.384715496368011,0.196428571428580,-0.389709443099267,0.013559322033932,0.000000000000000,-0.003571428571420,-0.003571428571420,0.003450363196113,0.003571428571420,-0.013438256658626,0.000000000000000,2 +5172,9332,9334,9392,0.200000000000000,-0.379661016949095,0.198214285714290,-0.384715496368011,0.198214285714290,-0.371216707021719,0.196428571428580,-0.376271186440635,0.013559322033946,-0.000000000000000,-0.003450363196113,-0.003571428571420,0.003329297820805,0.003571428571420,-0.013438256658638,-0.000000000000000,2 +5173,9333,9335,9393,0.200000000000000,-0.366101694915163,0.198214285714290,-0.371216707021719,0.198214285714290,-0.357717917675453,0.196428571428580,-0.362832929782010,0.013559322033918,-0.000000000000000,-0.003329297820805,-0.003571428571420,0.003208232445500,0.003571428571420,-0.013438256658613,-0.000000000000000,2 +5174,9334,9336,9394,0.200000000000000,-0.352542372881227,0.198214285714290,-0.357717917675453,0.198214285714290,-0.344219128329154,0.196428571428580,-0.349394673123381,0.013559322033954,-0.000000000000000,-0.003208232445500,-0.003571428571420,0.003087167070191,0.003571428571420,-0.013438256658645,-0.000000000000000,2 +5175,9335,9337,9395,0.200000000000000,-0.338983050847293,0.198214285714290,-0.344219128329154,0.198214285714290,-0.330720338982892,0.196428571428580,-0.335956416464754,0.013559322033914,-0.000000000000000,-0.003087167070191,-0.003571428571420,0.002966101694887,0.003571428571420,-0.013438256658609,-0.000000000000000,2 +5176,9336,9338,9396,0.200000000000000,-0.325423728813361,0.198214285714290,-0.330720338982892,0.198214285714290,-0.317221549636596,0.196428571428580,-0.322518159806128,0.013559322033950,-0.000000000000000,-0.002966101694887,-0.003571428571420,0.002845036319579,0.003571428571420,-0.013438256658642,-0.000000000000000,2 +5177,9337,9339,9397,0.200000000000000,-0.311864406779421,0.198214285714290,-0.317221549636596,0.198214285714290,-0.303722760290321,0.196428571428580,-0.309079903147496,0.013559322033928,-0.000000000000000,-0.002845036319579,-0.003571428571420,0.002723970944273,0.003571428571420,-0.013438256658622,-0.000000000000000,2 +5178,9338,9340,9398,0.200000000000000,-0.298305084745489,0.198214285714290,-0.303722760290321,0.198214285714290,-0.290223970944039,0.196428571428580,-0.295641646488870,0.013559322033936,-0.000000000000000,-0.002723970944273,-0.003571428571420,0.002602905568965,0.003571428571420,-0.013438256658628,-0.000000000000000,2 +5179,9339,9341,9399,0.200000000000000,-0.284745762711550,0.198214285714290,-0.290223970944039,0.198214285714290,-0.276725181597751,0.196428571428580,-0.282203389830239,0.013559322033942,-0.000000000000000,-0.002602905568965,-0.003571428571420,0.002481840193656,0.003571428571420,-0.013438256658634,-0.000000000000000,2 +5180,9340,9342,9400,0.200000000000000,-0.271186440677618,0.198214285714290,-0.276725181597751,0.198214285714290,-0.263226392251482,0.196428571428580,-0.268765133171614,0.013559322033922,-0.000000000000000,-0.002481840193656,-0.003571428571420,0.002360774818351,0.003571428571420,-0.013438256658616,-0.000000000000000,2 +5181,9341,9343,9401,0.200000000000000,-0.257627118643680,0.198214285714290,-0.263226392251482,0.198214285714290,-0.249727602905182,0.196428571428580,-0.255326876512984,0.013559322033954,-0.000000000000000,-0.002360774818351,-0.003571428571420,0.002239709443042,0.003571428571420,-0.013438256658645,-0.000000000000000,2 +5182,9342,9344,9402,0.200000000000000,-0.244067796609748,0.198214285714290,-0.249727602905182,0.198214285714290,-0.236228813558924,0.196428571428580,-0.241888619854358,0.013559322033910,-0.000000000000000,-0.002239709443042,-0.003571428571420,0.002118644067737,0.003571428571420,-0.013438256658605,-0.000000000000000,2 +5183,9343,9345,9403,0.200000000000000,-0.230508474575816,0.198214285714290,-0.236228813558924,0.198214285714290,-0.222730024212625,0.196428571428580,-0.228450363195733,0.013559322033954,-0.000000000000000,-0.002118644067737,-0.003571428571420,0.001997578692428,0.003571428571420,-0.013438256658645,-0.000000000000000,2 +5184,9344,9346,9404,0.200000000000000,-0.216949152541877,0.198214285714290,-0.222730024212625,0.198214285714290,-0.209231234866354,0.196428571428580,-0.215012106537102,0.013559322033924,-0.000000000000000,-0.001997578692428,-0.003571428571420,0.001876513317121,0.003571428571420,-0.013438256658617,-0.000000000000000,2 +5185,9345,9347,9405,0.200000000000000,-0.203389830507945,0.198214285714290,-0.209231234866354,0.198214285714290,-0.195732445520068,0.196428571428580,-0.201573849878477,0.013559322033940,-0.000000000000000,-0.001876513317121,-0.003571428571420,0.001755447941814,0.003571428571420,-0.013438256658632,0.000000000000000,2 +5186,9346,9348,9406,0.200000000000000,-0.189830508474016,0.198214285714290,-0.195732445520068,0.198214285714290,-0.182233656173804,0.196428571428580,-0.188135593219856,0.013559322033917,-0.000000000000000,-0.001755447941814,-0.003571428571420,0.001634382566507,0.003571428571420,-0.013438256658611,-0.000000000000000,2 +5187,9347,9349,9407,0.200000000000000,-0.176271186440084,0.198214285714290,-0.182233656173804,0.198214285714290,-0.168734866827511,0.196428571428580,-0.174697336561231,0.013559322033947,-0.000000000000000,-0.001634382566507,-0.003571428571420,0.001513317191199,0.003571428571420,-0.013438256658639,-0.000000000000000,2 +5188,9348,9350,9408,0.200000000000000,-0.162711864406145,0.198214285714290,-0.168734866827511,0.198214285714290,-0.155236077481233,0.196428571428580,-0.161259079902599,0.013559322033931,-0.000000000000000,-0.001513317191199,-0.003571428571420,0.001392251815892,0.003571428571420,-0.013438256658624,-0.000000000000000,2 +5189,9349,9351,9409,0.200000000000000,-0.149152542372213,0.198214285714290,-0.155236077481233,0.198214285714290,-0.141737288134954,0.196428571428580,-0.147820823243974,0.013559322033933,-0.000000000000000,-0.001392251815892,-0.003571428571420,0.001271186440585,0.003571428571420,-0.013438256658627,0.000000000000000,2 +5190,9350,9352,9410,0.200000000000000,-0.135593220338273,0.198214285714290,-0.141737288134954,0.198214285714290,-0.128238498788662,0.196428571428580,-0.134382566585342,0.013559322033945,-0.000000000000000,-0.001271186440585,-0.003571428571420,0.001150121065277,0.003571428571420,-0.013438256658637,-0.000000000000000,2 +5191,9351,9353,9411,0.200000000000000,-0.122033898304341,0.198214285714290,-0.128238498788662,0.198214285714290,-0.114739709442396,0.196428571428580,-0.120944309926717,0.013559322033919,-0.000000000000000,-0.001150121065277,-0.003571428571420,0.001029055689971,0.003571428571420,-0.013438256658612,-0.000000000000000,2 +5192,9352,9354,9412,0.200000000000000,-0.108474576270409,0.198214285714290,-0.114739709442396,0.198214285714290,-0.101240920096105,0.196428571428580,-0.107506053268092,0.013559322033946,-0.000000000000000,-0.001029055689971,-0.003571428571420,0.000907990314663,0.003571428571420,-0.013438256658638,-0.000000000000000,2 +5193,9353,9355,9413,0.200000000000000,-0.094915254236471,0.198214285714290,-0.101240920096105,0.198214285714290,-0.087742130749828,0.196428571428580,-0.094067796609462,0.013559322033930,-0.000000000000000,-0.000907990314663,-0.003571428571420,0.000786924939356,0.003571428571420,-0.013438256658623,-0.000000000000000,2 +5194,9354,9356,9414,0.200000000000000,-0.081355932202535,0.198214285714290,-0.087742130749828,0.198214285714290,-0.074243341403541,0.196428571428580,-0.080629539950833,0.013559322033941,-0.000000000000000,-0.000786924939356,-0.003571428571420,0.000665859564048,0.003571428571420,-0.013438256658633,-0.000000000000000,2 +5195,9355,9357,9415,0.200000000000000,-0.067796610168599,0.198214285714290,-0.074243341403541,0.198214285714290,-0.060744552057264,0.196428571428580,-0.067191283292205,0.013559322033930,-0.000000000000000,-0.000665859564048,-0.003571428571420,0.000544794188741,0.003571428571420,-0.013438256658623,-0.000000000000000,2 +5196,9356,9358,9416,0.200000000000000,-0.054237288134667,0.198214285714290,-0.060744552057264,0.198214285714290,-0.047245762710983,0.196428571428580,-0.053753026633580,0.013559322033935,-0.000000000000000,-0.000544794188741,-0.003571428571420,0.000423728813433,0.003571428571420,-0.013438256658627,0.000000000000000,2 +5197,9357,9359,9417,0.200000000000000,-0.040677966100731,0.198214285714290,-0.047245762710983,0.198214285714290,-0.033746973364700,0.196428571428580,-0.040314769974952,0.013559322033937,-0.000000000000000,-0.000423728813433,-0.003571428571420,0.000302663438126,0.003571428571420,-0.013438256658629,-0.000000000000000,2 +5198,9358,9360,9418,0.200000000000000,-0.027118644066798,0.198214285714290,-0.033746973364700,0.198214285714290,-0.020248184018423,0.196428571428580,-0.026876513316326,0.013559322033930,-0.000000000000000,-0.000302663438126,-0.003571428571420,0.000181598062819,0.003571428571420,-0.013438256658623,0.000000000000000,2 +5199,9359,9361,9419,0.200000000000000,-0.013559322032862,0.198214285714290,-0.020248184018423,0.198214285714290,-0.006749394672136,0.196428571428580,-0.013438256657697,0.013559322033941,-0.000000000000000,-0.000181598062819,-0.003571428571420,0.000060532687511,0.003571428571420,-0.013438256658633,-0.000000000000000,2 +5200,9360,9362,9420,0.200000000000000,0.000000000001056,0.198214285714290,-0.006749394672136,0.198214285714290,0.006749394674108,0.196428571428580,0.000000000000916,0.013559322033895,-0.000000000000000,-0.000060532687511,-0.003571428571420,-0.000060532687791,0.003571428571420,-0.013438256658594,-0.000000000000000,2 +5201,9361,9363,9421,0.200000000000000,0.013559322034933,0.198214285714290,0.006749394674108,0.198214285714290,0.020248184020319,0.196428571428580,0.013438256659494,0.013559322033860,-0.000000000000000,0.000060532687791,-0.003571428571420,-0.000181598063088,0.003571428571420,-0.013438256658562,-0.000000000000000,2 +5202,9362,9364,9422,0.200000000000000,0.027118644068793,0.198214285714290,0.020248184020319,0.198214285714290,0.033746973366530,0.196428571428580,0.026876513318056,0.013559322033860,-0.000000000000000,0.000181598063088,-0.003571428571420,-0.000302663438385,0.003571428571420,-0.013438256658563,-0.000000000000000,2 +5203,9363,9365,9423,0.200000000000000,0.040677966102653,0.198214285714290,0.033746973366530,0.198214285714290,0.047245762712741,0.196428571428580,0.040314769976619,0.013559322033860,-0.000000000000000,0.000302663438385,-0.003571428571420,-0.000423728813683,0.003571428571420,-0.013438256658562,-0.000000000000000,2 +5204,9364,9366,9424,0.200000000000000,0.054237288136513,0.198214285714290,0.047245762712741,0.198214285714290,0.060744552058952,0.196428571428580,0.053753026635181,0.013559322033860,-0.000000000000000,0.000423728813683,-0.003571428571420,-0.000544794188980,0.003571428571420,-0.013438256658562,-0.000000000000000,2 +5205,9365,9367,9425,0.200000000000000,0.067796610170372,0.198214285714290,0.060744552058952,0.198214285714290,0.074243341405163,0.196428571428580,0.067191283293743,0.013559322033860,-0.000000000000000,0.000544794188980,-0.003571428571420,-0.000665859564277,0.003571428571420,-0.013438256658563,-0.000000000000000,2 +5206,9366,9368,9426,0.200000000000000,0.081355932204232,0.198214285714290,0.074243341405163,0.198214285714290,0.087742130751374,0.196428571428580,0.080629539952306,0.013559322033860,-0.000000000000000,0.000665859564277,-0.003571428571420,-0.000786924939575,0.003571428571420,-0.013438256658562,-0.000000000000000,2 +5207,9367,9369,9427,0.200000000000000,0.094915254238085,0.198214285714290,0.087742130751374,0.198214285714290,0.101240920097572,0.196428571428580,0.094067796610862,0.013559322033846,-0.000000000000000,0.000786924939575,-0.003571428571420,-0.000907990314871,0.003571428571420,-0.013438256658550,0.000000000000000,2 +5208,9368,9370,9428,0.200000000000000,0.108474576271933,0.198214285714290,0.101240920097572,0.198214285714290,0.114739709443776,0.196428571428580,0.107506053269414,0.013559322033852,-0.000000000000000,0.000907990314871,-0.003571428571420,-0.001029055690168,0.003571428571420,-0.013438256658555,-0.000000000000000,2 +5209,9369,9371,9429,0.200000000000000,0.122033898305789,0.198214285714290,0.114739709443776,0.198214285714290,0.128238498789986,0.196428571428580,0.120944309927973,0.013559322033860,-0.000000000000000,0.001029055690168,-0.003571428571420,-0.001150121065465,0.003571428571420,-0.013438256658562,0.000000000000000,2 +5210,9370,9372,9430,0.200000000000000,0.135593220339649,0.198214285714290,0.128238498789986,0.198214285714290,0.141737288136198,0.196428571428580,0.134382566586535,0.013559322033860,-0.000000000000000,0.001150121065465,-0.003571428571420,-0.001271186440762,0.003571428571420,-0.013438256658563,-0.000000000000000,2 +5211,9371,9373,9431,0.200000000000000,0.149152542373509,0.198214285714290,0.141737288136198,0.198214285714290,0.155236077482408,0.196428571428580,0.147820823245097,0.013559322033860,-0.000000000000000,0.001271186440762,-0.003571428571420,-0.001392251816060,0.003571428571420,-0.013438256658562,-0.000000000000000,2 +5212,9372,9374,9432,0.200000000000000,0.162711864407368,0.198214285714290,0.155236077482408,0.198214285714290,0.168734866828619,0.196428571428580,0.161259079903660,0.013559322033860,-0.000000000000000,0.001392251816060,-0.003571428571420,-0.001513317191357,0.003571428571420,-0.013438256658563,0.000000000000000,2 +5213,9373,9375,9433,0.200000000000000,0.176271186441228,0.198214285714290,0.168734866828619,0.198214285714290,0.182233656174830,0.196428571428580,0.174697336562221,0.013559322033860,-0.000000000000000,0.001513317191357,-0.003571428571420,-0.001634382566656,0.003571428571420,-0.013438256658561,-0.000000000000000,2 +5214,9374,9376,9434,0.200000000000000,0.189830508475088,0.198214285714290,0.182233656174830,0.198214285714290,0.195732445521041,0.196428571428580,0.188135593220783,0.013559322033860,-0.000000000000000,0.001634382566656,-0.003571428571420,-0.001755447941954,0.003571428571420,-0.013438256658562,-0.000000000000000,2 +5215,9375,9377,9435,0.200000000000000,0.203389830508947,0.198214285714290,0.195732445521041,0.198214285714290,0.209231234867252,0.196428571428580,0.201573849879345,0.013559322033860,-0.000000000000000,0.001755447941954,-0.003571428571420,-0.001876513317250,0.003571428571420,-0.013438256658563,-0.000000000000000,2 +5216,9376,9378,9436,0.200000000000000,0.216949152542807,0.198214285714290,0.209231234867252,0.198214285714290,0.222730024213462,0.196428571428580,0.215012106537907,0.013559322033860,-0.000000000000000,0.001876513317250,-0.003571428571420,-0.001997578692549,0.003571428571420,-0.013438256658561,-0.000000000000000,2 +5217,9377,9379,9437,0.200000000000000,0.230508474576667,0.198214285714290,0.222730024213462,0.198214285714290,0.236228813559674,0.196428571428580,0.228450363196470,0.013559322033860,-0.000000000000000,0.001997578692549,-0.003571428571420,-0.002118644067845,0.003571428571420,-0.013438256658564,-0.000000000000000,2 +5218,9378,9380,9438,0.200000000000000,0.244067796610526,0.198214285714290,0.236228813559674,0.198214285714290,0.249727602905885,0.196428571428580,0.241888619855032,0.013559322033860,-0.000000000000000,0.002118644067845,-0.003571428571420,-0.002239709443143,0.003571428571420,-0.013438256658561,0.000000000000000,2 +5219,9379,9381,9439,0.200000000000000,0.257627118644386,0.198214285714290,0.249727602905885,0.198214285714290,0.263226392252096,0.196428571428580,0.255326876513594,0.013559322033860,-0.000000000000000,0.002239709443143,-0.003571428571420,-0.002360774818440,0.003571428571420,-0.013438256658563,-0.000000000000000,2 +5220,9380,9382,9440,0.200000000000000,0.271186440678246,0.198214285714290,0.263226392252096,0.198214285714290,0.276725181598307,0.196428571428580,0.268765133172157,0.013559322033860,-0.000000000000000,0.002360774818440,-0.003571428571420,-0.002481840193738,0.003571428571420,-0.013438256658562,-0.000000000000000,2 +5221,9381,9383,9441,0.200000000000000,0.284745762712106,0.198214285714290,0.276725181598307,0.198214285714290,0.290223970944518,0.196428571428580,0.282203389830719,0.013559322033860,-0.000000000000000,0.002481840193738,-0.003571428571420,-0.002602905569036,0.003571428571420,-0.013438256658562,-0.000000000000000,2 +5222,9382,9384,9442,0.200000000000000,0.298305084745975,0.198214285714290,0.290223970944518,0.198214285714290,0.303722760290748,0.196428571428580,0.295641646489291,0.013559322033879,-0.000000000000000,0.002602905569036,-0.003571428571420,-0.002723970944333,0.003571428571420,-0.013438256658582,-0.000000000000000,2 +5223,9383,9385,9443,0.200000000000000,0.311864406779851,0.198214285714290,0.303722760290748,0.198214285714290,0.317221549636971,0.196428571428580,0.309079903147868,0.013559322033872,-0.000000000000000,0.002723970944333,-0.003571428571420,-0.002845036319633,0.003571428571420,-0.013438256658573,-0.000000000000000,2 +5224,9384,9386,9444,0.200000000000000,0.325423728813729,0.198214285714290,0.317221549636971,0.198214285714290,0.330720338983205,0.196428571428580,0.322518159806447,0.013559322033883,-0.000000000000000,0.002845036319633,-0.003571428571420,-0.002966101694930,0.003571428571420,-0.013438256658586,-0.000000000000000,2 +5225,9385,9387,9445,0.200000000000000,0.338983050847605,0.198214285714290,0.330720338983205,0.198214285714290,0.344219128329425,0.196428571428580,0.335956416465025,0.013559322033869,-0.000000000000000,0.002966101694930,-0.003571428571420,-0.003087167070230,0.003571428571420,-0.013438256658570,-0.000000000000000,2 +5226,9386,9388,9446,0.200000000000000,0.352542372881469,0.198214285714290,0.344219128329425,0.198214285714290,0.357717917675636,0.196428571428580,0.349394673123591,0.013559322033860,-0.000000000000000,0.003087167070230,-0.003571428571420,-0.003208232445526,0.003571428571420,-0.013438256658563,-0.000000000000000,2 +5227,9387,9389,9447,0.200000000000000,0.366101694915329,0.198214285714290,0.357717917675636,0.198214285714290,0.371216707021847,0.196428571428580,0.362832929782154,0.013559322033860,-0.000000000000000,0.003208232445526,-0.003571428571420,-0.003329297820824,0.003571428571420,-0.013438256658562,-0.000000000000000,2 +5228,9388,9390,9448,0.200000000000000,0.379661016949189,0.198214285714290,0.371216707021847,0.198214285714290,0.384715496368058,0.196428571428580,0.376271186440716,0.013559322033860,-0.000000000000000,0.003329297820824,-0.003571428571420,-0.003450363196121,0.003571428571420,-0.013438256658562,-0.000000000000000,2 +5229,7707,9389,9449,0.200000000000000,0.393220338983059,0.198214285714290,0.398214285714290,0.198214285714290,0.384715496368058,0.196428571428580,0.389709443099289,0.013559322033881,-0.000000000000000,-0.003571428571420,0.003571428571420,0.003450363196121,-0.003571428571420,-0.013438256658583,0.000000000000000,2 +9302,9332,9392,9450,0.194642857142868,-0.394642857142868,0.196428571428580,-0.389709443099267,0.194642857142868,-0.381265133171896,0.192857142857156,-0.386198547215497,-0.003571428571424,-0.003571428571424,0.013438256658626,-0.000000000000000,0.003450363196117,0.003571428571424,-0.013317191283319,-0.000000000000000,2 +9333,9391,9393,9451,0.196428571428580,-0.376271186440635,0.194642857142868,-0.381265133171896,0.194642857142868,-0.367887409200911,0.192857142857156,-0.372881355932172,0.013438256658638,0.000000000000000,-0.003450363196117,-0.003571428571424,0.003329297820809,0.003571428571424,-0.013317191283330,-0.000000000000000,2 +9334,9392,9394,9452,0.196428571428580,-0.362832929782010,0.194642857142868,-0.367887409200911,0.194642857142868,-0.354509685229951,0.192857142857156,-0.359564164648853,0.013438256658613,0.000000000000000,-0.003329297820809,-0.003571428571424,0.003208232445504,0.003571428571424,-0.013317191283308,-0.000000000000000,2 +9335,9393,9395,9453,0.196428571428580,-0.349394673123381,0.194642857142868,-0.354509685229951,0.194642857142868,-0.341131961258961,0.192857142857156,-0.346246973365531,0.013438256658645,0.000000000000000,-0.003208232445504,-0.003571428571424,0.003087167070195,0.003571428571424,-0.013317191283336,-0.000000000000000,2 +9336,9394,9396,9454,0.196428571428580,-0.335956416464754,0.194642857142868,-0.341131961258961,0.194642857142868,-0.327754237288004,0.192857142857156,-0.332929782082211,0.013438256658609,0.000000000000000,-0.003087167070195,-0.003571428571424,0.002966101694891,0.003571428571424,-0.013317191283305,-0.000000000000000,2 +9337,9395,9397,9455,0.196428571428580,-0.322518159806128,0.194642857142868,-0.327754237288004,0.194642857142868,-0.314376513317016,0.192857142857156,-0.319612590798892,0.013438256658642,0.000000000000000,-0.002966101694891,-0.003571428571424,0.002845036319582,0.003571428571424,-0.013317191283334,-0.000000000000000,2 +9338,9396,9398,9456,0.196428571428580,-0.309079903147496,0.194642857142868,-0.314376513317016,0.194642857142868,-0.300998789346047,0.192857142857156,-0.306295399515567,0.013438256658622,0.000000000000000,-0.002845036319582,-0.003571428571424,0.002723970944276,0.003571428571424,-0.013317191283316,-0.000000000000000,2 +9339,9397,9399,9457,0.196428571428580,-0.295641646488870,0.194642857142868,-0.300998789346047,0.194642857142868,-0.287621065375073,0.192857142857156,-0.292978208232249,0.013438256658628,0.000000000000000,-0.002723970944276,-0.003571428571424,0.002602905568968,0.003571428571424,-0.013317191283320,-0.000000000000000,2 +9340,9398,9400,9458,0.196428571428580,-0.282203389830239,0.194642857142868,-0.287621065375073,0.194642857142868,-0.274243341404093,0.192857142857156,-0.279661016948926,0.013438256658634,0.000000000000000,-0.002602905568968,-0.003571428571424,0.002481840193659,0.003571428571424,-0.013317191283326,-0.000000000000000,2 +9341,9399,9401,9459,0.196428571428580,-0.268765133171614,0.194642857142868,-0.274243341404093,0.194642857142868,-0.260865617433130,0.192857142857156,-0.266343825665608,0.013438256658616,0.000000000000000,-0.002481840193659,-0.003571428571424,0.002360774818353,0.003571428571424,-0.013317191283310,-0.000000000000000,2 +9342,9400,9402,9460,0.196428571428580,-0.255326876512984,0.194642857142868,-0.260865617433130,0.194642857142868,-0.247487893462139,0.192857142857156,-0.253026634382285,0.013438256658645,0.000000000000000,-0.002360774818353,-0.003571428571424,0.002239709443045,0.003571428571424,-0.013317191283337,-0.000000000000000,2 +9343,9401,9403,9461,0.196428571428580,-0.241888619854358,0.194642857142868,-0.247487893462139,0.194642857142868,-0.234110169491186,0.192857142857156,-0.239709443098967,0.013438256658605,0.000000000000000,-0.002239709443045,-0.003571428571424,0.002118644067739,0.003571428571424,-0.013317191283300,-0.000000000000000,2 +9344,9402,9404,9462,0.196428571428580,-0.228450363195733,0.194642857142868,-0.234110169491186,0.194642857142868,-0.220732445520196,0.192857142857156,-0.226392251815649,0.013438256658645,0.000000000000000,-0.002118644067739,-0.003571428571424,0.001997578692430,0.003571428571424,-0.013317191283336,-0.000000000000000,2 +9345,9403,9405,9463,0.196428571428580,-0.215012106537102,0.194642857142868,-0.220732445520196,0.194642857142868,-0.207354721549232,0.192857142857156,-0.213075060532325,0.013438256658617,0.000000000000000,-0.001997578692430,-0.003571428571424,0.001876513317123,0.003571428571424,-0.013317191283310,-0.000000000000000,2 +9346,9404,9406,9464,0.196428571428580,-0.201573849878477,0.194642857142868,-0.207354721549232,0.194642857142868,-0.193976997578253,0.192857142857156,-0.199757869249008,0.013438256658632,-0.000000000000000,-0.001876513317123,-0.003571428571424,0.001755447941816,0.003571428571424,-0.013317191283325,-0.000000000000000,2 +9347,9405,9407,9465,0.196428571428580,-0.188135593219856,0.194642857142868,-0.193976997578253,0.194642857142868,-0.180599273607296,0.192857142857156,-0.186440677965693,0.013438256658611,0.000000000000000,-0.001755447941816,-0.003571428571424,0.001634382566509,0.003571428571424,-0.013317191283304,-0.000000000000000,2 +9348,9406,9408,9466,0.196428571428580,-0.174697336561231,0.194642857142868,-0.180599273607296,0.194642857142868,-0.167221549636311,0.192857142857156,-0.173123486682376,0.013438256658639,0.000000000000000,-0.001634382566509,-0.003571428571424,0.001513317191201,0.003571428571424,-0.013317191283331,-0.000000000000000,2 +9349,9407,9409,9467,0.196428571428580,-0.161259079902599,0.194642857142868,-0.167221549636311,0.194642857142868,-0.153843825665341,0.192857142857156,-0.159806295399052,0.013438256658624,0.000000000000000,-0.001513317191201,-0.003571428571424,0.001392251815894,0.003571428571424,-0.013317191283317,-0.000000000000000,2 +9350,9408,9410,9468,0.196428571428580,-0.147820823243974,0.194642857142868,-0.153843825665341,0.194642857142868,-0.140466101694367,0.192857142857156,-0.146489104115734,0.013438256658627,-0.000000000000000,-0.001392251815894,-0.003571428571424,0.001271186440587,0.003571428571424,-0.013317191283320,-0.000000000000000,2 +9351,9409,9411,9469,0.196428571428580,-0.134382566585342,0.194642857142868,-0.140466101694367,0.194642857142868,-0.127088377723384,0.192857142857156,-0.133171912832409,0.013438256658637,0.000000000000000,-0.001271186440587,-0.003571428571424,0.001150121065279,0.003571428571424,-0.013317191283329,-0.000000000000000,2 +9352,9410,9412,9470,0.196428571428580,-0.120944309926717,0.194642857142868,-0.127088377723384,0.194642857142868,-0.113710653752425,0.192857142857156,-0.119854721549092,0.013438256658612,0.000000000000000,-0.001150121065279,-0.003571428571424,0.001029055689972,0.003571428571424,-0.013317191283306,-0.000000000000000,2 +9353,9411,9413,9471,0.196428571428580,-0.107506053268092,0.194642857142868,-0.113710653752425,0.194642857142868,-0.100332929781441,0.192857142857156,-0.106537530265774,0.013438256658638,0.000000000000000,-0.001029055689972,-0.003571428571424,0.000907990314664,0.003571428571424,-0.013317191283329,-0.000000000000000,2 +9354,9412,9414,9472,0.196428571428580,-0.094067796609462,0.194642857142868,-0.100332929781441,0.194642857142868,-0.086955205810472,0.192857142857156,-0.093220338982452,0.013438256658623,0.000000000000000,-0.000907990314664,-0.003571428571424,0.000786924939357,0.003571428571424,-0.013317191283316,-0.000000000000000,2 +9355,9413,9415,9473,0.196428571428580,-0.080629539950833,0.194642857142868,-0.086955205810472,0.194642857142868,-0.073577481839493,0.192857142857156,-0.079903147699131,0.013438256658633,0.000000000000000,-0.000786924939357,-0.003571428571424,0.000665859564048,0.003571428571424,-0.013317191283325,-0.000000000000000,2 +9356,9414,9416,9474,0.196428571428580,-0.067191283292205,0.194642857142868,-0.073577481839493,0.194642857142868,-0.060199757868523,0.192857142857156,-0.066585956415810,0.013438256658623,0.000000000000000,-0.000665859564048,-0.003571428571424,0.000544794188741,0.003571428571424,-0.013317191283316,-0.000000000000000,2 +9357,9415,9417,9475,0.196428571428580,-0.053753026633580,0.194642857142868,-0.060199757868523,0.194642857142868,-0.046822033897549,0.192857142857156,-0.053268765132493,0.013438256658627,-0.000000000000000,-0.000544794188741,-0.003571428571424,0.000423728813434,0.003571428571424,-0.013317191283320,-0.000000000000000,2 +9358,9416,9418,9476,0.196428571428580,-0.040314769974952,0.194642857142868,-0.046822033897549,0.194642857142868,-0.033444309926574,0.192857142857156,-0.039951573849172,0.013438256658629,0.000000000000000,-0.000423728813434,-0.003571428571424,0.000302663438126,0.003571428571424,-0.013317191283321,-0.000000000000000,2 +9359,9417,9419,9477,0.196428571428580,-0.026876513316326,0.194642857142868,-0.033444309926574,0.194642857142868,-0.020066585955605,0.192857142857156,-0.026634382565853,0.013438256658623,-0.000000000000000,-0.000302663438126,-0.003571428571424,0.000181598062819,0.003571428571424,-0.013317191283316,-0.000000000000000,2 +9360,9418,9420,9478,0.196428571428580,-0.013438256657697,0.194642857142868,-0.020066585955605,0.194642857142868,-0.006688861984625,0.192857142857156,-0.013317191282533,0.013438256658633,0.000000000000000,-0.000181598062819,-0.003571428571424,0.000060532687511,0.003571428571424,-0.013317191283325,-0.000000000000000,2 +9361,9419,9421,9479,0.196428571428580,0.000000000000916,0.194642857142868,-0.006688861984625,0.194642857142868,0.006688861986318,0.192857142857156,0.000000000000776,0.013438256658594,0.000000000000000,-0.000060532687511,-0.003571428571424,-0.000060532687791,0.003571428571424,-0.013317191283292,-0.000000000000000,2 +9362,9420,9422,9480,0.196428571428580,0.013438256659494,0.194642857142868,0.006688861986318,0.194642857142868,0.020066585957231,0.192857142857156,0.013317191284054,0.013438256658562,0.000000000000000,0.000060532687791,-0.003571428571424,-0.000181598063089,0.003571428571424,-0.013317191283264,-0.000000000000000,2 +9363,9421,9423,9481,0.196428571428580,0.026876513318056,0.194642857142868,0.020066585957231,0.194642857142868,0.033444309928145,0.192857142857156,0.026634382567319,0.013438256658563,0.000000000000000,0.000181598063089,-0.003571428571424,-0.000302663438386,0.003571428571424,-0.013317191283265,-0.000000000000000,2 +9364,9422,9424,9482,0.196428571428580,0.040314769976619,0.194642857142868,0.033444309928145,0.194642857142868,0.046822033899058,0.192857142857156,0.039951573850584,0.013438256658562,0.000000000000000,0.000302663438386,-0.003571428571424,-0.000423728813683,0.003571428571424,-0.013317191283265,-0.000000000000000,2 +9365,9423,9425,9483,0.196428571428580,0.053753026635181,0.194642857142868,0.046822033899058,0.194642857142868,0.060199757869972,0.192857142857156,0.053268765133849,0.013438256658562,0.000000000000000,0.000423728813683,-0.003571428571424,-0.000544794188981,0.003571428571424,-0.013317191283265,-0.000000000000000,2 +9366,9424,9426,9484,0.196428571428580,0.067191283293743,0.194642857142868,0.060199757869972,0.194642857142868,0.073577481840886,0.192857142857156,0.066585956417114,0.013438256658563,0.000000000000000,0.000544794188981,-0.003571428571424,-0.000665859564278,0.003571428571424,-0.013317191283265,-0.000000000000000,2 +9367,9425,9427,9485,0.196428571428580,0.080629539952306,0.194642857142868,0.073577481840886,0.194642857142868,0.086955205811799,0.192857142857156,0.079903147700379,0.013438256658562,0.000000000000000,0.000665859564278,-0.003571428571424,-0.000786924939576,0.003571428571424,-0.013317191283264,-0.000000000000000,2 +9368,9426,9428,9486,0.196428571428580,0.094067796610862,0.194642857142868,0.086955205811799,0.194642857142868,0.100332929782700,0.192857142857156,0.093220338983637,0.013438256658550,-0.000000000000000,0.000786924939576,-0.003571428571424,-0.000907990314872,0.003571428571424,-0.013317191283254,-0.000000000000000,2 +9369,9427,9429,9487,0.196428571428580,0.107506053269414,0.194642857142868,0.100332929782700,0.194642857142868,0.113710653753607,0.192857142857156,0.106537530266894,0.013438256658555,0.000000000000000,0.000907990314872,-0.003571428571424,-0.001029055690169,0.003571428571424,-0.013317191283259,-0.000000000000000,2 +9370,9428,9430,9488,0.196428571428580,0.120944309927973,0.194642857142868,0.113710653753607,0.194642857142868,0.127088377724520,0.192857142857156,0.119854721550155,0.013438256658562,-0.000000000000000,0.001029055690169,-0.003571428571424,-0.001150121065467,0.003571428571424,-0.013317191283264,-0.000000000000000,2 +9371,9429,9431,9489,0.196428571428580,0.134382566586535,0.194642857142868,0.127088377724520,0.194642857142868,0.140466101695434,0.192857142857156,0.133171912833420,0.013438256658563,0.000000000000000,0.001150121065467,-0.003571428571424,-0.001271186440764,0.003571428571424,-0.013317191283266,-0.000000000000000,2 +9372,9430,9432,9490,0.196428571428580,0.147820823245097,0.194642857142868,0.140466101695434,0.194642857142868,0.153843825666347,0.192857142857156,0.146489104116684,0.013438256658562,0.000000000000000,0.001271186440764,-0.003571428571424,-0.001392251816062,0.003571428571424,-0.013317191283264,-0.000000000000000,2 +9373,9431,9433,9491,0.196428571428580,0.161259079903660,0.194642857142868,0.153843825666347,0.194642857142868,0.167221549637261,0.192857142857156,0.159806295399949,0.013438256658563,-0.000000000000000,0.001392251816062,-0.003571428571424,-0.001513317191359,0.003571428571424,-0.013317191283265,-0.000000000000000,2 +9374,9432,9434,9492,0.196428571428580,0.174697336562221,0.194642857142868,0.167221549637261,0.194642857142868,0.180599273608173,0.192857142857156,0.173123486683213,0.013438256658561,0.000000000000000,0.001513317191359,-0.003571428571424,-0.001634382566658,0.003571428571424,-0.013317191283262,-0.000000000000000,2 +9375,9433,9435,9493,0.196428571428580,0.188135593220783,0.194642857142868,0.180599273608173,0.194642857142868,0.193976997579085,0.192857142857156,0.186440677966476,0.013438256658562,0.000000000000000,0.001634382566658,-0.003571428571424,-0.001755447941956,0.003571428571424,-0.013317191283264,-0.000000000000000,2 +9376,9434,9436,9494,0.196428571428580,0.201573849879345,0.194642857142868,0.193976997579085,0.194642857142868,0.207354721550001,0.192857142857156,0.199757869249741,0.013438256658563,0.000000000000000,0.001755447941956,-0.003571428571424,-0.001876513317252,0.003571428571424,-0.013317191283267,-0.000000000000000,2 +9377,9435,9437,9495,0.196428571428580,0.215012106537907,0.194642857142868,0.207354721550001,0.194642857142868,0.220732445520912,0.192857142857156,0.213075060533006,0.013438256658561,0.000000000000000,0.001876513317252,-0.003571428571424,-0.001997578692551,0.003571428571424,-0.013317191283262,-0.000000000000000,2 +9378,9436,9438,9496,0.196428571428580,0.228450363196470,0.194642857142868,0.220732445520912,0.194642857142868,0.234110169491828,0.192857142857156,0.226392251816271,0.013438256658564,0.000000000000000,0.001997578692551,-0.003571428571424,-0.002118644067847,0.003571428571424,-0.013317191283268,-0.000000000000000,2 +9379,9437,9439,9497,0.196428571428580,0.241888619855032,0.194642857142868,0.234110169491828,0.194642857142868,0.247487893462740,0.192857142857156,0.239709443099536,0.013438256658561,-0.000000000000000,0.002118644067847,-0.003571428571424,-0.002239709443146,0.003571428571424,-0.013317191283262,-0.000000000000000,2 +9380,9438,9440,9498,0.196428571428580,0.255326876513594,0.194642857142868,0.247487893462740,0.194642857142868,0.260865617433655,0.192857142857156,0.253026634382800,0.013438256658563,0.000000000000000,0.002239709443146,-0.003571428571424,-0.002360774818443,0.003571428571424,-0.013317191283266,-0.000000000000000,2 +9381,9439,9441,9499,0.196428571428580,0.268765133172157,0.194642857142868,0.260865617433655,0.194642857142868,0.274243341404568,0.192857142857156,0.266343825666065,0.013438256658562,0.000000000000000,0.002360774818443,-0.003571428571424,-0.002481840193741,0.003571428571424,-0.013317191283264,-0.000000000000000,2 +9382,9440,9442,9500,0.196428571428580,0.282203389830719,0.194642857142868,0.274243341404568,0.194642857142868,0.287621065375481,0.192857142857156,0.279661016949330,0.013438256658562,0.000000000000000,0.002481840193741,-0.003571428571424,-0.002602905569038,0.003571428571424,-0.013317191283264,-0.000000000000000,2 +9383,9441,9443,9501,0.196428571428580,0.295641646489291,0.194642857142868,0.287621065375481,0.194642857142868,0.300998789346413,0.192857142857156,0.292978208232603,0.013438256658582,0.000000000000000,0.002602905569038,-0.003571428571424,-0.002723970944337,0.003571428571424,-0.013317191283283,-0.000000000000000,2 +9384,9442,9444,9502,0.196428571428580,0.309079903147868,0.194642857142868,0.300998789346413,0.194642857142868,0.314376513317336,0.192857142857156,0.306295399515881,0.013438256658573,0.000000000000000,0.002723970944337,-0.003571428571424,-0.002845036319636,0.003571428571424,-0.013317191283273,-0.000000000000000,2 +9385,9443,9445,9503,0.196428571428580,0.322518159806447,0.194642857142868,0.314376513317336,0.194642857142868,0.327754237288273,0.192857142857156,0.319612590799162,0.013438256658586,0.000000000000000,0.002845036319636,-0.003571428571424,-0.002966101694933,0.003571428571424,-0.013317191283289,-0.000000000000000,2 +9386,9444,9446,9504,0.196428571428580,0.335956416465025,0.194642857142868,0.327754237288273,0.194642857142868,0.341131961259193,0.192857142857156,0.332929782082442,0.013438256658570,0.000000000000000,0.002966101694933,-0.003571428571424,-0.003087167070233,0.003571428571424,-0.013317191283270,-0.000000000000000,2 +9387,9445,9447,9505,0.196428571428580,0.349394673123591,0.194642857142868,0.341131961259193,0.194642857142868,0.354509685230108,0.192857142857156,0.346246973365710,0.013438256658563,0.000000000000000,0.003087167070233,-0.003571428571424,-0.003208232445530,0.003571428571424,-0.013317191283267,-0.000000000000000,2 +9388,9446,9448,9506,0.196428571428580,0.362832929782154,0.194642857142868,0.354509685230108,0.194642857142868,0.367887409201021,0.192857142857156,0.359564164648975,0.013438256658562,0.000000000000000,0.003208232445530,-0.003571428571424,-0.003329297820828,0.003571428571424,-0.013317191283264,-0.000000000000000,2 +9389,9447,9449,9507,0.196428571428580,0.376271186440716,0.194642857142868,0.367887409201021,0.194642857142868,0.381265133171935,0.192857142857156,0.372881355932240,0.013438256658562,0.000000000000000,0.003329297820828,-0.003571428571424,-0.003450363196125,0.003571428571424,-0.013317191283265,-0.000000000000000,2 +7706,9390,9448,9508,0.194642857142868,0.394642857142868,0.196428571428580,0.389709443099289,0.194642857142868,0.381265133171935,0.192857142857156,0.386198547215514,-0.003571428571424,0.003571428571424,0.013438256658583,-0.000000000000000,0.003450363196125,-0.003571428571424,-0.013317191283285,0.000000000000000,2 +9273,9391,9451,9509,0.191071428571443,-0.391071428571443,0.192857142857156,-0.386198547215497,0.191071428571443,-0.377814769975777,0.189285714285730,-0.382687651331724,-0.003571428571426,-0.003571428571426,0.013317191283319,0.000000000000000,0.003450363196119,0.003571428571426,-0.013196125908013,-0.000000000000000,2 +9392,9450,9452,9510,0.192857142857156,-0.372881355932172,0.191071428571443,-0.377814769975777,0.191071428571443,-0.364558111380101,0.189285714285730,-0.369491525423707,0.013317191283330,0.000000000000000,-0.003450363196119,-0.003571428571426,0.003329297820811,0.003571428571426,-0.013196125908022,-0.000000000000000,2 +9393,9451,9453,9511,0.192857142857156,-0.359564164648853,0.191071428571443,-0.364558111380101,0.191071428571443,-0.351301452784446,0.189285714285730,-0.356295399515694,0.013317191283308,0.000000000000000,-0.003329297820811,-0.003571428571426,0.003208232445506,0.003571428571426,-0.013196125908003,-0.000000000000000,2 +9394,9452,9454,9512,0.192857142857156,-0.346246973365531,0.191071428571443,-0.351301452784446,0.191071428571443,-0.338044794188764,0.189285714285730,-0.343099273607679,0.013317191283336,0.000000000000000,-0.003208232445506,-0.003571428571426,0.003087167070197,0.003571428571426,-0.013196125908027,-0.000000000000000,2 +9395,9453,9455,9513,0.192857142857156,-0.332929782082211,0.191071428571443,-0.338044794188764,0.191071428571443,-0.324788135593112,0.189285714285730,-0.329903147699666,0.013317191283305,0.000000000000000,-0.003087167070197,-0.003571428571426,0.002966101694892,0.003571428571426,-0.013196125908000,-0.000000000000000,2 +9396,9454,9456,9514,0.192857142857156,-0.319612590798892,0.191071428571443,-0.324788135593112,0.191071428571443,-0.311531476997433,0.189285714285730,-0.316707021791653,0.013317191283334,0.000000000000000,-0.002966101694892,-0.003571428571426,0.002845036319584,0.003571428571426,-0.013196125908025,-0.000000000000000,2 +9397,9455,9457,9515,0.192857142857156,-0.306295399515567,0.191071428571443,-0.311531476997433,0.191071428571443,-0.298274818401770,0.189285714285730,-0.303510895883636,0.013317191283316,0.000000000000000,-0.002845036319584,-0.003571428571426,0.002723970944277,0.003571428571426,-0.013196125908010,-0.000000000000000,2 +9398,9456,9458,9516,0.192857142857156,-0.292978208232249,0.191071428571443,-0.298274818401770,0.191071428571443,-0.285018159806104,0.189285714285730,-0.290314769975625,0.013317191283320,0.000000000000000,-0.002723970944277,-0.003571428571426,0.002602905568969,0.003571428571426,-0.013196125908012,-0.000000000000000,2 +9399,9457,9459,9517,0.192857142857156,-0.279661016948926,0.191071428571443,-0.285018159806104,0.191071428571443,-0.271761501210433,0.189285714285730,-0.277118644067611,0.013317191283326,0.000000000000000,-0.002602905568969,-0.003571428571426,0.002481840193661,0.003571428571426,-0.013196125908017,0.000000000000000,2 +9400,9458,9460,9518,0.192857142857156,-0.266343825665608,0.191071428571443,-0.271761501210433,0.191071428571443,-0.258504842614776,0.189285714285730,-0.263922518159600,0.013317191283310,0.000000000000000,-0.002481840193661,-0.003571428571426,0.002360774818355,0.003571428571426,-0.013196125908004,-0.000000000000000,2 +9401,9459,9461,9519,0.192857142857156,-0.253026634382285,0.191071428571443,-0.258504842614776,0.191071428571443,-0.245248184019093,0.189285714285730,-0.250726392251584,0.013317191283337,0.000000000000000,-0.002360774818355,-0.003571428571426,0.002239709443046,0.003571428571426,-0.013196125908028,-0.000000000000000,2 +9402,9460,9462,9520,0.192857142857156,-0.239709443098967,0.191071428571443,-0.245248184019093,0.191071428571443,-0.231991525423446,0.189285714285730,-0.237530266343573,0.013317191283300,0.000000000000000,-0.002239709443046,-0.003571428571426,0.002118644067741,0.003571428571426,-0.013196125907994,-0.000000000000000,2 +9403,9461,9463,9521,0.192857142857156,-0.226392251815649,0.191071428571443,-0.231991525423446,0.191071428571443,-0.218734866827765,0.189285714285730,-0.224334140435562,0.013317191283336,0.000000000000000,-0.002118644067741,-0.003571428571426,0.001997578692432,0.003571428571426,-0.013196125908027,-0.000000000000000,2 +9404,9462,9464,9522,0.192857142857156,-0.213075060532325,0.191071428571443,-0.218734866827765,0.191071428571443,-0.205478208232108,0.189285714285730,-0.211138014527547,0.013317191283310,0.000000000000000,-0.001997578692432,-0.003571428571426,0.001876513317125,0.003571428571426,-0.013196125908004,-0.000000000000000,2 +9405,9463,9465,9523,0.192857142857156,-0.199757869249008,0.191071428571443,-0.205478208232108,0.191071428571443,-0.192221549636437,0.189285714285730,-0.197941888619537,0.013317191283325,0.000000000000000,-0.001876513317125,-0.003571428571426,0.001755447941817,0.003571428571426,-0.013196125908016,-0.000000000000000,2 +9406,9464,9466,9524,0.192857142857156,-0.186440677965693,0.191071428571443,-0.192221549636437,0.191071428571443,-0.178964891040786,0.189285714285730,-0.184745762711530,0.013317191283304,0.000000000000000,-0.001755447941817,-0.003571428571426,0.001634382566510,0.003571428571426,-0.013196125907998,-0.000000000000000,2 +9407,9465,9467,9525,0.192857142857156,-0.173123486682376,0.191071428571443,-0.178964891040786,0.191071428571443,-0.165708232445110,0.189285714285730,-0.171549636803520,0.013317191283331,0.000000000000000,-0.001634382566510,-0.003571428571426,0.001513317191202,0.003571428571426,-0.013196125908022,-0.000000000000000,2 +9408,9466,9468,9526,0.192857142857156,-0.159806295399052,0.191071428571443,-0.165708232445110,0.191071428571443,-0.152451573849447,0.189285714285730,-0.158353510895504,0.013317191283317,0.000000000000000,-0.001513317191202,-0.003571428571426,0.001392251815894,0.003571428571426,-0.013196125908009,-0.000000000000000,2 +9409,9467,9469,9527,0.192857142857156,-0.146489104115734,0.191071428571443,-0.152451573849447,0.191071428571443,-0.139194915253780,0.189285714285730,-0.145157384987493,0.013317191283320,0.000000000000000,-0.001392251815894,-0.003571428571426,0.001271186440588,0.003571428571426,-0.013196125908013,-0.000000000000000,2 +9410,9468,9470,9528,0.192857142857156,-0.133171912832409,0.191071428571443,-0.139194915253780,0.191071428571443,-0.125938256658105,0.189285714285730,-0.131961259079476,0.013317191283329,0.000000000000000,-0.001271186440588,-0.003571428571426,0.001150121065279,0.003571428571426,-0.013196125908021,-0.000000000000000,2 +9411,9469,9471,9529,0.192857142857156,-0.119854721549092,0.191071428571443,-0.125938256658105,0.191071428571443,-0.112681598062452,0.189285714285730,-0.118765133171466,0.013317191283306,0.000000000000000,-0.001150121065279,-0.003571428571426,0.001029055689973,0.003571428571426,-0.013196125907999,-0.000000000000000,2 +9412,9470,9472,9530,0.192857142857156,-0.106537530265774,0.191071428571443,-0.112681598062452,0.191071428571443,-0.099424939466777,0.189285714285730,-0.105569007263456,0.013317191283329,0.000000000000000,-0.001029055689973,-0.003571428571426,0.000907990314664,0.003571428571426,-0.013196125908021,-0.000000000000000,2 +9413,9471,9473,9531,0.192857142857156,-0.093220338982452,0.191071428571443,-0.099424939466777,0.191071428571443,-0.086168280871115,0.189285714285730,-0.092372881355441,0.013317191283316,0.000000000000000,-0.000907990314664,-0.003571428571426,0.000786924939357,0.003571428571426,-0.013196125908009,-0.000000000000000,2 +9414,9472,9474,9532,0.192857142857156,-0.079903147699131,0.191071428571443,-0.086168280871115,0.191071428571443,-0.072911622275444,0.189285714285730,-0.079176755447428,0.013317191283325,0.000000000000000,-0.000786924939357,-0.003571428571426,0.000665859564049,0.003571428571426,-0.013196125908017,-0.000000000000000,2 +9415,9473,9475,9533,0.192857142857156,-0.066585956415810,0.191071428571443,-0.072911622275444,0.191071428571443,-0.059654963679782,0.189285714285730,-0.065980629539415,0.013317191283316,0.000000000000000,-0.000665859564049,-0.003571428571426,0.000544794188742,0.003571428571426,-0.013196125908009,-0.000000000000000,2 +9416,9474,9476,9534,0.192857142857156,-0.053268765132493,0.191071428571443,-0.059654963679782,0.191071428571443,-0.046398305084116,0.189285714285730,-0.052784503631405,0.013317191283320,0.000000000000000,-0.000544794188742,-0.003571428571426,0.000423728813434,0.003571428571426,-0.013196125908012,-0.000000000000000,2 +9417,9475,9477,9535,0.192857142857156,-0.039951573849172,0.191071428571443,-0.046398305084116,0.191071428571443,-0.033141646488448,0.189285714285730,-0.039588377723392,0.013317191283321,0.000000000000000,-0.000423728813434,-0.003571428571426,0.000302663438126,0.003571428571426,-0.013196125908014,-0.000000000000000,2 +9418,9476,9478,9536,0.192857142857156,-0.026634382565853,0.191071428571443,-0.033141646488448,0.191071428571443,-0.019884987892786,0.189285714285730,-0.026392251815381,0.013317191283316,0.000000000000000,-0.000302663438126,-0.003571428571426,0.000181598062819,0.003571428571426,-0.013196125908009,-0.000000000000000,2 +9419,9477,9479,9537,0.192857142857156,-0.013317191282533,0.191071428571443,-0.019884987892786,0.191071428571443,-0.006628329297115,0.189285714285730,-0.013196125907368,0.013317191283325,0.000000000000000,-0.000181598062819,-0.003571428571426,0.000060532687511,0.003571428571426,-0.013196125908017,-0.000000000000000,2 +9420,9478,9480,9538,0.192857142857156,0.000000000000776,0.191071428571443,-0.006628329297115,0.191071428571443,0.006628329298527,0.189285714285730,0.000000000000636,0.013317191283292,0.000000000000000,-0.000060532687511,-0.003571428571426,-0.000060532687791,0.003571428571426,-0.013196125907991,-0.000000000000000,2 +9421,9479,9481,9539,0.192857142857156,0.013317191284054,0.191071428571443,0.006628329298527,0.191071428571443,0.019884987894142,0.189285714285730,0.013196125908614,0.013317191283264,0.000000000000000,0.000060532687791,-0.003571428571426,-0.000181598063089,0.003571428571426,-0.013196125907966,-0.000000000000000,2 +9422,9480,9482,9540,0.192857142857156,0.026634382567319,0.191071428571443,0.019884987894142,0.191071428571443,0.033141646489759,0.189285714285730,0.026392251816582,0.013317191283265,0.000000000000000,0.000181598063089,-0.003571428571426,-0.000302663438386,0.003571428571426,-0.013196125907968,-0.000000000000000,2 +9423,9481,9483,9541,0.192857142857156,0.039951573850584,0.191071428571443,0.033141646489759,0.191071428571443,0.046398305085374,0.189285714285730,0.039588377724549,0.013317191283265,0.000000000000000,0.000302663438386,-0.003571428571426,-0.000423728813684,0.003571428571426,-0.013196125907967,-0.000000000000000,2 +9424,9482,9484,9542,0.192857142857156,0.053268765133849,0.191071428571443,0.046398305085374,0.191071428571443,0.059654963680990,0.189285714285730,0.052784503632516,0.013317191283265,0.000000000000000,0.000423728813684,-0.003571428571426,-0.000544794188981,0.003571428571426,-0.013196125907967,-0.000000000000000,2 +9425,9483,9485,9543,0.192857142857156,0.066585956417114,0.191071428571443,0.059654963680990,0.191071428571443,0.072911622276607,0.189285714285730,0.065980629540484,0.013317191283265,0.000000000000000,0.000544794188981,-0.003571428571426,-0.000665859564279,0.003571428571426,-0.013196125907968,-0.000000000000000,2 +9426,9484,9486,9544,0.192857142857156,0.079903147700379,0.191071428571443,0.072911622276607,0.191071428571443,0.086168280872222,0.189285714285730,0.079176755448451,0.013317191283264,0.000000000000000,0.000665859564279,-0.003571428571426,-0.000786924939577,0.003571428571426,-0.013196125907966,-0.000000000000000,2 +9427,9485,9487,9545,0.192857142857156,0.093220338983637,0.191071428571443,0.086168280872222,0.191071428571443,0.099424939467828,0.189285714285730,0.092372881356413,0.013317191283254,0.000000000000000,0.000786924939577,-0.003571428571426,-0.000907990314873,0.003571428571426,-0.013196125907958,-0.000000000000000,2 +9428,9486,9488,9546,0.192857142857156,0.106537530266894,0.191071428571443,0.099424939467828,0.191071428571443,0.112681598063438,0.189285714285730,0.105569007264373,0.013317191283259,0.000000000000000,0.000907990314873,-0.003571428571426,-0.001029055690170,0.003571428571426,-0.013196125907962,-0.000000000000000,2 +9429,9487,9489,9547,0.192857142857156,0.119854721550155,0.191071428571443,0.112681598063438,0.191071428571443,0.125938256659053,0.189285714285730,0.118765133172337,0.013317191283264,0.000000000000000,0.001029055690170,-0.003571428571426,-0.001150121065467,0.003571428571426,-0.013196125907966,-0.000000000000000,2 +9430,9488,9490,9548,0.192857142857156,0.133171912833420,0.191071428571443,0.125938256659053,0.191071428571443,0.139194915254670,0.189285714285730,0.131961259080304,0.013317191283266,0.000000000000000,0.001150121065467,-0.003571428571426,-0.001271186440765,0.003571428571426,-0.013196125907968,-0.000000000000000,2 +9431,9489,9491,9549,0.192857142857156,0.146489104116684,0.191071428571443,0.139194915254670,0.191071428571443,0.152451573850285,0.189285714285730,0.145157384988271,0.013317191283264,0.000000000000000,0.001271186440765,-0.003571428571426,-0.001392251816063,0.003571428571426,-0.013196125907966,-0.000000000000000,2 +9432,9490,9492,9550,0.192857142857156,0.159806295399949,0.191071428571443,0.152451573850285,0.191071428571443,0.165708232445902,0.189285714285730,0.158353510896238,0.013317191283265,0.000000000000000,0.001392251816063,-0.003571428571426,-0.001513317191360,0.003571428571426,-0.013196125907968,-0.000000000000000,2 +9433,9491,9493,9551,0.192857142857156,0.173123486683213,0.191071428571443,0.165708232445902,0.191071428571443,0.178964891041514,0.189285714285730,0.171549636804203,0.013317191283262,0.000000000000000,0.001513317191360,-0.003571428571426,-0.001634382566659,0.003571428571426,-0.013196125907963,-0.000000000000000,2 +9434,9492,9494,9552,0.192857142857156,0.186440677966476,0.191071428571443,0.178964891041514,0.191071428571443,0.192221549637129,0.189285714285730,0.184745762712168,0.013317191283264,0.000000000000000,0.001634382566659,-0.003571428571426,-0.001755447941957,0.003571428571426,-0.013196125907965,-0.000000000000000,2 +9435,9493,9495,9553,0.192857142857156,0.199757869249741,0.191071428571443,0.192221549637129,0.191071428571443,0.205478208232748,0.189285714285730,0.197941888620136,0.013317191283267,0.000000000000000,0.001755447941957,-0.003571428571426,-0.001876513317254,0.003571428571426,-0.013196125907970,-0.000000000000000,2 +9436,9494,9496,9554,0.192857142857156,0.213075060533006,0.191071428571443,0.205478208232748,0.191071428571443,0.218734866828360,0.189285714285730,0.211138014528102,0.013317191283262,0.000000000000000,0.001876513317254,-0.003571428571426,-0.001997578692553,0.003571428571426,-0.013196125907963,-0.000000000000000,2 +9437,9495,9497,9555,0.192857142857156,0.226392251816271,0.191071428571443,0.218734866828360,0.191071428571443,0.231991525423981,0.189285714285730,0.224334140436070,0.013317191283268,0.000000000000000,0.001997578692553,-0.003571428571426,-0.002118644067848,0.003571428571426,-0.013196125907973,-0.000000000000000,2 +9438,9496,9498,9556,0.192857142857156,0.239709443099536,0.191071428571443,0.231991525423981,0.191071428571443,0.245248184019593,0.189285714285730,0.237530266344038,0.013317191283262,0.000000000000000,0.002118644067848,-0.003571428571426,-0.002239709443147,0.003571428571426,-0.013196125907963,-0.000000000000000,2 +9439,9497,9499,9557,0.192857142857156,0.253026634382800,0.191071428571443,0.245248184019593,0.191071428571443,0.258504842615211,0.189285714285730,0.250726392252004,0.013317191283266,0.000000000000000,0.002239709443147,-0.003571428571426,-0.002360774818444,0.003571428571426,-0.013196125907969,-0.000000000000000,2 +9440,9498,9500,9558,0.192857142857156,0.266343825666065,0.191071428571443,0.258504842615211,0.191071428571443,0.271761501210827,0.189285714285730,0.263922518159972,0.013317191283264,0.000000000000000,0.002360774818444,-0.003571428571426,-0.002481840193742,0.003571428571426,-0.013196125907966,-0.000000000000000,2 +9441,9499,9501,9559,0.192857142857156,0.279661016949330,0.191071428571443,0.271761501210827,0.191071428571443,0.285018159806442,0.189285714285730,0.277118644067939,0.013317191283264,0.000000000000000,0.002481840193742,-0.003571428571426,-0.002602905569040,0.003571428571426,-0.013196125907966,-0.000000000000000,2 +9442,9500,9502,9560,0.192857142857156,0.292978208232603,0.191071428571443,0.285018159806442,0.191071428571443,0.298274818402076,0.189285714285730,0.290314769975914,0.013317191283283,0.000000000000000,0.002602905569040,-0.003571428571426,-0.002723970944338,0.003571428571426,-0.013196125907985,-0.000000000000000,2 +9443,9501,9503,9561,0.192857142857156,0.306295399515881,0.191071428571443,0.298274818402076,0.191071428571443,0.311531476997699,0.189285714285730,0.303510895883893,0.013317191283273,0.000000000000000,0.002723970944338,-0.003571428571426,-0.002845036319638,0.003571428571426,-0.013196125907973,-0.000000000000000,2 +9444,9502,9504,9562,0.192857142857156,0.319612590799162,0.191071428571443,0.311531476997699,0.191071428571443,0.324788135593339,0.189285714285730,0.316707021791875,0.013317191283289,0.000000000000000,0.002845036319638,-0.003571428571426,-0.002966101694936,0.003571428571426,-0.013196125907991,-0.000000000000000,2 +9445,9503,9505,9563,0.192857142857156,0.332929782082442,0.191071428571443,0.324788135593339,0.191071428571443,0.338044794188959,0.189285714285730,0.329903147699856,0.013317191283270,0.000000000000000,0.002966101694936,-0.003571428571426,-0.003087167070235,0.003571428571426,-0.013196125907970,-0.000000000000000,2 +9446,9504,9506,9564,0.192857142857156,0.346246973365710,0.191071428571443,0.338044794188959,0.191071428571443,0.351301452784578,0.189285714285730,0.343099273607826,0.013317191283267,0.000000000000000,0.003087167070235,-0.003571428571426,-0.003208232445532,0.003571428571426,-0.013196125907970,-0.000000000000000,2 +9447,9505,9507,9565,0.192857142857156,0.359564164648975,0.191071428571443,0.351301452784578,0.191071428571443,0.364558111380192,0.189285714285730,0.356295399515794,0.013317191283264,0.000000000000000,0.003208232445532,-0.003571428571426,-0.003329297820830,0.003571428571426,-0.013196125907966,-0.000000000000000,2 +9448,9506,9508,9566,0.192857142857156,0.372881355932240,0.191071428571443,0.364558111380192,0.191071428571443,0.377814769975808,0.189285714285730,0.369491525423761,0.013317191283265,0.000000000000000,0.003329297820830,-0.003571428571426,-0.003450363196127,0.003571428571426,-0.013196125907967,-0.000000000000000,2 +7705,9449,9507,9567,0.191071428571443,0.391071428571443,0.192857142857156,0.386198547215514,0.191071428571443,0.377814769975808,0.189285714285730,0.382687651331737,-0.003571428571426,0.003571428571426,0.013317191283285,-0.000000000000000,0.003450363196127,-0.003571428571426,-0.013196125907986,0.000000000000000,2 +9244,9450,9510,9568,0.187500000000027,-0.387500000000027,0.189285714285730,-0.382687651331724,0.187500000000027,-0.374364406779668,0.185714285714324,-0.379176755447971,-0.003571428571406,-0.003571428571406,0.013196125908013,0.000000000000000,0.003450363196100,0.003571428571406,-0.013075060532706,-0.000000000000000,2 +9451,9509,9511,9569,0.189285714285730,-0.369491525423707,0.187500000000027,-0.374364406779668,0.187500000000027,-0.361228813559299,0.185714285714324,-0.366101694915260,0.013196125908022,0.000000000000000,-0.003450363196100,-0.003571428571406,0.003329297820792,0.003571428571406,-0.013075060532714,-0.000000000000000,2 +9452,9510,9512,9570,0.189285714285730,-0.356295399515694,0.187500000000027,-0.361228813559299,0.187500000000027,-0.348093220338949,0.185714285714324,-0.353026634382554,0.013196125908003,0.000000000000000,-0.003329297820792,-0.003571428571406,0.003208232445488,0.003571428571406,-0.013075060532698,0.000000000000000,2 +9453,9511,9513,9571,0.189285714285730,-0.343099273607679,0.187500000000027,-0.348093220338949,0.187500000000027,-0.334957627118576,0.185714285714324,-0.339951573849845,0.013196125908027,0.000000000000000,-0.003208232445488,-0.003571428571406,0.003087167070180,0.003571428571406,-0.013075060532719,-0.000000000000000,2 +9454,9512,9514,9572,0.189285714285730,-0.329903147699666,0.187500000000027,-0.334957627118576,0.187500000000027,-0.321822033898228,0.185714285714324,-0.326876513317138,0.013196125908000,0.000000000000000,-0.003087167070180,-0.003571428571406,0.002966101694876,0.003571428571406,-0.013075060532696,-0.000000000000000,2 +9455,9513,9515,9573,0.189285714285730,-0.316707021791653,0.187500000000027,-0.321822033898228,0.187500000000027,-0.308686440677857,0.185714285714324,-0.313801452784432,0.013196125908025,0.000000000000000,-0.002966101694876,-0.003571428571406,0.002845036319568,0.003571428571406,-0.013075060532717,-0.000000000000000,2 +9456,9514,9516,9574,0.189285714285730,-0.303510895883636,0.187500000000027,-0.308686440677857,0.187500000000027,-0.295550847457500,0.185714285714324,-0.300726392251721,0.013196125908010,0.000000000000000,-0.002845036319568,-0.003571428571406,0.002723970944262,0.003571428571406,-0.013075060532704,-0.000000000000000,2 +9457,9515,9517,9575,0.189285714285730,-0.290314769975625,0.187500000000027,-0.295550847457500,0.187500000000027,-0.282415254237142,0.185714285714324,-0.287651331719017,0.013196125908012,0.000000000000000,-0.002723970944262,-0.003571428571406,0.002602905568955,0.003571428571406,-0.013075060532704,-0.000000000000000,2 +9458,9516,9518,9576,0.189285714285730,-0.277118644067611,0.187500000000027,-0.282415254237142,0.187500000000027,-0.269279661016779,0.185714285714324,-0.274576271186310,0.013196125908017,-0.000000000000000,-0.002602905568955,-0.003571428571406,0.002481840193647,0.003571428571406,-0.013075060532710,-0.000000000000000,2 +9459,9517,9519,9577,0.189285714285730,-0.263922518159600,0.187500000000027,-0.269279661016779,0.187500000000027,-0.256144067796428,0.185714285714324,-0.261501210653606,0.013196125908004,0.000000000000000,-0.002481840193647,-0.003571428571406,0.002360774818342,0.003571428571406,-0.013075060532698,-0.000000000000000,2 +9460,9518,9520,9578,0.189285714285730,-0.250726392251584,0.187500000000027,-0.256144067796428,0.187500000000027,-0.243008474576054,0.185714285714324,-0.248426150120897,0.013196125908028,0.000000000000000,-0.002360774818342,-0.003571428571406,0.002239709443034,0.003571428571406,-0.013075060532720,-0.000000000000000,2 +9461,9519,9521,9579,0.189285714285730,-0.237530266343573,0.187500000000027,-0.243008474576054,0.187500000000027,-0.229872881355712,0.185714285714324,-0.235351089588192,0.013196125907994,0.000000000000000,-0.002239709443034,-0.003571428571406,0.002118644067729,0.003571428571406,-0.013075060532690,-0.000000000000000,2 +9462,9520,9522,9580,0.189285714285730,-0.224334140435562,0.187500000000027,-0.229872881355712,0.187500000000027,-0.216737288135339,0.185714285714324,-0.222276029055488,0.013196125908027,0.000000000000000,-0.002118644067729,-0.003571428571406,0.001997578692420,0.003571428571406,-0.013075060532719,0.000000000000000,2 +9463,9521,9523,9581,0.189285714285730,-0.211138014527547,0.187500000000027,-0.216737288135339,0.187500000000027,-0.203601694914988,0.185714285714324,-0.209200968522780,0.013196125908004,0.000000000000000,-0.001997578692420,-0.003571428571406,0.001876513317114,0.003571428571406,-0.013075060532697,-0.000000000000000,2 +9464,9522,9524,9582,0.189285714285730,-0.197941888619537,0.187500000000027,-0.203601694914988,0.187500000000027,-0.190466101694625,0.185714285714324,-0.196125907990077,0.013196125908016,0.000000000000000,-0.001876513317114,-0.003571428571406,0.001755447941807,0.003571428571406,-0.013075060532709,-0.000000000000000,2 +9465,9523,9525,9583,0.189285714285730,-0.184745762711530,0.187500000000027,-0.190466101694625,0.187500000000027,-0.177330508474280,0.185714285714324,-0.183050847457376,0.013196125907998,0.000000000000000,-0.001755447941807,-0.003571428571406,0.001634382566501,0.003571428571406,-0.013075060532692,-0.000000000000000,2 +9466,9524,9526,9584,0.189285714285730,-0.171549636803520,0.187500000000027,-0.177330508474280,0.187500000000027,-0.164194915253912,0.185714285714324,-0.169975786924672,0.013196125908022,0.000000000000000,-0.001634382566501,-0.003571428571406,0.001513317191193,0.003571428571406,-0.013075060532714,-0.000000000000000,2 +9467,9525,9527,9585,0.189285714285730,-0.158353510895504,0.187500000000027,-0.164194915253912,0.187500000000027,-0.151059322033556,0.185714285714324,-0.156900726391964,0.013196125908009,0.000000000000000,-0.001513317191193,-0.003571428571406,0.001392251815887,0.003571428571406,-0.013075060532702,0.000000000000000,2 +9468,9526,9528,9586,0.189285714285730,-0.145157384987493,0.187500000000027,-0.151059322033556,0.187500000000027,-0.137923728813196,0.185714285714324,-0.143825665859259,0.013196125908013,0.000000000000000,-0.001392251815887,-0.003571428571406,0.001271186440581,0.003571428571406,-0.013075060532707,-0.000000000000000,2 +9469,9527,9529,9587,0.189285714285730,-0.131961259079476,0.187500000000027,-0.137923728813196,0.187500000000027,-0.124788135592829,0.185714285714324,-0.130750605326549,0.013196125908021,0.000000000000000,-0.001271186440581,-0.003571428571406,0.001150121065273,0.003571428571406,-0.013075060532713,0.000000000000000,2 +9470,9528,9530,9588,0.189285714285730,-0.118765133171466,0.187500000000027,-0.124788135592829,0.187500000000027,-0.111652542372483,0.185714285714324,-0.117675544793846,0.013196125907999,0.000000000000000,-0.001150121065273,-0.003571428571406,0.001029055689967,0.003571428571406,-0.013075060532694,-0.000000000000000,2 +9471,9529,9531,9589,0.189285714285730,-0.105569007263456,0.187500000000027,-0.111652542372483,0.187500000000027,-0.098516949152116,0.185714285714324,-0.104600484261143,0.013196125908021,0.000000000000000,-0.001029055689967,-0.003571428571406,0.000907990314659,0.003571428571406,-0.013075060532713,-0.000000000000000,2 +9472,9530,9532,9590,0.189285714285730,-0.092372881355441,0.187500000000027,-0.098516949152116,0.187500000000027,-0.085381355931760,0.185714285714324,-0.091525423728435,0.013196125908009,0.000000000000000,-0.000907990314659,-0.003571428571406,0.000786924939353,0.003571428571406,-0.013075060532702,-0.000000000000000,2 +9473,9531,9533,9591,0.189285714285730,-0.079176755447428,0.187500000000027,-0.085381355931760,0.187500000000027,-0.072245762711397,0.185714285714324,-0.078450363195729,0.013196125908017,0.000000000000000,-0.000786924939353,-0.003571428571406,0.000665859564045,0.003571428571406,-0.013075060532710,-0.000000000000000,2 +9474,9532,9534,9592,0.189285714285730,-0.065980629539415,0.187500000000027,-0.072245762711397,0.187500000000027,-0.059110169491042,0.185714285714324,-0.065375302663023,0.013196125908009,0.000000000000000,-0.000665859564045,-0.003571428571406,0.000544794188738,0.003571428571406,-0.013075060532702,-0.000000000000000,2 +9475,9533,9535,9593,0.189285714285730,-0.052784503631405,0.187500000000027,-0.059110169491042,0.187500000000027,-0.045974576270683,0.185714285714324,-0.052300242130320,0.013196125908012,0.000000000000000,-0.000544794188738,-0.003571428571406,0.000423728813432,0.003571428571406,-0.013075060532705,-0.000000000000000,2 +9476,9534,9536,9594,0.189285714285730,-0.039588377723392,0.187500000000027,-0.045974576270683,0.187500000000027,-0.032838983050323,0.185714285714324,-0.039225181597614,0.013196125908014,0.000000000000000,-0.000423728813432,-0.003571428571406,0.000302663438125,0.003571428571406,-0.013075060532707,-0.000000000000000,2 +9477,9535,9537,9595,0.189285714285730,-0.026392251815381,0.187500000000027,-0.032838983050323,0.187500000000027,-0.019703389829968,0.185714285714324,-0.026150121064910,0.013196125908009,0.000000000000000,-0.000302663438125,-0.003571428571406,0.000181598062818,0.003571428571406,-0.013075060532702,-0.000000000000000,2 +9478,9536,9538,9596,0.189285714285730,-0.013196125907368,0.187500000000027,-0.019703389829968,0.187500000000027,-0.006567796609604,0.185714285714324,-0.013075060532204,0.013196125908017,0.000000000000000,-0.000181598062818,-0.003571428571406,0.000060532687510,0.003571428571406,-0.013075060532710,-0.000000000000000,2 +9479,9537,9539,9597,0.189285714285730,0.000000000000636,0.187500000000027,-0.006567796609604,0.187500000000027,0.006567796610736,0.185714285714324,0.000000000000496,0.013196125907991,0.000000000000000,-0.000060532687510,-0.003571428571406,-0.000060532687790,0.003571428571406,-0.013075060532690,-0.000000000000000,2 +9480,9538,9540,9598,0.189285714285730,0.013196125908614,0.187500000000027,0.006567796610736,0.187500000000027,0.019703389831054,0.185714285714324,0.013075060533175,0.013196125907966,0.000000000000000,0.000060532687790,-0.003571428571406,-0.000181598063088,0.003571428571406,-0.013075060532669,-0.000000000000000,2 +9481,9539,9541,9599,0.189285714285730,0.026392251816582,0.187500000000027,0.019703389831054,0.187500000000027,0.032838983051374,0.185714285714324,0.026150121065845,0.013196125907968,0.000000000000000,0.000181598063088,-0.003571428571406,-0.000302663438384,0.003571428571406,-0.013075060532672,-0.000000000000000,2 +9482,9540,9542,9600,0.189285714285730,0.039588377724549,0.187500000000027,0.032838983051374,0.187500000000027,0.045974576271692,0.185714285714324,0.039225181598516,0.013196125907967,0.000000000000000,0.000302663438384,-0.003571428571406,-0.000423728813681,0.003571428571406,-0.013075060532670,-0.000000000000000,2 +9483,9541,9543,9601,0.189285714285730,0.052784503632516,0.187500000000027,0.045974576271692,0.187500000000027,0.059110169492011,0.185714285714324,0.052300242131186,0.013196125907967,0.000000000000000,0.000423728813681,-0.003571428571406,-0.000544794188978,0.003571428571406,-0.013075060532670,-0.000000000000000,2 +9484,9542,9544,9602,0.189285714285730,0.065980629540484,0.187500000000027,0.059110169492011,0.187500000000027,0.072245762712331,0.185714285714324,0.065375302663857,0.013196125907968,0.000000000000000,0.000544794188978,-0.003571428571406,-0.000665859564275,0.003571428571406,-0.013075060532672,-0.000000000000000,2 +9485,9543,9545,9603,0.189285714285730,0.079176755448451,0.187500000000027,0.072245762712331,0.187500000000027,0.085381355932648,0.185714285714324,0.078450363196528,0.013196125907966,0.000000000000000,0.000665859564275,-0.003571428571406,-0.000786924939572,0.003571428571406,-0.013075060532669,-0.000000000000000,2 +9486,9544,9546,9604,0.189285714285730,0.092372881356413,0.187500000000027,0.085381355932648,0.187500000000027,0.098516949152958,0.185714285714324,0.091525423729193,0.013196125907958,0.000000000000000,0.000786924939572,-0.003571428571406,-0.000907990314868,0.003571428571406,-0.013075060532662,-0.000000000000000,2 +9487,9545,9547,9605,0.189285714285730,0.105569007264373,0.187500000000027,0.098516949152958,0.187500000000027,0.111652542373272,0.185714285714324,0.104600484261857,0.013196125907962,0.000000000000000,0.000907990314868,-0.003571428571406,-0.001029055690164,0.003571428571406,-0.013075060532666,-0.000000000000000,2 +9488,9546,9548,9606,0.189285714285730,0.118765133172337,0.187500000000027,0.111652542373272,0.187500000000027,0.124788135593589,0.185714285714324,0.117675544794524,0.013196125907966,0.000000000000000,0.001029055690164,-0.003571428571406,-0.001150121065461,0.003571428571406,-0.013075060532669,-0.000000000000000,2 +9489,9547,9549,9607,0.189285714285730,0.131961259080304,0.187500000000027,0.124788135593589,0.187500000000027,0.137923728813909,0.185714285714324,0.130750605327194,0.013196125907968,0.000000000000000,0.001150121065461,-0.003571428571406,-0.001271186440757,0.003571428571406,-0.013075060532672,-0.000000000000000,2 +9490,9548,9550,9608,0.189285714285730,0.145157384988271,0.187500000000027,0.137923728813909,0.187500000000027,0.151059322034226,0.185714285714324,0.143825665859865,0.013196125907966,0.000000000000000,0.001271186440757,-0.003571428571406,-0.001392251816055,0.003571428571406,-0.013075060532669,-0.000000000000000,2 +9491,9549,9551,9609,0.189285714285730,0.158353510896238,0.187500000000027,0.151059322034226,0.187500000000027,0.164194915254546,0.185714285714324,0.156900726392535,0.013196125907968,0.000000000000000,0.001392251816055,-0.003571428571406,-0.001513317191352,0.003571428571406,-0.013075060532671,-0.000000000000000,2 +9492,9550,9552,9610,0.189285714285730,0.171549636804203,0.187500000000027,0.164194915254546,0.187500000000027,0.177330508474860,0.185714285714324,0.169975786925203,0.013196125907963,0.000000000000000,0.001513317191352,-0.003571428571406,-0.001634382566650,0.003571428571406,-0.013075060532665,-0.000000000000000,2 +9493,9551,9553,9611,0.189285714285730,0.184745762712168,0.187500000000027,0.177330508474860,0.187500000000027,0.190466101695177,0.185714285714324,0.183050847457869,0.013196125907965,0.000000000000000,0.001634382566650,-0.003571428571406,-0.001755447941947,0.003571428571406,-0.013075060532668,-0.000000000000000,2 +9494,9552,9554,9612,0.189285714285730,0.197941888620136,0.187500000000027,0.190466101695177,0.187500000000027,0.203601694915499,0.185714285714324,0.196125907990540,0.013196125907970,0.000000000000000,0.001755447941947,-0.003571428571406,-0.001876513317243,0.003571428571406,-0.013075060532674,-0.000000000000000,2 +9495,9553,9555,9613,0.189285714285730,0.211138014528102,0.187500000000027,0.203601694915499,0.187500000000027,0.216737288135813,0.185714285714324,0.209200968523210,0.013196125907963,0.000000000000000,0.001876513317243,-0.003571428571406,-0.001997578692541,0.003571428571406,-0.013075060532665,-0.000000000000000,2 +9496,9554,9556,9614,0.189285714285730,0.224334140436070,0.187500000000027,0.216737288135813,0.187500000000027,0.229872881356138,0.185714285714324,0.222276029055881,0.013196125907973,0.000000000000000,0.001997578692541,-0.003571428571406,-0.002118644067837,0.003571428571406,-0.013075060532677,-0.000000000000000,2 +9497,9555,9557,9615,0.189285714285730,0.237530266344038,0.187500000000027,0.229872881356138,0.187500000000027,0.243008474576452,0.185714285714324,0.235351089588552,0.013196125907963,0.000000000000000,0.002118644067837,-0.003571428571406,-0.002239709443135,0.003571428571406,-0.013075060532665,-0.000000000000000,2 +9498,9556,9558,9616,0.189285714285730,0.250726392252004,0.187500000000027,0.243008474576452,0.187500000000027,0.256144067796774,0.185714285714324,0.248426150121222,0.013196125907969,0.000000000000000,0.002239709443135,-0.003571428571406,-0.002360774818431,0.003571428571406,-0.013075060532673,-0.000000000000000,2 +9499,9557,9559,9617,0.189285714285730,0.263922518159972,0.187500000000027,0.256144067796774,0.187500000000027,0.269279661017091,0.185714285714324,0.261501210653893,0.013196125907966,0.000000000000000,0.002360774818431,-0.003571428571406,-0.002481840193728,0.003571428571406,-0.013075060532669,-0.000000000000000,2 +9500,9558,9560,9618,0.189285714285730,0.277118644067939,0.187500000000027,0.269279661017091,0.187500000000027,0.282415254237409,0.185714285714324,0.274576271186562,0.013196125907966,0.000000000000000,0.002481840193728,-0.003571428571406,-0.002602905569026,0.003571428571406,-0.013075060532669,-0.000000000000000,2 +9501,9559,9561,9619,0.189285714285730,0.290314769975914,0.187500000000027,0.282415254237409,0.187500000000027,0.295550847457745,0.185714285714324,0.287651331719240,0.013196125907985,0.000000000000000,0.002602905569026,-0.003571428571406,-0.002723970944323,0.003571428571406,-0.013075060532687,-0.000000000000000,2 +9502,9560,9562,9620,0.189285714285730,0.303510895883893,0.187500000000027,0.295550847457745,0.187500000000027,0.308686440678069,0.185714285714324,0.300726392251921,0.013196125907973,0.000000000000000,0.002723970944323,-0.003571428571406,-0.002845036319622,0.003571428571406,-0.013075060532674,-0.000000000000000,2 +9503,9561,9563,9621,0.189285714285730,0.316707021791875,0.187500000000027,0.308686440678069,0.187500000000027,0.321822033898411,0.185714285714324,0.313801452784605,0.013196125907991,0.000000000000000,0.002845036319622,-0.003571428571406,-0.002966101694919,0.003571428571406,-0.013075060532694,-0.000000000000000,2 +9504,9562,9564,9622,0.189285714285730,0.329903147699856,0.187500000000027,0.321822033898411,0.187500000000027,0.334957627118732,0.185714285714324,0.326876513317288,0.013196125907970,0.000000000000000,0.002966101694919,-0.003571428571406,-0.003087167070218,0.003571428571406,-0.013075060532671,-0.000000000000000,2 +9505,9563,9565,9623,0.189285714285730,0.343099273607826,0.187500000000027,0.334957627118732,0.187500000000027,0.348093220339055,0.185714285714324,0.339951573849961,0.013196125907970,0.000000000000000,0.003087167070218,-0.003571428571406,-0.003208232445514,0.003571428571406,-0.013075060532674,-0.000000000000000,2 +9506,9564,9566,9624,0.189285714285730,0.356295399515794,0.187500000000027,0.348093220339055,0.187500000000027,0.361228813559372,0.185714285714324,0.353026634382632,0.013196125907966,0.000000000000000,0.003208232445514,-0.003571428571406,-0.003329297820811,0.003571428571406,-0.013075060532668,-0.000000000000000,2 +9507,9565,9567,9625,0.189285714285730,0.369491525423761,0.187500000000027,0.361228813559372,0.187500000000027,0.374364406779690,0.185714285714324,0.366101694915301,0.013196125907967,0.000000000000000,0.003329297820811,-0.003571428571406,-0.003450363196108,0.003571428571406,-0.013075060532670,-0.000000000000000,2 +7704,9508,9566,9626,0.187500000000027,0.387500000000027,0.189285714285730,0.382687651331737,0.187500000000027,0.374364406779690,0.185714285714324,0.379176755447980,-0.003571428571406,0.003571428571406,0.013196125907986,-0.000000000000000,0.003450363196108,-0.003571428571406,-0.013075060532688,0.000000000000000,2 +9215,9509,9569,9627,0.183928571428607,-0.383928571428607,0.185714285714324,-0.379176755447971,0.183928571428607,-0.370914043583554,0.182142857142890,-0.375665859564191,-0.003571428571434,-0.003571428571434,0.013075060532706,0.000000000000000,0.003450363196127,0.003571428571434,-0.012953995157400,-0.000000000000000,2 +9510,9568,9570,9628,0.185714285714324,-0.366101694915260,0.183928571428607,-0.370914043583554,0.183928571428607,-0.357899515738494,0.182142857142890,-0.362711864406788,0.013075060532714,0.000000000000000,-0.003450363196127,-0.003571428571434,0.003329297820818,0.003571428571433,-0.012953995157406,-0.000000000000000,2 +9511,9569,9571,9629,0.185714285714324,-0.353026634382554,0.183928571428607,-0.357899515738494,0.183928571428607,-0.344884987893448,0.182142857142890,-0.349757869249388,0.013075060532698,-0.000000000000000,-0.003329297820818,-0.003571428571433,0.003208232445513,0.003571428571434,-0.012953995157393,-0.000000000000000,2 +9512,9570,9572,9630,0.185714285714324,-0.339951573849845,0.183928571428607,-0.344884987893448,0.183928571428607,-0.331870460048384,0.182142857142890,-0.336803874091987,0.013075060532719,0.000000000000000,-0.003208232445513,-0.003571428571434,0.003087167070204,0.003571428571433,-0.012953995157410,0.000000000000000,2 +9513,9571,9573,9631,0.185714285714324,-0.326876513317138,0.183928571428607,-0.331870460048384,0.183928571428607,-0.318855932203341,0.182142857142890,-0.323849878934587,0.013075060532696,0.000000000000000,-0.003087167070204,-0.003571428571433,0.002966101694899,0.003571428571434,-0.012953995157391,-0.000000000000000,2 +9514,9572,9574,9632,0.185714285714324,-0.313801452784432,0.183928571428607,-0.318855932203341,0.183928571428607,-0.305841404358278,0.182142857142890,-0.310895883777187,0.013075060532717,0.000000000000000,-0.002966101694899,-0.003571428571434,0.002845036319590,0.003571428571434,-0.012953995157408,-0.000000000000000,2 +9515,9573,9575,9633,0.185714285714324,-0.300726392251721,0.183928571428607,-0.305841404358278,0.183928571428607,-0.292826876513227,0.182142857142890,-0.297941888619785,0.013075060532704,0.000000000000000,-0.002845036319590,-0.003571428571434,0.002723970944283,0.003571428571434,-0.012953995157398,-0.000000000000000,2 +9516,9574,9576,9634,0.185714285714324,-0.287651331719017,0.183928571428607,-0.292826876513227,0.183928571428607,-0.279812348668177,0.182142857142890,-0.284987893462388,0.013075060532704,0.000000000000000,-0.002723970944283,-0.003571428571434,0.002602905568975,0.003571428571434,-0.012953995157396,-0.000000000000000,2 +9517,9575,9577,9635,0.185714285714324,-0.274576271186310,0.183928571428607,-0.279812348668177,0.183928571428607,-0.266797820823122,0.182142857142890,-0.272033898304989,0.013075060532710,0.000000000000000,-0.002602905568975,-0.003571428571434,0.002481840193666,0.003571428571434,-0.012953995157401,-0.000000000000000,2 +9518,9576,9578,9636,0.185714285714324,-0.261501210653606,0.183928571428607,-0.266797820823122,0.183928571428607,-0.253783292978077,0.182142857142890,-0.259079903147593,0.013075060532698,0.000000000000000,-0.002481840193666,-0.003571428571434,0.002360774818360,0.003571428571434,-0.012953995157392,-0.000000000000000,2 +9519,9577,9579,9637,0.185714285714324,-0.248426150120897,0.183928571428607,-0.253783292978077,0.183928571428607,-0.240768765133011,0.182142857142890,-0.246125907990192,0.013075060532720,0.000000000000000,-0.002360774818360,-0.003571428571434,0.002239709443051,0.003571428571434,-0.012953995157411,-0.000000000000000,2 +9520,9578,9580,9638,0.185714285714324,-0.235351089588192,0.183928571428607,-0.240768765133011,0.183928571428607,-0.227754237287975,0.182142857142890,-0.233171912832794,0.013075060532690,0.000000000000000,-0.002239709443051,-0.003571428571434,0.002118644067745,0.003571428571434,-0.012953995157384,-0.000000000000000,2 +9521,9579,9581,9639,0.185714285714324,-0.222276029055488,0.183928571428607,-0.227754237287975,0.183928571428607,-0.214739709442911,0.182142857142890,-0.220217917675397,0.013075060532719,-0.000000000000000,-0.002118644067745,-0.003571428571434,0.001997578692436,0.003571428571434,-0.012953995157409,-0.000000000000000,2 +9522,9580,9582,9640,0.185714285714324,-0.209200968522780,0.183928571428607,-0.214739709442911,0.183928571428607,-0.201725181597867,0.182142857142890,-0.207263922517998,0.013075060532697,0.000000000000000,-0.001997578692436,-0.003571428571434,0.001876513317129,0.003571428571434,-0.012953995157390,-0.000000000000000,2 +9523,9581,9583,9641,0.185714285714324,-0.196125907990077,0.183928571428607,-0.201725181597867,0.183928571428607,-0.188710653752812,0.182142857142890,-0.194309927360602,0.013075060532709,0.000000000000000,-0.001876513317129,-0.003571428571434,0.001755447941820,0.003571428571434,-0.012953995157401,-0.000000000000000,2 +9524,9582,9584,9642,0.185714285714324,-0.183050847457376,0.183928571428607,-0.188710653752812,0.183928571428607,-0.175696125907773,0.182142857142890,-0.181355932203209,0.013075060532692,0.000000000000000,-0.001755447941820,-0.003571428571434,0.001634382566514,0.003571428571434,-0.012953995157386,-0.000000000000000,2 +9525,9583,9585,9643,0.185714285714324,-0.169975786924672,0.183928571428607,-0.175696125907773,0.183928571428607,-0.162681598062713,0.182142857142890,-0.168401937045813,0.013075060532714,0.000000000000000,-0.001634382566514,-0.003571428571434,0.001513317191205,0.003571428571434,-0.012953995157405,-0.000000000000000,2 +9526,9584,9586,9644,0.185714285714324,-0.156900726391964,0.183928571428607,-0.162681598062713,0.183928571428607,-0.149667070217664,0.182142857142890,-0.155447941888413,0.013075060532702,-0.000000000000000,-0.001513317191205,-0.003571428571434,0.001392251815897,0.003571428571434,-0.012953995157395,0.000000000000000,2 +9527,9585,9587,9645,0.185714285714324,-0.143825665859259,0.183928571428607,-0.149667070217664,0.183928571428607,-0.136652542372610,0.182142857142890,-0.142493946731015,0.013075060532707,0.000000000000000,-0.001392251815897,-0.003571428571434,0.001271186440590,0.003571428571433,-0.012953995157400,-0.000000000000000,2 +9528,9586,9588,9646,0.185714285714324,-0.130750605326549,0.183928571428607,-0.136652542372610,0.183928571428607,-0.123638014527552,0.182142857142890,-0.129539951573613,0.013075060532713,-0.000000000000000,-0.001271186440590,-0.003571428571433,0.001150121065282,0.003571428571434,-0.012953995157404,-0.000000000000000,2 +9529,9587,9589,9647,0.185714285714324,-0.117675544793846,0.183928571428607,-0.123638014527552,0.183928571428607,-0.110623486682512,0.182142857142890,-0.116585956416218,0.013075060532694,0.000000000000000,-0.001150121065282,-0.003571428571434,0.001029055689975,0.003571428571434,-0.012953995157387,-0.000000000000000,2 +9530,9588,9590,9648,0.185714285714324,-0.104600484261143,0.183928571428607,-0.110623486682512,0.183928571428607,-0.097608958837453,0.182142857142890,-0.103631961258822,0.013075060532713,0.000000000000000,-0.001029055689975,-0.003571428571434,0.000907990314666,0.003571428571434,-0.012953995157405,-0.000000000000000,2 +9531,9589,9591,9649,0.185714285714324,-0.091525423728435,0.183928571428607,-0.097608958837453,0.183928571428607,-0.084594430992405,0.182142857142890,-0.090677966101423,0.013075060532702,0.000000000000000,-0.000907990314666,-0.003571428571434,0.000786924939359,0.003571428571434,-0.012953995157394,-0.000000000000000,2 +9532,9590,9592,9650,0.185714285714324,-0.078450363195729,0.183928571428607,-0.084594430992405,0.183928571428607,-0.071579903147349,0.182142857142890,-0.077723970944025,0.013075060532710,0.000000000000000,-0.000786924939359,-0.003571428571434,0.000665859564050,0.003571428571434,-0.012953995157401,-0.000000000000000,2 +9533,9591,9593,9651,0.185714285714324,-0.065375302663023,0.183928571428607,-0.071579903147349,0.183928571428607,-0.058565375302301,0.182142857142890,-0.064769975786627,0.013075060532702,0.000000000000000,-0.000665859564050,-0.003571428571434,0.000544794188743,0.003571428571434,-0.012953995157394,-0.000000000000000,2 +9534,9592,9594,9652,0.185714285714324,-0.052300242130320,0.183928571428607,-0.058565375302301,0.183928571428607,-0.045550847457250,0.182142857142890,-0.051815980629231,0.013075060532705,0.000000000000000,-0.000544794188743,-0.003571428571434,0.000423728813435,0.003571428571434,-0.012953995157397,-0.000000000000000,2 +9535,9593,9595,9653,0.185714285714324,-0.039225181597614,0.183928571428607,-0.045550847457250,0.183928571428607,-0.032536319612197,0.182142857142890,-0.038861985471833,0.013075060532707,0.000000000000000,-0.000423728813435,-0.003571428571434,0.000302663438127,0.003571428571434,-0.012953995157399,-0.000000000000000,2 +9536,9594,9596,9654,0.185714285714324,-0.026150121064910,0.183928571428607,-0.032536319612197,0.183928571428607,-0.019521791767149,0.182142857142890,-0.025907990314437,0.013075060532702,0.000000000000000,-0.000302663438127,-0.003571428571434,0.000181598062819,0.003571428571434,-0.012953995157394,-0.000000000000000,2 +9537,9595,9597,9655,0.185714285714324,-0.013075060532204,0.183928571428607,-0.019521791767149,0.183928571428607,-0.006507263922093,0.182142857142890,-0.012953995157039,0.013075060532710,0.000000000000000,-0.000181598062819,-0.003571428571434,0.000060532687511,0.003571428571434,-0.012953995157401,-0.000000000000000,2 +9538,9596,9598,9656,0.185714285714324,0.000000000000496,0.183928571428607,-0.006507263922093,0.183928571428607,0.006507263922946,0.182142857142890,0.000000000000356,0.013075060532690,0.000000000000000,-0.000060532687511,-0.003571428571434,-0.000060532687791,0.003571428571434,-0.012953995157388,-0.000000000000000,2 +9539,9597,9599,9657,0.185714285714324,0.013075060533175,0.183928571428607,0.006507263922946,0.183928571428607,0.019521791767965,0.182142857142890,0.012953995157735,0.013075060532669,0.000000000000000,0.000060532687791,-0.003571428571434,-0.000181598063089,0.003571428571434,-0.012953995157370,-0.000000000000000,2 +9540,9598,9600,9658,0.185714285714324,0.026150121065845,0.183928571428607,0.019521791767965,0.183928571428607,0.032536319612988,0.182142857142890,0.025907990315108,0.013075060532672,0.000000000000000,0.000181598063089,-0.003571428571434,-0.000302663438387,0.003571428571434,-0.012953995157374,-0.000000000000000,2 +9541,9599,9601,9659,0.185714285714324,0.039225181598516,0.183928571428607,0.032536319612988,0.183928571428607,0.045550847458009,0.182142857142890,0.038861985472481,0.013075060532670,0.000000000000000,0.000302663438387,-0.003571428571434,-0.000423728813685,0.003571428571434,-0.012953995157372,-0.000000000000000,2 +9542,9600,9602,9660,0.185714285714324,0.052300242131186,0.183928571428607,0.045550847458009,0.183928571428607,0.058565375303030,0.182142857142890,0.051815980629853,0.013075060532670,0.000000000000000,0.000423728813685,-0.003571428571434,-0.000544794188982,0.003571428571434,-0.012953995157373,-0.000000000000000,2 +9543,9601,9603,9661,0.185714285714324,0.065375302663857,0.183928571428607,0.058565375303030,0.183928571428607,0.071579903148053,0.182142857142890,0.064769975787226,0.013075060532672,0.000000000000000,0.000544794188982,-0.003571428571434,-0.000665859564280,0.003571428571434,-0.012953995157374,-0.000000000000000,2 +9544,9602,9604,9662,0.185714285714324,0.078450363196528,0.183928571428607,0.071579903148053,0.183928571428607,0.084594430993073,0.182142857142890,0.077723970944599,0.013075060532669,0.000000000000000,0.000665859564280,-0.003571428571434,-0.000786924939578,0.003571428571434,-0.012953995157370,-0.000000000000000,2 +9545,9603,9605,9663,0.185714285714324,0.091525423729193,0.183928571428607,0.084594430993073,0.183928571428607,0.097608958838087,0.182142857142890,0.090677966101967,0.013075060532662,0.000000000000000,0.000786924939578,-0.003571428571434,-0.000907990314875,0.003571428571434,-0.012953995157365,-0.000000000000000,2 +9546,9604,9606,9664,0.185714285714324,0.104600484261857,0.183928571428607,0.097608958838087,0.183928571428607,0.110623486683104,0.182142857142890,0.103631961259334,0.013075060532666,0.000000000000000,0.000907990314875,-0.003571428571434,-0.001029055690172,0.003571428571434,-0.012953995157369,-0.000000000000000,2 +9547,9605,9607,9665,0.185714285714324,0.117675544794524,0.183928571428607,0.110623486683104,0.183928571428607,0.123638014528124,0.182142857142890,0.116585956416703,0.013075060532669,0.000000000000000,0.001029055690172,-0.003571428571434,-0.001150121065470,0.003571428571434,-0.012953995157370,-0.000000000000000,2 +9548,9606,9608,9666,0.185714285714324,0.130750605327194,0.183928571428607,0.123638014528124,0.183928571428607,0.136652542373147,0.182142857142890,0.129539951574076,0.013075060532672,0.000000000000000,0.001150121065470,-0.003571428571434,-0.001271186440767,0.003571428571434,-0.012953995157374,-0.000000000000000,2 +9549,9607,9609,9667,0.185714285714324,0.143825665859865,0.183928571428607,0.136652542373147,0.183928571428607,0.149667070218166,0.182142857142890,0.142493946731448,0.013075060532669,0.000000000000000,0.001271186440767,-0.003571428571434,-0.001392251816066,0.003571428571434,-0.012953995157371,-0.000000000000000,2 +9550,9608,9610,9668,0.185714285714324,0.156900726392535,0.183928571428607,0.149667070218166,0.183928571428607,0.162681598063189,0.182142857142890,0.155447941888820,0.013075060532671,0.000000000000000,0.001392251816066,-0.003571428571434,-0.001513317191363,0.003571428571434,-0.012953995157374,-0.000000000000000,2 +9551,9609,9611,9669,0.185714285714324,0.169975786925203,0.183928571428607,0.162681598063189,0.183928571428607,0.175696125908204,0.182142857142890,0.168401937046190,0.013075060532665,0.000000000000000,0.001513317191363,-0.003571428571434,-0.001634382566662,0.003571428571434,-0.012953995157366,-0.000000000000000,2 +9552,9610,9612,9670,0.185714285714324,0.183050847457869,0.183928571428607,0.175696125908204,0.183928571428607,0.188710653753223,0.182142857142890,0.181355932203558,0.013075060532668,0.000000000000000,0.001634382566662,-0.003571428571434,-0.001755447941961,0.003571428571434,-0.012953995157370,-0.000000000000000,2 +9553,9611,9613,9671,0.185714285714324,0.196125907990540,0.183928571428607,0.188710653753223,0.183928571428607,0.201725181598249,0.182142857142890,0.194309927360931,0.013075060532674,0.000000000000000,0.001755447941961,-0.003571428571434,-0.001876513317258,0.003571428571434,-0.012953995157378,-0.000000000000000,2 +9554,9612,9614,9672,0.185714285714324,0.209200968523210,0.183928571428607,0.201725181598249,0.183928571428607,0.214739709443264,0.182142857142890,0.207263922518303,0.013075060532665,0.000000000000000,0.001876513317258,-0.003571428571434,-0.001997578692557,0.003571428571434,-0.012953995157366,-0.000000000000000,2 +9555,9613,9615,9673,0.185714285714324,0.222276029055881,0.183928571428607,0.214739709443264,0.183928571428607,0.227754237288293,0.182142857142890,0.220217917675676,0.013075060532677,0.000000000000000,0.001997578692557,-0.003571428571434,-0.002118644067853,0.003571428571434,-0.012953995157381,-0.000000000000000,2 +9556,9614,9616,9674,0.185714285714324,0.235351089588552,0.183928571428607,0.227754237288293,0.183928571428607,0.240768765133309,0.182142857142890,0.233171912833050,0.013075060532665,0.000000000000000,0.002118644067853,-0.003571428571434,-0.002239709443152,0.003571428571434,-0.012953995157366,-0.000000000000000,2 +9557,9615,9617,9675,0.185714285714324,0.248426150121222,0.183928571428607,0.240768765133309,0.183928571428607,0.253783292978334,0.182142857142890,0.246125907990421,0.013075060532673,0.000000000000000,0.002239709443152,-0.003571428571434,-0.002360774818449,0.003571428571434,-0.012953995157376,-0.000000000000000,2 +9558,9616,9618,9676,0.185714285714324,0.261501210653893,0.183928571428607,0.253783292978334,0.183928571428607,0.266797820823354,0.182142857142890,0.259079903147794,0.013075060532669,0.000000000000000,0.002360774818449,-0.003571428571434,-0.002481840193747,0.003571428571434,-0.012953995157371,-0.000000000000000,2 +9559,9617,9619,9677,0.185714285714324,0.274576271186562,0.183928571428607,0.266797820823354,0.183928571428607,0.279812348668374,0.182142857142890,0.272033898305165,0.013075060532669,0.000000000000000,0.002481840193747,-0.003571428571434,-0.002602905569045,0.003571428571434,-0.012953995157371,-0.000000000000000,2 +9560,9618,9620,9678,0.185714285714324,0.287651331719240,0.183928571428607,0.279812348668374,0.183928571428607,0.292826876513412,0.182142857142890,0.284987893462545,0.013075060532687,0.000000000000000,0.002602905569045,-0.003571428571434,-0.002723970944344,0.003571428571434,-0.012953995157389,-0.000000000000000,2 +9561,9619,9621,9679,0.185714285714324,0.300726392251921,0.183928571428607,0.292826876513412,0.183928571428607,0.305841404358436,0.182142857142890,0.297941888619927,0.013075060532674,0.000000000000000,0.002723970944344,-0.003571428571434,-0.002845036319644,0.003571428571434,-0.012953995157374,-0.000000000000000,2 +9562,9620,9622,9680,0.185714285714324,0.313801452784605,0.183928571428607,0.305841404358436,0.183928571428607,0.318855932203481,0.182142857142890,0.310895883777312,0.013075060532694,0.000000000000000,0.002845036319644,-0.003571428571434,-0.002966101694942,0.003571428571434,-0.012953995157396,-0.000000000000000,2 +9563,9621,9623,9681,0.185714285714324,0.326876513317288,0.183928571428607,0.318855932203481,0.183928571428607,0.331870460048503,0.182142857142890,0.323849878934696,0.013075060532671,0.000000000000000,0.002966101694942,-0.003571428571434,-0.003087167070241,0.003571428571434,-0.012953995157372,-0.000000000000000,2 +9564,9622,9624,9682,0.185714285714324,0.339951573849961,0.183928571428607,0.331870460048503,0.183928571428607,0.344884987893529,0.182142857142890,0.336803874092071,0.013075060532674,0.000000000000000,0.003087167070241,-0.003571428571434,-0.003208232445538,0.003571428571434,-0.012953995157377,-0.000000000000000,2 +9565,9623,9625,9683,0.185714285714324,0.353026634382632,0.183928571428607,0.344884987893529,0.183928571428607,0.357899515738548,0.182142857142890,0.349757869249444,0.013075060532668,0.000000000000000,0.003208232445538,-0.003571428571434,-0.003329297820837,0.003571428571434,-0.012953995157370,-0.000000000000000,2 +9566,9624,9626,9684,0.185714285714324,0.366101694915301,0.183928571428607,0.357899515738548,0.183928571428607,0.370914043583569,0.182142857142890,0.362711864406815,0.013075060532670,0.000000000000000,0.003329297820837,-0.003571428571434,-0.003450363196135,0.003571428571434,-0.012953995157372,-0.000000000000000,2 +7703,9567,9625,9685,0.183928571428607,0.383928571428607,0.185714285714324,0.379176755447980,0.183928571428607,0.370914043583569,0.182142857142890,0.375665859564196,-0.003571428571434,0.003571428571434,0.013075060532688,-0.000000000000000,0.003450363196135,-0.003571428571434,-0.012953995157389,0.000000000000000,2 +9186,9568,9628,9686,0.180357142857179,-0.380357142857179,0.182142857142890,-0.375665859564191,0.180357142857179,-0.367463680387433,0.178571428571468,-0.372154963680422,-0.003571428571422,-0.003571428571422,0.012953995157400,0.000000000000000,0.003450363196115,0.003571428571422,-0.012832929782093,-0.000000000000000,2 +9569,9627,9629,9687,0.182142857142890,-0.362711864406788,0.180357142857179,-0.367463680387433,0.180357142857179,-0.354570217917681,0.178571428571468,-0.359322033898326,0.012953995157406,0.000000000000000,-0.003450363196115,-0.003571428571422,0.003329297820808,0.003571428571422,-0.012832929782098,0.000000000000000,2 +9570,9628,9630,9688,0.182142857142890,-0.349757869249388,0.180357142857179,-0.354570217917681,0.180357142857179,-0.341676755447941,0.178571428571468,-0.346489104116233,0.012953995157393,0.000000000000000,-0.003329297820808,-0.003571428571422,0.003208232445503,0.003571428571422,-0.012832929782088,-0.000000000000000,2 +9571,9629,9631,9689,0.182142857142890,-0.336803874091987,0.180357142857179,-0.341676755447941,0.180357142857179,-0.328783292978186,0.178571428571468,-0.333656174334139,0.012953995157410,-0.000000000000000,-0.003208232445503,-0.003571428571422,0.003087167070194,0.003571428571422,-0.012832929782101,-0.000000000000000,2 +9572,9630,9632,9690,0.182142857142890,-0.323849878934587,0.180357142857179,-0.328783292978186,0.180357142857179,-0.315889830508447,0.178571428571468,-0.320823244552046,0.012953995157391,0.000000000000000,-0.003087167070194,-0.003571428571422,0.002966101694889,0.003571428571422,-0.012832929782086,0.000000000000000,2 +9573,9631,9633,9691,0.182142857142890,-0.310895883777187,0.180357142857179,-0.315889830508447,0.180357142857179,-0.302996368038693,0.178571428571468,-0.307990314769953,0.012953995157408,0.000000000000000,-0.002966101694889,-0.003571428571422,0.002845036319580,0.003571428571422,-0.012832929782099,-0.000000000000000,2 +9574,9632,9634,9692,0.182142857142890,-0.297941888619785,0.180357142857179,-0.302996368038693,0.180357142857179,-0.290102905568949,0.178571428571468,-0.295157384987857,0.012953995157398,0.000000000000000,-0.002845036319580,-0.003571428571422,0.002723970944275,0.003571428571422,-0.012832929782092,-0.000000000000000,2 +9575,9633,9635,9693,0.182142857142890,-0.284987893462388,0.180357142857179,-0.290102905568949,0.180357142857179,-0.277209443099207,0.178571428571468,-0.282324455205767,0.012953995157396,0.000000000000000,-0.002723970944275,-0.003571428571422,0.002602905568966,0.003571428571422,-0.012832929782088,-0.000000000000000,2 +9576,9634,9636,9694,0.182142857142890,-0.272033898304989,0.180357142857179,-0.277209443099207,0.180357142857179,-0.264315980629460,0.178571428571468,-0.269491525423677,0.012953995157401,0.000000000000000,-0.002602905568966,-0.003571428571422,0.002481840193658,0.003571428571422,-0.012832929782092,-0.000000000000000,2 +9577,9635,9637,9695,0.182142857142890,-0.259079903147593,0.180357142857179,-0.264315980629460,0.180357142857179,-0.251422518159721,0.178571428571468,-0.256658595641588,0.012953995157392,0.000000000000000,-0.002481840193658,-0.003571428571422,0.002360774818352,0.003571428571422,-0.012832929782086,0.000000000000000,2 +9578,9636,9638,9696,0.182142857142890,-0.246125907990192,0.180357142857179,-0.251422518159721,0.180357142857179,-0.238529055689964,0.178571428571468,-0.243825665859494,0.012953995157411,0.000000000000000,-0.002360774818352,-0.003571428571422,0.002239709443043,0.003571428571422,-0.012832929782103,-0.000000000000000,2 +9579,9637,9639,9697,0.182142857142890,-0.233171912832794,0.180357142857179,-0.238529055689964,0.180357142857179,-0.225635593220233,0.178571428571468,-0.230992736077403,0.012953995157384,0.000000000000000,-0.002239709443043,-0.003571428571422,0.002118644067738,0.003571428571422,-0.012832929782078,0.000000000000000,2 +9580,9638,9640,9698,0.182142857142890,-0.220217917675397,0.180357142857179,-0.225635593220233,0.180357142857179,-0.212742130750478,0.178571428571468,-0.218159806295314,0.012953995157409,0.000000000000000,-0.002118644067738,-0.003571428571422,0.001997578692429,0.003571428571422,-0.012832929782101,-0.000000000000000,2 +9581,9639,9641,9699,0.182142857142890,-0.207263922517998,0.180357142857179,-0.212742130750478,0.180357142857179,-0.199848668280741,0.178571428571468,-0.205326876513222,0.012953995157390,0.000000000000000,-0.001997578692429,-0.003571428571422,0.001876513317123,0.003571428571422,-0.012832929782084,-0.000000000000000,2 +9582,9640,9642,9700,0.182142857142890,-0.194309927360602,0.180357142857179,-0.199848668280741,0.180357142857179,-0.186955205810994,0.178571428571468,-0.192493946731133,0.012953995157401,0.000000000000000,-0.001876513317123,-0.003571428571422,0.001755447941815,0.003571428571422,-0.012832929782093,0.000000000000000,2 +9583,9641,9643,9701,0.182142857142890,-0.181355932203209,0.180357142857179,-0.186955205810994,0.180357142857179,-0.174061743341262,0.178571428571468,-0.179661016949047,0.012953995157386,0.000000000000000,-0.001755447941815,-0.003571428571422,0.001634382566508,0.003571428571422,-0.012832929782079,-0.000000000000000,2 +9584,9642,9644,9702,0.182142857142890,-0.168401937045813,0.180357142857179,-0.174061743341262,0.180357142857179,-0.161168280871510,0.178571428571468,-0.166828087166959,0.012953995157405,0.000000000000000,-0.001634382566508,-0.003571428571422,0.001513317191200,0.003571428571422,-0.012832929782097,-0.000000000000000,2 +9585,9643,9645,9703,0.182142857142890,-0.155447941888413,0.180357142857179,-0.161168280871510,0.180357142857179,-0.148274818401769,0.178571428571468,-0.153995157384867,0.012953995157395,-0.000000000000000,-0.001513317191200,-0.003571428571422,0.001392251815893,0.003571428571422,-0.012832929782088,0.000000000000000,2 +9586,9644,9646,9704,0.182142857142890,-0.142493946731015,0.180357142857179,-0.148274818401769,0.180357142857179,-0.135381355932022,0.178571428571468,-0.141162227602776,0.012953995157400,0.000000000000000,-0.001392251815893,-0.003571428571422,0.001271186440586,0.003571428571422,-0.012832929782093,-0.000000000000000,2 +9587,9645,9647,9705,0.182142857142890,-0.129539951573613,0.180357142857179,-0.135381355932022,0.180357142857179,-0.122487893462272,0.178571428571468,-0.128329297820681,0.012953995157404,0.000000000000000,-0.001271186440586,-0.003571428571422,0.001150121065278,0.003571428571422,-0.012832929782096,-0.000000000000000,2 +9588,9646,9648,9706,0.182142857142890,-0.116585956416218,0.180357142857179,-0.122487893462272,0.180357142857179,-0.109594430992538,0.178571428571468,-0.115496368038593,0.012953995157387,0.000000000000000,-0.001150121065278,-0.003571428571422,0.001029055689972,0.003571428571422,-0.012832929782081,-0.000000000000000,2 +9589,9647,9649,9707,0.182142857142890,-0.103631961258822,0.180357142857179,-0.109594430992538,0.180357142857179,-0.096700968522788,0.178571428571468,-0.102663438256505,0.012953995157405,0.000000000000000,-0.001029055689972,-0.003571428571422,0.000907990314663,0.003571428571422,-0.012832929782096,-0.000000000000000,2 +9590,9648,9650,9708,0.182142857142890,-0.090677966101423,0.180357142857179,-0.096700968522788,0.180357142857179,-0.083807506053047,0.178571428571468,-0.089830508474413,0.012953995157394,0.000000000000000,-0.000907990314663,-0.003571428571422,0.000786924939356,0.003571428571422,-0.012832929782087,0.000000000000000,2 +9591,9649,9651,9709,0.182142857142890,-0.077723970944025,0.180357142857179,-0.083807506053047,0.180357142857179,-0.070914043583300,0.178571428571468,-0.076997578692323,0.012953995157401,0.000000000000000,-0.000786924939356,-0.003571428571422,0.000665859564048,0.003571428571422,-0.012832929782093,-0.000000000000000,2 +9592,9650,9652,9710,0.182142857142890,-0.064769975786627,0.180357142857179,-0.070914043583300,0.180357142857179,-0.058020581113559,0.178571428571468,-0.064164648910232,0.012953995157394,0.000000000000000,-0.000665859564048,-0.003571428571422,0.000544794188741,0.003571428571422,-0.012832929782087,-0.000000000000000,2 +9593,9651,9653,9711,0.182142857142890,-0.051815980629231,0.180357142857179,-0.058020581113559,0.180357142857179,-0.045127118643816,0.178571428571468,-0.051331719128144,0.012953995157397,0.000000000000000,-0.000544794188741,-0.003571428571422,0.000423728813433,0.003571428571422,-0.012832929782090,-0.000000000000000,2 +9594,9652,9654,9712,0.182142857142890,-0.038861985471833,0.180357142857179,-0.045127118643816,0.180357142857179,-0.032233656174071,0.178571428571468,-0.038498789346053,0.012953995157399,0.000000000000000,-0.000423728813433,-0.003571428571422,0.000302663438126,0.003571428571422,-0.012832929782091,0.000000000000000,2 +9595,9653,9655,9713,0.182142857142890,-0.025907990314437,0.180357142857179,-0.032233656174071,0.180357142857179,-0.019340193704330,0.178571428571468,-0.025665859563964,0.012953995157394,0.000000000000000,-0.000302663438126,-0.003571428571422,0.000181598062819,0.003571428571422,-0.012832929782087,-0.000000000000000,2 +9596,9654,9656,9714,0.182142857142890,-0.012953995157039,0.180357142857179,-0.019340193704330,0.180357142857179,-0.006446731234583,0.178571428571468,-0.012832929781874,0.012953995157401,0.000000000000000,-0.000181598062819,-0.003571428571422,0.000060532687511,0.003571428571422,-0.012832929782093,0.000000000000000,2 +9597,9655,9657,9715,0.182142857142890,0.000000000000356,0.180357142857179,-0.006446731234583,0.180357142857179,0.006446731235155,0.178571428571468,0.000000000000216,0.012953995157388,0.000000000000000,-0.000060532687511,-0.003571428571422,-0.000060532687791,0.003571428571422,-0.012832929782087,-0.000000000000000,2 +9598,9656,9658,9716,0.182142857142890,0.012953995157735,0.180357142857179,0.006446731235155,0.180357142857179,0.019340193704876,0.178571428571468,0.012832929782296,0.012953995157370,0.000000000000000,0.000060532687791,-0.003571428571422,-0.000181598063089,0.003571428571422,-0.012832929782072,0.000000000000000,2 +9599,9657,9659,9717,0.182142857142890,0.025907990315108,0.180357142857179,0.019340193704876,0.180357142857179,0.032233656174602,0.178571428571468,0.025665859564370,0.012953995157374,0.000000000000000,0.000181598063089,-0.003571428571422,-0.000302663438386,0.003571428571422,-0.012832929782077,-0.000000000000000,2 +9600,9658,9660,9718,0.182142857142890,0.038861985472481,0.180357142857179,0.032233656174602,0.180357142857179,0.045127118644325,0.178571428571468,0.038498789346446,0.012953995157372,0.000000000000000,0.000302663438386,-0.003571428571422,-0.000423728813683,0.003571428571422,-0.012832929782074,-0.000000000000000,2 +9601,9659,9661,9719,0.182142857142890,0.051815980629853,0.180357142857179,0.045127118644325,0.180357142857179,0.058020581114049,0.178571428571468,0.051331719128521,0.012953995157373,0.000000000000000,0.000423728813683,-0.003571428571422,-0.000544794188981,0.003571428571422,-0.012832929782075,0.000000000000000,2 +9602,9660,9662,9720,0.182142857142890,0.064769975787226,0.180357142857179,0.058020581114049,0.180357142857179,0.070914043583775,0.178571428571468,0.064164648910597,0.012953995157374,0.000000000000000,0.000544794188981,-0.003571428571422,-0.000665859564278,0.003571428571422,-0.012832929782077,-0.000000000000000,2 +9603,9661,9663,9721,0.182142857142890,0.077723970944599,0.180357142857179,0.070914043583775,0.180357142857179,0.083807506053496,0.178571428571468,0.076997578692672,0.012953995157370,0.000000000000000,0.000665859564278,-0.003571428571422,-0.000786924939576,0.003571428571422,-0.012832929782072,-0.000000000000000,2 +9604,9662,9664,9722,0.182142857142890,0.090677966101967,0.180357142857179,0.083807506053496,0.180357142857179,0.096700968523213,0.178571428571468,0.089830508474743,0.012953995157365,0.000000000000000,0.000786924939576,-0.003571428571422,-0.000907990314872,0.003571428571422,-0.012832929782069,0.000000000000000,2 +9605,9663,9665,9723,0.182142857142890,0.103631961259334,0.180357142857179,0.096700968523213,0.180357142857179,0.109594430992934,0.178571428571468,0.102663438256814,0.012953995157369,0.000000000000000,0.000907990314872,-0.003571428571422,-0.001029055690168,0.003571428571422,-0.012832929782073,-0.000000000000000,2 +9606,9664,9666,9724,0.182142857142890,0.116585956416703,0.180357142857179,0.109594430992934,0.180357142857179,0.122487893462656,0.178571428571468,0.115496368038886,0.012953995157370,0.000000000000000,0.001029055690168,-0.003571428571422,-0.001150121065466,0.003571428571422,-0.012832929782072,-0.000000000000000,2 +9607,9665,9667,9725,0.182142857142890,0.129539951574076,0.180357142857179,0.122487893462656,0.180357142857179,0.135381355932381,0.178571428571468,0.128329297820961,0.012953995157374,0.000000000000000,0.001150121065466,-0.003571428571422,-0.001271186440763,0.003571428571422,-0.012832929782077,0.000000000000000,2 +9608,9666,9668,9726,0.182142857142890,0.142493946731448,0.180357142857179,0.135381355932381,0.180357142857179,0.148274818402103,0.178571428571468,0.141162227603036,0.012953995157371,0.000000000000000,0.001271186440763,-0.003571428571422,-0.001392251816061,0.003571428571422,-0.012832929782073,-0.000000000000000,2 +9609,9667,9669,9727,0.182142857142890,0.155447941888820,0.180357142857179,0.148274818402103,0.180357142857179,0.161168280871828,0.178571428571468,0.153995157385111,0.012953995157374,0.000000000000000,0.001392251816061,-0.003571428571422,-0.001513317191358,0.003571428571422,-0.012832929782076,0.000000000000000,2 +9610,9668,9670,9728,0.182142857142890,0.168401937046190,0.180357142857179,0.161168280871828,0.180357142857179,0.174061743341544,0.178571428571468,0.166828087167182,0.012953995157366,0.000000000000000,0.001513317191358,-0.003571428571422,-0.001634382566657,0.003571428571422,-0.012832929782067,-0.000000000000000,2 +9611,9669,9671,9729,0.182142857142890,0.181355932203558,0.180357142857179,0.174061743341544,0.180357142857179,0.186955205811265,0.178571428571468,0.179661016949252,0.012953995157370,0.000000000000000,0.001634382566657,-0.003571428571422,-0.001755447941955,0.003571428571422,-0.012832929782071,-0.000000000000000,2 +9612,9670,9672,9730,0.182142857142890,0.194309927360931,0.180357142857179,0.186955205811265,0.180357142857179,0.199848668280994,0.178571428571468,0.192493946731328,0.012953995157378,0.000000000000000,0.001755447941955,-0.003571428571422,-0.001876513317251,0.003571428571422,-0.012832929782081,0.000000000000000,2 +9613,9671,9673,9731,0.182142857142890,0.207263922518303,0.180357142857179,0.199848668280994,0.180357142857179,0.212742130750711,0.178571428571468,0.205326876513402,0.012953995157366,0.000000000000000,0.001876513317251,-0.003571428571422,-0.001997578692550,0.003571428571422,-0.012832929782067,-0.000000000000000,2 +9614,9672,9674,9732,0.182142857142890,0.220217917675676,0.180357142857179,0.212742130750711,0.180357142857179,0.225635593220444,0.178571428571468,0.218159806295478,0.012953995157381,0.000000000000000,0.001997578692550,-0.003571428571422,-0.002118644067846,0.003571428571422,-0.012832929782085,-0.000000000000000,2 +9615,9673,9675,9733,0.182142857142890,0.233171912833050,0.180357142857179,0.225635593220444,0.180357142857179,0.238529055690161,0.178571428571468,0.230992736077554,0.012953995157366,0.000000000000000,0.002118644067846,-0.003571428571422,-0.002239709443145,0.003571428571422,-0.012832929782067,-0.000000000000000,2 +9616,9674,9676,9734,0.182142857142890,0.246125907990421,0.180357142857179,0.238529055690161,0.180357142857179,0.251422518159888,0.178571428571468,0.243825665859628,0.012953995157376,0.000000000000000,0.002239709443145,-0.003571428571422,-0.002360774818441,0.003571428571422,-0.012832929782079,0.000000000000000,2 +9617,9675,9677,9735,0.182142857142890,0.259079903147794,0.180357142857179,0.251422518159888,0.180357142857179,0.264315980629610,0.178571428571468,0.256658595641704,0.012953995157371,0.000000000000000,0.002360774818441,-0.003571428571422,-0.002481840193739,0.003571428571422,-0.012832929782073,-0.000000000000000,2 +9618,9676,9678,9736,0.182142857142890,0.272033898305165,0.180357142857179,0.264315980629610,0.180357142857179,0.277209443099332,0.178571428571468,0.269491525423777,0.012953995157371,0.000000000000000,0.002481840193739,-0.003571428571422,-0.002602905569037,0.003571428571422,-0.012832929782073,-0.000000000000000,2 +9619,9677,9679,9737,0.182142857142890,0.284987893462545,0.180357142857179,0.277209443099332,0.180357142857179,0.290102905569072,0.178571428571468,0.282324455205859,0.012953995157389,0.000000000000000,0.002602905569037,-0.003571428571422,-0.002723970944335,0.003571428571422,-0.012832929782091,0.000000000000000,2 +9620,9678,9680,9738,0.182142857142890,0.297941888619927,0.180357142857179,0.290102905569072,0.180357142857179,0.302996368038796,0.178571428571468,0.295157384987942,0.012953995157374,0.000000000000000,0.002723970944335,-0.003571428571422,-0.002845036319635,0.003571428571422,-0.012832929782074,-0.000000000000000,2 +9621,9679,9681,9739,0.182142857142890,0.310895883777312,0.180357142857179,0.302996368038796,0.180357142857179,0.315889830508544,0.178571428571468,0.307990314770029,0.012953995157396,0.000000000000000,0.002845036319635,-0.003571428571422,-0.002966101694932,0.003571428571422,-0.012832929782099,0.000000000000000,2 +9622,9680,9682,9740,0.182142857142890,0.323849878934696,0.180357142857179,0.315889830508544,0.180357142857179,0.328783292978266,0.178571428571468,0.320823244552114,0.012953995157372,0.000000000000000,0.002966101694932,-0.003571428571422,-0.003087167070232,0.003571428571422,-0.012832929782072,-0.000000000000000,2 +9623,9681,9683,9741,0.182142857142890,0.336803874092071,0.180357142857179,0.328783292978266,0.180357142857179,0.341676755447995,0.178571428571468,0.333656174334191,0.012953995157377,0.000000000000000,0.003087167070232,-0.003571428571422,-0.003208232445528,0.003571428571422,-0.012832929782081,-0.000000000000000,2 +9624,9682,9684,9742,0.182142857142890,0.349757869249444,0.180357142857179,0.341676755447995,0.180357142857179,0.354570217917716,0.178571428571468,0.346489104116267,0.012953995157370,0.000000000000000,0.003208232445528,-0.003571428571422,-0.003329297820826,0.003571428571422,-0.012832929782072,-0.000000000000000,2 +9625,9683,9685,9743,0.182142857142890,0.362711864406815,0.180357142857179,0.354570217917716,0.180357142857179,0.367463680387440,0.178571428571468,0.359322033898341,0.012953995157372,0.000000000000000,0.003329297820826,-0.003571428571422,-0.003450363196123,0.003571428571422,-0.012832929782075,0.000000000000000,2 +7702,9626,9684,9744,0.180357142857179,0.380357142857179,0.182142857142890,0.375665859564196,0.180357142857179,0.367463680387440,0.178571428571468,0.372154963680423,-0.003571428571422,0.003571428571422,0.012953995157389,-0.000000000000000,0.003450363196123,-0.003571428571422,-0.012832929782090,-0.000000000000000,2 +9157,9627,9687,9745,0.176785714285765,-0.376785714285765,0.178571428571468,-0.372154963680422,0.176785714285765,-0.364013317191325,0.175000000000062,-0.368644067796669,-0.003571428571406,-0.003571428571406,0.012832929782093,0.000000000000000,0.003450363196100,0.003571428571406,-0.012711864406787,0.000000000000000,2 +9628,9686,9688,9746,0.178571428571468,-0.359322033898326,0.176785714285765,-0.364013317191325,0.176785714285765,-0.351240920096881,0.175000000000062,-0.355932203389880,0.012832929782098,-0.000000000000000,-0.003450363196100,-0.003571428571406,0.003329297820793,0.003571428571406,-0.012711864406791,-0.000000000000000,2 +9629,9687,9689,9747,0.178571428571468,-0.346489104116233,0.176785714285765,-0.351240920096881,0.176785714285765,-0.338468523002445,0.175000000000062,-0.343220338983093,0.012832929782088,0.000000000000000,-0.003329297820793,-0.003571428571406,0.003208232445488,0.003571428571406,-0.012711864406783,-0.000000000000000,2 +9630,9688,9690,9748,0.178571428571468,-0.333656174334139,0.176785714285765,-0.338468523002445,0.176785714285765,-0.325696125907999,0.175000000000062,-0.330508474576305,0.012832929782101,0.000000000000000,-0.003208232445488,-0.003571428571406,0.003087167070180,0.003571428571406,-0.012711864406792,-0.000000000000000,2 +9631,9689,9691,9749,0.178571428571468,-0.320823244552046,0.176785714285765,-0.325696125907999,0.176785714285765,-0.312923728813565,0.175000000000062,-0.317796610169518,0.012832929782086,-0.000000000000000,-0.003087167070180,-0.003571428571406,0.002966101694876,0.003571428571406,-0.012711864406782,0.000000000000000,2 +9632,9690,9692,9750,0.178571428571468,-0.307990314769953,0.176785714285765,-0.312923728813565,0.176785714285765,-0.300151331719119,0.175000000000062,-0.305084745762731,0.012832929782099,0.000000000000000,-0.002966101694876,-0.003571428571406,0.002845036319568,0.003571428571406,-0.012711864406791,-0.000000000000000,2 +9633,9691,9693,9751,0.178571428571468,-0.295157384987857,0.176785714285765,-0.300151331719119,0.176785714285765,-0.287378934624680,0.175000000000062,-0.292372881355942,0.012832929782092,0.000000000000000,-0.002845036319568,-0.003571428571406,0.002723970944262,0.003571428571406,-0.012711864406786,-0.000000000000000,2 +9634,9692,9694,9752,0.178571428571468,-0.282324455205767,0.176785714285765,-0.287378934624680,0.176785714285765,-0.274606537530246,0.175000000000062,-0.279661016949159,0.012832929782088,0.000000000000000,-0.002723970944262,-0.003571428571406,0.002602905568955,0.003571428571406,-0.012711864406781,-0.000000000000000,2 +9635,9693,9695,9753,0.178571428571468,-0.269491525423677,0.176785714285765,-0.274606537530246,0.176785714285765,-0.261834140435808,0.175000000000062,-0.266949152542376,0.012832929782092,0.000000000000000,-0.002602905568955,-0.003571428571406,0.002481840193647,0.003571428571406,-0.012711864406785,-0.000000000000000,2 +9636,9694,9696,9754,0.178571428571468,-0.256658595641588,0.176785714285765,-0.261834140435808,0.176785714285765,-0.249061743341374,0.175000000000062,-0.254237288135594,0.012832929782086,-0.000000000000000,-0.002481840193647,-0.003571428571406,0.002360774818341,0.003571428571406,-0.012711864406780,0.000000000000000,2 +9637,9695,9697,9755,0.178571428571468,-0.243825665859494,0.176785714285765,-0.249061743341374,0.176785714285765,-0.236289346246926,0.175000000000062,-0.241525423728806,0.012832929782103,0.000000000000000,-0.002360774818341,-0.003571428571406,0.002239709443033,0.003571428571406,-0.012711864406795,-0.000000000000000,2 +9638,9696,9698,9756,0.178571428571468,-0.230992736077403,0.176785714285765,-0.236289346246926,0.176785714285765,-0.223516949152500,0.175000000000062,-0.228813559322022,0.012832929782078,-0.000000000000000,-0.002239709443033,-0.003571428571406,0.002118644067729,0.003571428571406,-0.012711864406774,-0.000000000000000,2 +9639,9697,9699,9757,0.178571428571468,-0.218159806295314,0.176785714285765,-0.223516949152500,0.176785714285765,-0.210744552058053,0.175000000000062,-0.216101694915239,0.012832929782101,0.000000000000000,-0.002118644067729,-0.003571428571406,0.001997578692420,0.003571428571406,-0.012711864406792,0.000000000000000,2 +9640,9698,9700,9758,0.178571428571468,-0.205326876513222,0.176785714285765,-0.210744552058053,0.176785714285765,-0.197972154963623,0.175000000000062,-0.203389830508454,0.012832929782084,0.000000000000000,-0.001997578692420,-0.003571428571406,0.001876513317114,0.003571428571406,-0.012711864406777,-0.000000000000000,2 +9641,9699,9701,9759,0.178571428571468,-0.192493946731133,0.176785714285765,-0.197972154963623,0.176785714285765,-0.185199757869184,0.175000000000062,-0.190677966101673,0.012832929782093,-0.000000000000000,-0.001876513317114,-0.003571428571406,0.001755447941807,0.003571428571406,-0.012711864406786,-0.000000000000000,2 +9642,9700,9702,9760,0.178571428571468,-0.179661016949047,0.176785714285765,-0.185199757869184,0.176785714285765,-0.172427360774757,0.175000000000062,-0.177966101694893,0.012832929782079,0.000000000000000,-0.001755447941807,-0.003571428571406,0.001634382566501,0.003571428571406,-0.012711864406774,-0.000000000000000,2 +9643,9701,9703,9761,0.178571428571468,-0.166828087166959,0.176785714285765,-0.172427360774757,0.176785714285765,-0.159654963680314,0.175000000000062,-0.165254237288112,0.012832929782097,0.000000000000000,-0.001634382566501,-0.003571428571406,0.001513317191193,0.003571428571406,-0.012711864406789,-0.000000000000000,2 +9644,9702,9704,9762,0.178571428571468,-0.153995157384867,0.176785714285765,-0.159654963680314,0.176785714285765,-0.146882566585879,0.175000000000062,-0.152542372881327,0.012832929782088,-0.000000000000000,-0.001513317191193,-0.003571428571406,0.001392251815887,0.003571428571406,-0.012711864406781,-0.000000000000000,2 +9645,9703,9705,9763,0.178571428571468,-0.141162227602776,0.176785714285765,-0.146882566585879,0.176785714285765,-0.134110169491439,0.175000000000062,-0.139830508474542,0.012832929782093,0.000000000000000,-0.001392251815887,-0.003571428571406,0.001271186440581,0.003571428571406,-0.012711864406787,-0.000000000000000,2 +9646,9704,9706,9764,0.178571428571468,-0.128329297820681,0.176785714285765,-0.134110169491439,0.176785714285765,-0.121337772396997,0.175000000000062,-0.127118644067755,0.012832929782096,0.000000000000000,-0.001271186440581,-0.003571428571406,0.001150121065273,0.003571428571406,-0.012711864406788,-0.000000000000000,2 +9647,9705,9707,9765,0.178571428571468,-0.115496368038593,0.176785714285765,-0.121337772396997,0.176785714285765,-0.108565375302569,0.175000000000062,-0.114406779660973,0.012832929782081,0.000000000000000,-0.001150121065273,-0.003571428571406,0.001029055689967,0.003571428571406,-0.012711864406775,-0.000000000000000,2 +9648,9706,9708,9766,0.178571428571468,-0.102663438256505,0.176785714285765,-0.108565375302569,0.176785714285765,-0.095792978208127,0.175000000000062,-0.101694915254191,0.012832929782096,0.000000000000000,-0.001029055689967,-0.003571428571406,0.000907990314659,0.003571428571406,-0.012711864406788,-0.000000000000000,2 +9649,9707,9709,9767,0.178571428571468,-0.089830508474413,0.176785714285765,-0.095792978208127,0.176785714285765,-0.083020581113693,0.175000000000062,-0.088983050847407,0.012832929782087,-0.000000000000000,-0.000907990314659,-0.003571428571406,0.000786924939353,0.003571428571406,-0.012711864406781,-0.000000000000000,2 +9650,9708,9710,9768,0.178571428571468,-0.076997578692323,0.176785714285765,-0.083020581113693,0.176785714285765,-0.070248184019253,0.175000000000062,-0.076271186440624,0.012832929782093,0.000000000000000,-0.000786924939353,-0.003571428571406,0.000665859564045,0.003571428571406,-0.012711864406786,-0.000000000000000,2 +9651,9709,9711,9769,0.178571428571468,-0.064164648910232,0.176785714285765,-0.070248184019253,0.176785714285765,-0.057475786924819,0.175000000000062,-0.063559322033840,0.012832929782087,0.000000000000000,-0.000665859564045,-0.003571428571406,0.000544794188739,0.003571428571406,-0.012711864406781,-0.000000000000000,2 +9652,9710,9712,9770,0.178571428571468,-0.051331719128144,0.176785714285765,-0.057475786924819,0.176785714285765,-0.044703389830383,0.175000000000062,-0.050847457627059,0.012832929782090,0.000000000000000,-0.000544794188739,-0.003571428571406,0.000423728813432,0.003571428571406,-0.012711864406783,-0.000000000000000,2 +9653,9711,9713,9771,0.178571428571468,-0.038498789346053,0.176785714285765,-0.044703389830383,0.176785714285765,-0.031930992735946,0.175000000000062,-0.038135593220276,0.012832929782091,-0.000000000000000,-0.000423728813432,-0.003571428571406,0.000302663438124,0.003571428571406,-0.012711864406784,-0.000000000000000,2 +9654,9712,9714,9772,0.178571428571468,-0.025665859563964,0.176785714285765,-0.031930992735946,0.176785714285765,-0.019158595641512,0.175000000000062,-0.025423728813493,0.012832929782087,0.000000000000000,-0.000302663438124,-0.003571428571406,0.000181598062818,0.003571428571406,-0.012711864406781,-0.000000000000000,2 +9655,9713,9715,9773,0.178571428571468,-0.012832929781874,0.176785714285765,-0.019158595641512,0.176785714285765,-0.006386198547072,0.175000000000062,-0.012711864406710,0.012832929782093,-0.000000000000000,-0.000181598062818,-0.003571428571406,0.000060532687510,0.003571428571406,-0.012711864406786,0.000000000000000,2 +9656,9714,9716,9774,0.178571428571468,0.000000000000216,0.176785714285765,-0.006386198547072,0.176785714285765,0.006386198547364,0.175000000000062,0.000000000000076,0.012832929782087,0.000000000000000,-0.000060532687510,-0.003571428571406,-0.000060532687790,0.003571428571406,-0.012711864406786,-0.000000000000000,2 +9657,9715,9717,9775,0.178571428571468,0.012832929782296,0.176785714285765,0.006386198547364,0.176785714285765,0.019158595641788,0.175000000000062,0.012711864406857,0.012832929782072,-0.000000000000000,0.000060532687790,-0.003571428571406,-0.000181598063088,0.003571428571406,-0.012711864406775,-0.000000000000000,2 +9658,9716,9718,9776,0.178571428571468,0.025665859564370,0.176785714285765,0.019158595641788,0.176785714285765,0.031930992736217,0.175000000000062,0.025423728813634,0.012832929782077,0.000000000000000,0.000181598063088,-0.003571428571406,-0.000302663438384,0.003571428571406,-0.012711864406781,-0.000000000000000,2 +9659,9717,9719,9777,0.178571428571468,0.038498789346446,0.176785714285765,0.031930992736217,0.176785714285765,0.044703389830643,0.175000000000062,0.038135593220413,0.012832929782074,0.000000000000000,0.000302663438384,-0.003571428571406,-0.000423728813681,0.003571428571406,-0.012711864406777,-0.000000000000000,2 +9660,9718,9720,9778,0.178571428571468,0.051331719128521,0.176785714285765,0.044703389830643,0.176785714285765,0.057475786925070,0.175000000000062,0.050847457627191,0.012832929782075,-0.000000000000000,0.000423728813681,-0.003571428571406,-0.000544794188978,0.003571428571406,-0.012711864406778,-0.000000000000000,2 +9661,9719,9721,9779,0.178571428571468,0.064164648910597,0.176785714285765,0.057475786925070,0.176785714285765,0.070248184019498,0.175000000000062,0.063559322033971,0.012832929782077,0.000000000000000,0.000544794188978,-0.003571428571406,-0.000665859564275,0.003571428571406,-0.012711864406781,-0.000000000000000,2 +9662,9720,9722,9780,0.178571428571468,0.076997578692672,0.176785714285765,0.070248184019498,0.176785714285765,0.083020581113922,0.175000000000062,0.076271186440749,0.012832929782072,0.000000000000000,0.000665859564275,-0.003571428571406,-0.000786924939572,0.003571428571406,-0.012711864406775,-0.000000000000000,2 +9663,9721,9723,9781,0.178571428571468,0.089830508474743,0.176785714285765,0.083020581113922,0.176785714285765,0.095792978208344,0.175000000000062,0.088983050847523,0.012832929782069,-0.000000000000000,0.000786924939572,-0.003571428571406,-0.000907990314868,0.003571428571406,-0.012711864406774,-0.000000000000000,2 +9664,9722,9724,9782,0.178571428571468,0.102663438256814,0.176785714285765,0.095792978208344,0.176785714285765,0.108565375302768,0.175000000000062,0.101694915254298,0.012832929782073,0.000000000000000,0.000907990314868,-0.003571428571406,-0.001029055690164,0.003571428571406,-0.012711864406777,-0.000000000000000,2 +9665,9723,9725,9783,0.178571428571468,0.115496368038886,0.176785714285765,0.108565375302768,0.176785714285765,0.121337772397192,0.175000000000062,0.114406779661074,0.012832929782072,0.000000000000000,0.001029055690164,-0.003571428571406,-0.001150121065461,0.003571428571406,-0.012711864406775,-0.000000000000000,2 +9666,9724,9726,9784,0.178571428571468,0.128329297820961,0.176785714285765,0.121337772397192,0.176785714285765,0.134110169491621,0.175000000000062,0.127118644067852,0.012832929782077,-0.000000000000000,0.001150121065461,-0.003571428571406,-0.001271186440758,0.003571428571406,-0.012711864406781,-0.000000000000000,2 +9667,9725,9727,9785,0.178571428571468,0.141162227603036,0.176785714285765,0.134110169491621,0.176785714285765,0.146882566586045,0.175000000000062,0.139830508474630,0.012832929782073,0.000000000000000,0.001271186440758,-0.003571428571406,-0.001392251816055,0.003571428571406,-0.012711864406775,-0.000000000000000,2 +9668,9726,9728,9786,0.178571428571468,0.153995157385111,0.176785714285765,0.146882566586045,0.176785714285765,0.159654963680473,0.175000000000062,0.152542372881407,0.012832929782076,-0.000000000000000,0.001392251816055,-0.003571428571406,-0.001513317191352,0.003571428571406,-0.012711864406780,-0.000000000000000,2 +9669,9727,9729,9787,0.178571428571468,0.166828087167182,0.176785714285765,0.159654963680473,0.176785714285765,0.172427360774891,0.175000000000062,0.165254237288182,0.012832929782067,0.000000000000000,0.001513317191352,-0.003571428571406,-0.001634382566650,0.003571428571406,-0.012711864406769,-0.000000000000000,2 +9670,9728,9730,9788,0.178571428571468,0.179661016949252,0.176785714285765,0.172427360774891,0.176785714285765,0.185199757869314,0.175000000000062,0.177966101694953,0.012832929782071,0.000000000000000,0.001634382566650,-0.003571428571406,-0.001755447941947,0.003571428571406,-0.012711864406774,-0.000000000000000,2 +9671,9729,9731,9789,0.178571428571468,0.192493946731328,0.176785714285765,0.185199757869314,0.176785714285765,0.197972154963747,0.175000000000062,0.190677966101733,0.012832929782081,-0.000000000000000,0.001755447941947,-0.003571428571406,-0.001876513317243,0.003571428571406,-0.012711864406786,-0.000000000000000,2 +9672,9730,9732,9790,0.178571428571468,0.205326876513402,0.176785714285765,0.197972154963747,0.176785714285765,0.210744552058165,0.175000000000062,0.203389830508510,0.012832929782067,0.000000000000000,0.001876513317243,-0.003571428571406,-0.001997578692541,0.003571428571406,-0.012711864406769,-0.000000000000000,2 +9673,9731,9733,9791,0.178571428571468,0.218159806295478,0.176785714285765,0.210744552058165,0.176785714285765,0.223516949152603,0.175000000000062,0.216101694915289,0.012832929782085,0.000000000000000,0.001997578692541,-0.003571428571406,-0.002118644067836,0.003571428571406,-0.012711864406790,-0.000000000000000,2 +9674,9732,9734,9792,0.178571428571468,0.230992736077554,0.176785714285765,0.223516949152603,0.176785714285765,0.236289346247021,0.175000000000062,0.228813559322069,0.012832929782067,0.000000000000000,0.002118644067836,-0.003571428571406,-0.002239709443135,0.003571428571406,-0.012711864406769,-0.000000000000000,2 +9675,9733,9735,9793,0.178571428571468,0.243825665859628,0.176785714285765,0.236289346247021,0.176785714285765,0.249061743341452,0.175000000000062,0.241525423728845,0.012832929782079,-0.000000000000000,0.002239709443135,-0.003571428571406,-0.002360774818431,0.003571428571406,-0.012711864406783,-0.000000000000000,2 +9676,9734,9736,9794,0.178571428571468,0.256658595641704,0.176785714285765,0.249061743341452,0.176785714285765,0.261834140435877,0.175000000000062,0.254237288135625,0.012832929782073,0.000000000000000,0.002360774818431,-0.003571428571406,-0.002481840193728,0.003571428571406,-0.012711864406776,-0.000000000000000,2 +9677,9735,9737,9795,0.178571428571468,0.269491525423777,0.176785714285765,0.261834140435877,0.176785714285765,0.274606537530301,0.175000000000062,0.266949152542401,0.012832929782073,0.000000000000000,0.002481840193728,-0.003571428571406,-0.002602905569025,0.003571428571406,-0.012711864406776,-0.000000000000000,2 +9678,9736,9738,9796,0.178571428571468,0.282324455205859,0.176785714285765,0.274606537530301,0.176785714285765,0.287378934624743,0.175000000000062,0.279661016949185,0.012832929782091,-0.000000000000000,0.002602905569025,-0.003571428571406,-0.002723970944323,0.003571428571406,-0.012711864406793,-0.000000000000000,2 +9679,9737,9739,9797,0.178571428571468,0.295157384987942,0.176785714285765,0.287378934624743,0.176785714285765,0.300151331719168,0.175000000000062,0.292372881355970,0.012832929782074,0.000000000000000,0.002723970944323,-0.003571428571406,-0.002845036319622,0.003571428571406,-0.012711864406775,-0.000000000000000,2 +9680,9738,9740,9798,0.178571428571468,0.307990314770029,0.176785714285765,0.300151331719168,0.176785714285765,0.312923728813619,0.175000000000062,0.305084745762758,0.012832929782099,-0.000000000000000,0.002845036319622,-0.003571428571406,-0.002966101694919,0.003571428571406,-0.012711864406802,-0.000000000000000,2 +9681,9739,9741,9799,0.178571428571468,0.320823244552114,0.176785714285765,0.312923728813619,0.176785714285765,0.325696125908042,0.175000000000062,0.317796610169546,0.012832929782072,0.000000000000000,0.002966101694919,-0.003571428571406,-0.003087167070218,0.003571428571406,-0.012711864406773,-0.000000000000000,2 +9682,9740,9742,9800,0.178571428571468,0.333656174334191,0.176785714285765,0.325696125908042,0.176785714285765,0.338468523002475,0.175000000000062,0.330508474576325,0.012832929782081,0.000000000000000,0.003087167070218,-0.003571428571406,-0.003208232445514,0.003571428571406,-0.012711864406785,-0.000000000000000,2 +9683,9741,9743,9801,0.178571428571468,0.346489104116267,0.176785714285765,0.338468523002475,0.176785714285765,0.351240920096898,0.175000000000062,0.343220338983105,0.012832929782072,0.000000000000000,0.003208232445514,-0.003571428571406,-0.003329297820811,0.003571428571406,-0.012711864406774,-0.000000000000000,2 +9684,9742,9744,9802,0.178571428571468,0.359322033898341,0.176785714285765,0.351240920096898,0.176785714285765,0.364013317191324,0.175000000000062,0.355932203389881,0.012832929782075,-0.000000000000000,0.003329297820811,-0.003571428571406,-0.003450363196108,0.003571428571406,-0.012711864406778,-0.000000000000000,2 +7701,9685,9743,9803,0.176785714285765,0.376785714285765,0.178571428571468,0.372154963680423,0.176785714285765,0.364013317191324,0.175000000000062,0.368644067796666,-0.003571428571406,0.003571428571406,0.012832929782090,0.000000000000000,0.003450363196108,-0.003571428571406,-0.012711864406792,0.000000000000000,2 +9128,9686,9746,9804,0.173214285714348,-0.373214285714348,0.175000000000062,-0.368644067796669,0.173214285714348,-0.360562953995215,0.171428571428634,-0.365133171912894,-0.003571428571428,-0.003571428571428,0.012711864406787,-0.000000000000000,0.003450363196121,0.003571428571428,-0.012590799031480,-0.000000000000000,2 +9687,9745,9747,9805,0.175000000000062,-0.355932203389880,0.173214285714348,-0.360562953995215,0.173214285714348,-0.347911622276078,0.171428571428634,-0.352542372881413,0.012711864406791,0.000000000000000,-0.003450363196121,-0.003571428571428,0.003329297820813,0.003571428571428,-0.012590799031482,-0.000000000000000,2 +9688,9746,9748,9806,0.175000000000062,-0.343220338983093,0.173214285714348,-0.347911622276078,0.173214285714348,-0.335260290556948,0.171428571428634,-0.339951573849933,0.012711864406783,0.000000000000000,-0.003329297820813,-0.003571428571428,0.003208232445507,0.003571428571428,-0.012590799031478,-0.000000000000000,2 +9689,9747,9749,9807,0.175000000000062,-0.330508474576305,0.173214285714348,-0.335260290556948,0.173214285714348,-0.322608958837810,0.171428571428634,-0.327360774818452,0.012711864406792,0.000000000000000,-0.003208232445507,-0.003571428571428,0.003087167070198,0.003571428571428,-0.012590799031483,-0.000000000000000,2 +9690,9748,9750,9808,0.175000000000062,-0.317796610169518,0.173214285714348,-0.322608958837810,0.173214285714348,-0.309957627118680,0.171428571428634,-0.314769975786972,0.012711864406782,-0.000000000000000,-0.003087167070198,-0.003571428571428,0.002966101694894,0.003571428571428,-0.012590799031478,-0.000000000000000,2 +9691,9749,9751,9809,0.175000000000062,-0.305084745762731,0.173214285714348,-0.309957627118680,0.173214285714348,-0.297306295399543,0.171428571428635,-0.302179176755492,0.012711864406791,0.000000000000000,-0.002966101694894,-0.003571428571428,0.002845036319585,0.003571428571428,-0.012590799031483,0.000000000000000,2 +9692,9750,9752,9810,0.175000000000062,-0.292372881355942,0.173214285714348,-0.297306295399543,0.173214285714348,-0.284654963680410,0.171428571428635,-0.289588377724010,0.012711864406786,0.000000000000000,-0.002845036319585,-0.003571428571428,0.002723970944279,0.003571428571428,-0.012590799031480,-0.000000000000000,2 +9693,9751,9753,9811,0.175000000000062,-0.279661016949159,0.173214285714348,-0.284654963680410,0.173214285714348,-0.272003631961283,0.171428571428634,-0.276997578692534,0.012711864406781,0.000000000000000,-0.002723970944279,-0.003571428571428,0.002602905568971,0.003571428571428,-0.012590799031472,-0.000000000000000,2 +9694,9752,9754,9812,0.175000000000062,-0.266949152542376,0.173214285714348,-0.272003631961283,0.173214285714348,-0.259352300242153,0.171428571428634,-0.264406779661060,0.012711864406785,0.000000000000000,-0.002602905568971,-0.003571428571428,0.002481840193662,0.003571428571428,-0.012590799031476,-0.000000000000000,2 +9695,9753,9755,9813,0.175000000000062,-0.254237288135594,0.173214285714348,-0.259352300242153,0.173214285714348,-0.246700968523026,0.171428571428634,-0.251815980629585,0.012711864406780,-0.000000000000000,-0.002481840193662,-0.003571428571428,0.002360774818356,0.003571428571428,-0.012590799031474,-0.000000000000000,2 +9696,9754,9756,9814,0.175000000000062,-0.241525423728806,0.173214285714348,-0.246700968523026,0.173214285714348,-0.234049636803886,0.171428571428634,-0.239225181598105,0.012711864406795,0.000000000000000,-0.002360774818356,-0.003571428571428,0.002239709443047,0.003571428571428,-0.012590799031486,-0.000000000000000,2 +9697,9755,9757,9815,0.175000000000062,-0.228813559322022,0.173214285714348,-0.234049636803886,0.173214285714348,-0.221398305084765,0.171428571428635,-0.226634382566628,0.012711864406774,0.000000000000000,-0.002239709443047,-0.003571428571428,0.002118644067742,0.003571428571428,-0.012590799031468,0.000000000000000,2 +9698,9756,9758,9816,0.175000000000062,-0.216101694915239,0.173214285714348,-0.221398305084765,0.173214285714348,-0.208746973365627,0.171428571428635,-0.214043583535152,0.012711864406792,-0.000000000000000,-0.002118644067742,-0.003571428571428,0.001997578692433,0.003571428571428,-0.012590799031483,-0.000000000000000,2 +9699,9757,9759,9817,0.175000000000062,-0.203389830508454,0.173214285714348,-0.208746973365627,0.173214285714348,-0.196095641646503,0.171428571428634,-0.201452784503675,0.012711864406777,0.000000000000000,-0.001997578692433,-0.003571428571428,0.001876513317126,0.003571428571428,-0.012590799031470,-0.000000000000000,2 +9700,9758,9760,9818,0.175000000000062,-0.190677966101673,0.173214285714348,-0.196095641646503,0.173214285714348,-0.183444309927371,0.171428571428635,-0.188861985472201,0.012711864406786,0.000000000000000,-0.001876513317126,-0.003571428571428,0.001755447941818,0.003571428571428,-0.012590799031478,0.000000000000000,2 +9701,9759,9761,9819,0.175000000000062,-0.177966101694893,0.173214285714348,-0.183444309927371,0.173214285714348,-0.170792978208251,0.171428571428635,-0.176271186440729,0.012711864406774,0.000000000000000,-0.001755447941818,-0.003571428571428,0.001634382566511,0.003571428571428,-0.012590799031467,-0.000000000000000,2 +9702,9760,9762,9820,0.175000000000062,-0.165254237288112,0.173214285714348,-0.170792978208251,0.173214285714348,-0.158141646489116,0.171428571428634,-0.163680387409255,0.012711864406789,0.000000000000000,-0.001634382566511,-0.003571428571428,0.001513317191202,0.003571428571428,-0.012590799031480,-0.000000000000000,2 +9703,9761,9763,9821,0.175000000000062,-0.152542372881327,0.173214285714348,-0.158141646489116,0.173214285714348,-0.145490314769988,0.171428571428634,-0.151089588377778,0.012711864406781,0.000000000000000,-0.001513317191202,-0.003571428571428,0.001392251815895,0.003571428571428,-0.012590799031474,-0.000000000000000,2 +9704,9762,9764,9822,0.175000000000062,-0.139830508474542,0.173214285714348,-0.145490314769988,0.173214285714348,-0.132838983050855,0.171428571428635,-0.138498789346301,0.012711864406787,0.000000000000000,-0.001392251815895,-0.003571428571428,0.001271186440588,0.003571428571428,-0.012590799031480,0.000000000000000,2 +9705,9763,9765,9823,0.175000000000062,-0.127118644067755,0.173214285714348,-0.132838983050855,0.173214285714348,-0.120187651331721,0.171428571428635,-0.125907990314821,0.012711864406788,0.000000000000000,-0.001271186440588,-0.003571428571428,0.001150121065280,0.003571428571428,-0.012590799031480,-0.000000000000000,2 +9706,9764,9766,9824,0.175000000000062,-0.114406779660973,0.173214285714348,-0.120187651331721,0.173214285714348,-0.107536319612599,0.171428571428635,-0.113317191283347,0.012711864406775,0.000000000000000,-0.001150121065280,-0.003571428571428,0.001029055689973,0.003571428571428,-0.012590799031468,0.000000000000000,2 +9707,9765,9767,9825,0.175000000000062,-0.101694915254191,0.173214285714348,-0.107536319612599,0.173214285714348,-0.094884987893465,0.171428571428635,-0.100726392251873,0.012711864406788,0.000000000000000,-0.001029055689973,-0.003571428571428,0.000907990314665,0.003571428571428,-0.012590799031480,-0.000000000000000,2 +9708,9766,9768,9826,0.175000000000062,-0.088983050847407,0.173214285714348,-0.094884987893465,0.173214285714348,-0.082233656174338,0.171428571428635,-0.088135593220396,0.012711864406781,0.000000000000000,-0.000907990314665,-0.003571428571428,0.000786924939357,0.003571428571428,-0.012590799031473,-0.000000000000000,2 +9709,9767,9769,9827,0.175000000000062,-0.076271186440624,0.173214285714348,-0.082233656174338,0.173214285714348,-0.069582324455206,0.171428571428635,-0.075544794188920,0.012711864406786,0.000000000000000,-0.000786924939357,-0.003571428571428,0.000665859564049,0.003571428571428,-0.012590799031478,0.000000000000000,2 +9710,9768,9770,9828,0.175000000000062,-0.063559322033840,0.173214285714348,-0.069582324455206,0.173214285714348,-0.056930992736079,0.171428571428635,-0.062953995157445,0.012711864406781,0.000000000000000,-0.000665859564049,-0.003571428571428,0.000544794188742,0.003571428571428,-0.012590799031473,-0.000000000000000,2 +9711,9769,9771,9829,0.175000000000062,-0.050847457627059,0.173214285714348,-0.056930992736079,0.173214285714348,-0.044279661016950,0.171428571428635,-0.050363196125971,0.012711864406783,0.000000000000000,-0.000544794188742,-0.003571428571428,0.000423728813434,0.003571428571428,-0.012590799031475,-0.000000000000000,2 +9712,9770,9772,9830,0.175000000000062,-0.038135593220276,0.173214285714348,-0.044279661016950,0.173214285714348,-0.031628329297820,0.171428571428634,-0.037772397094495,0.012711864406784,0.000000000000000,-0.000423728813434,-0.003571428571428,0.000302663438126,0.003571428571428,-0.012590799031476,-0.000000000000000,2 +9713,9771,9773,9831,0.175000000000062,-0.025423728813493,0.173214285714348,-0.031628329297820,0.173214285714348,-0.018976997578694,0.171428571428635,-0.025181598063021,0.012711864406781,0.000000000000000,-0.000302663438126,-0.003571428571428,0.000181598062819,0.003571428571428,-0.012590799031473,0.000000000000000,2 +9714,9772,9774,9832,0.175000000000062,-0.012711864406710,0.173214285714348,-0.018976997578694,0.173214285714348,-0.006325665859562,0.171428571428635,-0.012590799031545,0.012711864406786,-0.000000000000000,-0.000181598062819,-0.003571428571428,0.000060532687511,0.003571428571428,-0.012590799031478,-0.000000000000000,2 +9715,9773,9775,9833,0.175000000000062,0.000000000000076,0.173214285714348,-0.006325665859562,0.173214285714348,0.006325665859574,0.171428571428635,-0.000000000000064,0.012711864406786,0.000000000000000,-0.000060532687511,-0.003571428571428,-0.000060532687791,0.003571428571428,-0.012590799031484,0.000000000000000,2 +9716,9774,9776,9834,0.175000000000062,0.012711864406857,0.173214285714348,0.006325665859574,0.173214285714348,0.018976997578700,0.171428571428635,0.012590799031417,0.012711864406775,0.000000000000000,0.000060532687791,-0.003571428571428,-0.000181598063089,0.003571428571428,-0.012590799031477,-0.000000000000000,2 +9717,9775,9777,9835,0.175000000000062,0.025423728813634,0.173214285714348,0.018976997578700,0.173214285714348,0.031628329297832,0.171428571428634,0.025181598062897,0.012711864406781,0.000000000000000,0.000181598063089,-0.003571428571428,-0.000302663438386,0.003571428571428,-0.012590799031483,-0.000000000000000,2 +9718,9776,9778,9836,0.175000000000062,0.038135593220413,0.173214285714348,0.031628329297832,0.173214285714348,0.044279661016960,0.171428571428635,0.037772397094378,0.012711864406777,0.000000000000000,0.000302663438386,-0.003571428571428,-0.000423728813684,0.003571428571428,-0.012590799031480,0.000000000000000,2 +9719,9777,9779,9837,0.175000000000062,0.050847457627191,0.173214285714348,0.044279661016960,0.173214285714348,0.056930992736090,0.171428571428635,0.050363196125859,0.012711864406778,0.000000000000000,0.000423728813684,-0.003571428571428,-0.000544794188982,0.003571428571428,-0.012590799031481,-0.000000000000000,2 +9720,9778,9780,9838,0.175000000000062,0.063559322033971,0.173214285714348,0.056930992736090,0.173214285714348,0.069582324455222,0.171428571428635,0.062953995157341,0.012711864406781,0.000000000000000,0.000544794188982,-0.003571428571428,-0.000665859564279,0.003571428571428,-0.012590799031483,0.000000000000000,2 +9721,9779,9781,9839,0.175000000000062,0.076271186440749,0.173214285714348,0.069582324455222,0.173214285714348,0.082233656174348,0.171428571428635,0.075544794188821,0.012711864406775,0.000000000000000,0.000665859564279,-0.003571428571428,-0.000786924939577,0.003571428571428,-0.012590799031477,-0.000000000000000,2 +9722,9780,9782,9840,0.175000000000062,0.088983050847523,0.173214285714348,0.082233656174348,0.173214285714348,0.094884987893473,0.171428571428635,0.088135593220298,0.012711864406774,0.000000000000000,0.000786924939577,-0.003571428571428,-0.000907990314873,0.003571428571428,-0.012590799031477,-0.000000000000000,2 +9723,9781,9783,9841,0.175000000000062,0.101694915254298,0.173214285714348,0.094884987893473,0.173214285714348,0.107536319612602,0.171428571428635,0.100726392251777,0.012711864406777,0.000000000000000,0.000907990314873,-0.003571428571428,-0.001029055690170,0.003571428571428,-0.012590799031480,0.000000000000000,2 +9724,9782,9784,9842,0.175000000000062,0.114406779661074,0.173214285714348,0.107536319612602,0.173214285714348,0.120187651331728,0.171428571428635,0.113317191283255,0.012711864406775,0.000000000000000,0.001029055690170,-0.003571428571428,-0.001150121065468,0.003571428571428,-0.012590799031477,-0.000000000000000,2 +9725,9783,9785,9843,0.175000000000062,0.127118644067852,0.173214285714348,0.120187651331728,0.173214285714348,0.132838983050860,0.171428571428635,0.125907990314735,0.012711864406781,0.000000000000000,0.001150121065468,-0.003571428571428,-0.001271186440765,0.003571428571428,-0.012590799031483,-0.000000000000000,2 +9726,9784,9786,9844,0.175000000000062,0.139830508474630,0.173214285714348,0.132838983050860,0.173214285714348,0.145490314769986,0.171428571428635,0.138498789346216,0.012711864406775,0.000000000000000,0.001271186440765,-0.003571428571428,-0.001392251816063,0.003571428571428,-0.012590799031477,-0.000000000000000,2 +9727,9785,9787,9845,0.175000000000062,0.152542372881407,0.173214285714348,0.145490314769986,0.173214285714348,0.158141646489117,0.171428571428635,0.151089588377695,0.012711864406780,0.000000000000000,0.001392251816063,-0.003571428571428,-0.001513317191361,0.003571428571428,-0.012590799031482,0.000000000000000,2 +9728,9786,9788,9846,0.175000000000062,0.165254237288182,0.173214285714348,0.158141646489117,0.173214285714348,0.170792978208236,0.171428571428635,0.163680387409172,0.012711864406769,0.000000000000000,0.001513317191361,-0.003571428571428,-0.001634382566660,0.003571428571428,-0.012590799031470,-0.000000000000000,2 +9729,9787,9789,9847,0.175000000000062,0.177966101694953,0.173214285714348,0.170792978208236,0.173214285714348,0.183444309927361,0.171428571428635,0.176271186440644,0.012711864406774,0.000000000000000,0.001634382566660,-0.003571428571428,-0.001755447941958,0.003571428571428,-0.012590799031475,-0.000000000000000,2 +9730,9788,9790,9848,0.175000000000062,0.190677966101733,0.173214285714348,0.183444309927361,0.173214285714348,0.196095641646498,0.171428571428635,0.188861985472126,0.012711864406786,0.000000000000000,0.001755447941958,-0.003571428571428,-0.001876513317254,0.003571428571428,-0.012590799031489,-0.000000000000000,2 +9731,9789,9791,9849,0.175000000000062,0.203389830508510,0.173214285714348,0.196095641646498,0.173214285714348,0.208746973365617,0.171428571428634,0.201452784503606,0.012711864406769,0.000000000000000,0.001876513317254,-0.003571428571428,-0.001997578692554,0.003571428571428,-0.012590799031470,-0.000000000000000,2 +9732,9790,9792,9850,0.175000000000062,0.216101694915289,0.173214285714348,0.208746973365617,0.173214285714348,0.221398305084760,0.171428571428634,0.214043583535088,0.012711864406790,0.000000000000000,0.001997578692554,-0.003571428571428,-0.002118644067849,0.003571428571428,-0.012590799031494,-0.000000000000000,2 +9733,9791,9793,9851,0.175000000000062,0.228813559322069,0.173214285714348,0.221398305084760,0.173214285714348,0.234049636803879,0.171428571428634,0.226634382566570,0.012711864406769,0.000000000000000,0.002118644067849,-0.003571428571428,-0.002239709443148,0.003571428571428,-0.012590799031470,-0.000000000000000,2 +9734,9792,9794,9852,0.175000000000062,0.241525423728845,0.173214285714348,0.234049636803879,0.173214285714348,0.246700968523014,0.171428571428635,0.239225181598048,0.012711864406783,0.000000000000000,0.002239709443148,-0.003571428571428,-0.002360774818445,0.003571428571428,-0.012590799031486,0.000000000000000,2 +9735,9793,9795,9853,0.175000000000062,0.254237288135625,0.173214285714348,0.246700968523014,0.173214285714348,0.259352300242141,0.171428571428635,0.251815980629530,0.012711864406776,0.000000000000000,0.002360774818445,-0.003571428571428,-0.002481840193743,0.003571428571428,-0.012590799031478,-0.000000000000000,2 +9736,9794,9796,9854,0.175000000000062,0.266949152542401,0.173214285714348,0.259352300242141,0.173214285714348,0.272003631961268,0.171428571428635,0.264406779661008,0.012711864406776,0.000000000000000,0.002481840193743,-0.003571428571428,-0.002602905569041,0.003571428571428,-0.012590799031478,-0.000000000000000,2 +9737,9795,9797,9855,0.175000000000062,0.279661016949185,0.173214285714348,0.272003631961268,0.173214285714348,0.284654963680412,0.171428571428635,0.276997578692495,0.012711864406793,0.000000000000000,0.002602905569041,-0.003571428571428,-0.002723970944340,0.003571428571428,-0.012590799031495,-0.000000000000000,2 +9738,9796,9798,9856,0.175000000000062,0.292372881355970,0.173214285714348,0.284654963680412,0.173214285714348,0.297306295399537,0.171428571428634,0.289588377723980,0.012711864406775,0.000000000000000,0.002723970944340,-0.003571428571428,-0.002845036319639,0.003571428571428,-0.012590799031475,-0.000000000000000,2 +9739,9797,9799,9857,0.175000000000062,0.305084745762758,0.173214285714348,0.297306295399537,0.173214285714348,0.309957627118691,0.171428571428634,0.302179176755470,0.012711864406802,0.000000000000000,0.002845036319639,-0.003571428571428,-0.002966101694937,0.003571428571428,-0.012590799031505,-0.000000000000000,2 +9740,9798,9800,9858,0.175000000000062,0.317796610169546,0.173214285714348,0.309957627118691,0.173214285714348,0.322608958837814,0.171428571428635,0.314769975786959,0.012711864406773,0.000000000000000,0.002966101694937,-0.003571428571428,-0.003087167070237,0.003571428571428,-0.012590799031474,0.000000000000000,2 +9741,9799,9801,9859,0.175000000000062,0.330508474576325,0.173214285714348,0.322608958837814,0.173214285714348,0.335260290556951,0.171428571428635,0.327360774818440,0.012711864406785,0.000000000000000,0.003087167070237,-0.003571428571428,-0.003208232445533,0.003571428571428,-0.012590799031488,-0.000000000000000,2 +9742,9800,9802,9860,0.175000000000062,0.343220338983105,0.173214285714348,0.335260290556951,0.173214285714348,0.347911622276076,0.171428571428635,0.339951573849923,0.012711864406774,0.000000000000000,0.003208232445533,-0.003571428571428,-0.003329297820831,0.003571428571428,-0.012590799031476,0.000000000000000,2 +9743,9801,9803,9861,0.175000000000062,0.355932203389881,0.173214285714348,0.347911622276076,0.173214285714348,0.360562953995205,0.171428571428635,0.352542372881401,0.012711864406778,0.000000000000000,0.003329297820831,-0.003571428571428,-0.003450363196129,0.003571428571428,-0.012590799031480,-0.000000000000000,2 +7700,9744,9802,9862,0.173214285714348,0.373214285714348,0.175000000000062,0.368644067796666,0.173214285714348,0.360562953995205,0.171428571428634,0.365133171912888,-0.003571428571428,0.003571428571428,0.012711864406792,-0.000000000000000,0.003450363196129,-0.003571428571428,-0.012590799031494,0.000000000000000,2 +9099,9745,9805,9863,0.169642857142918,-0.369642857142918,0.171428571428634,-0.365133171912894,0.169642857142918,-0.357112590799092,0.167857142857202,-0.361622276029116,-0.003571428571432,-0.003571428571432,0.012590799031480,0.000000000000000,0.003450363196125,0.003571428571432,-0.012469733656173,-0.000000000000000,2 +9746,9804,9806,9864,0.171428571428634,-0.352542372881413,0.169642857142918,-0.357112590799092,0.169642857142919,-0.344582324455264,0.167857142857203,-0.349152542372942,0.012590799031482,0.000000000000000,-0.003450363196125,-0.003571428571432,0.003329297820817,0.003571428571432,-0.012469733656174,0.000000000000000,2 +9747,9805,9807,9865,0.171428571428634,-0.339951573849933,0.169642857142919,-0.344582324455264,0.169642857142918,-0.332052058111438,0.167857142857203,-0.336682808716769,0.012590799031478,0.000000000000000,-0.003329297820817,-0.003571428571432,0.003208232445512,0.003571428571432,-0.012469733656173,-0.000000000000000,2 +9748,9806,9808,9866,0.171428571428634,-0.327360774818452,0.169642857142918,-0.332052058111438,0.169642857142918,-0.319521791767610,0.167857142857202,-0.324213075060595,0.012590799031483,0.000000000000000,-0.003208232445512,-0.003571428571432,0.003087167070202,0.003571428571432,-0.012469733656174,-0.000000000000000,2 +9749,9807,9809,9867,0.171428571428634,-0.314769975786972,0.169642857142918,-0.319521791767610,0.169642857142918,-0.306991525423784,0.167857142857202,-0.311743341404422,0.012590799031478,0.000000000000000,-0.003087167070202,-0.003571428571432,0.002966101694897,0.003571428571432,-0.012469733656173,-0.000000000000000,2 +9750,9808,9810,9868,0.171428571428635,-0.302179176755492,0.169642857142918,-0.306991525423784,0.169642857142919,-0.294461259079956,0.167857142857202,-0.299273607748249,0.012590799031483,-0.000000000000000,-0.002966101694897,-0.003571428571432,0.002845036319588,0.003571428571432,-0.012469733656174,-0.000000000000000,2 +9751,9809,9811,9869,0.171428571428635,-0.289588377724010,0.169642857142919,-0.294461259079956,0.169642857142918,-0.281930992736129,0.167857142857202,-0.286803874092075,0.012590799031480,0.000000000000000,-0.002845036319588,-0.003571428571432,0.002723970944282,0.003571428571432,-0.012469733656173,-0.000000000000000,2 +9752,9810,9812,9870,0.171428571428634,-0.276997578692534,0.169642857142918,-0.281930992736129,0.169642857142918,-0.269400726392311,0.167857142857202,-0.274334140435906,0.012590799031472,0.000000000000000,-0.002723970944282,-0.003571428571432,0.002602905568974,0.003571428571432,-0.012469733656164,-0.000000000000000,2 +9753,9811,9813,9871,0.171428571428634,-0.264406779661060,0.169642857142918,-0.269400726392311,0.169642857142919,-0.256870460048490,0.167857142857203,-0.261864406779741,0.012590799031476,0.000000000000000,-0.002602905568974,-0.003571428571432,0.002481840193665,0.003571428571432,-0.012469733656167,0.000000000000000,2 +9754,9812,9814,9872,0.171428571428634,-0.251815980629585,0.169642857142919,-0.256870460048490,0.169642857142918,-0.244340193704669,0.167857142857203,-0.249394673123573,0.012590799031474,0.000000000000000,-0.002481840193665,-0.003571428571432,0.002360774818359,0.003571428571432,-0.012469733656168,-0.000000000000000,2 +9755,9813,9815,9873,0.171428571428634,-0.239225181598105,0.169642857142918,-0.244340193704669,0.169642857142918,-0.231809927360837,0.167857142857202,-0.236924939467401,0.012590799031486,0.000000000000000,-0.002360774818359,-0.003571428571432,0.002239709443050,0.003571428571432,-0.012469733656177,-0.000000000000000,2 +9756,9814,9816,9874,0.171428571428635,-0.226634382566628,0.169642857142918,-0.231809927360837,0.169642857142919,-0.219279661017022,0.167857142857202,-0.224455205811231,0.012590799031468,-0.000000000000000,-0.002239709443050,-0.003571428571432,0.002118644067744,0.003571428571432,-0.012469733656162,-0.000000000000000,2 +9757,9815,9817,9875,0.171428571428635,-0.214043583535152,0.169642857142919,-0.219279661017022,0.169642857142918,-0.206749394673193,0.167857142857202,-0.211985472155063,0.012590799031483,0.000000000000000,-0.002118644067744,-0.003571428571432,0.001997578692435,0.003571428571432,-0.012469733656174,-0.000000000000000,2 +9758,9816,9818,9876,0.171428571428634,-0.201452784503675,0.169642857142918,-0.206749394673193,0.169642857142918,-0.194219128329376,0.167857142857202,-0.199515738498894,0.012590799031470,0.000000000000000,-0.001997578692435,-0.003571428571432,0.001876513317128,0.003571428571432,-0.012469733656163,-0.000000000000000,2 +9759,9817,9819,9877,0.171428571428635,-0.188861985472201,0.169642857142918,-0.194219128329376,0.169642857142919,-0.181688861985553,0.167857142857202,-0.187046004842728,0.012590799031478,-0.000000000000000,-0.001876513317128,-0.003571428571432,0.001755447941820,0.003571428571432,-0.012469733656169,-0.000000000000000,2 +9760,9818,9820,9878,0.171428571428635,-0.176271186440729,0.169642857142919,-0.181688861985553,0.169642857142918,-0.169158595641739,0.167857142857202,-0.174576271186563,0.012590799031467,0.000000000000000,-0.001755447941820,-0.003571428571432,0.001634382566513,0.003571428571432,-0.012469733656161,-0.000000000000000,2 +9761,9819,9821,9879,0.171428571428634,-0.163680387409255,0.169642857142918,-0.169158595641739,0.169642857142918,-0.156628329297913,0.167857142857202,-0.162106537530396,0.012590799031480,0.000000000000000,-0.001634382566513,-0.003571428571432,0.001513317191204,0.003571428571432,-0.012469733656172,-0.000000000000000,2 +9762,9820,9822,9880,0.171428571428634,-0.151089588377778,0.169642857142918,-0.156628329297913,0.169642857142918,-0.144098062954093,0.167857142857202,-0.149636803874227,0.012590799031474,0.000000000000000,-0.001513317191204,-0.003571428571432,0.001392251815897,0.003571428571432,-0.012469733656166,-0.000000000000000,2 +9763,9821,9823,9881,0.171428571428635,-0.138498789346301,0.169642857142918,-0.144098062954093,0.169642857142919,-0.131567796610266,0.167857142857202,-0.137167070218057,0.012590799031480,-0.000000000000000,-0.001392251815897,-0.003571428571432,0.001271186440590,0.003571428571432,-0.012469733656174,-0.000000000000000,2 +9764,9822,9824,9882,0.171428571428635,-0.125907990314821,0.169642857142919,-0.131567796610266,0.169642857142918,-0.119037530266440,0.167857142857202,-0.124697336561885,0.012590799031480,0.000000000000000,-0.001271186440590,-0.003571428571432,0.001150121065281,0.003571428571432,-0.012469733656171,-0.000000000000000,2 +9765,9823,9825,9883,0.171428571428635,-0.113317191283347,0.169642857142918,-0.119037530266440,0.169642857142919,-0.106507263922625,0.167857142857202,-0.112227602905719,0.012590799031468,-0.000000000000000,-0.001150121065281,-0.003571428571432,0.001029055689975,0.003571428571432,-0.012469733656162,-0.000000000000000,2 +9766,9824,9826,9884,0.171428571428635,-0.100726392251873,0.169642857142919,-0.106507263922625,0.169642857142919,-0.093976997578800,0.167857142857202,-0.099757869249552,0.012590799031480,0.000000000000000,-0.001029055689975,-0.003571428571432,0.000907990314666,0.003571428571432,-0.012469733656171,-0.000000000000000,2 +9767,9825,9827,9885,0.171428571428635,-0.088135593220396,0.169642857142919,-0.093976997578800,0.169642857142918,-0.081446731234980,0.167857142857202,-0.087288135593384,0.012590799031473,0.000000000000000,-0.000907990314666,-0.003571428571432,0.000786924939358,0.003571428571432,-0.012469733656166,-0.000000000000000,2 +9768,9826,9828,9886,0.171428571428635,-0.075544794188920,0.169642857142918,-0.081446731234980,0.169642857142919,-0.068916464891157,0.167857142857202,-0.074818401937216,0.012590799031478,-0.000000000000000,-0.000786924939358,-0.003571428571432,0.000665859564050,0.003571428571432,-0.012469733656170,-0.000000000000000,2 +9769,9827,9829,9887,0.171428571428635,-0.062953995157445,0.169642857142919,-0.068916464891157,0.169642857142919,-0.056386198547337,0.167857142857202,-0.062348668281049,0.012590799031473,0.000000000000000,-0.000665859564050,-0.003571428571432,0.000544794188743,0.003571428571432,-0.012469733656166,-0.000000000000000,2 +9770,9828,9830,9888,0.171428571428635,-0.050363196125971,0.169642857142919,-0.056386198547337,0.169642857142918,-0.043855932203516,0.167857142857202,-0.049878934624882,0.012590799031475,0.000000000000000,-0.000544794188743,-0.003571428571432,0.000423728813435,0.003571428571432,-0.012469733656167,-0.000000000000000,2 +9771,9829,9831,9889,0.171428571428634,-0.037772397094495,0.169642857142918,-0.043855932203516,0.169642857142918,-0.031325665859694,0.167857142857202,-0.037409200968715,0.012590799031476,0.000000000000000,-0.000423728813435,-0.003571428571432,0.000302663438127,0.003571428571432,-0.012469733656168,-0.000000000000000,2 +9772,9830,9832,9890,0.171428571428635,-0.025181598063021,0.169642857142918,-0.031325665859694,0.169642857142919,-0.018795399515875,0.167857142857202,-0.024939467312548,0.012590799031473,-0.000000000000000,-0.000302663438127,-0.003571428571432,0.000181598062819,0.003571428571432,-0.012469733656166,-0.000000000000000,2 +9773,9831,9833,9891,0.171428571428635,-0.012590799031545,0.169642857142919,-0.018795399515875,0.169642857142918,-0.006265133172051,0.167857142857202,-0.012469733656380,0.012590799031478,0.000000000000000,-0.000181598062819,-0.003571428571432,0.000060532687511,0.003571428571432,-0.012469733656170,-0.000000000000000,2 +9774,9832,9834,9892,0.171428571428635,-0.000000000000064,0.169642857142918,-0.006265133172051,0.169642857142919,0.006265133171783,0.167857142857202,-0.000000000000204,0.012590799031484,-0.000000000000000,-0.000060532687511,-0.003571428571432,-0.000060532687791,0.003571428571432,-0.012469733656183,-0.000000000000000,2 +9775,9833,9835,9893,0.171428571428635,0.012590799031417,0.169642857142919,0.006265133171783,0.169642857142918,0.018795399515611,0.167857142857202,0.012469733655977,0.012590799031477,0.000000000000000,0.000060532687791,-0.003571428571432,-0.000181598063089,0.003571428571432,-0.012469733656179,-0.000000000000000,2 +9776,9834,9836,9894,0.171428571428634,0.025181598062897,0.169642857142918,0.018795399515611,0.169642857142918,0.031325665859445,0.167857142857202,0.024939467312159,0.012590799031483,0.000000000000000,0.000181598063089,-0.003571428571432,-0.000302663438387,0.003571428571432,-0.012469733656186,-0.000000000000000,2 +9777,9835,9837,9895,0.171428571428635,0.037772397094378,0.169642857142918,0.031325665859445,0.169642857142919,0.043855932203276,0.167857142857202,0.037409200968343,0.012590799031480,-0.000000000000000,0.000302663438387,-0.003571428571432,-0.000423728813684,0.003571428571432,-0.012469733656182,-0.000000000000000,2 +9778,9836,9838,9896,0.171428571428635,0.050363196125859,0.169642857142919,0.043855932203276,0.169642857142918,0.056386198547108,0.167857142857202,0.049878934624525,0.012590799031481,0.000000000000000,0.000423728813684,-0.003571428571432,-0.000544794188982,0.003571428571432,-0.012469733656183,-0.000000000000000,2 +9779,9837,9839,9897,0.171428571428635,0.062953995157341,0.169642857142918,0.056386198547108,0.169642857142919,0.068916464890942,0.167857142857202,0.062348668280710,0.012590799031483,-0.000000000000000,0.000544794188982,-0.003571428571432,-0.000665859564280,0.003571428571432,-0.012469733656186,-0.000000000000000,2 +9780,9838,9840,9898,0.171428571428635,0.075544794188821,0.169642857142919,0.068916464890942,0.169642857142919,0.081446731234770,0.167857142857202,0.074818401936892,0.012590799031477,0.000000000000000,0.000665859564280,-0.003571428571432,-0.000786924939578,0.003571428571432,-0.012469733656179,-0.000000000000000,2 +9781,9839,9841,9899,0.171428571428635,0.088135593220298,0.169642857142919,0.081446731234770,0.169642857142918,0.093976997578600,0.167857142857202,0.087288135593072,0.012590799031477,0.000000000000000,0.000786924939578,-0.003571428571432,-0.000907990314874,0.003571428571432,-0.012469733656181,-0.000000000000000,2 +9782,9840,9842,9900,0.171428571428635,0.100726392251777,0.169642857142918,0.093976997578600,0.169642857142919,0.106507263922431,0.167857142857202,0.099757869249254,0.012590799031480,-0.000000000000000,0.000907990314874,-0.003571428571432,-0.001029055690171,0.003571428571432,-0.012469733656183,-0.000000000000000,2 +9783,9841,9843,9901,0.171428571428635,0.113317191283255,0.169642857142919,0.106507263922431,0.169642857142919,0.119037530266259,0.167857142857202,0.112227602905435,0.012590799031477,0.000000000000000,0.001029055690171,-0.003571428571432,-0.001150121065469,0.003571428571432,-0.012469733656179,-0.000000000000000,2 +9784,9842,9844,9902,0.171428571428635,0.125907990314735,0.169642857142919,0.119037530266259,0.169642857142919,0.131567796610094,0.167857142857202,0.124697336561617,0.012590799031483,0.000000000000000,0.001150121065469,-0.003571428571432,-0.001271186440767,0.003571428571432,-0.012469733656186,-0.000000000000000,2 +9785,9843,9845,9903,0.171428571428635,0.138498789346216,0.169642857142919,0.131567796610094,0.169642857142918,0.144098062953922,0.167857142857202,0.137167070217800,0.012590799031477,0.000000000000000,0.001271186440767,-0.003571428571432,-0.001392251816065,0.003571428571432,-0.012469733656179,-0.000000000000000,2 +9786,9844,9846,9904,0.171428571428635,0.151089588377695,0.169642857142918,0.144098062953922,0.169642857142919,0.156628329297755,0.167857142857202,0.149636803873982,0.012590799031482,-0.000000000000000,0.001392251816065,-0.003571428571432,-0.001513317191362,0.003571428571432,-0.012469733656185,-0.000000000000000,2 +9787,9845,9847,9905,0.171428571428635,0.163680387409172,0.169642857142919,0.156628329297755,0.169642857142919,0.169158595641576,0.167857142857202,0.162106537530160,0.012590799031470,0.000000000000000,0.001513317191362,-0.003571428571432,-0.001634382566662,0.003571428571432,-0.012469733656171,-0.000000000000000,2 +9788,9846,9848,9906,0.171428571428635,0.176271186440644,0.169642857142919,0.169158595641576,0.169642857142919,0.181688861985402,0.167857142857202,0.174576271186333,0.012590799031475,0.000000000000000,0.001634382566662,-0.003571428571432,-0.001755447941960,0.003571428571432,-0.012469733656177,-0.000000000000000,2 +9789,9847,9849,9907,0.171428571428635,0.188861985472126,0.169642857142919,0.181688861985402,0.169642857142918,0.194219128329243,0.167857142857202,0.187046004842518,0.012590799031489,0.000000000000000,0.001755447941960,-0.003571428571432,-0.001876513317257,0.003571428571432,-0.012469733656192,-0.000000000000000,2 +9790,9848,9850,9908,0.171428571428634,0.201452784503606,0.169642857142918,0.194219128329243,0.169642857142918,0.206749394673063,0.167857142857202,0.199515738498699,0.012590799031470,0.000000000000000,0.001876513317257,-0.003571428571432,-0.001997578692556,0.003571428571432,-0.012469733656171,-0.000000000000000,2 +9791,9849,9851,9909,0.171428571428634,0.214043583535088,0.169642857142918,0.206749394673063,0.169642857142918,0.219279661016909,0.167857142857202,0.211985472154884,0.012590799031494,0.000000000000000,0.001997578692556,-0.003571428571432,-0.002118644067852,0.003571428571432,-0.012469733656198,-0.000000000000000,2 +9792,9850,9852,9910,0.171428571428634,0.226634382566570,0.169642857142918,0.219279661016909,0.169642857142918,0.231809927360730,0.167857142857202,0.224455205811068,0.012590799031470,0.000000000000000,0.002118644067852,-0.003571428571432,-0.002239709443151,0.003571428571432,-0.012469733656171,-0.000000000000000,2 +9793,9851,9853,9911,0.171428571428635,0.239225181598048,0.169642857142918,0.231809927360730,0.169642857142919,0.244340193704567,0.167857142857202,0.236924939467249,0.012590799031486,-0.000000000000000,0.002239709443151,-0.003571428571432,-0.002360774818448,0.003571428571432,-0.012469733656189,-0.000000000000000,2 +9794,9852,9854,9912,0.171428571428635,0.251815980629530,0.169642857142919,0.244340193704567,0.169642857142919,0.256870460048396,0.167857142857202,0.249394673123433,0.012590799031478,0.000000000000000,0.002360774818448,-0.003571428571432,-0.002481840193746,0.003571428571432,-0.012469733656180,-0.000000000000000,2 +9795,9853,9855,9913,0.171428571428635,0.264406779661008,0.169642857142919,0.256870460048396,0.169642857142919,0.269400726392225,0.167857142857202,0.261864406779613,0.012590799031478,0.000000000000000,0.002481840193746,-0.003571428571432,-0.002602905569044,0.003571428571432,-0.012469733656180,-0.000000000000000,2 +9796,9854,9856,9914,0.171428571428635,0.276997578692495,0.169642857142919,0.269400726392225,0.169642857142918,0.281930992736071,0.167857142857202,0.274334140435801,0.012590799031495,0.000000000000000,0.002602905569044,-0.003571428571432,-0.002723970944343,0.003571428571432,-0.012469733656197,-0.000000000000000,2 +9797,9855,9857,9915,0.171428571428634,0.289588377723980,0.169642857142918,0.281930992736071,0.169642857142918,0.294461259079896,0.167857142857202,0.286803874091987,0.012590799031475,0.000000000000000,0.002723970944343,-0.003571428571432,-0.002845036319643,0.003571428571432,-0.012469733656175,-0.000000000000000,2 +9798,9856,9858,9916,0.171428571428634,0.302179176755470,0.169642857142918,0.294461259079896,0.169642857142918,0.306991525423752,0.167857142857202,0.299273607748178,0.012590799031505,0.000000000000000,0.002845036319643,-0.003571428571432,-0.002966101694940,0.003571428571432,-0.012469733656207,-0.000000000000000,2 +9799,9857,9859,9917,0.171428571428635,0.314769975786959,0.169642857142918,0.306991525423752,0.169642857142919,0.319521791767576,0.167857142857202,0.311743341404369,0.012590799031474,-0.000000000000000,0.002966101694940,-0.003571428571432,-0.003087167070240,0.003571428571432,-0.012469733656174,-0.000000000000000,2 +9800,9858,9860,9918,0.171428571428635,0.327360774818440,0.169642857142919,0.319521791767576,0.169642857142918,0.332052058111416,0.167857142857202,0.324213075060552,0.012590799031488,0.000000000000000,0.003087167070240,-0.003571428571432,-0.003208232445537,0.003571428571432,-0.012469733656192,-0.000000000000000,2 +9801,9859,9861,9919,0.171428571428635,0.339951573849923,0.169642857142918,0.332052058111416,0.169642857142919,0.344582324455243,0.167857142857202,0.336682808716736,0.012590799031476,-0.000000000000000,0.003208232445537,-0.003571428571432,-0.003329297820835,0.003571428571432,-0.012469733656178,-0.000000000000000,2 +9802,9860,9862,9920,0.171428571428635,0.352542372881401,0.169642857142919,0.344582324455243,0.169642857142918,0.357112590799074,0.167857142857202,0.349152542372916,0.012590799031480,0.000000000000000,0.003329297820835,-0.003571428571432,-0.003450363196133,0.003571428571432,-0.012469733656182,-0.000000000000000,2 +7699,9803,9861,9921,0.169642857142918,0.369642857142918,0.171428571428634,0.365133171912888,0.169642857142918,0.357112590799074,0.167857142857202,0.361622276029105,-0.003571428571432,0.003571428571432,0.012590799031494,-0.000000000000000,0.003450363196133,-0.003571428571432,-0.012469733656195,0.000000000000000,2 +9070,9804,9864,9922,0.166071428571480,-0.366071428571480,0.167857142857202,-0.361622276029116,0.166071428571480,-0.353662227602960,0.164285714285757,-0.358111380145324,-0.003571428571445,-0.003571428571445,0.012469733656173,0.000000000000000,0.003450363196138,0.003571428571445,-0.012348668280866,-0.000000000000000,2 +9805,9863,9865,9923,0.167857142857203,-0.349152542372942,0.166071428571480,-0.353662227602960,0.166071428571480,-0.341253026634441,0.164285714285757,-0.345762711864459,0.012469733656174,-0.000000000000000,-0.003450363196138,-0.003571428571445,0.003329297820829,0.003571428571445,-0.012348668280865,-0.000000000000000,2 +9806,9864,9866,9924,0.167857142857203,-0.336682808716769,0.166071428571480,-0.341253026634441,0.166071428571480,-0.328843825665921,0.164285714285757,-0.333414043583593,0.012469733656173,0.000000000000000,-0.003329297820829,-0.003571428571445,0.003208232445523,0.003571428571445,-0.012348668280867,-0.000000000000000,2 +9807,9865,9867,9925,0.167857142857202,-0.324213075060595,0.166071428571480,-0.328843825665921,0.166071428571480,-0.316434624697402,0.164285714285757,-0.321065375302727,0.012469733656174,0.000000000000000,-0.003208232445523,-0.003571428571445,0.003087167070214,0.003571428571445,-0.012348668280865,0.000000000000000,2 +9808,9866,9868,9926,0.167857142857202,-0.311743341404422,0.166071428571480,-0.316434624697402,0.166071428571480,-0.304025423728882,0.164285714285757,-0.308716707021861,0.012469733656173,0.000000000000000,-0.003087167070214,-0.003571428571445,0.002966101694908,0.003571428571445,-0.012348668280867,-0.000000000000000,2 +9809,9867,9869,9927,0.167857142857202,-0.299273607748249,0.166071428571480,-0.304025423728882,0.166071428571480,-0.291616222760362,0.164285714285757,-0.296368038740995,0.012469733656174,0.000000000000000,-0.002966101694908,-0.003571428571445,0.002845036319599,0.003571428571445,-0.012348668280865,-0.000000000000000,2 +9810,9868,9870,9928,0.167857142857202,-0.286803874092075,0.166071428571480,-0.291616222760362,0.166071428571480,-0.279207021791842,0.164285714285757,-0.284019370460130,0.012469733656173,0.000000000000000,-0.002845036319599,-0.003571428571445,0.002723970944292,0.003571428571445,-0.012348668280867,-0.000000000000000,2 +9811,9869,9871,9929,0.167857142857202,-0.274334140435906,0.166071428571480,-0.279207021791842,0.166071428571480,-0.266797820823333,0.164285714285757,-0.271670702179269,0.012469733656164,0.000000000000000,-0.002723970944292,-0.003571428571445,0.002602905568983,0.003571428571445,-0.012348668280855,-0.000000000000000,2 +9812,9870,9872,9930,0.167857142857203,-0.261864406779741,0.166071428571480,-0.266797820823333,0.166071428571480,-0.254388619854820,0.164285714285757,-0.259322033898412,0.012469733656167,-0.000000000000000,-0.002602905568983,-0.003571428571445,0.002481840193674,0.003571428571445,-0.012348668280858,-0.000000000000000,2 +9813,9871,9873,9931,0.167857142857203,-0.249394673123573,0.166071428571480,-0.254388619854820,0.166071428571480,-0.241979418886306,0.164285714285757,-0.246973365617553,0.012469733656168,0.000000000000000,-0.002481840193674,-0.003571428571445,0.002360774818367,0.003571428571445,-0.012348668280861,-0.000000000000000,2 +9814,9872,9874,9932,0.167857142857202,-0.236924939467401,0.166071428571480,-0.241979418886306,0.166071428571480,-0.229570217917783,0.164285714285757,-0.234624697336688,0.012469733656177,0.000000000000000,-0.002360774818367,-0.003571428571445,0.002239709443058,0.003571428571445,-0.012348668280868,0.000000000000000,2 +9815,9873,9875,9933,0.167857142857202,-0.224455205811231,0.166071428571480,-0.229570217917783,0.166071428571480,-0.217161016949274,0.164285714285757,-0.222276029055826,0.012469733656162,0.000000000000000,-0.002239709443058,-0.003571428571445,0.002118644067752,0.003571428571445,-0.012348668280856,-0.000000000000000,2 +9816,9874,9876,9934,0.167857142857202,-0.211985472155063,0.166071428571480,-0.217161016949274,0.166071428571480,-0.204751815980754,0.164285714285757,-0.209927360774966,0.012469733656174,0.000000000000000,-0.002118644067752,-0.003571428571445,0.001997578692442,0.003571428571445,-0.012348668280864,-0.000000000000000,2 +9817,9875,9877,9935,0.167857142857202,-0.199515738498894,0.166071428571480,-0.204751815980754,0.166071428571480,-0.192342615012245,0.164285714285757,-0.197578692494105,0.012469733656163,0.000000000000000,-0.001997578692442,-0.003571428571445,0.001876513317135,0.003571428571445,-0.012348668280856,-0.000000000000000,2 +9818,9876,9878,9936,0.167857142857202,-0.187046004842728,0.166071428571480,-0.192342615012245,0.166071428571480,-0.179933414043730,0.164285714285757,-0.185230024213247,0.012469733656169,0.000000000000000,-0.001876513317135,-0.003571428571445,0.001755447941826,0.003571428571445,-0.012348668280861,-0.000000000000000,2 +9819,9877,9879,9937,0.167857142857202,-0.174576271186563,0.166071428571480,-0.179933414043730,0.166071428571480,-0.167524213075223,0.164285714285757,-0.172881355932390,0.012469733656161,0.000000000000000,-0.001755447941826,-0.003571428571445,0.001634382566519,0.003571428571445,-0.012348668280854,-0.000000000000000,2 +9820,9878,9880,9938,0.167857142857202,-0.162106537530396,0.166071428571480,-0.167524213075223,0.166071428571480,-0.155115012106705,0.164285714285757,-0.160532687651532,0.012469733656172,0.000000000000000,-0.001634382566519,-0.003571428571445,0.001513317191210,0.003571428571445,-0.012348668280863,-0.000000000000000,2 +9821,9879,9881,9939,0.167857142857202,-0.149636803874227,0.166071428571480,-0.155115012106705,0.166071428571480,-0.142705811138193,0.164285714285757,-0.148184019370671,0.012469733656166,0.000000000000000,-0.001513317191210,-0.003571428571445,0.001392251815902,0.003571428571445,-0.012348668280858,-0.000000000000000,2 +9822,9880,9882,9940,0.167857142857202,-0.137167070218057,0.166071428571480,-0.142705811138193,0.166071428571480,-0.130296610169673,0.164285714285757,-0.135835351089809,0.012469733656174,0.000000000000000,-0.001392251815902,-0.003571428571445,0.001271186440594,0.003571428571445,-0.012348668280866,-0.000000000000000,2 +9823,9881,9883,9941,0.167857142857202,-0.124697336561885,0.166071428571480,-0.130296610169673,0.166071428571480,-0.117887409201157,0.164285714285757,-0.123486682808945,0.012469733656171,0.000000000000000,-0.001271186440594,-0.003571428571445,0.001150121065285,0.003571428571445,-0.012348668280862,0.000000000000000,2 +9824,9882,9884,9942,0.167857142857202,-0.112227602905719,0.166071428571480,-0.117887409201157,0.166071428571480,-0.105478208232649,0.164285714285757,-0.111138014528087,0.012469733656162,0.000000000000000,-0.001150121065285,-0.003571428571445,0.001029055689978,0.003571428571445,-0.012348668280854,-0.000000000000000,2 +9825,9883,9885,9943,0.167857142857202,-0.099757869249552,0.166071428571480,-0.105478208232649,0.166071428571480,-0.093069007264132,0.164285714285757,-0.098789346247229,0.012469733656171,0.000000000000000,-0.001029055689978,-0.003571428571445,0.000907990314669,0.003571428571445,-0.012348668280862,0.000000000000000,2 +9826,9884,9886,9944,0.167857142857202,-0.087288135593384,0.166071428571480,-0.093069007264132,0.166071428571480,-0.080659806295621,0.164285714285757,-0.086440677966369,0.012469733656166,0.000000000000000,-0.000907990314669,-0.003571428571445,0.000786924939361,0.003571428571445,-0.012348668280858,-0.000000000000000,2 +9827,9885,9887,9945,0.167857142857202,-0.074818401937216,0.166071428571480,-0.080659806295621,0.166071428571480,-0.068250605327105,0.164285714285757,-0.074092009685510,0.012469733656170,0.000000000000000,-0.000786924939361,-0.003571428571445,0.000665859564052,0.003571428571445,-0.012348668280861,-0.000000000000000,2 +9828,9886,9888,9946,0.167857142857202,-0.062348668281049,0.166071428571480,-0.068250605327105,0.166071428571480,-0.055841404358594,0.164285714285757,-0.061743341404650,0.012469733656166,0.000000000000000,-0.000665859564052,-0.003571428571445,0.000544794188744,0.003571428571445,-0.012348668280858,-0.000000000000000,2 +9829,9887,9889,9947,0.167857142857202,-0.049878934624882,0.166071428571480,-0.055841404358594,0.166071428571480,-0.043432203390081,0.164285714285757,-0.049394673123792,0.012469733656167,0.000000000000000,-0.000544794188744,-0.003571428571445,0.000423728813436,0.003571428571445,-0.012348668280859,-0.000000000000000,2 +9830,9888,9890,9948,0.167857142857202,-0.037409200968715,0.166071428571480,-0.043432203390081,0.166071428571480,-0.031023002421567,0.164285714285757,-0.037046004842933,0.012469733656168,0.000000000000000,-0.000423728813436,-0.003571428571445,0.000302663438128,0.003571428571445,-0.012348668280859,-0.000000000000000,2 +9831,9889,9891,9949,0.167857142857202,-0.024939467312548,0.166071428571480,-0.031023002421567,0.166071428571480,-0.018613801453055,0.164285714285757,-0.024697336562074,0.012469733656166,0.000000000000000,-0.000302663438128,-0.003571428571445,0.000181598062820,0.003571428571445,-0.012348668280858,-0.000000000000000,2 +9832,9890,9892,9950,0.167857142857202,-0.012469733656380,0.166071428571480,-0.018613801453055,0.166071428571480,-0.006204600484540,0.164285714285757,-0.012348668281215,0.012469733656170,0.000000000000000,-0.000181598062820,-0.003571428571445,0.000060532687511,0.003571428571445,-0.012348668280861,-0.000000000000000,2 +9833,9891,9893,9951,0.167857142857202,-0.000000000000204,0.166071428571480,-0.006204600484540,0.166071428571480,0.006204600483992,0.164285714285757,-0.000000000000344,0.012469733656183,0.000000000000000,-0.000060532687511,-0.003571428571445,-0.000060532687791,0.003571428571445,-0.012348668280881,-0.000000000000000,2 +9834,9892,9894,9952,0.167857142857202,0.012469733655977,0.166071428571480,0.006204600483992,0.166071428571480,0.018613801452521,0.164285714285757,0.012348668280536,0.012469733656179,0.000000000000000,0.000060532687791,-0.003571428571445,-0.000181598063090,0.003571428571445,-0.012348668280880,-0.000000000000000,2 +9835,9893,9895,9953,0.167857142857202,0.024939467312159,0.166071428571480,0.018613801452521,0.166071428571480,0.031023002421058,0.164285714285757,0.024697336561420,0.012469733656186,0.000000000000000,0.000181598063090,-0.003571428571445,-0.000302663438388,0.003571428571445,-0.012348668280888,-0.000000000000000,2 +9836,9894,9896,9954,0.167857142857202,0.037409200968343,0.166071428571480,0.031023002421058,0.166071428571480,0.043432203389591,0.164285714285757,0.037046004842306,0.012469733656182,0.000000000000000,0.000302663438388,-0.003571428571445,-0.000423728813686,0.003571428571445,-0.012348668280883,-0.000000000000000,2 +9837,9895,9897,9955,0.167857142857202,0.049878934624525,0.166071428571480,0.043432203389591,0.166071428571480,0.055841404358125,0.164285714285757,0.049394673123190,0.012469733656183,0.000000000000000,0.000423728813686,-0.003571428571445,-0.000544794188984,0.003571428571445,-0.012348668280885,-0.000000000000000,2 +9838,9896,9898,9956,0.167857142857202,0.062348668280710,0.166071428571480,0.055841404358125,0.166071428571480,0.068250605326662,0.164285714285757,0.061743341404077,0.012469733656186,0.000000000000000,0.000544794188984,-0.003571428571445,-0.000665859564282,0.003571428571445,-0.012348668280888,-0.000000000000000,2 +9839,9897,9899,9957,0.167857142857202,0.074818401936892,0.166071428571480,0.068250605326662,0.166071428571480,0.080659806295191,0.164285714285757,0.074092009684961,0.012469733656179,0.000000000000000,0.000665859564282,-0.003571428571445,-0.000786924939581,0.003571428571445,-0.012348668280880,-0.000000000000000,2 +9840,9898,9900,9958,0.167857142857202,0.087288135593072,0.166071428571480,0.080659806295191,0.166071428571480,0.093069007263724,0.164285714285757,0.086440677965843,0.012469733656181,0.000000000000000,0.000786924939581,-0.003571428571445,-0.000907990314878,0.003571428571445,-0.012348668280884,-0.000000000000000,2 +9841,9899,9901,9959,0.167857142857202,0.099757869249254,0.166071428571480,0.093069007263724,0.166071428571480,0.105478208232258,0.164285714285757,0.098789346246728,0.012469733656183,0.000000000000000,0.000907990314878,-0.003571428571445,-0.001029055690175,0.003571428571445,-0.012348668280886,-0.000000000000000,2 +9842,9900,9902,9960,0.167857142857202,0.112227602905435,0.166071428571480,0.105478208232258,0.166071428571480,0.117887409200788,0.164285714285757,0.111138014527611,0.012469733656179,0.000000000000000,0.001029055690175,-0.003571428571445,-0.001150121065473,0.003571428571445,-0.012348668280880,-0.000000000000000,2 +9843,9901,9903,9961,0.167857142857202,0.124697336561617,0.166071428571480,0.117887409200788,0.166071428571480,0.130296610169325,0.164285714285757,0.123486682808495,0.012469733656186,0.000000000000000,0.001150121065473,-0.003571428571445,-0.001271186440771,0.003571428571445,-0.012348668280888,-0.000000000000000,2 +9844,9902,9904,9962,0.167857142857202,0.137167070217800,0.166071428571480,0.130296610169325,0.166071428571480,0.142705811137854,0.164285714285757,0.135835351089379,0.012469733656179,0.000000000000000,0.001271186440771,-0.003571428571445,-0.001392251816070,0.003571428571445,-0.012348668280880,-0.000000000000000,2 +9845,9903,9905,9963,0.167857142857202,0.149636803873982,0.166071428571480,0.142705811137854,0.166071428571480,0.155115012106390,0.164285714285757,0.148184019370263,0.012469733656185,0.000000000000000,0.001392251816070,-0.003571428571445,-0.001513317191368,0.003571428571445,-0.012348668280887,-0.000000000000000,2 +9846,9904,9906,9964,0.167857142857202,0.162106537530160,0.166071428571480,0.155115012106390,0.166071428571480,0.167524213074911,0.164285714285757,0.160532687651142,0.012469733656171,0.000000000000000,0.001513317191368,-0.003571428571445,-0.001634382566668,0.003571428571445,-0.012348668280871,-0.000000000000000,2 +9847,9905,9907,9965,0.167857142857202,0.174576271186333,0.166071428571480,0.167524213074911,0.166071428571480,0.179933414043439,0.164285714285757,0.172881355932016,0.012469733656177,0.000000000000000,0.001634382566668,-0.003571428571445,-0.001755447941966,0.003571428571445,-0.012348668280878,-0.000000000000000,2 +9848,9906,9908,9966,0.167857142857202,0.187046004842518,0.166071428571480,0.179933414043439,0.166071428571480,0.192342615011982,0.164285714285757,0.185230024212903,0.012469733656192,0.000000000000000,0.001755447941966,-0.003571428571445,-0.001876513317264,0.003571428571445,-0.012348668280895,-0.000000000000000,2 +9849,9907,9909,9967,0.167857142857202,0.199515738498699,0.166071428571480,0.192342615011982,0.166071428571480,0.204751815980503,0.164285714285757,0.197578692493786,0.012469733656171,0.000000000000000,0.001876513317264,-0.003571428571445,-0.001997578692563,0.003571428571445,-0.012348668280871,0.000000000000000,2 +9850,9908,9910,9968,0.167857142857202,0.211985472154884,0.166071428571480,0.204751815980503,0.166071428571480,0.217161016949053,0.164285714285757,0.209927360774672,0.012469733656198,0.000000000000000,0.001997578692563,-0.003571428571445,-0.002118644067860,0.003571428571445,-0.012348668280902,-0.000000000000000,2 +9851,9909,9911,9969,0.167857142857202,0.224455205811068,0.166071428571480,0.217161016949053,0.166071428571480,0.229570217917574,0.164285714285757,0.222276029055559,0.012469733656171,0.000000000000000,0.002118644067860,-0.003571428571445,-0.002239709443159,0.003571428571445,-0.012348668280872,-0.000000000000000,2 +9852,9910,9912,9970,0.167857142857202,0.236924939467249,0.166071428571480,0.229570217917574,0.166071428571480,0.241979418886115,0.164285714285757,0.234624697336440,0.012469733656189,0.000000000000000,0.002239709443159,-0.003571428571445,-0.002360774818457,0.003571428571445,-0.012348668280891,-0.000000000000000,2 +9853,9911,9913,9971,0.167857142857202,0.249394673123433,0.166071428571480,0.241979418886115,0.166071428571480,0.254388619854646,0.164285714285757,0.246973365617327,0.012469733656180,0.000000000000000,0.002360774818457,-0.003571428571445,-0.002481840193755,0.003571428571445,-0.012348668280882,-0.000000000000000,2 +9854,9912,9914,9972,0.167857142857202,0.261864406779613,0.166071428571480,0.254388619854646,0.166071428571480,0.266797820823176,0.164285714285757,0.259322033898209,0.012469733656180,0.000000000000000,0.002481840193755,-0.003571428571445,-0.002602905569054,0.003571428571445,-0.012348668280881,-0.000000000000000,2 +9855,9913,9915,9973,0.167857142857202,0.274334140435801,0.166071428571480,0.266797820823176,0.166071428571480,0.279207021791723,0.164285714285757,0.271670702179098,0.012469733656197,0.000000000000000,0.002602905569054,-0.003571428571445,-0.002723970944353,0.003571428571445,-0.012348668280898,-0.000000000000000,2 +9856,9914,9916,9974,0.167857142857202,0.286803874091987,0.166071428571480,0.279207021791723,0.166071428571480,0.291616222760248,0.164285714285757,0.284019370459984,0.012469733656175,0.000000000000000,0.002723970944353,-0.003571428571445,-0.002845036319653,0.003571428571445,-0.012348668280875,0.000000000000000,2 +9857,9915,9917,9975,0.167857142857202,0.299273607748178,0.166071428571480,0.291616222760248,0.166071428571480,0.304025423728806,0.164285714285757,0.296368038740876,0.012469733656207,0.000000000000000,0.002845036319653,-0.003571428571445,-0.002966101694951,0.003571428571445,-0.012348668280909,-0.000000000000000,2 +9858,9916,9918,9976,0.167857142857202,0.311743341404369,0.166071428571480,0.304025423728806,0.166071428571480,0.316434624697330,0.164285714285757,0.308716707021767,0.012469733656174,0.000000000000000,0.002966101694951,-0.003571428571445,-0.003087167070252,0.003571428571445,-0.012348668280874,0.000000000000000,2 +9859,9917,9919,9977,0.167857142857202,0.324213075060552,0.166071428571480,0.316434624697330,0.166071428571480,0.328843825665873,0.164285714285757,0.321065375302651,0.012469733656192,0.000000000000000,0.003087167070252,-0.003571428571445,-0.003208232445549,0.003571428571445,-0.012348668280894,-0.000000000000000,2 +9860,9918,9920,9978,0.167857142857202,0.336682808716736,0.166071428571480,0.328843825665873,0.166071428571480,0.341253026634401,0.164285714285757,0.333414043583538,0.012469733656178,0.000000000000000,0.003208232445549,-0.003571428571445,-0.003329297820848,0.003571428571445,-0.012348668280879,-0.000000000000000,2 +9861,9919,9921,9979,0.167857142857202,0.349152542372916,0.166071428571480,0.341253026634401,0.166071428571480,0.353662227602934,0.164285714285757,0.345762711864420,0.012469733656182,0.000000000000000,0.003329297820848,-0.003571428571445,-0.003450363196146,0.003571428571445,-0.012348668280884,-0.000000000000000,2 +7698,9862,9920,9980,0.166071428571480,0.366071428571480,0.167857142857202,0.361622276029105,0.166071428571480,0.353662227602934,0.164285714285757,0.358111380145309,-0.003571428571445,0.003571428571445,0.012469733656195,-0.000000000000000,0.003450363196146,-0.003571428571445,-0.012348668280896,0.000000000000000,2 +9041,9863,9923,9981,0.162500000000027,-0.362500000000027,0.164285714285757,-0.358111380145324,0.162500000000027,-0.350211864406815,0.160714285714297,-0.354600484261518,-0.003571428571460,-0.003571428571460,0.012348668280866,0.000000000000000,0.003450363196152,0.003571428571460,-0.012227602905558,-0.000000000000000,2 +9864,9922,9924,9982,0.164285714285757,-0.345762711864459,0.162500000000027,-0.350211864406815,0.162500000000027,-0.337923728813605,0.160714285714297,-0.342372881355961,0.012348668280865,0.000000000000000,-0.003450363196152,-0.003571428571460,0.003329297820843,0.003571428571460,-0.012227602905556,0.000000000000000,2 +9865,9923,9925,9983,0.164285714285757,-0.333414043583593,0.162500000000027,-0.337923728813605,0.162500000000027,-0.325635593220391,0.160714285714297,-0.330145278450403,0.012348668280867,0.000000000000000,-0.003329297820843,-0.003571428571460,0.003208232445537,0.003571428571460,-0.012227602905561,-0.000000000000000,2 +9866,9924,9926,9984,0.164285714285757,-0.321065375302727,0.162500000000027,-0.325635593220391,0.162500000000027,-0.313347457627181,0.160714285714297,-0.317917675544845,0.012348668280865,-0.000000000000000,-0.003208232445537,-0.003571428571460,0.003087167070227,0.003571428571460,-0.012227602905554,0.000000000000000,2 +9867,9925,9927,9985,0.164285714285757,-0.308716707021861,0.162500000000027,-0.313347457627181,0.162500000000027,-0.301059322033967,0.160714285714297,-0.305690072639287,0.012348668280867,0.000000000000000,-0.003087167070227,-0.003571428571460,0.002966101694921,0.003571428571460,-0.012227602905562,0.000000000000000,2 +9868,9926,9928,9986,0.164285714285757,-0.296368038740995,0.162500000000027,-0.301059322033967,0.162500000000027,-0.288771186440757,0.160714285714297,-0.293462469733729,0.012348668280865,0.000000000000000,-0.002966101694921,-0.003571428571460,0.002845036319611,0.003571428571460,-0.012227602905555,-0.000000000000000,2 +9869,9927,9929,9987,0.164285714285757,-0.284019370460130,0.162500000000027,-0.288771186440757,0.162500000000027,-0.276483050847545,0.160714285714297,-0.281234866828172,0.012348668280867,0.000000000000000,-0.002845036319611,-0.003571428571460,0.002723970944303,0.003571428571460,-0.012227602905559,-0.000000000000000,2 +9870,9928,9930,9988,0.164285714285757,-0.271670702179269,0.162500000000027,-0.276483050847545,0.162500000000027,-0.264194915254344,0.160714285714297,-0.269007263922620,0.012348668280855,0.000000000000000,-0.002723970944303,-0.003571428571460,0.002602905568994,0.003571428571460,-0.012227602905546,-0.000000000000000,2 +9871,9929,9931,9989,0.164285714285757,-0.259322033898412,0.162500000000027,-0.264194915254344,0.162500000000027,-0.251906779661141,0.160714285714297,-0.256779661017073,0.012348668280858,0.000000000000000,-0.002602905568994,-0.003571428571460,0.002481840193685,0.003571428571460,-0.012227602905549,-0.000000000000000,2 +9872,9930,9932,9990,0.164285714285757,-0.246973365617553,0.162500000000027,-0.251906779661141,0.162500000000027,-0.239618644067933,0.160714285714297,-0.244552058111522,0.012348668280861,0.000000000000000,-0.002481840193685,-0.003571428571460,0.002360774818377,0.003571428571460,-0.012227602905554,-0.000000000000000,2 +9873,9931,9933,9991,0.164285714285757,-0.234624697336688,0.162500000000027,-0.239618644067933,0.162500000000027,-0.227330508474720,0.160714285714297,-0.232324455205966,0.012348668280868,-0.000000000000000,-0.002360774818377,-0.003571428571460,0.002239709443067,0.003571428571460,-0.012227602905558,-0.000000000000000,2 +9874,9932,9934,9992,0.164285714285757,-0.222276029055826,0.162500000000027,-0.227330508474720,0.162500000000027,-0.215042372881517,0.160714285714297,-0.220096852300412,0.012348668280856,0.000000000000000,-0.002239709443067,-0.003571428571460,0.002118644067761,0.003571428571460,-0.012227602905550,-0.000000000000000,2 +9875,9933,9935,9993,0.164285714285757,-0.209927360774966,0.162500000000027,-0.215042372881517,0.162500000000027,-0.202754237288308,0.160714285714297,-0.207869249394860,0.012348668280864,0.000000000000000,-0.002118644067761,-0.003571428571460,0.001997578692451,0.003571428571460,-0.012227602905554,-0.000000000000000,2 +9876,9934,9936,9994,0.164285714285757,-0.197578692494105,0.162500000000027,-0.202754237288308,0.162500000000027,-0.190466101695106,0.160714285714297,-0.195641646489309,0.012348668280856,0.000000000000000,-0.001997578692451,-0.003571428571460,0.001876513317143,0.003571428571460,-0.012227602905548,-0.000000000000000,2 +9877,9935,9937,9995,0.164285714285757,-0.185230024213247,0.162500000000027,-0.190466101695106,0.162500000000027,-0.178177966101900,0.160714285714297,-0.183414043583759,0.012348668280861,0.000000000000000,-0.001876513317143,-0.003571428571460,0.001755447941833,0.003571428571460,-0.012227602905551,-0.000000000000000,2 +9878,9936,9938,9996,0.164285714285757,-0.172881355932390,0.162500000000027,-0.178177966101900,0.162500000000027,-0.165889830508700,0.160714285714297,-0.171186440678210,0.012348668280854,0.000000000000000,-0.001755447941833,-0.003571428571460,0.001634382566526,0.003571428571460,-0.012227602905546,-0.000000000000000,2 +9879,9937,9939,9997,0.164285714285757,-0.160532687651532,0.162500000000027,-0.165889830508700,0.162500000000027,-0.153601694915492,0.160714285714297,-0.158958837772661,0.012348668280863,0.000000000000000,-0.001634382566526,-0.003571428571460,0.001513317191216,0.003571428571460,-0.012227602905553,-0.000000000000000,2 +9880,9938,9940,9998,0.164285714285757,-0.148184019370671,0.162500000000027,-0.153601694915492,0.162500000000027,-0.141313559322288,0.160714285714297,-0.146731234867109,0.012348668280858,0.000000000000000,-0.001513317191216,-0.003571428571460,0.001392251815908,0.003571428571460,-0.012227602905550,-0.000000000000000,2 +9881,9939,9941,9999,0.164285714285757,-0.135835351089809,0.162500000000027,-0.141313559322288,0.162500000000027,-0.129025423729076,0.160714285714297,-0.134503631961556,0.012348668280866,0.000000000000000,-0.001392251815908,-0.003571428571460,0.001271186440600,0.003571428571460,-0.012227602905558,-0.000000000000000,2 +9882,9940,9942,10000,0.164285714285757,-0.123486682808945,0.162500000000027,-0.129025423729076,0.162500000000027,-0.116737288135869,0.160714285714297,-0.122276029056000,0.012348668280862,-0.000000000000000,-0.001271186440600,-0.003571428571460,0.001150121065290,0.003571428571460,-0.012227602905552,-0.000000000000000,2 +9883,9941,9943,10001,0.164285714285757,-0.111138014528087,0.162500000000027,-0.116737288135869,0.162500000000027,-0.104449152542668,0.160714285714297,-0.110048426150451,0.012348668280854,0.000000000000000,-0.001150121065290,-0.003571428571460,0.001029055689983,0.003571428571460,-0.012227602905547,-0.000000000000000,2 +9884,9942,9944,10002,0.164285714285757,-0.098789346247229,0.162500000000027,-0.104449152542668,0.162500000000027,-0.092161016949461,0.160714285714297,-0.097820823244901,0.012348668280862,-0.000000000000000,-0.001029055689983,-0.003571428571460,0.000907990314673,0.003571428571460,-0.012227602905553,-0.000000000000000,2 +9885,9943,9945,10003,0.164285714285757,-0.086440677966369,0.162500000000027,-0.092161016949461,0.162500000000027,-0.079872881356258,0.160714285714297,-0.085593220339350,0.012348668280858,0.000000000000000,-0.000907990314673,-0.003571428571460,0.000786924939364,0.003571428571460,-0.012227602905549,-0.000000000000000,2 +9886,9944,9946,10004,0.164285714285757,-0.074092009685510,0.162500000000027,-0.079872881356258,0.162500000000027,-0.067584745763052,0.160714285714297,-0.073365617433800,0.012348668280861,0.000000000000000,-0.000786924939364,-0.003571428571460,0.000665859564055,0.003571428571460,-0.012227602905552,-0.000000000000000,2 +9887,9945,9947,10005,0.164285714285757,-0.061743341404650,0.162500000000027,-0.067584745763052,0.162500000000027,-0.055296610169848,0.160714285714297,-0.061138014528249,0.012348668280858,0.000000000000000,-0.000665859564055,-0.003571428571460,0.000544794188747,0.003571428571460,-0.012227602905549,-0.000000000000000,2 +9888,9946,9948,10006,0.164285714285757,-0.049394673123792,0.162500000000027,-0.055296610169848,0.162500000000027,-0.043008474576643,0.160714285714297,-0.048910411622700,0.012348668280859,0.000000000000000,-0.000544794188747,-0.003571428571460,0.000423728813438,0.003571428571460,-0.012227602905550,-0.000000000000000,2 +9889,9947,9949,10007,0.164285714285757,-0.037046004842933,0.162500000000027,-0.043008474576643,0.162500000000027,-0.030720338983438,0.160714285714297,-0.036682808717149,0.012348668280859,0.000000000000000,-0.000423728813438,-0.003571428571460,0.000302663438129,0.003571428571460,-0.012227602905551,-0.000000000000000,2 +9890,9948,9950,10008,0.164285714285757,-0.024697336562074,0.162500000000027,-0.030720338983438,0.162500000000027,-0.018432203390235,0.160714285714297,-0.024455205811599,0.012348668280858,0.000000000000000,-0.000302663438129,-0.003571428571460,0.000181598062821,0.003571428571460,-0.012227602905549,-0.000000000000000,2 +9891,9949,9951,10009,0.164285714285757,-0.012348668281215,0.162500000000027,-0.018432203390235,0.162500000000027,-0.006144067797029,0.160714285714297,-0.012227602906049,0.012348668280861,0.000000000000000,-0.000181598062821,-0.003571428571460,0.000060532687511,0.003571428571460,-0.012227602905552,-0.000000000000000,2 +9892,9950,9952,10010,0.164285714285757,-0.000000000000344,0.162500000000027,-0.006144067797029,0.162500000000027,0.006144067796201,0.160714285714297,-0.000000000000484,0.012348668280881,0.000000000000000,-0.000060532687511,-0.003571428571460,-0.000060532687791,0.003571428571460,-0.012227602905578,-0.000000000000000,2 +9893,9951,9953,10011,0.164285714285757,0.012348668280536,0.162500000000027,0.006144067796201,0.162500000000027,0.018432203389431,0.160714285714297,0.012227602905095,0.012348668280880,0.000000000000000,0.000060532687791,-0.003571428571460,-0.000181598063091,0.003571428571460,-0.012227602905581,-0.000000000000000,2 +9894,9952,9954,10012,0.164285714285757,0.024697336561420,0.162500000000027,0.018432203389431,0.162500000000027,0.030720338982670,0.160714285714297,0.024455205810681,0.012348668280888,0.000000000000000,0.000181598063091,-0.003571428571460,-0.000302663438389,0.003571428571460,-0.012227602905590,-0.000000000000000,2 +9895,9953,9955,10013,0.164285714285757,0.037046004842306,0.162500000000027,0.030720338982670,0.162500000000027,0.043008474575904,0.160714285714297,0.036682808716268,0.012348668280883,0.000000000000000,0.000302663438389,-0.003571428571460,-0.000423728813688,0.003571428571460,-0.012227602905585,-0.000000000000000,2 +9896,9954,9956,10014,0.164285714285757,0.049394673123190,0.162500000000027,0.043008474575904,0.162500000000027,0.055296610169139,0.160714285714297,0.048910411621853,0.012348668280885,0.000000000000000,0.000423728813688,-0.003571428571460,-0.000544794188986,0.003571428571460,-0.012227602905586,-0.000000000000000,2 +9897,9955,9957,10015,0.164285714285757,0.061743341404077,0.162500000000027,0.055296610169139,0.162500000000027,0.067584745762378,0.160714285714297,0.061138014527441,0.012348668280888,0.000000000000000,0.000544794188986,-0.003571428571460,-0.000665859564285,0.003571428571460,-0.012227602905590,-0.000000000000000,2 +9898,9956,9958,10016,0.164285714285757,0.074092009684961,0.162500000000027,0.067584745762378,0.162500000000027,0.079872881355609,0.160714285714297,0.073365617433026,0.012348668280880,0.000000000000000,0.000665859564285,-0.003571428571460,-0.000786924939584,0.003571428571460,-0.012227602905581,-0.000000000000000,2 +9899,9957,9959,10017,0.164285714285757,0.086440677965843,0.162500000000027,0.079872881355609,0.162500000000027,0.092161016948844,0.160714285714297,0.085593220338610,0.012348668280884,0.000000000000000,0.000786924939584,-0.003571428571460,-0.000907990314881,0.003571428571460,-0.012227602905587,-0.000000000000000,2 +9900,9958,9960,10018,0.164285714285757,0.098789346246728,0.162500000000027,0.092161016948844,0.162500000000027,0.104449152542081,0.160714285714297,0.097820823244197,0.012348668280886,0.000000000000000,0.000907990314881,-0.003571428571460,-0.001029055690179,0.003571428571460,-0.012227602905588,-0.000000000000000,2 +9901,9959,9961,10019,0.164285714285757,0.111138014527611,0.162500000000027,0.104449152542081,0.162500000000027,0.116737288135312,0.160714285714297,0.110048426149782,0.012348668280880,0.000000000000000,0.001029055690179,-0.003571428571460,-0.001150121065479,0.003571428571460,-0.012227602905581,-0.000000000000000,2 +9902,9960,9962,10020,0.164285714285757,0.123486682808495,0.162500000000027,0.116737288135312,0.162500000000027,0.129025423728550,0.160714285714297,0.122276029055367,0.012348668280888,0.000000000000000,0.001150121065479,-0.003571428571460,-0.001271186440777,0.003571428571460,-0.012227602905590,-0.000000000000000,2 +9903,9961,9963,10021,0.164285714285757,0.135835351089379,0.162500000000027,0.129025423728550,0.162500000000027,0.141313559321781,0.160714285714297,0.134503631960953,0.012348668280880,0.000000000000000,0.001271186440777,-0.003571428571460,-0.001392251816076,0.003571428571460,-0.012227602905581,-0.000000000000000,2 +9904,9962,9964,10022,0.164285714285757,0.148184019370263,0.162500000000027,0.141313559321781,0.162500000000027,0.153601694915019,0.160714285714297,0.146731234866537,0.012348668280887,0.000000000000000,0.001392251816076,-0.003571428571460,-0.001513317191374,0.003571428571460,-0.012227602905588,-0.000000000000000,2 +9905,9963,9965,10023,0.164285714285757,0.160532687651142,0.162500000000027,0.153601694915019,0.162500000000027,0.165889830508240,0.160714285714297,0.158958837772117,0.012348668280871,0.000000000000000,0.001513317191374,-0.003571428571460,-0.001634382566675,0.003571428571460,-0.012227602905571,-0.000000000000000,2 +9906,9964,9966,10024,0.164285714285757,0.172881355932016,0.162500000000027,0.165889830508240,0.162500000000027,0.178177966101468,0.160714285714297,0.171186440677692,0.012348668280878,0.000000000000000,0.001634382566675,-0.003571428571460,-0.001755447941974,0.003571428571460,-0.012227602905579,-0.000000000000000,2 +9907,9965,9967,10025,0.164285714285757,0.185230024212903,0.162500000000027,0.178177966101468,0.162500000000027,0.190466101694715,0.160714285714297,0.183414043583280,0.012348668280895,0.000000000000000,0.001755447941974,-0.003571428571460,-0.001876513317272,0.003571428571460,-0.012227602905597,-0.000000000000000,2 +9908,9966,9968,10026,0.164285714285757,0.197578692493786,0.162500000000027,0.190466101694715,0.162500000000027,0.202754237287936,0.160714285714297,0.195641646488864,0.012348668280871,-0.000000000000000,0.001876513317272,-0.003571428571460,-0.001997578692572,0.003571428571460,-0.012227602905571,-0.000000000000000,2 +9909,9967,9969,10027,0.164285714285757,0.209927360774672,0.162500000000027,0.202754237287936,0.162500000000027,0.215042372881189,0.160714285714297,0.207869249394452,0.012348668280902,0.000000000000000,0.001997578692572,-0.003571428571460,-0.002118644067869,0.003571428571460,-0.012227602905605,-0.000000000000000,2 +9910,9968,9970,10028,0.164285714285757,0.222276029055559,0.162500000000027,0.215042372881189,0.162500000000027,0.227330508474410,0.160714285714297,0.220096852300040,0.012348668280872,0.000000000000000,0.002118644067869,-0.003571428571460,-0.002239709443169,0.003571428571460,-0.012227602905572,-0.000000000000000,2 +9911,9969,9971,10029,0.164285714285757,0.234624697336440,0.162500000000027,0.227330508474410,0.162500000000027,0.239618644067653,0.160714285714297,0.232324455205623,0.012348668280891,0.000000000000000,0.002239709443169,-0.003571428571460,-0.002360774818467,0.003571428571460,-0.012227602905593,-0.000000000000000,2 +9912,9970,9972,10030,0.164285714285757,0.246973365617327,0.162500000000027,0.239618644067653,0.162500000000027,0.251906779660885,0.160714285714297,0.244552058111211,0.012348668280882,0.000000000000000,0.002360774818467,-0.003571428571460,-0.002481840193766,0.003571428571460,-0.012227602905583,-0.000000000000000,2 +9913,9971,9973,10031,0.164285714285757,0.259322033898209,0.162500000000027,0.251906779660885,0.162500000000027,0.264194915254117,0.160714285714297,0.256779661016793,0.012348668280881,0.000000000000000,0.002481840193766,-0.003571428571460,-0.002602905569065,0.003571428571460,-0.012227602905582,-0.000000000000000,2 +9914,9972,9974,10032,0.164285714285757,0.271670702179098,0.162500000000027,0.264194915254117,0.162500000000027,0.276483050847365,0.160714285714297,0.269007263922383,0.012348668280898,0.000000000000000,0.002602905569065,-0.003571428571460,-0.002723970944364,0.003571428571460,-0.012227602905598,-0.000000000000000,2 +9915,9973,9975,10033,0.164285714285757,0.284019370459984,0.162500000000027,0.276483050847365,0.162500000000027,0.288771186440589,0.160714285714297,0.281234866827969,0.012348668280875,-0.000000000000000,0.002723970944364,-0.003571428571460,-0.002845036319666,0.003571428571460,-0.012227602905574,-0.000000000000000,2 +9916,9974,9976,10034,0.164285714285757,0.296368038740876,0.162500000000027,0.288771186440589,0.162500000000027,0.301059322033849,0.160714285714297,0.293462469733561,0.012348668280909,0.000000000000000,0.002845036319666,-0.003571428571460,-0.002966101694964,0.003571428571460,-0.012227602905610,-0.000000000000000,2 +9917,9975,9977,10035,0.164285714285757,0.308716707021767,0.162500000000027,0.301059322033849,0.162500000000027,0.313347457627072,0.160714285714297,0.305690072639153,0.012348668280874,-0.000000000000000,0.002966101694964,-0.003571428571460,-0.003087167070264,0.003571428571460,-0.012227602905573,-0.000000000000000,2 +9918,9976,9978,10036,0.164285714285757,0.321065375302651,0.162500000000027,0.313347457627072,0.162500000000027,0.325635593220317,0.160714285714297,0.317917675544738,0.012348668280894,0.000000000000000,0.003087167070264,-0.003571428571460,-0.003208232445562,0.003571428571460,-0.012227602905596,-0.000000000000000,2 +9919,9977,9979,10037,0.164285714285757,0.333414043583538,0.162500000000027,0.325635593220317,0.162500000000027,0.337923728813547,0.160714285714297,0.330145278450326,0.012348668280879,0.000000000000000,0.003208232445562,-0.003571428571460,-0.003329297820862,0.003571428571460,-0.012227602905580,-0.000000000000000,2 +9920,9978,9980,10038,0.164285714285757,0.345762711864420,0.162500000000027,0.337923728813547,0.162500000000027,0.350211864406781,0.160714285714297,0.342372881355908,0.012348668280884,0.000000000000000,0.003329297820862,-0.003571428571460,-0.003450363196160,0.003571428571460,-0.012227602905585,-0.000000000000000,2 +7697,9921,9979,10039,0.162500000000027,0.362500000000027,0.164285714285757,0.358111380145309,0.162500000000027,0.350211864406781,0.160714285714297,0.354600484261499,-0.003571428571460,0.003571428571460,0.012348668280896,-0.000000000000000,0.003450363196160,-0.003571428571460,-0.012227602905596,0.000000000000000,2 +9012,9922,9982,10040,0.158928571428573,-0.358928571428573,0.160714285714297,-0.354600484261518,0.158928571428573,-0.346761501210668,0.157142857142849,-0.351089588377724,-0.003571428571448,-0.003571428571448,0.012227602905558,0.000000000000000,0.003450363196140,0.003571428571448,-0.012106537530251,-0.000000000000000,2 +9923,9981,9983,10041,0.160714285714297,-0.342372881355961,0.158928571428573,-0.346761501210668,0.158928571428573,-0.334594430992767,0.157142857142849,-0.338983050847475,0.012227602905556,-0.000000000000000,-0.003450363196140,-0.003571428571448,0.003329297820831,0.003571428571448,-0.012106537530247,-0.000000000000000,2 +9924,9982,9984,10042,0.160714285714297,-0.330145278450403,0.158928571428573,-0.334594430992767,0.158928571428573,-0.322427360774859,0.157142857142849,-0.326876513317224,0.012227602905561,0.000000000000000,-0.003329297820831,-0.003571428571448,0.003208232445525,0.003571428571448,-0.012106537530255,-0.000000000000000,2 +9925,9983,9985,10043,0.160714285714297,-0.317917675544845,0.158928571428573,-0.322427360774859,0.158928571428573,-0.310260290556960,0.157142857142849,-0.314769975786974,0.012227602905554,-0.000000000000000,-0.003208232445525,-0.003571428571448,0.003087167070216,0.003571428571448,-0.012106537530244,-0.000000000000000,2 +9926,9984,9986,10044,0.160714285714297,-0.305690072639287,0.158928571428573,-0.310260290556960,0.158928571428573,-0.298093220339051,0.157142857142849,-0.302663438256724,0.012227602905562,-0.000000000000000,-0.003087167070216,-0.003571428571448,0.002966101694911,0.003571428571448,-0.012106537530256,-0.000000000000000,2 +9927,9985,9987,10045,0.160714285714297,-0.293462469733729,0.158928571428573,-0.298093220339051,0.158928571428573,-0.285926150121151,0.157142857142849,-0.290556900726473,0.012227602905555,0.000000000000000,-0.002966101694911,-0.003571428571448,0.002845036319601,0.003571428571448,-0.012106537530245,-0.000000000000000,2 +9928,9986,9988,10046,0.160714285714297,-0.281234866828172,0.158928571428573,-0.285926150121151,0.158928571428573,-0.273759079903246,0.157142857142849,-0.278450363196225,0.012227602905559,0.000000000000000,-0.002845036319601,-0.003571428571448,0.002723970944294,0.003571428571448,-0.012106537530252,-0.000000000000000,2 +9929,9987,9989,10047,0.160714285714297,-0.269007263922620,0.158928571428573,-0.273759079903246,0.158928571428573,-0.261592009685354,0.157142857142849,-0.266343825665980,0.012227602905546,0.000000000000000,-0.002723970944294,-0.003571428571448,0.002602905568985,0.003571428571448,-0.012106537530237,-0.000000000000000,2 +9930,9988,9990,10048,0.160714285714297,-0.256779661017073,0.158928571428573,-0.261592009685354,0.158928571428573,-0.249424939467460,0.157142857142849,-0.254237288135742,0.012227602905549,0.000000000000000,-0.002602905568985,-0.003571428571448,0.002481840193676,0.003571428571448,-0.012106537530239,-0.000000000000000,2 +9931,9989,9991,10049,0.160714285714297,-0.244552058111522,0.158928571428573,-0.249424939467460,0.158928571428573,-0.237257869249560,0.157142857142849,-0.242130750605499,0.012227602905554,0.000000000000000,-0.002481840193676,-0.003571428571448,0.002360774818369,0.003571428571448,-0.012106537530247,-0.000000000000000,2 +9932,9990,9992,10050,0.160714285714297,-0.232324455205966,0.158928571428573,-0.237257869249560,0.158928571428573,-0.225090799031657,0.157142857142849,-0.230024213075251,0.012227602905558,0.000000000000000,-0.002360774818369,-0.003571428571448,0.002239709443060,0.003571428571448,-0.012106537530249,-0.000000000000000,2 +9933,9991,9993,10051,0.160714285714297,-0.220096852300412,0.158928571428573,-0.225090799031657,0.158928571428573,-0.212923728813760,0.157142857142849,-0.217917675545005,0.012227602905550,0.000000000000000,-0.002239709443060,-0.003571428571448,0.002118644067753,0.003571428571448,-0.012106537530244,-0.000000000000000,2 +9934,9992,9994,10052,0.160714285714297,-0.207869249394860,0.158928571428573,-0.212923728813760,0.158928571428573,-0.200756658595861,0.157142857142849,-0.205811138014761,0.012227602905554,0.000000000000000,-0.002118644067753,-0.003571428571448,0.001997578692444,0.003571428571448,-0.012106537530245,-0.000000000000000,2 +9935,9993,9995,10053,0.160714285714297,-0.195641646489309,0.158928571428573,-0.200756658595861,0.158928571428573,-0.188589588377967,0.157142857142849,-0.193704600484519,0.012227602905548,0.000000000000000,-0.001997578692444,-0.003571428571448,0.001876513317136,0.003571428571448,-0.012106537530240,-0.000000000000000,2 +9936,9994,9996,10054,0.160714285714297,-0.183414043583759,0.158928571428573,-0.188589588377967,0.158928571428573,-0.176422518160070,0.157142857142849,-0.181598062954277,0.012227602905551,0.000000000000000,-0.001876513317136,-0.003571428571448,0.001755447941827,0.003571428571448,-0.012106537530243,-0.000000000000000,2 +9937,9995,9997,10055,0.160714285714297,-0.171186440678210,0.158928571428573,-0.176422518160070,0.158928571428573,-0.164255447942177,0.157142857142849,-0.169491525424036,0.012227602905546,0.000000000000000,-0.001755447941827,-0.003571428571448,0.001634382566520,0.003571428571448,-0.012106537530239,0.000000000000000,2 +9938,9996,9998,10056,0.160714285714297,-0.158958837772661,0.158928571428573,-0.164255447942177,0.158928571428573,-0.152088377724279,0.157142857142849,-0.157384987893795,0.012227602905553,0.000000000000000,-0.001634382566520,-0.003571428571448,0.001513317191211,0.003571428571448,-0.012106537530243,-0.000000000000000,2 +9939,9997,9999,10057,0.160714285714297,-0.146731234867109,0.158928571428573,-0.152088377724279,0.158928571428573,-0.139921307506383,0.157142857142849,-0.145278450363552,0.012227602905550,0.000000000000000,-0.001513317191211,-0.003571428571448,0.001392251815903,0.003571428571448,-0.012106537530242,-0.000000000000000,2 +9940,9998,10000,10058,0.160714285714297,-0.134503631961556,0.158928571428573,-0.139921307506383,0.158928571428573,-0.127754237288479,0.157142857142849,-0.133171912833306,0.012227602905558,0.000000000000000,-0.001392251815903,-0.003571428571448,0.001271186440595,0.003571428571448,-0.012106537530251,-0.000000000000000,2 +9941,9999,10001,10059,0.160714285714297,-0.122276029056000,0.158928571428573,-0.127754237288479,0.158928571428573,-0.115587167070581,0.157142857142849,-0.121065375303059,0.012227602905552,0.000000000000000,-0.001271186440595,-0.003571428571448,0.001150121065286,0.003571428571448,-0.012106537530243,-0.000000000000000,2 +9942,10000,10002,10060,0.160714285714297,-0.110048426150451,0.158928571428573,-0.115587167070581,0.158928571428573,-0.103420096852688,0.157142857142849,-0.108958837772818,0.012227602905547,0.000000000000000,-0.001150121065286,-0.003571428571448,0.001029055689979,0.003571428571448,-0.012106537530240,-0.000000000000000,2 +9943,10001,10003,10061,0.160714285714297,-0.097820823244901,0.158928571428573,-0.103420096852688,0.158928571428573,-0.091253026634790,0.157142857142849,-0.096852300242576,0.012227602905553,0.000000000000000,-0.001029055689979,-0.003571428571448,0.000907990314670,0.003571428571448,-0.012106537530243,-0.000000000000000,2 +9944,10002,10004,10062,0.160714285714297,-0.085593220339350,0.158928571428573,-0.091253026634790,0.158928571428573,-0.079085956416895,0.157142857142849,-0.084745762712334,0.012227602905549,0.000000000000000,-0.000907990314670,-0.003571428571448,0.000786924939362,0.003571428571448,-0.012106537530241,-0.000000000000000,2 +9945,10003,10005,10063,0.160714285714297,-0.073365617433800,0.158928571428573,-0.079085956416895,0.158928571428573,-0.066918886198997,0.157142857142849,-0.072639225182092,0.012227602905552,0.000000000000000,-0.000786924939362,-0.003571428571448,0.000665859564053,0.003571428571448,-0.012106537530243,-0.000000000000000,2 +9946,10004,10006,10064,0.160714285714297,-0.061138014528249,0.158928571428573,-0.066918886198997,0.158928571428573,-0.054751815981102,0.157142857142849,-0.060532687651850,0.012227602905549,0.000000000000000,-0.000665859564053,-0.003571428571448,0.000544794188745,0.003571428571448,-0.012106537530241,-0.000000000000000,2 +9947,10005,10007,10065,0.160714285714297,-0.048910411622700,0.158928571428573,-0.054751815981102,0.158928571428573,-0.042584745763206,0.157142857142849,-0.048426150121609,0.012227602905550,0.000000000000000,-0.000544794188745,-0.003571428571448,0.000423728813437,0.003571428571448,-0.012106537530242,-0.000000000000000,2 +9948,10006,10008,10066,0.160714285714297,-0.036682808717149,0.158928571428573,-0.042584745763206,0.158928571428573,-0.030417675545310,0.157142857142849,-0.036319612591367,0.012227602905551,0.000000000000000,-0.000423728813437,-0.003571428571448,0.000302663438128,0.003571428571448,-0.012106537530242,-0.000000000000000,2 +9949,10007,10009,10067,0.160714285714297,-0.024455205811599,0.158928571428573,-0.030417675545310,0.158928571428573,-0.018250605327415,0.157142857142849,-0.024213075061125,0.012227602905549,0.000000000000000,-0.000302663438128,-0.003571428571448,0.000181598062820,0.003571428571448,-0.012106537530241,-0.000000000000000,2 +9950,10008,10010,10068,0.160714285714297,-0.012227602906049,0.158928571428573,-0.018250605327415,0.158928571428573,-0.006083535109518,0.157142857142849,-0.012106537530883,0.012227602905552,0.000000000000000,-0.000181598062820,-0.003571428571448,0.000060532687511,0.003571428571448,-0.012106537530243,-0.000000000000000,2 +9951,10009,10011,10069,0.160714285714297,-0.000000000000484,0.158928571428573,-0.006083535109518,0.158928571428573,0.006083535108409,0.157142857142849,-0.000000000000624,0.012227602905578,0.000000000000000,-0.000060532687511,-0.003571428571448,-0.000060532687791,0.003571428571448,-0.012106537530276,-0.000000000000000,2 +9952,10010,10012,10070,0.160714285714297,0.012227602905095,0.158928571428573,0.006083535108409,0.158928571428573,0.018250605326341,0.157142857142849,0.012106537529655,0.012227602905581,0.000000000000000,0.000060532687791,-0.003571428571448,-0.000181598063090,0.003571428571448,-0.012106537530282,-0.000000000000000,2 +9953,10011,10013,10071,0.160714285714297,0.024455205810681,0.158928571428573,0.018250605326341,0.158928571428573,0.030417675544282,0.157142857142849,0.024213075059942,0.012227602905590,0.000000000000000,0.000181598063090,-0.003571428571448,-0.000302663438388,0.003571428571448,-0.012106537530292,-0.000000000000000,2 +9954,10012,10014,10072,0.160714285714297,0.036682808716268,0.158928571428573,0.030417675544282,0.158928571428573,0.042584745762217,0.157142857142849,0.036319612590231,0.012227602905585,0.000000000000000,0.000302663438388,-0.003571428571448,-0.000423728813686,0.003571428571448,-0.012106537530286,-0.000000000000000,2 +9955,10013,10015,10073,0.160714285714297,0.048910411621853,0.158928571428573,0.042584745762217,0.158928571428573,0.054751815980154,0.157142857142849,0.048426150120518,0.012227602905586,0.000000000000000,0.000423728813686,-0.003571428571448,-0.000544794188985,0.003571428571448,-0.012106537530288,-0.000000000000000,2 +9956,10014,10016,10074,0.160714285714297,0.061138014527441,0.158928571428573,0.054751815980154,0.158928571428573,0.066918886198094,0.157142857142849,0.060532687650807,0.012227602905590,0.000000000000000,0.000544794188985,-0.003571428571448,-0.000665859564283,0.003571428571448,-0.012106537530292,-0.000000000000000,2 +9957,10015,10017,10075,0.160714285714297,0.073365617433026,0.158928571428573,0.066918886198094,0.158928571428573,0.079085956416026,0.157142857142849,0.072639225181094,0.012227602905581,0.000000000000000,0.000665859564283,-0.003571428571448,-0.000786924939581,0.003571428571448,-0.012106537530282,-0.000000000000000,2 +9958,10016,10018,10076,0.160714285714297,0.085593220338610,0.158928571428573,0.079085956416026,0.158928571428573,0.091253026633964,0.157142857142849,0.084745762711380,0.012227602905587,0.000000000000000,0.000786924939581,-0.003571428571448,-0.000907990314878,0.003571428571448,-0.012106537530290,-0.000000000000000,2 +9959,10017,10019,10077,0.160714285714297,0.097820823244197,0.158928571428573,0.091253026633964,0.158928571428573,0.103420096851903,0.157142857142849,0.096852300241670,0.012227602905588,0.000000000000000,0.000907990314878,-0.003571428571448,-0.001029055690176,0.003571428571448,-0.012106537530290,-0.000000000000000,2 +9960,10018,10020,10078,0.160714285714297,0.110048426149782,0.158928571428573,0.103420096851903,0.158928571428573,0.115587167069835,0.157142857142849,0.108958837771957,0.012227602905581,0.000000000000000,0.001029055690176,-0.003571428571448,-0.001150121065474,0.003571428571448,-0.012106537530282,-0.000000000000000,2 +9961,10019,10021,10079,0.160714285714297,0.122276029055367,0.158928571428573,0.115587167069835,0.158928571428573,0.127754237287776,0.157142857142849,0.121065375302244,0.012227602905590,0.000000000000000,0.001150121065474,-0.003571428571448,-0.001271186440772,0.003571428571448,-0.012106537530292,-0.000000000000000,2 +9962,10020,10022,10080,0.160714285714297,0.134503631960953,0.158928571428573,0.127754237287776,0.158928571428573,0.139921307505708,0.157142857142849,0.133171912832531,0.012227602905581,0.000000000000000,0.001271186440772,-0.003571428571448,-0.001392251816071,0.003571428571448,-0.012106537530283,-0.000000000000000,2 +9963,10021,10023,10081,0.160714285714297,0.146731234866537,0.158928571428573,0.139921307505708,0.158928571428573,0.152088377723647,0.157142857142849,0.145278450362817,0.012227602905588,0.000000000000000,0.001392251816071,-0.003571428571448,-0.001513317191369,0.003571428571448,-0.012106537530290,-0.000000000000000,2 +9964,10022,10024,10082,0.160714285714297,0.158958837772117,0.158928571428573,0.152088377723647,0.158928571428573,0.164255447941568,0.157142857142849,0.157384987893098,0.012227602905571,0.000000000000000,0.001513317191369,-0.003571428571448,-0.001634382566669,0.003571428571448,-0.012106537530271,-0.000000000000000,2 +9965,10023,10025,10083,0.160714285714297,0.171186440677692,0.158928571428573,0.164255447941568,0.158928571428573,0.176422518159498,0.157142857142849,0.169491525423374,0.012227602905579,0.000000000000000,0.001634382566669,-0.003571428571448,-0.001755447941968,0.003571428571448,-0.012106537530280,-0.000000000000000,2 +9966,10024,10026,10084,0.160714285714297,0.183414043583280,0.158928571428573,0.176422518159498,0.158928571428573,0.188589588377446,0.157142857142849,0.181598062953664,0.012227602905597,0.000000000000000,0.001755447941968,-0.003571428571448,-0.001876513317265,0.003571428571448,-0.012106537530300,-0.000000000000000,2 +9967,10025,10027,10085,0.160714285714297,0.195641646488864,0.158928571428573,0.188589588377446,0.158928571428573,0.200756658595368,0.157142857142849,0.193704600483949,0.012227602905571,0.000000000000000,0.001876513317265,-0.003571428571448,-0.001997578692565,0.003571428571448,-0.012106537530271,-0.000000000000000,2 +9968,10026,10028,10086,0.160714285714297,0.207869249394452,0.158928571428573,0.200756658595368,0.158928571428573,0.212923728813324,0.157142857142849,0.205811138014239,0.012227602905605,0.000000000000000,0.001997578692565,-0.003571428571448,-0.002118644067861,0.003571428571448,-0.012106537530308,-0.000000000000000,2 +9969,10027,10029,10087,0.160714285714297,0.220096852300040,0.158928571428573,0.212923728813324,0.158928571428573,0.225090799031246,0.157142857142849,0.217917675544529,0.012227602905572,0.000000000000000,0.002118644067861,-0.003571428571448,-0.002239709443161,0.003571428571448,-0.012106537530272,-0.000000000000000,2 +9970,10028,10030,10088,0.160714285714297,0.232324455205623,0.158928571428573,0.225090799031246,0.158928571428573,0.237257869249190,0.157142857142849,0.230024213074813,0.012227602905593,0.000000000000000,0.002239709443161,-0.003571428571448,-0.002360774818459,0.003571428571448,-0.012106537530296,-0.000000000000000,2 +9971,10029,10031,10089,0.160714285714297,0.244552058111211,0.158928571428573,0.237257869249190,0.158928571428573,0.249424939467124,0.157142857142849,0.242130750605103,0.012227602905583,0.000000000000000,0.002360774818459,-0.003571428571448,-0.002481840193757,0.003571428571448,-0.012106537530284,-0.000000000000000,2 +9972,10030,10032,10090,0.160714285714297,0.256779661016793,0.158928571428573,0.249424939467124,0.158928571428573,0.261592009685056,0.157142857142849,0.254237288135387,0.012227602905582,0.000000000000000,0.002481840193757,-0.003571428571448,-0.002602905569056,0.003571428571448,-0.012106537530283,-0.000000000000000,2 +9973,10031,10033,10091,0.160714285714297,0.269007263922383,0.158928571428573,0.261592009685056,0.158928571428573,0.273759079903005,0.157142857142849,0.266343825665678,0.012227602905598,0.000000000000000,0.002602905569056,-0.003571428571448,-0.002723970944355,0.003571428571448,-0.012106537530299,-0.000000000000000,2 +9974,10032,10034,10092,0.160714285714297,0.281234866827969,0.158928571428573,0.273759079903005,0.158928571428573,0.285926150120929,0.157142857142849,0.278450363195965,0.012227602905574,0.000000000000000,0.002723970944355,-0.003571428571448,-0.002845036319655,0.003571428571448,-0.012106537530273,-0.000000000000000,2 +9975,10033,10035,10093,0.160714285714297,0.293462469733561,0.158928571428573,0.285926150120929,0.158928571428573,0.298093220338890,0.157142857142849,0.290556900726257,0.012227602905610,0.000000000000000,0.002845036319655,-0.003571428571448,-0.002966101694954,0.003571428571448,-0.012106537530312,-0.000000000000000,2 +9976,10034,10036,10094,0.160714285714297,0.305690072639153,0.158928571428573,0.298093220338890,0.158928571428573,0.310260290556813,0.157142857142849,0.302663438256549,0.012227602905573,0.000000000000000,0.002966101694954,-0.003571428571448,-0.003087167070254,0.003571428571448,-0.012106537530273,-0.000000000000000,2 +9977,10035,10037,10095,0.160714285714297,0.317917675544738,0.158928571428573,0.310260290556813,0.158928571428573,0.322427360774761,0.157142857142849,0.314769975786835,0.012227602905596,0.000000000000000,0.003087167070254,-0.003571428571448,-0.003208232445551,0.003571428571448,-0.012106537530299,-0.000000000000000,2 +9978,10036,10038,10096,0.160714285714297,0.330145278450326,0.158928571428573,0.322427360774761,0.158928571428573,0.334594430992691,0.157142857142849,0.326876513317125,0.012227602905580,0.000000000000000,0.003208232445551,-0.003571428571448,-0.003329297820850,0.003571428571448,-0.012106537530281,-0.000000000000000,2 +9979,10037,10039,10097,0.160714285714297,0.342372881355908,0.158928571428573,0.334594430992691,0.158928571428573,0.346761501210627,0.157142857142849,0.338983050847409,0.012227602905585,0.000000000000000,0.003329297820850,-0.003571428571448,-0.003450363196149,0.003571428571448,-0.012106537530287,-0.000000000000000,2 +7696,9980,10038,10098,0.158928571428573,0.358928571428573,0.160714285714297,0.354600484261499,0.158928571428573,0.346761501210627,0.157142857142849,0.351089588377701,-0.003571428571448,0.003571428571448,0.012227602905596,-0.000000000000000,0.003450363196149,-0.003571428571448,-0.012106537530297,0.000000000000000,2 +8983,9981,10041,10099,0.155357142857132,-0.355357142857132,0.157142857142849,-0.351089588377724,0.155357142857132,-0.343311138014534,0.153571428571415,-0.347578692493943,-0.003571428571434,-0.003571428571434,0.012106537530251,0.000000000000000,0.003450363196128,0.003571428571434,-0.011985472154944,0.000000000000000,2 +9982,10040,10042,10100,0.157142857142849,-0.338983050847475,0.155357142857132,-0.343311138014534,0.155357142857132,-0.331265133171942,0.153571428571415,-0.335593220339001,0.012106537530247,0.000000000000000,-0.003450363196128,-0.003571428571434,0.003329297820819,0.003571428571434,-0.011985472154938,-0.000000000000000,2 +9983,10041,10043,10101,0.157142857142849,-0.326876513317224,0.155357142857132,-0.331265133171942,0.155357142857132,-0.319219128329340,0.153571428571415,-0.323607748184058,0.012106537530255,0.000000000000000,-0.003329297820819,-0.003571428571434,0.003208232445514,0.003571428571434,-0.011985472154949,-0.000000000000000,2 +9984,10042,10044,10102,0.157142857142849,-0.314769975786974,0.155357142857132,-0.319219128329340,0.155357142857132,-0.307173123486750,0.153571428571415,-0.311622276029115,0.012106537530244,0.000000000000000,-0.003208232445514,-0.003571428571434,0.003087167070204,0.003571428571434,-0.011985472154935,-0.000000000000000,2 +9985,10043,10045,10103,0.157142857142849,-0.302663438256724,0.155357142857132,-0.307173123486750,0.155357142857132,-0.295127118644146,0.153571428571415,-0.299636803874172,0.012106537530256,0.000000000000000,-0.003087167070204,-0.003571428571434,0.002966101694899,0.003571428571434,-0.011985472154951,-0.000000000000000,2 +9986,10044,10046,10104,0.157142857142849,-0.290556900726473,0.155357142857132,-0.295127118644146,0.155357142857132,-0.283081113801555,0.153571428571415,-0.287651331719229,0.012106537530245,0.000000000000000,-0.002966101694899,-0.003571428571434,0.002845036319590,0.003571428571434,-0.011985472154937,-0.000000000000000,2 +9987,10045,10047,10105,0.157142857142849,-0.278450363196225,0.155357142857132,-0.283081113801555,0.155357142857132,-0.271035108958957,0.153571428571415,-0.275665859564288,0.012106537530252,0.000000000000000,-0.002845036319590,-0.003571428571434,0.002723970944284,0.003571428571434,-0.011985472154945,-0.000000000000000,2 +9988,10046,10048,10106,0.157142857142849,-0.266343825665980,0.155357142857132,-0.271035108958957,0.155357142857132,-0.258989104116374,0.153571428571415,-0.263680387409351,0.012106537530237,0.000000000000000,-0.002723970944284,-0.003571428571434,0.002602905568975,0.003571428571434,-0.011985472154929,0.000000000000000,2 +9989,10047,10049,10107,0.157142857142849,-0.254237288135742,0.155357142857132,-0.258989104116374,0.155357142857132,-0.246943099273789,0.153571428571415,-0.251694915254421,0.012106537530239,0.000000000000000,-0.002602905568975,-0.003571428571434,0.002481840193667,0.003571428571434,-0.011985472154931,-0.000000000000000,2 +9990,10048,10050,10108,0.157142857142849,-0.242130750605499,0.155357142857132,-0.246943099273789,0.155357142857132,-0.234897094431196,0.153571428571415,-0.239709443099486,0.012106537530247,0.000000000000000,-0.002481840193667,-0.003571428571434,0.002360774818360,0.003571428571434,-0.011985472154940,-0.000000000000000,2 +9991,10049,10051,10109,0.157142857142849,-0.230024213075251,0.155357142857132,-0.234897094431196,0.155357142857132,-0.222851089588601,0.153571428571415,-0.227723970944546,0.012106537530249,0.000000000000000,-0.002360774818360,-0.003571428571434,0.002239709443051,0.003571428571434,-0.011985472154940,-0.000000000000000,2 +9992,10050,10052,10110,0.157142857142849,-0.217917675545005,0.155357142857132,-0.222851089588601,0.155357142857132,-0.210805084746011,0.153571428571415,-0.215738498789607,0.012106537530244,0.000000000000000,-0.002239709443051,-0.003571428571434,0.002118644067746,0.003571428571434,-0.011985472154938,-0.000000000000000,2 +9993,10051,10053,10111,0.157142857142849,-0.205811138014761,0.155357142857132,-0.210805084746011,0.155357142857132,-0.198759079903421,0.153571428571415,-0.203753026634670,0.012106537530245,0.000000000000000,-0.002118644067746,-0.003571428571434,0.001997578692436,0.003571428571434,-0.011985472154935,-0.000000000000000,2 +9994,10052,10054,10112,0.157142857142849,-0.193704600484519,0.155357142857132,-0.198759079903421,0.155357142857132,-0.186713075060834,0.153571428571415,-0.191767554479736,0.012106537530240,0.000000000000000,-0.001997578692436,-0.003571428571434,0.001876513317129,0.003571428571434,-0.011985472154933,-0.000000000000000,2 +9995,10053,10055,10113,0.157142857142849,-0.181598062954277,0.155357142857132,-0.186713075060834,0.155357142857132,-0.174667070218246,0.153571428571415,-0.179782082324802,0.012106537530243,0.000000000000000,-0.001876513317129,-0.003571428571434,0.001755447941821,0.003571428571434,-0.011985472154934,-0.000000000000000,2 +9996,10054,10056,10114,0.157142857142849,-0.169491525424036,0.155357142857132,-0.174667070218246,0.155357142857132,-0.162621065375660,0.153571428571415,-0.167796610169869,0.012106537530239,-0.000000000000000,-0.001755447941821,-0.003571428571434,0.001634382566514,0.003571428571434,-0.011985472154933,-0.000000000000000,2 +9997,10055,10057,10115,0.157142857142849,-0.157384987893795,0.155357142857132,-0.162621065375660,0.155357142857132,-0.150575060533071,0.153571428571415,-0.155811138014935,0.012106537530243,0.000000000000000,-0.001634382566514,-0.003571428571434,0.001513317191205,0.003571428571434,-0.011985472154935,-0.000000000000000,2 +9998,10056,10058,10116,0.157142857142849,-0.145278450363552,0.155357142857132,-0.150575060533071,0.155357142857132,-0.138529055690483,0.153571428571415,-0.143825665860001,0.012106537530242,0.000000000000000,-0.001513317191205,-0.003571428571434,0.001392251815898,0.003571428571434,-0.011985472154934,-0.000000000000000,2 +9999,10057,10059,10117,0.157142857142849,-0.133171912833306,0.155357142857132,-0.138529055690483,0.155357142857132,-0.126483050847886,0.153571428571415,-0.131840193705062,0.012106537530251,0.000000000000000,-0.001392251815898,-0.003571428571434,0.001271186440591,0.003571428571434,-0.011985472154944,-0.000000000000000,2 +10000,10058,10060,10118,0.157142857142849,-0.121065375303059,0.155357142857132,-0.126483050847886,0.155357142857132,-0.114437046005297,0.153571428571415,-0.119854721550123,0.012106537530243,0.000000000000000,-0.001271186440591,-0.003571428571434,0.001150121065282,0.003571428571434,-0.011985472154934,-0.000000000000000,2 +10001,10059,10061,10119,0.157142857142849,-0.108958837772818,0.155357142857132,-0.114437046005297,0.155357142857132,-0.102391041162711,0.153571428571415,-0.107869249395189,0.012106537530240,0.000000000000000,-0.001150121065282,-0.003571428571434,0.001029055689975,0.003571428571434,-0.011985472154933,-0.000000000000000,2 +10002,10060,10062,10120,0.157142857142849,-0.096852300242576,0.155357142857132,-0.102391041162711,0.155357142857132,-0.090345036320122,0.153571428571415,-0.095883777240256,0.012106537530243,0.000000000000000,-0.001029055689975,-0.003571428571434,0.000907990314666,0.003571428571434,-0.011985472154935,-0.000000000000000,2 +10003,10061,10063,10121,0.157142857142849,-0.084745762712334,0.155357142857132,-0.090345036320122,0.155357142857132,-0.078299031477534,0.153571428571415,-0.083898305085322,0.012106537530241,0.000000000000000,-0.000907990314666,-0.003571428571434,0.000786924939359,0.003571428571434,-0.011985472154934,-0.000000000000000,2 +10004,10062,10064,10122,0.157142857142849,-0.072639225182092,0.155357142857132,-0.078299031477534,0.155357142857132,-0.066253026634946,0.153571428571415,-0.071912832930388,0.012106537530243,0.000000000000000,-0.000786924939359,-0.003571428571434,0.000665859564050,0.003571428571434,-0.011985472154934,-0.000000000000000,2 +10005,10063,10065,10123,0.157142857142849,-0.060532687651850,0.155357142857132,-0.066253026634946,0.155357142857132,-0.054207021792358,0.153571428571415,-0.059927360775454,0.012106537530241,0.000000000000000,-0.000665859564050,-0.003571428571434,0.000544794188743,0.003571428571434,-0.011985472154934,-0.000000000000000,2 +10006,10064,10066,10124,0.157142857142849,-0.048426150121609,0.155357142857132,-0.054207021792358,0.155357142857132,-0.042161016949771,0.153571428571415,-0.047941888620520,0.012106537530242,0.000000000000000,-0.000544794188743,-0.003571428571434,0.000423728813435,0.003571428571434,-0.011985472154934,-0.000000000000000,2 +10007,10065,10067,10125,0.157142857142849,-0.036319612591367,0.155357142857132,-0.042161016949771,0.155357142857132,-0.030115012107182,0.153571428571415,-0.035956416465586,0.012106537530242,0.000000000000000,-0.000423728813435,-0.003571428571434,0.000302663438127,0.003571428571434,-0.011985472154934,-0.000000000000000,2 +10008,10066,10068,10126,0.157142857142849,-0.024213075061125,0.155357142857132,-0.030115012107182,0.155357142857132,-0.018069007264595,0.153571428571415,-0.023970944310652,0.012106537530241,0.000000000000000,-0.000302663438127,-0.003571428571434,0.000181598062819,0.003571428571434,-0.011985472154934,-0.000000000000000,2 +10009,10067,10069,10127,0.157142857142849,-0.012106537530883,0.155357142857132,-0.018069007264595,0.155357142857132,-0.006023002422007,0.153571428571415,-0.011985472155718,0.012106537530243,0.000000000000000,-0.000181598062819,-0.003571428571434,0.000060532687511,0.003571428571434,-0.011985472154934,-0.000000000000000,2 +10010,10068,10070,10128,0.157142857142849,-0.000000000000624,0.155357142857132,-0.006023002422007,0.155357142857132,0.006023002420618,0.153571428571415,-0.000000000000764,0.012106537530276,0.000000000000000,-0.000060532687511,-0.003571428571434,-0.000060532687791,0.003571428571434,-0.011985472154974,-0.000000000000000,2 +10011,10069,10071,10129,0.157142857142849,0.012106537529655,0.155357142857132,0.006023002420618,0.155357142857132,0.018069007263251,0.153571428571415,0.011985472154215,0.012106537530282,0.000000000000000,0.000060532687791,-0.003571428571434,-0.000181598063089,0.003571428571434,-0.011985472154984,-0.000000000000000,2 +10012,10070,10072,10130,0.157142857142849,0.024213075059942,0.155357142857132,0.018069007263251,0.155357142857132,0.030115012105894,0.153571428571415,0.023970944309204,0.012106537530292,0.000000000000000,0.000181598063089,-0.003571428571434,-0.000302663438387,0.003571428571434,-0.011985472154994,-0.000000000000000,2 +10013,10071,10073,10131,0.157142857142849,0.036319612590231,0.155357142857132,0.030115012105894,0.155357142857132,0.042161016948531,0.153571428571415,0.035956416464195,0.012106537530286,0.000000000000000,0.000302663438387,-0.003571428571434,-0.000423728813685,0.003571428571434,-0.011985472154988,-0.000000000000000,2 +10014,10072,10074,10132,0.157142857142849,0.048426150120518,0.155357142857132,0.042161016948531,0.155357142857132,0.054207021791170,0.153571428571415,0.047941888619184,0.012106537530288,0.000000000000000,0.000423728813685,-0.003571428571434,-0.000544794188983,0.003571428571434,-0.011985472154990,-0.000000000000000,2 +10015,10073,10075,10133,0.157142857142849,0.060532687650807,0.155357142857132,0.054207021791170,0.155357142857132,0.066253026633813,0.153571428571415,0.059927360774176,0.012106537530292,0.000000000000000,0.000544794188983,-0.003571428571434,-0.000665859564280,0.003571428571434,-0.011985472154994,-0.000000000000000,2 +10016,10074,10076,10134,0.157142857142849,0.072639225181094,0.155357142857132,0.066253026633813,0.155357142857132,0.078299031476446,0.153571428571415,0.071912832929165,0.012106537530282,0.000000000000000,0.000665859564280,-0.003571428571434,-0.000786924939578,0.003571428571434,-0.011985472154984,-0.000000000000000,2 +10017,10075,10077,10135,0.157142857142849,0.084745762711380,0.155357142857132,0.078299031476446,0.155357142857132,0.090345036319088,0.153571428571415,0.083898305084154,0.012106537530290,0.000000000000000,0.000786924939578,-0.003571428571434,-0.000907990314875,0.003571428571434,-0.011985472154993,-0.000000000000000,2 +10018,10076,10078,10136,0.157142857142849,0.096852300241670,0.155357142857132,0.090345036319088,0.155357142857132,0.102391041161730,0.153571428571415,0.095883777239147,0.012106537530290,0.000000000000000,0.000907990314875,-0.003571428571434,-0.001029055690172,0.003571428571434,-0.011985472154994,-0.000000000000000,2 +10019,10077,10079,10137,0.157142857142849,0.108958837771957,0.155357142857132,0.102391041161730,0.155357142857132,0.114437046004363,0.153571428571415,0.107869249394136,0.012106537530282,0.000000000000000,0.001029055690172,-0.003571428571434,-0.001150121065470,0.003571428571434,-0.011985472154984,-0.000000000000000,2 +10020,10078,10080,10138,0.157142857142849,0.121065375302244,0.155357142857132,0.114437046004363,0.155357142857132,0.126483050847006,0.153571428571415,0.119854721549125,0.012106537530292,0.000000000000000,0.001150121065470,-0.003571428571434,-0.001271186440768,0.003571428571434,-0.011985472154994,-0.000000000000000,2 +10021,10079,10081,10139,0.157142857142849,0.133171912832531,0.155357142857132,0.126483050847006,0.155357142857132,0.138529055689639,0.153571428571415,0.131840193704114,0.012106537530283,0.000000000000000,0.001271186440768,-0.003571428571434,-0.001392251816066,0.003571428571434,-0.011985472154984,-0.000000000000000,2 +10022,10080,10082,10140,0.157142857142849,0.145278450362817,0.155357142857132,0.138529055689639,0.155357142857132,0.150575060532281,0.153571428571415,0.143825665859103,0.012106537530290,0.000000000000000,0.001392251816066,-0.003571428571434,-0.001513317191363,0.003571428571434,-0.011985472154992,-0.000000000000000,2 +10023,10081,10083,10141,0.157142857142849,0.157384987893098,0.155357142857132,0.150575060532281,0.155357142857132,0.162621065374902,0.153571428571415,0.155811138014085,0.012106537530271,0.000000000000000,0.001513317191363,-0.003571428571434,-0.001634382566663,0.003571428571434,-0.011985472154972,-0.000000000000000,2 +10024,10082,10084,10142,0.157142857142849,0.169491525423374,0.155357142857132,0.162621065374902,0.155357142857132,0.174667070217533,0.153571428571415,0.167796610169062,0.012106537530280,0.000000000000000,0.001634382566663,-0.003571428571434,-0.001755447941961,0.003571428571434,-0.011985472154981,-0.000000000000000,2 +10025,10083,10085,10143,0.157142857142849,0.181598062953664,0.155357142857132,0.174667070217533,0.155357142857132,0.186713075060185,0.153571428571415,0.179782082324054,0.012106537530300,0.000000000000000,0.001755447941961,-0.003571428571434,-0.001876513317258,0.003571428571434,-0.011985472155003,-0.000000000000000,2 +10026,10084,10086,10144,0.157142857142849,0.193704600483949,0.155357142857132,0.186713075060185,0.155357142857132,0.198759079902807,0.153571428571415,0.191767554479042,0.012106537530271,0.000000000000000,0.001876513317258,-0.003571428571434,-0.001997578692557,0.003571428571434,-0.011985472154972,-0.000000000000000,2 +10027,10085,10087,10145,0.157142857142849,0.205811138014239,0.155357142857132,0.198759079902807,0.155357142857132,0.210805084745466,0.153571428571415,0.203753026634034,0.012106537530308,0.000000000000000,0.001997578692557,-0.003571428571434,-0.002118644067853,0.003571428571434,-0.011985472155012,-0.000000000000000,2 +10028,10086,10088,10146,0.157142857142849,0.217917675544529,0.155357142857132,0.210805084745466,0.155357142857132,0.222851089588089,0.153571428571415,0.215738498789026,0.012106537530272,0.000000000000000,0.002118644067853,-0.003571428571434,-0.002239709443152,0.003571428571434,-0.011985472154973,-0.000000000000000,2 +10029,10087,10089,10147,0.157142857142849,0.230024213074813,0.155357142857132,0.222851089588089,0.155357142857132,0.234897094430736,0.153571428571415,0.227723970944012,0.012106537530296,0.000000000000000,0.002239709443152,-0.003571428571434,-0.002360774818450,0.003571428571434,-0.011985472154998,-0.000000000000000,2 +10030,10088,10090,10148,0.157142857142849,0.242130750605103,0.155357142857132,0.234897094430736,0.155357142857132,0.246943099273371,0.153571428571415,0.239709443099004,0.012106537530284,0.000000000000000,0.002360774818450,-0.003571428571434,-0.002481840193748,0.003571428571434,-0.011985472154986,-0.000000000000000,2 +10031,10089,10091,10149,0.157142857142849,0.254237288135387,0.155357142857132,0.246943099273371,0.155357142857132,0.258989104116005,0.153571428571415,0.251694915253990,0.012106537530283,0.000000000000000,0.002481840193748,-0.003571428571434,-0.002602905569046,0.003571428571434,-0.011985472154985,-0.000000000000000,2 +10032,10090,10092,10150,0.157142857142849,0.266343825665678,0.155357142857132,0.258989104116005,0.155357142857132,0.271035108958656,0.153571428571415,0.263680387408983,0.012106537530299,0.000000000000000,0.002602905569046,-0.003571428571434,-0.002723970944344,0.003571428571434,-0.011985472155001,-0.000000000000000,2 +10033,10091,10093,10151,0.157142857142849,0.278450363195965,0.155357142857132,0.271035108958656,0.155357142857132,0.283081113801279,0.153571428571415,0.275665859563970,0.012106537530273,0.000000000000000,0.002723970944344,-0.003571428571434,-0.002845036319645,0.003571428571434,-0.011985472154973,-0.000000000000000,2 +10034,10092,10094,10152,0.157142857142849,0.290556900726257,0.155357142857132,0.283081113801279,0.155357142857132,0.295127118643942,0.153571428571415,0.287651331718964,0.012106537530312,0.000000000000000,0.002845036319645,-0.003571428571434,-0.002966101694942,0.003571428571434,-0.011985472155014,-0.000000000000000,2 +10035,10093,10095,10153,0.157142857142849,0.302663438256549,0.155357142857132,0.295127118643942,0.155357142857132,0.307173123486565,0.153571428571415,0.299636803873957,0.012106537530273,0.000000000000000,0.002966101694942,-0.003571428571434,-0.003087167070242,0.003571428571434,-0.011985472154973,-0.000000000000000,2 +10036,10094,10096,10154,0.157142857142849,0.314769975786835,0.155357142857132,0.307173123486565,0.155357142857132,0.319219128329215,0.153571428571415,0.311622276028945,0.012106537530299,0.000000000000000,0.003087167070242,-0.003571428571434,-0.003208232445539,0.003571428571434,-0.011985472155002,-0.000000000000000,2 +10037,10095,10097,10155,0.157142857142849,0.326876513317125,0.155357142857132,0.319219128329215,0.155357142857132,0.331265133171847,0.153571428571415,0.323607748183937,0.012106537530281,0.000000000000000,0.003208232445539,-0.003571428571434,-0.003329297820838,0.003571428571434,-0.011985472154982,-0.000000000000000,2 +10038,10096,10098,10156,0.157142857142849,0.338983050847409,0.155357142857132,0.331265133171847,0.155357142857132,0.343311138014485,0.153571428571415,0.335593220338923,0.012106537530287,0.000000000000000,0.003329297820838,-0.003571428571434,-0.003450363196135,0.003571428571434,-0.011985472154989,-0.000000000000000,2 +7695,10039,10097,10157,0.155357142857132,0.355357142857132,0.157142857142849,0.351089588377701,0.155357142857132,0.343311138014485,0.153571428571415,0.347578692493916,-0.003571428571434,0.003571428571434,0.012106537530297,-0.000000000000000,0.003450363196135,-0.003571428571434,-0.011985472154998,0.000000000000000,2 +8954,10040,10100,11810,0.151785714285707,-0.351785714285707,0.153571428571415,-0.347578692493943,0.151785714285707,-0.339860774818416,0.150000000000000,-0.344067796610181,-0.003571428571415,-0.003571428571415,0.011985472154944,-0.000000000000000,0.003450363196108,0.003571428571415,-0.011864406779637,-0.000000000000000,2 +10041,10099,10101,11811,0.153571428571415,-0.335593220339001,0.151785714285707,-0.339860774818416,0.151785714285707,-0.327935835351132,0.150000000000000,-0.332203389830547,0.011985472154938,0.000000000000000,-0.003450363196108,-0.003571428571415,0.003329297820800,0.003571428571415,-0.011864406779630,-0.000000000000000,2 +10042,10100,10102,11812,0.153571428571415,-0.323607748184058,0.151785714285707,-0.327935835351132,0.151785714285707,-0.316010895883835,0.150000000000000,-0.320338983050910,0.011985472154949,0.000000000000000,-0.003329297820800,-0.003571428571415,0.003208232445496,0.003571428571415,-0.011864406779645,-0.000000000000000,2 +10043,10101,10103,11813,0.153571428571415,-0.311622276029115,0.151785714285707,-0.316010895883835,0.151785714285707,-0.304085956416554,0.150000000000000,-0.308474576271274,0.011985472154935,0.000000000000000,-0.003208232445496,-0.003571428571415,0.003087167070187,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10044,10102,10104,11814,0.153571428571415,-0.299636803874172,0.151785714285707,-0.304085956416554,0.151785714285707,-0.292161016949256,0.150000000000000,-0.296610169491638,0.011985472154951,0.000000000000000,-0.003087167070187,-0.003571428571415,0.002966101694883,0.003571428571415,-0.011864406779647,-0.000000000000000,2 +10045,10103,10105,11815,0.153571428571415,-0.287651331719229,0.151785714285707,-0.292161016949256,0.151785714285707,-0.280236077481973,0.150000000000000,-0.284745762712000,0.011985472154937,0.000000000000000,-0.002966101694883,-0.003571428571415,0.002845036319575,0.003571428571415,-0.011864406779628,-0.000000000000000,2 +10046,10104,10106,11816,0.153571428571415,-0.275665859564288,0.151785714285707,-0.280236077481973,0.151785714285707,-0.268311138014681,0.150000000000000,-0.272881355932366,0.011985472154945,0.000000000000000,-0.002845036319575,-0.003571428571415,0.002723970944269,0.003571428571415,-0.011864406779640,-0.000000000000000,2 +10047,10105,10107,11817,0.153571428571415,-0.263680387409351,0.151785714285707,-0.268311138014681,0.151785714285707,-0.256386198547406,0.150000000000000,-0.261016949152736,0.011985472154929,-0.000000000000000,-0.002723970944269,-0.003571428571415,0.002602905568961,0.003571428571415,-0.011864406779621,-0.000000000000000,2 +10048,10106,10108,11818,0.153571428571415,-0.251694915254421,0.151785714285707,-0.256386198547406,0.151785714285707,-0.244461259080130,0.150000000000000,-0.249152542373114,0.011985472154931,0.000000000000000,-0.002602905568961,-0.003571428571415,0.002481840193653,0.003571428571415,-0.011864406779622,-0.000000000000000,2 +10049,10107,10109,11819,0.153571428571415,-0.239709443099486,0.151785714285707,-0.244461259080130,0.151785714285707,-0.232536319612842,0.150000000000000,-0.237288135593486,0.011985472154940,0.000000000000000,-0.002481840193653,-0.003571428571415,0.002360774818347,0.003571428571415,-0.011864406779635,-0.000000000000000,2 +10050,10108,10110,11820,0.153571428571415,-0.227723970944546,0.151785714285707,-0.232536319612842,0.151785714285707,-0.220611380145556,0.150000000000000,-0.225423728813853,0.011985472154940,0.000000000000000,-0.002360774818347,-0.003571428571415,0.002239709443039,0.003571428571415,-0.011864406779631,-0.000000000000000,2 +10051,10109,10111,11821,0.153571428571415,-0.215738498789607,0.151785714285707,-0.220611380145556,0.151785714285707,-0.208686440678271,0.150000000000000,-0.213559322034221,0.011985472154938,0.000000000000000,-0.002239709443039,-0.003571428571415,0.002118644067734,0.003571428571415,-0.011864406779633,-0.000000000000000,2 +10052,10110,10112,11822,0.153571428571415,-0.203753026634670,0.151785714285707,-0.208686440678271,0.151785714285707,-0.196761501210990,0.150000000000000,-0.201694915254591,0.011985472154935,0.000000000000000,-0.002118644067734,-0.003571428571415,0.001997578692425,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10053,10111,10113,11823,0.153571428571415,-0.191767554479736,0.151785714285707,-0.196761501210990,0.151785714285707,-0.184836561743710,0.150000000000000,-0.189830508474964,0.011985472154933,0.000000000000000,-0.001997578692425,-0.003571428571415,0.001876513317119,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10054,10112,10114,11824,0.153571428571415,-0.179782082324802,0.151785714285707,-0.184836561743710,0.151785714285707,-0.172911622276430,0.150000000000000,-0.177966101695338,0.011985472154934,0.000000000000000,-0.001876513317119,-0.003571428571415,0.001755447941811,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10055,10113,10115,11825,0.153571428571415,-0.167796610169869,0.151785714285707,-0.172911622276430,0.151785714285707,-0.160986682809150,0.150000000000000,-0.166101694915711,0.011985472154933,0.000000000000000,-0.001755447941811,-0.003571428571415,0.001634382566505,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10056,10114,10116,11826,0.153571428571415,-0.155811138014935,0.151785714285707,-0.160986682809150,0.151785714285707,-0.149061743341870,0.150000000000000,-0.154237288136084,0.011985472154935,0.000000000000000,-0.001634382566505,-0.003571428571415,0.001513317191197,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10057,10115,10117,11827,0.153571428571415,-0.143825665860001,0.151785714285707,-0.149061743341870,0.151785714285707,-0.137136803874589,0.150000000000000,-0.142372881356458,0.011985472154934,0.000000000000000,-0.001513317191197,-0.003571428571415,0.001392251815890,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10058,10116,10118,11828,0.153571428571415,-0.131840193705062,0.151785714285707,-0.137136803874589,0.151785714285707,-0.125211864407299,0.150000000000000,-0.130508474576826,0.011985472154944,0.000000000000000,-0.001392251815890,-0.003571428571415,0.001271186440583,0.003571428571415,-0.011864406779637,-0.000000000000000,2 +10059,10117,10119,11829,0.153571428571415,-0.119854721550123,0.151785714285707,-0.125211864407299,0.151785714285707,-0.113286924940018,0.150000000000000,-0.118644067797194,0.011985472154934,0.000000000000000,-0.001271186440583,-0.003571428571415,0.001150121065276,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10060,10118,10120,11830,0.153571428571415,-0.107869249395189,0.151785714285707,-0.113286924940018,0.151785714285707,-0.101361985472738,0.150000000000000,-0.106779661017567,0.011985472154933,0.000000000000000,-0.001150121065276,-0.003571428571415,0.001029055689969,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10061,10119,10121,11831,0.153571428571415,-0.095883777240256,0.151785714285707,-0.101361985472738,0.151785714285707,-0.089437046005458,0.150000000000000,-0.094915254237940,0.011985472154935,0.000000000000000,-0.001029055689969,-0.003571428571415,0.000907990314661,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10062,10120,10122,11832,0.153571428571415,-0.083898305085322,0.151785714285707,-0.089437046005458,0.151785714285707,-0.077512106538178,0.150000000000000,-0.083050847458314,0.011985472154934,0.000000000000000,-0.000907990314661,-0.003571428571415,0.000786924939354,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10063,10121,10123,11833,0.153571428571415,-0.071912832930388,0.151785714285707,-0.077512106538178,0.151785714285707,-0.065587167070897,0.150000000000000,-0.071186440678687,0.011985472154934,0.000000000000000,-0.000786924939354,-0.003571428571415,0.000665859564047,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10064,10122,10124,11834,0.153571428571415,-0.059927360775454,0.151785714285707,-0.065587167070897,0.151785714285707,-0.053662227603617,0.150000000000000,-0.059322033899060,0.011985472154934,0.000000000000000,-0.000665859564047,-0.003571428571415,0.000544794188740,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10065,10123,10125,11835,0.153571428571415,-0.047941888620520,0.151785714285707,-0.053662227603617,0.151785714285707,-0.041737288136337,0.150000000000000,-0.047457627119434,0.011985472154934,0.000000000000000,-0.000544794188740,-0.003571428571415,0.000423728813433,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10066,10124,10126,11836,0.153571428571415,-0.035956416465586,0.151785714285707,-0.041737288136337,0.151785714285707,-0.029812348669056,0.150000000000000,-0.035593220339807,0.011985472154934,0.000000000000000,-0.000423728813433,-0.003571428571415,0.000302663438125,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10067,10125,10127,11837,0.153571428571415,-0.023970944310652,0.151785714285707,-0.029812348669056,0.151785714285707,-0.017887409201776,0.150000000000000,-0.023728813560181,0.011985472154934,0.000000000000000,-0.000302663438125,-0.003571428571415,0.000181598062818,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10068,10126,10128,11838,0.153571428571415,-0.011985472155718,0.151785714285707,-0.017887409201776,0.151785714285707,-0.005962469734496,0.150000000000000,-0.011864406780554,0.011985472154934,0.000000000000000,-0.000181598062818,-0.003571428571415,0.000060532687510,0.003571428571415,-0.011864406779627,-0.000000000000000,2 +10069,10127,10129,11839,0.153571428571415,-0.000000000000764,0.151785714285707,-0.005962469734496,0.151785714285707,0.005962469732827,0.150000000000000,-0.000000000000904,0.011985472154974,0.000000000000000,-0.000060532687510,-0.003571428571415,-0.000060532687791,0.003571428571415,-0.011864406779673,-0.000000000000000,2 +10070,10128,10130,11840,0.153571428571415,0.011985472154215,0.151785714285707,0.005962469732827,0.151785714285707,0.017887409200163,0.150000000000000,0.011864406778775,0.011985472154984,0.000000000000000,0.000060532687791,-0.003571428571415,-0.000181598063088,0.003571428571415,-0.011864406779686,-0.000000000000000,2 +10071,10129,10131,11841,0.153571428571415,0.023970944309204,0.151785714285707,0.017887409200163,0.151785714285707,0.029812348667508,0.150000000000000,0.023728813558467,0.011985472154994,0.000000000000000,0.000181598063088,-0.003571428571415,-0.000302663438385,0.003571428571415,-0.011864406779697,-0.000000000000000,2 +10072,10130,10132,11842,0.153571428571415,0.035956416464195,0.151785714285707,0.029812348667508,0.151785714285707,0.041737288134848,0.150000000000000,0.035593220338161,0.011985472154988,0.000000000000000,0.000302663438385,-0.003571428571415,-0.000423728813682,0.003571428571415,-0.011864406779691,-0.000000000000000,2 +10073,10131,10133,11843,0.153571428571415,0.047941888619184,0.151785714285707,0.041737288134848,0.151785714285707,0.053662227602189,0.150000000000000,0.047457627117853,0.011985472154990,0.000000000000000,0.000423728813682,-0.003571428571415,-0.000544794188979,0.003571428571415,-0.011864406779693,-0.000000000000000,2 +10074,10132,10134,11844,0.153571428571415,0.059927360774176,0.151785714285707,0.053662227602189,0.151785714285707,0.065587167069535,0.150000000000000,0.059322033897548,0.011985472154994,0.000000000000000,0.000544794188979,-0.003571428571415,-0.000665859564276,0.003571428571415,-0.011864406779697,-0.000000000000000,2 +10075,10133,10135,11845,0.153571428571415,0.071912832929165,0.151785714285707,0.065587167069535,0.151785714285707,0.077512106536870,0.150000000000000,0.071186440677240,0.011985472154984,0.000000000000000,0.000665859564276,-0.003571428571415,-0.000786924939574,0.003571428571415,-0.011864406779686,-0.000000000000000,2 +10076,10134,10136,11846,0.153571428571415,0.083898305084154,0.151785714285707,0.077512106536870,0.151785714285707,0.089437046004215,0.150000000000000,0.083050847456932,0.011985472154993,0.000000000000000,0.000786924939574,-0.003571428571415,-0.000907990314870,0.003571428571415,-0.011864406779697,-0.000000000000000,2 +10077,10135,10137,11847,0.153571428571415,0.095883777239147,0.151785714285707,0.089437046004215,0.151785714285707,0.101361985471561,0.150000000000000,0.094915254236629,0.011985472154994,0.000000000000000,0.000907990314870,-0.003571428571415,-0.001029055690166,0.003571428571415,-0.011864406779697,-0.000000000000000,2 +10078,10136,10138,11848,0.153571428571415,0.107869249394136,0.151785714285707,0.101361985471561,0.151785714285707,0.113286924938896,0.150000000000000,0.106779661016321,0.011985472154984,0.000000000000000,0.001029055690166,-0.003571428571415,-0.001150121065464,0.003571428571415,-0.011864406779686,-0.000000000000000,2 +10079,10137,10139,11849,0.153571428571415,0.119854721549125,0.151785714285707,0.113286924938896,0.151785714285707,0.125211864406242,0.150000000000000,0.118644067796013,0.011985472154994,0.000000000000000,0.001150121065464,-0.003571428571415,-0.001271186440761,0.003571428571415,-0.011864406779697,-0.000000000000000,2 +10080,10138,10140,11850,0.153571428571415,0.131840193704114,0.151785714285707,0.125211864406242,0.151785714285707,0.137136803873577,0.150000000000000,0.130508474575705,0.011985472154984,0.000000000000000,0.001271186440761,-0.003571428571415,-0.001392251816058,0.003571428571415,-0.011864406779687,-0.000000000000000,2 +10081,10139,10141,11851,0.153571428571415,0.143825665859103,0.151785714285707,0.137136803873577,0.151785714285707,0.149061743340921,0.150000000000000,0.142372881355396,0.011985472154992,0.000000000000000,0.001392251816058,-0.003571428571415,-0.001513317191355,0.003571428571415,-0.011864406779695,-0.000000000000000,2 +10082,10140,10142,11852,0.153571428571415,0.155811138014085,0.151785714285707,0.149061743340921,0.151785714285707,0.160986682808244,0.150000000000000,0.154237288135081,0.011985472154972,0.000000000000000,0.001513317191355,-0.003571428571415,-0.001634382566653,0.003571428571415,-0.011864406779674,-0.000000000000000,2 +10083,10141,10143,11853,0.153571428571415,0.167796610169062,0.151785714285707,0.160986682808244,0.151785714285707,0.172911622275577,0.150000000000000,0.166101694914759,0.011985472154981,0.000000000000000,0.001634382566653,-0.003571428571415,-0.001755447941951,0.003571428571415,-0.011864406779684,-0.000000000000000,2 +10084,10142,10144,11854,0.153571428571415,0.179782082324054,0.151785714285707,0.172911622275577,0.151785714285707,0.184836561742932,0.150000000000000,0.177966101694455,0.011985472155003,0.000000000000000,0.001755447941951,-0.003571428571415,-0.001876513317248,0.003571428571415,-0.011864406779707,-0.000000000000000,2 +10085,10143,10145,11855,0.153571428571415,0.191767554479042,0.151785714285707,0.184836561742932,0.151785714285707,0.196761501210255,0.150000000000000,0.189830508474145,0.011985472154972,0.000000000000000,0.001876513317248,-0.003571428571415,-0.001997578692546,0.003571428571415,-0.011864406779674,-0.000000000000000,2 +10086,10144,10146,11856,0.153571428571415,0.203753026634034,0.151785714285707,0.196761501210255,0.151785714285707,0.208686440677619,0.150000000000000,0.201694915253840,0.011985472155012,0.000000000000000,0.001997578692546,-0.003571428571415,-0.002118644067842,0.003571428571415,-0.011864406779716,-0.000000000000000,2 +10087,10145,10147,11857,0.153571428571415,0.215738498789026,0.151785714285707,0.208686440677619,0.151785714285707,0.220611380144943,0.150000000000000,0.213559322033535,0.011985472154973,0.000000000000000,0.002118644067842,-0.003571428571415,-0.002239709443140,0.003571428571415,-0.011864406779674,-0.000000000000000,2 +10088,10146,10148,11858,0.153571428571415,0.227723970944012,0.151785714285707,0.220611380144943,0.151785714285707,0.232536319612293,0.150000000000000,0.225423728813224,0.011985472154998,0.000000000000000,0.002239709443140,-0.003571428571415,-0.002360774818436,0.003571428571415,-0.011864406779702,-0.000000000000000,2 +10089,10147,10149,11859,0.153571428571415,0.239709443099004,0.151785714285707,0.232536319612293,0.151785714285707,0.244461259079630,0.150000000000000,0.237288135592919,0.011985472154986,0.000000000000000,0.002360774818436,-0.003571428571415,-0.002481840193734,0.003571428571415,-0.011864406779689,-0.000000000000000,2 +10090,10148,10150,11860,0.153571428571415,0.251694915253990,0.151785714285707,0.244461259079630,0.151785714285707,0.256386198546967,0.150000000000000,0.249152542372607,0.011985472154985,0.000000000000000,0.002481840193734,-0.003571428571415,-0.002602905569032,0.003571428571415,-0.011864406779688,-0.000000000000000,2 +10091,10149,10151,11861,0.153571428571415,0.263680387408983,0.151785714285707,0.256386198546967,0.151785714285707,0.268311138014319,0.150000000000000,0.261016949152303,0.011985472155001,0.000000000000000,0.002602905569032,-0.003571428571415,-0.002723970944329,0.003571428571415,-0.011864406779703,-0.000000000000000,2 +10092,10150,10152,11862,0.153571428571415,0.275665859563970,0.151785714285707,0.268311138014319,0.151785714285707,0.280236077481642,0.150000000000000,0.272881355931991,0.011985472154973,0.000000000000000,0.002723970944329,-0.003571428571415,-0.002845036319629,0.003571428571415,-0.011864406779674,-0.000000000000000,2 +10093,10151,10153,11863,0.153571428571415,0.287651331718964,0.151785714285707,0.280236077481642,0.151785714285707,0.292161016949008,0.150000000000000,0.284745762711686,0.011985472155014,0.000000000000000,0.002845036319629,-0.003571428571415,-0.002966101694926,0.003571428571415,-0.011864406779717,-0.000000000000000,2 +10094,10152,10154,11864,0.153571428571415,0.299636803873957,0.151785714285707,0.292161016949008,0.151785714285707,0.304085956416331,0.150000000000000,0.296610169491382,0.011985472154973,0.000000000000000,0.002966101694926,-0.003571428571415,-0.003087167070225,0.003571428571415,-0.011864406779674,-0.000000000000000,2 +10095,10153,10155,11865,0.153571428571415,0.311622276028945,0.151785714285707,0.304085956416331,0.151785714285707,0.316010895883685,0.150000000000000,0.308474576271071,0.011985472155002,0.000000000000000,0.003087167070225,-0.003571428571415,-0.003208232445521,0.003571428571415,-0.011864406779706,-0.000000000000000,2 +10096,10154,10156,11866,0.153571428571415,0.323607748183937,0.151785714285707,0.316010895883685,0.151785714285707,0.327935835351019,0.150000000000000,0.320338983050767,0.011985472154982,0.000000000000000,0.003208232445521,-0.003571428571415,-0.003329297820819,0.003571428571415,-0.011864406779685,-0.000000000000000,2 +10097,10155,10157,11867,0.153571428571415,0.335593220338923,0.151785714285707,0.327935835351019,0.151785714285707,0.339860774818359,0.150000000000000,0.332203389830455,0.011985472154989,0.000000000000000,0.003329297820819,-0.003571428571415,-0.003450363196116,0.003571428571415,-0.011864406779692,-0.000000000000000,2 +7694,10098,10156,11868,0.151785714285707,0.351785714285707,0.153571428571415,0.347578692493916,0.151785714285707,0.339860774818359,0.150000000000000,0.344067796610150,-0.003571428571415,0.003571428571415,0.011985472154998,-0.000000000000000,0.003450363196116,-0.003571428571415,-0.011864406779699,0.000000000000000,2 +8113,8926,10159,10217,-0.150000000000000,-0.344067796610150,-0.144827586206906,-0.350000000000000,-0.144827586206906,-0.338135593220302,-0.139655172413811,-0.344067796610152,-0.011864406779699,-0.000000000000000,-0.000000000000000,-0.010344827586188,0.000000000000002,0.010344827586189,0.011864406779697,-0.000000000000001,2 +8127,10158,10160,10218,-0.150000000000000,-0.332203389830455,-0.144827586206906,-0.338135593220302,-0.144827586206905,-0.326271186440611,-0.139655172413811,-0.332203389830458,-0.011864406779692,0.000000000000000,-0.000000000000002,-0.010344827586189,0.000000000000004,0.010344827586190,0.011864406779690,-0.000000000000001,2 +8141,10159,10161,10219,-0.150000000000000,-0.320338983050767,-0.144827586206905,-0.326271186440611,-0.144827586206905,-0.314406779660927,-0.139655172413810,-0.320338983050772,-0.011864406779685,0.000000000000000,-0.000000000000004,-0.010344827586190,0.000000000000006,0.010344827586191,0.011864406779683,-0.000000000000001,2 +8155,10160,10162,10220,-0.150000000000000,-0.308474576271071,-0.144827586206905,-0.314406779660927,-0.144827586206904,-0.302542372881223,-0.139655172413809,-0.308474576271079,-0.011864406779706,0.000000000000000,-0.000000000000006,-0.010344827586191,0.000000000000008,0.010344827586191,0.011864406779703,-0.000000000000001,2 +8169,10161,10163,10221,-0.150000000000000,-0.296610169491382,-0.144827586206904,-0.302542372881223,-0.144827586206904,-0.290677966101549,-0.139655172413808,-0.296610169491390,-0.011864406779674,0.000000000000000,-0.000000000000008,-0.010344827586191,0.000000000000009,0.010344827586192,0.011864406779673,-0.000000000000001,2 +8183,10162,10164,10222,-0.150000000000000,-0.284745762711686,-0.144827586206904,-0.290677966101549,-0.144827586206903,-0.278813559321834,-0.139655172413807,-0.284745762711697,-0.011864406779717,0.000000000000000,-0.000000000000009,-0.010344827586192,0.000000000000012,0.010344827586193,0.011864406779714,-0.000000000000001,2 +8197,10163,10165,10223,-0.150000000000000,-0.272881355931991,-0.144827586206903,-0.278813559321834,-0.144827586206903,-0.266949152542161,-0.139655172413806,-0.272881355932004,-0.011864406779674,0.000000000000000,-0.000000000000012,-0.010344827586193,0.000000000000014,0.010344827586194,0.011864406779672,-0.000000000000001,2 +8211,10164,10166,10224,-0.150000000000000,-0.261016949152303,-0.144827586206903,-0.266949152542161,-0.144827586206903,-0.255084745762459,-0.139655172413806,-0.261016949152318,-0.011864406779703,0.000000000000000,-0.000000000000014,-0.010344827586194,0.000000000000016,0.010344827586195,0.011864406779700,-0.000000000000001,2 +8225,10165,10167,10225,-0.150000000000000,-0.249152542372607,-0.144827586206903,-0.255084745762459,-0.144827586206902,-0.243220338982773,-0.139655172413805,-0.249152542372625,-0.011864406779688,0.000000000000000,-0.000000000000016,-0.010344827586195,0.000000000000019,0.010344827586195,0.011864406779686,-0.000000000000001,2 +8239,10166,10168,10226,-0.150000000000000,-0.237288135592919,-0.144827586206902,-0.243220338982773,-0.144827586206902,-0.231355932203085,-0.139655172413804,-0.237288135592938,-0.011864406779689,0.000000000000000,-0.000000000000019,-0.010344827586195,0.000000000000021,0.010344827586196,0.011864406779687,-0.000000000000001,2 +8253,10167,10169,10227,-0.150000000000000,-0.225423728813224,-0.144827586206902,-0.231355932203085,-0.144827586206901,-0.219491525423384,-0.139655172413803,-0.225423728813245,-0.011864406779702,0.000000000000000,-0.000000000000021,-0.010344827586196,0.000000000000023,0.010344827586197,0.011864406779700,-0.000000000000001,2 +8267,10168,10170,10228,-0.150000000000000,-0.213559322033535,-0.144827586206901,-0.219491525423384,-0.144827586206901,-0.207627118643710,-0.139655172413802,-0.213559322033559,-0.011864406779674,0.000000000000000,-0.000000000000023,-0.010344827586197,0.000000000000024,0.010344827586198,0.011864406779673,-0.000000000000001,2 +8281,10169,10171,10229,-0.150000000000000,-0.201694915253840,-0.144827586206901,-0.207627118643710,-0.144827586206901,-0.195762711863996,-0.139655172413802,-0.201694915253866,-0.011864406779716,0.000000000000000,-0.000000000000024,-0.010344827586198,0.000000000000028,0.010344827586199,0.011864406779713,-0.000000000000001,2 +8295,10170,10172,10230,-0.150000000000000,-0.189830508474145,-0.144827586206901,-0.195762711863996,-0.144827586206900,-0.183898305084323,-0.139655172413801,-0.189830508474173,-0.011864406779674,0.000000000000000,-0.000000000000028,-0.010344827586199,0.000000000000029,0.010344827586200,0.011864406779672,-0.000000000000001,2 +8309,10171,10173,10231,-0.150000000000000,-0.177966101694455,-0.144827586206900,-0.183898305084323,-0.144827586206900,-0.172033898304617,-0.139655172413800,-0.177966101694485,-0.011864406779707,0.000000000000000,-0.000000000000029,-0.010344827586200,0.000000000000032,0.010344827586200,0.011864406779704,-0.000000000000001,2 +8323,10172,10174,10232,-0.150000000000000,-0.166101694914759,-0.144827586206900,-0.172033898304617,-0.144827586206899,-0.160169491524934,-0.139655172413799,-0.166101694914792,-0.011864406779684,0.000000000000000,-0.000000000000032,-0.010344827586200,0.000000000000034,0.010344827586201,0.011864406779682,-0.000000000000001,2 +8337,10173,10175,10233,-0.150000000000000,-0.154237288135081,-0.144827586206899,-0.160169491524934,-0.144827586206899,-0.148305084745262,-0.139655172413798,-0.154237288135115,-0.011864406779674,0.000000000000000,-0.000000000000034,-0.010344827586201,0.000000000000035,0.010344827586202,0.011864406779672,-0.000000000000001,2 +8351,10174,10176,10234,-0.150000000000000,-0.142372881355396,-0.144827586206899,-0.148305084745262,-0.144827586206899,-0.136440677965567,-0.139655172413798,-0.142372881355433,-0.011864406779695,0.000000000000000,-0.000000000000035,-0.010344827586202,0.000000000000038,0.010344827586203,0.011864406779693,-0.000000000000001,2 +8365,10175,10177,10235,-0.150000000000000,-0.130508474575705,-0.144827586206899,-0.136440677965567,-0.144827586206898,-0.124576271185881,-0.139655172413797,-0.130508474575744,-0.011864406779687,0.000000000000000,-0.000000000000038,-0.010344827586203,0.000000000000040,0.010344827586204,0.011864406779685,-0.000000000000001,2 +8379,10176,10178,10236,-0.150000000000000,-0.118644067796013,-0.144827586206898,-0.124576271185881,-0.144827586206898,-0.112711864406185,-0.139655172413796,-0.118644067796054,-0.011864406779697,0.000000000000000,-0.000000000000040,-0.010344827586204,0.000000000000042,0.010344827586205,0.011864406779695,-0.000000000000001,2 +8393,10177,10179,10237,-0.150000000000000,-0.106779661016321,-0.144827586206898,-0.112711864406185,-0.144827586206897,-0.100847457626500,-0.139655172413795,-0.106779661016364,-0.011864406779686,0.000000000000000,-0.000000000000042,-0.010344827586205,0.000000000000044,0.010344827586205,0.011864406779685,-0.000000000000001,2 +8407,10178,10180,10238,-0.150000000000000,-0.094915254236629,-0.144827586206897,-0.100847457626500,-0.144827586206897,-0.088983050846804,-0.139655172413794,-0.094915254236674,-0.011864406779697,0.000000000000000,-0.000000000000044,-0.010344827586205,0.000000000000046,0.010344827586206,0.011864406779695,-0.000000000000001,2 +8421,10179,10181,10239,-0.150000000000000,-0.083050847456932,-0.144827586206897,-0.088983050846804,-0.144827586206897,-0.077118644067108,-0.139655172413794,-0.083050847456979,-0.011864406779697,0.000000000000000,-0.000000000000046,-0.010344827586206,0.000000000000049,0.010344827586207,0.011864406779695,-0.000000000000001,2 +8435,10180,10182,10240,-0.150000000000000,-0.071186440677240,-0.144827586206897,-0.077118644067108,-0.144827586206896,-0.065254237287422,-0.139655172413793,-0.071186440677290,-0.011864406779686,0.000000000000000,-0.000000000000049,-0.010344827586207,0.000000000000051,0.010344827586208,0.011864406779684,-0.000000000000001,2 +8449,10181,10183,10241,-0.150000000000000,-0.059322033897548,-0.144827586206896,-0.065254237287422,-0.144827586206896,-0.053389830507726,-0.139655172413792,-0.059322033897600,-0.011864406779697,0.000000000000000,-0.000000000000051,-0.010344827586208,0.000000000000053,0.010344827586208,0.011864406779695,-0.000000000000001,2 +8463,10182,10184,10242,-0.150000000000000,-0.047457627117853,-0.144827586206896,-0.053389830507726,-0.144827586206895,-0.041525423728034,-0.139655172413791,-0.047457627117908,-0.011864406779693,0.000000000000000,-0.000000000000053,-0.010344827586208,0.000000000000056,0.010344827586209,0.011864406779691,-0.000000000000001,2 +8477,10183,10185,10243,-0.150000000000000,-0.035593220338161,-0.144827586206895,-0.041525423728034,-0.144827586206895,-0.029661016948345,-0.139655172413790,-0.035593220338218,-0.011864406779691,0.000000000000000,-0.000000000000056,-0.010344827586209,0.000000000000058,0.010344827586210,0.011864406779689,-0.000000000000001,2 +8491,10184,10186,10244,-0.150000000000000,-0.023728813558467,-0.144827586206895,-0.029661016948345,-0.144827586206895,-0.017796610168649,-0.139655172413789,-0.023728813558526,-0.011864406779697,0.000000000000000,-0.000000000000058,-0.010344827586210,0.000000000000060,0.010344827586211,0.011864406779695,-0.000000000000001,2 +8505,10185,10187,10245,-0.150000000000000,-0.011864406778775,-0.144827586206895,-0.017796610168649,-0.144827586206894,-0.005932203388963,-0.139655172413789,-0.011864406778837,-0.011864406779686,0.000000000000000,-0.000000000000060,-0.010344827586211,0.000000000000062,0.010344827586212,0.011864406779684,-0.000000000000001,2 +8519,10186,10188,10246,-0.150000000000000,0.000000000000904,-0.144827586206894,-0.005932203388963,-0.144827586206894,0.005932203390709,-0.139655172413788,0.000000000000842,-0.011864406779673,0.000000000000000,-0.000000000000062,-0.010344827586212,0.000000000000062,0.010344827586213,0.011864406779673,-0.000000000000001,2 +8533,10187,10189,10247,-0.150000000000000,0.011864406780554,-0.144827586206894,0.005932203390709,-0.144827586206893,0.017796610170337,-0.139655172413787,0.011864406780493,-0.011864406779627,0.000000000000000,-0.000000000000062,-0.010344827586213,0.000000000000060,0.010344827586213,0.011864406779629,-0.000000000000001,2 +8547,10188,10190,10248,-0.150000000000000,0.023728813560181,-0.144827586206893,0.017796610170337,-0.144827586206893,0.029661016949965,-0.139655172413786,0.023728813560121,-0.011864406779627,0.000000000000000,-0.000000000000060,-0.010344827586213,0.000000000000058,0.010344827586214,0.011864406779629,-0.000000000000001,2 +8561,10189,10191,10249,-0.150000000000000,0.035593220339807,-0.144827586206893,0.029661016949965,-0.144827586206893,0.041525423729593,-0.139655172413785,0.035593220339750,-0.011864406779627,0.000000000000000,-0.000000000000058,-0.010344827586214,0.000000000000056,0.010344827586215,0.011864406779629,-0.000000000000001,2 +8575,10190,10192,10250,-0.150000000000000,0.047457627119434,-0.144827586206893,0.041525423729593,-0.144827586206892,0.053389830509220,-0.139655172413785,0.047457627119379,-0.011864406779627,0.000000000000000,-0.000000000000056,-0.010344827586215,0.000000000000053,0.010344827586216,0.011864406779629,-0.000000000000001,2 +8589,10191,10193,10251,-0.150000000000000,0.059322033899060,-0.144827586206892,0.053389830509220,-0.144827586206892,0.065254237288848,-0.139655172413784,0.059322033899008,-0.011864406779627,0.000000000000000,-0.000000000000053,-0.010344827586216,0.000000000000051,0.010344827586217,0.011864406779629,-0.000000000000001,2 +8603,10192,10194,10252,-0.150000000000000,0.071186440678687,-0.144827586206892,0.065254237288848,-0.144827586206891,0.077118644068476,-0.139655172413783,0.071186440678637,-0.011864406779627,0.000000000000000,-0.000000000000051,-0.010344827586217,0.000000000000049,0.010344827586217,0.011864406779629,-0.000000000000001,2 +8617,10193,10195,10253,-0.150000000000000,0.083050847458314,-0.144827586206891,0.077118644068476,-0.144827586206891,0.088983050848104,-0.139655172413782,0.083050847458266,-0.011864406779627,0.000000000000000,-0.000000000000049,-0.010344827586217,0.000000000000046,0.010344827586218,0.011864406779629,-0.000000000000001,2 +8631,10194,10196,10254,-0.150000000000000,0.094915254237940,-0.144827586206891,0.088983050848104,-0.144827586206891,0.100847457627732,-0.139655172413781,0.094915254237895,-0.011864406779627,0.000000000000000,-0.000000000000046,-0.010344827586218,0.000000000000044,0.010344827586219,0.011864406779629,-0.000000000000001,2 +8645,10195,10197,10255,-0.150000000000000,0.106779661017567,-0.144827586206891,0.100847457627732,-0.144827586206890,0.112711864407359,-0.139655172413781,0.106779661017524,-0.011864406779627,0.000000000000000,-0.000000000000044,-0.010344827586219,0.000000000000042,0.010344827586220,0.011864406779629,-0.000000000000001,2 +8659,10196,10198,10256,-0.150000000000000,0.118644067797194,-0.144827586206890,0.112711864407359,-0.144827586206890,0.124576271186987,-0.139655172413780,0.118644067797153,-0.011864406779627,0.000000000000000,-0.000000000000042,-0.010344827586220,0.000000000000040,0.010344827586221,0.011864406779629,-0.000000000000001,2 +8673,10197,10199,10257,-0.150000000000000,0.130508474576826,-0.144827586206890,0.124576271186987,-0.144827586206889,0.136440677966625,-0.139655172413779,0.130508474576787,-0.011864406779637,0.000000000000000,-0.000000000000040,-0.010344827586221,0.000000000000038,0.010344827586221,0.011864406779639,-0.000000000000001,2 +8687,10198,10200,10258,-0.150000000000000,0.142372881356458,-0.144827586206889,0.136440677966625,-0.144827586206889,0.148305084746253,-0.139655172413778,0.142372881356421,-0.011864406779627,0.000000000000000,-0.000000000000038,-0.010344827586221,0.000000000000035,0.010344827586222,0.011864406779629,-0.000000000000001,2 +8701,10199,10201,10259,-0.150000000000000,0.154237288136084,-0.144827586206889,0.148305084746253,-0.144827586206888,0.160169491525881,-0.139655172413777,0.154237288136050,-0.011864406779627,0.000000000000000,-0.000000000000035,-0.010344827586222,0.000000000000034,0.010344827586223,0.011864406779628,-0.000000000000001,2 +8715,10200,10202,10260,-0.150000000000000,0.166101694915711,-0.144827586206888,0.160169491525881,-0.144827586206888,0.172033898305508,-0.139655172413777,0.166101694915678,-0.011864406779627,0.000000000000000,-0.000000000000034,-0.010344827586223,0.000000000000032,0.010344827586224,0.011864406779629,-0.000000000000001,2 +8729,10201,10203,10261,-0.150000000000000,0.177966101695338,-0.144827586206888,0.172033898305508,-0.144827586206888,0.183898305085136,-0.139655172413776,0.177966101695307,-0.011864406779627,0.000000000000000,-0.000000000000032,-0.010344827586224,0.000000000000029,0.010344827586225,0.011864406779629,-0.000000000000001,2 +8743,10202,10204,10262,-0.150000000000000,0.189830508474964,-0.144827586206888,0.183898305085136,-0.144827586206887,0.195762711864764,-0.139655172413775,0.189830508474936,-0.011864406779627,0.000000000000000,-0.000000000000029,-0.010344827586225,0.000000000000027,0.010344827586226,0.011864406779628,-0.000000000000001,2 +8757,10203,10205,10263,-0.150000000000000,0.201694915254591,-0.144827586206887,0.195762711864764,-0.144827586206887,0.207627118644392,-0.139655172413774,0.201694915254565,-0.011864406779627,0.000000000000000,-0.000000000000027,-0.010344827586226,0.000000000000024,0.010344827586226,0.011864406779630,-0.000000000000001,2 +8771,10204,10206,10264,-0.150000000000000,0.213559322034221,-0.144827586206887,0.207627118644392,-0.144827586206886,0.219491525424026,-0.139655172413773,0.213559322034197,-0.011864406779633,0.000000000000000,-0.000000000000024,-0.010344827586226,0.000000000000023,0.010344827586227,0.011864406779634,-0.000000000000001,2 +8785,10205,10207,10265,-0.150000000000000,0.225423728813853,-0.144827586206886,0.219491525424026,-0.144827586206886,0.231355932203658,-0.139655172413772,0.225423728813831,-0.011864406779631,0.000000000000000,-0.000000000000023,-0.010344827586227,0.000000000000020,0.010344827586228,0.011864406779634,-0.000000000000001,2 +8799,10206,10208,10266,-0.150000000000000,0.237288135593486,-0.144827586206886,0.231355932203658,-0.144827586206886,0.243220338983294,-0.139655172413772,0.237288135593466,-0.011864406779635,0.000000000000000,-0.000000000000020,-0.010344827586228,0.000000000000019,0.010344827586229,0.011864406779636,-0.000000000000001,2 +8813,10207,10209,10267,-0.150000000000000,0.249152542373114,-0.144827586206886,0.243220338983294,-0.144827586206885,0.255084745762917,-0.139655172413771,0.249152542373097,-0.011864406779622,0.000000000000000,-0.000000000000019,-0.010344827586229,0.000000000000016,0.010344827586230,0.011864406779625,-0.000000000000001,2 +8827,10208,10210,10268,-0.150000000000000,0.261016949152736,-0.144827586206885,0.255084745762917,-0.144827586206885,0.266949152542540,-0.139655172413770,0.261016949152721,-0.011864406779621,0.000000000000000,-0.000000000000016,-0.010344827586230,0.000000000000013,0.010344827586230,0.011864406779624,-0.000000000000001,2 +8841,10209,10211,10269,-0.150000000000000,0.272881355932366,-0.144827586206885,0.266949152542540,-0.144827586206884,0.278813559322180,-0.139655172413769,0.272881355932353,-0.011864406779640,0.000000000000000,-0.000000000000013,-0.010344827586230,0.000000000000012,0.010344827586231,0.011864406779641,-0.000000000000001,2 +8855,10210,10212,10270,-0.150000000000000,0.284745762712000,-0.144827586206884,0.278813559322180,-0.144827586206884,0.290677966101810,-0.139655172413768,0.284745762711989,-0.011864406779628,0.000000000000000,-0.000000000000012,-0.010344827586231,0.000000000000009,0.010344827586232,0.011864406779632,-0.000000000000001,2 +8869,10211,10213,10271,-0.150000000000000,0.296610169491638,-0.144827586206884,0.290677966101810,-0.144827586206884,0.302542372881457,-0.139655172413768,0.296610169491629,-0.011864406779647,0.000000000000000,-0.000000000000009,-0.010344827586232,0.000000000000008,0.010344827586233,0.011864406779648,-0.000000000000001,2 +8883,10212,10214,10272,-0.150000000000000,0.308474576271274,-0.144827586206884,0.302542372881457,-0.144827586206883,0.314406779661085,-0.139655172413767,0.308474576271267,-0.011864406779627,0.000000000000000,-0.000000000000008,-0.010344827586233,0.000000000000006,0.010344827586234,0.011864406779629,-0.000000000000001,2 +8897,10213,10215,10273,-0.150000000000000,0.320338983050910,-0.144827586206883,0.314406779661085,-0.144827586206883,0.326271186440730,-0.139655172413766,0.320338983050905,-0.011864406779645,0.000000000000000,-0.000000000000006,-0.010344827586234,0.000000000000004,0.010344827586235,0.011864406779646,-0.000000000000001,2 +8911,10214,10216,10274,-0.150000000000000,0.332203389830547,-0.144827586206883,0.326271186440730,-0.144827586206882,0.338135593220361,-0.139655172413765,0.332203389830544,-0.011864406779630,0.000000000000000,-0.000000000000004,-0.010344827586235,0.000000000000002,0.010344827586235,0.011864406779633,-0.000000000000001,2 +8086,8925,10215,10275,-0.144827586206882,0.350000000000000,-0.150000000000000,0.344067796610181,-0.144827586206882,0.338135593220361,-0.139655172413764,0.344067796610180,0.000000000000000,0.010344827586236,-0.011864406779637,0.000000000000000,-0.000000000000002,-0.010344827586235,0.011864406779640,-0.000000000000001,2 +8927,10158,10218,10276,-0.134482758620723,-0.350000000000000,-0.139655172413811,-0.344067796610152,-0.134482758620722,-0.338135593220304,-0.129310344827634,-0.344067796610152,-0.000000000000000,-0.010344827586177,-0.011864406779697,0.000000000000001,0.000000000000002,0.010344827586178,0.011864406779695,-0.000000000000002,2 +10159,10217,10219,10277,-0.139655172413811,-0.332203389830458,-0.134482758620722,-0.338135593220304,-0.134482758620721,-0.326271186440615,-0.129310344827632,-0.332203389830461,-0.011864406779690,0.000000000000001,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779687,-0.000000000000002,2 +10160,10218,10220,10278,-0.139655172413810,-0.320338983050772,-0.134482758620721,-0.326271186440615,-0.134482758620719,-0.314406779660933,-0.129310344827630,-0.320338983050777,-0.011864406779683,0.000000000000001,-0.000000000000004,-0.010344827586179,0.000000000000005,0.010344827586180,0.011864406779682,-0.000000000000002,2 +10161,10219,10221,10279,-0.139655172413809,-0.308474576271079,-0.134482758620719,-0.314406779660933,-0.134482758620718,-0.302542372881231,-0.129310344827628,-0.308474576271085,-0.011864406779703,0.000000000000001,-0.000000000000005,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779701,-0.000000000000002,2 +10162,10220,10222,10280,-0.139655172413808,-0.296610169491390,-0.134482758620718,-0.302542372881231,-0.134482758620717,-0.290677966101559,-0.129310344827626,-0.296610169491399,-0.011864406779673,0.000000000000001,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779672,-0.000000000000002,2 +10163,10221,10223,10281,-0.139655172413807,-0.284745762711697,-0.134482758620717,-0.290677966101559,-0.134482758620715,-0.278813559321846,-0.129310344827625,-0.284745762711708,-0.011864406779714,0.000000000000001,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779711,-0.000000000000002,2 +10164,10222,10224,10282,-0.139655172413806,-0.272881355932004,-0.134482758620715,-0.278813559321846,-0.134482758620714,-0.266949152542174,-0.129310344827623,-0.272881355932017,-0.011864406779672,0.000000000000001,-0.000000000000012,-0.010344827586183,0.000000000000013,0.010344827586184,0.011864406779671,-0.000000000000002,2 +10165,10223,10225,10283,-0.139655172413806,-0.261016949152318,-0.134482758620714,-0.266949152542174,-0.134482758620713,-0.255084745762476,-0.129310344827621,-0.261016949152333,-0.011864406779700,0.000000000000001,-0.000000000000013,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779697,-0.000000000000002,2 +10166,10224,10226,10284,-0.139655172413805,-0.249152542372625,-0.134482758620713,-0.255084745762476,-0.134482758620711,-0.243220338982791,-0.129310344827619,-0.249152542372642,-0.011864406779686,0.000000000000001,-0.000000000000016,-0.010344827586185,0.000000000000019,0.010344827586186,0.011864406779683,-0.000000000000002,2 +10167,10225,10227,10285,-0.139655172413804,-0.237288135592938,-0.134482758620711,-0.243220338982791,-0.134482758620710,-0.231355932203105,-0.129310344827617,-0.237288135592958,-0.011864406779687,0.000000000000001,-0.000000000000019,-0.010344827586186,0.000000000000020,0.010344827586187,0.011864406779685,-0.000000000000002,2 +10168,10226,10228,10286,-0.139655172413803,-0.225423728813245,-0.134482758620710,-0.231355932203105,-0.134482758620709,-0.219491525423407,-0.129310344827615,-0.225423728813267,-0.011864406779700,0.000000000000001,-0.000000000000020,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779697,-0.000000000000002,2 +10169,10227,10229,10287,-0.139655172413802,-0.213559322033559,-0.134482758620709,-0.219491525423407,-0.134482758620707,-0.207627118643735,-0.129310344827614,-0.213559322033583,-0.011864406779673,0.000000000000001,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779671,-0.000000000000002,2 +10170,10228,10230,10288,-0.139655172413802,-0.201694915253866,-0.134482758620707,-0.207627118643735,-0.134482758620706,-0.195762711864023,-0.129310344827612,-0.201694915253892,-0.011864406779713,0.000000000000001,-0.000000000000024,-0.010344827586189,0.000000000000027,0.010344827586190,0.011864406779710,-0.000000000000002,2 +10171,10229,10231,10289,-0.139655172413801,-0.189830508474173,-0.134482758620706,-0.195762711864023,-0.134482758620705,-0.183898305084352,-0.129310344827610,-0.189830508474202,-0.011864406779672,0.000000000000001,-0.000000000000027,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779670,-0.000000000000002,2 +10172,10230,10232,10290,-0.139655172413800,-0.177966101694485,-0.134482758620705,-0.183898305084352,-0.134482758620703,-0.172033898304649,-0.129310344827608,-0.177966101694516,-0.011864406779704,0.000000000000001,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779701,-0.000000000000002,2 +10173,10231,10233,10291,-0.139655172413799,-0.166101694914792,-0.134482758620703,-0.172033898304649,-0.134482758620702,-0.160169491524968,-0.129310344827606,-0.166101694914825,-0.011864406779682,0.000000000000001,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779680,-0.000000000000002,2 +10174,10232,10234,10292,-0.139655172413798,-0.154237288135115,-0.134482758620702,-0.160169491524968,-0.134482758620701,-0.148305084745297,-0.129310344827605,-0.154237288135150,-0.011864406779672,0.000000000000001,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779670,-0.000000000000002,2 +10175,10233,10235,10293,-0.139655172413798,-0.142372881355433,-0.134482758620701,-0.148305084745297,-0.134482758620700,-0.136440677965605,-0.129310344827603,-0.142372881355469,-0.011864406779693,0.000000000000001,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779691,-0.000000000000002,2 +10176,10234,10236,10294,-0.139655172413797,-0.130508474575744,-0.134482758620700,-0.136440677965605,-0.134482758620698,-0.124576271185921,-0.129310344827601,-0.130508474575782,-0.011864406779685,0.000000000000001,-0.000000000000038,-0.010344827586195,0.000000000000039,0.010344827586196,0.011864406779683,-0.000000000000002,2 +10177,10235,10237,10295,-0.139655172413796,-0.118644067796054,-0.134482758620698,-0.124576271185921,-0.134482758620697,-0.112711864406227,-0.129310344827599,-0.118644067796094,-0.011864406779695,0.000000000000001,-0.000000000000039,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779692,-0.000000000000002,2 +10178,10236,10238,10296,-0.139655172413795,-0.106779661016364,-0.134482758620697,-0.112711864406227,-0.134482758620696,-0.100847457626544,-0.129310344827597,-0.106779661016407,-0.011864406779685,0.000000000000001,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779682,-0.000000000000002,2 +10179,10237,10239,10297,-0.139655172413794,-0.094915254236674,-0.134482758620696,-0.100847457626544,-0.134482758620694,-0.088983050846850,-0.129310344827596,-0.094915254236720,-0.011864406779695,0.000000000000001,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779692,-0.000000000000002,2 +10180,10238,10240,10298,-0.139655172413794,-0.083050847456979,-0.134482758620694,-0.088983050846850,-0.134482758620693,-0.077118644067157,-0.129310344827594,-0.083050847457027,-0.011864406779695,0.000000000000001,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779692,-0.000000000000002,2 +10181,10239,10241,10299,-0.139655172413793,-0.071186440677290,-0.134482758620693,-0.077118644067157,-0.134482758620692,-0.065254237287473,-0.129310344827592,-0.071186440677340,-0.011864406779684,0.000000000000001,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779682,-0.000000000000002,2 +10182,10240,10242,10300,-0.139655172413792,-0.059322033897600,-0.134482758620692,-0.065254237287473,-0.134482758620690,-0.053389830507780,-0.129310344827590,-0.059322033897652,-0.011864406779695,0.000000000000001,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779692,-0.000000000000002,2 +10183,10241,10243,10301,-0.139655172413791,-0.047457627117908,-0.134482758620690,-0.053389830507780,-0.134482758620689,-0.041525423728090,-0.129310344827588,-0.047457627117962,-0.011864406779691,0.000000000000001,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779688,-0.000000000000002,2 +10184,10242,10244,10302,-0.139655172413790,-0.035593220338218,-0.134482758620689,-0.041525423728090,-0.134482758620688,-0.029661016948403,-0.129310344827587,-0.035593220338275,-0.011864406779689,0.000000000000001,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779686,-0.000000000000002,2 +10185,10243,10245,10303,-0.139655172413789,-0.023728813558526,-0.134482758620688,-0.029661016948403,-0.134482758620687,-0.017796610168709,-0.129310344827585,-0.023728813558585,-0.011864406779695,0.000000000000001,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586205,0.011864406779692,-0.000000000000002,2 +10186,10244,10246,10304,-0.139655172413789,-0.011864406778837,-0.134482758620687,-0.017796610168709,-0.134482758620685,-0.005932203389026,-0.129310344827583,-0.011864406778898,-0.011864406779684,0.000000000000001,-0.000000000000060,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779682,-0.000000000000002,2 +10187,10245,10247,10305,-0.139655172413788,0.000000000000842,-0.134482758620685,-0.005932203389026,-0.134482758620684,0.005932203390647,-0.129310344827581,0.000000000000779,-0.011864406779673,0.000000000000001,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000002,2 +10188,10246,10248,10306,-0.139655172413787,0.011864406780493,-0.134482758620684,0.005932203390647,-0.134482758620682,0.017796610170277,-0.129310344827579,0.011864406780431,-0.011864406779629,0.000000000000001,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586208,0.011864406779631,-0.000000000000002,2 +10189,10247,10249,10307,-0.139655172413786,0.023728813560121,-0.134482758620682,0.017796610170277,-0.134482758620681,0.029661016949907,-0.129310344827578,0.023728813560062,-0.011864406779629,0.000000000000001,-0.000000000000060,-0.010344827586208,0.000000000000058,0.010344827586209,0.011864406779632,-0.000000000000002,2 +10190,10248,10250,10308,-0.139655172413785,0.035593220339750,-0.134482758620681,0.029661016949907,-0.134482758620680,0.041525423729537,-0.129310344827576,0.035593220339694,-0.011864406779629,0.000000000000001,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779631,-0.000000000000002,2 +10191,10249,10251,10309,-0.139655172413785,0.047457627119379,-0.134482758620680,0.041525423729537,-0.134482758620679,0.053389830509167,-0.129310344827574,0.047457627119325,-0.011864406779629,0.000000000000001,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586211,0.011864406779631,-0.000000000000002,2 +10192,10250,10252,10310,-0.139655172413784,0.059322033899008,-0.134482758620679,0.053389830509167,-0.134482758620677,0.065254237288797,-0.129310344827572,0.059322033898956,-0.011864406779629,0.000000000000001,-0.000000000000053,-0.010344827586211,0.000000000000051,0.010344827586212,0.011864406779632,-0.000000000000002,2 +10193,10251,10253,10311,-0.139655172413783,0.071186440678637,-0.134482758620677,0.065254237288797,-0.134482758620676,0.077118644068427,-0.129310344827570,0.071186440678587,-0.011864406779629,0.000000000000001,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586213,0.011864406779631,-0.000000000000002,2 +10194,10252,10254,10312,-0.139655172413782,0.083050847458266,-0.134482758620676,0.077118644068427,-0.134482758620675,0.088983050848057,-0.129310344827568,0.083050847458218,-0.011864406779629,0.000000000000001,-0.000000000000049,-0.010344827586213,0.000000000000046,0.010344827586214,0.011864406779631,-0.000000000000002,2 +10195,10253,10255,10313,-0.139655172413781,0.094915254237895,-0.134482758620675,0.088983050848057,-0.134482758620673,0.100847457627688,-0.129310344827567,0.094915254237850,-0.011864406779629,0.000000000000001,-0.000000000000046,-0.010344827586214,0.000000000000044,0.010344827586215,0.011864406779631,-0.000000000000002,2 +10196,10254,10256,10314,-0.139655172413781,0.106779661017524,-0.134482758620673,0.100847457627688,-0.134482758620672,0.112711864407317,-0.129310344827565,0.106779661017481,-0.011864406779629,0.000000000000001,-0.000000000000044,-0.010344827586215,0.000000000000042,0.010344827586216,0.011864406779631,-0.000000000000002,2 +10197,10255,10257,10315,-0.139655172413780,0.118644067797153,-0.134482758620672,0.112711864407317,-0.134482758620671,0.124576271186948,-0.129310344827563,0.118644067797112,-0.011864406779629,0.000000000000001,-0.000000000000042,-0.010344827586216,0.000000000000039,0.010344827586217,0.011864406779631,-0.000000000000002,2 +10198,10256,10258,10316,-0.139655172413779,0.130508474576787,-0.134482758620671,0.124576271186948,-0.134482758620669,0.136440677966588,-0.129310344827561,0.130508474576748,-0.011864406779639,0.000000000000001,-0.000000000000039,-0.010344827586217,0.000000000000038,0.010344827586218,0.011864406779641,-0.000000000000002,2 +10199,10257,10259,10317,-0.139655172413778,0.142372881356421,-0.134482758620669,0.136440677966588,-0.134482758620668,0.148305084746218,-0.129310344827559,0.142372881356384,-0.011864406779629,0.000000000000001,-0.000000000000038,-0.010344827586218,0.000000000000035,0.010344827586219,0.011864406779632,-0.000000000000002,2 +10200,10258,10260,10318,-0.139655172413777,0.154237288136050,-0.134482758620668,0.148305084746218,-0.134482758620667,0.160169491525847,-0.129310344827558,0.154237288136015,-0.011864406779628,0.000000000000001,-0.000000000000035,-0.010344827586219,0.000000000000034,0.010344827586220,0.011864406779630,-0.000000000000002,2 +10201,10259,10261,10319,-0.139655172413777,0.166101694915678,-0.134482758620667,0.160169491525847,-0.134482758620665,0.172033898305477,-0.129310344827556,0.166101694915645,-0.011864406779629,0.000000000000001,-0.000000000000034,-0.010344827586220,0.000000000000032,0.010344827586221,0.011864406779631,-0.000000000000002,2 +10202,10260,10262,10320,-0.139655172413776,0.177966101695307,-0.134482758620665,0.172033898305477,-0.134482758620664,0.183898305085107,-0.129310344827554,0.177966101695277,-0.011864406779629,0.000000000000001,-0.000000000000032,-0.010344827586221,0.000000000000029,0.010344827586222,0.011864406779632,-0.000000000000002,2 +10203,10261,10263,10321,-0.139655172413775,0.189830508474936,-0.134482758620664,0.183898305085107,-0.134482758620663,0.195762711864736,-0.129310344827552,0.189830508474908,-0.011864406779628,0.000000000000001,-0.000000000000029,-0.010344827586222,0.000000000000028,0.010344827586223,0.011864406779630,-0.000000000000002,2 +10204,10262,10264,10322,-0.139655172413774,0.201694915254565,-0.134482758620663,0.195762711864736,-0.134482758620662,0.207627118644368,-0.129310344827550,0.201694915254539,-0.011864406779630,0.000000000000001,-0.000000000000028,-0.010344827586223,0.000000000000024,0.010344827586224,0.011864406779633,-0.000000000000002,2 +10205,10263,10265,10323,-0.139655172413773,0.213559322034197,-0.134482758620662,0.207627118644368,-0.134482758620660,0.219491525424003,-0.129310344827549,0.213559322034173,-0.011864406779634,0.000000000000001,-0.000000000000024,-0.010344827586224,0.000000000000023,0.010344827586225,0.011864406779636,-0.000000000000002,2 +10206,10264,10266,10324,-0.139655172413772,0.225423728813831,-0.134482758620660,0.219491525424003,-0.134482758620659,0.231355932203638,-0.129310344827547,0.225423728813809,-0.011864406779634,0.000000000000001,-0.000000000000023,-0.010344827586225,0.000000000000021,0.010344827586226,0.011864406779636,-0.000000000000002,2 +10207,10265,10267,10325,-0.139655172413772,0.237288135593466,-0.134482758620659,0.231355932203638,-0.134482758620658,0.243220338983275,-0.129310344827545,0.237288135593447,-0.011864406779636,0.000000000000001,-0.000000000000021,-0.010344827586226,0.000000000000019,0.010344827586227,0.011864406779638,-0.000000000000002,2 +10208,10266,10268,10326,-0.139655172413771,0.249152542373097,-0.134482758620658,0.243220338983275,-0.134482758620656,0.255084745762901,-0.129310344827543,0.249152542373079,-0.011864406779625,0.000000000000001,-0.000000000000019,-0.010344827586227,0.000000000000016,0.010344827586228,0.011864406779627,-0.000000000000002,2 +10209,10267,10269,10327,-0.139655172413770,0.261016949152721,-0.134482758620656,0.255084745762901,-0.134482758620655,0.266949152542526,-0.129310344827541,0.261016949152706,-0.011864406779624,0.000000000000001,-0.000000000000016,-0.010344827586228,0.000000000000014,0.010344827586229,0.011864406779626,-0.000000000000002,2 +10210,10268,10270,10328,-0.139655172413769,0.272881355932353,-0.134482758620655,0.266949152542526,-0.134482758620654,0.278813559322167,-0.129310344827540,0.272881355932340,-0.011864406779641,0.000000000000001,-0.000000000000014,-0.010344827586229,0.000000000000012,0.010344827586230,0.011864406779642,-0.000000000000002,2 +10211,10269,10271,10329,-0.139655172413768,0.284745762711989,-0.134482758620654,0.278813559322167,-0.134482758620652,0.290677966101800,-0.129310344827538,0.284745762711978,-0.011864406779632,0.000000000000001,-0.000000000000012,-0.010344827586230,0.000000000000009,0.010344827586231,0.011864406779634,-0.000000000000002,2 +10212,10270,10272,10330,-0.139655172413768,0.296610169491629,-0.134482758620652,0.290677966101800,-0.134482758620651,0.302542372881448,-0.129310344827536,0.296610169491620,-0.011864406779648,0.000000000000001,-0.000000000000009,-0.010344827586231,0.000000000000008,0.010344827586232,0.011864406779649,-0.000000000000002,2 +10213,10271,10273,10331,-0.139655172413767,0.308474576271267,-0.134482758620651,0.302542372881448,-0.134482758620650,0.314406779661079,-0.129310344827534,0.308474576271260,-0.011864406779629,0.000000000000001,-0.000000000000008,-0.010344827586232,0.000000000000006,0.010344827586233,0.011864406779632,-0.000000000000002,2 +10214,10272,10274,10332,-0.139655172413766,0.320338983050905,-0.134482758620650,0.314406779661079,-0.134482758620649,0.326271186440726,-0.129310344827532,0.320338983050900,-0.011864406779646,0.000000000000001,-0.000000000000006,-0.010344827586233,0.000000000000004,0.010344827586234,0.011864406779648,-0.000000000000002,2 +10215,10273,10275,10333,-0.139655172413765,0.332203389830544,-0.134482758620649,0.326271186440726,-0.134482758620647,0.338135593220359,-0.129310344827531,0.332203389830541,-0.011864406779633,0.000000000000001,-0.000000000000004,-0.010344827586234,0.000000000000002,0.010344827586235,0.011864406779634,-0.000000000000002,2 +8072,10216,10274,10334,-0.134482758620646,0.350000000000000,-0.139655172413764,0.344067796610180,-0.134482758620647,0.338135593220359,-0.129310344827529,0.344067796610179,-0.000000000000000,0.010344827586236,-0.011864406779640,0.000000000000001,-0.000000000000002,-0.010344827586235,0.011864406779642,-0.000000000000002,2 +8928,10217,10277,10335,-0.124137931034539,-0.350000000000000,-0.129310344827634,-0.344067796610152,-0.124137931034536,-0.338135593220306,-0.118965517241442,-0.344067796610154,-0.000000000000000,-0.010344827586192,-0.011864406779695,0.000000000000002,0.000000000000002,0.010344827586192,0.011864406779693,-0.000000000000002,2 +10218,10276,10278,10336,-0.129310344827632,-0.332203389830461,-0.124137931034536,-0.338135593220306,-0.124137931034534,-0.326271186440620,-0.118965517241439,-0.332203389830464,-0.011864406779687,0.000000000000002,-0.000000000000002,-0.010344827586192,0.000000000000004,0.010344827586193,0.011864406779685,-0.000000000000003,2 +10219,10277,10279,10337,-0.129310344827630,-0.320338983050777,-0.124137931034534,-0.326271186440620,-0.124137931034532,-0.314406779660939,-0.118965517241437,-0.320338983050782,-0.011864406779682,0.000000000000002,-0.000000000000004,-0.010344827586193,0.000000000000006,0.010344827586194,0.011864406779680,-0.000000000000003,2 +10220,10278,10280,10338,-0.129310344827628,-0.308474576271085,-0.124137931034532,-0.314406779660939,-0.124137931034530,-0.302542372881239,-0.118965517241434,-0.308474576271092,-0.011864406779701,0.000000000000002,-0.000000000000006,-0.010344827586194,0.000000000000008,0.010344827586195,0.011864406779698,-0.000000000000002,2 +10221,10279,10281,10339,-0.129310344827626,-0.296610169491399,-0.124137931034530,-0.302542372881239,-0.124137931034528,-0.290677966101568,-0.118965517241431,-0.296610169491408,-0.011864406779672,0.000000000000002,-0.000000000000008,-0.010344827586195,0.000000000000009,0.010344827586195,0.011864406779671,-0.000000000000003,2 +10222,10280,10282,10340,-0.129310344827625,-0.284745762711708,-0.124137931034528,-0.290677966101568,-0.124137931034526,-0.278813559321859,-0.118965517241429,-0.284745762711719,-0.011864406779711,0.000000000000002,-0.000000000000009,-0.010344827586195,0.000000000000012,0.010344827586196,0.011864406779708,-0.000000000000003,2 +10223,10281,10283,10341,-0.129310344827623,-0.272881355932017,-0.124137931034526,-0.278813559321859,-0.124137931034523,-0.266949152542188,-0.118965517241426,-0.272881355932030,-0.011864406779671,0.000000000000002,-0.000000000000012,-0.010344827586196,0.000000000000013,0.010344827586197,0.011864406779670,-0.000000000000002,2 +10224,10282,10284,10342,-0.129310344827621,-0.261016949152333,-0.124137931034523,-0.266949152542188,-0.124137931034521,-0.255084745762492,-0.118965517241424,-0.261016949152347,-0.011864406779697,0.000000000000002,-0.000000000000013,-0.010344827586197,0.000000000000016,0.010344827586198,0.011864406779695,-0.000000000000003,2 +10225,10283,10285,10343,-0.129310344827619,-0.249152542372642,-0.124137931034521,-0.255084745762492,-0.124137931034519,-0.243220338982810,-0.118965517241421,-0.249152542372660,-0.011864406779683,0.000000000000002,-0.000000000000016,-0.010344827586198,0.000000000000018,0.010344827586198,0.011864406779681,-0.000000000000003,2 +10226,10284,10286,10344,-0.129310344827617,-0.237288135592958,-0.124137931034519,-0.243220338982810,-0.124137931034517,-0.231355932203126,-0.118965517241419,-0.237288135592978,-0.011864406779685,0.000000000000002,-0.000000000000018,-0.010344827586198,0.000000000000020,0.010344827586199,0.011864406779683,-0.000000000000002,2 +10227,10285,10287,10345,-0.129310344827615,-0.225423728813267,-0.124137931034517,-0.231355932203126,-0.124137931034515,-0.219491525423430,-0.118965517241416,-0.225423728813289,-0.011864406779697,0.000000000000002,-0.000000000000020,-0.010344827586199,0.000000000000023,0.010344827586200,0.011864406779695,-0.000000000000003,2 +10228,10286,10288,10346,-0.129310344827614,-0.213559322033583,-0.124137931034515,-0.219491525423430,-0.124137931034513,-0.207627118643759,-0.118965517241413,-0.213559322033606,-0.011864406779671,0.000000000000002,-0.000000000000023,-0.010344827586200,0.000000000000024,0.010344827586201,0.011864406779670,-0.000000000000002,2 +10229,10287,10289,10347,-0.129310344827612,-0.201694915253892,-0.124137931034513,-0.207627118643759,-0.124137931034510,-0.195762711864050,-0.118965517241411,-0.201694915253918,-0.011864406779710,0.000000000000002,-0.000000000000024,-0.010344827586201,0.000000000000027,0.010344827586201,0.011864406779707,-0.000000000000003,2 +10230,10288,10290,10348,-0.129310344827610,-0.189830508474202,-0.124137931034510,-0.195762711864050,-0.124137931034508,-0.183898305084381,-0.118965517241408,-0.189830508474230,-0.011864406779670,0.000000000000002,-0.000000000000027,-0.010344827586201,0.000000000000029,0.010344827586202,0.011864406779669,-0.000000000000002,2 +10231,10289,10291,10349,-0.129310344827608,-0.177966101694516,-0.124137931034508,-0.183898305084381,-0.124137931034506,-0.172033898304681,-0.118965517241406,-0.177966101694546,-0.011864406779701,0.000000000000002,-0.000000000000029,-0.010344827586202,0.000000000000032,0.010344827586203,0.011864406779699,-0.000000000000003,2 +10232,10290,10292,10350,-0.129310344827606,-0.166101694914825,-0.124137931034506,-0.172033898304681,-0.124137931034504,-0.160169491525002,-0.118965517241403,-0.166101694914858,-0.011864406779680,0.000000000000002,-0.000000000000032,-0.010344827586203,0.000000000000034,0.010344827586204,0.011864406779678,-0.000000000000003,2 +10233,10291,10293,10351,-0.129310344827605,-0.154237288135150,-0.124137931034504,-0.160169491525002,-0.124137931034501,-0.148305084745332,-0.118965517241401,-0.154237288135185,-0.011864406779670,0.000000000000002,-0.000000000000034,-0.010344827586204,0.000000000000035,0.010344827586204,0.011864406779669,-0.000000000000003,2 +10234,10292,10294,10352,-0.129310344827603,-0.142372881355469,-0.124137931034501,-0.148305084745332,-0.124137931034499,-0.136440677965643,-0.118965517241398,-0.142372881355506,-0.011864406779691,0.000000000000002,-0.000000000000035,-0.010344827586204,0.000000000000038,0.010344827586205,0.011864406779689,-0.000000000000002,2 +10235,10293,10295,10353,-0.129310344827601,-0.130508474575782,-0.124137931034499,-0.136440677965643,-0.124137931034497,-0.124576271185960,-0.118965517241396,-0.130508474575821,-0.011864406779683,0.000000000000002,-0.000000000000038,-0.010344827586205,0.000000000000039,0.010344827586206,0.011864406779682,-0.000000000000003,2 +10236,10294,10296,10354,-0.129310344827599,-0.118644067796094,-0.124137931034497,-0.124576271185960,-0.124137931034495,-0.112711864406269,-0.118965517241393,-0.118644067796135,-0.011864406779692,0.000000000000002,-0.000000000000039,-0.010344827586206,0.000000000000042,0.010344827586207,0.011864406779690,-0.000000000000003,2 +10237,10295,10297,10355,-0.129310344827597,-0.106779661016407,-0.124137931034495,-0.112711864406269,-0.124137931034493,-0.100847457626588,-0.118965517241390,-0.106779661016450,-0.011864406779682,0.000000000000002,-0.000000000000042,-0.010344827586207,0.000000000000044,0.010344827586207,0.011864406779680,-0.000000000000002,2 +10238,10296,10298,10356,-0.129310344827596,-0.094915254236720,-0.124137931034493,-0.100847457626588,-0.124137931034491,-0.088983050846897,-0.118965517241388,-0.094915254236765,-0.011864406779692,0.000000000000002,-0.000000000000044,-0.010344827586207,0.000000000000046,0.010344827586208,0.011864406779690,-0.000000000000003,2 +10239,10297,10299,10357,-0.129310344827594,-0.083050847457027,-0.124137931034491,-0.088983050846897,-0.124137931034488,-0.077118644067205,-0.118965517241385,-0.083050847457075,-0.011864406779692,0.000000000000002,-0.000000000000046,-0.010344827586208,0.000000000000049,0.010344827586209,0.011864406779690,-0.000000000000002,2 +10240,10298,10300,10358,-0.129310344827592,-0.071186440677340,-0.124137931034488,-0.077118644067205,-0.124137931034486,-0.065254237287524,-0.118965517241383,-0.071186440677390,-0.011864406779682,0.000000000000002,-0.000000000000049,-0.010344827586209,0.000000000000051,0.010344827586210,0.011864406779680,-0.000000000000003,2 +10241,10299,10301,10359,-0.129310344827590,-0.059322033897652,-0.124137931034486,-0.065254237287524,-0.124137931034484,-0.053389830507833,-0.118965517241380,-0.059322033897705,-0.011864406779692,0.000000000000002,-0.000000000000051,-0.010344827586210,0.000000000000053,0.010344827586210,0.011864406779690,-0.000000000000003,2 +10242,10300,10302,10360,-0.129310344827588,-0.047457627117962,-0.124137931034484,-0.053389830507833,-0.124137931034482,-0.041525423728146,-0.118965517241378,-0.047457627118017,-0.011864406779688,0.000000000000002,-0.000000000000053,-0.010344827586210,0.000000000000056,0.010344827586211,0.011864406779686,-0.000000000000002,2 +10243,10301,10303,10361,-0.129310344827587,-0.035593220338275,-0.124137931034482,-0.041525423728146,-0.124137931034480,-0.029661016948461,-0.118965517241375,-0.035593220338332,-0.011864406779686,0.000000000000002,-0.000000000000056,-0.010344827586211,0.000000000000058,0.010344827586212,0.011864406779684,-0.000000000000003,2 +10244,10302,10304,10362,-0.129310344827585,-0.023728813558585,-0.124137931034480,-0.029661016948461,-0.124137931034478,-0.017796610168769,-0.118965517241372,-0.023728813558644,-0.011864406779692,0.000000000000002,-0.000000000000058,-0.010344827586212,0.000000000000060,0.010344827586213,0.011864406779690,-0.000000000000003,2 +10245,10303,10305,10363,-0.129310344827583,-0.011864406778898,-0.124137931034478,-0.017796610168769,-0.124137931034475,-0.005932203389088,-0.118965517241370,-0.011864406778959,-0.011864406779682,0.000000000000002,-0.000000000000060,-0.010344827586213,0.000000000000062,0.010344827586214,0.011864406779680,-0.000000000000002,2 +10246,10304,10306,10364,-0.129310344827581,0.000000000000779,-0.124137931034475,-0.005932203389088,-0.124137931034473,0.005932203390585,-0.118965517241367,0.000000000000717,-0.011864406779673,0.000000000000002,-0.000000000000062,-0.010344827586214,0.000000000000062,0.010344827586214,0.011864406779673,-0.000000000000003,2 +10247,10305,10307,10365,-0.129310344827579,0.011864406780431,-0.124137931034473,0.005932203390585,-0.124137931034471,0.017796610170216,-0.118965517241365,0.011864406780370,-0.011864406779631,0.000000000000002,-0.000000000000062,-0.010344827586214,0.000000000000060,0.010344827586215,0.011864406779633,-0.000000000000002,2 +10248,10306,10308,10366,-0.129310344827578,0.023728813560062,-0.124137931034471,0.017796610170216,-0.124137931034469,0.029661016949849,-0.118965517241362,0.023728813560003,-0.011864406779632,0.000000000000002,-0.000000000000060,-0.010344827586215,0.000000000000058,0.010344827586216,0.011864406779634,-0.000000000000003,2 +10249,10307,10309,10367,-0.129310344827576,0.035593220339694,-0.124137931034469,0.029661016949849,-0.124137931034467,0.041525423729481,-0.118965517241360,0.035593220339637,-0.011864406779631,0.000000000000002,-0.000000000000058,-0.010344827586216,0.000000000000056,0.010344827586217,0.011864406779633,-0.000000000000003,2 +10250,10308,10310,10368,-0.129310344827574,0.047457627119325,-0.124137931034467,0.041525423729481,-0.124137931034464,0.053389830509114,-0.118965517241357,0.047457627119270,-0.011864406779631,0.000000000000002,-0.000000000000056,-0.010344827586217,0.000000000000053,0.010344827586217,0.011864406779633,-0.000000000000003,2 +10251,10309,10311,10369,-0.129310344827572,0.059322033898956,-0.124137931034464,0.053389830509114,-0.124137931034462,0.065254237288746,-0.118965517241354,0.059322033898904,-0.011864406779632,0.000000000000002,-0.000000000000053,-0.010344827586217,0.000000000000051,0.010344827586218,0.011864406779634,-0.000000000000003,2 +10252,10310,10312,10370,-0.129310344827570,0.071186440678587,-0.124137931034462,0.065254237288746,-0.124137931034460,0.077118644068378,-0.118965517241352,0.071186440678537,-0.011864406779631,0.000000000000002,-0.000000000000051,-0.010344827586218,0.000000000000049,0.010344827586219,0.011864406779633,-0.000000000000003,2 +10253,10311,10313,10371,-0.129310344827568,0.083050847458218,-0.124137931034460,0.077118644068378,-0.124137931034458,0.088983050848011,-0.118965517241349,0.083050847458171,-0.011864406779631,0.000000000000002,-0.000000000000049,-0.010344827586219,0.000000000000046,0.010344827586219,0.011864406779634,-0.000000000000002,2 +10254,10312,10314,10372,-0.129310344827567,0.094915254237850,-0.124137931034458,0.088983050848011,-0.124137931034456,0.100847457627644,-0.118965517241347,0.094915254237805,-0.011864406779631,0.000000000000002,-0.000000000000046,-0.010344827586219,0.000000000000044,0.010344827586220,0.011864406779634,-0.000000000000003,2 +10255,10313,10315,10373,-0.129310344827565,0.106779661017481,-0.124137931034456,0.100847457627644,-0.124137931034453,0.112711864407275,-0.118965517241344,0.106779661017438,-0.011864406779631,0.000000000000002,-0.000000000000044,-0.010344827586220,0.000000000000042,0.010344827586221,0.011864406779633,-0.000000000000003,2 +10256,10314,10316,10374,-0.129310344827563,0.118644067797112,-0.124137931034453,0.112711864407275,-0.124137931034451,0.124576271186908,-0.118965517241342,0.118644067797071,-0.011864406779631,0.000000000000002,-0.000000000000042,-0.010344827586221,0.000000000000039,0.010344827586222,0.011864406779634,-0.000000000000002,2 +10257,10315,10317,10375,-0.129310344827561,0.130508474576748,-0.124137931034451,0.124576271186908,-0.124137931034449,0.136440677966550,-0.118965517241339,0.130508474576710,-0.011864406779641,0.000000000000002,-0.000000000000039,-0.010344827586222,0.000000000000038,0.010344827586223,0.011864406779642,-0.000000000000003,2 +10258,10316,10318,10376,-0.129310344827559,0.142372881356384,-0.124137931034449,0.136440677966550,-0.124137931034447,0.148305084746182,-0.118965517241337,0.142372881356348,-0.011864406779632,0.000000000000002,-0.000000000000038,-0.010344827586223,0.000000000000035,0.010344827586223,0.011864406779634,-0.000000000000002,2 +10259,10317,10319,10377,-0.129310344827558,0.154237288136015,-0.124137931034447,0.148305084746182,-0.124137931034445,0.160169491525813,-0.118965517241334,0.154237288135981,-0.011864406779630,0.000000000000002,-0.000000000000035,-0.010344827586223,0.000000000000034,0.010344827586224,0.011864406779631,-0.000000000000003,2 +10260,10318,10320,10378,-0.129310344827556,0.166101694915645,-0.124137931034445,0.160169491525813,-0.124137931034443,0.172033898305445,-0.118965517241331,0.166101694915613,-0.011864406779631,0.000000000000002,-0.000000000000034,-0.010344827586224,0.000000000000032,0.010344827586225,0.011864406779633,-0.000000000000003,2 +10261,10319,10321,10379,-0.129310344827554,0.177966101695277,-0.124137931034443,0.172033898305445,-0.124137931034440,0.183898305085078,-0.118965517241329,0.177966101695246,-0.011864406779632,0.000000000000002,-0.000000000000032,-0.010344827586225,0.000000000000029,0.010344827586226,0.011864406779635,-0.000000000000003,2 +10262,10320,10322,10380,-0.129310344827552,0.189830508474908,-0.124137931034440,0.183898305085078,-0.124137931034438,0.195762711864709,-0.118965517241326,0.189830508474879,-0.011864406779630,0.000000000000002,-0.000000000000029,-0.010344827586226,0.000000000000027,0.010344827586226,0.011864406779632,-0.000000000000003,2 +10263,10321,10323,10381,-0.129310344827550,0.201694915254539,-0.124137931034438,0.195762711864709,-0.124137931034436,0.207627118644343,-0.118965517241324,0.201694915254513,-0.011864406779633,0.000000000000002,-0.000000000000027,-0.010344827586226,0.000000000000024,0.010344827586227,0.011864406779636,-0.000000000000003,2 +10264,10322,10324,10382,-0.129310344827549,0.213559322034173,-0.124137931034436,0.207627118644343,-0.124137931034434,0.219491525423980,-0.118965517241321,0.213559322034150,-0.011864406779636,0.000000000000002,-0.000000000000024,-0.010344827586227,0.000000000000023,0.010344827586228,0.011864406779637,-0.000000000000002,2 +10265,10323,10325,10383,-0.129310344827547,0.225423728813809,-0.124137931034434,0.219491525423980,-0.124137931034432,0.231355932203617,-0.118965517241319,0.225423728813788,-0.011864406779636,0.000000000000002,-0.000000000000023,-0.010344827586228,0.000000000000021,0.010344827586229,0.011864406779639,-0.000000000000003,2 +10266,10324,10326,10384,-0.129310344827545,0.237288135593447,-0.124137931034432,0.231355932203617,-0.124137931034429,0.243220338983257,-0.118965517241316,0.237288135593427,-0.011864406779638,0.000000000000002,-0.000000000000021,-0.010344827586229,0.000000000000019,0.010344827586229,0.011864406779640,-0.000000000000003,2 +10267,10325,10327,10385,-0.129310344827543,0.249152542373079,-0.124137931034429,0.243220338983257,-0.124137931034427,0.255084745762885,-0.118965517241313,0.249152542373062,-0.011864406779627,0.000000000000002,-0.000000000000019,-0.010344827586229,0.000000000000017,0.010344827586230,0.011864406779629,-0.000000000000002,2 +10268,10326,10328,10386,-0.129310344827541,0.261016949152706,-0.124137931034427,0.255084745762885,-0.124137931034425,0.266949152542513,-0.118965517241311,0.261016949152691,-0.011864406779626,0.000000000000002,-0.000000000000017,-0.010344827586230,0.000000000000014,0.010344827586231,0.011864406779629,-0.000000000000003,2 +10269,10327,10329,10387,-0.129310344827540,0.272881355932340,-0.124137931034425,0.266949152542513,-0.124137931034423,0.278813559322155,-0.118965517241308,0.272881355932327,-0.011864406779642,0.000000000000002,-0.000000000000014,-0.010344827586231,0.000000000000012,0.010344827586232,0.011864406779643,-0.000000000000002,2 +10270,10328,10330,10388,-0.129310344827538,0.284745762711978,-0.124137931034423,0.278813559322155,-0.124137931034421,0.290677966101791,-0.118965517241306,0.284745762711968,-0.011864406779634,0.000000000000002,-0.000000000000012,-0.010344827586232,0.000000000000009,0.010344827586232,0.011864406779638,-0.000000000000003,2 +10271,10329,10331,10389,-0.129310344827536,0.296610169491620,-0.124137931034421,0.290677966101791,-0.124137931034419,0.302542372881440,-0.118965517241303,0.296610169491611,-0.011864406779649,0.000000000000002,-0.000000000000009,-0.010344827586232,0.000000000000008,0.010344827586233,0.011864406779650,-0.000000000000003,2 +10272,10330,10332,10390,-0.129310344827534,0.308474576271260,-0.124137931034419,0.302542372881440,-0.124137931034416,0.314406779661073,-0.118965517241301,0.308474576271253,-0.011864406779632,0.000000000000002,-0.000000000000008,-0.010344827586233,0.000000000000006,0.010344827586234,0.011864406779635,-0.000000000000002,2 +10273,10331,10333,10391,-0.129310344827532,0.320338983050900,-0.124137931034416,0.314406779661073,-0.124137931034414,0.326271186440722,-0.118965517241298,0.320338983050895,-0.011864406779648,0.000000000000002,-0.000000000000006,-0.010344827586234,0.000000000000004,0.010344827586235,0.011864406779649,-0.000000000000003,2 +10274,10332,10334,10392,-0.129310344827531,0.332203389830541,-0.124137931034414,0.326271186440722,-0.124137931034412,0.338135593220357,-0.118965517241296,0.332203389830538,-0.011864406779634,0.000000000000002,-0.000000000000004,-0.010344827586235,0.000000000000002,0.010344827586235,0.011864406779637,-0.000000000000003,2 +8058,10275,10333,10393,-0.124137931034410,0.350000000000000,-0.129310344827529,0.344067796610179,-0.124137931034412,0.338135593220357,-0.118965517241293,0.344067796610178,-0.000000000000000,0.010344827586236,-0.011864406779642,0.000000000000002,-0.000000000000002,-0.010344827586235,0.011864406779644,-0.000000000000002,2 +8929,10276,10336,10394,-0.113793103448353,-0.350000000000000,-0.118965517241442,-0.344067796610154,-0.113793103448350,-0.338135593220308,-0.108620689655262,-0.344067796610155,-0.000000000000000,-0.010344827586179,-0.011864406779693,0.000000000000002,0.000000000000002,0.010344827586180,0.011864406779691,-0.000000000000003,2 +10277,10335,10337,10395,-0.118965517241439,-0.332203389830464,-0.113793103448350,-0.338135593220308,-0.113793103448347,-0.326271186440624,-0.108620689655258,-0.332203389830468,-0.011864406779685,0.000000000000003,-0.000000000000002,-0.010344827586180,0.000000000000004,0.010344827586181,0.011864406779683,-0.000000000000003,2 +10278,10336,10338,10396,-0.118965517241437,-0.320338983050782,-0.113793103448347,-0.326271186440624,-0.113793103448344,-0.314406779660944,-0.108620689655255,-0.320338983050786,-0.011864406779680,0.000000000000003,-0.000000000000004,-0.010344827586181,0.000000000000006,0.010344827586182,0.011864406779679,-0.000000000000004,2 +10279,10337,10339,10397,-0.118965517241434,-0.308474576271092,-0.113793103448344,-0.314406779660944,-0.113793103448341,-0.302542372881248,-0.108620689655251,-0.308474576271099,-0.011864406779698,0.000000000000002,-0.000000000000006,-0.010344827586182,0.000000000000008,0.010344827586183,0.011864406779695,-0.000000000000003,2 +10280,10338,10340,10398,-0.118965517241431,-0.296610169491408,-0.113793103448341,-0.302542372881248,-0.113793103448338,-0.290677966101577,-0.108620689655248,-0.296610169491417,-0.011864406779671,0.000000000000003,-0.000000000000008,-0.010344827586183,0.000000000000009,0.010344827586184,0.011864406779670,-0.000000000000003,2 +10281,10339,10341,10399,-0.118965517241429,-0.284745762711719,-0.113793103448338,-0.290677966101577,-0.113793103448335,-0.278813559321871,-0.108620689655244,-0.284745762711729,-0.011864406779708,0.000000000000003,-0.000000000000009,-0.010344827586184,0.000000000000012,0.010344827586185,0.011864406779705,-0.000000000000003,2 +10282,10340,10342,10400,-0.118965517241426,-0.272881355932030,-0.113793103448335,-0.278813559321871,-0.113793103448332,-0.266949152542202,-0.108620689655241,-0.272881355932043,-0.011864406779670,0.000000000000002,-0.000000000000012,-0.010344827586185,0.000000000000014,0.010344827586186,0.011864406779669,-0.000000000000003,2 +10283,10341,10343,10401,-0.118965517241424,-0.261016949152347,-0.113793103448332,-0.266949152542202,-0.113793103448329,-0.255084745762508,-0.108620689655238,-0.261016949152362,-0.011864406779695,0.000000000000003,-0.000000000000014,-0.010344827586186,0.000000000000016,0.010344827586187,0.011864406779692,-0.000000000000003,2 +10284,10342,10344,10402,-0.118965517241421,-0.249152542372660,-0.113793103448329,-0.255084745762508,-0.113793103448326,-0.243220338982828,-0.108620689655234,-0.249152542372677,-0.011864406779681,0.000000000000003,-0.000000000000016,-0.010344827586187,0.000000000000019,0.010344827586187,0.011864406779679,-0.000000000000003,2 +10285,10343,10345,10403,-0.118965517241419,-0.237288135592978,-0.113793103448326,-0.243220338982828,-0.113793103448323,-0.231355932203146,-0.108620689655231,-0.237288135592997,-0.011864406779683,0.000000000000002,-0.000000000000019,-0.010344827586187,0.000000000000021,0.010344827586188,0.011864406779681,-0.000000000000003,2 +10286,10344,10346,10404,-0.118965517241416,-0.225423728813289,-0.113793103448323,-0.231355932203146,-0.113793103448320,-0.219491525423453,-0.108620689655227,-0.225423728813310,-0.011864406779695,0.000000000000003,-0.000000000000021,-0.010344827586188,0.000000000000023,0.010344827586189,0.011864406779692,-0.000000000000004,2 +10287,10345,10347,10405,-0.118965517241413,-0.213559322033606,-0.113793103448320,-0.219491525423453,-0.113793103448317,-0.207627118643783,-0.108620689655224,-0.213559322033630,-0.011864406779670,0.000000000000002,-0.000000000000023,-0.010344827586189,0.000000000000024,0.010344827586190,0.011864406779669,-0.000000000000003,2 +10288,10346,10348,10406,-0.118965517241411,-0.201694915253918,-0.113793103448317,-0.207627118643783,-0.113793103448314,-0.195762711864078,-0.108620689655220,-0.201694915253944,-0.011864406779707,0.000000000000003,-0.000000000000024,-0.010344827586190,0.000000000000028,0.010344827586191,0.011864406779704,-0.000000000000003,2 +10289,10347,10349,10407,-0.118965517241408,-0.189830508474230,-0.113793103448314,-0.195762711864078,-0.113793103448311,-0.183898305084410,-0.108620689655217,-0.189830508474258,-0.011864406779669,0.000000000000002,-0.000000000000028,-0.010344827586191,0.000000000000029,0.010344827586192,0.011864406779667,-0.000000000000003,2 +10290,10348,10350,10408,-0.118965517241406,-0.177966101694546,-0.113793103448311,-0.183898305084410,-0.113793103448308,-0.172033898304713,-0.108620689655213,-0.177966101694576,-0.011864406779699,0.000000000000003,-0.000000000000029,-0.010344827586192,0.000000000000032,0.010344827586193,0.011864406779696,-0.000000000000003,2 +10291,10349,10351,10409,-0.118965517241403,-0.166101694914858,-0.113793103448308,-0.172033898304713,-0.113793103448305,-0.160169491525036,-0.108620689655210,-0.166101694914891,-0.011864406779678,0.000000000000003,-0.000000000000032,-0.010344827586193,0.000000000000034,0.010344827586194,0.011864406779676,-0.000000000000003,2 +10292,10350,10352,10410,-0.118965517241401,-0.154237288135185,-0.113793103448305,-0.160169491525036,-0.113793103448302,-0.148305084745368,-0.108620689655206,-0.154237288135219,-0.011864406779669,0.000000000000003,-0.000000000000034,-0.010344827586194,0.000000000000035,0.010344827586195,0.011864406779667,-0.000000000000003,2 +10293,10351,10353,10411,-0.118965517241398,-0.142372881355506,-0.113793103448302,-0.148305084745368,-0.113793103448299,-0.136440677965681,-0.108620689655203,-0.142372881355542,-0.011864406779689,0.000000000000002,-0.000000000000035,-0.010344827586195,0.000000000000038,0.010344827586195,0.011864406779686,-0.000000000000003,2 +10294,10352,10354,10412,-0.118965517241396,-0.130508474575821,-0.113793103448299,-0.136440677965681,-0.113793103448296,-0.124576271186000,-0.108620689655200,-0.130508474575860,-0.011864406779682,0.000000000000003,-0.000000000000038,-0.010344827586195,0.000000000000039,0.010344827586196,0.011864406779680,-0.000000000000003,2 +10295,10353,10355,10413,-0.118965517241393,-0.118644067796135,-0.113793103448296,-0.124576271186000,-0.113793103448293,-0.112711864406311,-0.108620689655196,-0.118644067796176,-0.011864406779690,0.000000000000003,-0.000000000000039,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779688,-0.000000000000004,2 +10296,10354,10356,10414,-0.118965517241390,-0.106779661016450,-0.113793103448293,-0.112711864406311,-0.113793103448290,-0.100847457626632,-0.108620689655193,-0.106779661016493,-0.011864406779680,0.000000000000002,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779678,-0.000000000000003,2 +10297,10355,10357,10415,-0.118965517241388,-0.094915254236765,-0.113793103448290,-0.100847457626632,-0.113793103448287,-0.088983050846943,-0.108620689655189,-0.094915254236810,-0.011864406779690,0.000000000000003,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779688,-0.000000000000003,2 +10298,10356,10358,10416,-0.118965517241385,-0.083050847457075,-0.113793103448287,-0.088983050846943,-0.113793103448284,-0.077118644067254,-0.108620689655186,-0.083050847457122,-0.011864406779690,0.000000000000002,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779688,-0.000000000000003,2 +10299,10357,10359,10417,-0.118965517241383,-0.071186440677390,-0.113793103448284,-0.077118644067254,-0.113793103448281,-0.065254237287575,-0.108620689655182,-0.071186440677440,-0.011864406779680,0.000000000000003,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779678,-0.000000000000003,2 +10300,10358,10360,10418,-0.118965517241380,-0.059322033897705,-0.113793103448281,-0.065254237287575,-0.113793103448278,-0.053389830507886,-0.108620689655179,-0.059322033897757,-0.011864406779690,0.000000000000003,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779688,-0.000000000000003,2 +10301,10359,10361,10419,-0.118965517241378,-0.047457627118017,-0.113793103448278,-0.053389830507886,-0.113793103448275,-0.041525423728201,-0.108620689655175,-0.047457627118071,-0.011864406779686,0.000000000000002,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779684,-0.000000000000003,2 +10302,10360,10362,10420,-0.118965517241375,-0.035593220338332,-0.113793103448275,-0.041525423728201,-0.113793103448272,-0.029661016948518,-0.108620689655172,-0.035593220338388,-0.011864406779684,0.000000000000003,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779682,-0.000000000000003,2 +10303,10361,10363,10421,-0.118965517241372,-0.023728813558644,-0.113793103448272,-0.029661016948518,-0.113793103448269,-0.017796610168830,-0.108620689655168,-0.023728813558704,-0.011864406779690,0.000000000000003,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586205,0.011864406779688,-0.000000000000004,2 +10304,10362,10364,10422,-0.118965517241370,-0.011864406778959,-0.113793103448269,-0.017796610168830,-0.113793103448266,-0.005932203389150,-0.108620689655165,-0.011864406779021,-0.011864406779680,0.000000000000002,-0.000000000000060,-0.010344827586205,0.000000000000062,0.010344827586205,0.011864406779678,-0.000000000000003,2 +10305,10363,10365,10423,-0.118965517241367,0.000000000000717,-0.113793103448266,-0.005932203389150,-0.113793103448263,0.005932203390522,-0.108620689655161,0.000000000000655,-0.011864406779673,0.000000000000003,-0.000000000000062,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000003,2 +10306,10364,10366,10424,-0.118965517241365,0.011864406780370,-0.113793103448263,0.005932203390522,-0.113793103448260,0.017796610170156,-0.108620689655158,0.011864406780309,-0.011864406779633,0.000000000000002,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586207,0.011864406779635,-0.000000000000003,2 +10307,10365,10367,10425,-0.118965517241362,0.023728813560003,-0.113793103448260,0.017796610170156,-0.113793103448257,0.029661016949791,-0.108620689655155,0.023728813559944,-0.011864406779634,0.000000000000003,-0.000000000000060,-0.010344827586207,0.000000000000058,0.010344827586208,0.011864406779636,-0.000000000000003,2 +10308,10366,10368,10426,-0.118965517241360,0.035593220339637,-0.113793103448257,0.029661016949791,-0.113793103448254,0.041525423729426,-0.108620689655151,0.035593220339580,-0.011864406779633,0.000000000000003,-0.000000000000058,-0.010344827586208,0.000000000000056,0.010344827586209,0.011864406779635,-0.000000000000003,2 +10309,10367,10369,10427,-0.118965517241357,0.047457627119270,-0.113793103448254,0.041525423729426,-0.113793103448251,0.053389830509060,-0.108620689655148,0.047457627119216,-0.011864406779633,0.000000000000003,-0.000000000000056,-0.010344827586209,0.000000000000053,0.010344827586210,0.011864406779636,-0.000000000000003,2 +10310,10368,10370,10428,-0.118965517241354,0.059322033898904,-0.113793103448251,0.053389830509060,-0.113793103448248,0.065254237288696,-0.108620689655144,0.059322033898852,-0.011864406779634,0.000000000000003,-0.000000000000053,-0.010344827586210,0.000000000000051,0.010344827586211,0.011864406779636,-0.000000000000003,2 +10311,10369,10371,10429,-0.118965517241352,0.071186440678537,-0.113793103448248,0.065254237288696,-0.113793103448245,0.077118644068329,-0.108620689655141,0.071186440678487,-0.011864406779633,0.000000000000003,-0.000000000000051,-0.010344827586211,0.000000000000049,0.010344827586212,0.011864406779635,-0.000000000000003,2 +10312,10370,10372,10430,-0.118965517241349,0.083050847458171,-0.113793103448245,0.077118644068329,-0.113793103448242,0.088983050847965,-0.108620689655137,0.083050847458123,-0.011864406779634,0.000000000000002,-0.000000000000049,-0.010344827586212,0.000000000000046,0.010344827586213,0.011864406779636,-0.000000000000004,2 +10313,10371,10373,10431,-0.118965517241347,0.094915254237805,-0.113793103448242,0.088983050847965,-0.113793103448239,0.100847457627600,-0.108620689655134,0.094915254237759,-0.011864406779634,0.000000000000003,-0.000000000000046,-0.010344827586213,0.000000000000044,0.010344827586214,0.011864406779636,-0.000000000000003,2 +10314,10372,10374,10432,-0.118965517241344,0.106779661017438,-0.113793103448239,0.100847457627600,-0.113793103448236,0.112711864407234,-0.108620689655130,0.106779661017395,-0.011864406779633,0.000000000000003,-0.000000000000044,-0.010344827586214,0.000000000000042,0.010344827586214,0.011864406779635,-0.000000000000003,2 +10315,10373,10375,10433,-0.118965517241342,0.118644067797071,-0.113793103448236,0.112711864407234,-0.113793103448233,0.124576271186869,-0.108620689655127,0.118644067797031,-0.011864406779634,0.000000000000002,-0.000000000000042,-0.010344827586214,0.000000000000039,0.010344827586215,0.011864406779636,-0.000000000000003,2 +10316,10374,10376,10434,-0.118965517241339,0.130508474576710,-0.113793103448233,0.124576271186869,-0.113793103448230,0.136440677966512,-0.108620689655123,0.130508474576671,-0.011864406779642,0.000000000000003,-0.000000000000039,-0.010344827586215,0.000000000000038,0.010344827586216,0.011864406779644,-0.000000000000003,2 +10317,10375,10377,10435,-0.118965517241337,0.142372881356348,-0.113793103448230,0.136440677966512,-0.113793103448227,0.148305084746147,-0.108620689655120,0.142372881356311,-0.011864406779634,0.000000000000002,-0.000000000000038,-0.010344827586216,0.000000000000035,0.010344827586217,0.011864406779636,-0.000000000000003,2 +10318,10376,10378,10436,-0.118965517241334,0.154237288135981,-0.113793103448227,0.148305084746147,-0.113793103448224,0.160169491525779,-0.108620689655116,0.154237288135946,-0.011864406779631,0.000000000000003,-0.000000000000035,-0.010344827586217,0.000000000000034,0.010344827586218,0.011864406779633,-0.000000000000003,2 +10319,10377,10379,10437,-0.118965517241331,0.166101694915613,-0.113793103448224,0.160169491525779,-0.113793103448221,0.172033898305413,-0.108620689655113,0.166101694915580,-0.011864406779633,0.000000000000003,-0.000000000000034,-0.010344827586218,0.000000000000032,0.010344827586219,0.011864406779635,-0.000000000000003,2 +10320,10378,10380,10438,-0.118965517241329,0.177966101695246,-0.113793103448221,0.172033898305413,-0.113793103448218,0.183898305085049,-0.108620689655110,0.177966101695216,-0.011864406779635,0.000000000000003,-0.000000000000032,-0.010344827586219,0.000000000000029,0.010344827586220,0.011864406779638,-0.000000000000004,2 +10321,10379,10381,10439,-0.118965517241326,0.189830508474879,-0.113793103448218,0.183898305085049,-0.113793103448215,0.195762711864682,-0.108620689655106,0.189830508474851,-0.011864406779632,0.000000000000003,-0.000000000000029,-0.010344827586220,0.000000000000028,0.010344827586221,0.011864406779633,-0.000000000000003,2 +10322,10380,10382,10440,-0.118965517241324,0.201694915254513,-0.113793103448215,0.195762711864682,-0.113793103448212,0.207627118644319,-0.108620689655103,0.201694915254487,-0.011864406779636,0.000000000000003,-0.000000000000028,-0.010344827586221,0.000000000000024,0.010344827586222,0.011864406779639,-0.000000000000003,2 +10323,10381,10383,10441,-0.118965517241321,0.213559322034150,-0.113793103448212,0.207627118644319,-0.113793103448209,0.219491525423957,-0.108620689655099,0.213559322034126,-0.011864406779637,0.000000000000002,-0.000000000000024,-0.010344827586222,0.000000000000023,0.010344827586223,0.011864406779638,-0.000000000000003,2 +10324,10382,10384,10442,-0.118965517241319,0.225423728813788,-0.113793103448209,0.219491525423957,-0.113793103448206,0.231355932203597,-0.108620689655096,0.225423728813766,-0.011864406779639,0.000000000000003,-0.000000000000023,-0.010344827586223,0.000000000000020,0.010344827586223,0.011864406779641,-0.000000000000003,2 +10325,10383,10385,10443,-0.118965517241316,0.237288135593427,-0.113793103448206,0.231355932203597,-0.113793103448203,0.243220338983238,-0.108620689655092,0.237288135593408,-0.011864406779640,0.000000000000003,-0.000000000000020,-0.010344827586223,0.000000000000018,0.010344827586224,0.011864406779642,-0.000000000000003,2 +10326,10384,10386,10444,-0.118965517241313,0.249152542373062,-0.113793103448203,0.243220338983238,-0.113793103448200,0.255084745762868,-0.108620689655089,0.249152542373044,-0.011864406779629,0.000000000000002,-0.000000000000018,-0.010344827586224,0.000000000000016,0.010344827586225,0.011864406779632,-0.000000000000003,2 +10327,10385,10387,10445,-0.118965517241311,0.261016949152691,-0.113793103448200,0.255084745762868,-0.113793103448197,0.266949152542499,-0.108620689655085,0.261016949152676,-0.011864406779629,0.000000000000003,-0.000000000000016,-0.010344827586225,0.000000000000013,0.010344827586226,0.011864406779632,-0.000000000000003,2 +10328,10386,10388,10446,-0.118965517241308,0.272881355932327,-0.113793103448197,0.266949152542499,-0.113793103448194,0.278813559322143,-0.108620689655082,0.272881355932314,-0.011864406779643,0.000000000000002,-0.000000000000013,-0.010344827586226,0.000000000000012,0.010344827586227,0.011864406779644,-0.000000000000004,2 +10329,10387,10389,10447,-0.118965517241306,0.284745762711968,-0.113793103448194,0.278813559322143,-0.113793103448191,0.290677966101782,-0.108620689655078,0.284745762711957,-0.011864406779638,0.000000000000003,-0.000000000000012,-0.010344827586227,0.000000000000009,0.010344827586228,0.011864406779641,-0.000000000000003,2 +10330,10388,10390,10448,-0.118965517241303,0.296610169491611,-0.113793103448191,0.290677966101782,-0.113793103448188,0.302542372881432,-0.108620689655075,0.296610169491602,-0.011864406779650,0.000000000000003,-0.000000000000009,-0.010344827586228,0.000000000000008,0.010344827586229,0.011864406779650,-0.000000000000003,2 +10331,10389,10391,10449,-0.118965517241301,0.308474576271253,-0.113793103448188,0.302542372881432,-0.113793103448185,0.314406779661068,-0.108620689655071,0.308474576271246,-0.011864406779635,0.000000000000002,-0.000000000000008,-0.010344827586229,0.000000000000006,0.010344827586230,0.011864406779638,-0.000000000000003,2 +10332,10390,10392,10450,-0.118965517241298,0.320338983050895,-0.113793103448185,0.314406779661068,-0.113793103448182,0.326271186440717,-0.108620689655068,0.320338983050890,-0.011864406779649,0.000000000000003,-0.000000000000006,-0.010344827586230,0.000000000000004,0.010344827586230,0.011864406779650,-0.000000000000003,2 +10333,10391,10393,10451,-0.118965517241296,0.332203389830538,-0.113793103448182,0.326271186440717,-0.113793103448179,0.338135593220355,-0.108620689655065,0.332203389830535,-0.011864406779637,0.000000000000003,-0.000000000000004,-0.010344827586230,0.000000000000002,0.010344827586231,0.011864406779639,-0.000000000000003,2 +8044,10334,10392,10452,-0.113793103448176,0.350000000000000,-0.118965517241293,0.344067796610178,-0.113793103448179,0.338135593220355,-0.108620689655061,0.344067796610177,-0.000000000000000,0.010344827586232,-0.011864406779644,0.000000000000002,-0.000000000000002,-0.010344827586231,0.011864406779646,-0.000000000000003,2 +8930,10335,10395,10453,-0.103448275862175,-0.350000000000000,-0.108620689655262,-0.344067796610155,-0.103448275862171,-0.338135593220310,-0.098275862069084,-0.344067796610156,-0.000000000000000,-0.010344827586177,-0.011864406779691,0.000000000000003,0.000000000000002,0.010344827586178,0.011864406779689,-0.000000000000004,2 +10336,10394,10396,10454,-0.108620689655258,-0.332203389830468,-0.103448275862171,-0.338135593220310,-0.103448275862167,-0.326271186440628,-0.098275862069080,-0.332203389830471,-0.011864406779683,0.000000000000003,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779681,-0.000000000000004,2 +10337,10395,10397,10455,-0.108620689655255,-0.320338983050786,-0.103448275862167,-0.326271186440628,-0.103448275862163,-0.314406779660950,-0.098275862069076,-0.320338983050791,-0.011864406779679,0.000000000000004,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779678,-0.000000000000004,2 +10338,10396,10398,10456,-0.108620689655251,-0.308474576271099,-0.103448275862163,-0.314406779660950,-0.103448275862159,-0.302542372881256,-0.098275862069071,-0.308474576271106,-0.011864406779695,0.000000000000003,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779692,-0.000000000000004,2 +10339,10397,10399,10457,-0.108620689655248,-0.296610169491417,-0.103448275862159,-0.302542372881256,-0.103448275862156,-0.290677966101586,-0.098275862069067,-0.296610169491426,-0.011864406779670,0.000000000000003,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586181,0.011864406779669,-0.000000000000004,2 +10340,10398,10400,10458,-0.108620689655244,-0.284745762711729,-0.103448275862156,-0.290677966101586,-0.103448275862152,-0.278813559321883,-0.098275862069063,-0.284745762711740,-0.011864406779705,0.000000000000003,-0.000000000000009,-0.010344827586181,0.000000000000012,0.010344827586182,0.011864406779702,-0.000000000000004,2 +10341,10399,10401,10459,-0.108620689655241,-0.272881355932043,-0.103448275862152,-0.278813559321883,-0.103448275862148,-0.266949152542215,-0.098275862069059,-0.272881355932056,-0.011864406779669,0.000000000000003,-0.000000000000012,-0.010344827586182,0.000000000000013,0.010344827586183,0.011864406779668,-0.000000000000004,2 +10342,10400,10402,10460,-0.108620689655238,-0.261016949152362,-0.103448275862148,-0.266949152542215,-0.103448275862144,-0.255084745762525,-0.098275862069054,-0.261016949152377,-0.011864406779692,0.000000000000003,-0.000000000000013,-0.010344827586183,0.000000000000016,0.010344827586184,0.011864406779689,-0.000000000000004,2 +10343,10401,10403,10461,-0.108620689655234,-0.249152542372677,-0.103448275862144,-0.255084745762525,-0.103448275862140,-0.243220338982847,-0.098275862069050,-0.249152542372695,-0.011864406779679,0.000000000000003,-0.000000000000016,-0.010344827586184,0.000000000000019,0.010344827586184,0.011864406779677,-0.000000000000004,2 +10344,10402,10404,10462,-0.108620689655231,-0.237288135592997,-0.103448275862140,-0.243220338982847,-0.103448275862136,-0.231355932203167,-0.098275862069046,-0.237288135593017,-0.011864406779681,0.000000000000003,-0.000000000000019,-0.010344827586184,0.000000000000020,0.010344827586185,0.011864406779679,-0.000000000000004,2 +10345,10403,10405,10463,-0.108620689655227,-0.225423728813310,-0.103448275862136,-0.231355932203167,-0.103448275862132,-0.219491525423476,-0.098275862069042,-0.225423728813332,-0.011864406779692,0.000000000000004,-0.000000000000020,-0.010344827586185,0.000000000000023,0.010344827586186,0.011864406779690,-0.000000000000004,2 +10346,10404,10406,10464,-0.108620689655224,-0.213559322033630,-0.103448275862132,-0.219491525423476,-0.103448275862129,-0.207627118643808,-0.098275862069037,-0.213559322033654,-0.011864406779669,0.000000000000003,-0.000000000000023,-0.010344827586186,0.000000000000024,0.010344827586187,0.011864406779667,-0.000000000000004,2 +10347,10405,10407,10465,-0.108620689655220,-0.201694915253944,-0.103448275862129,-0.207627118643808,-0.103448275862125,-0.195762711864105,-0.098275862069033,-0.201694915253969,-0.011864406779704,0.000000000000003,-0.000000000000024,-0.010344827586187,0.000000000000027,0.010344827586188,0.011864406779701,-0.000000000000004,2 +10348,10406,10408,10466,-0.108620689655217,-0.189830508474258,-0.103448275862125,-0.195762711864105,-0.103448275862121,-0.183898305084439,-0.098275862069029,-0.189830508474286,-0.011864406779667,0.000000000000003,-0.000000000000027,-0.010344827586188,0.000000000000029,0.010344827586188,0.011864406779666,-0.000000000000004,2 +10349,10407,10409,10467,-0.108620689655213,-0.177966101694576,-0.103448275862121,-0.183898305084439,-0.103448275862117,-0.172033898304744,-0.098275862069025,-0.177966101694607,-0.011864406779696,0.000000000000003,-0.000000000000029,-0.010344827586188,0.000000000000032,0.010344827586189,0.011864406779693,-0.000000000000004,2 +10350,10408,10410,10468,-0.108620689655210,-0.166101694914891,-0.103448275862117,-0.172033898304744,-0.103448275862113,-0.160169491525070,-0.098275862069020,-0.166101694914923,-0.011864406779676,0.000000000000003,-0.000000000000032,-0.010344827586189,0.000000000000034,0.010344827586190,0.011864406779674,-0.000000000000004,2 +10351,10409,10411,10469,-0.108620689655206,-0.154237288135219,-0.103448275862113,-0.160169491525070,-0.103448275862109,-0.148305084745403,-0.098275862069016,-0.154237288135254,-0.011864406779667,0.000000000000003,-0.000000000000034,-0.010344827586190,0.000000000000035,0.010344827586191,0.011864406779665,-0.000000000000004,2 +10352,10410,10412,10470,-0.108620689655203,-0.142372881355542,-0.103448275862109,-0.148305084745403,-0.103448275862106,-0.136440677965718,-0.098275862069012,-0.142372881355579,-0.011864406779686,0.000000000000003,-0.000000000000035,-0.010344827586191,0.000000000000038,0.010344827586192,0.011864406779684,-0.000000000000004,2 +10353,10411,10413,10471,-0.108620689655200,-0.130508474575860,-0.103448275862106,-0.136440677965718,-0.103448275862102,-0.124576271186039,-0.098275862069008,-0.130508474575898,-0.011864406779680,0.000000000000003,-0.000000000000038,-0.010344827586192,0.000000000000039,0.010344827586192,0.011864406779678,-0.000000000000004,2 +10354,10412,10414,10472,-0.108620689655196,-0.118644067796176,-0.103448275862102,-0.124576271186039,-0.103448275862098,-0.112711864406353,-0.098275862069003,-0.118644067796216,-0.011864406779688,0.000000000000004,-0.000000000000039,-0.010344827586192,0.000000000000042,0.010344827586193,0.011864406779685,-0.000000000000004,2 +10355,10413,10415,10473,-0.108620689655193,-0.106779661016493,-0.103448275862098,-0.112711864406353,-0.103448275862094,-0.100847457626676,-0.098275862068999,-0.106779661016536,-0.011864406779678,0.000000000000003,-0.000000000000042,-0.010344827586193,0.000000000000044,0.010344827586194,0.011864406779676,-0.000000000000004,2 +10356,10414,10416,10474,-0.108620689655189,-0.094915254236810,-0.103448275862094,-0.100847457626676,-0.103448275862090,-0.088983050846989,-0.098275862068995,-0.094915254236855,-0.011864406779688,0.000000000000003,-0.000000000000044,-0.010344827586194,0.000000000000046,0.010344827586195,0.011864406779685,-0.000000000000004,2 +10357,10415,10417,10475,-0.108620689655186,-0.083050847457122,-0.103448275862090,-0.088983050846989,-0.103448275862086,-0.077118644067303,-0.098275862068991,-0.083050847457170,-0.011864406779688,0.000000000000003,-0.000000000000046,-0.010344827586195,0.000000000000049,0.010344827586195,0.011864406779685,-0.000000000000004,2 +10358,10416,10418,10476,-0.108620689655182,-0.071186440677440,-0.103448275862086,-0.077118644067303,-0.103448275862082,-0.065254237287626,-0.098275862068986,-0.071186440677490,-0.011864406779678,0.000000000000003,-0.000000000000049,-0.010344827586195,0.000000000000051,0.010344827586196,0.011864406779676,-0.000000000000004,2 +10359,10417,10419,10477,-0.108620689655179,-0.059322033897757,-0.103448275862082,-0.065254237287626,-0.103448275862079,-0.053389830507940,-0.098275862068982,-0.059322033897809,-0.011864406779688,0.000000000000003,-0.000000000000051,-0.010344827586196,0.000000000000053,0.010344827586197,0.011864406779685,-0.000000000000004,2 +10360,10418,10420,10478,-0.108620689655175,-0.047457627118071,-0.103448275862079,-0.053389830507940,-0.103448275862075,-0.041525423728257,-0.098275862068978,-0.047457627118126,-0.011864406779684,0.000000000000003,-0.000000000000053,-0.010344827586197,0.000000000000056,0.010344827586198,0.011864406779681,-0.000000000000004,2 +10361,10419,10421,10479,-0.108620689655172,-0.035593220338388,-0.103448275862075,-0.041525423728257,-0.103448275862071,-0.029661016948576,-0.098275862068974,-0.035593220338445,-0.011864406779682,0.000000000000003,-0.000000000000056,-0.010344827586198,0.000000000000058,0.010344827586199,0.011864406779680,-0.000000000000004,2 +10362,10420,10422,10480,-0.108620689655168,-0.023728813558704,-0.103448275862071,-0.029661016948576,-0.103448275862067,-0.017796610168890,-0.098275862068969,-0.023728813558763,-0.011864406779688,0.000000000000004,-0.000000000000058,-0.010344827586199,0.000000000000060,0.010344827586199,0.011864406779685,-0.000000000000004,2 +10363,10421,10423,10481,-0.108620689655165,-0.011864406779021,-0.103448275862067,-0.017796610168890,-0.103448275862063,-0.005932203389213,-0.098275862068965,-0.011864406779082,-0.011864406779678,0.000000000000003,-0.000000000000060,-0.010344827586199,0.000000000000062,0.010344827586200,0.011864406779676,-0.000000000000004,2 +10364,10422,10424,10482,-0.108620689655161,0.000000000000655,-0.103448275862063,-0.005932203389213,-0.103448275862059,0.005932203390460,-0.098275862068961,0.000000000000592,-0.011864406779673,0.000000000000003,-0.000000000000062,-0.010344827586200,0.000000000000062,0.010344827586201,0.011864406779673,-0.000000000000004,2 +10365,10423,10425,10483,-0.108620689655158,0.011864406780309,-0.103448275862059,0.005932203390460,-0.103448275862055,0.017796610170096,-0.098275862068957,0.011864406780247,-0.011864406779635,0.000000000000003,-0.000000000000062,-0.010344827586201,0.000000000000060,0.010344827586202,0.011864406779637,-0.000000000000004,2 +10366,10424,10426,10484,-0.108620689655155,0.023728813559944,-0.103448275862055,0.017796610170096,-0.103448275862052,0.029661016949734,-0.098275862068952,0.023728813559885,-0.011864406779636,0.000000000000003,-0.000000000000060,-0.010344827586202,0.000000000000058,0.010344827586202,0.011864406779639,-0.000000000000004,2 +10367,10425,10427,10485,-0.108620689655151,0.035593220339580,-0.103448275862052,0.029661016949734,-0.103448275862048,0.041525423729370,-0.098275862068948,0.035593220339523,-0.011864406779635,0.000000000000003,-0.000000000000058,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779638,-0.000000000000004,2 +10368,10426,10428,10486,-0.108620689655148,0.047457627119216,-0.103448275862048,0.041525423729370,-0.103448275862044,0.053389830509007,-0.098275862068944,0.047457627119161,-0.011864406779636,0.000000000000003,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586204,0.011864406779638,-0.000000000000004,2 +10369,10427,10429,10487,-0.108620689655144,0.059322033898852,-0.103448275862044,0.053389830509007,-0.103448275862040,0.065254237288645,-0.098275862068940,0.059322033898800,-0.011864406779636,0.000000000000003,-0.000000000000053,-0.010344827586204,0.000000000000051,0.010344827586205,0.011864406779639,-0.000000000000004,2 +10370,10428,10430,10488,-0.108620689655141,0.071186440678487,-0.103448275862040,0.065254237288645,-0.103448275862036,0.077118644068280,-0.098275862068935,0.071186440678438,-0.011864406779635,0.000000000000003,-0.000000000000051,-0.010344827586205,0.000000000000049,0.010344827586206,0.011864406779637,-0.000000000000004,2 +10371,10429,10431,10489,-0.108620689655137,0.083050847458123,-0.103448275862036,0.077118644068280,-0.103448275862032,0.088983050847918,-0.098275862068931,0.083050847458075,-0.011864406779636,0.000000000000004,-0.000000000000049,-0.010344827586206,0.000000000000046,0.010344827586206,0.011864406779639,-0.000000000000004,2 +10372,10430,10432,10490,-0.108620689655134,0.094915254237759,-0.103448275862032,0.088983050847918,-0.103448275862028,0.100847457627556,-0.098275862068927,0.094915254237714,-0.011864406779636,0.000000000000003,-0.000000000000046,-0.010344827586206,0.000000000000044,0.010344827586207,0.011864406779639,-0.000000000000004,2 +10373,10431,10433,10491,-0.108620689655130,0.106779661017395,-0.103448275862028,0.100847457627556,-0.103448275862025,0.112711864407192,-0.098275862068923,0.106779661017352,-0.011864406779635,0.000000000000003,-0.000000000000044,-0.010344827586207,0.000000000000042,0.010344827586208,0.011864406779637,-0.000000000000004,2 +10374,10432,10434,10492,-0.108620689655127,0.118644067797031,-0.103448275862025,0.112711864407192,-0.103448275862021,0.124576271186829,-0.098275862068919,0.118644067796990,-0.011864406779636,0.000000000000003,-0.000000000000042,-0.010344827586208,0.000000000000039,0.010344827586209,0.011864406779639,-0.000000000000004,2 +10375,10433,10435,10493,-0.108620689655123,0.130508474576671,-0.103448275862021,0.124576271186829,-0.103448275862017,0.136440677966474,-0.098275862068914,0.130508474576632,-0.011864406779644,0.000000000000003,-0.000000000000039,-0.010344827586209,0.000000000000038,0.010344827586210,0.011864406779646,-0.000000000000004,2 +10376,10434,10436,10494,-0.108620689655120,0.142372881356311,-0.103448275862017,0.136440677966474,-0.103448275862013,0.148305084746112,-0.098275862068910,0.142372881356275,-0.011864406779636,0.000000000000003,-0.000000000000038,-0.010344827586210,0.000000000000035,0.010344827586210,0.011864406779639,-0.000000000000004,2 +10377,10435,10437,10495,-0.108620689655116,0.154237288135946,-0.103448275862013,0.148305084746112,-0.103448275862009,0.160169491525746,-0.098275862068906,0.154237288135911,-0.011864406779633,0.000000000000003,-0.000000000000035,-0.010344827586210,0.000000000000034,0.010344827586211,0.011864406779635,-0.000000000000004,2 +10378,10436,10438,10496,-0.108620689655113,0.166101694915580,-0.103448275862009,0.160169491525746,-0.103448275862005,0.172033898305381,-0.098275862068902,0.166101694915547,-0.011864406779635,0.000000000000003,-0.000000000000034,-0.010344827586211,0.000000000000032,0.010344827586212,0.011864406779636,-0.000000000000004,2 +10379,10437,10439,10497,-0.108620689655110,0.177966101695216,-0.103448275862005,0.172033898305381,-0.103448275862001,0.183898305085020,-0.098275862068897,0.177966101695185,-0.011864406779638,0.000000000000004,-0.000000000000032,-0.010344827586212,0.000000000000029,0.010344827586213,0.011864406779640,-0.000000000000004,2 +10380,10438,10440,10498,-0.108620689655106,0.189830508474851,-0.103448275862001,0.183898305085020,-0.103448275861998,0.195762711864654,-0.098275862068893,0.189830508474823,-0.011864406779633,0.000000000000003,-0.000000000000029,-0.010344827586213,0.000000000000027,0.010344827586213,0.011864406779635,-0.000000000000004,2 +10381,10439,10441,10499,-0.108620689655103,0.201694915254487,-0.103448275861998,0.195762711864654,-0.103448275861994,0.207627118644295,-0.098275862068889,0.201694915254461,-0.011864406779639,0.000000000000003,-0.000000000000027,-0.010344827586213,0.000000000000024,0.010344827586214,0.011864406779642,-0.000000000000004,2 +10382,10440,10442,10500,-0.108620689655099,0.213559322034126,-0.103448275861994,0.207627118644295,-0.103448275861990,0.219491525423934,-0.098275862068885,0.213559322034102,-0.011864406779638,0.000000000000003,-0.000000000000024,-0.010344827586214,0.000000000000023,0.010344827586215,0.011864406779640,-0.000000000000004,2 +10383,10441,10443,10501,-0.108620689655096,0.225423728813766,-0.103448275861990,0.219491525423934,-0.103448275861986,0.231355932203576,-0.098275862068880,0.225423728813744,-0.011864406779641,0.000000000000003,-0.000000000000023,-0.010344827586215,0.000000000000021,0.010344827586216,0.011864406779644,-0.000000000000004,2 +10384,10442,10444,10502,-0.108620689655092,0.237288135593408,-0.103448275861986,0.231355932203576,-0.103448275861982,0.243220338983219,-0.098275862068876,0.237288135593388,-0.011864406779642,0.000000000000003,-0.000000000000021,-0.010344827586216,0.000000000000019,0.010344827586217,0.011864406779644,-0.000000000000004,2 +10385,10443,10445,10503,-0.108620689655089,0.249152542373044,-0.103448275861982,0.243220338983219,-0.103448275861978,0.255084745762852,-0.098275862068872,0.249152542373027,-0.011864406779632,0.000000000000003,-0.000000000000019,-0.010344827586217,0.000000000000016,0.010344827586217,0.011864406779634,-0.000000000000004,2 +10386,10444,10446,10504,-0.108620689655085,0.261016949152676,-0.103448275861978,0.255084745762852,-0.103448275861975,0.266949152542485,-0.098275862068868,0.261016949152661,-0.011864406779632,0.000000000000003,-0.000000000000016,-0.010344827586217,0.000000000000014,0.010344827586218,0.011864406779635,-0.000000000000004,2 +10387,10445,10447,10505,-0.108620689655082,0.272881355932314,-0.103448275861975,0.266949152542485,-0.103448275861971,0.278813559322130,-0.098275862068863,0.272881355932301,-0.011864406779644,0.000000000000004,-0.000000000000014,-0.010344827586218,0.000000000000012,0.010344827586219,0.011864406779646,-0.000000000000004,2 +10388,10446,10448,10506,-0.108620689655078,0.284745762711957,-0.103448275861971,0.278813559322130,-0.103448275861967,0.290677966101772,-0.098275862068859,0.284745762711946,-0.011864406779641,0.000000000000003,-0.000000000000012,-0.010344827586219,0.000000000000009,0.010344827586220,0.011864406779644,-0.000000000000004,2 +10389,10447,10449,10507,-0.108620689655075,0.296610169491602,-0.103448275861967,0.290677966101772,-0.103448275861963,0.302542372881423,-0.098275862068855,0.296610169491593,-0.011864406779650,0.000000000000003,-0.000000000000009,-0.010344827586220,0.000000000000008,0.010344827586220,0.011864406779651,-0.000000000000004,2 +10390,10448,10450,10508,-0.108620689655071,0.308474576271246,-0.103448275861963,0.302542372881423,-0.103448275861959,0.314406779661062,-0.098275862068851,0.308474576271239,-0.011864406779638,0.000000000000003,-0.000000000000008,-0.010344827586220,0.000000000000005,0.010344827586221,0.011864406779640,-0.000000000000004,2 +10391,10449,10451,10509,-0.108620689655068,0.320338983050890,-0.103448275861959,0.314406779661062,-0.103448275861955,0.326271186440713,-0.098275862068846,0.320338983050885,-0.011864406779650,0.000000000000003,-0.000000000000005,-0.010344827586221,0.000000000000004,0.010344827586222,0.011864406779652,-0.000000000000004,2 +10392,10450,10452,10510,-0.108620689655065,0.332203389830535,-0.103448275861955,0.326271186440713,-0.103448275861951,0.338135593220353,-0.098275862068842,0.332203389830531,-0.011864406779639,0.000000000000003,-0.000000000000004,-0.010344827586222,0.000000000000002,0.010344827586223,0.011864406779641,-0.000000000000004,2 +8030,10393,10451,10511,-0.103448275861948,0.350000000000000,-0.108620689655061,0.344067796610177,-0.103448275861951,0.338135593220353,-0.098275862068838,0.344067796610176,-0.000000000000000,0.010344827586224,-0.011864406779646,0.000000000000003,-0.000000000000002,-0.010344827586223,0.011864406779648,-0.000000000000004,2 +8931,10394,10454,10512,-0.093103448275998,-0.350000000000000,-0.098275862069084,-0.344067796610156,-0.093103448275993,-0.338135593220313,-0.087931034482906,-0.344067796610157,-0.000000000000000,-0.010344827586177,-0.011864406779689,0.000000000000004,0.000000000000002,0.010344827586178,0.011864406779686,-0.000000000000005,2 +10395,10453,10455,10513,-0.098275862069080,-0.332203389830471,-0.093103448275993,-0.338135593220313,-0.093103448275988,-0.326271186440632,-0.087931034482901,-0.332203389830474,-0.011864406779681,0.000000000000004,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779679,-0.000000000000005,2 +10396,10454,10456,10514,-0.098275862069076,-0.320338983050791,-0.093103448275988,-0.326271186440632,-0.093103448275983,-0.314406779660955,-0.087931034482896,-0.320338983050796,-0.011864406779678,0.000000000000004,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779676,-0.000000000000005,2 +10397,10455,10457,10515,-0.098275862069071,-0.308474576271106,-0.093103448275983,-0.314406779660955,-0.093103448275979,-0.302542372881264,-0.087931034482890,-0.308474576271113,-0.011864406779692,0.000000000000004,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779690,-0.000000000000005,2 +10398,10456,10458,10516,-0.098275862069067,-0.296610169491426,-0.093103448275979,-0.302542372881264,-0.093103448275974,-0.290677966101596,-0.087931034482885,-0.296610169491434,-0.011864406779669,0.000000000000004,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779668,-0.000000000000005,2 +10399,10457,10459,10517,-0.098275862069063,-0.284745762711740,-0.093103448275974,-0.290677966101596,-0.093103448275969,-0.278813559321896,-0.087931034482880,-0.284745762711751,-0.011864406779702,0.000000000000004,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779698,-0.000000000000005,2 +10400,10458,10460,10518,-0.098275862069059,-0.272881355932056,-0.093103448275969,-0.278813559321896,-0.093103448275964,-0.266949152542229,-0.087931034482875,-0.272881355932069,-0.011864406779668,0.000000000000004,-0.000000000000012,-0.010344827586183,0.000000000000013,0.010344827586184,0.011864406779667,-0.000000000000005,2 +10401,10459,10461,10519,-0.098275862069054,-0.261016949152377,-0.093103448275964,-0.266949152542229,-0.093103448275960,-0.255084745762541,-0.087931034482870,-0.261016949152392,-0.011864406779689,0.000000000000004,-0.000000000000013,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779686,-0.000000000000005,2 +10402,10460,10462,10520,-0.098275862069050,-0.249152542372695,-0.093103448275960,-0.255084745762541,-0.093103448275955,-0.243220338982866,-0.087931034482864,-0.249152542372712,-0.011864406779677,0.000000000000004,-0.000000000000016,-0.010344827586185,0.000000000000019,0.010344827586186,0.011864406779674,-0.000000000000005,2 +10403,10461,10463,10521,-0.098275862069046,-0.237288135593017,-0.093103448275955,-0.243220338982866,-0.093103448275950,-0.231355932203187,-0.087931034482859,-0.237288135593036,-0.011864406779679,0.000000000000004,-0.000000000000019,-0.010344827586186,0.000000000000021,0.010344827586187,0.011864406779678,-0.000000000000005,2 +10404,10462,10464,10522,-0.098275862069042,-0.225423728813332,-0.093103448275950,-0.231355932203187,-0.093103448275945,-0.219491525423499,-0.087931034482854,-0.225423728813354,-0.011864406779690,0.000000000000004,-0.000000000000021,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779687,-0.000000000000005,2 +10405,10463,10465,10523,-0.098275862069037,-0.213559322033654,-0.093103448275945,-0.219491525423499,-0.093103448275941,-0.207627118643832,-0.087931034482849,-0.213559322033677,-0.011864406779667,0.000000000000004,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779666,-0.000000000000005,2 +10406,10464,10466,10524,-0.098275862069033,-0.201694915253969,-0.093103448275941,-0.207627118643832,-0.093103448275936,-0.195762711864133,-0.087931034482843,-0.201694915253995,-0.011864406779701,0.000000000000004,-0.000000000000024,-0.010344827586189,0.000000000000027,0.010344827586190,0.011864406779698,-0.000000000000005,2 +10407,10465,10467,10525,-0.098275862069029,-0.189830508474286,-0.093103448275936,-0.195762711864133,-0.093103448275931,-0.183898305084468,-0.087931034482838,-0.189830508474314,-0.011864406779666,0.000000000000004,-0.000000000000027,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779664,-0.000000000000005,2 +10408,10466,10468,10526,-0.098275862069025,-0.177966101694607,-0.093103448275931,-0.183898305084468,-0.093103448275926,-0.172033898304776,-0.087931034482833,-0.177966101694637,-0.011864406779693,0.000000000000004,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779690,-0.000000000000005,2 +10409,10467,10469,10527,-0.098275862069020,-0.166101694914923,-0.093103448275926,-0.172033898304776,-0.093103448275922,-0.160169491525103,-0.087931034482828,-0.166101694914956,-0.011864406779674,0.000000000000004,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779672,-0.000000000000005,2 +10410,10468,10470,10528,-0.098275862069016,-0.154237288135254,-0.093103448275922,-0.160169491525103,-0.093103448275917,-0.148305084745439,-0.087931034482822,-0.154237288135288,-0.011864406779665,0.000000000000004,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779664,-0.000000000000005,2 +10411,10469,10471,10529,-0.098275862069012,-0.142372881355579,-0.093103448275917,-0.148305084745439,-0.093103448275912,-0.136440677965756,-0.087931034482817,-0.142372881355616,-0.011864406779684,0.000000000000004,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779681,-0.000000000000005,2 +10412,10470,10472,10530,-0.098275862069008,-0.130508474575898,-0.093103448275912,-0.136440677965756,-0.093103448275907,-0.124576271186079,-0.087931034482812,-0.130508474575937,-0.011864406779678,0.000000000000004,-0.000000000000038,-0.010344827586195,0.000000000000040,0.010344827586196,0.011864406779676,-0.000000000000005,2 +10413,10471,10473,10531,-0.098275862069003,-0.118644067796216,-0.093103448275907,-0.124576271186079,-0.093103448275903,-0.112711864406395,-0.087931034482807,-0.118644067796257,-0.011864406779685,0.000000000000004,-0.000000000000040,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779683,-0.000000000000005,2 +10414,10472,10474,10532,-0.098275862068999,-0.106779661016536,-0.093103448275903,-0.112711864406395,-0.093103448275898,-0.100847457626720,-0.087931034482801,-0.106779661016579,-0.011864406779676,0.000000000000004,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779674,-0.000000000000005,2 +10415,10473,10475,10533,-0.098275862068995,-0.094915254236855,-0.093103448275898,-0.100847457626720,-0.093103448275893,-0.088983050847036,-0.087931034482796,-0.094915254236900,-0.011864406779685,0.000000000000004,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779683,-0.000000000000005,2 +10416,10474,10476,10534,-0.098275862068991,-0.083050847457170,-0.093103448275893,-0.088983050847036,-0.093103448275888,-0.077118644067352,-0.087931034482791,-0.083050847457218,-0.011864406779685,0.000000000000004,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779683,-0.000000000000005,2 +10417,10475,10477,10535,-0.098275862068986,-0.071186440677490,-0.093103448275888,-0.077118644067352,-0.093103448275884,-0.065254237287677,-0.087931034482786,-0.071186440677539,-0.011864406779676,0.000000000000004,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779674,-0.000000000000005,2 +10418,10476,10478,10536,-0.098275862068982,-0.059322033897809,-0.093103448275884,-0.065254237287677,-0.093103448275879,-0.053389830507993,-0.087931034482780,-0.059322033897861,-0.011864406779685,0.000000000000004,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779683,-0.000000000000005,2 +10419,10477,10479,10537,-0.098275862068978,-0.047457627118126,-0.093103448275879,-0.053389830507993,-0.093103448275874,-0.041525423728313,-0.087931034482775,-0.047457627118180,-0.011864406779681,0.000000000000004,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779679,-0.000000000000005,2 +10420,10478,10480,10538,-0.098275862068974,-0.035593220338445,-0.093103448275874,-0.041525423728313,-0.093103448275869,-0.029661016948634,-0.087931034482770,-0.035593220338502,-0.011864406779680,0.000000000000004,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779678,-0.000000000000005,2 +10421,10479,10481,10539,-0.098275862068969,-0.023728813558763,-0.093103448275869,-0.029661016948634,-0.093103448275865,-0.017796610168950,-0.087931034482765,-0.023728813558822,-0.011864406779685,0.000000000000004,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586205,0.011864406779683,-0.000000000000005,2 +10422,10480,10482,10540,-0.098275862068965,-0.011864406779082,-0.093103448275865,-0.017796610168950,-0.093103448275860,-0.005932203389275,-0.087931034482760,-0.011864406779143,-0.011864406779676,0.000000000000004,-0.000000000000060,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779674,-0.000000000000005,2 +10423,10481,10483,10541,-0.098275862068961,0.000000000000592,-0.093103448275860,-0.005932203389275,-0.093103448275855,0.005932203390398,-0.087931034482754,0.000000000000530,-0.011864406779673,0.000000000000004,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000005,2 +10424,10482,10484,10542,-0.098275862068957,0.011864406780247,-0.093103448275855,0.005932203390398,-0.093103448275851,0.017796610170036,-0.087931034482749,0.011864406780186,-0.011864406779637,0.000000000000004,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586208,0.011864406779639,-0.000000000000005,2 +10425,10483,10485,10543,-0.098275862068952,0.023728813559885,-0.093103448275851,0.017796610170036,-0.093103448275846,0.029661016949676,-0.087931034482744,0.023728813559826,-0.011864406779639,0.000000000000004,-0.000000000000060,-0.010344827586208,0.000000000000058,0.010344827586209,0.011864406779641,-0.000000000000005,2 +10426,10484,10486,10544,-0.098275862068948,0.035593220339523,-0.093103448275846,0.029661016949676,-0.093103448275841,0.041525423729314,-0.087931034482739,0.035593220339467,-0.011864406779638,0.000000000000004,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779640,-0.000000000000005,2 +10427,10485,10487,10545,-0.098275862068944,0.047457627119161,-0.093103448275841,0.041525423729314,-0.093103448275836,0.053389830508954,-0.087931034482733,0.047457627119107,-0.011864406779638,0.000000000000004,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586211,0.011864406779640,-0.000000000000005,2 +10428,10486,10488,10546,-0.098275862068940,0.059322033898800,-0.093103448275836,0.053389830508954,-0.093103448275832,0.065254237288594,-0.087931034482728,0.059322033898748,-0.011864406779639,0.000000000000004,-0.000000000000053,-0.010344827586211,0.000000000000051,0.010344827586212,0.011864406779641,-0.000000000000005,2 +10429,10487,10489,10547,-0.098275862068935,0.071186440678438,-0.093103448275832,0.065254237288594,-0.093103448275827,0.077118644068232,-0.087931034482723,0.071186440678388,-0.011864406779637,0.000000000000004,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586213,0.011864406779639,-0.000000000000005,2 +10430,10488,10490,10548,-0.098275862068931,0.083050847458075,-0.093103448275827,0.077118644068232,-0.093103448275822,0.088983050847872,-0.087931034482718,0.083050847458028,-0.011864406779639,0.000000000000004,-0.000000000000049,-0.010344827586213,0.000000000000046,0.010344827586214,0.011864406779641,-0.000000000000005,2 +10431,10489,10491,10549,-0.098275862068927,0.094915254237714,-0.093103448275822,0.088983050847872,-0.093103448275817,0.100847457627512,-0.087931034482712,0.094915254237669,-0.011864406779639,0.000000000000004,-0.000000000000046,-0.010344827586214,0.000000000000044,0.010344827586215,0.011864406779641,-0.000000000000005,2 +10432,10490,10492,10550,-0.098275862068923,0.106779661017352,-0.093103448275817,0.100847457627512,-0.093103448275813,0.112711864407150,-0.087931034482707,0.106779661017309,-0.011864406779637,0.000000000000004,-0.000000000000044,-0.010344827586215,0.000000000000042,0.010344827586216,0.011864406779639,-0.000000000000005,2 +10433,10491,10493,10551,-0.098275862068919,0.118644067796990,-0.093103448275813,0.112711864407150,-0.093103448275808,0.124576271186790,-0.087931034482702,0.118644067796949,-0.011864406779639,0.000000000000004,-0.000000000000042,-0.010344827586216,0.000000000000039,0.010344827586217,0.011864406779641,-0.000000000000005,2 +10434,10492,10494,10552,-0.098275862068914,0.130508474576632,-0.093103448275808,0.124576271186790,-0.093103448275803,0.136440677966436,-0.087931034482697,0.130508474576594,-0.011864406779646,0.000000000000004,-0.000000000000039,-0.010344827586217,0.000000000000038,0.010344827586218,0.011864406779648,-0.000000000000005,2 +10435,10493,10495,10553,-0.098275862068910,0.142372881356275,-0.093103448275803,0.136440677966436,-0.093103448275798,0.148305084746076,-0.087931034482691,0.142372881356238,-0.011864406779639,0.000000000000004,-0.000000000000038,-0.010344827586218,0.000000000000035,0.010344827586219,0.011864406779641,-0.000000000000005,2 +10436,10494,10496,10554,-0.098275862068906,0.154237288135911,-0.093103448275798,0.148305084746076,-0.093103448275794,0.160169491525712,-0.087931034482686,0.154237288135877,-0.011864406779635,0.000000000000004,-0.000000000000035,-0.010344827586219,0.000000000000034,0.010344827586220,0.011864406779636,-0.000000000000005,2 +10437,10495,10497,10555,-0.098275862068902,0.166101694915547,-0.093103448275794,0.160169491525712,-0.093103448275789,0.172033898305349,-0.087931034482681,0.166101694915514,-0.011864406779636,0.000000000000004,-0.000000000000034,-0.010344827586220,0.000000000000032,0.010344827586221,0.011864406779638,-0.000000000000005,2 +10438,10496,10498,10556,-0.098275862068897,0.177966101695185,-0.093103448275789,0.172033898305349,-0.093103448275784,0.183898305084991,-0.087931034482676,0.177966101695155,-0.011864406779640,0.000000000000004,-0.000000000000032,-0.010344827586221,0.000000000000029,0.010344827586222,0.011864406779643,-0.000000000000005,2 +10439,10497,10499,10557,-0.098275862068893,0.189830508474823,-0.093103448275784,0.183898305084991,-0.093103448275779,0.195762711864627,-0.087931034482670,0.189830508474795,-0.011864406779635,0.000000000000004,-0.000000000000029,-0.010344827586222,0.000000000000028,0.010344827586223,0.011864406779636,-0.000000000000005,2 +10440,10498,10500,10558,-0.098275862068889,0.201694915254461,-0.093103448275779,0.195762711864627,-0.093103448275775,0.207627118644270,-0.087931034482665,0.201694915254436,-0.011864406779642,0.000000000000004,-0.000000000000028,-0.010344827586223,0.000000000000024,0.010344827586224,0.011864406779645,-0.000000000000005,2 +10441,10499,10501,10559,-0.098275862068885,0.213559322034102,-0.093103448275775,0.207627118644270,-0.093103448275770,0.219491525423911,-0.087931034482660,0.213559322034079,-0.011864406779640,0.000000000000004,-0.000000000000024,-0.010344827586224,0.000000000000023,0.010344827586225,0.011864406779642,-0.000000000000005,2 +10442,10500,10502,10560,-0.098275862068880,0.225423728813744,-0.093103448275770,0.219491525423911,-0.093103448275765,0.231355932203556,-0.087931034482655,0.225423728813723,-0.011864406779644,0.000000000000004,-0.000000000000023,-0.010344827586225,0.000000000000020,0.010344827586226,0.011864406779646,-0.000000000000005,2 +10443,10501,10503,10561,-0.098275862068876,0.237288135593388,-0.093103448275765,0.231355932203556,-0.093103448275760,0.243220338983201,-0.087931034482649,0.237288135593369,-0.011864406779644,0.000000000000004,-0.000000000000020,-0.010344827586226,0.000000000000018,0.010344827586227,0.011864406779646,-0.000000000000005,2 +10444,10502,10504,10562,-0.098275862068872,0.249152542373027,-0.093103448275760,0.243220338983201,-0.093103448275756,0.255084745762836,-0.087931034482644,0.249152542373009,-0.011864406779634,0.000000000000004,-0.000000000000018,-0.010344827586227,0.000000000000016,0.010344827586228,0.011864406779636,-0.000000000000005,2 +10445,10503,10505,10563,-0.098275862068868,0.261016949152661,-0.093103448275756,0.255084745762836,-0.093103448275751,0.266949152542472,-0.087931034482639,0.261016949152646,-0.011864406779635,0.000000000000004,-0.000000000000016,-0.010344827586228,0.000000000000013,0.010344827586229,0.011864406779638,-0.000000000000005,2 +10446,10504,10506,10564,-0.098275862068863,0.272881355932301,-0.093103448275751,0.266949152542472,-0.093103448275746,0.278813559322118,-0.087931034482634,0.272881355932288,-0.011864406779646,0.000000000000004,-0.000000000000013,-0.010344827586229,0.000000000000012,0.010344827586230,0.011864406779647,-0.000000000000005,2 +10447,10505,10507,10565,-0.098275862068859,0.284745762711946,-0.093103448275746,0.278813559322118,-0.093103448275741,0.290677966101763,-0.087931034482629,0.284745762711935,-0.011864406779644,0.000000000000004,-0.000000000000012,-0.010344827586230,0.000000000000009,0.010344827586231,0.011864406779647,-0.000000000000005,2 +10448,10506,10508,10566,-0.098275862068855,0.296610169491593,-0.093103448275741,0.290677966101763,-0.093103448275737,0.302542372881415,-0.087931034482623,0.296610169491585,-0.011864406779651,0.000000000000004,-0.000000000000009,-0.010344827586231,0.000000000000008,0.010344827586232,0.011864406779652,-0.000000000000005,2 +10449,10507,10509,10567,-0.098275862068851,0.308474576271239,-0.093103448275737,0.302542372881415,-0.093103448275732,0.314406779661057,-0.087931034482618,0.308474576271232,-0.011864406779640,0.000000000000004,-0.000000000000008,-0.010344827586232,0.000000000000006,0.010344827586233,0.011864406779643,-0.000000000000005,2 +10450,10508,10510,10568,-0.098275862068846,0.320338983050885,-0.093103448275732,0.314406779661057,-0.093103448275727,0.326271186440709,-0.087931034482613,0.320338983050880,-0.011864406779652,0.000000000000004,-0.000000000000006,-0.010344827586233,0.000000000000004,0.010344827586234,0.011864406779653,-0.000000000000005,2 +10451,10509,10511,10569,-0.098275862068842,0.332203389830531,-0.093103448275727,0.326271186440709,-0.093103448275722,0.338135593220351,-0.087931034482608,0.332203389830528,-0.011864406779641,0.000000000000004,-0.000000000000004,-0.010344827586234,0.000000000000002,0.010344827586235,0.011864406779643,-0.000000000000005,2 +8016,10452,10510,10570,-0.093103448275718,0.350000000000000,-0.098275862068838,0.344067796610176,-0.093103448275722,0.338135593220351,-0.087931034482602,0.344067796610175,-0.000000000000000,0.010344827586236,-0.011864406779648,0.000000000000004,-0.000000000000002,-0.010344827586235,0.011864406779650,-0.000000000000005,2 +8932,10453,10513,10571,-0.082758620689820,-0.350000000000000,-0.087931034482906,-0.344067796610157,-0.082758620689814,-0.338135593220315,-0.077586206896728,-0.344067796610158,-0.000000000000000,-0.010344827586177,-0.011864406779686,0.000000000000005,0.000000000000002,0.010344827586178,0.011864406779684,-0.000000000000006,2 +10454,10512,10514,10572,-0.087931034482901,-0.332203389830474,-0.082758620689814,-0.338135593220315,-0.082758620689809,-0.326271186440637,-0.077586206896722,-0.332203389830477,-0.011864406779679,0.000000000000005,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779677,-0.000000000000006,2 +10455,10513,10515,10573,-0.087931034482896,-0.320338983050796,-0.082758620689809,-0.326271186440637,-0.082758620689803,-0.314406779660961,-0.077586206896716,-0.320338983050801,-0.011864406779676,0.000000000000005,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779675,-0.000000000000006,2 +10456,10514,10516,10574,-0.087931034482890,-0.308474576271113,-0.082758620689803,-0.314406779660961,-0.082758620689797,-0.302542372881273,-0.077586206896710,-0.308474576271120,-0.011864406779690,0.000000000000005,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779687,-0.000000000000006,2 +10457,10515,10517,10575,-0.087931034482885,-0.296610169491434,-0.082758620689797,-0.302542372881273,-0.082758620689792,-0.290677966101605,-0.077586206896703,-0.296610169491443,-0.011864406779668,0.000000000000005,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779667,-0.000000000000006,2 +10458,10516,10518,10576,-0.087931034482880,-0.284745762711751,-0.082758620689792,-0.290677966101605,-0.082758620689786,-0.278813559321908,-0.077586206896697,-0.284745762711762,-0.011864406779698,0.000000000000005,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779696,-0.000000000000006,2 +10459,10517,10519,10577,-0.087931034482875,-0.272881355932069,-0.082758620689786,-0.278813559321908,-0.082758620689780,-0.266949152542242,-0.077586206896691,-0.272881355932081,-0.011864406779667,0.000000000000005,-0.000000000000012,-0.010344827586183,0.000000000000013,0.010344827586184,0.011864406779665,-0.000000000000006,2 +10460,10518,10520,10578,-0.087931034482870,-0.261016949152392,-0.082758620689780,-0.266949152542242,-0.082758620689774,-0.255084745762557,-0.077586206896685,-0.261016949152407,-0.011864406779686,0.000000000000005,-0.000000000000013,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779683,-0.000000000000006,2 +10461,10519,10521,10579,-0.087931034482864,-0.249152542372712,-0.082758620689774,-0.255084745762557,-0.082758620689769,-0.243220338982884,-0.077586206896679,-0.249152542372729,-0.011864406779674,0.000000000000005,-0.000000000000016,-0.010344827586185,0.000000000000018,0.010344827586186,0.011864406779672,-0.000000000000006,2 +10462,10520,10522,10580,-0.087931034482859,-0.237288135593036,-0.082758620689769,-0.243220338982884,-0.082758620689763,-0.231355932203208,-0.077586206896672,-0.237288135593056,-0.011864406779678,0.000000000000005,-0.000000000000018,-0.010344827586186,0.000000000000020,0.010344827586187,0.011864406779676,-0.000000000000006,2 +10463,10521,10523,10581,-0.087931034482854,-0.225423728813354,-0.082758620689763,-0.231355932203208,-0.082758620689757,-0.219491525423522,-0.077586206896666,-0.225423728813375,-0.011864406779687,0.000000000000005,-0.000000000000020,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779685,-0.000000000000006,2 +10464,10522,10524,10582,-0.087931034482849,-0.213559322033677,-0.082758620689757,-0.219491525423522,-0.082758620689751,-0.207627118643856,-0.077586206896660,-0.213559322033701,-0.011864406779666,0.000000000000005,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779664,-0.000000000000006,2 +10465,10523,10525,10583,-0.087931034482843,-0.201694915253995,-0.082758620689751,-0.207627118643856,-0.082758620689746,-0.195762711864160,-0.077586206896654,-0.201694915254021,-0.011864406779698,0.000000000000005,-0.000000000000024,-0.010344827586189,0.000000000000027,0.010344827586190,0.011864406779695,-0.000000000000006,2 +10466,10524,10526,10584,-0.087931034482838,-0.189830508474314,-0.082758620689746,-0.195762711864160,-0.082758620689740,-0.183898305084497,-0.077586206896647,-0.189830508474343,-0.011864406779664,0.000000000000005,-0.000000000000027,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779662,-0.000000000000006,2 +10467,10525,10527,10585,-0.087931034482833,-0.177966101694637,-0.082758620689740,-0.183898305084497,-0.082758620689734,-0.172033898304808,-0.077586206896641,-0.177966101694668,-0.011864406779690,0.000000000000005,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779688,-0.000000000000006,2 +10468,10526,10528,10586,-0.087931034482828,-0.166101694914956,-0.082758620689734,-0.172033898304808,-0.082758620689728,-0.160169491525137,-0.077586206896635,-0.166101694914989,-0.011864406779672,0.000000000000005,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779670,-0.000000000000006,2 +10469,10527,10529,10587,-0.087931034482822,-0.154237288135288,-0.082758620689728,-0.160169491525137,-0.082758620689723,-0.148305084745474,-0.077586206896629,-0.154237288135323,-0.011864406779664,0.000000000000005,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779662,-0.000000000000006,2 +10470,10528,10530,10588,-0.087931034482817,-0.142372881355616,-0.082758620689723,-0.148305084745474,-0.082758620689717,-0.136440677965794,-0.077586206896623,-0.142372881355652,-0.011864406779681,0.000000000000005,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779679,-0.000000000000006,2 +10471,10529,10531,10589,-0.087931034482812,-0.130508474575937,-0.082758620689717,-0.136440677965794,-0.082758620689711,-0.124576271186118,-0.077586206896616,-0.130508474575975,-0.011864406779676,0.000000000000005,-0.000000000000038,-0.010344827586195,0.000000000000039,0.010344827586196,0.011864406779675,-0.000000000000006,2 +10472,10530,10532,10590,-0.087931034482807,-0.118644067796257,-0.082758620689711,-0.124576271186118,-0.082758620689706,-0.112711864406437,-0.077586206896610,-0.118644067796298,-0.011864406779683,0.000000000000005,-0.000000000000039,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779680,-0.000000000000006,2 +10473,10531,10533,10591,-0.087931034482801,-0.106779661016579,-0.082758620689706,-0.112711864406437,-0.082758620689700,-0.100847457626764,-0.077586206896604,-0.106779661016622,-0.011864406779674,0.000000000000005,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779672,-0.000000000000006,2 +10474,10532,10534,10592,-0.087931034482796,-0.094915254236900,-0.082758620689700,-0.100847457626764,-0.082758620689694,-0.088983050847082,-0.077586206896598,-0.094915254236946,-0.011864406779683,0.000000000000005,-0.000000000000044,-0.010344827586198,0.000000000000047,0.010344827586199,0.011864406779680,-0.000000000000006,2 +10475,10533,10535,10593,-0.087931034482791,-0.083050847457218,-0.082758620689694,-0.088983050847082,-0.082758620689688,-0.077118644067401,-0.077586206896591,-0.083050847457265,-0.011864406779683,0.000000000000005,-0.000000000000047,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779680,-0.000000000000006,2 +10476,10534,10536,10594,-0.087931034482786,-0.071186440677539,-0.082758620689688,-0.077118644067401,-0.082758620689683,-0.065254237287728,-0.077586206896585,-0.071186440677589,-0.011864406779674,0.000000000000005,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779672,-0.000000000000006,2 +10477,10535,10537,10595,-0.087931034482780,-0.059322033897861,-0.082758620689683,-0.065254237287728,-0.082758620689677,-0.053389830508046,-0.077586206896579,-0.059322033897913,-0.011864406779683,0.000000000000005,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779680,-0.000000000000006,2 +10478,10536,10538,10596,-0.087931034482775,-0.047457627118180,-0.082758620689677,-0.053389830508046,-0.082758620689671,-0.041525423728368,-0.077586206896573,-0.047457627118235,-0.011864406779679,0.000000000000005,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779677,-0.000000000000006,2 +10479,10537,10539,10597,-0.087931034482770,-0.035593220338502,-0.082758620689671,-0.041525423728368,-0.082758620689665,-0.029661016948692,-0.077586206896567,-0.035593220338559,-0.011864406779678,0.000000000000005,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779675,-0.000000000000006,2 +10480,10538,10540,10598,-0.087931034482765,-0.023728813558822,-0.082758620689665,-0.029661016948692,-0.082758620689660,-0.017796610169010,-0.077586206896560,-0.023728813558881,-0.011864406779683,0.000000000000005,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586205,0.011864406779680,-0.000000000000006,2 +10481,10539,10541,10599,-0.087931034482760,-0.011864406779143,-0.082758620689660,-0.017796610169010,-0.082758620689654,-0.005932203389338,-0.077586206896554,-0.011864406779205,-0.011864406779674,0.000000000000005,-0.000000000000060,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779672,-0.000000000000006,2 +10482,10540,10542,10600,-0.087931034482754,0.000000000000530,-0.082758620689654,-0.005932203389338,-0.082758620689648,0.005932203390335,-0.077586206896548,0.000000000000468,-0.011864406779673,0.000000000000005,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000006,2 +10483,10541,10543,10601,-0.087931034482749,0.011864406780186,-0.082758620689648,0.005932203390335,-0.082758620689642,0.017796610169975,-0.077586206896542,0.011864406780125,-0.011864406779639,0.000000000000005,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586208,0.011864406779641,-0.000000000000006,2 +10484,10542,10544,10602,-0.087931034482744,0.023728813559826,-0.082758620689642,0.017796610169975,-0.082758620689637,0.029661016949618,-0.077586206896535,0.023728813559767,-0.011864406779641,0.000000000000005,-0.000000000000060,-0.010344827586208,0.000000000000058,0.010344827586209,0.011864406779644,-0.000000000000006,2 +10485,10543,10545,10603,-0.087931034482739,0.035593220339467,-0.082758620689637,0.029661016949618,-0.082758620689631,0.041525423729259,-0.077586206896529,0.035593220339410,-0.011864406779640,0.000000000000005,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779642,-0.000000000000006,2 +10486,10544,10546,10604,-0.087931034482733,0.047457627119107,-0.082758620689631,0.041525423729259,-0.082758620689625,0.053389830508900,-0.077586206896523,0.047457627119052,-0.011864406779640,0.000000000000005,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586211,0.011864406779643,-0.000000000000006,2 +10487,10545,10547,10605,-0.087931034482728,0.059322033898748,-0.082758620689625,0.053389830508900,-0.082758620689620,0.065254237288543,-0.077586206896517,0.059322033898695,-0.011864406779641,0.000000000000005,-0.000000000000053,-0.010344827586211,0.000000000000051,0.010344827586212,0.011864406779644,-0.000000000000006,2 +10488,10546,10548,10606,-0.087931034482723,0.071186440678388,-0.082758620689620,0.065254237288543,-0.082758620689614,0.077118644068183,-0.077586206896511,0.071186440678338,-0.011864406779639,0.000000000000005,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586213,0.011864406779641,-0.000000000000006,2 +10489,10547,10549,10607,-0.087931034482718,0.083050847458028,-0.082758620689614,0.077118644068183,-0.082758620689608,0.088983050847825,-0.077586206896504,0.083050847457980,-0.011864406779641,0.000000000000005,-0.000000000000049,-0.010344827586213,0.000000000000046,0.010344827586214,0.011864406779644,-0.000000000000006,2 +10490,10548,10550,10608,-0.087931034482712,0.094915254237669,-0.082758620689608,0.088983050847825,-0.082758620689602,0.100847457627468,-0.077586206896498,0.094915254237624,-0.011864406779641,0.000000000000005,-0.000000000000046,-0.010344827586214,0.000000000000044,0.010344827586215,0.011864406779644,-0.000000000000006,2 +10491,10549,10551,10609,-0.087931034482707,0.106779661017309,-0.082758620689602,0.100847457627468,-0.082758620689597,0.112711864407108,-0.077586206896492,0.106779661017266,-0.011864406779639,0.000000000000005,-0.000000000000044,-0.010344827586215,0.000000000000042,0.010344827586216,0.011864406779641,-0.000000000000006,2 +10492,10550,10552,10610,-0.087931034482702,0.118644067796949,-0.082758620689597,0.112711864407108,-0.082758620689591,0.124576271186750,-0.077586206896486,0.118644067796909,-0.011864406779641,0.000000000000005,-0.000000000000042,-0.010344827586216,0.000000000000040,0.010344827586217,0.011864406779644,-0.000000000000006,2 +10493,10551,10553,10611,-0.087931034482697,0.130508474576594,-0.082758620689591,0.124576271186750,-0.082758620689585,0.136440677966399,-0.077586206896479,0.130508474576555,-0.011864406779648,0.000000000000005,-0.000000000000040,-0.010344827586217,0.000000000000038,0.010344827586218,0.011864406779649,-0.000000000000006,2 +10494,10552,10554,10612,-0.087931034482691,0.142372881356238,-0.082758620689585,0.136440677966399,-0.082758620689579,0.148305084746041,-0.077586206896473,0.142372881356201,-0.011864406779641,0.000000000000005,-0.000000000000038,-0.010344827586218,0.000000000000035,0.010344827586219,0.011864406779643,-0.000000000000006,2 +10495,10553,10555,10613,-0.087931034482686,0.154237288135877,-0.082758620689579,0.148305084746041,-0.082758620689574,0.160169491525678,-0.077586206896467,0.154237288135842,-0.011864406779636,0.000000000000005,-0.000000000000035,-0.010344827586219,0.000000000000034,0.010344827586220,0.011864406779638,-0.000000000000006,2 +10496,10554,10556,10614,-0.087931034482681,0.166101694915514,-0.082758620689574,0.160169491525678,-0.082758620689568,0.172033898305317,-0.077586206896461,0.166101694915481,-0.011864406779638,0.000000000000005,-0.000000000000034,-0.010344827586220,0.000000000000032,0.010344827586221,0.011864406779640,-0.000000000000006,2 +10497,10555,10557,10615,-0.087931034482676,0.177966101695155,-0.082758620689568,0.172033898305317,-0.082758620689562,0.183898305084962,-0.077586206896454,0.177966101695125,-0.011864406779643,0.000000000000005,-0.000000000000032,-0.010344827586221,0.000000000000029,0.010344827586222,0.011864406779646,-0.000000000000006,2 +10498,10556,10558,10616,-0.087931034482670,0.189830508474795,-0.082758620689562,0.183898305084962,-0.082758620689556,0.195762711864599,-0.077586206896448,0.189830508474767,-0.011864406779636,0.000000000000005,-0.000000000000029,-0.010344827586222,0.000000000000028,0.010344827586223,0.011864406779638,-0.000000000000006,2 +10499,10557,10559,10617,-0.087931034482665,0.201694915254436,-0.082758620689556,0.195762711864599,-0.082758620689551,0.207627118644246,-0.077586206896442,0.201694915254410,-0.011864406779645,0.000000000000005,-0.000000000000028,-0.010344827586223,0.000000000000024,0.010344827586224,0.011864406779648,-0.000000000000006,2 +10500,10558,10560,10618,-0.087931034482660,0.213559322034079,-0.082758620689551,0.207627118644246,-0.082758620689545,0.219491525423888,-0.077586206896436,0.213559322034055,-0.011864406779642,0.000000000000005,-0.000000000000024,-0.010344827586224,0.000000000000023,0.010344827586225,0.011864406779643,-0.000000000000006,2 +10501,10559,10561,10619,-0.087931034482655,0.225423728813723,-0.082758620689545,0.219491525423888,-0.082758620689539,0.231355932203535,-0.077586206896430,0.225423728813701,-0.011864406779646,0.000000000000005,-0.000000000000023,-0.010344827586225,0.000000000000021,0.010344827586226,0.011864406779648,-0.000000000000006,2 +10502,10560,10562,10620,-0.087931034482649,0.237288135593369,-0.082758620689539,0.231355932203535,-0.082758620689534,0.243220338983182,-0.077586206896423,0.237288135593349,-0.011864406779646,0.000000000000005,-0.000000000000021,-0.010344827586226,0.000000000000019,0.010344827586227,0.011864406779648,-0.000000000000006,2 +10503,10561,10563,10621,-0.087931034482644,0.249152542373009,-0.082758620689534,0.243220338983182,-0.082758620689528,0.255084745762819,-0.077586206896417,0.249152542372992,-0.011864406779636,0.000000000000005,-0.000000000000019,-0.010344827586227,0.000000000000016,0.010344827586228,0.011864406779638,-0.000000000000006,2 +10504,10562,10564,10622,-0.087931034482639,0.261016949152646,-0.082758620689528,0.255084745762819,-0.082758620689522,0.266949152542458,-0.077586206896411,0.261016949152631,-0.011864406779638,0.000000000000005,-0.000000000000016,-0.010344827586228,0.000000000000013,0.010344827586229,0.011864406779641,-0.000000000000006,2 +10505,10563,10565,10623,-0.087931034482634,0.272881355932288,-0.082758620689522,0.266949152542458,-0.082758620689516,0.278813559322106,-0.077586206896405,0.272881355932275,-0.011864406779647,0.000000000000005,-0.000000000000013,-0.010344827586229,0.000000000000012,0.010344827586230,0.011864406779648,-0.000000000000006,2 +10506,10564,10566,10624,-0.087931034482629,0.284745762711935,-0.082758620689516,0.278813559322106,-0.082758620689511,0.290677966101754,-0.077586206896398,0.284745762711924,-0.011864406779647,0.000000000000005,-0.000000000000012,-0.010344827586230,0.000000000000009,0.010344827586231,0.011864406779650,-0.000000000000006,2 +10507,10565,10567,10625,-0.087931034482623,0.296610169491585,-0.082758620689511,0.290677966101754,-0.082758620689505,0.302542372881407,-0.077586206896392,0.296610169491576,-0.011864406779652,0.000000000000005,-0.000000000000009,-0.010344827586231,0.000000000000008,0.010344827586232,0.011864406779653,-0.000000000000006,2 +10508,10566,10568,10626,-0.087931034482618,0.308474576271232,-0.082758620689505,0.302542372881407,-0.082758620689499,0.314406779661051,-0.077586206896386,0.308474576271225,-0.011864406779643,0.000000000000005,-0.000000000000008,-0.010344827586232,0.000000000000006,0.010344827586233,0.011864406779646,-0.000000000000006,2 +10509,10567,10569,10627,-0.087931034482613,0.320338983050880,-0.082758620689499,0.314406779661051,-0.082758620689493,0.326271186440705,-0.077586206896380,0.320338983050875,-0.011864406779653,0.000000000000005,-0.000000000000006,-0.010344827586233,0.000000000000004,0.010344827586234,0.011864406779654,-0.000000000000006,2 +10510,10568,10570,10628,-0.087931034482608,0.332203389830528,-0.082758620689493,0.326271186440705,-0.082758620689488,0.338135593220349,-0.077586206896374,0.332203389830525,-0.011864406779643,0.000000000000005,-0.000000000000004,-0.010344827586234,0.000000000000002,0.010344827586235,0.011864406779645,-0.000000000000006,2 +8002,10511,10569,10629,-0.082758620689482,0.350000000000000,-0.087931034482602,0.344067796610175,-0.082758620689488,0.338135593220349,-0.077586206896367,0.344067796610174,-0.000000000000000,0.010344827586236,-0.011864406779650,0.000000000000005,-0.000000000000002,-0.010344827586235,0.011864406779652,-0.000000000000006,2 +8933,10512,10572,10630,-0.072413793103643,-0.350000000000000,-0.077586206896728,-0.344067796610158,-0.072413793103636,-0.338135593220317,-0.067241379310551,-0.344067796610159,-0.000000000000000,-0.010344827586177,-0.011864406779684,0.000000000000006,0.000000000000002,0.010344827586178,0.011864406779682,-0.000000000000007,2 +10513,10571,10573,10631,-0.077586206896722,-0.332203389830477,-0.072413793103636,-0.338135593220317,-0.072413793103629,-0.326271186440641,-0.067241379310543,-0.332203389830480,-0.011864406779677,0.000000000000006,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779675,-0.000000000000007,2 +10514,10572,10574,10632,-0.077586206896716,-0.320338983050801,-0.072413793103629,-0.326271186440641,-0.072413793103623,-0.314406779660967,-0.067241379310536,-0.320338983050806,-0.011864406779675,0.000000000000006,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779673,-0.000000000000007,2 +10515,10573,10575,10633,-0.077586206896710,-0.308474576271120,-0.072413793103623,-0.314406779660967,-0.072413793103616,-0.302542372881281,-0.067241379310529,-0.308474576271127,-0.011864406779687,0.000000000000006,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779684,-0.000000000000007,2 +10516,10574,10576,10634,-0.077586206896703,-0.296610169491443,-0.072413793103616,-0.302542372881281,-0.072413793103609,-0.290677966101614,-0.067241379310522,-0.296610169491452,-0.011864406779667,0.000000000000006,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779666,-0.000000000000007,2 +10517,10575,10577,10635,-0.077586206896697,-0.284745762711762,-0.072413793103609,-0.290677966101614,-0.072413793103602,-0.278813559321920,-0.067241379310514,-0.284745762711773,-0.011864406779696,0.000000000000006,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779693,-0.000000000000007,2 +10518,10576,10578,10636,-0.077586206896691,-0.272881355932081,-0.072413793103602,-0.278813559321920,-0.072413793103596,-0.266949152542255,-0.067241379310507,-0.272881355932094,-0.011864406779665,0.000000000000006,-0.000000000000012,-0.010344827586183,0.000000000000013,0.010344827586184,0.011864406779664,-0.000000000000007,2 +10519,10577,10579,10637,-0.077586206896685,-0.261016949152407,-0.072413793103596,-0.266949152542255,-0.072413793103589,-0.255084745762574,-0.067241379310500,-0.261016949152422,-0.011864406779683,0.000000000000006,-0.000000000000013,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779680,-0.000000000000007,2 +10520,10578,10580,10638,-0.077586206896679,-0.249152542372729,-0.072413793103589,-0.255084745762574,-0.072413793103582,-0.243220338982903,-0.067241379310493,-0.249152542372747,-0.011864406779672,0.000000000000006,-0.000000000000016,-0.010344827586185,0.000000000000019,0.010344827586186,0.011864406779670,-0.000000000000007,2 +10521,10579,10581,10639,-0.077586206896672,-0.237288135593056,-0.072413793103582,-0.243220338982903,-0.072413793103576,-0.231355932203228,-0.067241379310485,-0.237288135593075,-0.011864406779676,0.000000000000006,-0.000000000000019,-0.010344827586186,0.000000000000021,0.010344827586187,0.011864406779674,-0.000000000000007,2 +10522,10580,10582,10640,-0.077586206896666,-0.225423728813375,-0.072413793103576,-0.231355932203228,-0.072413793103569,-0.219491525423544,-0.067241379310478,-0.225423728813397,-0.011864406779685,0.000000000000006,-0.000000000000021,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779683,-0.000000000000007,2 +10523,10581,10583,10641,-0.077586206896660,-0.213559322033701,-0.072413793103569,-0.219491525423544,-0.072413793103562,-0.207627118643881,-0.067241379310471,-0.213559322033724,-0.011864406779664,0.000000000000006,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779663,-0.000000000000007,2 +10524,10582,10584,10642,-0.077586206896654,-0.201694915254021,-0.072413793103562,-0.207627118643881,-0.072413793103555,-0.195762711864188,-0.067241379310464,-0.201694915254047,-0.011864406779695,0.000000000000006,-0.000000000000024,-0.010344827586189,0.000000000000028,0.010344827586190,0.011864406779691,-0.000000000000007,2 +10525,10583,10585,10643,-0.077586206896647,-0.189830508474343,-0.072413793103555,-0.195762711864188,-0.072413793103549,-0.183898305084526,-0.067241379310457,-0.189830508474371,-0.011864406779662,0.000000000000006,-0.000000000000028,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779661,-0.000000000000007,2 +10526,10584,10586,10644,-0.077586206896641,-0.177966101694668,-0.072413793103549,-0.183898305084526,-0.072413793103542,-0.172033898304840,-0.067241379310449,-0.177966101694698,-0.011864406779688,0.000000000000006,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779685,-0.000000000000007,2 +10527,10585,10587,10645,-0.077586206896635,-0.166101694914989,-0.072413793103542,-0.172033898304840,-0.072413793103535,-0.160169491525171,-0.067241379310442,-0.166101694915022,-0.011864406779670,0.000000000000006,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779668,-0.000000000000007,2 +10528,10586,10588,10646,-0.077586206896629,-0.154237288135323,-0.072413793103535,-0.160169491525171,-0.072413793103528,-0.148305084745510,-0.067241379310435,-0.154237288135358,-0.011864406779662,0.000000000000006,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779661,-0.000000000000007,2 +10529,10587,10589,10647,-0.077586206896623,-0.142372881355652,-0.072413793103528,-0.148305084745510,-0.072413793103522,-0.136440677965832,-0.067241379310428,-0.142372881355689,-0.011864406779679,0.000000000000006,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779677,-0.000000000000007,2 +10530,10588,10590,10648,-0.077586206896616,-0.130508474575975,-0.072413793103522,-0.136440677965832,-0.072413793103515,-0.124576271186158,-0.067241379310420,-0.130508474576014,-0.011864406779675,0.000000000000006,-0.000000000000038,-0.010344827586195,0.000000000000040,0.010344827586196,0.011864406779673,-0.000000000000007,2 +10531,10589,10591,10649,-0.077586206896610,-0.118644067796298,-0.072413793103515,-0.124576271186158,-0.072413793103508,-0.112711864406479,-0.067241379310413,-0.118644067796339,-0.011864406779680,0.000000000000006,-0.000000000000040,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779678,-0.000000000000007,2 +10532,10590,10592,10650,-0.077586206896604,-0.106779661016622,-0.072413793103508,-0.112711864406479,-0.072413793103502,-0.100847457626808,-0.067241379310406,-0.106779661016665,-0.011864406779672,0.000000000000006,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779670,-0.000000000000007,2 +10533,10591,10593,10651,-0.077586206896598,-0.094915254236946,-0.072413793103502,-0.100847457626808,-0.072413793103495,-0.088983050847129,-0.067241379310399,-0.094915254236991,-0.011864406779680,0.000000000000006,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779678,-0.000000000000007,2 +10534,10592,10594,10652,-0.077586206896591,-0.083050847457265,-0.072413793103495,-0.088983050847129,-0.072413793103488,-0.077118644067450,-0.067241379310391,-0.083050847457313,-0.011864406779680,0.000000000000006,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779678,-0.000000000000007,2 +10535,10593,10595,10653,-0.077586206896585,-0.071186440677589,-0.072413793103488,-0.077118644067450,-0.072413793103481,-0.065254237287779,-0.067241379310384,-0.071186440677639,-0.011864406779672,0.000000000000006,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779670,-0.000000000000007,2 +10536,10594,10596,10654,-0.077586206896579,-0.059322033897913,-0.072413793103481,-0.065254237287779,-0.072413793103475,-0.053389830508100,-0.067241379310377,-0.059322033897965,-0.011864406779680,0.000000000000006,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779678,-0.000000000000007,2 +10537,10595,10597,10655,-0.077586206896573,-0.047457627118235,-0.072413793103475,-0.053389830508100,-0.072413793103468,-0.041525423728424,-0.067241379310370,-0.047457627118289,-0.011864406779677,0.000000000000006,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779675,-0.000000000000007,2 +10538,10596,10598,10656,-0.077586206896567,-0.035593220338559,-0.072413793103468,-0.041525423728424,-0.072413793103461,-0.029661016948750,-0.067241379310363,-0.035593220338615,-0.011864406779675,0.000000000000006,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779673,-0.000000000000007,2 +10539,10597,10599,10657,-0.077586206896560,-0.023728813558881,-0.072413793103461,-0.029661016948750,-0.072413793103454,-0.017796610169071,-0.067241379310355,-0.023728813558940,-0.011864406779680,0.000000000000006,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586206,0.011864406779678,-0.000000000000007,2 +10540,10598,10600,10658,-0.077586206896554,-0.011864406779205,-0.072413793103454,-0.017796610169071,-0.072413793103448,-0.005932203389400,-0.067241379310348,-0.011864406779266,-0.011864406779672,0.000000000000006,-0.000000000000060,-0.010344827586206,0.000000000000062,0.010344827586206,0.011864406779670,-0.000000000000007,2 +10541,10599,10601,10659,-0.077586206896548,0.000000000000468,-0.072413793103448,-0.005932203389400,-0.072413793103441,0.005932203390273,-0.067241379310341,0.000000000000405,-0.011864406779673,0.000000000000006,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000007,2 +10542,10600,10602,10660,-0.077586206896542,0.011864406780125,-0.072413793103441,0.005932203390273,-0.072413793103434,0.017796610169915,-0.067241379310334,0.011864406780063,-0.011864406779641,0.000000000000006,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586208,0.011864406779643,-0.000000000000007,2 +10543,10601,10603,10661,-0.077586206896535,0.023728813559767,-0.072413793103434,0.017796610169915,-0.072413793103428,0.029661016949560,-0.067241379310326,0.023728813559708,-0.011864406779644,0.000000000000006,-0.000000000000060,-0.010344827586208,0.000000000000058,0.010344827586209,0.011864406779646,-0.000000000000007,2 +10544,10602,10604,10662,-0.077586206896529,0.035593220339410,-0.072413793103428,0.029661016949560,-0.072413793103421,0.041525423729203,-0.067241379310319,0.035593220339353,-0.011864406779642,0.000000000000006,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779644,-0.000000000000007,2 +10545,10603,10605,10663,-0.077586206896523,0.047457627119052,-0.072413793103421,0.041525423729203,-0.072413793103414,0.053389830508847,-0.067241379310312,0.047457627118998,-0.011864406779643,0.000000000000006,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586212,0.011864406779645,-0.000000000000007,2 +10546,10604,10606,10664,-0.077586206896517,0.059322033898695,-0.072413793103414,0.053389830508847,-0.072413793103407,0.065254237288492,-0.067241379310305,0.059322033898643,-0.011864406779644,0.000000000000006,-0.000000000000053,-0.010344827586212,0.000000000000051,0.010344827586212,0.011864406779646,-0.000000000000007,2 +10547,10605,10607,10665,-0.077586206896511,0.071186440678338,-0.072413793103407,0.065254237288492,-0.072413793103401,0.077118644068134,-0.067241379310298,0.071186440678288,-0.011864406779641,0.000000000000006,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586214,0.011864406779643,-0.000000000000007,2 +10548,10606,10608,10666,-0.077586206896504,0.083050847457980,-0.072413793103401,0.077118644068134,-0.072413793103394,0.088983050847779,-0.067241379310290,0.083050847457933,-0.011864406779644,0.000000000000006,-0.000000000000049,-0.010344827586214,0.000000000000046,0.010344827586215,0.011864406779646,-0.000000000000007,2 +10549,10607,10609,10667,-0.077586206896498,0.094915254237624,-0.072413793103394,0.088983050847779,-0.072413793103387,0.100847457627424,-0.067241379310283,0.094915254237579,-0.011864406779644,0.000000000000006,-0.000000000000046,-0.010344827586215,0.000000000000044,0.010344827586216,0.011864406779646,-0.000000000000007,2 +10550,10608,10610,10668,-0.077586206896492,0.106779661017266,-0.072413793103387,0.100847457627424,-0.072413793103380,0.112711864407066,-0.067241379310276,0.106779661017223,-0.011864406779641,0.000000000000006,-0.000000000000044,-0.010344827586216,0.000000000000042,0.010344827586217,0.011864406779643,-0.000000000000007,2 +10551,10609,10611,10669,-0.077586206896486,0.118644067796909,-0.072413793103380,0.112711864407066,-0.072413793103374,0.124576271186711,-0.067241379310269,0.118644067796868,-0.011864406779644,0.000000000000006,-0.000000000000042,-0.010344827586217,0.000000000000039,0.010344827586218,0.011864406779646,-0.000000000000007,2 +10552,10610,10612,10670,-0.077586206896479,0.130508474576555,-0.072413793103374,0.124576271186711,-0.072413793103367,0.136440677966361,-0.067241379310261,0.130508474576516,-0.011864406779649,0.000000000000006,-0.000000000000039,-0.010344827586218,0.000000000000038,0.010344827586219,0.011864406779651,-0.000000000000007,2 +10553,10611,10613,10671,-0.077586206896473,0.142372881356201,-0.072413793103367,0.136440677966361,-0.072413793103360,0.148305084746005,-0.067241379310254,0.142372881356165,-0.011864406779643,0.000000000000006,-0.000000000000038,-0.010344827586219,0.000000000000035,0.010344827586220,0.011864406779646,-0.000000000000007,2 +10554,10612,10614,10672,-0.077586206896467,0.154237288135842,-0.072413793103360,0.148305084746005,-0.072413793103354,0.160169491525644,-0.067241379310247,0.154237288135808,-0.011864406779638,0.000000000000006,-0.000000000000035,-0.010344827586220,0.000000000000034,0.010344827586221,0.011864406779640,-0.000000000000007,2 +10555,10613,10615,10673,-0.077586206896461,0.166101694915481,-0.072413793103354,0.160169491525644,-0.072413793103347,0.172033898305286,-0.067241379310240,0.166101694915448,-0.011864406779640,0.000000000000006,-0.000000000000034,-0.010344827586221,0.000000000000032,0.010344827586222,0.011864406779642,-0.000000000000007,2 +10556,10614,10616,10674,-0.077586206896454,0.177966101695125,-0.072413793103347,0.172033898305286,-0.072413793103340,0.183898305084933,-0.067241379310232,0.177966101695094,-0.011864406779646,0.000000000000006,-0.000000000000032,-0.010344827586222,0.000000000000029,0.010344827586223,0.011864406779649,-0.000000000000007,2 +10557,10615,10617,10675,-0.077586206896448,0.189830508474767,-0.072413793103340,0.183898305084933,-0.072413793103333,0.195762711864572,-0.067241379310225,0.189830508474738,-0.011864406779638,0.000000000000006,-0.000000000000029,-0.010344827586223,0.000000000000027,0.010344827586224,0.011864406779640,-0.000000000000007,2 +10558,10616,10618,10676,-0.077586206896442,0.201694915254410,-0.072413793103333,0.195762711864572,-0.072413793103327,0.207627118644222,-0.067241379310218,0.201694915254384,-0.011864406779648,0.000000000000006,-0.000000000000027,-0.010344827586224,0.000000000000024,0.010344827586225,0.011864406779651,-0.000000000000007,2 +10559,10617,10619,10677,-0.077586206896436,0.213559322034055,-0.072413793103327,0.207627118644222,-0.072413793103320,0.219491525423865,-0.067241379310211,0.213559322034032,-0.011864406779643,0.000000000000006,-0.000000000000024,-0.010344827586225,0.000000000000023,0.010344827586226,0.011864406779644,-0.000000000000007,2 +10560,10618,10620,10678,-0.077586206896430,0.225423728813701,-0.072413793103320,0.219491525423865,-0.072413793103313,0.231355932203515,-0.067241379310204,0.225423728813679,-0.011864406779648,0.000000000000006,-0.000000000000023,-0.010344827586226,0.000000000000020,0.010344827586227,0.011864406779651,-0.000000000000007,2 +10561,10619,10621,10679,-0.077586206896423,0.237288135593349,-0.072413793103313,0.231355932203515,-0.072413793103306,0.243220338983164,-0.067241379310196,0.237288135593329,-0.011864406779648,0.000000000000006,-0.000000000000020,-0.010344827586227,0.000000000000019,0.010344827586228,0.011864406779650,-0.000000000000007,2 +10562,10620,10622,10680,-0.077586206896417,0.249152542372992,-0.072413793103306,0.243220338983164,-0.072413793103300,0.255084745762803,-0.067241379310189,0.249152542372974,-0.011864406779638,0.000000000000006,-0.000000000000019,-0.010344827586228,0.000000000000016,0.010344827586229,0.011864406779640,-0.000000000000007,2 +10563,10621,10623,10681,-0.077586206896411,0.261016949152631,-0.072413793103300,0.255084745762803,-0.072413793103293,0.266949152542445,-0.067241379310182,0.261016949152616,-0.011864406779641,0.000000000000006,-0.000000000000016,-0.010344827586229,0.000000000000014,0.010344827586230,0.011864406779643,-0.000000000000007,2 +10564,10622,10624,10682,-0.077586206896405,0.272881355932275,-0.072413793103293,0.266949152542445,-0.072413793103286,0.278813559322093,-0.067241379310175,0.272881355932263,-0.011864406779648,0.000000000000006,-0.000000000000014,-0.010344827586230,0.000000000000012,0.010344827586231,0.011864406779649,-0.000000000000007,2 +10565,10623,10625,10683,-0.077586206896398,0.284745762711924,-0.072413793103286,0.278813559322093,-0.072413793103280,0.290677966101745,-0.067241379310167,0.284745762711914,-0.011864406779650,0.000000000000006,-0.000000000000012,-0.010344827586231,0.000000000000009,0.010344827586232,0.011864406779653,-0.000000000000007,2 +10566,10624,10626,10684,-0.077586206896392,0.296610169491576,-0.072413793103280,0.290677966101745,-0.072413793103273,0.302542372881398,-0.067241379310160,0.296610169491567,-0.011864406779653,0.000000000000006,-0.000000000000009,-0.010344827586232,0.000000000000008,0.010344827586233,0.011864406779654,-0.000000000000007,2 +10567,10625,10627,10685,-0.077586206896386,0.308474576271225,-0.072413793103273,0.302542372881398,-0.072413793103266,0.314406779661045,-0.067241379310153,0.308474576271218,-0.011864406779646,0.000000000000006,-0.000000000000008,-0.010344827586233,0.000000000000005,0.010344827586234,0.011864406779649,-0.000000000000007,2 +10568,10626,10628,10686,-0.077586206896380,0.320338983050875,-0.072413793103266,0.314406779661045,-0.072413793103259,0.326271186440700,-0.067241379310146,0.320338983050870,-0.011864406779654,0.000000000000006,-0.000000000000005,-0.010344827586234,0.000000000000004,0.010344827586235,0.011864406779656,-0.000000000000007,2 +10569,10627,10629,10687,-0.077586206896374,0.332203389830525,-0.072413793103259,0.326271186440700,-0.072413793103253,0.338135593220347,-0.067241379310138,0.332203389830522,-0.011864406779645,0.000000000000006,-0.000000000000004,-0.010344827586235,0.000000000000002,0.010344827586236,0.011864406779647,-0.000000000000007,2 +7988,10570,10628,10688,-0.072413793103246,0.350000000000000,-0.077586206896367,0.344067796610174,-0.072413793103253,0.338135593220347,-0.067241379310131,0.344067796610173,-0.000000000000000,0.010344827586237,-0.011864406779652,0.000000000000006,-0.000000000000002,-0.010344827586236,0.011864406779655,-0.000000000000007,2 +8934,10571,10631,10689,-0.062068965517465,-0.350000000000000,-0.067241379310551,-0.344067796610159,-0.062068965517458,-0.338135593220319,-0.056896551724373,-0.344067796610160,-0.000000000000000,-0.010344827586177,-0.011864406779682,0.000000000000007,0.000000000000002,0.010344827586178,0.011864406779680,-0.000000000000008,2 +10572,10630,10632,10690,-0.067241379310543,-0.332203389830480,-0.062068965517458,-0.338135593220319,-0.062068965517450,-0.326271186440645,-0.056896551724365,-0.332203389830484,-0.011864406779675,0.000000000000007,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779672,-0.000000000000008,2 +10573,10631,10633,10691,-0.067241379310536,-0.320338983050806,-0.062068965517450,-0.326271186440645,-0.062068965517442,-0.314406779660972,-0.056896551724356,-0.320338983050811,-0.011864406779673,0.000000000000007,-0.000000000000004,-0.010344827586179,0.000000000000005,0.010344827586180,0.011864406779672,-0.000000000000008,2 +10574,10632,10634,10692,-0.067241379310529,-0.308474576271127,-0.062068965517442,-0.314406779660972,-0.062068965517435,-0.302542372881289,-0.056896551724348,-0.308474576271134,-0.011864406779684,0.000000000000007,-0.000000000000005,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779681,-0.000000000000008,2 +10575,10633,10635,10693,-0.067241379310522,-0.296610169491452,-0.062068965517435,-0.302542372881289,-0.062068965517427,-0.290677966101624,-0.056896551724340,-0.296610169491461,-0.011864406779666,0.000000000000007,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779665,-0.000000000000008,2 +10576,10634,10636,10694,-0.067241379310514,-0.284745762711773,-0.062068965517427,-0.290677966101624,-0.062068965517419,-0.278813559321933,-0.056896551724332,-0.284745762711784,-0.011864406779693,0.000000000000007,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779690,-0.000000000000008,2 +10577,10635,10637,10695,-0.067241379310507,-0.272881355932094,-0.062068965517419,-0.278813559321933,-0.062068965517411,-0.266949152542269,-0.056896551724324,-0.272881355932107,-0.011864406779664,0.000000000000007,-0.000000000000012,-0.010344827586183,0.000000000000014,0.010344827586184,0.011864406779663,-0.000000000000008,2 +10578,10636,10638,10696,-0.067241379310500,-0.261016949152422,-0.062068965517411,-0.266949152542269,-0.062068965517404,-0.255084745762590,-0.056896551724315,-0.261016949152437,-0.011864406779680,0.000000000000007,-0.000000000000014,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779677,-0.000000000000008,2 +10579,10637,10639,10697,-0.067241379310493,-0.249152542372747,-0.062068965517404,-0.255084745762590,-0.062068965517396,-0.243220338982922,-0.056896551724307,-0.249152542372765,-0.011864406779670,0.000000000000007,-0.000000000000016,-0.010344827586185,0.000000000000019,0.010344827586186,0.011864406779667,-0.000000000000008,2 +10580,10638,10640,10698,-0.067241379310485,-0.237288135593075,-0.062068965517396,-0.243220338982922,-0.062068965517388,-0.231355932203249,-0.056896551724299,-0.237288135593095,-0.011864406779674,0.000000000000007,-0.000000000000019,-0.010344827586186,0.000000000000020,0.010344827586187,0.011864406779672,-0.000000000000008,2 +10581,10639,10641,10699,-0.067241379310478,-0.225423728813397,-0.062068965517388,-0.231355932203249,-0.062068965517381,-0.219491525423567,-0.056896551724291,-0.225423728813419,-0.011864406779683,0.000000000000007,-0.000000000000020,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779680,-0.000000000000008,2 +10582,10640,10642,10700,-0.067241379310471,-0.213559322033724,-0.062068965517381,-0.219491525423567,-0.062068965517373,-0.207627118643905,-0.056896551724283,-0.213559322033748,-0.011864406779663,0.000000000000007,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779661,-0.000000000000008,2 +10583,10641,10643,10701,-0.067241379310464,-0.201694915254047,-0.062068965517373,-0.207627118643905,-0.062068965517365,-0.195762711864215,-0.056896551724274,-0.201694915254073,-0.011864406779691,0.000000000000007,-0.000000000000024,-0.010344827586189,0.000000000000027,0.010344827586190,0.011864406779689,-0.000000000000008,2 +10584,10642,10644,10702,-0.067241379310457,-0.189830508474371,-0.062068965517365,-0.195762711864215,-0.062068965517357,-0.183898305084555,-0.056896551724266,-0.189830508474399,-0.011864406779661,0.000000000000007,-0.000000000000027,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779659,-0.000000000000008,2 +10585,10643,10645,10703,-0.067241379310449,-0.177966101694698,-0.062068965517357,-0.183898305084555,-0.062068965517350,-0.172033898304872,-0.056896551724258,-0.177966101694729,-0.011864406779685,0.000000000000007,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779682,-0.000000000000008,2 +10586,10644,10646,10704,-0.067241379310442,-0.166101694915022,-0.062068965517350,-0.172033898304872,-0.062068965517342,-0.160169491525205,-0.056896551724250,-0.166101694915055,-0.011864406779668,0.000000000000007,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779666,-0.000000000000008,2 +10587,10645,10647,10705,-0.067241379310435,-0.154237288135358,-0.062068965517342,-0.160169491525205,-0.062068965517334,-0.148305084745545,-0.056896551724242,-0.154237288135392,-0.011864406779661,0.000000000000007,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779659,-0.000000000000008,2 +10588,10646,10648,10706,-0.067241379310428,-0.142372881355689,-0.062068965517334,-0.148305084745545,-0.062068965517327,-0.136440677965870,-0.056896551724233,-0.142372881355726,-0.011864406779677,0.000000000000007,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779674,-0.000000000000008,2 +10589,10647,10649,10707,-0.067241379310420,-0.130508474576014,-0.062068965517327,-0.136440677965870,-0.062068965517319,-0.124576271186197,-0.056896551724225,-0.130508474576053,-0.011864406779673,0.000000000000007,-0.000000000000038,-0.010344827586195,0.000000000000039,0.010344827586196,0.011864406779671,-0.000000000000008,2 +10590,10648,10650,10708,-0.067241379310413,-0.118644067796339,-0.062068965517319,-0.124576271186197,-0.062068965517311,-0.112711864406521,-0.056896551724217,-0.118644067796379,-0.011864406779678,0.000000000000007,-0.000000000000039,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779675,-0.000000000000008,2 +10591,10649,10651,10709,-0.067241379310406,-0.106779661016665,-0.062068965517311,-0.112711864406521,-0.062068965517303,-0.100847457626852,-0.056896551724209,-0.106779661016708,-0.011864406779670,0.000000000000007,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779668,-0.000000000000008,2 +10592,10650,10652,10710,-0.067241379310399,-0.094915254236991,-0.062068965517303,-0.100847457626852,-0.062068965517296,-0.088983050847175,-0.056896551724201,-0.094915254237036,-0.011864406779678,0.000000000000007,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779675,-0.000000000000008,2 +10593,10651,10653,10711,-0.067241379310391,-0.083050847457313,-0.062068965517296,-0.088983050847175,-0.062068965517288,-0.077118644067499,-0.056896551724192,-0.083050847457361,-0.011864406779678,0.000000000000007,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779675,-0.000000000000008,2 +10594,10652,10654,10712,-0.067241379310384,-0.071186440677639,-0.062068965517288,-0.077118644067499,-0.062068965517280,-0.065254237287830,-0.056896551724184,-0.071186440677689,-0.011864406779670,0.000000000000007,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779668,-0.000000000000008,2 +10595,10653,10655,10713,-0.067241379310377,-0.059322033897965,-0.062068965517280,-0.065254237287830,-0.062068965517273,-0.053389830508153,-0.056896551724176,-0.059322033898017,-0.011864406779678,0.000000000000007,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779675,-0.000000000000008,2 +10596,10654,10656,10714,-0.067241379310370,-0.047457627118289,-0.062068965517273,-0.053389830508153,-0.062068965517265,-0.041525423728480,-0.056896551724168,-0.047457627118344,-0.011864406779675,0.000000000000007,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779672,-0.000000000000008,2 +10597,10655,10657,10715,-0.067241379310363,-0.035593220338615,-0.062068965517265,-0.041525423728480,-0.062068965517257,-0.029661016948808,-0.056896551724160,-0.035593220338672,-0.011864406779673,0.000000000000007,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779671,-0.000000000000008,2 +10598,10656,10658,10716,-0.067241379310355,-0.023728813558940,-0.062068965517257,-0.029661016948808,-0.062068965517249,-0.017796610169131,-0.056896551724151,-0.023728813558999,-0.011864406779678,0.000000000000007,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586204,0.011864406779675,-0.000000000000008,2 +10599,10657,10659,10717,-0.067241379310348,-0.011864406779266,-0.062068965517249,-0.017796610169131,-0.062068965517242,-0.005932203389462,-0.056896551724143,-0.011864406779327,-0.011864406779670,0.000000000000007,-0.000000000000060,-0.010344827586204,0.000000000000062,0.010344827586205,0.011864406779668,-0.000000000000008,2 +10600,10658,10660,10718,-0.067241379310341,0.000000000000405,-0.062068965517242,-0.005932203389462,-0.062068965517234,0.005932203390211,-0.056896551724135,0.000000000000343,-0.011864406779673,0.000000000000007,-0.000000000000062,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000008,2 +10601,10659,10661,10719,-0.067241379310334,0.011864406780063,-0.062068965517234,0.005932203390211,-0.062068965517226,0.017796610169855,-0.056896551724127,0.011864406780002,-0.011864406779643,0.000000000000007,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586207,0.011864406779645,-0.000000000000008,2 +10602,10660,10662,10720,-0.067241379310326,0.023728813559708,-0.062068965517226,0.017796610169855,-0.062068965517219,0.029661016949502,-0.056896551724119,0.023728813559649,-0.011864406779646,0.000000000000007,-0.000000000000060,-0.010344827586207,0.000000000000058,0.010344827586208,0.011864406779649,-0.000000000000008,2 +10603,10661,10663,10721,-0.067241379310319,0.035593220339353,-0.062068965517219,0.029661016949502,-0.062068965517211,0.041525423729147,-0.056896551724110,0.035593220339296,-0.011864406779644,0.000000000000007,-0.000000000000058,-0.010344827586208,0.000000000000056,0.010344827586209,0.011864406779647,-0.000000000000008,2 +10604,10662,10664,10722,-0.067241379310312,0.047457627118998,-0.062068965517211,0.041525423729147,-0.062068965517203,0.053389830508794,-0.056896551724102,0.047457627118943,-0.011864406779645,0.000000000000007,-0.000000000000056,-0.010344827586209,0.000000000000053,0.010344827586210,0.011864406779647,-0.000000000000008,2 +10605,10663,10665,10723,-0.067241379310305,0.059322033898643,-0.062068965517203,0.053389830508794,-0.062068965517195,0.065254237288441,-0.056896551724094,0.059322033898591,-0.011864406779646,0.000000000000007,-0.000000000000053,-0.010344827586210,0.000000000000051,0.010344827586211,0.011864406779649,-0.000000000000008,2 +10606,10664,10666,10724,-0.067241379310298,0.071186440678288,-0.062068965517195,0.065254237288441,-0.062068965517188,0.077118644068085,-0.056896551724086,0.071186440678238,-0.011864406779643,0.000000000000007,-0.000000000000051,-0.010344827586211,0.000000000000049,0.010344827586212,0.011864406779645,-0.000000000000008,2 +10607,10665,10667,10725,-0.067241379310290,0.083050847457933,-0.062068965517188,0.077118644068085,-0.062068965517180,0.088983050847732,-0.056896551724078,0.083050847457885,-0.011864406779646,0.000000000000007,-0.000000000000049,-0.010344827586212,0.000000000000046,0.010344827586213,0.011864406779649,-0.000000000000008,2 +10608,10666,10668,10726,-0.067241379310283,0.094915254237579,-0.062068965517180,0.088983050847732,-0.062068965517172,0.100847457627380,-0.056896551724069,0.094915254237533,-0.011864406779646,0.000000000000007,-0.000000000000046,-0.010344827586213,0.000000000000044,0.010344827586214,0.011864406779649,-0.000000000000008,2 +10609,10667,10669,10727,-0.067241379310276,0.106779661017223,-0.062068965517172,0.100847457627380,-0.062068965517165,0.112711864407024,-0.056896551724061,0.106779661017180,-0.011864406779643,0.000000000000007,-0.000000000000044,-0.010344827586214,0.000000000000042,0.010344827586215,0.011864406779645,-0.000000000000008,2 +10610,10668,10670,10728,-0.067241379310269,0.118644067796868,-0.062068965517165,0.112711864407024,-0.062068965517157,0.124576271186671,-0.056896551724053,0.118644067796827,-0.011864406779646,0.000000000000007,-0.000000000000042,-0.010344827586215,0.000000000000039,0.010344827586216,0.011864406779649,-0.000000000000008,2 +10611,10669,10671,10729,-0.067241379310261,0.130508474576516,-0.062068965517157,0.124576271186671,-0.062068965517149,0.136440677966323,-0.056896551724045,0.130508474576478,-0.011864406779651,0.000000000000007,-0.000000000000039,-0.010344827586216,0.000000000000038,0.010344827586217,0.011864406779653,-0.000000000000008,2 +10612,10670,10672,10730,-0.067241379310254,0.142372881356165,-0.062068965517149,0.136440677966323,-0.062068965517141,0.148305084745970,-0.056896551724037,0.142372881356128,-0.011864406779646,0.000000000000007,-0.000000000000038,-0.010344827586217,0.000000000000035,0.010344827586218,0.011864406779648,-0.000000000000008,2 +10613,10671,10673,10731,-0.067241379310247,0.154237288135808,-0.062068965517141,0.148305084745970,-0.062068965517134,0.160169491525610,-0.056896551724028,0.154237288135773,-0.011864406779640,0.000000000000007,-0.000000000000035,-0.010344827586218,0.000000000000034,0.010344827586219,0.011864406779641,-0.000000000000008,2 +10614,10672,10674,10732,-0.067241379310240,0.166101694915448,-0.062068965517134,0.160169491525610,-0.062068965517126,0.172033898305254,-0.056896551724020,0.166101694915416,-0.011864406779642,0.000000000000007,-0.000000000000034,-0.010344827586219,0.000000000000032,0.010344827586220,0.011864406779644,-0.000000000000008,2 +10615,10673,10675,10733,-0.067241379310232,0.177966101695094,-0.062068965517126,0.172033898305254,-0.062068965517118,0.183898305084904,-0.056896551724012,0.177966101695064,-0.011864406779649,0.000000000000007,-0.000000000000032,-0.010344827586220,0.000000000000029,0.010344827586221,0.011864406779652,-0.000000000000008,2 +10616,10674,10676,10734,-0.067241379310225,0.189830508474738,-0.062068965517118,0.183898305084904,-0.062068965517111,0.195762711864544,-0.056896551724004,0.189830508474710,-0.011864406779640,0.000000000000007,-0.000000000000029,-0.010344827586221,0.000000000000027,0.010344827586222,0.011864406779641,-0.000000000000008,2 +10617,10675,10677,10735,-0.067241379310218,0.201694915254384,-0.062068965517111,0.195762711864544,-0.062068965517103,0.207627118644197,-0.056896551723996,0.201694915254358,-0.011864406779651,0.000000000000007,-0.000000000000027,-0.010344827586222,0.000000000000024,0.010344827586223,0.011864406779654,-0.000000000000008,2 +10618,10676,10678,10736,-0.067241379310211,0.213559322034032,-0.062068965517103,0.207627118644197,-0.062068965517095,0.219491525423842,-0.056896551723987,0.213559322034008,-0.011864406779644,0.000000000000007,-0.000000000000024,-0.010344827586223,0.000000000000023,0.010344827586224,0.011864406779646,-0.000000000000008,2 +10619,10677,10679,10737,-0.067241379310204,0.225423728813679,-0.062068965517095,0.219491525423842,-0.062068965517087,0.231355932203494,-0.056896551723979,0.225423728813658,-0.011864406779651,0.000000000000007,-0.000000000000023,-0.010344827586224,0.000000000000020,0.010344827586225,0.011864406779653,-0.000000000000008,2 +10620,10678,10680,10738,-0.067241379310196,0.237288135593329,-0.062068965517087,0.231355932203494,-0.062068965517080,0.243220338983145,-0.056896551723971,0.237288135593310,-0.011864406779650,0.000000000000007,-0.000000000000020,-0.010344827586225,0.000000000000019,0.010344827586226,0.011864406779652,-0.000000000000008,2 +10621,10679,10681,10739,-0.067241379310189,0.249152542372974,-0.062068965517080,0.243220338983145,-0.062068965517072,0.255084745762786,-0.056896551723963,0.249152542372957,-0.011864406779640,0.000000000000007,-0.000000000000019,-0.010344827586226,0.000000000000016,0.010344827586227,0.011864406779643,-0.000000000000008,2 +10622,10680,10682,10740,-0.067241379310182,0.261016949152616,-0.062068965517072,0.255084745762786,-0.062068965517064,0.266949152542431,-0.056896551723955,0.261016949152601,-0.011864406779643,0.000000000000007,-0.000000000000016,-0.010344827586227,0.000000000000013,0.010344827586228,0.011864406779646,-0.000000000000008,2 +10623,10681,10683,10741,-0.067241379310175,0.272881355932263,-0.062068965517064,0.266949152542431,-0.062068965517057,0.278813559322081,-0.056896551723946,0.272881355932250,-0.011864406779649,0.000000000000007,-0.000000000000013,-0.010344827586228,0.000000000000012,0.010344827586229,0.011864406779650,-0.000000000000008,2 +10624,10682,10684,10742,-0.067241379310167,0.284745762711914,-0.062068965517057,0.278813559322081,-0.062068965517049,0.290677966101735,-0.056896551723938,0.284745762711903,-0.011864406779653,0.000000000000007,-0.000000000000012,-0.010344827586229,0.000000000000009,0.010344827586230,0.011864406779656,-0.000000000000008,2 +10625,10683,10685,10743,-0.067241379310160,0.296610169491567,-0.062068965517049,0.290677966101735,-0.062068965517041,0.302542372881390,-0.056896551723930,0.296610169491558,-0.011864406779654,0.000000000000007,-0.000000000000009,-0.010344827586230,0.000000000000008,0.010344827586231,0.011864406779655,-0.000000000000008,2 +10626,10684,10686,10744,-0.067241379310153,0.308474576271218,-0.062068965517041,0.302542372881390,-0.062068965517033,0.314406779661040,-0.056896551723922,0.308474576271211,-0.011864406779649,0.000000000000007,-0.000000000000008,-0.010344827586231,0.000000000000006,0.010344827586232,0.011864406779651,-0.000000000000008,2 +10627,10685,10687,10745,-0.067241379310146,0.320338983050870,-0.062068965517033,0.314406779661040,-0.062068965517026,0.326271186440696,-0.056896551723914,0.320338983050865,-0.011864406779656,0.000000000000007,-0.000000000000006,-0.010344827586232,0.000000000000004,0.010344827586233,0.011864406779657,-0.000000000000008,2 +10628,10686,10688,10746,-0.067241379310138,0.332203389830522,-0.062068965517026,0.326271186440696,-0.062068965517018,0.338135593220344,-0.056896551723905,0.332203389830519,-0.011864406779647,0.000000000000007,-0.000000000000004,-0.010344827586233,0.000000000000002,0.010344827586234,0.011864406779649,-0.000000000000008,2 +7974,10629,10687,10747,-0.062068965517010,0.350000000000000,-0.067241379310131,0.344067796610173,-0.062068965517018,0.338135593220344,-0.056896551723897,0.344067796610172,-0.000000000000000,0.010344827586235,-0.011864406779655,0.000000000000007,-0.000000000000002,-0.010344827586234,0.011864406779657,-0.000000000000008,2 +8935,10630,10690,10748,-0.051724137931288,-0.350000000000000,-0.056896551724373,-0.344067796610160,-0.051724137931279,-0.338135593220321,-0.046551724138195,-0.344067796610161,-0.000000000000000,-0.010344827586177,-0.011864406779680,0.000000000000008,0.000000000000002,0.010344827586178,0.011864406779678,-0.000000000000009,2 +10631,10689,10691,10749,-0.056896551724365,-0.332203389830484,-0.051724137931279,-0.338135593220321,-0.051724137931271,-0.326271186440649,-0.046551724138186,-0.332203389830487,-0.011864406779672,0.000000000000008,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779670,-0.000000000000009,2 +10632,10690,10692,10750,-0.056896551724356,-0.320338983050811,-0.051724137931271,-0.326271186440649,-0.051724137931262,-0.314406779660978,-0.046551724138177,-0.320338983050816,-0.011864406779672,0.000000000000008,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779671,-0.000000000000009,2 +10633,10691,10693,10751,-0.056896551724348,-0.308474576271134,-0.051724137931262,-0.314406779660978,-0.051724137931253,-0.302542372881298,-0.046551724138167,-0.308474576271141,-0.011864406779681,0.000000000000008,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779679,-0.000000000000009,2 +10634,10692,10694,10752,-0.056896551724340,-0.296610169491461,-0.051724137931253,-0.302542372881298,-0.051724137931245,-0.290677966101633,-0.046551724138158,-0.296610169491470,-0.011864406779665,0.000000000000008,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779664,-0.000000000000009,2 +10635,10693,10695,10753,-0.056896551724332,-0.284745762711784,-0.051724137931245,-0.290677966101633,-0.051724137931236,-0.278813559321945,-0.046551724138149,-0.284745762711794,-0.011864406779690,0.000000000000008,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779687,-0.000000000000009,2 +10636,10694,10696,10754,-0.056896551724324,-0.272881355932107,-0.051724137931236,-0.278813559321945,-0.051724137931227,-0.266949152542282,-0.046551724138140,-0.272881355932120,-0.011864406779663,0.000000000000008,-0.000000000000012,-0.010344827586183,0.000000000000014,0.010344827586184,0.011864406779662,-0.000000000000009,2 +10637,10695,10697,10755,-0.056896551724315,-0.261016949152437,-0.051724137931227,-0.266949152542282,-0.051724137931219,-0.255084745762607,-0.046551724138131,-0.261016949152452,-0.011864406779677,0.000000000000008,-0.000000000000014,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779675,-0.000000000000009,2 +10638,10696,10698,10756,-0.056896551724307,-0.249152542372765,-0.051724137931219,-0.255084745762607,-0.051724137931210,-0.243220338982940,-0.046551724138122,-0.249152542372782,-0.011864406779667,0.000000000000008,-0.000000000000016,-0.010344827586185,0.000000000000018,0.010344827586186,0.011864406779665,-0.000000000000009,2 +10639,10697,10699,10757,-0.056896551724299,-0.237288135593095,-0.051724137931210,-0.243220338982940,-0.051724137931201,-0.231355932203269,-0.046551724138113,-0.237288135593114,-0.011864406779672,0.000000000000008,-0.000000000000018,-0.010344827586186,0.000000000000021,0.010344827586187,0.011864406779670,-0.000000000000009,2 +10640,10698,10700,10758,-0.056896551724291,-0.225423728813419,-0.051724137931201,-0.231355932203269,-0.051724137931193,-0.219491525423590,-0.046551724138103,-0.225423728813441,-0.011864406779680,0.000000000000008,-0.000000000000021,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779678,-0.000000000000009,2 +10641,10699,10701,10759,-0.056896551724283,-0.213559322033748,-0.051724137931193,-0.219491525423590,-0.051724137931184,-0.207627118643929,-0.046551724138094,-0.213559322033772,-0.011864406779661,0.000000000000008,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779660,-0.000000000000009,2 +10642,10700,10702,10760,-0.056896551724274,-0.201694915254073,-0.051724137931184,-0.207627118643929,-0.051724137931175,-0.195762711864243,-0.046551724138085,-0.201694915254099,-0.011864406779689,0.000000000000008,-0.000000000000024,-0.010344827586189,0.000000000000027,0.010344827586190,0.011864406779685,-0.000000000000009,2 +10643,10701,10703,10761,-0.056896551724266,-0.189830508474399,-0.051724137931175,-0.195762711864243,-0.051724137931167,-0.183898305084584,-0.046551724138076,-0.189830508474428,-0.011864406779659,0.000000000000008,-0.000000000000027,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779657,-0.000000000000009,2 +10644,10702,10704,10762,-0.056896551724258,-0.177966101694729,-0.051724137931167,-0.183898305084584,-0.051724137931158,-0.172033898304904,-0.046551724138067,-0.177966101694759,-0.011864406779682,0.000000000000008,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586191,0.011864406779679,-0.000000000000009,2 +10645,10703,10705,10763,-0.056896551724250,-0.166101694915055,-0.051724137931158,-0.172033898304904,-0.051724137931149,-0.160169491525239,-0.046551724138058,-0.166101694915087,-0.011864406779666,0.000000000000008,-0.000000000000032,-0.010344827586191,0.000000000000034,0.010344827586192,0.011864406779664,-0.000000000000009,2 +10646,10704,10706,10764,-0.056896551724242,-0.154237288135392,-0.051724137931149,-0.160169491525239,-0.051724137931141,-0.148305084745580,-0.046551724138049,-0.154237288135427,-0.011864406779659,0.000000000000008,-0.000000000000034,-0.010344827586192,0.000000000000035,0.010344827586193,0.011864406779657,-0.000000000000009,2 +10647,10705,10707,10765,-0.056896551724233,-0.142372881355726,-0.051724137931141,-0.148305084745580,-0.051724137931132,-0.136440677965907,-0.046551724138039,-0.142372881355762,-0.011864406779674,0.000000000000008,-0.000000000000035,-0.010344827586193,0.000000000000038,0.010344827586194,0.011864406779672,-0.000000000000009,2 +10648,10706,10708,10766,-0.056896551724225,-0.130508474576053,-0.051724137931132,-0.136440677965907,-0.051724137931123,-0.124576271186237,-0.046551724138030,-0.130508474576091,-0.011864406779671,0.000000000000008,-0.000000000000038,-0.010344827586194,0.000000000000039,0.010344827586195,0.011864406779670,-0.000000000000009,2 +10649,10707,10709,10767,-0.056896551724217,-0.118644067796379,-0.051724137931123,-0.124576271186237,-0.051724137931115,-0.112711864406563,-0.046551724138021,-0.118644067796420,-0.011864406779675,0.000000000000008,-0.000000000000039,-0.010344827586195,0.000000000000042,0.010344827586196,0.011864406779673,-0.000000000000009,2 +10650,10708,10710,10768,-0.056896551724209,-0.106779661016708,-0.051724137931115,-0.112711864406563,-0.051724137931106,-0.100847457626896,-0.046551724138012,-0.106779661016751,-0.011864406779668,0.000000000000008,-0.000000000000042,-0.010344827586196,0.000000000000044,0.010344827586197,0.011864406779666,-0.000000000000009,2 +10651,10709,10711,10769,-0.056896551724201,-0.094915254237036,-0.051724137931106,-0.100847457626896,-0.051724137931097,-0.088983050847222,-0.046551724138003,-0.094915254237081,-0.011864406779675,0.000000000000008,-0.000000000000044,-0.010344827586197,0.000000000000046,0.010344827586198,0.011864406779673,-0.000000000000009,2 +10652,10710,10712,10770,-0.056896551724192,-0.083050847457361,-0.051724137931097,-0.088983050847222,-0.051724137931089,-0.077118644067547,-0.046551724137994,-0.083050847457408,-0.011864406779675,0.000000000000008,-0.000000000000046,-0.010344827586198,0.000000000000049,0.010344827586199,0.011864406779673,-0.000000000000009,2 +10653,10711,10713,10771,-0.056896551724184,-0.071186440677689,-0.051724137931089,-0.077118644067547,-0.051724137931080,-0.065254237287881,-0.046551724137985,-0.071186440677739,-0.011864406779668,0.000000000000008,-0.000000000000049,-0.010344827586199,0.000000000000051,0.010344827586200,0.011864406779666,-0.000000000000009,2 +10654,10712,10714,10772,-0.056896551724176,-0.059322033898017,-0.051724137931080,-0.065254237287881,-0.051724137931071,-0.053389830508207,-0.046551724137975,-0.059322033898070,-0.011864406779675,0.000000000000008,-0.000000000000051,-0.010344827586200,0.000000000000053,0.010344827586201,0.011864406779673,-0.000000000000009,2 +10655,10713,10715,10773,-0.056896551724168,-0.047457627118344,-0.051724137931071,-0.053389830508207,-0.051724137931063,-0.041525423728535,-0.046551724137966,-0.047457627118398,-0.011864406779672,0.000000000000008,-0.000000000000053,-0.010344827586201,0.000000000000056,0.010344827586202,0.011864406779670,-0.000000000000009,2 +10656,10714,10716,10774,-0.056896551724160,-0.035593220338672,-0.051724137931063,-0.041525423728535,-0.051724137931054,-0.029661016948866,-0.046551724137957,-0.035593220338729,-0.011864406779671,0.000000000000008,-0.000000000000056,-0.010344827586202,0.000000000000058,0.010344827586203,0.011864406779669,-0.000000000000009,2 +10657,10715,10717,10775,-0.056896551724151,-0.023728813558999,-0.051724137931054,-0.029661016948866,-0.051724137931045,-0.017796610169191,-0.046551724137948,-0.023728813559058,-0.011864406779675,0.000000000000008,-0.000000000000058,-0.010344827586203,0.000000000000060,0.010344827586204,0.011864406779673,-0.000000000000009,2 +10658,10716,10718,10776,-0.056896551724143,-0.011864406779327,-0.051724137931045,-0.017796610169191,-0.051724137931037,-0.005932203389525,-0.046551724137939,-0.011864406779389,-0.011864406779668,0.000000000000008,-0.000000000000060,-0.010344827586204,0.000000000000062,0.010344827586205,0.011864406779666,-0.000000000000009,2 +10659,10717,10719,10777,-0.056896551724135,0.000000000000343,-0.051724137931037,-0.005932203389525,-0.051724137931028,0.005932203390148,-0.046551724137930,0.000000000000281,-0.011864406779673,0.000000000000008,-0.000000000000062,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000009,2 +10660,10718,10720,10778,-0.056896551724127,0.011864406780002,-0.051724137931028,0.005932203390148,-0.051724137931019,0.017796610169794,-0.046551724137921,0.011864406779941,-0.011864406779645,0.000000000000008,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586207,0.011864406779647,-0.000000000000009,2 +10661,10719,10721,10779,-0.056896551724119,0.023728813559649,-0.051724137931019,0.017796610169794,-0.051724137931011,0.029661016949444,-0.046551724137912,0.023728813559590,-0.011864406779649,0.000000000000008,-0.000000000000060,-0.010344827586207,0.000000000000058,0.010344827586207,0.011864406779651,-0.000000000000009,2 +10662,10720,10722,10780,-0.056896551724110,0.035593220339296,-0.051724137931011,0.029661016949444,-0.051724137931002,0.041525423729092,-0.046551724137902,0.035593220339240,-0.011864406779647,0.000000000000008,-0.000000000000058,-0.010344827586207,0.000000000000056,0.010344827586208,0.011864406779649,-0.000000000000009,2 +10663,10721,10723,10781,-0.056896551724102,0.047457627118943,-0.051724137931002,0.041525423729092,-0.051724137930993,0.053389830508740,-0.046551724137893,0.047457627118889,-0.011864406779647,0.000000000000008,-0.000000000000056,-0.010344827586208,0.000000000000053,0.010344827586209,0.011864406779649,-0.000000000000009,2 +10664,10722,10724,10782,-0.056896551724094,0.059322033898591,-0.051724137930993,0.053389830508740,-0.051724137930985,0.065254237288390,-0.046551724137884,0.059322033898539,-0.011864406779649,0.000000000000008,-0.000000000000053,-0.010344827586209,0.000000000000051,0.010344827586210,0.011864406779651,-0.000000000000009,2 +10665,10723,10725,10783,-0.056896551724086,0.071186440678238,-0.051724137930985,0.065254237288390,-0.051724137930976,0.077118644068036,-0.046551724137875,0.071186440678188,-0.011864406779645,0.000000000000008,-0.000000000000051,-0.010344827586210,0.000000000000049,0.010344827586211,0.011864406779647,-0.000000000000009,2 +10666,10724,10726,10784,-0.056896551724078,0.083050847457885,-0.051724137930976,0.077118644068036,-0.051724137930967,0.088983050847686,-0.046551724137866,0.083050847457837,-0.011864406779649,0.000000000000008,-0.000000000000049,-0.010344827586211,0.000000000000046,0.010344827586212,0.011864406779651,-0.000000000000009,2 +10667,10725,10727,10785,-0.056896551724069,0.094915254237533,-0.051724137930967,0.088983050847686,-0.051724137930959,0.100847457627336,-0.046551724137857,0.094915254237488,-0.011864406779649,0.000000000000008,-0.000000000000046,-0.010344827586212,0.000000000000044,0.010344827586213,0.011864406779651,-0.000000000000009,2 +10668,10726,10728,10786,-0.056896551724061,0.106779661017180,-0.051724137930959,0.100847457627336,-0.051724137930950,0.112711864406982,-0.046551724137848,0.106779661017137,-0.011864406779645,0.000000000000008,-0.000000000000044,-0.010344827586213,0.000000000000042,0.010344827586214,0.011864406779647,-0.000000000000009,2 +10669,10727,10729,10787,-0.056896551724053,0.118644067796827,-0.051724137930950,0.112711864406982,-0.051724137930941,0.124576271186632,-0.046551724137838,0.118644067796787,-0.011864406779649,0.000000000000008,-0.000000000000042,-0.010344827586214,0.000000000000039,0.010344827586215,0.011864406779651,-0.000000000000009,2 +10670,10728,10730,10788,-0.056896551724045,0.130508474576478,-0.051724137930941,0.124576271186632,-0.051724137930933,0.136440677966285,-0.046551724137829,0.130508474576439,-0.011864406779653,0.000000000000008,-0.000000000000039,-0.010344827586215,0.000000000000038,0.010344827586216,0.011864406779654,-0.000000000000009,2 +10671,10729,10731,10789,-0.056896551724037,0.142372881356128,-0.051724137930933,0.136440677966285,-0.051724137930924,0.148305084745935,-0.046551724137820,0.142372881356092,-0.011864406779648,0.000000000000008,-0.000000000000038,-0.010344827586216,0.000000000000035,0.010344827586217,0.011864406779650,-0.000000000000009,2 +10672,10730,10732,10790,-0.056896551724028,0.154237288135773,-0.051724137930924,0.148305084745935,-0.051724137930915,0.160169491525577,-0.046551724137811,0.154237288135738,-0.011864406779641,0.000000000000008,-0.000000000000035,-0.010344827586217,0.000000000000034,0.010344827586218,0.011864406779643,-0.000000000000009,2 +10673,10731,10733,10791,-0.056896551724020,0.166101694915416,-0.051724137930915,0.160169491525577,-0.051724137930907,0.172033898305222,-0.046551724137802,0.166101694915383,-0.011864406779644,0.000000000000008,-0.000000000000034,-0.010344827586218,0.000000000000032,0.010344827586219,0.011864406779646,-0.000000000000009,2 +10674,10732,10734,10792,-0.056896551724012,0.177966101695064,-0.051724137930907,0.172033898305222,-0.051724137930898,0.183898305084875,-0.046551724137793,0.177966101695033,-0.011864406779652,0.000000000000008,-0.000000000000032,-0.010344827586219,0.000000000000029,0.010344827586220,0.011864406779654,-0.000000000000009,2 +10675,10733,10735,10793,-0.056896551724004,0.189830508474710,-0.051724137930898,0.183898305084875,-0.051724137930889,0.195762711864517,-0.046551724137784,0.189830508474682,-0.011864406779641,0.000000000000008,-0.000000000000029,-0.010344827586220,0.000000000000027,0.010344827586221,0.011864406779643,-0.000000000000009,2 +10676,10734,10736,10794,-0.056896551723996,0.201694915254358,-0.051724137930889,0.195762711864517,-0.051724137930881,0.207627118644173,-0.046551724137774,0.201694915254332,-0.011864406779654,0.000000000000008,-0.000000000000027,-0.010344827586221,0.000000000000024,0.010344827586222,0.011864406779657,-0.000000000000009,2 +10677,10735,10737,10795,-0.056896551723987,0.213559322034008,-0.051724137930881,0.207627118644173,-0.051724137930872,0.219491525423819,-0.046551724137765,0.213559322033984,-0.011864406779646,0.000000000000008,-0.000000000000024,-0.010344827586222,0.000000000000023,0.010344827586223,0.011864406779647,-0.000000000000009,2 +10678,10736,10738,10796,-0.056896551723979,0.225423728813658,-0.051724137930872,0.219491525423819,-0.051724137930863,0.231355932203474,-0.046551724137756,0.225423728813636,-0.011864406779653,0.000000000000008,-0.000000000000023,-0.010344827586223,0.000000000000020,0.010344827586223,0.011864406779656,-0.000000000000009,2 +10679,10737,10739,10797,-0.056896551723971,0.237288135593310,-0.051724137930863,0.231355932203474,-0.051724137930855,0.243220338983126,-0.046551724137747,0.237288135593290,-0.011864406779652,0.000000000000008,-0.000000000000020,-0.010344827586223,0.000000000000019,0.010344827586224,0.011864406779653,-0.000000000000009,2 +10680,10738,10740,10798,-0.056896551723963,0.249152542372957,-0.051724137930855,0.243220338983126,-0.051724137930846,0.255084745762770,-0.046551724137738,0.249152542372939,-0.011864406779643,0.000000000000008,-0.000000000000019,-0.010344827586224,0.000000000000016,0.010344827586225,0.011864406779645,-0.000000000000009,2 +10681,10739,10741,10799,-0.056896551723955,0.261016949152601,-0.051724137930846,0.255084745762770,-0.051724137930837,0.266949152542418,-0.046551724137729,0.261016949152586,-0.011864406779646,0.000000000000008,-0.000000000000016,-0.010344827586225,0.000000000000014,0.010344827586226,0.011864406779649,-0.000000000000009,2 +10682,10740,10742,10800,-0.056896551723946,0.272881355932250,-0.051724137930837,0.266949152542418,-0.051724137930829,0.278813559322069,-0.046551724137720,0.272881355932237,-0.011864406779650,0.000000000000008,-0.000000000000014,-0.010344827586226,0.000000000000012,0.010344827586227,0.011864406779651,-0.000000000000009,2 +10683,10741,10743,10801,-0.056896551723938,0.284745762711903,-0.051724137930829,0.278813559322069,-0.051724137930820,0.290677966101726,-0.046551724137710,0.284745762711892,-0.011864406779656,0.000000000000008,-0.000000000000012,-0.010344827586227,0.000000000000009,0.010344827586228,0.011864406779659,-0.000000000000009,2 +10684,10742,10744,10802,-0.056896551723930,0.296610169491558,-0.051724137930820,0.290677966101726,-0.051724137930811,0.302542372881381,-0.046551724137701,0.296610169491549,-0.011864406779655,0.000000000000008,-0.000000000000009,-0.010344827586228,0.000000000000008,0.010344827586229,0.011864406779656,-0.000000000000009,2 +10685,10743,10745,10803,-0.056896551723922,0.308474576271211,-0.051724137930811,0.302542372881381,-0.051724137930803,0.314406779661034,-0.046551724137692,0.308474576271204,-0.011864406779651,0.000000000000008,-0.000000000000008,-0.010344827586229,0.000000000000005,0.010344827586230,0.011864406779654,-0.000000000000009,2 +10686,10744,10746,10804,-0.056896551723914,0.320338983050865,-0.051724137930803,0.314406779661034,-0.051724137930794,0.326271186440692,-0.046551724137683,0.320338983050861,-0.011864406779657,0.000000000000008,-0.000000000000005,-0.010344827586230,0.000000000000004,0.010344827586231,0.011864406779658,-0.000000000000009,2 +10687,10745,10747,10805,-0.056896551723905,0.332203389830519,-0.051724137930794,0.326271186440692,-0.051724137930785,0.338135593220342,-0.046551724137674,0.332203389830516,-0.011864406779649,0.000000000000008,-0.000000000000004,-0.010344827586231,0.000000000000002,0.010344827586232,0.011864406779652,-0.000000000000009,2 +7960,10688,10746,10806,-0.051724137930777,0.350000000000000,-0.056896551723897,0.344067796610172,-0.051724137930785,0.338135593220342,-0.046551724137665,0.344067796610171,-0.000000000000000,0.010344827586233,-0.011864406779657,0.000000000000008,-0.000000000000002,-0.010344827586232,0.011864406779659,-0.000000000000009,2 +8936,10689,10749,10807,-0.041379310345109,-0.350000000000000,-0.046551724138195,-0.344067796610161,-0.041379310345099,-0.338135593220323,-0.036206896552013,-0.344067796610162,-0.000000000000000,-0.010344827586182,-0.011864406779678,0.000000000000009,0.000000000000002,0.010344827586182,0.011864406779676,-0.000000000000010,2 +10690,10748,10750,10808,-0.046551724138186,-0.332203389830487,-0.041379310345099,-0.338135593220323,-0.041379310345090,-0.326271186440654,-0.036206896552003,-0.332203389830490,-0.011864406779670,0.000000000000009,-0.000000000000002,-0.010344827586182,0.000000000000004,0.010344827586183,0.011864406779668,-0.000000000000010,2 +10691,10749,10751,10809,-0.046551724138177,-0.320338983050816,-0.041379310345090,-0.326271186440654,-0.041379310345080,-0.314406779660984,-0.036206896551993,-0.320338983050821,-0.011864406779671,0.000000000000009,-0.000000000000004,-0.010344827586183,0.000000000000005,0.010344827586184,0.011864406779669,-0.000000000000010,2 +10692,10750,10752,10810,-0.046551724138167,-0.308474576271141,-0.041379310345080,-0.314406779660984,-0.041379310345070,-0.302542372881306,-0.036206896551983,-0.308474576271148,-0.011864406779679,0.000000000000009,-0.000000000000005,-0.010344827586184,0.000000000000008,0.010344827586185,0.011864406779676,-0.000000000000010,2 +10693,10751,10753,10811,-0.046551724138158,-0.296610169491470,-0.041379310345070,-0.302542372881306,-0.041379310345061,-0.290677966101642,-0.036206896551973,-0.296610169491479,-0.011864406779664,0.000000000000009,-0.000000000000008,-0.010344827586185,0.000000000000009,0.010344827586186,0.011864406779663,-0.000000000000010,2 +10694,10752,10754,10812,-0.046551724138149,-0.284745762711794,-0.041379310345061,-0.290677966101642,-0.041379310345051,-0.278813559321957,-0.036206896551963,-0.284745762711805,-0.011864406779687,0.000000000000009,-0.000000000000009,-0.010344827586186,0.000000000000012,0.010344827586187,0.011864406779683,-0.000000000000010,2 +10695,10753,10755,10813,-0.046551724138140,-0.272881355932120,-0.041379310345051,-0.278813559321957,-0.041379310345042,-0.266949152542296,-0.036206896551953,-0.272881355932133,-0.011864406779662,0.000000000000009,-0.000000000000012,-0.010344827586187,0.000000000000013,0.010344827586188,0.011864406779661,-0.000000000000010,2 +10696,10754,10756,10814,-0.046551724138131,-0.261016949152452,-0.041379310345042,-0.266949152542296,-0.041379310345032,-0.255084745762623,-0.036206896551943,-0.261016949152467,-0.011864406779675,0.000000000000009,-0.000000000000013,-0.010344827586188,0.000000000000016,0.010344827586188,0.011864406779672,-0.000000000000010,2 +10697,10755,10757,10815,-0.046551724138122,-0.249152542372782,-0.041379310345032,-0.255084745762623,-0.041379310345022,-0.243220338982959,-0.036206896551933,-0.249152542372799,-0.011864406779665,0.000000000000009,-0.000000000000016,-0.010344827586188,0.000000000000019,0.010344827586189,0.011864406779663,-0.000000000000010,2 +10698,10756,10758,10816,-0.046551724138113,-0.237288135593114,-0.041379310345022,-0.243220338982959,-0.041379310345013,-0.231355932203290,-0.036206896551923,-0.237288135593134,-0.011864406779670,0.000000000000009,-0.000000000000019,-0.010344827586189,0.000000000000020,0.010344827586190,0.011864406779668,-0.000000000000010,2 +10699,10757,10759,10817,-0.046551724138103,-0.225423728813441,-0.041379310345013,-0.231355932203290,-0.041379310345003,-0.219491525423613,-0.036206896551913,-0.225423728813462,-0.011864406779678,0.000000000000009,-0.000000000000020,-0.010344827586190,0.000000000000023,0.010344827586191,0.011864406779675,-0.000000000000010,2 +10700,10758,10760,10818,-0.046551724138094,-0.213559322033772,-0.041379310345003,-0.219491525423613,-0.041379310344994,-0.207627118643954,-0.036206896551903,-0.213559322033795,-0.011864406779660,0.000000000000009,-0.000000000000023,-0.010344827586191,0.000000000000024,0.010344827586192,0.011864406779659,-0.000000000000010,2 +10701,10759,10761,10819,-0.046551724138085,-0.201694915254099,-0.041379310344994,-0.207627118643954,-0.041379310344984,-0.195762711864270,-0.036206896551893,-0.201694915254125,-0.011864406779685,0.000000000000009,-0.000000000000024,-0.010344827586192,0.000000000000027,0.010344827586193,0.011864406779682,-0.000000000000010,2 +10702,10760,10762,10820,-0.046551724138076,-0.189830508474428,-0.041379310344984,-0.195762711864270,-0.041379310344975,-0.183898305084613,-0.036206896551883,-0.189830508474456,-0.011864406779657,0.000000000000009,-0.000000000000027,-0.010344827586193,0.000000000000029,0.010344827586194,0.011864406779656,-0.000000000000010,2 +10703,10761,10763,10821,-0.046551724138067,-0.177966101694759,-0.041379310344975,-0.183898305084613,-0.041379310344965,-0.172033898304935,-0.036206896551873,-0.177966101694790,-0.011864406779679,0.000000000000009,-0.000000000000029,-0.010344827586194,0.000000000000032,0.010344827586195,0.011864406779677,-0.000000000000010,2 +10704,10762,10764,10822,-0.046551724138058,-0.166101694915087,-0.041379310344965,-0.172033898304935,-0.041379310344955,-0.160169491525272,-0.036206896551863,-0.166101694915120,-0.011864406779664,0.000000000000009,-0.000000000000032,-0.010344827586195,0.000000000000034,0.010344827586195,0.011864406779662,-0.000000000000010,2 +10705,10763,10765,10823,-0.046551724138049,-0.154237288135427,-0.041379310344955,-0.160169491525272,-0.041379310344946,-0.148305084745616,-0.036206896551853,-0.154237288135461,-0.011864406779657,0.000000000000009,-0.000000000000034,-0.010344827586195,0.000000000000035,0.010344827586196,0.011864406779656,-0.000000000000010,2 +10706,10764,10766,10824,-0.046551724138039,-0.142372881355762,-0.041379310344946,-0.148305084745616,-0.041379310344936,-0.136440677965945,-0.036206896551843,-0.142372881355799,-0.011864406779672,0.000000000000009,-0.000000000000035,-0.010344827586196,0.000000000000038,0.010344827586197,0.011864406779669,-0.000000000000010,2 +10707,10765,10767,10825,-0.046551724138030,-0.130508474576091,-0.041379310344936,-0.136440677965945,-0.041379310344927,-0.124576271186276,-0.036206896551833,-0.130508474576130,-0.011864406779670,0.000000000000009,-0.000000000000038,-0.010344827586197,0.000000000000039,0.010344827586198,0.011864406779668,-0.000000000000010,2 +10708,10766,10768,10826,-0.046551724138021,-0.118644067796420,-0.041379310344927,-0.124576271186276,-0.041379310344917,-0.112711864406605,-0.036206896551823,-0.118644067796461,-0.011864406779673,0.000000000000009,-0.000000000000039,-0.010344827586198,0.000000000000042,0.010344827586199,0.011864406779670,-0.000000000000010,2 +10709,10767,10769,10827,-0.046551724138012,-0.106779661016751,-0.041379310344917,-0.112711864406605,-0.041379310344908,-0.100847457626940,-0.036206896551813,-0.106779661016794,-0.011864406779666,0.000000000000009,-0.000000000000042,-0.010344827586199,0.000000000000044,0.010344827586200,0.011864406779664,-0.000000000000010,2 +10710,10768,10770,10828,-0.046551724138003,-0.094915254237081,-0.041379310344908,-0.100847457626940,-0.041379310344898,-0.088983050847268,-0.036206896551803,-0.094915254237126,-0.011864406779673,0.000000000000009,-0.000000000000044,-0.010344827586200,0.000000000000046,0.010344827586201,0.011864406779670,-0.000000000000010,2 +10711,10769,10771,10829,-0.046551724137994,-0.083050847457408,-0.041379310344898,-0.088983050847268,-0.041379310344888,-0.077118644067596,-0.036206896551793,-0.083050847457456,-0.011864406779673,0.000000000000009,-0.000000000000046,-0.010344827586201,0.000000000000049,0.010344827586202,0.011864406779670,-0.000000000000010,2 +10712,10770,10772,10830,-0.046551724137985,-0.071186440677739,-0.041379310344888,-0.077118644067596,-0.041379310344879,-0.065254237287932,-0.036206896551783,-0.071186440677789,-0.011864406779666,0.000000000000009,-0.000000000000049,-0.010344827586202,0.000000000000051,0.010344827586202,0.011864406779664,-0.000000000000010,2 +10713,10771,10773,10831,-0.046551724137975,-0.059322033898070,-0.041379310344879,-0.065254237287932,-0.041379310344869,-0.053389830508260,-0.036206896551773,-0.059322033898122,-0.011864406779673,0.000000000000009,-0.000000000000051,-0.010344827586202,0.000000000000053,0.010344827586203,0.011864406779671,-0.000000000000010,2 +10714,10772,10774,10832,-0.046551724137966,-0.047457627118398,-0.041379310344869,-0.053389830508260,-0.041379310344860,-0.041525423728591,-0.036206896551763,-0.047457627118453,-0.011864406779670,0.000000000000009,-0.000000000000053,-0.010344827586203,0.000000000000056,0.010344827586204,0.011864406779668,-0.000000000000010,2 +10715,10773,10775,10833,-0.046551724137957,-0.035593220338729,-0.041379310344860,-0.041525423728591,-0.041379310344850,-0.029661016948923,-0.036206896551753,-0.035593220338786,-0.011864406779669,0.000000000000009,-0.000000000000056,-0.010344827586204,0.000000000000058,0.010344827586205,0.011864406779667,-0.000000000000010,2 +10716,10774,10776,10834,-0.046551724137948,-0.023728813559058,-0.041379310344850,-0.029661016948923,-0.041379310344841,-0.017796610169252,-0.036206896551743,-0.023728813559117,-0.011864406779673,0.000000000000009,-0.000000000000058,-0.010344827586205,0.000000000000060,0.010344827586206,0.011864406779671,-0.000000000000010,2 +10717,10775,10777,10835,-0.046551724137939,-0.011864406779389,-0.041379310344841,-0.017796610169252,-0.041379310344831,-0.005932203389587,-0.036206896551733,-0.011864406779450,-0.011864406779666,0.000000000000009,-0.000000000000060,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779664,-0.000000000000010,2 +10718,10776,10778,10836,-0.046551724137930,0.000000000000281,-0.041379310344831,-0.005932203389587,-0.041379310344821,0.005932203390086,-0.036206896551723,0.000000000000218,-0.011864406779673,0.000000000000009,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586208,0.011864406779673,-0.000000000000010,2 +10719,10777,10779,10837,-0.046551724137921,0.011864406779941,-0.041379310344821,0.005932203390086,-0.041379310344812,0.017796610169734,-0.036206896551713,0.011864406779879,-0.011864406779647,0.000000000000009,-0.000000000000062,-0.010344827586208,0.000000000000060,0.010344827586209,0.011864406779649,-0.000000000000010,2 +10720,10778,10780,10838,-0.046551724137912,0.023728813559590,-0.041379310344812,0.017796610169734,-0.041379310344802,0.029661016949386,-0.036206896551703,0.023728813559531,-0.011864406779651,0.000000000000009,-0.000000000000060,-0.010344827586209,0.000000000000058,0.010344827586209,0.011864406779653,-0.000000000000010,2 +10721,10779,10781,10839,-0.046551724137902,0.035593220339240,-0.041379310344802,0.029661016949386,-0.041379310344793,0.041525423729036,-0.036206896551693,0.035593220339183,-0.011864406779649,0.000000000000009,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779651,-0.000000000000010,2 +10722,10780,10782,10840,-0.046551724137893,0.047457627118889,-0.041379310344793,0.041525423729036,-0.041379310344783,0.053389830508687,-0.036206896551683,0.047457627118834,-0.011864406779649,0.000000000000009,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586211,0.011864406779652,-0.000000000000010,2 +10723,10781,10783,10841,-0.046551724137884,0.059322033898539,-0.041379310344783,0.053389830508687,-0.041379310344774,0.065254237288339,-0.036206896551673,0.059322033898487,-0.011864406779651,0.000000000000009,-0.000000000000053,-0.010344827586211,0.000000000000051,0.010344827586212,0.011864406779653,-0.000000000000010,2 +10724,10782,10784,10842,-0.046551724137875,0.071186440678188,-0.041379310344774,0.065254237288339,-0.041379310344764,0.077118644067987,-0.036206896551663,0.071186440678138,-0.011864406779647,0.000000000000009,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586213,0.011864406779649,-0.000000000000010,2 +10725,10783,10785,10843,-0.046551724137866,0.083050847457837,-0.041379310344764,0.077118644067987,-0.041379310344754,0.088983050847639,-0.036206896551653,0.083050847457790,-0.011864406779651,0.000000000000009,-0.000000000000049,-0.010344827586213,0.000000000000046,0.010344827586214,0.011864406779653,-0.000000000000010,2 +10726,10784,10786,10844,-0.046551724137857,0.094915254237488,-0.041379310344754,0.088983050847639,-0.041379310344745,0.100847457627292,-0.036206896551642,0.094915254237443,-0.011864406779651,0.000000000000009,-0.000000000000046,-0.010344827586214,0.000000000000044,0.010344827586215,0.011864406779653,-0.000000000000010,2 +10727,10785,10787,10845,-0.046551724137848,0.106779661017137,-0.041379310344745,0.100847457627292,-0.041379310344735,0.112711864406940,-0.036206896551632,0.106779661017094,-0.011864406779647,0.000000000000009,-0.000000000000044,-0.010344827586215,0.000000000000042,0.010344827586215,0.011864406779649,-0.000000000000010,2 +10728,10786,10788,10846,-0.046551724137838,0.118644067796787,-0.041379310344735,0.112711864406940,-0.041379310344726,0.124576271186592,-0.036206896551622,0.118644067796746,-0.011864406779651,0.000000000000009,-0.000000000000042,-0.010344827586215,0.000000000000040,0.010344827586216,0.011864406779654,-0.000000000000010,2 +10729,10787,10789,10847,-0.046551724137829,0.130508474576439,-0.041379310344726,0.124576271186592,-0.041379310344716,0.136440677966248,-0.036206896551612,0.130508474576401,-0.011864406779654,0.000000000000009,-0.000000000000040,-0.010344827586216,0.000000000000038,0.010344827586217,0.011864406779656,-0.000000000000010,2 +10730,10788,10790,10848,-0.046551724137820,0.142372881356092,-0.041379310344716,0.136440677966248,-0.041379310344706,0.148305084745899,-0.036206896551602,0.142372881356055,-0.011864406779650,0.000000000000009,-0.000000000000038,-0.010344827586217,0.000000000000035,0.010344827586218,0.011864406779653,-0.000000000000010,2 +10731,10789,10791,10849,-0.046551724137811,0.154237288135738,-0.041379310344706,0.148305084745899,-0.041379310344697,0.160169491525543,-0.036206896551592,0.154237288135704,-0.011864406779643,0.000000000000009,-0.000000000000035,-0.010344827586218,0.000000000000034,0.010344827586219,0.011864406779644,-0.000000000000010,2 +10732,10790,10792,10850,-0.046551724137802,0.166101694915383,-0.041379310344697,0.160169491525543,-0.041379310344687,0.172033898305190,-0.036206896551582,0.166101694915350,-0.011864406779646,0.000000000000009,-0.000000000000034,-0.010344827586219,0.000000000000032,0.010344827586220,0.011864406779648,-0.000000000000010,2 +10733,10791,10793,10851,-0.046551724137793,0.177966101695033,-0.041379310344687,0.172033898305190,-0.041379310344678,0.183898305084846,-0.036206896551572,0.177966101695003,-0.011864406779654,0.000000000000009,-0.000000000000032,-0.010344827586220,0.000000000000029,0.010344827586221,0.011864406779657,-0.000000000000010,2 +10734,10792,10794,10852,-0.046551724137784,0.189830508474682,-0.041379310344678,0.183898305084846,-0.041379310344668,0.195762711864490,-0.036206896551562,0.189830508474653,-0.011864406779643,0.000000000000009,-0.000000000000029,-0.010344827586221,0.000000000000028,0.010344827586222,0.011864406779645,-0.000000000000010,2 +10735,10793,10795,10853,-0.046551724137774,0.201694915254332,-0.041379310344668,0.195762711864490,-0.041379310344659,0.207627118644149,-0.036206896551552,0.201694915254306,-0.011864406779657,0.000000000000009,-0.000000000000028,-0.010344827586222,0.000000000000024,0.010344827586222,0.011864406779661,-0.000000000000010,2 +10736,10794,10796,10854,-0.046551724137765,0.213559322033984,-0.041379310344659,0.207627118644149,-0.041379310344649,0.219491525423796,-0.036206896551542,0.213559322033961,-0.011864406779647,0.000000000000009,-0.000000000000024,-0.010344827586222,0.000000000000023,0.010344827586223,0.011864406779649,-0.000000000000010,2 +10737,10795,10797,10855,-0.046551724137756,0.225423728813636,-0.041379310344649,0.219491525423796,-0.041379310344639,0.231355932203453,-0.036206896551532,0.225423728813614,-0.011864406779656,0.000000000000009,-0.000000000000023,-0.010344827586223,0.000000000000021,0.010344827586224,0.011864406779658,-0.000000000000010,2 +10738,10796,10798,10856,-0.046551724137747,0.237288135593290,-0.041379310344639,0.231355932203453,-0.041379310344630,0.243220338983108,-0.036206896551522,0.237288135593271,-0.011864406779653,0.000000000000009,-0.000000000000021,-0.010344827586224,0.000000000000019,0.010344827586225,0.011864406779655,-0.000000000000010,2 +10739,10797,10799,10857,-0.046551724137738,0.249152542372939,-0.041379310344630,0.243220338983108,-0.041379310344620,0.255084745762754,-0.036206896551512,0.249152542372922,-0.011864406779645,0.000000000000009,-0.000000000000019,-0.010344827586225,0.000000000000016,0.010344827586226,0.011864406779647,-0.000000000000010,2 +10740,10798,10800,10858,-0.046551724137729,0.261016949152586,-0.041379310344620,0.255084745762754,-0.041379310344611,0.266949152542404,-0.036206896551502,0.261016949152572,-0.011864406779649,0.000000000000009,-0.000000000000016,-0.010344827586226,0.000000000000013,0.010344827586227,0.011864406779652,-0.000000000000010,2 +10741,10799,10801,10859,-0.046551724137720,0.272881355932237,-0.041379310344611,0.266949152542404,-0.041379310344601,0.278813559322056,-0.036206896551492,0.272881355932224,-0.011864406779651,0.000000000000009,-0.000000000000013,-0.010344827586227,0.000000000000012,0.010344827586228,0.011864406779652,-0.000000000000010,2 +10742,10800,10802,10860,-0.046551724137710,0.284745762711892,-0.041379310344601,0.278813559322056,-0.041379310344592,0.290677966101717,-0.036206896551482,0.284745762711881,-0.011864406779659,0.000000000000009,-0.000000000000012,-0.010344827586228,0.000000000000009,0.010344827586229,0.011864406779662,-0.000000000000010,2 +10743,10801,10803,10861,-0.046551724137701,0.296610169491549,-0.041379310344592,0.290677966101717,-0.041379310344582,0.302542372881373,-0.036206896551472,0.296610169491540,-0.011864406779656,0.000000000000009,-0.000000000000009,-0.010344827586229,0.000000000000008,0.010344827586229,0.011864406779657,-0.000000000000010,2 +10744,10802,10804,10862,-0.046551724137692,0.308474576271204,-0.041379310344582,0.302542372881373,-0.041379310344572,0.314406779661028,-0.036206896551462,0.308474576271197,-0.011864406779654,0.000000000000009,-0.000000000000008,-0.010344827586229,0.000000000000006,0.010344827586230,0.011864406779657,-0.000000000000010,2 +10745,10803,10805,10863,-0.046551724137683,0.320338983050861,-0.041379310344572,0.314406779661028,-0.041379310344563,0.326271186440688,-0.036206896551452,0.320338983050856,-0.011864406779658,0.000000000000009,-0.000000000000006,-0.010344827586230,0.000000000000004,0.010344827586231,0.011864406779660,-0.000000000000010,2 +10746,10804,10806,10864,-0.046551724137674,0.332203389830516,-0.041379310344563,0.326271186440688,-0.041379310344553,0.338135593220340,-0.036206896551442,0.332203389830512,-0.011864406779652,0.000000000000009,-0.000000000000004,-0.010344827586231,0.000000000000002,0.010344827586232,0.011864406779654,-0.000000000000010,2 +7946,10747,10805,10865,-0.041379310344544,0.350000000000000,-0.046551724137665,0.344067796610171,-0.041379310344553,0.338135593220340,-0.036206896551432,0.344067796610170,-0.000000000000000,0.010344827586233,-0.011864406779659,0.000000000000009,-0.000000000000002,-0.010344827586232,0.011864406779661,-0.000000000000010,2 +8937,10748,10808,10866,-0.031034482758929,-0.350000000000000,-0.036206896552013,-0.344067796610162,-0.031034482758918,-0.338135593220325,-0.025862068965834,-0.344067796610163,-0.000000000000000,-0.010344827586179,-0.011864406779676,0.000000000000010,0.000000000000002,0.010344827586179,0.011864406779674,-0.000000000000011,2 +10749,10807,10809,10867,-0.036206896552003,-0.332203389830490,-0.031034482758918,-0.338135593220325,-0.031034482758908,-0.326271186440658,-0.025862068965823,-0.332203389830493,-0.011864406779668,0.000000000000010,-0.000000000000002,-0.010344827586179,0.000000000000004,0.010344827586180,0.011864406779666,-0.000000000000011,2 +10750,10808,10810,10868,-0.036206896551993,-0.320338983050821,-0.031034482758908,-0.326271186440658,-0.031034482758897,-0.314406779660989,-0.025862068965812,-0.320338983050826,-0.011864406779669,0.000000000000010,-0.000000000000004,-0.010344827586180,0.000000000000006,0.010344827586181,0.011864406779668,-0.000000000000011,2 +10751,10809,10811,10869,-0.036206896551983,-0.308474576271148,-0.031034482758897,-0.314406779660989,-0.031034482758887,-0.302542372881315,-0.025862068965801,-0.308474576271155,-0.011864406779676,0.000000000000010,-0.000000000000006,-0.010344827586181,0.000000000000008,0.010344827586182,0.011864406779673,-0.000000000000011,2 +10752,10810,10812,10870,-0.036206896551973,-0.296610169491479,-0.031034482758887,-0.302542372881315,-0.031034482758876,-0.290677966101652,-0.025862068965790,-0.296610169491487,-0.011864406779663,0.000000000000010,-0.000000000000008,-0.010344827586182,0.000000000000009,0.010344827586183,0.011864406779662,-0.000000000000011,2 +10753,10811,10813,10871,-0.036206896551963,-0.284745762711805,-0.031034482758876,-0.290677966101652,-0.031034482758866,-0.278813559321970,-0.025862068965779,-0.284745762711816,-0.011864406779683,0.000000000000010,-0.000000000000009,-0.010344827586183,0.000000000000012,0.010344827586184,0.011864406779680,-0.000000000000011,2 +10754,10812,10814,10872,-0.036206896551953,-0.272881355932133,-0.031034482758866,-0.278813559321970,-0.031034482758855,-0.266949152542310,-0.025862068965768,-0.272881355932146,-0.011864406779661,0.000000000000010,-0.000000000000012,-0.010344827586184,0.000000000000014,0.010344827586185,0.011864406779659,-0.000000000000011,2 +10755,10813,10815,10873,-0.036206896551943,-0.261016949152467,-0.031034482758855,-0.266949152542310,-0.031034482758845,-0.255084745762639,-0.025862068965757,-0.261016949152482,-0.011864406779672,0.000000000000010,-0.000000000000014,-0.010344827586185,0.000000000000016,0.010344827586186,0.011864406779669,-0.000000000000011,2 +10756,10814,10816,10874,-0.036206896551933,-0.249152542372799,-0.031034482758845,-0.255084745762639,-0.031034482758834,-0.243220338982977,-0.025862068965746,-0.249152542372817,-0.011864406779663,0.000000000000010,-0.000000000000016,-0.010344827586186,0.000000000000019,0.010344827586187,0.011864406779661,-0.000000000000011,2 +10757,10815,10817,10875,-0.036206896551923,-0.237288135593134,-0.031034482758834,-0.243220338982977,-0.031034482758824,-0.231355932203310,-0.025862068965735,-0.237288135593153,-0.011864406779668,0.000000000000010,-0.000000000000019,-0.010344827586187,0.000000000000020,0.010344827586188,0.011864406779666,-0.000000000000011,2 +10758,10816,10818,10876,-0.036206896551913,-0.225423728813462,-0.031034482758824,-0.231355932203310,-0.031034482758813,-0.219491525423636,-0.025862068965725,-0.225423728813484,-0.011864406779675,0.000000000000010,-0.000000000000020,-0.010344827586188,0.000000000000023,0.010344827586189,0.011864406779673,-0.000000000000011,2 +10759,10817,10819,10877,-0.036206896551903,-0.213559322033795,-0.031034482758813,-0.219491525423636,-0.031034482758803,-0.207627118643978,-0.025862068965714,-0.213559322033819,-0.011864406779659,0.000000000000010,-0.000000000000023,-0.010344827586189,0.000000000000024,0.010344827586190,0.011864406779657,-0.000000000000011,2 +10760,10818,10820,10878,-0.036206896551893,-0.201694915254125,-0.031034482758803,-0.207627118643978,-0.031034482758792,-0.195762711864297,-0.025862068965703,-0.201694915254151,-0.011864406779682,0.000000000000010,-0.000000000000024,-0.010344827586190,0.000000000000028,0.010344827586191,0.011864406779679,-0.000000000000011,2 +10761,10819,10821,10879,-0.036206896551883,-0.189830508474456,-0.031034482758792,-0.195762711864297,-0.031034482758782,-0.183898305084642,-0.025862068965692,-0.189830508474484,-0.011864406779656,0.000000000000010,-0.000000000000028,-0.010344827586191,0.000000000000029,0.010344827586191,0.011864406779654,-0.000000000000011,2 +10762,10820,10822,10880,-0.036206896551873,-0.177966101694790,-0.031034482758782,-0.183898305084642,-0.031034482758772,-0.172033898304967,-0.025862068965681,-0.177966101694820,-0.011864406779677,0.000000000000010,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779674,-0.000000000000011,2 +10763,10821,10823,10881,-0.036206896551863,-0.166101694915120,-0.031034482758772,-0.172033898304967,-0.031034482758761,-0.160169491525306,-0.025862068965670,-0.166101694915153,-0.011864406779662,0.000000000000010,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779660,-0.000000000000011,2 +10764,10822,10824,10882,-0.036206896551853,-0.154237288135461,-0.031034482758761,-0.160169491525306,-0.031034482758751,-0.148305084745651,-0.025862068965659,-0.154237288135496,-0.011864406779656,0.000000000000010,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779654,-0.000000000000011,2 +10765,10823,10825,10883,-0.036206896551843,-0.142372881355799,-0.031034482758751,-0.148305084745651,-0.031034482758740,-0.136440677965983,-0.025862068965648,-0.142372881355835,-0.011864406779669,0.000000000000010,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779667,-0.000000000000011,2 +10766,10824,10826,10884,-0.036206896551833,-0.130508474576130,-0.031034482758740,-0.136440677965983,-0.031034482758730,-0.124576271186316,-0.025862068965637,-0.130508474576169,-0.011864406779668,0.000000000000010,-0.000000000000038,-0.010344827586195,0.000000000000040,0.010344827586196,0.011864406779666,-0.000000000000011,2 +10767,10825,10827,10885,-0.036206896551823,-0.118644067796461,-0.031034482758730,-0.124576271186316,-0.031034482758719,-0.112711864406646,-0.025862068965626,-0.118644067796501,-0.011864406779670,0.000000000000010,-0.000000000000040,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779668,-0.000000000000011,2 +10768,10826,10828,10886,-0.036206896551813,-0.106779661016794,-0.031034482758719,-0.112711864406646,-0.031034482758709,-0.100847457626984,-0.025862068965615,-0.106779661016837,-0.011864406779664,0.000000000000010,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779662,-0.000000000000011,2 +10769,10827,10829,10887,-0.036206896551803,-0.094915254237126,-0.031034482758709,-0.100847457626984,-0.031034482758698,-0.088983050847314,-0.025862068965604,-0.094915254237172,-0.011864406779670,0.000000000000010,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779668,-0.000000000000011,2 +10770,10828,10830,10888,-0.036206896551793,-0.083050847457456,-0.031034482758698,-0.088983050847314,-0.031034482758688,-0.077118644067645,-0.025862068965593,-0.083050847457504,-0.011864406779670,0.000000000000010,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779668,-0.000000000000011,2 +10771,10829,10831,10889,-0.036206896551783,-0.071186440677789,-0.031034482758688,-0.077118644067645,-0.031034482758677,-0.065254237287983,-0.025862068965582,-0.071186440677839,-0.011864406779664,0.000000000000010,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779662,-0.000000000000011,2 +10772,10830,10832,10890,-0.036206896551773,-0.059322033898122,-0.031034482758677,-0.065254237287983,-0.031034482758667,-0.053389830508313,-0.025862068965571,-0.059322033898174,-0.011864406779671,0.000000000000010,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779668,-0.000000000000011,2 +10773,10831,10833,10891,-0.036206896551763,-0.047457627118453,-0.031034482758667,-0.053389830508313,-0.031034482758656,-0.041525423728647,-0.025862068965561,-0.047457627118507,-0.011864406779668,0.000000000000010,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779665,-0.000000000000011,2 +10774,10832,10834,10892,-0.036206896551753,-0.035593220338786,-0.031034482758656,-0.041525423728647,-0.031034482758646,-0.029661016948981,-0.025862068965550,-0.035593220338842,-0.011864406779667,0.000000000000010,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779664,-0.000000000000011,2 +10775,10833,10835,10893,-0.036206896551743,-0.023728813559117,-0.031034482758646,-0.029661016948981,-0.031034482758635,-0.017796610169312,-0.025862068965539,-0.023728813559176,-0.011864406779671,0.000000000000010,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586204,0.011864406779668,-0.000000000000011,2 +10776,10834,10836,10894,-0.036206896551733,-0.011864406779450,-0.031034482758635,-0.017796610169312,-0.031034482758625,-0.005932203389649,-0.025862068965528,-0.011864406779511,-0.011864406779664,0.000000000000010,-0.000000000000060,-0.010344827586204,0.000000000000062,0.010344827586205,0.011864406779662,-0.000000000000011,2 +10777,10835,10837,10895,-0.036206896551723,0.000000000000218,-0.031034482758625,-0.005932203389649,-0.031034482758614,0.005932203390023,-0.025862068965517,0.000000000000156,-0.011864406779673,0.000000000000010,-0.000000000000062,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000011,2 +10778,10836,10838,10896,-0.036206896551713,0.011864406779879,-0.031034482758614,0.005932203390023,-0.031034482758604,0.017796610169674,-0.025862068965506,0.011864406779818,-0.011864406779649,0.000000000000010,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586207,0.011864406779651,-0.000000000000011,2 +10779,10837,10839,10897,-0.036206896551703,0.023728813559531,-0.031034482758604,0.017796610169674,-0.031034482758593,0.029661016949328,-0.025862068965495,0.023728813559472,-0.011864406779653,0.000000000000010,-0.000000000000060,-0.010344827586207,0.000000000000058,0.010344827586208,0.011864406779656,-0.000000000000011,2 +10780,10838,10840,10898,-0.036206896551693,0.035593220339183,-0.031034482758593,0.029661016949328,-0.031034482758583,0.041525423728981,-0.025862068965484,0.035593220339126,-0.011864406779651,0.000000000000010,-0.000000000000058,-0.010344827586208,0.000000000000056,0.010344827586209,0.011864406779653,-0.000000000000011,2 +10781,10839,10841,10899,-0.036206896551683,0.047457627118834,-0.031034482758583,0.041525423728981,-0.031034482758573,0.053389830508633,-0.025862068965473,0.047457627118780,-0.011864406779652,0.000000000000010,-0.000000000000056,-0.010344827586209,0.000000000000053,0.010344827586210,0.011864406779654,-0.000000000000011,2 +10782,10840,10842,10900,-0.036206896551673,0.059322033898487,-0.031034482758573,0.053389830508633,-0.031034482758562,0.065254237288288,-0.025862068965462,0.059322033898435,-0.011864406779653,0.000000000000010,-0.000000000000053,-0.010344827586210,0.000000000000051,0.010344827586211,0.011864406779656,-0.000000000000011,2 +10783,10841,10843,10901,-0.036206896551663,0.071186440678138,-0.031034482758562,0.065254237288288,-0.031034482758552,0.077118644067938,-0.025862068965451,0.071186440678088,-0.011864406779649,0.000000000000010,-0.000000000000051,-0.010344827586211,0.000000000000049,0.010344827586212,0.011864406779651,-0.000000000000011,2 +10784,10842,10844,10902,-0.036206896551653,0.083050847457790,-0.031034482758552,0.077118644067938,-0.031034482758541,0.088983050847593,-0.025862068965440,0.083050847457742,-0.011864406779653,0.000000000000010,-0.000000000000049,-0.010344827586212,0.000000000000046,0.010344827586213,0.011864406779656,-0.000000000000011,2 +10785,10843,10845,10903,-0.036206896551642,0.094915254237443,-0.031034482758541,0.088983050847593,-0.031034482758531,0.100847457627248,-0.025862068965429,0.094915254237398,-0.011864406779653,0.000000000000010,-0.000000000000046,-0.010344827586213,0.000000000000044,0.010344827586214,0.011864406779656,-0.000000000000011,2 +10786,10844,10846,10904,-0.036206896551632,0.106779661017094,-0.031034482758531,0.100847457627248,-0.031034482758520,0.112711864406898,-0.025862068965418,0.106779661017051,-0.011864406779649,0.000000000000010,-0.000000000000044,-0.010344827586214,0.000000000000042,0.010344827586215,0.011864406779651,-0.000000000000011,2 +10787,10845,10847,10905,-0.036206896551622,0.118644067796746,-0.031034482758520,0.112711864406898,-0.031034482758510,0.124576271186553,-0.025862068965407,0.118644067796705,-0.011864406779654,0.000000000000010,-0.000000000000042,-0.010344827586215,0.000000000000039,0.010344827586216,0.011864406779656,-0.000000000000011,2 +10788,10846,10848,10906,-0.036206896551612,0.130508474576401,-0.031034482758510,0.124576271186553,-0.031034482758499,0.136440677966210,-0.025862068965396,0.130508474576362,-0.011864406779656,0.000000000000010,-0.000000000000039,-0.010344827586216,0.000000000000038,0.010344827586216,0.011864406779658,-0.000000000000011,2 +10789,10847,10849,10907,-0.036206896551602,0.142372881356055,-0.031034482758499,0.136440677966210,-0.031034482758489,0.148305084745864,-0.025862068965386,0.142372881356018,-0.011864406779653,0.000000000000010,-0.000000000000038,-0.010344827586216,0.000000000000035,0.010344827586217,0.011864406779655,-0.000000000000011,2 +10790,10848,10850,10908,-0.036206896551592,0.154237288135704,-0.031034482758489,0.148305084745864,-0.031034482758478,0.160169491525509,-0.025862068965375,0.154237288135669,-0.011864406779644,0.000000000000010,-0.000000000000035,-0.010344827586217,0.000000000000034,0.010344827586218,0.011864406779646,-0.000000000000011,2 +10791,10849,10851,10909,-0.036206896551582,0.166101694915350,-0.031034482758478,0.160169491525509,-0.031034482758468,0.172033898305158,-0.025862068965364,0.166101694915317,-0.011864406779648,0.000000000000010,-0.000000000000034,-0.010344827586218,0.000000000000032,0.010344827586219,0.011864406779650,-0.000000000000011,2 +10792,10850,10852,10910,-0.036206896551572,0.177966101695003,-0.031034482758468,0.172033898305158,-0.031034482758457,0.183898305084817,-0.025862068965353,0.177966101694972,-0.011864406779657,0.000000000000010,-0.000000000000032,-0.010344827586219,0.000000000000029,0.010344827586220,0.011864406779660,-0.000000000000011,2 +10793,10851,10853,10911,-0.036206896551562,0.189830508474653,-0.031034482758457,0.183898305084817,-0.031034482758447,0.195762711864462,-0.025862068965342,0.189830508474625,-0.011864406779645,0.000000000000010,-0.000000000000029,-0.010344827586220,0.000000000000027,0.010344827586221,0.011864406779646,-0.000000000000011,2 +10794,10852,10854,10912,-0.036206896551552,0.201694915254306,-0.031034482758447,0.195762711864462,-0.031034482758436,0.207627118644124,-0.025862068965331,0.201694915254280,-0.011864406779661,0.000000000000010,-0.000000000000027,-0.010344827586221,0.000000000000024,0.010344827586222,0.011864406779664,-0.000000000000011,2 +10795,10853,10855,10913,-0.036206896551542,0.213559322033961,-0.031034482758436,0.207627118644124,-0.031034482758426,0.219491525423774,-0.025862068965320,0.213559322033937,-0.011864406779649,0.000000000000010,-0.000000000000024,-0.010344827586222,0.000000000000023,0.010344827586223,0.011864406779650,-0.000000000000011,2 +10796,10854,10856,10914,-0.036206896551532,0.225423728813614,-0.031034482758426,0.219491525423774,-0.031034482758415,0.231355932203433,-0.025862068965309,0.225423728813592,-0.011864406779658,0.000000000000010,-0.000000000000023,-0.010344827586223,0.000000000000020,0.010344827586224,0.011864406779661,-0.000000000000011,2 +10797,10855,10857,10915,-0.036206896551522,0.237288135593271,-0.031034482758415,0.231355932203433,-0.031034482758405,0.243220338983089,-0.025862068965298,0.237288135593251,-0.011864406779655,0.000000000000010,-0.000000000000020,-0.010344827586224,0.000000000000019,0.010344827586225,0.011864406779657,-0.000000000000011,2 +10798,10856,10858,10916,-0.036206896551512,0.249152542372922,-0.031034482758405,0.243220338983089,-0.031034482758395,0.255084745762737,-0.025862068965287,0.249152542372904,-0.011864406779647,0.000000000000010,-0.000000000000019,-0.010344827586225,0.000000000000016,0.010344827586226,0.011864406779650,-0.000000000000011,2 +10799,10857,10859,10917,-0.036206896551502,0.261016949152572,-0.031034482758395,0.255084745762737,-0.031034482758384,0.266949152542391,-0.025862068965276,0.261016949152557,-0.011864406779652,0.000000000000010,-0.000000000000016,-0.010344827586226,0.000000000000014,0.010344827586227,0.011864406779655,-0.000000000000011,2 +10800,10858,10860,10918,-0.036206896551492,0.272881355932224,-0.031034482758384,0.266949152542391,-0.031034482758374,0.278813559322044,-0.025862068965265,0.272881355932211,-0.011864406779652,0.000000000000010,-0.000000000000014,-0.010344827586227,0.000000000000012,0.010344827586228,0.011864406779654,-0.000000000000011,2 +10801,10859,10861,10919,-0.036206896551482,0.284745762711881,-0.031034482758374,0.278813559322044,-0.031034482758363,0.290677966101707,-0.025862068965254,0.284745762711870,-0.011864406779662,0.000000000000010,-0.000000000000012,-0.010344827586228,0.000000000000009,0.010344827586228,0.011864406779665,-0.000000000000011,2 +10802,10860,10862,10920,-0.036206896551472,0.296610169491540,-0.031034482758363,0.290677966101707,-0.031034482758353,0.302542372881365,-0.025862068965243,0.296610169491532,-0.011864406779657,0.000000000000010,-0.000000000000009,-0.010344827586228,0.000000000000008,0.010344827586229,0.011864406779658,-0.000000000000011,2 +10803,10861,10863,10921,-0.036206896551462,0.308474576271197,-0.031034482758353,0.302542372881365,-0.031034482758342,0.314406779661023,-0.025862068965232,0.308474576271190,-0.011864406779657,0.000000000000010,-0.000000000000008,-0.010344827586229,0.000000000000006,0.010344827586230,0.011864406779659,-0.000000000000011,2 +10804,10862,10864,10922,-0.036206896551452,0.320338983050856,-0.031034482758342,0.314406779661023,-0.031034482758332,0.326271186440683,-0.025862068965221,0.320338983050851,-0.011864406779660,0.000000000000010,-0.000000000000006,-0.010344827586230,0.000000000000004,0.010344827586231,0.011864406779661,-0.000000000000011,2 +10805,10863,10865,10923,-0.036206896551442,0.332203389830512,-0.031034482758332,0.326271186440683,-0.031034482758321,0.338135593220338,-0.025862068965211,0.332203389830509,-0.011864406779654,0.000000000000010,-0.000000000000004,-0.010344827586231,0.000000000000002,0.010344827586232,0.011864406779656,-0.000000000000011,2 +7932,10806,10864,10924,-0.031034482758311,0.350000000000000,-0.036206896551432,0.344067796610170,-0.031034482758321,0.338135593220338,-0.025862068965200,0.344067796610168,-0.000000000000000,0.010344827586233,-0.011864406779661,0.000000000000010,-0.000000000000002,-0.010344827586232,0.011864406779663,-0.000000000000011,2 +8938,10807,10867,10925,-0.020689655172751,-0.350000000000000,-0.025862068965834,-0.344067796610163,-0.020689655172739,-0.338135593220327,-0.015517241379656,-0.344067796610164,-0.000000000000000,-0.010344827586177,-0.011864406779674,0.000000000000011,0.000000000000002,0.010344827586178,0.011864406779671,-0.000000000000012,2 +10808,10866,10868,10926,-0.025862068965823,-0.332203389830493,-0.020689655172739,-0.338135593220327,-0.020689655172728,-0.326271186440662,-0.015517241379644,-0.332203389830496,-0.011864406779666,0.000000000000011,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779664,-0.000000000000012,2 +10809,10867,10869,10927,-0.025862068965812,-0.320338983050826,-0.020689655172728,-0.326271186440662,-0.020689655172716,-0.314406779660995,-0.015517241379632,-0.320338983050831,-0.011864406779668,0.000000000000011,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779667,-0.000000000000012,2 +10810,10868,10870,10928,-0.025862068965801,-0.308474576271155,-0.020689655172716,-0.314406779660995,-0.020689655172705,-0.302542372881323,-0.015517241379620,-0.308474576271162,-0.011864406779673,0.000000000000011,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779670,-0.000000000000012,2 +10811,10869,10871,10929,-0.025862068965790,-0.296610169491487,-0.020689655172705,-0.302542372881323,-0.020689655172694,-0.290677966101661,-0.015517241379608,-0.296610169491496,-0.011864406779662,0.000000000000011,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779662,-0.000000000000012,2 +10812,10870,10872,10930,-0.025862068965779,-0.284745762711816,-0.020689655172694,-0.290677966101661,-0.020689655172682,-0.278813559321982,-0.015517241379596,-0.284745762711827,-0.011864406779680,0.000000000000011,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779677,-0.000000000000012,2 +10813,10871,10873,10931,-0.025862068965768,-0.272881355932146,-0.020689655172682,-0.278813559321982,-0.020689655172671,-0.266949152542323,-0.015517241379584,-0.272881355932159,-0.011864406779659,0.000000000000011,-0.000000000000012,-0.010344827586183,0.000000000000014,0.010344827586184,0.011864406779658,-0.000000000000012,2 +10814,10872,10874,10932,-0.025862068965757,-0.261016949152482,-0.020689655172671,-0.266949152542323,-0.020689655172659,-0.255084745762656,-0.015517241379573,-0.261016949152497,-0.011864406779669,0.000000000000011,-0.000000000000014,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779666,-0.000000000000012,2 +10815,10873,10875,10933,-0.025862068965746,-0.249152542372817,-0.020689655172659,-0.255084745762656,-0.020689655172648,-0.243220338982996,-0.015517241379561,-0.249152542372835,-0.011864406779661,0.000000000000011,-0.000000000000016,-0.010344827586185,0.000000000000019,0.010344827586186,0.011864406779658,-0.000000000000012,2 +10816,10874,10876,10934,-0.025862068965735,-0.237288135593153,-0.020689655172648,-0.243220338982996,-0.020689655172636,-0.231355932203331,-0.015517241379549,-0.237288135593173,-0.011864406779666,0.000000000000011,-0.000000000000019,-0.010344827586186,0.000000000000020,0.010344827586187,0.011864406779665,-0.000000000000012,2 +10817,10875,10877,10935,-0.025862068965725,-0.225423728813484,-0.020689655172636,-0.231355932203331,-0.020689655172625,-0.219491525423659,-0.015517241379537,-0.225423728813506,-0.011864406779673,0.000000000000011,-0.000000000000020,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779670,-0.000000000000012,2 +10818,10876,10878,10936,-0.025862068965714,-0.213559322033819,-0.020689655172625,-0.219491525423659,-0.020689655172613,-0.207627118644003,-0.015517241379525,-0.213559322033843,-0.011864406779657,0.000000000000011,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779656,-0.000000000000012,2 +10819,10877,10879,10937,-0.025862068965703,-0.201694915254151,-0.020689655172613,-0.207627118644003,-0.020689655172602,-0.195762711864325,-0.015517241379513,-0.201694915254177,-0.011864406779679,0.000000000000011,-0.000000000000024,-0.010344827586189,0.000000000000027,0.010344827586190,0.011864406779676,-0.000000000000012,2 +10820,10878,10880,10938,-0.025862068965692,-0.189830508474484,-0.020689655172602,-0.195762711864325,-0.020689655172591,-0.183898305084671,-0.015517241379501,-0.189830508474512,-0.011864406779654,0.000000000000011,-0.000000000000027,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779653,-0.000000000000012,2 +10821,10879,10881,10939,-0.025862068965681,-0.177966101694820,-0.020689655172591,-0.183898305084671,-0.020689655172579,-0.172033898304999,-0.015517241379489,-0.177966101694850,-0.011864406779674,0.000000000000011,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779671,-0.000000000000012,2 +10822,10880,10882,10940,-0.025862068965670,-0.166101694915153,-0.020689655172579,-0.172033898304999,-0.020689655172568,-0.160169491525340,-0.015517241379477,-0.166101694915186,-0.011864406779660,0.000000000000011,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779658,-0.000000000000012,2 +10823,10881,10883,10941,-0.025862068965659,-0.154237288135496,-0.020689655172568,-0.160169491525340,-0.020689655172556,-0.148305084745687,-0.015517241379465,-0.154237288135531,-0.011864406779654,0.000000000000011,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779653,-0.000000000000012,2 +10824,10882,10884,10942,-0.025862068965648,-0.142372881355835,-0.020689655172556,-0.148305084745687,-0.020689655172545,-0.136440677966021,-0.015517241379453,-0.142372881355872,-0.011864406779667,0.000000000000011,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779665,-0.000000000000012,2 +10825,10883,10885,10943,-0.025862068965637,-0.130508474576169,-0.020689655172545,-0.136440677966021,-0.020689655172533,-0.124576271186355,-0.015517241379441,-0.130508474576207,-0.011864406779666,0.000000000000011,-0.000000000000038,-0.010344827586195,0.000000000000039,0.010344827586196,0.011864406779665,-0.000000000000012,2 +10826,10884,10886,10944,-0.025862068965626,-0.118644067796501,-0.020689655172533,-0.124576271186355,-0.020689655172522,-0.112711864406688,-0.015517241379429,-0.118644067796542,-0.011864406779668,0.000000000000011,-0.000000000000039,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779666,-0.000000000000012,2 +10827,10885,10887,10945,-0.025862068965615,-0.106779661016837,-0.020689655172522,-0.112711864406688,-0.020689655172511,-0.100847457627028,-0.015517241379417,-0.106779661016879,-0.011864406779662,0.000000000000011,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779660,-0.000000000000012,2 +10828,10886,10888,10946,-0.025862068965604,-0.094915254237172,-0.020689655172511,-0.100847457627028,-0.020689655172499,-0.088983050847361,-0.015517241379406,-0.094915254237217,-0.011864406779668,0.000000000000011,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779666,-0.000000000000012,2 +10829,10887,10889,10947,-0.025862068965593,-0.083050847457504,-0.020689655172499,-0.088983050847361,-0.020689655172488,-0.077118644067694,-0.015517241379394,-0.083050847457551,-0.011864406779668,0.000000000000011,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779666,-0.000000000000012,2 +10830,10888,10890,10948,-0.025862068965582,-0.071186440677839,-0.020689655172488,-0.077118644067694,-0.020689655172476,-0.065254237288033,-0.015517241379382,-0.071186440677889,-0.011864406779662,0.000000000000011,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779660,-0.000000000000012,2 +10831,10889,10891,10949,-0.025862068965571,-0.059322033898174,-0.020689655172476,-0.065254237288033,-0.020689655172465,-0.053389830508367,-0.015517241379370,-0.059322033898226,-0.011864406779668,0.000000000000011,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779666,-0.000000000000012,2 +10832,10890,10892,10950,-0.025862068965561,-0.047457627118507,-0.020689655172465,-0.053389830508367,-0.020689655172453,-0.041525423728702,-0.015517241379358,-0.047457627118562,-0.011864406779665,0.000000000000011,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779663,-0.000000000000012,2 +10833,10891,10893,10951,-0.025862068965550,-0.035593220338842,-0.020689655172453,-0.041525423728702,-0.020689655172442,-0.029661016949039,-0.015517241379346,-0.035593220338899,-0.011864406779664,0.000000000000011,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779662,-0.000000000000012,2 +10834,10892,10894,10952,-0.025862068965539,-0.023728813559176,-0.020689655172442,-0.029661016949039,-0.020689655172431,-0.017796610169372,-0.015517241379334,-0.023728813559235,-0.011864406779668,0.000000000000011,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586205,0.011864406779666,-0.000000000000012,2 +10835,10893,10895,10953,-0.025862068965528,-0.011864406779511,-0.020689655172431,-0.017796610169372,-0.020689655172419,-0.005932203389712,-0.015517241379322,-0.011864406779573,-0.011864406779662,0.000000000000011,-0.000000000000060,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779660,-0.000000000000012,2 +10836,10894,10896,10954,-0.025862068965517,0.000000000000156,-0.020689655172419,-0.005932203389712,-0.020689655172408,0.005932203389961,-0.015517241379310,0.000000000000094,-0.011864406779673,0.000000000000011,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000012,2 +10837,10895,10897,10955,-0.025862068965506,0.011864406779818,-0.020689655172408,0.005932203389961,-0.020689655172396,0.017796610169613,-0.015517241379298,0.011864406779757,-0.011864406779651,0.000000000000011,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586208,0.011864406779653,-0.000000000000012,2 +10838,10896,10898,10956,-0.025862068965495,0.023728813559472,-0.020689655172396,0.017796610169613,-0.020689655172385,0.029661016949271,-0.015517241379286,0.023728813559413,-0.011864406779656,0.000000000000011,-0.000000000000060,-0.010344827586208,0.000000000000058,0.010344827586209,0.011864406779658,-0.000000000000012,2 +10839,10897,10899,10957,-0.025862068965484,0.035593220339126,-0.020689655172385,0.029661016949271,-0.020689655172373,0.041525423728925,-0.015517241379274,0.035593220339069,-0.011864406779653,0.000000000000011,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779655,-0.000000000000012,2 +10840,10898,10900,10958,-0.025862068965473,0.047457627118780,-0.020689655172373,0.041525423728925,-0.020689655172362,0.053389830508580,-0.015517241379262,0.047457627118725,-0.011864406779654,0.000000000000011,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586211,0.011864406779656,-0.000000000000012,2 +10841,10899,10901,10959,-0.025862068965462,0.059322033898435,-0.020689655172362,0.053389830508580,-0.020689655172351,0.065254237288237,-0.015517241379250,0.059322033898383,-0.011864406779656,0.000000000000011,-0.000000000000053,-0.010344827586211,0.000000000000051,0.010344827586212,0.011864406779658,-0.000000000000012,2 +10842,10900,10902,10960,-0.025862068965451,0.071186440678088,-0.020689655172351,0.065254237288237,-0.020689655172339,0.077118644067890,-0.015517241379238,0.071186440678038,-0.011864406779651,0.000000000000011,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586213,0.011864406779653,-0.000000000000012,2 +10843,10901,10903,10961,-0.025862068965440,0.083050847457742,-0.020689655172339,0.077118644067890,-0.020689655172328,0.088983050847547,-0.015517241379227,0.083050847457694,-0.011864406779656,0.000000000000011,-0.000000000000049,-0.010344827586213,0.000000000000046,0.010344827586214,0.011864406779658,-0.000000000000012,2 +10844,10902,10904,10962,-0.025862068965429,0.094915254237398,-0.020689655172328,0.088983050847547,-0.020689655172316,0.100847457627204,-0.015517241379215,0.094915254237353,-0.011864406779656,0.000000000000011,-0.000000000000046,-0.010344827586214,0.000000000000044,0.010344827586215,0.011864406779658,-0.000000000000012,2 +10845,10903,10905,10963,-0.025862068965418,0.106779661017051,-0.020689655172316,0.100847457627204,-0.020689655172305,0.112711864406856,-0.015517241379203,0.106779661017008,-0.011864406779651,0.000000000000011,-0.000000000000044,-0.010344827586215,0.000000000000042,0.010344827586216,0.011864406779653,-0.000000000000012,2 +10846,10904,10906,10964,-0.025862068965407,0.118644067796705,-0.020689655172305,0.112711864406856,-0.020689655172293,0.124576271186513,-0.015517241379191,0.118644067796664,-0.011864406779656,0.000000000000011,-0.000000000000042,-0.010344827586216,0.000000000000039,0.010344827586217,0.011864406779658,-0.000000000000012,2 +10847,10905,10907,10965,-0.025862068965396,0.130508474576362,-0.020689655172293,0.124576271186513,-0.020689655172282,0.136440677966172,-0.015517241379179,0.130508474576323,-0.011864406779658,0.000000000000011,-0.000000000000039,-0.010344827586217,0.000000000000038,0.010344827586218,0.011864406779659,-0.000000000000012,2 +10848,10906,10908,10966,-0.025862068965386,0.142372881356018,-0.020689655172282,0.136440677966172,-0.020689655172271,0.148305084745828,-0.015517241379167,0.142372881355982,-0.011864406779655,0.000000000000011,-0.000000000000038,-0.010344827586218,0.000000000000035,0.010344827586219,0.011864406779658,-0.000000000000012,2 +10849,10907,10909,10967,-0.025862068965375,0.154237288135669,-0.020689655172271,0.148305084745828,-0.020689655172259,0.160169491525475,-0.015517241379155,0.154237288135635,-0.011864406779646,0.000000000000011,-0.000000000000035,-0.010344827586219,0.000000000000034,0.010344827586220,0.011864406779648,-0.000000000000012,2 +10850,10908,10910,10968,-0.025862068965364,0.166101694915317,-0.020689655172259,0.160169491525475,-0.020689655172248,0.172033898305126,-0.015517241379143,0.166101694915284,-0.011864406779650,0.000000000000011,-0.000000000000034,-0.010344827586220,0.000000000000032,0.010344827586221,0.011864406779652,-0.000000000000012,2 +10851,10909,10911,10969,-0.025862068965353,0.177966101694972,-0.020689655172248,0.172033898305126,-0.020689655172236,0.183898305084788,-0.015517241379131,0.177966101694942,-0.011864406779660,0.000000000000011,-0.000000000000032,-0.010344827586221,0.000000000000029,0.010344827586222,0.011864406779663,-0.000000000000012,2 +10852,10910,10912,10970,-0.025862068965342,0.189830508474625,-0.020689655172236,0.183898305084788,-0.020689655172225,0.195762711864435,-0.015517241379119,0.189830508474597,-0.011864406779646,0.000000000000011,-0.000000000000029,-0.010344827586222,0.000000000000028,0.010344827586223,0.011864406779648,-0.000000000000012,2 +10853,10911,10913,10971,-0.025862068965331,0.201694915254280,-0.020689655172225,0.195762711864435,-0.020689655172213,0.207627118644100,-0.015517241379107,0.201694915254254,-0.011864406779664,0.000000000000011,-0.000000000000028,-0.010344827586223,0.000000000000024,0.010344827586224,0.011864406779667,-0.000000000000012,2 +10854,10912,10914,10972,-0.025862068965320,0.213559322033937,-0.020689655172213,0.207627118644100,-0.020689655172202,0.219491525423751,-0.015517241379095,0.213559322033913,-0.011864406779650,0.000000000000011,-0.000000000000024,-0.010344827586224,0.000000000000023,0.010344827586225,0.011864406779652,-0.000000000000012,2 +10855,10913,10915,10973,-0.025862068965309,0.225423728813592,-0.020689655172202,0.219491525423751,-0.020689655172190,0.231355932203412,-0.015517241379083,0.225423728813571,-0.011864406779661,0.000000000000011,-0.000000000000023,-0.010344827586225,0.000000000000021,0.010344827586226,0.011864406779663,-0.000000000000012,2 +10856,10914,10916,10974,-0.025862068965298,0.237288135593251,-0.020689655172190,0.231355932203412,-0.020689655172179,0.243220338983070,-0.015517241379071,0.237288135593232,-0.011864406779657,0.000000000000011,-0.000000000000021,-0.010344827586226,0.000000000000019,0.010344827586227,0.011864406779659,-0.000000000000012,2 +10857,10915,10917,10975,-0.025862068965287,0.249152542372904,-0.020689655172179,0.243220338983070,-0.020689655172168,0.255084745762721,-0.015517241379060,0.249152542372887,-0.011864406779650,0.000000000000011,-0.000000000000019,-0.010344827586227,0.000000000000016,0.010344827586228,0.011864406779652,-0.000000000000012,2 +10858,10916,10918,10976,-0.025862068965276,0.261016949152557,-0.020689655172168,0.255084745762721,-0.020689655172156,0.266949152542377,-0.015517241379048,0.261016949152542,-0.011864406779655,0.000000000000011,-0.000000000000016,-0.010344827586228,0.000000000000014,0.010344827586229,0.011864406779658,-0.000000000000012,2 +10859,10917,10919,10977,-0.025862068965265,0.272881355932211,-0.020689655172156,0.266949152542377,-0.020689655172145,0.278813559322032,-0.015517241379036,0.272881355932198,-0.011864406779654,0.000000000000011,-0.000000000000014,-0.010344827586229,0.000000000000012,0.010344827586230,0.011864406779655,-0.000000000000012,2 +10860,10918,10920,10978,-0.025862068965254,0.284745762711870,-0.020689655172145,0.278813559322032,-0.020689655172133,0.290677966101698,-0.015517241379024,0.284745762711859,-0.011864406779665,0.000000000000011,-0.000000000000012,-0.010344827586230,0.000000000000009,0.010344827586231,0.011864406779668,-0.000000000000012,2 +10861,10919,10921,10979,-0.025862068965243,0.296610169491532,-0.020689655172133,0.290677966101698,-0.020689655172122,0.302542372881356,-0.015517241379012,0.296610169491523,-0.011864406779658,0.000000000000011,-0.000000000000009,-0.010344827586231,0.000000000000008,0.010344827586232,0.011864406779659,-0.000000000000012,2 +10862,10920,10922,10980,-0.025862068965232,0.308474576271190,-0.020689655172122,0.302542372881356,-0.020689655172110,0.314406779661017,-0.015517241379000,0.308474576271183,-0.011864406779659,0.000000000000011,-0.000000000000008,-0.010344827586232,0.000000000000006,0.010344827586233,0.011864406779662,-0.000000000000012,2 +10863,10921,10923,10981,-0.025862068965221,0.320338983050851,-0.020689655172110,0.314406779661017,-0.020689655172099,0.326271186440679,-0.015517241378988,0.320338983050846,-0.011864406779661,0.000000000000011,-0.000000000000006,-0.010344827586233,0.000000000000004,0.010344827586234,0.011864406779663,-0.000000000000012,2 +10864,10922,10924,10982,-0.025862068965211,0.332203389830509,-0.020689655172099,0.326271186440679,-0.020689655172088,0.338135593220336,-0.015517241378976,0.332203389830506,-0.011864406779656,0.000000000000011,-0.000000000000004,-0.010344827586234,0.000000000000002,0.010344827586235,0.011864406779658,-0.000000000000012,2 +7918,10865,10923,10983,-0.020689655172076,0.350000000000000,-0.025862068965200,0.344067796610168,-0.020689655172088,0.338135593220336,-0.015517241378964,0.344067796610167,-0.000000000000000,0.010344827586236,-0.011864406779663,0.000000000000011,-0.000000000000002,-0.010344827586235,0.011864406779665,-0.000000000000012,2 +8939,10866,10926,10984,-0.010344827586573,-0.350000000000000,-0.015517241379656,-0.344067796610164,-0.010344827586561,-0.338135593220329,-0.005172413793478,-0.344067796610165,-0.000000000000000,-0.010344827586177,-0.011864406779671,0.000000000000012,0.000000000000002,0.010344827586178,0.011864406779669,-0.000000000000013,2 +10867,10925,10927,10985,-0.015517241379644,-0.332203389830496,-0.010344827586561,-0.338135593220329,-0.010344827586548,-0.326271186440666,-0.005172413793465,-0.332203389830499,-0.011864406779664,0.000000000000012,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779662,-0.000000000000013,2 +10868,10926,10928,10986,-0.015517241379632,-0.320338983050831,-0.010344827586548,-0.326271186440666,-0.010344827586536,-0.314406779661000,-0.005172413793452,-0.320338983050836,-0.011864406779667,0.000000000000012,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779665,-0.000000000000013,2 +10869,10927,10929,10987,-0.015517241379620,-0.308474576271162,-0.010344827586536,-0.314406779661000,-0.010344827586524,-0.302542372881331,-0.005172413793439,-0.308474576271169,-0.011864406779670,0.000000000000012,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779668,-0.000000000000013,2 +10870,10928,10930,10988,-0.015517241379608,-0.296610169491496,-0.010344827586524,-0.302542372881331,-0.010344827586511,-0.290677966101670,-0.005172413793427,-0.296610169491505,-0.011864406779662,0.000000000000012,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779661,-0.000000000000013,2 +10871,10929,10931,10989,-0.015517241379596,-0.284745762711827,-0.010344827586511,-0.290677966101670,-0.010344827586499,-0.278813559321994,-0.005172413793414,-0.284745762711838,-0.011864406779677,0.000000000000012,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779674,-0.000000000000013,2 +10872,10930,10932,10990,-0.015517241379584,-0.272881355932159,-0.010344827586499,-0.278813559321994,-0.010344827586486,-0.266949152542337,-0.005172413793401,-0.272881355932172,-0.011864406779658,0.000000000000012,-0.000000000000012,-0.010344827586183,0.000000000000013,0.010344827586184,0.011864406779657,-0.000000000000013,2 +10873,10931,10933,10991,-0.015517241379573,-0.261016949152497,-0.010344827586486,-0.266949152542337,-0.010344827586474,-0.255084745762672,-0.005172413793388,-0.261016949152512,-0.011864406779666,0.000000000000012,-0.000000000000013,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779663,-0.000000000000013,2 +10874,10932,10934,10992,-0.015517241379561,-0.249152542372835,-0.010344827586474,-0.255084745762672,-0.010344827586461,-0.243220338983015,-0.005172413793375,-0.249152542372852,-0.011864406779658,0.000000000000012,-0.000000000000016,-0.010344827586185,0.000000000000019,0.010344827586186,0.011864406779656,-0.000000000000013,2 +10875,10933,10935,10993,-0.015517241379549,-0.237288135593173,-0.010344827586461,-0.243220338983015,-0.010344827586449,-0.231355932203351,-0.005172413793362,-0.237288135593193,-0.011864406779665,0.000000000000012,-0.000000000000019,-0.010344827586186,0.000000000000021,0.010344827586187,0.011864406779663,-0.000000000000013,2 +10876,10934,10936,10994,-0.015517241379537,-0.225423728813506,-0.010344827586449,-0.231355932203351,-0.010344827586437,-0.219491525423682,-0.005172413793349,-0.225423728813527,-0.011864406779670,0.000000000000012,-0.000000000000021,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779668,-0.000000000000013,2 +10877,10935,10937,10995,-0.015517241379525,-0.213559322033843,-0.010344827586437,-0.219491525423682,-0.010344827586424,-0.207627118644027,-0.005172413793336,-0.213559322033866,-0.011864406779656,0.000000000000012,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779654,-0.000000000000013,2 +10878,10936,10938,10996,-0.015517241379513,-0.201694915254177,-0.010344827586424,-0.207627118644027,-0.010344827586412,-0.195762711864352,-0.005172413793323,-0.201694915254202,-0.011864406779676,0.000000000000012,-0.000000000000024,-0.010344827586189,0.000000000000028,0.010344827586190,0.011864406779673,-0.000000000000013,2 +10879,10937,10939,10997,-0.015517241379501,-0.189830508474512,-0.010344827586412,-0.195762711864352,-0.010344827586399,-0.183898305084700,-0.005172413793310,-0.189830508474540,-0.011864406779653,0.000000000000012,-0.000000000000028,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779651,-0.000000000000013,2 +10880,10938,10940,10998,-0.015517241379489,-0.177966101694850,-0.010344827586399,-0.183898305084700,-0.010344827586387,-0.172033898305031,-0.005172413793297,-0.177966101694881,-0.011864406779671,0.000000000000012,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779668,-0.000000000000013,2 +10881,10939,10941,10999,-0.015517241379477,-0.166101694915186,-0.010344827586387,-0.172033898305031,-0.010344827586374,-0.160169491525374,-0.005172413793284,-0.166101694915219,-0.011864406779658,0.000000000000012,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779656,-0.000000000000013,2 +10882,10940,10942,11000,-0.015517241379465,-0.154237288135531,-0.010344827586374,-0.160169491525374,-0.010344827586362,-0.148305084745722,-0.005172413793271,-0.154237288135565,-0.011864406779653,0.000000000000012,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779651,-0.000000000000013,2 +10883,10941,10943,11001,-0.015517241379453,-0.142372881355872,-0.010344827586362,-0.148305084745722,-0.010344827586350,-0.136440677966058,-0.005172413793258,-0.142372881355909,-0.011864406779665,0.000000000000012,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779662,-0.000000000000013,2 +10884,10942,10944,11002,-0.015517241379441,-0.130508474576207,-0.010344827586350,-0.136440677966058,-0.010344827586337,-0.124576271186395,-0.005172413793246,-0.130508474576246,-0.011864406779665,0.000000000000012,-0.000000000000038,-0.010344827586195,0.000000000000040,0.010344827586196,0.011864406779663,-0.000000000000013,2 +10885,10943,10945,11003,-0.015517241379429,-0.118644067796542,-0.010344827586337,-0.124576271186395,-0.010344827586325,-0.112711864406730,-0.005172413793233,-0.118644067796583,-0.011864406779666,0.000000000000012,-0.000000000000040,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779663,-0.000000000000013,2 +10886,10944,10946,11004,-0.015517241379417,-0.106779661016879,-0.010344827586325,-0.112711864406730,-0.010344827586312,-0.100847457627072,-0.005172413793220,-0.106779661016922,-0.011864406779660,0.000000000000012,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779658,-0.000000000000013,2 +10887,10945,10947,11005,-0.015517241379406,-0.094915254237217,-0.010344827586312,-0.100847457627072,-0.010344827586300,-0.088983050847407,-0.005172413793207,-0.094915254237262,-0.011864406779666,0.000000000000012,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779663,-0.000000000000013,2 +10888,10946,10948,11006,-0.015517241379394,-0.083050847457551,-0.010344827586300,-0.088983050847407,-0.010344827586287,-0.077118644067743,-0.005172413793194,-0.083050847457599,-0.011864406779666,0.000000000000012,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779663,-0.000000000000013,2 +10889,10947,10949,11007,-0.015517241379382,-0.071186440677889,-0.010344827586287,-0.077118644067743,-0.010344827586275,-0.065254237288084,-0.005172413793181,-0.071186440677939,-0.011864406779660,0.000000000000012,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779657,-0.000000000000013,2 +10890,10948,10950,11008,-0.015517241379370,-0.059322033898226,-0.010344827586275,-0.065254237288084,-0.010344827586263,-0.053389830508420,-0.005172413793168,-0.059322033898278,-0.011864406779666,0.000000000000012,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779663,-0.000000000000013,2 +10891,10949,10951,11009,-0.015517241379358,-0.047457627118562,-0.010344827586263,-0.053389830508420,-0.010344827586250,-0.041525423728758,-0.005172413793155,-0.047457627118616,-0.011864406779663,0.000000000000012,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779661,-0.000000000000013,2 +10892,10950,10952,11010,-0.015517241379346,-0.035593220338899,-0.010344827586250,-0.041525423728758,-0.010344827586238,-0.029661016949097,-0.005172413793142,-0.035593220338956,-0.011864406779662,0.000000000000012,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779660,-0.000000000000013,2 +10893,10951,10953,11011,-0.015517241379334,-0.023728813559235,-0.010344827586238,-0.029661016949097,-0.010344827586225,-0.017796610169433,-0.005172413793129,-0.023728813559294,-0.011864406779666,0.000000000000012,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586205,0.011864406779663,-0.000000000000013,2 +10894,10952,10954,11012,-0.015517241379322,-0.011864406779573,-0.010344827586225,-0.017796610169433,-0.010344827586213,-0.005932203389774,-0.005172413793116,-0.011864406779634,-0.011864406779660,0.000000000000012,-0.000000000000060,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779658,-0.000000000000013,2 +10895,10953,10955,11013,-0.015517241379310,0.000000000000094,-0.010344827586213,-0.005932203389774,-0.010344827586201,0.005932203389899,-0.005172413793103,0.000000000000031,-0.011864406779673,0.000000000000012,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000013,2 +10896,10954,10956,11014,-0.015517241379298,0.011864406779757,-0.010344827586201,0.005932203389899,-0.010344827586188,0.017796610169553,-0.005172413793090,0.011864406779695,-0.011864406779653,0.000000000000012,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586208,0.011864406779655,-0.000000000000013,2 +10897,10955,10957,11015,-0.015517241379286,0.023728813559413,-0.010344827586188,0.017796610169553,-0.010344827586176,0.029661016949213,-0.005172413793078,0.023728813559353,-0.011864406779658,0.000000000000012,-0.000000000000060,-0.010344827586208,0.000000000000058,0.010344827586209,0.011864406779661,-0.000000000000013,2 +10898,10956,10958,11016,-0.015517241379274,0.035593220339069,-0.010344827586176,0.029661016949213,-0.010344827586163,0.041525423728869,-0.005172413793065,0.035593220339013,-0.011864406779655,0.000000000000012,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779658,-0.000000000000013,2 +10899,10957,10959,11017,-0.015517241379262,0.047457627118725,-0.010344827586163,0.041525423728869,-0.010344827586151,0.053389830508527,-0.005172413793052,0.047457627118671,-0.011864406779656,0.000000000000012,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586211,0.011864406779659,-0.000000000000013,2 +10900,10958,10960,11018,-0.015517241379250,0.059322033898383,-0.010344827586151,0.053389830508527,-0.010344827586138,0.065254237288186,-0.005172413793039,0.059322033898330,-0.011864406779658,0.000000000000012,-0.000000000000053,-0.010344827586211,0.000000000000051,0.010344827586212,0.011864406779661,-0.000000000000013,2 +10901,10959,10961,11019,-0.015517241379238,0.071186440678038,-0.010344827586138,0.065254237288186,-0.010344827586126,0.077118644067841,-0.005172413793026,0.071186440677989,-0.011864406779653,0.000000000000012,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586213,0.011864406779655,-0.000000000000013,2 +10902,10960,10962,11020,-0.015517241379227,0.083050847457694,-0.010344827586126,0.077118644067841,-0.010344827586113,0.088983050847500,-0.005172413793013,0.083050847457647,-0.011864406779658,0.000000000000012,-0.000000000000049,-0.010344827586213,0.000000000000046,0.010344827586214,0.011864406779661,-0.000000000000013,2 +10903,10961,10963,11021,-0.015517241379215,0.094915254237353,-0.010344827586113,0.088983050847500,-0.010344827586101,0.100847457627160,-0.005172413793000,0.094915254237307,-0.011864406779658,0.000000000000012,-0.000000000000046,-0.010344827586214,0.000000000000044,0.010344827586215,0.011864406779661,-0.000000000000013,2 +10904,10962,10964,11022,-0.015517241379203,0.106779661017008,-0.010344827586101,0.100847457627160,-0.010344827586089,0.112711864406814,-0.005172413792987,0.106779661016965,-0.011864406779653,0.000000000000012,-0.000000000000044,-0.010344827586215,0.000000000000042,0.010344827586216,0.011864406779656,-0.000000000000013,2 +10905,10963,10965,11023,-0.015517241379191,0.118644067796664,-0.010344827586089,0.112711864406814,-0.010344827586076,0.124576271186474,-0.005172413792974,0.118644067796624,-0.011864406779658,0.000000000000012,-0.000000000000042,-0.010344827586216,0.000000000000040,0.010344827586217,0.011864406779661,-0.000000000000013,2 +10906,10964,10966,11024,-0.015517241379179,0.130508474576323,-0.010344827586076,0.124576271186474,-0.010344827586064,0.136440677966134,-0.005172413792961,0.130508474576285,-0.011864406779659,0.000000000000012,-0.000000000000040,-0.010344827586217,0.000000000000038,0.010344827586218,0.011864406779661,-0.000000000000013,2 +10907,10965,10967,11025,-0.015517241379167,0.142372881355982,-0.010344827586064,0.136440677966134,-0.010344827586051,0.148305084745793,-0.005172413792948,0.142372881355945,-0.011864406779658,0.000000000000012,-0.000000000000038,-0.010344827586218,0.000000000000035,0.010344827586219,0.011864406779660,-0.000000000000013,2 +10908,10966,10968,11026,-0.015517241379155,0.154237288135635,-0.010344827586051,0.148305084745793,-0.010344827586039,0.160169491525441,-0.005172413792935,0.154237288135600,-0.011864406779648,0.000000000000012,-0.000000000000035,-0.010344827586219,0.000000000000034,0.010344827586220,0.011864406779649,-0.000000000000013,2 +10909,10967,10969,11027,-0.015517241379143,0.166101694915284,-0.010344827586039,0.160169491525441,-0.010344827586027,0.172033898305095,-0.005172413792922,0.166101694915252,-0.011864406779652,0.000000000000012,-0.000000000000034,-0.010344827586220,0.000000000000032,0.010344827586221,0.011864406779654,-0.000000000000013,2 +10910,10968,10970,11028,-0.015517241379131,0.177966101694942,-0.010344827586027,0.172033898305095,-0.010344827586014,0.183898305084759,-0.005172413792909,0.177966101694911,-0.011864406779663,0.000000000000012,-0.000000000000032,-0.010344827586221,0.000000000000029,0.010344827586222,0.011864406779665,-0.000000000000013,2 +10911,10969,10971,11029,-0.015517241379119,0.189830508474597,-0.010344827586014,0.183898305084759,-0.010344827586002,0.195762711864407,-0.005172413792897,0.189830508474569,-0.011864406779648,0.000000000000012,-0.000000000000029,-0.010344827586222,0.000000000000027,0.010344827586223,0.011864406779650,-0.000000000000013,2 +10912,10970,10972,11030,-0.015517241379107,0.201694915254254,-0.010344827586002,0.195762711864407,-0.010344827585989,0.207627118644076,-0.005172413792884,0.201694915254228,-0.011864406779667,0.000000000000012,-0.000000000000027,-0.010344827586223,0.000000000000024,0.010344827586224,0.011864406779670,-0.000000000000013,2 +10913,10971,10973,11031,-0.015517241379095,0.213559322033913,-0.010344827585989,0.207627118644076,-0.010344827585977,0.219491525423728,-0.005172413792871,0.213559322033890,-0.011864406779652,0.000000000000012,-0.000000000000024,-0.010344827586224,0.000000000000023,0.010344827586225,0.011864406779653,-0.000000000000013,2 +10914,10972,10974,11032,-0.015517241379083,0.225423728813571,-0.010344827585977,0.219491525423728,-0.010344827585964,0.231355932203392,-0.005172413792858,0.225423728813549,-0.011864406779663,0.000000000000012,-0.000000000000023,-0.010344827586225,0.000000000000021,0.010344827586226,0.011864406779665,-0.000000000000013,2 +10915,10973,10975,11033,-0.015517241379071,0.237288135593232,-0.010344827585964,0.231355932203392,-0.010344827585952,0.243220338983052,-0.005172413792845,0.237288135593212,-0.011864406779659,0.000000000000012,-0.000000000000021,-0.010344827586226,0.000000000000019,0.010344827586227,0.011864406779661,-0.000000000000013,2 +10916,10974,10976,11034,-0.015517241379060,0.249152542372887,-0.010344827585952,0.243220338983052,-0.010344827585940,0.255084745762705,-0.005172413792832,0.249152542372870,-0.011864406779652,0.000000000000012,-0.000000000000019,-0.010344827586227,0.000000000000016,0.010344827586228,0.011864406779654,-0.000000000000013,2 +10917,10975,10977,11035,-0.015517241379048,0.261016949152542,-0.010344827585940,0.255084745762705,-0.010344827585927,0.266949152542364,-0.005172413792819,0.261016949152527,-0.011864406779658,0.000000000000012,-0.000000000000016,-0.010344827586228,0.000000000000013,0.010344827586229,0.011864406779660,-0.000000000000013,2 +10918,10976,10978,11036,-0.015517241379036,0.272881355932198,-0.010344827585927,0.266949152542364,-0.010344827585915,0.278813559322019,-0.005172413792806,0.272881355932185,-0.011864406779655,0.000000000000012,-0.000000000000013,-0.010344827586229,0.000000000000012,0.010344827586230,0.011864406779656,-0.000000000000013,2 +10919,10977,10979,11037,-0.015517241379024,0.284745762711859,-0.010344827585915,0.278813559322019,-0.010344827585902,0.290677966101689,-0.005172413792793,0.284745762711848,-0.011864406779668,0.000000000000012,-0.000000000000012,-0.010344827586230,0.000000000000009,0.010344827586231,0.011864406779671,-0.000000000000013,2 +10920,10978,10980,11038,-0.015517241379012,0.296610169491523,-0.010344827585902,0.290677966101689,-0.010344827585890,0.302542372881348,-0.005172413792780,0.296610169491514,-0.011864406779659,0.000000000000012,-0.000000000000009,-0.010344827586231,0.000000000000008,0.010344827586232,0.011864406779660,-0.000000000000013,2 +10921,10979,10981,11039,-0.015517241379000,0.308474576271183,-0.010344827585890,0.302542372881348,-0.010344827585877,0.314406779661012,-0.005172413792767,0.308474576271176,-0.011864406779662,0.000000000000012,-0.000000000000008,-0.010344827586232,0.000000000000006,0.010344827586233,0.011864406779665,-0.000000000000013,2 +10922,10980,10982,11040,-0.015517241378988,0.320338983050846,-0.010344827585877,0.314406779661012,-0.010344827585865,0.326271186440675,-0.005172413792754,0.320338983050841,-0.011864406779663,0.000000000000012,-0.000000000000006,-0.010344827586233,0.000000000000004,0.010344827586234,0.011864406779664,-0.000000000000013,2 +10923,10981,10983,11041,-0.015517241378976,0.332203389830506,-0.010344827585865,0.326271186440675,-0.010344827585853,0.338135593220334,-0.005172413792741,0.332203389830503,-0.011864406779658,0.000000000000012,-0.000000000000004,-0.010344827586234,0.000000000000002,0.010344827586235,0.011864406779660,-0.000000000000013,2 +7904,10924,10982,11042,-0.010344827585840,0.350000000000000,-0.015517241378964,0.344067796610167,-0.010344827585853,0.338135593220334,-0.005172413792729,0.344067796610166,-0.000000000000000,0.010344827586236,-0.011864406779665,0.000000000000012,-0.000000000000002,-0.010344827586235,0.011864406779667,-0.000000000000013,2 +8940,10925,10985,11043,-0.000000000000381,-0.350000000000000,-0.005172413793478,-0.344067796610165,-0.000000000000368,-0.338135593220332,0.005172413792729,-0.344067796610166,-0.000000000000000,-0.010344827586207,-0.011864406779669,0.000000000000013,0.000000000000002,0.010344827586207,0.011864406779667,-0.000000000000013,2 +10926,10984,10986,11044,-0.005172413793465,-0.332203389830499,-0.000000000000368,-0.338135593220332,-0.000000000000355,-0.326271186440671,0.005172413792741,-0.332203389830503,-0.011864406779662,0.000000000000013,-0.000000000000002,-0.010344827586207,0.000000000000004,0.010344827586207,0.011864406779660,-0.000000000000013,2 +10927,10985,10987,11045,-0.005172413793452,-0.320338983050836,-0.000000000000355,-0.326271186440671,-0.000000000000343,-0.314406779661006,0.005172413792754,-0.320338983050841,-0.011864406779665,0.000000000000013,-0.000000000000004,-0.010344827586207,0.000000000000006,0.010344827586207,0.011864406779664,-0.000000000000013,2 +10928,10986,10988,11046,-0.005172413793439,-0.308474576271169,-0.000000000000343,-0.314406779661006,-0.000000000000330,-0.302542372881340,0.005172413792767,-0.308474576271176,-0.011864406779668,0.000000000000013,-0.000000000000006,-0.010344827586207,0.000000000000008,0.010344827586207,0.011864406779665,-0.000000000000013,2 +10929,10987,10989,11047,-0.005172413793427,-0.296610169491505,-0.000000000000330,-0.302542372881340,-0.000000000000317,-0.290677966101679,0.005172413792780,-0.296610169491514,-0.011864406779661,0.000000000000013,-0.000000000000008,-0.010344827586207,0.000000000000009,0.010344827586207,0.011864406779660,-0.000000000000013,2 +10930,10988,10990,11048,-0.005172413793414,-0.284745762711838,-0.000000000000317,-0.290677966101679,-0.000000000000304,-0.278813559322007,0.005172413792793,-0.284745762711848,-0.011864406779674,0.000000000000013,-0.000000000000009,-0.010344827586207,0.000000000000012,0.010344827586207,0.011864406779671,-0.000000000000013,2 +10931,10989,10991,11049,-0.005172413793401,-0.272881355932172,-0.000000000000304,-0.278813559322007,-0.000000000000291,-0.266949152542350,0.005172413792806,-0.272881355932185,-0.011864406779657,0.000000000000013,-0.000000000000012,-0.010344827586207,0.000000000000014,0.010344827586207,0.011864406779656,-0.000000000000013,2 +10932,10990,10992,11050,-0.005172413793388,-0.261016949152512,-0.000000000000291,-0.266949152542350,-0.000000000000278,-0.255084745762688,0.005172413792819,-0.261016949152527,-0.011864406779663,0.000000000000013,-0.000000000000014,-0.010344827586207,0.000000000000017,0.010344827586207,0.011864406779660,-0.000000000000013,2 +10933,10991,10993,11051,-0.005172413793375,-0.249152542372852,-0.000000000000278,-0.255084745762688,-0.000000000000265,-0.243220338983033,0.005172413792832,-0.249152542372869,-0.011864406779656,0.000000000000013,-0.000000000000017,-0.010344827586207,0.000000000000019,0.010344827586207,0.011864406779654,-0.000000000000013,2 +10934,10992,10994,11052,-0.005172413793362,-0.237288135593193,-0.000000000000265,-0.243220338983033,-0.000000000000252,-0.231355932203372,0.005172413792845,-0.237288135593212,-0.011864406779663,0.000000000000013,-0.000000000000019,-0.010344827586207,0.000000000000021,0.010344827586207,0.011864406779661,-0.000000000000013,2 +10935,10993,10995,11053,-0.005172413793349,-0.225423728813527,-0.000000000000252,-0.231355932203372,-0.000000000000239,-0.219491525423705,0.005172413792858,-0.225423728813549,-0.011864406779668,0.000000000000013,-0.000000000000021,-0.010344827586207,0.000000000000023,0.010344827586207,0.011864406779666,-0.000000000000013,2 +10936,10994,10996,11054,-0.005172413793336,-0.213559322033866,-0.000000000000239,-0.219491525423705,-0.000000000000226,-0.207627118644051,0.005172413792871,-0.213559322033890,-0.011864406779654,0.000000000000013,-0.000000000000023,-0.010344827586207,0.000000000000024,0.010344827586207,0.011864406779653,-0.000000000000013,2 +10937,10995,10997,11055,-0.005172413793323,-0.201694915254202,-0.000000000000226,-0.207627118644051,-0.000000000000213,-0.195762711864380,0.005172413792884,-0.201694915254228,-0.011864406779673,0.000000000000013,-0.000000000000024,-0.010344827586207,0.000000000000028,0.010344827586207,0.011864406779670,-0.000000000000013,2 +10938,10996,10998,11056,-0.005172413793310,-0.189830508474540,-0.000000000000213,-0.195762711864380,-0.000000000000200,-0.183898305084730,0.005172413792897,-0.189830508474569,-0.011864406779651,0.000000000000013,-0.000000000000028,-0.010344827586207,0.000000000000029,0.010344827586207,0.011864406779649,-0.000000000000013,2 +10939,10997,10999,11057,-0.005172413793297,-0.177966101694881,-0.000000000000200,-0.183898305084730,-0.000000000000187,-0.172033898305063,0.005172413792909,-0.177966101694911,-0.011864406779668,0.000000000000013,-0.000000000000029,-0.010344827586207,0.000000000000032,0.010344827586207,0.011864406779666,-0.000000000000013,2 +10940,10998,11000,11058,-0.005172413793284,-0.166101694915219,-0.000000000000187,-0.172033898305063,-0.000000000000174,-0.160169491525408,0.005172413792922,-0.166101694915252,-0.011864406779656,0.000000000000013,-0.000000000000032,-0.010344827586207,0.000000000000034,0.010344827586207,0.011864406779654,-0.000000000000013,2 +10941,10999,11001,11059,-0.005172413793271,-0.154237288135565,-0.000000000000174,-0.160169491525408,-0.000000000000162,-0.148305084745757,0.005172413792935,-0.154237288135600,-0.011864406779651,0.000000000000013,-0.000000000000034,-0.010344827586207,0.000000000000035,0.010344827586207,0.011864406779649,-0.000000000000013,2 +10942,11000,11002,11060,-0.005172413793258,-0.142372881355909,-0.000000000000162,-0.148305084745757,-0.000000000000149,-0.136440677966096,0.005172413792948,-0.142372881355945,-0.011864406779662,0.000000000000013,-0.000000000000035,-0.010344827586207,0.000000000000038,0.010344827586207,0.011864406779660,-0.000000000000013,2 +10943,11001,11003,11061,-0.005172413793246,-0.130508474576246,-0.000000000000149,-0.136440677966096,-0.000000000000136,-0.124576271186434,0.005172413792961,-0.130508474576285,-0.011864406779663,0.000000000000013,-0.000000000000038,-0.010344827586207,0.000000000000039,0.010344827586207,0.011864406779661,-0.000000000000013,2 +10944,11002,11004,11062,-0.005172413793233,-0.118644067796583,-0.000000000000136,-0.124576271186434,-0.000000000000123,-0.112711864406772,0.005172413792974,-0.118644067796624,-0.011864406779663,0.000000000000013,-0.000000000000039,-0.010344827586207,0.000000000000042,0.010344827586207,0.011864406779661,-0.000000000000013,2 +10945,11003,11005,11063,-0.005172413793220,-0.106779661016922,-0.000000000000123,-0.112711864406772,-0.000000000000110,-0.100847457627116,0.005172413792987,-0.106779661016965,-0.011864406779658,0.000000000000013,-0.000000000000042,-0.010344827586207,0.000000000000044,0.010344827586207,0.011864406779656,-0.000000000000013,2 +10946,11004,11006,11064,-0.005172413793207,-0.094915254237262,-0.000000000000110,-0.100847457627116,-0.000000000000097,-0.088983050847454,0.005172413793000,-0.094915254237307,-0.011864406779663,0.000000000000013,-0.000000000000044,-0.010344827586207,0.000000000000046,0.010344827586207,0.011864406779661,-0.000000000000013,2 +10947,11005,11007,11065,-0.005172413793194,-0.083050847457599,-0.000000000000097,-0.088983050847454,-0.000000000000084,-0.077118644067792,0.005172413793013,-0.083050847457647,-0.011864406779663,0.000000000000013,-0.000000000000046,-0.010344827586207,0.000000000000049,0.010344827586207,0.011864406779661,-0.000000000000013,2 +10948,11006,11008,11066,-0.005172413793181,-0.071186440677939,-0.000000000000084,-0.077118644067792,-0.000000000000071,-0.065254237288135,0.005172413793026,-0.071186440677989,-0.011864406779657,0.000000000000013,-0.000000000000049,-0.010344827586207,0.000000000000051,0.010344827586207,0.011864406779655,-0.000000000000013,2 +10949,11007,11009,11067,-0.005172413793168,-0.059322033898278,-0.000000000000071,-0.065254237288135,-0.000000000000058,-0.053389830508473,0.005172413793039,-0.059322033898330,-0.011864406779663,0.000000000000013,-0.000000000000051,-0.010344827586207,0.000000000000053,0.010344827586207,0.011864406779661,-0.000000000000013,2 +10950,11008,11010,11068,-0.005172413793155,-0.047457627118616,-0.000000000000058,-0.053389830508473,-0.000000000000045,-0.041525423728814,0.005172413793052,-0.047457627118671,-0.011864406779661,0.000000000000013,-0.000000000000053,-0.010344827586207,0.000000000000056,0.010344827586207,0.011864406779659,-0.000000000000013,2 +10951,11009,11011,11069,-0.005172413793142,-0.035593220338956,-0.000000000000045,-0.041525423728814,-0.000000000000032,-0.029661016949155,0.005172413793065,-0.035593220339013,-0.011864406779660,0.000000000000013,-0.000000000000056,-0.010344827586207,0.000000000000058,0.010344827586207,0.011864406779658,-0.000000000000013,2 +10952,11010,11012,11070,-0.005172413793129,-0.023728813559294,-0.000000000000032,-0.029661016949155,-0.000000000000019,-0.017796610169493,0.005172413793078,-0.023728813559353,-0.011864406779663,0.000000000000013,-0.000000000000058,-0.010344827586207,0.000000000000060,0.010344827586207,0.011864406779661,-0.000000000000013,2 +10953,11011,11013,11071,-0.005172413793116,-0.011864406779634,-0.000000000000019,-0.017796610169493,-0.000000000000006,-0.005932203389836,0.005172413793090,-0.011864406779695,-0.011864406779658,0.000000000000013,-0.000000000000060,-0.010344827586207,0.000000000000062,0.010344827586207,0.011864406779655,-0.000000000000013,2 +10954,11012,11014,11072,-0.005172413793103,0.000000000000031,-0.000000000000006,-0.005932203389836,0.000000000000006,0.005932203389836,0.005172413793103,-0.000000000000031,-0.011864406779673,0.000000000000013,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000013,2 +10955,11013,11015,11073,-0.005172413793090,0.011864406779695,0.000000000000006,0.005932203389836,0.000000000000019,0.017796610169493,0.005172413793116,0.011864406779634,-0.011864406779655,0.000000000000013,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586207,0.011864406779658,-0.000000000000013,2 +10956,11014,11016,11074,-0.005172413793078,0.023728813559353,0.000000000000019,0.017796610169493,0.000000000000032,0.029661016949155,0.005172413793129,0.023728813559294,-0.011864406779661,0.000000000000013,-0.000000000000060,-0.010344827586207,0.000000000000058,0.010344827586207,0.011864406779663,-0.000000000000013,2 +10957,11015,11017,11075,-0.005172413793065,0.035593220339013,0.000000000000032,0.029661016949155,0.000000000000045,0.041525423728814,0.005172413793142,0.035593220338956,-0.011864406779658,0.000000000000013,-0.000000000000058,-0.010344827586207,0.000000000000056,0.010344827586207,0.011864406779660,-0.000000000000013,2 +10958,11016,11018,11076,-0.005172413793052,0.047457627118671,0.000000000000045,0.041525423728814,0.000000000000058,0.053389830508473,0.005172413793155,0.047457627118616,-0.011864406779659,0.000000000000013,-0.000000000000056,-0.010344827586207,0.000000000000053,0.010344827586207,0.011864406779661,-0.000000000000013,2 +10959,11017,11019,11077,-0.005172413793039,0.059322033898330,0.000000000000058,0.053389830508473,0.000000000000071,0.065254237288135,0.005172413793168,0.059322033898278,-0.011864406779661,0.000000000000013,-0.000000000000053,-0.010344827586207,0.000000000000051,0.010344827586207,0.011864406779663,-0.000000000000013,2 +10960,11018,11020,11078,-0.005172413793026,0.071186440677989,0.000000000000071,0.065254237288135,0.000000000000084,0.077118644067792,0.005172413793181,0.071186440677939,-0.011864406779655,0.000000000000013,-0.000000000000051,-0.010344827586207,0.000000000000049,0.010344827586207,0.011864406779657,-0.000000000000013,2 +10961,11019,11021,11079,-0.005172413793013,0.083050847457647,0.000000000000084,0.077118644067792,0.000000000000097,0.088983050847454,0.005172413793194,0.083050847457599,-0.011864406779661,0.000000000000013,-0.000000000000049,-0.010344827586207,0.000000000000046,0.010344827586207,0.011864406779663,-0.000000000000013,2 +10962,11020,11022,11080,-0.005172413793000,0.094915254237307,0.000000000000097,0.088983050847454,0.000000000000110,0.100847457627116,0.005172413793207,0.094915254237262,-0.011864406779661,0.000000000000013,-0.000000000000046,-0.010344827586207,0.000000000000044,0.010344827586207,0.011864406779663,-0.000000000000013,2 +10963,11021,11023,11081,-0.005172413792987,0.106779661016965,0.000000000000110,0.100847457627116,0.000000000000123,0.112711864406772,0.005172413793220,0.106779661016922,-0.011864406779656,0.000000000000013,-0.000000000000044,-0.010344827586207,0.000000000000042,0.010344827586207,0.011864406779658,-0.000000000000013,2 +10964,11022,11024,11082,-0.005172413792974,0.118644067796624,0.000000000000123,0.112711864406772,0.000000000000136,0.124576271186434,0.005172413793233,0.118644067796583,-0.011864406779661,0.000000000000013,-0.000000000000042,-0.010344827586207,0.000000000000039,0.010344827586207,0.011864406779663,-0.000000000000013,2 +10965,11023,11025,11083,-0.005172413792961,0.130508474576285,0.000000000000136,0.124576271186434,0.000000000000149,0.136440677966096,0.005172413793246,0.130508474576246,-0.011864406779661,0.000000000000013,-0.000000000000039,-0.010344827586207,0.000000000000038,0.010344827586207,0.011864406779663,-0.000000000000013,2 +10966,11024,11026,11084,-0.005172413792948,0.142372881355945,0.000000000000149,0.136440677966096,0.000000000000162,0.148305084745757,0.005172413793258,0.142372881355909,-0.011864406779660,0.000000000000013,-0.000000000000038,-0.010344827586207,0.000000000000035,0.010344827586207,0.011864406779662,-0.000000000000013,2 +10967,11025,11027,11085,-0.005172413792935,0.154237288135600,0.000000000000162,0.148305084745757,0.000000000000175,0.160169491525408,0.005172413793271,0.154237288135565,-0.011864406779649,0.000000000000013,-0.000000000000035,-0.010344827586207,0.000000000000034,0.010344827586207,0.011864406779651,-0.000000000000013,2 +10968,11026,11028,11086,-0.005172413792922,0.166101694915252,0.000000000000175,0.160169491525408,0.000000000000187,0.172033898305063,0.005172413793284,0.166101694915219,-0.011864406779654,0.000000000000013,-0.000000000000034,-0.010344827586207,0.000000000000032,0.010344827586207,0.011864406779656,-0.000000000000013,2 +10969,11027,11029,11087,-0.005172413792909,0.177966101694911,0.000000000000187,0.172033898305063,0.000000000000200,0.183898305084729,0.005172413793297,0.177966101694881,-0.011864406779665,0.000000000000013,-0.000000000000032,-0.010344827586207,0.000000000000029,0.010344827586207,0.011864406779668,-0.000000000000013,2 +10970,11028,11030,11088,-0.005172413792897,0.189830508474569,0.000000000000200,0.183898305084729,0.000000000000213,0.195762711864380,0.005172413793310,0.189830508474540,-0.011864406779650,0.000000000000013,-0.000000000000029,-0.010344827586207,0.000000000000028,0.010344827586207,0.011864406779651,-0.000000000000013,2 +10971,11029,11031,11089,-0.005172413792884,0.201694915254228,0.000000000000213,0.195762711864380,0.000000000000226,0.207627118644051,0.005172413793323,0.201694915254202,-0.011864406779670,0.000000000000013,-0.000000000000028,-0.010344827586207,0.000000000000024,0.010344827586207,0.011864406779673,-0.000000000000013,2 +10972,11030,11032,11090,-0.005172413792871,0.213559322033890,0.000000000000226,0.207627118644051,0.000000000000239,0.219491525423705,0.005172413793336,0.213559322033866,-0.011864406779653,0.000000000000013,-0.000000000000024,-0.010344827586207,0.000000000000023,0.010344827586207,0.011864406779654,-0.000000000000013,2 +10973,11031,11033,11091,-0.005172413792858,0.225423728813549,0.000000000000239,0.219491525423705,0.000000000000252,0.231355932203371,0.005172413793349,0.225423728813527,-0.011864406779665,0.000000000000013,-0.000000000000023,-0.010344827586207,0.000000000000020,0.010344827586207,0.011864406779668,-0.000000000000013,2 +10974,11032,11034,11092,-0.005172413792845,0.237288135593212,0.000000000000252,0.231355932203371,0.000000000000265,0.243220338983033,0.005172413793362,0.237288135593193,-0.011864406779661,0.000000000000013,-0.000000000000020,-0.010344827586207,0.000000000000019,0.010344827586207,0.011864406779663,-0.000000000000013,2 +10975,11033,11035,11093,-0.005172413792832,0.249152542372870,0.000000000000265,0.243220338983033,0.000000000000278,0.255084745762688,0.005172413793375,0.249152542372852,-0.011864406779654,0.000000000000013,-0.000000000000019,-0.010344827586207,0.000000000000016,0.010344827586207,0.011864406779656,-0.000000000000013,2 +10976,11034,11036,11094,-0.005172413792819,0.261016949152527,0.000000000000278,0.255084745762688,0.000000000000291,0.266949152542350,0.005172413793388,0.261016949152512,-0.011864406779660,0.000000000000013,-0.000000000000016,-0.010344827586207,0.000000000000014,0.010344827586207,0.011864406779663,-0.000000000000013,2 +10977,11035,11037,11095,-0.005172413792806,0.272881355932185,0.000000000000291,0.266949152542350,0.000000000000304,0.278813559322007,0.005172413793401,0.272881355932172,-0.011864406779656,0.000000000000013,-0.000000000000014,-0.010344827586207,0.000000000000012,0.010344827586207,0.011864406779657,-0.000000000000013,2 +10978,11036,11038,11096,-0.005172413792793,0.284745762711848,0.000000000000304,0.278813559322007,0.000000000000317,0.290677966101679,0.005172413793414,0.284745762711838,-0.011864406779671,0.000000000000013,-0.000000000000012,-0.010344827586207,0.000000000000009,0.010344827586207,0.011864406779674,-0.000000000000013,2 +10979,11037,11039,11097,-0.005172413792780,0.296610169491514,0.000000000000317,0.290677966101679,0.000000000000330,0.302542372881340,0.005172413793427,0.296610169491505,-0.011864406779660,0.000000000000013,-0.000000000000009,-0.010344827586207,0.000000000000008,0.010344827586207,0.011864406779661,-0.000000000000013,2 +10980,11038,11040,11098,-0.005172413792767,0.308474576271176,0.000000000000330,0.302542372881340,0.000000000000343,0.314406779661006,0.005172413793439,0.308474576271169,-0.011864406779665,0.000000000000013,-0.000000000000008,-0.010344827586207,0.000000000000006,0.010344827586207,0.011864406779668,-0.000000000000013,2 +10981,11039,11041,11099,-0.005172413792754,0.320338983050841,0.000000000000343,0.314406779661006,0.000000000000355,0.326271186440671,0.005172413793452,0.320338983050836,-0.011864406779664,0.000000000000013,-0.000000000000006,-0.010344827586207,0.000000000000004,0.010344827586207,0.011864406779665,-0.000000000000013,2 +10982,11040,11042,11100,-0.005172413792741,0.332203389830503,0.000000000000355,0.326271186440671,0.000000000000368,0.338135593220332,0.005172413793465,0.332203389830500,-0.011864406779660,0.000000000000013,-0.000000000000004,-0.010344827586207,0.000000000000002,0.010344827586207,0.011864406779662,-0.000000000000013,2 +7890,10983,11041,11101,0.000000000000381,0.350000000000000,-0.005172413792729,0.344067796610166,0.000000000000368,0.338135593220332,0.005172413793478,0.344067796610165,-0.000000000000000,0.010344827586207,-0.011864406779667,0.000000000000013,-0.000000000000002,-0.010344827586207,0.011864406779669,-0.000000000000013,2 +8941,10984,11044,11102,0.010344827585840,-0.350000000000000,0.005172413792729,-0.344067796610166,0.010344827585853,-0.338135593220334,0.015517241378964,-0.344067796610167,-0.000000000000000,-0.010344827586236,-0.011864406779667,0.000000000000013,0.000000000000002,0.010344827586235,0.011864406779665,-0.000000000000012,2 +10985,11043,11045,11103,0.005172413792741,-0.332203389830503,0.010344827585853,-0.338135593220334,0.010344827585865,-0.326271186440675,0.015517241378976,-0.332203389830506,-0.011864406779660,0.000000000000013,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586234,0.011864406779658,-0.000000000000012,2 +10986,11044,11046,11104,0.005172413792754,-0.320338983050841,0.010344827585865,-0.326271186440675,0.010344827585877,-0.314406779661012,0.015517241378988,-0.320338983050846,-0.011864406779664,0.000000000000013,-0.000000000000004,-0.010344827586234,0.000000000000005,0.010344827586233,0.011864406779663,-0.000000000000012,2 +10987,11045,11047,11105,0.005172413792767,-0.308474576271176,0.010344827585877,-0.314406779661012,0.010344827585890,-0.302542372881348,0.015517241379000,-0.308474576271183,-0.011864406779665,0.000000000000013,-0.000000000000005,-0.010344827586233,0.000000000000008,0.010344827586232,0.011864406779662,-0.000000000000012,2 +10988,11046,11048,11106,0.005172413792780,-0.296610169491514,0.010344827585890,-0.302542372881348,0.010344827585902,-0.290677966101689,0.015517241379012,-0.296610169491523,-0.011864406779660,0.000000000000013,-0.000000000000008,-0.010344827586232,0.000000000000009,0.010344827586231,0.011864406779659,-0.000000000000012,2 +10989,11047,11049,11107,0.005172413792793,-0.284745762711848,0.010344827585902,-0.290677966101689,0.010344827585915,-0.278813559322019,0.015517241379024,-0.284745762711859,-0.011864406779671,0.000000000000013,-0.000000000000009,-0.010344827586231,0.000000000000012,0.010344827586230,0.011864406779668,-0.000000000000012,2 +10990,11048,11050,11108,0.005172413792806,-0.272881355932185,0.010344827585915,-0.278813559322019,0.010344827585927,-0.266949152542364,0.015517241379036,-0.272881355932198,-0.011864406779656,0.000000000000013,-0.000000000000012,-0.010344827586230,0.000000000000014,0.010344827586229,0.011864406779655,-0.000000000000012,2 +10991,11049,11051,11109,0.005172413792819,-0.261016949152527,0.010344827585927,-0.266949152542364,0.010344827585940,-0.255084745762705,0.015517241379048,-0.261016949152542,-0.011864406779660,0.000000000000013,-0.000000000000014,-0.010344827586229,0.000000000000016,0.010344827586228,0.011864406779658,-0.000000000000012,2 +10992,11050,11052,11110,0.005172413792832,-0.249152542372869,0.010344827585940,-0.255084745762705,0.010344827585952,-0.243220338983052,0.015517241379060,-0.249152542372887,-0.011864406779654,0.000000000000013,-0.000000000000016,-0.010344827586228,0.000000000000019,0.010344827586227,0.011864406779652,-0.000000000000012,2 +10993,11051,11053,11111,0.005172413792845,-0.237288135593212,0.010344827585952,-0.243220338983052,0.010344827585964,-0.231355932203392,0.015517241379071,-0.237288135593232,-0.011864406779661,0.000000000000013,-0.000000000000019,-0.010344827586227,0.000000000000020,0.010344827586226,0.011864406779659,-0.000000000000012,2 +10994,11052,11054,11112,0.005172413792858,-0.225423728813549,0.010344827585964,-0.231355932203392,0.010344827585977,-0.219491525423728,0.015517241379083,-0.225423728813571,-0.011864406779666,0.000000000000013,-0.000000000000020,-0.010344827586226,0.000000000000023,0.010344827586225,0.011864406779663,-0.000000000000012,2 +10995,11053,11055,11113,0.005172413792871,-0.213559322033890,0.010344827585977,-0.219491525423728,0.010344827585989,-0.207627118644076,0.015517241379095,-0.213559322033914,-0.011864406779653,0.000000000000013,-0.000000000000023,-0.010344827586225,0.000000000000024,0.010344827586224,0.011864406779651,-0.000000000000012,2 +10996,11054,11056,11114,0.005172413792884,-0.201694915254228,0.010344827585989,-0.207627118644076,0.010344827586002,-0.195762711864407,0.015517241379107,-0.201694915254254,-0.011864406779670,0.000000000000013,-0.000000000000024,-0.010344827586224,0.000000000000028,0.010344827586223,0.011864406779667,-0.000000000000012,2 +10997,11055,11057,11115,0.005172413792897,-0.189830508474569,0.010344827586002,-0.195762711864407,0.010344827586014,-0.183898305084759,0.015517241379119,-0.189830508474597,-0.011864406779649,0.000000000000013,-0.000000000000028,-0.010344827586223,0.000000000000029,0.010344827586222,0.011864406779648,-0.000000000000012,2 +10998,11056,11058,11116,0.005172413792909,-0.177966101694911,0.010344827586014,-0.183898305084759,0.010344827586027,-0.172033898305095,0.015517241379131,-0.177966101694942,-0.011864406779666,0.000000000000013,-0.000000000000029,-0.010344827586222,0.000000000000032,0.010344827586221,0.011864406779663,-0.000000000000012,2 +10999,11057,11059,11117,0.005172413792922,-0.166101694915252,0.010344827586027,-0.172033898305095,0.010344827586039,-0.160169491525441,0.015517241379143,-0.166101694915284,-0.011864406779654,0.000000000000013,-0.000000000000032,-0.010344827586221,0.000000000000034,0.010344827586220,0.011864406779652,-0.000000000000012,2 +11000,11058,11060,11118,0.005172413792935,-0.154237288135600,0.010344827586039,-0.160169491525441,0.010344827586051,-0.148305084745793,0.015517241379155,-0.154237288135634,-0.011864406779649,0.000000000000013,-0.000000000000034,-0.010344827586220,0.000000000000035,0.010344827586219,0.011864406779648,-0.000000000000012,2 +11001,11059,11061,11119,0.005172413792948,-0.142372881355945,0.010344827586051,-0.148305084745793,0.010344827586064,-0.136440677966134,0.015517241379167,-0.142372881355982,-0.011864406779660,0.000000000000013,-0.000000000000035,-0.010344827586219,0.000000000000038,0.010344827586218,0.011864406779658,-0.000000000000012,2 +11002,11060,11062,11120,0.005172413792961,-0.130508474576285,0.010344827586064,-0.136440677966134,0.010344827586076,-0.124576271186474,0.015517241379179,-0.130508474576323,-0.011864406779661,0.000000000000013,-0.000000000000038,-0.010344827586218,0.000000000000039,0.010344827586217,0.011864406779659,-0.000000000000012,2 +11003,11061,11063,11121,0.005172413792974,-0.118644067796624,0.010344827586076,-0.124576271186474,0.010344827586089,-0.112711864406814,0.015517241379191,-0.118644067796664,-0.011864406779661,0.000000000000013,-0.000000000000039,-0.010344827586217,0.000000000000042,0.010344827586216,0.011864406779658,-0.000000000000012,2 +11004,11062,11064,11122,0.005172413792987,-0.106779661016965,0.010344827586089,-0.112711864406814,0.010344827586101,-0.100847457627160,0.015517241379203,-0.106779661017008,-0.011864406779656,0.000000000000013,-0.000000000000042,-0.010344827586216,0.000000000000044,0.010344827586215,0.011864406779654,-0.000000000000012,2 +11005,11063,11065,11123,0.005172413793000,-0.094915254237307,0.010344827586101,-0.100847457627160,0.010344827586114,-0.088983050847500,0.015517241379215,-0.094915254237353,-0.011864406779661,0.000000000000013,-0.000000000000044,-0.010344827586215,0.000000000000046,0.010344827586214,0.011864406779658,-0.000000000000012,2 +11006,11064,11066,11124,0.005172413793013,-0.083050847457647,0.010344827586114,-0.088983050847500,0.010344827586126,-0.077118644067841,0.015517241379227,-0.083050847457694,-0.011864406779661,0.000000000000013,-0.000000000000046,-0.010344827586214,0.000000000000049,0.010344827586213,0.011864406779658,-0.000000000000012,2 +11007,11065,11067,11125,0.005172413793026,-0.071186440677989,0.010344827586126,-0.077118644067841,0.010344827586138,-0.065254237288186,0.015517241379238,-0.071186440678038,-0.011864406779655,0.000000000000013,-0.000000000000049,-0.010344827586213,0.000000000000051,0.010344827586212,0.011864406779653,-0.000000000000012,2 +11008,11066,11068,11126,0.005172413793039,-0.059322033898330,0.010344827586138,-0.065254237288186,0.010344827586151,-0.053389830508527,0.015517241379250,-0.059322033898383,-0.011864406779661,0.000000000000013,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779658,-0.000000000000012,2 +11009,11067,11069,11127,0.005172413793052,-0.047457627118671,0.010344827586151,-0.053389830508527,0.010344827586163,-0.041525423728869,0.015517241379262,-0.047457627118725,-0.011864406779659,0.000000000000013,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779656,-0.000000000000012,2 +11010,11068,11070,11128,0.005172413793065,-0.035593220339013,0.010344827586163,-0.041525423728869,0.010344827586176,-0.029661016949213,0.015517241379274,-0.035593220339069,-0.011864406779658,0.000000000000013,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779655,-0.000000000000012,2 +11011,11069,11071,11129,0.005172413793078,-0.023728813559353,0.010344827586176,-0.029661016949213,0.010344827586188,-0.017796610169553,0.015517241379286,-0.023728813559413,-0.011864406779661,0.000000000000013,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586208,0.011864406779658,-0.000000000000012,2 +11012,11070,11072,11130,0.005172413793090,-0.011864406779695,0.010344827586188,-0.017796610169553,0.010344827586201,-0.005932203389899,0.015517241379298,-0.011864406779757,-0.011864406779655,0.000000000000013,-0.000000000000060,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779653,-0.000000000000012,2 +11013,11071,11073,11131,0.005172413793103,-0.000000000000031,0.010344827586201,-0.005932203389899,0.010344827586213,0.005932203389774,0.015517241379310,-0.000000000000094,-0.011864406779673,0.000000000000013,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000012,2 +11014,11072,11074,11132,0.005172413793116,0.011864406779634,0.010344827586213,0.005932203389774,0.010344827586225,0.017796610169433,0.015517241379322,0.011864406779573,-0.011864406779658,0.000000000000013,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586205,0.011864406779660,-0.000000000000012,2 +11015,11073,11075,11133,0.005172413793129,0.023728813559294,0.010344827586225,0.017796610169433,0.010344827586238,0.029661016949097,0.015517241379334,0.023728813559235,-0.011864406779663,0.000000000000013,-0.000000000000060,-0.010344827586205,0.000000000000058,0.010344827586204,0.011864406779666,-0.000000000000012,2 +11016,11074,11076,11134,0.005172413793142,0.035593220338956,0.010344827586238,0.029661016949097,0.010344827586250,0.041525423728758,0.015517241379346,0.035593220338899,-0.011864406779660,0.000000000000013,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779662,-0.000000000000012,2 +11017,11075,11077,11135,0.005172413793155,0.047457627118616,0.010344827586250,0.041525423728758,0.010344827586263,0.053389830508420,0.015517241379358,0.047457627118562,-0.011864406779661,0.000000000000013,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779663,-0.000000000000012,2 +11018,11076,11078,11136,0.005172413793168,0.059322033898278,0.010344827586263,0.053389830508420,0.010344827586275,0.065254237288084,0.015517241379370,0.059322033898226,-0.011864406779663,0.000000000000013,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779666,-0.000000000000012,2 +11019,11077,11079,11137,0.005172413793181,0.071186440677939,0.010344827586275,0.065254237288084,0.010344827586288,0.077118644067743,0.015517241379382,0.071186440677889,-0.011864406779657,0.000000000000013,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779660,-0.000000000000012,2 +11020,11078,11080,11138,0.005172413793194,0.083050847457599,0.010344827586288,0.077118644067743,0.010344827586300,0.088983050847407,0.015517241379394,0.083050847457551,-0.011864406779663,0.000000000000013,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779666,-0.000000000000012,2 +11021,11079,11081,11139,0.005172413793207,0.094915254237262,0.010344827586300,0.088983050847407,0.010344827586312,0.100847457627072,0.015517241379406,0.094915254237217,-0.011864406779663,0.000000000000013,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779666,-0.000000000000012,2 +11022,11080,11082,11140,0.005172413793220,0.106779661016922,0.010344827586312,0.100847457627072,0.010344827586325,0.112711864406730,0.015517241379417,0.106779661016879,-0.011864406779658,0.000000000000013,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779660,-0.000000000000012,2 +11023,11081,11083,11141,0.005172413793233,0.118644067796583,0.010344827586325,0.112711864406730,0.010344827586337,0.124576271186395,0.015517241379429,0.118644067796542,-0.011864406779663,0.000000000000013,-0.000000000000042,-0.010344827586197,0.000000000000039,0.010344827586196,0.011864406779666,-0.000000000000012,2 +11024,11082,11084,11142,0.005172413793246,0.130508474576246,0.010344827586337,0.124576271186395,0.010344827586350,0.136440677966058,0.015517241379441,0.130508474576207,-0.011864406779663,0.000000000000013,-0.000000000000039,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779665,-0.000000000000012,2 +11025,11083,11085,11143,0.005172413793258,0.142372881355909,0.010344827586350,0.136440677966058,0.010344827586362,0.148305084745722,0.015517241379453,0.142372881355872,-0.011864406779662,0.000000000000013,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779665,-0.000000000000012,2 +11026,11084,11086,11144,0.005172413793271,0.154237288135565,0.010344827586362,0.148305084745722,0.010344827586374,0.160169491525374,0.015517241379465,0.154237288135531,-0.011864406779651,0.000000000000013,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779653,-0.000000000000012,2 +11027,11085,11087,11145,0.005172413793284,0.166101694915219,0.010344827586374,0.160169491525374,0.010344827586387,0.172033898305031,0.015517241379477,0.166101694915186,-0.011864406779656,0.000000000000013,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779658,-0.000000000000012,2 +11028,11086,11088,11146,0.005172413793297,0.177966101694881,0.010344827586387,0.172033898305031,0.010344827586399,0.183898305084700,0.015517241379489,0.177966101694850,-0.011864406779668,0.000000000000013,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779671,-0.000000000000012,2 +11029,11087,11089,11147,0.005172413793310,0.189830508474540,0.010344827586399,0.183898305084700,0.010344827586412,0.195762711864352,0.015517241379501,0.189830508474512,-0.011864406779651,0.000000000000013,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779653,-0.000000000000012,2 +11030,11088,11090,11148,0.005172413793323,0.201694915254202,0.010344827586412,0.195762711864352,0.010344827586424,0.207627118644027,0.015517241379513,0.201694915254177,-0.011864406779673,0.000000000000013,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779676,-0.000000000000012,2 +11031,11089,11091,11149,0.005172413793336,0.213559322033866,0.010344827586424,0.207627118644027,0.010344827586437,0.219491525423682,0.015517241379525,0.213559322033843,-0.011864406779654,0.000000000000013,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779656,-0.000000000000012,2 +11032,11090,11092,11150,0.005172413793349,0.225423728813527,0.010344827586437,0.219491525423682,0.010344827586449,0.231355932203351,0.015517241379537,0.225423728813506,-0.011864406779668,0.000000000000013,-0.000000000000023,-0.010344827586188,0.000000000000020,0.010344827586187,0.011864406779670,-0.000000000000012,2 +11033,11091,11093,11151,0.005172413793362,0.237288135593193,0.010344827586449,0.231355932203351,0.010344827586461,0.243220338983015,0.015517241379549,0.237288135593173,-0.011864406779663,0.000000000000013,-0.000000000000020,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779664,-0.000000000000012,2 +11034,11092,11094,11152,0.005172413793375,0.249152542372852,0.010344827586461,0.243220338983015,0.010344827586474,0.255084745762672,0.015517241379561,0.249152542372835,-0.011864406779656,0.000000000000013,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779658,-0.000000000000012,2 +11035,11093,11095,11153,0.005172413793388,0.261016949152512,0.010344827586474,0.255084745762672,0.010344827586486,0.266949152542337,0.015517241379573,0.261016949152497,-0.011864406779663,0.000000000000013,-0.000000000000016,-0.010344827586185,0.000000000000013,0.010344827586184,0.011864406779666,-0.000000000000012,2 +11036,11094,11096,11154,0.005172413793401,0.272881355932172,0.010344827586486,0.266949152542337,0.010344827586499,0.278813559321994,0.015517241379584,0.272881355932159,-0.011864406779657,0.000000000000013,-0.000000000000013,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779658,-0.000000000000012,2 +11037,11095,11097,11155,0.005172413793414,0.284745762711838,0.010344827586499,0.278813559321994,0.010344827586511,0.290677966101670,0.015517241379596,0.284745762711827,-0.011864406779674,0.000000000000013,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779677,-0.000000000000012,2 +11038,11096,11098,11156,0.005172413793427,0.296610169491505,0.010344827586511,0.290677966101670,0.010344827586524,0.302542372881331,0.015517241379608,0.296610169491496,-0.011864406779661,0.000000000000013,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779662,-0.000000000000012,2 +11039,11097,11099,11157,0.005172413793439,0.308474576271169,0.010344827586524,0.302542372881331,0.010344827586536,0.314406779661000,0.015517241379620,0.308474576271162,-0.011864406779668,0.000000000000013,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779670,-0.000000000000012,2 +11040,11098,11100,11158,0.005172413793452,0.320338983050836,0.010344827586536,0.314406779661000,0.010344827586548,0.326271186440666,0.015517241379632,0.320338983050831,-0.011864406779665,0.000000000000013,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779667,-0.000000000000012,2 +11041,11099,11101,11159,0.005172413793465,0.332203389830500,0.010344827586548,0.326271186440666,0.010344827586561,0.338135593220330,0.015517241379644,0.332203389830496,-0.011864406779662,0.000000000000013,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779664,-0.000000000000012,2 +7876,11042,11100,11160,0.010344827586573,0.350000000000000,0.005172413793478,0.344067796610165,0.010344827586561,0.338135593220330,0.015517241379656,0.344067796610164,-0.000000000000000,0.010344827586177,-0.011864406779669,0.000000000000013,-0.000000000000002,-0.010344827586178,0.011864406779671,-0.000000000000012,2 +8942,11043,11103,11161,0.020689655172076,-0.350000000000000,0.015517241378964,-0.344067796610167,0.020689655172088,-0.338135593220336,0.025862068965200,-0.344067796610168,-0.000000000000000,-0.010344827586236,-0.011864406779665,0.000000000000012,0.000000000000002,0.010344827586235,0.011864406779663,-0.000000000000011,2 +11044,11102,11104,11162,0.015517241378976,-0.332203389830506,0.020689655172088,-0.338135593220336,0.020689655172099,-0.326271186440679,0.025862068965211,-0.332203389830509,-0.011864406779658,0.000000000000012,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586234,0.011864406779656,-0.000000000000011,2 +11045,11103,11105,11163,0.015517241378988,-0.320338983050846,0.020689655172099,-0.326271186440679,0.020689655172110,-0.314406779661017,0.025862068965222,-0.320338983050851,-0.011864406779663,0.000000000000012,-0.000000000000004,-0.010344827586234,0.000000000000006,0.010344827586233,0.011864406779661,-0.000000000000011,2 +11046,11104,11106,11164,0.015517241379000,-0.308474576271183,0.020689655172110,-0.314406779661017,0.020689655172122,-0.302542372881356,0.025862068965232,-0.308474576271190,-0.011864406779662,0.000000000000012,-0.000000000000006,-0.010344827586233,0.000000000000008,0.010344827586232,0.011864406779659,-0.000000000000011,2 +11047,11105,11107,11165,0.015517241379012,-0.296610169491523,0.020689655172122,-0.302542372881356,0.020689655172133,-0.290677966101698,0.025862068965243,-0.296610169491532,-0.011864406779659,0.000000000000012,-0.000000000000008,-0.010344827586232,0.000000000000009,0.010344827586231,0.011864406779658,-0.000000000000011,2 +11048,11106,11108,11166,0.015517241379024,-0.284745762711859,0.020689655172133,-0.290677966101698,0.020689655172145,-0.278813559322032,0.025862068965254,-0.284745762711870,-0.011864406779668,0.000000000000012,-0.000000000000009,-0.010344827586231,0.000000000000012,0.010344827586230,0.011864406779665,-0.000000000000011,2 +11049,11107,11109,11167,0.015517241379036,-0.272881355932198,0.020689655172145,-0.278813559322032,0.020689655172156,-0.266949152542377,0.025862068965265,-0.272881355932211,-0.011864406779655,0.000000000000012,-0.000000000000012,-0.010344827586230,0.000000000000013,0.010344827586229,0.011864406779654,-0.000000000000011,2 +11050,11108,11110,11168,0.015517241379048,-0.261016949152542,0.020689655172156,-0.266949152542377,0.020689655172168,-0.255084745762721,0.025862068965276,-0.261016949152557,-0.011864406779658,0.000000000000012,-0.000000000000013,-0.010344827586229,0.000000000000016,0.010344827586228,0.011864406779655,-0.000000000000011,2 +11051,11109,11111,11169,0.015517241379060,-0.249152542372887,0.020689655172168,-0.255084745762721,0.020689655172179,-0.243220338983070,0.025862068965287,-0.249152542372904,-0.011864406779652,0.000000000000012,-0.000000000000016,-0.010344827586228,0.000000000000019,0.010344827586227,0.011864406779650,-0.000000000000011,2 +11052,11110,11112,11170,0.015517241379071,-0.237288135593232,0.020689655172179,-0.243220338983070,0.020689655172190,-0.231355932203412,0.025862068965298,-0.237288135593251,-0.011864406779659,0.000000000000012,-0.000000000000019,-0.010344827586227,0.000000000000021,0.010344827586226,0.011864406779657,-0.000000000000011,2 +11053,11111,11113,11171,0.015517241379083,-0.225423728813571,0.020689655172190,-0.231355932203412,0.020689655172202,-0.219491525423751,0.025862068965309,-0.225423728813592,-0.011864406779663,0.000000000000012,-0.000000000000021,-0.010344827586226,0.000000000000023,0.010344827586225,0.011864406779661,-0.000000000000011,2 +11054,11112,11114,11172,0.015517241379095,-0.213559322033914,0.020689655172202,-0.219491525423751,0.020689655172213,-0.207627118644100,0.025862068965320,-0.213559322033937,-0.011864406779651,0.000000000000012,-0.000000000000023,-0.010344827586225,0.000000000000024,0.010344827586224,0.011864406779650,-0.000000000000011,2 +11055,11113,11115,11173,0.015517241379107,-0.201694915254254,0.020689655172213,-0.207627118644100,0.020689655172225,-0.195762711864435,0.025862068965331,-0.201694915254280,-0.011864406779667,0.000000000000012,-0.000000000000024,-0.010344827586224,0.000000000000027,0.010344827586223,0.011864406779664,-0.000000000000011,2 +11056,11114,11116,11174,0.015517241379119,-0.189830508474597,0.020689655172225,-0.195762711864435,0.020689655172236,-0.183898305084788,0.025862068965342,-0.189830508474625,-0.011864406779648,0.000000000000012,-0.000000000000027,-0.010344827586223,0.000000000000029,0.010344827586222,0.011864406779646,-0.000000000000011,2 +11057,11115,11117,11175,0.015517241379131,-0.177966101694942,0.020689655172236,-0.183898305084788,0.020689655172248,-0.172033898305126,0.025862068965353,-0.177966101694972,-0.011864406779663,0.000000000000012,-0.000000000000029,-0.010344827586222,0.000000000000032,0.010344827586221,0.011864406779660,-0.000000000000011,2 +11058,11116,11118,11176,0.015517241379143,-0.166101694915284,0.020689655172248,-0.172033898305126,0.020689655172259,-0.160169491525475,0.025862068965364,-0.166101694915317,-0.011864406779652,0.000000000000012,-0.000000000000032,-0.010344827586221,0.000000000000034,0.010344827586220,0.011864406779650,-0.000000000000011,2 +11059,11117,11119,11177,0.015517241379155,-0.154237288135634,0.020689655172259,-0.160169491525475,0.020689655172271,-0.148305084745828,0.025862068965375,-0.154237288135669,-0.011864406779648,0.000000000000012,-0.000000000000034,-0.010344827586220,0.000000000000035,0.010344827586219,0.011864406779646,-0.000000000000011,2 +11060,11118,11120,11178,0.015517241379167,-0.142372881355982,0.020689655172271,-0.148305084745828,0.020689655172282,-0.136440677966172,0.025862068965386,-0.142372881356018,-0.011864406779658,0.000000000000012,-0.000000000000035,-0.010344827586219,0.000000000000038,0.010344827586218,0.011864406779655,-0.000000000000011,2 +11061,11119,11121,11179,0.015517241379179,-0.130508474576323,0.020689655172282,-0.136440677966172,0.020689655172293,-0.124576271186513,0.025862068965396,-0.130508474576362,-0.011864406779659,0.000000000000012,-0.000000000000038,-0.010344827586218,0.000000000000039,0.010344827586217,0.011864406779658,-0.000000000000011,2 +11062,11120,11122,11180,0.015517241379191,-0.118644067796664,0.020689655172293,-0.124576271186513,0.020689655172305,-0.112711864406856,0.025862068965407,-0.118644067796705,-0.011864406779658,0.000000000000012,-0.000000000000039,-0.010344827586217,0.000000000000042,0.010344827586216,0.011864406779656,-0.000000000000011,2 +11063,11121,11123,11181,0.015517241379203,-0.106779661017008,0.020689655172305,-0.112711864406856,0.020689655172316,-0.100847457627204,0.025862068965418,-0.106779661017051,-0.011864406779654,0.000000000000012,-0.000000000000042,-0.010344827586216,0.000000000000044,0.010344827586215,0.011864406779651,-0.000000000000011,2 +11064,11122,11124,11182,0.015517241379215,-0.094915254237353,0.020689655172316,-0.100847457627204,0.020689655172328,-0.088983050847547,0.025862068965429,-0.094915254237398,-0.011864406779658,0.000000000000012,-0.000000000000044,-0.010344827586215,0.000000000000046,0.010344827586214,0.011864406779656,-0.000000000000011,2 +11065,11123,11125,11183,0.015517241379227,-0.083050847457694,0.020689655172328,-0.088983050847547,0.020689655172339,-0.077118644067890,0.025862068965440,-0.083050847457742,-0.011864406779658,0.000000000000012,-0.000000000000046,-0.010344827586214,0.000000000000049,0.010344827586213,0.011864406779656,-0.000000000000011,2 +11066,11124,11126,11184,0.015517241379238,-0.071186440678038,0.020689655172339,-0.077118644067890,0.020689655172351,-0.065254237288237,0.025862068965451,-0.071186440678088,-0.011864406779653,0.000000000000012,-0.000000000000049,-0.010344827586213,0.000000000000051,0.010344827586212,0.011864406779651,-0.000000000000011,2 +11067,11125,11127,11185,0.015517241379250,-0.059322033898383,0.020689655172351,-0.065254237288237,0.020689655172362,-0.053389830508580,0.025862068965462,-0.059322033898435,-0.011864406779658,0.000000000000012,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779656,-0.000000000000011,2 +11068,11126,11128,11186,0.015517241379262,-0.047457627118725,0.020689655172362,-0.053389830508580,0.020689655172373,-0.041525423728925,0.025862068965473,-0.047457627118780,-0.011864406779656,0.000000000000012,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779654,-0.000000000000011,2 +11069,11127,11129,11187,0.015517241379274,-0.035593220339069,0.020689655172373,-0.041525423728925,0.020689655172385,-0.029661016949271,0.025862068965484,-0.035593220339126,-0.011864406779655,0.000000000000012,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779653,-0.000000000000011,2 +11070,11128,11130,11188,0.015517241379286,-0.023728813559413,0.020689655172385,-0.029661016949271,0.020689655172396,-0.017796610169613,0.025862068965495,-0.023728813559472,-0.011864406779658,0.000000000000012,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586208,0.011864406779656,-0.000000000000011,2 +11071,11129,11131,11189,0.015517241379298,-0.011864406779757,0.020689655172396,-0.017796610169613,0.020689655172408,-0.005932203389961,0.025862068965506,-0.011864406779818,-0.011864406779653,0.000000000000012,-0.000000000000060,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779651,-0.000000000000011,2 +11072,11130,11132,11190,0.015517241379310,-0.000000000000094,0.020689655172408,-0.005932203389961,0.020689655172419,0.005932203389712,0.025862068965517,-0.000000000000156,-0.011864406779673,0.000000000000012,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000011,2 +11073,11131,11133,11191,0.015517241379322,0.011864406779573,0.020689655172419,0.005932203389712,0.020689655172431,0.017796610169372,0.025862068965528,0.011864406779511,-0.011864406779660,0.000000000000012,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586205,0.011864406779662,-0.000000000000011,2 +11074,11132,11134,11192,0.015517241379334,0.023728813559235,0.020689655172431,0.017796610169372,0.020689655172442,0.029661016949039,0.025862068965539,0.023728813559176,-0.011864406779666,0.000000000000012,-0.000000000000060,-0.010344827586205,0.000000000000058,0.010344827586204,0.011864406779668,-0.000000000000011,2 +11075,11133,11135,11193,0.015517241379346,0.035593220338899,0.020689655172442,0.029661016949039,0.020689655172453,0.041525423728702,0.025862068965550,0.035593220338842,-0.011864406779662,0.000000000000012,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779664,-0.000000000000011,2 +11076,11134,11136,11194,0.015517241379358,0.047457627118562,0.020689655172453,0.041525423728702,0.020689655172465,0.053389830508367,0.025862068965561,0.047457627118507,-0.011864406779663,0.000000000000012,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779665,-0.000000000000011,2 +11077,11135,11137,11195,0.015517241379370,0.059322033898226,0.020689655172465,0.053389830508367,0.020689655172476,0.065254237288033,0.025862068965571,0.059322033898174,-0.011864406779666,0.000000000000012,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779668,-0.000000000000011,2 +11078,11136,11138,11196,0.015517241379382,0.071186440677889,0.020689655172476,0.065254237288033,0.020689655172488,0.077118644067694,0.025862068965582,0.071186440677839,-0.011864406779660,0.000000000000012,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779662,-0.000000000000011,2 +11079,11137,11139,11197,0.015517241379394,0.083050847457551,0.020689655172488,0.077118644067694,0.020689655172499,0.088983050847361,0.025862068965593,0.083050847457504,-0.011864406779666,0.000000000000012,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779668,-0.000000000000011,2 +11080,11138,11140,11198,0.015517241379406,0.094915254237217,0.020689655172499,0.088983050847361,0.020689655172511,0.100847457627028,0.025862068965604,0.094915254237172,-0.011864406779666,0.000000000000012,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779668,-0.000000000000011,2 +11081,11139,11141,11199,0.015517241379417,0.106779661016879,0.020689655172511,0.100847457627028,0.020689655172522,0.112711864406688,0.025862068965615,0.106779661016837,-0.011864406779660,0.000000000000012,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779662,-0.000000000000011,2 +11082,11140,11142,11200,0.015517241379429,0.118644067796542,0.020689655172522,0.112711864406688,0.020689655172533,0.124576271186355,0.025862068965626,0.118644067796501,-0.011864406779666,0.000000000000012,-0.000000000000042,-0.010344827586197,0.000000000000039,0.010344827586196,0.011864406779668,-0.000000000000011,2 +11083,11141,11143,11201,0.015517241379441,0.130508474576207,0.020689655172533,0.124576271186355,0.020689655172545,0.136440677966021,0.025862068965637,0.130508474576169,-0.011864406779665,0.000000000000012,-0.000000000000039,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779666,-0.000000000000011,2 +11084,11142,11144,11202,0.015517241379453,0.142372881355872,0.020689655172545,0.136440677966021,0.020689655172556,0.148305084745687,0.025862068965648,0.142372881355835,-0.011864406779665,0.000000000000012,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779667,-0.000000000000011,2 +11085,11143,11145,11203,0.015517241379465,0.154237288135531,0.020689655172556,0.148305084745687,0.020689655172568,0.160169491525340,0.025862068965659,0.154237288135496,-0.011864406779653,0.000000000000012,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779654,-0.000000000000011,2 +11086,11144,11146,11204,0.015517241379477,0.166101694915186,0.020689655172568,0.160169491525340,0.020689655172579,0.172033898304999,0.025862068965670,0.166101694915153,-0.011864406779658,0.000000000000012,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779660,-0.000000000000011,2 +11087,11145,11147,11205,0.015517241379489,0.177966101694850,0.020689655172579,0.172033898304999,0.020689655172591,0.183898305084671,0.025862068965681,0.177966101694820,-0.011864406779671,0.000000000000012,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779674,-0.000000000000011,2 +11088,11146,11148,11206,0.015517241379501,0.189830508474512,0.020689655172591,0.183898305084671,0.020689655172602,0.195762711864325,0.025862068965692,0.189830508474484,-0.011864406779653,0.000000000000012,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779654,-0.000000000000011,2 +11089,11147,11149,11207,0.015517241379513,0.201694915254177,0.020689655172602,0.195762711864325,0.020689655172614,0.207627118644003,0.025862068965703,0.201694915254151,-0.011864406779676,0.000000000000012,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779679,-0.000000000000011,2 +11090,11148,11150,11208,0.015517241379525,0.213559322033843,0.020689655172614,0.207627118644003,0.020689655172625,0.219491525423659,0.025862068965714,0.213559322033819,-0.011864406779656,0.000000000000012,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779657,-0.000000000000011,2 +11091,11149,11151,11209,0.015517241379537,0.225423728813506,0.020689655172625,0.219491525423659,0.020689655172636,0.231355932203331,0.025862068965725,0.225423728813484,-0.011864406779670,0.000000000000012,-0.000000000000023,-0.010344827586188,0.000000000000021,0.010344827586187,0.011864406779673,-0.000000000000011,2 +11092,11150,11152,11210,0.015517241379549,0.237288135593173,0.020689655172636,0.231355932203331,0.020689655172648,0.243220338982996,0.025862068965735,0.237288135593153,-0.011864406779664,0.000000000000012,-0.000000000000021,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779666,-0.000000000000011,2 +11093,11151,11153,11211,0.015517241379561,0.249152542372835,0.020689655172648,0.243220338982996,0.020689655172659,0.255084745762656,0.025862068965746,0.249152542372817,-0.011864406779658,0.000000000000012,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779661,-0.000000000000011,2 +11094,11152,11154,11212,0.015517241379573,0.261016949152497,0.020689655172659,0.255084745762656,0.020689655172671,0.266949152542323,0.025862068965757,0.261016949152482,-0.011864406779666,0.000000000000012,-0.000000000000016,-0.010344827586185,0.000000000000014,0.010344827586184,0.011864406779669,-0.000000000000011,2 +11095,11153,11155,11213,0.015517241379584,0.272881355932159,0.020689655172671,0.266949152542323,0.020689655172682,0.278813559321982,0.025862068965768,0.272881355932146,-0.011864406779658,0.000000000000012,-0.000000000000014,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779660,-0.000000000000011,2 +11096,11154,11156,11214,0.015517241379596,0.284745762711827,0.020689655172682,0.278813559321982,0.020689655172694,0.290677966101661,0.025862068965779,0.284745762711816,-0.011864406779677,0.000000000000012,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779680,-0.000000000000011,2 +11097,11155,11157,11215,0.015517241379608,0.296610169491496,0.020689655172694,0.290677966101661,0.020689655172705,0.302542372881323,0.025862068965790,0.296610169491488,-0.011864406779662,0.000000000000012,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779663,-0.000000000000011,2 +11098,11156,11158,11216,0.015517241379620,0.308474576271162,0.020689655172705,0.302542372881323,0.020689655172716,0.314406779660995,0.025862068965801,0.308474576271155,-0.011864406779670,0.000000000000012,-0.000000000000008,-0.010344827586181,0.000000000000005,0.010344827586180,0.011864406779673,-0.000000000000011,2 +11099,11157,11159,11217,0.015517241379632,0.320338983050831,0.020689655172716,0.314406779660995,0.020689655172728,0.326271186440662,0.025862068965812,0.320338983050826,-0.011864406779667,0.000000000000012,-0.000000000000005,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779668,-0.000000000000011,2 +11100,11158,11160,11218,0.015517241379644,0.332203389830496,0.020689655172728,0.326271186440662,0.020689655172739,0.338135593220327,0.025862068965823,0.332203389830493,-0.011864406779664,0.000000000000012,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779666,-0.000000000000011,2 +7862,11101,11159,11219,0.020689655172751,0.350000000000000,0.015517241379656,0.344067796610164,0.020689655172739,0.338135593220327,0.025862068965834,0.344067796610163,-0.000000000000000,0.010344827586177,-0.011864406779671,0.000000000000012,-0.000000000000002,-0.010344827586178,0.011864406779674,-0.000000000000011,2 +8943,11102,11162,11220,0.031034482758311,-0.350000000000000,0.025862068965200,-0.344067796610168,0.031034482758321,-0.338135593220338,0.036206896551432,-0.344067796610170,-0.000000000000000,-0.010344827586233,-0.011864406779663,0.000000000000011,0.000000000000002,0.010344827586232,0.011864406779661,-0.000000000000010,2 +11103,11161,11163,11221,0.025862068965211,-0.332203389830509,0.031034482758321,-0.338135593220338,0.031034482758332,-0.326271186440683,0.036206896551442,-0.332203389830512,-0.011864406779656,0.000000000000011,-0.000000000000002,-0.010344827586232,0.000000000000004,0.010344827586231,0.011864406779654,-0.000000000000010,2 +11104,11162,11164,11222,0.025862068965222,-0.320338983050851,0.031034482758332,-0.326271186440683,0.031034482758342,-0.314406779661023,0.036206896551452,-0.320338983050856,-0.011864406779661,0.000000000000011,-0.000000000000004,-0.010344827586231,0.000000000000006,0.010344827586230,0.011864406779660,-0.000000000000010,2 +11105,11163,11165,11223,0.025862068965232,-0.308474576271190,0.031034482758342,-0.314406779661023,0.031034482758353,-0.302542372881365,0.036206896551462,-0.308474576271197,-0.011864406779659,0.000000000000011,-0.000000000000006,-0.010344827586230,0.000000000000008,0.010344827586229,0.011864406779657,-0.000000000000010,2 +11106,11164,11166,11224,0.025862068965243,-0.296610169491532,0.031034482758353,-0.302542372881365,0.031034482758363,-0.290677966101707,0.036206896551472,-0.296610169491540,-0.011864406779658,0.000000000000011,-0.000000000000008,-0.010344827586229,0.000000000000009,0.010344827586228,0.011864406779657,-0.000000000000010,2 +11107,11165,11167,11225,0.025862068965254,-0.284745762711870,0.031034482758363,-0.290677966101707,0.031034482758374,-0.278813559322044,0.036206896551482,-0.284745762711881,-0.011864406779665,0.000000000000011,-0.000000000000009,-0.010344827586228,0.000000000000012,0.010344827586228,0.011864406779662,-0.000000000000010,2 +11108,11166,11168,11226,0.025862068965265,-0.272881355932211,0.031034482758374,-0.278813559322044,0.031034482758384,-0.266949152542391,0.036206896551492,-0.272881355932224,-0.011864406779654,0.000000000000011,-0.000000000000012,-0.010344827586228,0.000000000000013,0.010344827586227,0.011864406779653,-0.000000000000010,2 +11109,11167,11169,11227,0.025862068965276,-0.261016949152557,0.031034482758384,-0.266949152542391,0.031034482758395,-0.255084745762737,0.036206896551502,-0.261016949152571,-0.011864406779655,0.000000000000011,-0.000000000000013,-0.010344827586227,0.000000000000016,0.010344827586226,0.011864406779652,-0.000000000000010,2 +11110,11168,11170,11228,0.025862068965287,-0.249152542372904,0.031034482758395,-0.255084745762737,0.031034482758405,-0.243220338983089,0.036206896551512,-0.249152542372922,-0.011864406779650,0.000000000000011,-0.000000000000016,-0.010344827586226,0.000000000000019,0.010344827586225,0.011864406779647,-0.000000000000010,2 +11111,11169,11171,11229,0.025862068965298,-0.237288135593251,0.031034482758405,-0.243220338983089,0.031034482758415,-0.231355932203433,0.036206896551522,-0.237288135593271,-0.011864406779657,0.000000000000011,-0.000000000000019,-0.010344827586225,0.000000000000020,0.010344827586224,0.011864406779655,-0.000000000000010,2 +11112,11170,11172,11230,0.025862068965309,-0.225423728813592,0.031034482758415,-0.231355932203433,0.031034482758426,-0.219491525423774,0.036206896551532,-0.225423728813614,-0.011864406779661,0.000000000000011,-0.000000000000020,-0.010344827586224,0.000000000000023,0.010344827586223,0.011864406779658,-0.000000000000010,2 +11113,11171,11173,11231,0.025862068965320,-0.213559322033937,0.031034482758426,-0.219491525423774,0.031034482758436,-0.207627118644124,0.036206896551542,-0.213559322033961,-0.011864406779650,0.000000000000011,-0.000000000000023,-0.010344827586223,0.000000000000024,0.010344827586222,0.011864406779649,-0.000000000000010,2 +11114,11172,11174,11232,0.025862068965331,-0.201694915254280,0.031034482758436,-0.207627118644124,0.031034482758447,-0.195762711864462,0.036206896551552,-0.201694915254306,-0.011864406779664,0.000000000000011,-0.000000000000024,-0.010344827586222,0.000000000000027,0.010344827586221,0.011864406779661,-0.000000000000010,2 +11115,11173,11175,11233,0.025862068965342,-0.189830508474625,0.031034482758447,-0.195762711864462,0.031034482758457,-0.183898305084817,0.036206896551562,-0.189830508474654,-0.011864406779646,0.000000000000011,-0.000000000000027,-0.010344827586221,0.000000000000029,0.010344827586220,0.011864406779645,-0.000000000000010,2 +11116,11174,11176,11234,0.025862068965353,-0.177966101694972,0.031034482758457,-0.183898305084817,0.031034482758468,-0.172033898305158,0.036206896551572,-0.177966101695003,-0.011864406779660,0.000000000000011,-0.000000000000029,-0.010344827586220,0.000000000000032,0.010344827586219,0.011864406779657,-0.000000000000010,2 +11117,11175,11177,11235,0.025862068965364,-0.166101694915317,0.031034482758468,-0.172033898305158,0.031034482758478,-0.160169491525509,0.036206896551582,-0.166101694915350,-0.011864406779650,0.000000000000011,-0.000000000000032,-0.010344827586219,0.000000000000034,0.010344827586218,0.011864406779648,-0.000000000000010,2 +11118,11176,11178,11236,0.025862068965375,-0.154237288135669,0.031034482758478,-0.160169491525509,0.031034482758489,-0.148305084745864,0.036206896551592,-0.154237288135704,-0.011864406779646,0.000000000000011,-0.000000000000034,-0.010344827586218,0.000000000000035,0.010344827586217,0.011864406779645,-0.000000000000010,2 +11119,11177,11179,11237,0.025862068965386,-0.142372881356018,0.031034482758489,-0.148305084745864,0.031034482758499,-0.136440677966210,0.036206896551602,-0.142372881356055,-0.011864406779655,0.000000000000011,-0.000000000000035,-0.010344827586217,0.000000000000038,0.010344827586216,0.011864406779653,-0.000000000000010,2 +11120,11178,11180,11238,0.025862068965396,-0.130508474576362,0.031034482758499,-0.136440677966210,0.031034482758510,-0.124576271186553,0.036206896551612,-0.130508474576400,-0.011864406779658,0.000000000000011,-0.000000000000038,-0.010344827586216,0.000000000000040,0.010344827586215,0.011864406779656,-0.000000000000010,2 +11121,11179,11181,11239,0.025862068965407,-0.118644067796705,0.031034482758510,-0.124576271186553,0.031034482758520,-0.112711864406898,0.036206896551622,-0.118644067796746,-0.011864406779656,0.000000000000011,-0.000000000000040,-0.010344827586215,0.000000000000042,0.010344827586215,0.011864406779654,-0.000000000000010,2 +11122,11180,11182,11240,0.025862068965418,-0.106779661017051,0.031034482758520,-0.112711864406898,0.031034482758531,-0.100847457627248,0.036206896551632,-0.106779661017094,-0.011864406779651,0.000000000000011,-0.000000000000042,-0.010344827586215,0.000000000000044,0.010344827586214,0.011864406779649,-0.000000000000010,2 +11123,11181,11183,11241,0.025862068965429,-0.094915254237398,0.031034482758531,-0.100847457627248,0.031034482758541,-0.088983050847593,0.036206896551643,-0.094915254237443,-0.011864406779656,0.000000000000011,-0.000000000000044,-0.010344827586214,0.000000000000046,0.010344827586213,0.011864406779653,-0.000000000000010,2 +11124,11182,11184,11242,0.025862068965440,-0.083050847457742,0.031034482758541,-0.088983050847593,0.031034482758552,-0.077118644067938,0.036206896551653,-0.083050847457790,-0.011864406779656,0.000000000000011,-0.000000000000046,-0.010344827586213,0.000000000000049,0.010344827586212,0.011864406779653,-0.000000000000010,2 +11125,11183,11185,11243,0.025862068965451,-0.071186440678088,0.031034482758552,-0.077118644067938,0.031034482758562,-0.065254237288288,0.036206896551663,-0.071186440678138,-0.011864406779651,0.000000000000011,-0.000000000000049,-0.010344827586212,0.000000000000051,0.010344827586211,0.011864406779649,-0.000000000000010,2 +11126,11184,11186,11244,0.025862068965462,-0.059322033898435,0.031034482758562,-0.065254237288288,0.031034482758573,-0.053389830508633,0.036206896551673,-0.059322033898487,-0.011864406779656,0.000000000000011,-0.000000000000051,-0.010344827586211,0.000000000000053,0.010344827586210,0.011864406779653,-0.000000000000010,2 +11127,11185,11187,11245,0.025862068965473,-0.047457627118780,0.031034482758573,-0.053389830508633,0.031034482758583,-0.041525423728981,0.036206896551683,-0.047457627118834,-0.011864406779654,0.000000000000011,-0.000000000000053,-0.010344827586210,0.000000000000056,0.010344827586209,0.011864406779652,-0.000000000000010,2 +11128,11186,11188,11246,0.025862068965484,-0.035593220339126,0.031034482758583,-0.041525423728981,0.031034482758593,-0.029661016949328,0.036206896551693,-0.035593220339183,-0.011864406779653,0.000000000000011,-0.000000000000056,-0.010344827586209,0.000000000000058,0.010344827586208,0.011864406779651,-0.000000000000010,2 +11129,11187,11189,11247,0.025862068965495,-0.023728813559472,0.031034482758593,-0.029661016949328,0.031034482758604,-0.017796610169674,0.036206896551703,-0.023728813559531,-0.011864406779656,0.000000000000011,-0.000000000000058,-0.010344827586208,0.000000000000060,0.010344827586207,0.011864406779653,-0.000000000000010,2 +11130,11188,11190,11248,0.025862068965506,-0.011864406779818,0.031034482758604,-0.017796610169674,0.031034482758614,-0.005932203390023,0.036206896551713,-0.011864406779879,-0.011864406779651,0.000000000000011,-0.000000000000060,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779649,-0.000000000000010,2 +11131,11189,11191,11249,0.025862068965517,-0.000000000000156,0.031034482758614,-0.005932203390023,0.031034482758625,0.005932203389649,0.036206896551723,-0.000000000000218,-0.011864406779673,0.000000000000011,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586205,0.011864406779673,-0.000000000000010,2 +11132,11190,11192,11250,0.025862068965528,0.011864406779511,0.031034482758625,0.005932203389649,0.031034482758635,0.017796610169312,0.036206896551733,0.011864406779450,-0.011864406779662,0.000000000000011,-0.000000000000062,-0.010344827586205,0.000000000000060,0.010344827586204,0.011864406779664,-0.000000000000010,2 +11133,11191,11193,11251,0.025862068965539,0.023728813559176,0.031034482758635,0.017796610169312,0.031034482758646,0.029661016948981,0.036206896551743,0.023728813559117,-0.011864406779668,0.000000000000011,-0.000000000000060,-0.010344827586204,0.000000000000058,0.010344827586204,0.011864406779671,-0.000000000000010,2 +11134,11192,11194,11252,0.025862068965550,0.035593220338842,0.031034482758646,0.029661016948981,0.031034482758656,0.041525423728647,0.036206896551753,0.035593220338786,-0.011864406779664,0.000000000000011,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779666,-0.000000000000010,2 +11135,11193,11195,11253,0.025862068965561,0.047457627118507,0.031034482758656,0.041525423728647,0.031034482758667,0.053389830508313,0.036206896551763,0.047457627118453,-0.011864406779665,0.000000000000011,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779668,-0.000000000000010,2 +11136,11194,11196,11254,0.025862068965571,0.059322033898174,0.031034482758667,0.053389830508313,0.031034482758677,0.065254237287983,0.036206896551773,0.059322033898122,-0.011864406779668,0.000000000000011,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779671,-0.000000000000010,2 +11137,11195,11197,11255,0.025862068965582,0.071186440677839,0.031034482758677,0.065254237287983,0.031034482758688,0.077118644067645,0.036206896551783,0.071186440677789,-0.011864406779662,0.000000000000011,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779664,-0.000000000000010,2 +11138,11196,11198,11256,0.025862068965593,0.083050847457504,0.031034482758688,0.077118644067645,0.031034482758698,0.088983050847314,0.036206896551793,0.083050847457456,-0.011864406779668,0.000000000000011,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779671,-0.000000000000010,2 +11139,11197,11199,11257,0.025862068965604,0.094915254237172,0.031034482758698,0.088983050847314,0.031034482758709,0.100847457626984,0.036206896551803,0.094915254237126,-0.011864406779668,0.000000000000011,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779670,-0.000000000000010,2 +11140,11198,11200,11258,0.025862068965615,0.106779661016837,0.031034482758709,0.100847457626984,0.031034482758719,0.112711864406646,0.036206896551813,0.106779661016794,-0.011864406779662,0.000000000000011,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779664,-0.000000000000010,2 +11141,11199,11201,11259,0.025862068965626,0.118644067796501,0.031034482758719,0.112711864406646,0.031034482758730,0.124576271186316,0.036206896551823,0.118644067796461,-0.011864406779668,0.000000000000011,-0.000000000000042,-0.010344827586197,0.000000000000040,0.010344827586196,0.011864406779670,-0.000000000000010,2 +11142,11200,11202,11260,0.025862068965637,0.130508474576169,0.031034482758730,0.124576271186316,0.031034482758740,0.136440677965983,0.036206896551833,0.130508474576130,-0.011864406779666,0.000000000000011,-0.000000000000040,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779668,-0.000000000000010,2 +11143,11201,11203,11261,0.025862068965648,0.142372881355835,0.031034482758740,0.136440677965983,0.031034482758751,0.148305084745651,0.036206896551843,0.142372881355799,-0.011864406779667,0.000000000000011,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779669,-0.000000000000010,2 +11144,11202,11204,11262,0.025862068965659,0.154237288135496,0.031034482758751,0.148305084745651,0.031034482758761,0.160169491525306,0.036206896551853,0.154237288135461,-0.011864406779654,0.000000000000011,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779656,-0.000000000000010,2 +11145,11203,11205,11263,0.025862068965670,0.166101694915153,0.031034482758761,0.160169491525306,0.031034482758772,0.172033898304967,0.036206896551863,0.166101694915120,-0.011864406779660,0.000000000000011,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779662,-0.000000000000010,2 +11146,11204,11206,11264,0.025862068965681,0.177966101694820,0.031034482758772,0.172033898304967,0.031034482758782,0.183898305084642,0.036206896551873,0.177966101694790,-0.011864406779674,0.000000000000011,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779676,-0.000000000000010,2 +11147,11205,11207,11265,0.025862068965692,0.189830508474484,0.031034482758782,0.183898305084642,0.031034482758793,0.195762711864297,0.036206896551883,0.189830508474456,-0.011864406779654,0.000000000000011,-0.000000000000029,-0.010344827586191,0.000000000000028,0.010344827586191,0.011864406779656,-0.000000000000010,2 +11148,11206,11208,11266,0.025862068965703,0.201694915254151,0.031034482758793,0.195762711864297,0.031034482758803,0.207627118643978,0.036206896551893,0.201694915254125,-0.011864406779679,0.000000000000011,-0.000000000000028,-0.010344827586191,0.000000000000024,0.010344827586190,0.011864406779682,-0.000000000000010,2 +11149,11207,11209,11267,0.025862068965714,0.213559322033819,0.031034482758803,0.207627118643978,0.031034482758813,0.219491525423636,0.036206896551903,0.213559322033795,-0.011864406779657,0.000000000000011,-0.000000000000024,-0.010344827586190,0.000000000000023,0.010344827586189,0.011864406779659,-0.000000000000010,2 +11150,11208,11210,11268,0.025862068965725,0.225423728813484,0.031034482758813,0.219491525423636,0.031034482758824,0.231355932203310,0.036206896551913,0.225423728813462,-0.011864406779673,0.000000000000011,-0.000000000000023,-0.010344827586189,0.000000000000020,0.010344827586188,0.011864406779675,-0.000000000000010,2 +11151,11209,11211,11269,0.025862068965735,0.237288135593153,0.031034482758824,0.231355932203310,0.031034482758834,0.243220338982977,0.036206896551923,0.237288135593134,-0.011864406779666,0.000000000000011,-0.000000000000020,-0.010344827586188,0.000000000000019,0.010344827586187,0.011864406779668,-0.000000000000010,2 +11152,11210,11212,11270,0.025862068965746,0.249152542372817,0.031034482758834,0.243220338982977,0.031034482758845,0.255084745762639,0.036206896551933,0.249152542372800,-0.011864406779661,0.000000000000011,-0.000000000000019,-0.010344827586187,0.000000000000016,0.010344827586186,0.011864406779663,-0.000000000000010,2 +11153,11211,11213,11271,0.025862068965757,0.261016949152482,0.031034482758845,0.255084745762639,0.031034482758855,0.266949152542310,0.036206896551943,0.261016949152467,-0.011864406779669,0.000000000000011,-0.000000000000016,-0.010344827586186,0.000000000000014,0.010344827586185,0.011864406779672,-0.000000000000010,2 +11154,11212,11214,11272,0.025862068965768,0.272881355932146,0.031034482758855,0.266949152542310,0.031034482758866,0.278813559321970,0.036206896551953,0.272881355932133,-0.011864406779660,0.000000000000011,-0.000000000000014,-0.010344827586185,0.000000000000012,0.010344827586184,0.011864406779661,-0.000000000000010,2 +11155,11213,11215,11273,0.025862068965779,0.284745762711816,0.031034482758866,0.278813559321970,0.031034482758876,0.290677966101652,0.036206896551963,0.284745762711805,-0.011864406779680,0.000000000000011,-0.000000000000012,-0.010344827586184,0.000000000000009,0.010344827586183,0.011864406779683,-0.000000000000010,2 +11156,11214,11216,11274,0.025862068965790,0.296610169491488,0.031034482758876,0.290677966101652,0.031034482758887,0.302542372881315,0.036206896551973,0.296610169491479,-0.011864406779663,0.000000000000011,-0.000000000000009,-0.010344827586183,0.000000000000008,0.010344827586182,0.011864406779663,-0.000000000000010,2 +11157,11215,11217,11275,0.025862068965801,0.308474576271155,0.031034482758887,0.302542372881315,0.031034482758897,0.314406779660989,0.036206896551983,0.308474576271148,-0.011864406779673,0.000000000000011,-0.000000000000008,-0.010344827586182,0.000000000000006,0.010344827586181,0.011864406779676,-0.000000000000010,2 +11158,11216,11218,11276,0.025862068965812,0.320338983050826,0.031034482758897,0.314406779660989,0.031034482758908,0.326271186440658,0.036206896551993,0.320338983050821,-0.011864406779668,0.000000000000011,-0.000000000000006,-0.010344827586181,0.000000000000004,0.010344827586180,0.011864406779669,-0.000000000000010,2 +11159,11217,11219,11277,0.025862068965823,0.332203389830493,0.031034482758908,0.326271186440658,0.031034482758918,0.338135593220325,0.036206896552003,0.332203389830490,-0.011864406779666,0.000000000000011,-0.000000000000004,-0.010344827586180,0.000000000000002,0.010344827586179,0.011864406779668,-0.000000000000010,2 +7848,11160,11218,11278,0.031034482758929,0.350000000000000,0.025862068965834,0.344067796610163,0.031034482758918,0.338135593220325,0.036206896552013,0.344067796610162,-0.000000000000000,0.010344827586179,-0.011864406779674,0.000000000000011,-0.000000000000002,-0.010344827586179,0.011864406779676,-0.000000000000010,2 +8944,11161,11221,11279,0.041379310344544,-0.350000000000000,0.036206896551432,-0.344067796610170,0.041379310344553,-0.338135593220340,0.046551724137665,-0.344067796610171,-0.000000000000000,-0.010344827586233,-0.011864406779661,0.000000000000010,0.000000000000002,0.010344827586232,0.011864406779659,-0.000000000000009,2 +11162,11220,11222,11280,0.036206896551442,-0.332203389830512,0.041379310344553,-0.338135593220340,0.041379310344563,-0.326271186440688,0.046551724137674,-0.332203389830515,-0.011864406779654,0.000000000000010,-0.000000000000002,-0.010344827586232,0.000000000000004,0.010344827586231,0.011864406779651,-0.000000000000009,2 +11163,11221,11223,11281,0.036206896551452,-0.320338983050856,0.041379310344563,-0.326271186440688,0.041379310344572,-0.314406779661028,0.046551724137683,-0.320338983050861,-0.011864406779660,0.000000000000010,-0.000000000000004,-0.010344827586231,0.000000000000006,0.010344827586230,0.011864406779658,-0.000000000000009,2 +11164,11222,11224,11282,0.036206896551462,-0.308474576271197,0.041379310344572,-0.314406779661028,0.041379310344582,-0.302542372881373,0.046551724137692,-0.308474576271204,-0.011864406779657,0.000000000000010,-0.000000000000006,-0.010344827586230,0.000000000000008,0.010344827586229,0.011864406779654,-0.000000000000009,2 +11165,11223,11225,11283,0.036206896551472,-0.296610169491540,0.041379310344582,-0.302542372881373,0.041379310344592,-0.290677966101717,0.046551724137701,-0.296610169491549,-0.011864406779657,0.000000000000010,-0.000000000000008,-0.010344827586229,0.000000000000009,0.010344827586229,0.011864406779656,-0.000000000000009,2 +11166,11224,11226,11284,0.036206896551482,-0.284745762711881,0.041379310344592,-0.290677966101717,0.041379310344601,-0.278813559322056,0.046551724137710,-0.284745762711892,-0.011864406779662,0.000000000000010,-0.000000000000009,-0.010344827586229,0.000000000000012,0.010344827586228,0.011864406779659,-0.000000000000009,2 +11167,11225,11227,11285,0.036206896551492,-0.272881355932224,0.041379310344601,-0.278813559322056,0.041379310344611,-0.266949152542404,0.046551724137720,-0.272881355932237,-0.011864406779653,0.000000000000010,-0.000000000000012,-0.010344827586228,0.000000000000013,0.010344827586227,0.011864406779651,-0.000000000000009,2 +11168,11226,11228,11286,0.036206896551502,-0.261016949152571,0.041379310344611,-0.266949152542404,0.041379310344620,-0.255084745762754,0.046551724137729,-0.261016949152586,-0.011864406779652,0.000000000000010,-0.000000000000013,-0.010344827586227,0.000000000000017,0.010344827586226,0.011864406779649,-0.000000000000009,2 +11169,11227,11229,11287,0.036206896551512,-0.249152542372922,0.041379310344620,-0.255084745762754,0.041379310344630,-0.243220338983108,0.046551724137738,-0.249152542372940,-0.011864406779647,0.000000000000010,-0.000000000000017,-0.010344827586226,0.000000000000019,0.010344827586225,0.011864406779645,-0.000000000000009,2 +11170,11228,11230,11288,0.036206896551522,-0.237288135593271,0.041379310344630,-0.243220338983108,0.041379310344639,-0.231355932203453,0.046551724137747,-0.237288135593290,-0.011864406779655,0.000000000000010,-0.000000000000019,-0.010344827586225,0.000000000000020,0.010344827586224,0.011864406779653,-0.000000000000009,2 +11171,11229,11231,11289,0.036206896551532,-0.225423728813614,0.041379310344639,-0.231355932203453,0.041379310344649,-0.219491525423797,0.046551724137756,-0.225423728813636,-0.011864406779658,0.000000000000010,-0.000000000000020,-0.010344827586224,0.000000000000023,0.010344827586223,0.011864406779656,-0.000000000000009,2 +11172,11230,11232,11290,0.036206896551542,-0.213559322033961,0.041379310344649,-0.219491525423797,0.041379310344659,-0.207627118644149,0.046551724137765,-0.213559322033984,-0.011864406779649,0.000000000000010,-0.000000000000023,-0.010344827586223,0.000000000000024,0.010344827586222,0.011864406779647,-0.000000000000009,2 +11173,11231,11233,11291,0.036206896551552,-0.201694915254306,0.041379310344659,-0.207627118644149,0.041379310344668,-0.195762711864490,0.046551724137774,-0.201694915254332,-0.011864406779661,0.000000000000010,-0.000000000000024,-0.010344827586222,0.000000000000027,0.010344827586222,0.011864406779658,-0.000000000000009,2 +11174,11232,11234,11292,0.036206896551562,-0.189830508474654,0.041379310344668,-0.195762711864490,0.041379310344678,-0.183898305084846,0.046551724137784,-0.189830508474682,-0.011864406779645,0.000000000000010,-0.000000000000027,-0.010344827586222,0.000000000000029,0.010344827586221,0.011864406779643,-0.000000000000009,2 +11175,11233,11235,11293,0.036206896551572,-0.177966101695003,0.041379310344678,-0.183898305084846,0.041379310344687,-0.172033898305190,0.046551724137793,-0.177966101695033,-0.011864406779657,0.000000000000010,-0.000000000000029,-0.010344827586221,0.000000000000032,0.010344827586220,0.011864406779654,-0.000000000000009,2 +11176,11234,11236,11294,0.036206896551582,-0.166101694915350,0.041379310344687,-0.172033898305190,0.041379310344697,-0.160169491525543,0.046551724137802,-0.166101694915383,-0.011864406779648,0.000000000000010,-0.000000000000032,-0.010344827586220,0.000000000000034,0.010344827586219,0.011864406779646,-0.000000000000009,2 +11177,11235,11237,11295,0.036206896551592,-0.154237288135704,0.041379310344697,-0.160169491525543,0.041379310344707,-0.148305084745899,0.046551724137811,-0.154237288135738,-0.011864406779645,0.000000000000010,-0.000000000000034,-0.010344827586219,0.000000000000035,0.010344827586218,0.011864406779643,-0.000000000000009,2 +11178,11236,11238,11296,0.036206896551602,-0.142372881356055,0.041379310344707,-0.148305084745899,0.041379310344716,-0.136440677966247,0.046551724137820,-0.142372881356092,-0.011864406779653,0.000000000000010,-0.000000000000035,-0.010344827586218,0.000000000000038,0.010344827586217,0.011864406779651,-0.000000000000009,2 +11179,11237,11239,11297,0.036206896551612,-0.130508474576400,0.041379310344716,-0.136440677966247,0.041379310344726,-0.124576271186592,0.046551724137829,-0.130508474576439,-0.011864406779656,0.000000000000010,-0.000000000000038,-0.010344827586217,0.000000000000040,0.010344827586216,0.011864406779654,-0.000000000000009,2 +11180,11238,11240,11298,0.036206896551622,-0.118644067796746,0.041379310344726,-0.124576271186592,0.041379310344735,-0.112711864406940,0.046551724137838,-0.118644067796787,-0.011864406779654,0.000000000000010,-0.000000000000040,-0.010344827586216,0.000000000000042,0.010344827586215,0.011864406779651,-0.000000000000009,2 +11181,11239,11241,11299,0.036206896551632,-0.106779661017094,0.041379310344735,-0.112711864406940,0.041379310344745,-0.100847457627292,0.046551724137848,-0.106779661017137,-0.011864406779649,0.000000000000010,-0.000000000000042,-0.010344827586215,0.000000000000044,0.010344827586215,0.011864406779647,-0.000000000000009,2 +11182,11240,11242,11300,0.036206896551643,-0.094915254237443,0.041379310344745,-0.100847457627292,0.041379310344754,-0.088983050847639,0.046551724137857,-0.094915254237488,-0.011864406779653,0.000000000000010,-0.000000000000044,-0.010344827586215,0.000000000000046,0.010344827586214,0.011864406779651,-0.000000000000009,2 +11183,11241,11243,11301,0.036206896551653,-0.083050847457790,0.041379310344754,-0.088983050847639,0.041379310344764,-0.077118644067987,0.046551724137866,-0.083050847457837,-0.011864406779653,0.000000000000010,-0.000000000000046,-0.010344827586214,0.000000000000049,0.010344827586213,0.011864406779651,-0.000000000000009,2 +11184,11242,11244,11302,0.036206896551663,-0.071186440678138,0.041379310344764,-0.077118644067987,0.041379310344774,-0.065254237288339,0.046551724137875,-0.071186440678188,-0.011864406779649,0.000000000000010,-0.000000000000049,-0.010344827586213,0.000000000000051,0.010344827586212,0.011864406779647,-0.000000000000009,2 +11185,11243,11245,11303,0.036206896551673,-0.059322033898487,0.041379310344774,-0.065254237288339,0.041379310344783,-0.053389830508687,0.046551724137884,-0.059322033898539,-0.011864406779653,0.000000000000010,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779651,-0.000000000000009,2 +11186,11244,11246,11304,0.036206896551683,-0.047457627118834,0.041379310344783,-0.053389830508687,0.041379310344793,-0.041525423729036,0.046551724137893,-0.047457627118889,-0.011864406779652,0.000000000000010,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779649,-0.000000000000009,2 +11187,11245,11247,11305,0.036206896551693,-0.035593220339183,0.041379310344793,-0.041525423729036,0.041379310344802,-0.029661016949386,0.046551724137902,-0.035593220339240,-0.011864406779651,0.000000000000010,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779649,-0.000000000000009,2 +11188,11246,11248,11306,0.036206896551703,-0.023728813559531,0.041379310344802,-0.029661016949386,0.041379310344812,-0.017796610169734,0.046551724137912,-0.023728813559590,-0.011864406779653,0.000000000000010,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586209,0.011864406779651,-0.000000000000009,2 +11189,11247,11249,11307,0.036206896551713,-0.011864406779879,0.041379310344812,-0.017796610169734,0.041379310344821,-0.005932203390086,0.046551724137921,-0.011864406779941,-0.011864406779649,0.000000000000010,-0.000000000000060,-0.010344827586209,0.000000000000062,0.010344827586208,0.011864406779647,-0.000000000000009,2 +11190,11248,11250,11308,0.036206896551723,-0.000000000000218,0.041379310344821,-0.005932203390086,0.041379310344831,0.005932203389587,0.046551724137930,-0.000000000000281,-0.011864406779673,0.000000000000010,-0.000000000000062,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000009,2 +11191,11249,11251,11309,0.036206896551733,0.011864406779450,0.041379310344831,0.005932203389587,0.041379310344841,0.017796610169252,0.046551724137939,0.011864406779389,-0.011864406779664,0.000000000000010,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586206,0.011864406779666,-0.000000000000009,2 +11192,11250,11252,11310,0.036206896551743,0.023728813559117,0.041379310344841,0.017796610169252,0.041379310344850,0.029661016948923,0.046551724137948,0.023728813559058,-0.011864406779671,0.000000000000010,-0.000000000000060,-0.010344827586206,0.000000000000058,0.010344827586205,0.011864406779673,-0.000000000000009,2 +11193,11251,11253,11311,0.036206896551753,0.035593220338786,0.041379310344850,0.029661016948923,0.041379310344860,0.041525423728591,0.046551724137957,0.035593220338729,-0.011864406779666,0.000000000000010,-0.000000000000058,-0.010344827586205,0.000000000000056,0.010344827586204,0.011864406779669,-0.000000000000009,2 +11194,11252,11254,11312,0.036206896551763,0.047457627118453,0.041379310344860,0.041525423728591,0.041379310344869,0.053389830508260,0.046551724137966,0.047457627118398,-0.011864406779668,0.000000000000010,-0.000000000000056,-0.010344827586204,0.000000000000053,0.010344827586203,0.011864406779670,-0.000000000000009,2 +11195,11253,11255,11313,0.036206896551773,0.059322033898122,0.041379310344869,0.053389830508260,0.041379310344879,0.065254237287932,0.046551724137976,0.059322033898070,-0.011864406779671,0.000000000000010,-0.000000000000053,-0.010344827586203,0.000000000000051,0.010344827586202,0.011864406779673,-0.000000000000009,2 +11196,11254,11256,11314,0.036206896551783,0.071186440677789,0.041379310344879,0.065254237287932,0.041379310344888,0.077118644067596,0.046551724137985,0.071186440677739,-0.011864406779664,0.000000000000010,-0.000000000000051,-0.010344827586202,0.000000000000049,0.010344827586202,0.011864406779666,-0.000000000000009,2 +11197,11255,11257,11315,0.036206896551793,0.083050847457456,0.041379310344888,0.077118644067596,0.041379310344898,0.088983050847268,0.046551724137994,0.083050847457408,-0.011864406779671,0.000000000000010,-0.000000000000049,-0.010344827586202,0.000000000000046,0.010344827586201,0.011864406779673,-0.000000000000009,2 +11198,11256,11258,11316,0.036206896551803,0.094915254237126,0.041379310344898,0.088983050847268,0.041379310344908,0.100847457626940,0.046551724138003,0.094915254237081,-0.011864406779670,0.000000000000010,-0.000000000000046,-0.010344827586201,0.000000000000044,0.010344827586200,0.011864406779673,-0.000000000000009,2 +11199,11257,11259,11317,0.036206896551813,0.106779661016794,0.041379310344908,0.100847457626940,0.041379310344917,0.112711864406604,0.046551724138012,0.106779661016751,-0.011864406779664,0.000000000000010,-0.000000000000044,-0.010344827586200,0.000000000000042,0.010344827586199,0.011864406779666,-0.000000000000009,2 +11200,11258,11260,11318,0.036206896551823,0.118644067796461,0.041379310344917,0.112711864406604,0.041379310344927,0.124576271186276,0.046551724138021,0.118644067796420,-0.011864406779670,0.000000000000010,-0.000000000000042,-0.010344827586199,0.000000000000039,0.010344827586198,0.011864406779673,-0.000000000000009,2 +11201,11259,11261,11319,0.036206896551833,0.130508474576130,0.041379310344927,0.124576271186276,0.041379310344936,0.136440677965945,0.046551724138030,0.130508474576091,-0.011864406779668,0.000000000000010,-0.000000000000039,-0.010344827586198,0.000000000000038,0.010344827586197,0.011864406779670,-0.000000000000009,2 +11202,11260,11262,11320,0.036206896551843,0.142372881355799,0.041379310344936,0.136440677965945,0.041379310344946,0.148305084745616,0.046551724138039,0.142372881355762,-0.011864406779669,0.000000000000010,-0.000000000000038,-0.010344827586197,0.000000000000035,0.010344827586196,0.011864406779672,-0.000000000000009,2 +11203,11261,11263,11321,0.036206896551853,0.154237288135461,0.041379310344946,0.148305084745616,0.041379310344955,0.160169491525272,0.046551724138049,0.154237288135427,-0.011864406779656,0.000000000000010,-0.000000000000035,-0.010344827586196,0.000000000000034,0.010344827586195,0.011864406779657,-0.000000000000009,2 +11204,11262,11264,11322,0.036206896551863,0.166101694915120,0.041379310344955,0.160169491525272,0.041379310344965,0.172033898304935,0.046551724138058,0.166101694915087,-0.011864406779662,0.000000000000010,-0.000000000000034,-0.010344827586195,0.000000000000032,0.010344827586195,0.011864406779664,-0.000000000000009,2 +11205,11263,11265,11323,0.036206896551873,0.177966101694790,0.041379310344965,0.172033898304935,0.041379310344975,0.183898305084613,0.046551724138067,0.177966101694759,-0.011864406779676,0.000000000000010,-0.000000000000032,-0.010344827586195,0.000000000000029,0.010344827586194,0.011864406779679,-0.000000000000009,2 +11206,11264,11266,11324,0.036206896551883,0.189830508474456,0.041379310344975,0.183898305084613,0.041379310344984,0.195762711864270,0.046551724138076,0.189830508474428,-0.011864406779656,0.000000000000010,-0.000000000000029,-0.010344827586194,0.000000000000027,0.010344827586193,0.011864406779657,-0.000000000000009,2 +11207,11265,11267,11325,0.036206896551893,0.201694915254125,0.041379310344984,0.195762711864270,0.041379310344994,0.207627118643954,0.046551724138085,0.201694915254099,-0.011864406779682,0.000000000000010,-0.000000000000027,-0.010344827586193,0.000000000000024,0.010344827586192,0.011864406779685,-0.000000000000009,2 +11208,11266,11268,11326,0.036206896551903,0.213559322033795,0.041379310344994,0.207627118643954,0.041379310345003,0.219491525423613,0.046551724138094,0.213559322033772,-0.011864406779659,0.000000000000010,-0.000000000000024,-0.010344827586192,0.000000000000023,0.010344827586191,0.011864406779660,-0.000000000000009,2 +11209,11267,11269,11327,0.036206896551913,0.225423728813462,0.041379310345003,0.219491525423613,0.041379310345013,0.231355932203290,0.046551724138103,0.225423728813441,-0.011864406779675,0.000000000000010,-0.000000000000023,-0.010344827586191,0.000000000000020,0.010344827586190,0.011864406779678,-0.000000000000009,2 +11210,11268,11270,11328,0.036206896551923,0.237288135593134,0.041379310345013,0.231355932203290,0.041379310345023,0.243220338982959,0.046551724138113,0.237288135593114,-0.011864406779668,0.000000000000010,-0.000000000000020,-0.010344827586190,0.000000000000019,0.010344827586189,0.011864406779670,-0.000000000000009,2 +11211,11269,11271,11329,0.036206896551933,0.249152542372800,0.041379310345023,0.243220338982959,0.041379310345032,0.255084745762623,0.046551724138122,0.249152542372782,-0.011864406779663,0.000000000000010,-0.000000000000019,-0.010344827586189,0.000000000000017,0.010344827586188,0.011864406779665,-0.000000000000009,2 +11212,11270,11272,11330,0.036206896551943,0.261016949152467,0.041379310345032,0.255084745762623,0.041379310345042,0.266949152542296,0.046551724138131,0.261016949152452,-0.011864406779672,0.000000000000010,-0.000000000000017,-0.010344827586188,0.000000000000014,0.010344827586188,0.011864406779675,-0.000000000000009,2 +11213,11271,11273,11331,0.036206896551953,0.272881355932133,0.041379310345042,0.266949152542296,0.041379310345051,0.278813559321957,0.046551724138140,0.272881355932120,-0.011864406779661,0.000000000000010,-0.000000000000014,-0.010344827586188,0.000000000000012,0.010344827586187,0.011864406779662,-0.000000000000009,2 +11214,11272,11274,11332,0.036206896551963,0.284745762711805,0.041379310345051,0.278813559321957,0.041379310345061,0.290677966101642,0.046551724138149,0.284745762711794,-0.011864406779683,0.000000000000010,-0.000000000000012,-0.010344827586187,0.000000000000009,0.010344827586186,0.011864406779686,-0.000000000000009,2 +11215,11273,11275,11333,0.036206896551973,0.296610169491479,0.041379310345061,0.290677966101642,0.041379310345070,0.302542372881306,0.046551724138158,0.296610169491470,-0.011864406779663,0.000000000000010,-0.000000000000009,-0.010344827586186,0.000000000000008,0.010344827586185,0.011864406779664,-0.000000000000009,2 +11216,11274,11276,11334,0.036206896551983,0.308474576271148,0.041379310345070,0.302542372881306,0.041379310345080,0.314406779660983,0.046551724138167,0.308474576271141,-0.011864406779676,0.000000000000010,-0.000000000000008,-0.010344827586185,0.000000000000006,0.010344827586184,0.011864406779679,-0.000000000000009,2 +11217,11275,11277,11335,0.036206896551993,0.320338983050821,0.041379310345080,0.314406779660983,0.041379310345090,0.326271186440654,0.046551724138177,0.320338983050816,-0.011864406779669,0.000000000000010,-0.000000000000006,-0.010344827586184,0.000000000000004,0.010344827586183,0.011864406779671,-0.000000000000009,2 +11218,11276,11278,11336,0.036206896552003,0.332203389830490,0.041379310345090,0.326271186440654,0.041379310345099,0.338135593220323,0.046551724138186,0.332203389830487,-0.011864406779668,0.000000000000010,-0.000000000000004,-0.010344827586183,0.000000000000002,0.010344827586182,0.011864406779671,-0.000000000000009,2 +7834,11219,11277,11337,0.041379310345109,0.350000000000000,0.036206896552013,0.344067796610162,0.041379310345099,0.338135593220323,0.046551724138195,0.344067796610161,-0.000000000000000,0.010344827586182,-0.011864406779676,0.000000000000010,-0.000000000000002,-0.010344827586182,0.011864406779678,-0.000000000000009,2 +8945,11220,11280,11338,0.051724137930777,-0.350000000000000,0.046551724137665,-0.344067796610171,0.051724137930785,-0.338135593220342,0.056896551723897,-0.344067796610172,-0.000000000000000,-0.010344827586233,-0.011864406779659,0.000000000000009,0.000000000000002,0.010344827586232,0.011864406779657,-0.000000000000008,2 +11221,11279,11281,11339,0.046551724137674,-0.332203389830515,0.051724137930785,-0.338135593220342,0.051724137930794,-0.326271186440692,0.056896551723905,-0.332203389830519,-0.011864406779651,0.000000000000009,-0.000000000000002,-0.010344827586232,0.000000000000004,0.010344827586231,0.011864406779650,-0.000000000000008,2 +11222,11280,11282,11340,0.046551724137683,-0.320338983050861,0.051724137930794,-0.326271186440692,0.051724137930803,-0.314406779661034,0.056896551723914,-0.320338983050865,-0.011864406779658,0.000000000000009,-0.000000000000004,-0.010344827586231,0.000000000000006,0.010344827586230,0.011864406779657,-0.000000000000008,2 +11223,11281,11283,11341,0.046551724137692,-0.308474576271204,0.051724137930803,-0.314406779661034,0.051724137930811,-0.302542372881381,0.056896551723922,-0.308474576271211,-0.011864406779654,0.000000000000009,-0.000000000000006,-0.010344827586230,0.000000000000008,0.010344827586229,0.011864406779651,-0.000000000000008,2 +11224,11282,11284,11342,0.046551724137701,-0.296610169491549,0.051724137930811,-0.302542372881381,0.051724137930820,-0.290677966101726,0.056896551723930,-0.296610169491558,-0.011864406779656,0.000000000000009,-0.000000000000008,-0.010344827586229,0.000000000000009,0.010344827586228,0.011864406779655,-0.000000000000008,2 +11225,11283,11285,11343,0.046551724137710,-0.284745762711892,0.051724137930820,-0.290677966101726,0.051724137930829,-0.278813559322069,0.056896551723938,-0.284745762711903,-0.011864406779659,0.000000000000009,-0.000000000000009,-0.010344827586228,0.000000000000012,0.010344827586227,0.011864406779656,-0.000000000000008,2 +11226,11284,11286,11344,0.046551724137720,-0.272881355932237,0.051724137930829,-0.278813559322069,0.051724137930837,-0.266949152542418,0.056896551723946,-0.272881355932250,-0.011864406779651,0.000000000000009,-0.000000000000012,-0.010344827586227,0.000000000000014,0.010344827586226,0.011864406779650,-0.000000000000008,2 +11227,11285,11287,11345,0.046551724137729,-0.261016949152586,0.051724137930837,-0.266949152542418,0.051724137930846,-0.255084745762770,0.056896551723955,-0.261016949152601,-0.011864406779649,0.000000000000009,-0.000000000000014,-0.010344827586226,0.000000000000016,0.010344827586225,0.011864406779646,-0.000000000000008,2 +11228,11286,11288,11346,0.046551724137738,-0.249152542372940,0.051724137930846,-0.255084745762770,0.051724137930855,-0.243220338983126,0.056896551723963,-0.249152542372957,-0.011864406779645,0.000000000000009,-0.000000000000016,-0.010344827586225,0.000000000000019,0.010344827586224,0.011864406779643,-0.000000000000008,2 +11229,11287,11289,11347,0.046551724137747,-0.237288135593290,0.051724137930855,-0.243220338983126,0.051724137930863,-0.231355932203474,0.056896551723971,-0.237288135593310,-0.011864406779653,0.000000000000009,-0.000000000000019,-0.010344827586224,0.000000000000021,0.010344827586223,0.011864406779651,-0.000000000000008,2 +11230,11288,11290,11348,0.046551724137756,-0.225423728813636,0.051724137930863,-0.231355932203474,0.051724137930872,-0.219491525423819,0.056896551723979,-0.225423728813658,-0.011864406779656,0.000000000000009,-0.000000000000021,-0.010344827586223,0.000000000000023,0.010344827586223,0.011864406779653,-0.000000000000008,2 +11231,11289,11291,11349,0.046551724137765,-0.213559322033984,0.051724137930872,-0.219491525423819,0.051724137930881,-0.207627118644173,0.056896551723987,-0.213559322034008,-0.011864406779647,0.000000000000009,-0.000000000000023,-0.010344827586223,0.000000000000024,0.010344827586222,0.011864406779646,-0.000000000000008,2 +11232,11290,11292,11350,0.046551724137774,-0.201694915254332,0.051724137930881,-0.207627118644173,0.051724137930889,-0.195762711864517,0.056896551723996,-0.201694915254358,-0.011864406779658,0.000000000000009,-0.000000000000024,-0.010344827586222,0.000000000000028,0.010344827586221,0.011864406779654,-0.000000000000008,2 +11233,11291,11293,11351,0.046551724137784,-0.189830508474682,0.051724137930889,-0.195762711864517,0.051724137930898,-0.183898305084875,0.056896551724004,-0.189830508474710,-0.011864406779643,0.000000000000009,-0.000000000000028,-0.010344827586221,0.000000000000029,0.010344827586220,0.011864406779641,-0.000000000000008,2 +11234,11292,11294,11352,0.046551724137793,-0.177966101695033,0.051724137930898,-0.183898305084875,0.051724137930907,-0.172033898305222,0.056896551724012,-0.177966101695064,-0.011864406779654,0.000000000000009,-0.000000000000029,-0.010344827586220,0.000000000000032,0.010344827586219,0.011864406779652,-0.000000000000008,2 +11235,11293,11295,11353,0.046551724137802,-0.166101694915383,0.051724137930907,-0.172033898305222,0.051724137930915,-0.160169491525577,0.056896551724020,-0.166101694915416,-0.011864406779646,0.000000000000009,-0.000000000000032,-0.010344827586219,0.000000000000034,0.010344827586218,0.011864406779644,-0.000000000000008,2 +11236,11294,11296,11354,0.046551724137811,-0.154237288135738,0.051724137930915,-0.160169491525577,0.051724137930924,-0.148305084745935,0.056896551724028,-0.154237288135773,-0.011864406779643,0.000000000000009,-0.000000000000034,-0.010344827586218,0.000000000000035,0.010344827586217,0.011864406779641,-0.000000000000008,2 +11237,11295,11297,11355,0.046551724137820,-0.142372881356092,0.051724137930924,-0.148305084745935,0.051724137930933,-0.136440677966285,0.056896551724037,-0.142372881356128,-0.011864406779651,0.000000000000009,-0.000000000000035,-0.010344827586217,0.000000000000038,0.010344827586216,0.011864406779648,-0.000000000000008,2 +11238,11296,11298,11356,0.046551724137829,-0.130508474576439,0.051724137930933,-0.136440677966285,0.051724137930941,-0.124576271186632,0.056896551724045,-0.130508474576478,-0.011864406779654,0.000000000000009,-0.000000000000038,-0.010344827586216,0.000000000000039,0.010344827586215,0.011864406779653,-0.000000000000008,2 +11239,11297,11299,11357,0.046551724137838,-0.118644067796787,0.051724137930941,-0.124576271186632,0.051724137930950,-0.112711864406982,0.056896551724053,-0.118644067796827,-0.011864406779651,0.000000000000009,-0.000000000000039,-0.010344827586215,0.000000000000042,0.010344827586214,0.011864406779649,-0.000000000000008,2 +11240,11298,11300,11358,0.046551724137848,-0.106779661017137,0.051724137930950,-0.112711864406982,0.051724137930959,-0.100847457627336,0.056896551724061,-0.106779661017180,-0.011864406779647,0.000000000000009,-0.000000000000042,-0.010344827586214,0.000000000000044,0.010344827586213,0.011864406779645,-0.000000000000008,2 +11241,11299,11301,11359,0.046551724137857,-0.094915254237488,0.051724137930959,-0.100847457627336,0.051724137930967,-0.088983050847686,0.056896551724069,-0.094915254237533,-0.011864406779651,0.000000000000009,-0.000000000000044,-0.010344827586213,0.000000000000046,0.010344827586212,0.011864406779649,-0.000000000000008,2 +11242,11300,11302,11360,0.046551724137866,-0.083050847457837,0.051724137930967,-0.088983050847686,0.051724137930976,-0.077118644068036,0.056896551724078,-0.083050847457885,-0.011864406779651,0.000000000000009,-0.000000000000046,-0.010344827586212,0.000000000000049,0.010344827586211,0.011864406779649,-0.000000000000008,2 +11243,11301,11303,11361,0.046551724137875,-0.071186440678188,0.051724137930976,-0.077118644068036,0.051724137930985,-0.065254237288390,0.056896551724086,-0.071186440678238,-0.011864406779647,0.000000000000009,-0.000000000000049,-0.010344827586211,0.000000000000051,0.010344827586210,0.011864406779645,-0.000000000000008,2 +11244,11302,11304,11362,0.046551724137884,-0.059322033898539,0.051724137930985,-0.065254237288390,0.051724137930993,-0.053389830508740,0.056896551724094,-0.059322033898591,-0.011864406779651,0.000000000000009,-0.000000000000051,-0.010344827586210,0.000000000000053,0.010344827586209,0.011864406779649,-0.000000000000008,2 +11245,11303,11305,11363,0.046551724137893,-0.047457627118889,0.051724137930993,-0.053389830508740,0.051724137931002,-0.041525423729092,0.056896551724102,-0.047457627118943,-0.011864406779649,0.000000000000009,-0.000000000000053,-0.010344827586209,0.000000000000056,0.010344827586208,0.011864406779647,-0.000000000000008,2 +11246,11304,11306,11364,0.046551724137902,-0.035593220339240,0.051724137931002,-0.041525423729092,0.051724137931011,-0.029661016949444,0.056896551724110,-0.035593220339296,-0.011864406779649,0.000000000000009,-0.000000000000056,-0.010344827586208,0.000000000000058,0.010344827586207,0.011864406779647,-0.000000000000008,2 +11247,11305,11307,11365,0.046551724137912,-0.023728813559590,0.051724137931011,-0.029661016949444,0.051724137931019,-0.017796610169794,0.056896551724119,-0.023728813559649,-0.011864406779651,0.000000000000009,-0.000000000000058,-0.010344827586207,0.000000000000060,0.010344827586207,0.011864406779649,-0.000000000000008,2 +11248,11306,11308,11366,0.046551724137921,-0.011864406779941,0.051724137931019,-0.017796610169794,0.051724137931028,-0.005932203390148,0.056896551724127,-0.011864406780002,-0.011864406779647,0.000000000000009,-0.000000000000060,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779645,-0.000000000000008,2 +11249,11307,11309,11367,0.046551724137930,-0.000000000000281,0.051724137931028,-0.005932203390148,0.051724137931037,0.005932203389525,0.056896551724135,-0.000000000000343,-0.011864406779673,0.000000000000009,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586205,0.011864406779673,-0.000000000000008,2 +11250,11308,11310,11368,0.046551724137939,0.011864406779389,0.051724137931037,0.005932203389525,0.051724137931045,0.017796610169191,0.056896551724143,0.011864406779327,-0.011864406779666,0.000000000000009,-0.000000000000062,-0.010344827586205,0.000000000000060,0.010344827586204,0.011864406779668,-0.000000000000008,2 +11251,11309,11311,11369,0.046551724137948,0.023728813559058,0.051724137931045,0.017796610169191,0.051724137931054,0.029661016948866,0.056896551724151,0.023728813558999,-0.011864406779673,0.000000000000009,-0.000000000000060,-0.010344827586204,0.000000000000058,0.010344827586203,0.011864406779675,-0.000000000000008,2 +11252,11310,11312,11370,0.046551724137957,0.035593220338729,0.051724137931054,0.029661016948866,0.051724137931063,0.041525423728535,0.056896551724160,0.035593220338672,-0.011864406779669,0.000000000000009,-0.000000000000058,-0.010344827586203,0.000000000000056,0.010344827586202,0.011864406779671,-0.000000000000008,2 +11253,11311,11313,11371,0.046551724137966,0.047457627118398,0.051724137931063,0.041525423728535,0.051724137931071,0.053389830508206,0.056896551724168,0.047457627118344,-0.011864406779670,0.000000000000009,-0.000000000000056,-0.010344827586202,0.000000000000053,0.010344827586201,0.011864406779672,-0.000000000000008,2 +11254,11312,11314,11372,0.046551724137976,0.059322033898070,0.051724137931071,0.053389830508206,0.051724137931080,0.065254237287881,0.056896551724176,0.059322033898017,-0.011864406779673,0.000000000000009,-0.000000000000053,-0.010344827586201,0.000000000000051,0.010344827586200,0.011864406779675,-0.000000000000008,2 +11255,11313,11315,11373,0.046551724137985,0.071186440677739,0.051724137931080,0.065254237287881,0.051724137931089,0.077118644067547,0.056896551724184,0.071186440677689,-0.011864406779666,0.000000000000009,-0.000000000000051,-0.010344827586200,0.000000000000049,0.010344827586199,0.011864406779668,-0.000000000000008,2 +11256,11314,11316,11374,0.046551724137994,0.083050847457408,0.051724137931089,0.077118644067547,0.051724137931097,0.088983050847222,0.056896551724192,0.083050847457361,-0.011864406779673,0.000000000000009,-0.000000000000049,-0.010344827586199,0.000000000000046,0.010344827586198,0.011864406779675,-0.000000000000008,2 +11257,11315,11317,11375,0.046551724138003,0.094915254237081,0.051724137931097,0.088983050847222,0.051724137931106,0.100847457626896,0.056896551724201,0.094915254237036,-0.011864406779673,0.000000000000009,-0.000000000000046,-0.010344827586198,0.000000000000044,0.010344827586197,0.011864406779675,-0.000000000000008,2 +11258,11316,11318,11376,0.046551724138012,0.106779661016751,0.051724137931106,0.100847457626896,0.051724137931115,0.112711864406563,0.056896551724209,0.106779661016708,-0.011864406779666,0.000000000000009,-0.000000000000044,-0.010344827586197,0.000000000000042,0.010344827586196,0.011864406779668,-0.000000000000008,2 +11259,11317,11319,11377,0.046551724138021,0.118644067796420,0.051724137931115,0.112711864406563,0.051724137931123,0.124576271186237,0.056896551724217,0.118644067796379,-0.011864406779673,0.000000000000009,-0.000000000000042,-0.010344827586196,0.000000000000039,0.010344827586195,0.011864406779675,-0.000000000000008,2 +11260,11318,11320,11378,0.046551724138030,0.130508474576091,0.051724137931123,0.124576271186237,0.051724137931132,0.136440677965907,0.056896551724225,0.130508474576053,-0.011864406779670,0.000000000000009,-0.000000000000039,-0.010344827586195,0.000000000000038,0.010344827586194,0.011864406779671,-0.000000000000008,2 +11261,11319,11321,11379,0.046551724138039,0.142372881355762,0.051724137931132,0.136440677965907,0.051724137931141,0.148305084745580,0.056896551724233,0.142372881355726,-0.011864406779672,0.000000000000009,-0.000000000000038,-0.010344827586194,0.000000000000035,0.010344827586193,0.011864406779674,-0.000000000000008,2 +11262,11320,11322,11380,0.046551724138049,0.154237288135427,0.051724137931141,0.148305084745580,0.051724137931149,0.160169491525239,0.056896551724242,0.154237288135392,-0.011864406779657,0.000000000000009,-0.000000000000035,-0.010344827586193,0.000000000000034,0.010344827586192,0.011864406779659,-0.000000000000008,2 +11263,11321,11323,11381,0.046551724138058,0.166101694915087,0.051724137931149,0.160169491525239,0.051724137931158,0.172033898304904,0.056896551724250,0.166101694915055,-0.011864406779664,0.000000000000009,-0.000000000000034,-0.010344827586192,0.000000000000032,0.010344827586191,0.011864406779666,-0.000000000000008,2 +11264,11322,11324,11382,0.046551724138067,0.177966101694759,0.051724137931158,0.172033898304904,0.051724137931167,0.183898305084584,0.056896551724258,0.177966101694729,-0.011864406779679,0.000000000000009,-0.000000000000032,-0.010344827586191,0.000000000000029,0.010344827586191,0.011864406779682,-0.000000000000008,2 +11265,11323,11325,11383,0.046551724138076,0.189830508474428,0.051724137931167,0.183898305084584,0.051724137931175,0.195762711864243,0.056896551724266,0.189830508474399,-0.011864406779657,0.000000000000009,-0.000000000000029,-0.010344827586191,0.000000000000028,0.010344827586190,0.011864406779659,-0.000000000000008,2 +11266,11324,11326,11384,0.046551724138085,0.201694915254099,0.051724137931175,0.195762711864243,0.051724137931184,0.207627118643929,0.056896551724274,0.201694915254073,-0.011864406779685,0.000000000000009,-0.000000000000028,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779689,-0.000000000000008,2 +11267,11325,11327,11385,0.046551724138094,0.213559322033772,0.051724137931184,0.207627118643929,0.051724137931193,0.219491525423590,0.056896551724283,0.213559322033748,-0.011864406779660,0.000000000000009,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779661,-0.000000000000008,2 +11268,11326,11328,11386,0.046551724138103,0.225423728813441,0.051724137931193,0.219491525423590,0.051724137931201,0.231355932203269,0.056896551724291,0.225423728813419,-0.011864406779678,0.000000000000009,-0.000000000000023,-0.010344827586188,0.000000000000021,0.010344827586187,0.011864406779680,-0.000000000000008,2 +11269,11327,11329,11387,0.046551724138113,0.237288135593114,0.051724137931201,0.231355932203269,0.051724137931210,0.243220338982940,0.056896551724299,0.237288135593095,-0.011864406779670,0.000000000000009,-0.000000000000021,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779672,-0.000000000000008,2 +11270,11328,11330,11388,0.046551724138122,0.249152542372782,0.051724137931210,0.243220338982940,0.051724137931219,0.255084745762606,0.056896551724307,0.249152542372765,-0.011864406779665,0.000000000000009,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779667,-0.000000000000008,2 +11271,11329,11331,11389,0.046551724138131,0.261016949152452,0.051724137931219,0.255084745762606,0.051724137931227,0.266949152542282,0.056896551724315,0.261016949152437,-0.011864406779675,0.000000000000009,-0.000000000000016,-0.010344827586185,0.000000000000013,0.010344827586184,0.011864406779677,-0.000000000000008,2 +11272,11330,11332,11390,0.046551724138140,0.272881355932120,0.051724137931227,0.266949152542282,0.051724137931236,0.278813559321945,0.056896551724324,0.272881355932107,-0.011864406779662,0.000000000000009,-0.000000000000013,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779663,-0.000000000000008,2 +11273,11331,11333,11391,0.046551724138149,0.284745762711794,0.051724137931236,0.278813559321945,0.051724137931245,0.290677966101633,0.056896551724332,0.284745762711784,-0.011864406779686,0.000000000000009,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779689,-0.000000000000008,2 +11274,11332,11334,11392,0.046551724138158,0.296610169491470,0.051724137931245,0.290677966101633,0.051724137931253,0.302542372881298,0.056896551724340,0.296610169491461,-0.011864406779664,0.000000000000009,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779665,-0.000000000000008,2 +11275,11333,11335,11393,0.046551724138167,0.308474576271141,0.051724137931253,0.302542372881298,0.051724137931262,0.314406779660978,0.056896551724348,0.308474576271134,-0.011864406779679,0.000000000000009,-0.000000000000008,-0.010344827586181,0.000000000000005,0.010344827586180,0.011864406779681,-0.000000000000008,2 +11276,11334,11336,11394,0.046551724138177,0.320338983050816,0.051724137931262,0.314406779660978,0.051724137931271,0.326271186440649,0.056896551724356,0.320338983050811,-0.011864406779671,0.000000000000009,-0.000000000000005,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779672,-0.000000000000008,2 +11277,11335,11337,11395,0.046551724138186,0.332203389830487,0.051724137931271,0.326271186440649,0.051724137931279,0.338135593220321,0.056896551724365,0.332203389830484,-0.011864406779671,0.000000000000009,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779673,-0.000000000000008,2 +7820,11278,11336,11396,0.051724137931288,0.350000000000000,0.046551724138195,0.344067796610161,0.051724137931279,0.338135593220321,0.056896551724373,0.344067796610160,-0.000000000000000,0.010344827586177,-0.011864406779678,0.000000000000009,-0.000000000000002,-0.010344827586178,0.011864406779680,-0.000000000000008,2 +8946,11279,11339,11397,0.062068965517010,-0.350000000000000,0.056896551723897,-0.344067796610172,0.062068965517018,-0.338135593220344,0.067241379310131,-0.344067796610173,-0.000000000000000,-0.010344827586235,-0.011864406779657,0.000000000000008,0.000000000000002,0.010344827586234,0.011864406779655,-0.000000000000007,2 +11280,11338,11340,11398,0.056896551723905,-0.332203389830519,0.062068965517018,-0.338135593220344,0.062068965517026,-0.326271186440696,0.067241379310138,-0.332203389830522,-0.011864406779650,0.000000000000008,-0.000000000000002,-0.010344827586234,0.000000000000004,0.010344827586233,0.011864406779647,-0.000000000000007,2 +11281,11339,11341,11399,0.056896551723914,-0.320338983050865,0.062068965517026,-0.326271186440696,0.062068965517033,-0.314406779661040,0.067241379310146,-0.320338983050870,-0.011864406779657,0.000000000000008,-0.000000000000004,-0.010344827586233,0.000000000000006,0.010344827586232,0.011864406779656,-0.000000000000007,2 +11282,11340,11342,11400,0.056896551723922,-0.308474576271211,0.062068965517033,-0.314406779661040,0.062068965517041,-0.302542372881390,0.067241379310153,-0.308474576271218,-0.011864406779651,0.000000000000008,-0.000000000000006,-0.010344827586232,0.000000000000008,0.010344827586231,0.011864406779649,-0.000000000000007,2 +11283,11341,11343,11401,0.056896551723930,-0.296610169491558,0.062068965517041,-0.302542372881390,0.062068965517049,-0.290677966101735,0.067241379310160,-0.296610169491567,-0.011864406779655,0.000000000000008,-0.000000000000008,-0.010344827586231,0.000000000000009,0.010344827586230,0.011864406779654,-0.000000000000007,2 +11284,11342,11344,11402,0.056896551723938,-0.284745762711903,0.062068965517049,-0.290677966101735,0.062068965517057,-0.278813559322081,0.067241379310167,-0.284745762711913,-0.011864406779656,0.000000000000008,-0.000000000000009,-0.010344827586230,0.000000000000012,0.010344827586229,0.011864406779653,-0.000000000000007,2 +11285,11343,11345,11403,0.056896551723946,-0.272881355932250,0.062068965517057,-0.278813559322081,0.062068965517064,-0.266949152542431,0.067241379310175,-0.272881355932263,-0.011864406779650,0.000000000000008,-0.000000000000012,-0.010344827586229,0.000000000000014,0.010344827586228,0.011864406779649,-0.000000000000007,2 +11286,11344,11346,11404,0.056896551723955,-0.261016949152601,0.062068965517064,-0.266949152542431,0.062068965517072,-0.255084745762787,0.067241379310182,-0.261016949152616,-0.011864406779646,0.000000000000008,-0.000000000000014,-0.010344827586228,0.000000000000016,0.010344827586227,0.011864406779643,-0.000000000000007,2 +11287,11345,11347,11405,0.056896551723963,-0.249152542372957,0.062068965517072,-0.255084745762787,0.062068965517080,-0.243220338983145,0.067241379310189,-0.249152542372974,-0.011864406779643,0.000000000000008,-0.000000000000016,-0.010344827586227,0.000000000000018,0.010344827586226,0.011864406779641,-0.000000000000007,2 +11288,11346,11348,11406,0.056896551723971,-0.237288135593310,0.062068965517080,-0.243220338983145,0.062068965517087,-0.231355932203494,0.067241379310196,-0.237288135593329,-0.011864406779651,0.000000000000008,-0.000000000000018,-0.010344827586226,0.000000000000020,0.010344827586225,0.011864406779650,-0.000000000000007,2 +11289,11347,11349,11407,0.056896551723979,-0.225423728813658,0.062068965517087,-0.231355932203494,0.062068965517095,-0.219491525423842,0.067241379310204,-0.225423728813679,-0.011864406779653,0.000000000000008,-0.000000000000020,-0.010344827586225,0.000000000000023,0.010344827586224,0.011864406779651,-0.000000000000007,2 +11290,11348,11350,11408,0.056896551723987,-0.213559322034008,0.062068965517095,-0.219491525423842,0.062068965517103,-0.207627118644197,0.067241379310211,-0.213559322034032,-0.011864406779646,0.000000000000008,-0.000000000000023,-0.010344827586224,0.000000000000024,0.010344827586223,0.011864406779644,-0.000000000000007,2 +11291,11349,11351,11409,0.056896551723996,-0.201694915254358,0.062068965517103,-0.207627118644197,0.062068965517111,-0.195762711864544,0.067241379310218,-0.201694915254384,-0.011864406779654,0.000000000000008,-0.000000000000024,-0.010344827586223,0.000000000000027,0.010344827586222,0.011864406779651,-0.000000000000007,2 +11292,11350,11352,11410,0.056896551724004,-0.189830508474710,0.062068965517111,-0.195762711864544,0.062068965517118,-0.183898305084904,0.067241379310225,-0.189830508474738,-0.011864406779641,0.000000000000008,-0.000000000000027,-0.010344827586222,0.000000000000029,0.010344827586221,0.011864406779640,-0.000000000000007,2 +11293,11351,11353,11411,0.056896551724012,-0.177966101695064,0.062068965517118,-0.183898305084904,0.062068965517126,-0.172033898305254,0.067241379310232,-0.177966101695094,-0.011864406779652,0.000000000000008,-0.000000000000029,-0.010344827586221,0.000000000000032,0.010344827586220,0.011864406779649,-0.000000000000007,2 +11294,11352,11354,11412,0.056896551724020,-0.166101694915416,0.062068965517126,-0.172033898305254,0.062068965517134,-0.160169491525610,0.067241379310240,-0.166101694915448,-0.011864406779644,0.000000000000008,-0.000000000000032,-0.010344827586220,0.000000000000034,0.010344827586219,0.011864406779642,-0.000000000000007,2 +11295,11353,11355,11413,0.056896551724028,-0.154237288135773,0.062068965517134,-0.160169491525610,0.062068965517141,-0.148305084745970,0.067241379310247,-0.154237288135808,-0.011864406779641,0.000000000000008,-0.000000000000034,-0.010344827586219,0.000000000000035,0.010344827586218,0.011864406779640,-0.000000000000007,2 +11296,11354,11356,11414,0.056896551724037,-0.142372881356128,0.062068965517141,-0.148305084745970,0.062068965517149,-0.136440677966323,0.067241379310254,-0.142372881356165,-0.011864406779648,0.000000000000008,-0.000000000000035,-0.010344827586218,0.000000000000038,0.010344827586217,0.011864406779646,-0.000000000000007,2 +11297,11355,11357,11415,0.056896551724045,-0.130508474576478,0.062068965517149,-0.136440677966323,0.062068965517157,-0.124576271186671,0.067241379310261,-0.130508474576516,-0.011864406779653,0.000000000000008,-0.000000000000038,-0.010344827586217,0.000000000000039,0.010344827586216,0.011864406779651,-0.000000000000007,2 +11298,11356,11358,11416,0.056896551724053,-0.118644067796827,0.062068965517157,-0.124576271186671,0.062068965517165,-0.112711864407024,0.067241379310269,-0.118644067796868,-0.011864406779649,0.000000000000008,-0.000000000000039,-0.010344827586216,0.000000000000042,0.010344827586215,0.011864406779646,-0.000000000000007,2 +11299,11357,11359,11417,0.056896551724061,-0.106779661017180,0.062068965517165,-0.112711864407024,0.062068965517172,-0.100847457627380,0.067241379310276,-0.106779661017223,-0.011864406779645,0.000000000000008,-0.000000000000042,-0.010344827586215,0.000000000000044,0.010344827586214,0.011864406779643,-0.000000000000007,2 +11300,11358,11360,11418,0.056896551724069,-0.094915254237533,0.062068965517172,-0.100847457627380,0.062068965517180,-0.088983050847732,0.067241379310283,-0.094915254237579,-0.011864406779649,0.000000000000008,-0.000000000000044,-0.010344827586214,0.000000000000046,0.010344827586213,0.011864406779646,-0.000000000000007,2 +11301,11359,11361,11419,0.056896551724078,-0.083050847457885,0.062068965517180,-0.088983050847732,0.062068965517188,-0.077118644068085,0.067241379310290,-0.083050847457933,-0.011864406779649,0.000000000000008,-0.000000000000046,-0.010344827586213,0.000000000000049,0.010344827586212,0.011864406779646,-0.000000000000007,2 +11302,11360,11362,11420,0.056896551724086,-0.071186440678238,0.062068965517188,-0.077118644068085,0.062068965517195,-0.065254237288441,0.067241379310298,-0.071186440678288,-0.011864406779645,0.000000000000008,-0.000000000000049,-0.010344827586212,0.000000000000051,0.010344827586211,0.011864406779643,-0.000000000000007,2 +11303,11361,11363,11421,0.056896551724094,-0.059322033898591,0.062068965517195,-0.065254237288441,0.062068965517203,-0.053389830508794,0.067241379310305,-0.059322033898643,-0.011864406779649,0.000000000000008,-0.000000000000051,-0.010344827586211,0.000000000000053,0.010344827586210,0.011864406779646,-0.000000000000007,2 +11304,11362,11364,11422,0.056896551724102,-0.047457627118943,0.062068965517203,-0.053389830508794,0.062068965517211,-0.041525423729148,0.067241379310312,-0.047457627118998,-0.011864406779647,0.000000000000008,-0.000000000000053,-0.010344827586210,0.000000000000056,0.010344827586209,0.011864406779645,-0.000000000000007,2 +11305,11363,11365,11423,0.056896551724110,-0.035593220339296,0.062068965517211,-0.041525423729148,0.062068965517219,-0.029661016949502,0.067241379310319,-0.035593220339353,-0.011864406779647,0.000000000000008,-0.000000000000056,-0.010344827586209,0.000000000000058,0.010344827586208,0.011864406779644,-0.000000000000007,2 +11306,11364,11366,11424,0.056896551724119,-0.023728813559649,0.062068965517219,-0.029661016949502,0.062068965517226,-0.017796610169855,0.067241379310326,-0.023728813559708,-0.011864406779649,0.000000000000008,-0.000000000000058,-0.010344827586208,0.000000000000060,0.010344827586207,0.011864406779646,-0.000000000000007,2 +11307,11365,11367,11425,0.056896551724127,-0.011864406780002,0.062068965517226,-0.017796610169855,0.062068965517234,-0.005932203390211,0.067241379310334,-0.011864406780063,-0.011864406779645,0.000000000000008,-0.000000000000060,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779643,-0.000000000000007,2 +11308,11366,11368,11426,0.056896551724135,-0.000000000000343,0.062068965517234,-0.005932203390211,0.062068965517242,0.005932203389462,0.067241379310341,-0.000000000000405,-0.011864406779673,0.000000000000008,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586205,0.011864406779673,-0.000000000000007,2 +11309,11367,11369,11427,0.056896551724143,0.011864406779327,0.062068965517242,0.005932203389462,0.062068965517249,0.017796610169131,0.067241379310348,0.011864406779266,-0.011864406779668,0.000000000000008,-0.000000000000062,-0.010344827586205,0.000000000000060,0.010344827586204,0.011864406779670,-0.000000000000007,2 +11310,11368,11370,11428,0.056896551724151,0.023728813558999,0.062068965517249,0.017796610169131,0.062068965517257,0.029661016948808,0.067241379310355,0.023728813558940,-0.011864406779675,0.000000000000008,-0.000000000000060,-0.010344827586204,0.000000000000058,0.010344827586204,0.011864406779678,-0.000000000000007,2 +11311,11369,11371,11429,0.056896551724160,0.035593220338672,0.062068965517257,0.029661016948808,0.062068965517265,0.041525423728480,0.067241379310363,0.035593220338615,-0.011864406779671,0.000000000000008,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779673,-0.000000000000007,2 +11312,11370,11372,11430,0.056896551724168,0.047457627118344,0.062068965517265,0.041525423728480,0.062068965517273,0.053389830508153,0.067241379310370,0.047457627118289,-0.011864406779672,0.000000000000008,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779675,-0.000000000000007,2 +11313,11371,11373,11431,0.056896551724176,0.059322033898017,0.062068965517273,0.053389830508153,0.062068965517280,0.065254237287830,0.067241379310377,0.059322033897965,-0.011864406779675,0.000000000000008,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779678,-0.000000000000007,2 +11314,11372,11374,11432,0.056896551724184,0.071186440677689,0.062068965517280,0.065254237287830,0.062068965517288,0.077118644067499,0.067241379310384,0.071186440677639,-0.011864406779668,0.000000000000008,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779670,-0.000000000000007,2 +11315,11373,11375,11433,0.056896551724192,0.083050847457361,0.062068965517288,0.077118644067499,0.062068965517296,0.088983050847175,0.067241379310392,0.083050847457313,-0.011864406779675,0.000000000000008,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779678,-0.000000000000007,2 +11316,11374,11376,11434,0.056896551724201,0.094915254237036,0.062068965517296,0.088983050847175,0.062068965517303,0.100847457626852,0.067241379310399,0.094915254236991,-0.011864406779675,0.000000000000008,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779678,-0.000000000000007,2 +11317,11375,11377,11435,0.056896551724209,0.106779661016708,0.062068965517303,0.100847457626852,0.062068965517311,0.112711864406521,0.067241379310406,0.106779661016665,-0.011864406779668,0.000000000000008,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779670,-0.000000000000007,2 +11318,11376,11378,11436,0.056896551724217,0.118644067796379,0.062068965517311,0.112711864406521,0.062068965517319,0.124576271186197,0.067241379310413,0.118644067796339,-0.011864406779675,0.000000000000008,-0.000000000000042,-0.010344827586197,0.000000000000040,0.010344827586196,0.011864406779678,-0.000000000000007,2 +11319,11377,11379,11437,0.056896551724225,0.130508474576053,0.062068965517319,0.124576271186197,0.062068965517327,0.136440677965870,0.067241379310420,0.130508474576014,-0.011864406779671,0.000000000000008,-0.000000000000040,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779673,-0.000000000000007,2 +11320,11378,11380,11438,0.056896551724233,0.142372881355726,0.062068965517327,0.136440677965870,0.062068965517334,0.148305084745545,0.067241379310428,0.142372881355689,-0.011864406779674,0.000000000000008,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779677,-0.000000000000007,2 +11321,11379,11381,11439,0.056896551724242,0.154237288135392,0.062068965517334,0.148305084745545,0.062068965517342,0.160169491525205,0.067241379310435,0.154237288135358,-0.011864406779659,0.000000000000008,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779661,-0.000000000000007,2 +11322,11380,11382,11440,0.056896551724250,0.166101694915055,0.062068965517342,0.160169491525205,0.062068965517350,0.172033898304872,0.067241379310442,0.166101694915022,-0.011864406779666,0.000000000000008,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779668,-0.000000000000007,2 +11323,11381,11383,11441,0.056896551724258,0.177966101694729,0.062068965517350,0.172033898304872,0.062068965517358,0.183898305084555,0.067241379310449,0.177966101694698,-0.011864406779682,0.000000000000008,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779685,-0.000000000000007,2 +11324,11382,11384,11442,0.056896551724266,0.189830508474399,0.062068965517358,0.183898305084555,0.062068965517365,0.195762711864215,0.067241379310457,0.189830508474371,-0.011864406779659,0.000000000000008,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779661,-0.000000000000007,2 +11325,11383,11385,11443,0.056896551724274,0.201694915254073,0.062068965517365,0.195762711864215,0.062068965517373,0.207627118643905,0.067241379310464,0.201694915254047,-0.011864406779689,0.000000000000008,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779691,-0.000000000000007,2 +11326,11384,11386,11444,0.056896551724283,0.213559322033748,0.062068965517373,0.207627118643905,0.062068965517381,0.219491525423567,0.067241379310471,0.213559322033724,-0.011864406779661,0.000000000000008,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779663,-0.000000000000007,2 +11327,11385,11387,11445,0.056896551724291,0.225423728813419,0.062068965517381,0.219491525423567,0.062068965517388,0.231355932203249,0.067241379310478,0.225423728813397,-0.011864406779680,0.000000000000008,-0.000000000000023,-0.010344827586188,0.000000000000020,0.010344827586187,0.011864406779683,-0.000000000000007,2 +11328,11386,11388,11446,0.056896551724299,0.237288135593095,0.062068965517388,0.231355932203249,0.062068965517396,0.243220338982922,0.067241379310485,0.237288135593075,-0.011864406779672,0.000000000000008,-0.000000000000020,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779674,-0.000000000000007,2 +11329,11387,11389,11447,0.056896551724307,0.249152542372765,0.062068965517396,0.243220338982922,0.062068965517404,0.255084745762590,0.067241379310493,0.249152542372747,-0.011864406779667,0.000000000000008,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779670,-0.000000000000007,2 +11330,11388,11390,11448,0.056896551724315,0.261016949152437,0.062068965517404,0.255084745762590,0.062068965517411,0.266949152542269,0.067241379310500,0.261016949152422,-0.011864406779677,0.000000000000008,-0.000000000000016,-0.010344827586185,0.000000000000013,0.010344827586184,0.011864406779680,-0.000000000000007,2 +11331,11389,11391,11449,0.056896551724324,0.272881355932107,0.062068965517411,0.266949152542269,0.062068965517419,0.278813559321933,0.067241379310507,0.272881355932094,-0.011864406779663,0.000000000000008,-0.000000000000013,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779664,-0.000000000000007,2 +11332,11390,11392,11450,0.056896551724332,0.284745762711784,0.062068965517419,0.278813559321933,0.062068965517427,0.290677966101624,0.067241379310514,0.284745762711773,-0.011864406779689,0.000000000000008,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779693,-0.000000000000007,2 +11333,11391,11393,11451,0.056896551724340,0.296610169491461,0.062068965517427,0.290677966101624,0.062068965517435,0.302542372881289,0.067241379310522,0.296610169491452,-0.011864406779665,0.000000000000008,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779666,-0.000000000000007,2 +11334,11392,11394,11452,0.056896551724348,0.308474576271134,0.062068965517435,0.302542372881289,0.062068965517442,0.314406779660972,0.067241379310529,0.308474576271127,-0.011864406779681,0.000000000000008,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779684,-0.000000000000007,2 +11335,11393,11395,11453,0.056896551724356,0.320338983050811,0.062068965517442,0.314406779660972,0.062068965517450,0.326271186440645,0.067241379310536,0.320338983050806,-0.011864406779672,0.000000000000008,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779674,-0.000000000000007,2 +11336,11394,11396,11454,0.056896551724365,0.332203389830484,0.062068965517450,0.326271186440645,0.062068965517458,0.338135593220319,0.067241379310543,0.332203389830480,-0.011864406779673,0.000000000000008,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779675,-0.000000000000007,2 +7806,11337,11395,11455,0.062068965517465,0.350000000000000,0.056896551724373,0.344067796610160,0.062068965517458,0.338135593220319,0.067241379310551,0.344067796610159,-0.000000000000000,0.010344827586177,-0.011864406779680,0.000000000000008,-0.000000000000002,-0.010344827586178,0.011864406779682,-0.000000000000007,2 +8947,11338,11398,11456,0.072413793103246,-0.350000000000000,0.067241379310131,-0.344067796610173,0.072413793103253,-0.338135593220346,0.077586206896367,-0.344067796610174,-0.000000000000000,-0.010344827586237,-0.011864406779655,0.000000000000007,0.000000000000002,0.010344827586236,0.011864406779652,-0.000000000000006,2 +11339,11397,11399,11457,0.067241379310138,-0.332203389830522,0.072413793103253,-0.338135593220346,0.072413793103259,-0.326271186440700,0.077586206896374,-0.332203389830525,-0.011864406779647,0.000000000000007,-0.000000000000002,-0.010344827586236,0.000000000000004,0.010344827586235,0.011864406779645,-0.000000000000006,2 +11340,11398,11400,11458,0.067241379310146,-0.320338983050870,0.072413793103259,-0.326271186440700,0.072413793103266,-0.314406779661045,0.077586206896380,-0.320338983050875,-0.011864406779656,0.000000000000007,-0.000000000000004,-0.010344827586235,0.000000000000006,0.010344827586234,0.011864406779654,-0.000000000000006,2 +11341,11399,11401,11459,0.067241379310153,-0.308474576271218,0.072413793103266,-0.314406779661045,0.072413793103273,-0.302542372881398,0.077586206896386,-0.308474576271225,-0.011864406779649,0.000000000000007,-0.000000000000006,-0.010344827586234,0.000000000000008,0.010344827586233,0.011864406779646,-0.000000000000006,2 +11342,11400,11402,11460,0.067241379310160,-0.296610169491567,0.072413793103273,-0.302542372881398,0.072413793103280,-0.290677966101744,0.077586206896392,-0.296610169491576,-0.011864406779654,0.000000000000007,-0.000000000000008,-0.010344827586233,0.000000000000009,0.010344827586232,0.011864406779653,-0.000000000000006,2 +11343,11401,11403,11461,0.067241379310167,-0.284745762711913,0.072413793103280,-0.290677966101744,0.072413793103286,-0.278813559322093,0.077586206896398,-0.284745762711924,-0.011864406779653,0.000000000000007,-0.000000000000009,-0.010344827586232,0.000000000000012,0.010344827586231,0.011864406779650,-0.000000000000006,2 +11344,11402,11404,11462,0.067241379310175,-0.272881355932263,0.072413793103286,-0.278813559322093,0.072413793103293,-0.266949152542445,0.077586206896405,-0.272881355932275,-0.011864406779649,0.000000000000007,-0.000000000000012,-0.010344827586231,0.000000000000013,0.010344827586230,0.011864406779648,-0.000000000000006,2 +11345,11403,11405,11463,0.067241379310182,-0.261016949152616,0.072413793103293,-0.266949152542445,0.072413793103300,-0.255084745762803,0.077586206896411,-0.261016949152631,-0.011864406779643,0.000000000000007,-0.000000000000013,-0.010344827586230,0.000000000000016,0.010344827586229,0.011864406779641,-0.000000000000006,2 +11346,11404,11406,11464,0.067241379310189,-0.249152542372974,0.072413793103300,-0.255084745762803,0.072413793103306,-0.243220338983163,0.077586206896417,-0.249152542372992,-0.011864406779641,0.000000000000007,-0.000000000000016,-0.010344827586229,0.000000000000019,0.010344827586228,0.011864406779638,-0.000000000000006,2 +11347,11405,11407,11465,0.067241379310196,-0.237288135593329,0.072413793103306,-0.243220338983163,0.072413793103313,-0.231355932203515,0.077586206896423,-0.237288135593349,-0.011864406779650,0.000000000000007,-0.000000000000019,-0.010344827586228,0.000000000000020,0.010344827586227,0.011864406779648,-0.000000000000006,2 +11348,11406,11408,11466,0.067241379310204,-0.225423728813679,0.072413793103313,-0.231355932203515,0.072413793103320,-0.219491525423865,0.077586206896430,-0.225423728813701,-0.011864406779651,0.000000000000007,-0.000000000000020,-0.010344827586227,0.000000000000023,0.010344827586226,0.011864406779648,-0.000000000000006,2 +11349,11407,11409,11467,0.067241379310211,-0.213559322034032,0.072413793103320,-0.219491525423865,0.072413793103327,-0.207627118644222,0.077586206896436,-0.213559322034055,-0.011864406779644,0.000000000000007,-0.000000000000023,-0.010344827586226,0.000000000000024,0.010344827586225,0.011864406779643,-0.000000000000006,2 +11350,11408,11410,11468,0.067241379310218,-0.201694915254384,0.072413793103327,-0.207627118644222,0.072413793103333,-0.195762711864572,0.077586206896442,-0.201694915254410,-0.011864406779651,0.000000000000007,-0.000000000000024,-0.010344827586225,0.000000000000027,0.010344827586224,0.011864406779648,-0.000000000000006,2 +11351,11409,11411,11469,0.067241379310225,-0.189830508474738,0.072413793103333,-0.195762711864572,0.072413793103340,-0.183898305084933,0.077586206896448,-0.189830508474767,-0.011864406779640,0.000000000000007,-0.000000000000027,-0.010344827586224,0.000000000000029,0.010344827586223,0.011864406779638,-0.000000000000006,2 +11352,11410,11412,11470,0.067241379310232,-0.177966101695094,0.072413793103340,-0.183898305084933,0.072413793103347,-0.172033898305286,0.077586206896454,-0.177966101695125,-0.011864406779649,0.000000000000007,-0.000000000000029,-0.010344827586223,0.000000000000032,0.010344827586222,0.011864406779646,-0.000000000000006,2 +11353,11411,11413,11471,0.067241379310240,-0.166101694915448,0.072413793103347,-0.172033898305286,0.072413793103354,-0.160169491525644,0.077586206896461,-0.166101694915481,-0.011864406779642,0.000000000000007,-0.000000000000032,-0.010344827586222,0.000000000000034,0.010344827586221,0.011864406779640,-0.000000000000006,2 +11354,11412,11414,11472,0.067241379310247,-0.154237288135808,0.072413793103354,-0.160169491525644,0.072413793103360,-0.148305084746005,0.077586206896467,-0.154237288135842,-0.011864406779640,0.000000000000007,-0.000000000000034,-0.010344827586221,0.000000000000035,0.010344827586220,0.011864406779638,-0.000000000000006,2 +11355,11413,11415,11473,0.067241379310254,-0.142372881356165,0.072413793103360,-0.148305084746005,0.072413793103367,-0.136440677966361,0.077586206896473,-0.142372881356201,-0.011864406779646,0.000000000000007,-0.000000000000035,-0.010344827586220,0.000000000000038,0.010344827586219,0.011864406779644,-0.000000000000006,2 +11356,11414,11416,11474,0.067241379310261,-0.130508474576516,0.072413793103367,-0.136440677966361,0.072413793103374,-0.124576271186711,0.077586206896479,-0.130508474576555,-0.011864406779651,0.000000000000007,-0.000000000000038,-0.010344827586219,0.000000000000039,0.010344827586218,0.011864406779649,-0.000000000000006,2 +11357,11415,11417,11475,0.067241379310269,-0.118644067796868,0.072413793103374,-0.124576271186711,0.072413793103380,-0.112711864407066,0.077586206896486,-0.118644067796909,-0.011864406779646,0.000000000000007,-0.000000000000039,-0.010344827586218,0.000000000000042,0.010344827586217,0.011864406779644,-0.000000000000006,2 +11358,11416,11418,11476,0.067241379310276,-0.106779661017223,0.072413793103380,-0.112711864407066,0.072413793103387,-0.100847457627424,0.077586206896492,-0.106779661017266,-0.011864406779643,0.000000000000007,-0.000000000000042,-0.010344827586217,0.000000000000044,0.010344827586216,0.011864406779641,-0.000000000000006,2 +11359,11417,11419,11477,0.067241379310283,-0.094915254237579,0.072413793103387,-0.100847457627424,0.072413793103394,-0.088983050847779,0.077586206896498,-0.094915254237624,-0.011864406779646,0.000000000000007,-0.000000000000044,-0.010344827586216,0.000000000000046,0.010344827586215,0.011864406779644,-0.000000000000006,2 +11360,11418,11420,11478,0.067241379310290,-0.083050847457933,0.072413793103394,-0.088983050847779,0.072413793103401,-0.077118644068134,0.077586206896504,-0.083050847457980,-0.011864406779646,0.000000000000007,-0.000000000000046,-0.010344827586215,0.000000000000049,0.010344827586214,0.011864406779644,-0.000000000000006,2 +11361,11419,11421,11479,0.067241379310298,-0.071186440678288,0.072413793103401,-0.077118644068134,0.072413793103407,-0.065254237288492,0.077586206896511,-0.071186440678338,-0.011864406779643,0.000000000000007,-0.000000000000049,-0.010344827586214,0.000000000000051,0.010344827586212,0.011864406779641,-0.000000000000006,2 +11362,11420,11422,11480,0.067241379310305,-0.059322033898643,0.072413793103407,-0.065254237288492,0.072413793103414,-0.053389830508847,0.077586206896517,-0.059322033898695,-0.011864406779646,0.000000000000007,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779644,-0.000000000000006,2 +11363,11421,11423,11481,0.067241379310312,-0.047457627118998,0.072413793103414,-0.053389830508847,0.072413793103421,-0.041525423729203,0.077586206896523,-0.047457627119052,-0.011864406779645,0.000000000000007,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779643,-0.000000000000006,2 +11364,11422,11424,11482,0.067241379310319,-0.035593220339353,0.072413793103421,-0.041525423729203,0.072413793103428,-0.029661016949560,0.077586206896529,-0.035593220339410,-0.011864406779644,0.000000000000007,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779642,-0.000000000000006,2 +11365,11423,11425,11483,0.067241379310326,-0.023728813559708,0.072413793103428,-0.029661016949560,0.072413793103434,-0.017796610169915,0.077586206896535,-0.023728813559767,-0.011864406779646,0.000000000000007,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586208,0.011864406779644,-0.000000000000006,2 +11366,11424,11426,11484,0.067241379310334,-0.011864406780063,0.072413793103434,-0.017796610169915,0.072413793103441,-0.005932203390273,0.077586206896542,-0.011864406780125,-0.011864406779643,0.000000000000007,-0.000000000000060,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779641,-0.000000000000006,2 +11367,11425,11427,11485,0.067241379310341,-0.000000000000405,0.072413793103441,-0.005932203390273,0.072413793103448,0.005932203389400,0.077586206896548,-0.000000000000468,-0.011864406779673,0.000000000000007,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000006,2 +11368,11426,11428,11486,0.067241379310348,0.011864406779266,0.072413793103448,0.005932203389400,0.072413793103454,0.017796610169071,0.077586206896554,0.011864406779205,-0.011864406779670,0.000000000000007,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586206,0.011864406779672,-0.000000000000006,2 +11369,11427,11429,11487,0.067241379310355,0.023728813558940,0.072413793103454,0.017796610169071,0.072413793103461,0.029661016948750,0.077586206896560,0.023728813558881,-0.011864406779678,0.000000000000007,-0.000000000000060,-0.010344827586206,0.000000000000058,0.010344827586204,0.011864406779680,-0.000000000000006,2 +11370,11428,11430,11488,0.067241379310363,0.035593220338615,0.072413793103461,0.029661016948750,0.072413793103468,0.041525423728424,0.077586206896567,0.035593220338559,-0.011864406779673,0.000000000000007,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779675,-0.000000000000006,2 +11371,11429,11431,11489,0.067241379310370,0.047457627118289,0.072413793103468,0.041525423728424,0.072413793103475,0.053389830508100,0.077586206896573,0.047457627118235,-0.011864406779675,0.000000000000007,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779677,-0.000000000000006,2 +11372,11430,11432,11490,0.067241379310377,0.059322033897965,0.072413793103475,0.053389830508100,0.072413793103481,0.065254237287779,0.077586206896579,0.059322033897913,-0.011864406779678,0.000000000000007,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779680,-0.000000000000006,2 +11373,11431,11433,11491,0.067241379310384,0.071186440677639,0.072413793103481,0.065254237287779,0.072413793103488,0.077118644067450,0.077586206896585,0.071186440677589,-0.011864406779670,0.000000000000007,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779672,-0.000000000000006,2 +11374,11432,11434,11492,0.067241379310392,0.083050847457313,0.072413793103488,0.077118644067450,0.072413793103495,0.088983050847129,0.077586206896591,0.083050847457265,-0.011864406779678,0.000000000000007,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779680,-0.000000000000006,2 +11375,11433,11435,11493,0.067241379310399,0.094915254236991,0.072413793103495,0.088983050847129,0.072413793103502,0.100847457626808,0.077586206896598,0.094915254236946,-0.011864406779678,0.000000000000007,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779680,-0.000000000000006,2 +11376,11434,11436,11494,0.067241379310406,0.106779661016665,0.072413793103502,0.100847457626808,0.072413793103508,0.112711864406479,0.077586206896604,0.106779661016622,-0.011864406779670,0.000000000000007,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779672,-0.000000000000006,2 +11377,11435,11437,11495,0.067241379310413,0.118644067796339,0.072413793103508,0.112711864406479,0.072413793103515,0.124576271186158,0.077586206896610,0.118644067796298,-0.011864406779678,0.000000000000007,-0.000000000000042,-0.010344827586197,0.000000000000039,0.010344827586196,0.011864406779680,-0.000000000000006,2 +11378,11436,11438,11496,0.067241379310420,0.130508474576014,0.072413793103515,0.124576271186158,0.072413793103522,0.136440677965832,0.077586206896616,0.130508474575975,-0.011864406779673,0.000000000000007,-0.000000000000039,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779675,-0.000000000000006,2 +11379,11437,11439,11497,0.067241379310428,0.142372881355689,0.072413793103522,0.136440677965832,0.072413793103528,0.148305084745510,0.077586206896623,0.142372881355652,-0.011864406779677,0.000000000000007,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779679,-0.000000000000006,2 +11380,11438,11440,11498,0.067241379310435,0.154237288135358,0.072413793103528,0.148305084745510,0.072413793103535,0.160169491525171,0.077586206896629,0.154237288135323,-0.011864406779661,0.000000000000007,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779662,-0.000000000000006,2 +11381,11439,11441,11499,0.067241379310442,0.166101694915022,0.072413793103535,0.160169491525171,0.072413793103542,0.172033898304840,0.077586206896635,0.166101694914989,-0.011864406779668,0.000000000000007,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779670,-0.000000000000006,2 +11382,11440,11442,11500,0.067241379310449,0.177966101694698,0.072413793103542,0.172033898304840,0.072413793103549,0.183898305084526,0.077586206896641,0.177966101694668,-0.011864406779685,0.000000000000007,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779688,-0.000000000000006,2 +11383,11441,11443,11501,0.067241379310457,0.189830508474371,0.072413793103549,0.183898305084526,0.072413793103555,0.195762711864188,0.077586206896647,0.189830508474343,-0.011864406779661,0.000000000000007,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779662,-0.000000000000006,2 +11384,11442,11444,11502,0.067241379310464,0.201694915254047,0.072413793103555,0.195762711864188,0.072413793103562,0.207627118643881,0.077586206896654,0.201694915254021,-0.011864406779691,0.000000000000007,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779695,-0.000000000000006,2 +11385,11443,11445,11503,0.067241379310471,0.213559322033724,0.072413793103562,0.207627118643881,0.072413793103569,0.219491525423544,0.077586206896660,0.213559322033701,-0.011864406779663,0.000000000000007,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779664,-0.000000000000006,2 +11386,11444,11446,11504,0.067241379310478,0.225423728813397,0.072413793103569,0.219491525423544,0.072413793103576,0.231355932203228,0.077586206896666,0.225423728813375,-0.011864406779683,0.000000000000007,-0.000000000000023,-0.010344827586188,0.000000000000021,0.010344827586187,0.011864406779685,-0.000000000000006,2 +11387,11445,11447,11505,0.067241379310485,0.237288135593075,0.072413793103576,0.231355932203228,0.072413793103582,0.243220338982903,0.077586206896672,0.237288135593056,-0.011864406779674,0.000000000000007,-0.000000000000021,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779676,-0.000000000000006,2 +11388,11446,11448,11506,0.067241379310493,0.249152542372747,0.072413793103582,0.243220338982903,0.072413793103589,0.255084745762574,0.077586206896679,0.249152542372730,-0.011864406779670,0.000000000000007,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779672,-0.000000000000006,2 +11389,11447,11449,11507,0.067241379310500,0.261016949152422,0.072413793103589,0.255084745762574,0.072413793103596,0.266949152542255,0.077586206896685,0.261016949152407,-0.011864406779680,0.000000000000007,-0.000000000000016,-0.010344827586185,0.000000000000014,0.010344827586184,0.011864406779683,-0.000000000000006,2 +11390,11448,11450,11508,0.067241379310507,0.272881355932094,0.072413793103596,0.266949152542255,0.072413793103602,0.278813559321920,0.077586206896691,0.272881355932081,-0.011864406779664,0.000000000000007,-0.000000000000014,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779665,-0.000000000000006,2 +11391,11449,11451,11509,0.067241379310514,0.284745762711773,0.072413793103602,0.278813559321920,0.072413793103609,0.290677966101614,0.077586206896697,0.284745762711762,-0.011864406779693,0.000000000000007,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779696,-0.000000000000006,2 +11392,11450,11452,11510,0.067241379310522,0.296610169491452,0.072413793103609,0.290677966101614,0.072413793103616,0.302542372881281,0.077586206896704,0.296610169491443,-0.011864406779666,0.000000000000007,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779667,-0.000000000000006,2 +11393,11451,11453,11511,0.067241379310529,0.308474576271127,0.072413793103616,0.302542372881281,0.072413793103623,0.314406779660967,0.077586206896710,0.308474576271120,-0.011864406779684,0.000000000000007,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779687,-0.000000000000006,2 +11394,11452,11454,11512,0.067241379310536,0.320338983050806,0.072413793103623,0.314406779660967,0.072413793103629,0.326271186440641,0.077586206896716,0.320338983050801,-0.011864406779674,0.000000000000007,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779675,-0.000000000000006,2 +11395,11453,11455,11513,0.067241379310543,0.332203389830480,0.072413793103629,0.326271186440641,0.072413793103636,0.338135593220317,0.077586206896722,0.332203389830477,-0.011864406779675,0.000000000000007,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779677,-0.000000000000006,2 +7792,11396,11454,11514,0.072413793103643,0.350000000000000,0.067241379310551,0.344067796610159,0.072413793103636,0.338135593220317,0.077586206896728,0.344067796610158,-0.000000000000000,0.010344827586177,-0.011864406779682,0.000000000000007,-0.000000000000002,-0.010344827586178,0.011864406779684,-0.000000000000006,2 +8948,11397,11457,11515,0.082758620689482,-0.350000000000000,0.077586206896367,-0.344067796610174,0.082758620689488,-0.338135593220349,0.087931034482602,-0.344067796610175,-0.000000000000000,-0.010344827586236,-0.011864406779652,0.000000000000006,0.000000000000002,0.010344827586235,0.011864406779650,-0.000000000000005,2 +11398,11456,11458,11516,0.077586206896374,-0.332203389830525,0.082758620689488,-0.338135593220349,0.082758620689493,-0.326271186440705,0.087931034482608,-0.332203389830528,-0.011864406779645,0.000000000000006,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586234,0.011864406779643,-0.000000000000005,2 +11399,11457,11459,11517,0.077586206896380,-0.320338983050875,0.082758620689493,-0.326271186440705,0.082758620689499,-0.314406779661051,0.087931034482613,-0.320338983050880,-0.011864406779654,0.000000000000006,-0.000000000000004,-0.010344827586234,0.000000000000006,0.010344827586233,0.011864406779653,-0.000000000000005,2 +11400,11458,11460,11518,0.077586206896386,-0.308474576271225,0.082758620689499,-0.314406779661051,0.082758620689505,-0.302542372881407,0.087931034482618,-0.308474576271232,-0.011864406779646,0.000000000000006,-0.000000000000006,-0.010344827586233,0.000000000000008,0.010344827586232,0.011864406779643,-0.000000000000005,2 +11401,11459,11461,11519,0.077586206896392,-0.296610169491576,0.082758620689505,-0.302542372881407,0.082758620689511,-0.290677966101754,0.087931034482623,-0.296610169491585,-0.011864406779653,0.000000000000006,-0.000000000000008,-0.010344827586232,0.000000000000009,0.010344827586231,0.011864406779652,-0.000000000000005,2 +11402,11460,11462,11520,0.077586206896398,-0.284745762711924,0.082758620689511,-0.290677966101754,0.082758620689516,-0.278813559322105,0.087931034482629,-0.284745762711935,-0.011864406779650,0.000000000000006,-0.000000000000009,-0.010344827586231,0.000000000000012,0.010344827586230,0.011864406779647,-0.000000000000005,2 +11403,11461,11463,11521,0.077586206896405,-0.272881355932275,0.082758620689516,-0.278813559322105,0.082758620689522,-0.266949152542458,0.087931034482634,-0.272881355932288,-0.011864406779648,0.000000000000006,-0.000000000000012,-0.010344827586230,0.000000000000013,0.010344827586229,0.011864406779647,-0.000000000000005,2 +11404,11462,11464,11522,0.077586206896411,-0.261016949152631,0.082758620689522,-0.266949152542458,0.082758620689528,-0.255084745762819,0.087931034482639,-0.261016949152646,-0.011864406779641,0.000000000000006,-0.000000000000013,-0.010344827586229,0.000000000000016,0.010344827586228,0.011864406779638,-0.000000000000005,2 +11405,11463,11465,11523,0.077586206896417,-0.249152542372992,0.082758620689528,-0.255084745762819,0.082758620689534,-0.243220338983182,0.087931034482644,-0.249152542373009,-0.011864406779638,0.000000000000006,-0.000000000000016,-0.010344827586228,0.000000000000019,0.010344827586227,0.011864406779636,-0.000000000000005,2 +11406,11464,11466,11524,0.077586206896423,-0.237288135593349,0.082758620689534,-0.243220338983182,0.082758620689539,-0.231355932203535,0.087931034482650,-0.237288135593368,-0.011864406779648,0.000000000000006,-0.000000000000019,-0.010344827586227,0.000000000000021,0.010344827586226,0.011864406779646,-0.000000000000005,2 +11407,11465,11467,11525,0.077586206896430,-0.225423728813701,0.082758620689539,-0.231355932203535,0.082758620689545,-0.219491525423888,0.087931034482655,-0.225423728813722,-0.011864406779648,0.000000000000006,-0.000000000000021,-0.010344827586226,0.000000000000023,0.010344827586225,0.011864406779646,-0.000000000000005,2 +11408,11466,11468,11526,0.077586206896436,-0.213559322034055,0.082758620689545,-0.219491525423888,0.082758620689551,-0.207627118644246,0.087931034482660,-0.213559322034079,-0.011864406779643,0.000000000000006,-0.000000000000023,-0.010344827586225,0.000000000000024,0.010344827586224,0.011864406779641,-0.000000000000005,2 +11409,11467,11469,11527,0.077586206896442,-0.201694915254410,0.082758620689551,-0.207627118644246,0.082758620689557,-0.195762711864599,0.087931034482665,-0.201694915254436,-0.011864406779648,0.000000000000006,-0.000000000000024,-0.010344827586224,0.000000000000027,0.010344827586223,0.011864406779645,-0.000000000000005,2 +11410,11468,11470,11528,0.077586206896448,-0.189830508474767,0.082758620689557,-0.195762711864599,0.082758620689562,-0.183898305084962,0.087931034482670,-0.189830508474795,-0.011864406779638,0.000000000000006,-0.000000000000027,-0.010344827586223,0.000000000000029,0.010344827586222,0.011864406779636,-0.000000000000005,2 +11411,11469,11471,11529,0.077586206896454,-0.177966101695125,0.082758620689562,-0.183898305084962,0.082758620689568,-0.172033898305317,0.087931034482676,-0.177966101695155,-0.011864406779646,0.000000000000006,-0.000000000000029,-0.010344827586222,0.000000000000032,0.010344827586221,0.011864406779643,-0.000000000000005,2 +11412,11470,11472,11530,0.077586206896461,-0.166101694915481,0.082758620689568,-0.172033898305317,0.082758620689574,-0.160169491525678,0.087931034482681,-0.166101694915514,-0.011864406779640,0.000000000000006,-0.000000000000032,-0.010344827586221,0.000000000000034,0.010344827586220,0.011864406779638,-0.000000000000005,2 +11413,11471,11473,11531,0.077586206896467,-0.154237288135842,0.082758620689574,-0.160169491525678,0.082758620689579,-0.148305084746041,0.087931034482686,-0.154237288135877,-0.011864406779638,0.000000000000006,-0.000000000000034,-0.010344827586220,0.000000000000035,0.010344827586219,0.011864406779636,-0.000000000000005,2 +11414,11472,11474,11532,0.077586206896473,-0.142372881356201,0.082758620689579,-0.148305084746041,0.082758620689585,-0.136440677966399,0.087931034482691,-0.142372881356238,-0.011864406779644,0.000000000000006,-0.000000000000035,-0.010344827586219,0.000000000000038,0.010344827586218,0.011864406779641,-0.000000000000005,2 +11415,11473,11475,11533,0.077586206896479,-0.130508474576555,0.082758620689585,-0.136440677966399,0.082758620689591,-0.124576271186750,0.087931034482697,-0.130508474576594,-0.011864406779649,0.000000000000006,-0.000000000000038,-0.010344827586218,0.000000000000040,0.010344827586217,0.011864406779648,-0.000000000000005,2 +11416,11474,11476,11534,0.077586206896486,-0.118644067796909,0.082758620689591,-0.124576271186750,0.082758620689597,-0.112711864407108,0.087931034482702,-0.118644067796949,-0.011864406779644,0.000000000000006,-0.000000000000040,-0.010344827586217,0.000000000000042,0.010344827586216,0.011864406779641,-0.000000000000005,2 +11417,11475,11477,11535,0.077586206896492,-0.106779661017266,0.082758620689597,-0.112711864407108,0.082758620689602,-0.100847457627468,0.087931034482707,-0.106779661017309,-0.011864406779641,0.000000000000006,-0.000000000000042,-0.010344827586216,0.000000000000044,0.010344827586215,0.011864406779639,-0.000000000000005,2 +11418,11476,11478,11536,0.077586206896498,-0.094915254237624,0.082758620689602,-0.100847457627468,0.082758620689608,-0.088983050847825,0.087931034482712,-0.094915254237669,-0.011864406779644,0.000000000000006,-0.000000000000044,-0.010344827586215,0.000000000000046,0.010344827586214,0.011864406779641,-0.000000000000005,2 +11419,11477,11479,11537,0.077586206896504,-0.083050847457980,0.082758620689608,-0.088983050847825,0.082758620689614,-0.077118644068183,0.087931034482718,-0.083050847458028,-0.011864406779644,0.000000000000006,-0.000000000000046,-0.010344827586214,0.000000000000049,0.010344827586213,0.011864406779641,-0.000000000000005,2 +11420,11478,11480,11538,0.077586206896511,-0.071186440678338,0.082758620689614,-0.077118644068183,0.082758620689620,-0.065254237288543,0.087931034482723,-0.071186440678388,-0.011864406779641,0.000000000000006,-0.000000000000049,-0.010344827586213,0.000000000000051,0.010344827586212,0.011864406779639,-0.000000000000005,2 +11421,11479,11481,11539,0.077586206896517,-0.059322033898695,0.082758620689620,-0.065254237288543,0.082758620689625,-0.053389830508900,0.087931034482728,-0.059322033898748,-0.011864406779644,0.000000000000006,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779641,-0.000000000000005,2 +11422,11480,11482,11540,0.077586206896523,-0.047457627119052,0.082758620689625,-0.053389830508900,0.082758620689631,-0.041525423729259,0.087931034482733,-0.047457627119107,-0.011864406779643,0.000000000000006,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779640,-0.000000000000005,2 +11423,11481,11483,11541,0.077586206896529,-0.035593220339410,0.082758620689631,-0.041525423729259,0.082758620689637,-0.029661016949618,0.087931034482739,-0.035593220339467,-0.011864406779642,0.000000000000006,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779640,-0.000000000000005,2 +11424,11482,11484,11542,0.077586206896535,-0.023728813559767,0.082758620689637,-0.029661016949618,0.082758620689642,-0.017796610169975,0.087931034482744,-0.023728813559826,-0.011864406779644,0.000000000000006,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586208,0.011864406779641,-0.000000000000005,2 +11425,11483,11485,11543,0.077586206896542,-0.011864406780125,0.082758620689642,-0.017796610169975,0.082758620689648,-0.005932203390335,0.087931034482749,-0.011864406780186,-0.011864406779641,0.000000000000006,-0.000000000000060,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779639,-0.000000000000005,2 +11426,11484,11486,11544,0.077586206896548,-0.000000000000468,0.082758620689648,-0.005932203390335,0.082758620689654,0.005932203389338,0.087931034482754,-0.000000000000530,-0.011864406779673,0.000000000000006,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000005,2 +11427,11485,11487,11545,0.077586206896554,0.011864406779205,0.082758620689654,0.005932203389338,0.082758620689660,0.017796610169010,0.087931034482760,0.011864406779143,-0.011864406779672,0.000000000000006,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586205,0.011864406779674,-0.000000000000005,2 +11428,11486,11488,11546,0.077586206896560,0.023728813558881,0.082758620689660,0.017796610169010,0.082758620689665,0.029661016948692,0.087931034482765,0.023728813558822,-0.011864406779680,0.000000000000006,-0.000000000000060,-0.010344827586205,0.000000000000058,0.010344827586204,0.011864406779683,-0.000000000000005,2 +11429,11487,11489,11547,0.077586206896567,0.035593220338559,0.082758620689665,0.029661016948692,0.082758620689671,0.041525423728368,0.087931034482770,0.035593220338502,-0.011864406779675,0.000000000000006,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779678,-0.000000000000005,2 +11430,11488,11490,11548,0.077586206896573,0.047457627118235,0.082758620689671,0.041525423728368,0.082758620689677,0.053389830508046,0.087931034482775,0.047457627118180,-0.011864406779677,0.000000000000006,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779679,-0.000000000000005,2 +11431,11489,11491,11549,0.077586206896579,0.059322033897913,0.082758620689677,0.053389830508046,0.082758620689683,0.065254237287728,0.087931034482780,0.059322033897861,-0.011864406779680,0.000000000000006,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779683,-0.000000000000005,2 +11432,11490,11492,11550,0.077586206896585,0.071186440677589,0.082758620689683,0.065254237287728,0.082758620689688,0.077118644067401,0.087931034482786,0.071186440677539,-0.011864406779672,0.000000000000006,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779674,-0.000000000000005,2 +11433,11491,11493,11551,0.077586206896591,0.083050847457265,0.082758620689688,0.077118644067401,0.082758620689694,0.088983050847082,0.087931034482791,0.083050847457218,-0.011864406779680,0.000000000000006,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779683,-0.000000000000005,2 +11434,11492,11494,11552,0.077586206896598,0.094915254236946,0.082758620689694,0.088983050847082,0.082758620689700,0.100847457626764,0.087931034482796,0.094915254236900,-0.011864406779680,0.000000000000006,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779683,-0.000000000000005,2 +11435,11493,11495,11553,0.077586206896604,0.106779661016622,0.082758620689700,0.100847457626764,0.082758620689706,0.112711864406437,0.087931034482801,0.106779661016579,-0.011864406779672,0.000000000000006,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779674,-0.000000000000005,2 +11436,11494,11496,11554,0.077586206896610,0.118644067796298,0.082758620689706,0.112711864406437,0.082758620689711,0.124576271186118,0.087931034482807,0.118644067796257,-0.011864406779680,0.000000000000006,-0.000000000000042,-0.010344827586197,0.000000000000040,0.010344827586196,0.011864406779683,-0.000000000000005,2 +11437,11495,11497,11555,0.077586206896616,0.130508474575975,0.082758620689711,0.124576271186118,0.082758620689717,0.136440677965794,0.087931034482812,0.130508474575937,-0.011864406779675,0.000000000000006,-0.000000000000040,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779677,-0.000000000000005,2 +11438,11496,11498,11556,0.077586206896623,0.142372881355652,0.082758620689717,0.136440677965794,0.082758620689723,0.148305084745474,0.087931034482817,0.142372881355616,-0.011864406779679,0.000000000000006,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779681,-0.000000000000005,2 +11439,11497,11499,11557,0.077586206896629,0.154237288135323,0.082758620689723,0.148305084745474,0.082758620689728,0.160169491525137,0.087931034482822,0.154237288135288,-0.011864406779662,0.000000000000006,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779664,-0.000000000000005,2 +11440,11498,11500,11558,0.077586206896635,0.166101694914989,0.082758620689728,0.160169491525137,0.082758620689734,0.172033898304808,0.087931034482828,0.166101694914956,-0.011864406779670,0.000000000000006,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779672,-0.000000000000005,2 +11441,11499,11501,11559,0.077586206896641,0.177966101694668,0.082758620689734,0.172033898304808,0.082758620689740,0.183898305084497,0.087931034482833,0.177966101694637,-0.011864406779688,0.000000000000006,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779690,-0.000000000000005,2 +11442,11500,11502,11560,0.077586206896647,0.189830508474343,0.082758620689740,0.183898305084497,0.082758620689746,0.195762711864160,0.087931034482838,0.189830508474314,-0.011864406779662,0.000000000000006,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779664,-0.000000000000005,2 +11443,11501,11503,11561,0.077586206896654,0.201694915254021,0.082758620689746,0.195762711864160,0.082758620689751,0.207627118643856,0.087931034482843,0.201694915253995,-0.011864406779695,0.000000000000006,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779698,-0.000000000000005,2 +11444,11502,11504,11562,0.077586206896660,0.213559322033701,0.082758620689751,0.207627118643856,0.082758620689757,0.219491525423522,0.087931034482849,0.213559322033677,-0.011864406779664,0.000000000000006,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779666,-0.000000000000005,2 +11445,11503,11505,11563,0.077586206896666,0.225423728813375,0.082758620689757,0.219491525423522,0.082758620689763,0.231355932203208,0.087931034482854,0.225423728813354,-0.011864406779685,0.000000000000006,-0.000000000000023,-0.010344827586188,0.000000000000021,0.010344827586187,0.011864406779687,-0.000000000000005,2 +11446,11504,11506,11564,0.077586206896672,0.237288135593056,0.082758620689763,0.231355932203208,0.082758620689769,0.243220338982884,0.087931034482859,0.237288135593036,-0.011864406779676,0.000000000000006,-0.000000000000021,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779678,-0.000000000000005,2 +11447,11505,11507,11565,0.077586206896679,0.249152542372730,0.082758620689769,0.243220338982884,0.082758620689774,0.255084745762557,0.087931034482864,0.249152542372712,-0.011864406779672,0.000000000000006,-0.000000000000019,-0.010344827586186,0.000000000000017,0.010344827586185,0.011864406779674,-0.000000000000005,2 +11448,11506,11508,11566,0.077586206896685,0.261016949152407,0.082758620689774,0.255084745762557,0.082758620689780,0.266949152542242,0.087931034482870,0.261016949152392,-0.011864406779683,0.000000000000006,-0.000000000000017,-0.010344827586185,0.000000000000013,0.010344827586184,0.011864406779686,-0.000000000000005,2 +11449,11507,11509,11567,0.077586206896691,0.272881355932081,0.082758620689780,0.266949152542242,0.082758620689786,0.278813559321908,0.087931034482875,0.272881355932069,-0.011864406779665,0.000000000000006,-0.000000000000013,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779667,-0.000000000000005,2 +11450,11508,11510,11568,0.077586206896697,0.284745762711762,0.082758620689786,0.278813559321908,0.082758620689792,0.290677966101605,0.087931034482880,0.284745762711751,-0.011864406779696,0.000000000000006,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779699,-0.000000000000005,2 +11451,11509,11511,11569,0.077586206896704,0.296610169491443,0.082758620689792,0.290677966101605,0.082758620689797,0.302542372881273,0.087931034482885,0.296610169491435,-0.011864406779667,0.000000000000006,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779668,-0.000000000000005,2 +11452,11510,11512,11570,0.077586206896710,0.308474576271120,0.082758620689797,0.302542372881273,0.082758620689803,0.314406779660961,0.087931034482890,0.308474576271113,-0.011864406779687,0.000000000000006,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779690,-0.000000000000005,2 +11453,11511,11513,11571,0.077586206896716,0.320338983050801,0.082758620689803,0.314406779660961,0.082758620689809,0.326271186440637,0.087931034482896,0.320338983050796,-0.011864406779675,0.000000000000006,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779676,-0.000000000000005,2 +11454,11512,11514,11572,0.077586206896722,0.332203389830477,0.082758620689809,0.326271186440637,0.082758620689814,0.338135593220315,0.087931034482901,0.332203389830474,-0.011864406779677,0.000000000000006,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779679,-0.000000000000005,2 +7778,11455,11513,11573,0.082758620689820,0.350000000000000,0.077586206896728,0.344067796610158,0.082758620689814,0.338135593220315,0.087931034482906,0.344067796610157,-0.000000000000000,0.010344827586177,-0.011864406779684,0.000000000000006,-0.000000000000002,-0.010344827586178,0.011864406779686,-0.000000000000005,2 +8949,11456,11516,11574,0.093103448275718,-0.350000000000000,0.087931034482602,-0.344067796610175,0.093103448275722,-0.338135593220351,0.098275862068838,-0.344067796610176,-0.000000000000000,-0.010344827586236,-0.011864406779650,0.000000000000005,0.000000000000002,0.010344827586235,0.011864406779648,-0.000000000000004,2 +11457,11515,11517,11575,0.087931034482608,-0.332203389830528,0.093103448275722,-0.338135593220351,0.093103448275727,-0.326271186440709,0.098275862068842,-0.332203389830531,-0.011864406779643,0.000000000000005,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586234,0.011864406779641,-0.000000000000004,2 +11458,11516,11518,11576,0.087931034482613,-0.320338983050880,0.093103448275727,-0.326271186440709,0.093103448275732,-0.314406779661057,0.098275862068846,-0.320338983050885,-0.011864406779653,0.000000000000005,-0.000000000000004,-0.010344827586234,0.000000000000005,0.010344827586233,0.011864406779652,-0.000000000000004,2 +11459,11517,11519,11577,0.087931034482618,-0.308474576271232,0.093103448275732,-0.314406779661057,0.093103448275737,-0.302542372881415,0.098275862068851,-0.308474576271239,-0.011864406779643,0.000000000000005,-0.000000000000005,-0.010344827586233,0.000000000000008,0.010344827586232,0.011864406779640,-0.000000000000004,2 +11460,11518,11520,11578,0.087931034482623,-0.296610169491585,0.093103448275737,-0.302542372881415,0.093103448275741,-0.290677966101763,0.098275862068855,-0.296610169491593,-0.011864406779652,0.000000000000005,-0.000000000000008,-0.010344827586232,0.000000000000009,0.010344827586231,0.011864406779651,-0.000000000000004,2 +11461,11519,11521,11579,0.087931034482629,-0.284745762711935,0.093103448275741,-0.290677966101763,0.093103448275746,-0.278813559322118,0.098275862068859,-0.284745762711946,-0.011864406779647,0.000000000000005,-0.000000000000009,-0.010344827586231,0.000000000000012,0.010344827586230,0.011864406779644,-0.000000000000004,2 +11462,11520,11522,11580,0.087931034482634,-0.272881355932288,0.093103448275746,-0.278813559322118,0.093103448275751,-0.266949152542472,0.098275862068863,-0.272881355932301,-0.011864406779647,0.000000000000005,-0.000000000000012,-0.010344827586230,0.000000000000014,0.010344827586229,0.011864406779645,-0.000000000000004,2 +11463,11521,11523,11581,0.087931034482639,-0.261016949152646,0.093103448275751,-0.266949152542472,0.093103448275756,-0.255084745762836,0.098275862068868,-0.261016949152661,-0.011864406779638,0.000000000000005,-0.000000000000014,-0.010344827586229,0.000000000000016,0.010344827586228,0.011864406779635,-0.000000000000004,2 +11464,11522,11524,11582,0.087931034482644,-0.249152542373009,0.093103448275756,-0.255084745762836,0.093103448275760,-0.243220338983201,0.098275862068872,-0.249152542373027,-0.011864406779636,0.000000000000005,-0.000000000000016,-0.010344827586228,0.000000000000019,0.010344827586227,0.011864406779634,-0.000000000000004,2 +11465,11523,11525,11583,0.087931034482650,-0.237288135593368,0.093103448275760,-0.243220338983201,0.093103448275765,-0.231355932203556,0.098275862068876,-0.237288135593388,-0.011864406779646,0.000000000000005,-0.000000000000019,-0.010344827586227,0.000000000000021,0.010344827586226,0.011864406779644,-0.000000000000004,2 +11466,11524,11526,11584,0.087931034482655,-0.225423728813722,0.093103448275765,-0.231355932203556,0.093103448275770,-0.219491525423911,0.098275862068880,-0.225423728813744,-0.011864406779646,0.000000000000005,-0.000000000000021,-0.010344827586226,0.000000000000023,0.010344827586225,0.011864406779644,-0.000000000000004,2 +11467,11525,11527,11585,0.087931034482660,-0.213559322034079,0.093103448275770,-0.219491525423911,0.093103448275775,-0.207627118644270,0.098275862068885,-0.213559322034102,-0.011864406779641,0.000000000000005,-0.000000000000023,-0.010344827586225,0.000000000000024,0.010344827586224,0.011864406779640,-0.000000000000004,2 +11468,11526,11528,11586,0.087931034482665,-0.201694915254436,0.093103448275775,-0.207627118644270,0.093103448275779,-0.195762711864627,0.098275862068889,-0.201694915254461,-0.011864406779645,0.000000000000005,-0.000000000000024,-0.010344827586224,0.000000000000027,0.010344827586223,0.011864406779642,-0.000000000000004,2 +11469,11527,11529,11587,0.087931034482670,-0.189830508474795,0.093103448275779,-0.195762711864627,0.093103448275784,-0.183898305084991,0.098275862068893,-0.189830508474823,-0.011864406779636,0.000000000000005,-0.000000000000027,-0.010344827586223,0.000000000000029,0.010344827586222,0.011864406779635,-0.000000000000004,2 +11470,11528,11530,11588,0.087931034482676,-0.177966101695155,0.093103448275784,-0.183898305084991,0.093103448275789,-0.172033898305349,0.098275862068897,-0.177966101695185,-0.011864406779643,0.000000000000005,-0.000000000000029,-0.010344827586222,0.000000000000032,0.010344827586221,0.011864406779641,-0.000000000000004,2 +11471,11529,11531,11589,0.087931034482681,-0.166101694915514,0.093103448275789,-0.172033898305349,0.093103448275794,-0.160169491525712,0.098275862068902,-0.166101694915547,-0.011864406779638,0.000000000000005,-0.000000000000032,-0.010344827586221,0.000000000000034,0.010344827586220,0.011864406779636,-0.000000000000004,2 +11472,11530,11532,11590,0.087931034482686,-0.154237288135877,0.093103448275794,-0.160169491525712,0.093103448275798,-0.148305084746076,0.098275862068906,-0.154237288135911,-0.011864406779636,0.000000000000005,-0.000000000000034,-0.010344827586220,0.000000000000035,0.010344827586219,0.011864406779635,-0.000000000000004,2 +11473,11531,11533,11591,0.087931034482691,-0.142372881356238,0.093103448275798,-0.148305084746076,0.093103448275803,-0.136440677966436,0.098275862068910,-0.142372881356275,-0.011864406779641,0.000000000000005,-0.000000000000035,-0.010344827586219,0.000000000000038,0.010344827586218,0.011864406779639,-0.000000000000004,2 +11474,11532,11534,11592,0.087931034482697,-0.130508474576594,0.093103448275803,-0.136440677966436,0.093103448275808,-0.124576271186790,0.098275862068914,-0.130508474576632,-0.011864406779648,0.000000000000005,-0.000000000000038,-0.010344827586218,0.000000000000039,0.010344827586217,0.011864406779646,-0.000000000000004,2 +11475,11533,11535,11593,0.087931034482702,-0.118644067796949,0.093103448275808,-0.124576271186790,0.093103448275813,-0.112711864407150,0.098275862068918,-0.118644067796990,-0.011864406779641,0.000000000000005,-0.000000000000039,-0.010344827586217,0.000000000000042,0.010344827586216,0.011864406779639,-0.000000000000004,2 +11476,11534,11536,11594,0.087931034482707,-0.106779661017309,0.093103448275813,-0.112711864407150,0.093103448275817,-0.100847457627512,0.098275862068923,-0.106779661017352,-0.011864406779639,0.000000000000005,-0.000000000000042,-0.010344827586216,0.000000000000044,0.010344827586215,0.011864406779637,-0.000000000000004,2 +11477,11535,11537,11595,0.087931034482712,-0.094915254237669,0.093103448275817,-0.100847457627512,0.093103448275822,-0.088983050847872,0.098275862068927,-0.094915254237714,-0.011864406779641,0.000000000000005,-0.000000000000044,-0.010344827586215,0.000000000000046,0.010344827586214,0.011864406779639,-0.000000000000004,2 +11478,11536,11538,11596,0.087931034482718,-0.083050847458028,0.093103448275822,-0.088983050847872,0.093103448275827,-0.077118644068232,0.098275862068931,-0.083050847458076,-0.011864406779641,0.000000000000005,-0.000000000000046,-0.010344827586214,0.000000000000049,0.010344827586213,0.011864406779639,-0.000000000000004,2 +11479,11537,11539,11597,0.087931034482723,-0.071186440678388,0.093103448275827,-0.077118644068232,0.093103448275832,-0.065254237288594,0.098275862068935,-0.071186440678438,-0.011864406779639,0.000000000000005,-0.000000000000049,-0.010344827586213,0.000000000000051,0.010344827586212,0.011864406779637,-0.000000000000004,2 +11480,11538,11540,11598,0.087931034482728,-0.059322033898748,0.093103448275832,-0.065254237288594,0.093103448275836,-0.053389830508954,0.098275862068940,-0.059322033898800,-0.011864406779641,0.000000000000005,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779639,-0.000000000000004,2 +11481,11539,11541,11599,0.087931034482733,-0.047457627119107,0.093103448275836,-0.053389830508954,0.093103448275841,-0.041525423729314,0.098275862068944,-0.047457627119161,-0.011864406779640,0.000000000000005,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779638,-0.000000000000004,2 +11482,11540,11542,11600,0.087931034482739,-0.035593220339467,0.093103448275841,-0.041525423729314,0.093103448275846,-0.029661016949676,0.098275862068948,-0.035593220339523,-0.011864406779640,0.000000000000005,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779638,-0.000000000000004,2 +11483,11541,11543,11601,0.087931034482744,-0.023728813559826,0.093103448275846,-0.029661016949676,0.093103448275851,-0.017796610170036,0.098275862068952,-0.023728813559885,-0.011864406779641,0.000000000000005,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586208,0.011864406779639,-0.000000000000004,2 +11484,11542,11544,11602,0.087931034482749,-0.011864406780186,0.093103448275851,-0.017796610170036,0.093103448275855,-0.005932203390398,0.098275862068957,-0.011864406780247,-0.011864406779639,0.000000000000005,-0.000000000000060,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779637,-0.000000000000004,2 +11485,11543,11545,11603,0.087931034482754,-0.000000000000530,0.093103448275855,-0.005932203390398,0.093103448275860,0.005932203389275,0.098275862068961,-0.000000000000592,-0.011864406779673,0.000000000000005,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000004,2 +11486,11544,11546,11604,0.087931034482760,0.011864406779143,0.093103448275860,0.005932203389275,0.093103448275865,0.017796610168950,0.098275862068965,0.011864406779082,-0.011864406779674,0.000000000000005,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586205,0.011864406779676,-0.000000000000004,2 +11487,11545,11547,11605,0.087931034482765,0.023728813558822,0.093103448275865,0.017796610168950,0.093103448275869,0.029661016948634,0.098275862068969,0.023728813558763,-0.011864406779683,0.000000000000005,-0.000000000000060,-0.010344827586205,0.000000000000058,0.010344827586204,0.011864406779685,-0.000000000000004,2 +11488,11546,11548,11606,0.087931034482770,0.035593220338502,0.093103448275869,0.029661016948634,0.093103448275874,0.041525423728313,0.098275862068974,0.035593220338445,-0.011864406779678,0.000000000000005,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779680,-0.000000000000004,2 +11489,11547,11549,11607,0.087931034482775,0.047457627118180,0.093103448275874,0.041525423728313,0.093103448275879,0.053389830507993,0.098275862068978,0.047457627118126,-0.011864406779679,0.000000000000005,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779681,-0.000000000000004,2 +11490,11548,11550,11608,0.087931034482780,0.059322033897861,0.093103448275879,0.053389830507993,0.093103448275884,0.065254237287677,0.098275862068982,0.059322033897809,-0.011864406779683,0.000000000000005,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779685,-0.000000000000004,2 +11491,11549,11551,11609,0.087931034482786,0.071186440677539,0.093103448275884,0.065254237287677,0.093103448275888,0.077118644067352,0.098275862068986,0.071186440677489,-0.011864406779674,0.000000000000005,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779676,-0.000000000000004,2 +11492,11550,11552,11610,0.087931034482791,0.083050847457218,0.093103448275888,0.077118644067352,0.093103448275893,0.088983050847036,0.098275862068991,0.083050847457170,-0.011864406779683,0.000000000000005,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779685,-0.000000000000004,2 +11493,11551,11553,11611,0.087931034482796,0.094915254236900,0.093103448275893,0.088983050847036,0.093103448275898,0.100847457626720,0.098275862068995,0.094915254236855,-0.011864406779683,0.000000000000005,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779685,-0.000000000000004,2 +11494,11552,11554,11612,0.087931034482801,0.106779661016579,0.093103448275898,0.100847457626720,0.093103448275903,0.112711864406395,0.098275862068999,0.106779661016536,-0.011864406779674,0.000000000000005,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779676,-0.000000000000004,2 +11495,11553,11555,11613,0.087931034482807,0.118644067796257,0.093103448275903,0.112711864406395,0.093103448275907,0.124576271186079,0.098275862069003,0.118644067796216,-0.011864406779683,0.000000000000005,-0.000000000000042,-0.010344827586197,0.000000000000039,0.010344827586196,0.011864406779685,-0.000000000000004,2 +11496,11554,11556,11614,0.087931034482812,0.130508474575937,0.093103448275907,0.124576271186079,0.093103448275912,0.136440677965756,0.098275862069008,0.130508474575898,-0.011864406779677,0.000000000000005,-0.000000000000039,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779678,-0.000000000000004,2 +11497,11555,11557,11615,0.087931034482817,0.142372881355616,0.093103448275912,0.136440677965756,0.093103448275917,0.148305084745439,0.098275862069012,0.142372881355579,-0.011864406779681,0.000000000000005,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779684,-0.000000000000004,2 +11498,11556,11558,11616,0.087931034482822,0.154237288135288,0.093103448275917,0.148305084745439,0.093103448275922,0.160169491525103,0.098275862069016,0.154237288135254,-0.011864406779664,0.000000000000005,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779666,-0.000000000000004,2 +11499,11557,11559,11617,0.087931034482828,0.166101694914956,0.093103448275922,0.160169491525103,0.093103448275926,0.172033898304776,0.098275862069020,0.166101694914923,-0.011864406779672,0.000000000000005,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779674,-0.000000000000004,2 +11500,11558,11560,11618,0.087931034482833,0.177966101694637,0.093103448275926,0.172033898304776,0.093103448275931,0.183898305084468,0.098275862069025,0.177966101694607,-0.011864406779690,0.000000000000005,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779693,-0.000000000000004,2 +11501,11559,11561,11619,0.087931034482838,0.189830508474314,0.093103448275931,0.183898305084468,0.093103448275936,0.195762711864133,0.098275862069029,0.189830508474286,-0.011864406779664,0.000000000000005,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779666,-0.000000000000004,2 +11502,11560,11562,11620,0.087931034482843,0.201694915253995,0.093103448275936,0.195762711864133,0.093103448275941,0.207627118643832,0.098275862069033,0.201694915253969,-0.011864406779698,0.000000000000005,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779701,-0.000000000000004,2 +11503,11561,11563,11621,0.087931034482849,0.213559322033677,0.093103448275941,0.207627118643832,0.093103448275945,0.219491525423499,0.098275862069037,0.213559322033654,-0.011864406779666,0.000000000000005,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779667,-0.000000000000004,2 +11504,11562,11564,11622,0.087931034482854,0.225423728813354,0.093103448275945,0.219491525423499,0.093103448275950,0.231355932203187,0.098275862069042,0.225423728813332,-0.011864406779687,0.000000000000005,-0.000000000000023,-0.010344827586188,0.000000000000020,0.010344827586187,0.011864406779690,-0.000000000000004,2 +11505,11563,11565,11623,0.087931034482859,0.237288135593036,0.093103448275950,0.231355932203187,0.093103448275955,0.243220338982866,0.098275862069046,0.237288135593017,-0.011864406779678,0.000000000000005,-0.000000000000020,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779679,-0.000000000000004,2 +11506,11564,11566,11624,0.087931034482864,0.249152542372712,0.093103448275955,0.243220338982866,0.093103448275960,0.255084745762541,0.098275862069050,0.249152542372695,-0.011864406779674,0.000000000000005,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779676,-0.000000000000004,2 +11507,11565,11567,11625,0.087931034482870,0.261016949152392,0.093103448275960,0.255084745762541,0.093103448275964,0.266949152542228,0.098275862069054,0.261016949152377,-0.011864406779686,0.000000000000005,-0.000000000000016,-0.010344827586185,0.000000000000014,0.010344827586184,0.011864406779689,-0.000000000000004,2 +11508,11566,11568,11626,0.087931034482875,0.272881355932069,0.093103448275964,0.266949152542228,0.093103448275969,0.278813559321896,0.098275862069059,0.272881355932056,-0.011864406779667,0.000000000000005,-0.000000000000014,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779668,-0.000000000000004,2 +11509,11567,11569,11627,0.087931034482880,0.284745762711751,0.093103448275969,0.278813559321896,0.093103448275974,0.290677966101596,0.098275862069063,0.284745762711740,-0.011864406779699,0.000000000000005,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779702,-0.000000000000004,2 +11510,11568,11570,11628,0.087931034482885,0.296610169491435,0.093103448275974,0.290677966101596,0.093103448275979,0.302542372881264,0.098275862069067,0.296610169491426,-0.011864406779668,0.000000000000005,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779669,-0.000000000000004,2 +11511,11569,11571,11629,0.087931034482890,0.308474576271113,0.093103448275979,0.302542372881264,0.093103448275983,0.314406779660955,0.098275862069071,0.308474576271106,-0.011864406779690,0.000000000000005,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779692,-0.000000000000004,2 +11512,11570,11572,11630,0.087931034482896,0.320338983050796,0.093103448275983,0.314406779660955,0.093103448275988,0.326271186440633,0.098275862069076,0.320338983050791,-0.011864406779676,0.000000000000005,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779678,-0.000000000000004,2 +11513,11571,11573,11631,0.087931034482901,0.332203389830474,0.093103448275988,0.326271186440633,0.093103448275993,0.338135593220313,0.098275862069080,0.332203389830471,-0.011864406779679,0.000000000000005,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779681,-0.000000000000004,2 +7764,11514,11572,11632,0.093103448275998,0.350000000000000,0.087931034482906,0.344067796610157,0.093103448275993,0.338135593220313,0.098275862069084,0.344067796610156,-0.000000000000000,0.010344827586177,-0.011864406779686,0.000000000000005,-0.000000000000002,-0.010344827586178,0.011864406779688,-0.000000000000004,2 +8950,11515,11575,11633,0.103448275861948,-0.350000000000000,0.098275862068838,-0.344067796610176,0.103448275861951,-0.338135593220353,0.108620689655061,-0.344067796610177,-0.000000000000000,-0.010344827586224,-0.011864406779648,0.000000000000004,0.000000000000002,0.010344827586223,0.011864406779646,-0.000000000000003,2 +11516,11574,11576,11634,0.098275862068842,-0.332203389830531,0.103448275861951,-0.338135593220353,0.103448275861955,-0.326271186440713,0.108620689655065,-0.332203389830535,-0.011864406779641,0.000000000000004,-0.000000000000002,-0.010344827586223,0.000000000000004,0.010344827586222,0.011864406779639,-0.000000000000003,2 +11517,11575,11577,11635,0.098275862068846,-0.320338983050885,0.103448275861955,-0.326271186440713,0.103448275861959,-0.314406779661062,0.108620689655068,-0.320338983050890,-0.011864406779652,0.000000000000004,-0.000000000000004,-0.010344827586222,0.000000000000006,0.010344827586221,0.011864406779650,-0.000000000000003,2 +11518,11576,11578,11636,0.098275862068851,-0.308474576271239,0.103448275861959,-0.314406779661062,0.103448275861963,-0.302542372881423,0.108620689655071,-0.308474576271246,-0.011864406779640,0.000000000000004,-0.000000000000006,-0.010344827586221,0.000000000000008,0.010344827586220,0.011864406779638,-0.000000000000003,2 +11519,11577,11579,11637,0.098275862068855,-0.296610169491593,0.103448275861963,-0.302542372881423,0.103448275861967,-0.290677966101772,0.108620689655075,-0.296610169491602,-0.011864406779651,0.000000000000004,-0.000000000000008,-0.010344827586220,0.000000000000009,0.010344827586220,0.011864406779650,-0.000000000000003,2 +11520,11578,11580,11638,0.098275862068859,-0.284745762711946,0.103448275861967,-0.290677966101772,0.103448275861971,-0.278813559322130,0.108620689655078,-0.284745762711957,-0.011864406779644,0.000000000000004,-0.000000000000009,-0.010344827586220,0.000000000000012,0.010344827586219,0.011864406779641,-0.000000000000003,2 +11521,11579,11581,11639,0.098275862068863,-0.272881355932301,0.103448275861971,-0.278813559322130,0.103448275861975,-0.266949152542486,0.108620689655082,-0.272881355932314,-0.011864406779645,0.000000000000004,-0.000000000000012,-0.010344827586219,0.000000000000013,0.010344827586218,0.011864406779644,-0.000000000000004,2 +11522,11580,11582,11640,0.098275862068868,-0.261016949152661,0.103448275861975,-0.266949152542486,0.103448275861978,-0.255084745762852,0.108620689655085,-0.261016949152676,-0.011864406779635,0.000000000000004,-0.000000000000013,-0.010344827586218,0.000000000000017,0.010344827586217,0.011864406779632,-0.000000000000003,2 +11523,11581,11583,11641,0.098275862068872,-0.249152542373027,0.103448275861978,-0.255084745762852,0.103448275861982,-0.243220338983219,0.108620689655089,-0.249152542373045,-0.011864406779634,0.000000000000004,-0.000000000000017,-0.010344827586217,0.000000000000019,0.010344827586217,0.011864406779631,-0.000000000000003,2 +11524,11582,11584,11642,0.098275862068876,-0.237288135593388,0.103448275861982,-0.243220338983219,0.103448275861986,-0.231355932203576,0.108620689655092,-0.237288135593408,-0.011864406779644,0.000000000000004,-0.000000000000019,-0.010344827586217,0.000000000000020,0.010344827586216,0.011864406779642,-0.000000000000003,2 +11525,11583,11585,11643,0.098275862068880,-0.225423728813744,0.103448275861986,-0.231355932203576,0.103448275861990,-0.219491525423934,0.108620689655096,-0.225423728813766,-0.011864406779644,0.000000000000004,-0.000000000000020,-0.010344827586216,0.000000000000023,0.010344827586215,0.011864406779641,-0.000000000000003,2 +11526,11584,11586,11644,0.098275862068885,-0.213559322034102,0.103448275861990,-0.219491525423934,0.103448275861994,-0.207627118644295,0.108620689655099,-0.213559322034126,-0.011864406779640,0.000000000000004,-0.000000000000023,-0.010344827586215,0.000000000000024,0.010344827586214,0.011864406779639,-0.000000000000003,2 +11527,11585,11587,11645,0.098275862068889,-0.201694915254461,0.103448275861994,-0.207627118644295,0.103448275861998,-0.195762711864654,0.108620689655103,-0.201694915254487,-0.011864406779642,0.000000000000004,-0.000000000000024,-0.010344827586214,0.000000000000027,0.010344827586213,0.011864406779639,-0.000000000000003,2 +11528,11586,11588,11646,0.098275862068893,-0.189830508474823,0.103448275861998,-0.195762711864654,0.103448275862001,-0.183898305085020,0.108620689655106,-0.189830508474851,-0.011864406779635,0.000000000000004,-0.000000000000027,-0.010344827586213,0.000000000000029,0.010344827586213,0.011864406779633,-0.000000000000003,2 +11529,11587,11589,11647,0.098275862068897,-0.177966101695185,0.103448275862001,-0.183898305085020,0.103448275862005,-0.172033898305381,0.108620689655110,-0.177966101695216,-0.011864406779641,0.000000000000004,-0.000000000000029,-0.010344827586213,0.000000000000032,0.010344827586212,0.011864406779638,-0.000000000000004,2 +11530,11588,11590,11648,0.098275862068902,-0.166101694915547,0.103448275862005,-0.172033898305381,0.103448275862009,-0.160169491525746,0.108620689655113,-0.166101694915580,-0.011864406779636,0.000000000000004,-0.000000000000032,-0.010344827586212,0.000000000000034,0.010344827586211,0.011864406779635,-0.000000000000003,2 +11531,11589,11591,11649,0.098275862068906,-0.154237288135911,0.103448275862009,-0.160169491525746,0.103448275862013,-0.148305084746112,0.108620689655116,-0.154237288135946,-0.011864406779635,0.000000000000004,-0.000000000000034,-0.010344827586211,0.000000000000035,0.010344827586210,0.011864406779633,-0.000000000000003,2 +11532,11590,11592,11650,0.098275862068910,-0.142372881356275,0.103448275862013,-0.148305084746112,0.103448275862017,-0.136440677966474,0.108620689655120,-0.142372881356311,-0.011864406779639,0.000000000000004,-0.000000000000035,-0.010344827586210,0.000000000000038,0.010344827586210,0.011864406779636,-0.000000000000003,2 +11533,11591,11593,11651,0.098275862068914,-0.130508474576632,0.103448275862017,-0.136440677966474,0.103448275862021,-0.124576271186829,0.108620689655123,-0.130508474576671,-0.011864406779646,0.000000000000004,-0.000000000000038,-0.010344827586210,0.000000000000039,0.010344827586209,0.011864406779644,-0.000000000000003,2 +11534,11592,11594,11652,0.098275862068918,-0.118644067796990,0.103448275862021,-0.124576271186829,0.103448275862025,-0.112711864407192,0.108620689655127,-0.118644067797031,-0.011864406779639,0.000000000000004,-0.000000000000039,-0.010344827586209,0.000000000000042,0.010344827586208,0.011864406779636,-0.000000000000003,2 +11535,11593,11595,11653,0.098275862068923,-0.106779661017352,0.103448275862025,-0.112711864407192,0.103448275862028,-0.100847457627556,0.108620689655130,-0.106779661017395,-0.011864406779637,0.000000000000004,-0.000000000000042,-0.010344827586208,0.000000000000044,0.010344827586207,0.011864406779635,-0.000000000000003,2 +11536,11594,11596,11654,0.098275862068927,-0.094915254237714,0.103448275862028,-0.100847457627556,0.103448275862032,-0.088983050847918,0.108620689655134,-0.094915254237759,-0.011864406779639,0.000000000000004,-0.000000000000044,-0.010344827586207,0.000000000000046,0.010344827586206,0.011864406779636,-0.000000000000003,2 +11537,11595,11597,11655,0.098275862068931,-0.083050847458076,0.103448275862032,-0.088983050847918,0.103448275862036,-0.077118644068281,0.108620689655137,-0.083050847458123,-0.011864406779639,0.000000000000004,-0.000000000000046,-0.010344827586206,0.000000000000049,0.010344827586206,0.011864406779636,-0.000000000000004,2 +11538,11596,11598,11656,0.098275862068935,-0.071186440678438,0.103448275862036,-0.077118644068281,0.103448275862040,-0.065254237288645,0.108620689655141,-0.071186440678488,-0.011864406779637,0.000000000000004,-0.000000000000049,-0.010344827586206,0.000000000000051,0.010344827586205,0.011864406779635,-0.000000000000003,2 +11539,11597,11599,11657,0.098275862068940,-0.059322033898800,0.103448275862040,-0.065254237288645,0.103448275862044,-0.053389830509007,0.108620689655144,-0.059322033898852,-0.011864406779639,0.000000000000004,-0.000000000000051,-0.010344827586205,0.000000000000053,0.010344827586204,0.011864406779636,-0.000000000000003,2 +11540,11598,11600,11658,0.098275862068944,-0.047457627119161,0.103448275862044,-0.053389830509007,0.103448275862048,-0.041525423729370,0.108620689655148,-0.047457627119216,-0.011864406779638,0.000000000000004,-0.000000000000053,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779636,-0.000000000000003,2 +11541,11599,11601,11659,0.098275862068948,-0.035593220339523,0.103448275862048,-0.041525423729370,0.103448275862052,-0.029661016949733,0.108620689655151,-0.035593220339580,-0.011864406779638,0.000000000000004,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586202,0.011864406779636,-0.000000000000003,2 +11542,11600,11602,11660,0.098275862068952,-0.023728813559885,0.103448275862052,-0.029661016949733,0.103448275862055,-0.017796610170096,0.108620689655155,-0.023728813559944,-0.011864406779639,0.000000000000004,-0.000000000000058,-0.010344827586202,0.000000000000060,0.010344827586202,0.011864406779636,-0.000000000000003,2 +11543,11601,11603,11661,0.098275862068957,-0.011864406780247,0.103448275862055,-0.017796610170096,0.103448275862059,-0.005932203390460,0.108620689655158,-0.011864406780309,-0.011864406779637,0.000000000000004,-0.000000000000060,-0.010344827586202,0.000000000000062,0.010344827586201,0.011864406779635,-0.000000000000003,2 +11544,11602,11604,11662,0.098275862068961,-0.000000000000592,0.103448275862059,-0.005932203390460,0.103448275862063,0.005932203389213,0.108620689655161,-0.000000000000655,-0.011864406779673,0.000000000000004,-0.000000000000062,-0.010344827586201,0.000000000000062,0.010344827586200,0.011864406779673,-0.000000000000003,2 +11545,11603,11605,11663,0.098275862068965,0.011864406779082,0.103448275862063,0.005932203389213,0.103448275862067,0.017796610168890,0.108620689655165,0.011864406779021,-0.011864406779676,0.000000000000004,-0.000000000000062,-0.010344827586200,0.000000000000060,0.010344827586199,0.011864406779678,-0.000000000000003,2 +11546,11604,11606,11664,0.098275862068969,0.023728813558763,0.103448275862067,0.017796610168890,0.103448275862071,0.029661016948576,0.108620689655168,0.023728813558704,-0.011864406779685,0.000000000000004,-0.000000000000060,-0.010344827586199,0.000000000000058,0.010344827586199,0.011864406779688,-0.000000000000004,2 +11547,11605,11607,11665,0.098275862068974,0.035593220338445,0.103448275862071,0.029661016948576,0.103448275862075,0.041525423728257,0.108620689655172,0.035593220338388,-0.011864406779680,0.000000000000004,-0.000000000000058,-0.010344827586199,0.000000000000056,0.010344827586198,0.011864406779682,-0.000000000000003,2 +11548,11606,11608,11666,0.098275862068978,0.047457627118126,0.103448275862075,0.041525423728257,0.103448275862079,0.053389830507940,0.108620689655175,0.047457627118071,-0.011864406779681,0.000000000000004,-0.000000000000056,-0.010344827586198,0.000000000000053,0.010344827586197,0.011864406779684,-0.000000000000003,2 +11549,11607,11609,11667,0.098275862068982,0.059322033897809,0.103448275862079,0.053389830507940,0.103448275862082,0.065254237287626,0.108620689655179,0.059322033897757,-0.011864406779685,0.000000000000004,-0.000000000000053,-0.010344827586197,0.000000000000051,0.010344827586196,0.011864406779688,-0.000000000000003,2 +11550,11608,11610,11668,0.098275862068986,0.071186440677489,0.103448275862082,0.065254237287626,0.103448275862086,0.077118644067303,0.108620689655182,0.071186440677440,-0.011864406779676,0.000000000000004,-0.000000000000051,-0.010344827586196,0.000000000000049,0.010344827586195,0.011864406779678,-0.000000000000003,2 +11551,11609,11611,11669,0.098275862068991,0.083050847457170,0.103448275862086,0.077118644067303,0.103448275862090,0.088983050846989,0.108620689655186,0.083050847457122,-0.011864406779685,0.000000000000004,-0.000000000000049,-0.010344827586195,0.000000000000046,0.010344827586195,0.011864406779688,-0.000000000000003,2 +11552,11610,11612,11670,0.098275862068995,0.094915254236855,0.103448275862090,0.088983050846989,0.103448275862094,0.100847457626676,0.108620689655189,0.094915254236810,-0.011864406779685,0.000000000000004,-0.000000000000046,-0.010344827586195,0.000000000000044,0.010344827586194,0.011864406779687,-0.000000000000003,2 +11553,11611,11613,11671,0.098275862068999,0.106779661016536,0.103448275862094,0.100847457626676,0.103448275862098,0.112711864406353,0.108620689655193,0.106779661016493,-0.011864406779676,0.000000000000004,-0.000000000000044,-0.010344827586194,0.000000000000042,0.010344827586193,0.011864406779678,-0.000000000000003,2 +11554,11612,11614,11672,0.098275862069003,0.118644067796216,0.103448275862098,0.112711864406353,0.103448275862102,0.124576271186039,0.108620689655196,0.118644067796176,-0.011864406779685,0.000000000000004,-0.000000000000042,-0.010344827586193,0.000000000000040,0.010344827586192,0.011864406779688,-0.000000000000004,2 +11555,11613,11615,11673,0.098275862069008,0.130508474575898,0.103448275862102,0.124576271186039,0.103448275862106,0.136440677965718,0.108620689655200,0.130508474575860,-0.011864406779678,0.000000000000004,-0.000000000000040,-0.010344827586192,0.000000000000038,0.010344827586192,0.011864406779680,-0.000000000000003,2 +11556,11614,11616,11674,0.098275862069012,0.142372881355579,0.103448275862106,0.136440677965718,0.103448275862109,0.148305084745403,0.108620689655203,0.142372881355543,-0.011864406779684,0.000000000000004,-0.000000000000038,-0.010344827586192,0.000000000000035,0.010344827586191,0.011864406779686,-0.000000000000003,2 +11557,11615,11617,11675,0.098275862069016,0.154237288135254,0.103448275862109,0.148305084745403,0.103448275862113,0.160169491525070,0.108620689655206,0.154237288135219,-0.011864406779666,0.000000000000004,-0.000000000000035,-0.010344827586191,0.000000000000034,0.010344827586190,0.011864406779667,-0.000000000000003,2 +11558,11616,11618,11676,0.098275862069020,0.166101694914923,0.103448275862113,0.160169491525070,0.103448275862117,0.172033898304744,0.108620689655210,0.166101694914891,-0.011864406779674,0.000000000000004,-0.000000000000034,-0.010344827586190,0.000000000000032,0.010344827586189,0.011864406779676,-0.000000000000003,2 +11559,11617,11619,11677,0.098275862069025,0.177966101694607,0.103448275862117,0.172033898304744,0.103448275862121,0.183898305084439,0.108620689655213,0.177966101694576,-0.011864406779693,0.000000000000004,-0.000000000000032,-0.010344827586189,0.000000000000029,0.010344827586188,0.011864406779696,-0.000000000000003,2 +11560,11618,11620,11678,0.098275862069029,0.189830508474286,0.103448275862121,0.183898305084439,0.103448275862125,0.195762711864105,0.108620689655217,0.189830508474258,-0.011864406779666,0.000000000000004,-0.000000000000029,-0.010344827586188,0.000000000000027,0.010344827586188,0.011864406779667,-0.000000000000003,2 +11561,11619,11621,11679,0.098275862069033,0.201694915253969,0.103448275862125,0.195762711864105,0.103448275862129,0.207627118643808,0.108620689655220,0.201694915253944,-0.011864406779701,0.000000000000004,-0.000000000000027,-0.010344827586188,0.000000000000024,0.010344827586187,0.011864406779704,-0.000000000000003,2 +11562,11620,11622,11680,0.098275862069037,0.213559322033654,0.103448275862129,0.207627118643808,0.103448275862132,0.219491525423476,0.108620689655224,0.213559322033630,-0.011864406779667,0.000000000000004,-0.000000000000024,-0.010344827586187,0.000000000000023,0.010344827586186,0.011864406779669,-0.000000000000004,2 +11563,11621,11623,11681,0.098275862069042,0.225423728813332,0.103448275862132,0.219491525423476,0.103448275862136,0.231355932203167,0.108620689655227,0.225423728813310,-0.011864406779690,0.000000000000004,-0.000000000000023,-0.010344827586186,0.000000000000020,0.010344827586185,0.011864406779692,-0.000000000000003,2 +11564,11622,11624,11682,0.098275862069046,0.237288135593017,0.103448275862136,0.231355932203167,0.103448275862140,0.243220338982847,0.108620689655231,0.237288135592997,-0.011864406779679,0.000000000000004,-0.000000000000020,-0.010344827586185,0.000000000000019,0.010344827586184,0.011864406779681,-0.000000000000003,2 +11565,11623,11625,11683,0.098275862069050,0.249152542372695,0.103448275862140,0.243220338982847,0.103448275862144,0.255084745762525,0.108620689655234,0.249152542372677,-0.011864406779676,0.000000000000004,-0.000000000000019,-0.010344827586184,0.000000000000016,0.010344827586184,0.011864406779679,-0.000000000000003,2 +11566,11624,11626,11684,0.098275862069054,0.261016949152377,0.103448275862144,0.255084745762525,0.103448275862148,0.266949152542215,0.108620689655238,0.261016949152362,-0.011864406779689,0.000000000000004,-0.000000000000016,-0.010344827586184,0.000000000000014,0.010344827586183,0.011864406779692,-0.000000000000003,2 +11567,11625,11627,11685,0.098275862069059,0.272881355932056,0.103448275862148,0.266949152542215,0.103448275862152,0.278813559321883,0.108620689655241,0.272881355932043,-0.011864406779668,0.000000000000004,-0.000000000000014,-0.010344827586183,0.000000000000012,0.010344827586182,0.011864406779669,-0.000000000000003,2 +11568,11626,11628,11686,0.098275862069063,0.284745762711740,0.103448275862152,0.278813559321883,0.103448275862156,0.290677966101586,0.108620689655244,0.284745762711729,-0.011864406779702,0.000000000000004,-0.000000000000012,-0.010344827586182,0.000000000000009,0.010344827586181,0.011864406779705,-0.000000000000003,2 +11569,11627,11629,11687,0.098275862069067,0.296610169491426,0.103448275862156,0.290677966101586,0.103448275862159,0.302542372881256,0.108620689655248,0.296610169491417,-0.011864406779669,0.000000000000004,-0.000000000000009,-0.010344827586181,0.000000000000008,0.010344827586181,0.011864406779670,-0.000000000000003,2 +11570,11628,11630,11688,0.098275862069071,0.308474576271106,0.103448275862159,0.302542372881256,0.103448275862163,0.314406779660950,0.108620689655251,0.308474576271099,-0.011864406779692,0.000000000000004,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779695,-0.000000000000004,2 +11571,11629,11631,11689,0.098275862069076,0.320338983050791,0.103448275862163,0.314406779660950,0.103448275862167,0.326271186440628,0.108620689655255,0.320338983050786,-0.011864406779678,0.000000000000004,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779679,-0.000000000000003,2 +11572,11630,11632,11690,0.098275862069080,0.332203389830471,0.103448275862167,0.326271186440628,0.103448275862171,0.338135593220310,0.108620689655258,0.332203389830468,-0.011864406779681,0.000000000000004,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779683,-0.000000000000003,2 +7750,11573,11631,11691,0.103448275862175,0.350000000000000,0.098275862069084,0.344067796610156,0.103448275862171,0.338135593220310,0.108620689655262,0.344067796610155,-0.000000000000000,0.010344827586177,-0.011864406779688,0.000000000000004,-0.000000000000002,-0.010344827586178,0.011864406779691,-0.000000000000003,2 +8951,11574,11634,11692,0.113793103448176,-0.350000000000000,0.108620689655061,-0.344067796610177,0.113793103448179,-0.338135593220355,0.118965517241293,-0.344067796610178,-0.000000000000000,-0.010344827586232,-0.011864406779646,0.000000000000003,0.000000000000002,0.010344827586231,0.011864406779644,-0.000000000000002,2 +11575,11633,11635,11693,0.108620689655065,-0.332203389830535,0.113793103448179,-0.338135593220355,0.113793103448182,-0.326271186440717,0.118965517241296,-0.332203389830538,-0.011864406779639,0.000000000000003,-0.000000000000002,-0.010344827586231,0.000000000000004,0.010344827586230,0.011864406779637,-0.000000000000003,2 +11576,11634,11636,11694,0.108620689655068,-0.320338983050890,0.113793103448182,-0.326271186440717,0.113793103448185,-0.314406779661068,0.118965517241298,-0.320338983050895,-0.011864406779650,0.000000000000003,-0.000000000000004,-0.010344827586230,0.000000000000006,0.010344827586230,0.011864406779649,-0.000000000000003,2 +11577,11635,11637,11695,0.108620689655071,-0.308474576271246,0.113793103448185,-0.314406779661068,0.113793103448188,-0.302542372881432,0.118965517241301,-0.308474576271253,-0.011864406779638,0.000000000000003,-0.000000000000006,-0.010344827586230,0.000000000000008,0.010344827586229,0.011864406779635,-0.000000000000002,2 +11578,11636,11638,11696,0.108620689655075,-0.296610169491602,0.113793103448188,-0.302542372881432,0.113793103448191,-0.290677966101782,0.118965517241303,-0.296610169491611,-0.011864406779650,0.000000000000003,-0.000000000000008,-0.010344827586229,0.000000000000009,0.010344827586228,0.011864406779650,-0.000000000000003,2 +11579,11637,11639,11697,0.108620689655078,-0.284745762711957,0.113793103448191,-0.290677966101782,0.113793103448194,-0.278813559322143,0.118965517241306,-0.284745762711967,-0.011864406779641,0.000000000000003,-0.000000000000009,-0.010344827586228,0.000000000000012,0.010344827586227,0.011864406779637,-0.000000000000003,2 +11580,11638,11640,11698,0.108620689655082,-0.272881355932314,0.113793103448194,-0.278813559322143,0.113793103448197,-0.266949152542499,0.118965517241308,-0.272881355932327,-0.011864406779644,0.000000000000004,-0.000000000000012,-0.010344827586227,0.000000000000013,0.010344827586226,0.011864406779643,-0.000000000000002,2 +11581,11639,11641,11699,0.108620689655085,-0.261016949152676,0.113793103448197,-0.266949152542499,0.113793103448200,-0.255084745762868,0.118965517241311,-0.261016949152691,-0.011864406779632,0.000000000000003,-0.000000000000013,-0.010344827586226,0.000000000000016,0.010344827586225,0.011864406779629,-0.000000000000003,2 +11582,11640,11642,11700,0.108620689655089,-0.249152542373045,0.113793103448200,-0.255084745762868,0.113793103448203,-0.243220338983238,0.118965517241313,-0.249152542373062,-0.011864406779631,0.000000000000003,-0.000000000000016,-0.010344827586225,0.000000000000018,0.010344827586224,0.011864406779629,-0.000000000000003,2 +11583,11641,11643,11701,0.108620689655092,-0.237288135593408,0.113793103448203,-0.243220338983238,0.113793103448206,-0.231355932203597,0.118965517241316,-0.237288135593427,-0.011864406779642,0.000000000000003,-0.000000000000018,-0.010344827586224,0.000000000000020,0.010344827586223,0.011864406779640,-0.000000000000003,2 +11584,11642,11644,11702,0.108620689655096,-0.225423728813766,0.113793103448206,-0.231355932203597,0.113793103448209,-0.219491525423957,0.118965517241319,-0.225423728813788,-0.011864406779641,0.000000000000003,-0.000000000000020,-0.010344827586223,0.000000000000023,0.010344827586223,0.011864406779638,-0.000000000000003,2 +11585,11643,11645,11703,0.108620689655099,-0.213559322034126,0.113793103448209,-0.219491525423957,0.113793103448212,-0.207627118644319,0.118965517241321,-0.213559322034150,-0.011864406779639,0.000000000000003,-0.000000000000023,-0.010344827586223,0.000000000000024,0.010344827586222,0.011864406779637,-0.000000000000003,2 +11586,11644,11646,11704,0.108620689655103,-0.201694915254487,0.113793103448212,-0.207627118644319,0.113793103448215,-0.195762711864682,0.118965517241324,-0.201694915254513,-0.011864406779639,0.000000000000003,-0.000000000000024,-0.010344827586222,0.000000000000028,0.010344827586221,0.011864406779636,-0.000000000000002,2 +11587,11645,11647,11705,0.108620689655106,-0.189830508474851,0.113793103448215,-0.195762711864682,0.113793103448218,-0.183898305085049,0.118965517241326,-0.189830508474879,-0.011864406779633,0.000000000000003,-0.000000000000028,-0.010344827586221,0.000000000000029,0.010344827586220,0.011864406779632,-0.000000000000003,2 +11588,11646,11648,11706,0.108620689655110,-0.177966101695216,0.113793103448218,-0.183898305085049,0.113793103448221,-0.172033898305413,0.118965517241329,-0.177966101695246,-0.011864406779638,0.000000000000004,-0.000000000000029,-0.010344827586220,0.000000000000032,0.010344827586219,0.011864406779635,-0.000000000000003,2 +11589,11647,11649,11707,0.108620689655113,-0.166101694915580,0.113793103448221,-0.172033898305413,0.113793103448224,-0.160169491525779,0.118965517241331,-0.166101694915613,-0.011864406779635,0.000000000000003,-0.000000000000032,-0.010344827586219,0.000000000000034,0.010344827586218,0.011864406779633,-0.000000000000002,2 +11590,11648,11650,11708,0.108620689655116,-0.154237288135946,0.113793103448224,-0.160169491525779,0.113793103448227,-0.148305084746147,0.118965517241334,-0.154237288135981,-0.011864406779633,0.000000000000003,-0.000000000000034,-0.010344827586218,0.000000000000035,0.010344827586217,0.011864406779631,-0.000000000000003,2 +11591,11649,11651,11709,0.108620689655120,-0.142372881356311,0.113793103448227,-0.148305084746147,0.113793103448230,-0.136440677966512,0.118965517241337,-0.142372881356348,-0.011864406779636,0.000000000000003,-0.000000000000035,-0.010344827586217,0.000000000000038,0.010344827586216,0.011864406779634,-0.000000000000002,2 +11592,11650,11652,11710,0.108620689655123,-0.130508474576671,0.113793103448230,-0.136440677966512,0.113793103448233,-0.124576271186869,0.118965517241339,-0.130508474576710,-0.011864406779644,0.000000000000003,-0.000000000000038,-0.010344827586216,0.000000000000039,0.010344827586215,0.011864406779642,-0.000000000000003,2 +11593,11651,11653,11711,0.108620689655127,-0.118644067797031,0.113793103448233,-0.124576271186869,0.113793103448236,-0.112711864407234,0.118965517241342,-0.118644067797071,-0.011864406779636,0.000000000000003,-0.000000000000039,-0.010344827586215,0.000000000000042,0.010344827586214,0.011864406779634,-0.000000000000003,2 +11594,11652,11654,11712,0.108620689655130,-0.106779661017395,0.113793103448236,-0.112711864407234,0.113793103448239,-0.100847457627600,0.118965517241344,-0.106779661017438,-0.011864406779635,0.000000000000003,-0.000000000000042,-0.010344827586214,0.000000000000044,0.010344827586214,0.011864406779633,-0.000000000000003,2 +11595,11653,11655,11713,0.108620689655134,-0.094915254237759,0.113793103448239,-0.100847457627600,0.113793103448242,-0.088983050847964,0.118965517241347,-0.094915254237805,-0.011864406779636,0.000000000000003,-0.000000000000044,-0.010344827586214,0.000000000000046,0.010344827586213,0.011864406779634,-0.000000000000003,2 +11596,11654,11656,11714,0.108620689655137,-0.083050847458123,0.113793103448242,-0.088983050847964,0.113793103448245,-0.077118644068329,0.118965517241349,-0.083050847458171,-0.011864406779636,0.000000000000004,-0.000000000000046,-0.010344827586213,0.000000000000049,0.010344827586212,0.011864406779634,-0.000000000000003,2 +11597,11655,11657,11715,0.108620689655141,-0.071186440678488,0.113793103448245,-0.077118644068329,0.113793103448248,-0.065254237288696,0.118965517241352,-0.071186440678537,-0.011864406779635,0.000000000000003,-0.000000000000049,-0.010344827586212,0.000000000000051,0.010344827586211,0.011864406779633,-0.000000000000002,2 +11598,11656,11658,11716,0.108620689655144,-0.059322033898852,0.113793103448248,-0.065254237288696,0.113793103448251,-0.053389830509060,0.118965517241354,-0.059322033898904,-0.011864406779636,0.000000000000003,-0.000000000000051,-0.010344827586211,0.000000000000053,0.010344827586210,0.011864406779634,-0.000000000000003,2 +11599,11657,11659,11717,0.108620689655148,-0.047457627119216,0.113793103448251,-0.053389830509060,0.113793103448254,-0.041525423729426,0.118965517241357,-0.047457627119270,-0.011864406779636,0.000000000000003,-0.000000000000053,-0.010344827586210,0.000000000000056,0.010344827586209,0.011864406779634,-0.000000000000002,2 +11600,11658,11660,11718,0.108620689655151,-0.035593220339580,0.113793103448254,-0.041525423729426,0.113793103448257,-0.029661016949791,0.118965517241360,-0.035593220339637,-0.011864406779636,0.000000000000003,-0.000000000000056,-0.010344827586209,0.000000000000058,0.010344827586208,0.011864406779633,-0.000000000000003,2 +11601,11659,11661,11719,0.108620689655155,-0.023728813559944,0.113793103448257,-0.029661016949791,0.113793103448260,-0.017796610170156,0.118965517241362,-0.023728813560003,-0.011864406779636,0.000000000000003,-0.000000000000058,-0.010344827586208,0.000000000000060,0.010344827586207,0.011864406779634,-0.000000000000003,2 +11602,11660,11662,11720,0.108620689655158,-0.011864406780309,0.113793103448260,-0.017796610170156,0.113793103448263,-0.005932203390522,0.118965517241365,-0.011864406780370,-0.011864406779635,0.000000000000003,-0.000000000000060,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779633,-0.000000000000002,2 +11603,11661,11663,11721,0.108620689655161,-0.000000000000655,0.113793103448263,-0.005932203390522,0.113793103448266,0.005932203389150,0.118965517241367,-0.000000000000717,-0.011864406779673,0.000000000000003,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586205,0.011864406779673,-0.000000000000003,2 +11604,11662,11664,11722,0.108620689655165,0.011864406779021,0.113793103448266,0.005932203389150,0.113793103448269,0.017796610168830,0.118965517241370,0.011864406778959,-0.011864406779678,0.000000000000003,-0.000000000000062,-0.010344827586205,0.000000000000060,0.010344827586205,0.011864406779680,-0.000000000000002,2 +11605,11663,11665,11723,0.108620689655168,0.023728813558704,0.113793103448269,0.017796610168830,0.113793103448272,0.029661016948518,0.118965517241372,0.023728813558644,-0.011864406779688,0.000000000000004,-0.000000000000060,-0.010344827586205,0.000000000000058,0.010344827586204,0.011864406779690,-0.000000000000003,2 +11606,11664,11666,11724,0.108620689655172,0.035593220338388,0.113793103448272,0.029661016948518,0.113793103448275,0.041525423728201,0.118965517241375,0.035593220338332,-0.011864406779682,0.000000000000003,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779684,-0.000000000000003,2 +11607,11665,11667,11725,0.108620689655175,0.047457627118071,0.113793103448275,0.041525423728201,0.113793103448278,0.053389830507886,0.118965517241378,0.047457627118017,-0.011864406779684,0.000000000000003,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779686,-0.000000000000003,2 +11608,11666,11668,11726,0.108620689655179,0.059322033897757,0.113793103448278,0.053389830507886,0.113793103448281,0.065254237287575,0.118965517241380,0.059322033897705,-0.011864406779688,0.000000000000003,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779690,-0.000000000000002,2 +11609,11667,11669,11727,0.108620689655182,0.071186440677440,0.113793103448281,0.065254237287575,0.113793103448284,0.077118644067254,0.118965517241383,0.071186440677390,-0.011864406779678,0.000000000000003,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779680,-0.000000000000003,2 +11610,11668,11670,11728,0.108620689655186,0.083050847457122,0.113793103448284,0.077118644067254,0.113793103448287,0.088983050846943,0.118965517241385,0.083050847457075,-0.011864406779688,0.000000000000003,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779690,-0.000000000000002,2 +11611,11669,11671,11729,0.108620689655189,0.094915254236810,0.113793103448287,0.088983050846943,0.113793103448290,0.100847457626632,0.118965517241388,0.094915254236765,-0.011864406779687,0.000000000000003,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779690,-0.000000000000003,2 +11612,11670,11672,11730,0.108620689655193,0.106779661016493,0.113793103448290,0.100847457626632,0.113793103448293,0.112711864406311,0.118965517241390,0.106779661016450,-0.011864406779678,0.000000000000003,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779680,-0.000000000000002,2 +11613,11671,11673,11731,0.108620689655196,0.118644067796176,0.113793103448293,0.112711864406311,0.113793103448296,0.124576271186000,0.118965517241393,0.118644067796135,-0.011864406779688,0.000000000000004,-0.000000000000042,-0.010344827586197,0.000000000000040,0.010344827586196,0.011864406779690,-0.000000000000003,2 +11614,11672,11674,11732,0.108620689655200,0.130508474575860,0.113793103448296,0.124576271186000,0.113793103448299,0.136440677965681,0.118965517241396,0.130508474575821,-0.011864406779680,0.000000000000003,-0.000000000000040,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779682,-0.000000000000003,2 +11615,11673,11675,11733,0.108620689655203,0.142372881355543,0.113793103448299,0.136440677965681,0.113793103448302,0.148305084745368,0.118965517241398,0.142372881355506,-0.011864406779686,0.000000000000003,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586195,0.011864406779688,-0.000000000000003,2 +11616,11674,11676,11734,0.108620689655206,0.154237288135219,0.113793103448302,0.148305084745368,0.113793103448305,0.160169491525036,0.118965517241401,0.154237288135185,-0.011864406779667,0.000000000000003,-0.000000000000035,-0.010344827586195,0.000000000000034,0.010344827586194,0.011864406779669,-0.000000000000003,2 +11617,11675,11677,11735,0.108620689655210,0.166101694914891,0.113793103448305,0.160169491525036,0.113793103448308,0.172033898304713,0.118965517241403,0.166101694914858,-0.011864406779676,0.000000000000003,-0.000000000000034,-0.010344827586194,0.000000000000032,0.010344827586193,0.011864406779678,-0.000000000000003,2 +11618,11676,11678,11736,0.108620689655213,0.177966101694576,0.113793103448308,0.172033898304713,0.113793103448311,0.183898305084410,0.118965517241406,0.177966101694546,-0.011864406779696,0.000000000000003,-0.000000000000032,-0.010344827586193,0.000000000000029,0.010344827586192,0.011864406779699,-0.000000000000003,2 +11619,11677,11679,11737,0.108620689655217,0.189830508474258,0.113793103448311,0.183898305084410,0.113793103448314,0.195762711864078,0.118965517241408,0.189830508474230,-0.011864406779667,0.000000000000003,-0.000000000000029,-0.010344827586192,0.000000000000027,0.010344827586191,0.011864406779669,-0.000000000000002,2 +11620,11678,11680,11738,0.108620689655220,0.201694915253944,0.113793103448314,0.195762711864078,0.113793103448317,0.207627118643783,0.118965517241411,0.201694915253918,-0.011864406779704,0.000000000000003,-0.000000000000027,-0.010344827586191,0.000000000000024,0.010344827586190,0.011864406779707,-0.000000000000003,2 +11621,11679,11681,11739,0.108620689655224,0.213559322033630,0.113793103448317,0.207627118643783,0.113793103448320,0.219491525423453,0.118965517241413,0.213559322033606,-0.011864406779669,0.000000000000004,-0.000000000000024,-0.010344827586190,0.000000000000023,0.010344827586189,0.011864406779670,-0.000000000000003,2 +11622,11680,11682,11740,0.108620689655227,0.225423728813310,0.113793103448320,0.219491525423453,0.113793103448323,0.231355932203146,0.118965517241416,0.225423728813289,-0.011864406779692,0.000000000000003,-0.000000000000023,-0.010344827586189,0.000000000000021,0.010344827586188,0.011864406779695,-0.000000000000003,2 +11623,11681,11683,11741,0.108620689655231,0.237288135592997,0.113793103448323,0.231355932203146,0.113793103448326,0.243220338982828,0.118965517241419,0.237288135592978,-0.011864406779681,0.000000000000003,-0.000000000000021,-0.010344827586188,0.000000000000019,0.010344827586187,0.011864406779683,-0.000000000000002,2 +11624,11682,11684,11742,0.108620689655234,0.249152542372677,0.113793103448326,0.243220338982828,0.113793103448329,0.255084745762508,0.118965517241421,0.249152542372660,-0.011864406779679,0.000000000000003,-0.000000000000019,-0.010344827586187,0.000000000000016,0.010344827586187,0.011864406779681,-0.000000000000003,2 +11625,11683,11685,11743,0.108620689655238,0.261016949152362,0.113793103448329,0.255084745762508,0.113793103448332,0.266949152542201,0.118965517241424,0.261016949152347,-0.011864406779692,0.000000000000003,-0.000000000000016,-0.010344827586187,0.000000000000013,0.010344827586186,0.011864406779694,-0.000000000000003,2 +11626,11684,11686,11744,0.108620689655241,0.272881355932043,0.113793103448332,0.266949152542201,0.113793103448335,0.278813559321871,0.118965517241426,0.272881355932030,-0.011864406779669,0.000000000000003,-0.000000000000013,-0.010344827586186,0.000000000000012,0.010344827586185,0.011864406779670,-0.000000000000002,2 +11627,11685,11687,11745,0.108620689655244,0.284745762711729,0.113793103448335,0.278813559321871,0.113793103448338,0.290677966101577,0.118965517241429,0.284745762711719,-0.011864406779705,0.000000000000003,-0.000000000000012,-0.010344827586185,0.000000000000009,0.010344827586184,0.011864406779708,-0.000000000000003,2 +11628,11686,11688,11746,0.108620689655248,0.296610169491417,0.113793103448338,0.290677966101577,0.113793103448341,0.302542372881248,0.118965517241431,0.296610169491408,-0.011864406779670,0.000000000000003,-0.000000000000009,-0.010344827586184,0.000000000000008,0.010344827586183,0.011864406779671,-0.000000000000003,2 +11629,11687,11689,11747,0.108620689655251,0.308474576271099,0.113793103448341,0.302542372881248,0.113793103448344,0.314406779660944,0.118965517241434,0.308474576271092,-0.011864406779695,0.000000000000004,-0.000000000000008,-0.010344827586183,0.000000000000006,0.010344827586182,0.011864406779698,-0.000000000000002,2 +11630,11688,11690,11748,0.108620689655255,0.320338983050786,0.113793103448344,0.314406779660944,0.113793103448347,0.326271186440624,0.118965517241437,0.320338983050782,-0.011864406779679,0.000000000000003,-0.000000000000006,-0.010344827586182,0.000000000000004,0.010344827586181,0.011864406779681,-0.000000000000003,2 +11631,11689,11691,11749,0.108620689655258,0.332203389830468,0.113793103448347,0.326271186440624,0.113793103448350,0.338135593220308,0.118965517241439,0.332203389830465,-0.011864406779683,0.000000000000003,-0.000000000000004,-0.010344827586181,0.000000000000002,0.010344827586180,0.011864406779685,-0.000000000000003,2 +7736,11632,11690,11750,0.113793103448353,0.350000000000000,0.108620689655262,0.344067796610155,0.113793103448350,0.338135593220308,0.118965517241442,0.344067796610154,-0.000000000000000,0.010344827586179,-0.011864406779691,0.000000000000003,-0.000000000000002,-0.010344827586180,0.011864406779693,-0.000000000000003,2 +8952,11633,11693,11751,0.124137931034410,-0.350000000000000,0.118965517241293,-0.344067796610178,0.124137931034412,-0.338135593220357,0.129310344827529,-0.344067796610179,-0.000000000000000,-0.010344827586236,-0.011864406779644,0.000000000000002,0.000000000000002,0.010344827586235,0.011864406779642,-0.000000000000002,2 +11634,11692,11694,11752,0.118965517241296,-0.332203389830538,0.124137931034412,-0.338135593220357,0.124137931034414,-0.326271186440722,0.129310344827531,-0.332203389830541,-0.011864406779637,0.000000000000003,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586235,0.011864406779635,-0.000000000000002,2 +11635,11693,11695,11753,0.118965517241298,-0.320338983050895,0.124137931034414,-0.326271186440722,0.124137931034416,-0.314406779661073,0.129310344827532,-0.320338983050900,-0.011864406779649,0.000000000000003,-0.000000000000004,-0.010344827586235,0.000000000000006,0.010344827586234,0.011864406779647,-0.000000000000002,2 +11636,11694,11696,11754,0.118965517241301,-0.308474576271253,0.124137931034416,-0.314406779661073,0.124137931034419,-0.302542372881440,0.129310344827534,-0.308474576271260,-0.011864406779635,0.000000000000002,-0.000000000000006,-0.010344827586234,0.000000000000008,0.010344827586233,0.011864406779632,-0.000000000000002,2 +11637,11695,11697,11755,0.118965517241303,-0.296610169491611,0.124137931034419,-0.302542372881440,0.124137931034421,-0.290677966101791,0.129310344827536,-0.296610169491620,-0.011864406779650,0.000000000000003,-0.000000000000008,-0.010344827586233,0.000000000000009,0.010344827586232,0.011864406779649,-0.000000000000002,2 +11638,11696,11698,11756,0.118965517241306,-0.284745762711967,0.124137931034421,-0.290677966101791,0.124137931034423,-0.278813559322155,0.129310344827538,-0.284745762711978,-0.011864406779637,0.000000000000003,-0.000000000000009,-0.010344827586232,0.000000000000012,0.010344827586232,0.011864406779634,-0.000000000000002,2 +11639,11697,11699,11757,0.118965517241308,-0.272881355932327,0.124137931034423,-0.278813559322155,0.124137931034425,-0.266949152542513,0.129310344827540,-0.272881355932340,-0.011864406779643,0.000000000000002,-0.000000000000012,-0.010344827586232,0.000000000000013,0.010344827586231,0.011864406779642,-0.000000000000002,2 +11640,11698,11700,11758,0.118965517241311,-0.261016949152691,0.124137931034425,-0.266949152542513,0.124137931034427,-0.255084745762885,0.129310344827541,-0.261016949152706,-0.011864406779629,0.000000000000003,-0.000000000000013,-0.010344827586231,0.000000000000016,0.010344827586230,0.011864406779626,-0.000000000000002,2 +11641,11699,11701,11759,0.118965517241313,-0.249152542373062,0.124137931034427,-0.255084745762885,0.124137931034429,-0.243220338983257,0.129310344827543,-0.249152542373079,-0.011864406779629,0.000000000000003,-0.000000000000016,-0.010344827586230,0.000000000000019,0.010344827586229,0.011864406779627,-0.000000000000002,2 +11642,11700,11702,11760,0.118965517241316,-0.237288135593427,0.124137931034429,-0.243220338983257,0.124137931034432,-0.231355932203617,0.129310344827545,-0.237288135593447,-0.011864406779640,0.000000000000003,-0.000000000000019,-0.010344827586229,0.000000000000021,0.010344827586229,0.011864406779638,-0.000000000000002,2 +11643,11701,11703,11761,0.118965517241319,-0.225423728813788,0.124137931034432,-0.231355932203617,0.124137931034434,-0.219491525423980,0.129310344827547,-0.225423728813809,-0.011864406779638,0.000000000000003,-0.000000000000021,-0.010344827586229,0.000000000000023,0.010344827586228,0.011864406779636,-0.000000000000002,2 +11644,11702,11704,11762,0.118965517241321,-0.213559322034150,0.124137931034434,-0.219491525423980,0.124137931034436,-0.207627118644343,0.129310344827549,-0.213559322034173,-0.011864406779637,0.000000000000003,-0.000000000000023,-0.010344827586228,0.000000000000024,0.010344827586227,0.011864406779636,-0.000000000000002,2 +11645,11703,11705,11763,0.118965517241324,-0.201694915254513,0.124137931034436,-0.207627118644343,0.124137931034438,-0.195762711864709,0.129310344827550,-0.201694915254539,-0.011864406779636,0.000000000000002,-0.000000000000024,-0.010344827586227,0.000000000000028,0.010344827586226,0.011864406779633,-0.000000000000002,2 +11646,11704,11706,11764,0.118965517241326,-0.189830508474879,0.124137931034438,-0.195762711864709,0.124137931034440,-0.183898305085078,0.129310344827552,-0.189830508474908,-0.011864406779632,0.000000000000003,-0.000000000000028,-0.010344827586226,0.000000000000029,0.010344827586226,0.011864406779630,-0.000000000000002,2 +11647,11705,11707,11765,0.118965517241329,-0.177966101695246,0.124137931034440,-0.183898305085078,0.124137931034443,-0.172033898305445,0.129310344827554,-0.177966101695277,-0.011864406779635,0.000000000000003,-0.000000000000029,-0.010344827586226,0.000000000000032,0.010344827586225,0.011864406779632,-0.000000000000002,2 +11648,11706,11708,11766,0.118965517241331,-0.166101694915613,0.124137931034443,-0.172033898305445,0.124137931034445,-0.160169491525813,0.129310344827556,-0.166101694915645,-0.011864406779633,0.000000000000002,-0.000000000000032,-0.010344827586225,0.000000000000034,0.010344827586224,0.011864406779630,-0.000000000000002,2 +11649,11707,11709,11767,0.118965517241334,-0.154237288135981,0.124137931034445,-0.160169491525813,0.124137931034447,-0.148305084746183,0.129310344827558,-0.154237288136015,-0.011864406779631,0.000000000000003,-0.000000000000034,-0.010344827586224,0.000000000000035,0.010344827586223,0.011864406779630,-0.000000000000002,2 +11650,11708,11710,11768,0.118965517241337,-0.142372881356348,0.124137931034447,-0.148305084746183,0.124137931034449,-0.136440677966550,0.129310344827559,-0.142372881356384,-0.011864406779634,0.000000000000002,-0.000000000000035,-0.010344827586223,0.000000000000038,0.010344827586222,0.011864406779632,-0.000000000000002,2 +11651,11709,11711,11769,0.118965517241339,-0.130508474576710,0.124137931034449,-0.136440677966550,0.124137931034451,-0.124576271186908,0.129310344827561,-0.130508474576748,-0.011864406779642,0.000000000000003,-0.000000000000038,-0.010344827586222,0.000000000000039,0.010344827586222,0.011864406779641,-0.000000000000002,2 +11652,11710,11712,11770,0.118965517241342,-0.118644067797071,0.124137931034451,-0.124576271186908,0.124137931034454,-0.112711864407275,0.129310344827563,-0.118644067797112,-0.011864406779634,0.000000000000003,-0.000000000000039,-0.010344827586222,0.000000000000042,0.010344827586221,0.011864406779631,-0.000000000000002,2 +11653,11711,11713,11771,0.118965517241344,-0.106779661017438,0.124137931034454,-0.112711864407275,0.124137931034456,-0.100847457627644,0.129310344827565,-0.106779661017481,-0.011864406779633,0.000000000000003,-0.000000000000042,-0.010344827586221,0.000000000000044,0.010344827586220,0.011864406779631,-0.000000000000002,2 +11654,11712,11714,11772,0.118965517241347,-0.094915254237805,0.124137931034456,-0.100847457627644,0.124137931034458,-0.088983050848011,0.129310344827567,-0.094915254237850,-0.011864406779634,0.000000000000003,-0.000000000000044,-0.010344827586220,0.000000000000046,0.010344827586219,0.011864406779632,-0.000000000000002,2 +11655,11713,11715,11773,0.118965517241349,-0.083050847458171,0.124137931034458,-0.088983050848011,0.124137931034460,-0.077118644068378,0.129310344827568,-0.083050847458218,-0.011864406779634,0.000000000000003,-0.000000000000046,-0.010344827586219,0.000000000000049,0.010344827586219,0.011864406779631,-0.000000000000002,2 +11656,11714,11716,11774,0.118965517241352,-0.071186440678537,0.124137931034460,-0.077118644068378,0.124137931034462,-0.065254237288746,0.129310344827570,-0.071186440678587,-0.011864406779633,0.000000000000002,-0.000000000000049,-0.010344827586219,0.000000000000051,0.010344827586218,0.011864406779631,-0.000000000000002,2 +11657,11715,11717,11775,0.118965517241354,-0.059322033898904,0.124137931034462,-0.065254237288746,0.124137931034464,-0.053389830509114,0.129310344827572,-0.059322033898956,-0.011864406779634,0.000000000000003,-0.000000000000051,-0.010344827586218,0.000000000000053,0.010344827586217,0.011864406779632,-0.000000000000002,2 +11658,11716,11718,11776,0.118965517241357,-0.047457627119270,0.124137931034464,-0.053389830509114,0.124137931034467,-0.041525423729481,0.129310344827574,-0.047457627119325,-0.011864406779634,0.000000000000002,-0.000000000000053,-0.010344827586217,0.000000000000056,0.010344827586217,0.011864406779631,-0.000000000000002,2 +11659,11717,11719,11777,0.118965517241360,-0.035593220339637,0.124137931034467,-0.041525423729481,0.124137931034469,-0.029661016949849,0.129310344827576,-0.035593220339694,-0.011864406779633,0.000000000000003,-0.000000000000056,-0.010344827586217,0.000000000000058,0.010344827586216,0.011864406779631,-0.000000000000002,2 +11660,11718,11720,11778,0.118965517241362,-0.023728813560003,0.124137931034469,-0.029661016949849,0.124137931034471,-0.017796610170216,0.129310344827578,-0.023728813560062,-0.011864406779634,0.000000000000003,-0.000000000000058,-0.010344827586216,0.000000000000060,0.010344827586215,0.011864406779632,-0.000000000000002,2 +11661,11719,11721,11779,0.118965517241365,-0.011864406780370,0.124137931034471,-0.017796610170216,0.124137931034473,-0.005932203390585,0.129310344827579,-0.011864406780431,-0.011864406779633,0.000000000000002,-0.000000000000060,-0.010344827586215,0.000000000000062,0.010344827586214,0.011864406779631,-0.000000000000002,2 +11662,11720,11722,11780,0.118965517241367,-0.000000000000717,0.124137931034473,-0.005932203390585,0.124137931034475,0.005932203389088,0.129310344827581,-0.000000000000779,-0.011864406779673,0.000000000000003,-0.000000000000062,-0.010344827586214,0.000000000000062,0.010344827586214,0.011864406779673,-0.000000000000002,2 +11663,11721,11723,11781,0.118965517241370,0.011864406778959,0.124137931034475,0.005932203389088,0.124137931034478,0.017796610168769,0.129310344827583,0.011864406778898,-0.011864406779680,0.000000000000002,-0.000000000000062,-0.010344827586214,0.000000000000060,0.010344827586213,0.011864406779682,-0.000000000000002,2 +11664,11722,11724,11782,0.118965517241372,0.023728813558644,0.124137931034478,0.017796610168769,0.124137931034480,0.029661016948461,0.129310344827585,0.023728813558585,-0.011864406779690,0.000000000000003,-0.000000000000060,-0.010344827586213,0.000000000000058,0.010344827586212,0.011864406779692,-0.000000000000002,2 +11665,11723,11725,11783,0.118965517241375,0.035593220338332,0.124137931034480,0.029661016948461,0.124137931034482,0.041525423728146,0.129310344827587,0.035593220338275,-0.011864406779684,0.000000000000003,-0.000000000000058,-0.010344827586212,0.000000000000056,0.010344827586211,0.011864406779686,-0.000000000000002,2 +11666,11724,11726,11784,0.118965517241378,0.047457627118017,0.124137931034482,0.041525423728146,0.124137931034484,0.053389830507833,0.129310344827588,0.047457627117962,-0.011864406779686,0.000000000000003,-0.000000000000056,-0.010344827586211,0.000000000000053,0.010344827586210,0.011864406779688,-0.000000000000002,2 +11667,11725,11727,11785,0.118965517241380,0.059322033897705,0.124137931034484,0.053389830507833,0.124137931034486,0.065254237287524,0.129310344827590,0.059322033897652,-0.011864406779690,0.000000000000002,-0.000000000000053,-0.010344827586210,0.000000000000051,0.010344827586210,0.011864406779692,-0.000000000000002,2 +11668,11726,11728,11786,0.118965517241383,0.071186440677390,0.124137931034486,0.065254237287524,0.124137931034488,0.077118644067205,0.129310344827592,0.071186440677340,-0.011864406779680,0.000000000000003,-0.000000000000051,-0.010344827586210,0.000000000000049,0.010344827586209,0.011864406779682,-0.000000000000002,2 +11669,11727,11729,11787,0.118965517241385,0.083050847457075,0.124137931034488,0.077118644067205,0.124137931034491,0.088983050846897,0.129310344827594,0.083050847457027,-0.011864406779690,0.000000000000002,-0.000000000000049,-0.010344827586209,0.000000000000046,0.010344827586208,0.011864406779692,-0.000000000000002,2 +11670,11728,11730,11788,0.118965517241388,0.094915254236765,0.124137931034491,0.088983050846897,0.124137931034493,0.100847457626588,0.129310344827596,0.094915254236720,-0.011864406779690,0.000000000000003,-0.000000000000046,-0.010344827586208,0.000000000000044,0.010344827586208,0.011864406779692,-0.000000000000002,2 +11671,11729,11731,11789,0.118965517241390,0.106779661016450,0.124137931034493,0.100847457626588,0.124137931034495,0.112711864406269,0.129310344827597,0.106779661016407,-0.011864406779680,0.000000000000002,-0.000000000000044,-0.010344827586208,0.000000000000042,0.010344827586207,0.011864406779682,-0.000000000000002,2 +11672,11730,11732,11790,0.118965517241393,0.118644067796135,0.124137931034495,0.112711864406269,0.124137931034497,0.124576271185960,0.129310344827599,0.118644067796094,-0.011864406779690,0.000000000000003,-0.000000000000042,-0.010344827586207,0.000000000000039,0.010344827586206,0.011864406779692,-0.000000000000002,2 +11673,11731,11733,11791,0.118965517241396,0.130508474575821,0.124137931034497,0.124576271185960,0.124137931034499,0.136440677965643,0.129310344827601,0.130508474575782,-0.011864406779682,0.000000000000003,-0.000000000000039,-0.010344827586206,0.000000000000038,0.010344827586205,0.011864406779684,-0.000000000000002,2 +11674,11732,11734,11792,0.118965517241398,0.142372881355506,0.124137931034499,0.136440677965643,0.124137931034502,0.148305084745332,0.129310344827603,0.142372881355469,-0.011864406779688,0.000000000000003,-0.000000000000038,-0.010344827586205,0.000000000000035,0.010344827586204,0.011864406779691,-0.000000000000002,2 +11675,11733,11735,11793,0.118965517241401,0.154237288135185,0.124137931034502,0.148305084745332,0.124137931034504,0.160169491525002,0.129310344827605,0.154237288135150,-0.011864406779669,0.000000000000003,-0.000000000000035,-0.010344827586204,0.000000000000034,0.010344827586204,0.011864406779670,-0.000000000000002,2 +11676,11734,11736,11794,0.118965517241403,0.166101694914858,0.124137931034504,0.160169491525002,0.124137931034506,0.172033898304681,0.129310344827606,0.166101694914825,-0.011864406779678,0.000000000000003,-0.000000000000034,-0.010344827586204,0.000000000000032,0.010344827586203,0.011864406779680,-0.000000000000002,2 +11677,11735,11737,11795,0.118965517241406,0.177966101694546,0.124137931034506,0.172033898304681,0.124137931034508,0.183898305084381,0.129310344827608,0.177966101694515,-0.011864406779699,0.000000000000003,-0.000000000000032,-0.010344827586203,0.000000000000029,0.010344827586202,0.011864406779701,-0.000000000000002,2 +11678,11736,11738,11796,0.118965517241408,0.189830508474230,0.124137931034508,0.183898305084381,0.124137931034510,0.195762711864050,0.129310344827610,0.189830508474201,-0.011864406779669,0.000000000000002,-0.000000000000029,-0.010344827586202,0.000000000000027,0.010344827586201,0.011864406779671,-0.000000000000002,2 +11679,11737,11739,11797,0.118965517241411,0.201694915253918,0.124137931034510,0.195762711864050,0.124137931034512,0.207627118643759,0.129310344827612,0.201694915253892,-0.011864406779707,0.000000000000003,-0.000000000000027,-0.010344827586201,0.000000000000024,0.010344827586201,0.011864406779710,-0.000000000000002,2 +11680,11738,11740,11798,0.118965517241413,0.213559322033606,0.124137931034512,0.207627118643759,0.124137931034515,0.219491525423430,0.129310344827614,0.213559322033583,-0.011864406779670,0.000000000000003,-0.000000000000024,-0.010344827586201,0.000000000000023,0.010344827586200,0.011864406779672,-0.000000000000002,2 +11681,11739,11741,11799,0.118965517241416,0.225423728813289,0.124137931034515,0.219491525423430,0.124137931034517,0.231355932203126,0.129310344827615,0.225423728813267,-0.011864406779695,0.000000000000003,-0.000000000000023,-0.010344827586200,0.000000000000020,0.010344827586199,0.011864406779697,-0.000000000000002,2 +11682,11740,11742,11800,0.118965517241419,0.237288135592978,0.124137931034517,0.231355932203126,0.124137931034519,0.243220338982810,0.129310344827617,0.237288135592958,-0.011864406779683,0.000000000000002,-0.000000000000020,-0.010344827586199,0.000000000000019,0.010344827586198,0.011864406779685,-0.000000000000002,2 +11683,11741,11743,11801,0.118965517241421,0.249152542372660,0.124137931034519,0.243220338982810,0.124137931034521,0.255084745762492,0.129310344827619,0.249152542372642,-0.011864406779681,0.000000000000003,-0.000000000000019,-0.010344827586198,0.000000000000016,0.010344827586198,0.011864406779683,-0.000000000000002,2 +11684,11742,11744,11802,0.118965517241424,0.261016949152347,0.124137931034521,0.255084745762492,0.124137931034523,0.266949152542188,0.129310344827621,0.261016949152332,-0.011864406779694,0.000000000000003,-0.000000000000016,-0.010344827586198,0.000000000000013,0.010344827586197,0.011864406779697,-0.000000000000002,2 +11685,11743,11745,11803,0.118965517241426,0.272881355932030,0.124137931034523,0.266949152542188,0.124137931034526,0.278813559321859,0.129310344827623,0.272881355932017,-0.011864406779670,0.000000000000002,-0.000000000000013,-0.010344827586197,0.000000000000012,0.010344827586196,0.011864406779671,-0.000000000000002,2 +11686,11744,11746,11804,0.118965517241429,0.284745762711719,0.124137931034526,0.278813559321859,0.124137931034528,0.290677966101568,0.129310344827625,0.284745762711708,-0.011864406779708,0.000000000000003,-0.000000000000012,-0.010344827586196,0.000000000000009,0.010344827586195,0.011864406779711,-0.000000000000002,2 +11687,11745,11747,11805,0.118965517241431,0.296610169491408,0.124137931034528,0.290677966101568,0.124137931034530,0.302542372881239,0.129310344827626,0.296610169491399,-0.011864406779671,0.000000000000003,-0.000000000000009,-0.010344827586195,0.000000000000008,0.010344827586195,0.011864406779672,-0.000000000000002,2 +11688,11746,11748,11806,0.118965517241434,0.308474576271092,0.124137931034530,0.302542372881239,0.124137931034532,0.314406779660939,0.129310344827628,0.308474576271085,-0.011864406779698,0.000000000000002,-0.000000000000008,-0.010344827586195,0.000000000000006,0.010344827586194,0.011864406779701,-0.000000000000002,2 +11689,11747,11749,11807,0.118965517241437,0.320338983050782,0.124137931034532,0.314406779660939,0.124137931034534,0.326271186440620,0.129310344827630,0.320338983050777,-0.011864406779681,0.000000000000003,-0.000000000000006,-0.010344827586194,0.000000000000004,0.010344827586193,0.011864406779682,-0.000000000000002,2 +11690,11748,11750,11808,0.118965517241439,0.332203389830465,0.124137931034534,0.326271186440620,0.124137931034537,0.338135593220306,0.129310344827632,0.332203389830461,-0.011864406779685,0.000000000000003,-0.000000000000004,-0.010344827586193,0.000000000000002,0.010344827586192,0.011864406779687,-0.000000000000002,2 +7722,11691,11749,11809,0.124137931034539,0.350000000000000,0.118965517241442,0.344067796610154,0.124137931034537,0.338135593220306,0.129310344827634,0.344067796610153,-0.000000000000000,0.010344827586192,-0.011864406779693,0.000000000000003,-0.000000000000002,-0.010344827586192,0.011864406779695,-0.000000000000002,2 +8953,11692,11752,11810,0.134482758620646,-0.350000000000000,0.129310344827529,-0.344067796610179,0.134482758620647,-0.338135593220359,0.139655172413764,-0.344067796610180,-0.000000000000000,-0.010344827586236,-0.011864406779642,0.000000000000002,0.000000000000002,0.010344827586235,0.011864406779640,-0.000000000000001,2 +11693,11751,11753,11811,0.129310344827531,-0.332203389830541,0.134482758620647,-0.338135593220359,0.134482758620649,-0.326271186440726,0.139655172413765,-0.332203389830544,-0.011864406779635,0.000000000000002,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586234,0.011864406779632,-0.000000000000001,2 +11694,11752,11754,11812,0.129310344827532,-0.320338983050900,0.134482758620649,-0.326271186440726,0.134482758620650,-0.314406779661079,0.139655172413766,-0.320338983050905,-0.011864406779647,0.000000000000002,-0.000000000000004,-0.010344827586234,0.000000000000006,0.010344827586233,0.011864406779646,-0.000000000000001,2 +11695,11753,11755,11813,0.129310344827534,-0.308474576271260,0.134482758620650,-0.314406779661079,0.134482758620651,-0.302542372881448,0.139655172413767,-0.308474576271267,-0.011864406779632,0.000000000000002,-0.000000000000006,-0.010344827586233,0.000000000000008,0.010344827586232,0.011864406779629,-0.000000000000001,2 +11696,11754,11756,11814,0.129310344827536,-0.296610169491620,0.134482758620651,-0.302542372881448,0.134482758620652,-0.290677966101800,0.139655172413768,-0.296610169491629,-0.011864406779649,0.000000000000002,-0.000000000000008,-0.010344827586232,0.000000000000009,0.010344827586231,0.011864406779648,-0.000000000000001,2 +11697,11755,11757,11815,0.129310344827538,-0.284745762711978,0.134482758620652,-0.290677966101800,0.134482758620654,-0.278813559322167,0.139655172413768,-0.284745762711989,-0.011864406779634,0.000000000000002,-0.000000000000009,-0.010344827586231,0.000000000000012,0.010344827586230,0.011864406779632,-0.000000000000001,2 +11698,11756,11758,11816,0.129310344827540,-0.272881355932340,0.134482758620654,-0.278813559322167,0.134482758620655,-0.266949152542526,0.139655172413769,-0.272881355932353,-0.011864406779642,0.000000000000002,-0.000000000000012,-0.010344827586230,0.000000000000014,0.010344827586229,0.011864406779641,-0.000000000000001,2 +11699,11757,11759,11817,0.129310344827541,-0.261016949152706,0.134482758620655,-0.266949152542526,0.134482758620656,-0.255084745762901,0.139655172413770,-0.261016949152721,-0.011864406779626,0.000000000000002,-0.000000000000014,-0.010344827586229,0.000000000000016,0.010344827586228,0.011864406779624,-0.000000000000001,2 +11700,11758,11760,11818,0.129310344827543,-0.249152542373079,0.134482758620656,-0.255084745762901,0.134482758620658,-0.243220338983275,0.139655172413771,-0.249152542373097,-0.011864406779627,0.000000000000002,-0.000000000000016,-0.010344827586228,0.000000000000019,0.010344827586227,0.011864406779625,-0.000000000000001,2 +11701,11759,11761,11819,0.129310344827545,-0.237288135593447,0.134482758620658,-0.243220338983275,0.134482758620659,-0.231355932203638,0.139655172413772,-0.237288135593466,-0.011864406779638,0.000000000000002,-0.000000000000019,-0.010344827586227,0.000000000000020,0.010344827586226,0.011864406779637,-0.000000000000001,2 +11702,11760,11762,11820,0.129310344827547,-0.225423728813809,0.134482758620659,-0.231355932203638,0.134482758620660,-0.219491525424003,0.139655172413772,-0.225423728813831,-0.011864406779636,0.000000000000002,-0.000000000000020,-0.010344827586226,0.000000000000023,0.010344827586225,0.011864406779634,-0.000000000000001,2 +11703,11761,11763,11821,0.129310344827549,-0.213559322034173,0.134482758620660,-0.219491525424003,0.134482758620662,-0.207627118644368,0.139655172413773,-0.213559322034197,-0.011864406779636,0.000000000000002,-0.000000000000023,-0.010344827586225,0.000000000000024,0.010344827586224,0.011864406779634,-0.000000000000001,2 +11704,11762,11764,11822,0.129310344827550,-0.201694915254539,0.134482758620662,-0.207627118644368,0.134482758620663,-0.195762711864736,0.139655172413774,-0.201694915254565,-0.011864406779633,0.000000000000002,-0.000000000000024,-0.010344827586224,0.000000000000027,0.010344827586223,0.011864406779630,-0.000000000000001,2 +11705,11763,11765,11823,0.129310344827552,-0.189830508474908,0.134482758620663,-0.195762711864736,0.134482758620664,-0.183898305085107,0.139655172413775,-0.189830508474936,-0.011864406779630,0.000000000000002,-0.000000000000027,-0.010344827586223,0.000000000000029,0.010344827586222,0.011864406779628,-0.000000000000001,2 +11706,11764,11766,11824,0.129310344827554,-0.177966101695277,0.134482758620664,-0.183898305085107,0.134482758620665,-0.172033898305477,0.139655172413776,-0.177966101695307,-0.011864406779632,0.000000000000002,-0.000000000000029,-0.010344827586222,0.000000000000032,0.010344827586221,0.011864406779629,-0.000000000000001,2 +11707,11765,11767,11825,0.129310344827556,-0.166101694915645,0.134482758620665,-0.172033898305477,0.134482758620667,-0.160169491525847,0.139655172413776,-0.166101694915678,-0.011864406779630,0.000000000000002,-0.000000000000032,-0.010344827586221,0.000000000000034,0.010344827586220,0.011864406779629,-0.000000000000001,2 +11708,11766,11768,11826,0.129310344827558,-0.154237288136015,0.134482758620667,-0.160169491525847,0.134482758620668,-0.148305084746218,0.139655172413777,-0.154237288136050,-0.011864406779630,0.000000000000002,-0.000000000000034,-0.010344827586220,0.000000000000035,0.010344827586219,0.011864406779628,-0.000000000000001,2 +11709,11767,11769,11827,0.129310344827559,-0.142372881356384,0.134482758620668,-0.148305084746218,0.134482758620669,-0.136440677966587,0.139655172413778,-0.142372881356421,-0.011864406779632,0.000000000000002,-0.000000000000035,-0.010344827586219,0.000000000000038,0.010344827586218,0.011864406779629,-0.000000000000001,2 +11710,11768,11770,11828,0.129310344827561,-0.130508474576748,0.134482758620669,-0.136440677966587,0.134482758620671,-0.124576271186948,0.139655172413779,-0.130508474576787,-0.011864406779641,0.000000000000002,-0.000000000000038,-0.010344827586218,0.000000000000040,0.010344827586217,0.011864406779639,-0.000000000000001,2 +11711,11769,11771,11829,0.129310344827563,-0.118644067797112,0.134482758620671,-0.124576271186948,0.134482758620672,-0.112711864407317,0.139655172413780,-0.118644067797153,-0.011864406779631,0.000000000000002,-0.000000000000040,-0.010344827586217,0.000000000000042,0.010344827586216,0.011864406779629,-0.000000000000001,2 +11712,11770,11772,11830,0.129310344827565,-0.106779661017481,0.134482758620672,-0.112711864407317,0.134482758620673,-0.100847457627688,0.139655172413781,-0.106779661017524,-0.011864406779631,0.000000000000002,-0.000000000000042,-0.010344827586216,0.000000000000044,0.010344827586215,0.011864406779629,-0.000000000000001,2 +11713,11771,11773,11831,0.129310344827567,-0.094915254237850,0.134482758620673,-0.100847457627688,0.134482758620675,-0.088983050848057,0.139655172413781,-0.094915254237895,-0.011864406779632,0.000000000000002,-0.000000000000044,-0.010344827586215,0.000000000000046,0.010344827586214,0.011864406779629,-0.000000000000001,2 +11714,11772,11774,11832,0.129310344827568,-0.083050847458218,0.134482758620675,-0.088983050848057,0.134482758620676,-0.077118644068427,0.139655172413782,-0.083050847458266,-0.011864406779631,0.000000000000002,-0.000000000000046,-0.010344827586214,0.000000000000049,0.010344827586213,0.011864406779629,-0.000000000000001,2 +11715,11773,11775,11833,0.129310344827570,-0.071186440678587,0.134482758620676,-0.077118644068427,0.134482758620677,-0.065254237288797,0.139655172413783,-0.071186440678637,-0.011864406779631,0.000000000000002,-0.000000000000049,-0.010344827586213,0.000000000000051,0.010344827586212,0.011864406779629,-0.000000000000001,2 +11716,11774,11776,11834,0.129310344827572,-0.059322033898956,0.134482758620677,-0.065254237288797,0.134482758620679,-0.053389830509167,0.139655172413784,-0.059322033899008,-0.011864406779632,0.000000000000002,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779629,-0.000000000000001,2 +11717,11775,11777,11835,0.129310344827574,-0.047457627119325,0.134482758620679,-0.053389830509167,0.134482758620680,-0.041525423729537,0.139655172413785,-0.047457627119379,-0.011864406779631,0.000000000000002,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779629,-0.000000000000001,2 +11718,11776,11778,11836,0.129310344827576,-0.035593220339694,0.134482758620680,-0.041525423729537,0.134482758620681,-0.029661016949907,0.139655172413785,-0.035593220339750,-0.011864406779631,0.000000000000002,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779629,-0.000000000000001,2 +11719,11777,11779,11837,0.129310344827578,-0.023728813560062,0.134482758620681,-0.029661016949907,0.134482758620682,-0.017796610170277,0.139655172413786,-0.023728813560121,-0.011864406779632,0.000000000000002,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586208,0.011864406779629,-0.000000000000001,2 +11720,11778,11780,11838,0.129310344827579,-0.011864406780431,0.134482758620682,-0.017796610170277,0.134482758620684,-0.005932203390647,0.139655172413787,-0.011864406780493,-0.011864406779631,0.000000000000002,-0.000000000000060,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779629,-0.000000000000001,2 +11721,11779,11781,11839,0.129310344827581,-0.000000000000779,0.134482758620684,-0.005932203390647,0.134482758620685,0.005932203389026,0.139655172413788,-0.000000000000842,-0.011864406779673,0.000000000000002,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000001,2 +11722,11780,11782,11840,0.129310344827583,0.011864406778898,0.134482758620685,0.005932203389026,0.134482758620687,0.017796610168709,0.139655172413789,0.011864406778837,-0.011864406779682,0.000000000000002,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586205,0.011864406779684,-0.000000000000001,2 +11723,11781,11783,11841,0.129310344827585,0.023728813558585,0.134482758620687,0.017796610168709,0.134482758620688,0.029661016948403,0.139655172413789,0.023728813558526,-0.011864406779692,0.000000000000002,-0.000000000000060,-0.010344827586205,0.000000000000058,0.010344827586204,0.011864406779695,-0.000000000000001,2 +11724,11782,11784,11842,0.129310344827587,0.035593220338275,0.134482758620688,0.029661016948403,0.134482758620689,0.041525423728090,0.139655172413790,0.035593220338218,-0.011864406779686,0.000000000000002,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779689,-0.000000000000001,2 +11725,11783,11785,11843,0.129310344827588,0.047457627117962,0.134482758620689,0.041525423728090,0.134482758620690,0.053389830507780,0.139655172413791,0.047457627117908,-0.011864406779688,0.000000000000002,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779691,-0.000000000000001,2 +11726,11784,11786,11844,0.129310344827590,0.059322033897652,0.134482758620690,0.053389830507780,0.134482758620692,0.065254237287473,0.139655172413792,0.059322033897600,-0.011864406779692,0.000000000000002,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779695,-0.000000000000001,2 +11727,11785,11787,11845,0.129310344827592,0.071186440677340,0.134482758620692,0.065254237287473,0.134482758620693,0.077118644067156,0.139655172413793,0.071186440677290,-0.011864406779682,0.000000000000002,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779684,-0.000000000000001,2 +11728,11786,11788,11846,0.129310344827594,0.083050847457027,0.134482758620693,0.077118644067156,0.134482758620694,0.088983050846850,0.139655172413793,0.083050847456979,-0.011864406779692,0.000000000000002,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779695,-0.000000000000001,2 +11729,11787,11789,11847,0.129310344827596,0.094915254236720,0.134482758620694,0.088983050846850,0.134482758620696,0.100847457626544,0.139655172413794,0.094915254236674,-0.011864406779692,0.000000000000002,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779695,-0.000000000000001,2 +11730,11788,11790,11848,0.129310344827597,0.106779661016407,0.134482758620696,0.100847457626544,0.134482758620697,0.112711864406227,0.139655172413795,0.106779661016364,-0.011864406779682,0.000000000000002,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779684,-0.000000000000001,2 +11731,11789,11791,11849,0.129310344827599,0.118644067796094,0.134482758620697,0.112711864406227,0.134482758620698,0.124576271185921,0.139655172413796,0.118644067796054,-0.011864406779692,0.000000000000002,-0.000000000000042,-0.010344827586197,0.000000000000039,0.010344827586196,0.011864406779695,-0.000000000000001,2 +11732,11790,11792,11850,0.129310344827601,0.130508474575782,0.134482758620698,0.124576271185921,0.134482758620700,0.136440677965605,0.139655172413797,0.130508474575744,-0.011864406779684,0.000000000000002,-0.000000000000039,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779685,-0.000000000000001,2 +11733,11791,11793,11851,0.129310344827603,0.142372881355469,0.134482758620700,0.136440677965605,0.134482758620701,0.148305084745297,0.139655172413798,0.142372881355433,-0.011864406779691,0.000000000000002,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779693,-0.000000000000001,2 +11734,11792,11794,11852,0.129310344827605,0.154237288135150,0.134482758620701,0.148305084745297,0.134482758620702,0.160169491524968,0.139655172413798,0.154237288135115,-0.011864406779670,0.000000000000002,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779672,-0.000000000000001,2 +11735,11793,11795,11853,0.129310344827606,0.166101694914825,0.134482758620702,0.160169491524968,0.134482758620703,0.172033898304649,0.139655172413799,0.166101694914792,-0.011864406779680,0.000000000000002,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779682,-0.000000000000001,2 +11736,11794,11796,11854,0.129310344827608,0.177966101694515,0.134482758620703,0.172033898304649,0.134482758620705,0.183898305084352,0.139655172413800,0.177966101694485,-0.011864406779701,0.000000000000002,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779704,-0.000000000000001,2 +11737,11795,11797,11855,0.129310344827610,0.189830508474201,0.134482758620705,0.183898305084352,0.134482758620706,0.195762711864023,0.139655172413801,0.189830508474173,-0.011864406779671,0.000000000000002,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779672,-0.000000000000001,2 +11738,11796,11798,11856,0.129310344827612,0.201694915253892,0.134482758620706,0.195762711864023,0.134482758620707,0.207627118643735,0.139655172413802,0.201694915253866,-0.011864406779710,0.000000000000002,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779713,-0.000000000000001,2 +11739,11797,11799,11857,0.129310344827614,0.213559322033583,0.134482758620707,0.207627118643735,0.134482758620709,0.219491525423407,0.139655172413802,0.213559322033559,-0.011864406779672,0.000000000000002,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779673,-0.000000000000001,2 +11740,11798,11800,11858,0.129310344827615,0.225423728813267,0.134482758620709,0.219491525423407,0.134482758620710,0.231355932203105,0.139655172413803,0.225423728813245,-0.011864406779697,0.000000000000002,-0.000000000000023,-0.010344827586188,0.000000000000020,0.010344827586187,0.011864406779700,-0.000000000000001,2 +11741,11799,11801,11859,0.129310344827617,0.237288135592958,0.134482758620710,0.231355932203105,0.134482758620711,0.243220338982791,0.139655172413804,0.237288135592938,-0.011864406779685,0.000000000000002,-0.000000000000020,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779687,-0.000000000000001,2 +11742,11800,11802,11860,0.129310344827619,0.249152542372642,0.134482758620711,0.243220338982791,0.134482758620713,0.255084745762476,0.139655172413805,0.249152542372625,-0.011864406779683,0.000000000000002,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779686,-0.000000000000001,2 +11743,11801,11803,11861,0.129310344827621,0.261016949152332,0.134482758620713,0.255084745762476,0.134482758620714,0.266949152542174,0.139655172413806,0.261016949152318,-0.011864406779697,0.000000000000002,-0.000000000000016,-0.010344827586185,0.000000000000013,0.010344827586184,0.011864406779700,-0.000000000000001,2 +11744,11802,11804,11862,0.129310344827623,0.272881355932017,0.134482758620714,0.266949152542174,0.134482758620715,0.278813559321846,0.139655172413807,0.272881355932004,-0.011864406779671,0.000000000000002,-0.000000000000013,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779672,-0.000000000000001,2 +11745,11803,11805,11863,0.129310344827625,0.284745762711708,0.134482758620715,0.278813559321846,0.134482758620717,0.290677966101559,0.139655172413807,0.284745762711697,-0.011864406779711,0.000000000000002,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779714,-0.000000000000001,2 +11746,11804,11806,11864,0.129310344827626,0.296610169491399,0.134482758620717,0.290677966101559,0.134482758620718,0.302542372881231,0.139655172413808,0.296610169491390,-0.011864406779672,0.000000000000002,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779673,-0.000000000000001,2 +11747,11805,11807,11865,0.129310344827628,0.308474576271085,0.134482758620718,0.302542372881231,0.134482758620719,0.314406779660933,0.139655172413809,0.308474576271078,-0.011864406779701,0.000000000000002,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779703,-0.000000000000001,2 +11748,11806,11808,11866,0.129310344827630,0.320338983050777,0.134482758620719,0.314406779660933,0.134482758620721,0.326271186440615,0.139655172413810,0.320338983050772,-0.011864406779682,0.000000000000002,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779683,-0.000000000000001,2 +11749,11807,11809,11867,0.129310344827632,0.332203389830461,0.134482758620721,0.326271186440615,0.134482758620722,0.338135593220304,0.139655172413811,0.332203389830458,-0.011864406779687,0.000000000000002,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779690,-0.000000000000001,2 +7708,11750,11808,11868,0.134482758620723,0.350000000000000,0.129310344827634,0.344067796610153,0.134482758620722,0.338135593220304,0.139655172413811,0.344067796610152,-0.000000000000000,0.010344827586177,-0.011864406779695,0.000000000000002,-0.000000000000002,-0.010344827586178,0.011864406779697,-0.000000000000001,2 +8954,10099,11751,11811,0.144827586206882,-0.350000000000000,0.150000000000000,-0.344067796610181,0.139655172413764,-0.344067796610180,0.144827586206882,-0.338135593220361,0.000000000000000,-0.010344827586236,0.011864406779637,0.000000000000000,-0.011864406779640,0.000000000000001,0.000000000000002,0.010344827586235,2 +10100,11752,11810,11812,0.150000000000000,-0.332203389830547,0.139655172413765,-0.332203389830544,0.144827586206882,-0.338135593220361,0.144827586206883,-0.326271186440730,0.011864406779630,0.000000000000000,-0.011864406779632,0.000000000000001,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586235,2 +10101,11753,11811,11813,0.150000000000000,-0.320338983050910,0.139655172413766,-0.320338983050905,0.144827586206883,-0.326271186440730,0.144827586206883,-0.314406779661085,0.011864406779645,0.000000000000000,-0.011864406779646,0.000000000000001,-0.000000000000004,-0.010344827586235,0.000000000000006,0.010344827586234,2 +10102,11754,11812,11814,0.150000000000000,-0.308474576271274,0.139655172413767,-0.308474576271267,0.144827586206883,-0.314406779661085,0.144827586206884,-0.302542372881457,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000006,-0.010344827586234,0.000000000000008,0.010344827586233,2 +10103,11755,11813,11815,0.150000000000000,-0.296610169491638,0.139655172413768,-0.296610169491629,0.144827586206884,-0.302542372881457,0.144827586206884,-0.290677966101810,0.011864406779647,0.000000000000000,-0.011864406779648,0.000000000000001,-0.000000000000008,-0.010344827586233,0.000000000000009,0.010344827586232,2 +10104,11756,11814,11816,0.150000000000000,-0.284745762712000,0.139655172413768,-0.284745762711989,0.144827586206884,-0.290677966101810,0.144827586206884,-0.278813559322180,0.011864406779628,0.000000000000000,-0.011864406779632,0.000000000000001,-0.000000000000009,-0.010344827586232,0.000000000000012,0.010344827586231,2 +10105,11757,11815,11817,0.150000000000000,-0.272881355932366,0.139655172413769,-0.272881355932353,0.144827586206884,-0.278813559322180,0.144827586206885,-0.266949152542540,0.011864406779640,0.000000000000000,-0.011864406779641,0.000000000000001,-0.000000000000012,-0.010344827586231,0.000000000000013,0.010344827586230,2 +10106,11758,11816,11818,0.150000000000000,-0.261016949152736,0.139655172413770,-0.261016949152721,0.144827586206885,-0.266949152542540,0.144827586206885,-0.255084745762917,0.011864406779621,0.000000000000000,-0.011864406779624,0.000000000000001,-0.000000000000013,-0.010344827586230,0.000000000000016,0.010344827586230,2 +10107,11759,11817,11819,0.150000000000000,-0.249152542373114,0.139655172413771,-0.249152542373097,0.144827586206885,-0.255084745762917,0.144827586206886,-0.243220338983294,0.011864406779622,0.000000000000000,-0.011864406779625,0.000000000000001,-0.000000000000016,-0.010344827586230,0.000000000000019,0.010344827586229,2 +10108,11760,11818,11820,0.150000000000000,-0.237288135593486,0.139655172413772,-0.237288135593466,0.144827586206886,-0.243220338983294,0.144827586206886,-0.231355932203658,0.011864406779635,0.000000000000000,-0.011864406779637,0.000000000000001,-0.000000000000019,-0.010344827586229,0.000000000000021,0.010344827586228,2 +10109,11761,11819,11821,0.150000000000000,-0.225423728813853,0.139655172413772,-0.225423728813831,0.144827586206886,-0.231355932203658,0.144827586206886,-0.219491525424026,0.011864406779631,0.000000000000000,-0.011864406779634,0.000000000000001,-0.000000000000021,-0.010344827586228,0.000000000000023,0.010344827586227,2 +10110,11762,11820,11822,0.150000000000000,-0.213559322034221,0.139655172413773,-0.213559322034197,0.144827586206886,-0.219491525424026,0.144827586206887,-0.207627118644392,0.011864406779633,0.000000000000000,-0.011864406779634,0.000000000000001,-0.000000000000023,-0.010344827586227,0.000000000000024,0.010344827586226,2 +10111,11763,11821,11823,0.150000000000000,-0.201694915254591,0.139655172413774,-0.201694915254565,0.144827586206887,-0.207627118644392,0.144827586206887,-0.195762711864764,0.011864406779627,0.000000000000000,-0.011864406779630,0.000000000000001,-0.000000000000024,-0.010344827586226,0.000000000000027,0.010344827586225,2 +10112,11764,11822,11824,0.150000000000000,-0.189830508474964,0.139655172413775,-0.189830508474936,0.144827586206887,-0.195762711864764,0.144827586206888,-0.183898305085136,0.011864406779627,0.000000000000000,-0.011864406779628,0.000000000000001,-0.000000000000027,-0.010344827586225,0.000000000000029,0.010344827586225,2 +10113,11765,11823,11825,0.150000000000000,-0.177966101695338,0.139655172413776,-0.177966101695307,0.144827586206888,-0.183898305085136,0.144827586206888,-0.172033898305508,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000029,-0.010344827586225,0.000000000000032,0.010344827586224,2 +10114,11766,11824,11826,0.150000000000000,-0.166101694915711,0.139655172413776,-0.166101694915678,0.144827586206888,-0.172033898305508,0.144827586206888,-0.160169491525881,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000032,-0.010344827586224,0.000000000000034,0.010344827586223,2 +10115,11767,11825,11827,0.150000000000000,-0.154237288136084,0.139655172413777,-0.154237288136050,0.144827586206888,-0.160169491525881,0.144827586206889,-0.148305084746253,0.011864406779627,0.000000000000000,-0.011864406779628,0.000000000000001,-0.000000000000034,-0.010344827586223,0.000000000000035,0.010344827586222,2 +10116,11768,11826,11828,0.150000000000000,-0.142372881356458,0.139655172413778,-0.142372881356421,0.144827586206889,-0.148305084746253,0.144827586206889,-0.136440677966625,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000035,-0.010344827586222,0.000000000000038,0.010344827586221,2 +10117,11769,11827,11829,0.150000000000000,-0.130508474576826,0.139655172413779,-0.130508474576787,0.144827586206889,-0.136440677966625,0.144827586206890,-0.124576271186987,0.011864406779637,0.000000000000000,-0.011864406779639,0.000000000000001,-0.000000000000038,-0.010344827586221,0.000000000000039,0.010344827586221,2 +10118,11770,11828,11830,0.150000000000000,-0.118644067797194,0.139655172413780,-0.118644067797153,0.144827586206890,-0.124576271186987,0.144827586206890,-0.112711864407359,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000039,-0.010344827586221,0.000000000000042,0.010344827586220,2 +10119,11771,11829,11831,0.150000000000000,-0.106779661017567,0.139655172413781,-0.106779661017524,0.144827586206890,-0.112711864407359,0.144827586206890,-0.100847457627732,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000042,-0.010344827586220,0.000000000000044,0.010344827586219,2 +10120,11772,11830,11832,0.150000000000000,-0.094915254237940,0.139655172413781,-0.094915254237895,0.144827586206890,-0.100847457627732,0.144827586206891,-0.088983050848104,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000044,-0.010344827586219,0.000000000000046,0.010344827586218,2 +10121,11773,11831,11833,0.150000000000000,-0.083050847458314,0.139655172413782,-0.083050847458266,0.144827586206891,-0.088983050848104,0.144827586206891,-0.077118644068476,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000046,-0.010344827586218,0.000000000000049,0.010344827586217,2 +10122,11774,11832,11834,0.150000000000000,-0.071186440678687,0.139655172413783,-0.071186440678637,0.144827586206891,-0.077118644068476,0.144827586206892,-0.065254237288848,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000049,-0.010344827586217,0.000000000000051,0.010344827586217,2 +10123,11775,11833,11835,0.150000000000000,-0.059322033899060,0.139655172413784,-0.059322033899008,0.144827586206892,-0.065254237288848,0.144827586206892,-0.053389830509221,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000051,-0.010344827586217,0.000000000000053,0.010344827586216,2 +10124,11776,11834,11836,0.150000000000000,-0.047457627119434,0.139655172413785,-0.047457627119379,0.144827586206892,-0.053389830509221,0.144827586206893,-0.041525423729593,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000053,-0.010344827586216,0.000000000000056,0.010344827586215,2 +10125,11777,11835,11837,0.150000000000000,-0.035593220339807,0.139655172413785,-0.035593220339750,0.144827586206893,-0.041525423729593,0.144827586206893,-0.029661016949965,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000056,-0.010344827586215,0.000000000000058,0.010344827586214,2 +10126,11778,11836,11838,0.150000000000000,-0.023728813560181,0.139655172413786,-0.023728813560121,0.144827586206893,-0.029661016949965,0.144827586206893,-0.017796610170337,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000058,-0.010344827586214,0.000000000000060,0.010344827586213,2 +10127,11779,11837,11839,0.150000000000000,-0.011864406780554,0.139655172413787,-0.011864406780493,0.144827586206893,-0.017796610170337,0.144827586206894,-0.005932203390709,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000060,-0.010344827586213,0.000000000000062,0.010344827586213,2 +10128,11780,11838,11840,0.150000000000000,-0.000000000000904,0.139655172413788,-0.000000000000842,0.144827586206894,-0.005932203390709,0.144827586206894,0.005932203388963,0.011864406779673,0.000000000000000,-0.011864406779673,0.000000000000001,-0.000000000000062,-0.010344827586213,0.000000000000062,0.010344827586212,2 +10129,11781,11839,11841,0.150000000000000,0.011864406778775,0.139655172413789,0.011864406778837,0.144827586206894,0.005932203388963,0.144827586206895,0.017796610168649,0.011864406779686,0.000000000000000,-0.011864406779684,0.000000000000001,-0.000000000000062,-0.010344827586212,0.000000000000060,0.010344827586211,2 +10130,11782,11840,11842,0.150000000000000,0.023728813558467,0.139655172413789,0.023728813558526,0.144827586206895,0.017796610168649,0.144827586206895,0.029661016948345,0.011864406779697,0.000000000000000,-0.011864406779695,0.000000000000001,-0.000000000000060,-0.010344827586211,0.000000000000058,0.010344827586210,2 +10131,11783,11841,11843,0.150000000000000,0.035593220338161,0.139655172413790,0.035593220338218,0.144827586206895,0.029661016948345,0.144827586206895,0.041525423728034,0.011864406779691,0.000000000000000,-0.011864406779689,0.000000000000001,-0.000000000000058,-0.010344827586210,0.000000000000056,0.010344827586209,2 +10132,11784,11842,11844,0.150000000000000,0.047457627117853,0.139655172413791,0.047457627117908,0.144827586206895,0.041525423728034,0.144827586206896,0.053389830507726,0.011864406779693,0.000000000000000,-0.011864406779691,0.000000000000001,-0.000000000000056,-0.010344827586209,0.000000000000053,0.010344827586208,2 +10133,11785,11843,11845,0.150000000000000,0.059322033897548,0.139655172413792,0.059322033897600,0.144827586206896,0.053389830507726,0.144827586206896,0.065254237287422,0.011864406779697,0.000000000000000,-0.011864406779695,0.000000000000001,-0.000000000000053,-0.010344827586208,0.000000000000051,0.010344827586208,2 +10134,11786,11844,11846,0.150000000000000,0.071186440677240,0.139655172413793,0.071186440677290,0.144827586206896,0.065254237287422,0.144827586206897,0.077118644067108,0.011864406779686,0.000000000000000,-0.011864406779684,0.000000000000001,-0.000000000000051,-0.010344827586208,0.000000000000049,0.010344827586207,2 +10135,11787,11845,11847,0.150000000000000,0.083050847456932,0.139655172413793,0.083050847456979,0.144827586206897,0.077118644067108,0.144827586206897,0.088983050846804,0.011864406779697,0.000000000000000,-0.011864406779695,0.000000000000001,-0.000000000000049,-0.010344827586207,0.000000000000046,0.010344827586206,2 +10136,11788,11846,11848,0.150000000000000,0.094915254236629,0.139655172413794,0.094915254236674,0.144827586206897,0.088983050846804,0.144827586206897,0.100847457626500,0.011864406779697,0.000000000000000,-0.011864406779695,0.000000000000001,-0.000000000000046,-0.010344827586206,0.000000000000044,0.010344827586205,2 +10137,11789,11847,11849,0.150000000000000,0.106779661016321,0.139655172413795,0.106779661016364,0.144827586206897,0.100847457626500,0.144827586206898,0.112711864406185,0.011864406779686,0.000000000000000,-0.011864406779684,0.000000000000001,-0.000000000000044,-0.010344827586205,0.000000000000042,0.010344827586204,2 +10138,11790,11848,11850,0.150000000000000,0.118644067796013,0.139655172413796,0.118644067796054,0.144827586206898,0.112711864406185,0.144827586206898,0.124576271185881,0.011864406779697,0.000000000000000,-0.011864406779695,0.000000000000001,-0.000000000000042,-0.010344827586204,0.000000000000040,0.010344827586204,2 +10139,11791,11849,11851,0.150000000000000,0.130508474575705,0.139655172413797,0.130508474575744,0.144827586206898,0.124576271185881,0.144827586206899,0.136440677965567,0.011864406779687,0.000000000000000,-0.011864406779685,0.000000000000001,-0.000000000000040,-0.010344827586204,0.000000000000038,0.010344827586203,2 +10140,11792,11850,11852,0.150000000000000,0.142372881355396,0.139655172413798,0.142372881355433,0.144827586206899,0.136440677965567,0.144827586206899,0.148305084745261,0.011864406779695,0.000000000000000,-0.011864406779693,0.000000000000001,-0.000000000000038,-0.010344827586203,0.000000000000035,0.010344827586202,2 +10141,11793,11851,11853,0.150000000000000,0.154237288135081,0.139655172413798,0.154237288135115,0.144827586206899,0.148305084745261,0.144827586206899,0.160169491524935,0.011864406779674,0.000000000000000,-0.011864406779672,0.000000000000001,-0.000000000000035,-0.010344827586202,0.000000000000034,0.010344827586201,2 +10142,11794,11852,11854,0.150000000000000,0.166101694914759,0.139655172413799,0.166101694914792,0.144827586206899,0.160169491524935,0.144827586206900,0.172033898304617,0.011864406779684,0.000000000000000,-0.011864406779682,0.000000000000001,-0.000000000000034,-0.010344827586201,0.000000000000032,0.010344827586200,2 +10143,11795,11853,11855,0.150000000000000,0.177966101694455,0.139655172413800,0.177966101694485,0.144827586206900,0.172033898304617,0.144827586206900,0.183898305084323,0.011864406779707,0.000000000000000,-0.011864406779704,0.000000000000001,-0.000000000000032,-0.010344827586200,0.000000000000029,0.010344827586200,2 +10144,11796,11854,11856,0.150000000000000,0.189830508474145,0.139655172413801,0.189830508474173,0.144827586206900,0.183898305084323,0.144827586206901,0.195762711863996,0.011864406779674,0.000000000000000,-0.011864406779672,0.000000000000001,-0.000000000000029,-0.010344827586200,0.000000000000027,0.010344827586199,2 +10145,11797,11855,11857,0.150000000000000,0.201694915253840,0.139655172413802,0.201694915253866,0.144827586206901,0.195762711863996,0.144827586206901,0.207627118643710,0.011864406779716,0.000000000000000,-0.011864406779713,0.000000000000001,-0.000000000000027,-0.010344827586199,0.000000000000024,0.010344827586198,2 +10146,11798,11856,11858,0.150000000000000,0.213559322033535,0.139655172413802,0.213559322033559,0.144827586206901,0.207627118643710,0.144827586206901,0.219491525423384,0.011864406779674,0.000000000000000,-0.011864406779673,0.000000000000001,-0.000000000000024,-0.010344827586198,0.000000000000023,0.010344827586197,2 +10147,11799,11857,11859,0.150000000000000,0.225423728813224,0.139655172413803,0.225423728813245,0.144827586206901,0.219491525423384,0.144827586206902,0.231355932203085,0.011864406779702,0.000000000000000,-0.011864406779700,0.000000000000001,-0.000000000000023,-0.010344827586197,0.000000000000021,0.010344827586196,2 +10148,11800,11858,11860,0.150000000000000,0.237288135592919,0.139655172413804,0.237288135592938,0.144827586206902,0.231355932203085,0.144827586206902,0.243220338982773,0.011864406779689,0.000000000000000,-0.011864406779687,0.000000000000001,-0.000000000000021,-0.010344827586196,0.000000000000019,0.010344827586195,2 +10149,11801,11859,11861,0.150000000000000,0.249152542372607,0.139655172413805,0.249152542372625,0.144827586206902,0.243220338982773,0.144827586206903,0.255084745762459,0.011864406779688,0.000000000000000,-0.011864406779686,0.000000000000001,-0.000000000000019,-0.010344827586195,0.000000000000016,0.010344827586195,2 +10150,11802,11860,11862,0.150000000000000,0.261016949152303,0.139655172413806,0.261016949152318,0.144827586206903,0.255084745762459,0.144827586206903,0.266949152542161,0.011864406779703,0.000000000000000,-0.011864406779700,0.000000000000001,-0.000000000000016,-0.010344827586195,0.000000000000014,0.010344827586194,2 +10151,11803,11861,11863,0.150000000000000,0.272881355931991,0.139655172413807,0.272881355932004,0.144827586206903,0.266949152542161,0.144827586206904,0.278813559321834,0.011864406779674,0.000000000000000,-0.011864406779672,0.000000000000001,-0.000000000000014,-0.010344827586194,0.000000000000012,0.010344827586193,2 +10152,11804,11862,11864,0.150000000000000,0.284745762711686,0.139655172413807,0.284745762711697,0.144827586206904,0.278813559321834,0.144827586206904,0.290677966101549,0.011864406779717,0.000000000000000,-0.011864406779714,0.000000000000001,-0.000000000000012,-0.010344827586193,0.000000000000009,0.010344827586192,2 +10153,11805,11863,11865,0.150000000000000,0.296610169491382,0.139655172413808,0.296610169491390,0.144827586206904,0.290677966101549,0.144827586206904,0.302542372881223,0.011864406779674,0.000000000000000,-0.011864406779673,0.000000000000001,-0.000000000000009,-0.010344827586192,0.000000000000008,0.010344827586191,2 +10154,11806,11864,11866,0.150000000000000,0.308474576271071,0.139655172413809,0.308474576271078,0.144827586206904,0.302542372881223,0.144827586206905,0.314406779660927,0.011864406779706,0.000000000000000,-0.011864406779703,0.000000000000001,-0.000000000000008,-0.010344827586191,0.000000000000005,0.010344827586191,2 +10155,11807,11865,11867,0.150000000000000,0.320338983050767,0.139655172413810,0.320338983050772,0.144827586206905,0.314406779660927,0.144827586206905,0.326271186440611,0.011864406779685,0.000000000000000,-0.011864406779683,0.000000000000001,-0.000000000000005,-0.010344827586191,0.000000000000004,0.010344827586190,2 +10156,11808,11866,11868,0.150000000000000,0.332203389830455,0.139655172413811,0.332203389830458,0.144827586206905,0.326271186440611,0.144827586206906,0.338135593220302,0.011864406779692,0.000000000000000,-0.011864406779690,0.000000000000001,-0.000000000000004,-0.010344827586190,0.000000000000002,0.010344827586189,2 +7694,10157,11809,11867,0.144827586206906,0.350000000000000,0.150000000000000,0.344067796610150,0.139655172413811,0.344067796610152,0.144827586206906,0.338135593220302,-0.000000000000000,0.010344827586188,0.011864406779699,-0.000000000000000,-0.011864406779697,0.000000000000001,-0.000000000000002,-0.010344827586189,2 diff --git a/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.geo b/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.geo new file mode 100644 index 00000000..3bf455eb --- /dev/null +++ b/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.geo @@ -0,0 +1,406 @@ +n_recombine = 15; +n_recombine_coarse = 15; + +cl_fine = 0.1; + +// Outer points +Point(1) = {-0.65, -0.65, 0, cl_fine}; +Point(2) = {0.65, -0.65, 0, cl_fine}; +Point(3) = {-0.65, 0.65, 0, cl_fine}; +Point(4) = {0.65, 0.65, 0, cl_fine}; + +// Geometry features +// Black +Point(5) = {-0.65, 0.6, 0, cl_fine}; +Point(6) = {0.65, 0.6, 0, cl_fine}; +Point(7) = {-0.65, -0.6, 0, cl_fine}; +Point(8) = {0.65, -0.6, 0, cl_fine}; + +// Red +Point(9) = {-0.65, 0.4, 0, cl_fine}; +Point(10) = {-0.6, 0.4, 0, cl_fine}; +Point(11) = {-0.6, -0.4, 0, cl_fine}; +Point(12) = {-0.65, -0.4, 0, cl_fine}; + +Point(13) = {0.65, 0.4, 0, cl_fine}; +Point(14) = {0.6, 0.4, 0, cl_fine}; +Point(15) = {0.6, -0.4, 0, cl_fine}; +Point(16) = {0.65, -0.4, 0, cl_fine}; + +// Green (and blue) +Point(17) = {-0.2, -0.4, 0, cl_fine}; +Point(18) = {-0.2, 0.4, 0, cl_fine}; +Point(19) = {0.2, 0.4, 0, cl_fine}; +Point(20) = {0.2, -0.4, 0, cl_fine}; + +Point(21) = {-0.15, -0.35, 0, cl_fine}; +Point(22) = {-0.15, 0.35, 0, cl_fine}; +Point(23) = {0.15, 0.35, 0, cl_fine}; +Point(24) = {0.15, -0.35, 0, cl_fine}; + + + + +// Lines of basic geometric features +//+ +Line(1) = {3, 5}; +//+ +//+ +Line(3) = {6, 4}; +//+ +Line(5) = {7, 1}; +//+ +Line(8) = {2, 8}; +//+ +//+ +Line(10) = {12, 11}; +//+ +//+ +Line(13) = {10, 9}; +//+ +//+ +Line(15) = {15, 16}; +//+ +//+ +Line(17) = {13, 14}; +//+ +//+ +Line(19) = {21, 24}; +//+ +Line(20) = {24, 23}; +//+ +Line(21) = {23, 22}; +//+ +Line(22) = {22, 21}; +//+ +//Line(26) = {19, 18}; +//+ +Line(28) = {5, 9}; +//+ +Line(29) = {12, 7}; +//+q +Line(30) = {8, 16}; +//+ +Line(31) = {13, 6}; + +// Helper points and lines +Point(25) = {-0.6, 0.6, 0, cl_fine}; +Point(26) = {-0.6, -0.6, 0, cl_fine}; +Point(27) = {0.6, 0.6, 0, cl_fine}; +Point(28) = {0.6, -0.6, 0, cl_fine}; + +Point(29) = {-0.2, 0.6, 0, cl_fine}; +Point(30) = {-0.2, -0.6, 0, cl_fine}; +Point(31) = {0.2, 0.6, 0, cl_fine}; +Point(32) = {0.2, -0.6, 0, cl_fine}; + +Point(33) = {-0.2, 0.65, 0, cl_fine}; +Point(34) = {-0.2, -0.65, 0, cl_fine}; +Point(35) = {0.2, 0.65, 0, cl_fine}; +Point(36) = {0.2, -0.65, 0, cl_fine}; +//+ +Point(37) = {-0.6, 0.65, 0, cl_fine}; +Point(38) = {-0.6, -0.65, 0, cl_fine}; +Point(39) = {0.6, 0.65, 0, cl_fine}; +Point(40) = {0.6, -0.65, 0, cl_fine}; +//+ +Line(32) = {7, 26}; +//+ +Line(33) = {26, 11}; +//+ +Line(34) = {11, 10}; +//+ +Line(35) = {9, 12}; +//+ +Line(37) = {28, 8}; +//+ +Line(38) = {28, 15}; +//+ +Line(40) = {18, 19}; +//+ +Line(41) = {19, 23}; +//+ +Line(42) = {19, 20}; +//+ +Line(43) = {20, 24}; +//+ +Line(44) = {21, 17}; +//+ +Line(45) = {17, 20}; +//+ +Line(46) = {17, 18}; +//+ +Line(47) = {10, 25}; +//+ +Line(48) = {25, 5}; +//+ +Line(50) = {27, 14}; +//+ +Line(51) = {27, 6}; +//+ +Line(52) = {13, 16}; +//+ +Line(53) = {14, 15}; +//+ +Line(54) = {19, 14}; +//+ +Line(55) = {20, 15}; +//+ +Line(56) = {17, 11}; +//+ +Line(57) = {10, 18}; +//+ +Line(58) = {25, 29}; +//+ +Line(59) = {29, 31}; +//+ +Line(60) = {31, 27}; +//+ +Line(61) = {22, 18}; +//+ +Line(62) = {29, 18}; +//+ +Line(63) = {31, 19}; +//+ +Line(64) = {17, 30}; +//+ +Line(65) = {30, 26}; +//+ +Line(66) = {30, 32}; +//+ +Line(67) = {32, 28}; +//+ +Line(68) = {32, 20}; +//+ +Line(69) = {1, 38}; +//+ +Line(70) = {38, 26}; +//+ +Line(71) = {38, 34}; +//+ +Line(72) = {34, 36}; +//+ +Line(73) = {36, 40}; +//+ +Line(74) = {40, 2}; +//+ +Line(75) = {40, 28}; +//+ +Line(76) = {36, 32}; +//+ +Line(77) = {34, 30}; +//+ +Line(78) = {39, 27}; +//+ +Line(79) = {39, 4}; +//+ +Line(80) = {39, 35}; +//+ +Line(81) = {35, 31}; +//+ +Line(82) = {35, 33}; +//+ +Line(83) = {33, 29}; +//+ +Line(84) = {33, 37}; +//+ +Line(85) = {37, 25}; +//+ +Line(86) = {37, 3}; +//+ +Curve Loop(1) = {48, -1, -86, 85}; +//+ +Plane Surface(1) = {1}; +//+ +Curve Loop(2) = {47, 48, 28, -13}; +//+ +Plane Surface(2) = {2}; +//+ +Curve Loop(3) = {34, 13, 35, 10}; +//+ +Plane Surface(3) = {3}; +//+ +Curve Loop(4) = {33, -10, 29, 32}; +//+ +Plane Surface(4) = {4}; +//+ +Curve Loop(5) = {70, -32, 5, 69}; +//+ +Plane Surface(5) = {5}; +//+ +Curve Loop(6) = {71, 77, 65, -70}; +//+ +Plane Surface(6) = {6}; +//+ +Curve Loop(7) = {72, 76, -66, -77}; +//+ +Plane Surface(7) = {7}; +//+ +Curve Loop(8) = {73, 75, -67, -76}; +//+ +Plane Surface(8) = {8}; +//+ +Curve Loop(9) = {74, 8, -37, -75}; +//+ +Plane Surface(9) = {9}; +//+ +Curve Loop(10) = {37, 30, -15, -38}; +//+ +Plane Surface(10) = {10}; +//+ +Curve Loop(11) = {15, -52, 17, 53}; +//+ +Plane Surface(11) = {11}; +//+ +Curve Loop(12) = {17, -50, 51, -31}; +//+ +Plane Surface(12) = {12}; +//+ +Curve Loop(13) = {51, 3, -79, 78}; +//+ +Plane Surface(13) = {13}; +//+ +Curve Loop(14) = {60, -78, 80, 81}; +//+ +Plane Surface(14) = {14}; +//+ +Curve Loop(15) = {59, -81, 82, 83}; +//+ +Plane Surface(15) = {15}; +//+ +Curve Loop(16) = {58, -83, 84, 85}; +//+ +Plane Surface(16) = {16}; +//+ +Curve Loop(17) = {57, -62, -58, -47}; +//+ +Plane Surface(17) = {17}; +//+ +Curve Loop(18) = {56, 34, 57, -46}; +//+ +Plane Surface(18) = {18}; +//+ +Curve Loop(19) = {65, 33, -56, 64}; +//+ +Plane Surface(19) = {19}; +//+ +Curve Loop(20) = {66, 68, -45, 64}; +//+ +Plane Surface(20) = {20}; +//+ +Curve Loop(21) = {67, 38, -55, -68}; +//+ +Plane Surface(21) = {21}; +//+ +Curve Loop(22) = {55, -53, -54, 42}; +//+ +Plane Surface(22) = {22}; +//+ +Curve Loop(23) = {54, -50, -60, 63}; +//+ +Plane Surface(23) = {23}; +//+ +Curve Loop(24) = {40, -63, -59, 62}; +//+ +Plane Surface(24) = {24}; +//+ +Curve Loop(25) = {21, 61, 40, 41}; +//+ +Plane Surface(25) = {25}; +//+ +Curve Loop(26) = {46, -61, 22, 44}; +//+ +Plane Surface(26) = {26}; +//+ +Curve Loop(27) = {44, 45, 43, -19}; +//+ +Plane Surface(27) = {27}; +//+ +Curve Loop(28) = {43, 20, -41, 42}; +//+ +Plane Surface(28) = {28}; +//+ +Curve Loop(29) = {19, 20, 21, 22}; +//+ +Plane Surface(29) = {29}; +//+ +Physical Curve("void", 87) = {71, 72, 73, 74, 8, 52, 3, 79, 80, 82, 84, 86, 1, 35, 5, 69,29, 30, 31, 28}; +//+ +// Physical Curve("inflow", 88) = {}; +//+ +Transfinite Surface {4}; +//+ +Transfinite Surface {5}; +//+ +Transfinite Surface {6}; +//+ +Transfinite Surface {7}; +//+ +Transfinite Surface {8}; +//+ +Transfinite Surface {9}; +//+ +Transfinite Surface {10}; +//+ +Transfinite Surface {11}; +//+ +Transfinite Surface {12}; +//+ +Transfinite Surface {13}; +//+ +Transfinite Surface {14}; +//+ +Transfinite Surface {15}; +//+ +Transfinite Surface {16}; +//+ +Transfinite Surface {1}; +//+ +Transfinite Surface {2}; +//+ +Transfinite Surface {3}; +//+ +Transfinite Surface {19}; +//+ +Transfinite Surface {20}; +//+ +Transfinite Surface {21}; +//+ +Transfinite Surface {22}; +//+ +Transfinite Surface {23}; +//+ +Transfinite Surface {24}; +//+ +Transfinite Surface {17}; +//+ +Transfinite Surface {18}; +//+ +Transfinite Surface {27}; +//+ +Transfinite Surface {28}; +//+ +Transfinite Surface {25}; +//+ +Transfinite Surface {26}; +//+ +Transfinite Surface {29}; +//+ +Transfinite Curve {44, 43, 41, 61} = n_recombine Using Progression 1; +// + all vertical +Transfinite Curve {71, 65, 56, 57, 58, 84, 72, 66, 45, 19, 21, 40, 59, 82, 73, 67, 55, 54, 60, 80} = n_recombine_coarse *2 Using Progression 1; +//+ horizontal wide +Transfinite Curve {35, 34, 46, 22, 20, 42, 53, 52} = n_recombine_coarse * 4 Using Progression 1; +//+ horizontal small +Transfinite Curve {28, 47, 62, 63, 50, 31, 30, 38, 68, 64, 33, 29} = n_recombine_coarse Using Progression 1; +//+ inlets +Transfinite Curve {69, 32, 10, 13, 48, 86, 79, 51, 17, 15, 37, 74} = n_recombine / 3 Using Progression 1; +//+ upper and lower bound +Transfinite Curve {5, 70, 77, 76, 75, 8, 3, 78, 81, 83, 85, 1} = n_recombine_coarse / 2 Using Progression 1; + +Recombine Surface "*"; +// Define meshing options +//Mesh.Algorithm = 6; // Specify meshing algorithm (e.g., Delaunay) +//Mesh.ElementOrder = 1; // Specify element order +// Generate the mesh +//Mesh 2; \ No newline at end of file diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index fde3e46f..078421f6 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -211,6 +211,8 @@ void ProblemBase::ComputeCurrentOutflow( const VectorVector& solution ) { int idx_cell = it->first; // Get Boundary cell index // Iterate over face cell faces + +#pragma omp parallel for reduction( + : _curScalarOutflow ) for( unsigned idx_nbr = 0; idx_nbr < neigbors[idx_cell].size(); ++idx_nbr ) { // Find face that points outward if( neigbors[idx_cell][idx_nbr] == nCells ) { @@ -237,6 +239,7 @@ void ProblemBase::ComputeMass( const Vector& scalarFlux ) { auto areas = _mesh->GetCellAreas(); unsigned nCells = _mesh->GetNumCells(); +#pragma omp parallel reduction( + : _mass ) for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { _mass += scalarFlux[idx_cell] * areas[idx_cell]; } diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index c7a6d131..4a328236 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -104,7 +104,7 @@ VectorVector SymmetricHohlraum::SetupIC() { VectorVector cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { - psi[j] = 1e-4; // zero initial condition + psi[j] = 0.0; // zero initial condition } return psi; } @@ -255,7 +255,7 @@ void SymmetricHohlraum::SetProbingCellsLineGreen() { _nProbingCellsLineGreen = 2 * nVerticalProbingCells + 2 * nHorizontalProbingCells; _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); - printf( "here" ); + // printf( "here" ); // Sample points on each side of the rectangle std::vector side1 = linspace2D( _cornerUpperLeftGreen, _cornerLowerLeftGreen, nVerticalProbingCells ); @@ -263,8 +263,8 @@ void SymmetricHohlraum::SetProbingCellsLineGreen() { std::vector side3 = linspace2D( _cornerLowerRightGreen, _cornerUpperRightGreen, nVerticalProbingCells ); std::vector side4 = linspace2D( _cornerUpperRightGreen, _cornerUpperLeftGreen, nHorizontalProbingCells ); - printf( "here" ); - // Combine the points from each side + // printf( "here" ); + // Combine the points from each side _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side1.begin(), side1.end() ); _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side2.begin(), side2.end() ); _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side3.begin(), side3.end() ); From 2945356441b6c4703e7f8a8edda7828557f097d0 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 26 Feb 2024 22:50:01 -0500 Subject: [PATCH 093/155] added sym_hohlraum cfg --- examples_hpc/sym_hohlraum/sym_hohlraum.cfg | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 examples_hpc/sym_hohlraum/sym_hohlraum.cfg diff --git a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg new file mode 100644 index 00000000..c6a67356 --- /dev/null +++ b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg @@ -0,0 +1,56 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Hohlraum Benchmarking File MN % +% Author % +% Date 27.04.2022 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% ---- File specifications ---- +% +OUTPUT_DIR = result +% Output file +OUTPUT_FILE = symmetric_hohlraum +% Log directory +LOG_DIR = result/logs +% Log file +LOG_FILE = symmetric_hohlraum +% Mesh File +MESH_FILE = mesh/sym_hohlraum.su2 +% +% ---- Problem specifications ---- +% +PROBLEM = SYMMETRIC_HOHLRAUM +SPATIAL_DIM = 3 +% +% ---- Design Parameters --- +N_SAMPLING_PTS_LINE_GREEN = 100 +% +% ---- Solver specifications ---- +% +SPHERICAL_BASIS = SPHERICAL_HARMONICS +% +CFL_NUMBER = 0.2 +TIME_FINAL = 2 +SOLVER = SN_SOLVER +RECONS_ORDER = 1 +%RK_STAGES = 1 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void ) +% +% ---- Quadrature ---- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 19 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 1 +SCREEN_OUTPUT = (ITER, WALL_TIME, MASS, RMS_FLUX ) +% VAR_ABSORPTION_GREEN, CUR_OUTFLOW, TOTAL_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE) +SCREEN_OUTPUT_FREQUENCY = 1 +HISTORY_OUTPUT = (ITER, WALL_TIME, MASS, RMS_FLUX ) +%VAR_ABSORPTION_GREEN, VAR_ABSORPTION_GREEN_LINE, CUR_OUTFLOW, TOTAL_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE) +HISTORY_OUTPUT_FREQUENCY = 1 + From 0c904104e877603289cddc6c1cff7585b4624174 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Tue, 27 Feb 2024 10:42:11 -0500 Subject: [PATCH 094/155] changed gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 94b16e77..fe6396bb 100755 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ ### Project specific ### +*.con *.cfg bin/* *.su2 From d7b5999010e89f8cd367affa913fdcfd070b772d Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 27 Feb 2024 16:07:41 -0500 Subject: [PATCH 095/155] fix segfault in 2d flux --- .../sym_hohlraum/mesh/sym_hohlraum.con | 11869 ---------------- .../sym_hohlraum/mesh/sym_hohlraum.geo | 19 +- examples_hpc/sym_hohlraum/sym_hohlraum.cfg | 22 +- src/common/mesh.cpp | 19 +- 4 files changed, 31 insertions(+), 11898 deletions(-) delete mode 100644 examples_hpc/sym_hohlraum/mesh/sym_hohlraum.con diff --git a/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.con b/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.con deleted file mode 100644 index b713134c..00000000 --- a/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.con +++ /dev/null @@ -1,11869 +0,0 @@ -1,6,76,1662,-0.606249999999978,0.608333333333283,-0.612499999999957,0.604166666666641,-0.606249999999978,0.600000000000000,-0.600000000000000,0.604166666666641,-0.000000000000000,0.012499999999957,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.012499999999957,0.008333333333283,0.000000000000000,2 -0,2,7,1663,-0.606249999999978,0.608333333333283,-0.606249999999978,0.616666666666674,-0.612499999999957,0.612499999999978,-0.600000000000000,0.612499999999978,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,-0.008333333333391,-0.000000000000000,0.008333333333391,-0.000000000000000,2 -1,3,8,1664,-0.606249999999978,0.616666666666674,-0.606249999999978,0.625000000000043,-0.612499999999957,0.620833333333359,-0.600000000000000,0.620833333333359,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,-0.008333333333369,0.000000000000000,0.008333333333369,-0.000000000000000,2 -2,4,9,1665,-0.606249999999978,0.625000000000043,-0.606249999999978,0.633333333333326,-0.612499999999957,0.629166666666685,-0.600000000000000,0.629166666666685,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,-0.008333333333283,-0.000000000000000,0.008333333333283,-0.000000000000000,2 -3,5,10,1666,-0.606249999999978,0.633333333333326,-0.606249999999978,0.641666666666717,-0.612499999999957,0.637500000000022,-0.600000000000000,0.637500000000022,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,-0.008333333333391,0.000000000000000,0.008333333333391,-0.000000000000000,2 -4,11,1667,11869,-0.606249999999978,0.641666666666717,-0.612499999999957,0.645833333333359,-0.600000000000000,0.645833333333359,-0.606249999999978,0.650000000000000,0.000000000000000,-0.012499999999956,-0.008333333333283,-0.000000000000000,0.008333333333283,-0.000000000000000,-0.000000000000000,0.012499999999957,1 -0,7,12,77,-0.612499999999957,0.604166666666641,-0.618749999999957,0.608333333333283,-0.624999999999956,0.604166666666641,-0.618749999999957,0.600000000000000,0.008333333333283,0.000000000000000,-0.000000000000000,0.012500000000000,-0.008333333333283,0.000000000000000,0.000000000000000,-0.012500000000000,2 -1,6,8,13,-0.612499999999957,0.612499999999978,-0.618749999999957,0.608333333333283,-0.618749999999957,0.616666666666674,-0.624999999999956,0.612499999999978,0.008333333333391,0.000000000000000,0.000000000000000,-0.012500000000000,-0.000000000000000,0.012500000000000,-0.008333333333391,-0.000000000000000,2 -2,7,9,14,-0.612499999999957,0.620833333333359,-0.618749999999957,0.616666666666674,-0.618749999999957,0.625000000000043,-0.624999999999956,0.620833333333359,0.008333333333369,-0.000000000000000,0.000000000000000,-0.012500000000000,-0.000000000000000,0.012500000000000,-0.008333333333369,-0.000000000000000,2 -3,8,10,15,-0.612499999999957,0.629166666666685,-0.618749999999957,0.625000000000043,-0.618749999999957,0.633333333333326,-0.624999999999957,0.629166666666685,0.008333333333283,0.000000000000000,0.000000000000000,-0.012500000000000,-0.000000000000000,0.012500000000000,-0.008333333333283,-0.000000000000000,2 -4,9,11,16,-0.612499999999957,0.637500000000022,-0.618749999999957,0.633333333333326,-0.618749999999957,0.641666666666717,-0.624999999999957,0.637500000000022,0.008333333333391,-0.000000000000000,0.000000000000000,-0.012500000000000,-0.000000000000000,0.012500000000000,-0.008333333333391,-0.000000000000000,2 -5,10,17,11869,-0.612499999999957,0.645833333333359,-0.618749999999957,0.641666666666717,-0.624999999999957,0.645833333333359,-0.618749999999957,0.650000000000000,0.008333333333283,0.000000000000000,0.000000000000000,-0.012500000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,0.012500000000000,1 -6,13,18,78,-0.624999999999956,0.604166666666641,-0.631250000000000,0.608333333333283,-0.637500000000043,0.604166666666641,-0.631250000000000,0.600000000000000,0.008333333333283,-0.000000000000000,-0.000000000000000,0.012500000000087,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.012500000000087,2 -7,12,14,19,-0.624999999999956,0.612499999999978,-0.631250000000000,0.608333333333283,-0.631250000000000,0.616666666666674,-0.637500000000043,0.612499999999978,0.008333333333391,0.000000000000000,0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,-0.008333333333391,-0.000000000000000,2 -8,13,15,20,-0.624999999999956,0.620833333333359,-0.631250000000000,0.616666666666674,-0.631250000000000,0.625000000000043,-0.637500000000043,0.620833333333359,0.008333333333369,0.000000000000000,-0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,-0.008333333333369,-0.000000000000000,2 -9,14,16,21,-0.624999999999957,0.629166666666685,-0.631250000000000,0.625000000000043,-0.631250000000000,0.633333333333326,-0.637500000000043,0.629166666666685,0.008333333333283,0.000000000000000,0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,-0.008333333333283,0.000000000000000,2 -10,15,17,22,-0.624999999999957,0.637500000000022,-0.631250000000000,0.633333333333326,-0.631250000000000,0.641666666666717,-0.637500000000043,0.637500000000022,0.008333333333391,0.000000000000000,0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,-0.008333333333391,-0.000000000000000,2 -11,16,23,11869,-0.624999999999957,0.645833333333359,-0.631250000000000,0.641666666666717,-0.637500000000043,0.645833333333359,-0.631250000000000,0.650000000000000,0.008333333333283,-0.000000000000000,0.000000000000000,-0.012500000000087,-0.008333333333283,0.000000000000000,-0.000000000000000,0.012500000000087,1 -12,19,79,11869,-0.637500000000043,0.604166666666641,-0.643750000000022,0.608333333333283,-0.643750000000022,0.600000000000000,-0.650000000000000,0.604166666666641,0.008333333333283,0.000000000000000,0.000000000000000,0.012499999999957,-0.000000000000000,-0.012499999999957,-0.008333333333283,-0.000000000000000,1 -13,18,20,11869,-0.637500000000043,0.612499999999978,-0.643750000000022,0.608333333333283,-0.643750000000022,0.616666666666674,-0.650000000000000,0.612499999999978,0.008333333333391,0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,-0.008333333333391,0.000000000000000,1 -14,19,21,11869,-0.637500000000043,0.620833333333359,-0.643750000000022,0.616666666666674,-0.643750000000022,0.625000000000043,-0.650000000000000,0.620833333333359,0.008333333333369,0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,-0.008333333333369,0.000000000000000,1 -15,20,22,11869,-0.637500000000043,0.629166666666685,-0.643750000000022,0.625000000000043,-0.643750000000022,0.633333333333326,-0.650000000000000,0.629166666666685,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,-0.008333333333283,0.000000000000000,1 -16,21,23,11869,-0.637500000000043,0.637500000000022,-0.643750000000022,0.633333333333326,-0.643750000000022,0.641666666666717,-0.650000000000000,0.637500000000022,0.008333333333391,0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,-0.008333333333391,0.000000000000000,1 -17,22,11869,-0.637500000000043,0.645833333333359,-0.643750000000022,0.641666666666717,-0.650000000000000,0.645833333333359,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.008333333333283,0.000000000000000,1 -25,28,312,1836,-0.612499999999957,0.407142857142845,-0.606249999999978,0.414285714285680,-0.606249999999978,0.400000000000000,-0.600000000000000,0.407142857142835,-0.014285714285691,0.000000000000000,0.000000000000022,0.012499999999956,0.000000000000000,-0.012499999999957,0.014285714285669,0.000000000000000,2 -24,26,29,313,-0.612499999999957,0.407142857142845,-0.624999999999957,0.407142857142856,-0.618749999999957,0.414285714285702,-0.618749999999957,0.400000000000000,0.014285714285691,-0.000000000000000,-0.014285714285713,-0.000000000000000,0.000000000000022,0.012500000000000,0.000000000000000,-0.012500000000000,2 -25,27,30,314,-0.624999999999957,0.407142857142856,-0.637500000000043,0.407142857142867,-0.631250000000000,0.414285714285723,-0.631250000000000,0.400000000000000,0.014285714285713,0.000000000000000,-0.014285714285734,-0.000000000000000,0.000000000000022,0.012500000000087,0.000000000000000,-0.012500000000087,2 -26,31,315,11869,-0.637500000000043,0.407142857142867,-0.643750000000022,0.414285714285745,-0.643750000000022,0.400000000000000,-0.650000000000000,0.407142857142878,0.014285714285734,0.000000000000000,0.000000000000022,0.012499999999957,-0.000000000000000,-0.012499999999957,-0.014285714285756,-0.000000000000000,1 -24,29,32,1837,-0.606249999999978,0.414285714285680,-0.612499999999957,0.421428571428552,-0.606249999999978,0.428571428571398,-0.600000000000000,0.421428571428526,-0.000000000000022,-0.012499999999956,-0.014285714285723,-0.000000000000000,0.000000000000032,0.012499999999957,0.014285714285713,0.000000000000000,2 -25,28,30,33,-0.618749999999957,0.414285714285702,-0.612499999999957,0.421428571428552,-0.624999999999957,0.421428571428579,-0.618749999999957,0.428571428571430,-0.000000000000022,-0.012500000000000,0.014285714285723,0.000000000000000,-0.014285714285733,0.000000000000000,0.000000000000032,0.012500000000000,2 -26,29,31,34,-0.631250000000000,0.414285714285723,-0.624999999999957,0.421428571428579,-0.637500000000043,0.421428571428606,-0.631250000000000,0.428571428571461,-0.000000000000022,-0.012500000000087,0.014285714285733,-0.000000000000000,-0.014285714285743,-0.000000000000000,0.000000000000032,0.012500000000087,2 -27,30,35,11869,-0.643750000000022,0.414285714285745,-0.637500000000043,0.421428571428606,-0.643750000000022,0.428571428571493,-0.650000000000000,0.421428571428633,-0.000000000000022,-0.012499999999957,0.014285714285743,0.000000000000000,0.000000000000032,0.012499999999957,-0.014285714285753,0.000000000000000,1 -28,33,36,1838,-0.606249999999978,0.428571428571398,-0.612499999999957,0.435714285714260,-0.606249999999978,0.442857142857079,-0.600000000000000,0.435714285714217,-0.000000000000032,-0.012499999999957,-0.014285714285692,-0.000000000000000,0.000000000000055,0.012499999999957,0.014285714285669,0.000000000000000,2 -29,32,34,37,-0.618749999999957,0.428571428571430,-0.612499999999957,0.435714285714260,-0.624999999999956,0.435714285714303,-0.618749999999957,0.442857142857133,-0.000000000000032,-0.012500000000000,0.014285714285692,0.000000000000000,-0.014285714285715,-0.000000000000000,0.000000000000055,0.012500000000000,2 -30,33,35,38,-0.631250000000000,0.428571428571461,-0.624999999999956,0.435714285714303,-0.637500000000043,0.435714285714346,-0.631250000000000,0.442857142857188,-0.000000000000032,-0.012500000000087,0.014285714285715,0.000000000000000,-0.014285714285738,-0.000000000000000,0.000000000000054,0.012500000000087,2 -31,34,39,11869,-0.643750000000022,0.428571428571493,-0.637500000000043,0.435714285714346,-0.643750000000022,0.442857142857243,-0.650000000000000,0.435714285714389,-0.000000000000032,-0.012499999999957,0.014285714285738,0.000000000000000,0.000000000000055,0.012499999999957,-0.014285714285761,0.000000000000000,1 -32,37,40,1839,-0.606249999999978,0.442857142857079,-0.612499999999957,0.449999999999952,-0.606249999999978,0.457142857142760,-0.600000000000000,0.449999999999886,-0.000000000000055,-0.012499999999957,-0.014285714285693,0.000000000000000,0.000000000000078,0.012499999999956,0.014285714285669,0.000000000000000,2 -33,36,38,41,-0.618749999999957,0.442857142857133,-0.612499999999957,0.449999999999952,-0.624999999999957,0.450000000000019,-0.618749999999957,0.457142857142838,-0.000000000000055,-0.012500000000000,0.014285714285693,-0.000000000000000,-0.014285714285716,-0.000000000000000,0.000000000000078,0.012500000000000,2 -34,37,39,42,-0.631250000000000,0.442857142857188,-0.624999999999957,0.450000000000019,-0.637500000000043,0.450000000000085,-0.631250000000000,0.457142857142916,-0.000000000000054,-0.012500000000087,0.014285714285716,0.000000000000000,-0.014285714285740,-0.000000000000000,0.000000000000078,0.012500000000087,2 -35,38,43,11869,-0.643750000000022,0.442857142857243,-0.637500000000043,0.450000000000085,-0.643750000000022,0.457142857142995,-0.650000000000000,0.450000000000152,-0.000000000000055,-0.012499999999957,0.014285714285740,0.000000000000000,0.000000000000078,0.012499999999957,-0.014285714285764,0.000000000000000,1 -36,41,44,1840,-0.606249999999978,0.457142857142760,-0.612499999999957,0.464285714285645,-0.606249999999978,0.471428571428441,-0.600000000000000,0.464285714285555,-0.000000000000078,-0.012499999999956,-0.014285714285692,-0.000000000000000,0.000000000000101,0.012499999999957,0.014285714285669,0.000000000000000,2 -37,40,42,45,-0.618749999999957,0.457142857142838,-0.612499999999957,0.464285714285645,-0.624999999999957,0.464285714285735,-0.618749999999957,0.471428571428542,-0.000000000000078,-0.012500000000000,0.014285714285692,0.000000000000000,-0.014285714285715,0.000000000000000,0.000000000000101,0.012500000000000,2 -38,41,43,46,-0.631250000000000,0.457142857142916,-0.624999999999957,0.464285714285735,-0.637500000000043,0.464285714285824,-0.631250000000000,0.471428571428643,-0.000000000000078,-0.012500000000087,0.014285714285715,-0.000000000000000,-0.014285714285738,-0.000000000000000,0.000000000000101,0.012500000000087,2 -39,42,47,11869,-0.643750000000022,0.457142857142995,-0.637500000000043,0.464285714285824,-0.643750000000022,0.471428571428744,-0.650000000000000,0.464285714285914,-0.000000000000078,-0.012499999999957,0.014285714285738,0.000000000000000,0.000000000000101,0.012499999999957,-0.014285714285761,0.000000000000000,1 -40,45,48,1841,-0.606249999999978,0.471428571428441,-0.612499999999957,0.478571428571336,-0.606249999999978,0.485714285714121,-0.600000000000000,0.478571428571225,-0.000000000000101,-0.012499999999957,-0.014285714285691,-0.000000000000000,0.000000000000122,0.012499999999957,0.014285714285669,0.000000000000000,2 -41,44,46,49,-0.618749999999957,0.471428571428542,-0.612499999999957,0.478571428571336,-0.624999999999957,0.478571428571448,-0.618749999999957,0.485714285714243,-0.000000000000101,-0.012500000000000,0.014285714285691,0.000000000000000,-0.014285714285712,-0.000000000000000,0.000000000000123,0.012500000000000,2 -42,45,47,50,-0.631250000000000,0.471428571428643,-0.624999999999957,0.478571428571448,-0.637500000000043,0.478571428571560,-0.631250000000000,0.485714285714365,-0.000000000000101,-0.012500000000087,0.014285714285712,0.000000000000000,-0.014285714285733,0.000000000000000,0.000000000000123,0.012500000000087,2 -43,46,51,11869,-0.643750000000022,0.471428571428744,-0.637500000000043,0.478571428571560,-0.643750000000022,0.485714285714488,-0.650000000000000,0.478571428571672,-0.000000000000101,-0.012499999999957,0.014285714285733,-0.000000000000000,0.000000000000122,0.012499999999957,-0.014285714285754,0.000000000000000,1 -44,49,52,1842,-0.606249999999978,0.485714285714121,-0.612499999999957,0.492857142857038,-0.606249999999978,0.499999999999828,-0.600000000000000,0.492857142856910,-0.000000000000122,-0.012499999999957,-0.014285714285712,-0.000000000000000,0.000000000000133,0.012499999999957,0.014285714285702,0.000000000000000,2 -45,48,50,53,-0.618749999999957,0.485714285714243,-0.612499999999957,0.492857142857038,-0.624999999999957,0.492857142857166,-0.618749999999957,0.499999999999960,-0.000000000000123,-0.012500000000000,0.014285714285712,0.000000000000000,-0.014285714285723,-0.000000000000000,0.000000000000133,0.012500000000000,2 -46,49,51,54,-0.631250000000000,0.485714285714365,-0.624999999999957,0.492857142857166,-0.637500000000043,0.492857142857293,-0.631250000000000,0.500000000000093,-0.000000000000123,-0.012500000000087,0.014285714285723,0.000000000000000,-0.014285714285733,-0.000000000000000,0.000000000000133,0.012500000000087,2 -47,50,55,11869,-0.643750000000022,0.485714285714488,-0.637500000000043,0.492857142857293,-0.643750000000022,0.500000000000226,-0.650000000000000,0.492857142857421,-0.000000000000122,-0.012499999999957,0.014285714285733,0.000000000000000,0.000000000000133,0.012499999999957,-0.014285714285744,0.000000000000000,1 -48,53,56,1843,-0.606249999999978,0.499999999999828,-0.612499999999957,0.507142857142744,-0.606249999999978,0.514285714285541,-0.600000000000000,0.507142857142625,-0.000000000000133,-0.012499999999957,-0.014285714285700,0.000000000000000,0.000000000000106,0.012499999999957,0.014285714285727,0.000000000000000,2 -49,52,54,57,-0.618749999999957,0.499999999999960,-0.612499999999957,0.507142857142744,-0.624999999999957,0.507142857142864,-0.618749999999957,0.514285714285647,-0.000000000000133,-0.012500000000000,0.014285714285700,-0.000000000000000,-0.014285714285673,-0.000000000000000,0.000000000000106,0.012500000000000,2 -50,53,55,58,-0.631250000000000,0.500000000000093,-0.624999999999957,0.507142857142864,-0.637500000000043,0.507142857142983,-0.631250000000000,0.514285714285753,-0.000000000000133,-0.012500000000087,0.014285714285673,0.000000000000000,-0.014285714285647,-0.000000000000000,0.000000000000106,0.012500000000087,2 -51,54,59,11869,-0.643750000000022,0.500000000000226,-0.637500000000043,0.507142857142983,-0.643750000000022,0.514285714285859,-0.650000000000000,0.507142857143103,-0.000000000000133,-0.012499999999957,0.014285714285647,0.000000000000000,0.000000000000106,0.012499999999957,-0.014285714285620,0.000000000000000,1 -52,57,60,1844,-0.606249999999978,0.514285714285541,-0.612499999999957,0.521428571428453,-0.606249999999978,0.528571428571279,-0.600000000000000,0.521428571428368,-0.000000000000106,-0.012499999999957,-0.014285714285718,-0.000000000000000,0.000000000000065,0.012499999999957,0.014285714285759,0.000000000000000,2 -53,56,58,61,-0.618749999999957,0.514285714285647,-0.612499999999957,0.521428571428453,-0.624999999999956,0.521428571428538,-0.618749999999957,0.528571428571344,-0.000000000000106,-0.012500000000000,0.014285714285718,0.000000000000000,-0.014285714285676,0.000000000000000,0.000000000000065,0.012500000000000,2 -54,57,59,62,-0.631250000000000,0.514285714285753,-0.624999999999956,0.521428571428538,-0.637500000000043,0.521428571428624,-0.631250000000000,0.528571428571409,-0.000000000000106,-0.012500000000087,0.014285714285676,-0.000000000000000,-0.014285714285635,-0.000000000000000,0.000000000000065,0.012500000000087,2 -55,58,63,11869,-0.643750000000022,0.514285714285859,-0.637500000000043,0.521428571428624,-0.643750000000022,0.528571428571474,-0.650000000000000,0.521428571428709,-0.000000000000106,-0.012499999999957,0.014285714285635,0.000000000000000,0.000000000000065,0.012499999999957,-0.014285714285593,0.000000000000000,1 -56,61,64,1845,-0.606249999999978,0.528571428571279,-0.612499999999957,0.535714285714178,-0.606249999999978,0.542857142857020,-0.600000000000000,0.535714285714122,-0.000000000000065,-0.012499999999957,-0.014285714285732,-0.000000000000000,0.000000000000047,0.012499999999957,0.014285714285750,0.000000000000000,2 -57,60,62,65,-0.618749999999957,0.528571428571344,-0.612499999999957,0.535714285714178,-0.624999999999956,0.535714285714233,-0.618749999999957,0.542857142857067,-0.000000000000065,-0.012500000000000,0.014285714285732,0.000000000000000,-0.014285714285714,-0.000000000000000,0.000000000000046,0.012500000000000,2 -58,61,63,66,-0.631250000000000,0.528571428571409,-0.624999999999956,0.535714285714233,-0.637500000000043,0.535714285714289,-0.631250000000000,0.542857142857113,-0.000000000000065,-0.012500000000087,0.014285714285714,0.000000000000000,-0.014285714285695,-0.000000000000000,0.000000000000046,0.012500000000087,2 -59,62,67,11869,-0.643750000000022,0.528571428571474,-0.637500000000043,0.535714285714289,-0.643750000000022,0.542857142857160,-0.650000000000000,0.535714285714345,-0.000000000000065,-0.012499999999957,0.014285714285695,0.000000000000000,0.000000000000047,0.012499999999957,-0.014285714285677,0.000000000000000,1 -60,65,68,1846,-0.606249999999978,0.542857142857020,-0.612499999999957,0.549999999999912,-0.606249999999978,0.557142857142767,-0.600000000000000,0.549999999999875,-0.000000000000047,-0.012499999999957,-0.014285714285736,0.000000000000000,0.000000000000027,0.012499999999957,0.014285714285756,0.000000000000000,2 -61,64,66,69,-0.618749999999957,0.542857142857067,-0.612499999999957,0.549999999999912,-0.624999999999957,0.549999999999949,-0.618749999999957,0.557142857142793,-0.000000000000046,-0.012500000000000,0.014285714285736,-0.000000000000000,-0.014285714285717,-0.000000000000000,0.000000000000027,0.012500000000000,2 -62,65,67,70,-0.631250000000000,0.542857142857113,-0.624999999999957,0.549999999999949,-0.637500000000043,0.549999999999985,-0.631250000000000,0.557142857142820,-0.000000000000046,-0.012500000000087,0.014285714285717,0.000000000000000,-0.014285714285697,-0.000000000000000,0.000000000000027,0.012500000000087,2 -63,66,71,11869,-0.643750000000022,0.542857142857160,-0.637500000000043,0.549999999999985,-0.643750000000022,0.557142857142847,-0.650000000000000,0.550000000000022,-0.000000000000047,-0.012499999999957,0.014285714285697,0.000000000000000,0.000000000000027,0.012499999999956,-0.014285714285677,0.000000000000000,1 -64,69,72,1847,-0.606249999999978,0.557142857142767,-0.612499999999957,0.564285714285648,-0.606249999999978,0.571428571428513,-0.600000000000000,0.564285714285631,-0.000000000000027,-0.012499999999957,-0.014285714285736,-0.000000000000000,0.000000000000007,0.012499999999957,0.014285714285756,0.000000000000000,2 -65,68,70,73,-0.618749999999957,0.557142857142793,-0.612499999999957,0.564285714285648,-0.624999999999957,0.564285714285665,-0.618749999999957,0.571428571428520,-0.000000000000027,-0.012500000000000,0.014285714285736,0.000000000000000,-0.014285714285716,-0.000000000000000,0.000000000000007,0.012500000000000,2 -66,69,71,74,-0.631250000000000,0.557142857142820,-0.624999999999957,0.564285714285665,-0.637500000000043,0.564285714285682,-0.631250000000000,0.571428571428527,-0.000000000000027,-0.012500000000087,0.014285714285716,0.000000000000000,-0.014285714285697,0.000000000000000,0.000000000000007,0.012500000000087,2 -67,70,75,11869,-0.643750000000022,0.557142857142847,-0.637500000000043,0.564285714285682,-0.643750000000022,0.571428571428534,-0.650000000000000,0.564285714285699,-0.000000000000027,-0.012499999999956,0.014285714285697,-0.000000000000000,0.000000000000007,0.012499999999957,-0.014285714285677,0.000000000000000,1 -68,73,76,1848,-0.606249999999978,0.571428571428513,-0.612499999999957,0.578571428571388,-0.606249999999978,0.585714285714261,-0.600000000000000,0.578571428571386,-0.000000000000007,-0.012499999999957,-0.014285714285744,-0.000000000000000,-0.000000000000002,0.012499999999957,0.014285714285753,0.000000000000000,2 -69,72,74,77,-0.618749999999957,0.571428571428520,-0.612499999999957,0.578571428571388,-0.624999999999957,0.578571428571391,-0.618749999999957,0.585714285714259,-0.000000000000007,-0.012500000000000,0.014285714285744,0.000000000000000,-0.014285714285735,-0.000000000000000,-0.000000000000002,0.012500000000000,2 -70,73,75,78,-0.631250000000000,0.571428571428527,-0.624999999999957,0.578571428571391,-0.637500000000043,0.578571428571393,-0.631250000000000,0.585714285714258,-0.000000000000007,-0.012500000000087,0.014285714285735,0.000000000000000,-0.014285714285726,0.000000000000000,-0.000000000000002,0.012500000000087,2 -71,74,79,11869,-0.643750000000022,0.571428571428534,-0.637500000000043,0.578571428571393,-0.643750000000022,0.585714285714256,-0.650000000000000,0.578571428571396,-0.000000000000007,-0.012499999999957,0.014285714285726,-0.000000000000000,-0.000000000000002,0.012499999999957,-0.014285714285717,0.000000000000000,1 -0,72,77,1849,-0.606249999999978,0.600000000000000,-0.606249999999978,0.585714285714261,-0.612499999999957,0.592857142857130,-0.600000000000000,0.592857142857131,-0.000000000000000,0.012499999999957,0.000000000000002,-0.012499999999957,-0.014285714285740,0.000000000000000,0.014285714285738,-0.000000000000000,2 -6,73,76,78,-0.618749999999957,0.600000000000000,-0.618749999999957,0.585714285714259,-0.612499999999957,0.592857142857130,-0.624999999999957,0.592857142857129,-0.000000000000000,0.012500000000000,0.000000000000002,-0.012500000000000,0.014285714285740,-0.000000000000000,-0.014285714285741,0.000000000000000,2 -12,74,77,79,-0.631250000000000,0.600000000000000,-0.631250000000000,0.585714285714258,-0.624999999999957,0.592857142857129,-0.637500000000043,0.592857142857128,-0.000000000000000,0.012500000000087,0.000000000000002,-0.012500000000087,0.014285714285741,-0.000000000000000,-0.014285714285743,-0.000000000000000,2 -18,75,78,11869,-0.643750000000022,0.600000000000000,-0.643750000000022,0.585714285714256,-0.637500000000043,0.592857142857128,-0.650000000000000,0.592857142857127,0.000000000000000,0.012499999999957,0.000000000000002,-0.012499999999957,0.014285714285743,0.000000000000000,-0.014285714285745,0.000000000000000,1 -81,84,368,3894,-0.612499999999957,-0.393220338983053,-0.606249999999978,-0.386440677966112,-0.606249999999978,-0.400000000000000,-0.600000000000000,-0.393220338983059,-0.013559322033894,0.000000000000000,0.000000000000013,0.012499999999957,0.000000000000000,-0.012499999999957,0.013559322033881,0.000000000000000,2 -80,82,85,369,-0.612499999999957,-0.393220338983053,-0.625000000000043,-0.393220338983047,-0.618749999999999,-0.386440677966100,-0.618750000000000,-0.400000000000000,0.013559322033894,-0.000000000000000,-0.013559322033907,0.000000000000001,0.000000000000013,0.012500000000086,-0.000000000000000,-0.012500000000087,2 -81,83,86,370,-0.625000000000043,-0.393220338983047,-0.637500000000043,-0.393220338983040,-0.631250000000043,-0.386440677966087,-0.631250000000043,-0.400000000000000,0.013559322033907,-0.000000000000001,-0.013559322033919,-0.000000000000000,0.000000000000013,0.012500000000001,-0.000000000000000,-0.012500000000000,2 -82,87,371,11869,-0.637500000000043,-0.393220338983040,-0.643750000000022,-0.386440677966074,-0.643750000000022,-0.400000000000000,-0.650000000000000,-0.393220338983034,0.013559322033919,0.000000000000000,0.000000000000013,0.012499999999957,-0.000000000000000,-0.012499999999957,-0.013559322033932,-0.000000000000000,1 -80,85,88,3895,-0.606249999999978,-0.386440677966112,-0.612499999999957,-0.379661016949165,-0.606249999999978,-0.372881355932242,-0.600000000000000,-0.379661016949189,-0.000000000000013,-0.012499999999957,-0.013559322033881,-0.000000000000000,0.000000000000034,0.012499999999957,0.013559322033860,0.000000000000000,2 -81,84,86,89,-0.618749999999999,-0.386440677966100,-0.612499999999957,-0.379661016949165,-0.625000000000041,-0.379661016949142,-0.618749999999999,-0.372881355932207,-0.000000000000013,-0.012500000000086,0.013559322033881,0.000000000000000,-0.013559322033903,0.000000000000001,0.000000000000034,0.012500000000084,2 -82,85,87,90,-0.631250000000043,-0.386440677966087,-0.625000000000041,-0.379661016949142,-0.637500000000043,-0.379661016949118,-0.631250000000042,-0.372881355932173,-0.000000000000013,-0.012500000000001,0.013559322033903,-0.000000000000001,-0.013559322033925,0.000000000000000,0.000000000000034,0.012500000000003,2 -83,86,91,11869,-0.643750000000022,-0.386440677966074,-0.637500000000043,-0.379661016949118,-0.643750000000022,-0.372881355932139,-0.650000000000000,-0.379661016949095,-0.000000000000013,-0.012499999999957,0.013559322033925,-0.000000000000000,0.000000000000034,0.012499999999957,-0.013559322033946,0.000000000000000,1 -84,89,92,3896,-0.606249999999978,-0.372881355932242,-0.612499999999957,-0.366101694915287,-0.606249999999978,-0.359322033898375,-0.600000000000000,-0.366101694915329,-0.000000000000034,-0.012499999999957,-0.013559322033874,-0.000000000000000,0.000000000000049,0.012499999999957,0.013559322033860,0.000000000000000,2 -85,88,90,93,-0.618749999999999,-0.372881355932207,-0.612499999999957,-0.366101694915287,-0.625000000000040,-0.366101694915246,-0.618749999999998,-0.359322033898326,-0.000000000000034,-0.012500000000084,0.013559322033874,0.000000000000000,-0.013559322033889,0.000000000000002,0.000000000000049,0.012500000000082,2 -86,89,91,94,-0.631250000000042,-0.372881355932173,-0.625000000000040,-0.366101694915246,-0.637500000000043,-0.366101694915204,-0.631250000000041,-0.359322033898277,-0.000000000000034,-0.012500000000003,0.013559322033889,-0.000000000000002,-0.013559322033903,-0.000000000000000,0.000000000000049,0.012500000000004,2 -87,90,95,11869,-0.643750000000022,-0.372881355932139,-0.637500000000043,-0.366101694915204,-0.643750000000022,-0.359322033898228,-0.650000000000000,-0.366101694915163,-0.000000000000034,-0.012499999999957,0.013559322033903,0.000000000000000,0.000000000000049,0.012499999999957,-0.013559322033918,0.000000000000000,1 -88,93,96,3897,-0.606249999999978,-0.359322033898375,-0.612499999999957,-0.352542372881409,-0.606249999999978,-0.345762711864503,-0.600000000000000,-0.352542372881469,-0.000000000000049,-0.012499999999957,-0.013559322033883,0.000000000000000,0.000000000000072,0.012499999999957,0.013559322033860,0.000000000000000,2 -89,92,94,97,-0.618749999999998,-0.359322033898326,-0.612499999999957,-0.352542372881409,-0.625000000000038,-0.352542372881348,-0.618749999999997,-0.345762711864431,-0.000000000000049,-0.012500000000082,0.013559322033883,-0.000000000000000,-0.013559322033907,0.000000000000001,0.000000000000072,0.012500000000081,2 -90,93,95,98,-0.631250000000041,-0.359322033898277,-0.625000000000038,-0.352542372881348,-0.637500000000043,-0.352542372881287,-0.631250000000041,-0.345762711864358,-0.000000000000049,-0.012500000000004,0.013559322033907,-0.000000000000001,-0.013559322033930,0.000000000000000,0.000000000000073,0.012500000000006,2 -91,94,99,11869,-0.643750000000022,-0.359322033898228,-0.637500000000043,-0.352542372881287,-0.643750000000022,-0.345762711864286,-0.650000000000000,-0.352542372881227,-0.000000000000049,-0.012499999999957,0.013559322033930,-0.000000000000000,0.000000000000072,0.012499999999957,-0.013559322033954,0.000000000000000,1 -92,97,100,3898,-0.606249999999978,-0.345762711864503,-0.612499999999957,-0.338983050847527,-0.606249999999978,-0.332203389830629,-0.600000000000000,-0.338983050847605,-0.000000000000072,-0.012499999999957,-0.013559322033880,-0.000000000000000,0.000000000000083,0.012499999999957,0.013559322033869,0.000000000000000,2 -93,96,98,101,-0.618749999999997,-0.345762711864431,-0.612499999999957,-0.338983050847527,-0.625000000000037,-0.338983050847449,-0.618749999999996,-0.332203389830545,-0.000000000000072,-0.012500000000081,0.013559322033880,0.000000000000000,-0.013559322033892,0.000000000000002,0.000000000000084,0.012500000000079,2 -94,97,99,102,-0.631250000000041,-0.345762711864358,-0.625000000000037,-0.338983050847449,-0.637500000000043,-0.338983050847371,-0.631250000000040,-0.332203389830461,-0.000000000000073,-0.012500000000006,0.013559322033892,-0.000000000000002,-0.013559322033902,-0.000000000000000,0.000000000000083,0.012500000000007,2 -95,98,103,11869,-0.643750000000022,-0.345762711864286,-0.637500000000043,-0.338983050847371,-0.643750000000022,-0.332203389830378,-0.650000000000000,-0.338983050847293,-0.000000000000072,-0.012499999999957,0.013559322033902,0.000000000000000,0.000000000000084,0.012499999999957,-0.013559322033914,0.000000000000000,1 -96,101,104,3899,-0.606249999999978,-0.332203389830629,-0.612499999999957,-0.325423728813637,-0.606249999999978,-0.318644067796737,-0.600000000000000,-0.325423728813729,-0.000000000000083,-0.012499999999957,-0.013559322033900,-0.000000000000000,0.000000000000100,0.012499999999957,0.013559322033883,0.000000000000000,2 -97,100,102,105,-0.618749999999996,-0.332203389830545,-0.612499999999957,-0.325423728813637,-0.625000000000035,-0.325423728813545,-0.618749999999996,-0.318644067796637,-0.000000000000084,-0.012500000000079,0.013559322033900,0.000000000000000,-0.013559322033917,0.000000000000001,0.000000000000101,0.012500000000078,2 -98,101,103,106,-0.631250000000040,-0.332203389830461,-0.625000000000035,-0.325423728813545,-0.637500000000043,-0.325423728813453,-0.631250000000039,-0.318644067796536,-0.000000000000083,-0.012500000000007,0.013559322033917,-0.000000000000001,-0.013559322033934,-0.000000000000000,0.000000000000100,0.012500000000009,2 -99,102,107,11869,-0.643750000000022,-0.332203389830378,-0.637500000000043,-0.325423728813453,-0.643750000000022,-0.318644067796436,-0.650000000000000,-0.325423728813361,-0.000000000000084,-0.012499999999957,0.013559322033934,0.000000000000000,0.000000000000100,0.012499999999957,-0.013559322033950,0.000000000000000,1 -100,105,108,3900,-0.606249999999978,-0.318644067796737,-0.612499999999957,-0.311864406779744,-0.606249999999978,-0.305084745762858,-0.600000000000000,-0.311864406779851,-0.000000000000100,-0.012499999999957,-0.013559322033886,-0.000000000000000,0.000000000000114,0.012499999999957,0.013559322033872,0.000000000000000,2 -101,104,106,109,-0.618749999999996,-0.318644067796637,-0.612499999999957,-0.311864406779744,-0.625000000000034,-0.311864406779636,-0.618749999999995,-0.305084745762743,-0.000000000000101,-0.012500000000078,0.013559322033886,0.000000000000000,-0.013559322033900,0.000000000000002,0.000000000000114,0.012500000000076,2 -102,105,107,110,-0.631250000000039,-0.318644067796536,-0.625000000000034,-0.311864406779636,-0.637500000000043,-0.311864406779529,-0.631250000000038,-0.305084745762629,-0.000000000000100,-0.012500000000009,0.013559322033900,-0.000000000000002,-0.013559322033914,0.000000000000000,0.000000000000114,0.012500000000010,2 -103,106,111,11869,-0.643750000000022,-0.318644067796436,-0.637500000000043,-0.311864406779529,-0.643750000000022,-0.305084745762515,-0.650000000000000,-0.311864406779421,-0.000000000000100,-0.012499999999957,0.013559322033914,-0.000000000000000,0.000000000000114,0.012499999999957,-0.013559322033928,0.000000000000000,1 -104,109,112,3901,-0.606249999999978,-0.305084745762858,-0.612499999999957,-0.298305084745854,-0.606249999999978,-0.291525423728971,-0.600000000000000,-0.298305084745975,-0.000000000000114,-0.012499999999957,-0.013559322033894,-0.000000000000000,0.000000000000129,0.012499999999957,0.013559322033879,0.000000000000000,2 -105,108,110,113,-0.618749999999995,-0.305084745762743,-0.612499999999957,-0.298305084745854,-0.625000000000032,-0.298305084745732,-0.618749999999994,-0.291525423728843,-0.000000000000114,-0.012500000000076,0.013559322033894,0.000000000000000,-0.013559322033908,0.000000000000002,0.000000000000129,0.012500000000075,2 -106,109,111,114,-0.631250000000038,-0.305084745762629,-0.625000000000032,-0.298305084745732,-0.637500000000043,-0.298305084745611,-0.631250000000037,-0.291525423728714,-0.000000000000114,-0.012500000000010,0.013559322033908,-0.000000000000002,-0.013559322033922,-0.000000000000000,0.000000000000129,0.012500000000012,2 -107,110,115,11869,-0.643750000000022,-0.305084745762515,-0.637500000000043,-0.298305084745611,-0.643750000000022,-0.291525423728585,-0.650000000000000,-0.298305084745489,-0.000000000000114,-0.012499999999957,0.013559322033922,0.000000000000000,0.000000000000129,0.012499999999957,-0.013559322033936,0.000000000000000,1 -108,113,116,3902,-0.606249999999978,-0.291525423728971,-0.612499999999957,-0.284745762711967,-0.606249999999978,-0.277966101695101,-0.600000000000000,-0.284745762712106,-0.000000000000129,-0.012499999999957,-0.013559322033880,-0.000000000000000,0.000000000000149,0.012499999999957,0.013559322033860,0.000000000000000,2 -109,112,114,117,-0.618749999999994,-0.291525423728843,-0.612499999999957,-0.284745762711967,-0.625000000000031,-0.284745762711828,-0.618749999999993,-0.277966101694952,-0.000000000000129,-0.012500000000075,0.013559322033880,0.000000000000000,-0.013559322033901,0.000000000000001,0.000000000000149,0.012500000000074,2 -110,113,115,118,-0.631250000000037,-0.291525423728714,-0.625000000000031,-0.284745762711828,-0.637500000000043,-0.284745762711689,-0.631250000000037,-0.277966101694803,-0.000000000000129,-0.012500000000012,0.013559322033901,-0.000000000000001,-0.013559322033922,-0.000000000000000,0.000000000000149,0.012500000000013,2 -111,114,119,11869,-0.643750000000022,-0.291525423728585,-0.637500000000043,-0.284745762711689,-0.643750000000022,-0.277966101694653,-0.650000000000000,-0.284745762711550,-0.000000000000129,-0.012499999999957,0.013559322033922,0.000000000000000,0.000000000000149,0.012499999999957,-0.013559322033942,0.000000000000000,1 -112,117,120,3903,-0.606249999999978,-0.277966101695101,-0.612499999999957,-0.271186440678089,-0.606249999999978,-0.264406779661234,-0.600000000000000,-0.271186440678246,-0.000000000000149,-0.012499999999957,-0.013559322033875,-0.000000000000000,0.000000000000165,0.012499999999957,0.013559322033860,0.000000000000000,2 -113,116,118,121,-0.618749999999993,-0.277966101694952,-0.612499999999957,-0.271186440678089,-0.625000000000029,-0.271186440677932,-0.618749999999993,-0.264406779661069,-0.000000000000149,-0.012500000000074,0.013559322033875,0.000000000000000,-0.013559322033891,0.000000000000002,0.000000000000165,0.012500000000072,2 -114,117,119,122,-0.631250000000037,-0.277966101694803,-0.625000000000029,-0.271186440677932,-0.637500000000043,-0.271186440677775,-0.631250000000036,-0.264406779660904,-0.000000000000149,-0.012500000000013,0.013559322033891,-0.000000000000002,-0.013559322033906,0.000000000000000,0.000000000000165,0.012500000000015,2 -115,118,123,11869,-0.643750000000022,-0.277966101694653,-0.637500000000043,-0.271186440677775,-0.643750000000022,-0.264406779660739,-0.650000000000000,-0.271186440677618,-0.000000000000149,-0.012499999999957,0.013559322033906,-0.000000000000000,0.000000000000165,0.012499999999957,-0.013559322033922,0.000000000000000,1 -116,121,124,3904,-0.606249999999978,-0.264406779661234,-0.612499999999957,-0.257627118644210,-0.606249999999978,-0.250847457627362,-0.600000000000000,-0.257627118644386,-0.000000000000165,-0.012499999999957,-0.013559322033883,-0.000000000000000,0.000000000000188,0.012499999999957,0.013559322033860,0.000000000000000,2 -117,120,122,125,-0.618749999999993,-0.264406779661069,-0.612499999999957,-0.257627118644210,-0.625000000000028,-0.257627118644033,-0.618749999999992,-0.250847457627174,-0.000000000000165,-0.012500000000072,0.013559322033883,0.000000000000000,-0.013559322033907,0.000000000000001,0.000000000000188,0.012500000000071,2 -118,121,123,126,-0.631250000000036,-0.264406779660904,-0.625000000000028,-0.257627118644033,-0.637500000000043,-0.257627118643857,-0.631250000000035,-0.250847457626986,-0.000000000000165,-0.012500000000015,0.013559322033907,-0.000000000000001,-0.013559322033930,-0.000000000000000,0.000000000000188,0.012500000000016,2 -119,122,127,11869,-0.643750000000022,-0.264406779660739,-0.637500000000043,-0.257627118643857,-0.643750000000022,-0.250847457626797,-0.650000000000000,-0.257627118643680,-0.000000000000165,-0.012499999999957,0.013559322033930,0.000000000000000,0.000000000000188,0.012499999999957,-0.013559322033954,0.000000000000000,1 -120,125,128,3905,-0.606249999999978,-0.250847457627362,-0.612499999999957,-0.244067796610332,-0.606249999999978,-0.237288135593496,-0.600000000000000,-0.244067796610526,-0.000000000000188,-0.012499999999957,-0.013559322033872,0.000000000000000,0.000000000000201,0.012499999999957,0.013559322033860,0.000000000000000,2 -121,124,126,129,-0.618749999999992,-0.250847457627174,-0.612499999999957,-0.244067796610332,-0.625000000000027,-0.244067796610137,-0.618749999999991,-0.237288135593295,-0.000000000000188,-0.012500000000071,0.013559322033872,-0.000000000000000,-0.013559322033885,0.000000000000001,0.000000000000201,0.012500000000069,2 -122,125,127,130,-0.631250000000035,-0.250847457626986,-0.625000000000027,-0.244067796610137,-0.637500000000043,-0.244067796609943,-0.631250000000035,-0.237288135593094,-0.000000000000188,-0.012500000000016,0.013559322033885,-0.000000000000001,-0.013559322033898,-0.000000000000000,0.000000000000201,0.012500000000018,2 -123,126,131,11869,-0.643750000000022,-0.250847457626797,-0.637500000000043,-0.244067796609943,-0.643750000000022,-0.237288135592893,-0.650000000000000,-0.244067796609748,-0.000000000000188,-0.012499999999957,0.013559322033898,0.000000000000000,0.000000000000201,0.012499999999957,-0.013559322033910,0.000000000000000,1 -124,129,132,3906,-0.606249999999978,-0.237288135593496,-0.612499999999957,-0.230508474576454,-0.606249999999978,-0.223728813559625,-0.600000000000000,-0.230508474576667,-0.000000000000201,-0.012499999999957,-0.013559322033883,-0.000000000000000,0.000000000000224,0.012499999999957,0.013559322033860,0.000000000000000,2 -125,128,130,133,-0.618749999999991,-0.237288135593295,-0.612499999999957,-0.230508474576454,-0.625000000000025,-0.230508474576241,-0.618749999999990,-0.223728813559400,-0.000000000000201,-0.012500000000069,0.013559322033883,0.000000000000000,-0.013559322033907,0.000000000000002,0.000000000000225,0.012500000000068,2 -126,129,131,134,-0.631250000000035,-0.237288135593094,-0.625000000000025,-0.230508474576241,-0.637500000000043,-0.230508474576029,-0.631250000000034,-0.223728813559176,-0.000000000000201,-0.012500000000018,0.013559322033907,-0.000000000000002,-0.013559322033930,-0.000000000000000,0.000000000000224,0.012500000000019,2 -127,130,135,11869,-0.643750000000022,-0.237288135592893,-0.637500000000043,-0.230508474576029,-0.643750000000022,-0.223728813558951,-0.650000000000000,-0.230508474575816,-0.000000000000201,-0.012499999999957,0.013559322033930,0.000000000000000,0.000000000000225,0.012499999999957,-0.013559322033954,0.000000000000000,1 -128,133,136,3907,-0.606249999999978,-0.223728813559625,-0.612499999999957,-0.216949152542575,-0.606249999999978,-0.210169491525757,-0.600000000000000,-0.216949152542807,-0.000000000000224,-0.012499999999957,-0.013559322033876,-0.000000000000000,0.000000000000241,0.012499999999957,0.013559322033860,0.000000000000000,2 -129,132,134,137,-0.618749999999990,-0.223728813559400,-0.612499999999957,-0.216949152542575,-0.625000000000024,-0.216949152542342,-0.618749999999990,-0.210169491525516,-0.000000000000225,-0.012500000000068,0.013559322033876,0.000000000000000,-0.013559322033892,0.000000000000002,0.000000000000241,0.012500000000066,2 -130,133,135,138,-0.631250000000034,-0.223728813559176,-0.625000000000024,-0.216949152542342,-0.637500000000043,-0.216949152542109,-0.631250000000033,-0.210169491525276,-0.000000000000224,-0.012500000000019,0.013559322033892,-0.000000000000002,-0.013559322033908,0.000000000000000,0.000000000000241,0.012500000000021,2 -131,134,139,11869,-0.643750000000022,-0.223728813558951,-0.637500000000043,-0.216949152542109,-0.643750000000022,-0.210169491525035,-0.650000000000000,-0.216949152541877,-0.000000000000225,-0.012499999999957,0.013559322033908,-0.000000000000000,0.000000000000241,0.012499999999957,-0.013559322033924,0.000000000000000,1 -132,137,140,3908,-0.606249999999978,-0.210169491525757,-0.612499999999957,-0.203389830508697,-0.606249999999978,-0.196610169491887,-0.600000000000000,-0.203389830508947,-0.000000000000241,-0.012499999999957,-0.013559322033880,0.000000000000000,0.000000000000261,0.012499999999957,0.013559322033860,0.000000000000000,2 -133,136,138,141,-0.618749999999990,-0.210169491525516,-0.612499999999957,-0.203389830508697,-0.625000000000022,-0.203389830508446,-0.618749999999989,-0.196610169491626,-0.000000000000241,-0.012500000000066,0.013559322033880,-0.000000000000000,-0.013559322033900,0.000000000000001,0.000000000000261,0.012500000000065,2 -134,137,139,142,-0.631250000000033,-0.210169491525276,-0.625000000000022,-0.203389830508446,-0.637500000000043,-0.203389830508195,-0.631250000000032,-0.196610169491366,-0.000000000000241,-0.012500000000021,0.013559322033900,-0.000000000000001,-0.013559322033920,0.000000000000000,0.000000000000261,0.012500000000022,2 -135,138,143,11869,-0.643750000000022,-0.210169491525035,-0.637500000000043,-0.203389830508195,-0.643750000000022,-0.196610169491105,-0.650000000000000,-0.203389830507945,-0.000000000000241,-0.012499999999957,0.013559322033920,-0.000000000000000,0.000000000000261,0.012499999999957,-0.013559322033940,0.000000000000000,1 -136,141,144,3909,-0.606249999999978,-0.196610169491887,-0.612499999999957,-0.189830508474820,-0.606249999999978,-0.183050847458020,-0.600000000000000,-0.189830508475088,-0.000000000000261,-0.012499999999957,-0.013559322033874,-0.000000000000000,0.000000000000275,0.012499999999957,0.013559322033860,0.000000000000000,2 -137,140,142,145,-0.618749999999989,-0.196610169491626,-0.612499999999957,-0.189830508474820,-0.625000000000021,-0.189830508474552,-0.618749999999988,-0.183050847457745,-0.000000000000261,-0.012500000000065,0.013559322033874,0.000000000000000,-0.013559322033888,0.000000000000002,0.000000000000275,0.012500000000063,2 -138,141,143,146,-0.631250000000032,-0.196610169491366,-0.625000000000021,-0.189830508474552,-0.637500000000043,-0.189830508474284,-0.631250000000032,-0.183050847457470,-0.000000000000261,-0.012500000000022,0.013559322033888,-0.000000000000002,-0.013559322033902,-0.000000000000000,0.000000000000275,0.012500000000023,2 -139,142,147,11869,-0.643750000000022,-0.196610169491105,-0.637500000000043,-0.189830508474284,-0.643750000000022,-0.183050847457195,-0.650000000000000,-0.189830508474016,-0.000000000000261,-0.012499999999957,0.013559322033902,0.000000000000000,0.000000000000275,0.012499999999957,-0.013559322033917,0.000000000000000,1 -140,145,148,3910,-0.606249999999978,-0.183050847458020,-0.612499999999957,-0.176271186440942,-0.606249999999978,-0.169491525424150,-0.600000000000000,-0.176271186441228,-0.000000000000275,-0.012499999999957,-0.013559322033882,0.000000000000000,0.000000000000297,0.012499999999956,0.013559322033860,0.000000000000000,2 -141,144,146,149,-0.618749999999988,-0.183050847457745,-0.612499999999957,-0.176271186440942,-0.625000000000019,-0.176271186440656,-0.618749999999987,-0.169491525423853,-0.000000000000275,-0.012500000000063,0.013559322033882,-0.000000000000000,-0.013559322033904,0.000000000000002,0.000000000000297,0.012500000000062,2 -142,145,147,150,-0.631250000000032,-0.183050847457470,-0.625000000000019,-0.176271186440656,-0.637500000000043,-0.176271186440370,-0.631250000000031,-0.169491525423556,-0.000000000000275,-0.012500000000023,0.013559322033904,-0.000000000000002,-0.013559322033926,-0.000000000000000,0.000000000000297,0.012500000000025,2 -143,146,151,11869,-0.643750000000022,-0.183050847457195,-0.637500000000043,-0.176271186440370,-0.643750000000022,-0.169491525423259,-0.650000000000000,-0.176271186440084,-0.000000000000275,-0.012499999999957,0.013559322033926,0.000000000000000,0.000000000000297,0.012499999999957,-0.013559322033947,0.000000000000000,1 -144,149,152,3911,-0.606249999999978,-0.169491525424150,-0.612499999999957,-0.162711864407062,-0.606249999999978,-0.155932203390281,-0.600000000000000,-0.162711864407368,-0.000000000000297,-0.012499999999956,-0.013559322033877,-0.000000000000000,0.000000000000315,0.012499999999957,0.013559322033860,0.000000000000000,2 -145,148,150,153,-0.618749999999987,-0.169491525423853,-0.612499999999957,-0.162711864407062,-0.625000000000018,-0.162711864406757,-0.618749999999987,-0.155932203389966,-0.000000000000297,-0.012500000000062,0.013559322033877,0.000000000000000,-0.013559322033895,0.000000000000001,0.000000000000315,0.012500000000060,2 -146,149,151,154,-0.631250000000031,-0.169491525423556,-0.625000000000018,-0.162711864406757,-0.637500000000043,-0.162711864406451,-0.631250000000030,-0.155932203389652,-0.000000000000297,-0.012500000000025,0.013559322033895,-0.000000000000001,-0.013559322033913,-0.000000000000000,0.000000000000315,0.012500000000026,2 -147,150,155,11869,-0.643750000000022,-0.169491525423259,-0.637500000000043,-0.162711864406451,-0.643750000000022,-0.155932203389337,-0.650000000000000,-0.162711864406145,-0.000000000000297,-0.012499999999957,0.013559322033913,0.000000000000000,0.000000000000315,0.012499999999957,-0.013559322033931,0.000000000000000,1 -148,153,156,3912,-0.606249999999978,-0.155932203390281,-0.612499999999957,-0.149152542373185,-0.606249999999978,-0.142372881356412,-0.600000000000000,-0.149152542373509,-0.000000000000315,-0.012499999999957,-0.013559322033878,-0.000000000000000,0.000000000000333,0.012499999999957,0.013559322033860,0.000000000000000,2 -149,152,154,157,-0.618749999999987,-0.155932203389966,-0.612499999999957,-0.149152542373185,-0.625000000000016,-0.149152542372861,-0.618749999999986,-0.142372881356079,-0.000000000000315,-0.012500000000060,0.013559322033878,0.000000000000000,-0.013559322033897,0.000000000000001,0.000000000000333,0.012500000000059,2 -150,153,155,158,-0.631250000000030,-0.155932203389652,-0.625000000000016,-0.149152542372861,-0.637500000000043,-0.149152542372537,-0.631250000000029,-0.142372881355746,-0.000000000000315,-0.012500000000026,0.013559322033897,-0.000000000000001,-0.013559322033915,0.000000000000000,0.000000000000333,0.012500000000028,2 -151,154,159,11869,-0.643750000000022,-0.155932203389337,-0.637500000000043,-0.149152542372537,-0.643750000000022,-0.142372881355413,-0.650000000000000,-0.149152542372213,-0.000000000000315,-0.012499999999957,0.013559322033915,-0.000000000000000,0.000000000000333,0.012499999999957,-0.013559322033933,0.000000000000000,1 -152,157,160,3913,-0.606249999999978,-0.142372881356412,-0.612499999999957,-0.135593220339305,-0.606249999999978,-0.128813559322542,-0.600000000000000,-0.135593220339649,-0.000000000000333,-0.012499999999957,-0.013559322033881,-0.000000000000000,0.000000000000355,0.012499999999957,0.013559322033860,0.000000000000000,2 -153,156,158,161,-0.618749999999986,-0.142372881356079,-0.612499999999957,-0.135593220339305,-0.625000000000015,-0.135593220338961,-0.618749999999985,-0.128813559322187,-0.000000000000333,-0.012500000000059,0.013559322033881,0.000000000000000,-0.013559322033902,0.000000000000002,0.000000000000355,0.012500000000057,2 -154,157,159,162,-0.631250000000029,-0.142372881355746,-0.625000000000015,-0.135593220338961,-0.637500000000043,-0.135593220338617,-0.631250000000029,-0.128813559321833,-0.000000000000333,-0.012500000000028,0.013559322033902,-0.000000000000002,-0.013559322033924,-0.000000000000000,0.000000000000355,0.012500000000029,2 -155,158,163,11869,-0.643750000000022,-0.142372881355413,-0.637500000000043,-0.135593220338617,-0.643750000000022,-0.128813559321478,-0.650000000000000,-0.135593220338273,-0.000000000000333,-0.012499999999957,0.013559322033924,0.000000000000000,0.000000000000355,0.012499999999957,-0.013559322033945,0.000000000000000,1 -156,161,164,3914,-0.606249999999978,-0.128813559322542,-0.612499999999957,-0.122033898305427,-0.606249999999978,-0.115254237288675,-0.600000000000000,-0.122033898305789,-0.000000000000355,-0.012499999999957,-0.013559322033874,0.000000000000000,0.000000000000369,0.012499999999956,0.013559322033860,0.000000000000000,2 -157,160,162,165,-0.618749999999985,-0.128813559322187,-0.612499999999957,-0.122033898305427,-0.625000000000013,-0.122033898305065,-0.618749999999985,-0.115254237288305,-0.000000000000355,-0.012500000000057,0.013559322033874,-0.000000000000000,-0.013559322033889,0.000000000000001,0.000000000000369,0.012500000000056,2 -158,161,163,166,-0.631250000000029,-0.128813559321833,-0.625000000000013,-0.122033898305065,-0.637500000000043,-0.122033898304703,-0.631250000000028,-0.115254237287936,-0.000000000000355,-0.012500000000029,0.013559322033889,-0.000000000000001,-0.013559322033904,-0.000000000000000,0.000000000000369,0.012500000000031,2 -159,162,167,11869,-0.643750000000022,-0.128813559321478,-0.637500000000043,-0.122033898304703,-0.643750000000022,-0.115254237287566,-0.650000000000000,-0.122033898304341,-0.000000000000355,-0.012499999999957,0.013559322033904,0.000000000000000,0.000000000000369,0.012499999999957,-0.013559322033919,0.000000000000000,1 -160,165,168,3915,-0.606249999999978,-0.115254237288675,-0.612499999999957,-0.108474576271552,-0.606249999999978,-0.101694915254811,-0.600000000000000,-0.108474576271933,-0.000000000000369,-0.012499999999956,-0.013559322033875,-0.000000000000000,0.000000000000393,0.012499999999957,0.013559322033852,0.000000000000000,2 -161,164,166,169,-0.618749999999985,-0.115254237288305,-0.612499999999957,-0.108474576271552,-0.625000000000012,-0.108474576271171,-0.618749999999984,-0.101694915254418,-0.000000000000369,-0.012500000000056,0.013559322033875,0.000000000000000,-0.013559322033899,0.000000000000002,0.000000000000393,0.012500000000054,2 -162,165,167,170,-0.631250000000028,-0.115254237287936,-0.625000000000012,-0.108474576271171,-0.637500000000043,-0.108474576270790,-0.631250000000027,-0.101694915254025,-0.000000000000369,-0.012500000000031,0.013559322033899,-0.000000000000002,-0.013559322033922,0.000000000000000,0.000000000000393,0.012500000000032,2 -163,166,171,11869,-0.643750000000022,-0.115254237287566,-0.637500000000043,-0.108474576270790,-0.643750000000022,-0.101694915253632,-0.650000000000000,-0.108474576270409,-0.000000000000369,-0.012499999999957,0.013559322033922,-0.000000000000000,0.000000000000393,0.012499999999957,-0.013559322033946,0.000000000000000,1 -164,169,172,3916,-0.606249999999978,-0.101694915254811,-0.612499999999957,-0.094915254237681,-0.606249999999978,-0.088135593220955,-0.600000000000000,-0.094915254238085,-0.000000000000393,-0.012499999999957,-0.013559322033867,-0.000000000000000,0.000000000000414,0.012499999999957,0.013559322033846,0.000000000000000,2 -165,168,170,173,-0.618749999999984,-0.101694915254418,-0.612499999999957,-0.094915254237681,-0.625000000000010,-0.094915254237278,-0.618749999999983,-0.088135593220541,-0.000000000000393,-0.012500000000054,0.013559322033867,0.000000000000000,-0.013559322033888,0.000000000000001,0.000000000000414,0.012500000000053,2 -166,169,171,174,-0.631250000000027,-0.101694915254025,-0.625000000000010,-0.094915254237278,-0.637500000000043,-0.094915254236874,-0.631250000000027,-0.088135593220127,-0.000000000000393,-0.012500000000032,0.013559322033888,-0.000000000000001,-0.013559322033909,0.000000000000000,0.000000000000414,0.012500000000034,2 -167,170,175,11869,-0.643750000000022,-0.101694915253632,-0.637500000000043,-0.094915254236874,-0.643750000000022,-0.088135593219713,-0.650000000000000,-0.094915254236471,-0.000000000000393,-0.012499999999957,0.013559322033909,-0.000000000000000,0.000000000000414,0.012499999999957,-0.013559322033930,0.000000000000000,1 -168,173,176,3917,-0.606249999999978,-0.088135593220955,-0.612499999999957,-0.081355932203808,-0.606249999999978,-0.074576271187085,-0.600000000000000,-0.081355932204232,-0.000000000000414,-0.012499999999957,-0.013559322033880,0.000000000000000,0.000000000000434,0.012499999999957,0.013559322033860,0.000000000000000,2 -169,172,174,177,-0.618749999999983,-0.088135593220541,-0.612499999999957,-0.081355932203808,-0.625000000000009,-0.081355932203383,-0.618749999999982,-0.074576271186650,-0.000000000000414,-0.012500000000053,0.013559322033880,-0.000000000000000,-0.013559322033900,0.000000000000002,0.000000000000434,0.012500000000051,2 -170,173,175,178,-0.631250000000027,-0.088135593220127,-0.625000000000009,-0.081355932203383,-0.637500000000043,-0.081355932202959,-0.631250000000026,-0.074576271186216,-0.000000000000414,-0.012500000000034,0.013559322033900,-0.000000000000002,-0.013559322033921,-0.000000000000000,0.000000000000434,0.012500000000035,2 -171,174,179,11869,-0.643750000000022,-0.088135593219713,-0.637500000000043,-0.081355932202959,-0.643750000000022,-0.074576271185782,-0.650000000000000,-0.081355932202535,-0.000000000000414,-0.012499999999957,0.013559322033921,0.000000000000000,0.000000000000434,0.012499999999957,-0.013559322033941,0.000000000000000,1 -172,177,180,3918,-0.606249999999978,-0.074576271187085,-0.612499999999957,-0.067796610169929,-0.606249999999978,-0.061016949153216,-0.600000000000000,-0.067796610170372,-0.000000000000434,-0.012499999999957,-0.013559322033877,0.000000000000000,0.000000000000452,0.012499999999956,0.013559322033860,0.000000000000000,2 -173,176,178,181,-0.618749999999982,-0.074576271186650,-0.612499999999957,-0.067796610169929,-0.625000000000008,-0.067796610169486,-0.618749999999982,-0.061016949152764,-0.000000000000434,-0.012500000000051,0.013559322033877,-0.000000000000000,-0.013559322033895,0.000000000000001,0.000000000000452,0.012500000000050,2 -174,177,179,182,-0.631250000000026,-0.074576271186216,-0.625000000000008,-0.067796610169486,-0.637500000000043,-0.067796610169043,-0.631250000000025,-0.061016949152312,-0.000000000000434,-0.012500000000035,0.013559322033895,-0.000000000000001,-0.013559322033913,-0.000000000000000,0.000000000000452,0.012500000000037,2 -175,178,183,11869,-0.643750000000022,-0.074576271185782,-0.637500000000043,-0.067796610169043,-0.643750000000022,-0.061016949151860,-0.650000000000000,-0.067796610168599,-0.000000000000434,-0.012499999999957,0.013559322033913,0.000000000000000,0.000000000000452,0.012499999999957,-0.013559322033930,0.000000000000000,1 -176,181,184,3919,-0.606249999999978,-0.061016949153216,-0.612499999999957,-0.054237288136051,-0.606249999999978,-0.047457627119347,-0.600000000000000,-0.054237288136513,-0.000000000000452,-0.012499999999956,-0.013559322033878,-0.000000000000000,0.000000000000471,0.012499999999957,0.013559322033860,0.000000000000000,2 -177,180,182,185,-0.618749999999982,-0.061016949152764,-0.612499999999957,-0.054237288136051,-0.625000000000006,-0.054237288135590,-0.618749999999981,-0.047457627118876,-0.000000000000452,-0.012500000000050,0.013559322033878,0.000000000000000,-0.013559322033897,0.000000000000002,0.000000000000471,0.012500000000049,2 -178,181,183,186,-0.631250000000025,-0.061016949152312,-0.625000000000006,-0.054237288135590,-0.637500000000043,-0.054237288135128,-0.631250000000024,-0.047457627118406,-0.000000000000452,-0.012500000000037,0.013559322033897,-0.000000000000002,-0.013559322033916,0.000000000000000,0.000000000000471,0.012500000000038,2 -179,182,187,11869,-0.643750000000022,-0.061016949151860,-0.637500000000043,-0.054237288135128,-0.643750000000022,-0.047457627117935,-0.650000000000000,-0.054237288134667,-0.000000000000452,-0.012499999999957,0.013559322033916,-0.000000000000000,0.000000000000471,0.012499999999957,-0.013559322033935,0.000000000000000,1 -180,185,188,3920,-0.606249999999978,-0.047457627119347,-0.612499999999957,-0.040677966102172,-0.606249999999978,-0.033898305085478,-0.600000000000000,-0.040677966102653,-0.000000000000471,-0.012499999999957,-0.013559322033879,-0.000000000000000,0.000000000000490,0.012499999999957,0.013559322033860,0.000000000000000,2 -181,184,186,189,-0.618749999999981,-0.047457627118876,-0.612499999999957,-0.040677966102172,-0.625000000000004,-0.040677966101692,-0.618749999999980,-0.033898305084988,-0.000000000000471,-0.012500000000049,0.013559322033879,0.000000000000000,-0.013559322033898,0.000000000000001,0.000000000000490,0.012500000000047,2 -182,185,187,190,-0.631250000000024,-0.047457627118406,-0.625000000000004,-0.040677966101692,-0.637500000000043,-0.040677966101212,-0.631250000000024,-0.033898305084498,-0.000000000000471,-0.012500000000038,0.013559322033898,-0.000000000000001,-0.013559322033917,-0.000000000000000,0.000000000000490,0.012500000000040,2 -183,186,191,11869,-0.643750000000022,-0.047457627117935,-0.637500000000043,-0.040677966101212,-0.643750000000022,-0.033898305084008,-0.650000000000000,-0.040677966100731,-0.000000000000471,-0.012499999999957,0.013559322033917,0.000000000000000,0.000000000000490,0.012499999999956,-0.013559322033937,0.000000000000000,1 -184,189,192,3921,-0.606249999999978,-0.033898305085478,-0.612499999999957,-0.027118644068294,-0.606249999999978,-0.020338983051609,-0.600000000000000,-0.027118644068793,-0.000000000000490,-0.012499999999957,-0.013559322033877,-0.000000000000000,0.000000000000508,0.012499999999957,0.013559322033860,0.000000000000000,2 -185,188,190,193,-0.618749999999980,-0.033898305084988,-0.612499999999957,-0.027118644068294,-0.625000000000003,-0.027118644067795,-0.618749999999979,-0.020338983051102,-0.000000000000490,-0.012500000000047,0.013559322033877,0.000000000000000,-0.013559322033895,0.000000000000001,0.000000000000508,0.012500000000046,2 -186,189,191,194,-0.631250000000024,-0.033898305084498,-0.625000000000003,-0.027118644067795,-0.637500000000043,-0.027118644067297,-0.631250000000023,-0.020338983050594,-0.000000000000490,-0.012500000000040,0.013559322033895,-0.000000000000001,-0.013559322033913,0.000000000000000,0.000000000000508,0.012500000000041,2 -187,190,195,11869,-0.643750000000022,-0.033898305084008,-0.637500000000043,-0.027118644067297,-0.643750000000022,-0.020338983050086,-0.650000000000000,-0.027118644066798,-0.000000000000490,-0.012499999999956,0.013559322033913,-0.000000000000000,0.000000000000508,0.012499999999957,-0.013559322033930,0.000000000000000,1 -188,193,196,3922,-0.606249999999978,-0.020338983051609,-0.612499999999957,-0.013559322034416,-0.606249999999978,-0.006779661017740,-0.600000000000000,-0.013559322034933,-0.000000000000508,-0.012499999999957,-0.013559322033880,-0.000000000000000,0.000000000000528,0.012499999999957,0.013559322033860,0.000000000000000,2 -189,192,194,197,-0.618749999999979,-0.020338983051102,-0.612499999999957,-0.013559322034416,-0.625000000000002,-0.013559322033898,-0.618749999999979,-0.006779661017212,-0.000000000000508,-0.012500000000046,0.013559322033880,0.000000000000000,-0.013559322033900,0.000000000000002,0.000000000000528,0.012500000000044,2 -190,193,195,198,-0.631250000000023,-0.020338983050594,-0.625000000000002,-0.013559322033898,-0.637500000000043,-0.013559322033380,-0.631250000000022,-0.006779661016683,-0.000000000000508,-0.012500000000041,0.013559322033900,-0.000000000000002,-0.013559322033921,-0.000000000000000,0.000000000000528,0.012500000000043,2 -191,194,199,11869,-0.643750000000022,-0.020338983050086,-0.637500000000043,-0.013559322033380,-0.643750000000022,-0.006779661016155,-0.650000000000000,-0.013559322032862,-0.000000000000508,-0.012499999999957,0.013559322033921,0.000000000000000,0.000000000000528,0.012499999999957,-0.013559322033941,0.000000000000000,1 -192,197,200,3923,-0.606249999999978,-0.006779661017740,-0.612499999999957,-0.000000000000528,-0.606249999999978,0.006779661016155,-0.600000000000000,-0.000000000001056,-0.000000000000528,-0.012499999999957,-0.013559322033895,-0.000000000000000,0.000000000000528,0.012499999999957,0.013559322033895,0.000000000000000,2 -193,196,198,201,-0.618749999999979,-0.006779661017212,-0.612499999999957,-0.000000000000528,-0.625000000000000,0.000000000000000,-0.618749999999978,0.006779661016683,-0.000000000000528,-0.012500000000044,0.013559322033895,0.000000000000000,-0.013559322033895,0.000000000000001,0.000000000000528,0.012500000000043,2 -194,197,199,202,-0.631250000000022,-0.006779661016683,-0.625000000000000,0.000000000000000,-0.637500000000043,0.000000000000528,-0.631250000000021,0.006779661017212,-0.000000000000528,-0.012500000000043,0.013559322033895,-0.000000000000001,-0.013559322033895,-0.000000000000000,0.000000000000528,0.012500000000044,2 -195,198,203,11869,-0.643750000000022,-0.006779661016155,-0.637500000000043,0.000000000000528,-0.643750000000022,0.006779661017740,-0.650000000000000,0.000000000001056,-0.000000000000528,-0.012499999999957,0.013559322033895,0.000000000000000,0.000000000000528,0.012499999999957,-0.013559322033895,0.000000000000000,1 -196,201,204,3924,-0.606249999999978,0.006779661016155,-0.612499999999957,0.013559322033380,-0.606249999999978,0.020338983050086,-0.600000000000000,0.013559322032862,-0.000000000000528,-0.012499999999957,-0.013559322033921,0.000000000000000,0.000000000000508,0.012499999999957,0.013559322033941,0.000000000000000,2 -197,200,202,205,-0.618749999999978,0.006779661016683,-0.612499999999957,0.013559322033380,-0.624999999999999,0.013559322033898,-0.618749999999977,0.020338983050594,-0.000000000000528,-0.012500000000043,0.013559322033921,-0.000000000000000,-0.013559322033900,0.000000000000002,0.000000000000508,0.012500000000041,2 -198,201,203,206,-0.631250000000021,0.006779661017212,-0.624999999999999,0.013559322033898,-0.637500000000043,0.013559322034416,-0.631250000000021,0.020338983051102,-0.000000000000528,-0.012500000000044,0.013559322033900,-0.000000000000002,-0.013559322033880,0.000000000000000,0.000000000000508,0.012500000000045,2 -199,202,207,11869,-0.643750000000022,0.006779661017740,-0.637500000000043,0.013559322034416,-0.643750000000022,0.020338983051609,-0.650000000000000,0.013559322034933,-0.000000000000528,-0.012499999999957,0.013559322033880,-0.000000000000000,0.000000000000508,0.012499999999957,-0.013559322033860,0.000000000000000,1 -200,205,208,3925,-0.606249999999978,0.020338983050086,-0.612499999999957,0.027118644067297,-0.606249999999978,0.033898305084008,-0.600000000000000,0.027118644066798,-0.000000000000508,-0.012499999999957,-0.013559322033913,-0.000000000000000,0.000000000000490,0.012499999999957,0.013559322033930,0.000000000000000,2 -201,204,206,209,-0.618749999999977,0.020338983050594,-0.612499999999957,0.027118644067297,-0.624999999999997,0.027118644067795,-0.618749999999976,0.033898305084498,-0.000000000000508,-0.012500000000041,0.013559322033913,0.000000000000000,-0.013559322033895,0.000000000000001,0.000000000000490,0.012500000000040,2 -202,205,207,210,-0.631250000000021,0.020338983051102,-0.624999999999997,0.027118644067795,-0.637500000000043,0.027118644068294,-0.631250000000020,0.033898305084988,-0.000000000000508,-0.012500000000045,0.013559322033895,-0.000000000000001,-0.013559322033877,-0.000000000000000,0.000000000000490,0.012500000000047,2 -203,206,211,11869,-0.643750000000022,0.020338983051609,-0.637500000000043,0.027118644068294,-0.643750000000022,0.033898305085478,-0.650000000000000,0.027118644068793,-0.000000000000508,-0.012499999999957,0.013559322033877,0.000000000000000,0.000000000000490,0.012499999999957,-0.013559322033860,0.000000000000000,1 -204,209,212,3926,-0.606249999999978,0.033898305084008,-0.612499999999957,0.040677966101212,-0.606249999999978,0.047457627117935,-0.600000000000000,0.040677966100731,-0.000000000000490,-0.012499999999957,-0.013559322033917,-0.000000000000000,0.000000000000471,0.012499999999957,0.013559322033937,0.000000000000000,2 -205,208,210,213,-0.618749999999976,0.033898305084498,-0.612499999999957,0.040677966101212,-0.624999999999996,0.040677966101692,-0.618749999999976,0.047457627118406,-0.000000000000490,-0.012500000000040,0.013559322033917,0.000000000000000,-0.013559322033898,0.000000000000001,0.000000000000471,0.012500000000038,2 -206,209,211,214,-0.631250000000020,0.033898305084988,-0.624999999999996,0.040677966101692,-0.637500000000043,0.040677966102172,-0.631250000000019,0.047457627118876,-0.000000000000490,-0.012500000000047,0.013559322033898,-0.000000000000001,-0.013559322033879,-0.000000000000000,0.000000000000471,0.012500000000048,2 -207,210,215,11869,-0.643750000000022,0.033898305085478,-0.637500000000043,0.040677966102172,-0.643750000000022,0.047457627119347,-0.650000000000000,0.040677966102653,-0.000000000000490,-0.012499999999957,0.013559322033879,0.000000000000000,0.000000000000471,0.012499999999957,-0.013559322033860,0.000000000000000,1 -208,213,216,3927,-0.606249999999978,0.047457627117935,-0.612499999999957,0.054237288135128,-0.606249999999978,0.061016949151860,-0.600000000000000,0.054237288134667,-0.000000000000471,-0.012499999999957,-0.013559322033916,-0.000000000000000,0.000000000000452,0.012499999999957,0.013559322033935,0.000000000000000,2 -209,212,214,217,-0.618749999999976,0.047457627118406,-0.612499999999957,0.054237288135128,-0.624999999999994,0.054237288135590,-0.618749999999975,0.061016949152312,-0.000000000000471,-0.012500000000038,0.013559322033916,0.000000000000000,-0.013559322033897,0.000000000000002,0.000000000000452,0.012500000000037,2 -210,213,215,218,-0.631250000000019,0.047457627118876,-0.624999999999994,0.054237288135590,-0.637500000000043,0.054237288136051,-0.631250000000018,0.061016949152764,-0.000000000000471,-0.012500000000048,0.013559322033897,-0.000000000000002,-0.013559322033878,0.000000000000000,0.000000000000452,0.012500000000050,2 -211,214,219,11869,-0.643750000000022,0.047457627119347,-0.637500000000043,0.054237288136051,-0.643750000000022,0.061016949153216,-0.650000000000000,0.054237288136513,-0.000000000000471,-0.012499999999957,0.013559322033878,-0.000000000000000,0.000000000000452,0.012499999999957,-0.013559322033860,0.000000000000000,1 -212,217,220,3928,-0.606249999999978,0.061016949151860,-0.612499999999957,0.067796610169043,-0.606249999999978,0.074576271185782,-0.600000000000000,0.067796610168599,-0.000000000000452,-0.012499999999957,-0.013559322033913,-0.000000000000000,0.000000000000434,0.012499999999957,0.013559322033930,0.000000000000000,2 -213,216,218,221,-0.618749999999975,0.061016949152312,-0.612499999999957,0.067796610169043,-0.624999999999993,0.067796610169486,-0.618749999999974,0.074576271186216,-0.000000000000452,-0.012500000000037,0.013559322033913,0.000000000000000,-0.013559322033895,0.000000000000002,0.000000000000434,0.012500000000035,2 -214,217,219,222,-0.631250000000018,0.061016949152764,-0.624999999999993,0.067796610169486,-0.637500000000043,0.067796610169929,-0.631250000000018,0.074576271186650,-0.000000000000452,-0.012500000000050,0.013559322033895,-0.000000000000002,-0.013559322033877,0.000000000000000,0.000000000000434,0.012500000000051,2 -215,218,223,11869,-0.643750000000022,0.061016949153216,-0.637500000000043,0.067796610169929,-0.643750000000022,0.074576271187085,-0.650000000000000,0.067796610170372,-0.000000000000452,-0.012499999999957,0.013559322033877,-0.000000000000000,0.000000000000434,0.012499999999957,-0.013559322033860,0.000000000000000,1 -216,221,224,3929,-0.606249999999978,0.074576271185782,-0.612499999999957,0.081355932202959,-0.606249999999978,0.088135593219713,-0.600000000000000,0.081355932202535,-0.000000000000434,-0.012499999999957,-0.013559322033921,-0.000000000000000,0.000000000000414,0.012499999999957,0.013559322033941,0.000000000000000,2 -217,220,222,225,-0.618749999999974,0.074576271186216,-0.612499999999957,0.081355932202959,-0.624999999999991,0.081355932203383,-0.618749999999974,0.088135593220127,-0.000000000000434,-0.012500000000035,0.013559322033921,0.000000000000000,-0.013559322033900,0.000000000000001,0.000000000000414,0.012500000000034,2 -218,221,223,226,-0.631250000000018,0.074576271186650,-0.624999999999991,0.081355932203383,-0.637500000000043,0.081355932203808,-0.631250000000017,0.088135593220541,-0.000000000000434,-0.012500000000051,0.013559322033900,-0.000000000000001,-0.013559322033880,-0.000000000000000,0.000000000000414,0.012500000000053,2 -219,222,227,11869,-0.643750000000022,0.074576271187085,-0.637500000000043,0.081355932203808,-0.643750000000022,0.088135593220955,-0.650000000000000,0.081355932204232,-0.000000000000434,-0.012499999999957,0.013559322033880,0.000000000000000,0.000000000000414,0.012499999999957,-0.013559322033860,0.000000000000000,1 -220,225,228,3930,-0.606249999999978,0.088135593219713,-0.612499999999957,0.094915254236874,-0.606249999999978,0.101694915253632,-0.600000000000000,0.094915254236471,-0.000000000000414,-0.012499999999957,-0.013559322033909,0.000000000000000,0.000000000000393,0.012499999999957,0.013559322033930,0.000000000000000,2 -221,224,226,229,-0.618749999999974,0.088135593220127,-0.612499999999957,0.094915254236874,-0.624999999999990,0.094915254237278,-0.618749999999973,0.101694915254025,-0.000000000000414,-0.012500000000034,0.013559322033909,-0.000000000000000,-0.013559322033888,0.000000000000002,0.000000000000393,0.012500000000032,2 -222,225,227,230,-0.631250000000017,0.088135593220541,-0.624999999999990,0.094915254237278,-0.637500000000043,0.094915254237681,-0.631250000000016,0.101694915254418,-0.000000000000414,-0.012500000000053,0.013559322033888,-0.000000000000002,-0.013559322033867,-0.000000000000000,0.000000000000393,0.012500000000054,2 -223,226,231,11869,-0.643750000000022,0.088135593220955,-0.637500000000043,0.094915254237681,-0.643750000000022,0.101694915254811,-0.650000000000000,0.094915254238085,-0.000000000000414,-0.012499999999957,0.013559322033867,0.000000000000000,0.000000000000393,0.012499999999957,-0.013559322033846,0.000000000000000,1 -224,229,232,3931,-0.606249999999978,0.101694915253632,-0.612499999999957,0.108474576270790,-0.606249999999978,0.115254237287566,-0.600000000000000,0.108474576270409,-0.000000000000393,-0.012499999999957,-0.013559322033922,-0.000000000000000,0.000000000000369,0.012499999999957,0.013559322033946,0.000000000000000,2 -225,228,230,233,-0.618749999999973,0.101694915254025,-0.612499999999957,0.108474576270790,-0.624999999999988,0.108474576271171,-0.618749999999972,0.115254237287936,-0.000000000000393,-0.012500000000032,0.013559322033922,0.000000000000000,-0.013559322033899,0.000000000000001,0.000000000000369,0.012500000000031,2 -226,229,231,234,-0.631250000000016,0.101694915254418,-0.624999999999988,0.108474576271171,-0.637500000000043,0.108474576271552,-0.631250000000016,0.115254237288305,-0.000000000000393,-0.012500000000054,0.013559322033899,-0.000000000000001,-0.013559322033875,-0.000000000000000,0.000000000000369,0.012500000000056,2 -227,230,235,11869,-0.643750000000022,0.101694915254811,-0.637500000000043,0.108474576271552,-0.643750000000022,0.115254237288675,-0.650000000000000,0.108474576271933,-0.000000000000393,-0.012499999999957,0.013559322033875,0.000000000000000,0.000000000000369,0.012499999999957,-0.013559322033852,0.000000000000000,1 -228,233,236,3932,-0.606249999999978,0.115254237287566,-0.612499999999957,0.122033898304703,-0.606249999999978,0.128813559321478,-0.600000000000000,0.122033898304341,-0.000000000000369,-0.012499999999957,-0.013559322033904,-0.000000000000000,0.000000000000355,0.012499999999957,0.013559322033919,0.000000000000000,2 -229,232,234,237,-0.618749999999972,0.115254237287936,-0.612499999999957,0.122033898304703,-0.624999999999987,0.122033898305065,-0.618749999999971,0.128813559321833,-0.000000000000369,-0.012500000000031,0.013559322033904,0.000000000000000,-0.013559322033889,0.000000000000002,0.000000000000355,0.012500000000029,2 -230,233,235,238,-0.631250000000016,0.115254237288305,-0.624999999999987,0.122033898305065,-0.637500000000043,0.122033898305427,-0.631250000000015,0.128813559322187,-0.000000000000369,-0.012500000000056,0.013559322033889,-0.000000000000002,-0.013559322033874,-0.000000000000000,0.000000000000355,0.012500000000057,2 -231,234,239,11869,-0.643750000000022,0.115254237288675,-0.637500000000043,0.122033898305427,-0.643750000000022,0.128813559322542,-0.650000000000000,0.122033898305789,-0.000000000000369,-0.012499999999957,0.013559322033874,0.000000000000000,0.000000000000355,0.012499999999957,-0.013559322033860,0.000000000000000,1 -232,237,240,3933,-0.606249999999978,0.128813559321478,-0.612499999999957,0.135593220338617,-0.606249999999978,0.142372881355413,-0.600000000000000,0.135593220338273,-0.000000000000355,-0.012499999999957,-0.013559322033924,-0.000000000000000,0.000000000000333,0.012499999999957,0.013559322033945,0.000000000000000,2 -233,236,238,241,-0.618749999999971,0.128813559321833,-0.612499999999957,0.135593220338617,-0.624999999999985,0.135593220338961,-0.618749999999971,0.142372881355746,-0.000000000000355,-0.012500000000029,0.013559322033924,0.000000000000000,-0.013559322033903,0.000000000000002,0.000000000000333,0.012500000000028,2 -234,237,239,242,-0.631250000000015,0.128813559322187,-0.624999999999985,0.135593220338961,-0.637500000000043,0.135593220339305,-0.631250000000014,0.142372881356079,-0.000000000000355,-0.012500000000057,0.013559322033903,-0.000000000000002,-0.013559322033881,-0.000000000000000,0.000000000000333,0.012500000000059,2 -235,238,243,11869,-0.643750000000022,0.128813559322542,-0.637500000000043,0.135593220339305,-0.643750000000022,0.142372881356412,-0.650000000000000,0.135593220339649,-0.000000000000355,-0.012499999999957,0.013559322033881,0.000000000000000,0.000000000000333,0.012499999999957,-0.013559322033860,0.000000000000000,1 -236,241,244,3934,-0.606249999999978,0.142372881355413,-0.612499999999957,0.149152542372537,-0.606249999999978,0.155932203389337,-0.600000000000000,0.149152542372213,-0.000000000000333,-0.012499999999957,-0.013559322033915,-0.000000000000000,0.000000000000315,0.012499999999957,0.013559322033933,0.000000000000000,2 -237,240,242,245,-0.618749999999971,0.142372881355746,-0.612499999999957,0.149152542372537,-0.624999999999984,0.149152542372861,-0.618749999999970,0.155932203389651,-0.000000000000333,-0.012500000000028,0.013559322033915,0.000000000000000,-0.013559322033896,0.000000000000001,0.000000000000315,0.012500000000026,2 -238,241,243,246,-0.631250000000014,0.142372881356079,-0.624999999999984,0.149152542372861,-0.637500000000043,0.149152542373185,-0.631250000000013,0.155932203389966,-0.000000000000333,-0.012500000000059,0.013559322033896,-0.000000000000001,-0.013559322033878,0.000000000000000,0.000000000000315,0.012500000000060,2 -239,242,247,11869,-0.643750000000022,0.142372881356412,-0.637500000000043,0.149152542373185,-0.643750000000022,0.155932203390281,-0.650000000000000,0.149152542373509,-0.000000000000333,-0.012499999999957,0.013559322033878,-0.000000000000000,0.000000000000315,0.012499999999957,-0.013559322033860,0.000000000000000,1 -240,245,248,3935,-0.606249999999978,0.155932203389337,-0.612499999999957,0.162711864406451,-0.606249999999978,0.169491525423259,-0.600000000000000,0.162711864406145,-0.000000000000315,-0.012499999999957,-0.013559322033913,0.000000000000000,0.000000000000297,0.012499999999957,0.013559322033931,0.000000000000000,2 -241,244,246,249,-0.618749999999970,0.155932203389651,-0.612499999999957,0.162711864406451,-0.624999999999982,0.162711864406757,-0.618749999999969,0.169491525423556,-0.000000000000315,-0.012500000000026,0.013559322033913,-0.000000000000000,-0.013559322033895,0.000000000000001,0.000000000000297,0.012500000000025,2 -242,245,247,250,-0.631250000000013,0.155932203389966,-0.624999999999982,0.162711864406757,-0.637500000000043,0.162711864407062,-0.631250000000013,0.169491525423853,-0.000000000000315,-0.012500000000060,0.013559322033895,-0.000000000000001,-0.013559322033878,-0.000000000000000,0.000000000000297,0.012500000000062,2 -243,246,251,11869,-0.643750000000022,0.155932203390281,-0.637500000000043,0.162711864407062,-0.643750000000022,0.169491525424150,-0.650000000000000,0.162711864407368,-0.000000000000315,-0.012499999999957,0.013559322033878,0.000000000000000,0.000000000000297,0.012499999999957,-0.013559322033860,0.000000000000000,1 -244,249,252,3936,-0.606249999999978,0.169491525423259,-0.612499999999957,0.176271186440370,-0.606249999999978,0.183050847457195,-0.600000000000000,0.176271186440084,-0.000000000000297,-0.012499999999957,-0.013559322033926,-0.000000000000000,0.000000000000275,0.012499999999957,0.013559322033947,0.000000000000000,2 -245,248,250,253,-0.618749999999969,0.169491525423556,-0.612499999999957,0.176271186440370,-0.624999999999981,0.176271186440656,-0.618749999999968,0.183050847457470,-0.000000000000297,-0.012500000000025,0.013559322033926,0.000000000000000,-0.013559322033904,0.000000000000002,0.000000000000275,0.012500000000023,2 -246,249,251,254,-0.631250000000013,0.169491525423853,-0.624999999999981,0.176271186440656,-0.637500000000043,0.176271186440942,-0.631250000000012,0.183050847457745,-0.000000000000297,-0.012500000000062,0.013559322033904,-0.000000000000002,-0.013559322033881,0.000000000000000,0.000000000000275,0.012500000000063,2 -247,250,255,11869,-0.643750000000022,0.169491525424150,-0.637500000000043,0.176271186440942,-0.643750000000022,0.183050847458020,-0.650000000000000,0.176271186441228,-0.000000000000297,-0.012499999999957,0.013559322033881,-0.000000000000000,0.000000000000275,0.012499999999957,-0.013559322033860,0.000000000000000,1 -248,253,256,3937,-0.606249999999978,0.183050847457195,-0.612499999999957,0.189830508474284,-0.606249999999978,0.196610169491105,-0.600000000000000,0.189830508474016,-0.000000000000275,-0.012499999999957,-0.013559322033902,-0.000000000000000,0.000000000000261,0.012499999999957,0.013559322033917,0.000000000000000,2 -249,252,254,257,-0.618749999999968,0.183050847457470,-0.612499999999957,0.189830508474284,-0.624999999999979,0.189830508474552,-0.618749999999968,0.196610169491366,-0.000000000000275,-0.012500000000023,0.013559322033902,0.000000000000000,-0.013559322033888,0.000000000000001,0.000000000000261,0.012500000000022,2 -250,253,255,258,-0.631250000000012,0.183050847457745,-0.624999999999979,0.189830508474552,-0.637500000000043,0.189830508474820,-0.631250000000011,0.196610169491626,-0.000000000000275,-0.012500000000063,0.013559322033888,-0.000000000000001,-0.013559322033874,-0.000000000000000,0.000000000000261,0.012500000000065,2 -251,254,259,11869,-0.643750000000022,0.183050847458020,-0.637500000000043,0.189830508474820,-0.643750000000022,0.196610169491887,-0.650000000000000,0.189830508475088,-0.000000000000275,-0.012499999999957,0.013559322033874,0.000000000000000,0.000000000000261,0.012499999999957,-0.013559322033860,0.000000000000000,1 -252,257,260,3938,-0.606249999999978,0.196610169491105,-0.612499999999957,0.203389830508195,-0.606249999999978,0.210169491525035,-0.600000000000000,0.203389830507945,-0.000000000000261,-0.012499999999957,-0.013559322033920,0.000000000000000,0.000000000000241,0.012499999999957,0.013559322033940,0.000000000000000,2 -253,256,258,261,-0.618749999999968,0.196610169491366,-0.612499999999957,0.203389830508195,-0.624999999999978,0.203389830508446,-0.618749999999967,0.210169491525276,-0.000000000000261,-0.012500000000022,0.013559322033920,-0.000000000000000,-0.013559322033900,0.000000000000001,0.000000000000241,0.012500000000021,2 -254,257,259,262,-0.631250000000011,0.196610169491626,-0.624999999999978,0.203389830508446,-0.637500000000043,0.203389830508697,-0.631250000000010,0.210169491525516,-0.000000000000261,-0.012500000000065,0.013559322033900,-0.000000000000001,-0.013559322033880,-0.000000000000000,0.000000000000241,0.012500000000066,2 -255,258,263,11869,-0.643750000000022,0.196610169491887,-0.637500000000043,0.203389830508697,-0.643750000000022,0.210169491525757,-0.650000000000000,0.203389830508947,-0.000000000000261,-0.012499999999957,0.013559322033880,0.000000000000000,0.000000000000241,0.012499999999957,-0.013559322033860,0.000000000000000,1 -256,261,264,3939,-0.606249999999978,0.210169491525035,-0.612499999999957,0.216949152542109,-0.606249999999978,0.223728813558951,-0.600000000000000,0.216949152541877,-0.000000000000241,-0.012499999999957,-0.013559322033908,-0.000000000000000,0.000000000000224,0.012499999999957,0.013559322033924,0.000000000000000,2 -257,260,262,265,-0.618749999999967,0.210169491525276,-0.612499999999957,0.216949152542109,-0.624999999999976,0.216949152542342,-0.618749999999966,0.223728813559176,-0.000000000000241,-0.012500000000021,0.013559322033908,0.000000000000000,-0.013559322033892,0.000000000000002,0.000000000000225,0.012500000000019,2 -258,261,263,266,-0.631250000000010,0.210169491525516,-0.624999999999976,0.216949152542342,-0.637500000000043,0.216949152542574,-0.631250000000010,0.223728813559400,-0.000000000000241,-0.012500000000066,0.013559322033892,-0.000000000000002,-0.013559322033876,-0.000000000000000,0.000000000000224,0.012500000000068,2 -259,262,267,11869,-0.643750000000022,0.210169491525757,-0.637500000000043,0.216949152542574,-0.643750000000022,0.223728813559625,-0.650000000000000,0.216949152542807,-0.000000000000241,-0.012499999999957,0.013559322033876,0.000000000000000,0.000000000000225,0.012499999999957,-0.013559322033860,0.000000000000000,1 -260,265,268,3940,-0.606249999999978,0.223728813558951,-0.612499999999957,0.230508474576028,-0.606249999999978,0.237288135592893,-0.600000000000000,0.230508474575816,-0.000000000000224,-0.012499999999957,-0.013559322033930,0.000000000000000,0.000000000000201,0.012499999999957,0.013559322033954,0.000000000000000,2 -261,264,266,269,-0.618749999999966,0.223728813559176,-0.612499999999957,0.230508474576028,-0.624999999999975,0.230508474576241,-0.618749999999965,0.237288135593094,-0.000000000000225,-0.012500000000019,0.013559322033930,-0.000000000000000,-0.013559322033907,0.000000000000001,0.000000000000201,0.012500000000018,2 -262,265,267,270,-0.631250000000010,0.223728813559400,-0.624999999999975,0.230508474576241,-0.637500000000043,0.230508474576454,-0.631250000000009,0.237288135593295,-0.000000000000224,-0.012500000000068,0.013559322033907,-0.000000000000001,-0.013559322033883,0.000000000000000,0.000000000000201,0.012500000000069,2 -263,266,271,11869,-0.643750000000022,0.223728813559625,-0.637500000000043,0.230508474576454,-0.643750000000022,0.237288135593496,-0.650000000000000,0.230508474576667,-0.000000000000225,-0.012499999999957,0.013559322033883,-0.000000000000000,0.000000000000201,0.012499999999957,-0.013559322033860,0.000000000000000,1 -264,269,272,3941,-0.606249999999978,0.237288135592893,-0.612499999999957,0.244067796609943,-0.606249999999978,0.250847457626797,-0.600000000000000,0.244067796609748,-0.000000000000201,-0.012499999999957,-0.013559322033898,-0.000000000000000,0.000000000000188,0.012499999999957,0.013559322033910,0.000000000000000,2 -265,268,270,273,-0.618749999999965,0.237288135593094,-0.612499999999957,0.244067796609943,-0.624999999999973,0.244067796610137,-0.618749999999965,0.250847457626986,-0.000000000000201,-0.012500000000018,0.013559322033898,0.000000000000000,-0.013559322033885,0.000000000000002,0.000000000000188,0.012500000000016,2 -266,269,271,274,-0.631250000000009,0.237288135593295,-0.624999999999973,0.244067796610137,-0.637500000000043,0.244067796610332,-0.631250000000008,0.250847457627174,-0.000000000000201,-0.012500000000069,0.013559322033885,-0.000000000000002,-0.013559322033872,-0.000000000000000,0.000000000000188,0.012500000000071,2 -267,270,275,11869,-0.643750000000022,0.237288135593496,-0.637500000000043,0.244067796610332,-0.643750000000022,0.250847457627362,-0.650000000000000,0.244067796610526,-0.000000000000201,-0.012499999999957,0.013559322033872,0.000000000000000,0.000000000000188,0.012499999999957,-0.013559322033860,0.000000000000000,1 -268,273,276,3942,-0.606249999999978,0.250847457626797,-0.612499999999957,0.257627118643857,-0.606249999999978,0.264406779660739,-0.600000000000000,0.257627118643680,-0.000000000000188,-0.012499999999957,-0.013559322033930,0.000000000000000,0.000000000000165,0.012499999999957,0.013559322033954,0.000000000000000,2 -269,272,274,277,-0.618749999999965,0.250847457626986,-0.612499999999957,0.257627118643857,-0.624999999999972,0.257627118644033,-0.618749999999964,0.264406779660904,-0.000000000000188,-0.012500000000016,0.013559322033930,-0.000000000000000,-0.013559322033907,0.000000000000001,0.000000000000165,0.012500000000015,2 -270,273,275,278,-0.631250000000008,0.250847457627174,-0.624999999999972,0.257627118644033,-0.637500000000043,0.257627118644210,-0.631250000000007,0.264406779661069,-0.000000000000188,-0.012500000000071,0.013559322033907,-0.000000000000001,-0.013559322033883,-0.000000000000000,0.000000000000165,0.012500000000072,2 -271,274,279,11869,-0.643750000000022,0.250847457627362,-0.637500000000043,0.257627118644210,-0.643750000000022,0.264406779661234,-0.650000000000000,0.257627118644386,-0.000000000000188,-0.012499999999957,0.013559322033883,0.000000000000000,0.000000000000165,0.012499999999957,-0.013559322033860,0.000000000000000,1 -272,277,280,3943,-0.606249999999978,0.264406779660739,-0.612499999999957,0.271186440677775,-0.606249999999978,0.277966101694653,-0.600000000000000,0.271186440677618,-0.000000000000165,-0.012499999999957,-0.013559322033906,-0.000000000000000,0.000000000000149,0.012499999999957,0.013559322033922,0.000000000000000,2 -273,276,278,281,-0.618749999999964,0.264406779660904,-0.612499999999957,0.271186440677775,-0.624999999999971,0.271186440677932,-0.618749999999963,0.277966101694803,-0.000000000000165,-0.012500000000015,0.013559322033906,0.000000000000000,-0.013559322033891,0.000000000000002,0.000000000000149,0.012500000000013,2 -274,277,279,282,-0.631250000000007,0.264406779661069,-0.624999999999971,0.271186440677932,-0.637500000000043,0.271186440678089,-0.631250000000007,0.277966101694952,-0.000000000000165,-0.012500000000072,0.013559322033891,-0.000000000000002,-0.013559322033875,-0.000000000000000,0.000000000000149,0.012500000000073,2 -275,278,283,11869,-0.643750000000022,0.264406779661234,-0.637500000000043,0.271186440678089,-0.643750000000022,0.277966101695101,-0.650000000000000,0.271186440678246,-0.000000000000165,-0.012499999999957,0.013559322033875,0.000000000000000,0.000000000000149,0.012499999999957,-0.013559322033860,0.000000000000000,1 -276,281,284,3944,-0.606249999999978,0.277966101694653,-0.612499999999957,0.284745762711689,-0.606249999999978,0.291525423728585,-0.600000000000000,0.284745762711550,-0.000000000000149,-0.012499999999957,-0.013559322033922,0.000000000000000,0.000000000000129,0.012499999999957,0.013559322033942,0.000000000000000,2 -277,280,282,285,-0.618749999999963,0.277966101694803,-0.612499999999957,0.284745762711689,-0.624999999999969,0.284745762711828,-0.618749999999962,0.291525423728714,-0.000000000000149,-0.012500000000013,0.013559322033922,-0.000000000000000,-0.013559322033901,0.000000000000002,0.000000000000129,0.012500000000012,2 -278,281,283,286,-0.631250000000007,0.277966101694952,-0.624999999999969,0.284745762711828,-0.637500000000043,0.284745762711967,-0.631250000000006,0.291525423728843,-0.000000000000149,-0.012500000000073,0.013559322033901,-0.000000000000002,-0.013559322033880,0.000000000000000,0.000000000000129,0.012500000000075,2 -279,282,287,11869,-0.643750000000022,0.277966101695101,-0.637500000000043,0.284745762711967,-0.643750000000022,0.291525423728971,-0.650000000000000,0.284745762712106,-0.000000000000149,-0.012499999999957,0.013559322033880,-0.000000000000000,0.000000000000129,0.012499999999957,-0.013559322033860,0.000000000000000,1 -280,285,288,3945,-0.606249999999978,0.291525423728585,-0.612499999999957,0.298305084745611,-0.606249999999978,0.305084745762515,-0.600000000000000,0.298305084745489,-0.000000000000129,-0.012499999999957,-0.013559322033922,-0.000000000000000,0.000000000000114,0.012499999999957,0.013559322033936,0.000000000000000,2 -281,284,286,289,-0.618749999999962,0.291525423728714,-0.612499999999957,0.298305084745611,-0.624999999999968,0.298305084745732,-0.618749999999962,0.305084745762629,-0.000000000000129,-0.012500000000012,0.013559322033922,0.000000000000000,-0.013559322033908,0.000000000000001,0.000000000000114,0.012500000000010,2 -282,285,287,290,-0.631250000000006,0.291525423728843,-0.624999999999968,0.298305084745732,-0.637500000000043,0.298305084745854,-0.631250000000005,0.305084745762743,-0.000000000000129,-0.012500000000075,0.013559322033908,-0.000000000000001,-0.013559322033894,-0.000000000000000,0.000000000000114,0.012500000000076,2 -283,286,291,11869,-0.643750000000022,0.291525423728971,-0.637500000000043,0.298305084745854,-0.643750000000022,0.305084745762858,-0.650000000000000,0.298305084745975,-0.000000000000129,-0.012499999999957,0.013559322033894,0.000000000000000,0.000000000000114,0.012499999999957,-0.013559322033879,0.000000000000000,1 -284,289,292,3946,-0.606249999999978,0.305084745762515,-0.612499999999957,0.311864406779529,-0.606249999999978,0.318644067796436,-0.600000000000000,0.311864406779421,-0.000000000000114,-0.012499999999957,-0.013559322033914,-0.000000000000000,0.000000000000100,0.012499999999957,0.013559322033928,0.000000000000000,2 -285,288,290,293,-0.618749999999962,0.305084745762629,-0.612499999999957,0.311864406779529,-0.624999999999966,0.311864406779636,-0.618749999999961,0.318644067796536,-0.000000000000114,-0.012500000000010,0.013559322033914,0.000000000000000,-0.013559322033900,0.000000000000002,0.000000000000101,0.012500000000009,2 -286,289,291,294,-0.631250000000005,0.305084745762743,-0.624999999999966,0.311864406779636,-0.637500000000043,0.311864406779744,-0.631250000000004,0.318644067796637,-0.000000000000114,-0.012500000000076,0.013559322033900,-0.000000000000002,-0.013559322033886,-0.000000000000000,0.000000000000100,0.012500000000078,2 -287,290,295,11869,-0.643750000000022,0.305084745762858,-0.637500000000043,0.311864406779744,-0.643750000000022,0.318644067796737,-0.650000000000000,0.311864406779851,-0.000000000000114,-0.012499999999957,0.013559322033886,0.000000000000000,0.000000000000100,0.012499999999957,-0.013559322033872,0.000000000000000,1 -288,293,296,3947,-0.606249999999978,0.318644067796436,-0.612499999999957,0.325423728813453,-0.606249999999978,0.332203389830378,-0.600000000000000,0.325423728813361,-0.000000000000100,-0.012499999999957,-0.013559322033934,-0.000000000000000,0.000000000000084,0.012499999999957,0.013559322033950,0.000000000000000,2 -289,292,294,297,-0.618749999999961,0.318644067796536,-0.612499999999957,0.325423728813453,-0.624999999999965,0.325423728813545,-0.618749999999960,0.332203389830461,-0.000000000000101,-0.012500000000009,0.013559322033934,0.000000000000000,-0.013559322033917,0.000000000000002,0.000000000000084,0.012500000000007,2 -290,293,295,298,-0.631250000000004,0.318644067796637,-0.624999999999965,0.325423728813545,-0.637500000000043,0.325423728813637,-0.631250000000004,0.332203389830545,-0.000000000000100,-0.012500000000078,0.013559322033917,-0.000000000000002,-0.013559322033900,-0.000000000000000,0.000000000000084,0.012500000000080,2 -291,294,299,11869,-0.643750000000022,0.318644067796737,-0.637500000000043,0.325423728813637,-0.643750000000022,0.332203389830629,-0.650000000000000,0.325423728813729,-0.000000000000100,-0.012499999999957,0.013559322033900,0.000000000000000,0.000000000000083,0.012499999999957,-0.013559322033883,0.000000000000000,1 -292,297,300,3948,-0.606249999999978,0.332203389830378,-0.612499999999957,0.338983050847371,-0.606249999999978,0.345762711864286,-0.600000000000000,0.338983050847293,-0.000000000000084,-0.012499999999957,-0.013559322033902,-0.000000000000000,0.000000000000072,0.012499999999957,0.013559322033914,0.000000000000000,2 -293,296,298,301,-0.618749999999960,0.332203389830461,-0.612499999999957,0.338983050847371,-0.624999999999963,0.338983050847449,-0.618749999999960,0.345762711864358,-0.000000000000084,-0.012500000000007,0.013559322033902,0.000000000000000,-0.013559322033891,0.000000000000001,0.000000000000072,0.012500000000006,2 -294,297,299,302,-0.631250000000004,0.332203389830545,-0.624999999999963,0.338983050847449,-0.637500000000043,0.338983050847527,-0.631250000000003,0.345762711864431,-0.000000000000084,-0.012500000000080,0.013559322033891,-0.000000000000001,-0.013559322033880,0.000000000000000,0.000000000000072,0.012500000000081,2 -295,298,303,11869,-0.643750000000022,0.332203389830629,-0.637500000000043,0.338983050847527,-0.643750000000022,0.345762711864503,-0.650000000000000,0.338983050847605,-0.000000000000083,-0.012499999999957,0.013559322033880,-0.000000000000000,0.000000000000072,0.012499999999957,-0.013559322033869,0.000000000000000,1 -296,301,304,3949,-0.606249999999978,0.345762711864286,-0.612499999999957,0.352542372881287,-0.606249999999978,0.359322033898228,-0.600000000000000,0.352542372881227,-0.000000000000072,-0.012499999999957,-0.013559322033930,-0.000000000000000,0.000000000000049,0.012499999999957,0.013559322033954,0.000000000000000,2 -297,300,302,305,-0.618749999999960,0.345762711864358,-0.612499999999957,0.352542372881287,-0.624999999999962,0.352542372881348,-0.618749999999959,0.359322033898277,-0.000000000000072,-0.012500000000006,0.013559322033930,0.000000000000000,-0.013559322033907,0.000000000000002,0.000000000000049,0.012500000000004,2 -298,301,303,306,-0.631250000000003,0.345762711864431,-0.624999999999962,0.352542372881348,-0.637500000000043,0.352542372881409,-0.631250000000002,0.359322033898326,-0.000000000000072,-0.012500000000081,0.013559322033907,-0.000000000000002,-0.013559322033883,-0.000000000000000,0.000000000000049,0.012500000000082,2 -299,302,307,11869,-0.643750000000022,0.345762711864503,-0.637500000000043,0.352542372881409,-0.643750000000022,0.359322033898375,-0.650000000000000,0.352542372881469,-0.000000000000072,-0.012499999999957,0.013559322033883,0.000000000000000,0.000000000000049,0.012499999999957,-0.013559322033860,0.000000000000000,1 -300,305,308,3950,-0.606249999999978,0.359322033898228,-0.612499999999957,0.366101694915204,-0.606249999999978,0.372881355932139,-0.600000000000000,0.366101694915163,-0.000000000000049,-0.012499999999957,-0.013559322033903,-0.000000000000000,0.000000000000034,0.012499999999957,0.013559322033918,0.000000000000000,2 -301,304,306,309,-0.618749999999959,0.359322033898277,-0.612499999999957,0.366101694915204,-0.624999999999960,0.366101694915246,-0.618749999999958,0.372881355932173,-0.000000000000049,-0.012500000000004,0.013559322033903,0.000000000000000,-0.013559322033889,0.000000000000001,0.000000000000034,0.012500000000003,2 -302,305,307,310,-0.631250000000002,0.359322033898326,-0.624999999999960,0.366101694915246,-0.637500000000043,0.366101694915287,-0.631250000000001,0.372881355932207,-0.000000000000049,-0.012500000000082,0.013559322033889,-0.000000000000001,-0.013559322033874,-0.000000000000000,0.000000000000034,0.012500000000084,2 -303,306,311,11869,-0.643750000000022,0.359322033898375,-0.637500000000043,0.366101694915287,-0.643750000000022,0.372881355932242,-0.650000000000000,0.366101694915329,-0.000000000000049,-0.012499999999957,0.013559322033874,0.000000000000000,0.000000000000034,0.012499999999957,-0.013559322033860,0.000000000000000,1 -304,309,312,3951,-0.606249999999978,0.372881355932139,-0.612499999999957,0.379661016949118,-0.606249999999978,0.386440677966074,-0.600000000000000,0.379661016949095,-0.000000000000034,-0.012499999999957,-0.013559322033925,-0.000000000000000,0.000000000000013,0.012499999999957,0.013559322033946,0.000000000000000,2 -305,308,310,313,-0.618749999999958,0.372881355932173,-0.612499999999957,0.379661016949118,-0.624999999999959,0.379661016949142,-0.618749999999957,0.386440677966087,-0.000000000000034,-0.012500000000003,0.013559322033925,0.000000000000000,-0.013559322033903,0.000000000000001,0.000000000000013,0.012500000000002,2 -306,309,311,314,-0.631250000000001,0.372881355932207,-0.624999999999959,0.379661016949142,-0.637500000000043,0.379661016949165,-0.631250000000001,0.386440677966100,-0.000000000000034,-0.012500000000084,0.013559322033903,-0.000000000000001,-0.013559322033881,-0.000000000000000,0.000000000000013,0.012500000000085,2 -307,310,315,11869,-0.643750000000022,0.372881355932242,-0.637500000000043,0.379661016949165,-0.643750000000022,0.386440677966112,-0.650000000000000,0.379661016949189,-0.000000000000034,-0.012499999999957,0.013559322033881,0.000000000000000,0.000000000000013,0.012499999999957,-0.013559322033860,0.000000000000000,1 -24,308,313,3952,-0.606249999999978,0.400000000000000,-0.606249999999978,0.386440677966074,-0.612499999999957,0.393220338983040,-0.600000000000000,0.393220338983034,-0.000000000000000,0.012499999999957,-0.000000000000013,-0.012499999999957,-0.013559322033919,0.000000000000000,0.013559322033932,-0.000000000000000,2 -25,309,312,314,-0.618749999999957,0.400000000000000,-0.618749999999957,0.386440677966087,-0.612499999999957,0.393220338983040,-0.624999999999957,0.393220338983047,-0.000000000000000,0.012500000000000,-0.000000000000013,-0.012500000000002,0.013559322033919,-0.000000000000000,-0.013559322033907,0.000000000000002,2 -26,310,313,315,-0.631250000000000,0.400000000000000,-0.631250000000001,0.386440677966100,-0.624999999999957,0.393220338983047,-0.637500000000043,0.393220338983053,-0.000000000000000,0.012500000000087,-0.000000000000013,-0.012500000000085,0.013559322033907,-0.000000000000002,-0.013559322033894,0.000000000000000,2 -27,311,314,11869,-0.643750000000022,0.400000000000000,-0.643750000000022,0.386440677966112,-0.637500000000043,0.393220338983053,-0.650000000000000,0.393220338983059,0.000000000000000,0.012499999999957,-0.000000000000013,-0.012499999999957,0.013559322033894,-0.000000000000000,-0.013559322033881,0.000000000000000,1 -317,320,392,4345,-0.612499999999957,-0.592857142857128,-0.606249999999978,-0.585714285714256,-0.606249999999978,-0.600000000000000,-0.600000000000000,-0.592857142857127,-0.014285714285743,-0.000000000000000,-0.000000000000002,0.012499999999957,0.000000000000000,-0.012499999999957,0.014285714285745,0.000000000000000,2 -316,318,321,393,-0.612499999999957,-0.592857142857128,-0.625000000000043,-0.592857142857129,-0.618750000000000,-0.585714285714257,-0.618750000000000,-0.600000000000000,0.014285714285743,0.000000000000000,-0.014285714285742,-0.000000000000000,-0.000000000000002,0.012500000000087,-0.000000000000000,-0.012500000000087,2 -317,319,322,394,-0.625000000000043,-0.592857142857129,-0.637500000000043,-0.592857142857130,-0.631250000000043,-0.585714285714259,-0.631250000000043,-0.600000000000000,0.014285714285742,0.000000000000000,-0.014285714285740,-0.000000000000000,-0.000000000000002,0.012500000000000,-0.000000000000000,-0.012500000000000,2 -318,323,395,11869,-0.637500000000043,-0.592857142857130,-0.643750000000022,-0.585714285714261,-0.643750000000022,-0.600000000000000,-0.650000000000000,-0.592857142857131,0.014285714285740,0.000000000000000,-0.000000000000002,0.012499999999957,-0.000000000000000,-0.012499999999957,-0.014285714285738,-0.000000000000000,1 -316,321,324,4346,-0.606249999999978,-0.585714285714256,-0.612499999999957,-0.578571428571393,-0.606249999999978,-0.571428571428534,-0.600000000000000,-0.578571428571396,0.000000000000002,-0.012499999999957,-0.014285714285726,-0.000000000000000,0.000000000000007,0.012499999999957,0.014285714285717,0.000000000000000,2 -317,320,322,325,-0.618750000000000,-0.585714285714257,-0.612499999999957,-0.578571428571393,-0.625000000000044,-0.578571428571391,-0.618750000000000,-0.571428571428527,0.000000000000002,-0.012500000000087,0.014285714285726,0.000000000000000,-0.014285714285735,-0.000000000000000,0.000000000000007,0.012500000000087,2 -318,321,323,326,-0.631250000000043,-0.585714285714259,-0.625000000000044,-0.578571428571391,-0.637500000000043,-0.578571428571388,-0.631250000000043,-0.571428571428520,0.000000000000002,-0.012500000000000,0.014285714285735,0.000000000000000,-0.014285714285744,-0.000000000000000,0.000000000000007,0.012500000000000,2 -319,322,327,11869,-0.643750000000022,-0.585714285714261,-0.637500000000043,-0.578571428571388,-0.643750000000022,-0.571428571428513,-0.650000000000000,-0.578571428571386,0.000000000000002,-0.012499999999957,0.014285714285744,0.000000000000000,0.000000000000007,0.012499999999957,-0.014285714285753,0.000000000000000,1 -320,325,328,4347,-0.606249999999978,-0.571428571428534,-0.612499999999957,-0.564285714285682,-0.606249999999978,-0.557142857142847,-0.600000000000000,-0.564285714285699,-0.000000000000007,-0.012499999999957,-0.014285714285697,-0.000000000000000,0.000000000000027,0.012499999999957,0.014285714285677,0.000000000000000,2 -321,324,326,329,-0.618750000000000,-0.571428571428527,-0.612499999999957,-0.564285714285682,-0.625000000000044,-0.564285714285665,-0.618750000000000,-0.557142857142820,-0.000000000000007,-0.012500000000087,0.014285714285697,0.000000000000000,-0.014285714285717,0.000000000000000,0.000000000000027,0.012500000000087,2 -322,325,327,330,-0.631250000000043,-0.571428571428520,-0.625000000000044,-0.564285714285665,-0.637500000000043,-0.564285714285648,-0.631250000000043,-0.557142857142793,-0.000000000000007,-0.012500000000000,0.014285714285717,-0.000000000000000,-0.014285714285736,-0.000000000000000,0.000000000000027,0.012500000000000,2 -323,326,331,11869,-0.643750000000022,-0.571428571428513,-0.637500000000043,-0.564285714285648,-0.643750000000022,-0.557142857142767,-0.650000000000000,-0.564285714285631,-0.000000000000007,-0.012499999999957,0.014285714285736,0.000000000000000,0.000000000000027,0.012499999999957,-0.014285714285756,0.000000000000000,1 -324,329,332,4348,-0.606249999999978,-0.557142857142847,-0.612499999999957,-0.549999999999985,-0.606249999999978,-0.542857142857160,-0.600000000000000,-0.550000000000022,-0.000000000000027,-0.012499999999957,-0.014285714285697,-0.000000000000000,0.000000000000047,0.012499999999957,0.014285714285677,0.000000000000000,2 -325,328,330,333,-0.618750000000000,-0.557142857142820,-0.612499999999957,-0.549999999999985,-0.625000000000044,-0.549999999999948,-0.618750000000000,-0.542857142857113,-0.000000000000027,-0.012500000000087,0.014285714285697,0.000000000000000,-0.014285714285717,0.000000000000000,0.000000000000047,0.012500000000087,2 -326,329,331,334,-0.631250000000043,-0.557142857142793,-0.625000000000044,-0.549999999999948,-0.637500000000043,-0.549999999999912,-0.631250000000043,-0.542857142857067,-0.000000000000027,-0.012500000000000,0.014285714285717,-0.000000000000000,-0.014285714285736,-0.000000000000000,0.000000000000046,0.012500000000000,2 -327,330,335,11869,-0.643750000000022,-0.557142857142767,-0.637500000000043,-0.549999999999912,-0.643750000000022,-0.542857142857020,-0.650000000000000,-0.549999999999875,-0.000000000000027,-0.012499999999957,0.014285714285736,0.000000000000000,0.000000000000046,0.012499999999957,-0.014285714285756,0.000000000000000,1 -328,333,336,4349,-0.606249999999978,-0.542857142857160,-0.612499999999957,-0.535714285714289,-0.606249999999978,-0.528571428571474,-0.600000000000000,-0.535714285714345,-0.000000000000047,-0.012499999999957,-0.014285714285695,-0.000000000000000,0.000000000000065,0.012499999999957,0.014285714285677,0.000000000000000,2 -329,332,334,337,-0.618750000000000,-0.542857142857113,-0.612499999999957,-0.535714285714289,-0.625000000000044,-0.535714285714233,-0.618750000000000,-0.528571428571409,-0.000000000000047,-0.012500000000087,0.014285714285695,0.000000000000000,-0.014285714285713,-0.000000000000000,0.000000000000065,0.012500000000087,2 -330,333,335,338,-0.631250000000043,-0.542857142857067,-0.625000000000044,-0.535714285714233,-0.637500000000043,-0.535714285714178,-0.631250000000043,-0.528571428571344,-0.000000000000046,-0.012500000000000,0.014285714285713,0.000000000000000,-0.014285714285732,-0.000000000000000,0.000000000000065,0.012500000000000,2 -331,334,339,11869,-0.643750000000022,-0.542857142857020,-0.637500000000043,-0.535714285714178,-0.643750000000022,-0.528571428571279,-0.650000000000000,-0.535714285714122,-0.000000000000046,-0.012499999999957,0.014285714285732,0.000000000000000,0.000000000000065,0.012499999999957,-0.014285714285750,0.000000000000000,1 -332,337,340,4350,-0.606249999999978,-0.528571428571474,-0.612499999999957,-0.521428571428624,-0.606249999999978,-0.514285714285859,-0.600000000000000,-0.521428571428709,-0.000000000000065,-0.012499999999957,-0.014285714285635,0.000000000000000,0.000000000000106,0.012499999999957,0.014285714285593,0.000000000000000,2 -333,336,338,341,-0.618750000000000,-0.528571428571409,-0.612499999999957,-0.521428571428624,-0.625000000000044,-0.521428571428538,-0.618750000000000,-0.514285714285753,-0.000000000000065,-0.012500000000087,0.014285714285635,-0.000000000000000,-0.014285714285676,0.000000000000000,0.000000000000106,0.012500000000087,2 -334,337,339,342,-0.631250000000043,-0.528571428571344,-0.625000000000044,-0.521428571428538,-0.637500000000043,-0.521428571428453,-0.631250000000043,-0.514285714285647,-0.000000000000065,-0.012500000000000,0.014285714285676,-0.000000000000000,-0.014285714285718,0.000000000000000,0.000000000000106,0.012500000000000,2 -335,338,343,11869,-0.643750000000022,-0.528571428571279,-0.637500000000043,-0.521428571428453,-0.643750000000022,-0.514285714285541,-0.650000000000000,-0.521428571428368,-0.000000000000065,-0.012499999999957,0.014285714285718,-0.000000000000000,0.000000000000106,0.012499999999957,-0.014285714285759,0.000000000000000,1 -336,341,344,4351,-0.606249999999978,-0.514285714285859,-0.612499999999957,-0.507142857142983,-0.606249999999978,-0.500000000000226,-0.600000000000000,-0.507142857143103,-0.000000000000106,-0.012499999999957,-0.014285714285647,-0.000000000000000,0.000000000000133,0.012499999999957,0.014285714285620,0.000000000000000,2 -337,340,342,345,-0.618750000000000,-0.514285714285753,-0.612499999999957,-0.507142857142983,-0.625000000000043,-0.507142857142863,-0.618750000000000,-0.500000000000093,-0.000000000000106,-0.012500000000087,0.014285714285647,0.000000000000000,-0.014285714285673,-0.000000000000000,0.000000000000133,0.012500000000087,2 -338,341,343,346,-0.631250000000043,-0.514285714285647,-0.625000000000043,-0.507142857142863,-0.637500000000043,-0.507142857142744,-0.631250000000043,-0.499999999999960,-0.000000000000106,-0.012500000000000,0.014285714285673,0.000000000000000,-0.014285714285700,-0.000000000000000,0.000000000000133,0.012500000000000,2 -339,342,347,11869,-0.643750000000022,-0.514285714285541,-0.637500000000043,-0.507142857142744,-0.643750000000022,-0.499999999999828,-0.650000000000000,-0.507142857142625,-0.000000000000106,-0.012499999999957,0.014285714285700,0.000000000000000,0.000000000000133,0.012499999999957,-0.014285714285727,0.000000000000000,1 -340,345,348,4352,-0.606249999999978,-0.500000000000226,-0.612499999999957,-0.492857142857293,-0.606249999999978,-0.485714285714488,-0.600000000000000,-0.492857142857421,-0.000000000000133,-0.012499999999957,-0.014285714285733,-0.000000000000000,0.000000000000122,0.012499999999957,0.014285714285744,0.000000000000000,2 -341,344,346,349,-0.618750000000000,-0.500000000000093,-0.612499999999957,-0.492857142857293,-0.625000000000043,-0.492857142857165,-0.618750000000000,-0.485714285714365,-0.000000000000133,-0.012500000000087,0.014285714285733,0.000000000000000,-0.014285714285722,-0.000000000000000,0.000000000000122,0.012500000000087,2 -342,345,347,350,-0.631250000000043,-0.499999999999960,-0.625000000000043,-0.492857142857165,-0.637500000000043,-0.492857142857038,-0.631250000000043,-0.485714285714243,-0.000000000000133,-0.012500000000000,0.014285714285722,0.000000000000000,-0.014285714285712,-0.000000000000000,0.000000000000123,0.012500000000000,2 -343,346,351,11869,-0.643750000000022,-0.499999999999828,-0.637500000000043,-0.492857142857038,-0.643750000000022,-0.485714285714121,-0.650000000000000,-0.492857142856910,-0.000000000000133,-0.012499999999957,0.014285714285712,0.000000000000000,0.000000000000122,0.012499999999957,-0.014285714285702,0.000000000000000,1 -344,349,352,4353,-0.606249999999978,-0.485714285714488,-0.612499999999957,-0.478571428571560,-0.606249999999978,-0.471428571428744,-0.600000000000000,-0.478571428571672,-0.000000000000122,-0.012499999999957,-0.014285714285733,-0.000000000000000,0.000000000000101,0.012499999999957,0.014285714285754,0.000000000000000,2 -345,348,350,353,-0.618750000000000,-0.485714285714365,-0.612499999999957,-0.478571428571560,-0.625000000000043,-0.478571428571448,-0.618750000000000,-0.471428571428643,-0.000000000000122,-0.012500000000087,0.014285714285733,0.000000000000000,-0.014285714285712,0.000000000000000,0.000000000000101,0.012500000000087,2 -346,349,351,354,-0.631250000000043,-0.485714285714243,-0.625000000000043,-0.478571428571448,-0.637500000000043,-0.478571428571336,-0.631250000000043,-0.471428571428542,-0.000000000000123,-0.012500000000000,0.014285714285712,-0.000000000000000,-0.014285714285691,-0.000000000000000,0.000000000000101,0.012500000000000,2 -347,350,355,11869,-0.643750000000022,-0.485714285714121,-0.637500000000043,-0.478571428571336,-0.643750000000022,-0.471428571428441,-0.650000000000000,-0.478571428571225,-0.000000000000122,-0.012499999999957,0.014285714285691,0.000000000000000,0.000000000000101,0.012499999999957,-0.014285714285669,0.000000000000000,1 -348,353,356,4354,-0.606249999999978,-0.471428571428744,-0.612499999999957,-0.464285714285824,-0.606249999999978,-0.457142857142995,-0.600000000000000,-0.464285714285914,-0.000000000000101,-0.012499999999957,-0.014285714285738,-0.000000000000000,0.000000000000078,0.012499999999957,0.014285714285761,0.000000000000000,2 -349,352,354,357,-0.618750000000000,-0.471428571428643,-0.612499999999957,-0.464285714285824,-0.625000000000043,-0.464285714285735,-0.618750000000000,-0.457142857142916,-0.000000000000101,-0.012500000000087,0.014285714285738,0.000000000000000,-0.014285714285715,-0.000000000000000,0.000000000000078,0.012500000000087,2 -350,353,355,358,-0.631250000000043,-0.471428571428542,-0.625000000000043,-0.464285714285735,-0.637500000000043,-0.464285714285645,-0.631250000000043,-0.457142857142838,-0.000000000000101,-0.012500000000000,0.014285714285715,0.000000000000000,-0.014285714285692,-0.000000000000000,0.000000000000078,0.012500000000000,2 -351,354,359,11869,-0.643750000000022,-0.471428571428441,-0.637500000000043,-0.464285714285645,-0.643750000000022,-0.457142857142760,-0.650000000000000,-0.464285714285555,-0.000000000000101,-0.012499999999957,0.014285714285692,0.000000000000000,0.000000000000078,0.012499999999957,-0.014285714285669,0.000000000000000,1 -352,357,360,4355,-0.606249999999978,-0.457142857142995,-0.612499999999957,-0.450000000000085,-0.606249999999978,-0.442857142857243,-0.600000000000000,-0.450000000000152,-0.000000000000078,-0.012499999999957,-0.014285714285740,0.000000000000000,0.000000000000055,0.012499999999957,0.014285714285764,0.000000000000000,2 -353,356,358,361,-0.618750000000000,-0.457142857142916,-0.612499999999957,-0.450000000000085,-0.625000000000043,-0.450000000000019,-0.618750000000000,-0.442857142857188,-0.000000000000078,-0.012500000000087,0.014285714285740,-0.000000000000000,-0.014285714285717,-0.000000000000000,0.000000000000055,0.012500000000087,2 -354,357,359,362,-0.631250000000043,-0.457142857142838,-0.625000000000043,-0.450000000000019,-0.637500000000043,-0.449999999999952,-0.631250000000043,-0.442857142857133,-0.000000000000078,-0.012500000000000,0.014285714285717,0.000000000000000,-0.014285714285693,-0.000000000000000,0.000000000000054,0.012500000000000,2 -355,358,363,11869,-0.643750000000022,-0.457142857142760,-0.637500000000043,-0.449999999999952,-0.643750000000022,-0.442857142857079,-0.650000000000000,-0.449999999999886,-0.000000000000078,-0.012499999999957,0.014285714285693,0.000000000000000,0.000000000000055,0.012499999999956,-0.014285714285669,0.000000000000000,1 -356,361,364,4356,-0.606249999999978,-0.442857142857243,-0.612499999999957,-0.435714285714346,-0.606249999999978,-0.428571428571493,-0.600000000000000,-0.435714285714389,-0.000000000000055,-0.012499999999957,-0.014285714285738,-0.000000000000000,0.000000000000032,0.012499999999957,0.014285714285761,0.000000000000000,2 -357,360,362,365,-0.618750000000000,-0.442857142857188,-0.612499999999957,-0.435714285714346,-0.625000000000044,-0.435714285714303,-0.618750000000000,-0.428571428571461,-0.000000000000055,-0.012500000000087,0.014285714285738,0.000000000000000,-0.014285714285715,-0.000000000000000,0.000000000000032,0.012500000000087,2 -358,361,363,366,-0.631250000000043,-0.442857142857133,-0.625000000000044,-0.435714285714303,-0.637500000000043,-0.435714285714260,-0.631250000000043,-0.428571428571430,-0.000000000000054,-0.012500000000000,0.014285714285715,0.000000000000000,-0.014285714285692,0.000000000000000,0.000000000000032,0.012500000000000,2 -359,362,367,11869,-0.643750000000022,-0.442857142857079,-0.637500000000043,-0.435714285714260,-0.643750000000022,-0.428571428571398,-0.650000000000000,-0.435714285714217,-0.000000000000055,-0.012499999999956,0.014285714285692,-0.000000000000000,0.000000000000032,0.012499999999957,-0.014285714285669,0.000000000000000,1 -360,365,368,4357,-0.606249999999978,-0.428571428571493,-0.612499999999957,-0.421428571428606,-0.606249999999978,-0.414285714285745,-0.600000000000000,-0.421428571428633,-0.000000000000032,-0.012499999999957,-0.014285714285743,-0.000000000000000,0.000000000000022,0.012499999999957,0.014285714285753,0.000000000000000,2 -361,364,366,369,-0.618750000000000,-0.428571428571461,-0.612499999999957,-0.421428571428606,-0.625000000000043,-0.421428571428579,-0.618750000000000,-0.414285714285723,-0.000000000000032,-0.012500000000087,0.014285714285743,0.000000000000000,-0.014285714285733,0.000000000000000,0.000000000000022,0.012500000000087,2 -362,365,367,370,-0.631250000000043,-0.428571428571430,-0.625000000000043,-0.421428571428579,-0.637500000000043,-0.421428571428552,-0.631250000000043,-0.414285714285702,-0.000000000000032,-0.012500000000000,0.014285714285733,-0.000000000000000,-0.014285714285723,-0.000000000000000,0.000000000000022,0.012500000000000,2 -363,366,371,11869,-0.643750000000022,-0.428571428571398,-0.637500000000043,-0.421428571428552,-0.643750000000022,-0.414285714285680,-0.650000000000000,-0.421428571428526,-0.000000000000032,-0.012499999999957,0.014285714285723,0.000000000000000,0.000000000000022,0.012499999999957,-0.014285714285713,0.000000000000000,1 -80,364,369,4358,-0.606249999999978,-0.400000000000000,-0.606249999999978,-0.414285714285745,-0.612499999999957,-0.407142857142867,-0.600000000000000,-0.407142857142878,-0.000000000000000,0.012499999999957,-0.000000000000022,-0.012499999999957,-0.014285714285734,0.000000000000000,0.014285714285756,-0.000000000000000,2 -81,365,368,370,-0.618750000000000,-0.400000000000000,-0.618750000000000,-0.414285714285723,-0.612499999999957,-0.407142857142867,-0.625000000000043,-0.407142857142856,0.000000000000000,0.012500000000087,-0.000000000000022,-0.012500000000087,0.014285714285734,-0.000000000000000,-0.014285714285713,-0.000000000000000,2 -82,366,369,371,-0.631250000000043,-0.400000000000000,-0.631250000000043,-0.414285714285702,-0.625000000000043,-0.407142857142856,-0.637500000000043,-0.407142857142845,0.000000000000000,0.012500000000000,-0.000000000000022,-0.012500000000000,0.014285714285713,0.000000000000000,-0.014285714285691,0.000000000000000,2 -83,367,370,11869,-0.643750000000022,-0.400000000000000,-0.643750000000022,-0.414285714285680,-0.637500000000043,-0.407142857142845,-0.650000000000000,-0.407142857142835,0.000000000000000,0.012499999999957,-0.000000000000022,-0.012499999999957,0.014285714285691,-0.000000000000000,-0.014285714285669,0.000000000000000,1 -373,376,396,11869,-0.612499999999957,-0.645833333333359,-0.606249999999978,-0.641666666666717,-0.600000000000000,-0.645833333333359,-0.606249999999978,-0.650000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,0.012499999999956,0.008333333333283,0.000000000000000,0.000000000000000,-0.012499999999957,1 -372,374,377,11869,-0.612499999999957,-0.645833333333359,-0.625000000000043,-0.645833333333359,-0.618750000000000,-0.641666666666717,-0.618750000000000,-0.650000000000000,0.008333333333283,-0.000000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.012500000000087,-0.000000000000000,-0.012500000000087,1 -373,375,378,11869,-0.625000000000043,-0.645833333333359,-0.637500000000043,-0.645833333333359,-0.631250000000043,-0.641666666666717,-0.631250000000043,-0.650000000000000,0.008333333333283,0.000000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.012500000000000,-0.000000000000000,-0.012500000000000,1 -374,379,11869,-0.637500000000043,-0.645833333333359,-0.643750000000022,-0.641666666666717,-0.650000000000000,-0.645833333333359,0.008333333333283,0.000000000000000,0.000000000000000,0.012499999999957,-0.008333333333283,-0.000000000000000,1 -372,377,380,397,-0.606249999999978,-0.641666666666717,-0.612499999999957,-0.637500000000021,-0.606249999999978,-0.633333333333326,-0.600000000000000,-0.637500000000022,0.000000000000000,-0.012499999999956,-0.008333333333391,-0.000000000000000,0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,2 -373,376,378,381,-0.618750000000000,-0.641666666666717,-0.612499999999957,-0.637500000000021,-0.625000000000044,-0.637500000000021,-0.618750000000000,-0.633333333333326,0.000000000000000,-0.012500000000087,0.008333333333391,0.000000000000000,-0.008333333333391,-0.000000000000000,-0.000000000000000,0.012500000000087,2 -374,377,379,382,-0.631250000000043,-0.641666666666717,-0.625000000000044,-0.637500000000021,-0.637500000000043,-0.637500000000022,-0.631250000000043,-0.633333333333326,0.000000000000000,-0.012500000000000,0.008333333333391,0.000000000000000,-0.008333333333391,-0.000000000000000,-0.000000000000000,0.012500000000000,2 -375,378,383,11869,-0.643750000000022,-0.641666666666717,-0.637500000000043,-0.637500000000022,-0.643750000000022,-0.633333333333326,-0.650000000000000,-0.637500000000022,-0.000000000000000,-0.012499999999957,0.008333333333391,0.000000000000000,-0.000000000000000,0.012499999999957,-0.008333333333391,0.000000000000000,1 -376,381,384,398,-0.606249999999978,-0.633333333333326,-0.612499999999957,-0.629166666666674,-0.606249999999978,-0.625000000000033,-0.600000000000000,-0.629166666666685,-0.000000000000000,-0.012499999999957,-0.008333333333304,-0.000000000000000,0.000000000000022,0.012499999999957,0.008333333333283,0.000000000000000,2 -377,380,382,385,-0.618750000000000,-0.633333333333326,-0.612499999999957,-0.629166666666674,-0.625000000000044,-0.629166666666663,-0.618750000000000,-0.625000000000011,0.000000000000000,-0.012500000000087,0.008333333333304,0.000000000000000,-0.008333333333326,0.000000000000000,0.000000000000022,0.012500000000087,2 -378,381,383,386,-0.631250000000043,-0.633333333333326,-0.625000000000044,-0.629166666666663,-0.637500000000043,-0.629166666666652,-0.631250000000043,-0.624999999999989,0.000000000000000,-0.012500000000000,0.008333333333326,-0.000000000000000,-0.008333333333348,0.000000000000000,0.000000000000022,0.012500000000000,2 -379,382,387,11869,-0.643750000000022,-0.633333333333326,-0.637500000000043,-0.629166666666652,-0.643750000000022,-0.624999999999967,-0.650000000000000,-0.629166666666641,0.000000000000000,-0.012499999999957,0.008333333333348,-0.000000000000000,0.000000000000022,0.012499999999957,-0.008333333333369,0.000000000000000,1 -380,385,388,399,-0.606249999999978,-0.625000000000033,-0.612499999999957,-0.620833333333348,-0.606249999999978,-0.616666666666674,-0.600000000000000,-0.620833333333359,-0.000000000000022,-0.012499999999957,-0.008333333333348,-0.000000000000000,-0.000000000000000,0.012499999999957,0.008333333333369,0.000000000000000,2 -381,384,386,389,-0.618750000000000,-0.625000000000011,-0.612499999999957,-0.620833333333348,-0.625000000000044,-0.620833333333337,-0.618750000000000,-0.616666666666674,-0.000000000000022,-0.012500000000087,0.008333333333348,0.000000000000000,-0.008333333333326,-0.000000000000000,0.000000000000000,0.012500000000087,2 -382,385,387,390,-0.631250000000043,-0.624999999999989,-0.625000000000044,-0.620833333333337,-0.637500000000043,-0.620833333333326,-0.631250000000043,-0.616666666666674,-0.000000000000022,-0.012500000000000,0.008333333333326,0.000000000000000,-0.008333333333304,-0.000000000000000,0.000000000000000,0.012500000000000,2 -383,386,391,11869,-0.643750000000022,-0.624999999999967,-0.637500000000043,-0.620833333333326,-0.643750000000022,-0.616666666666674,-0.650000000000000,-0.620833333333315,-0.000000000000022,-0.012499999999957,0.008333333333304,0.000000000000000,0.000000000000000,0.012499999999957,-0.008333333333283,0.000000000000000,1 -384,389,392,400,-0.606249999999978,-0.616666666666674,-0.612499999999957,-0.612499999999979,-0.606249999999978,-0.608333333333283,-0.600000000000000,-0.612499999999978,0.000000000000000,-0.012499999999957,-0.008333333333391,0.000000000000000,-0.000000000000000,0.012499999999956,0.008333333333391,0.000000000000000,2 -385,388,390,393,-0.618750000000000,-0.616666666666674,-0.612499999999957,-0.612499999999979,-0.625000000000044,-0.612499999999979,-0.618750000000000,-0.608333333333283,-0.000000000000000,-0.012500000000087,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000000,-0.000000000000000,0.012500000000087,2 -386,389,391,394,-0.631250000000043,-0.616666666666674,-0.625000000000044,-0.612499999999979,-0.637500000000043,-0.612499999999978,-0.631250000000043,-0.608333333333283,-0.000000000000000,-0.012500000000000,0.008333333333391,-0.000000000000000,-0.008333333333391,-0.000000000000000,0.000000000000000,0.012500000000000,2 -387,390,395,11869,-0.643750000000022,-0.616666666666674,-0.637500000000043,-0.612499999999978,-0.643750000000022,-0.608333333333283,-0.650000000000000,-0.612499999999978,-0.000000000000000,-0.012499999999957,0.008333333333391,0.000000000000000,0.000000000000000,0.012499999999957,-0.008333333333391,0.000000000000000,1 -316,388,393,401,-0.606249999999978,-0.600000000000000,-0.606249999999978,-0.608333333333283,-0.612499999999957,-0.604166666666641,-0.600000000000000,-0.604166666666641,-0.000000000000000,0.012499999999957,0.000000000000000,-0.012499999999956,-0.008333333333283,-0.000000000000000,0.008333333333283,-0.000000000000000,2 -317,389,392,394,-0.618750000000000,-0.600000000000000,-0.618750000000000,-0.608333333333283,-0.612499999999957,-0.604166666666641,-0.625000000000043,-0.604166666666641,0.000000000000000,0.012500000000087,0.000000000000000,-0.012500000000087,0.008333333333283,0.000000000000000,-0.008333333333283,0.000000000000000,2 -318,390,393,395,-0.631250000000043,-0.600000000000000,-0.631250000000043,-0.608333333333283,-0.625000000000043,-0.604166666666641,-0.637500000000043,-0.604166666666641,0.000000000000000,0.012500000000000,-0.000000000000000,-0.012500000000000,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000000,2 -319,391,394,11869,-0.643750000000022,-0.600000000000000,-0.643750000000022,-0.608333333333283,-0.637500000000043,-0.604166666666641,-0.650000000000000,-0.604166666666641,0.000000000000000,0.012499999999957,-0.000000000000000,-0.012499999999957,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000000,1 -372,397,402,11869,-0.600000000000000,-0.645833333333359,-0.593103448275874,-0.641666666666717,-0.586206896551755,-0.645833333333359,-0.593103448275881,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448252,0.008333333333283,-0.000000000000014,-0.000000000000000,-0.013793103448238,1 -376,396,398,403,-0.600000000000000,-0.637500000000022,-0.593103448275874,-0.641666666666717,-0.593103448275867,-0.633333333333326,-0.586206896551741,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448266,0.008333333333391,-0.000000000000014,2 -380,397,399,404,-0.600000000000000,-0.629166666666685,-0.593103448275867,-0.633333333333326,-0.593103448275860,-0.625000000000044,-0.586206896551727,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448280,0.008333333333283,-0.000000000000014,2 -384,398,400,405,-0.600000000000000,-0.620833333333359,-0.593103448275860,-0.625000000000044,-0.593103448275853,-0.616666666666674,-0.586206896551713,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448294,0.008333333333370,-0.000000000000014,2 -388,399,401,406,-0.600000000000000,-0.612499999999978,-0.593103448275853,-0.616666666666674,-0.593103448275846,-0.608333333333283,-0.586206896551699,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448308,0.008333333333391,-0.000000000000014,2 -392,400,407,4345,-0.600000000000000,-0.604166666666641,-0.593103448275846,-0.608333333333283,-0.586206896551685,-0.604166666666641,-0.593103448275839,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448308,0.008333333333283,-0.000000000000014,0.000000000000000,0.013793103448322,2 -396,403,408,11869,-0.586206896551755,-0.645833333333359,-0.579310344827623,-0.641666666666717,-0.572413793103511,-0.645833333333359,-0.579310344827643,-0.650000000000000,-0.008333333333283,0.000000000000014,0.000000000000000,0.013793103448251,0.008333333333283,-0.000000000000028,-0.000000000000000,-0.013793103448238,1 -397,402,404,409,-0.586206896551741,-0.637500000000022,-0.579310344827623,-0.641666666666717,-0.579310344827602,-0.633333333333326,-0.572413793103483,-0.637500000000022,-0.008333333333391,0.000000000000014,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448264,0.008333333333391,-0.000000000000027,2 -398,403,405,410,-0.586206896551727,-0.629166666666685,-0.579310344827602,-0.633333333333326,-0.579310344827581,-0.625000000000044,-0.572413793103456,-0.629166666666685,-0.008333333333283,0.000000000000014,-0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448278,0.008333333333283,-0.000000000000027,2 -399,404,406,411,-0.586206896551713,-0.620833333333359,-0.579310344827581,-0.625000000000044,-0.579310344827560,-0.616666666666674,-0.572413793103429,-0.620833333333359,-0.008333333333370,0.000000000000014,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448291,0.008333333333369,-0.000000000000027,2 -400,405,407,412,-0.586206896551699,-0.612499999999978,-0.579310344827560,-0.616666666666674,-0.579310344827540,-0.608333333333283,-0.572413793103401,-0.612499999999978,-0.008333333333391,0.000000000000014,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448305,0.008333333333391,-0.000000000000028,2 -401,406,413,4331,-0.586206896551685,-0.604166666666641,-0.579310344827540,-0.608333333333283,-0.572413793103374,-0.604166666666641,-0.579310344827519,-0.600000000000000,-0.008333333333283,0.000000000000014,-0.000000000000000,-0.013793103448305,0.008333333333283,-0.000000000000027,-0.000000000000000,0.013793103448318,2 -402,409,414,11869,-0.572413793103511,-0.645833333333359,-0.565517241379372,-0.641666666666717,-0.558620689655267,-0.645833333333359,-0.565517241379406,-0.650000000000000,-0.008333333333283,0.000000000000028,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000039,-0.000000000000000,-0.013793103448238,1 -403,408,410,415,-0.572413793103483,-0.637500000000022,-0.565517241379372,-0.641666666666717,-0.565517241379339,-0.633333333333326,-0.558620689655228,-0.637500000000022,-0.008333333333391,0.000000000000027,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000039,2 -404,409,411,416,-0.572413793103456,-0.629166666666685,-0.565517241379339,-0.633333333333326,-0.565517241379306,-0.625000000000043,-0.558620689655189,-0.629166666666685,-0.008333333333283,0.000000000000027,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000039,2 -405,410,412,417,-0.572413793103429,-0.620833333333359,-0.565517241379306,-0.625000000000043,-0.565517241379272,-0.616666666666674,-0.558620689655149,-0.620833333333359,-0.008333333333369,0.000000000000027,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448286,0.008333333333369,-0.000000000000040,2 -406,411,413,418,-0.572413793103401,-0.612499999999978,-0.565517241379272,-0.616666666666674,-0.565517241379239,-0.608333333333283,-0.558620689655110,-0.612499999999978,-0.008333333333391,0.000000000000028,0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000039,2 -407,412,419,4317,-0.572413793103374,-0.604166666666641,-0.565517241379239,-0.608333333333283,-0.558620689655071,-0.604166666666641,-0.565517241379205,-0.600000000000000,-0.008333333333283,0.000000000000027,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000039,-0.000000000000000,0.013793103448309,2 -408,415,420,11869,-0.558620689655267,-0.645833333333359,-0.551724137931123,-0.641666666666717,-0.544827586207024,-0.645833333333359,-0.551724137931168,-0.650000000000000,-0.008333333333283,0.000000000000039,0.000000000000000,0.013793103448248,0.008333333333283,-0.000000000000050,-0.000000000000000,-0.013793103448238,1 -409,414,416,421,-0.558620689655228,-0.637500000000022,-0.551724137931123,-0.641666666666717,-0.551724137931079,-0.633333333333326,-0.544827586206974,-0.637500000000022,-0.008333333333391,0.000000000000039,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448259,0.008333333333391,-0.000000000000050,2 -410,415,417,422,-0.558620689655189,-0.629166666666685,-0.551724137931079,-0.633333333333326,-0.551724137931034,-0.625000000000043,-0.544827586206924,-0.629166666666685,-0.008333333333283,0.000000000000039,0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448270,0.008333333333283,-0.000000000000050,2 -411,416,418,423,-0.558620689655149,-0.620833333333359,-0.551724137931034,-0.625000000000043,-0.551724137930989,-0.616666666666674,-0.544827586206874,-0.620833333333359,-0.008333333333369,0.000000000000040,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448280,0.008333333333369,-0.000000000000050,2 -412,417,419,424,-0.558620689655110,-0.612499999999978,-0.551724137930989,-0.616666666666674,-0.551724137930945,-0.608333333333283,-0.544827586206824,-0.612499999999978,-0.008333333333391,0.000000000000039,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448291,0.008333333333391,-0.000000000000050,2 -413,418,425,4303,-0.558620689655071,-0.604166666666641,-0.551724137930945,-0.608333333333283,-0.544827586206774,-0.604166666666641,-0.551724137930900,-0.600000000000000,-0.008333333333283,0.000000000000039,-0.000000000000000,-0.013793103448291,0.008333333333283,-0.000000000000050,-0.000000000000000,0.013793103448302,2 -414,421,426,11869,-0.544827586207024,-0.645833333333359,-0.537931034482875,-0.641666666666717,-0.531034482758782,-0.645833333333359,-0.537931034482930,-0.650000000000000,-0.008333333333283,0.000000000000050,0.000000000000000,0.013793103448247,0.008333333333283,-0.000000000000060,-0.000000000000000,-0.013793103448238,1 -415,420,422,427,-0.544827586206974,-0.637500000000022,-0.537931034482875,-0.641666666666717,-0.537931034482820,-0.633333333333326,-0.531034482758722,-0.637500000000022,-0.008333333333391,0.000000000000050,-0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448257,0.008333333333391,-0.000000000000060,2 -416,421,423,428,-0.544827586206924,-0.629166666666685,-0.537931034482820,-0.633333333333326,-0.537931034482766,-0.625000000000044,-0.531034482758662,-0.629166666666685,-0.008333333333283,0.000000000000050,-0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448267,0.008333333333283,-0.000000000000060,2 -417,422,424,429,-0.544827586206874,-0.620833333333359,-0.537931034482766,-0.625000000000044,-0.537931034482711,-0.616666666666674,-0.531034482758602,-0.620833333333359,-0.008333333333369,0.000000000000050,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000060,2 -418,423,425,430,-0.544827586206824,-0.612499999999978,-0.537931034482711,-0.616666666666674,-0.537931034482656,-0.608333333333283,-0.531034482758542,-0.612499999999978,-0.008333333333391,0.000000000000050,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448287,0.008333333333391,-0.000000000000060,2 -419,424,431,4289,-0.544827586206774,-0.604166666666641,-0.537931034482656,-0.608333333333283,-0.531034482758483,-0.604166666666641,-0.537931034482601,-0.600000000000000,-0.008333333333283,0.000000000000050,-0.000000000000000,-0.013793103448287,0.008333333333283,-0.000000000000060,-0.000000000000000,0.013793103448296,2 -420,427,432,11869,-0.531034482758782,-0.645833333333359,-0.524137931034627,-0.641666666666717,-0.517241379310538,-0.645833333333359,-0.524137931034693,-0.650000000000000,-0.008333333333283,0.000000000000060,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000071,-0.000000000000000,-0.013793103448238,1 -421,426,428,433,-0.531034482758722,-0.637500000000022,-0.524137931034627,-0.641666666666717,-0.524137931034561,-0.633333333333326,-0.517241379310467,-0.637500000000022,-0.008333333333391,0.000000000000060,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000071,2 -422,427,429,434,-0.531034482758662,-0.629166666666685,-0.524137931034561,-0.633333333333326,-0.524137931034496,-0.625000000000043,-0.517241379310395,-0.629166666666685,-0.008333333333283,0.000000000000060,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000071,2 -423,428,430,435,-0.531034482758602,-0.620833333333359,-0.524137931034496,-0.625000000000043,-0.524137931034430,-0.616666666666674,-0.517241379310324,-0.620833333333359,-0.008333333333369,0.000000000000060,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448284,0.008333333333369,-0.000000000000071,2 -424,429,431,436,-0.531034482758542,-0.612499999999978,-0.524137931034430,-0.616666666666674,-0.524137931034365,-0.608333333333283,-0.517241379310252,-0.612499999999978,-0.008333333333391,0.000000000000060,0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448296,0.008333333333391,-0.000000000000071,2 -425,430,437,4275,-0.531034482758483,-0.604166666666641,-0.524137931034365,-0.608333333333283,-0.517241379310181,-0.604166666666641,-0.524137931034299,-0.600000000000000,-0.008333333333283,0.000000000000060,-0.000000000000000,-0.013793103448296,0.008333333333283,-0.000000000000071,-0.000000000000000,0.013793103448308,2 -426,433,438,11869,-0.517241379310538,-0.645833333333359,-0.510344827586377,-0.641666666666717,-0.503448275862294,-0.645833333333359,-0.510344827586455,-0.650000000000000,-0.008333333333283,0.000000000000071,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000084,-0.000000000000000,-0.013793103448238,1 -427,432,434,439,-0.517241379310467,-0.637500000000022,-0.510344827586377,-0.641666666666717,-0.510344827586300,-0.633333333333326,-0.503448275862211,-0.637500000000022,-0.008333333333391,0.000000000000071,-0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000084,2 -428,433,435,440,-0.517241379310395,-0.629166666666685,-0.510344827586300,-0.633333333333326,-0.510344827586222,-0.625000000000043,-0.503448275862127,-0.629166666666685,-0.008333333333283,0.000000000000071,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448275,0.008333333333283,-0.000000000000084,2 -429,434,436,441,-0.517241379310324,-0.620833333333359,-0.510344827586222,-0.625000000000043,-0.510344827586145,-0.616666666666674,-0.503448275862043,-0.620833333333359,-0.008333333333369,0.000000000000071,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448287,0.008333333333369,-0.000000000000084,2 -430,435,437,442,-0.517241379310252,-0.612499999999978,-0.510344827586145,-0.616666666666674,-0.510344827586067,-0.608333333333283,-0.503448275861959,-0.612499999999978,-0.008333333333391,0.000000000000071,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000083,2 -431,436,443,4261,-0.517241379310181,-0.604166666666641,-0.510344827586067,-0.608333333333283,-0.503448275861876,-0.604166666666641,-0.510344827585989,-0.600000000000000,-0.008333333333283,0.000000000000071,-0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000084,-0.000000000000000,0.013793103448311,2 -432,439,444,11869,-0.503448275862294,-0.645833333333359,-0.496551724138125,-0.641666666666717,-0.489655172414048,-0.645833333333359,-0.496551724138217,-0.650000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,0.013793103448254,0.008333333333283,-0.000000000000100,-0.000000000000000,-0.013793103448238,1 -433,438,440,445,-0.503448275862211,-0.637500000000022,-0.496551724138125,-0.641666666666717,-0.496551724138033,-0.633333333333326,-0.489655172413948,-0.637500000000022,-0.008333333333391,0.000000000000084,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448271,0.008333333333391,-0.000000000000100,2 -434,439,441,446,-0.503448275862127,-0.629166666666685,-0.496551724138033,-0.633333333333326,-0.496551724137942,-0.625000000000043,-0.489655172413848,-0.629166666666685,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448287,0.008333333333283,-0.000000000000100,2 -435,440,442,447,-0.503448275862043,-0.620833333333359,-0.496551724137942,-0.625000000000043,-0.496551724137850,-0.616666666666674,-0.489655172413748,-0.620833333333359,-0.008333333333369,0.000000000000084,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448303,0.008333333333369,-0.000000000000100,2 -436,441,443,448,-0.503448275861959,-0.612499999999978,-0.496551724137850,-0.616666666666674,-0.496551724137758,-0.608333333333283,-0.489655172413648,-0.612499999999978,-0.008333333333391,0.000000000000083,-0.000000000000000,-0.013793103448303,0.000000000000000,0.013793103448320,0.008333333333391,-0.000000000000100,2 -437,442,449,4247,-0.503448275861876,-0.604166666666641,-0.496551724137758,-0.608333333333283,-0.489655172413548,-0.604166666666641,-0.496551724137666,-0.600000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448320,0.008333333333283,-0.000000000000100,-0.000000000000000,0.013793103448336,2 -438,445,450,11869,-0.489655172414048,-0.645833333333359,-0.482758620689873,-0.641666666666717,-0.475862068965804,-0.645833333333359,-0.482758620689980,-0.650000000000000,-0.008333333333283,0.000000000000100,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000113,-0.000000000000000,-0.013793103448238,1 -439,444,446,451,-0.489655172413948,-0.637500000000022,-0.482758620689873,-0.641666666666717,-0.482758620689767,-0.633333333333326,-0.475862068965692,-0.637500000000022,-0.008333333333391,0.000000000000100,-0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000113,2 -440,445,447,452,-0.489655172413848,-0.629166666666685,-0.482758620689767,-0.633333333333326,-0.482758620689661,-0.625000000000043,-0.475862068965579,-0.629166666666685,-0.008333333333283,0.000000000000100,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448275,0.008333333333283,-0.000000000000112,2 -441,446,448,453,-0.489655172413748,-0.620833333333359,-0.482758620689661,-0.625000000000043,-0.482758620689554,-0.616666666666674,-0.475862068965467,-0.620833333333359,-0.008333333333369,0.000000000000100,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448288,0.008333333333369,-0.000000000000113,2 -442,447,449,454,-0.489655172413648,-0.612499999999978,-0.482758620689554,-0.616666666666674,-0.482758620689448,-0.608333333333283,-0.475862068965354,-0.612499999999978,-0.008333333333391,0.000000000000100,-0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448300,0.008333333333391,-0.000000000000113,2 -443,448,455,4233,-0.489655172413548,-0.604166666666641,-0.482758620689448,-0.608333333333283,-0.475862068965242,-0.604166666666641,-0.482758620689341,-0.600000000000000,-0.008333333333283,0.000000000000100,-0.000000000000000,-0.013793103448300,0.008333333333283,-0.000000000000113,-0.000000000000000,0.013793103448313,2 -444,451,456,11869,-0.475862068965804,-0.645833333333359,-0.468965517241623,-0.641666666666717,-0.462068965517561,-0.645833333333359,-0.468965517241742,-0.650000000000000,-0.008333333333283,0.000000000000113,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000125,-0.000000000000000,-0.013793103448238,1 -445,450,452,457,-0.475862068965692,-0.637500000000022,-0.468965517241623,-0.641666666666717,-0.468965517241505,-0.633333333333326,-0.462068965517436,-0.637500000000022,-0.008333333333391,0.000000000000113,-0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000125,2 -446,451,453,458,-0.475862068965579,-0.629166666666685,-0.468965517241505,-0.633333333333326,-0.468965517241386,-0.625000000000043,-0.462068965517312,-0.629166666666685,-0.008333333333283,0.000000000000112,-0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000124,2 -447,452,454,459,-0.475862068965467,-0.620833333333359,-0.468965517241386,-0.625000000000043,-0.468965517241268,-0.616666666666674,-0.462068965517187,-0.620833333333359,-0.008333333333369,0.000000000000113,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448285,0.008333333333369,-0.000000000000124,2 -448,453,455,460,-0.475862068965354,-0.612499999999978,-0.468965517241268,-0.616666666666674,-0.468965517241149,-0.608333333333283,-0.462068965517063,-0.612499999999978,-0.008333333333391,0.000000000000113,0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000125,2 -449,454,461,4219,-0.475862068965242,-0.604166666666641,-0.468965517241149,-0.608333333333283,-0.462068965516938,-0.604166666666641,-0.468965517241031,-0.600000000000000,-0.008333333333283,0.000000000000113,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000124,-0.000000000000000,0.013793103448309,2 -450,457,462,11869,-0.462068965517561,-0.645833333333359,-0.455172413793374,-0.641666666666717,-0.448275862069317,-0.645833333333359,-0.455172413793504,-0.650000000000000,-0.008333333333283,0.000000000000125,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000136,-0.000000000000000,-0.013793103448238,1 -451,456,458,463,-0.462068965517436,-0.637500000000022,-0.455172413793374,-0.641666666666717,-0.455172413793243,-0.633333333333326,-0.448275862069181,-0.637500000000022,-0.008333333333391,0.000000000000125,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000137,2 -452,457,459,464,-0.462068965517312,-0.629166666666685,-0.455172413793243,-0.633333333333326,-0.455172413793113,-0.625000000000043,-0.448275862069044,-0.629166666666685,-0.008333333333283,0.000000000000124,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000136,2 -453,458,460,465,-0.462068965517187,-0.620833333333359,-0.455172413793113,-0.625000000000043,-0.455172413792982,-0.616666666666674,-0.448275862068908,-0.620833333333359,-0.008333333333369,0.000000000000124,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448285,0.008333333333369,-0.000000000000136,2 -454,459,461,466,-0.462068965517063,-0.612499999999978,-0.455172413792982,-0.616666666666674,-0.455172413792852,-0.608333333333283,-0.448275862068772,-0.612499999999978,-0.008333333333391,0.000000000000125,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000137,2 -455,460,467,4205,-0.462068965516938,-0.604166666666641,-0.455172413792852,-0.608333333333283,-0.448275862068635,-0.604166666666641,-0.455172413792722,-0.600000000000000,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000136,-0.000000000000000,0.013793103448309,2 -456,463,468,11869,-0.448275862069317,-0.645833333333359,-0.441379310345124,-0.641666666666717,-0.434482758621073,-0.645833333333359,-0.441379310345266,-0.650000000000000,-0.008333333333283,0.000000000000136,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000148,-0.000000000000000,-0.013793103448238,1 -457,462,464,469,-0.448275862069181,-0.637500000000022,-0.441379310345124,-0.641666666666717,-0.441379310344982,-0.633333333333326,-0.434482758620925,-0.637500000000022,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000148,2 -458,463,465,470,-0.448275862069044,-0.629166666666685,-0.441379310344982,-0.633333333333326,-0.441379310344839,-0.625000000000043,-0.434482758620777,-0.629166666666685,-0.008333333333283,0.000000000000136,0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000148,2 -459,464,466,471,-0.448275862068908,-0.620833333333359,-0.441379310344839,-0.625000000000043,-0.441379310344697,-0.616666666666674,-0.434482758620628,-0.620833333333359,-0.008333333333369,0.000000000000136,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448285,0.008333333333369,-0.000000000000148,2 -460,465,467,472,-0.448275862068772,-0.612499999999978,-0.441379310344697,-0.616666666666674,-0.441379310344555,-0.608333333333283,-0.434482758620480,-0.612499999999979,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000148,2 -461,466,473,4191,-0.448275862068635,-0.604166666666641,-0.441379310344555,-0.608333333333283,-0.434482758620332,-0.604166666666641,-0.441379310344412,-0.600000000000000,-0.008333333333283,0.000000000000136,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000148,-0.000000000000000,0.013793103448310,2 -462,469,474,11869,-0.434482758621073,-0.645833333333359,-0.427586206896874,-0.641666666666717,-0.420689655172829,-0.645833333333359,-0.427586206897029,-0.650000000000000,-0.008333333333283,0.000000000000148,-0.000000000000000,0.013793103448251,0.008333333333283,-0.000000000000161,-0.000000000000000,-0.013793103448238,1 -463,468,470,475,-0.434482758620925,-0.637500000000022,-0.427586206896874,-0.641666666666717,-0.427586206896719,-0.633333333333326,-0.420689655172668,-0.637500000000022,-0.008333333333391,0.000000000000148,0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448264,0.008333333333391,-0.000000000000161,2 -464,469,471,476,-0.434482758620777,-0.629166666666685,-0.427586206896719,-0.633333333333326,-0.427586206896564,-0.625000000000044,-0.420689655172507,-0.629166666666685,-0.008333333333283,0.000000000000148,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448277,0.008333333333283,-0.000000000000161,2 -465,470,472,477,-0.434482758620628,-0.620833333333359,-0.427586206896564,-0.625000000000044,-0.427586206896409,-0.616666666666674,-0.420689655172345,-0.620833333333359,-0.008333333333369,0.000000000000148,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448290,0.008333333333369,-0.000000000000161,2 -466,471,473,478,-0.434482758620480,-0.612499999999979,-0.427586206896409,-0.616666666666674,-0.427586206896255,-0.608333333333283,-0.420689655172184,-0.612499999999978,-0.008333333333391,0.000000000000148,0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448303,0.008333333333391,-0.000000000000161,2 -467,472,479,4177,-0.434482758620332,-0.604166666666641,-0.427586206896255,-0.608333333333283,-0.420689655172023,-0.604166666666641,-0.427586206896100,-0.600000000000000,-0.008333333333283,0.000000000000148,-0.000000000000000,-0.013793103448303,0.008333333333283,-0.000000000000161,-0.000000000000000,0.013793103448315,2 -468,475,480,11869,-0.420689655172829,-0.645833333333359,-0.413793103448623,-0.641666666666717,-0.406896551724585,-0.645833333333359,-0.413793103448791,-0.650000000000000,-0.008333333333283,0.000000000000161,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000174,-0.000000000000000,-0.013793103448238,1 -469,474,476,481,-0.420689655172668,-0.637500000000022,-0.413793103448623,-0.641666666666717,-0.413793103448456,-0.633333333333326,-0.406896551724411,-0.637500000000022,-0.008333333333391,0.000000000000161,-0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000174,2 -470,475,477,482,-0.420689655172507,-0.629166666666685,-0.413793103448456,-0.633333333333326,-0.413793103448288,-0.625000000000044,-0.406896551724237,-0.629166666666685,-0.008333333333283,0.000000000000161,-0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448275,0.008333333333283,-0.000000000000174,2 -471,476,478,483,-0.420689655172345,-0.620833333333359,-0.413793103448288,-0.625000000000044,-0.413793103448121,-0.616666666666674,-0.406896551724064,-0.620833333333359,-0.008333333333369,0.000000000000161,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448288,0.008333333333370,-0.000000000000174,2 -472,477,479,484,-0.420689655172184,-0.612499999999978,-0.413793103448121,-0.616666666666674,-0.413793103447953,-0.608333333333283,-0.406896551723890,-0.612499999999978,-0.008333333333391,0.000000000000161,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000174,2 -473,478,485,4163,-0.420689655172023,-0.604166666666641,-0.413793103447953,-0.608333333333283,-0.406896551723716,-0.604166666666641,-0.413793103447786,-0.600000000000000,-0.008333333333283,0.000000000000161,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000174,-0.000000000000000,0.013793103448313,2 -474,481,486,11869,-0.406896551724585,-0.645833333333359,-0.400000000000365,-0.641666666666717,-0.393103448276320,-0.645833333333359,-0.400000000000540,-0.650000000000000,-0.008333333333283,0.000000000000174,0.000000000000000,0.013793103448267,0.008333333333283,-0.000000000000177,-0.000000000000000,-0.013793103448264,1 -475,480,482,487,-0.406896551724411,-0.637500000000022,-0.400000000000365,-0.641666666666717,-0.400000000000189,-0.633333333333326,-0.393103448276143,-0.637500000000022,-0.008333333333391,0.000000000000174,-0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448270,0.008333333333391,-0.000000000000177,2 -476,481,483,488,-0.406896551724237,-0.629166666666685,-0.400000000000189,-0.633333333333326,-0.400000000000014,-0.625000000000043,-0.393103448275966,-0.629166666666685,-0.008333333333283,0.000000000000174,0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000177,2 -477,482,484,489,-0.406896551724064,-0.620833333333359,-0.400000000000014,-0.625000000000043,-0.399999999999838,-0.616666666666674,-0.393103448275789,-0.620833333333359,-0.008333333333370,0.000000000000174,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000177,2 -478,483,485,490,-0.406896551723890,-0.612499999999978,-0.399999999999838,-0.616666666666674,-0.399999999999663,-0.608333333333283,-0.393103448275612,-0.612499999999978,-0.008333333333391,0.000000000000174,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448280,0.008333333333391,-0.000000000000177,2 -479,484,491,4149,-0.406896551723716,-0.604166666666641,-0.399999999999663,-0.608333333333283,-0.393103448275434,-0.604166666666641,-0.399999999999487,-0.600000000000000,-0.008333333333283,0.000000000000174,-0.000000000000000,-0.013793103448280,0.008333333333283,-0.000000000000177,-0.000000000000000,0.013793103448283,2 -480,487,492,11869,-0.393103448276320,-0.645833333333359,-0.386206896552082,-0.641666666666717,-0.379310344828014,-0.645833333333359,-0.386206896552252,-0.650000000000000,-0.008333333333283,0.000000000000177,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000164,-0.000000000000000,-0.013793103448312,1 -481,486,488,493,-0.393103448276143,-0.637500000000022,-0.386206896552082,-0.641666666666717,-0.386206896551911,-0.633333333333326,-0.379310344827850,-0.637500000000022,-0.008333333333391,0.000000000000177,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000164,2 -482,487,489,494,-0.393103448275966,-0.629166666666685,-0.386206896551911,-0.633333333333326,-0.386206896551740,-0.625000000000043,-0.379310344827686,-0.629166666666685,-0.008333333333283,0.000000000000177,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000164,2 -483,488,490,495,-0.393103448275789,-0.620833333333359,-0.386206896551740,-0.625000000000043,-0.386206896551570,-0.616666666666674,-0.379310344827521,-0.620833333333359,-0.008333333333369,0.000000000000177,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448261,0.008333333333369,-0.000000000000164,2 -484,489,491,496,-0.393103448275612,-0.612499999999978,-0.386206896551570,-0.616666666666674,-0.386206896551399,-0.608333333333283,-0.379310344827357,-0.612499999999978,-0.008333333333391,0.000000000000177,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000164,2 -485,490,497,4135,-0.393103448275434,-0.604166666666641,-0.386206896551399,-0.608333333333283,-0.379310344827193,-0.604166666666641,-0.386206896551228,-0.600000000000000,-0.008333333333283,0.000000000000177,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000164,-0.000000000000000,0.013793103448235,2 -486,493,498,11869,-0.379310344828014,-0.645833333333359,-0.372413793103778,-0.641666666666717,-0.365517241379699,-0.645833333333359,-0.372413793103935,-0.650000000000000,-0.008333333333283,0.000000000000164,0.000000000000000,0.013793103448308,0.008333333333283,-0.000000000000150,-0.000000000000000,-0.013793103448323,1 -487,492,494,499,-0.379310344827850,-0.637500000000022,-0.372413793103778,-0.641666666666717,-0.372413793103621,-0.633333333333326,-0.365517241379549,-0.637500000000022,-0.008333333333391,0.000000000000164,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448294,0.008333333333391,-0.000000000000150,2 -488,493,495,500,-0.379310344827686,-0.629166666666685,-0.372413793103621,-0.633333333333326,-0.372413793103464,-0.625000000000043,-0.365517241379400,-0.629166666666685,-0.008333333333283,0.000000000000164,0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448279,0.008333333333283,-0.000000000000150,2 -489,494,496,501,-0.379310344827521,-0.620833333333359,-0.372413793103464,-0.625000000000043,-0.372413793103307,-0.616666666666674,-0.365517241379250,-0.620833333333359,-0.008333333333369,0.000000000000164,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448264,0.008333333333369,-0.000000000000150,2 -490,495,497,502,-0.379310344827357,-0.612499999999978,-0.372413793103307,-0.616666666666674,-0.372413793103150,-0.608333333333283,-0.365517241379100,-0.612499999999978,-0.008333333333391,0.000000000000164,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000150,2 -491,496,503,4121,-0.379310344827193,-0.604166666666641,-0.372413793103150,-0.608333333333283,-0.365517241378951,-0.604166666666641,-0.372413793102993,-0.600000000000000,-0.008333333333283,0.000000000000164,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000150,-0.000000000000000,0.013793103448235,2 -492,499,504,11869,-0.365517241379699,-0.645833333333359,-0.358620689655475,-0.641666666666717,-0.351724137931394,-0.645833333333359,-0.358620689655618,-0.650000000000000,-0.008333333333283,0.000000000000150,-0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000137,-0.000000000000000,-0.013793103448312,1 -493,498,500,505,-0.365517241379549,-0.637500000000022,-0.358620689655475,-0.641666666666717,-0.358620689655331,-0.633333333333326,-0.351724137931257,-0.637500000000022,-0.008333333333391,0.000000000000150,0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000137,2 -494,499,501,506,-0.365517241379400,-0.629166666666685,-0.358620689655331,-0.633333333333326,-0.358620689655188,-0.625000000000043,-0.351724137931120,-0.629166666666685,-0.008333333333283,0.000000000000150,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000137,2 -495,500,502,507,-0.365517241379250,-0.620833333333359,-0.358620689655188,-0.625000000000043,-0.358620689655045,-0.616666666666674,-0.351724137930983,-0.620833333333359,-0.008333333333369,0.000000000000150,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448261,0.008333333333369,-0.000000000000137,2 -496,501,503,508,-0.365517241379100,-0.612499999999978,-0.358620689655045,-0.616666666666674,-0.358620689654901,-0.608333333333283,-0.351724137930846,-0.612499999999978,-0.008333333333391,0.000000000000150,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000137,2 -497,502,509,4107,-0.365517241378951,-0.604166666666641,-0.358620689654901,-0.608333333333283,-0.351724137930709,-0.604166666666641,-0.358620689654758,-0.600000000000000,-0.008333333333283,0.000000000000150,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000137,-0.000000000000000,0.013793103448235,2 -498,505,510,11869,-0.351724137931394,-0.645833333333359,-0.344827586207176,-0.641666666666717,-0.337931034483088,-0.645833333333359,-0.344827586207306,-0.650000000000000,-0.008333333333283,0.000000000000137,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000124,-0.000000000000000,-0.013793103448312,1 -499,504,506,511,-0.351724137931257,-0.637500000000022,-0.344827586207176,-0.641666666666717,-0.344827586207045,-0.633333333333326,-0.337931034482964,-0.637500000000022,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000124,2 -500,505,507,512,-0.351724137931120,-0.629166666666685,-0.344827586207045,-0.633333333333326,-0.344827586206915,-0.625000000000043,-0.337931034482840,-0.629166666666685,-0.008333333333283,0.000000000000137,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000124,2 -501,506,508,513,-0.351724137930983,-0.620833333333359,-0.344827586206915,-0.625000000000043,-0.344827586206784,-0.616666666666674,-0.337931034482716,-0.620833333333359,-0.008333333333369,0.000000000000137,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333369,-0.000000000000124,2 -502,507,509,514,-0.351724137930846,-0.612499999999978,-0.344827586206784,-0.616666666666674,-0.344827586206653,-0.608333333333283,-0.337931034482592,-0.612499999999978,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000124,2 -503,508,515,4093,-0.351724137930709,-0.604166666666641,-0.344827586206653,-0.608333333333283,-0.337931034482468,-0.604166666666641,-0.344827586206523,-0.600000000000000,-0.008333333333283,0.000000000000137,0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000124,-0.000000000000000,0.013793103448235,2 -504,511,516,11869,-0.337931034483088,-0.645833333333359,-0.331034482758877,-0.641666666666717,-0.324137931034783,-0.645833333333359,-0.331034482758994,-0.650000000000000,-0.008333333333283,0.000000000000124,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000111,-0.000000000000000,-0.013793103448312,1 -505,510,512,517,-0.337931034482964,-0.637500000000022,-0.331034482758877,-0.641666666666717,-0.331034482758759,-0.633333333333326,-0.324137931034671,-0.637500000000022,-0.008333333333391,0.000000000000124,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000111,2 -506,511,513,518,-0.337931034482840,-0.629166666666685,-0.331034482758759,-0.633333333333326,-0.331034482758641,-0.625000000000043,-0.324137931034560,-0.629166666666685,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000111,2 -507,512,514,519,-0.337931034482716,-0.620833333333359,-0.331034482758641,-0.625000000000043,-0.331034482758523,-0.616666666666674,-0.324137931034449,-0.620833333333359,-0.008333333333369,0.000000000000124,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448261,0.008333333333369,-0.000000000000111,2 -508,513,515,520,-0.337931034482592,-0.612499999999978,-0.331034482758523,-0.616666666666674,-0.331034482758406,-0.608333333333283,-0.324137931034337,-0.612499999999978,-0.008333333333391,0.000000000000124,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000111,2 -509,514,521,4079,-0.337931034482468,-0.604166666666641,-0.331034482758406,-0.608333333333283,-0.324137931034226,-0.604166666666641,-0.331034482758288,-0.600000000000000,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000111,-0.000000000000000,0.013793103448235,2 -510,517,522,11869,-0.324137931034783,-0.645833333333359,-0.317241379310576,-0.641666666666717,-0.310344827586474,-0.645833333333359,-0.317241379310681,-0.650000000000000,-0.008333333333283,0.000000000000111,0.000000000000000,0.013793103448302,0.008333333333283,-0.000000000000098,-0.000000000000000,-0.013793103448315,1 -511,516,518,523,-0.324137931034671,-0.637500000000022,-0.317241379310576,-0.641666666666717,-0.317241379310472,-0.633333333333326,-0.310344827586376,-0.637500000000022,-0.008333333333391,0.000000000000111,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448288,0.008333333333391,-0.000000000000098,2 -512,517,519,524,-0.324137931034560,-0.629166666666685,-0.317241379310472,-0.633333333333326,-0.317241379310367,-0.625000000000043,-0.310344827586278,-0.629166666666685,-0.008333333333283,0.000000000000111,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448275,0.008333333333283,-0.000000000000098,2 -513,518,520,525,-0.324137931034449,-0.620833333333359,-0.317241379310367,-0.625000000000043,-0.317241379310262,-0.616666666666674,-0.310344827586180,-0.620833333333359,-0.008333333333369,0.000000000000111,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448262,0.008333333333369,-0.000000000000098,2 -514,519,521,526,-0.324137931034337,-0.612499999999978,-0.317241379310262,-0.616666666666674,-0.317241379310158,-0.608333333333283,-0.310344827586082,-0.612499999999978,-0.008333333333391,0.000000000000111,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000098,2 -515,520,527,4065,-0.324137931034226,-0.604166666666641,-0.317241379310158,-0.608333333333283,-0.310344827585984,-0.604166666666641,-0.317241379310053,-0.600000000000000,-0.008333333333283,0.000000000000111,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000098,-0.000000000000000,0.013793103448235,2 -516,523,528,11869,-0.310344827586474,-0.645833333333359,-0.303448275862273,-0.641666666666717,-0.296551724138163,-0.645833333333359,-0.303448275862364,-0.650000000000000,-0.008333333333283,0.000000000000098,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000084,-0.000000000000000,-0.013793103448318,1 -517,522,524,529,-0.310344827586376,-0.637500000000022,-0.303448275862273,-0.641666666666717,-0.303448275862182,-0.633333333333326,-0.296551724138079,-0.637500000000022,-0.008333333333391,0.000000000000098,-0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448291,0.008333333333391,-0.000000000000084,2 -518,523,525,530,-0.310344827586278,-0.629166666666685,-0.303448275862182,-0.633333333333326,-0.303448275862091,-0.625000000000043,-0.296551724137995,-0.629166666666685,-0.008333333333283,0.000000000000098,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448277,0.008333333333283,-0.000000000000084,2 -519,524,526,531,-0.310344827586180,-0.620833333333359,-0.303448275862091,-0.625000000000043,-0.303448275862000,-0.616666666666674,-0.296551724137911,-0.620833333333359,-0.008333333333369,0.000000000000098,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448263,0.008333333333369,-0.000000000000084,2 -520,525,527,532,-0.310344827586082,-0.612499999999978,-0.303448275862000,-0.616666666666674,-0.303448275861909,-0.608333333333283,-0.296551724137826,-0.612499999999978,-0.008333333333391,0.000000000000098,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000084,2 -521,526,533,4051,-0.310344827585984,-0.604166666666641,-0.303448275861909,-0.608333333333283,-0.296551724137742,-0.604166666666641,-0.303448275861818,-0.600000000000000,-0.008333333333283,0.000000000000098,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000084,-0.000000000000000,0.013793103448235,2 -522,529,534,11869,-0.296551724138163,-0.645833333333359,-0.289655172413969,-0.641666666666717,-0.282758620689852,-0.645833333333359,-0.289655172414046,-0.650000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000070,-0.000000000000000,-0.013793103448318,1 -523,528,530,535,-0.296551724138079,-0.637500000000022,-0.289655172413969,-0.641666666666717,-0.289655172413892,-0.633333333333326,-0.282758620689782,-0.637500000000022,-0.008333333333391,0.000000000000084,0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448290,0.008333333333391,-0.000000000000070,2 -524,529,531,536,-0.296551724137995,-0.629166666666685,-0.289655172413892,-0.633333333333326,-0.289655172413814,-0.625000000000043,-0.282758620689711,-0.629166666666685,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448277,0.008333333333283,-0.000000000000070,2 -525,530,532,537,-0.296551724137911,-0.620833333333359,-0.289655172413814,-0.625000000000043,-0.289655172413737,-0.616666666666674,-0.282758620689641,-0.620833333333359,-0.008333333333369,0.000000000000084,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448263,0.008333333333369,-0.000000000000070,2 -526,531,533,538,-0.296551724137826,-0.612499999999978,-0.289655172413737,-0.616666666666674,-0.289655172413660,-0.608333333333283,-0.282758620689570,-0.612499999999978,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000070,2 -527,532,539,4037,-0.296551724137742,-0.604166666666641,-0.289655172413660,-0.608333333333283,-0.282758620689500,-0.604166666666641,-0.289655172413583,-0.600000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000070,-0.000000000000000,0.013793103448235,2 -528,535,540,11869,-0.282758620689852,-0.645833333333359,-0.275862068965665,-0.641666666666717,-0.268965517241541,-0.645833333333359,-0.275862068965729,-0.650000000000000,-0.008333333333283,0.000000000000070,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000057,-0.000000000000000,-0.013793103448317,1 -529,534,536,541,-0.282758620689782,-0.637500000000022,-0.275862068965665,-0.641666666666717,-0.275862068965601,-0.633333333333326,-0.268965517241485,-0.637500000000022,-0.008333333333391,0.000000000000070,-0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448290,0.008333333333391,-0.000000000000057,2 -530,535,537,542,-0.282758620689711,-0.629166666666685,-0.275862068965601,-0.633333333333326,-0.275862068965538,-0.625000000000043,-0.268965517241428,-0.629166666666685,-0.008333333333283,0.000000000000070,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448276,0.008333333333283,-0.000000000000057,2 -531,536,538,543,-0.282758620689641,-0.620833333333359,-0.275862068965538,-0.625000000000043,-0.275862068965474,-0.616666666666674,-0.268965517241372,-0.620833333333359,-0.008333333333369,0.000000000000070,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448263,0.008333333333370,-0.000000000000057,2 -532,537,539,544,-0.282758620689570,-0.612499999999978,-0.275862068965474,-0.616666666666674,-0.275862068965411,-0.608333333333283,-0.268965517241315,-0.612499999999978,-0.008333333333391,0.000000000000070,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000057,2 -533,538,545,4023,-0.282758620689500,-0.604166666666641,-0.275862068965411,-0.608333333333283,-0.268965517241258,-0.604166666666641,-0.275862068965347,-0.600000000000000,-0.008333333333283,0.000000000000070,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000057,-0.000000000000000,0.013793103448235,2 -534,541,546,11869,-0.268965517241541,-0.645833333333359,-0.262068965517364,-0.641666666666717,-0.255172413793236,-0.645833333333359,-0.262068965517414,-0.650000000000000,-0.008333333333283,0.000000000000057,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000044,-0.000000000000000,-0.013793103448312,1 -535,540,542,547,-0.268965517241485,-0.637500000000022,-0.262068965517364,-0.641666666666717,-0.262068965517313,-0.633333333333326,-0.255172413793192,-0.637500000000022,-0.008333333333391,0.000000000000057,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000044,2 -536,541,543,548,-0.268965517241428,-0.629166666666685,-0.262068965517313,-0.633333333333326,-0.262068965517263,-0.625000000000044,-0.255172413793148,-0.629166666666685,-0.008333333333283,0.000000000000057,0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000044,2 -537,542,544,549,-0.268965517241372,-0.620833333333359,-0.262068965517263,-0.625000000000044,-0.262068965517213,-0.616666666666674,-0.255172413793104,-0.620833333333359,-0.008333333333370,0.000000000000057,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333370,-0.000000000000044,2 -538,543,545,550,-0.268965517241315,-0.612499999999978,-0.262068965517213,-0.616666666666674,-0.262068965517163,-0.608333333333283,-0.255172413793061,-0.612499999999978,-0.008333333333391,0.000000000000057,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000044,2 -539,544,551,4009,-0.268965517241258,-0.604166666666641,-0.262068965517163,-0.608333333333283,-0.255172413793017,-0.604166666666641,-0.262068965517112,-0.600000000000000,-0.008333333333283,0.000000000000057,0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000044,-0.000000000000000,0.013793103448235,2 -540,547,552,11869,-0.255172413793236,-0.645833333333359,-0.248275862069064,-0.641666666666717,-0.241379310344930,-0.645833333333359,-0.248275862069102,-0.650000000000000,-0.008333333333283,0.000000000000044,-0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000033,-0.000000000000000,-0.013793103448312,1 -541,546,548,553,-0.255172413793192,-0.637500000000022,-0.248275862069064,-0.641666666666717,-0.248275862069025,-0.633333333333326,-0.241379310344897,-0.637500000000022,-0.008333333333391,0.000000000000044,0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448289,0.008333333333391,-0.000000000000033,2 -542,547,549,554,-0.255172413793148,-0.629166666666685,-0.248275862069025,-0.633333333333326,-0.248275862068987,-0.625000000000044,-0.241379310344864,-0.629166666666685,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448278,0.008333333333283,-0.000000000000033,2 -543,548,550,555,-0.255172413793104,-0.620833333333359,-0.248275862068987,-0.625000000000044,-0.248275862068949,-0.616666666666674,-0.241379310344832,-0.620833333333359,-0.008333333333370,0.000000000000044,-0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448267,0.008333333333370,-0.000000000000033,2 -544,549,551,556,-0.255172413793061,-0.612499999999978,-0.248275862068949,-0.616666666666674,-0.248275862068911,-0.608333333333283,-0.241379310344799,-0.612499999999978,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448256,0.008333333333391,-0.000000000000033,2 -545,550,557,3995,-0.255172413793017,-0.604166666666641,-0.248275862068911,-0.608333333333283,-0.241379310344766,-0.604166666666641,-0.248275862068872,-0.600000000000000,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448256,0.008333333333283,-0.000000000000033,-0.000000000000000,0.013793103448245,2 -546,553,558,11869,-0.241379310344930,-0.645833333333359,-0.234482758620762,-0.641666666666717,-0.227586206896623,-0.645833333333359,-0.234482758620790,-0.650000000000000,-0.008333333333283,0.000000000000033,0.000000000000000,0.013793103448302,0.008333333333283,-0.000000000000023,-0.000000000000000,-0.013793103448312,1 -547,552,554,559,-0.241379310344897,-0.637500000000022,-0.234482758620762,-0.641666666666717,-0.234482758620735,-0.633333333333326,-0.227586206896600,-0.637500000000022,-0.008333333333391,0.000000000000033,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448292,0.008333333333391,-0.000000000000023,2 -548,553,555,560,-0.241379310344864,-0.629166666666685,-0.234482758620735,-0.633333333333326,-0.234482758620707,-0.625000000000044,-0.227586206896577,-0.629166666666685,-0.008333333333283,0.000000000000033,-0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448283,0.008333333333283,-0.000000000000023,2 -549,554,556,561,-0.241379310344832,-0.620833333333359,-0.234482758620707,-0.625000000000044,-0.234482758620679,-0.616666666666674,-0.227586206896554,-0.620833333333359,-0.008333333333370,0.000000000000033,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448273,0.008333333333370,-0.000000000000023,2 -550,555,557,562,-0.241379310344799,-0.612499999999978,-0.234482758620679,-0.616666666666674,-0.234482758620651,-0.608333333333283,-0.227586206896531,-0.612499999999978,-0.008333333333391,0.000000000000033,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000023,2 -551,556,563,3981,-0.241379310344766,-0.604166666666641,-0.234482758620651,-0.608333333333283,-0.227586206896508,-0.604166666666641,-0.234482758620623,-0.600000000000000,-0.008333333333283,0.000000000000033,-0.000000000000000,-0.013793103448263,0.008333333333283,-0.000000000000023,-0.000000000000000,0.013793103448254,2 -552,559,564,11869,-0.227586206896623,-0.645833333333359,-0.220689655172459,-0.641666666666717,-0.213793103448313,-0.645833333333359,-0.220689655172476,-0.650000000000000,-0.008333333333283,0.000000000000023,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000011,-0.000000000000000,-0.013793103448316,1 -553,558,560,565,-0.227586206896600,-0.637500000000022,-0.220689655172459,-0.641666666666717,-0.220689655172442,-0.633333333333326,-0.213793103448302,-0.637500000000022,-0.008333333333391,0.000000000000023,-0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448292,0.008333333333391,-0.000000000000011,2 -554,559,561,566,-0.227586206896577,-0.629166666666685,-0.220689655172442,-0.633333333333326,-0.220689655172426,-0.625000000000044,-0.213793103448291,-0.629166666666685,-0.008333333333283,0.000000000000023,-0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448280,0.008333333333283,-0.000000000000011,2 -555,560,562,567,-0.227586206896554,-0.620833333333359,-0.220689655172426,-0.625000000000044,-0.220689655172409,-0.616666666666674,-0.213793103448280,-0.620833333333359,-0.008333333333370,0.000000000000023,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448267,0.008333333333370,-0.000000000000011,2 -556,561,563,568,-0.227586206896531,-0.612499999999978,-0.220689655172409,-0.616666666666674,-0.220689655172392,-0.608333333333283,-0.213793103448270,-0.612499999999978,-0.008333333333391,0.000000000000023,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448255,0.008333333333391,-0.000000000000011,2 -557,562,569,3967,-0.227586206896508,-0.604166666666641,-0.220689655172392,-0.608333333333283,-0.213793103448259,-0.604166666666641,-0.220689655172375,-0.600000000000000,-0.008333333333283,0.000000000000023,-0.000000000000000,-0.013793103448255,0.008333333333283,-0.000000000000011,-0.000000000000000,0.013793103448243,2 -558,565,570,11869,-0.213793103448313,-0.645833333333359,-0.206896551724154,-0.641666666666717,-0.200000000000000,-0.645833333333359,-0.206896551724159,-0.650000000000000,-0.008333333333283,0.000000000000011,-0.000000000000000,0.013793103448307,0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448318,1 -559,564,566,571,-0.213793103448302,-0.637500000000022,-0.206896551724154,-0.641666666666717,-0.206896551724148,-0.633333333333326,-0.200000000000000,-0.637500000000022,-0.008333333333391,0.000000000000011,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448297,0.008333333333391,0.000000000000000,2 -560,565,567,572,-0.213793103448291,-0.629166666666685,-0.206896551724148,-0.633333333333326,-0.206896551724143,-0.625000000000044,-0.200000000000000,-0.629166666666685,-0.008333333333283,0.000000000000011,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448286,0.008333333333283,0.000000000000000,2 -561,566,568,573,-0.213793103448280,-0.620833333333359,-0.206896551724143,-0.625000000000044,-0.206896551724138,-0.616666666666674,-0.200000000000000,-0.620833333333359,-0.008333333333370,0.000000000000011,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448275,0.008333333333369,0.000000000000000,2 -562,567,569,574,-0.213793103448270,-0.612499999999978,-0.206896551724138,-0.616666666666674,-0.206896551724132,-0.608333333333283,-0.200000000000000,-0.612499999999978,-0.008333333333391,0.000000000000011,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448264,0.008333333333391,0.000000000000000,2 -563,568,575,3953,-0.213793103448259,-0.604166666666641,-0.206896551724132,-0.608333333333283,-0.200000000000000,-0.604166666666641,-0.206896551724127,-0.600000000000000,-0.008333333333283,0.000000000000011,0.000000000000000,-0.013793103448264,0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448254,2 -564,571,576,11869,-0.200000000000000,-0.645833333333359,-0.193103448275876,-0.641666666666717,-0.186206896551752,-0.645833333333359,-0.193103448275876,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448248,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448248,1 -565,570,572,577,-0.200000000000000,-0.637500000000022,-0.193103448275876,-0.641666666666717,-0.193103448275876,-0.633333333333326,-0.186206896551753,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448247,0.008333333333391,0.000000000000000,2 -566,571,573,578,-0.200000000000000,-0.629166666666685,-0.193103448275876,-0.633333333333326,-0.193103448275876,-0.625000000000044,-0.186206896551753,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448248,0.008333333333283,-0.000000000000000,2 -567,572,574,579,-0.200000000000000,-0.620833333333359,-0.193103448275876,-0.625000000000044,-0.193103448275876,-0.616666666666674,-0.186206896551752,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.008333333333370,0.000000000000000,2 -568,573,575,580,-0.200000000000000,-0.612499999999978,-0.193103448275876,-0.616666666666674,-0.193103448275876,-0.608333333333283,-0.186206896551752,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.008333333333391,0.000000000000000,2 -569,574,581,4359,-0.200000000000000,-0.604166666666641,-0.193103448275876,-0.608333333333283,-0.186206896551752,-0.604166666666641,-0.193103448275876,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448248,2 -570,577,582,11869,-0.186206896551752,-0.645833333333359,-0.179310344827634,-0.641666666666717,-0.172413793103516,-0.645833333333359,-0.179310344827634,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,1 -571,576,578,583,-0.186206896551753,-0.637500000000022,-0.179310344827634,-0.641666666666717,-0.179310344827634,-0.633333333333326,-0.172413793103516,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -572,577,579,584,-0.186206896551753,-0.629166666666685,-0.179310344827634,-0.633333333333326,-0.179310344827634,-0.625000000000044,-0.172413793103516,-0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448236,0.008333333333283,0.000000000000000,2 -573,578,580,585,-0.186206896551752,-0.620833333333359,-0.179310344827634,-0.625000000000044,-0.179310344827634,-0.616666666666674,-0.172413793103516,-0.620833333333359,-0.008333333333370,-0.000000000000000,-0.000000000000000,-0.013793103448236,0.000000000000000,0.013793103448237,0.008333333333369,-0.000000000000000,2 -574,579,581,586,-0.186206896551752,-0.612499999999978,-0.179310344827634,-0.616666666666674,-0.179310344827634,-0.608333333333283,-0.172413793103516,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -575,580,587,4373,-0.186206896551752,-0.604166666666641,-0.179310344827634,-0.608333333333283,-0.172413793103516,-0.604166666666641,-0.179310344827634,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 -576,583,588,11869,-0.172413793103516,-0.645833333333359,-0.165517241379389,-0.641666666666717,-0.158620689655262,-0.645833333333359,-0.165517241379389,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448254,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448254,1 -577,582,584,589,-0.172413793103516,-0.637500000000022,-0.165517241379389,-0.641666666666717,-0.165517241379389,-0.633333333333326,-0.158620689655262,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333391,0.000000000000000,2 -578,583,585,590,-0.172413793103516,-0.629166666666685,-0.165517241379389,-0.633333333333326,-0.165517241379389,-0.625000000000044,-0.158620689655262,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.008333333333283,0.000000000000000,2 -579,584,586,591,-0.172413793103516,-0.620833333333359,-0.165517241379389,-0.625000000000044,-0.165517241379389,-0.616666666666674,-0.158620689655262,-0.620833333333359,-0.008333333333369,0.000000000000000,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.008333333333369,0.000000000000000,2 -580,585,587,592,-0.172413793103516,-0.612499999999978,-0.165517241379389,-0.616666666666674,-0.165517241379389,-0.608333333333283,-0.158620689655262,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333391,0.000000000000000,2 -581,586,593,4387,-0.172413793103516,-0.604166666666641,-0.165517241379389,-0.608333333333283,-0.158620689655262,-0.604166666666641,-0.165517241379389,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448254,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448254,2 -582,589,594,11869,-0.158620689655262,-0.645833333333359,-0.151724137931136,-0.641666666666717,-0.144827586207010,-0.645833333333359,-0.151724137931136,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448251,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448251,1 -583,588,590,595,-0.158620689655262,-0.637500000000022,-0.151724137931136,-0.641666666666717,-0.151724137931136,-0.633333333333326,-0.144827586207010,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448251,0.008333333333391,0.000000000000000,2 -584,589,591,596,-0.158620689655262,-0.629166666666685,-0.151724137931136,-0.633333333333326,-0.151724137931136,-0.625000000000043,-0.144827586207010,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.008333333333283,0.000000000000000,2 -585,590,592,597,-0.158620689655262,-0.620833333333359,-0.151724137931136,-0.625000000000043,-0.151724137931136,-0.616666666666674,-0.144827586207010,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.008333333333369,0.000000000000000,2 -586,591,593,598,-0.158620689655262,-0.612499999999978,-0.151724137931136,-0.616666666666674,-0.151724137931136,-0.608333333333283,-0.144827586207010,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.008333333333391,0.000000000000000,2 -587,592,599,4401,-0.158620689655262,-0.604166666666641,-0.151724137931136,-0.608333333333283,-0.144827586207010,-0.604166666666641,-0.151724137931136,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448251,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448251,2 -588,595,600,11869,-0.144827586207010,-0.645833333333359,-0.137931034482892,-0.641666666666717,-0.131034482758774,-0.645833333333359,-0.137931034482892,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,1 -589,594,596,601,-0.144827586207010,-0.637500000000022,-0.137931034482892,-0.641666666666717,-0.137931034482892,-0.633333333333326,-0.131034482758774,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -590,595,597,602,-0.144827586207010,-0.629166666666685,-0.137931034482892,-0.633333333333326,-0.137931034482892,-0.625000000000043,-0.131034482758774,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,2 -591,596,598,603,-0.144827586207010,-0.620833333333359,-0.137931034482892,-0.625000000000043,-0.137931034482892,-0.616666666666674,-0.131034482758774,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333370,0.000000000000000,2 -592,597,599,604,-0.144827586207010,-0.612499999999978,-0.137931034482892,-0.616666666666674,-0.137931034482892,-0.608333333333283,-0.131034482758774,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -593,598,605,4415,-0.144827586207010,-0.604166666666641,-0.137931034482892,-0.608333333333283,-0.131034482758774,-0.604166666666641,-0.137931034482892,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 -594,601,606,11869,-0.131034482758774,-0.645833333333359,-0.124137931034655,-0.641666666666717,-0.117241379310537,-0.645833333333359,-0.124137931034655,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,1 -595,600,602,607,-0.131034482758774,-0.637500000000022,-0.124137931034655,-0.641666666666717,-0.124137931034655,-0.633333333333326,-0.117241379310537,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -596,601,603,608,-0.131034482758774,-0.629166666666685,-0.124137931034655,-0.633333333333326,-0.124137931034655,-0.625000000000043,-0.117241379310537,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,2 -597,602,604,609,-0.131034482758774,-0.620833333333359,-0.124137931034655,-0.625000000000043,-0.124137931034655,-0.616666666666674,-0.117241379310537,-0.620833333333359,-0.008333333333370,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333369,0.000000000000000,2 -598,603,605,610,-0.131034482758774,-0.612499999999978,-0.124137931034655,-0.616666666666674,-0.124137931034655,-0.608333333333283,-0.117241379310537,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -599,604,611,4429,-0.131034482758774,-0.604166666666641,-0.124137931034655,-0.608333333333283,-0.117241379310537,-0.604166666666641,-0.124137931034655,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 -600,607,612,11869,-0.117241379310537,-0.645833333333359,-0.110344827586419,-0.641666666666717,-0.103448275862300,-0.645833333333359,-0.110344827586419,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,1 -601,606,608,613,-0.117241379310537,-0.637500000000022,-0.110344827586419,-0.641666666666717,-0.110344827586419,-0.633333333333326,-0.103448275862300,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -602,607,609,614,-0.117241379310537,-0.629166666666685,-0.110344827586419,-0.633333333333326,-0.110344827586419,-0.625000000000043,-0.103448275862300,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,2 -603,608,610,615,-0.117241379310537,-0.620833333333359,-0.110344827586419,-0.625000000000043,-0.110344827586419,-0.616666666666674,-0.103448275862300,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333370,0.000000000000000,2 -604,609,611,616,-0.117241379310537,-0.612499999999978,-0.110344827586419,-0.616666666666674,-0.110344827586419,-0.608333333333283,-0.103448275862300,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -605,610,617,4443,-0.117241379310537,-0.604166666666641,-0.110344827586419,-0.608333333333283,-0.103448275862300,-0.604166666666641,-0.110344827586419,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 -606,613,618,11869,-0.103448275862300,-0.645833333333359,-0.096551724138182,-0.641666666666717,-0.089655172414064,-0.645833333333359,-0.096551724138182,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,1 -607,612,614,619,-0.103448275862300,-0.637500000000022,-0.096551724138182,-0.641666666666717,-0.096551724138182,-0.633333333333326,-0.089655172414064,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -608,613,615,620,-0.103448275862300,-0.629166666666685,-0.096551724138182,-0.633333333333326,-0.096551724138182,-0.625000000000043,-0.089655172414064,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333283,-0.000000000000000,2 -609,614,616,621,-0.103448275862300,-0.620833333333359,-0.096551724138182,-0.625000000000043,-0.096551724138182,-0.616666666666674,-0.089655172414064,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333369,0.000000000000000,2 -610,615,617,622,-0.103448275862300,-0.612499999999978,-0.096551724138182,-0.616666666666674,-0.096551724138182,-0.608333333333283,-0.089655172414064,-0.612499999999979,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,-0.000000000000000,2 -611,616,623,4457,-0.103448275862300,-0.604166666666641,-0.096551724138182,-0.608333333333283,-0.089655172414064,-0.604166666666641,-0.096551724138182,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448237,2 -612,619,624,11869,-0.089655172414064,-0.645833333333359,-0.082758620689945,-0.641666666666717,-0.075862068965827,-0.645833333333359,-0.082758620689945,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,1 -613,618,620,625,-0.089655172414064,-0.637500000000022,-0.082758620689945,-0.641666666666717,-0.082758620689945,-0.633333333333326,-0.075862068965827,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,-0.000000000000000,2 -614,619,621,626,-0.089655172414064,-0.629166666666685,-0.082758620689945,-0.633333333333326,-0.082758620689945,-0.625000000000043,-0.075862068965827,-0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,2 -615,620,622,627,-0.089655172414064,-0.620833333333359,-0.082758620689945,-0.625000000000043,-0.082758620689945,-0.616666666666674,-0.075862068965827,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333369,0.000000000000000,2 -616,621,623,628,-0.089655172414064,-0.612499999999979,-0.082758620689945,-0.616666666666674,-0.082758620689945,-0.608333333333283,-0.075862068965827,-0.612499999999978,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -617,622,629,4471,-0.089655172414064,-0.604166666666641,-0.082758620689945,-0.608333333333283,-0.075862068965827,-0.604166666666641,-0.082758620689945,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 -618,625,630,11869,-0.075862068965827,-0.645833333333359,-0.068965517241709,-0.641666666666717,-0.062068965517591,-0.645833333333359,-0.068965517241709,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,1 -619,624,626,631,-0.075862068965827,-0.637500000000022,-0.068965517241709,-0.641666666666717,-0.068965517241709,-0.633333333333326,-0.062068965517591,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -620,625,627,632,-0.075862068965827,-0.629166666666685,-0.068965517241709,-0.633333333333326,-0.068965517241709,-0.625000000000043,-0.062068965517591,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,2 -621,626,628,633,-0.075862068965827,-0.620833333333359,-0.068965517241709,-0.625000000000043,-0.068965517241709,-0.616666666666674,-0.062068965517591,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333369,0.000000000000000,2 -622,627,629,634,-0.075862068965827,-0.612499999999978,-0.068965517241709,-0.616666666666674,-0.068965517241709,-0.608333333333283,-0.062068965517591,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,-0.000000000000000,2 -623,628,635,4485,-0.075862068965827,-0.604166666666641,-0.068965517241709,-0.608333333333283,-0.062068965517591,-0.604166666666641,-0.068965517241709,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 -624,631,636,11869,-0.062068965517591,-0.645833333333359,-0.055172413793477,-0.641666666666717,-0.048275862069362,-0.645833333333359,-0.055172413793477,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448228,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448228,1 -625,630,632,637,-0.062068965517591,-0.637500000000022,-0.055172413793477,-0.641666666666717,-0.055172413793477,-0.633333333333326,-0.048275862069362,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.008333333333391,0.000000000000000,2 -626,631,633,638,-0.062068965517591,-0.629166666666685,-0.055172413793477,-0.633333333333326,-0.055172413793477,-0.625000000000043,-0.048275862069362,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448228,-0.000000000000000,0.013793103448228,0.008333333333283,-0.000000000000000,2 -627,632,634,639,-0.062068965517591,-0.620833333333359,-0.055172413793477,-0.625000000000043,-0.055172413793477,-0.616666666666674,-0.048275862069362,-0.620833333333359,-0.008333333333369,-0.000000000000000,0.000000000000000,-0.013793103448228,-0.000000000000000,0.013793103448228,0.008333333333369,0.000000000000000,2 -628,633,635,640,-0.062068965517591,-0.612499999999978,-0.055172413793477,-0.616666666666674,-0.055172413793477,-0.608333333333283,-0.048275862069362,-0.612499999999978,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.008333333333391,0.000000000000000,2 -629,634,641,4499,-0.062068965517591,-0.604166666666641,-0.055172413793477,-0.608333333333283,-0.048275862069362,-0.604166666666641,-0.055172413793477,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448228,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448228,2 -630,637,642,11869,-0.048275862069362,-0.645833333333359,-0.041379310345245,-0.641666666666717,-0.034482758621128,-0.645833333333359,-0.041379310345245,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448234,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448234,1 -631,636,638,643,-0.048275862069362,-0.637500000000022,-0.041379310345245,-0.641666666666717,-0.041379310345245,-0.633333333333326,-0.034482758621128,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448234,-0.000000000000000,0.013793103448234,0.008333333333391,0.000000000000000,2 -632,637,639,644,-0.048275862069362,-0.629166666666685,-0.041379310345245,-0.633333333333326,-0.041379310345245,-0.625000000000043,-0.034482758621128,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.008333333333283,0.000000000000000,2 -633,638,640,645,-0.048275862069362,-0.620833333333359,-0.041379310345245,-0.625000000000043,-0.041379310345245,-0.616666666666674,-0.034482758621128,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.008333333333369,0.000000000000000,2 -634,639,641,646,-0.048275862069362,-0.612499999999978,-0.041379310345245,-0.616666666666674,-0.041379310345245,-0.608333333333283,-0.034482758621128,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.008333333333391,-0.000000000000000,2 -635,640,647,4513,-0.048275862069362,-0.604166666666641,-0.041379310345245,-0.608333333333283,-0.034482758621128,-0.604166666666641,-0.041379310345245,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448234,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448234,2 -636,643,648,11869,-0.034482758621128,-0.645833333333359,-0.027586206897010,-0.641666666666717,-0.020689655172892,-0.645833333333359,-0.027586206897010,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,1 -637,642,644,649,-0.034482758621128,-0.637500000000022,-0.027586206897010,-0.641666666666717,-0.027586206897010,-0.633333333333326,-0.020689655172892,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -638,643,645,650,-0.034482758621128,-0.629166666666685,-0.027586206897010,-0.633333333333326,-0.027586206897010,-0.625000000000043,-0.020689655172892,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333283,0.000000000000000,2 -639,644,646,651,-0.034482758621128,-0.620833333333359,-0.027586206897010,-0.625000000000043,-0.027586206897010,-0.616666666666674,-0.020689655172892,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333369,0.000000000000000,2 -640,645,647,652,-0.034482758621128,-0.612499999999978,-0.027586206897010,-0.616666666666674,-0.027586206897010,-0.608333333333283,-0.020689655172892,-0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,-0.000000000000000,2 -641,646,653,4527,-0.034482758621128,-0.604166666666641,-0.027586206897010,-0.608333333333283,-0.020689655172892,-0.604166666666641,-0.027586206897010,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448237,2 -642,649,654,11869,-0.020689655172892,-0.645833333333359,-0.013793103448773,-0.641666666666717,-0.006896551724655,-0.645833333333359,-0.013793103448773,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448237,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,1 -643,648,650,655,-0.020689655172892,-0.637500000000022,-0.013793103448773,-0.641666666666717,-0.013793103448773,-0.633333333333326,-0.006896551724655,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -644,649,651,656,-0.020689655172892,-0.629166666666685,-0.013793103448773,-0.633333333333326,-0.013793103448773,-0.625000000000044,-0.006896551724655,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333282,0.000000000000000,2 -645,650,652,657,-0.020689655172892,-0.620833333333359,-0.013793103448773,-0.625000000000044,-0.013793103448773,-0.616666666666674,-0.006896551724655,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.008333333333370,0.000000000000000,2 -646,651,653,658,-0.020689655172892,-0.612499999999978,-0.013793103448773,-0.616666666666674,-0.013793103448773,-0.608333333333283,-0.006896551724655,-0.612499999999978,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.008333333333391,0.000000000000000,2 -647,652,659,4541,-0.020689655172892,-0.604166666666641,-0.013793103448773,-0.608333333333283,-0.006896551724655,-0.604166666666641,-0.013793103448773,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448237,2 -648,655,660,11869,-0.006896551724655,-0.645833333333359,-0.000000000000518,-0.641666666666717,0.006896551723618,-0.645833333333359,-0.000000000000518,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448274,1 -649,654,656,661,-0.006896551724655,-0.637500000000022,-0.000000000000518,-0.641666666666717,-0.000000000000518,-0.633333333333326,0.006896551723618,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.008333333333391,0.000000000000000,2 -650,655,657,662,-0.006896551724655,-0.629166666666685,-0.000000000000518,-0.633333333333326,-0.000000000000518,-0.625000000000044,0.006896551723618,-0.629166666666685,-0.008333333333282,-0.000000000000000,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448274,0.008333333333283,0.000000000000000,2 -651,656,658,663,-0.006896551724655,-0.620833333333359,-0.000000000000518,-0.625000000000044,-0.000000000000518,-0.616666666666674,0.006896551723618,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.008333333333369,0.000000000000000,2 -652,657,659,664,-0.006896551724655,-0.612499999999978,-0.000000000000518,-0.616666666666674,-0.000000000000518,-0.608333333333283,0.006896551723618,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.008333333333391,-0.000000000000000,2 -653,658,665,4555,-0.006896551724655,-0.604166666666641,-0.000000000000518,-0.608333333333283,0.006896551723618,-0.604166666666641,-0.000000000000518,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448274,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448274,2 -654,661,666,11869,0.006896551723618,-0.645833333333359,0.013793103447775,-0.641666666666717,0.020689655171931,-0.645833333333359,0.013793103447775,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448313,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448313,1 -655,660,662,667,0.006896551723618,-0.637500000000022,0.013793103447775,-0.641666666666717,0.013793103447775,-0.633333333333326,0.020689655171931,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.008333333333391,0.000000000000000,2 -656,661,663,668,0.006896551723618,-0.629166666666685,0.013793103447775,-0.633333333333326,0.013793103447775,-0.625000000000043,0.020689655171931,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333283,0.000000000000000,2 -657,662,664,669,0.006896551723618,-0.620833333333359,0.013793103447775,-0.625000000000043,0.013793103447775,-0.616666666666674,0.020689655171931,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.008333333333369,0.000000000000000,2 -658,663,665,670,0.006896551723618,-0.612499999999978,0.013793103447775,-0.616666666666674,0.013793103447775,-0.608333333333283,0.020689655171931,-0.612499999999978,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333391,-0.000000000000000,2 -659,664,671,4569,0.006896551723618,-0.604166666666641,0.013793103447775,-0.608333333333283,0.020689655171931,-0.604166666666641,0.013793103447775,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448313,2 -660,667,672,11869,0.020689655171931,-0.645833333333359,0.027586206896088,-0.641666666666717,0.034482758620245,-0.645833333333359,0.027586206896088,-0.650000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,0.013793103448314,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448314,1 -661,666,668,673,0.020689655171931,-0.637500000000022,0.027586206896088,-0.641666666666717,0.027586206896088,-0.633333333333326,0.034482758620245,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333391,0.000000000000000,2 -662,667,669,674,0.020689655171931,-0.629166666666685,0.027586206896088,-0.633333333333326,0.027586206896088,-0.625000000000044,0.034482758620245,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333283,-0.000000000000000,2 -663,668,670,675,0.020689655171931,-0.620833333333359,0.027586206896088,-0.625000000000044,0.027586206896088,-0.616666666666674,0.034482758620245,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333370,0.000000000000000,2 -664,669,671,676,0.020689655171931,-0.612499999999978,0.027586206896088,-0.616666666666674,0.027586206896088,-0.608333333333283,0.034482758620245,-0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333391,0.000000000000000,2 -665,670,677,4583,0.020689655171931,-0.604166666666641,0.027586206896088,-0.608333333333283,0.034482758620245,-0.604166666666641,0.027586206896088,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448314,2 -666,673,678,11869,0.034482758620245,-0.645833333333359,0.041379310344402,-0.641666666666717,0.048275862068559,-0.645833333333359,0.041379310344402,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448314,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448314,1 -667,672,674,679,0.034482758620245,-0.637500000000022,0.041379310344402,-0.641666666666717,0.041379310344402,-0.633333333333326,0.048275862068559,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333391,0.000000000000000,2 -668,673,675,680,0.034482758620245,-0.629166666666685,0.041379310344402,-0.633333333333326,0.041379310344402,-0.625000000000044,0.048275862068559,-0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448314,0.008333333333283,-0.000000000000000,2 -669,674,676,681,0.034482758620245,-0.620833333333359,0.041379310344402,-0.625000000000044,0.041379310344402,-0.616666666666674,0.048275862068559,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333369,-0.000000000000000,2 -670,675,677,682,0.034482758620245,-0.612499999999978,0.041379310344402,-0.616666666666674,0.041379310344402,-0.608333333333283,0.048275862068559,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333391,0.000000000000000,2 -671,676,683,4597,0.034482758620245,-0.604166666666641,0.041379310344402,-0.608333333333283,0.048275862068559,-0.604166666666641,0.041379310344402,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448314,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448314,2 -672,679,684,11869,0.048275862068559,-0.645833333333359,0.055172413792716,-0.641666666666717,0.062068965516873,-0.645833333333359,0.055172413792716,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448315,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448315,1 -673,678,680,685,0.048275862068559,-0.637500000000022,0.055172413792716,-0.641666666666717,0.055172413792716,-0.633333333333326,0.062068965516873,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.008333333333391,0.000000000000000,2 -674,679,681,686,0.048275862068559,-0.629166666666685,0.055172413792716,-0.633333333333326,0.055172413792716,-0.625000000000043,0.062068965516873,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333283,0.000000000000000,2 -675,680,682,687,0.048275862068559,-0.620833333333359,0.055172413792716,-0.625000000000043,0.055172413792716,-0.616666666666674,0.062068965516873,-0.620833333333359,-0.008333333333369,0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.008333333333370,-0.000000000000000,2 -676,681,683,688,0.048275862068559,-0.612499999999978,0.055172413792716,-0.616666666666674,0.055172413792716,-0.608333333333283,0.062068965516873,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333391,0.000000000000000,2 -677,682,689,4611,0.048275862068559,-0.604166666666641,0.055172413792716,-0.608333333333283,0.062068965516873,-0.604166666666641,0.055172413792716,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448315,2 -678,685,690,11869,0.062068965516873,-0.645833333333359,0.068965517241032,-0.641666666666717,0.075862068965190,-0.645833333333359,0.068965517241032,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448317,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448317,1 -679,684,686,691,0.062068965516873,-0.637500000000022,0.068965517241032,-0.641666666666717,0.068965517241032,-0.633333333333326,0.075862068965190,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.008333333333391,-0.000000000000000,2 -680,685,687,692,0.062068965516873,-0.629166666666685,0.068965517241032,-0.633333333333326,0.068965517241032,-0.625000000000043,0.075862068965190,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,0.008333333333283,0.000000000000000,2 -681,686,688,693,0.062068965516873,-0.620833333333359,0.068965517241032,-0.625000000000043,0.068965517241032,-0.616666666666674,0.075862068965190,-0.620833333333359,-0.008333333333370,0.000000000000000,0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.008333333333369,0.000000000000000,2 -682,687,689,694,0.062068965516873,-0.612499999999978,0.068965517241032,-0.616666666666674,0.068965517241032,-0.608333333333283,0.075862068965190,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.008333333333391,0.000000000000000,2 -683,688,695,4625,0.062068965516873,-0.604166666666641,0.068965517241032,-0.608333333333283,0.075862068965190,-0.604166666666641,0.068965517241032,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448317,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448317,2 -684,691,696,11869,0.075862068965190,-0.645833333333359,0.082758620689347,-0.641666666666717,0.089655172413504,-0.645833333333359,0.082758620689347,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448314,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448314,1 -685,690,692,697,0.075862068965190,-0.637500000000022,0.082758620689347,-0.641666666666717,0.082758620689347,-0.633333333333326,0.089655172413504,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333391,0.000000000000000,2 -686,691,693,698,0.075862068965190,-0.629166666666685,0.082758620689347,-0.633333333333326,0.082758620689347,-0.625000000000043,0.089655172413504,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333283,-0.000000000000000,2 -687,692,694,699,0.075862068965190,-0.620833333333359,0.082758620689347,-0.625000000000043,0.082758620689347,-0.616666666666674,0.089655172413504,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333369,0.000000000000000,2 -688,693,695,700,0.075862068965190,-0.612499999999978,0.082758620689347,-0.616666666666674,0.082758620689347,-0.608333333333283,0.089655172413504,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.008333333333391,-0.000000000000000,2 -689,694,701,4639,0.075862068965190,-0.604166666666641,0.082758620689347,-0.608333333333283,0.089655172413504,-0.604166666666641,0.082758620689347,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448314,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448314,2 -690,697,702,11869,0.089655172413504,-0.645833333333359,0.096551724137659,-0.641666666666717,0.103448275861814,-0.645833333333359,0.096551724137659,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,1 -691,696,698,703,0.089655172413504,-0.637500000000022,0.096551724137659,-0.641666666666717,0.096551724137659,-0.633333333333326,0.103448275861814,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448310,0.008333333333391,0.000000000000000,2 -692,697,699,704,0.089655172413504,-0.629166666666685,0.096551724137659,-0.633333333333326,0.096551724137659,-0.625000000000044,0.103448275861814,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,2 -693,698,700,705,0.089655172413504,-0.620833333333359,0.096551724137659,-0.625000000000044,0.096551724137659,-0.616666666666674,0.103448275861814,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333370,0.000000000000000,2 -694,699,701,706,0.089655172413504,-0.612499999999978,0.096551724137659,-0.616666666666674,0.096551724137659,-0.608333333333283,0.103448275861814,-0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333391,0.000000000000000,2 -695,700,707,4653,0.089655172413504,-0.604166666666641,0.096551724137659,-0.608333333333283,0.103448275861814,-0.604166666666641,0.096551724137659,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,2 -696,703,708,11869,0.103448275861814,-0.645833333333359,0.110344827585969,-0.641666666666717,0.117241379310125,-0.645833333333359,0.110344827585969,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448312,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448312,1 -697,702,704,709,0.103448275861814,-0.637500000000022,0.110344827585969,-0.641666666666717,0.110344827585969,-0.633333333333326,0.117241379310125,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.008333333333391,-0.000000000000000,2 -698,703,705,710,0.103448275861814,-0.629166666666685,0.110344827585969,-0.633333333333326,0.110344827585969,-0.625000000000043,0.117241379310125,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448312,0.008333333333283,0.000000000000000,2 -699,704,706,711,0.103448275861814,-0.620833333333359,0.110344827585969,-0.625000000000043,0.110344827585969,-0.616666666666674,0.117241379310125,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.008333333333369,0.000000000000000,2 -700,705,707,712,0.103448275861814,-0.612499999999978,0.110344827585969,-0.616666666666674,0.110344827585969,-0.608333333333283,0.117241379310125,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448312,0.008333333333391,0.000000000000000,2 -701,706,713,4667,0.103448275861814,-0.604166666666641,0.110344827585969,-0.608333333333283,0.117241379310125,-0.604166666666641,0.110344827585969,-0.600000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448312,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448312,2 -702,709,714,11869,0.117241379310125,-0.645833333333359,0.124137931034281,-0.641666666666717,0.131034482758436,-0.645833333333359,0.124137931034281,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,1 -703,708,710,715,0.117241379310125,-0.637500000000022,0.124137931034281,-0.641666666666717,0.124137931034281,-0.633333333333326,0.131034482758436,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 -704,709,711,716,0.117241379310125,-0.629166666666685,0.124137931034281,-0.633333333333326,0.124137931034281,-0.625000000000043,0.131034482758436,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,2 -705,710,712,717,0.117241379310125,-0.620833333333359,0.124137931034281,-0.625000000000043,0.124137931034281,-0.616666666666674,0.131034482758436,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.008333333333370,0.000000000000000,2 -706,711,713,718,0.117241379310125,-0.612499999999978,0.124137931034281,-0.616666666666674,0.124137931034281,-0.608333333333283,0.131034482758436,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 -707,712,719,4681,0.117241379310125,-0.604166666666641,0.124137931034281,-0.608333333333283,0.131034482758436,-0.604166666666641,0.124137931034281,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,2 -708,715,720,11869,0.131034482758436,-0.645833333333359,0.137931034482591,-0.641666666666717,0.144827586206747,-0.645833333333359,0.137931034482591,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,1 -709,714,716,721,0.131034482758436,-0.637500000000022,0.137931034482591,-0.641666666666717,0.137931034482591,-0.633333333333326,0.144827586206747,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 -710,715,717,722,0.131034482758436,-0.629166666666685,0.137931034482591,-0.633333333333326,0.137931034482591,-0.625000000000043,0.144827586206747,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,2 -711,716,718,723,0.131034482758436,-0.620833333333359,0.137931034482591,-0.625000000000043,0.137931034482591,-0.616666666666674,0.144827586206747,-0.620833333333359,-0.008333333333370,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333370,0.000000000000000,2 -712,717,719,724,0.131034482758436,-0.612499999999978,0.137931034482591,-0.616666666666674,0.137931034482591,-0.608333333333283,0.144827586206747,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,-0.000000000000000,2 -713,718,725,4695,0.131034482758436,-0.604166666666641,0.137931034482591,-0.608333333333283,0.144827586206747,-0.604166666666641,0.137931034482591,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,2 -714,721,726,11869,0.144827586206747,-0.645833333333359,0.151724137930902,-0.641666666666717,0.158620689655057,-0.645833333333359,0.151724137930902,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,1 -715,720,722,727,0.144827586206747,-0.637500000000022,0.151724137930902,-0.641666666666717,0.151724137930902,-0.633333333333326,0.158620689655057,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 -716,721,723,728,0.144827586206747,-0.629166666666685,0.151724137930902,-0.633333333333326,0.151724137930902,-0.625000000000043,0.158620689655057,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,2 -717,722,724,729,0.144827586206747,-0.620833333333359,0.151724137930902,-0.625000000000043,0.151724137930902,-0.616666666666674,0.158620689655057,-0.620833333333359,-0.008333333333370,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333369,0.000000000000000,2 -718,723,725,730,0.144827586206747,-0.612499999999978,0.151724137930902,-0.616666666666674,0.151724137930902,-0.608333333333283,0.158620689655057,-0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 -719,724,731,4709,0.144827586206747,-0.604166666666641,0.151724137930902,-0.608333333333283,0.158620689655057,-0.604166666666641,0.151724137930902,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,2 -720,727,732,11869,0.158620689655057,-0.645833333333359,0.165517241379213,-0.641666666666717,0.172413793103368,-0.645833333333359,0.165517241379213,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,1 -721,726,728,733,0.158620689655057,-0.637500000000022,0.165517241379213,-0.641666666666717,0.165517241379213,-0.633333333333326,0.172413793103368,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 -722,727,729,734,0.158620689655057,-0.629166666666685,0.165517241379213,-0.633333333333326,0.165517241379213,-0.625000000000043,0.172413793103368,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,2 -723,728,730,735,0.158620689655057,-0.620833333333359,0.165517241379213,-0.625000000000043,0.165517241379213,-0.616666666666674,0.172413793103368,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333369,0.000000000000000,2 -724,729,731,736,0.158620689655057,-0.612499999999978,0.165517241379213,-0.616666666666674,0.165517241379213,-0.608333333333283,0.172413793103368,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 -725,730,737,4723,0.158620689655057,-0.604166666666641,0.165517241379213,-0.608333333333283,0.172413793103368,-0.604166666666641,0.165517241379213,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,2 -726,733,738,11869,0.172413793103368,-0.645833333333359,0.179310344827525,-0.641666666666717,0.186206896551683,-0.645833333333359,0.179310344827525,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448315,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448315,1 -727,732,734,739,0.172413793103368,-0.637500000000022,0.179310344827525,-0.641666666666717,0.179310344827525,-0.633333333333326,0.186206896551683,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.008333333333391,0.000000000000000,2 -728,733,735,740,0.172413793103368,-0.629166666666685,0.179310344827525,-0.633333333333326,0.179310344827525,-0.625000000000043,0.186206896551683,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333283,-0.000000000000000,2 -729,734,736,741,0.172413793103368,-0.620833333333359,0.179310344827525,-0.625000000000043,0.179310344827525,-0.616666666666674,0.186206896551683,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333369,0.000000000000000,2 -730,735,737,742,0.172413793103368,-0.612499999999978,0.179310344827525,-0.616666666666674,0.179310344827525,-0.608333333333283,0.186206896551683,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333391,0.000000000000000,2 -731,736,743,4737,0.172413793103368,-0.604166666666641,0.179310344827525,-0.608333333333283,0.186206896551683,-0.604166666666641,0.179310344827525,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448315,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448315,2 -732,739,744,11869,0.186206896551683,-0.645833333333359,0.193103448275841,-0.641666666666717,0.200000000000000,-0.645833333333359,0.193103448275841,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448317,0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448317,1 -733,738,740,745,0.186206896551683,-0.637500000000022,0.193103448275841,-0.641666666666717,0.193103448275841,-0.633333333333326,0.200000000000000,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,0.008333333333391,0.000000000000000,2 -734,739,741,746,0.186206896551683,-0.629166666666685,0.193103448275841,-0.633333333333326,0.193103448275841,-0.625000000000043,0.200000000000000,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,0.008333333333283,0.000000000000000,2 -735,740,742,747,0.186206896551683,-0.620833333333359,0.193103448275841,-0.625000000000043,0.193103448275841,-0.616666666666674,0.200000000000000,-0.620833333333359,-0.008333333333369,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,0.008333333333369,0.000000000000000,2 -736,741,743,748,0.186206896551683,-0.612499999999978,0.193103448275841,-0.616666666666674,0.193103448275841,-0.608333333333283,0.200000000000000,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,0.008333333333391,0.000000000000000,2 -737,742,749,4751,0.186206896551683,-0.604166666666641,0.193103448275841,-0.608333333333283,0.200000000000000,-0.604166666666641,0.193103448275841,-0.600000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448317,0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448317,2 -738,745,750,11869,0.200000000000000,-0.645833333333359,0.206896551724127,-0.641666666666717,0.213793103448254,-0.645833333333359,0.206896551724127,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448254,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448254,1 -739,744,746,751,0.200000000000000,-0.637500000000022,0.206896551724127,-0.641666666666717,0.206896551724127,-0.633333333333326,0.213793103448254,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333391,-0.000000000000000,2 -740,745,747,752,0.200000000000000,-0.629166666666685,0.206896551724127,-0.633333333333326,0.206896551724127,-0.625000000000043,0.213793103448254,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333283,0.000000000000000,2 -741,746,748,753,0.200000000000000,-0.620833333333359,0.206896551724127,-0.625000000000043,0.206896551724127,-0.616666666666674,0.213793103448254,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333369,0.000000000000000,2 -742,747,749,754,0.200000000000000,-0.612499999999978,0.206896551724127,-0.616666666666674,0.206896551724127,-0.608333333333283,0.213793103448254,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333391,0.000000000000000,2 -743,748,755,4765,0.200000000000000,-0.604166666666641,0.206896551724127,-0.608333333333283,0.213793103448254,-0.604166666666641,0.206896551724127,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448254,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448254,2 -744,751,756,11869,0.213793103448254,-0.645833333333359,0.220689655172375,-0.641666666666717,0.227586206896496,-0.645833333333359,0.220689655172375,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448243,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448243,1 -745,750,752,757,0.213793103448254,-0.637500000000022,0.220689655172375,-0.641666666666717,0.220689655172375,-0.633333333333326,0.227586206896496,-0.637500000000022,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.008333333333391,-0.000000000000000,2 -746,751,753,758,0.213793103448254,-0.629166666666685,0.220689655172375,-0.633333333333326,0.220689655172375,-0.625000000000043,0.227586206896496,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.008333333333283,0.000000000000000,2 -747,752,754,759,0.213793103448254,-0.620833333333359,0.220689655172375,-0.625000000000043,0.220689655172375,-0.616666666666674,0.227586206896496,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.008333333333369,0.000000000000000,2 -748,753,755,760,0.213793103448254,-0.612499999999978,0.220689655172375,-0.616666666666674,0.220689655172375,-0.608333333333283,0.227586206896496,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.008333333333391,0.000000000000000,2 -749,754,761,4779,0.213793103448254,-0.604166666666641,0.220689655172375,-0.608333333333283,0.227586206896496,-0.604166666666641,0.220689655172375,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448243,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448243,2 -750,757,762,11869,0.227586206896496,-0.645833333333359,0.234482758620623,-0.641666666666717,0.241379310344750,-0.645833333333359,0.234482758620623,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448254,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448254,1 -751,756,758,763,0.227586206896496,-0.637500000000022,0.234482758620623,-0.641666666666717,0.234482758620623,-0.633333333333326,0.241379310344750,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448253,0.008333333333391,0.000000000000000,2 -752,757,759,764,0.227586206896496,-0.629166666666685,0.234482758620623,-0.633333333333326,0.234482758620623,-0.625000000000044,0.241379310344750,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448254,0.008333333333283,-0.000000000000000,2 -753,758,760,765,0.227586206896496,-0.620833333333359,0.234482758620623,-0.625000000000044,0.234482758620623,-0.616666666666674,0.241379310344750,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.008333333333370,0.000000000000000,2 -754,759,761,766,0.227586206896496,-0.612499999999978,0.234482758620623,-0.616666666666674,0.234482758620623,-0.608333333333283,0.241379310344750,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.008333333333391,0.000000000000000,2 -755,760,767,4793,0.227586206896496,-0.604166666666641,0.234482758620623,-0.608333333333283,0.241379310344750,-0.604166666666641,0.234482758620623,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448254,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448254,2 -756,763,768,11869,0.241379310344750,-0.645833333333359,0.248275862068872,-0.641666666666717,0.255172413792995,-0.645833333333359,0.248275862068872,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448245,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448245,1 -757,762,764,769,0.241379310344750,-0.637500000000022,0.248275862068872,-0.641666666666717,0.248275862068872,-0.633333333333326,0.255172413792995,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.008333333333391,0.000000000000000,2 -758,763,765,770,0.241379310344750,-0.629166666666685,0.248275862068872,-0.633333333333326,0.248275862068872,-0.625000000000044,0.255172413792995,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.008333333333283,0.000000000000000,2 -759,764,766,771,0.241379310344750,-0.620833333333359,0.248275862068872,-0.625000000000044,0.248275862068872,-0.616666666666674,0.255172413792995,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.008333333333369,0.000000000000000,2 -760,765,767,772,0.241379310344750,-0.612499999999978,0.248275862068872,-0.616666666666674,0.248275862068872,-0.608333333333283,0.255172413792995,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.008333333333391,0.000000000000000,2 -761,766,773,4807,0.241379310344750,-0.604166666666641,0.248275862068872,-0.608333333333283,0.255172413792995,-0.604166666666641,0.248275862068872,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448245,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448245,2 -762,769,774,11869,0.255172413792995,-0.645833333333359,0.262068965517112,-0.641666666666717,0.268965517241230,-0.645833333333359,0.262068965517112,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 -763,768,770,775,0.255172413792995,-0.637500000000022,0.262068965517112,-0.641666666666717,0.262068965517112,-0.633333333333326,0.268965517241230,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -764,769,771,776,0.255172413792995,-0.629166666666685,0.262068965517112,-0.633333333333326,0.262068965517112,-0.625000000000043,0.268965517241230,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 -765,770,772,777,0.255172413792995,-0.620833333333359,0.262068965517112,-0.625000000000043,0.262068965517112,-0.616666666666674,0.268965517241230,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 -766,771,773,778,0.255172413792995,-0.612499999999978,0.262068965517112,-0.616666666666674,0.262068965517112,-0.608333333333283,0.268965517241230,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -767,772,779,4821,0.255172413792995,-0.604166666666641,0.262068965517112,-0.608333333333283,0.268965517241230,-0.604166666666641,0.262068965517112,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 -768,775,780,11869,0.268965517241230,-0.645833333333359,0.275862068965347,-0.641666666666717,0.282758620689465,-0.645833333333359,0.275862068965347,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 -769,774,776,781,0.268965517241230,-0.637500000000022,0.275862068965347,-0.641666666666717,0.275862068965347,-0.633333333333326,0.282758620689465,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -770,775,777,782,0.268965517241230,-0.629166666666685,0.275862068965347,-0.633333333333326,0.275862068965347,-0.625000000000044,0.282758620689465,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 -771,776,778,783,0.268965517241230,-0.620833333333359,0.275862068965347,-0.625000000000044,0.275862068965347,-0.616666666666674,0.282758620689465,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333370,0.000000000000000,2 -772,777,779,784,0.268965517241230,-0.612499999999978,0.275862068965347,-0.616666666666674,0.275862068965347,-0.608333333333283,0.282758620689465,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -773,778,785,4835,0.268965517241230,-0.604166666666641,0.275862068965347,-0.608333333333283,0.282758620689465,-0.604166666666641,0.275862068965347,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 -774,781,786,11869,0.282758620689465,-0.645833333333359,0.289655172413583,-0.641666666666717,0.296551724137700,-0.645833333333359,0.289655172413583,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 -775,780,782,787,0.282758620689465,-0.637500000000022,0.289655172413583,-0.641666666666717,0.289655172413583,-0.633333333333326,0.296551724137700,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -776,781,783,788,0.282758620689465,-0.629166666666685,0.289655172413583,-0.633333333333326,0.289655172413583,-0.625000000000044,0.296551724137700,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 -777,782,784,789,0.282758620689465,-0.620833333333359,0.289655172413583,-0.625000000000044,0.289655172413583,-0.616666666666674,0.296551724137700,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333370,0.000000000000000,2 -778,783,785,790,0.282758620689465,-0.612499999999978,0.289655172413583,-0.616666666666674,0.289655172413583,-0.608333333333283,0.296551724137700,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,-0.000000000000000,2 -779,784,791,4849,0.282758620689465,-0.604166666666641,0.289655172413583,-0.608333333333283,0.296551724137700,-0.604166666666641,0.289655172413583,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 -780,787,792,11869,0.296551724137700,-0.645833333333359,0.303448275861818,-0.641666666666717,0.310344827585935,-0.645833333333359,0.303448275861818,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 -781,786,788,793,0.296551724137700,-0.637500000000022,0.303448275861818,-0.641666666666717,0.303448275861818,-0.633333333333326,0.310344827585935,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -782,787,789,794,0.296551724137700,-0.629166666666685,0.303448275861818,-0.633333333333326,0.303448275861818,-0.625000000000043,0.310344827585935,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 -783,788,790,795,0.296551724137700,-0.620833333333359,0.303448275861818,-0.625000000000043,0.303448275861818,-0.616666666666674,0.310344827585935,-0.620833333333359,-0.008333333333370,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 -784,789,791,796,0.296551724137700,-0.612499999999978,0.303448275861818,-0.616666666666674,0.303448275861818,-0.608333333333283,0.310344827585935,-0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,-0.000000000000000,2 -785,790,797,4863,0.296551724137700,-0.604166666666641,0.303448275861818,-0.608333333333283,0.310344827585935,-0.604166666666641,0.303448275861818,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 -786,793,798,11869,0.310344827585935,-0.645833333333359,0.317241379310053,-0.641666666666717,0.324137931034170,-0.645833333333359,0.317241379310053,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448235,1 -787,792,794,799,0.310344827585935,-0.637500000000022,0.317241379310053,-0.641666666666717,0.317241379310053,-0.633333333333326,0.324137931034170,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -788,793,795,800,0.310344827585935,-0.629166666666685,0.317241379310053,-0.633333333333326,0.317241379310053,-0.625000000000043,0.324137931034170,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 -789,794,796,801,0.310344827585935,-0.620833333333359,0.317241379310053,-0.625000000000043,0.317241379310053,-0.616666666666674,0.324137931034170,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 -790,795,797,802,0.310344827585935,-0.612499999999978,0.317241379310053,-0.616666666666674,0.317241379310053,-0.608333333333283,0.324137931034170,-0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -791,796,803,4877,0.310344827585935,-0.604166666666641,0.317241379310053,-0.608333333333283,0.324137931034170,-0.604166666666641,0.317241379310053,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 -792,799,804,11869,0.324137931034170,-0.645833333333359,0.331034482758288,-0.641666666666717,0.337931034482406,-0.645833333333359,0.331034482758288,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 -793,798,800,805,0.324137931034170,-0.637500000000022,0.331034482758288,-0.641666666666717,0.331034482758288,-0.633333333333326,0.337931034482406,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -794,799,801,806,0.324137931034170,-0.629166666666685,0.331034482758288,-0.633333333333326,0.331034482758288,-0.625000000000044,0.337931034482406,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333282,0.000000000000000,2 -795,800,802,807,0.324137931034170,-0.620833333333359,0.331034482758288,-0.625000000000044,0.331034482758288,-0.616666666666674,0.337931034482406,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 -796,801,803,808,0.324137931034170,-0.612499999999978,0.331034482758288,-0.616666666666674,0.331034482758288,-0.608333333333283,0.337931034482406,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -797,802,809,4891,0.324137931034170,-0.604166666666641,0.331034482758288,-0.608333333333283,0.337931034482406,-0.604166666666641,0.331034482758288,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 -798,805,810,11869,0.337931034482406,-0.645833333333359,0.344827586206523,-0.641666666666717,0.351724137930641,-0.645833333333359,0.344827586206523,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 -799,804,806,811,0.337931034482406,-0.637500000000022,0.344827586206523,-0.641666666666717,0.344827586206523,-0.633333333333326,0.351724137930641,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -800,805,807,812,0.337931034482406,-0.629166666666685,0.344827586206523,-0.633333333333326,0.344827586206523,-0.625000000000044,0.351724137930641,-0.629166666666685,-0.008333333333282,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 -801,806,808,813,0.337931034482406,-0.620833333333359,0.344827586206523,-0.625000000000044,0.344827586206523,-0.616666666666674,0.351724137930641,-0.620833333333359,-0.008333333333369,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 -802,807,809,814,0.337931034482406,-0.612499999999978,0.344827586206523,-0.616666666666674,0.344827586206523,-0.608333333333283,0.351724137930641,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -803,808,815,4905,0.337931034482406,-0.604166666666641,0.344827586206523,-0.608333333333283,0.351724137930641,-0.604166666666641,0.344827586206523,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 -804,811,816,11869,0.351724137930641,-0.645833333333359,0.358620689654758,-0.641666666666717,0.365517241378876,-0.645833333333359,0.358620689654758,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448235,1 -805,810,812,817,0.351724137930641,-0.637500000000022,0.358620689654758,-0.641666666666717,0.358620689654758,-0.633333333333326,0.365517241378876,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -806,811,813,818,0.351724137930641,-0.629166666666685,0.358620689654758,-0.633333333333326,0.358620689654758,-0.625000000000044,0.365517241378876,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333283,-0.000000000000000,2 -807,812,814,819,0.351724137930641,-0.620833333333359,0.358620689654758,-0.625000000000044,0.358620689654758,-0.616666666666674,0.365517241378876,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333370,0.000000000000000,2 -808,813,815,820,0.351724137930641,-0.612499999999978,0.358620689654758,-0.616666666666674,0.358620689654758,-0.608333333333283,0.365517241378876,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -809,814,821,4919,0.351724137930641,-0.604166666666641,0.358620689654758,-0.608333333333283,0.365517241378876,-0.604166666666641,0.358620689654758,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 -810,817,822,11869,0.365517241378876,-0.645833333333359,0.372413793102993,-0.641666666666717,0.379310344827111,-0.645833333333359,0.372413793102993,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 -811,816,818,823,0.365517241378876,-0.637500000000022,0.372413793102993,-0.641666666666717,0.372413793102993,-0.633333333333326,0.379310344827111,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,-0.000000000000000,2 -812,817,819,824,0.365517241378876,-0.629166666666685,0.372413793102993,-0.633333333333326,0.372413793102993,-0.625000000000043,0.379310344827111,-0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 -813,818,820,825,0.365517241378876,-0.620833333333359,0.372413793102993,-0.625000000000043,0.372413793102993,-0.616666666666674,0.379310344827111,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 -814,819,821,826,0.365517241378876,-0.612499999999978,0.372413793102993,-0.616666666666674,0.372413793102993,-0.608333333333283,0.379310344827111,-0.612499999999979,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -815,820,827,4933,0.365517241378876,-0.604166666666641,0.372413793102993,-0.608333333333283,0.379310344827111,-0.604166666666641,0.372413793102993,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 -816,823,828,11869,0.379310344827111,-0.645833333333359,0.386206896551228,-0.641666666666717,0.393103448275346,-0.645833333333359,0.386206896551228,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,1 -817,822,824,829,0.379310344827111,-0.637500000000022,0.386206896551228,-0.641666666666717,0.386206896551228,-0.633333333333326,0.393103448275346,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,-0.000000000000000,2 -818,823,825,830,0.379310344827111,-0.629166666666685,0.386206896551228,-0.633333333333326,0.386206896551228,-0.625000000000043,0.393103448275346,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333283,0.000000000000000,2 -819,824,826,831,0.379310344827111,-0.620833333333359,0.386206896551228,-0.625000000000043,0.386206896551228,-0.616666666666674,0.393103448275346,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.008333333333369,0.000000000000000,2 -820,825,827,832,0.379310344827111,-0.612499999999979,0.386206896551228,-0.616666666666674,0.386206896551228,-0.608333333333283,0.393103448275346,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.008333333333391,0.000000000000000,2 -821,826,833,4947,0.379310344827111,-0.604166666666641,0.386206896551228,-0.608333333333283,0.393103448275346,-0.604166666666641,0.386206896551228,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448235,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448235,2 -822,829,834,11869,0.393103448275346,-0.645833333333359,0.399999999999487,-0.641666666666717,0.406896551723629,-0.645833333333359,0.399999999999487,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448283,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448283,1 -823,828,830,835,0.393103448275346,-0.637500000000022,0.399999999999487,-0.641666666666717,0.399999999999487,-0.633333333333326,0.406896551723629,-0.637500000000022,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.008333333333391,0.000000000000000,2 -824,829,831,836,0.393103448275346,-0.629166666666685,0.399999999999487,-0.633333333333326,0.399999999999487,-0.625000000000043,0.406896551723629,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.008333333333283,0.000000000000000,2 -825,830,832,837,0.393103448275346,-0.620833333333359,0.399999999999487,-0.625000000000043,0.399999999999487,-0.616666666666674,0.406896551723629,-0.620833333333359,-0.008333333333369,-0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.008333333333369,-0.000000000000000,2 -826,831,833,838,0.393103448275346,-0.612499999999978,0.399999999999487,-0.616666666666674,0.399999999999487,-0.608333333333283,0.406896551723629,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.008333333333391,0.000000000000000,2 -827,832,839,4961,0.393103448275346,-0.604166666666641,0.399999999999487,-0.608333333333283,0.406896551723629,-0.604166666666641,0.399999999999487,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448283,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448283,2 -828,835,840,11869,0.406896551723629,-0.645833333333359,0.413793103447786,-0.641666666666717,0.420689655171942,-0.645833333333359,0.413793103447786,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448313,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448313,1 -829,834,836,841,0.406896551723629,-0.637500000000022,0.413793103447786,-0.641666666666717,0.413793103447786,-0.633333333333326,0.420689655171942,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333391,0.000000000000000,2 -830,835,837,842,0.406896551723629,-0.629166666666685,0.413793103447786,-0.633333333333326,0.413793103447786,-0.625000000000043,0.420689655171942,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333283,0.000000000000000,2 -831,836,838,843,0.406896551723629,-0.620833333333359,0.413793103447786,-0.625000000000043,0.413793103447786,-0.616666666666674,0.420689655171942,-0.620833333333359,-0.008333333333369,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333369,0.000000000000000,2 -832,837,839,844,0.406896551723629,-0.612499999999978,0.413793103447786,-0.616666666666674,0.413793103447786,-0.608333333333283,0.420689655171942,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333391,0.000000000000000,2 -833,838,845,4975,0.406896551723629,-0.604166666666641,0.413793103447786,-0.608333333333283,0.420689655171942,-0.604166666666641,0.413793103447786,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448313,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448313,2 -834,841,846,11869,0.420689655171942,-0.645833333333359,0.427586206896100,-0.641666666666717,0.434482758620257,-0.645833333333359,0.427586206896100,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448315,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448315,1 -835,840,842,847,0.420689655171942,-0.637500000000022,0.427586206896100,-0.641666666666717,0.427586206896100,-0.633333333333326,0.434482758620257,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333391,0.000000000000000,2 -836,841,843,848,0.420689655171942,-0.629166666666685,0.427586206896100,-0.633333333333326,0.427586206896100,-0.625000000000044,0.434482758620257,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333283,0.000000000000000,2 -837,842,844,849,0.420689655171942,-0.620833333333359,0.427586206896100,-0.625000000000044,0.427586206896100,-0.616666666666674,0.434482758620257,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333370,0.000000000000000,2 -838,843,845,850,0.420689655171942,-0.612499999999978,0.427586206896100,-0.616666666666674,0.427586206896100,-0.608333333333283,0.434482758620257,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.008333333333391,0.000000000000000,2 -839,844,851,4989,0.420689655171942,-0.604166666666641,0.427586206896100,-0.608333333333283,0.434482758620257,-0.604166666666641,0.427586206896100,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448315,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448315,2 -840,847,852,11869,0.434482758620257,-0.645833333333359,0.441379310344412,-0.641666666666717,0.448275862068567,-0.645833333333359,0.441379310344412,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448310,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448310,1 -841,846,848,853,0.434482758620257,-0.637500000000022,0.441379310344412,-0.641666666666717,0.441379310344412,-0.633333333333326,0.448275862068567,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.008333333333391,0.000000000000000,2 -842,847,849,854,0.434482758620257,-0.629166666666685,0.441379310344412,-0.633333333333326,0.441379310344412,-0.625000000000043,0.448275862068567,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.008333333333283,0.000000000000000,2 -843,848,850,855,0.434482758620257,-0.620833333333359,0.441379310344412,-0.625000000000043,0.441379310344412,-0.616666666666674,0.448275862068567,-0.620833333333359,-0.008333333333370,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.008333333333369,0.000000000000000,2 -844,849,851,856,0.434482758620257,-0.612499999999978,0.441379310344412,-0.616666666666674,0.441379310344412,-0.608333333333283,0.448275862068567,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.008333333333391,0.000000000000000,2 -845,850,857,5003,0.434482758620257,-0.604166666666641,0.441379310344412,-0.608333333333283,0.448275862068567,-0.604166666666641,0.441379310344412,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448310,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448310,2 -846,853,858,11869,0.448275862068567,-0.645833333333359,0.455172413792722,-0.641666666666717,0.462068965516876,-0.645833333333359,0.455172413792722,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,1 -847,852,854,859,0.448275862068567,-0.637500000000022,0.455172413792722,-0.641666666666717,0.455172413792722,-0.633333333333326,0.462068965516876,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.008333333333391,0.000000000000000,2 -848,853,855,860,0.448275862068567,-0.629166666666685,0.455172413792722,-0.633333333333326,0.455172413792722,-0.625000000000043,0.462068965516876,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333283,-0.000000000000000,2 -849,854,856,861,0.448275862068567,-0.620833333333359,0.455172413792722,-0.625000000000043,0.455172413792722,-0.616666666666674,0.462068965516876,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333369,0.000000000000000,2 -850,855,857,862,0.448275862068567,-0.612499999999978,0.455172413792722,-0.616666666666674,0.455172413792722,-0.608333333333283,0.462068965516876,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333391,0.000000000000000,2 -851,856,863,5017,0.448275862068567,-0.604166666666641,0.455172413792722,-0.608333333333283,0.462068965516876,-0.604166666666641,0.455172413792722,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,2 -852,859,864,11869,0.462068965516876,-0.645833333333359,0.468965517241031,-0.641666666666717,0.475862068965185,-0.645833333333359,0.468965517241031,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,1 -853,858,860,865,0.462068965516876,-0.637500000000022,0.468965517241031,-0.641666666666717,0.468965517241031,-0.633333333333326,0.475862068965185,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333391,0.000000000000000,2 -854,859,861,866,0.462068965516876,-0.629166666666685,0.468965517241031,-0.633333333333326,0.468965517241031,-0.625000000000043,0.475862068965185,-0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,2 -855,860,862,867,0.462068965516876,-0.620833333333359,0.468965517241031,-0.625000000000043,0.468965517241031,-0.616666666666674,0.475862068965185,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333369,0.000000000000000,2 -856,861,863,868,0.462068965516876,-0.612499999999978,0.468965517241031,-0.616666666666674,0.468965517241031,-0.608333333333283,0.475862068965185,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333391,0.000000000000000,2 -857,862,869,5031,0.462068965516876,-0.604166666666641,0.468965517241031,-0.608333333333283,0.475862068965185,-0.604166666666641,0.468965517241031,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,2 -858,865,870,11869,0.475862068965185,-0.645833333333359,0.482758620689341,-0.641666666666717,0.489655172413498,-0.645833333333359,0.482758620689341,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448313,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448313,1 -859,864,866,871,0.475862068965185,-0.637500000000022,0.482758620689341,-0.641666666666717,0.482758620689341,-0.633333333333326,0.489655172413498,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333391,-0.000000000000000,2 -860,865,867,872,0.475862068965185,-0.629166666666685,0.482758620689341,-0.633333333333326,0.482758620689341,-0.625000000000043,0.489655172413498,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333283,0.000000000000000,2 -861,866,868,873,0.475862068965185,-0.620833333333359,0.482758620689341,-0.625000000000043,0.482758620689341,-0.616666666666674,0.489655172413498,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333369,-0.000000000000000,2 -862,867,869,874,0.475862068965185,-0.612499999999978,0.482758620689341,-0.616666666666674,0.482758620689341,-0.608333333333283,0.489655172413498,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.008333333333391,0.000000000000000,2 -863,868,875,5045,0.475862068965185,-0.604166666666641,0.482758620689341,-0.608333333333283,0.489655172413498,-0.604166666666641,0.482758620689341,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448313,0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448313,2 -864,871,876,11869,0.489655172413498,-0.645833333333359,0.496551724137666,-0.641666666666717,0.503448275861834,-0.645833333333359,0.496551724137666,-0.650000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,0.013793103448336,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448336,1 -865,870,872,877,0.489655172413498,-0.637500000000022,0.496551724137666,-0.641666666666717,0.496551724137666,-0.633333333333326,0.503448275861834,-0.637500000000022,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.008333333333391,0.000000000000000,2 -866,871,873,878,0.489655172413498,-0.629166666666685,0.496551724137666,-0.633333333333326,0.496551724137666,-0.625000000000043,0.503448275861834,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.008333333333283,0.000000000000000,2 -867,872,874,879,0.489655172413498,-0.620833333333359,0.496551724137666,-0.625000000000043,0.496551724137666,-0.616666666666674,0.503448275861834,-0.620833333333359,-0.008333333333369,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.008333333333369,0.000000000000000,2 -868,873,875,880,0.489655172413498,-0.612499999999978,0.496551724137666,-0.616666666666674,0.496551724137666,-0.608333333333283,0.503448275861834,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.008333333333391,0.000000000000000,2 -869,874,881,5059,0.489655172413498,-0.604166666666641,0.496551724137666,-0.608333333333283,0.503448275861834,-0.604166666666641,0.496551724137666,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448336,2 -870,877,882,11869,0.503448275861834,-0.645833333333359,0.510344827585989,-0.641666666666717,0.517241379310145,-0.645833333333359,0.510344827585989,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,1 -871,876,878,883,0.503448275861834,-0.637500000000022,0.510344827585989,-0.641666666666717,0.510344827585989,-0.633333333333326,0.517241379310145,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 -872,877,879,884,0.503448275861834,-0.629166666666685,0.510344827585989,-0.633333333333326,0.510344827585989,-0.625000000000043,0.517241379310145,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333283,0.000000000000000,2 -873,878,880,885,0.503448275861834,-0.620833333333359,0.510344827585989,-0.625000000000043,0.510344827585989,-0.616666666666674,0.517241379310145,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333369,0.000000000000000,2 -874,879,881,886,0.503448275861834,-0.612499999999978,0.510344827585989,-0.616666666666674,0.510344827585989,-0.608333333333283,0.517241379310145,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.008333333333391,0.000000000000000,2 -875,880,887,5073,0.503448275861834,-0.604166666666641,0.510344827585989,-0.608333333333283,0.517241379310145,-0.604166666666641,0.510344827585989,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448311,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448311,2 -876,883,888,11869,0.517241379310145,-0.645833333333359,0.524137931034299,-0.641666666666717,0.531034482758453,-0.645833333333359,0.524137931034299,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448308,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448308,1 -877,882,884,889,0.517241379310145,-0.637500000000022,0.524137931034299,-0.641666666666717,0.524137931034299,-0.633333333333326,0.531034482758453,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.008333333333391,-0.000000000000000,2 -878,883,885,890,0.517241379310145,-0.629166666666685,0.524137931034299,-0.633333333333326,0.524137931034299,-0.625000000000043,0.531034482758453,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.008333333333283,0.000000000000000,2 -879,884,886,891,0.517241379310145,-0.620833333333359,0.524137931034299,-0.625000000000043,0.524137931034299,-0.616666666666674,0.531034482758453,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.008333333333369,-0.000000000000000,2 -880,885,887,892,0.517241379310145,-0.612499999999978,0.524137931034299,-0.616666666666674,0.524137931034299,-0.608333333333283,0.531034482758453,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.008333333333391,0.000000000000000,2 -881,886,893,5087,0.517241379310145,-0.604166666666641,0.524137931034299,-0.608333333333283,0.531034482758453,-0.604166666666641,0.524137931034299,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448308,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448308,2 -882,889,894,11869,0.531034482758453,-0.645833333333359,0.537931034482601,-0.641666666666717,0.544827586206749,-0.645833333333359,0.537931034482601,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448296,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448296,1 -883,888,890,895,0.531034482758453,-0.637500000000022,0.537931034482601,-0.641666666666717,0.537931034482601,-0.633333333333326,0.544827586206749,-0.637500000000022,-0.008333333333391,0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.008333333333391,0.000000000000000,2 -884,889,891,896,0.531034482758453,-0.629166666666685,0.537931034482601,-0.633333333333326,0.537931034482601,-0.625000000000043,0.544827586206749,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.008333333333283,-0.000000000000000,2 -885,890,892,897,0.531034482758453,-0.620833333333359,0.537931034482601,-0.625000000000043,0.537931034482601,-0.616666666666674,0.544827586206749,-0.620833333333359,-0.008333333333369,0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.008333333333370,0.000000000000000,2 -886,891,893,898,0.531034482758453,-0.612499999999978,0.537931034482601,-0.616666666666674,0.537931034482601,-0.608333333333283,0.544827586206749,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.008333333333391,0.000000000000000,2 -887,892,899,5101,0.531034482758453,-0.604166666666641,0.537931034482601,-0.608333333333283,0.544827586206749,-0.604166666666641,0.537931034482601,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448296,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448296,2 -888,895,900,11869,0.544827586206749,-0.645833333333359,0.551724137930900,-0.641666666666717,0.558620689655051,-0.645833333333359,0.551724137930900,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448302,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448302,1 -889,894,896,901,0.544827586206749,-0.637500000000022,0.551724137930900,-0.641666666666717,0.551724137930900,-0.633333333333326,0.558620689655051,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.008333333333391,-0.000000000000000,2 -890,895,897,902,0.544827586206749,-0.629166666666685,0.551724137930900,-0.633333333333326,0.551724137930900,-0.625000000000043,0.558620689655051,-0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.008333333333283,0.000000000000000,2 -891,896,898,903,0.544827586206749,-0.620833333333359,0.551724137930900,-0.625000000000043,0.551724137930900,-0.616666666666674,0.558620689655051,-0.620833333333359,-0.008333333333370,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.008333333333369,0.000000000000000,2 -892,897,899,904,0.544827586206749,-0.612499999999978,0.551724137930900,-0.616666666666674,0.551724137930900,-0.608333333333283,0.558620689655051,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.008333333333391,0.000000000000000,2 -893,898,905,5115,0.544827586206749,-0.604166666666641,0.551724137930900,-0.608333333333283,0.558620689655051,-0.604166666666641,0.551724137930900,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448302,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448302,2 -894,901,906,11869,0.558620689655051,-0.645833333333359,0.565517241379205,-0.641666666666717,0.572413793103360,-0.645833333333359,0.565517241379205,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,1 -895,900,902,907,0.558620689655051,-0.637500000000022,0.565517241379205,-0.641666666666717,0.565517241379206,-0.633333333333326,0.572413793103360,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333391,-0.000000000000000,2 -896,901,903,908,0.558620689655051,-0.629166666666685,0.565517241379206,-0.633333333333326,0.565517241379205,-0.625000000000043,0.572413793103360,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333283,0.000000000000000,2 -897,902,904,909,0.558620689655051,-0.620833333333359,0.565517241379205,-0.625000000000043,0.565517241379205,-0.616666666666674,0.572413793103360,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333369,0.000000000000000,2 -898,903,905,910,0.558620689655051,-0.612499999999978,0.565517241379205,-0.616666666666674,0.565517241379205,-0.608333333333283,0.572413793103360,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.008333333333391,0.000000000000000,2 -899,904,911,5129,0.558620689655051,-0.604166666666641,0.565517241379205,-0.608333333333283,0.572413793103360,-0.604166666666641,0.565517241379205,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448309,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448309,2 -900,907,912,11869,0.572413793103360,-0.645833333333359,0.579310344827519,-0.641666666666717,0.586206896551678,-0.645833333333359,0.579310344827519,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448318,0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448318,1 -901,906,908,913,0.572413793103360,-0.637500000000022,0.579310344827519,-0.641666666666717,0.579310344827519,-0.633333333333326,0.586206896551678,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.008333333333391,0.000000000000000,2 -902,907,909,914,0.572413793103360,-0.629166666666685,0.579310344827519,-0.633333333333326,0.579310344827519,-0.625000000000043,0.586206896551678,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.008333333333283,-0.000000000000000,2 -903,908,910,915,0.572413793103360,-0.620833333333359,0.579310344827519,-0.625000000000043,0.579310344827519,-0.616666666666674,0.586206896551678,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.008333333333369,-0.000000000000000,2 -904,909,911,916,0.572413793103360,-0.612499999999978,0.579310344827519,-0.616666666666674,0.579310344827519,-0.608333333333283,0.586206896551678,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.008333333333391,0.000000000000000,2 -905,910,917,5143,0.572413793103360,-0.604166666666641,0.579310344827519,-0.608333333333283,0.586206896551678,-0.604166666666641,0.579310344827519,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448318,0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448318,2 -906,913,918,11869,0.586206896551678,-0.645833333333359,0.593103448275839,-0.641666666666717,0.600000000000000,-0.645833333333359,0.593103448275839,-0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448322,0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448322,1 -907,912,914,919,0.586206896551678,-0.637500000000022,0.593103448275839,-0.641666666666717,0.593103448275839,-0.633333333333326,0.600000000000000,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,0.008333333333391,0.000000000000000,2 -908,913,915,920,0.586206896551678,-0.629166666666685,0.593103448275839,-0.633333333333326,0.593103448275839,-0.625000000000043,0.600000000000000,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,0.008333333333283,0.000000000000000,2 -909,914,916,921,0.586206896551678,-0.620833333333359,0.593103448275839,-0.625000000000043,0.593103448275839,-0.616666666666674,0.600000000000000,-0.620833333333359,-0.008333333333369,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,0.008333333333369,0.000000000000000,2 -910,915,917,922,0.586206896551678,-0.612499999999978,0.593103448275839,-0.616666666666674,0.593103448275839,-0.608333333333283,0.600000000000000,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,0.008333333333391,0.000000000000000,2 -911,916,923,5157,0.586206896551678,-0.604166666666641,0.593103448275839,-0.608333333333283,0.600000000000000,-0.604166666666641,0.593103448275839,-0.600000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,-0.013793103448322,0.008333333333283,-0.000000000000000,-0.000000000000000,0.013793103448322,2 -912,919,924,11869,0.600000000000000,-0.645833333333359,0.606249999999978,-0.641666666666717,0.612499999999957,-0.645833333333359,0.606249999999978,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.012499999999957,0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012499999999957,1 -913,918,920,925,0.600000000000000,-0.637500000000022,0.606249999999978,-0.641666666666717,0.606249999999978,-0.633333333333326,0.612499999999957,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,2 -914,919,921,926,0.600000000000000,-0.629166666666685,0.606249999999978,-0.633333333333326,0.606249999999978,-0.625000000000043,0.612499999999957,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.008333333333283,0.000000000000000,2 -915,920,922,927,0.600000000000000,-0.620833333333359,0.606249999999978,-0.625000000000043,0.606249999999978,-0.616666666666674,0.612499999999957,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.008333333333369,-0.000000000000000,2 -916,921,923,928,0.600000000000000,-0.612499999999978,0.606249999999978,-0.616666666666674,0.606249999999978,-0.608333333333283,0.612499999999957,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999956,0.008333333333391,0.000000000000000,2 -917,922,929,942,0.600000000000000,-0.604166666666641,0.606249999999978,-0.608333333333283,0.612499999999957,-0.604166666666641,0.606249999999978,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.012499999999956,0.008333333333283,-0.000000000000000,0.000000000000000,0.012499999999957,2 -918,925,930,11869,0.612499999999957,-0.645833333333359,0.618749999999957,-0.641666666666717,0.624999999999956,-0.645833333333359,0.618749999999957,-0.650000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.012500000000000,0.008333333333283,0.000000000000000,-0.000000000000000,-0.012500000000000,1 -919,924,926,931,0.612499999999957,-0.637500000000022,0.618749999999957,-0.641666666666717,0.618749999999957,-0.633333333333326,0.624999999999956,-0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333391,-0.000000000000000,2 -920,925,927,932,0.612499999999957,-0.629166666666685,0.618749999999957,-0.633333333333326,0.618749999999957,-0.625000000000043,0.624999999999956,-0.629166666666685,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333283,-0.000000000000000,2 -921,926,928,933,0.612499999999957,-0.620833333333359,0.618749999999957,-0.625000000000043,0.618749999999957,-0.616666666666674,0.624999999999957,-0.620833333333359,-0.008333333333369,0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333369,0.000000000000000,2 -922,927,929,934,0.612499999999957,-0.612499999999978,0.618749999999957,-0.616666666666674,0.618749999999957,-0.608333333333283,0.624999999999957,-0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333391,-0.000000000000000,2 -923,928,935,956,0.612499999999957,-0.604166666666641,0.618749999999957,-0.608333333333283,0.624999999999957,-0.604166666666641,0.618749999999957,-0.600000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.012500000000000,0.008333333333283,0.000000000000000,0.000000000000000,0.012500000000000,2 -924,931,936,11869,0.624999999999956,-0.645833333333359,0.631250000000000,-0.641666666666717,0.637500000000043,-0.645833333333359,0.631250000000000,-0.650000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.012500000000087,0.008333333333283,0.000000000000000,-0.000000000000000,-0.012500000000087,1 -925,930,932,937,0.624999999999956,-0.637500000000022,0.631250000000000,-0.641666666666717,0.631250000000000,-0.633333333333326,0.637500000000043,-0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,0.008333333333391,0.000000000000000,2 -926,931,933,938,0.624999999999956,-0.629166666666685,0.631250000000000,-0.633333333333326,0.631250000000000,-0.625000000000043,0.637500000000043,-0.629166666666685,-0.008333333333283,0.000000000000000,0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.008333333333283,0.000000000000000,2 -927,932,934,939,0.624999999999957,-0.620833333333359,0.631250000000000,-0.625000000000043,0.631250000000000,-0.616666666666674,0.637500000000043,-0.620833333333359,-0.008333333333369,-0.000000000000000,-0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,0.008333333333369,0.000000000000000,2 -928,933,935,940,0.624999999999957,-0.612499999999978,0.631250000000000,-0.616666666666674,0.631250000000000,-0.608333333333283,0.637500000000043,-0.612499999999978,-0.008333333333391,0.000000000000000,0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.008333333333391,0.000000000000000,2 -929,934,941,970,0.624999999999957,-0.604166666666641,0.631250000000000,-0.608333333333283,0.637500000000043,-0.604166666666641,0.631250000000000,-0.600000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.008333333333283,-0.000000000000000,0.000000000000000,0.012500000000087,2 -930,937,11869,0.637500000000043,-0.645833333333359,0.643750000000022,-0.641666666666717,0.650000000000000,-0.645833333333359,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.012499999999957,0.008333333333283,0.000000000000000,1 -931,936,938,11869,0.637500000000043,-0.637500000000022,0.643750000000022,-0.641666666666717,0.643750000000022,-0.633333333333326,0.650000000000000,-0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,1 -932,937,939,11869,0.637500000000043,-0.629166666666685,0.643750000000022,-0.633333333333326,0.643750000000022,-0.625000000000043,0.650000000000000,-0.629166666666685,-0.008333333333283,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333283,0.000000000000000,1 -933,938,940,11869,0.637500000000043,-0.620833333333359,0.643750000000022,-0.625000000000043,0.643750000000022,-0.616666666666674,0.650000000000000,-0.620833333333359,-0.008333333333369,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333369,0.000000000000000,1 -934,939,941,11869,0.637500000000043,-0.612499999999978,0.643750000000022,-0.616666666666674,0.643750000000022,-0.608333333333283,0.650000000000000,-0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,1 -935,940,984,11869,0.637500000000043,-0.604166666666641,0.643750000000022,-0.608333333333283,0.643750000000022,-0.600000000000000,0.650000000000000,-0.604166666666641,-0.008333333333283,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333283,-0.000000000000000,1 -923,943,956,5157,0.606249999999978,-0.600000000000000,0.606249999999978,-0.585714285714255,0.612499999999957,-0.592857142857127,0.600000000000000,-0.592857142857127,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285745,0.000000000000000,-0.014285714285745,-0.000000000000000,2 -942,944,957,5158,0.606249999999978,-0.585714285714255,0.606249999999978,-0.571428571428537,0.612499999999957,-0.578571428571396,0.600000000000000,-0.578571428571396,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285717,-0.000000000000000,-0.014285714285717,-0.000000000000000,2 -943,945,958,5159,0.606249999999978,-0.571428571428537,0.606249999999978,-0.557142857142860,0.612499999999957,-0.564285714285699,0.600000000000000,-0.564285714285699,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999956,0.014285714285677,0.000000000000000,-0.014285714285677,-0.000000000000000,2 -944,946,959,5160,0.606249999999978,-0.557142857142860,0.606249999999978,-0.542857142857183,0.612499999999957,-0.550000000000022,0.600000000000000,-0.550000000000022,-0.000000000000000,-0.012499999999956,0.000000000000000,0.012499999999957,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,2 -945,947,960,5161,0.606249999999978,-0.542857142857183,0.606249999999978,-0.528571428571506,0.612499999999957,-0.535714285714345,0.600000000000000,-0.535714285714345,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,2 -946,948,961,5162,0.606249999999978,-0.528571428571506,0.606249999999978,-0.514285714285913,0.612499999999957,-0.521428571428709,0.600000000000000,-0.521428571428709,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285594,0.000000000000000,-0.014285714285593,-0.000000000000000,2 -947,949,962,5163,0.606249999999978,-0.514285714285913,0.606249999999978,-0.500000000000293,0.612499999999957,-0.507142857143102,0.600000000000000,-0.507142857143103,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285620,0.000000000000000,-0.014285714285620,-0.000000000000000,2 -948,950,963,5164,0.606249999999978,-0.500000000000293,0.606249999999978,-0.485714285714549,0.612499999999957,-0.492857142857421,0.600000000000000,-0.492857142857421,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285744,0.000000000000000,-0.014285714285744,-0.000000000000000,2 -949,951,964,5165,0.606249999999978,-0.485714285714549,0.606249999999978,-0.471428571428794,0.612499999999957,-0.478571428571672,0.600000000000000,-0.478571428571672,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285755,-0.000000000000000,-0.014285714285754,-0.000000000000000,2 -950,952,965,5166,0.606249999999978,-0.471428571428794,0.606249999999978,-0.457142857143034,0.612499999999957,-0.464285714285914,0.600000000000000,-0.464285714285914,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285761,0.000000000000000,-0.014285714285761,-0.000000000000000,2 -951,953,966,5167,0.606249999999978,-0.457142857143034,0.606249999999978,-0.442857142857270,0.612499999999957,-0.450000000000152,0.600000000000000,-0.450000000000152,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285764,-0.000000000000000,-0.014285714285764,-0.000000000000000,2 -952,954,967,5168,0.606249999999978,-0.442857142857270,0.606249999999978,-0.428571428571509,0.612499999999957,-0.435714285714389,0.600000000000000,-0.435714285714389,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285761,0.000000000000000,-0.014285714285761,-0.000000000000000,2 -953,955,968,5169,0.606249999999978,-0.428571428571509,0.606249999999978,-0.414285714285756,0.612499999999957,-0.421428571428633,0.600000000000000,-0.421428571428633,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285753,-0.000000000000000,-0.014285714285753,-0.000000000000000,2 -954,969,998,5170,0.606249999999978,-0.414285714285756,0.612499999999957,-0.407142857142878,0.606249999999978,-0.400000000000000,0.600000000000000,-0.407142857142878,-0.000000000000000,-0.012499999999957,0.014285714285756,0.000000000000000,0.000000000000000,0.012499999999957,-0.014285714285756,0.000000000000000,2 -929,942,957,970,0.618749999999957,-0.600000000000000,0.612499999999957,-0.592857142857127,0.618749999999957,-0.585714285714255,0.624999999999957,-0.592857142857127,-0.000000000000000,-0.012500000000000,-0.014285714285745,-0.000000000000000,0.000000000000000,0.012500000000000,0.014285714285745,0.000000000000000,2 -943,956,958,971,0.612499999999957,-0.578571428571396,0.618749999999957,-0.585714285714255,0.618749999999957,-0.571428571428537,0.624999999999957,-0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285717,-0.000000000000000,2 -944,957,959,972,0.612499999999957,-0.564285714285699,0.618749999999957,-0.571428571428537,0.618749999999957,-0.557142857142860,0.624999999999957,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285677,0.000000000000000,2 -945,958,960,973,0.612499999999957,-0.550000000000022,0.618749999999957,-0.557142857142860,0.618749999999957,-0.542857142857183,0.624999999999956,-0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285677,0.000000000000000,2 -946,959,961,974,0.612499999999957,-0.535714285714345,0.618749999999957,-0.542857142857183,0.618749999999957,-0.528571428571506,0.624999999999956,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285677,-0.000000000000000,2 -947,960,962,975,0.612499999999957,-0.521428571428709,0.618749999999957,-0.528571428571506,0.618749999999957,-0.514285714285913,0.624999999999957,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285593,0.000000000000000,2 -948,961,963,976,0.612499999999957,-0.507142857143102,0.618749999999957,-0.514285714285913,0.618749999999957,-0.500000000000293,0.624999999999957,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285620,0.000000000000000,2 -949,962,964,977,0.612499999999957,-0.492857142857421,0.618749999999957,-0.500000000000293,0.618749999999957,-0.485714285714549,0.624999999999957,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.012500000000000,-0.000000000000000,0.012500000000000,0.014285714285744,0.000000000000000,2 -950,963,965,978,0.612499999999957,-0.478571428571672,0.618749999999957,-0.485714285714549,0.618749999999957,-0.471428571428794,0.624999999999957,-0.478571428571672,-0.014285714285755,0.000000000000000,0.000000000000000,-0.012500000000000,-0.000000000000000,0.012500000000000,0.014285714285755,0.000000000000000,2 -951,964,966,979,0.612499999999957,-0.464285714285914,0.618749999999957,-0.471428571428794,0.618749999999957,-0.457142857143033,0.624999999999957,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285761,0.000000000000000,2 -952,965,967,980,0.612499999999957,-0.450000000000152,0.618749999999957,-0.457142857143033,0.618749999999957,-0.442857142857270,0.624999999999957,-0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285764,0.000000000000000,2 -953,966,968,981,0.612499999999957,-0.435714285714389,0.618749999999957,-0.442857142857270,0.618749999999957,-0.428571428571509,0.624999999999956,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285761,0.000000000000000,2 -954,967,969,982,0.612499999999957,-0.421428571428633,0.618749999999957,-0.428571428571509,0.618749999999957,-0.414285714285756,0.624999999999956,-0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.014285714285753,-0.000000000000000,2 -955,968,983,1057,0.612499999999957,-0.407142857142878,0.618749999999957,-0.414285714285756,0.624999999999957,-0.407142857142878,0.618749999999957,-0.400000000000000,-0.014285714285756,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.014285714285756,-0.000000000000000,0.000000000000000,0.012500000000000,2 -935,956,971,984,0.631250000000000,-0.600000000000000,0.624999999999957,-0.592857142857127,0.631250000000000,-0.585714285714255,0.637500000000043,-0.592857142857127,-0.000000000000000,-0.012500000000087,-0.014285714285745,-0.000000000000000,0.000000000000000,0.012500000000087,0.014285714285745,0.000000000000000,2 -957,970,972,985,0.624999999999957,-0.578571428571396,0.631250000000000,-0.585714285714255,0.631250000000000,-0.571428571428537,0.637500000000043,-0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285717,-0.000000000000000,2 -958,971,973,986,0.624999999999957,-0.564285714285699,0.631250000000000,-0.571428571428537,0.631250000000000,-0.557142857142860,0.637500000000043,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,0.014285714285677,-0.000000000000000,2 -959,972,974,987,0.624999999999956,-0.550000000000022,0.631250000000000,-0.557142857142860,0.631250000000000,-0.542857142857183,0.637500000000043,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285677,0.000000000000000,2 -960,973,975,988,0.624999999999956,-0.535714285714345,0.631250000000000,-0.542857142857183,0.631250000000000,-0.528571428571506,0.637500000000043,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285677,-0.000000000000000,2 -961,974,976,989,0.624999999999957,-0.521428571428709,0.631250000000000,-0.528571428571506,0.631250000000000,-0.514285714285913,0.637500000000043,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,0.014285714285594,0.000000000000000,2 -962,975,977,990,0.624999999999957,-0.507142857143103,0.631250000000000,-0.514285714285913,0.631250000000000,-0.500000000000293,0.637500000000043,-0.507142857143102,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285620,0.000000000000000,2 -963,976,978,991,0.624999999999957,-0.492857142857421,0.631250000000000,-0.500000000000293,0.631250000000000,-0.485714285714549,0.637500000000043,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285744,0.000000000000000,2 -964,977,979,992,0.624999999999957,-0.478571428571672,0.631250000000000,-0.485714285714549,0.631250000000000,-0.471428571428794,0.637500000000043,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285755,0.000000000000000,2 -965,978,980,993,0.624999999999957,-0.464285714285914,0.631250000000000,-0.471428571428794,0.631250000000000,-0.457142857143033,0.637500000000043,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285761,0.000000000000000,2 -966,979,981,994,0.624999999999957,-0.450000000000152,0.631250000000000,-0.457142857143033,0.631250000000000,-0.442857142857270,0.637500000000043,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285764,-0.000000000000000,2 -967,980,982,995,0.624999999999956,-0.435714285714389,0.631250000000000,-0.442857142857270,0.631250000000000,-0.428571428571509,0.637500000000043,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285761,0.000000000000000,2 -968,981,983,996,0.624999999999956,-0.421428571428633,0.631250000000000,-0.428571428571509,0.631250000000000,-0.414285714285756,0.637500000000043,-0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.014285714285753,-0.000000000000000,2 -969,982,997,1116,0.624999999999957,-0.407142857142878,0.631250000000000,-0.414285714285756,0.637500000000043,-0.407142857142878,0.631250000000000,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.012500000000087,0.014285714285756,-0.000000000000000,0.000000000000000,0.012500000000087,2 -941,970,985,11869,0.643750000000022,-0.600000000000000,0.637500000000043,-0.592857142857127,0.643750000000022,-0.585714285714255,0.650000000000000,-0.592857142857127,0.000000000000000,-0.012499999999957,-0.014285714285745,-0.000000000000000,-0.000000000000000,0.012499999999957,0.014285714285745,0.000000000000000,1 -971,984,986,11869,0.637500000000043,-0.578571428571396,0.643750000000022,-0.585714285714255,0.643750000000022,-0.571428571428537,0.650000000000000,-0.578571428571396,-0.014285714285717,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285717,0.000000000000000,1 -972,985,987,11869,0.637500000000043,-0.564285714285699,0.643750000000022,-0.571428571428537,0.643750000000022,-0.557142857142860,0.650000000000000,-0.564285714285699,-0.014285714285677,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.014285714285677,0.000000000000000,1 -973,986,988,11869,0.637500000000043,-0.550000000000022,0.643750000000022,-0.557142857142860,0.643750000000022,-0.542857142857183,0.650000000000000,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.012499999999956,-0.000000000000000,0.012499999999957,0.014285714285677,0.000000000000000,1 -974,987,989,11869,0.637500000000043,-0.535714285714345,0.643750000000022,-0.542857142857183,0.643750000000022,-0.528571428571506,0.650000000000000,-0.535714285714345,-0.014285714285677,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285677,0.000000000000000,1 -975,988,990,11869,0.637500000000043,-0.521428571428709,0.643750000000022,-0.528571428571506,0.643750000000022,-0.514285714285913,0.650000000000000,-0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285593,0.000000000000000,1 -976,989,991,11869,0.637500000000043,-0.507142857143102,0.643750000000022,-0.514285714285913,0.643750000000022,-0.500000000000293,0.650000000000000,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285620,0.000000000000000,1 -977,990,992,11869,0.637500000000043,-0.492857142857421,0.643750000000022,-0.500000000000293,0.643750000000022,-0.485714285714549,0.650000000000000,-0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285744,0.000000000000000,1 -978,991,993,11869,0.637500000000043,-0.478571428571672,0.643750000000022,-0.485714285714549,0.643750000000022,-0.471428571428794,0.650000000000000,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285754,0.000000000000000,1 -979,992,994,11869,0.637500000000043,-0.464285714285914,0.643750000000022,-0.471428571428794,0.643750000000022,-0.457142857143034,0.650000000000000,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.014285714285761,0.000000000000000,1 -980,993,995,11869,0.637500000000043,-0.450000000000152,0.643750000000022,-0.457142857143034,0.643750000000022,-0.442857142857270,0.650000000000000,-0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.014285714285764,0.000000000000000,1 -981,994,996,11869,0.637500000000043,-0.435714285714389,0.643750000000022,-0.442857142857270,0.643750000000022,-0.428571428571509,0.650000000000000,-0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.012499999999956,-0.000000000000000,0.012499999999957,0.014285714285761,0.000000000000000,1 -982,995,997,11869,0.637500000000043,-0.421428571428633,0.643750000000022,-0.428571428571509,0.643750000000022,-0.414285714285756,0.650000000000000,-0.421428571428633,-0.014285714285753,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285753,0.000000000000000,1 -983,996,1175,11869,0.637500000000043,-0.407142857142878,0.643750000000022,-0.414285714285756,0.643750000000022,-0.400000000000000,0.650000000000000,-0.407142857142878,-0.014285714285756,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.014285714285756,-0.000000000000000,1 -955,999,1057,6823,0.606249999999978,-0.400000000000000,0.606249999999978,-0.386440677966068,0.612499999999957,-0.393220338983034,0.600000000000000,-0.393220338983034,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033932,0.000000000000000,-0.013559322033932,-0.000000000000000,2 -998,1000,1058,6824,0.606249999999978,-0.386440677966068,0.606249999999978,-0.372881355932122,0.612499999999957,-0.379661016949095,0.600000000000000,-0.379661016949095,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033946,-0.000000000000000,-0.013559322033946,0.000000000000000,2 -999,1001,1059,6825,0.606249999999978,-0.372881355932122,0.606249999999978,-0.359322033898204,0.612499999999957,-0.366101694915163,0.600000000000000,-0.366101694915163,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033918,0.000000000000000,-0.013559322033918,0.000000000000000,2 -1000,1002,1060,6826,0.606249999999978,-0.359322033898204,0.606249999999978,-0.345762711864250,0.612499999999957,-0.352542372881227,0.600000000000000,-0.352542372881227,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033954,0.000000000000000,-0.013559322033954,0.000000000000000,2 -1001,1003,1061,6827,0.606249999999978,-0.345762711864250,0.606249999999978,-0.332203389830336,0.612499999999957,-0.338983050847293,0.600000000000000,-0.338983050847293,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999956,0.013559322033914,0.000000000000000,-0.013559322033914,0.000000000000000,2 -1002,1004,1062,6828,0.606249999999978,-0.332203389830336,0.606249999999978,-0.318644067796385,0.612499999999957,-0.325423728813361,0.600000000000000,-0.325423728813361,-0.000000000000000,-0.012499999999956,0.000000000000000,0.012499999999957,0.013559322033951,-0.000000000000000,-0.013559322033950,0.000000000000000,2 -1003,1005,1063,6829,0.606249999999978,-0.318644067796385,0.606249999999978,-0.305084745762457,0.612499999999957,-0.311864406779421,0.600000000000000,-0.311864406779421,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999956,0.013559322033928,0.000000000000000,-0.013559322033928,0.000000000000000,2 -1004,1006,1064,6830,0.606249999999978,-0.305084745762457,0.606249999999978,-0.291525423728521,0.612499999999957,-0.298305084745489,0.600000000000000,-0.298305084745489,-0.000000000000000,-0.012499999999956,-0.000000000000000,0.012499999999957,0.013559322033936,-0.000000000000000,-0.013559322033936,0.000000000000000,2 -1005,1007,1065,6831,0.606249999999978,-0.291525423728521,0.606249999999978,-0.277966101694579,0.612499999999957,-0.284745762711550,0.600000000000000,-0.284745762711550,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033942,-0.000000000000000,-0.013559322033942,0.000000000000000,2 -1006,1008,1066,6832,0.606249999999978,-0.277966101694579,0.606249999999978,-0.264406779660657,0.612499999999957,-0.271186440677618,0.600000000000000,-0.271186440677618,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033922,0.000000000000000,-0.013559322033922,0.000000000000000,2 -1007,1009,1067,6833,0.606249999999978,-0.264406779660657,0.606249999999978,-0.250847457626703,0.612499999999957,-0.257627118643680,0.600000000000000,-0.257627118643680,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033954,0.000000000000000,-0.013559322033954,0.000000000000000,2 -1008,1010,1068,6834,0.606249999999978,-0.250847457626703,0.606249999999978,-0.237288135592793,0.612499999999957,-0.244067796609748,0.600000000000000,-0.244067796609748,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033910,-0.000000000000000,-0.013559322033910,0.000000000000000,2 -1009,1011,1069,6835,0.606249999999978,-0.237288135592793,0.606249999999978,-0.223728813558839,0.612499999999957,-0.230508474575816,0.600000000000000,-0.230508474575816,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033954,-0.000000000000000,-0.013559322033954,0.000000000000000,2 -1010,1012,1070,6836,0.606249999999978,-0.223728813558839,0.606249999999978,-0.210169491524915,0.612499999999957,-0.216949152541877,0.600000000000000,-0.216949152541877,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033924,0.000000000000000,-0.013559322033924,0.000000000000000,2 -1011,1013,1071,6837,0.606249999999978,-0.210169491524915,0.606249999999978,-0.196610169490975,0.612499999999957,-0.203389830507945,0.600000000000000,-0.203389830507945,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033940,-0.000000000000000,-0.013559322033940,0.000000000000000,2 -1012,1014,1072,6838,0.606249999999978,-0.196610169490975,0.606249999999978,-0.183050847457058,0.612499999999957,-0.189830508474016,0.600000000000000,-0.189830508474016,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033917,0.000000000000000,-0.013559322033917,0.000000000000000,2 -1013,1015,1073,6839,0.606249999999978,-0.183050847457058,0.606249999999978,-0.169491525423110,0.612499999999957,-0.176271186440084,0.600000000000000,-0.176271186440084,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033947,0.000000000000000,-0.013559322033947,0.000000000000000,2 -1014,1016,1074,6840,0.606249999999978,-0.169491525423110,0.606249999999978,-0.155932203389179,0.612499999999957,-0.162711864406145,0.600000000000000,-0.162711864406145,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033931,-0.000000000000000,-0.013559322033931,0.000000000000000,2 -1015,1017,1075,6841,0.606249999999978,-0.155932203389179,0.606249999999978,-0.142372881355246,0.612499999999957,-0.149152542372213,0.600000000000000,-0.149152542372213,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033933,0.000000000000000,-0.013559322033933,0.000000000000000,2 -1016,1018,1076,6842,0.606249999999978,-0.142372881355246,0.606249999999978,-0.128813559321301,0.612499999999957,-0.135593220338273,0.600000000000000,-0.135593220338273,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033945,0.000000000000000,-0.013559322033945,0.000000000000000,2 -1017,1019,1077,6843,0.606249999999978,-0.128813559321301,0.606249999999978,-0.115254237287382,0.612499999999957,-0.122033898304341,0.600000000000000,-0.122033898304341,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033919,-0.000000000000000,-0.013559322033919,0.000000000000000,2 -1018,1020,1078,6844,0.606249999999978,-0.115254237287382,0.606249999999978,-0.101694915253436,0.612499999999957,-0.108474576270409,0.600000000000000,-0.108474576270409,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033946,0.000000000000000,-0.013559322033946,0.000000000000000,2 -1019,1021,1079,6845,0.606249999999978,-0.101694915253436,0.606249999999978,-0.088135593219506,0.612499999999957,-0.094915254236471,0.600000000000000,-0.094915254236471,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033930,-0.000000000000000,-0.013559322033930,0.000000000000000,2 -1020,1022,1080,6846,0.606249999999978,-0.088135593219506,0.606249999999978,-0.074576271185564,0.612499999999957,-0.081355932202535,0.600000000000000,-0.081355932202535,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033941,0.000000000000000,-0.013559322033941,0.000000000000000,2 -1021,1023,1081,6847,0.606249999999978,-0.074576271185564,0.606249999999978,-0.061016949151634,0.612499999999957,-0.067796610168599,0.600000000000000,-0.067796610168599,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033930,0.000000000000000,-0.013559322033930,0.000000000000000,2 -1022,1024,1082,6848,0.606249999999978,-0.061016949151634,0.606249999999978,-0.047457627117699,0.612499999999957,-0.054237288134667,0.600000000000000,-0.054237288134667,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033935,-0.000000000000000,-0.013559322033935,0.000000000000000,2 -1023,1025,1083,6849,0.606249999999978,-0.047457627117699,0.606249999999978,-0.033898305083763,0.612499999999957,-0.040677966100731,0.600000000000000,-0.040677966100731,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033937,0.000000000000000,-0.013559322033937,0.000000000000000,2 -1024,1026,1084,6850,0.606249999999978,-0.033898305083763,0.606249999999978,-0.020338983049833,0.612499999999957,-0.027118644066798,0.600000000000000,-0.027118644066798,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033930,0.000000000000000,-0.013559322033930,0.000000000000000,2 -1025,1027,1085,6851,0.606249999999978,-0.020338983049833,0.606249999999978,-0.006779661015891,0.612499999999957,-0.013559322032862,0.600000000000000,-0.013559322032862,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033941,0.000000000000000,-0.013559322033941,0.000000000000000,2 -1026,1028,1086,6852,0.606249999999978,-0.006779661015891,0.606249999999978,0.006779661018004,0.612499999999957,0.000000000001056,0.600000000000000,0.000000000001056,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033895,0.000000000000000,-0.013559322033895,0.000000000000000,2 -1027,1029,1087,6853,0.606249999999978,0.006779661018004,0.606249999999978,0.020338983051863,0.612499999999957,0.013559322034933,0.600000000000000,0.013559322034933,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1028,1030,1088,6854,0.606249999999978,0.020338983051863,0.606249999999978,0.033898305085723,0.612499999999957,0.027118644068793,0.600000000000000,0.027118644068793,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1029,1031,1089,6855,0.606249999999978,0.033898305085723,0.606249999999978,0.047457627119583,0.612499999999957,0.040677966102653,0.600000000000000,0.040677966102653,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1030,1032,1090,6856,0.606249999999978,0.047457627119583,0.606249999999978,0.061016949153442,0.612499999999957,0.054237288136513,0.600000000000000,0.054237288136513,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1031,1033,1091,6857,0.606249999999978,0.061016949153442,0.606249999999978,0.074576271187302,0.612499999999957,0.067796610170372,0.600000000000000,0.067796610170372,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1032,1034,1092,6858,0.606249999999978,0.074576271187302,0.606249999999978,0.088135593221162,0.612499999999957,0.081355932204232,0.600000000000000,0.081355932204232,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1033,1035,1093,6859,0.606249999999978,0.088135593221162,0.606249999999978,0.101694915255008,0.612499999999957,0.094915254238085,0.600000000000000,0.094915254238085,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033846,0.000000000000000,-0.013559322033846,0.000000000000000,2 -1034,1036,1094,6860,0.606249999999978,0.101694915255008,0.606249999999978,0.115254237288859,0.612499999999957,0.108474576271933,0.600000000000000,0.108474576271933,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033852,-0.000000000000000,-0.013559322033852,0.000000000000000,2 -1035,1037,1095,6861,0.606249999999978,0.115254237288859,0.606249999999978,0.128813559322719,0.612499999999957,0.122033898305789,0.600000000000000,0.122033898305789,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1036,1038,1096,6862,0.606249999999978,0.128813559322719,0.606249999999978,0.142372881356579,0.612499999999957,0.135593220339649,0.600000000000000,0.135593220339649,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1037,1039,1097,6863,0.606249999999978,0.142372881356579,0.606249999999978,0.155932203390438,0.612499999999957,0.149152542373509,0.600000000000000,0.149152542373509,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1038,1040,1098,6864,0.606249999999978,0.155932203390438,0.606249999999978,0.169491525424298,0.612499999999957,0.162711864407368,0.600000000000000,0.162711864407368,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 -1039,1041,1099,6865,0.606249999999978,0.169491525424298,0.606249999999978,0.183050847458158,0.612499999999957,0.176271186441228,0.600000000000000,0.176271186441228,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1040,1042,1100,6866,0.606249999999978,0.183050847458158,0.606249999999978,0.196610169492018,0.612499999999957,0.189830508475088,0.600000000000000,0.189830508475088,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 -1041,1043,1101,6867,0.606249999999978,0.196610169492018,0.606249999999978,0.210169491525877,0.612499999999957,0.203389830508947,0.600000000000000,0.203389830508947,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1042,1044,1102,6868,0.606249999999978,0.210169491525877,0.606249999999978,0.223728813559737,0.612499999999957,0.216949152542807,0.600000000000000,0.216949152542807,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1043,1045,1103,6869,0.606249999999978,0.223728813559737,0.606249999999978,0.237288135593597,0.612499999999957,0.230508474576667,0.600000000000000,0.230508474576667,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1044,1046,1104,6870,0.606249999999978,0.237288135593597,0.606249999999978,0.250847457627456,0.612499999999957,0.244067796610527,0.600000000000000,0.244067796610526,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 -1045,1047,1105,6871,0.606249999999978,0.250847457627456,0.606249999999978,0.264406779661316,0.612499999999957,0.257627118644386,0.600000000000000,0.257627118644386,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1046,1048,1106,6872,0.606249999999978,0.264406779661316,0.606249999999978,0.277966101695176,0.612499999999957,0.271186440678246,0.600000000000000,0.271186440678246,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 -1047,1049,1107,6873,0.606249999999978,0.277966101695176,0.606249999999978,0.291525423729036,0.612499999999957,0.284745762712106,0.600000000000000,0.284745762712106,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1048,1050,1108,6874,0.606249999999978,0.291525423729036,0.606249999999978,0.305084745762915,0.612499999999957,0.298305084745975,0.600000000000000,0.298305084745975,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033879,-0.000000000000000,-0.013559322033879,0.000000000000000,2 -1049,1051,1109,6875,0.606249999999978,0.305084745762915,0.606249999999978,0.318644067796787,0.612499999999957,0.311864406779851,0.600000000000000,0.311864406779851,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033872,0.000000000000000,-0.013559322033872,0.000000000000000,2 -1050,1052,1110,6876,0.606249999999978,0.318644067796787,0.606249999999978,0.332203389830671,0.612499999999957,0.325423728813729,0.600000000000000,0.325423728813729,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033883,0.000000000000000,-0.013559322033883,0.000000000000000,2 -1051,1053,1111,6877,0.606249999999978,0.332203389830671,0.606249999999978,0.345762711864539,0.612499999999957,0.338983050847605,0.600000000000000,0.338983050847605,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033869,-0.000000000000000,-0.013559322033869,0.000000000000000,2 -1052,1054,1112,6878,0.606249999999978,0.345762711864539,0.606249999999978,0.359322033898399,0.612499999999957,0.352542372881469,0.600000000000000,0.352542372881469,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 -1053,1055,1113,6879,0.606249999999978,0.359322033898399,0.606249999999978,0.372881355932259,0.612499999999957,0.366101694915329,0.600000000000000,0.366101694915329,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1054,1056,1114,6880,0.606249999999978,0.372881355932259,0.606249999999978,0.386440677966119,0.612499999999957,0.379661016949189,0.600000000000000,0.379661016949189,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -1055,1115,1276,6881,0.606249999999978,0.386440677966119,0.612499999999957,0.393220338983059,0.606249999999978,0.400000000000000,0.600000000000000,0.393220338983059,0.000000000000000,-0.012499999999957,0.013559322033881,-0.000000000000000,0.000000000000000,0.012499999999957,-0.013559322033881,0.000000000000000,2 -969,998,1058,1116,0.618749999999957,-0.400000000000000,0.612499999999957,-0.393220338983034,0.618749999999957,-0.386440677966068,0.624999999999957,-0.393220338983034,-0.000000000000000,-0.012500000000000,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.012500000000002,0.013559322033932,-0.000000000000002,2 -999,1057,1059,1117,0.612499999999957,-0.379661016949095,0.618749999999957,-0.386440677966068,0.618749999999958,-0.372881355932122,0.624999999999959,-0.379661016949095,-0.013559322033946,0.000000000000000,0.000000000000000,-0.012500000000002,0.000000000000000,0.012500000000003,0.013559322033946,-0.000000000000001,2 -1000,1058,1060,1118,0.612499999999957,-0.366101694915163,0.618749999999958,-0.372881355932122,0.618749999999959,-0.359322033898204,0.624999999999960,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.012500000000003,0.000000000000000,0.012500000000004,0.013559322033918,-0.000000000000001,2 -1001,1059,1061,1119,0.612499999999957,-0.352542372881227,0.618749999999959,-0.359322033898204,0.618749999999959,-0.345762711864250,0.624999999999962,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.012500000000004,0.000000000000000,0.012500000000006,0.013559322033954,-0.000000000000002,2 -1002,1060,1062,1120,0.612499999999957,-0.338983050847293,0.618749999999959,-0.345762711864250,0.618749999999960,-0.332203389830336,0.624999999999963,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.012500000000006,-0.000000000000000,0.012500000000008,0.013559322033914,-0.000000000000001,2 -1003,1061,1063,1121,0.612499999999957,-0.325423728813361,0.618749999999960,-0.332203389830336,0.618749999999961,-0.318644067796385,0.624999999999965,-0.325423728813361,-0.013559322033951,0.000000000000000,0.000000000000000,-0.012500000000008,0.000000000000000,0.012500000000009,0.013559322033950,-0.000000000000001,2 -1004,1062,1064,1122,0.612499999999957,-0.311864406779421,0.618749999999961,-0.318644067796385,0.618749999999961,-0.305084745762457,0.624999999999966,-0.311864406779421,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.012500000000009,0.000000000000000,0.012500000000010,0.013559322033928,-0.000000000000001,2 -1005,1063,1065,1123,0.612499999999957,-0.298305084745489,0.618749999999961,-0.305084745762457,0.618749999999962,-0.291525423728521,0.624999999999968,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.012500000000010,0.000000000000000,0.012500000000012,0.013559322033936,-0.000000000000002,2 -1006,1064,1066,1124,0.612499999999957,-0.284745762711550,0.618749999999962,-0.291525423728521,0.618749999999963,-0.277966101694579,0.624999999999969,-0.284745762711550,-0.013559322033942,0.000000000000000,-0.000000000000000,-0.012500000000012,0.000000000000000,0.012500000000013,0.013559322033942,-0.000000000000001,2 -1007,1065,1067,1125,0.612499999999957,-0.271186440677618,0.618749999999963,-0.277966101694579,0.618749999999964,-0.264406779660657,0.624999999999970,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.012500000000013,0.000000000000000,0.012500000000015,0.013559322033922,-0.000000000000002,2 -1008,1066,1068,1126,0.612499999999957,-0.257627118643680,0.618749999999964,-0.264406779660657,0.618749999999965,-0.250847457626703,0.624999999999972,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.012500000000015,0.000000000000000,0.012500000000016,0.013559322033954,-0.000000000000002,2 -1009,1067,1069,1127,0.612499999999957,-0.244067796609748,0.618749999999965,-0.250847457626703,0.618749999999965,-0.237288135592793,0.624999999999973,-0.244067796609748,-0.013559322033910,0.000000000000000,-0.000000000000000,-0.012500000000016,0.000000000000000,0.012500000000017,0.013559322033910,-0.000000000000001,2 -1010,1068,1070,1128,0.612499999999957,-0.230508474575816,0.618749999999965,-0.237288135592793,0.618749999999966,-0.223728813558839,0.624999999999975,-0.230508474575816,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.012500000000017,0.000000000000000,0.012500000000019,0.013559322033954,-0.000000000000002,2 -1011,1069,1071,1129,0.612499999999957,-0.216949152541877,0.618749999999966,-0.223728813558839,0.618749999999967,-0.210169491524915,0.624999999999976,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.012500000000019,0.000000000000000,0.012500000000021,0.013559322033924,-0.000000000000002,2 -1012,1070,1072,1130,0.612499999999957,-0.203389830507945,0.618749999999967,-0.210169491524915,0.618749999999968,-0.196610169490975,0.624999999999978,-0.203389830507945,-0.013559322033940,0.000000000000000,-0.000000000000000,-0.012500000000021,0.000000000000000,0.012500000000022,0.013559322033940,-0.000000000000001,2 -1013,1071,1073,1131,0.612499999999957,-0.189830508474016,0.618749999999968,-0.196610169490975,0.618749999999968,-0.183050847457058,0.624999999999979,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.012500000000022,-0.000000000000000,0.012500000000023,0.013559322033917,-0.000000000000001,2 -1014,1072,1074,1132,0.612499999999957,-0.176271186440084,0.618749999999968,-0.183050847457058,0.618749999999969,-0.169491525423110,0.624999999999981,-0.176271186440084,-0.013559322033947,-0.000000000000000,0.000000000000000,-0.012500000000023,-0.000000000000000,0.012500000000025,0.013559322033947,-0.000000000000002,2 -1015,1073,1075,1133,0.612499999999957,-0.162711864406145,0.618749999999969,-0.169491525423110,0.618749999999970,-0.155932203389179,0.624999999999982,-0.162711864406145,-0.013559322033931,0.000000000000000,0.000000000000000,-0.012500000000025,0.000000000000000,0.012500000000026,0.013559322033931,-0.000000000000001,2 -1016,1074,1076,1134,0.612499999999957,-0.149152542372213,0.618749999999970,-0.155932203389179,0.618749999999971,-0.142372881355246,0.624999999999984,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.012500000000026,0.000000000000000,0.012500000000028,0.013559322033933,-0.000000000000002,2 -1017,1075,1077,1135,0.612499999999957,-0.135593220338273,0.618749999999971,-0.142372881355246,0.618749999999971,-0.128813559321301,0.624999999999985,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.012500000000028,0.000000000000000,0.012500000000029,0.013559322033945,-0.000000000000001,2 -1018,1076,1078,1136,0.612499999999957,-0.122033898304341,0.618749999999971,-0.128813559321301,0.618749999999972,-0.115254237287382,0.624999999999987,-0.122033898304341,-0.013559322033919,0.000000000000000,-0.000000000000000,-0.012500000000029,0.000000000000000,0.012500000000031,0.013559322033919,-0.000000000000002,2 -1019,1077,1079,1137,0.612499999999957,-0.108474576270409,0.618749999999972,-0.115254237287382,0.618749999999973,-0.101694915253436,0.624999999999988,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.012500000000031,0.000000000000000,0.012500000000032,0.013559322033946,-0.000000000000001,2 -1020,1078,1080,1138,0.612499999999957,-0.094915254236471,0.618749999999973,-0.101694915253436,0.618749999999973,-0.088135593219506,0.624999999999990,-0.094915254236471,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.012500000000032,-0.000000000000000,0.012500000000034,0.013559322033930,-0.000000000000001,2 -1021,1079,1081,1139,0.612499999999957,-0.081355932202535,0.618749999999973,-0.088135593219506,0.618749999999974,-0.074576271185564,0.624999999999991,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.012500000000034,0.000000000000000,0.012500000000035,0.013559322033941,-0.000000000000001,2 -1022,1080,1082,1140,0.612499999999957,-0.067796610168599,0.618749999999974,-0.074576271185564,0.618749999999975,-0.061016949151634,0.624999999999993,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.012500000000035,-0.000000000000000,0.012500000000037,0.013559322033930,-0.000000000000001,2 -1023,1081,1083,1141,0.612499999999957,-0.054237288134667,0.618749999999975,-0.061016949151634,0.618749999999976,-0.047457627117699,0.624999999999994,-0.054237288134667,-0.013559322033935,0.000000000000000,0.000000000000000,-0.012500000000037,0.000000000000000,0.012500000000038,0.013559322033935,-0.000000000000002,2 -1024,1082,1084,1142,0.612499999999957,-0.040677966100731,0.618749999999976,-0.047457627117699,0.618749999999976,-0.033898305083763,0.624999999999996,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.012500000000038,0.000000000000000,0.012500000000040,0.013559322033937,-0.000000000000001,2 -1025,1083,1085,1143,0.612499999999957,-0.027118644066798,0.618749999999976,-0.033898305083763,0.618749999999977,-0.020338983049833,0.624999999999997,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.012500000000040,0.000000000000000,0.012500000000041,0.013559322033930,-0.000000000000002,2 -1026,1084,1086,1144,0.612499999999957,-0.013559322032862,0.618749999999977,-0.020338983049833,0.618749999999978,-0.006779661015891,0.624999999999999,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.012500000000041,0.000000000000000,0.012500000000043,0.013559322033941,-0.000000000000002,2 -1027,1085,1087,1145,0.612499999999957,0.000000000001056,0.618749999999978,-0.006779661015891,0.618749999999979,0.006779661018004,0.625000000000000,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.012500000000043,0.000000000000000,0.012500000000044,0.013559322033895,-0.000000000000001,2 -1028,1086,1088,1146,0.612499999999957,0.013559322034933,0.618749999999979,0.006779661018004,0.618749999999979,0.020338983051863,0.625000000000001,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000044,0.000000000000000,0.012500000000045,0.013559322033860,-0.000000000000001,2 -1029,1087,1089,1147,0.612499999999957,0.027118644068793,0.618749999999979,0.020338983051863,0.618749999999980,0.033898305085723,0.625000000000003,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000045,0.000000000000000,0.012500000000047,0.013559322033860,-0.000000000000002,2 -1030,1088,1090,1148,0.612499999999957,0.040677966102653,0.618749999999980,0.033898305085723,0.618749999999981,0.047457627119583,0.625000000000004,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000047,0.000000000000000,0.012500000000049,0.013559322033860,-0.000000000000002,2 -1031,1089,1091,1149,0.612499999999957,0.054237288136513,0.618749999999981,0.047457627119583,0.618749999999982,0.061016949153442,0.625000000000006,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000049,0.000000000000000,0.012500000000050,0.013559322033860,-0.000000000000001,2 -1032,1090,1092,1150,0.612499999999957,0.067796610170372,0.618749999999982,0.061016949153442,0.618749999999982,0.074576271187302,0.625000000000007,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000050,0.000000000000000,0.012500000000051,0.013559322033860,-0.000000000000001,2 -1033,1091,1093,1151,0.612499999999957,0.081355932204232,0.618749999999982,0.074576271187302,0.618749999999983,0.088135593221162,0.625000000000009,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000051,0.000000000000000,0.012500000000053,0.013559322033860,-0.000000000000002,2 -1034,1092,1094,1152,0.612499999999957,0.094915254238085,0.618749999999983,0.088135593221162,0.618749999999984,0.101694915255008,0.625000000000010,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.012500000000053,0.000000000000000,0.012500000000054,0.013559322033846,-0.000000000000001,2 -1035,1093,1095,1153,0.612499999999957,0.108474576271933,0.618749999999984,0.101694915255008,0.618749999999985,0.115254237288859,0.625000000000012,0.108474576271933,-0.013559322033852,0.000000000000000,-0.000000000000000,-0.012500000000054,0.000000000000000,0.012500000000056,0.013559322033852,-0.000000000000002,2 -1036,1094,1096,1154,0.612499999999957,0.122033898305789,0.618749999999985,0.115254237288859,0.618749999999985,0.128813559322719,0.625000000000013,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000056,0.000000000000000,0.012500000000057,0.013559322033860,-0.000000000000002,2 -1037,1095,1097,1155,0.612499999999957,0.135593220339649,0.618749999999985,0.128813559322719,0.618749999999986,0.142372881356579,0.625000000000015,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000057,0.000000000000000,0.012500000000059,0.013559322033860,-0.000000000000001,2 -1038,1096,1098,1156,0.612499999999957,0.149152542373509,0.618749999999986,0.142372881356579,0.618749999999987,0.155932203390438,0.625000000000016,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000059,0.000000000000000,0.012500000000060,0.013559322033860,-0.000000000000002,2 -1039,1097,1099,1157,0.612499999999957,0.162711864407368,0.618749999999987,0.155932203390438,0.618749999999988,0.169491525424298,0.625000000000018,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.012500000000060,0.000000000000000,0.012500000000062,0.013559322033860,-0.000000000000002,2 -1040,1098,1100,1158,0.612499999999957,0.176271186441228,0.618749999999988,0.169491525424298,0.618749999999988,0.183050847458158,0.625000000000019,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000062,0.000000000000000,0.012500000000063,0.013559322033860,-0.000000000000001,2 -1041,1099,1101,1159,0.612499999999957,0.189830508475088,0.618749999999988,0.183050847458158,0.618749999999989,0.196610169492018,0.625000000000021,0.189830508475088,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.012500000000063,0.000000000000000,0.012500000000065,0.013559322033860,-0.000000000000002,2 -1042,1100,1102,1160,0.612499999999957,0.203389830508947,0.618749999999989,0.196610169492018,0.618749999999990,0.210169491525877,0.625000000000022,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000065,0.000000000000000,0.012500000000066,0.013559322033860,-0.000000000000001,2 -1043,1101,1103,1161,0.612499999999957,0.216949152542807,0.618749999999990,0.210169491525877,0.618749999999990,0.223728813559737,0.625000000000024,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000066,0.000000000000000,0.012500000000068,0.013559322033860,-0.000000000000002,2 -1044,1102,1104,1162,0.612499999999957,0.230508474576667,0.618749999999990,0.223728813559737,0.618749999999991,0.237288135593597,0.625000000000025,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000068,0.000000000000000,0.012500000000069,0.013559322033860,-0.000000000000001,2 -1045,1103,1105,1163,0.612499999999957,0.244067796610527,0.618749999999991,0.237288135593597,0.618749999999992,0.250847457627456,0.625000000000026,0.244067796610527,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.012500000000069,0.000000000000000,0.012500000000071,0.013559322033860,-0.000000000000002,2 -1046,1104,1106,1164,0.612499999999957,0.257627118644386,0.618749999999992,0.250847457627456,0.618749999999993,0.264406779661316,0.625000000000028,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000071,0.000000000000000,0.012500000000072,0.013559322033860,-0.000000000000002,2 -1047,1105,1107,1165,0.612499999999957,0.271186440678246,0.618749999999993,0.264406779661316,0.618749999999993,0.277966101695176,0.625000000000029,0.271186440678246,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.012500000000072,0.000000000000000,0.012500000000073,0.013559322033860,-0.000000000000001,2 -1048,1106,1108,1166,0.612499999999957,0.284745762712106,0.618749999999993,0.277966101695176,0.618749999999994,0.291525423729036,0.625000000000031,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000073,0.000000000000000,0.012500000000075,0.013559322033860,-0.000000000000002,2 -1049,1107,1109,1167,0.612499999999957,0.298305084745975,0.618749999999994,0.291525423729036,0.618749999999995,0.305084745762915,0.625000000000032,0.298305084745975,-0.013559322033879,0.000000000000000,-0.000000000000000,-0.012500000000075,0.000000000000000,0.012500000000077,0.013559322033879,-0.000000000000002,2 -1050,1108,1110,1168,0.612499999999957,0.311864406779851,0.618749999999995,0.305084745762915,0.618749999999996,0.318644067796787,0.625000000000034,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.012500000000077,0.000000000000000,0.012500000000078,0.013559322033872,-0.000000000000001,2 -1051,1109,1111,1169,0.612499999999957,0.325423728813729,0.618749999999996,0.318644067796787,0.618749999999996,0.332203389830671,0.625000000000035,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.012500000000078,0.000000000000000,0.012500000000080,0.013559322033883,-0.000000000000002,2 -1052,1110,1112,1170,0.612499999999957,0.338983050847605,0.618749999999996,0.332203389830671,0.618749999999997,0.345762711864539,0.625000000000037,0.338983050847605,-0.013559322033869,0.000000000000000,-0.000000000000000,-0.012500000000080,0.000000000000000,0.012500000000081,0.013559322033869,-0.000000000000002,2 -1053,1111,1113,1171,0.612499999999957,0.352542372881469,0.618749999999997,0.345762711864539,0.618749999999998,0.359322033898399,0.625000000000038,0.352542372881469,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.012500000000081,0.000000000000000,0.012500000000082,0.013559322033860,-0.000000000000001,2 -1054,1112,1114,1172,0.612499999999957,0.366101694915329,0.618749999999998,0.359322033898399,0.618749999999999,0.372881355932259,0.625000000000040,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000082,0.000000000000000,0.012500000000084,0.013559322033860,-0.000000000000002,2 -1055,1113,1115,1173,0.612499999999957,0.379661016949189,0.618749999999999,0.372881355932259,0.618749999999999,0.386440677966119,0.625000000000041,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012500000000084,0.000000000000000,0.012500000000085,0.013559322033860,-0.000000000000001,2 -1056,1114,1174,1262,0.612499999999957,0.393220338983059,0.618749999999999,0.386440677966119,0.625000000000043,0.393220338983059,0.618750000000000,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.012500000000085,0.013559322033881,-0.000000000000002,-0.000000000000000,0.012500000000087,2 -983,1057,1117,1175,0.631250000000000,-0.400000000000000,0.624999999999957,-0.393220338983034,0.631250000000001,-0.386440677966068,0.637500000000043,-0.393220338983034,-0.000000000000000,-0.012500000000087,-0.013559322033932,0.000000000000002,0.000000000000000,0.012500000000085,0.013559322033932,0.000000000000000,2 -1058,1116,1118,1176,0.624999999999959,-0.379661016949095,0.631250000000001,-0.386440677966068,0.631250000000001,-0.372881355932122,0.637500000000043,-0.379661016949095,-0.013559322033946,0.000000000000001,-0.000000000000000,-0.012500000000085,0.000000000000000,0.012500000000084,0.013559322033946,-0.000000000000000,2 -1059,1117,1119,1177,0.624999999999960,-0.366101694915163,0.631250000000001,-0.372881355932122,0.631250000000002,-0.359322033898204,0.637500000000043,-0.366101694915163,-0.013559322033918,0.000000000000001,-0.000000000000000,-0.012500000000084,0.000000000000000,0.012500000000082,0.013559322033918,0.000000000000000,2 -1060,1118,1120,1178,0.624999999999962,-0.352542372881227,0.631250000000002,-0.359322033898204,0.631250000000003,-0.345762711864250,0.637500000000043,-0.352542372881227,-0.013559322033954,0.000000000000002,-0.000000000000000,-0.012500000000082,0.000000000000000,0.012500000000081,0.013559322033954,0.000000000000000,2 -1061,1119,1121,1179,0.624999999999963,-0.338983050847293,0.631250000000003,-0.345762711864250,0.631250000000004,-0.332203389830336,0.637500000000043,-0.338983050847293,-0.013559322033914,0.000000000000001,-0.000000000000000,-0.012500000000081,0.000000000000000,0.012500000000080,0.013559322033914,-0.000000000000000,2 -1062,1120,1122,1180,0.624999999999965,-0.325423728813361,0.631250000000004,-0.332203389830336,0.631250000000005,-0.318644067796385,0.637500000000043,-0.325423728813361,-0.013559322033950,0.000000000000001,-0.000000000000000,-0.012500000000080,0.000000000000000,0.012500000000078,0.013559322033951,-0.000000000000000,2 -1063,1121,1123,1181,0.624999999999966,-0.311864406779421,0.631250000000005,-0.318644067796385,0.631250000000005,-0.305084745762457,0.637500000000043,-0.311864406779421,-0.013559322033928,0.000000000000001,-0.000000000000000,-0.012500000000078,0.000000000000000,0.012500000000077,0.013559322033928,0.000000000000000,2 -1064,1122,1124,1182,0.624999999999968,-0.298305084745489,0.631250000000005,-0.305084745762457,0.631250000000006,-0.291525423728521,0.637500000000043,-0.298305084745489,-0.013559322033936,0.000000000000002,-0.000000000000000,-0.012500000000077,0.000000000000000,0.012500000000075,0.013559322033936,0.000000000000000,2 -1065,1123,1125,1183,0.624999999999969,-0.284745762711550,0.631250000000006,-0.291525423728521,0.631250000000007,-0.277966101694579,0.637500000000043,-0.284745762711550,-0.013559322033942,0.000000000000001,-0.000000000000000,-0.012500000000075,0.000000000000000,0.012500000000074,0.013559322033942,-0.000000000000000,2 -1066,1124,1126,1184,0.624999999999970,-0.271186440677618,0.631250000000007,-0.277966101694579,0.631250000000007,-0.264406779660657,0.637500000000043,-0.271186440677618,-0.013559322033922,0.000000000000002,-0.000000000000000,-0.012500000000074,0.000000000000000,0.012500000000072,0.013559322033922,0.000000000000000,2 -1067,1125,1127,1185,0.624999999999972,-0.257627118643680,0.631250000000007,-0.264406779660657,0.631250000000008,-0.250847457626703,0.637500000000043,-0.257627118643680,-0.013559322033954,0.000000000000002,-0.000000000000000,-0.012500000000072,0.000000000000000,0.012500000000070,0.013559322033954,0.000000000000000,2 -1068,1126,1128,1186,0.624999999999973,-0.244067796609748,0.631250000000008,-0.250847457626703,0.631250000000009,-0.237288135592793,0.637500000000043,-0.244067796609748,-0.013559322033910,0.000000000000001,-0.000000000000000,-0.012500000000070,0.000000000000000,0.012500000000069,0.013559322033910,-0.000000000000000,2 -1069,1127,1129,1187,0.624999999999975,-0.230508474575816,0.631250000000009,-0.237288135592793,0.631250000000010,-0.223728813558839,0.637500000000043,-0.230508474575816,-0.013559322033954,0.000000000000002,-0.000000000000000,-0.012500000000069,0.000000000000000,0.012500000000068,0.013559322033954,0.000000000000000,2 -1070,1128,1130,1188,0.624999999999976,-0.216949152541877,0.631250000000010,-0.223728813558839,0.631250000000010,-0.210169491524915,0.637500000000043,-0.216949152541877,-0.013559322033924,0.000000000000002,-0.000000000000000,-0.012500000000068,0.000000000000000,0.012500000000066,0.013559322033924,0.000000000000000,2 -1071,1129,1131,1189,0.624999999999978,-0.203389830507945,0.631250000000010,-0.210169491524915,0.631250000000011,-0.196610169490975,0.637500000000043,-0.203389830507945,-0.013559322033940,0.000000000000001,-0.000000000000000,-0.012500000000066,0.000000000000000,0.012500000000065,0.013559322033940,-0.000000000000000,2 -1072,1130,1132,1190,0.624999999999979,-0.189830508474016,0.631250000000011,-0.196610169490975,0.631250000000012,-0.183050847457058,0.637500000000043,-0.189830508474016,-0.013559322033917,0.000000000000001,-0.000000000000000,-0.012500000000065,0.000000000000000,0.012500000000063,0.013559322033917,0.000000000000000,2 -1073,1131,1133,1191,0.624999999999981,-0.176271186440084,0.631250000000012,-0.183050847457058,0.631250000000013,-0.169491525423110,0.637500000000043,-0.176271186440084,-0.013559322033947,0.000000000000002,-0.000000000000000,-0.012500000000063,0.000000000000000,0.012500000000062,0.013559322033947,0.000000000000000,2 -1074,1132,1134,1192,0.624999999999982,-0.162711864406145,0.631250000000013,-0.169491525423110,0.631250000000013,-0.155932203389179,0.637500000000043,-0.162711864406145,-0.013559322033931,0.000000000000001,-0.000000000000000,-0.012500000000062,0.000000000000000,0.012500000000060,0.013559322033931,-0.000000000000000,2 -1075,1133,1135,1193,0.624999999999984,-0.149152542372213,0.631250000000013,-0.155932203389179,0.631250000000014,-0.142372881355246,0.637500000000043,-0.149152542372213,-0.013559322033933,0.000000000000002,-0.000000000000000,-0.012500000000060,0.000000000000000,0.012500000000059,0.013559322033933,0.000000000000000,2 -1076,1134,1136,1194,0.624999999999985,-0.135593220338274,0.631250000000014,-0.142372881355246,0.631250000000015,-0.128813559321301,0.637500000000043,-0.135593220338273,-0.013559322033945,0.000000000000001,-0.000000000000000,-0.012500000000059,-0.000000000000000,0.012500000000058,0.013559322033945,-0.000000000000000,2 -1077,1135,1137,1195,0.624999999999987,-0.122033898304341,0.631250000000015,-0.128813559321301,0.631250000000015,-0.115254237287382,0.637500000000043,-0.122033898304341,-0.013559322033919,0.000000000000002,0.000000000000000,-0.012500000000058,0.000000000000000,0.012500000000056,0.013559322033919,0.000000000000000,2 -1078,1136,1138,1196,0.624999999999988,-0.108474576270409,0.631250000000015,-0.115254237287382,0.631250000000016,-0.101694915253436,0.637500000000043,-0.108474576270409,-0.013559322033946,0.000000000000001,-0.000000000000000,-0.012500000000056,0.000000000000000,0.012500000000054,0.013559322033946,0.000000000000000,2 -1079,1137,1139,1197,0.624999999999990,-0.094915254236471,0.631250000000016,-0.101694915253436,0.631250000000017,-0.088135593219506,0.637500000000043,-0.094915254236471,-0.013559322033930,0.000000000000001,-0.000000000000000,-0.012500000000054,0.000000000000000,0.012500000000053,0.013559322033930,-0.000000000000000,2 -1080,1138,1140,1198,0.624999999999991,-0.081355932202535,0.631250000000017,-0.088135593219506,0.631250000000018,-0.074576271185564,0.637500000000043,-0.081355932202535,-0.013559322033941,0.000000000000001,-0.000000000000000,-0.012500000000053,-0.000000000000000,0.012500000000052,0.013559322033941,0.000000000000000,2 -1081,1139,1141,1199,0.624999999999993,-0.067796610168599,0.631250000000018,-0.074576271185564,0.631250000000018,-0.061016949151634,0.637500000000043,-0.067796610168599,-0.013559322033930,0.000000000000001,0.000000000000000,-0.012500000000052,0.000000000000000,0.012500000000050,0.013559322033930,0.000000000000000,2 -1082,1140,1142,1200,0.624999999999994,-0.054237288134667,0.631250000000018,-0.061016949151634,0.631250000000019,-0.047457627117699,0.637500000000043,-0.054237288134667,-0.013559322033935,0.000000000000002,-0.000000000000000,-0.012500000000050,0.000000000000000,0.012500000000049,0.013559322033935,0.000000000000000,2 -1083,1141,1143,1201,0.624999999999996,-0.040677966100731,0.631250000000019,-0.047457627117699,0.631250000000020,-0.033898305083763,0.637500000000043,-0.040677966100731,-0.013559322033937,0.000000000000001,-0.000000000000000,-0.012500000000049,-0.000000000000000,0.012500000000047,0.013559322033937,0.000000000000000,2 -1084,1142,1144,1202,0.624999999999997,-0.027118644066798,0.631250000000020,-0.033898305083763,0.631250000000021,-0.020338983049833,0.637500000000043,-0.027118644066798,-0.013559322033930,0.000000000000002,0.000000000000000,-0.012500000000047,0.000000000000000,0.012500000000046,0.013559322033930,-0.000000000000000,2 -1085,1143,1145,1203,0.624999999999999,-0.013559322032862,0.631250000000021,-0.020338983049833,0.631250000000021,-0.006779661015891,0.637500000000043,-0.013559322032862,-0.013559322033941,0.000000000000002,-0.000000000000000,-0.012500000000046,-0.000000000000000,0.012500000000044,0.013559322033941,0.000000000000000,2 -1086,1144,1146,1204,0.625000000000000,0.000000000001056,0.631250000000021,-0.006779661015891,0.631250000000022,0.006779661018004,0.637500000000043,0.000000000001056,-0.013559322033895,0.000000000000001,0.000000000000000,-0.012500000000044,-0.000000000000000,0.012500000000043,0.013559322033895,0.000000000000000,2 -1087,1145,1147,1205,0.625000000000001,0.013559322034933,0.631250000000022,0.006779661018004,0.631250000000023,0.020338983051863,0.637500000000043,0.013559322034933,-0.013559322033860,0.000000000000001,0.000000000000000,-0.012500000000043,0.000000000000000,0.012500000000041,0.013559322033860,-0.000000000000000,2 -1088,1146,1148,1206,0.625000000000003,0.027118644068793,0.631250000000023,0.020338983051863,0.631250000000024,0.033898305085723,0.637500000000043,0.027118644068793,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000041,0.000000000000000,0.012500000000040,0.013559322033860,0.000000000000000,2 -1089,1147,1149,1207,0.625000000000004,0.040677966102653,0.631250000000024,0.033898305085723,0.631250000000024,0.047457627119583,0.637500000000043,0.040677966102653,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000040,-0.000000000000000,0.012500000000038,0.013559322033860,0.000000000000000,2 -1090,1148,1150,1208,0.625000000000006,0.054237288136513,0.631250000000024,0.047457627119583,0.631250000000025,0.061016949153442,0.637500000000043,0.054237288136513,-0.013559322033860,0.000000000000001,0.000000000000000,-0.012500000000038,-0.000000000000000,0.012500000000037,0.013559322033860,0.000000000000000,2 -1091,1149,1151,1209,0.625000000000007,0.067796610170372,0.631250000000025,0.061016949153442,0.631250000000026,0.074576271187302,0.637500000000043,0.067796610170372,-0.013559322033860,0.000000000000001,0.000000000000000,-0.012500000000037,0.000000000000000,0.012500000000035,0.013559322033860,0.000000000000000,2 -1092,1150,1152,1210,0.625000000000009,0.081355932204232,0.631250000000026,0.074576271187302,0.631250000000027,0.088135593221162,0.637500000000043,0.081355932204232,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000035,0.000000000000000,0.012500000000034,0.013559322033860,0.000000000000000,2 -1093,1151,1153,1211,0.625000000000010,0.094915254238085,0.631250000000027,0.088135593221162,0.631250000000027,0.101694915255008,0.637500000000043,0.094915254238085,-0.013559322033846,0.000000000000001,-0.000000000000000,-0.012500000000034,0.000000000000000,0.012500000000032,0.013559322033846,0.000000000000000,2 -1094,1152,1154,1212,0.625000000000012,0.108474576271933,0.631250000000027,0.101694915255008,0.631250000000028,0.115254237288859,0.637500000000043,0.108474576271933,-0.013559322033852,0.000000000000002,-0.000000000000000,-0.012500000000032,0.000000000000000,0.012500000000031,0.013559322033852,0.000000000000000,2 -1095,1153,1155,1213,0.625000000000013,0.122033898305789,0.631250000000028,0.115254237288859,0.631250000000029,0.128813559322719,0.637500000000043,0.122033898305789,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000031,0.000000000000000,0.012500000000029,0.013559322033860,0.000000000000000,2 -1096,1154,1156,1214,0.625000000000015,0.135593220339649,0.631250000000029,0.128813559322719,0.631250000000029,0.142372881356579,0.637500000000043,0.135593220339649,-0.013559322033860,0.000000000000001,-0.000000000000000,-0.012500000000029,0.000000000000000,0.012500000000028,0.013559322033860,-0.000000000000000,2 -1097,1155,1157,1215,0.625000000000016,0.149152542373509,0.631250000000029,0.142372881356579,0.631250000000030,0.155932203390438,0.637500000000043,0.149152542373509,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000028,0.000000000000000,0.012500000000026,0.013559322033860,0.000000000000000,2 -1098,1156,1158,1216,0.625000000000018,0.162711864407368,0.631250000000030,0.155932203390438,0.631250000000031,0.169491525424298,0.637500000000043,0.162711864407368,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000026,0.000000000000000,0.012500000000025,0.013559322033860,0.000000000000000,2 -1099,1157,1159,1217,0.625000000000019,0.176271186441228,0.631250000000031,0.169491525424298,0.631250000000032,0.183050847458158,0.637500000000043,0.176271186441228,-0.013559322033860,0.000000000000001,-0.000000000000000,-0.012500000000025,0.000000000000000,0.012500000000023,0.013559322033860,-0.000000000000000,2 -1100,1158,1160,1218,0.625000000000021,0.189830508475088,0.631250000000032,0.183050847458158,0.631250000000032,0.196610169492018,0.637500000000043,0.189830508475088,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000023,0.000000000000000,0.012500000000022,0.013559322033860,0.000000000000000,2 -1101,1159,1161,1219,0.625000000000022,0.203389830508947,0.631250000000032,0.196610169492018,0.631250000000033,0.210169491525877,0.637500000000043,0.203389830508947,-0.013559322033860,0.000000000000001,-0.000000000000000,-0.012500000000022,0.000000000000000,0.012500000000021,0.013559322033860,-0.000000000000000,2 -1102,1160,1162,1220,0.625000000000024,0.216949152542807,0.631250000000033,0.210169491525877,0.631250000000034,0.223728813559737,0.637500000000043,0.216949152542807,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000021,0.000000000000000,0.012500000000019,0.013559322033860,0.000000000000000,2 -1103,1161,1163,1221,0.625000000000025,0.230508474576667,0.631250000000034,0.223728813559737,0.631250000000035,0.237288135593597,0.637500000000043,0.230508474576667,-0.013559322033860,0.000000000000001,-0.000000000000000,-0.012500000000019,0.000000000000000,0.012500000000018,0.013559322033860,0.000000000000000,2 -1104,1162,1164,1222,0.625000000000026,0.244067796610527,0.631250000000035,0.237288135593597,0.631250000000035,0.250847457627456,0.637500000000043,0.244067796610527,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000018,0.000000000000000,0.012500000000016,0.013559322033860,0.000000000000000,2 -1105,1163,1165,1223,0.625000000000028,0.257627118644386,0.631250000000035,0.250847457627456,0.631250000000036,0.264406779661316,0.637500000000043,0.257627118644386,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000016,0.000000000000000,0.012500000000014,0.013559322033860,0.000000000000000,2 -1106,1164,1166,1224,0.625000000000029,0.271186440678246,0.631250000000036,0.264406779661316,0.631250000000037,0.277966101695176,0.637500000000043,0.271186440678246,-0.013559322033860,0.000000000000001,-0.000000000000000,-0.012500000000014,0.000000000000000,0.012500000000014,0.013559322033860,-0.000000000000000,2 -1107,1165,1167,1225,0.625000000000031,0.284745762712106,0.631250000000037,0.277966101695176,0.631250000000038,0.291525423729036,0.637500000000043,0.284745762712106,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000014,0.000000000000000,0.012500000000012,0.013559322033860,0.000000000000000,2 -1108,1166,1168,1226,0.625000000000032,0.298305084745975,0.631250000000038,0.291525423729036,0.631250000000038,0.305084745762915,0.637500000000043,0.298305084745975,-0.013559322033879,0.000000000000002,-0.000000000000000,-0.012500000000012,0.000000000000000,0.012500000000010,0.013559322033879,0.000000000000000,2 -1109,1167,1169,1227,0.625000000000034,0.311864406779851,0.631250000000038,0.305084745762915,0.631250000000039,0.318644067796787,0.637500000000043,0.311864406779851,-0.013559322033872,0.000000000000001,-0.000000000000000,-0.012500000000010,0.000000000000000,0.012500000000009,0.013559322033872,0.000000000000000,2 -1110,1168,1170,1228,0.625000000000035,0.325423728813729,0.631250000000039,0.318644067796787,0.631250000000040,0.332203389830671,0.637500000000043,0.325423728813729,-0.013559322033883,0.000000000000002,-0.000000000000000,-0.012500000000009,-0.000000000000000,0.012500000000007,0.013559322033883,0.000000000000000,2 -1111,1169,1171,1229,0.625000000000037,0.338983050847605,0.631250000000040,0.332203389830671,0.631250000000041,0.345762711864539,0.637500000000043,0.338983050847605,-0.013559322033869,0.000000000000002,0.000000000000000,-0.012500000000007,0.000000000000000,0.012500000000006,0.013559322033869,0.000000000000000,2 -1112,1170,1172,1230,0.625000000000038,0.352542372881469,0.631250000000041,0.345762711864539,0.631250000000041,0.359322033898399,0.637500000000043,0.352542372881469,-0.013559322033860,0.000000000000001,-0.000000000000000,-0.012500000000006,0.000000000000000,0.012500000000004,0.013559322033860,-0.000000000000000,2 -1113,1171,1173,1231,0.625000000000040,0.366101694915329,0.631250000000041,0.359322033898399,0.631250000000042,0.372881355932259,0.637500000000043,0.366101694915329,-0.013559322033860,0.000000000000002,-0.000000000000000,-0.012500000000004,-0.000000000000000,0.012500000000003,0.013559322033860,-0.000000000000000,2 -1114,1172,1174,1232,0.625000000000041,0.379661016949189,0.631250000000042,0.372881355932259,0.631250000000043,0.386440677966119,0.637500000000043,0.379661016949189,-0.013559322033860,0.000000000000001,0.000000000000000,-0.012500000000003,0.000000000000000,0.012500000000002,0.013559322033860,0.000000000000000,2 -1115,1173,1233,1248,0.625000000000043,0.393220338983059,0.631250000000043,0.386440677966119,0.637500000000043,0.393220338983059,0.631250000000043,0.400000000000000,-0.013559322033881,0.000000000000002,-0.000000000000000,-0.012500000000002,0.013559322033881,-0.000000000000000,-0.000000000000000,0.012500000000000,2 -997,1116,1176,11869,0.643750000000022,-0.400000000000000,0.637500000000043,-0.393220338983034,0.643750000000022,-0.386440677966068,0.650000000000000,-0.393220338983034,0.000000000000000,-0.012499999999957,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.012499999999957,0.013559322033932,0.000000000000000,1 -1117,1175,1177,11869,0.637500000000043,-0.379661016949095,0.643750000000022,-0.386440677966068,0.643750000000022,-0.372881355932122,0.650000000000000,-0.379661016949095,-0.013559322033946,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033946,-0.000000000000000,1 -1118,1176,1178,11869,0.637500000000043,-0.366101694915163,0.643750000000022,-0.372881355932122,0.643750000000022,-0.359322033898204,0.650000000000000,-0.366101694915163,-0.013559322033918,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033918,-0.000000000000000,1 -1119,1177,1179,11869,0.637500000000043,-0.352542372881227,0.643750000000022,-0.359322033898204,0.643750000000022,-0.345762711864250,0.650000000000000,-0.352542372881227,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033954,-0.000000000000000,1 -1120,1178,1180,11869,0.637500000000043,-0.338983050847293,0.643750000000022,-0.345762711864250,0.643750000000022,-0.332203389830336,0.650000000000000,-0.338983050847293,-0.013559322033914,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033914,-0.000000000000000,1 -1121,1179,1181,11869,0.637500000000043,-0.325423728813361,0.643750000000022,-0.332203389830336,0.643750000000022,-0.318644067796385,0.650000000000000,-0.325423728813361,-0.013559322033951,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.013559322033950,-0.000000000000000,1 -1122,1180,1182,11869,0.637500000000043,-0.311864406779421,0.643750000000022,-0.318644067796385,0.643750000000022,-0.305084745762457,0.650000000000000,-0.311864406779421,-0.013559322033928,-0.000000000000000,0.000000000000000,-0.012499999999956,-0.000000000000000,0.012499999999957,0.013559322033928,-0.000000000000000,1 -1123,1181,1183,11869,0.637500000000043,-0.298305084745489,0.643750000000022,-0.305084745762457,0.643750000000022,-0.291525423728521,0.650000000000000,-0.298305084745489,-0.013559322033936,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033936,-0.000000000000000,1 -1124,1182,1184,11869,0.637500000000043,-0.284745762711550,0.643750000000022,-0.291525423728521,0.643750000000022,-0.277966101694579,0.650000000000000,-0.284745762711550,-0.013559322033942,0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.013559322033942,-0.000000000000000,1 -1125,1183,1185,11869,0.637500000000043,-0.271186440677618,0.643750000000022,-0.277966101694579,0.643750000000022,-0.264406779660657,0.650000000000000,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.012499999999956,-0.000000000000000,0.012499999999957,0.013559322033922,-0.000000000000000,1 -1126,1184,1186,11869,0.637500000000043,-0.257627118643680,0.643750000000022,-0.264406779660657,0.643750000000022,-0.250847457626703,0.650000000000000,-0.257627118643680,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033954,-0.000000000000000,1 -1127,1185,1187,11869,0.637500000000043,-0.244067796609748,0.643750000000022,-0.250847457626703,0.643750000000022,-0.237288135592793,0.650000000000000,-0.244067796609748,-0.013559322033910,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033910,-0.000000000000000,1 -1128,1186,1188,11869,0.637500000000043,-0.230508474575816,0.643750000000022,-0.237288135592793,0.643750000000022,-0.223728813558839,0.650000000000000,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033954,-0.000000000000000,1 -1129,1187,1189,11869,0.637500000000043,-0.216949152541877,0.643750000000022,-0.223728813558839,0.643750000000022,-0.210169491524915,0.650000000000000,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033924,-0.000000000000000,1 -1130,1188,1190,11869,0.637500000000043,-0.203389830507945,0.643750000000022,-0.210169491524915,0.643750000000022,-0.196610169490975,0.650000000000000,-0.203389830507945,-0.013559322033940,0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033940,-0.000000000000000,1 -1131,1189,1191,11869,0.637500000000043,-0.189830508474016,0.643750000000022,-0.196610169490975,0.643750000000022,-0.183050847457058,0.650000000000000,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033917,-0.000000000000000,1 -1132,1190,1192,11869,0.637500000000043,-0.176271186440084,0.643750000000022,-0.183050847457058,0.643750000000022,-0.169491525423110,0.650000000000000,-0.176271186440084,-0.013559322033947,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033947,-0.000000000000000,1 -1133,1191,1193,11869,0.637500000000043,-0.162711864406145,0.643750000000022,-0.169491525423110,0.643750000000022,-0.155932203389179,0.650000000000000,-0.162711864406145,-0.013559322033931,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033931,-0.000000000000000,1 -1134,1192,1194,11869,0.637500000000043,-0.149152542372213,0.643750000000022,-0.155932203389179,0.643750000000022,-0.142372881355246,0.650000000000000,-0.149152542372213,-0.013559322033933,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033933,-0.000000000000000,1 -1135,1193,1195,11869,0.637500000000043,-0.135593220338273,0.643750000000022,-0.142372881355246,0.643750000000022,-0.128813559321301,0.650000000000000,-0.135593220338273,-0.013559322033945,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.013559322033945,-0.000000000000000,1 -1136,1194,1196,11869,0.637500000000043,-0.122033898304341,0.643750000000022,-0.128813559321301,0.643750000000022,-0.115254237287382,0.650000000000000,-0.122033898304341,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.012499999999956,-0.000000000000000,0.012499999999957,0.013559322033919,-0.000000000000000,1 -1137,1195,1197,11869,0.637500000000043,-0.108474576270409,0.643750000000022,-0.115254237287382,0.643750000000022,-0.101694915253436,0.650000000000000,-0.108474576270409,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033946,-0.000000000000000,1 -1138,1196,1198,11869,0.637500000000043,-0.094915254236471,0.643750000000022,-0.101694915253436,0.643750000000022,-0.088135593219506,0.650000000000000,-0.094915254236471,-0.013559322033930,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.013559322033930,-0.000000000000000,1 -1139,1197,1199,11869,0.637500000000043,-0.081355932202535,0.643750000000022,-0.088135593219506,0.643750000000022,-0.074576271185564,0.650000000000000,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.012499999999956,0.000000000000000,0.012499999999957,0.013559322033941,-0.000000000000000,1 -1140,1198,1200,11869,0.637500000000043,-0.067796610168599,0.643750000000022,-0.074576271185564,0.643750000000022,-0.061016949151634,0.650000000000000,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033930,-0.000000000000000,1 -1141,1199,1201,11869,0.637500000000043,-0.054237288134667,0.643750000000022,-0.061016949151634,0.643750000000022,-0.047457627117699,0.650000000000000,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033935,-0.000000000000000,1 -1142,1200,1202,11869,0.637500000000043,-0.040677966100731,0.643750000000022,-0.047457627117699,0.643750000000022,-0.033898305083763,0.650000000000000,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033937,-0.000000000000000,1 -1143,1201,1203,11869,0.637500000000043,-0.027118644066798,0.643750000000022,-0.033898305083763,0.643750000000022,-0.020338983049833,0.650000000000000,-0.027118644066798,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033930,-0.000000000000000,1 -1144,1202,1204,11869,0.637500000000043,-0.013559322032862,0.643750000000022,-0.020338983049833,0.643750000000022,-0.006779661015891,0.650000000000000,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033941,-0.000000000000000,1 -1145,1203,1205,11869,0.637500000000043,0.000000000001056,0.643750000000022,-0.006779661015891,0.643750000000022,0.006779661018004,0.650000000000000,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033895,-0.000000000000000,1 -1146,1204,1206,11869,0.637500000000043,0.013559322034933,0.643750000000022,0.006779661018004,0.643750000000022,0.020338983051863,0.650000000000000,0.013559322034933,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1147,1205,1207,11869,0.637500000000043,0.027118644068793,0.643750000000022,0.020338983051863,0.643750000000022,0.033898305085723,0.650000000000000,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1148,1206,1208,11869,0.637500000000043,0.040677966102653,0.643750000000022,0.033898305085723,0.643750000000022,0.047457627119583,0.650000000000000,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1149,1207,1209,11869,0.637500000000043,0.054237288136513,0.643750000000022,0.047457627119583,0.643750000000022,0.061016949153442,0.650000000000000,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1150,1208,1210,11869,0.637500000000043,0.067796610170372,0.643750000000022,0.061016949153442,0.643750000000022,0.074576271187302,0.650000000000000,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1151,1209,1211,11869,0.637500000000043,0.081355932204232,0.643750000000022,0.074576271187302,0.643750000000022,0.088135593221162,0.650000000000000,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1152,1210,1212,11869,0.637500000000043,0.094915254238085,0.643750000000022,0.088135593221162,0.643750000000022,0.101694915255008,0.650000000000000,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033846,-0.000000000000000,1 -1153,1211,1213,11869,0.637500000000043,0.108474576271933,0.643750000000022,0.101694915255008,0.643750000000022,0.115254237288859,0.650000000000000,0.108474576271933,-0.013559322033852,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033852,-0.000000000000000,1 -1154,1212,1214,11869,0.637500000000043,0.122033898305789,0.643750000000022,0.115254237288859,0.643750000000022,0.128813559322719,0.650000000000000,0.122033898305789,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1155,1213,1215,11869,0.637500000000043,0.135593220339649,0.643750000000022,0.128813559322719,0.643750000000022,0.142372881356579,0.650000000000000,0.135593220339649,-0.013559322033860,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1156,1214,1216,11869,0.637500000000043,0.149152542373509,0.643750000000022,0.142372881356579,0.643750000000022,0.155932203390438,0.650000000000000,0.149152542373509,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1157,1215,1217,11869,0.637500000000043,0.162711864407368,0.643750000000022,0.155932203390438,0.643750000000022,0.169491525424298,0.650000000000000,0.162711864407368,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1158,1216,1218,11869,0.637500000000043,0.176271186441228,0.643750000000022,0.169491525424298,0.643750000000022,0.183050847458158,0.650000000000000,0.176271186441228,-0.013559322033860,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1159,1217,1219,11869,0.637500000000043,0.189830508475088,0.643750000000022,0.183050847458158,0.643750000000022,0.196610169492018,0.650000000000000,0.189830508475088,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1160,1218,1220,11869,0.637500000000043,0.203389830508947,0.643750000000022,0.196610169492018,0.643750000000022,0.210169491525877,0.650000000000000,0.203389830508947,-0.013559322033860,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1161,1219,1221,11869,0.637500000000043,0.216949152542807,0.643750000000022,0.210169491525877,0.643750000000022,0.223728813559737,0.650000000000000,0.216949152542807,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1162,1220,1222,11869,0.637500000000043,0.230508474576667,0.643750000000022,0.223728813559737,0.643750000000022,0.237288135593597,0.650000000000000,0.230508474576667,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1163,1221,1223,11869,0.637500000000043,0.244067796610527,0.643750000000022,0.237288135593597,0.643750000000022,0.250847457627456,0.650000000000000,0.244067796610526,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1164,1222,1224,11869,0.637500000000043,0.257627118644386,0.643750000000022,0.250847457627456,0.643750000000022,0.264406779661316,0.650000000000000,0.257627118644386,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1165,1223,1225,11869,0.637500000000043,0.271186440678246,0.643750000000022,0.264406779661316,0.643750000000022,0.277966101695176,0.650000000000000,0.271186440678246,-0.013559322033860,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999956,0.013559322033860,-0.000000000000000,1 -1166,1224,1226,11869,0.637500000000043,0.284745762712106,0.643750000000022,0.277966101695176,0.643750000000022,0.291525423729036,0.650000000000000,0.284745762712106,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.012499999999956,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1167,1225,1227,11869,0.637500000000043,0.298305084745975,0.643750000000022,0.291525423729036,0.643750000000022,0.305084745762915,0.650000000000000,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033879,-0.000000000000000,1 -1168,1226,1228,11869,0.637500000000043,0.311864406779851,0.643750000000022,0.305084745762915,0.643750000000022,0.318644067796787,0.650000000000000,0.311864406779851,-0.013559322033872,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033872,-0.000000000000000,1 -1169,1227,1229,11869,0.637500000000043,0.325423728813729,0.643750000000022,0.318644067796787,0.643750000000022,0.332203389830671,0.650000000000000,0.325423728813729,-0.013559322033883,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033883,-0.000000000000000,1 -1170,1228,1230,11869,0.637500000000043,0.338983050847605,0.643750000000022,0.332203389830671,0.643750000000022,0.345762711864539,0.650000000000000,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033869,-0.000000000000000,1 -1171,1229,1231,11869,0.637500000000043,0.352542372881469,0.643750000000022,0.345762711864539,0.643750000000022,0.359322033898399,0.650000000000000,0.352542372881469,-0.013559322033860,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1172,1230,1232,11869,0.637500000000043,0.366101694915329,0.643750000000022,0.359322033898399,0.643750000000022,0.372881355932259,0.650000000000000,0.366101694915329,-0.013559322033860,0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1173,1231,1233,11869,0.637500000000043,0.379661016949189,0.643750000000022,0.372881355932259,0.643750000000022,0.386440677966119,0.650000000000000,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033860,-0.000000000000000,1 -1174,1232,1234,11869,0.637500000000043,0.393220338983059,0.643750000000022,0.386440677966119,0.643750000000022,0.400000000000000,0.650000000000000,0.393220338983059,-0.013559322033881,0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.013559322033881,-0.000000000000000,1 -1233,1235,1248,11869,0.643750000000022,0.400000000000000,0.643750000000022,0.414285714285680,0.637500000000043,0.407142857142846,0.650000000000000,0.407142857142835,0.000000000000000,-0.012499999999957,0.000000000000022,0.012499999999957,-0.014285714285691,-0.000000000000000,0.014285714285669,0.000000000000000,1 -1234,1236,1249,11869,0.643750000000022,0.414285714285680,0.643750000000022,0.428571428571398,0.637500000000043,0.421428571428552,0.650000000000000,0.421428571428526,-0.000000000000022,-0.012499999999957,0.000000000000032,0.012499999999957,-0.014285714285723,0.000000000000000,0.014285714285713,0.000000000000000,1 -1235,1237,1250,11869,0.643750000000022,0.428571428571398,0.643750000000022,0.442857142857079,0.637500000000043,0.435714285714260,0.650000000000000,0.435714285714217,-0.000000000000032,-0.012499999999957,0.000000000000055,0.012499999999957,-0.014285714285692,-0.000000000000000,0.014285714285669,0.000000000000000,1 -1236,1238,1251,11869,0.643750000000022,0.442857142857079,0.643750000000022,0.457142857142760,0.637500000000043,0.449999999999952,0.650000000000000,0.449999999999886,-0.000000000000055,-0.012499999999957,0.000000000000078,0.012499999999957,-0.014285714285693,-0.000000000000000,0.014285714285669,0.000000000000000,1 -1237,1239,1252,11869,0.643750000000022,0.457142857142760,0.643750000000022,0.471428571428441,0.637500000000043,0.464285714285645,0.650000000000000,0.464285714285555,-0.000000000000078,-0.012499999999957,0.000000000000101,0.012499999999957,-0.014285714285692,0.000000000000000,0.014285714285669,0.000000000000000,1 -1238,1240,1253,11869,0.643750000000022,0.471428571428441,0.643750000000022,0.485714285714121,0.637500000000043,0.478571428571336,0.650000000000000,0.478571428571225,-0.000000000000101,-0.012499999999957,0.000000000000122,0.012499999999957,-0.014285714285690,-0.000000000000000,0.014285714285669,0.000000000000000,1 -1239,1241,1254,11869,0.643750000000022,0.485714285714121,0.643750000000022,0.499999999999828,0.637500000000043,0.492857142857038,0.650000000000000,0.492857142856910,-0.000000000000122,-0.012499999999957,0.000000000000133,0.012499999999957,-0.014285714285712,0.000000000000000,0.014285714285702,0.000000000000000,1 -1240,1242,1255,11869,0.643750000000022,0.499999999999828,0.643750000000022,0.514285714285541,0.637500000000043,0.507142857142744,0.650000000000000,0.507142857142625,-0.000000000000133,-0.012499999999957,0.000000000000106,0.012499999999957,-0.014285714285700,-0.000000000000000,0.014285714285727,0.000000000000000,1 -1241,1243,1256,11869,0.643750000000022,0.514285714285541,0.643750000000022,0.528571428571279,0.637500000000043,0.521428571428453,0.650000000000000,0.521428571428368,-0.000000000000106,-0.012499999999957,0.000000000000065,0.012499999999957,-0.014285714285718,-0.000000000000000,0.014285714285759,0.000000000000000,1 -1242,1244,1257,11869,0.643750000000022,0.528571428571279,0.643750000000022,0.542857142857020,0.637500000000043,0.535714285714178,0.650000000000000,0.535714285714122,-0.000000000000065,-0.012499999999957,0.000000000000047,0.012499999999957,-0.014285714285732,-0.000000000000000,0.014285714285750,0.000000000000000,1 -1243,1245,1258,11869,0.643750000000022,0.542857142857020,0.643750000000022,0.557142857142767,0.637500000000043,0.549999999999912,0.650000000000000,0.549999999999875,-0.000000000000047,-0.012499999999957,0.000000000000027,0.012499999999957,-0.014285714285736,0.000000000000000,0.014285714285756,0.000000000000000,1 -1244,1246,1259,11869,0.643750000000022,0.557142857142767,0.643750000000022,0.571428571428513,0.637500000000043,0.564285714285648,0.650000000000000,0.564285714285631,-0.000000000000027,-0.012499999999957,0.000000000000007,0.012499999999957,-0.014285714285737,-0.000000000000000,0.014285714285756,0.000000000000000,1 -1245,1247,1260,11869,0.643750000000022,0.571428571428513,0.643750000000022,0.585714285714261,0.637500000000043,0.578571428571389,0.650000000000000,0.578571428571386,-0.000000000000007,-0.012499999999957,-0.000000000000002,0.012499999999957,-0.014285714285744,0.000000000000000,0.014285714285753,0.000000000000000,1 -1246,1261,1308,11869,0.643750000000022,0.585714285714261,0.637500000000043,0.592857142857130,0.643750000000022,0.600000000000000,0.650000000000000,0.592857142857131,0.000000000000002,-0.012499999999957,-0.014285714285739,0.000000000000000,-0.000000000000000,0.012499999999957,0.014285714285738,-0.000000000000000,1 -1174,1234,1249,1262,0.631250000000043,0.400000000000000,0.637500000000043,0.407142857142846,0.631250000000040,0.414285714285702,0.625000000000040,0.407142857142856,0.000000000000000,-0.012500000000000,0.014285714285691,0.000000000000000,0.000000000000022,0.012500000000006,-0.014285714285713,-0.000000000000006,2 -1235,1248,1250,1263,0.637500000000043,0.421428571428552,0.631250000000040,0.414285714285702,0.631250000000037,0.428571428571430,0.625000000000034,0.421428571428579,0.014285714285723,-0.000000000000000,-0.000000000000022,-0.012500000000006,0.000000000000032,0.012500000000013,-0.014285714285733,-0.000000000000006,2 -1236,1249,1251,1264,0.637500000000043,0.435714285714260,0.631250000000037,0.428571428571430,0.631250000000034,0.442857142857133,0.625000000000028,0.435714285714303,0.014285714285692,0.000000000000000,-0.000000000000032,-0.012500000000013,0.000000000000055,0.012500000000019,-0.014285714285715,-0.000000000000006,2 -1237,1250,1252,1265,0.637500000000043,0.449999999999952,0.631250000000034,0.442857142857133,0.631250000000031,0.457142857142838,0.625000000000022,0.450000000000019,0.014285714285693,0.000000000000000,-0.000000000000055,-0.012500000000019,0.000000000000078,0.012500000000025,-0.014285714285717,-0.000000000000006,2 -1238,1251,1253,1266,0.637500000000043,0.464285714285645,0.631250000000031,0.457142857142838,0.631250000000028,0.471428571428542,0.625000000000016,0.464285714285735,0.014285714285692,-0.000000000000000,-0.000000000000078,-0.012500000000025,0.000000000000101,0.012500000000031,-0.014285714285715,-0.000000000000006,2 -1239,1252,1254,1267,0.637500000000043,0.478571428571336,0.631250000000028,0.471428571428542,0.631250000000025,0.485714285714243,0.625000000000009,0.478571428571448,0.014285714285690,0.000000000000000,-0.000000000000101,-0.012500000000031,0.000000000000123,0.012500000000037,-0.014285714285712,-0.000000000000006,2 -1240,1253,1255,1268,0.637500000000043,0.492857142857038,0.631250000000025,0.485714285714243,0.631250000000022,0.499999999999961,0.625000000000003,0.492857142857166,0.014285714285712,-0.000000000000000,-0.000000000000123,-0.012500000000037,0.000000000000133,0.012500000000043,-0.014285714285723,-0.000000000000006,2 -1241,1254,1256,1269,0.637500000000043,0.507142857142744,0.631250000000022,0.499999999999961,0.631250000000019,0.514285714285647,0.624999999999997,0.507142857142864,0.014285714285700,0.000000000000000,-0.000000000000133,-0.012500000000043,0.000000000000106,0.012500000000049,-0.014285714285673,-0.000000000000006,2 -1242,1255,1257,1270,0.637500000000043,0.521428571428453,0.631250000000019,0.514285714285647,0.631250000000016,0.528571428571344,0.624999999999991,0.521428571428538,0.014285714285718,0.000000000000000,-0.000000000000106,-0.012500000000049,0.000000000000065,0.012500000000056,-0.014285714285676,-0.000000000000006,2 -1243,1256,1258,1271,0.637500000000043,0.535714285714178,0.631250000000016,0.528571428571344,0.631250000000012,0.542857142857067,0.624999999999985,0.535714285714233,0.014285714285732,0.000000000000000,-0.000000000000065,-0.012500000000056,0.000000000000046,0.012500000000062,-0.014285714285714,-0.000000000000006,2 -1244,1257,1259,1272,0.637500000000043,0.549999999999912,0.631250000000012,0.542857142857067,0.631250000000009,0.557142857142793,0.624999999999978,0.549999999999948,0.014285714285736,-0.000000000000000,-0.000000000000046,-0.012500000000062,0.000000000000027,0.012500000000068,-0.014285714285717,-0.000000000000006,2 -1245,1258,1260,1273,0.637500000000043,0.564285714285648,0.631250000000009,0.557142857142793,0.631250000000006,0.571428571428520,0.624999999999972,0.564285714285665,0.014285714285737,0.000000000000000,-0.000000000000027,-0.012500000000068,0.000000000000007,0.012500000000074,-0.014285714285717,-0.000000000000006,2 -1246,1259,1261,1274,0.637500000000043,0.578571428571389,0.631250000000006,0.571428571428520,0.631250000000003,0.585714285714260,0.624999999999966,0.578571428571391,0.014285714285744,-0.000000000000000,-0.000000000000007,-0.012500000000074,-0.000000000000002,0.012500000000081,-0.014285714285735,-0.000000000000006,2 -1247,1260,1275,1302,0.637500000000043,0.592857142857130,0.631250000000003,0.585714285714260,0.624999999999960,0.592857142857129,0.631250000000000,0.600000000000000,0.014285714285739,-0.000000000000000,0.000000000000002,-0.012500000000081,-0.014285714285741,-0.000000000000006,0.000000000000000,0.012500000000087,2 -1115,1248,1263,1276,0.618750000000000,0.400000000000000,0.625000000000040,0.407142857142856,0.618749999999997,0.414285714285724,0.612499999999957,0.407142857142867,0.000000000000000,-0.012500000000087,0.014285714285713,0.000000000000006,0.000000000000022,0.012500000000081,-0.014285714285734,-0.000000000000000,2 -1249,1262,1264,1277,0.625000000000034,0.421428571428579,0.618749999999997,0.414285714285724,0.618749999999994,0.428571428571461,0.612499999999957,0.421428571428606,0.014285714285733,0.000000000000006,-0.000000000000022,-0.012500000000081,0.000000000000032,0.012500000000074,-0.014285714285743,-0.000000000000000,2 -1250,1263,1265,1278,0.625000000000028,0.435714285714303,0.618749999999994,0.428571428571461,0.618749999999991,0.442857142857188,0.612499999999957,0.435714285714346,0.014285714285715,0.000000000000006,-0.000000000000032,-0.012500000000074,0.000000000000055,0.012500000000068,-0.014285714285738,0.000000000000000,2 -1251,1264,1266,1279,0.625000000000022,0.450000000000019,0.618749999999991,0.442857142857188,0.618749999999988,0.457142857142916,0.612499999999957,0.450000000000085,0.014285714285717,0.000000000000006,-0.000000000000055,-0.012500000000068,0.000000000000078,0.012500000000062,-0.014285714285740,-0.000000000000000,2 -1252,1265,1267,1280,0.625000000000016,0.464285714285735,0.618749999999988,0.457142857142916,0.618749999999985,0.471428571428643,0.612499999999957,0.464285714285824,0.014285714285715,0.000000000000006,-0.000000000000078,-0.012500000000062,0.000000000000101,0.012500000000056,-0.014285714285738,0.000000000000000,2 -1253,1266,1268,1281,0.625000000000009,0.478571428571448,0.618749999999985,0.471428571428643,0.618749999999981,0.485714285714365,0.612499999999957,0.478571428571560,0.014285714285712,0.000000000000006,-0.000000000000101,-0.012500000000056,0.000000000000122,0.012500000000050,-0.014285714285733,-0.000000000000000,2 -1254,1267,1269,1282,0.625000000000003,0.492857142857166,0.618749999999981,0.485714285714365,0.618749999999978,0.500000000000093,0.612499999999957,0.492857142857293,0.014285714285723,0.000000000000006,-0.000000000000122,-0.012500000000050,0.000000000000133,0.012500000000043,-0.014285714285733,-0.000000000000000,2 -1255,1268,1270,1283,0.624999999999997,0.507142857142864,0.618749999999978,0.500000000000093,0.618749999999975,0.514285714285753,0.612499999999957,0.507142857142983,0.014285714285673,0.000000000000006,-0.000000000000133,-0.012500000000043,0.000000000000106,0.012500000000037,-0.014285714285647,-0.000000000000000,2 -1256,1269,1271,1284,0.624999999999991,0.521428571428538,0.618749999999975,0.514285714285753,0.618749999999972,0.528571428571409,0.612499999999957,0.521428571428624,0.014285714285676,0.000000000000006,-0.000000000000106,-0.012500000000037,0.000000000000065,0.012500000000031,-0.014285714285635,-0.000000000000000,2 -1257,1270,1272,1285,0.624999999999985,0.535714285714233,0.618749999999972,0.528571428571409,0.618749999999969,0.542857142857113,0.612499999999957,0.535714285714289,0.014285714285714,0.000000000000006,-0.000000000000065,-0.012500000000031,0.000000000000047,0.012500000000025,-0.014285714285695,-0.000000000000000,2 -1258,1271,1273,1286,0.624999999999978,0.549999999999948,0.618749999999969,0.542857142857113,0.618749999999966,0.557142857142820,0.612499999999957,0.549999999999985,0.014285714285717,0.000000000000006,-0.000000000000047,-0.012500000000025,0.000000000000027,0.012500000000018,-0.014285714285697,-0.000000000000000,2 -1259,1272,1274,1287,0.624999999999972,0.564285714285665,0.618749999999966,0.557142857142820,0.618749999999963,0.571428571428527,0.612499999999957,0.564285714285682,0.014285714285717,0.000000000000006,-0.000000000000027,-0.012500000000018,0.000000000000007,0.012500000000012,-0.014285714285697,-0.000000000000000,2 -1260,1273,1275,1288,0.624999999999966,0.578571428571391,0.618749999999963,0.571428571428527,0.618749999999960,0.585714285714258,0.612499999999957,0.578571428571393,0.014285714285735,0.000000000000006,-0.000000000000007,-0.012500000000012,-0.000000000000002,0.012500000000006,-0.014285714285726,-0.000000000000000,2 -1261,1274,1289,1296,0.624999999999960,0.592857142857129,0.618749999999960,0.585714285714258,0.612499999999957,0.592857142857128,0.618749999999957,0.600000000000000,0.014285714285741,0.000000000000006,0.000000000000002,-0.012500000000006,-0.014285714285743,0.000000000000000,0.000000000000000,0.012500000000000,2 -1056,1262,1277,7274,0.606249999999978,0.400000000000000,0.612499999999957,0.407142857142867,0.606249999999978,0.414285714285745,0.600000000000000,0.407142857142878,-0.000000000000000,-0.012499999999957,0.014285714285734,0.000000000000000,0.000000000000022,0.012499999999957,-0.014285714285756,-0.000000000000000,2 -1263,1276,1278,7275,0.612499999999957,0.421428571428606,0.606249999999978,0.414285714285745,0.606249999999978,0.428571428571493,0.600000000000000,0.421428571428633,0.014285714285743,0.000000000000000,-0.000000000000022,-0.012499999999957,0.000000000000032,0.012499999999957,-0.014285714285753,0.000000000000000,2 -1264,1277,1279,7276,0.612499999999957,0.435714285714346,0.606249999999978,0.428571428571493,0.606249999999978,0.442857142857243,0.600000000000000,0.435714285714389,0.014285714285738,-0.000000000000000,-0.000000000000032,-0.012499999999957,0.000000000000055,0.012499999999957,-0.014285714285761,0.000000000000000,2 -1265,1278,1280,7277,0.612499999999957,0.450000000000085,0.606249999999978,0.442857142857243,0.606249999999978,0.457142857142995,0.600000000000000,0.450000000000152,0.014285714285740,0.000000000000000,-0.000000000000055,-0.012499999999957,0.000000000000078,0.012499999999957,-0.014285714285764,0.000000000000000,2 -1266,1279,1281,7278,0.612499999999957,0.464285714285824,0.606249999999978,0.457142857142995,0.606249999999978,0.471428571428744,0.600000000000000,0.464285714285914,0.014285714285738,-0.000000000000000,-0.000000000000078,-0.012499999999957,0.000000000000101,0.012499999999957,-0.014285714285761,0.000000000000000,2 -1267,1280,1282,7279,0.612499999999957,0.478571428571560,0.606249999999978,0.471428571428744,0.606249999999978,0.485714285714488,0.600000000000000,0.478571428571672,0.014285714285733,0.000000000000000,-0.000000000000101,-0.012499999999957,0.000000000000122,0.012499999999957,-0.014285714285754,0.000000000000000,2 -1268,1281,1283,7280,0.612499999999957,0.492857142857293,0.606249999999978,0.485714285714488,0.606249999999978,0.500000000000226,0.600000000000000,0.492857142857421,0.014285714285733,0.000000000000000,-0.000000000000122,-0.012499999999957,0.000000000000133,0.012499999999957,-0.014285714285744,0.000000000000000,2 -1269,1282,1284,7281,0.612499999999957,0.507142857142983,0.606249999999978,0.500000000000226,0.606249999999978,0.514285714285859,0.600000000000000,0.507142857143103,0.014285714285647,0.000000000000000,-0.000000000000133,-0.012499999999957,0.000000000000106,0.012499999999957,-0.014285714285620,0.000000000000000,2 -1270,1283,1285,7282,0.612499999999957,0.521428571428624,0.606249999999978,0.514285714285859,0.606249999999978,0.528571428571474,0.600000000000000,0.521428571428709,0.014285714285635,0.000000000000000,-0.000000000000106,-0.012499999999957,0.000000000000065,0.012499999999957,-0.014285714285593,0.000000000000000,2 -1271,1284,1286,7283,0.612499999999957,0.535714285714289,0.606249999999978,0.528571428571474,0.606249999999978,0.542857142857160,0.600000000000000,0.535714285714345,0.014285714285695,0.000000000000000,-0.000000000000065,-0.012499999999957,0.000000000000046,0.012499999999957,-0.014285714285677,0.000000000000000,2 -1272,1285,1287,7284,0.612499999999957,0.549999999999985,0.606249999999978,0.542857142857160,0.606249999999978,0.557142857142847,0.600000000000000,0.550000000000022,0.014285714285697,0.000000000000000,-0.000000000000046,-0.012499999999957,0.000000000000027,0.012499999999957,-0.014285714285677,0.000000000000000,2 -1273,1286,1288,7285,0.612499999999957,0.564285714285682,0.606249999999978,0.557142857142847,0.606249999999978,0.571428571428534,0.600000000000000,0.564285714285699,0.014285714285697,0.000000000000000,-0.000000000000027,-0.012499999999957,0.000000000000007,0.012499999999957,-0.014285714285677,0.000000000000000,2 -1274,1287,1289,7286,0.612499999999957,0.578571428571393,0.606249999999978,0.571428571428534,0.606249999999978,0.585714285714256,0.600000000000000,0.578571428571396,0.014285714285726,0.000000000000000,-0.000000000000007,-0.012499999999957,-0.000000000000002,0.012499999999957,-0.014285714285717,0.000000000000000,2 -1275,1288,1290,7287,0.612499999999957,0.592857142857128,0.606249999999978,0.585714285714256,0.606249999999978,0.600000000000000,0.600000000000000,0.592857142857127,0.014285714285743,-0.000000000000000,0.000000000000002,-0.012499999999957,0.000000000000000,0.012499999999957,-0.014285714285745,0.000000000000000,2 -1289,1291,1296,1482,0.606249999999978,0.600000000000000,0.606249999999978,0.608333333333283,0.612499999999957,0.604166666666641,0.600000000000000,0.604166666666641,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.008333333333283,-0.000000000000000,-0.008333333333283,-0.000000000000000,2 -1290,1292,1297,1483,0.606249999999978,0.608333333333283,0.606249999999978,0.616666666666674,0.612499999999957,0.612499999999978,0.600000000000000,0.612499999999978,-0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,-0.008333333333391,0.000000000000000,2 -1291,1293,1298,1484,0.606249999999978,0.616666666666674,0.606249999999978,0.625000000000033,0.612499999999957,0.620833333333348,0.600000000000000,0.620833333333359,0.000000000000000,-0.012499999999957,0.000000000000022,0.012499999999957,0.008333333333348,0.000000000000000,-0.008333333333369,0.000000000000000,2 -1292,1294,1299,1485,0.606249999999978,0.625000000000033,0.606249999999978,0.633333333333326,0.612499999999957,0.629166666666674,0.600000000000000,0.629166666666685,-0.000000000000022,-0.012499999999957,0.000000000000000,0.012499999999957,0.008333333333304,-0.000000000000000,-0.008333333333283,0.000000000000000,2 -1293,1295,1300,1486,0.606249999999978,0.633333333333326,0.606249999999978,0.641666666666717,0.612499999999957,0.637500000000022,0.600000000000000,0.637500000000022,-0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999956,0.008333333333391,0.000000000000000,-0.008333333333391,0.000000000000000,2 -1294,1301,1487,11869,0.606249999999978,0.641666666666717,0.612499999999957,0.645833333333359,0.600000000000000,0.645833333333359,0.606249999999978,0.650000000000000,-0.000000000000000,-0.012499999999956,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.012499999999957,1 -1275,1290,1297,1302,0.618749999999957,0.600000000000000,0.612499999999957,0.604166666666641,0.618749999999957,0.608333333333283,0.624999999999956,0.604166666666641,-0.000000000000000,-0.012500000000000,-0.008333333333283,0.000000000000000,0.000000000000000,0.012500000000000,0.008333333333283,0.000000000000000,2 -1291,1296,1298,1303,0.612499999999957,0.612499999999978,0.618749999999957,0.608333333333283,0.618749999999957,0.616666666666674,0.624999999999956,0.612499999999978,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333391,-0.000000000000000,2 -1292,1297,1299,1304,0.612499999999957,0.620833333333348,0.618749999999957,0.616666666666674,0.618749999999957,0.625000000000011,0.624999999999956,0.620833333333337,-0.008333333333348,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000022,0.012500000000000,0.008333333333326,-0.000000000000000,2 -1293,1298,1300,1305,0.612499999999957,0.629166666666674,0.618749999999957,0.625000000000011,0.618749999999957,0.633333333333326,0.624999999999957,0.629166666666663,-0.008333333333304,0.000000000000000,-0.000000000000022,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333326,0.000000000000000,2 -1294,1299,1301,1306,0.612499999999957,0.637500000000022,0.618749999999957,0.633333333333326,0.618749999999957,0.641666666666717,0.624999999999957,0.637500000000022,-0.008333333333391,-0.000000000000000,-0.000000000000000,-0.012500000000000,0.000000000000000,0.012500000000000,0.008333333333391,-0.000000000000000,2 -1295,1300,1307,11869,0.612499999999957,0.645833333333359,0.618749999999957,0.641666666666717,0.624999999999957,0.645833333333359,0.618749999999957,0.650000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.012500000000000,0.008333333333283,0.000000000000000,0.000000000000000,0.012500000000000,1 -1261,1296,1303,1308,0.631250000000000,0.600000000000000,0.624999999999956,0.604166666666641,0.631250000000000,0.608333333333283,0.637500000000043,0.604166666666641,-0.000000000000000,-0.012500000000087,-0.008333333333283,-0.000000000000000,0.000000000000000,0.012500000000087,0.008333333333283,0.000000000000000,2 -1297,1302,1304,1309,0.624999999999956,0.612499999999978,0.631250000000000,0.608333333333283,0.631250000000000,0.616666666666674,0.637500000000043,0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.012500000000087,-0.000000000000000,0.012500000000087,0.008333333333391,0.000000000000000,2 -1298,1303,1305,1310,0.624999999999956,0.620833333333337,0.631250000000000,0.616666666666674,0.631250000000000,0.624999999999989,0.637500000000043,0.620833333333326,-0.008333333333326,0.000000000000000,0.000000000000000,-0.012500000000087,0.000000000000022,0.012500000000087,0.008333333333304,0.000000000000000,2 -1299,1304,1306,1311,0.624999999999957,0.629166666666663,0.631250000000000,0.624999999999989,0.631250000000000,0.633333333333326,0.637500000000043,0.629166666666652,-0.008333333333326,-0.000000000000000,-0.000000000000022,-0.012500000000087,0.000000000000000,0.012500000000087,0.008333333333348,0.000000000000000,2 -1300,1305,1307,1312,0.624999999999957,0.637500000000022,0.631250000000000,0.633333333333326,0.631250000000000,0.641666666666717,0.637500000000043,0.637500000000022,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.012500000000087,0.000000000000000,0.012500000000087,0.008333333333391,0.000000000000000,2 -1301,1306,1313,11869,0.624999999999957,0.645833333333359,0.631250000000000,0.641666666666717,0.637500000000043,0.645833333333359,0.631250000000000,0.650000000000000,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.012500000000087,0.008333333333283,-0.000000000000000,0.000000000000000,0.012500000000087,1 -1247,1302,1309,11869,0.643750000000022,0.600000000000000,0.637500000000043,0.604166666666641,0.643750000000022,0.608333333333283,0.650000000000000,0.604166666666641,0.000000000000000,-0.012499999999957,-0.008333333333283,-0.000000000000000,-0.000000000000000,0.012499999999957,0.008333333333283,0.000000000000000,1 -1303,1308,1310,11869,0.637500000000043,0.612499999999978,0.643750000000022,0.608333333333283,0.643750000000022,0.616666666666674,0.650000000000000,0.612499999999978,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.012499999999957,0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,1 -1304,1309,1311,11869,0.637500000000043,0.620833333333326,0.643750000000022,0.616666666666674,0.643750000000022,0.624999999999967,0.650000000000000,0.620833333333315,-0.008333333333304,-0.000000000000000,-0.000000000000000,-0.012499999999957,0.000000000000022,0.012499999999957,0.008333333333283,0.000000000000000,1 -1305,1310,1312,11869,0.637500000000043,0.629166666666652,0.643750000000022,0.624999999999967,0.643750000000022,0.633333333333326,0.650000000000000,0.629166666666641,-0.008333333333348,-0.000000000000000,-0.000000000000022,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333369,0.000000000000000,1 -1306,1311,1313,11869,0.637500000000043,0.637500000000022,0.643750000000022,0.633333333333326,0.643750000000022,0.641666666666717,0.650000000000000,0.637500000000022,-0.008333333333391,-0.000000000000000,0.000000000000000,-0.012499999999957,-0.000000000000000,0.012499999999957,0.008333333333391,0.000000000000000,1 -1307,1312,11869,0.637500000000043,0.645833333333359,0.643750000000022,0.641666666666717,0.650000000000000,0.645833333333359,-0.008333333333283,0.000000000000000,0.000000000000000,-0.012499999999957,0.008333333333283,-0.000000000000000,1 -1315,1320,1656,6895,0.206896551724132,0.608333333333283,0.213793103448259,0.604166666666641,0.200000000000000,0.604166666666641,0.206896551724127,0.600000000000000,0.000000000000000,0.013793103448264,0.008333333333282,-0.000000000000011,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448254,2 -1314,1316,1321,1657,0.206896551724132,0.608333333333283,0.206896551724138,0.616666666666674,0.213793103448270,0.612499999999978,0.200000000000000,0.612499999999978,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448275,0.008333333333391,-0.000000000000011,-0.008333333333391,0.000000000000000,2 -1315,1317,1322,1658,0.206896551724138,0.616666666666674,0.206896551724143,0.625000000000043,0.213793103448281,0.620833333333358,0.200000000000000,0.620833333333359,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448286,0.008333333333369,-0.000000000000011,-0.008333333333369,0.000000000000000,2 -1316,1318,1323,1659,0.206896551724143,0.625000000000043,0.206896551724148,0.633333333333326,0.213793103448291,0.629166666666685,0.200000000000000,0.629166666666685,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448297,0.008333333333283,-0.000000000000011,-0.008333333333283,0.000000000000000,2 -1317,1319,1324,1660,0.206896551724148,0.633333333333326,0.206896551724154,0.641666666666717,0.213793103448302,0.637500000000021,0.200000000000000,0.637500000000022,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448307,0.008333333333391,-0.000000000000011,-0.008333333333391,0.000000000000000,2 -1318,1325,1661,11869,0.206896551724154,0.641666666666717,0.213793103448313,0.645833333333358,0.200000000000000,0.645833333333359,0.206896551724159,0.650000000000000,-0.000000000000000,-0.013793103448307,0.008333333333283,-0.000000000000011,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448318,1 -1314,1321,1326,6909,0.213793103448259,0.604166666666641,0.220689655172392,0.608333333333282,0.227586206896508,0.604166666666641,0.220689655172375,0.600000000000000,-0.008333333333282,0.000000000000011,-0.000000000000000,0.013793103448255,0.008333333333283,-0.000000000000023,-0.000000000000000,-0.013793103448243,2 -1315,1320,1322,1327,0.213793103448270,0.612499999999978,0.220689655172392,0.608333333333282,0.220689655172409,0.616666666666674,0.227586206896531,0.612499999999978,-0.008333333333391,0.000000000000011,0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448267,0.008333333333391,-0.000000000000023,2 -1316,1321,1323,1328,0.213793103448281,0.620833333333358,0.220689655172409,0.616666666666674,0.220689655172426,0.625000000000043,0.227586206896554,0.620833333333358,-0.008333333333369,0.000000000000011,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448279,0.008333333333369,-0.000000000000023,2 -1317,1322,1324,1329,0.213793103448291,0.629166666666685,0.220689655172426,0.625000000000043,0.220689655172443,0.633333333333326,0.227586206896577,0.629166666666685,-0.008333333333283,0.000000000000011,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448292,0.008333333333283,-0.000000000000023,2 -1318,1323,1325,1330,0.213793103448302,0.637500000000021,0.220689655172443,0.633333333333326,0.220689655172459,0.641666666666717,0.227586206896600,0.637500000000021,-0.008333333333391,0.000000000000011,-0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448304,0.008333333333391,-0.000000000000023,2 -1319,1324,1331,11869,0.213793103448313,0.645833333333358,0.220689655172459,0.641666666666717,0.227586206896623,0.645833333333358,0.220689655172476,0.650000000000000,-0.008333333333283,0.000000000000011,-0.000000000000000,-0.013793103448304,0.008333333333283,-0.000000000000023,-0.000000000000000,0.013793103448316,1 -1320,1327,1332,6923,0.227586206896508,0.604166666666641,0.234482758620651,0.608333333333283,0.241379310344766,0.604166666666641,0.234482758620623,0.600000000000000,-0.008333333333283,0.000000000000023,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000033,-0.000000000000000,-0.013793103448254,2 -1321,1326,1328,1333,0.227586206896531,0.612499999999978,0.234482758620651,0.608333333333283,0.234482758620679,0.616666666666674,0.241379310344799,0.612499999999978,-0.008333333333391,0.000000000000023,-0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448273,0.008333333333391,-0.000000000000033,2 -1322,1327,1329,1334,0.227586206896554,0.620833333333358,0.234482758620679,0.616666666666674,0.234482758620707,0.625000000000043,0.241379310344832,0.620833333333358,-0.008333333333369,0.000000000000023,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448283,0.008333333333369,-0.000000000000033,2 -1323,1328,1330,1335,0.227586206896577,0.629166666666685,0.234482758620707,0.625000000000043,0.234482758620735,0.633333333333326,0.241379310344864,0.629166666666685,-0.008333333333283,0.000000000000023,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448292,0.008333333333283,-0.000000000000033,2 -1324,1329,1331,1336,0.227586206896600,0.637500000000021,0.234482758620735,0.633333333333326,0.234482758620762,0.641666666666717,0.241379310344897,0.637500000000021,-0.008333333333391,0.000000000000023,-0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448302,0.008333333333391,-0.000000000000033,2 -1325,1330,1337,11869,0.227586206896623,0.645833333333358,0.234482758620762,0.641666666666717,0.241379310344930,0.645833333333359,0.234482758620790,0.650000000000000,-0.008333333333283,0.000000000000023,0.000000000000000,-0.013793103448302,0.008333333333283,-0.000000000000033,-0.000000000000000,0.013793103448312,1 -1326,1333,1338,6937,0.241379310344766,0.604166666666641,0.248275862068911,0.608333333333283,0.255172413793017,0.604166666666641,0.248275862068872,0.600000000000000,-0.008333333333283,0.000000000000033,-0.000000000000000,0.013793103448256,0.008333333333283,-0.000000000000044,-0.000000000000000,-0.013793103448245,2 -1327,1332,1334,1339,0.241379310344799,0.612499999999978,0.248275862068911,0.608333333333283,0.248275862068949,0.616666666666674,0.255172413793061,0.612499999999978,-0.008333333333391,0.000000000000033,0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448267,0.008333333333391,-0.000000000000044,2 -1328,1333,1335,1340,0.241379310344832,0.620833333333358,0.248275862068949,0.616666666666674,0.248275862068987,0.625000000000043,0.255172413793104,0.620833333333358,-0.008333333333369,0.000000000000033,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448278,0.008333333333369,-0.000000000000044,2 -1329,1334,1336,1341,0.241379310344864,0.629166666666685,0.248275862068987,0.625000000000043,0.248275862069026,0.633333333333326,0.255172413793148,0.629166666666685,-0.008333333333283,0.000000000000033,-0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448289,0.008333333333283,-0.000000000000044,2 -1330,1335,1337,1342,0.241379310344897,0.637500000000021,0.248275862069026,0.633333333333326,0.248275862069064,0.641666666666717,0.255172413793192,0.637500000000021,-0.008333333333391,0.000000000000033,-0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000044,2 -1331,1336,1343,11869,0.241379310344930,0.645833333333359,0.248275862069064,0.641666666666717,0.255172413793236,0.645833333333358,0.248275862069102,0.650000000000000,-0.008333333333283,0.000000000000033,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000044,-0.000000000000000,0.013793103448312,1 -1332,1339,1344,6951,0.255172413793017,0.604166666666641,0.262068965517163,0.608333333333283,0.268965517241258,0.604166666666641,0.262068965517112,0.600000000000000,-0.008333333333283,0.000000000000044,0.000000000000000,0.013793103448248,0.008333333333282,-0.000000000000057,-0.000000000000000,-0.013793103448235,2 -1333,1338,1340,1345,0.255172413793061,0.612499999999978,0.262068965517163,0.608333333333283,0.262068965517213,0.616666666666674,0.268965517241315,0.612499999999978,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000057,2 -1334,1339,1341,1346,0.255172413793104,0.620833333333358,0.262068965517213,0.616666666666674,0.262068965517263,0.625000000000043,0.268965517241372,0.620833333333358,-0.008333333333369,0.000000000000044,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000056,2 -1335,1340,1342,1347,0.255172413793148,0.629166666666685,0.262068965517263,0.625000000000043,0.262068965517313,0.633333333333326,0.268965517241428,0.629166666666685,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000057,2 -1336,1341,1343,1348,0.255172413793192,0.637500000000021,0.262068965517313,0.633333333333326,0.262068965517364,0.641666666666717,0.268965517241485,0.637500000000021,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000057,2 -1337,1342,1349,11869,0.255172413793236,0.645833333333358,0.262068965517364,0.641666666666717,0.268965517241541,0.645833333333359,0.262068965517414,0.650000000000000,-0.008333333333283,0.000000000000044,0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000057,-0.000000000000000,0.013793103448312,1 -1338,1345,1350,6965,0.268965517241258,0.604166666666641,0.275862068965411,0.608333333333282,0.282758620689500,0.604166666666641,0.275862068965347,0.600000000000000,-0.008333333333282,0.000000000000057,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000070,-0.000000000000000,-0.013793103448235,2 -1339,1344,1346,1351,0.268965517241315,0.612499999999978,0.275862068965411,0.608333333333282,0.275862068965475,0.616666666666674,0.282758620689571,0.612499999999978,-0.008333333333391,0.000000000000057,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000070,2 -1340,1345,1347,1352,0.268965517241372,0.620833333333358,0.275862068965475,0.616666666666674,0.275862068965538,0.625000000000043,0.282758620689641,0.620833333333358,-0.008333333333369,0.000000000000056,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000070,2 -1341,1346,1348,1353,0.268965517241428,0.629166666666685,0.275862068965538,0.625000000000043,0.275862068965601,0.633333333333326,0.282758620689711,0.629166666666685,-0.008333333333283,0.000000000000057,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448290,0.008333333333283,-0.000000000000070,2 -1342,1347,1349,1354,0.268965517241485,0.637500000000021,0.275862068965601,0.633333333333326,0.275862068965665,0.641666666666717,0.282758620689782,0.637500000000021,-0.008333333333391,0.000000000000057,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448304,0.008333333333391,-0.000000000000070,2 -1343,1348,1355,11869,0.268965517241541,0.645833333333359,0.275862068965665,0.641666666666717,0.282758620689852,0.645833333333359,0.275862068965729,0.650000000000000,-0.008333333333283,0.000000000000057,-0.000000000000000,-0.013793103448304,0.008333333333283,-0.000000000000070,-0.000000000000000,0.013793103448317,1 -1344,1351,1356,6979,0.282758620689500,0.604166666666641,0.289655172413660,0.608333333333283,0.296551724137742,0.604166666666641,0.289655172413583,0.600000000000000,-0.008333333333283,0.000000000000070,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000084,-0.000000000000000,-0.013793103448235,2 -1345,1350,1352,1357,0.282758620689571,0.612499999999978,0.289655172413660,0.608333333333283,0.289655172413737,0.616666666666674,0.296551724137826,0.612499999999978,-0.008333333333391,0.000000000000070,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000084,2 -1346,1351,1353,1358,0.282758620689641,0.620833333333358,0.289655172413737,0.616666666666674,0.289655172413814,0.625000000000043,0.296551724137911,0.620833333333358,-0.008333333333369,0.000000000000070,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448276,0.008333333333369,-0.000000000000084,2 -1347,1352,1354,1359,0.282758620689711,0.629166666666685,0.289655172413814,0.625000000000043,0.289655172413892,0.633333333333326,0.296551724137995,0.629166666666685,-0.008333333333283,0.000000000000070,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448290,0.008333333333283,-0.000000000000084,2 -1348,1353,1355,1360,0.282758620689782,0.637500000000021,0.289655172413892,0.633333333333326,0.289655172413969,0.641666666666717,0.296551724138079,0.637500000000021,-0.008333333333391,0.000000000000070,-0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448304,0.008333333333391,-0.000000000000084,2 -1349,1354,1361,11869,0.282758620689852,0.645833333333359,0.289655172413969,0.641666666666717,0.296551724138163,0.645833333333359,0.289655172414046,0.650000000000000,-0.008333333333283,0.000000000000070,0.000000000000000,-0.013793103448304,0.008333333333283,-0.000000000000084,-0.000000000000000,0.013793103448318,1 -1350,1357,1362,6993,0.296551724137742,0.604166666666641,0.303448275861909,0.608333333333283,0.310344827585984,0.604166666666641,0.303448275861818,0.600000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000098,-0.000000000000000,-0.013793103448235,2 -1351,1356,1358,1363,0.296551724137826,0.612499999999978,0.303448275861909,0.608333333333283,0.303448275862000,0.616666666666674,0.310344827586082,0.612499999999978,-0.008333333333391,0.000000000000084,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000098,2 -1352,1357,1359,1364,0.296551724137911,0.620833333333358,0.303448275862000,0.616666666666674,0.303448275862091,0.625000000000043,0.310344827586180,0.620833333333358,-0.008333333333369,0.000000000000084,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000098,2 -1353,1358,1360,1365,0.296551724137995,0.629166666666685,0.303448275862091,0.625000000000043,0.303448275862182,0.633333333333326,0.310344827586278,0.629166666666685,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448290,0.008333333333283,-0.000000000000098,2 -1354,1359,1361,1366,0.296551724138079,0.637500000000021,0.303448275862182,0.633333333333326,0.303448275862273,0.641666666666717,0.310344827586376,0.637500000000021,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448304,0.008333333333391,-0.000000000000098,2 -1355,1360,1367,11869,0.296551724138163,0.645833333333359,0.303448275862273,0.641666666666717,0.310344827586474,0.645833333333358,0.303448275862364,0.650000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448304,0.008333333333283,-0.000000000000098,-0.000000000000000,0.013793103448318,1 -1356,1363,1368,7007,0.310344827585984,0.604166666666641,0.317241379310157,0.608333333333283,0.324137931034226,0.604166666666641,0.317241379310053,0.600000000000000,-0.008333333333283,0.000000000000098,0.000000000000000,0.013793103448248,0.008333333333283,-0.000000000000111,-0.000000000000000,-0.013793103448235,2 -1357,1362,1364,1369,0.310344827586082,0.612499999999978,0.317241379310157,0.608333333333283,0.317241379310262,0.616666666666674,0.324137931034337,0.612499999999978,-0.008333333333391,0.000000000000098,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000111,2 -1358,1363,1365,1370,0.310344827586180,0.620833333333358,0.317241379310262,0.616666666666674,0.317241379310367,0.625000000000043,0.324137931034449,0.620833333333358,-0.008333333333369,0.000000000000098,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000111,2 -1359,1364,1366,1371,0.310344827586278,0.629166666666685,0.317241379310367,0.625000000000043,0.317241379310472,0.633333333333326,0.324137931034560,0.629166666666685,-0.008333333333283,0.000000000000098,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448289,0.008333333333283,-0.000000000000112,2 -1360,1365,1367,1372,0.310344827586376,0.637500000000021,0.317241379310472,0.633333333333326,0.317241379310576,0.641666666666717,0.324137931034672,0.637500000000021,-0.008333333333391,0.000000000000098,-0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448302,0.008333333333391,-0.000000000000111,2 -1361,1366,1373,11869,0.310344827586474,0.645833333333358,0.317241379310576,0.641666666666717,0.324137931034783,0.645833333333359,0.317241379310681,0.650000000000000,-0.008333333333283,0.000000000000098,0.000000000000000,-0.013793103448302,0.008333333333283,-0.000000000000111,-0.000000000000000,0.013793103448315,1 -1362,1369,1374,7021,0.324137931034226,0.604166666666641,0.331034482758406,0.608333333333283,0.337931034482468,0.604166666666641,0.331034482758288,0.600000000000000,-0.008333333333283,0.000000000000111,0.000000000000000,0.013793103448248,0.008333333333282,-0.000000000000124,-0.000000000000000,-0.013793103448235,2 -1363,1368,1370,1375,0.324137931034337,0.612499999999978,0.331034482758406,0.608333333333283,0.331034482758523,0.616666666666674,0.337931034482592,0.612499999999978,-0.008333333333391,0.000000000000111,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000124,2 -1364,1369,1371,1376,0.324137931034449,0.620833333333358,0.331034482758523,0.616666666666674,0.331034482758641,0.625000000000043,0.337931034482716,0.620833333333358,-0.008333333333369,0.000000000000111,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000124,2 -1365,1370,1372,1377,0.324137931034560,0.629166666666685,0.331034482758641,0.625000000000043,0.331034482758759,0.633333333333326,0.337931034482840,0.629166666666685,-0.008333333333283,0.000000000000112,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000124,2 -1366,1371,1373,1378,0.324137931034672,0.637500000000021,0.331034482758759,0.633333333333326,0.331034482758877,0.641666666666717,0.337931034482964,0.637500000000021,-0.008333333333391,0.000000000000111,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000124,2 -1367,1372,1379,11869,0.324137931034783,0.645833333333359,0.331034482758877,0.641666666666717,0.337931034483088,0.645833333333359,0.331034482758994,0.650000000000000,-0.008333333333283,0.000000000000111,-0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000124,-0.000000000000000,0.013793103448312,1 -1368,1375,1380,7035,0.337931034482468,0.604166666666641,0.344827586206654,0.608333333333283,0.351724137930709,0.604166666666641,0.344827586206523,0.600000000000000,-0.008333333333282,0.000000000000124,-0.000000000000000,0.013793103448248,0.008333333333283,-0.000000000000137,-0.000000000000000,-0.013793103448235,2 -1369,1374,1376,1381,0.337931034482592,0.612499999999978,0.344827586206654,0.608333333333283,0.344827586206784,0.616666666666674,0.351724137930846,0.612499999999978,-0.008333333333391,0.000000000000124,0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000137,2 -1370,1375,1377,1382,0.337931034482716,0.620833333333358,0.344827586206784,0.616666666666674,0.344827586206915,0.625000000000043,0.351724137930983,0.620833333333358,-0.008333333333369,0.000000000000124,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000137,2 -1371,1376,1378,1383,0.337931034482840,0.629166666666685,0.344827586206915,0.625000000000043,0.344827586207045,0.633333333333326,0.351724137931120,0.629166666666685,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000137,2 -1372,1377,1379,1384,0.337931034482964,0.637500000000021,0.344827586207045,0.633333333333326,0.344827586207176,0.641666666666717,0.351724137931257,0.637500000000021,-0.008333333333391,0.000000000000124,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000137,2 -1373,1378,1385,11869,0.337931034483088,0.645833333333359,0.344827586207176,0.641666666666717,0.351724137931394,0.645833333333358,0.344827586207306,0.650000000000000,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000137,-0.000000000000000,0.013793103448312,1 -1374,1381,1386,7049,0.351724137930709,0.604166666666641,0.358620689654902,0.608333333333283,0.365517241378951,0.604166666666641,0.358620689654758,0.600000000000000,-0.008333333333283,0.000000000000137,0.000000000000000,0.013793103448248,0.008333333333282,-0.000000000000150,-0.000000000000000,-0.013793103448235,2 -1375,1380,1382,1387,0.351724137930846,0.612499999999978,0.358620689654902,0.608333333333283,0.358620689655045,0.616666666666674,0.365517241379100,0.612499999999978,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000150,2 -1376,1381,1383,1388,0.351724137930983,0.620833333333358,0.358620689655045,0.616666666666674,0.358620689655188,0.625000000000043,0.365517241379250,0.620833333333358,-0.008333333333369,0.000000000000137,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000150,2 -1377,1382,1384,1389,0.351724137931120,0.629166666666685,0.358620689655188,0.625000000000043,0.358620689655331,0.633333333333326,0.365517241379400,0.629166666666685,-0.008333333333283,0.000000000000137,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000150,2 -1378,1383,1385,1390,0.351724137931257,0.637500000000021,0.358620689655331,0.633333333333326,0.358620689655475,0.641666666666717,0.365517241379549,0.637500000000021,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000150,2 -1379,1384,1391,11869,0.351724137931394,0.645833333333358,0.358620689655475,0.641666666666717,0.365517241379699,0.645833333333359,0.358620689655618,0.650000000000000,-0.008333333333283,0.000000000000137,0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000150,-0.000000000000000,0.013793103448312,1 -1380,1387,1392,7063,0.365517241378951,0.604166666666641,0.372413793103150,0.608333333333283,0.379310344827193,0.604166666666641,0.372413793102993,0.600000000000000,-0.008333333333282,0.000000000000150,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000164,-0.000000000000000,-0.013793103448235,2 -1381,1386,1388,1393,0.365517241379100,0.612499999999978,0.372413793103150,0.608333333333283,0.372413793103307,0.616666666666674,0.379310344827357,0.612499999999978,-0.008333333333391,0.000000000000150,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448264,0.008333333333391,-0.000000000000164,2 -1382,1387,1389,1394,0.365517241379250,0.620833333333358,0.372413793103307,0.616666666666674,0.372413793103464,0.625000000000043,0.379310344827521,0.620833333333358,-0.008333333333369,0.000000000000150,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448279,0.008333333333369,-0.000000000000164,2 -1383,1388,1390,1395,0.365517241379400,0.629166666666685,0.372413793103464,0.625000000000043,0.372413793103621,0.633333333333326,0.379310344827686,0.629166666666685,-0.008333333333283,0.000000000000150,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448294,0.008333333333283,-0.000000000000164,2 -1384,1389,1391,1396,0.365517241379549,0.637500000000021,0.372413793103621,0.633333333333326,0.372413793103778,0.641666666666717,0.379310344827850,0.637500000000021,-0.008333333333391,0.000000000000150,-0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448308,0.008333333333391,-0.000000000000164,2 -1385,1390,1397,11869,0.365517241379699,0.645833333333359,0.372413793103778,0.641666666666717,0.379310344828015,0.645833333333358,0.372413793103935,0.650000000000000,-0.008333333333283,0.000000000000150,-0.000000000000000,-0.013793103448308,0.008333333333283,-0.000000000000164,-0.000000000000000,0.013793103448323,1 -1386,1393,1398,7077,0.379310344827193,0.604166666666641,0.386206896551399,0.608333333333283,0.393103448275434,0.604166666666641,0.386206896551228,0.600000000000000,-0.008333333333283,0.000000000000164,0.000000000000000,0.013793103448248,0.008333333333283,-0.000000000000177,-0.000000000000000,-0.013793103448235,2 -1387,1392,1394,1399,0.379310344827357,0.612499999999978,0.386206896551399,0.608333333333283,0.386206896551570,0.616666666666674,0.393103448275612,0.612499999999978,-0.008333333333391,0.000000000000164,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000177,2 -1388,1393,1395,1400,0.379310344827521,0.620833333333358,0.386206896551570,0.616666666666674,0.386206896551740,0.625000000000043,0.393103448275789,0.620833333333358,-0.008333333333369,0.000000000000164,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000177,2 -1389,1394,1396,1401,0.379310344827686,0.629166666666685,0.386206896551740,0.625000000000043,0.386206896551911,0.633333333333326,0.393103448275966,0.629166666666685,-0.008333333333283,0.000000000000164,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000177,2 -1390,1395,1397,1402,0.379310344827850,0.637500000000021,0.386206896551911,0.633333333333326,0.386206896552082,0.641666666666717,0.393103448276143,0.637500000000021,-0.008333333333391,0.000000000000164,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000177,2 -1391,1396,1403,11869,0.379310344828015,0.645833333333358,0.386206896552082,0.641666666666717,0.393103448276320,0.645833333333359,0.386206896552252,0.650000000000000,-0.008333333333283,0.000000000000164,0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000177,-0.000000000000000,0.013793103448312,1 -1392,1399,1404,7091,0.393103448275434,0.604166666666641,0.399999999999663,0.608333333333283,0.406896551723716,0.604166666666641,0.399999999999487,0.600000000000000,-0.008333333333283,0.000000000000177,0.000000000000000,0.013793103448280,0.008333333333283,-0.000000000000174,-0.000000000000000,-0.013793103448283,2 -1393,1398,1400,1405,0.393103448275612,0.612499999999978,0.399999999999663,0.608333333333283,0.399999999999838,0.616666666666674,0.406896551723890,0.612499999999978,-0.008333333333391,0.000000000000177,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448277,0.008333333333391,-0.000000000000174,2 -1394,1399,1401,1406,0.393103448275789,0.620833333333358,0.399999999999838,0.616666666666674,0.400000000000014,0.625000000000043,0.406896551724064,0.620833333333358,-0.008333333333369,0.000000000000177,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000174,2 -1395,1400,1402,1407,0.393103448275966,0.629166666666685,0.400000000000014,0.625000000000043,0.400000000000189,0.633333333333326,0.406896551724237,0.629166666666685,-0.008333333333283,0.000000000000177,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448270,0.008333333333283,-0.000000000000174,2 -1396,1401,1403,1408,0.393103448276143,0.637500000000021,0.400000000000189,0.633333333333326,0.400000000000365,0.641666666666717,0.406896551724411,0.637500000000021,-0.008333333333391,0.000000000000177,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448267,0.008333333333391,-0.000000000000174,2 -1397,1402,1409,11869,0.393103448276320,0.645833333333359,0.400000000000365,0.641666666666717,0.406896551724585,0.645833333333359,0.400000000000540,0.650000000000000,-0.008333333333283,0.000000000000177,0.000000000000000,-0.013793103448267,0.008333333333283,-0.000000000000174,-0.000000000000000,0.013793103448264,1 -1398,1405,1410,7105,0.406896551723716,0.604166666666641,0.413793103447953,0.608333333333283,0.420689655172023,0.604166666666641,0.413793103447786,0.600000000000000,-0.008333333333283,0.000000000000174,0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000161,-0.000000000000000,-0.013793103448313,2 -1399,1404,1406,1411,0.406896551723890,0.612499999999978,0.413793103447953,0.608333333333283,0.413793103448121,0.616666666666674,0.420689655172184,0.612499999999978,-0.008333333333391,0.000000000000174,-0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448288,0.008333333333391,-0.000000000000161,2 -1400,1405,1407,1412,0.406896551724064,0.620833333333358,0.413793103448121,0.616666666666674,0.413793103448288,0.625000000000043,0.420689655172345,0.620833333333358,-0.008333333333369,0.000000000000174,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448276,0.008333333333369,-0.000000000000161,2 -1401,1406,1408,1413,0.406896551724237,0.629166666666685,0.413793103448288,0.625000000000043,0.413793103448456,0.633333333333326,0.420689655172507,0.629166666666685,-0.008333333333283,0.000000000000174,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000161,2 -1402,1407,1409,1414,0.406896551724411,0.637500000000021,0.413793103448456,0.633333333333326,0.413793103448623,0.641666666666717,0.420689655172668,0.637500000000021,-0.008333333333391,0.000000000000174,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000161,2 -1403,1408,1415,11869,0.406896551724585,0.645833333333359,0.413793103448623,0.641666666666717,0.420689655172829,0.645833333333359,0.413793103448791,0.650000000000000,-0.008333333333283,0.000000000000174,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000161,-0.000000000000000,0.013793103448238,1 -1404,1411,1416,7119,0.420689655172023,0.604166666666641,0.427586206896255,0.608333333333283,0.434482758620332,0.604166666666641,0.427586206896100,0.600000000000000,-0.008333333333283,0.000000000000161,0.000000000000000,0.013793103448303,0.008333333333283,-0.000000000000148,-0.000000000000000,-0.013793103448315,2 -1405,1410,1412,1417,0.420689655172184,0.612499999999978,0.427586206896255,0.608333333333283,0.427586206896409,0.616666666666674,0.434482758620480,0.612499999999978,-0.008333333333391,0.000000000000161,-0.000000000000000,-0.013793103448303,0.000000000000000,0.013793103448289,0.008333333333391,-0.000000000000148,2 -1406,1411,1413,1418,0.420689655172345,0.620833333333358,0.427586206896409,0.616666666666674,0.427586206896564,0.625000000000043,0.434482758620628,0.620833333333358,-0.008333333333369,0.000000000000161,-0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000148,2 -1407,1412,1414,1419,0.420689655172507,0.629166666666685,0.427586206896564,0.625000000000043,0.427586206896719,0.633333333333326,0.434482758620777,0.629166666666685,-0.008333333333283,0.000000000000161,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448264,0.008333333333283,-0.000000000000148,2 -1408,1413,1415,1420,0.420689655172668,0.637500000000021,0.427586206896719,0.633333333333326,0.427586206896874,0.641666666666717,0.434482758620925,0.637500000000021,-0.008333333333391,0.000000000000161,-0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448251,0.008333333333391,-0.000000000000148,2 -1409,1414,1421,11869,0.420689655172829,0.645833333333359,0.427586206896874,0.641666666666717,0.434482758621073,0.645833333333359,0.427586206897029,0.650000000000000,-0.008333333333283,0.000000000000161,0.000000000000000,-0.013793103448251,0.008333333333283,-0.000000000000148,-0.000000000000000,0.013793103448238,1 -1410,1417,1422,7133,0.434482758620332,0.604166666666641,0.441379310344555,0.608333333333283,0.448275862068635,0.604166666666641,0.441379310344412,0.600000000000000,-0.008333333333283,0.000000000000148,-0.000000000000000,0.013793103448298,0.008333333333283,-0.000000000000136,-0.000000000000000,-0.013793103448310,2 -1411,1416,1418,1423,0.434482758620480,0.612499999999978,0.441379310344555,0.608333333333283,0.441379310344697,0.616666666666674,0.448275862068772,0.612499999999978,-0.008333333333391,0.000000000000148,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000136,2 -1412,1417,1419,1424,0.434482758620628,0.620833333333358,0.441379310344697,0.616666666666674,0.441379310344839,0.625000000000043,0.448275862068908,0.620833333333358,-0.008333333333369,0.000000000000148,0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000136,2 -1413,1418,1420,1425,0.434482758620777,0.629166666666685,0.441379310344839,0.625000000000043,0.441379310344982,0.633333333333326,0.448275862069044,0.629166666666685,-0.008333333333283,0.000000000000148,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000136,2 -1414,1419,1421,1426,0.434482758620925,0.637500000000021,0.441379310344982,0.633333333333326,0.441379310345124,0.641666666666717,0.448275862069181,0.637500000000021,-0.008333333333391,0.000000000000148,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000136,2 -1415,1420,1427,11869,0.434482758621073,0.645833333333359,0.441379310345124,0.641666666666717,0.448275862069317,0.645833333333359,0.441379310345266,0.650000000000000,-0.008333333333283,0.000000000000148,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000136,-0.000000000000000,0.013793103448238,1 -1416,1423,1428,7147,0.448275862068635,0.604166666666641,0.455172413792852,0.608333333333283,0.462068965516938,0.604166666666641,0.455172413792722,0.600000000000000,-0.008333333333283,0.000000000000136,0.000000000000000,0.013793103448297,0.008333333333283,-0.000000000000125,-0.000000000000000,-0.013793103448309,2 -1417,1422,1424,1429,0.448275862068772,0.612499999999978,0.455172413792852,0.608333333333283,0.455172413792982,0.616666666666674,0.462068965517063,0.612499999999978,-0.008333333333391,0.000000000000136,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448285,0.008333333333391,-0.000000000000124,2 -1418,1423,1425,1430,0.448275862068908,0.620833333333358,0.455172413792982,0.616666666666674,0.455172413793113,0.625000000000043,0.462068965517187,0.620833333333358,-0.008333333333369,0.000000000000136,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000124,2 -1419,1424,1426,1431,0.448275862069044,0.629166666666685,0.455172413793113,0.625000000000043,0.455172413793243,0.633333333333326,0.462068965517312,0.629166666666685,-0.008333333333283,0.000000000000136,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000124,2 -1420,1425,1427,1432,0.448275862069181,0.637500000000021,0.455172413793243,0.633333333333326,0.455172413793374,0.641666666666717,0.462068965517436,0.637500000000021,-0.008333333333391,0.000000000000136,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000125,2 -1421,1426,1433,11869,0.448275862069317,0.645833333333359,0.455172413793374,0.641666666666717,0.462068965517561,0.645833333333359,0.455172413793504,0.650000000000000,-0.008333333333283,0.000000000000136,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000125,-0.000000000000000,0.013793103448238,1 -1422,1429,1434,7161,0.462068965516938,0.604166666666641,0.468965517241149,0.608333333333283,0.475862068965242,0.604166666666641,0.468965517241031,0.600000000000000,-0.008333333333283,0.000000000000125,0.000000000000000,0.013793103448297,0.008333333333283,-0.000000000000113,-0.000000000000000,-0.013793103448309,2 -1423,1428,1430,1435,0.462068965517063,0.612499999999978,0.468965517241149,0.608333333333283,0.468965517241268,0.616666666666674,0.475862068965354,0.612499999999978,-0.008333333333391,0.000000000000124,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448285,0.008333333333391,-0.000000000000113,2 -1424,1429,1431,1436,0.462068965517187,0.620833333333358,0.468965517241268,0.616666666666674,0.468965517241386,0.625000000000043,0.475862068965467,0.620833333333358,-0.008333333333369,0.000000000000124,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000113,2 -1425,1430,1432,1437,0.462068965517312,0.629166666666685,0.468965517241386,0.625000000000043,0.468965517241505,0.633333333333326,0.475862068965579,0.629166666666685,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000113,2 -1426,1431,1433,1438,0.462068965517436,0.637500000000021,0.468965517241505,0.633333333333326,0.468965517241623,0.641666666666717,0.475862068965692,0.637500000000021,-0.008333333333391,0.000000000000125,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000113,2 -1427,1432,1439,11869,0.462068965517561,0.645833333333359,0.468965517241623,0.641666666666717,0.475862068965804,0.645833333333359,0.468965517241742,0.650000000000000,-0.008333333333283,0.000000000000125,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000113,-0.000000000000000,0.013793103448238,1 -1428,1435,1440,7175,0.475862068965242,0.604166666666641,0.482758620689448,0.608333333333283,0.489655172413548,0.604166666666641,0.482758620689341,0.600000000000000,-0.008333333333283,0.000000000000113,0.000000000000000,0.013793103448300,0.008333333333283,-0.000000000000100,-0.000000000000000,-0.013793103448313,2 -1429,1434,1436,1441,0.475862068965354,0.612499999999978,0.482758620689448,0.608333333333283,0.482758620689554,0.616666666666674,0.489655172413648,0.612499999999978,-0.008333333333391,0.000000000000113,-0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448288,0.008333333333391,-0.000000000000100,2 -1430,1435,1437,1442,0.475862068965467,0.620833333333358,0.482758620689554,0.616666666666674,0.482758620689660,0.625000000000043,0.489655172413748,0.620833333333358,-0.008333333333369,0.000000000000113,-0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000100,2 -1431,1436,1438,1443,0.475862068965579,0.629166666666685,0.482758620689660,0.625000000000043,0.482758620689767,0.633333333333326,0.489655172413848,0.629166666666685,-0.008333333333283,0.000000000000113,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000100,2 -1432,1437,1439,1444,0.475862068965692,0.637500000000021,0.482758620689767,0.633333333333326,0.482758620689873,0.641666666666717,0.489655172413948,0.637500000000021,-0.008333333333391,0.000000000000113,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000100,2 -1433,1438,1445,11869,0.475862068965804,0.645833333333359,0.482758620689873,0.641666666666717,0.489655172414048,0.645833333333359,0.482758620689980,0.650000000000000,-0.008333333333283,0.000000000000113,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000100,-0.000000000000000,0.013793103448238,1 -1434,1441,1446,7189,0.489655172413548,0.604166666666641,0.496551724137758,0.608333333333283,0.503448275861876,0.604166666666641,0.496551724137666,0.600000000000000,-0.008333333333283,0.000000000000100,0.000000000000000,0.013793103448320,0.008333333333283,-0.000000000000084,-0.000000000000000,-0.013793103448336,2 -1435,1440,1442,1447,0.489655172413648,0.612499999999978,0.496551724137758,0.608333333333283,0.496551724137850,0.616666666666674,0.503448275861959,0.612499999999978,-0.008333333333391,0.000000000000100,-0.000000000000000,-0.013793103448320,0.000000000000000,0.013793103448303,0.008333333333391,-0.000000000000084,2 -1436,1441,1443,1448,0.489655172413748,0.620833333333358,0.496551724137850,0.616666666666674,0.496551724137941,0.625000000000043,0.503448275862043,0.620833333333358,-0.008333333333369,0.000000000000100,-0.000000000000000,-0.013793103448303,0.000000000000000,0.013793103448287,0.008333333333369,-0.000000000000084,2 -1437,1442,1444,1449,0.489655172413848,0.629166666666685,0.496551724137941,0.625000000000043,0.496551724138033,0.633333333333326,0.503448275862127,0.629166666666685,-0.008333333333283,0.000000000000100,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448270,0.008333333333283,-0.000000000000084,2 -1438,1443,1445,1450,0.489655172413948,0.637500000000021,0.496551724138033,0.633333333333326,0.496551724138125,0.641666666666717,0.503448275862210,0.637500000000021,-0.008333333333391,0.000000000000100,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448254,0.008333333333391,-0.000000000000084,2 -1439,1444,1451,11869,0.489655172414048,0.645833333333359,0.496551724138125,0.641666666666717,0.503448275862294,0.645833333333358,0.496551724138217,0.650000000000000,-0.008333333333283,0.000000000000100,-0.000000000000000,-0.013793103448254,0.008333333333283,-0.000000000000084,-0.000000000000000,0.013793103448238,1 -1440,1447,1452,7203,0.503448275861876,0.604166666666641,0.510344827586067,0.608333333333283,0.517241379310181,0.604166666666641,0.510344827585989,0.600000000000000,-0.008333333333283,0.000000000000084,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000071,-0.000000000000000,-0.013793103448311,2 -1441,1446,1448,1453,0.503448275861959,0.612499999999978,0.510344827586067,0.608333333333283,0.510344827586145,0.616666666666674,0.517241379310252,0.612499999999978,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448287,0.008333333333391,-0.000000000000071,2 -1442,1447,1449,1454,0.503448275862043,0.620833333333358,0.510344827586145,0.616666666666674,0.510344827586222,0.625000000000043,0.517241379310324,0.620833333333358,-0.008333333333369,0.000000000000084,-0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448275,0.008333333333370,-0.000000000000071,2 -1443,1448,1450,1455,0.503448275862127,0.629166666666685,0.510344827586222,0.625000000000043,0.510344827586300,0.633333333333326,0.517241379310395,0.629166666666685,-0.008333333333283,0.000000000000084,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000071,2 -1444,1449,1451,1456,0.503448275862210,0.637500000000021,0.510344827586300,0.633333333333326,0.510344827586377,0.641666666666717,0.517241379310467,0.637500000000021,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000071,2 -1445,1450,1457,11869,0.503448275862294,0.645833333333358,0.510344827586377,0.641666666666717,0.517241379310538,0.645833333333358,0.510344827586455,0.650000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000071,-0.000000000000000,0.013793103448238,1 -1446,1453,1458,7217,0.517241379310181,0.604166666666641,0.524137931034364,0.608333333333283,0.531034482758483,0.604166666666641,0.524137931034299,0.600000000000000,-0.008333333333283,0.000000000000071,0.000000000000000,0.013793103448296,0.008333333333283,-0.000000000000060,-0.000000000000000,-0.013793103448308,2 -1447,1452,1454,1459,0.517241379310252,0.612499999999978,0.524137931034364,0.608333333333283,0.524137931034430,0.616666666666674,0.531034482758542,0.612499999999978,-0.008333333333391,0.000000000000071,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448284,0.008333333333391,-0.000000000000060,2 -1448,1453,1455,1460,0.517241379310324,0.620833333333358,0.524137931034430,0.616666666666674,0.524137931034496,0.625000000000043,0.531034482758602,0.620833333333358,-0.008333333333370,0.000000000000071,-0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000060,2 -1449,1454,1456,1461,0.517241379310395,0.629166666666685,0.524137931034496,0.625000000000043,0.524137931034562,0.633333333333326,0.531034482758662,0.629166666666685,-0.008333333333283,0.000000000000071,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000060,2 -1450,1455,1457,1462,0.517241379310467,0.637500000000021,0.524137931034562,0.633333333333326,0.524137931034627,0.641666666666717,0.531034482758722,0.637500000000021,-0.008333333333391,0.000000000000071,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000060,2 -1451,1456,1463,11869,0.517241379310538,0.645833333333358,0.524137931034627,0.641666666666717,0.531034482758782,0.645833333333359,0.524137931034693,0.650000000000000,-0.008333333333283,0.000000000000071,0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000060,-0.000000000000000,0.013793103448238,1 -1452,1459,1464,7231,0.531034482758483,0.604166666666641,0.537931034482656,0.608333333333283,0.544827586206774,0.604166666666641,0.537931034482601,0.600000000000000,-0.008333333333283,0.000000000000060,-0.000000000000000,0.013793103448287,0.008333333333283,-0.000000000000050,-0.000000000000000,-0.013793103448296,2 -1453,1458,1460,1465,0.531034482758542,0.612499999999978,0.537931034482656,0.608333333333283,0.537931034482711,0.616666666666674,0.544827586206824,0.612499999999978,-0.008333333333391,0.000000000000060,0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448277,0.008333333333391,-0.000000000000050,2 -1454,1459,1461,1466,0.531034482758602,0.620833333333358,0.537931034482711,0.616666666666674,0.537931034482766,0.625000000000043,0.544827586206874,0.620833333333358,-0.008333333333369,0.000000000000060,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448267,0.008333333333370,-0.000000000000050,2 -1455,1460,1462,1467,0.531034482758662,0.629166666666685,0.537931034482766,0.625000000000043,0.537931034482821,0.633333333333326,0.544827586206924,0.629166666666685,-0.008333333333283,0.000000000000060,0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448257,0.008333333333282,-0.000000000000050,2 -1456,1461,1463,1468,0.531034482758722,0.637500000000021,0.537931034482821,0.633333333333326,0.537931034482875,0.641666666666717,0.544827586206974,0.637500000000021,-0.008333333333391,0.000000000000060,-0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000050,2 -1457,1462,1469,11869,0.531034482758782,0.645833333333359,0.537931034482875,0.641666666666717,0.544827586207024,0.645833333333359,0.537931034482930,0.650000000000000,-0.008333333333283,0.000000000000060,0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000050,-0.000000000000000,0.013793103448238,1 -1458,1465,1470,7245,0.544827586206774,0.604166666666641,0.551724137930945,0.608333333333283,0.558620689655071,0.604166666666641,0.551724137930900,0.600000000000000,-0.008333333333283,0.000000000000050,0.000000000000000,0.013793103448291,0.008333333333283,-0.000000000000039,-0.000000000000000,-0.013793103448302,2 -1459,1464,1466,1471,0.544827586206824,0.612499999999978,0.551724137930945,0.608333333333283,0.551724137930989,0.616666666666674,0.558620689655110,0.612499999999978,-0.008333333333391,0.000000000000050,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448280,0.008333333333391,-0.000000000000039,2 -1460,1465,1467,1472,0.544827586206874,0.620833333333358,0.551724137930989,0.616666666666674,0.551724137931034,0.625000000000043,0.558620689655149,0.620833333333358,-0.008333333333370,0.000000000000050,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448270,0.008333333333369,-0.000000000000039,2 -1461,1466,1468,1473,0.544827586206924,0.629166666666685,0.551724137931034,0.625000000000043,0.551724137931079,0.633333333333326,0.558620689655189,0.629166666666685,-0.008333333333282,0.000000000000050,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448259,0.008333333333283,-0.000000000000039,2 -1462,1467,1469,1474,0.544827586206974,0.637500000000021,0.551724137931079,0.633333333333326,0.551724137931123,0.641666666666717,0.558620689655228,0.637500000000021,-0.008333333333391,0.000000000000050,0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000039,2 -1463,1468,1475,11869,0.544827586207024,0.645833333333359,0.551724137931123,0.641666666666717,0.558620689655267,0.645833333333359,0.551724137931168,0.650000000000000,-0.008333333333283,0.000000000000050,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000039,-0.000000000000000,0.013793103448238,1 -1464,1471,1476,7259,0.558620689655071,0.604166666666641,0.565517241379239,0.608333333333283,0.572413793103374,0.604166666666641,0.565517241379205,0.600000000000000,-0.008333333333283,0.000000000000039,0.000000000000000,0.013793103448297,0.008333333333283,-0.000000000000028,-0.000000000000000,-0.013793103448309,2 -1465,1470,1472,1477,0.558620689655110,0.612499999999978,0.565517241379239,0.608333333333283,0.565517241379272,0.616666666666674,0.572413793103401,0.612499999999978,-0.008333333333391,0.000000000000039,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448285,0.008333333333391,-0.000000000000027,2 -1466,1471,1473,1478,0.558620689655149,0.620833333333358,0.565517241379272,0.616666666666674,0.565517241379305,0.625000000000043,0.572413793103429,0.620833333333358,-0.008333333333369,0.000000000000039,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000027,2 -1467,1472,1474,1479,0.558620689655189,0.629166666666685,0.565517241379305,0.625000000000043,0.565517241379339,0.633333333333326,0.572413793103456,0.629166666666684,-0.008333333333283,0.000000000000039,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000027,2 -1468,1473,1475,1480,0.558620689655228,0.637500000000021,0.565517241379339,0.633333333333326,0.565517241379372,0.641666666666717,0.572413793103483,0.637500000000021,-0.008333333333391,0.000000000000039,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000028,2 -1469,1474,1481,11869,0.558620689655267,0.645833333333359,0.565517241379372,0.641666666666717,0.572413793103511,0.645833333333359,0.565517241379406,0.650000000000000,-0.008333333333283,0.000000000000039,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000027,-0.000000000000000,0.013793103448238,1 -1470,1477,1482,7273,0.572413793103374,0.604166666666641,0.579310344827540,0.608333333333283,0.586206896551685,0.604166666666641,0.579310344827519,0.600000000000000,-0.008333333333283,0.000000000000028,0.000000000000000,0.013793103448305,0.008333333333283,-0.000000000000014,-0.000000000000000,-0.013793103448318,2 -1471,1476,1478,1483,0.572413793103401,0.612499999999978,0.579310344827540,0.608333333333283,0.579310344827560,0.616666666666674,0.586206896551699,0.612499999999978,-0.008333333333391,0.000000000000027,-0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448291,0.008333333333391,-0.000000000000014,2 -1472,1477,1479,1484,0.572413793103429,0.620833333333358,0.579310344827560,0.616666666666674,0.579310344827581,0.625000000000043,0.586206896551713,0.620833333333358,-0.008333333333369,0.000000000000027,-0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448278,0.008333333333370,-0.000000000000014,2 -1473,1478,1480,1485,0.572413793103456,0.629166666666684,0.579310344827581,0.625000000000043,0.579310344827602,0.633333333333326,0.586206896551727,0.629166666666685,-0.008333333333283,0.000000000000027,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448265,0.008333333333283,-0.000000000000014,2 -1474,1479,1481,1486,0.572413793103483,0.637500000000021,0.579310344827602,0.633333333333326,0.579310344827623,0.641666666666717,0.586206896551741,0.637500000000021,-0.008333333333391,0.000000000000028,-0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448251,0.008333333333391,-0.000000000000014,2 -1475,1480,1487,11869,0.572413793103511,0.645833333333359,0.579310344827623,0.641666666666717,0.586206896551755,0.645833333333359,0.579310344827643,0.650000000000000,-0.008333333333283,0.000000000000027,-0.000000000000000,-0.013793103448251,0.008333333333283,-0.000000000000014,-0.000000000000000,0.013793103448238,1 -1290,1476,1483,7287,0.600000000000000,0.604166666666641,0.586206896551685,0.604166666666641,0.593103448275846,0.608333333333283,0.593103448275839,0.600000000000000,0.008333333333283,0.000000000000000,-0.008333333333283,0.000000000000014,-0.000000000000000,0.013793103448308,0.000000000000000,-0.013793103448322,2 -1291,1477,1482,1484,0.600000000000000,0.612499999999978,0.586206896551699,0.612499999999978,0.593103448275846,0.608333333333283,0.593103448275853,0.616666666666674,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000014,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448294,2 -1292,1478,1483,1485,0.600000000000000,0.620833333333359,0.586206896551713,0.620833333333358,0.593103448275853,0.616666666666674,0.593103448275860,0.625000000000043,0.008333333333369,-0.000000000000000,-0.008333333333370,0.000000000000014,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448280,2 -1293,1479,1484,1486,0.600000000000000,0.629166666666685,0.586206896551727,0.629166666666685,0.593103448275860,0.625000000000043,0.593103448275867,0.633333333333326,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000014,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448266,2 -1294,1480,1485,1487,0.600000000000000,0.637500000000022,0.586206896551741,0.637500000000021,0.593103448275867,0.633333333333326,0.593103448275874,0.641666666666717,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000014,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448252,2 -1295,1481,1486,11869,0.600000000000000,0.645833333333359,0.586206896551755,0.645833333333359,0.593103448275874,0.641666666666717,0.593103448275881,0.650000000000000,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000014,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448238,1 -1489,1494,1830,7301,-0.193103448275870,0.608333333333283,-0.186206896551747,0.604166666666641,-0.200000000000000,0.604166666666641,-0.193103448275876,0.600000000000000,0.000000000000000,0.013793103448259,0.008333333333283,-0.000000000000012,-0.008333333333283,-0.000000000000000,-0.000000000000000,-0.013793103448248,2 -1488,1490,1495,1831,-0.193103448275870,0.608333333333283,-0.193103448275865,0.616666666666674,-0.186206896551735,0.612499999999978,-0.200000000000000,0.612499999999978,-0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448271,0.008333333333391,-0.000000000000012,-0.008333333333391,0.000000000000000,2 -1489,1491,1496,1832,-0.193103448275865,0.616666666666674,-0.193103448275859,0.625000000000044,-0.186206896551724,0.620833333333359,-0.200000000000000,0.620833333333359,-0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448282,0.008333333333370,-0.000000000000012,-0.008333333333369,0.000000000000000,2 -1490,1492,1497,1833,-0.193103448275859,0.625000000000044,-0.193103448275853,0.633333333333326,-0.186206896551712,0.629166666666685,-0.200000000000000,0.629166666666685,0.000000000000000,-0.013793103448282,0.000000000000000,0.013793103448294,0.008333333333283,-0.000000000000012,-0.008333333333283,0.000000000000000,2 -1491,1493,1498,1834,-0.193103448275853,0.633333333333326,-0.193103448275847,0.641666666666717,-0.186206896551700,0.637500000000022,-0.200000000000000,0.637500000000022,-0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448305,0.008333333333391,-0.000000000000012,-0.008333333333391,0.000000000000000,2 -1492,1499,1835,11869,-0.193103448275847,0.641666666666717,-0.186206896551689,0.645833333333359,-0.200000000000000,0.645833333333359,-0.193103448275841,0.650000000000000,-0.000000000000000,-0.013793103448305,0.008333333333283,-0.000000000000012,-0.008333333333283,0.000000000000000,0.000000000000000,0.013793103448317,1 -1488,1495,1500,7315,-0.186206896551747,0.604166666666641,-0.179310344827616,0.608333333333283,-0.172413793103504,0.604166666666641,-0.179310344827634,0.600000000000000,-0.008333333333283,0.000000000000012,-0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000025,-0.000000000000000,-0.013793103448237,2 -1489,1494,1496,1501,-0.186206896551735,0.612499999999978,-0.179310344827616,0.608333333333283,-0.179310344827598,0.616666666666674,-0.172413793103479,0.612499999999979,-0.008333333333391,0.000000000000012,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000025,2 -1490,1495,1497,1502,-0.186206896551724,0.620833333333359,-0.179310344827598,0.616666666666674,-0.179310344827580,0.625000000000044,-0.172413793103454,0.620833333333359,-0.008333333333370,0.000000000000012,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448276,0.008333333333369,-0.000000000000025,2 -1491,1496,1498,1503,-0.186206896551712,0.629166666666685,-0.179310344827580,0.625000000000044,-0.179310344827562,0.633333333333326,-0.172413793103430,0.629166666666685,-0.008333333333283,0.000000000000012,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448289,0.008333333333283,-0.000000000000025,2 -1492,1497,1499,1504,-0.186206896551700,0.637500000000022,-0.179310344827562,0.633333333333326,-0.179310344827544,0.641666666666717,-0.172413793103405,0.637500000000022,-0.008333333333391,0.000000000000012,-0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448302,0.008333333333391,-0.000000000000025,2 -1493,1498,1505,11869,-0.186206896551689,0.645833333333359,-0.179310344827544,0.641666666666717,-0.172413793103380,0.645833333333359,-0.179310344827525,0.650000000000000,-0.008333333333283,0.000000000000012,-0.000000000000000,-0.013793103448302,0.008333333333283,-0.000000000000025,-0.000000000000000,0.013793103448315,1 -1494,1501,1506,7329,-0.172413793103504,0.604166666666641,-0.165517241379359,0.608333333333283,-0.158620689655245,0.604166666666641,-0.165517241379389,0.600000000000000,-0.008333333333283,0.000000000000025,0.000000000000000,0.013793103448264,0.008333333333283,-0.000000000000034,-0.000000000000000,-0.013793103448254,2 -1495,1500,1502,1507,-0.172413793103479,0.612499999999979,-0.165517241379359,0.608333333333283,-0.165517241379330,0.616666666666674,-0.158620689655211,0.612499999999979,-0.008333333333391,0.000000000000025,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448273,0.008333333333391,-0.000000000000034,2 -1496,1501,1503,1508,-0.172413793103454,0.620833333333359,-0.165517241379330,0.616666666666674,-0.165517241379301,0.625000000000044,-0.158620689655176,0.620833333333359,-0.008333333333369,0.000000000000025,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448282,0.008333333333369,-0.000000000000034,2 -1497,1502,1504,1509,-0.172413793103430,0.629166666666685,-0.165517241379301,0.625000000000044,-0.165517241379271,0.633333333333326,-0.158620689655142,0.629166666666685,-0.008333333333283,0.000000000000025,-0.000000000000000,-0.013793103448282,0.000000000000000,0.013793103448292,0.008333333333283,-0.000000000000034,2 -1498,1503,1505,1510,-0.172413793103405,0.637500000000022,-0.165517241379271,0.633333333333326,-0.165517241379242,0.641666666666717,-0.158620689655108,0.637500000000022,-0.008333333333391,0.000000000000025,-0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000034,2 -1499,1504,1511,11869,-0.172413793103380,0.645833333333359,-0.165517241379242,0.641666666666717,-0.158620689655074,0.645833333333359,-0.165517241379213,0.650000000000000,-0.008333333333283,0.000000000000025,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000034,-0.000000000000000,0.013793103448311,1 -1500,1507,1512,7343,-0.158620689655245,0.604166666666641,-0.151724137931097,0.608333333333283,-0.144827586206988,0.604166666666641,-0.151724137931136,0.600000000000000,-0.008333333333283,0.000000000000034,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000044,-0.000000000000000,-0.013793103448251,2 -1501,1506,1508,1513,-0.158620689655211,0.612499999999979,-0.151724137931097,0.608333333333283,-0.151724137931058,0.616666666666674,-0.144827586206944,0.612499999999978,-0.008333333333391,0.000000000000034,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448271,0.008333333333391,-0.000000000000044,2 -1502,1507,1509,1514,-0.158620689655176,0.620833333333359,-0.151724137931058,0.616666666666674,-0.151724137931019,0.625000000000043,-0.144827586206900,0.620833333333359,-0.008333333333369,0.000000000000034,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448281,0.008333333333369,-0.000000000000044,2 -1503,1508,1510,1515,-0.158620689655142,0.629166666666685,-0.151724137931019,0.625000000000043,-0.151724137930980,0.633333333333326,-0.144827586206856,0.629166666666685,-0.008333333333283,0.000000000000034,-0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448291,0.008333333333283,-0.000000000000044,2 -1504,1509,1511,1516,-0.158620689655108,0.637500000000022,-0.151724137930980,0.633333333333326,-0.151724137930941,0.641666666666717,-0.144827586206812,0.637500000000022,-0.008333333333391,0.000000000000034,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000044,2 -1505,1510,1517,11869,-0.158620689655074,0.645833333333359,-0.151724137930941,0.641666666666717,-0.144827586206769,0.645833333333359,-0.151724137930902,0.650000000000000,-0.008333333333283,0.000000000000034,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000044,-0.000000000000000,0.013793103448311,1 -1506,1513,1518,7357,-0.144827586206988,0.604166666666641,-0.137931034482842,0.608333333333283,-0.131034482758745,0.604166666666641,-0.137931034482892,0.600000000000000,-0.008333333333283,0.000000000000044,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000056,-0.000000000000000,-0.013793103448237,2 -1507,1512,1514,1519,-0.144827586206944,0.612499999999978,-0.137931034482842,0.608333333333283,-0.137931034482792,0.616666666666674,-0.131034482758689,0.612499999999978,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000056,2 -1508,1513,1515,1520,-0.144827586206900,0.620833333333359,-0.137931034482792,0.616666666666674,-0.137931034482742,0.625000000000043,-0.131034482758633,0.620833333333359,-0.008333333333369,0.000000000000044,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000056,2 -1509,1514,1516,1521,-0.144827586206856,0.629166666666685,-0.137931034482742,0.625000000000043,-0.137931034482691,0.633333333333326,-0.131034482758577,0.629166666666685,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000056,2 -1510,1515,1517,1522,-0.144827586206812,0.637500000000022,-0.137931034482691,0.633333333333326,-0.137931034482641,0.641666666666717,-0.131034482758520,0.637500000000022,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448298,0.008333333333391,-0.000000000000056,2 -1511,1516,1523,11869,-0.144827586206769,0.645833333333359,-0.137931034482641,0.641666666666717,-0.131034482758464,0.645833333333359,-0.137931034482591,0.650000000000000,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448298,0.008333333333283,-0.000000000000056,-0.000000000000000,0.013793103448311,1 -1512,1519,1524,7371,-0.131034482758745,0.604166666666641,-0.124137931034593,0.608333333333283,-0.117241379310503,0.604166666666641,-0.124137931034655,0.600000000000000,-0.008333333333283,0.000000000000056,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000069,-0.000000000000000,-0.013793103448237,2 -1513,1518,1520,1525,-0.131034482758689,0.612499999999978,-0.124137931034593,0.608333333333283,-0.124137931034530,0.616666666666674,-0.117241379310434,0.612499999999978,-0.008333333333391,0.000000000000056,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000069,2 -1514,1519,1521,1526,-0.131034482758633,0.620833333333359,-0.124137931034530,0.616666666666674,-0.124137931034468,0.625000000000043,-0.117241379310365,0.620833333333359,-0.008333333333369,0.000000000000056,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000069,2 -1515,1520,1522,1527,-0.131034482758577,0.629166666666685,-0.124137931034468,0.625000000000043,-0.124137931034406,0.633333333333326,-0.117241379310297,0.629166666666685,-0.008333333333283,0.000000000000056,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000069,2 -1516,1521,1523,1528,-0.131034482758520,0.637500000000022,-0.124137931034406,0.633333333333326,-0.124137931034343,0.641666666666717,-0.117241379310228,0.637500000000022,-0.008333333333391,0.000000000000056,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448298,0.008333333333391,-0.000000000000069,2 -1517,1522,1529,11869,-0.131034482758464,0.645833333333359,-0.124137931034343,0.641666666666717,-0.117241379310159,0.645833333333359,-0.124137931034281,0.650000000000000,-0.008333333333283,0.000000000000056,-0.000000000000000,-0.013793103448298,0.008333333333283,-0.000000000000069,-0.000000000000000,0.013793103448311,1 -1518,1525,1530,7385,-0.117241379310503,0.604166666666641,-0.110344827586344,0.608333333333283,-0.103448275862260,0.604166666666641,-0.110344827586419,0.600000000000000,-0.008333333333283,0.000000000000069,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000081,-0.000000000000000,-0.013793103448237,2 -1519,1524,1526,1531,-0.117241379310434,0.612499999999978,-0.110344827586344,0.608333333333283,-0.110344827586269,0.616666666666674,-0.103448275862179,0.612499999999978,-0.008333333333391,0.000000000000069,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000081,2 -1520,1525,1527,1532,-0.117241379310365,0.620833333333359,-0.110344827586269,0.616666666666674,-0.110344827586194,0.625000000000043,-0.103448275862098,0.620833333333359,-0.008333333333369,0.000000000000069,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000081,2 -1521,1526,1528,1533,-0.117241379310297,0.629166666666685,-0.110344827586194,0.625000000000043,-0.110344827586119,0.633333333333326,-0.103448275862016,0.629166666666685,-0.008333333333283,0.000000000000069,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448287,0.008333333333283,-0.000000000000081,2 -1522,1527,1529,1534,-0.117241379310228,0.637500000000022,-0.110344827586119,0.633333333333326,-0.110344827586044,0.641666666666717,-0.103448275861935,0.637500000000022,-0.008333333333391,0.000000000000069,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000081,2 -1523,1528,1535,11869,-0.117241379310159,0.645833333333359,-0.110344827586044,0.641666666666717,-0.103448275861854,0.645833333333359,-0.110344827585969,0.650000000000000,-0.008333333333283,0.000000000000069,-0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000081,-0.000000000000000,0.013793103448312,1 -1524,1531,1536,7399,-0.103448275862260,0.604166666666641,-0.096551724138095,0.608333333333283,-0.089655172414017,0.604166666666641,-0.096551724138182,0.600000000000000,-0.008333333333283,0.000000000000081,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000093,-0.000000000000000,-0.013793103448237,2 -1525,1530,1532,1537,-0.103448275862179,0.612499999999978,-0.096551724138095,0.608333333333283,-0.096551724138008,0.616666666666674,-0.089655172413924,0.612499999999978,-0.008333333333391,0.000000000000081,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000093,2 -1526,1531,1533,1538,-0.103448275862098,0.620833333333359,-0.096551724138008,0.616666666666674,-0.096551724137920,0.625000000000043,-0.089655172413831,0.620833333333359,-0.008333333333369,0.000000000000081,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000093,2 -1527,1532,1534,1539,-0.103448275862016,0.629166666666685,-0.096551724137920,0.625000000000043,-0.096551724137833,0.633333333333326,-0.089655172413737,0.629166666666685,-0.008333333333283,0.000000000000081,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448285,0.008333333333283,-0.000000000000093,2 -1528,1533,1535,1540,-0.103448275861935,0.637500000000022,-0.096551724137833,0.633333333333326,-0.096551724137746,0.641666666666717,-0.089655172413644,0.637500000000022,-0.008333333333391,0.000000000000081,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000093,2 -1529,1534,1541,11869,-0.103448275861854,0.645833333333359,-0.096551724137746,0.641666666666717,-0.089655172413551,0.645833333333359,-0.096551724137659,0.650000000000000,-0.008333333333283,0.000000000000081,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000093,-0.000000000000000,0.013793103448309,1 -1530,1537,1542,7413,-0.089655172414017,0.604166666666641,-0.082758620689846,0.608333333333283,-0.075862068965774,0.604166666666641,-0.082758620689945,0.600000000000000,-0.008333333333283,0.000000000000093,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000106,-0.000000000000000,-0.013793103448237,2 -1531,1536,1538,1543,-0.089655172413924,0.612499999999978,-0.082758620689846,0.608333333333283,-0.082758620689746,0.616666666666674,-0.075862068965668,0.612499999999978,-0.008333333333391,0.000000000000093,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000106,2 -1532,1537,1539,1544,-0.089655172413831,0.620833333333359,-0.082758620689746,0.616666666666674,-0.082758620689646,0.625000000000043,-0.075862068965562,0.620833333333359,-0.008333333333369,0.000000000000093,-0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000106,2 -1533,1538,1540,1545,-0.089655172413737,0.629166666666685,-0.082758620689646,0.625000000000043,-0.082758620689547,0.633333333333326,-0.075862068965456,0.629166666666685,-0.008333333333283,0.000000000000093,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448288,0.008333333333283,-0.000000000000106,2 -1534,1539,1541,1546,-0.089655172413644,0.637500000000022,-0.082758620689547,0.633333333333326,-0.082758620689447,0.641666666666717,-0.075862068965350,0.637500000000022,-0.008333333333391,0.000000000000093,-0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000106,2 -1535,1540,1547,11869,-0.089655172413551,0.645833333333359,-0.082758620689447,0.641666666666717,-0.075862068965243,0.645833333333359,-0.082758620689347,0.650000000000000,-0.008333333333283,0.000000000000093,0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000106,-0.000000000000000,0.013793103448314,1 -1536,1543,1548,7427,-0.075862068965774,0.604166666666641,-0.068965517241596,0.608333333333283,-0.062068965517531,0.604166666666641,-0.068965517241709,0.600000000000000,-0.008333333333283,0.000000000000106,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000120,-0.000000000000000,-0.013793103448237,2 -1537,1542,1544,1549,-0.075862068965668,0.612499999999978,-0.068965517241596,0.608333333333283,-0.068965517241483,0.616666666666674,-0.062068965517411,0.612499999999978,-0.008333333333391,0.000000000000106,-0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000120,2 -1538,1543,1545,1550,-0.075862068965562,0.620833333333359,-0.068965517241483,0.616666666666674,-0.068965517241370,0.625000000000043,-0.062068965517292,0.620833333333359,-0.008333333333369,0.000000000000106,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000120,2 -1539,1544,1546,1551,-0.075862068965456,0.629166666666685,-0.068965517241370,0.625000000000043,-0.068965517241258,0.633333333333326,-0.062068965517172,0.629166666666685,-0.008333333333283,0.000000000000106,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448290,0.008333333333283,-0.000000000000120,2 -1540,1545,1547,1552,-0.075862068965350,0.637500000000022,-0.068965517241258,0.633333333333326,-0.068965517241145,0.641666666666717,-0.062068965517053,0.637500000000022,-0.008333333333391,0.000000000000106,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448304,0.008333333333391,-0.000000000000120,2 -1541,1546,1553,11869,-0.075862068965243,0.645833333333359,-0.068965517241145,0.641666666666717,-0.062068965516933,0.645833333333359,-0.068965517241032,0.650000000000000,-0.008333333333283,0.000000000000106,-0.000000000000000,-0.013793103448304,0.008333333333283,-0.000000000000120,-0.000000000000000,0.013793103448317,1 -1542,1549,1554,7441,-0.062068965517531,0.604166666666641,-0.055172413793350,0.608333333333283,-0.048275862069295,0.604166666666641,-0.055172413793477,0.600000000000000,-0.008333333333283,0.000000000000120,0.000000000000000,0.013793103448243,0.008333333333283,-0.000000000000134,-0.000000000000000,-0.013793103448228,2 -1543,1548,1550,1555,-0.062068965517411,0.612499999999978,-0.055172413793350,0.608333333333283,-0.055172413793223,0.616666666666674,-0.048275862069162,0.612499999999978,-0.008333333333391,0.000000000000120,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448257,0.008333333333391,-0.000000000000134,2 -1544,1549,1551,1556,-0.062068965517292,0.620833333333359,-0.055172413793223,0.616666666666674,-0.055172413793096,0.625000000000043,-0.048275862069028,0.620833333333359,-0.008333333333369,0.000000000000120,-0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448271,0.008333333333369,-0.000000000000134,2 -1545,1550,1552,1557,-0.062068965517172,0.629166666666685,-0.055172413793096,0.625000000000043,-0.055172413792970,0.633333333333326,-0.048275862068894,0.629166666666685,-0.008333333333283,0.000000000000120,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000134,2 -1546,1551,1553,1558,-0.062068965517053,0.637500000000022,-0.055172413792970,0.633333333333326,-0.055172413792843,0.641666666666717,-0.048275862068760,0.637500000000022,-0.008333333333391,0.000000000000120,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448300,0.008333333333391,-0.000000000000134,2 -1547,1552,1559,11869,-0.062068965516933,0.645833333333359,-0.055172413792843,0.641666666666717,-0.048275862068626,0.645833333333359,-0.055172413792716,0.650000000000000,-0.008333333333283,0.000000000000120,-0.000000000000000,-0.013793103448300,0.008333333333283,-0.000000000000134,-0.000000000000000,0.013793103448315,1 -1548,1555,1560,7455,-0.048275862069295,0.604166666666641,-0.041379310345105,0.608333333333283,-0.034482758621055,0.604166666666641,-0.041379310345245,0.600000000000000,-0.008333333333283,0.000000000000134,0.000000000000000,0.013793103448247,0.008333333333283,-0.000000000000147,-0.000000000000000,-0.013793103448234,2 -1549,1554,1556,1561,-0.048275862069162,0.612499999999978,-0.041379310345105,0.608333333333283,-0.041379310344964,0.616666666666674,-0.034482758620907,0.612499999999978,-0.008333333333391,0.000000000000134,-0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000147,2 -1550,1555,1557,1562,-0.048275862069028,0.620833333333359,-0.041379310344964,0.616666666666674,-0.041379310344824,0.625000000000043,-0.034482758620760,0.620833333333359,-0.008333333333369,0.000000000000134,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000147,2 -1551,1556,1558,1563,-0.048275862068894,0.629166666666685,-0.041379310344824,0.625000000000043,-0.041379310344683,0.633333333333326,-0.034482758620613,0.629166666666685,-0.008333333333283,0.000000000000134,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448287,0.008333333333283,-0.000000000000147,2 -1552,1557,1559,1564,-0.048275862068760,0.637500000000022,-0.041379310344683,0.633333333333326,-0.041379310344542,0.641666666666717,-0.034482758620466,0.637500000000022,-0.008333333333391,0.000000000000134,0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000147,2 -1553,1558,1565,11869,-0.048275862068626,0.645833333333359,-0.041379310344542,0.641666666666717,-0.034482758620319,0.645833333333359,-0.041379310344402,0.650000000000000,-0.008333333333283,0.000000000000134,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000147,-0.000000000000000,0.013793103448314,1 -1554,1561,1566,7469,-0.034482758621055,0.604166666666641,-0.027586206896856,0.608333333333283,-0.020689655172812,0.604166666666641,-0.027586206897010,0.600000000000000,-0.008333333333283,0.000000000000147,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000160,-0.000000000000000,-0.013793103448237,2 -1555,1560,1562,1567,-0.034482758620907,0.612499999999978,-0.027586206896856,0.608333333333283,-0.027586206896703,0.616666666666674,-0.020689655172652,0.612499999999978,-0.008333333333391,0.000000000000147,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000160,2 -1556,1561,1563,1568,-0.034482758620760,0.620833333333359,-0.027586206896703,0.616666666666674,-0.027586206896549,0.625000000000043,-0.020689655172491,0.620833333333359,-0.008333333333369,0.000000000000147,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000160,2 -1557,1562,1564,1569,-0.034482758620613,0.629166666666685,-0.027586206896549,0.625000000000043,-0.027586206896395,0.633333333333326,-0.020689655172331,0.629166666666685,-0.008333333333283,0.000000000000147,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448288,0.008333333333283,-0.000000000000160,2 -1558,1563,1565,1570,-0.034482758620466,0.637500000000022,-0.027586206896395,0.633333333333326,-0.027586206896242,0.641666666666717,-0.020689655172171,0.637500000000022,-0.008333333333391,0.000000000000147,-0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000160,2 -1559,1564,1571,11869,-0.034482758620319,0.645833333333359,-0.027586206896242,0.641666666666717,-0.020689655172011,0.645833333333359,-0.027586206896088,0.650000000000000,-0.008333333333283,0.000000000000147,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000160,-0.000000000000000,0.013793103448314,1 -1560,1567,1572,7483,-0.020689655172812,0.604166666666641,-0.013793103448607,0.608333333333283,-0.006896551724569,0.604166666666641,-0.013793103448773,0.600000000000000,-0.008333333333283,0.000000000000160,-0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000173,-0.000000000000000,-0.013793103448237,2 -1561,1566,1568,1573,-0.020689655172652,0.612499999999978,-0.013793103448607,0.608333333333283,-0.013793103448441,0.616666666666674,-0.006896551724396,0.612499999999978,-0.008333333333391,0.000000000000160,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000173,2 -1562,1567,1569,1574,-0.020689655172491,0.620833333333359,-0.013793103448441,0.616666666666674,-0.013793103448274,0.625000000000044,-0.006896551724223,0.620833333333359,-0.008333333333369,0.000000000000160,-0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448275,0.008333333333370,-0.000000000000173,2 -1563,1568,1570,1575,-0.020689655172331,0.629166666666685,-0.013793103448274,0.625000000000044,-0.013793103448108,0.633333333333326,-0.006896551724050,0.629166666666685,-0.008333333333283,0.000000000000160,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448287,0.008333333333282,-0.000000000000173,2 -1564,1569,1571,1576,-0.020689655172171,0.637500000000022,-0.013793103448108,0.633333333333326,-0.013793103447941,0.641666666666717,-0.006896551723878,0.637500000000022,-0.008333333333391,0.000000000000160,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448300,0.008333333333391,-0.000000000000173,2 -1565,1570,1577,11869,-0.020689655172011,0.645833333333359,-0.013793103447941,0.641666666666717,-0.006896551723705,0.645833333333359,-0.013793103447775,0.650000000000000,-0.008333333333283,0.000000000000160,-0.000000000000000,-0.013793103448300,0.008333333333283,-0.000000000000173,-0.000000000000000,0.013793103448313,1 -1566,1573,1578,7497,-0.006896551724569,0.604166666666641,-0.000000000000346,0.608333333333283,0.006896551723705,0.604166666666641,-0.000000000000518,0.600000000000000,-0.008333333333283,0.000000000000173,0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000173,-0.000000000000000,-0.013793103448274,2 -1567,1572,1574,1579,-0.006896551724396,0.612499999999978,-0.000000000000346,0.608333333333283,-0.000000000000173,0.616666666666674,0.006896551723878,0.612499999999978,-0.008333333333391,0.000000000000173,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448274,0.008333333333391,-0.000000000000173,2 -1568,1573,1575,1580,-0.006896551724223,0.620833333333359,-0.000000000000173,0.616666666666674,0.000000000000000,0.625000000000044,0.006896551724050,0.620833333333359,-0.008333333333370,0.000000000000173,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000173,2 -1569,1574,1576,1581,-0.006896551724050,0.629166666666685,0.000000000000000,0.625000000000044,0.000000000000173,0.633333333333326,0.006896551724223,0.629166666666685,-0.008333333333282,0.000000000000173,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448274,0.008333333333283,-0.000000000000173,2 -1570,1575,1577,1582,-0.006896551723878,0.637500000000022,0.000000000000173,0.633333333333326,0.000000000000346,0.641666666666717,0.006896551724396,0.637500000000022,-0.008333333333391,0.000000000000173,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.008333333333391,-0.000000000000173,2 -1571,1576,1583,11869,-0.006896551723705,0.645833333333359,0.000000000000346,0.641666666666717,0.006896551724569,0.645833333333359,0.000000000000518,0.650000000000000,-0.008333333333283,0.000000000000173,-0.000000000000000,-0.013793103448274,0.008333333333283,-0.000000000000173,-0.000000000000000,0.013793103448274,1 -1572,1579,1584,7511,0.006896551723705,0.604166666666641,0.013793103447941,0.608333333333283,0.020689655172011,0.604166666666641,0.013793103447775,0.600000000000000,-0.008333333333283,0.000000000000173,0.000000000000000,0.013793103448300,0.008333333333283,-0.000000000000160,-0.000000000000000,-0.013793103448313,2 -1573,1578,1580,1585,0.006896551723878,0.612499999999978,0.013793103447941,0.608333333333283,0.013793103448108,0.616666666666674,0.020689655172171,0.612499999999978,-0.008333333333391,0.000000000000173,-0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448287,0.008333333333391,-0.000000000000160,2 -1574,1579,1581,1586,0.006896551724050,0.620833333333359,0.013793103448108,0.616666666666674,0.013793103448274,0.625000000000043,0.020689655172331,0.620833333333359,-0.008333333333369,0.000000000000173,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000160,2 -1575,1580,1582,1587,0.006896551724223,0.629166666666685,0.013793103448274,0.625000000000043,0.013793103448441,0.633333333333326,0.020689655172491,0.629166666666685,-0.008333333333283,0.000000000000173,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000160,2 -1576,1581,1583,1588,0.006896551724396,0.637500000000022,0.013793103448441,0.633333333333326,0.013793103448607,0.641666666666717,0.020689655172652,0.637500000000022,-0.008333333333391,0.000000000000173,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000160,2 -1577,1582,1589,11869,0.006896551724569,0.645833333333359,0.013793103448607,0.641666666666717,0.020689655172812,0.645833333333359,0.013793103448773,0.650000000000000,-0.008333333333283,0.000000000000173,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000160,-0.000000000000000,0.013793103448237,1 -1578,1585,1590,7525,0.020689655172011,0.604166666666641,0.027586206896242,0.608333333333283,0.034482758620319,0.604166666666641,0.027586206896088,0.600000000000000,-0.008333333333283,0.000000000000160,0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000147,-0.000000000000000,-0.013793103448314,2 -1579,1584,1586,1591,0.020689655172171,0.612499999999978,0.027586206896242,0.608333333333283,0.027586206896395,0.616666666666674,0.034482758620466,0.612499999999978,-0.008333333333391,0.000000000000160,-0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448288,0.008333333333391,-0.000000000000147,2 -1580,1585,1587,1592,0.020689655172331,0.620833333333359,0.027586206896395,0.616666666666674,0.027586206896549,0.625000000000043,0.034482758620613,0.620833333333359,-0.008333333333369,0.000000000000160,-0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000147,2 -1581,1586,1588,1593,0.020689655172491,0.629166666666685,0.027586206896549,0.625000000000043,0.027586206896703,0.633333333333326,0.034482758620760,0.629166666666685,-0.008333333333283,0.000000000000160,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000147,2 -1582,1587,1589,1594,0.020689655172652,0.637500000000022,0.027586206896703,0.633333333333326,0.027586206896856,0.641666666666717,0.034482758620907,0.637500000000022,-0.008333333333391,0.000000000000160,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000147,2 -1583,1588,1595,11869,0.020689655172812,0.645833333333359,0.027586206896856,0.641666666666717,0.034482758621055,0.645833333333359,0.027586206897010,0.650000000000000,-0.008333333333283,0.000000000000160,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000147,-0.000000000000000,0.013793103448237,1 -1584,1591,1596,7539,0.034482758620319,0.604166666666641,0.041379310344542,0.608333333333283,0.048275862068626,0.604166666666641,0.041379310344402,0.600000000000000,-0.008333333333283,0.000000000000147,-0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000134,-0.000000000000000,-0.013793103448314,2 -1585,1590,1592,1597,0.034482758620466,0.612499999999978,0.041379310344542,0.608333333333283,0.041379310344683,0.616666666666674,0.048275862068760,0.612499999999978,-0.008333333333391,0.000000000000147,0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448287,0.008333333333391,-0.000000000000134,2 -1586,1591,1593,1598,0.034482758620613,0.620833333333359,0.041379310344683,0.616666666666674,0.041379310344824,0.625000000000043,0.048275862068894,0.620833333333359,-0.008333333333369,0.000000000000147,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000134,2 -1587,1592,1594,1599,0.034482758620760,0.629166666666685,0.041379310344824,0.625000000000043,0.041379310344964,0.633333333333326,0.048275862069028,0.629166666666685,-0.008333333333283,0.000000000000147,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000134,2 -1588,1593,1595,1600,0.034482758620907,0.637500000000022,0.041379310344964,0.633333333333326,0.041379310345105,0.641666666666717,0.048275862069162,0.637500000000022,-0.008333333333391,0.000000000000147,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448247,0.008333333333391,-0.000000000000134,2 -1589,1594,1601,11869,0.034482758621055,0.645833333333359,0.041379310345105,0.641666666666717,0.048275862069295,0.645833333333359,0.041379310345245,0.650000000000000,-0.008333333333283,0.000000000000147,-0.000000000000000,-0.013793103448247,0.008333333333283,-0.000000000000134,-0.000000000000000,0.013793103448234,1 -1590,1597,1602,7553,0.048275862068626,0.604166666666641,0.055172413792843,0.608333333333283,0.062068965516933,0.604166666666641,0.055172413792716,0.600000000000000,-0.008333333333283,0.000000000000134,0.000000000000000,0.013793103448300,0.008333333333283,-0.000000000000120,-0.000000000000000,-0.013793103448315,2 -1591,1596,1598,1603,0.048275862068760,0.612499999999978,0.055172413792843,0.608333333333283,0.055172413792970,0.616666666666674,0.062068965517053,0.612499999999978,-0.008333333333391,0.000000000000134,-0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000120,2 -1592,1597,1599,1604,0.048275862068894,0.620833333333359,0.055172413792970,0.616666666666674,0.055172413793096,0.625000000000043,0.062068965517172,0.620833333333359,-0.008333333333369,0.000000000000134,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448271,0.008333333333369,-0.000000000000120,2 -1593,1598,1600,1605,0.048275862069028,0.629166666666685,0.055172413793096,0.625000000000043,0.055172413793223,0.633333333333326,0.062068965517292,0.629166666666685,-0.008333333333283,0.000000000000134,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448257,0.008333333333283,-0.000000000000120,2 -1594,1599,1601,1606,0.048275862069162,0.637500000000022,0.055172413793223,0.633333333333326,0.055172413793350,0.641666666666717,0.062068965517411,0.637500000000022,-0.008333333333391,0.000000000000134,-0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448243,0.008333333333391,-0.000000000000120,2 -1595,1600,1607,11869,0.048275862069295,0.645833333333359,0.055172413793350,0.641666666666717,0.062068965517531,0.645833333333359,0.055172413793477,0.650000000000000,-0.008333333333283,0.000000000000134,-0.000000000000000,-0.013793103448243,0.008333333333283,-0.000000000000120,-0.000000000000000,0.013793103448228,1 -1596,1603,1608,7567,0.062068965516933,0.604166666666641,0.068965517241145,0.608333333333283,0.075862068965243,0.604166666666641,0.068965517241032,0.600000000000000,-0.008333333333283,0.000000000000120,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000106,-0.000000000000000,-0.013793103448317,2 -1597,1602,1604,1609,0.062068965517053,0.612499999999978,0.068965517241145,0.608333333333283,0.068965517241258,0.616666666666674,0.075862068965350,0.612499999999978,-0.008333333333391,0.000000000000120,-0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448290,0.008333333333391,-0.000000000000106,2 -1598,1603,1605,1610,0.062068965517172,0.620833333333359,0.068965517241258,0.616666666666674,0.068965517241370,0.625000000000043,0.075862068965456,0.620833333333359,-0.008333333333369,0.000000000000120,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000106,2 -1599,1604,1606,1611,0.062068965517292,0.629166666666685,0.068965517241370,0.625000000000043,0.068965517241483,0.633333333333326,0.075862068965562,0.629166666666685,-0.008333333333283,0.000000000000120,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000106,2 -1600,1605,1607,1612,0.062068965517411,0.637500000000022,0.068965517241483,0.633333333333326,0.068965517241596,0.641666666666717,0.075862068965668,0.637500000000022,-0.008333333333391,0.000000000000120,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000106,2 -1601,1606,1613,11869,0.062068965517531,0.645833333333359,0.068965517241596,0.641666666666717,0.075862068965774,0.645833333333359,0.068965517241709,0.650000000000000,-0.008333333333283,0.000000000000120,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000106,-0.000000000000000,0.013793103448237,1 -1602,1609,1614,7581,0.075862068965243,0.604166666666641,0.082758620689447,0.608333333333283,0.089655172413551,0.604166666666641,0.082758620689347,0.600000000000000,-0.008333333333283,0.000000000000106,-0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000093,-0.000000000000000,-0.013793103448314,2 -1603,1608,1610,1615,0.075862068965350,0.612499999999978,0.082758620689447,0.608333333333283,0.082758620689547,0.616666666666674,0.089655172413644,0.612499999999979,-0.008333333333391,0.000000000000106,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448288,0.008333333333391,-0.000000000000093,2 -1604,1609,1611,1616,0.075862068965456,0.620833333333359,0.082758620689547,0.616666666666674,0.082758620689646,0.625000000000043,0.089655172413737,0.620833333333359,-0.008333333333369,0.000000000000106,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000093,2 -1605,1610,1612,1617,0.075862068965562,0.629166666666685,0.082758620689646,0.625000000000043,0.082758620689746,0.633333333333326,0.089655172413831,0.629166666666685,-0.008333333333283,0.000000000000106,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000093,2 -1606,1611,1613,1618,0.075862068965668,0.637500000000022,0.082758620689746,0.633333333333326,0.082758620689846,0.641666666666717,0.089655172413924,0.637500000000022,-0.008333333333391,0.000000000000106,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000093,2 -1607,1612,1619,11869,0.075862068965774,0.645833333333359,0.082758620689846,0.641666666666717,0.089655172414017,0.645833333333359,0.082758620689945,0.650000000000000,-0.008333333333283,0.000000000000106,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000093,-0.000000000000000,0.013793103448237,1 -1608,1615,1620,7595,0.089655172413551,0.604166666666641,0.096551724137746,0.608333333333283,0.103448275861854,0.604166666666641,0.096551724137659,0.600000000000000,-0.008333333333283,0.000000000000093,0.000000000000000,0.013793103448297,0.008333333333283,-0.000000000000081,-0.000000000000000,-0.013793103448309,2 -1609,1614,1616,1621,0.089655172413644,0.612499999999979,0.096551724137746,0.608333333333283,0.096551724137833,0.616666666666674,0.103448275861935,0.612499999999978,-0.008333333333391,0.000000000000093,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448285,0.008333333333391,-0.000000000000081,2 -1610,1615,1617,1622,0.089655172413737,0.620833333333359,0.096551724137833,0.616666666666674,0.096551724137920,0.625000000000043,0.103448275862016,0.620833333333359,-0.008333333333369,0.000000000000093,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000081,2 -1611,1616,1618,1623,0.089655172413831,0.629166666666685,0.096551724137920,0.625000000000043,0.096551724138008,0.633333333333326,0.103448275862098,0.629166666666685,-0.008333333333283,0.000000000000093,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000081,2 -1612,1617,1619,1624,0.089655172413924,0.637500000000022,0.096551724138008,0.633333333333326,0.096551724138095,0.641666666666717,0.103448275862179,0.637500000000022,-0.008333333333391,0.000000000000093,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000081,2 -1613,1618,1625,11869,0.089655172414017,0.645833333333359,0.096551724138095,0.641666666666717,0.103448275862260,0.645833333333359,0.096551724138182,0.650000000000000,-0.008333333333283,0.000000000000093,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000081,-0.000000000000000,0.013793103448237,1 -1614,1621,1626,7609,0.103448275861854,0.604166666666641,0.110344827586044,0.608333333333283,0.117241379310159,0.604166666666641,0.110344827585969,0.600000000000000,-0.008333333333283,0.000000000000081,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000069,-0.000000000000000,-0.013793103448312,2 -1615,1620,1622,1627,0.103448275861935,0.612499999999978,0.110344827586044,0.608333333333283,0.110344827586119,0.616666666666674,0.117241379310228,0.612499999999979,-0.008333333333391,0.000000000000081,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448287,0.008333333333391,-0.000000000000069,2 -1616,1621,1623,1628,0.103448275862016,0.620833333333359,0.110344827586119,0.616666666666674,0.110344827586194,0.625000000000043,0.117241379310297,0.620833333333359,-0.008333333333369,0.000000000000081,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000069,2 -1617,1622,1624,1629,0.103448275862098,0.629166666666685,0.110344827586194,0.625000000000043,0.110344827586269,0.633333333333326,0.117241379310365,0.629166666666685,-0.008333333333283,0.000000000000081,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000069,2 -1618,1623,1625,1630,0.103448275862179,0.637500000000022,0.110344827586269,0.633333333333326,0.110344827586344,0.641666666666717,0.117241379310434,0.637500000000022,-0.008333333333391,0.000000000000081,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000069,2 -1619,1624,1631,11869,0.103448275862260,0.645833333333359,0.110344827586344,0.641666666666717,0.117241379310503,0.645833333333359,0.110344827586419,0.650000000000000,-0.008333333333283,0.000000000000081,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000069,-0.000000000000000,0.013793103448237,1 -1620,1627,1632,7623,0.117241379310159,0.604166666666641,0.124137931034343,0.608333333333283,0.131034482758464,0.604166666666641,0.124137931034281,0.600000000000000,-0.008333333333283,0.000000000000069,0.000000000000000,0.013793103448298,0.008333333333283,-0.000000000000056,-0.000000000000000,-0.013793103448311,2 -1621,1626,1628,1633,0.117241379310228,0.612499999999979,0.124137931034343,0.608333333333283,0.124137931034406,0.616666666666674,0.131034482758520,0.612499999999978,-0.008333333333391,0.000000000000069,-0.000000000000000,-0.013793103448298,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000056,2 -1622,1627,1629,1634,0.117241379310297,0.620833333333359,0.124137931034406,0.616666666666674,0.124137931034468,0.625000000000043,0.131034482758577,0.620833333333359,-0.008333333333369,0.000000000000069,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000056,2 -1623,1628,1630,1635,0.117241379310365,0.629166666666685,0.124137931034468,0.625000000000043,0.124137931034530,0.633333333333326,0.131034482758633,0.629166666666685,-0.008333333333283,0.000000000000069,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000056,2 -1624,1629,1631,1636,0.117241379310434,0.637500000000022,0.124137931034530,0.633333333333326,0.124137931034593,0.641666666666717,0.131034482758689,0.637500000000022,-0.008333333333391,0.000000000000069,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000056,2 -1625,1630,1637,11869,0.117241379310503,0.645833333333359,0.124137931034593,0.641666666666717,0.131034482758745,0.645833333333359,0.124137931034655,0.650000000000000,-0.008333333333283,0.000000000000069,0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000056,-0.000000000000000,0.013793103448237,1 -1626,1633,1638,7637,0.131034482758464,0.604166666666641,0.137931034482641,0.608333333333283,0.144827586206769,0.604166666666641,0.137931034482591,0.600000000000000,-0.008333333333283,0.000000000000056,0.000000000000000,0.013793103448298,0.008333333333283,-0.000000000000044,-0.000000000000000,-0.013793103448311,2 -1627,1632,1634,1639,0.131034482758520,0.612499999999978,0.137931034482641,0.608333333333283,0.137931034482691,0.616666666666674,0.144827586206812,0.612499999999978,-0.008333333333391,0.000000000000056,-0.000000000000000,-0.013793103448298,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000044,2 -1628,1633,1635,1640,0.131034482758577,0.620833333333359,0.137931034482691,0.616666666666674,0.137931034482742,0.625000000000043,0.144827586206856,0.620833333333359,-0.008333333333369,0.000000000000056,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000044,2 -1629,1634,1636,1641,0.131034482758633,0.629166666666685,0.137931034482742,0.625000000000043,0.137931034482792,0.633333333333326,0.144827586206900,0.629166666666685,-0.008333333333283,0.000000000000056,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000044,2 -1630,1635,1637,1642,0.131034482758689,0.637500000000022,0.137931034482792,0.633333333333326,0.137931034482842,0.641666666666717,0.144827586206944,0.637500000000022,-0.008333333333391,0.000000000000056,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000044,2 -1631,1636,1643,11869,0.131034482758745,0.645833333333359,0.137931034482842,0.641666666666717,0.144827586206988,0.645833333333359,0.137931034482892,0.650000000000000,-0.008333333333283,0.000000000000056,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000044,-0.000000000000000,0.013793103448237,1 -1632,1639,1644,7651,0.144827586206769,0.604166666666641,0.151724137930941,0.608333333333283,0.158620689655074,0.604166666666641,0.151724137930902,0.600000000000000,-0.008333333333283,0.000000000000044,-0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000034,-0.000000000000000,-0.013793103448311,2 -1633,1638,1640,1645,0.144827586206812,0.612499999999978,0.151724137930941,0.608333333333283,0.151724137930980,0.616666666666674,0.158620689655108,0.612499999999978,-0.008333333333391,0.000000000000044,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448291,0.008333333333391,-0.000000000000034,2 -1634,1639,1641,1646,0.144827586206856,0.620833333333359,0.151724137930980,0.616666666666674,0.151724137931019,0.625000000000043,0.158620689655142,0.620833333333359,-0.008333333333369,0.000000000000044,0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448281,0.008333333333369,-0.000000000000034,2 -1635,1640,1642,1647,0.144827586206900,0.629166666666685,0.151724137931019,0.625000000000043,0.151724137931058,0.633333333333326,0.158620689655176,0.629166666666685,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448271,0.008333333333283,-0.000000000000034,2 -1636,1641,1643,1648,0.144827586206944,0.637500000000022,0.151724137931058,0.633333333333326,0.151724137931097,0.641666666666717,0.158620689655211,0.637500000000022,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000034,2 -1637,1642,1649,11869,0.144827586206988,0.645833333333359,0.151724137931097,0.641666666666717,0.158620689655245,0.645833333333359,0.151724137931136,0.650000000000000,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448261,0.008333333333283,-0.000000000000034,-0.000000000000000,0.013793103448251,1 -1638,1645,1650,7665,0.158620689655074,0.604166666666641,0.165517241379242,0.608333333333283,0.172413793103380,0.604166666666641,0.165517241379213,0.600000000000000,-0.008333333333283,0.000000000000034,0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000025,-0.000000000000000,-0.013793103448311,2 -1639,1644,1646,1651,0.158620689655108,0.612499999999978,0.165517241379242,0.608333333333283,0.165517241379271,0.616666666666674,0.172413793103405,0.612499999999978,-0.008333333333391,0.000000000000034,-0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448292,0.008333333333391,-0.000000000000025,2 -1640,1645,1647,1652,0.158620689655142,0.620833333333359,0.165517241379271,0.616666666666674,0.165517241379301,0.625000000000043,0.172413793103430,0.620833333333359,-0.008333333333369,0.000000000000034,-0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448282,0.008333333333369,-0.000000000000025,2 -1641,1646,1648,1653,0.158620689655176,0.629166666666685,0.165517241379301,0.625000000000043,0.165517241379330,0.633333333333326,0.172413793103454,0.629166666666685,-0.008333333333283,0.000000000000034,-0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000025,2 -1642,1647,1649,1654,0.158620689655211,0.637500000000022,0.165517241379330,0.633333333333326,0.165517241379359,0.641666666666717,0.172413793103479,0.637500000000022,-0.008333333333391,0.000000000000034,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448264,0.008333333333391,-0.000000000000025,2 -1643,1648,1655,11869,0.158620689655245,0.645833333333359,0.165517241379359,0.641666666666717,0.172413793103504,0.645833333333359,0.165517241379389,0.650000000000000,-0.008333333333283,0.000000000000034,0.000000000000000,-0.013793103448264,0.008333333333283,-0.000000000000025,-0.000000000000000,0.013793103448254,1 -1644,1651,1656,7679,0.172413793103380,0.604166666666641,0.179310344827544,0.608333333333283,0.186206896551689,0.604166666666641,0.179310344827525,0.600000000000000,-0.008333333333283,0.000000000000025,-0.000000000000000,0.013793103448302,0.008333333333283,-0.000000000000012,-0.000000000000000,-0.013793103448315,2 -1645,1650,1652,1657,0.172413793103405,0.612499999999978,0.179310344827544,0.608333333333283,0.179310344827562,0.616666666666674,0.186206896551700,0.612499999999978,-0.008333333333391,0.000000000000025,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448289,0.008333333333391,-0.000000000000012,2 -1646,1651,1653,1658,0.172413793103430,0.620833333333359,0.179310344827562,0.616666666666674,0.179310344827580,0.625000000000043,0.186206896551712,0.620833333333359,-0.008333333333369,0.000000000000025,-0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448276,0.008333333333369,-0.000000000000012,2 -1647,1652,1654,1659,0.172413793103454,0.629166666666685,0.179310344827580,0.625000000000043,0.179310344827598,0.633333333333326,0.186206896551724,0.629166666666685,-0.008333333333283,0.000000000000025,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000012,2 -1648,1653,1655,1660,0.172413793103479,0.637500000000022,0.179310344827598,0.633333333333326,0.179310344827616,0.641666666666717,0.186206896551735,0.637500000000022,-0.008333333333391,0.000000000000025,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000012,2 -1649,1654,1661,11869,0.172413793103504,0.645833333333359,0.179310344827616,0.641666666666717,0.186206896551747,0.645833333333359,0.179310344827634,0.650000000000000,-0.008333333333283,0.000000000000025,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000012,-0.000000000000000,0.013793103448237,1 -1314,1650,1657,7693,0.200000000000000,0.604166666666641,0.186206896551689,0.604166666666641,0.193103448275847,0.608333333333283,0.193103448275841,0.600000000000000,0.008333333333283,0.000000000000000,-0.008333333333283,0.000000000000012,0.000000000000000,0.013793103448305,0.000000000000000,-0.013793103448317,2 -1315,1651,1656,1658,0.200000000000000,0.612499999999978,0.186206896551700,0.612499999999978,0.193103448275847,0.608333333333283,0.193103448275853,0.616666666666674,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000012,-0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448294,2 -1316,1652,1657,1659,0.200000000000000,0.620833333333359,0.186206896551712,0.620833333333359,0.193103448275853,0.616666666666674,0.193103448275859,0.625000000000043,0.008333333333369,-0.000000000000000,-0.008333333333369,0.000000000000012,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448282,2 -1317,1653,1658,1660,0.200000000000000,0.629166666666685,0.186206896551724,0.629166666666685,0.193103448275859,0.625000000000043,0.193103448275865,0.633333333333326,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000012,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448271,2 -1318,1654,1659,1661,0.200000000000000,0.637500000000022,0.186206896551735,0.637500000000022,0.193103448275865,0.633333333333326,0.193103448275870,0.641666666666717,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000012,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448259,2 -1319,1655,1660,11869,0.200000000000000,0.645833333333359,0.186206896551747,0.645833333333359,0.193103448275870,0.641666666666717,0.193103448275876,0.650000000000000,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000012,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448248,1 -0,1663,1668,1849,-0.600000000000000,0.604166666666641,-0.593103448275874,0.608333333333283,-0.586206896551755,0.604166666666641,-0.593103448275881,0.600000000000000,-0.008333333333283,-0.000000000000000,0.000000000000000,0.013793103448252,0.008333333333283,-0.000000000000014,-0.000000000000000,-0.013793103448238,2 -1,1662,1664,1669,-0.600000000000000,0.612499999999978,-0.593103448275874,0.608333333333283,-0.593103448275867,0.616666666666674,-0.586206896551741,0.612499999999978,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448266,0.008333333333391,-0.000000000000014,2 -2,1663,1665,1670,-0.600000000000000,0.620833333333359,-0.593103448275867,0.616666666666674,-0.593103448275860,0.625000000000043,-0.586206896551727,0.620833333333358,-0.008333333333369,0.000000000000000,-0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448280,0.008333333333369,-0.000000000000014,2 -3,1664,1666,1671,-0.600000000000000,0.629166666666685,-0.593103448275860,0.625000000000043,-0.593103448275853,0.633333333333326,-0.586206896551713,0.629166666666685,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448294,0.008333333333283,-0.000000000000014,2 -4,1665,1667,1672,-0.600000000000000,0.637500000000022,-0.593103448275853,0.633333333333326,-0.593103448275846,0.641666666666717,-0.586206896551699,0.637500000000021,-0.008333333333391,0.000000000000000,-0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448308,0.008333333333391,-0.000000000000014,2 -5,1666,1673,11869,-0.600000000000000,0.645833333333359,-0.593103448275846,0.641666666666717,-0.586206896551685,0.645833333333359,-0.593103448275839,0.650000000000000,-0.008333333333283,0.000000000000000,-0.000000000000000,-0.013793103448308,0.008333333333283,-0.000000000000014,0.000000000000000,0.013793103448322,1 -1662,1669,1674,1863,-0.586206896551755,0.604166666666641,-0.579310344827623,0.608333333333283,-0.572413793103511,0.604166666666641,-0.579310344827643,0.600000000000000,-0.008333333333283,0.000000000000014,0.000000000000000,0.013793103448251,0.008333333333283,-0.000000000000028,-0.000000000000000,-0.013793103448238,2 -1663,1668,1670,1675,-0.586206896551741,0.612499999999978,-0.579310344827623,0.608333333333283,-0.579310344827602,0.616666666666674,-0.572413793103483,0.612499999999978,-0.008333333333391,0.000000000000014,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448264,0.008333333333391,-0.000000000000027,2 -1664,1669,1671,1676,-0.586206896551727,0.620833333333358,-0.579310344827602,0.616666666666674,-0.579310344827581,0.625000000000043,-0.572413793103456,0.620833333333358,-0.008333333333369,0.000000000000014,0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448278,0.008333333333369,-0.000000000000027,2 -1665,1670,1672,1677,-0.586206896551713,0.629166666666685,-0.579310344827581,0.625000000000043,-0.579310344827560,0.633333333333326,-0.572413793103429,0.629166666666685,-0.008333333333283,0.000000000000014,-0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448291,0.008333333333283,-0.000000000000027,2 -1666,1671,1673,1678,-0.586206896551699,0.637500000000021,-0.579310344827560,0.633333333333326,-0.579310344827540,0.641666666666717,-0.572413793103401,0.637500000000021,-0.008333333333391,0.000000000000014,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448305,0.008333333333391,-0.000000000000028,2 -1667,1672,1679,11869,-0.586206896551685,0.645833333333359,-0.579310344827540,0.641666666666717,-0.572413793103374,0.645833333333358,-0.579310344827519,0.650000000000000,-0.008333333333283,0.000000000000014,-0.000000000000000,-0.013793103448305,0.008333333333283,-0.000000000000027,-0.000000000000000,0.013793103448318,1 -1668,1675,1680,1877,-0.572413793103511,0.604166666666641,-0.565517241379372,0.608333333333283,-0.558620689655267,0.604166666666641,-0.565517241379406,0.600000000000000,-0.008333333333283,0.000000000000028,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000039,-0.000000000000000,-0.013793103448238,2 -1669,1674,1676,1681,-0.572413793103483,0.612499999999978,-0.565517241379372,0.608333333333283,-0.565517241379339,0.616666666666674,-0.558620689655228,0.612499999999978,-0.008333333333391,0.000000000000027,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000039,2 -1670,1675,1677,1682,-0.572413793103456,0.620833333333358,-0.565517241379339,0.616666666666674,-0.565517241379306,0.625000000000043,-0.558620689655189,0.620833333333358,-0.008333333333369,0.000000000000027,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000039,2 -1671,1676,1678,1683,-0.572413793103429,0.629166666666685,-0.565517241379306,0.625000000000043,-0.565517241379272,0.633333333333326,-0.558620689655149,0.629166666666685,-0.008333333333283,0.000000000000027,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448286,0.008333333333283,-0.000000000000040,2 -1672,1677,1679,1684,-0.572413793103401,0.637500000000021,-0.565517241379272,0.633333333333326,-0.565517241379239,0.641666666666717,-0.558620689655110,0.637500000000021,-0.008333333333391,0.000000000000028,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000039,2 -1673,1678,1685,11869,-0.572413793103374,0.645833333333358,-0.565517241379239,0.641666666666717,-0.558620689655071,0.645833333333359,-0.565517241379205,0.650000000000000,-0.008333333333283,0.000000000000027,0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000039,-0.000000000000000,0.013793103448309,1 -1674,1681,1686,1891,-0.558620689655267,0.604166666666641,-0.551724137931123,0.608333333333283,-0.544827586207024,0.604166666666641,-0.551724137931168,0.600000000000000,-0.008333333333283,0.000000000000039,-0.000000000000000,0.013793103448248,0.008333333333283,-0.000000000000050,-0.000000000000000,-0.013793103448238,2 -1675,1680,1682,1687,-0.558620689655228,0.612499999999978,-0.551724137931123,0.608333333333283,-0.551724137931079,0.616666666666674,-0.544827586206974,0.612499999999978,-0.008333333333391,0.000000000000039,0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448259,0.008333333333391,-0.000000000000050,2 -1676,1681,1683,1688,-0.558620689655189,0.620833333333358,-0.551724137931079,0.616666666666674,-0.551724137931034,0.625000000000043,-0.544827586206924,0.620833333333358,-0.008333333333369,0.000000000000039,-0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448270,0.008333333333369,-0.000000000000050,2 -1677,1682,1684,1689,-0.558620689655149,0.629166666666685,-0.551724137931034,0.625000000000043,-0.551724137930989,0.633333333333326,-0.544827586206874,0.629166666666685,-0.008333333333283,0.000000000000040,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448280,0.008333333333283,-0.000000000000050,2 -1678,1683,1685,1690,-0.558620689655110,0.637500000000021,-0.551724137930989,0.633333333333326,-0.551724137930945,0.641666666666717,-0.544827586206824,0.637500000000021,-0.008333333333391,0.000000000000039,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448291,0.008333333333391,-0.000000000000050,2 -1679,1684,1691,11869,-0.558620689655071,0.645833333333359,-0.551724137930945,0.641666666666717,-0.544827586206774,0.645833333333359,-0.551724137930900,0.650000000000000,-0.008333333333283,0.000000000000039,-0.000000000000000,-0.013793103448291,0.008333333333283,-0.000000000000050,-0.000000000000000,0.013793103448302,1 -1680,1687,1692,1905,-0.544827586207024,0.604166666666641,-0.537931034482875,0.608333333333283,-0.531034482758782,0.604166666666641,-0.537931034482930,0.600000000000000,-0.008333333333283,0.000000000000050,0.000000000000000,0.013793103448247,0.008333333333283,-0.000000000000060,-0.000000000000000,-0.013793103448238,2 -1681,1686,1688,1693,-0.544827586206974,0.612499999999978,-0.537931034482875,0.608333333333283,-0.537931034482820,0.616666666666674,-0.531034482758722,0.612499999999978,-0.008333333333391,0.000000000000050,-0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448257,0.008333333333391,-0.000000000000060,2 -1682,1687,1689,1694,-0.544827586206924,0.620833333333358,-0.537931034482820,0.616666666666674,-0.537931034482766,0.625000000000043,-0.531034482758662,0.620833333333358,-0.008333333333369,0.000000000000050,-0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448267,0.008333333333369,-0.000000000000060,2 -1683,1688,1690,1695,-0.544827586206874,0.629166666666685,-0.537931034482766,0.625000000000043,-0.537931034482711,0.633333333333326,-0.531034482758602,0.629166666666685,-0.008333333333283,0.000000000000050,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448277,0.008333333333283,-0.000000000000060,2 -1684,1689,1691,1696,-0.544827586206824,0.637500000000021,-0.537931034482711,0.633333333333326,-0.537931034482656,0.641666666666717,-0.531034482758542,0.637500000000021,-0.008333333333391,0.000000000000050,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448287,0.008333333333391,-0.000000000000060,2 -1685,1690,1697,11869,-0.544827586206774,0.645833333333359,-0.537931034482656,0.641666666666717,-0.531034482758483,0.645833333333359,-0.537931034482601,0.650000000000000,-0.008333333333283,0.000000000000050,-0.000000000000000,-0.013793103448287,0.008333333333283,-0.000000000000060,-0.000000000000000,0.013793103448296,1 -1686,1693,1698,1919,-0.531034482758782,0.604166666666641,-0.524137931034627,0.608333333333283,-0.517241379310538,0.604166666666641,-0.524137931034693,0.600000000000000,-0.008333333333283,0.000000000000060,0.000000000000000,0.013793103448249,0.008333333333283,-0.000000000000071,-0.000000000000000,-0.013793103448238,2 -1687,1692,1694,1699,-0.531034482758722,0.612499999999978,-0.524137931034627,0.608333333333283,-0.524137931034561,0.616666666666674,-0.517241379310467,0.612499999999978,-0.008333333333391,0.000000000000060,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000071,2 -1688,1693,1695,1700,-0.531034482758662,0.620833333333358,-0.524137931034561,0.616666666666674,-0.524137931034496,0.625000000000043,-0.517241379310395,0.620833333333358,-0.008333333333369,0.000000000000060,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000071,2 -1689,1694,1696,1701,-0.531034482758602,0.629166666666685,-0.524137931034496,0.625000000000043,-0.524137931034430,0.633333333333326,-0.517241379310324,0.629166666666685,-0.008333333333283,0.000000000000060,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448284,0.008333333333283,-0.000000000000071,2 -1690,1695,1697,1702,-0.531034482758542,0.637500000000021,-0.524137931034430,0.633333333333326,-0.524137931034365,0.641666666666717,-0.517241379310252,0.637500000000021,-0.008333333333391,0.000000000000060,-0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448296,0.008333333333391,-0.000000000000071,2 -1691,1696,1703,11869,-0.531034482758483,0.645833333333359,-0.524137931034365,0.641666666666717,-0.517241379310181,0.645833333333358,-0.524137931034299,0.650000000000000,-0.008333333333283,0.000000000000060,-0.000000000000000,-0.013793103448296,0.008333333333283,-0.000000000000071,-0.000000000000000,0.013793103448308,1 -1692,1699,1704,1933,-0.517241379310538,0.604166666666641,-0.510344827586377,0.608333333333283,-0.503448275862294,0.604166666666641,-0.510344827586455,0.600000000000000,-0.008333333333283,0.000000000000071,-0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000084,-0.000000000000000,-0.013793103448238,2 -1693,1698,1700,1705,-0.517241379310467,0.612499999999978,-0.510344827586377,0.608333333333283,-0.510344827586300,0.616666666666674,-0.503448275862211,0.612499999999978,-0.008333333333391,0.000000000000071,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000084,2 -1694,1699,1701,1706,-0.517241379310395,0.620833333333358,-0.510344827586300,0.616666666666674,-0.510344827586222,0.625000000000043,-0.503448275862127,0.620833333333358,-0.008333333333369,0.000000000000071,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000084,2 -1695,1700,1702,1707,-0.517241379310324,0.629166666666685,-0.510344827586222,0.625000000000043,-0.510344827586145,0.633333333333326,-0.503448275862043,0.629166666666685,-0.008333333333283,0.000000000000071,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448287,0.008333333333283,-0.000000000000084,2 -1696,1701,1703,1708,-0.517241379310252,0.637500000000021,-0.510344827586145,0.633333333333326,-0.510344827586067,0.641666666666717,-0.503448275861959,0.637500000000021,-0.008333333333391,0.000000000000071,-0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448299,0.008333333333391,-0.000000000000083,2 -1697,1702,1709,11869,-0.517241379310181,0.645833333333358,-0.510344827586067,0.641666666666717,-0.503448275861876,0.645833333333359,-0.510344827585989,0.650000000000000,-0.008333333333283,0.000000000000071,0.000000000000000,-0.013793103448299,0.008333333333283,-0.000000000000084,-0.000000000000000,0.013793103448311,1 -1698,1705,1710,1947,-0.503448275862294,0.604166666666641,-0.496551724138125,0.608333333333283,-0.489655172414048,0.604166666666641,-0.496551724138217,0.600000000000000,-0.008333333333283,0.000000000000084,0.000000000000000,0.013793103448254,0.008333333333283,-0.000000000000100,-0.000000000000000,-0.013793103448238,2 -1699,1704,1706,1711,-0.503448275862211,0.612499999999978,-0.496551724138125,0.608333333333283,-0.496551724138033,0.616666666666674,-0.489655172413948,0.612499999999978,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448271,0.008333333333391,-0.000000000000100,2 -1700,1705,1707,1712,-0.503448275862127,0.620833333333358,-0.496551724138033,0.616666666666674,-0.496551724137942,0.625000000000043,-0.489655172413848,0.620833333333358,-0.008333333333369,0.000000000000084,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448287,0.008333333333369,-0.000000000000100,2 -1701,1706,1708,1713,-0.503448275862043,0.629166666666685,-0.496551724137942,0.625000000000043,-0.496551724137850,0.633333333333326,-0.489655172413748,0.629166666666685,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448303,0.008333333333283,-0.000000000000100,2 -1702,1707,1709,1714,-0.503448275861959,0.637500000000021,-0.496551724137850,0.633333333333326,-0.496551724137758,0.641666666666717,-0.489655172413648,0.637500000000021,-0.008333333333391,0.000000000000083,-0.000000000000000,-0.013793103448303,0.000000000000000,0.013793103448320,0.008333333333391,-0.000000000000100,2 -1703,1708,1715,11869,-0.503448275861876,0.645833333333359,-0.496551724137758,0.641666666666717,-0.489655172413548,0.645833333333359,-0.496551724137666,0.650000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448320,0.008333333333283,-0.000000000000100,-0.000000000000000,0.013793103448336,1 -1704,1711,1716,1961,-0.489655172414048,0.604166666666641,-0.482758620689873,0.608333333333283,-0.475862068965804,0.604166666666641,-0.482758620689980,0.600000000000000,-0.008333333333283,0.000000000000100,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000113,-0.000000000000000,-0.013793103448238,2 -1705,1710,1712,1717,-0.489655172413948,0.612499999999978,-0.482758620689873,0.608333333333283,-0.482758620689767,0.616666666666674,-0.475862068965692,0.612499999999978,-0.008333333333391,0.000000000000100,-0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000113,2 -1706,1711,1713,1718,-0.489655172413848,0.620833333333358,-0.482758620689767,0.616666666666674,-0.482758620689661,0.625000000000043,-0.475862068965579,0.620833333333358,-0.008333333333369,0.000000000000100,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000112,2 -1707,1712,1714,1719,-0.489655172413748,0.629166666666685,-0.482758620689661,0.625000000000043,-0.482758620689554,0.633333333333326,-0.475862068965467,0.629166666666685,-0.008333333333283,0.000000000000100,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448288,0.008333333333283,-0.000000000000113,2 -1708,1713,1715,1720,-0.489655172413648,0.637500000000021,-0.482758620689554,0.633333333333326,-0.482758620689448,0.641666666666717,-0.475862068965354,0.637500000000021,-0.008333333333391,0.000000000000100,-0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448300,0.008333333333391,-0.000000000000113,2 -1709,1714,1721,11869,-0.489655172413548,0.645833333333359,-0.482758620689448,0.641666666666717,-0.475862068965242,0.645833333333359,-0.482758620689341,0.650000000000000,-0.008333333333283,0.000000000000100,-0.000000000000000,-0.013793103448300,0.008333333333283,-0.000000000000113,-0.000000000000000,0.013793103448313,1 -1710,1717,1722,1975,-0.475862068965804,0.604166666666641,-0.468965517241623,0.608333333333283,-0.462068965517561,0.604166666666641,-0.468965517241742,0.600000000000000,-0.008333333333283,0.000000000000113,0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000125,-0.000000000000000,-0.013793103448238,2 -1711,1716,1718,1723,-0.475862068965692,0.612499999999978,-0.468965517241623,0.608333333333283,-0.468965517241505,0.616666666666674,-0.462068965517436,0.612499999999978,-0.008333333333391,0.000000000000113,-0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000125,2 -1712,1717,1719,1724,-0.475862068965579,0.620833333333358,-0.468965517241505,0.616666666666674,-0.468965517241386,0.625000000000043,-0.462068965517312,0.620833333333358,-0.008333333333369,0.000000000000112,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000124,2 -1713,1718,1720,1725,-0.475862068965467,0.629166666666685,-0.468965517241386,0.625000000000043,-0.468965517241268,0.633333333333326,-0.462068965517187,0.629166666666685,-0.008333333333283,0.000000000000113,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448285,0.008333333333283,-0.000000000000124,2 -1714,1719,1721,1726,-0.475862068965354,0.637500000000021,-0.468965517241268,0.633333333333326,-0.468965517241149,0.641666666666717,-0.462068965517063,0.637500000000021,-0.008333333333391,0.000000000000113,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000125,2 -1715,1720,1727,11869,-0.475862068965242,0.645833333333359,-0.468965517241149,0.641666666666717,-0.462068965516938,0.645833333333359,-0.468965517241031,0.650000000000000,-0.008333333333283,0.000000000000113,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000124,-0.000000000000000,0.013793103448309,1 -1716,1723,1728,1989,-0.462068965517561,0.604166666666641,-0.455172413793374,0.608333333333283,-0.448275862069317,0.604166666666641,-0.455172413793504,0.600000000000000,-0.008333333333283,0.000000000000125,0.000000000000000,0.013793103448249,0.008333333333282,-0.000000000000136,-0.000000000000000,-0.013793103448238,2 -1717,1722,1724,1729,-0.462068965517436,0.612499999999978,-0.455172413793374,0.608333333333283,-0.455172413793243,0.616666666666674,-0.448275862069181,0.612499999999978,-0.008333333333391,0.000000000000125,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448261,0.008333333333391,-0.000000000000137,2 -1718,1723,1725,1730,-0.462068965517312,0.620833333333358,-0.455172413793243,0.616666666666674,-0.455172413793113,0.625000000000043,-0.448275862069044,0.620833333333358,-0.008333333333369,0.000000000000124,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000136,2 -1719,1724,1726,1731,-0.462068965517187,0.629166666666685,-0.455172413793113,0.625000000000043,-0.455172413792982,0.633333333333326,-0.448275862068908,0.629166666666685,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448285,0.008333333333283,-0.000000000000136,2 -1720,1725,1727,1732,-0.462068965517063,0.637500000000021,-0.455172413792982,0.633333333333326,-0.455172413792852,0.641666666666717,-0.448275862068772,0.637500000000021,-0.008333333333391,0.000000000000125,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000137,2 -1721,1726,1733,11869,-0.462068965516938,0.645833333333359,-0.455172413792852,0.641666666666717,-0.448275862068635,0.645833333333358,-0.455172413792722,0.650000000000000,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000136,-0.000000000000000,0.013793103448309,1 -1722,1729,1734,2003,-0.448275862069317,0.604166666666641,-0.441379310345124,0.608333333333283,-0.434482758621073,0.604166666666641,-0.441379310345266,0.600000000000000,-0.008333333333282,0.000000000000136,-0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000148,-0.000000000000000,-0.013793103448238,2 -1723,1728,1730,1735,-0.448275862069181,0.612499999999978,-0.441379310345124,0.608333333333283,-0.441379310344982,0.616666666666674,-0.434482758620925,0.612499999999978,-0.008333333333391,0.000000000000137,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448262,0.008333333333391,-0.000000000000148,2 -1724,1729,1731,1736,-0.448275862069044,0.620833333333358,-0.441379310344982,0.616666666666674,-0.441379310344839,0.625000000000043,-0.434482758620777,0.620833333333358,-0.008333333333369,0.000000000000136,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000148,2 -1725,1730,1732,1737,-0.448275862068908,0.629166666666685,-0.441379310344839,0.625000000000043,-0.441379310344697,0.633333333333326,-0.434482758620628,0.629166666666684,-0.008333333333283,0.000000000000136,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448285,0.008333333333283,-0.000000000000148,2 -1726,1731,1733,1738,-0.448275862068772,0.637500000000021,-0.441379310344697,0.633333333333326,-0.441379310344555,0.641666666666717,-0.434482758620480,0.637500000000021,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448297,0.008333333333391,-0.000000000000148,2 -1727,1732,1739,11869,-0.448275862068635,0.645833333333358,-0.441379310344555,0.641666666666717,-0.434482758620332,0.645833333333359,-0.441379310344412,0.650000000000000,-0.008333333333283,0.000000000000136,0.000000000000000,-0.013793103448297,0.008333333333283,-0.000000000000148,-0.000000000000000,0.013793103448310,1 -1728,1735,1740,2017,-0.434482758621073,0.604166666666641,-0.427586206896874,0.608333333333283,-0.420689655172829,0.604166666666641,-0.427586206897029,0.600000000000000,-0.008333333333283,0.000000000000148,0.000000000000000,0.013793103448251,0.008333333333283,-0.000000000000161,-0.000000000000000,-0.013793103448238,2 -1729,1734,1736,1741,-0.434482758620925,0.612499999999978,-0.427586206896874,0.608333333333283,-0.427586206896719,0.616666666666674,-0.420689655172668,0.612499999999978,-0.008333333333391,0.000000000000148,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448264,0.008333333333391,-0.000000000000161,2 -1730,1735,1737,1742,-0.434482758620777,0.620833333333358,-0.427586206896719,0.616666666666674,-0.427586206896564,0.625000000000043,-0.420689655172507,0.620833333333358,-0.008333333333369,0.000000000000148,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000161,2 -1731,1736,1738,1743,-0.434482758620628,0.629166666666684,-0.427586206896564,0.625000000000043,-0.427586206896409,0.633333333333326,-0.420689655172345,0.629166666666685,-0.008333333333283,0.000000000000148,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448290,0.008333333333283,-0.000000000000162,2 -1732,1737,1739,1744,-0.434482758620480,0.637500000000021,-0.427586206896409,0.633333333333326,-0.427586206896255,0.641666666666717,-0.420689655172184,0.637500000000021,-0.008333333333391,0.000000000000148,0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448303,0.008333333333391,-0.000000000000161,2 -1733,1738,1745,11869,-0.434482758620332,0.645833333333359,-0.427586206896255,0.641666666666717,-0.420689655172023,0.645833333333359,-0.427586206896100,0.650000000000000,-0.008333333333283,0.000000000000148,-0.000000000000000,-0.013793103448303,0.008333333333283,-0.000000000000161,-0.000000000000000,0.013793103448315,1 -1734,1741,1746,2031,-0.420689655172829,0.604166666666641,-0.413793103448623,0.608333333333283,-0.406896551724585,0.604166666666641,-0.413793103448791,0.600000000000000,-0.008333333333283,0.000000000000161,-0.000000000000000,0.013793103448250,0.008333333333283,-0.000000000000174,-0.000000000000000,-0.013793103448238,2 -1735,1740,1742,1747,-0.420689655172668,0.612499999999978,-0.413793103448623,0.608333333333283,-0.413793103448456,0.616666666666674,-0.406896551724411,0.612499999999978,-0.008333333333391,0.000000000000161,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000174,2 -1736,1741,1743,1748,-0.420689655172507,0.620833333333358,-0.413793103448456,0.616666666666674,-0.413793103448288,0.625000000000043,-0.406896551724237,0.620833333333358,-0.008333333333369,0.000000000000161,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448276,0.008333333333369,-0.000000000000174,2 -1737,1742,1744,1749,-0.420689655172345,0.629166666666685,-0.413793103448288,0.625000000000043,-0.413793103448121,0.633333333333326,-0.406896551724064,0.629166666666685,-0.008333333333283,0.000000000000162,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448288,0.008333333333283,-0.000000000000174,2 -1738,1743,1745,1750,-0.420689655172184,0.637500000000021,-0.413793103448121,0.633333333333326,-0.413793103447953,0.641666666666717,-0.406896551723890,0.637500000000021,-0.008333333333391,0.000000000000161,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448301,0.008333333333391,-0.000000000000174,2 -1739,1744,1751,11869,-0.420689655172023,0.645833333333359,-0.413793103447953,0.641666666666717,-0.406896551723716,0.645833333333358,-0.413793103447786,0.650000000000000,-0.008333333333283,0.000000000000161,-0.000000000000000,-0.013793103448301,0.008333333333283,-0.000000000000174,-0.000000000000000,0.013793103448313,1 -1740,1747,1752,2045,-0.406896551724585,0.604166666666641,-0.400000000000365,0.608333333333283,-0.393103448276320,0.604166666666641,-0.400000000000540,0.600000000000000,-0.008333333333283,0.000000000000174,0.000000000000000,0.013793103448267,0.008333333333283,-0.000000000000177,-0.000000000000000,-0.013793103448264,2 -1741,1746,1748,1753,-0.406896551724411,0.612499999999978,-0.400000000000365,0.608333333333283,-0.400000000000189,0.616666666666674,-0.393103448276143,0.612499999999978,-0.008333333333391,0.000000000000174,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448270,0.008333333333391,-0.000000000000177,2 -1742,1747,1749,1754,-0.406896551724237,0.620833333333358,-0.400000000000189,0.616666666666674,-0.400000000000014,0.625000000000043,-0.393103448275966,0.620833333333358,-0.008333333333369,0.000000000000174,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448274,0.008333333333369,-0.000000000000177,2 -1743,1748,1750,1755,-0.406896551724064,0.629166666666685,-0.400000000000014,0.625000000000043,-0.399999999999838,0.633333333333326,-0.393103448275789,0.629166666666685,-0.008333333333283,0.000000000000174,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448277,0.008333333333283,-0.000000000000177,2 -1744,1749,1751,1756,-0.406896551723890,0.637500000000021,-0.399999999999838,0.633333333333326,-0.399999999999663,0.641666666666717,-0.393103448275612,0.637500000000021,-0.008333333333391,0.000000000000174,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448280,0.008333333333391,-0.000000000000177,2 -1745,1750,1757,11869,-0.406896551723716,0.645833333333358,-0.399999999999663,0.641666666666717,-0.393103448275434,0.645833333333359,-0.399999999999487,0.650000000000000,-0.008333333333283,0.000000000000174,0.000000000000000,-0.013793103448280,0.008333333333283,-0.000000000000177,-0.000000000000000,0.013793103448283,1 -1746,1753,1758,2059,-0.393103448276320,0.604166666666641,-0.386206896552082,0.608333333333283,-0.379310344828014,0.604166666666641,-0.386206896552252,0.600000000000000,-0.008333333333283,0.000000000000177,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000164,-0.000000000000000,-0.013793103448312,2 -1747,1752,1754,1759,-0.393103448276143,0.612499999999978,-0.386206896552082,0.608333333333283,-0.386206896551911,0.616666666666674,-0.379310344827850,0.612499999999978,-0.008333333333391,0.000000000000177,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000164,2 -1748,1753,1755,1760,-0.393103448275966,0.620833333333358,-0.386206896551911,0.616666666666674,-0.386206896551740,0.625000000000043,-0.379310344827686,0.620833333333358,-0.008333333333369,0.000000000000177,0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000164,2 -1749,1754,1756,1761,-0.393103448275789,0.629166666666685,-0.386206896551740,0.625000000000043,-0.386206896551570,0.633333333333326,-0.379310344827521,0.629166666666685,-0.008333333333283,0.000000000000177,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000164,2 -1750,1755,1757,1762,-0.393103448275612,0.637500000000021,-0.386206896551570,0.633333333333326,-0.386206896551399,0.641666666666717,-0.379310344827357,0.637500000000021,-0.008333333333391,0.000000000000177,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000164,2 -1751,1756,1763,11869,-0.393103448275434,0.645833333333359,-0.386206896551399,0.641666666666717,-0.379310344827193,0.645833333333359,-0.386206896551228,0.650000000000000,-0.008333333333283,0.000000000000177,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000164,-0.000000000000000,0.013793103448235,1 -1752,1759,1764,2073,-0.379310344828014,0.604166666666641,-0.372413793103778,0.608333333333283,-0.365517241379699,0.604166666666641,-0.372413793103935,0.600000000000000,-0.008333333333283,0.000000000000164,0.000000000000000,0.013793103448308,0.008333333333283,-0.000000000000150,-0.000000000000000,-0.013793103448323,2 -1753,1758,1760,1765,-0.379310344827850,0.612499999999978,-0.372413793103778,0.608333333333283,-0.372413793103621,0.616666666666674,-0.365517241379549,0.612499999999978,-0.008333333333391,0.000000000000164,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448294,0.008333333333391,-0.000000000000150,2 -1754,1759,1761,1766,-0.379310344827686,0.620833333333358,-0.372413793103621,0.616666666666674,-0.372413793103464,0.625000000000043,-0.365517241379400,0.620833333333358,-0.008333333333369,0.000000000000164,-0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448279,0.008333333333369,-0.000000000000150,2 -1755,1760,1762,1767,-0.379310344827521,0.629166666666685,-0.372413793103464,0.625000000000043,-0.372413793103307,0.633333333333326,-0.365517241379250,0.629166666666685,-0.008333333333283,0.000000000000164,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448264,0.008333333333283,-0.000000000000150,2 -1756,1761,1763,1768,-0.379310344827357,0.637500000000021,-0.372413793103307,0.633333333333326,-0.372413793103150,0.641666666666717,-0.365517241379100,0.637500000000021,-0.008333333333391,0.000000000000164,-0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448250,0.008333333333391,-0.000000000000150,2 -1757,1762,1769,11869,-0.379310344827193,0.645833333333359,-0.372413793103150,0.641666666666717,-0.365517241378951,0.645833333333359,-0.372413793102993,0.650000000000000,-0.008333333333283,0.000000000000164,-0.000000000000000,-0.013793103448250,0.008333333333283,-0.000000000000150,-0.000000000000000,0.013793103448235,1 -1758,1765,1770,2087,-0.365517241379699,0.604166666666641,-0.358620689655475,0.608333333333283,-0.351724137931394,0.604166666666641,-0.358620689655618,0.600000000000000,-0.008333333333283,0.000000000000150,-0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000137,-0.000000000000000,-0.013793103448312,2 -1759,1764,1766,1771,-0.365517241379549,0.612499999999978,-0.358620689655475,0.608333333333283,-0.358620689655331,0.616666666666674,-0.351724137931257,0.612499999999978,-0.008333333333391,0.000000000000150,0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000137,2 -1760,1765,1767,1772,-0.365517241379400,0.620833333333358,-0.358620689655331,0.616666666666674,-0.358620689655188,0.625000000000043,-0.351724137931120,0.620833333333358,-0.008333333333369,0.000000000000150,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000137,2 -1761,1766,1768,1773,-0.365517241379250,0.629166666666685,-0.358620689655188,0.625000000000043,-0.358620689655045,0.633333333333326,-0.351724137930983,0.629166666666685,-0.008333333333283,0.000000000000150,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000137,2 -1762,1767,1769,1774,-0.365517241379100,0.637500000000021,-0.358620689655045,0.633333333333326,-0.358620689654901,0.641666666666717,-0.351724137930846,0.637500000000021,-0.008333333333391,0.000000000000150,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000137,2 -1763,1768,1775,11869,-0.365517241378951,0.645833333333359,-0.358620689654901,0.641666666666717,-0.351724137930709,0.645833333333359,-0.358620689654758,0.650000000000000,-0.008333333333283,0.000000000000150,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000137,-0.000000000000000,0.013793103448235,1 -1764,1771,1776,2101,-0.351724137931394,0.604166666666641,-0.344827586207176,0.608333333333283,-0.337931034483088,0.604166666666641,-0.344827586207306,0.600000000000000,-0.008333333333283,0.000000000000137,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000124,-0.000000000000000,-0.013793103448312,2 -1765,1770,1772,1777,-0.351724137931257,0.612499999999978,-0.344827586207176,0.608333333333283,-0.344827586207045,0.616666666666674,-0.337931034482964,0.612499999999978,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000124,2 -1766,1771,1773,1778,-0.351724137931120,0.620833333333358,-0.344827586207045,0.616666666666674,-0.344827586206915,0.625000000000043,-0.337931034482840,0.620833333333358,-0.008333333333369,0.000000000000137,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000124,2 -1767,1772,1774,1779,-0.351724137930983,0.629166666666685,-0.344827586206915,0.625000000000043,-0.344827586206784,0.633333333333326,-0.337931034482716,0.629166666666685,-0.008333333333283,0.000000000000137,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000124,2 -1768,1773,1775,1780,-0.351724137930846,0.637500000000021,-0.344827586206784,0.633333333333326,-0.344827586206653,0.641666666666717,-0.337931034482592,0.637500000000021,-0.008333333333391,0.000000000000137,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000124,2 -1769,1774,1781,11869,-0.351724137930709,0.645833333333359,-0.344827586206653,0.641666666666717,-0.337931034482468,0.645833333333359,-0.344827586206523,0.650000000000000,-0.008333333333283,0.000000000000137,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000124,-0.000000000000000,0.013793103448235,1 -1770,1777,1782,2115,-0.337931034483088,0.604166666666641,-0.331034482758877,0.608333333333283,-0.324137931034783,0.604166666666641,-0.331034482758994,0.600000000000000,-0.008333333333283,0.000000000000124,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000111,-0.000000000000000,-0.013793103448312,2 -1771,1776,1778,1783,-0.337931034482964,0.612499999999978,-0.331034482758877,0.608333333333283,-0.331034482758759,0.616666666666674,-0.324137931034671,0.612499999999978,-0.008333333333391,0.000000000000124,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000111,2 -1772,1777,1779,1784,-0.337931034482840,0.620833333333358,-0.331034482758759,0.616666666666674,-0.331034482758641,0.625000000000043,-0.324137931034560,0.620833333333358,-0.008333333333369,0.000000000000124,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000111,2 -1773,1778,1780,1785,-0.337931034482716,0.629166666666685,-0.331034482758641,0.625000000000043,-0.331034482758523,0.633333333333326,-0.324137931034449,0.629166666666685,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000111,2 -1774,1779,1781,1786,-0.337931034482592,0.637500000000021,-0.331034482758523,0.633333333333326,-0.331034482758406,0.641666666666717,-0.324137931034337,0.637500000000021,-0.008333333333391,0.000000000000124,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000111,2 -1775,1780,1787,11869,-0.337931034482468,0.645833333333359,-0.331034482758406,0.641666666666717,-0.324137931034226,0.645833333333359,-0.331034482758288,0.650000000000000,-0.008333333333283,0.000000000000124,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000111,-0.000000000000000,0.013793103448235,1 -1776,1783,1788,2129,-0.324137931034783,0.604166666666641,-0.317241379310576,0.608333333333283,-0.310344827586474,0.604166666666641,-0.317241379310681,0.600000000000000,-0.008333333333283,0.000000000000111,-0.000000000000000,0.013793103448302,0.008333333333283,-0.000000000000098,-0.000000000000000,-0.013793103448315,2 -1777,1782,1784,1789,-0.324137931034671,0.612499999999978,-0.317241379310576,0.608333333333283,-0.317241379310472,0.616666666666674,-0.310344827586376,0.612499999999978,-0.008333333333391,0.000000000000111,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448288,0.008333333333391,-0.000000000000098,2 -1778,1783,1785,1790,-0.324137931034560,0.620833333333358,-0.317241379310472,0.616666666666674,-0.317241379310367,0.625000000000043,-0.310344827586278,0.620833333333358,-0.008333333333369,0.000000000000111,-0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448275,0.008333333333369,-0.000000000000098,2 -1779,1784,1786,1791,-0.324137931034449,0.629166666666685,-0.317241379310367,0.625000000000043,-0.317241379310262,0.633333333333326,-0.310344827586180,0.629166666666684,-0.008333333333283,0.000000000000111,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448262,0.008333333333283,-0.000000000000098,2 -1780,1785,1787,1792,-0.324137931034337,0.637500000000021,-0.317241379310262,0.633333333333326,-0.317241379310158,0.641666666666717,-0.310344827586082,0.637500000000021,-0.008333333333391,0.000000000000111,-0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000098,2 -1781,1786,1793,11869,-0.324137931034226,0.645833333333359,-0.317241379310158,0.641666666666717,-0.310344827585984,0.645833333333359,-0.317241379310053,0.650000000000000,-0.008333333333283,0.000000000000111,0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000098,-0.000000000000000,0.013793103448235,1 -1782,1789,1794,2143,-0.310344827586474,0.604166666666641,-0.303448275862273,0.608333333333283,-0.296551724138163,0.604166666666641,-0.303448275862364,0.600000000000000,-0.008333333333283,0.000000000000098,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000084,-0.000000000000000,-0.013793103448318,2 -1783,1788,1790,1795,-0.310344827586376,0.612499999999978,-0.303448275862273,0.608333333333283,-0.303448275862182,0.616666666666674,-0.296551724138079,0.612499999999978,-0.008333333333391,0.000000000000098,-0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448291,0.008333333333391,-0.000000000000084,2 -1784,1789,1791,1796,-0.310344827586278,0.620833333333358,-0.303448275862182,0.616666666666674,-0.303448275862091,0.625000000000043,-0.296551724137995,0.620833333333358,-0.008333333333369,0.000000000000098,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000084,2 -1785,1790,1792,1797,-0.310344827586180,0.629166666666684,-0.303448275862091,0.625000000000043,-0.303448275862000,0.633333333333326,-0.296551724137911,0.629166666666685,-0.008333333333283,0.000000000000098,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000084,2 -1786,1791,1793,1798,-0.310344827586082,0.637500000000021,-0.303448275862000,0.633333333333326,-0.303448275861909,0.641666666666717,-0.296551724137826,0.637500000000021,-0.008333333333391,0.000000000000098,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000084,2 -1787,1792,1799,11869,-0.310344827585984,0.645833333333359,-0.303448275861909,0.641666666666717,-0.296551724137742,0.645833333333359,-0.303448275861818,0.650000000000000,-0.008333333333283,0.000000000000098,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000084,-0.000000000000000,0.013793103448235,1 -1788,1795,1800,2157,-0.296551724138163,0.604166666666641,-0.289655172413969,0.608333333333283,-0.282758620689852,0.604166666666641,-0.289655172414046,0.600000000000000,-0.008333333333283,0.000000000000084,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000070,-0.000000000000000,-0.013793103448318,2 -1789,1794,1796,1801,-0.296551724138079,0.612499999999978,-0.289655172413969,0.608333333333283,-0.289655172413892,0.616666666666674,-0.282758620689782,0.612499999999978,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448290,0.008333333333391,-0.000000000000070,2 -1790,1795,1797,1802,-0.296551724137995,0.620833333333358,-0.289655172413892,0.616666666666674,-0.289655172413814,0.625000000000043,-0.282758620689711,0.620833333333358,-0.008333333333369,0.000000000000084,-0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448277,0.008333333333369,-0.000000000000070,2 -1791,1796,1798,1803,-0.296551724137911,0.629166666666685,-0.289655172413814,0.625000000000043,-0.289655172413737,0.633333333333326,-0.282758620689641,0.629166666666685,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000070,2 -1792,1797,1799,1804,-0.296551724137826,0.637500000000021,-0.289655172413737,0.633333333333326,-0.289655172413660,0.641666666666717,-0.282758620689570,0.637500000000021,-0.008333333333391,0.000000000000084,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000070,2 -1793,1798,1805,11869,-0.296551724137742,0.645833333333359,-0.289655172413660,0.641666666666717,-0.282758620689500,0.645833333333358,-0.289655172413583,0.650000000000000,-0.008333333333283,0.000000000000084,-0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000070,-0.000000000000000,0.013793103448235,1 -1794,1801,1806,2171,-0.282758620689852,0.604166666666641,-0.275862068965665,0.608333333333283,-0.268965517241541,0.604166666666641,-0.275862068965729,0.600000000000000,-0.008333333333283,0.000000000000070,-0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000057,-0.000000000000000,-0.013793103448317,2 -1795,1800,1802,1807,-0.282758620689782,0.612499999999978,-0.275862068965665,0.608333333333283,-0.275862068965601,0.616666666666674,-0.268965517241485,0.612499999999978,-0.008333333333391,0.000000000000070,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448290,0.008333333333391,-0.000000000000057,2 -1796,1801,1803,1808,-0.282758620689711,0.620833333333358,-0.275862068965601,0.616666666666674,-0.275862068965538,0.625000000000043,-0.268965517241428,0.620833333333359,-0.008333333333369,0.000000000000070,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448276,0.008333333333369,-0.000000000000057,2 -1797,1802,1804,1809,-0.282758620689641,0.629166666666685,-0.275862068965538,0.625000000000043,-0.275862068965474,0.633333333333326,-0.268965517241372,0.629166666666685,-0.008333333333283,0.000000000000070,0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448263,0.008333333333283,-0.000000000000057,2 -1798,1803,1805,1810,-0.282758620689570,0.637500000000021,-0.275862068965474,0.633333333333326,-0.275862068965411,0.641666666666717,-0.268965517241315,0.637500000000021,-0.008333333333391,0.000000000000070,-0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448249,0.008333333333391,-0.000000000000057,2 -1799,1804,1811,11869,-0.282758620689500,0.645833333333358,-0.275862068965411,0.641666666666717,-0.268965517241258,0.645833333333359,-0.275862068965347,0.650000000000000,-0.008333333333283,0.000000000000070,0.000000000000000,-0.013793103448249,0.008333333333283,-0.000000000000057,-0.000000000000000,0.013793103448235,1 -1800,1807,1812,2185,-0.268965517241541,0.604166666666641,-0.262068965517364,0.608333333333283,-0.255172413793236,0.604166666666641,-0.262068965517414,0.600000000000000,-0.008333333333283,0.000000000000057,0.000000000000000,0.013793103448299,0.008333333333283,-0.000000000000044,-0.000000000000000,-0.013793103448312,2 -1801,1806,1808,1813,-0.268965517241485,0.612499999999978,-0.262068965517364,0.608333333333283,-0.262068965517313,0.616666666666674,-0.255172413793192,0.612499999999978,-0.008333333333391,0.000000000000057,-0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448286,0.008333333333391,-0.000000000000044,2 -1802,1807,1809,1814,-0.268965517241428,0.620833333333359,-0.262068965517313,0.616666666666674,-0.262068965517263,0.625000000000043,-0.255172413793148,0.620833333333358,-0.008333333333369,0.000000000000057,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448273,0.008333333333369,-0.000000000000044,2 -1803,1808,1810,1815,-0.268965517241372,0.629166666666685,-0.262068965517263,0.625000000000043,-0.262068965517213,0.633333333333326,-0.255172413793104,0.629166666666685,-0.008333333333283,0.000000000000057,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448261,0.008333333333283,-0.000000000000044,2 -1804,1809,1811,1816,-0.268965517241315,0.637500000000021,-0.262068965517213,0.633333333333326,-0.262068965517163,0.641666666666717,-0.255172413793061,0.637500000000021,-0.008333333333391,0.000000000000057,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448248,0.008333333333391,-0.000000000000044,2 -1805,1810,1817,11869,-0.268965517241258,0.645833333333359,-0.262068965517163,0.641666666666717,-0.255172413793017,0.645833333333359,-0.262068965517112,0.650000000000000,-0.008333333333283,0.000000000000057,-0.000000000000000,-0.013793103448248,0.008333333333283,-0.000000000000044,-0.000000000000000,0.013793103448235,1 -1806,1813,1818,2199,-0.255172413793236,0.604166666666641,-0.248275862069064,0.608333333333283,-0.241379310344930,0.604166666666641,-0.248275862069102,0.600000000000000,-0.008333333333283,0.000000000000044,0.000000000000000,0.013793103448301,0.008333333333283,-0.000000000000033,-0.000000000000000,-0.013793103448312,2 -1807,1812,1814,1819,-0.255172413793192,0.612499999999978,-0.248275862069064,0.608333333333283,-0.248275862069025,0.616666666666674,-0.241379310344897,0.612499999999978,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448289,0.008333333333391,-0.000000000000033,2 -1808,1813,1815,1820,-0.255172413793148,0.620833333333358,-0.248275862069025,0.616666666666674,-0.248275862068987,0.625000000000043,-0.241379310344864,0.620833333333358,-0.008333333333369,0.000000000000044,-0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448278,0.008333333333369,-0.000000000000033,2 -1809,1814,1816,1821,-0.255172413793104,0.629166666666685,-0.248275862068987,0.625000000000043,-0.248275862068949,0.633333333333326,-0.241379310344832,0.629166666666684,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448267,0.008333333333283,-0.000000000000033,2 -1810,1815,1817,1822,-0.255172413793061,0.637500000000021,-0.248275862068949,0.633333333333326,-0.248275862068911,0.641666666666717,-0.241379310344799,0.637500000000021,-0.008333333333391,0.000000000000044,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448256,0.008333333333391,-0.000000000000033,2 -1811,1816,1823,11869,-0.255172413793017,0.645833333333359,-0.248275862068911,0.641666666666717,-0.241379310344766,0.645833333333359,-0.248275862068872,0.650000000000000,-0.008333333333283,0.000000000000044,-0.000000000000000,-0.013793103448256,0.008333333333283,-0.000000000000033,-0.000000000000000,0.013793103448245,1 -1812,1819,1824,2213,-0.241379310344930,0.604166666666641,-0.234482758620762,0.608333333333283,-0.227586206896623,0.604166666666641,-0.234482758620790,0.600000000000000,-0.008333333333283,0.000000000000033,0.000000000000000,0.013793103448302,0.008333333333283,-0.000000000000023,-0.000000000000000,-0.013793103448312,2 -1813,1818,1820,1825,-0.241379310344897,0.612499999999978,-0.234482758620762,0.608333333333283,-0.234482758620735,0.616666666666674,-0.227586206896600,0.612499999999978,-0.008333333333391,0.000000000000033,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448292,0.008333333333391,-0.000000000000023,2 -1814,1819,1821,1826,-0.241379310344864,0.620833333333358,-0.234482758620735,0.616666666666674,-0.234482758620707,0.625000000000043,-0.227586206896577,0.620833333333358,-0.008333333333369,0.000000000000033,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448283,0.008333333333369,-0.000000000000023,2 -1815,1820,1822,1827,-0.241379310344832,0.629166666666684,-0.234482758620707,0.625000000000043,-0.234482758620679,0.633333333333326,-0.227586206896554,0.629166666666685,-0.008333333333283,0.000000000000033,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448273,0.008333333333283,-0.000000000000023,2 -1816,1821,1823,1828,-0.241379310344799,0.637500000000021,-0.234482758620679,0.633333333333326,-0.234482758620651,0.641666666666717,-0.227586206896531,0.637500000000021,-0.008333333333391,0.000000000000033,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448263,0.008333333333391,-0.000000000000023,2 -1817,1822,1829,11869,-0.241379310344766,0.645833333333359,-0.234482758620651,0.641666666666717,-0.227586206896508,0.645833333333359,-0.234482758620623,0.650000000000000,-0.008333333333283,0.000000000000033,0.000000000000000,-0.013793103448263,0.008333333333283,-0.000000000000023,-0.000000000000000,0.013793103448254,1 -1818,1825,1830,2227,-0.227586206896623,0.604166666666641,-0.220689655172459,0.608333333333283,-0.213793103448313,0.604166666666641,-0.220689655172476,0.600000000000000,-0.008333333333283,0.000000000000023,0.000000000000000,0.013793103448304,0.008333333333283,-0.000000000000011,-0.000000000000000,-0.013793103448316,2 -1819,1824,1826,1831,-0.227586206896600,0.612499999999978,-0.220689655172459,0.608333333333283,-0.220689655172442,0.616666666666674,-0.213793103448302,0.612499999999978,-0.008333333333391,0.000000000000023,-0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448292,0.008333333333391,-0.000000000000011,2 -1820,1825,1827,1832,-0.227586206896577,0.620833333333358,-0.220689655172442,0.616666666666674,-0.220689655172426,0.625000000000043,-0.213793103448291,0.620833333333358,-0.008333333333369,0.000000000000023,0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448279,0.008333333333369,-0.000000000000011,2 -1821,1826,1828,1833,-0.227586206896554,0.629166666666685,-0.220689655172426,0.625000000000043,-0.220689655172409,0.633333333333326,-0.213793103448281,0.629166666666685,-0.008333333333283,0.000000000000023,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448267,0.008333333333283,-0.000000000000011,2 -1822,1827,1829,1834,-0.227586206896531,0.637500000000021,-0.220689655172409,0.633333333333326,-0.220689655172392,0.641666666666717,-0.213793103448270,0.637500000000021,-0.008333333333391,0.000000000000023,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448255,0.008333333333391,-0.000000000000011,2 -1823,1828,1835,11869,-0.227586206896508,0.645833333333359,-0.220689655172392,0.641666666666717,-0.213793103448259,0.645833333333359,-0.220689655172375,0.650000000000000,-0.008333333333283,0.000000000000023,-0.000000000000000,-0.013793103448255,0.008333333333283,-0.000000000000011,-0.000000000000000,0.013793103448243,1 -1488,1824,1831,2241,-0.200000000000000,0.604166666666641,-0.213793103448313,0.604166666666641,-0.206896551724154,0.608333333333283,-0.206896551724159,0.600000000000000,0.008333333333283,0.000000000000000,-0.008333333333283,0.000000000000011,-0.000000000000000,0.013793103448307,0.000000000000000,-0.013793103448318,2 -1489,1825,1830,1832,-0.200000000000000,0.612499999999978,-0.213793103448302,0.612499999999978,-0.206896551724154,0.608333333333283,-0.206896551724148,0.616666666666674,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000011,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448297,2 -1490,1826,1831,1833,-0.200000000000000,0.620833333333359,-0.213793103448291,0.620833333333358,-0.206896551724148,0.616666666666674,-0.206896551724143,0.625000000000043,0.008333333333369,-0.000000000000000,-0.008333333333369,0.000000000000011,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448286,2 -1491,1827,1832,1834,-0.200000000000000,0.629166666666685,-0.213793103448281,0.629166666666685,-0.206896551724143,0.625000000000043,-0.206896551724138,0.633333333333326,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000011,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448275,2 -1492,1828,1833,1835,-0.200000000000000,0.637500000000022,-0.213793103448270,0.637500000000021,-0.206896551724138,0.633333333333326,-0.206896551724132,0.641666666666717,0.008333333333391,-0.000000000000000,-0.008333333333391,0.000000000000011,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448264,2 -1493,1829,1834,11869,-0.200000000000000,0.645833333333359,-0.213793103448259,0.645833333333359,-0.206896551724132,0.641666666666717,-0.206896551724127,0.650000000000000,0.008333333333283,-0.000000000000000,-0.008333333333283,0.000000000000011,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448254,1 -24,1837,1850,3952,-0.600000000000000,0.407142857142835,-0.593103448275881,0.414285714285671,-0.586206896551762,0.407142857142836,-0.593103448275881,0.400000000000000,-0.014285714285669,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285672,0.000000000000000,-0.000000000000000,-0.013793103448238,2 -28,1836,1838,1851,-0.600000000000000,0.421428571428526,-0.593103448275881,0.414285714285671,-0.593103448275881,0.428571428571384,-0.586206896551762,0.421428571428529,-0.014285714285713,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285714,-0.000000000000000,2 -32,1837,1839,1852,-0.600000000000000,0.435714285714217,-0.593103448275881,0.428571428571384,-0.593103448275881,0.442857142857055,-0.586206896551762,0.435714285714223,-0.014285714285669,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000007,0.013793103448238,0.014285714285672,0.000000000000000,2 -36,1838,1840,1853,-0.600000000000000,0.449999999999886,-0.593103448275881,0.442857142857055,-0.593103448275881,0.457142857142726,-0.586206896551762,0.449999999999895,-0.014285714285669,-0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285672,0.000000000000000,2 -40,1839,1841,1854,-0.600000000000000,0.464285714285555,-0.593103448275881,0.457142857142726,-0.593103448275881,0.471428571428397,-0.586206896551762,0.464285714285568,-0.014285714285669,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285672,0.000000000000000,2 -44,1840,1842,1855,-0.600000000000000,0.478571428571225,-0.593103448275881,0.471428571428397,-0.593103448275881,0.485714285714068,-0.586206896551762,0.478571428571240,-0.014285714285669,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285672,-0.000000000000000,2 -48,1841,1843,1856,-0.600000000000000,0.492857142856910,-0.593103448275881,0.485714285714068,-0.593103448275881,0.499999999999770,-0.586206896551762,0.492857142856928,-0.014285714285702,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285703,0.000000000000000,2 -52,1842,1844,1857,-0.600000000000000,0.507142857142625,-0.593103448275881,0.499999999999770,-0.593103448275881,0.514285714285495,-0.586206896551762,0.507142857142641,-0.014285714285727,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285723,0.000000000000000,2 -56,1843,1845,1858,-0.600000000000000,0.521428571428368,-0.593103448275881,0.514285714285495,-0.593103448275881,0.528571428571252,-0.586206896551762,0.521428571428379,-0.014285714285759,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285753,0.000000000000000,2 -60,1844,1846,1859,-0.600000000000000,0.535714285714122,-0.593103448275881,0.528571428571252,-0.593103448275881,0.542857142857000,-0.586206896551762,0.535714285714129,-0.014285714285750,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285747,0.000000000000000,2 -64,1845,1847,1860,-0.600000000000000,0.549999999999875,-0.593103448275881,0.542857142857000,-0.593103448275881,0.557142857142755,-0.586206896551762,0.549999999999880,-0.014285714285756,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000003,0.013793103448238,0.014285714285753,0.000000000000000,2 -68,1846,1848,1861,-0.600000000000000,0.564285714285631,-0.593103448275881,0.557142857142755,-0.593103448275881,0.571428571428510,-0.586206896551762,0.564285714285633,-0.014285714285756,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285754,0.000000000000000,2 -72,1847,1849,1862,-0.600000000000000,0.578571428571386,-0.593103448275881,0.571428571428510,-0.593103448275881,0.585714285714262,-0.586206896551762,0.578571428571386,-0.014285714285753,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000001,0.013793103448238,0.014285714285752,0.000000000000000,2 -76,1662,1848,1863,-0.600000000000000,0.592857142857131,-0.593103448275881,0.600000000000000,-0.593103448275881,0.585714285714262,-0.586206896551762,0.592857142857131,-0.014285714285738,0.000000000000000,0.000000000000000,0.013793103448238,-0.000000000000001,-0.013793103448238,0.014285714285738,-0.000000000000000,2 -1836,1851,1864,3893,-0.586206896551762,0.407142857142836,-0.579310344827643,0.414285714285674,-0.572413793103525,0.407142857142838,-0.579310344827643,0.400000000000000,-0.014285714285672,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285675,0.000000000000000,-0.000000000000000,-0.013793103448238,2 -1837,1850,1852,1865,-0.586206896551762,0.421428571428529,-0.579310344827643,0.414285714285674,-0.579310344827643,0.428571428571389,-0.572413793103524,0.421428571428533,-0.014285714285714,0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285716,-0.000000000000000,2 -1838,1851,1853,1866,-0.586206896551762,0.435714285714223,-0.579310344827643,0.428571428571389,-0.579310344827644,0.442857142857063,-0.572413793103525,0.435714285714229,-0.014285714285672,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000008,0.013793103448238,0.014285714285676,0.000000000000000,2 -1839,1852,1854,1867,-0.586206896551762,0.449999999999895,-0.579310344827644,0.442857142857063,-0.579310344827643,0.457142857142737,-0.572413793103525,0.449999999999904,-0.014285714285672,-0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285676,-0.000000000000000,2 -1840,1853,1855,1868,-0.586206896551762,0.464285714285568,-0.579310344827643,0.457142857142737,-0.579310344827643,0.471428571428411,-0.572413793103525,0.464285714285580,-0.014285714285672,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285676,0.000000000000000,2 -1841,1854,1856,1869,-0.586206896551762,0.478571428571240,-0.579310344827643,0.471428571428411,-0.579310344827643,0.485714285714085,-0.572413793103525,0.478571428571255,-0.014285714285672,0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285675,0.000000000000000,2 -1842,1855,1857,1870,-0.586206896551762,0.492857142856928,-0.579310344827643,0.485714285714085,-0.579310344827643,0.499999999999789,-0.572413793103525,0.492857142856945,-0.014285714285703,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285705,0.000000000000000,2 -1843,1856,1858,1871,-0.586206896551762,0.507142857142641,-0.579310344827643,0.499999999999789,-0.579310344827643,0.514285714285510,-0.572413793103525,0.507142857142657,-0.014285714285723,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285719,0.000000000000000,2 -1844,1857,1859,1872,-0.586206896551762,0.521428571428379,-0.579310344827643,0.514285714285510,-0.579310344827643,0.528571428571260,-0.572413793103525,0.521428571428391,-0.014285714285753,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285748,0.000000000000000,2 -1845,1858,1860,1873,-0.586206896551762,0.535714285714129,-0.579310344827643,0.528571428571260,-0.579310344827643,0.542857142857006,-0.572413793103525,0.535714285714137,-0.014285714285747,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285745,0.000000000000000,2 -1846,1859,1861,1874,-0.586206896551762,0.549999999999880,-0.579310344827643,0.542857142857006,-0.579310344827643,0.557142857142759,-0.572413793103525,0.549999999999885,-0.014285714285753,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285751,0.000000000000000,2 -1847,1860,1862,1875,-0.586206896551762,0.564285714285633,-0.579310344827643,0.557142857142759,-0.579310344827643,0.571428571428511,-0.572413793103525,0.564285714285636,-0.014285714285754,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285751,0.000000000000000,2 -1848,1861,1863,1876,-0.586206896551762,0.578571428571386,-0.579310344827643,0.571428571428511,-0.579310344827643,0.585714285714262,-0.572413793103525,0.578571428571386,-0.014285714285752,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285751,0.000000000000000,2 -1668,1849,1862,1877,-0.579310344827643,0.600000000000000,-0.586206896551762,0.592857142857131,-0.579310344827643,0.585714285714262,-0.572413793103525,0.592857142857131,0.000000000000000,0.013793103448238,-0.014285714285738,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285738,-0.000000000000000,2 -1850,1865,1878,3834,-0.572413793103525,0.407142857142838,-0.565517241379406,0.414285714285677,-0.558620689655287,0.407142857142839,-0.565517241379406,0.400000000000000,-0.014285714285675,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285678,0.000000000000000,-0.000000000000000,-0.013793103448238,2 -1851,1864,1866,1879,-0.572413793103524,0.421428571428533,-0.565517241379406,0.414285714285677,-0.565517241379406,0.428571428571393,-0.558620689655287,0.421428571428537,-0.014285714285716,0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448237,0.014285714285717,0.000000000000000,2 -1852,1865,1867,1880,-0.572413793103525,0.435714285714229,-0.565517241379406,0.428571428571393,-0.565517241379406,0.442857142857070,-0.558620689655287,0.435714285714234,-0.014285714285676,-0.000000000000000,0.000000000000004,-0.013793103448237,-0.000000000000007,0.013793103448238,0.014285714285679,-0.000000000000000,2 -1853,1866,1868,1881,-0.572413793103525,0.449999999999904,-0.565517241379406,0.442857142857070,-0.565517241379406,0.457142857142748,-0.558620689655287,0.449999999999913,-0.014285714285676,0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285679,0.000000000000000,2 -1854,1867,1869,1882,-0.572413793103525,0.464285714285580,-0.565517241379406,0.457142857142748,-0.565517241379406,0.471428571428425,-0.558620689655287,0.464285714285592,-0.014285714285676,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285679,0.000000000000000,2 -1855,1868,1870,1883,-0.572413793103525,0.478571428571255,-0.565517241379406,0.471428571428425,-0.565517241379406,0.485714285714101,-0.558620689655287,0.478571428571271,-0.014285714285675,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285678,-0.000000000000000,2 -1856,1869,1871,1884,-0.572413793103525,0.492857142856945,-0.565517241379406,0.485714285714101,-0.565517241379406,0.499999999999807,-0.558620689655287,0.492857142856963,-0.014285714285705,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285706,0.000000000000000,2 -1857,1870,1872,1885,-0.572413793103525,0.507142857142657,-0.565517241379406,0.499999999999807,-0.565517241379406,0.514285714285524,-0.558620689655287,0.507142857142674,-0.014285714285719,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285715,0.000000000000000,2 -1858,1871,1873,1886,-0.572413793103525,0.521428571428391,-0.565517241379406,0.514285714285524,-0.565517241379406,0.528571428571269,-0.558620689655287,0.521428571428403,-0.014285714285748,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285742,0.000000000000000,2 -1859,1872,1874,1887,-0.572413793103525,0.535714285714137,-0.565517241379406,0.528571428571269,-0.565517241379406,0.542857142857013,-0.558620689655287,0.535714285714145,-0.014285714285745,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285743,-0.000000000000000,2 -1860,1873,1875,1888,-0.572413793103525,0.549999999999885,-0.565517241379406,0.542857142857013,-0.565517241379406,0.557142857142762,-0.558620689655287,0.549999999999890,-0.014285714285751,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285748,0.000000000000000,2 -1861,1874,1876,1889,-0.572413793103525,0.564285714285636,-0.565517241379406,0.557142857142762,-0.565517241379406,0.571428571428512,-0.558620689655287,0.564285714285638,-0.014285714285751,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285748,0.000000000000000,2 -1862,1875,1877,1890,-0.572413793103525,0.578571428571386,-0.565517241379406,0.571428571428512,-0.565517241379406,0.585714285714261,-0.558620689655287,0.578571428571387,-0.014285714285751,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285749,0.000000000000000,2 -1674,1863,1876,1891,-0.565517241379406,0.600000000000000,-0.572413793103525,0.592857142857131,-0.565517241379406,0.585714285714261,-0.558620689655287,0.592857142857131,0.000000000000000,0.013793103448238,-0.014285714285738,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285739,-0.000000000000000,2 -1864,1879,1892,3775,-0.558620689655287,0.407142857142839,-0.551724137931168,0.414285714285680,-0.544827586207049,0.407142857142841,-0.551724137931168,0.400000000000000,-0.014285714285678,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285681,0.000000000000000,-0.000000000000000,-0.013793103448238,2 -1865,1878,1880,1893,-0.558620689655287,0.421428571428537,-0.551724137931168,0.414285714285680,-0.551724137931168,0.428571428571397,-0.544827586207049,0.421428571428540,-0.014285714285717,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285718,0.000000000000000,2 -1866,1879,1881,1894,-0.558620689655287,0.435714285714234,-0.551724137931168,0.428571428571397,-0.551724137931168,0.442857142857078,-0.544827586207049,0.435714285714241,-0.014285714285679,0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000008,0.013793103448238,0.014285714285682,-0.000000000000000,2 -1867,1880,1882,1895,-0.558620689655287,0.449999999999913,-0.551724137931168,0.442857142857078,-0.551724137931168,0.457142857142758,-0.544827586207049,0.449999999999923,-0.014285714285679,-0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285682,0.000000000000000,2 -1868,1881,1883,1896,-0.558620689655287,0.464285714285592,-0.551724137931168,0.457142857142758,-0.551724137931168,0.471428571428439,-0.544827586207049,0.464285714285605,-0.014285714285679,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285682,0.000000000000000,2 -1869,1882,1884,1897,-0.558620689655287,0.478571428571271,-0.551724137931168,0.471428571428439,-0.551724137931168,0.485714285714118,-0.544827586207049,0.478571428571286,-0.014285714285678,0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285681,0.000000000000000,2 -1870,1883,1885,1898,-0.558620689655287,0.492857142856963,-0.551724137931168,0.485714285714118,-0.551724137931168,0.499999999999825,-0.544827586207049,0.492857142856981,-0.014285714285706,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285708,0.000000000000000,2 -1871,1884,1886,1899,-0.558620689655287,0.507142857142674,-0.551724137931168,0.499999999999825,-0.551724137931168,0.514285714285539,-0.544827586207049,0.507142857142690,-0.014285714285715,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285712,0.000000000000000,2 -1872,1885,1887,1900,-0.558620689655287,0.521428571428403,-0.551724137931168,0.514285714285539,-0.551724137931168,0.528571428571278,-0.544827586207049,0.521428571428414,-0.014285714285742,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285736,0.000000000000000,2 -1873,1886,1888,1901,-0.558620689655287,0.535714285714145,-0.551724137931168,0.528571428571278,-0.551724137931168,0.542857142857019,-0.544827586207049,0.535714285714153,-0.014285714285743,0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285740,0.000000000000000,2 -1874,1887,1889,1902,-0.558620689655287,0.549999999999890,-0.551724137931168,0.542857142857019,-0.551724137931168,0.557142857142766,-0.544827586207049,0.549999999999895,-0.014285714285748,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285745,0.000000000000000,2 -1875,1888,1890,1903,-0.558620689655287,0.564285714285638,-0.551724137931168,0.557142857142766,-0.551724137931168,0.571428571428513,-0.544827586207049,0.564285714285641,-0.014285714285748,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285745,0.000000000000000,2 -1876,1889,1891,1904,-0.558620689655287,0.578571428571387,-0.551724137931168,0.571428571428513,-0.551724137931168,0.585714285714261,-0.544827586207049,0.578571428571387,-0.014285714285749,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285748,0.000000000000000,2 -1680,1877,1890,1905,-0.551724137931168,0.600000000000000,-0.558620689655287,0.592857142857131,-0.551724137931168,0.585714285714261,-0.544827586207049,0.592857142857131,0.000000000000000,0.013793103448238,-0.014285714285739,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285739,-0.000000000000000,2 -1878,1893,1906,3716,-0.544827586207049,0.407142857142841,-0.537931034482930,0.414285714285683,-0.531034482758811,0.407142857142842,-0.537931034482930,0.400000000000000,-0.014285714285681,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285684,-0.000000000000000,-0.000000000000000,-0.013793103448238,2 -1879,1892,1894,1907,-0.544827586207049,0.421428571428540,-0.537931034482930,0.414285714285683,-0.537931034482930,0.428571428571402,-0.531034482758811,0.421428571428544,-0.014285714285718,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285720,0.000000000000000,2 -1880,1893,1895,1908,-0.544827586207049,0.435714285714241,-0.537931034482930,0.428571428571402,-0.537931034482930,0.442857142857085,-0.531034482758811,0.435714285714246,-0.014285714285682,0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000007,0.013793103448238,0.014285714285685,0.000000000000000,2 -1881,1894,1896,1909,-0.544827586207049,0.449999999999923,-0.537931034482930,0.442857142857085,-0.537931034482930,0.457142857142769,-0.531034482758811,0.449999999999932,-0.014285714285682,-0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285686,0.000000000000000,2 -1882,1895,1897,1910,-0.544827586207049,0.464285714285605,-0.537931034482930,0.457142857142769,-0.537931034482930,0.471428571428453,-0.531034482758811,0.464285714285617,-0.014285714285682,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285685,0.000000000000000,2 -1883,1896,1898,1911,-0.544827586207049,0.478571428571286,-0.537931034482930,0.471428571428453,-0.537931034482930,0.485714285714135,-0.531034482758811,0.478571428571302,-0.014285714285681,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285684,0.000000000000000,2 -1884,1897,1899,1912,-0.544827586207049,0.492857142856981,-0.537931034482930,0.485714285714135,-0.537931034482930,0.499999999999844,-0.531034482758811,0.492857142856998,-0.014285714285708,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285709,0.000000000000000,2 -1885,1898,1900,1913,-0.544827586207049,0.507142857142690,-0.537931034482930,0.499999999999844,-0.537931034482930,0.514285714285553,-0.531034482758811,0.507142857142707,-0.014285714285712,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285708,0.000000000000000,2 -1886,1899,1901,1914,-0.544827586207049,0.521428571428414,-0.537931034482930,0.514285714285553,-0.537931034482930,0.528571428571287,-0.531034482758811,0.521428571428426,-0.014285714285736,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285731,-0.000000000000000,2 -1887,1900,1902,1915,-0.544827586207049,0.535714285714153,-0.537931034482930,0.528571428571287,-0.537931034482930,0.542857142857026,-0.531034482758811,0.535714285714160,-0.014285714285740,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285738,0.000000000000000,2 -1888,1901,1903,1916,-0.544827586207049,0.549999999999895,-0.537931034482930,0.542857142857026,-0.537931034482930,0.557142857142770,-0.531034482758811,0.549999999999900,-0.014285714285745,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000003,0.013793103448238,0.014285714285742,-0.000000000000000,2 -1889,1902,1904,1917,-0.544827586207049,0.564285714285641,-0.537931034482930,0.557142857142770,-0.537931034482930,0.571428571428514,-0.531034482758811,0.564285714285643,-0.014285714285745,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285743,0.000000000000000,2 -1890,1903,1905,1918,-0.544827586207049,0.578571428571387,-0.537931034482930,0.571428571428514,-0.537931034482930,0.585714285714261,-0.531034482758811,0.578571428571387,-0.014285714285748,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285747,0.000000000000000,2 -1686,1891,1904,1919,-0.537931034482930,0.600000000000000,-0.544827586207049,0.592857142857131,-0.537931034482930,0.585714285714261,-0.531034482758811,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285739,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285739,-0.000000000000000,2 -1892,1907,1920,3657,-0.531034482758811,0.407142857142842,-0.524137931034693,0.414285714285686,-0.517241379310574,0.407142857142844,-0.524137931034693,0.400000000000000,-0.014285714285684,0.000000000000000,-0.000000000000003,0.013793103448237,0.014285714285687,0.000000000000000,-0.000000000000000,-0.013793103448238,2 -1893,1906,1908,1921,-0.531034482758811,0.421428571428544,-0.524137931034693,0.414285714285686,-0.524137931034693,0.428571428571406,-0.517241379310574,0.421428571428548,-0.014285714285720,-0.000000000000000,0.000000000000003,-0.013793103448237,-0.000000000000004,0.013793103448238,0.014285714285721,0.000000000000000,2 -1894,1907,1909,1922,-0.531034482758811,0.435714285714246,-0.524137931034693,0.428571428571406,-0.524137931034693,0.442857142857093,-0.517241379310574,0.435714285714252,-0.014285714285685,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000008,0.013793103448238,0.014285714285688,0.000000000000000,2 -1895,1908,1910,1923,-0.531034482758811,0.449999999999932,-0.524137931034693,0.442857142857093,-0.524137931034693,0.457142857142780,-0.517241379310574,0.449999999999941,-0.014285714285686,-0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285689,0.000000000000000,2 -1896,1909,1911,1924,-0.531034482758811,0.464285714285617,-0.524137931034693,0.457142857142780,-0.524137931034693,0.471428571428467,-0.517241379310574,0.464285714285629,-0.014285714285685,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285688,0.000000000000000,2 -1897,1910,1912,1925,-0.531034482758811,0.478571428571302,-0.524137931034693,0.471428571428467,-0.524137931034693,0.485714285714152,-0.517241379310574,0.478571428571317,-0.014285714285684,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285687,-0.000000000000000,2 -1898,1911,1913,1926,-0.531034482758811,0.492857142856998,-0.524137931034693,0.485714285714152,-0.524137931034693,0.499999999999862,-0.517241379310574,0.492857142857016,-0.014285714285709,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285711,0.000000000000000,2 -1899,1912,1914,1927,-0.531034482758811,0.507142857142707,-0.524137931034693,0.499999999999862,-0.524137931034693,0.514285714285568,-0.517241379310574,0.507142857142723,-0.014285714285708,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285704,0.000000000000000,2 -1900,1913,1915,1928,-0.531034482758811,0.521428571428426,-0.524137931034693,0.514285714285568,-0.524137931034693,0.528571428571296,-0.517241379310574,0.521428571428438,-0.014285714285731,0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285725,-0.000000000000000,2 -1901,1914,1916,1929,-0.531034482758811,0.535714285714160,-0.524137931034693,0.528571428571296,-0.524137931034693,0.542857142857032,-0.517241379310574,0.535714285714168,-0.014285714285738,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285735,0.000000000000000,2 -1902,1915,1917,1930,-0.531034482758811,0.549999999999900,-0.524137931034693,0.542857142857032,-0.524137931034693,0.557142857142773,-0.517241379310574,0.549999999999905,-0.014285714285742,0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285740,0.000000000000000,2 -1903,1916,1918,1931,-0.531034482758811,0.564285714285643,-0.524137931034693,0.557142857142773,-0.524137931034693,0.571428571428514,-0.517241379310574,0.564285714285645,-0.014285714285743,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285740,0.000000000000000,2 -1904,1917,1919,1932,-0.531034482758811,0.578571428571387,-0.524137931034693,0.571428571428514,-0.524137931034693,0.585714285714261,-0.517241379310574,0.578571428571388,-0.014285714285747,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285746,0.000000000000000,2 -1692,1905,1918,1933,-0.524137931034693,0.600000000000000,-0.531034482758811,0.592857142857130,-0.524137931034693,0.585714285714261,-0.517241379310574,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285739,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285740,-0.000000000000000,2 -1906,1921,1934,3598,-0.517241379310574,0.407142857142844,-0.510344827586455,0.414285714285689,-0.503448275862336,0.407142857142845,-0.510344827586455,0.400000000000000,-0.014285714285687,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285690,0.000000000000000,-0.000000000000000,-0.013793103448238,2 -1907,1920,1922,1935,-0.517241379310574,0.421428571428548,-0.510344827586455,0.414285714285689,-0.510344827586455,0.428571428571410,-0.503448275862336,0.421428571428551,-0.014285714285721,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285722,0.000000000000000,2 -1908,1921,1923,1936,-0.517241379310574,0.435714285714252,-0.510344827586455,0.428571428571410,-0.510344827586455,0.442857142857100,-0.503448275862336,0.435714285714258,-0.014285714285688,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000007,0.013793103448238,0.014285714285691,0.000000000000000,2 -1909,1922,1924,1937,-0.517241379310574,0.449999999999941,-0.510344827586455,0.442857142857100,-0.510344827586455,0.457142857142791,-0.503448275862336,0.449999999999950,-0.014285714285689,-0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285692,-0.000000000000000,2 -1910,1923,1925,1938,-0.517241379310574,0.464285714285629,-0.510344827586455,0.457142857142791,-0.510344827586455,0.471428571428481,-0.503448275862336,0.464285714285642,-0.014285714285688,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285691,0.000000000000000,2 -1911,1924,1926,1939,-0.517241379310574,0.478571428571317,-0.510344827586455,0.471428571428481,-0.510344827586455,0.485714285714169,-0.503448275862336,0.478571428571332,-0.014285714285687,0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285690,-0.000000000000000,2 -1912,1925,1927,1940,-0.517241379310574,0.492857142857016,-0.510344827586455,0.485714285714169,-0.510344827586455,0.499999999999880,-0.503448275862336,0.492857142857033,-0.014285714285711,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285712,0.000000000000000,2 -1913,1926,1928,1941,-0.517241379310574,0.507142857142723,-0.510344827586455,0.499999999999880,-0.510344827586455,0.514285714285583,-0.503448275862336,0.507142857142740,-0.014285714285704,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285701,0.000000000000000,2 -1914,1927,1929,1942,-0.517241379310574,0.521428571428438,-0.510344827586455,0.514285714285583,-0.510344827586455,0.528571428571305,-0.503448275862336,0.521428571428450,-0.014285714285725,0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285719,0.000000000000000,2 -1915,1928,1930,1943,-0.517241379310574,0.535714285714168,-0.510344827586455,0.528571428571305,-0.510344827586455,0.542857142857039,-0.503448275862336,0.535714285714176,-0.014285714285735,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285732,0.000000000000000,2 -1916,1929,1931,1944,-0.517241379310574,0.549999999999905,-0.510344827586455,0.542857142857039,-0.510344827586455,0.557142857142777,-0.503448275862336,0.549999999999910,-0.014285714285740,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285737,0.000000000000000,2 -1917,1930,1932,1945,-0.517241379310574,0.564285714285645,-0.510344827586455,0.557142857142777,-0.510344827586455,0.571428571428515,-0.503448275862336,0.564285714285647,-0.014285714285740,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285737,0.000000000000000,2 -1918,1931,1933,1946,-0.517241379310574,0.578571428571388,-0.510344827586455,0.571428571428515,-0.510344827586455,0.585714285714261,-0.503448275862336,0.578571428571388,-0.014285714285746,-0.000000000000000,0.000000000000001,-0.013793103448238,-0.000000000000000,0.013793103448238,0.014285714285745,0.000000000000000,2 -1698,1919,1932,1947,-0.510344827586455,0.600000000000000,-0.517241379310574,0.592857142857130,-0.510344827586455,0.585714285714261,-0.503448275862336,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285740,0.000000000000000,0.000000000000000,-0.013793103448238,0.014285714285739,-0.000000000000000,2 -1920,1935,1948,3539,-0.503448275862336,0.407142857142845,-0.496551724138217,0.414285714285692,-0.489655172414098,0.407142857142847,-0.496551724138217,0.400000000000000,-0.014285714285690,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285693,-0.000000000000000,-0.000000000000000,-0.013793103448238,2 -1921,1934,1936,1949,-0.503448275862336,0.421428571428551,-0.496551724138217,0.414285714285692,-0.496551724138217,0.428571428571415,-0.489655172414098,0.421428571428555,-0.014285714285722,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285724,0.000000000000000,2 -1922,1935,1937,1950,-0.503448275862336,0.435714285714258,-0.496551724138217,0.428571428571415,-0.496551724138217,0.442857142857108,-0.489655172414098,0.435714285714264,-0.014285714285691,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000007,0.013793103448238,0.014285714285695,0.000000000000000,2 -1923,1936,1938,1951,-0.503448275862336,0.449999999999950,-0.496551724138217,0.442857142857108,-0.496551724138217,0.457142857142801,-0.489655172414098,0.449999999999959,-0.014285714285692,0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285695,-0.000000000000000,2 -1924,1937,1939,1952,-0.503448275862336,0.464285714285642,-0.496551724138217,0.457142857142801,-0.496551724138217,0.471428571428494,-0.489655172414098,0.464285714285654,-0.014285714285691,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285695,0.000000000000000,2 -1925,1938,1940,1953,-0.503448275862336,0.478571428571332,-0.496551724138217,0.471428571428494,-0.496551724138217,0.485714285714186,-0.489655172414098,0.478571428571348,-0.014285714285690,0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285693,0.000000000000000,2 -1926,1939,1941,1954,-0.503448275862336,0.492857142857033,-0.496551724138217,0.485714285714186,-0.496551724138217,0.499999999999899,-0.489655172414098,0.492857142857051,-0.014285714285712,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285713,0.000000000000000,2 -1927,1940,1942,1955,-0.503448275862336,0.507142857142740,-0.496551724138217,0.499999999999899,-0.496551724138217,0.514285714285597,-0.489655172414098,0.507142857142756,-0.014285714285701,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285697,0.000000000000000,2 -1928,1941,1943,1956,-0.503448275862336,0.521428571428450,-0.496551724138217,0.514285714285597,-0.496551724138217,0.528571428571314,-0.489655172414098,0.521428571428462,-0.014285714285719,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285714,0.000000000000000,2 -1929,1942,1944,1957,-0.503448275862336,0.535714285714176,-0.496551724138217,0.528571428571314,-0.496551724138217,0.542857142857045,-0.489655172414098,0.535714285714183,-0.014285714285732,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285730,0.000000000000000,2 -1930,1943,1945,1958,-0.503448275862336,0.549999999999910,-0.496551724138217,0.542857142857045,-0.496551724138217,0.557142857142781,-0.489655172414098,0.549999999999915,-0.014285714285737,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285734,0.000000000000000,2 -1931,1944,1946,1959,-0.503448275862336,0.564285714285647,-0.496551724138217,0.557142857142781,-0.496551724138217,0.571428571428516,-0.489655172414098,0.564285714285650,-0.014285714285737,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285734,-0.000000000000000,2 -1932,1945,1947,1960,-0.503448275862336,0.578571428571388,-0.496551724138217,0.571428571428516,-0.496551724138217,0.585714285714260,-0.489655172414098,0.578571428571389,-0.014285714285745,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285743,0.000000000000000,2 -1704,1933,1946,1961,-0.496551724138217,0.600000000000000,-0.503448275862336,0.592857142857130,-0.496551724138217,0.585714285714260,-0.489655172414098,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285739,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285740,-0.000000000000000,2 -1934,1949,1962,3480,-0.489655172414098,0.407142857142847,-0.482758620689979,0.414285714285695,-0.475862068965861,0.407142857142848,-0.482758620689980,0.400000000000000,-0.014285714285693,0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285696,-0.000000000000000,-0.000000000000000,-0.013793103448238,2 -1935,1948,1950,1963,-0.489655172414098,0.421428571428555,-0.482758620689979,0.414285714285695,-0.482758620689980,0.428571428571419,-0.475862068965861,0.421428571428559,-0.014285714285724,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285725,0.000000000000000,2 -1936,1949,1951,1964,-0.489655172414098,0.435714285714264,-0.482758620689980,0.428571428571419,-0.482758620689980,0.442857142857115,-0.475862068965861,0.435714285714270,-0.014285714285695,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000008,0.013793103448238,0.014285714285698,0.000000000000000,2 -1937,1950,1952,1965,-0.489655172414098,0.449999999999959,-0.482758620689980,0.442857142857115,-0.482758620689979,0.457142857142812,-0.475862068965861,0.449999999999968,-0.014285714285695,0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285699,-0.000000000000000,2 -1938,1951,1953,1966,-0.489655172414098,0.464285714285654,-0.482758620689979,0.457142857142812,-0.482758620689980,0.471428571428508,-0.475862068965861,0.464285714285667,-0.014285714285695,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285698,0.000000000000000,2 -1939,1952,1954,1967,-0.489655172414098,0.478571428571348,-0.482758620689980,0.471428571428508,-0.482758620689980,0.485714285714203,-0.475862068965861,0.478571428571363,-0.014285714285693,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285696,0.000000000000000,2 -1940,1953,1955,1968,-0.489655172414098,0.492857142857051,-0.482758620689980,0.485714285714203,-0.482758620689980,0.499999999999917,-0.475862068965861,0.492857142857069,-0.014285714285713,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285715,0.000000000000000,2 -1941,1954,1956,1969,-0.489655172414098,0.507142857142756,-0.482758620689980,0.499999999999917,-0.482758620689980,0.514285714285612,-0.475862068965861,0.507142857142773,-0.014285714285697,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285693,0.000000000000000,2 -1942,1955,1957,1970,-0.489655172414098,0.521428571428462,-0.482758620689980,0.514285714285612,-0.482758620689980,0.528571428571323,-0.475862068965861,0.521428571428473,-0.014285714285714,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285708,0.000000000000000,2 -1943,1956,1958,1971,-0.489655172414098,0.535714285714183,-0.482758620689980,0.528571428571323,-0.482758620689980,0.542857142857051,-0.475862068965861,0.535714285714191,-0.014285714285730,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285727,0.000000000000000,2 -1944,1957,1959,1972,-0.489655172414098,0.549999999999915,-0.482758620689980,0.542857142857051,-0.482758620689980,0.557142857142784,-0.475862068965861,0.549999999999920,-0.014285714285734,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285732,0.000000000000000,2 -1945,1958,1960,1973,-0.489655172414098,0.564285714285650,-0.482758620689980,0.557142857142784,-0.482758620689979,0.571428571428517,-0.475862068965861,0.564285714285652,-0.014285714285734,0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285732,0.000000000000000,2 -1946,1959,1961,1974,-0.489655172414098,0.578571428571389,-0.482758620689979,0.571428571428517,-0.482758620689979,0.585714285714260,-0.475862068965861,0.578571428571389,-0.014285714285743,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285742,-0.000000000000000,2 -1710,1947,1960,1975,-0.482758620689980,0.600000000000000,-0.489655172414098,0.592857142857130,-0.482758620689979,0.585714285714260,-0.475862068965861,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285740,0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285740,0.000000000000000,2 -1948,1963,1976,3421,-0.475862068965861,0.407142857142848,-0.468965517241742,0.414285714285698,-0.462068965517623,0.407142857142850,-0.468965517241742,0.400000000000000,-0.014285714285696,0.000000000000000,-0.000000000000003,0.013793103448237,0.014285714285699,0.000000000000000,-0.000000000000000,-0.013793103448238,2 -1949,1962,1964,1977,-0.475862068965861,0.421428571428559,-0.468965517241742,0.414285714285698,-0.468965517241742,0.428571428571424,-0.462068965517623,0.421428571428562,-0.014285714285725,-0.000000000000000,0.000000000000003,-0.013793103448237,-0.000000000000005,0.013793103448238,0.014285714285727,-0.000000000000000,2 -1950,1963,1965,1978,-0.475862068965861,0.435714285714270,-0.468965517241742,0.428571428571424,-0.468965517241742,0.442857142857123,-0.462068965517623,0.435714285714276,-0.014285714285698,-0.000000000000000,0.000000000000005,-0.013793103448238,-0.000000000000008,0.013793103448238,0.014285714285701,0.000000000000000,2 -1951,1964,1966,1979,-0.475862068965861,0.449999999999968,-0.468965517241742,0.442857142857123,-0.468965517241742,0.457142857142823,-0.462068965517623,0.449999999999978,-0.014285714285699,0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285702,0.000000000000000,2 -1952,1965,1967,1980,-0.475862068965861,0.464285714285667,-0.468965517241742,0.457142857142823,-0.468965517241742,0.471428571428522,-0.462068965517623,0.464285714285679,-0.014285714285698,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285701,-0.000000000000000,2 -1953,1966,1968,1981,-0.475862068965861,0.478571428571363,-0.468965517241742,0.471428571428522,-0.468965517241742,0.485714285714220,-0.462068965517623,0.478571428571379,-0.014285714285696,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285699,0.000000000000000,2 -1954,1967,1969,1982,-0.475862068965861,0.492857142857069,-0.468965517241742,0.485714285714220,-0.468965517241742,0.499999999999935,-0.462068965517623,0.492857142857086,-0.014285714285715,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285717,0.000000000000000,2 -1955,1968,1970,1983,-0.475862068965861,0.507142857142773,-0.468965517241742,0.499999999999935,-0.468965517241742,0.514285714285627,-0.462068965517623,0.507142857142789,-0.014285714285693,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285689,0.000000000000000,2 -1956,1969,1971,1984,-0.475862068965861,0.521428571428473,-0.468965517241742,0.514285714285627,-0.468965517241742,0.528571428571332,-0.462068965517623,0.521428571428485,-0.014285714285708,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285702,-0.000000000000000,2 -1957,1970,1972,1985,-0.475862068965861,0.535714285714191,-0.468965517241742,0.528571428571332,-0.468965517241742,0.542857142857058,-0.462068965517623,0.535714285714199,-0.014285714285727,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285725,0.000000000000000,2 -1958,1971,1973,1986,-0.475862068965861,0.549999999999920,-0.468965517241742,0.542857142857058,-0.468965517241742,0.557142857142788,-0.462068965517623,0.549999999999925,-0.014285714285732,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285729,0.000000000000000,2 -1959,1972,1974,1987,-0.475862068965861,0.564285714285652,-0.468965517241742,0.557142857142788,-0.468965517241742,0.571428571428518,-0.462068965517623,0.564285714285655,-0.014285714285732,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285729,0.000000000000000,2 -1960,1973,1975,1988,-0.475862068965861,0.578571428571389,-0.468965517241742,0.571428571428518,-0.468965517241742,0.585714285714260,-0.462068965517623,0.578571428571389,-0.014285714285742,0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285741,-0.000000000000000,2 -1716,1961,1974,1989,-0.468965517241742,0.600000000000000,-0.475862068965861,0.592857142857130,-0.468965517241742,0.585714285714260,-0.462068965517623,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285740,-0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285740,0.000000000000000,2 -1962,1977,1990,3362,-0.462068965517623,0.407142857142850,-0.455172413793504,0.414285714285701,-0.448275862069385,0.407142857142851,-0.455172413793504,0.400000000000000,-0.014285714285699,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285702,-0.000000000000000,-0.000000000000000,-0.013793103448238,2 -1963,1976,1978,1991,-0.462068965517623,0.421428571428562,-0.455172413793504,0.414285714285701,-0.455172413793504,0.428571428571428,-0.448275862069385,0.421428571428566,-0.014285714285727,0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285728,0.000000000000000,2 -1964,1977,1979,1992,-0.462068965517623,0.435714285714276,-0.455172413793504,0.428571428571428,-0.455172413793504,0.442857142857130,-0.448275862069385,0.435714285714282,-0.014285714285701,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000007,0.013793103448238,0.014285714285704,-0.000000000000000,2 -1965,1978,1980,1993,-0.462068965517623,0.449999999999978,-0.455172413793504,0.442857142857130,-0.455172413793504,0.457142857142834,-0.448275862069385,0.449999999999987,-0.014285714285702,-0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285705,0.000000000000000,2 -1966,1979,1981,1994,-0.462068965517623,0.464285714285679,-0.455172413793504,0.457142857142834,-0.455172413793504,0.471428571428536,-0.448275862069385,0.464285714285691,-0.014285714285701,0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285704,0.000000000000000,2 -1967,1980,1982,1995,-0.462068965517623,0.478571428571379,-0.455172413793504,0.471428571428536,-0.455172413793504,0.485714285714236,-0.448275862069385,0.478571428571394,-0.014285714285699,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285702,-0.000000000000000,2 -1968,1981,1983,1996,-0.462068965517623,0.492857142857086,-0.455172413793504,0.485714285714236,-0.455172413793504,0.499999999999954,-0.448275862069385,0.492857142857104,-0.014285714285717,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285718,0.000000000000000,2 -1969,1982,1984,1997,-0.462068965517623,0.507142857142789,-0.455172413793504,0.499999999999954,-0.455172413793504,0.514285714285641,-0.448275862069385,0.507142857142806,-0.014285714285689,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285686,0.000000000000000,2 -1970,1983,1985,1998,-0.462068965517623,0.521428571428485,-0.455172413793504,0.514285714285641,-0.455172413793504,0.528571428571341,-0.448275862069385,0.521428571428497,-0.014285714285702,0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285696,0.000000000000000,2 -1971,1984,1986,1999,-0.462068965517623,0.535714285714199,-0.455172413793504,0.528571428571341,-0.455172413793504,0.542857142857064,-0.448275862069385,0.535714285714206,-0.014285714285725,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285722,0.000000000000000,2 -1972,1985,1987,2000,-0.462068965517623,0.549999999999925,-0.455172413793504,0.542857142857064,-0.455172413793504,0.557142857142792,-0.448275862069385,0.549999999999930,-0.014285714285729,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000003,0.013793103448238,0.014285714285726,-0.000000000000000,2 -1973,1986,1988,2001,-0.462068965517623,0.564285714285655,-0.455172413793504,0.557142857142792,-0.455172413793504,0.571428571428519,-0.448275862069385,0.564285714285657,-0.014285714285729,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285726,0.000000000000000,2 -1974,1987,1989,2002,-0.462068965517623,0.578571428571389,-0.455172413793504,0.571428571428519,-0.455172413793504,0.585714285714259,-0.448275862069385,0.578571428571389,-0.014285714285741,0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285739,0.000000000000000,2 -1722,1975,1988,2003,-0.455172413793504,0.600000000000000,-0.462068965517623,0.592857142857130,-0.455172413793504,0.585714285714259,-0.448275862069385,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285740,-0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285741,0.000000000000000,2 -1976,1991,2004,3303,-0.448275862069385,0.407142857142851,-0.441379310345266,0.414285714285704,-0.434482758621148,0.407142857142853,-0.441379310345266,0.400000000000000,-0.014285714285702,0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285705,0.000000000000000,-0.000000000000000,-0.013793103448238,2 -1977,1990,1992,2005,-0.448275862069385,0.421428571428566,-0.441379310345266,0.414285714285704,-0.441379310345266,0.428571428571432,-0.434482758621147,0.421428571428570,-0.014285714285728,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285729,-0.000000000000000,2 -1978,1991,1993,2006,-0.448275862069385,0.435714285714282,-0.441379310345266,0.428571428571432,-0.441379310345266,0.442857142857138,-0.434482758621148,0.435714285714288,-0.014285714285704,0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000008,0.013793103448237,0.014285714285707,0.000000000000000,2 -1979,1992,1994,2007,-0.448275862069385,0.449999999999987,-0.441379310345266,0.442857142857138,-0.441379310345266,0.457142857142845,-0.434482758621148,0.449999999999996,-0.014285714285705,-0.000000000000000,0.000000000000008,-0.013793103448237,-0.000000000000011,0.013793103448238,0.014285714285708,-0.000000000000000,2 -1980,1993,1995,2008,-0.448275862069385,0.464285714285691,-0.441379310345266,0.457142857142845,-0.441379310345266,0.471428571428550,-0.434482758621148,0.464285714285704,-0.014285714285704,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285707,-0.000000000000000,2 -1981,1994,1996,2009,-0.448275862069385,0.478571428571394,-0.441379310345266,0.471428571428550,-0.441379310345266,0.485714285714253,-0.434482758621148,0.478571428571410,-0.014285714285702,0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285705,0.000000000000000,2 -1982,1995,1997,2010,-0.448275862069385,0.492857142857104,-0.441379310345266,0.485714285714253,-0.441379310345266,0.499999999999972,-0.434482758621148,0.492857142857122,-0.014285714285718,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285719,0.000000000000000,2 -1983,1996,1998,2011,-0.448275862069385,0.507142857142806,-0.441379310345266,0.499999999999972,-0.441379310345266,0.514285714285656,-0.434482758621148,0.507142857142822,-0.014285714285686,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285682,0.000000000000000,2 -1984,1997,1999,2012,-0.448275862069385,0.521428571428497,-0.441379310345266,0.514285714285656,-0.441379310345266,0.528571428571350,-0.434482758621148,0.521428571428509,-0.014285714285696,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285691,0.000000000000000,2 -1985,1998,2000,2013,-0.448275862069385,0.535714285714206,-0.441379310345266,0.528571428571350,-0.441379310345266,0.542857142857071,-0.434482758621148,0.535714285714214,-0.014285714285722,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285720,-0.000000000000000,2 -1986,1999,2001,2014,-0.448275862069385,0.549999999999930,-0.441379310345266,0.542857142857071,-0.441379310345266,0.557142857142795,-0.434482758621148,0.549999999999936,-0.014285714285726,0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285724,0.000000000000000,2 -1987,2000,2002,2015,-0.448275862069385,0.564285714285657,-0.441379310345266,0.557142857142795,-0.441379310345266,0.571428571428520,-0.434482758621148,0.564285714285659,-0.014285714285726,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285723,-0.000000000000000,2 -1988,2001,2003,2016,-0.448275862069385,0.578571428571389,-0.441379310345266,0.571428571428520,-0.441379310345266,0.585714285714259,-0.434482758621147,0.578571428571390,-0.014285714285739,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285739,0.000000000000000,2 -1728,1989,2002,2017,-0.441379310345266,0.600000000000000,-0.448275862069385,0.592857142857130,-0.441379310345266,0.585714285714259,-0.434482758621148,0.592857142857130,0.000000000000000,0.013793103448238,-0.014285714285741,-0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285741,0.000000000000000,2 -1990,2005,2018,3244,-0.434482758621148,0.407142857142853,-0.427586206897029,0.414285714285707,-0.420689655172910,0.407142857142854,-0.427586206897029,0.400000000000000,-0.014285714285705,-0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285708,-0.000000000000000,-0.000000000000000,-0.013793103448238,2 -1991,2004,2006,2019,-0.434482758621147,0.421428571428570,-0.427586206897029,0.414285714285707,-0.427586206897029,0.428571428571437,-0.420689655172910,0.421428571428573,-0.014285714285729,0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000004,0.013793103448237,0.014285714285731,0.000000000000000,2 -1992,2005,2007,2020,-0.434482758621148,0.435714285714288,-0.427586206897029,0.428571428571437,-0.427586206897029,0.442857142857145,-0.420689655172910,0.435714285714294,-0.014285714285707,-0.000000000000000,0.000000000000004,-0.013793103448237,-0.000000000000008,0.013793103448238,0.014285714285710,0.000000000000000,2 -1993,2006,2008,2021,-0.434482758621148,0.449999999999996,-0.427586206897029,0.442857142857145,-0.427586206897029,0.457142857142855,-0.420689655172910,0.450000000000005,-0.014285714285708,0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285712,0.000000000000000,2 -1994,2007,2009,2022,-0.434482758621148,0.464285714285704,-0.427586206897029,0.457142857142855,-0.427586206897029,0.471428571428564,-0.420689655172910,0.464285714285716,-0.014285714285707,0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285711,0.000000000000000,2 -1995,2008,2010,2023,-0.434482758621148,0.478571428571410,-0.427586206897029,0.471428571428564,-0.427586206897029,0.485714285714270,-0.420689655172910,0.478571428571425,-0.014285714285705,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285707,0.000000000000000,2 -1996,2009,2011,2024,-0.434482758621148,0.492857142857122,-0.427586206897029,0.485714285714270,-0.427586206897029,0.499999999999990,-0.420689655172910,0.492857142857139,-0.014285714285719,-0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285721,-0.000000000000000,2 -1997,2010,2012,2025,-0.434482758621148,0.507142857142822,-0.427586206897029,0.499999999999990,-0.427586206897029,0.514285714285671,-0.420689655172910,0.507142857142839,-0.014285714285682,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285679,0.000000000000000,2 -1998,2011,2013,2026,-0.434482758621148,0.521428571428509,-0.427586206897029,0.514285714285671,-0.427586206897029,0.528571428571359,-0.420689655172910,0.521428571428521,-0.014285714285691,-0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285685,-0.000000000000000,2 -1999,2012,2014,2027,-0.434482758621148,0.535714285714214,-0.427586206897029,0.528571428571359,-0.427586206897029,0.542857142857077,-0.420689655172910,0.535714285714222,-0.014285714285720,0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000007,0.013793103448238,0.014285714285717,0.000000000000000,2 -2000,2013,2015,2028,-0.434482758621148,0.549999999999936,-0.427586206897029,0.542857142857077,-0.427586206897029,0.557142857142799,-0.420689655172910,0.549999999999941,-0.014285714285724,-0.000000000000000,0.000000000000007,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285721,0.000000000000000,2 -2001,2014,2016,2029,-0.434482758621148,0.564285714285659,-0.427586206897029,0.557142857142799,-0.427586206897029,0.571428571428521,-0.420689655172910,0.564285714285661,-0.014285714285723,0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285721,0.000000000000000,2 -2002,2015,2017,2030,-0.434482758621147,0.578571428571390,-0.427586206897029,0.571428571428521,-0.427586206897029,0.585714285714259,-0.420689655172910,0.578571428571390,-0.014285714285739,-0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285737,-0.000000000000000,2 -1734,2003,2016,2031,-0.427586206897029,0.600000000000000,-0.434482758621148,0.592857142857130,-0.427586206897029,0.585714285714259,-0.420689655172910,0.592857142857129,0.000000000000000,0.013793103448238,-0.014285714285741,-0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285741,0.000000000000000,2 -2004,2019,2032,3185,-0.420689655172910,0.407142857142854,-0.413793103448791,0.414285714285710,-0.406896551724672,0.407142857142856,-0.413793103448791,0.400000000000000,-0.014285714285708,0.000000000000000,-0.000000000000003,0.013793103448238,0.014285714285711,0.000000000000000,-0.000000000000000,-0.013793103448238,2 -2005,2018,2020,2033,-0.420689655172910,0.421428571428573,-0.413793103448791,0.414285714285710,-0.413793103448791,0.428571428571441,-0.406896551724672,0.421428571428577,-0.014285714285731,-0.000000000000000,0.000000000000003,-0.013793103448238,-0.000000000000005,0.013793103448238,0.014285714285732,0.000000000000000,2 -2006,2019,2021,2034,-0.420689655172910,0.435714285714294,-0.413793103448791,0.428571428571441,-0.413793103448791,0.442857142857153,-0.406896551724672,0.435714285714300,-0.014285714285710,-0.000000000000000,0.000000000000005,-0.013793103448238,-0.000000000000008,0.013793103448238,0.014285714285713,0.000000000000000,2 -2007,2020,2022,2035,-0.420689655172910,0.450000000000005,-0.413793103448791,0.442857142857153,-0.413793103448791,0.457142857142866,-0.406896551724672,0.450000000000014,-0.014285714285712,-0.000000000000000,0.000000000000008,-0.013793103448238,-0.000000000000011,0.013793103448238,0.014285714285715,0.000000000000000,2 -2008,2021,2023,2036,-0.420689655172910,0.464285714285716,-0.413793103448791,0.457142857142866,-0.413793103448791,0.471428571428578,-0.406896551724672,0.464285714285728,-0.014285714285711,-0.000000000000000,0.000000000000011,-0.013793103448238,-0.000000000000014,0.013793103448238,0.014285714285713,-0.000000000000000,2 -2009,2022,2024,2037,-0.420689655172910,0.478571428571425,-0.413793103448791,0.471428571428578,-0.413793103448791,0.485714285714287,-0.406896551724672,0.478571428571440,-0.014285714285707,-0.000000000000000,0.000000000000014,-0.013793103448238,-0.000000000000017,0.013793103448238,0.014285714285710,0.000000000000000,2 -2010,2023,2025,2038,-0.420689655172910,0.492857142857139,-0.413793103448791,0.485714285714287,-0.413793103448791,0.500000000000008,-0.406896551724672,0.492857142857157,-0.014285714285721,0.000000000000000,0.000000000000017,-0.013793103448238,-0.000000000000018,0.013793103448238,0.014285714285722,0.000000000000000,2 -2011,2024,2026,2039,-0.420689655172910,0.507142857142839,-0.413793103448791,0.500000000000008,-0.413793103448791,0.514285714285685,-0.406896551724672,0.507142857142855,-0.014285714285679,-0.000000000000000,0.000000000000018,-0.013793103448238,-0.000000000000015,0.013793103448238,0.014285714285675,0.000000000000000,2 -2012,2025,2027,2040,-0.420689655172910,0.521428571428521,-0.413793103448791,0.514285714285685,-0.413793103448791,0.528571428571367,-0.406896551724672,0.521428571428532,-0.014285714285685,0.000000000000000,0.000000000000015,-0.013793103448238,-0.000000000000009,0.013793103448238,0.014285714285679,0.000000000000000,2 -2013,2026,2028,2041,-0.420689655172910,0.535714285714222,-0.413793103448791,0.528571428571367,-0.413793103448791,0.542857142857083,-0.406896551724672,0.535714285714229,-0.014285714285717,-0.000000000000000,0.000000000000009,-0.013793103448238,-0.000000000000006,0.013793103448238,0.014285714285715,0.000000000000000,2 -2014,2027,2029,2042,-0.420689655172910,0.549999999999941,-0.413793103448791,0.542857142857083,-0.413793103448791,0.557142857142803,-0.406896551724672,0.549999999999946,-0.014285714285721,-0.000000000000000,0.000000000000006,-0.013793103448238,-0.000000000000004,0.013793103448238,0.014285714285718,0.000000000000000,2 -2015,2028,2030,2043,-0.420689655172910,0.564285714285661,-0.413793103448791,0.557142857142803,-0.413793103448791,0.571428571428522,-0.406896551724672,0.564285714285664,-0.014285714285721,-0.000000000000000,0.000000000000004,-0.013793103448238,-0.000000000000001,0.013793103448238,0.014285714285718,-0.000000000000000,2 -2016,2029,2031,2044,-0.420689655172910,0.578571428571390,-0.413793103448791,0.571428571428522,-0.413793103448791,0.585714285714259,-0.406896551724672,0.578571428571391,-0.014285714285737,0.000000000000000,0.000000000000001,-0.013793103448238,0.000000000000000,0.013793103448238,0.014285714285736,0.000000000000000,2 -1740,2017,2030,2045,-0.413793103448791,0.600000000000000,-0.420689655172910,0.592857142857129,-0.413793103448791,0.585714285714259,-0.406896551724672,0.592857142857129,0.000000000000000,0.013793103448238,-0.014285714285741,-0.000000000000000,-0.000000000000000,-0.013793103448238,0.014285714285742,-0.000000000000000,2 -2018,2033,2046,3126,-0.406896551724672,0.407142857142856,-0.400000000000540,0.414285714285713,-0.393103448276408,0.407142857142857,-0.400000000000540,0.400000000000000,-0.014285714285711,-0.000000000000000,-0.000000000000003,0.013793103448264,0.014285714285714,0.000000000000000,-0.000000000000000,-0.013793103448264,2 -2019,2032,2034,2047,-0.406896551724672,0.421428571428577,-0.400000000000540,0.414285714285713,-0.400000000000540,0.428571428571445,-0.393103448276408,0.421428571428581,-0.014285714285732,-0.000000000000000,0.000000000000003,-0.013793103448264,-0.000000000000004,0.013793103448264,0.014285714285733,0.000000000000000,2 -2020,2033,2035,2048,-0.406896551724672,0.435714285714300,-0.400000000000540,0.428571428571445,-0.400000000000540,0.442857142857161,-0.393103448276408,0.435714285714306,-0.014285714285713,-0.000000000000000,0.000000000000004,-0.013793103448264,-0.000000000000007,0.013793103448264,0.014285714285717,0.000000000000000,2 -2021,2034,2036,2049,-0.406896551724672,0.450000000000014,-0.400000000000540,0.442857142857161,-0.400000000000540,0.457142857142877,-0.393103448276408,0.450000000000023,-0.014285714285715,-0.000000000000000,0.000000000000007,-0.013793103448264,-0.000000000000011,0.013793103448264,0.014285714285718,-0.000000000000000,2 -2022,2035,2037,2050,-0.406896551724672,0.464285714285728,-0.400000000000540,0.457142857142877,-0.400000000000540,0.471428571428592,-0.393103448276408,0.464285714285741,-0.014285714285713,0.000000000000000,0.000000000000011,-0.013793103448264,-0.000000000000014,0.013793103448264,0.014285714285717,0.000000000000000,2 -2023,2036,2038,2051,-0.406896551724672,0.478571428571440,-0.400000000000540,0.471428571428592,-0.400000000000540,0.485714285714304,-0.393103448276408,0.478571428571456,-0.014285714285710,-0.000000000000000,0.000000000000014,-0.013793103448264,-0.000000000000017,0.013793103448264,0.014285714285713,0.000000000000000,2 -2024,2037,2039,2052,-0.406896551724672,0.492857142857157,-0.400000000000540,0.485714285714304,-0.400000000000540,0.500000000000027,-0.393103448276408,0.492857142857174,-0.014285714285722,-0.000000000000000,0.000000000000017,-0.013793103448264,-0.000000000000018,0.013793103448264,0.014285714285724,0.000000000000000,2 -2025,2038,2040,2053,-0.406896551724672,0.507142857142855,-0.400000000000540,0.500000000000027,-0.400000000000540,0.514285714285700,-0.393103448276408,0.507142857142872,-0.014285714285675,-0.000000000000000,0.000000000000018,-0.013793103448264,-0.000000000000015,0.013793103448264,0.014285714285671,0.000000000000000,2 -2026,2039,2041,2054,-0.406896551724672,0.521428571428532,-0.400000000000540,0.514285714285700,-0.400000000000540,0.528571428571376,-0.393103448276408,0.521428571428544,-0.014285714285679,-0.000000000000000,0.000000000000015,-0.013793103448264,-0.000000000000009,0.013793103448264,0.014285714285673,0.000000000000000,2 -2027,2040,2042,2055,-0.406896551724672,0.535714285714229,-0.400000000000540,0.528571428571376,-0.400000000000540,0.542857142857090,-0.393103448276408,0.535714285714237,-0.014285714285715,-0.000000000000000,0.000000000000009,-0.013793103448264,-0.000000000000006,0.013793103448264,0.014285714285712,0.000000000000000,2 -2028,2041,2043,2056,-0.406896551724672,0.549999999999946,-0.400000000000540,0.542857142857090,-0.400000000000540,0.557142857142807,-0.393103448276408,0.549999999999951,-0.014285714285718,-0.000000000000000,0.000000000000006,-0.013793103448264,-0.000000000000004,0.013793103448264,0.014285714285715,0.000000000000000,2 -2029,2042,2044,2057,-0.406896551724672,0.564285714285664,-0.400000000000540,0.557142857142807,-0.400000000000540,0.571428571428523,-0.393103448276408,0.564285714285666,-0.014285714285718,0.000000000000000,0.000000000000004,-0.013793103448264,-0.000000000000001,0.013793103448264,0.014285714285715,0.000000000000000,2 -2030,2043,2045,2058,-0.406896551724672,0.578571428571391,-0.400000000000540,0.571428571428523,-0.400000000000540,0.585714285714258,-0.393103448276408,0.578571428571391,-0.014285714285736,-0.000000000000000,0.000000000000001,-0.013793103448264,0.000000000000000,0.013793103448264,0.014285714285735,0.000000000000000,2 -1746,2031,2044,2059,-0.400000000000540,0.600000000000000,-0.406896551724672,0.592857142857129,-0.400000000000540,0.585714285714258,-0.393103448276408,0.592857142857129,0.000000000000000,0.013793103448264,-0.014285714285742,0.000000000000000,-0.000000000000000,-0.013793103448264,0.014285714285742,-0.000000000000000,2 -2032,2047,2060,3067,-0.393103448276408,0.407142857142857,-0.386206896552252,0.414285714285716,-0.379310344828097,0.407142857142859,-0.386206896552252,0.400000000000000,-0.014285714285714,-0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448312,2 -2033,2046,2048,2061,-0.393103448276408,0.421428571428581,-0.386206896552252,0.414285714285716,-0.386206896552252,0.428571428571450,-0.379310344828097,0.421428571428585,-0.014285714285733,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285735,0.000000000000000,2 -2034,2047,2049,2062,-0.393103448276408,0.435714285714306,-0.386206896552252,0.428571428571450,-0.386206896552252,0.442857142857168,-0.379310344828097,0.435714285714312,-0.014285714285717,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000008,0.013793103448312,0.014285714285720,0.000000000000000,2 -2035,2048,2050,2063,-0.393103448276408,0.450000000000023,-0.386206896552252,0.442857142857168,-0.386206896552252,0.457142857142888,-0.379310344828097,0.450000000000033,-0.014285714285718,0.000000000000000,0.000000000000008,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285721,0.000000000000000,2 -2036,2049,2051,2064,-0.393103448276408,0.464285714285741,-0.386206896552252,0.457142857142888,-0.386206896552252,0.471428571428606,-0.379310344828097,0.464285714285753,-0.014285714285717,-0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285720,0.000000000000000,2 -2037,2050,2052,2065,-0.393103448276408,0.478571428571456,-0.386206896552252,0.471428571428606,-0.386206896552252,0.485714285714321,-0.379310344828097,0.478571428571471,-0.014285714285713,-0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285716,0.000000000000000,2 -2038,2051,2053,2066,-0.393103448276408,0.492857142857174,-0.386206896552252,0.485714285714321,-0.386206896552252,0.500000000000045,-0.379310344828097,0.492857142857192,-0.014285714285724,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000018,0.013793103448312,0.014285714285725,0.000000000000000,2 -2039,2052,2054,2067,-0.393103448276408,0.507142857142872,-0.386206896552252,0.500000000000045,-0.386206896552252,0.514285714285715,-0.379310344828097,0.507142857142888,-0.014285714285671,-0.000000000000000,0.000000000000018,-0.013793103448312,-0.000000000000015,0.013793103448312,0.014285714285668,0.000000000000000,2 -2040,2053,2055,2068,-0.393103448276408,0.521428571428544,-0.386206896552252,0.514285714285715,-0.386206896552252,0.528571428571385,-0.379310344828097,0.521428571428556,-0.014285714285673,-0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285667,0.000000000000000,2 -2041,2054,2056,2069,-0.393103448276408,0.535714285714237,-0.386206896552252,0.528571428571385,-0.386206896552252,0.542857142857096,-0.379310344828097,0.535714285714245,-0.014285714285712,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285710,0.000000000000000,2 -2042,2055,2057,2070,-0.393103448276408,0.549999999999951,-0.386206896552252,0.542857142857096,-0.386206896552252,0.557142857142810,-0.379310344828097,0.549999999999956,-0.014285714285715,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285713,0.000000000000000,2 -2043,2056,2058,2071,-0.393103448276408,0.564285714285666,-0.386206896552252,0.557142857142810,-0.386206896552252,0.571428571428524,-0.379310344828097,0.564285714285668,-0.014285714285715,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285713,0.000000000000000,2 -2044,2057,2059,2072,-0.393103448276408,0.578571428571391,-0.386206896552252,0.571428571428524,-0.386206896552252,0.585714285714258,-0.379310344828097,0.578571428571391,-0.014285714285735,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285733,0.000000000000000,2 -1752,2045,2058,2073,-0.386206896552252,0.600000000000000,-0.393103448276408,0.592857142857129,-0.386206896552252,0.585714285714258,-0.379310344828097,0.592857142857129,0.000000000000000,0.013793103448312,-0.014285714285742,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285742,-0.000000000000000,2 -2046,2061,2074,3008,-0.379310344828097,0.407142857142859,-0.372413793103935,0.414285714285719,-0.365517241379774,0.407142857142860,-0.372413793103935,0.400000000000000,-0.014285714285717,0.000000000000000,-0.000000000000003,0.013793103448322,0.014285714285720,0.000000000000000,-0.000000000000000,-0.013793103448323,2 -2047,2060,2062,2075,-0.379310344828097,0.421428571428585,-0.372413793103935,0.414285714285719,-0.372413793103935,0.428571428571454,-0.365517241379774,0.421428571428588,-0.014285714285735,-0.000000000000000,0.000000000000003,-0.013793103448322,-0.000000000000005,0.013793103448323,0.014285714285737,0.000000000000000,2 -2048,2061,2063,2076,-0.379310344828097,0.435714285714312,-0.372413793103935,0.428571428571454,-0.372413793103935,0.442857142857176,-0.365517241379774,0.435714285714318,-0.014285714285720,-0.000000000000000,0.000000000000005,-0.013793103448323,-0.000000000000007,0.013793103448323,0.014285714285723,-0.000000000000000,2 -2049,2062,2064,2077,-0.379310344828097,0.450000000000033,-0.372413793103935,0.442857142857176,-0.372413793103935,0.457142857142899,-0.365517241379774,0.450000000000042,-0.014285714285721,-0.000000000000000,0.000000000000007,-0.013793103448323,-0.000000000000011,0.013793103448323,0.014285714285725,0.000000000000000,2 -2050,2063,2065,2078,-0.379310344828097,0.464285714285753,-0.372413793103935,0.457142857142899,-0.372413793103935,0.471428571428620,-0.365517241379774,0.464285714285766,-0.014285714285720,-0.000000000000000,0.000000000000011,-0.013793103448323,-0.000000000000014,0.013793103448323,0.014285714285723,0.000000000000000,2 -2051,2064,2066,2079,-0.379310344828097,0.478571428571471,-0.372413793103935,0.471428571428620,-0.372413793103935,0.485714285714338,-0.365517241379774,0.478571428571487,-0.014285714285716,-0.000000000000000,0.000000000000014,-0.013793103448323,-0.000000000000017,0.013793103448323,0.014285714285719,0.000000000000000,2 -2052,2065,2067,2080,-0.379310344828097,0.492857142857192,-0.372413793103935,0.485714285714338,-0.372413793103935,0.500000000000063,-0.365517241379774,0.492857142857209,-0.014285714285725,-0.000000000000000,0.000000000000017,-0.013793103448323,-0.000000000000018,0.013793103448323,0.014285714285726,0.000000000000000,2 -2053,2066,2068,2081,-0.379310344828097,0.507142857142888,-0.372413793103935,0.500000000000063,-0.372413793103935,0.514285714285729,-0.365517241379774,0.507142857142905,-0.014285714285668,-0.000000000000000,0.000000000000018,-0.013793103448323,-0.000000000000015,0.013793103448323,0.014285714285664,0.000000000000000,2 -2054,2067,2069,2082,-0.379310344828097,0.521428571428556,-0.372413793103935,0.514285714285729,-0.372413793103935,0.528571428571394,-0.365517241379774,0.521428571428568,-0.014285714285667,-0.000000000000000,0.000000000000015,-0.013793103448323,-0.000000000000009,0.013793103448323,0.014285714285662,0.000000000000000,2 -2055,2068,2070,2083,-0.379310344828097,0.535714285714245,-0.372413793103935,0.528571428571394,-0.372413793103935,0.542857142857103,-0.365517241379774,0.535714285714252,-0.014285714285710,-0.000000000000000,0.000000000000009,-0.013793103448323,-0.000000000000006,0.013793103448323,0.014285714285707,0.000000000000000,2 -2056,2069,2071,2084,-0.379310344828097,0.549999999999956,-0.372413793103935,0.542857142857103,-0.372413793103935,0.557142857142814,-0.365517241379774,0.549999999999961,-0.014285714285713,-0.000000000000000,0.000000000000006,-0.013793103448323,-0.000000000000004,0.013793103448323,0.014285714285710,0.000000000000000,2 -2057,2070,2072,2085,-0.379310344828097,0.564285714285668,-0.372413793103935,0.557142857142814,-0.372413793103935,0.571428571428525,-0.365517241379774,0.564285714285671,-0.014285714285713,-0.000000000000000,0.000000000000004,-0.013793103448323,-0.000000000000001,0.013793103448323,0.014285714285710,0.000000000000000,2 -2058,2071,2073,2086,-0.379310344828097,0.578571428571391,-0.372413793103935,0.571428571428525,-0.372413793103935,0.585714285714258,-0.365517241379774,0.578571428571392,-0.014285714285733,-0.000000000000000,0.000000000000001,-0.013793103448323,-0.000000000000000,0.013793103448323,0.014285714285732,0.000000000000000,2 -1758,2059,2072,2087,-0.372413793103935,0.600000000000000,-0.379310344828097,0.592857142857129,-0.372413793103935,0.585714285714258,-0.365517241379774,0.592857142857129,0.000000000000000,0.013793103448323,-0.014285714285742,0.000000000000000,0.000000000000000,-0.013793103448323,0.014285714285742,-0.000000000000000,2 -2060,2075,2088,2949,-0.365517241379774,0.407142857142860,-0.358620689655618,0.414285714285722,-0.351724137931462,0.407142857142862,-0.358620689655618,0.400000000000000,-0.014285714285720,-0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285723,0.000000000000000,-0.000000000000000,-0.013793103448312,2 -2061,2074,2076,2089,-0.365517241379774,0.421428571428588,-0.358620689655618,0.414285714285722,-0.358620689655618,0.428571428571459,-0.351724137931462,0.421428571428592,-0.014285714285737,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285738,0.000000000000000,2 -2062,2075,2077,2090,-0.365517241379774,0.435714285714318,-0.358620689655618,0.428571428571459,-0.358620689655618,0.442857142857183,-0.351724137931462,0.435714285714324,-0.014285714285723,0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000007,0.013793103448312,0.014285714285726,0.000000000000000,2 -2063,2076,2078,2091,-0.365517241379774,0.450000000000042,-0.358620689655618,0.442857142857183,-0.358620689655618,0.457142857142909,-0.351724137931462,0.450000000000051,-0.014285714285725,-0.000000000000000,0.000000000000007,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285728,0.000000000000000,2 -2064,2077,2079,2092,-0.365517241379774,0.464285714285766,-0.358620689655618,0.457142857142909,-0.358620689655618,0.471428571428634,-0.351724137931462,0.464285714285778,-0.014285714285723,-0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285726,0.000000000000000,2 -2065,2078,2080,2093,-0.365517241379774,0.478571428571487,-0.358620689655618,0.471428571428634,-0.358620689655618,0.485714285714355,-0.351724137931462,0.478571428571502,-0.014285714285719,-0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285722,-0.000000000000000,2 -2066,2079,2081,2094,-0.365517241379774,0.492857142857209,-0.358620689655618,0.485714285714355,-0.358620689655618,0.500000000000082,-0.351724137931462,0.492857142857227,-0.014285714285726,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000019,0.013793103448312,0.014285714285728,0.000000000000000,2 -2067,2080,2082,2095,-0.365517241379774,0.507142857142905,-0.358620689655618,0.500000000000082,-0.358620689655618,0.514285714285744,-0.351724137931462,0.507142857142921,-0.014285714285664,-0.000000000000000,0.000000000000019,-0.013793103448312,-0.000000000000015,0.013793103448312,0.014285714285660,-0.000000000000000,2 -2068,2081,2083,2096,-0.365517241379774,0.521428571428568,-0.358620689655618,0.514285714285744,-0.358620689655618,0.528571428571403,-0.351724137931462,0.521428571428579,-0.014285714285662,-0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285656,0.000000000000000,2 -2069,2082,2084,2097,-0.365517241379774,0.535714285714252,-0.358620689655618,0.528571428571403,-0.358620689655618,0.542857142857109,-0.351724137931462,0.535714285714260,-0.014285714285707,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285705,0.000000000000000,2 -2070,2083,2085,2098,-0.365517241379774,0.549999999999961,-0.358620689655618,0.542857142857109,-0.358620689655618,0.557142857142818,-0.351724137931462,0.549999999999966,-0.014285714285710,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285707,0.000000000000000,2 -2071,2084,2086,2099,-0.365517241379774,0.564285714285671,-0.358620689655618,0.557142857142818,-0.358620689655618,0.571428571428526,-0.351724137931462,0.564285714285673,-0.014285714285710,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285707,0.000000000000000,2 -2072,2085,2087,2100,-0.365517241379774,0.578571428571392,-0.358620689655618,0.571428571428526,-0.358620689655618,0.585714285714258,-0.351724137931462,0.578571428571392,-0.014285714285732,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000001,0.013793103448312,0.014285714285731,0.000000000000000,2 -1764,2073,2086,2101,-0.358620689655618,0.600000000000000,-0.365517241379774,0.592857142857129,-0.358620689655618,0.585714285714258,-0.351724137931462,0.592857142857129,0.000000000000000,0.013793103448312,-0.014285714285742,0.000000000000000,-0.000000000000001,-0.013793103448312,0.014285714285743,-0.000000000000000,2 -2074,2089,2102,2890,-0.351724137931462,0.407142857142862,-0.344827586207306,0.414285714285725,-0.337931034483150,0.407142857142863,-0.344827586207306,0.400000000000000,-0.014285714285723,-0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285726,-0.000000000000000,-0.000000000000000,-0.013793103448312,2 -2075,2088,2090,2103,-0.351724137931462,0.421428571428592,-0.344827586207306,0.414285714285725,-0.344827586207306,0.428571428571463,-0.337931034483150,0.421428571428596,-0.014285714285738,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285739,0.000000000000000,2 -2076,2089,2091,2104,-0.351724137931462,0.435714285714324,-0.344827586207306,0.428571428571463,-0.344827586207306,0.442857142857191,-0.337931034483150,0.435714285714330,-0.014285714285726,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000008,0.013793103448312,0.014285714285729,0.000000000000000,2 -2077,2090,2092,2105,-0.351724137931462,0.450000000000051,-0.344827586207306,0.442857142857191,-0.344827586207306,0.457142857142920,-0.337931034483150,0.450000000000060,-0.014285714285728,-0.000000000000000,0.000000000000008,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285731,0.000000000000000,2 -2078,2091,2093,2106,-0.351724137931462,0.464285714285778,-0.344827586207306,0.457142857142920,-0.344827586207306,0.471428571428648,-0.337931034483150,0.464285714285790,-0.014285714285726,-0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285729,-0.000000000000000,2 -2079,2092,2094,2107,-0.351724137931462,0.478571428571502,-0.344827586207306,0.471428571428648,-0.344827586207306,0.485714285714371,-0.337931034483150,0.478571428571517,-0.014285714285722,0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285725,0.000000000000000,2 -2080,2093,2095,2108,-0.351724137931462,0.492857142857227,-0.344827586207306,0.485714285714371,-0.344827586207306,0.500000000000100,-0.337931034483150,0.492857142857245,-0.014285714285728,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000018,0.013793103448312,0.014285714285729,0.000000000000000,2 -2081,2094,2096,2109,-0.351724137931462,0.507142857142921,-0.344827586207306,0.500000000000100,-0.344827586207306,0.514285714285759,-0.337931034483150,0.507142857142938,-0.014285714285660,0.000000000000000,0.000000000000018,-0.013793103448312,-0.000000000000015,0.013793103448312,0.014285714285657,0.000000000000000,2 -2082,2095,2097,2110,-0.351724137931462,0.521428571428579,-0.344827586207306,0.514285714285759,-0.344827586207306,0.528571428571412,-0.337931034483150,0.521428571428591,-0.014285714285656,-0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285651,0.000000000000000,2 -2083,2096,2098,2111,-0.351724137931462,0.535714285714260,-0.344827586207306,0.528571428571412,-0.344827586207306,0.542857142857116,-0.337931034483150,0.535714285714268,-0.014285714285705,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285702,0.000000000000000,2 -2084,2097,2099,2112,-0.351724137931462,0.549999999999966,-0.344827586207306,0.542857142857116,-0.344827586207306,0.557142857142821,-0.337931034483150,0.549999999999971,-0.014285714285707,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000003,0.013793103448312,0.014285714285704,0.000000000000000,2 -2085,2098,2100,2113,-0.351724137931462,0.564285714285673,-0.344827586207306,0.557142857142821,-0.344827586207306,0.571428571428527,-0.337931034483150,0.564285714285675,-0.014285714285707,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285704,0.000000000000000,2 -2086,2099,2101,2114,-0.351724137931462,0.578571428571392,-0.344827586207306,0.571428571428527,-0.344827586207306,0.585714285714257,-0.337931034483150,0.578571428571392,-0.014285714285731,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285730,0.000000000000000,2 -1770,2087,2100,2115,-0.344827586207306,0.600000000000000,-0.351724137931462,0.592857142857129,-0.344827586207306,0.585714285714257,-0.337931034483150,0.592857142857129,0.000000000000000,0.013793103448312,-0.014285714285743,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285743,-0.000000000000000,2 -2088,2103,2116,2831,-0.337931034483150,0.407142857142863,-0.331034482758994,0.414285714285728,-0.324137931034839,0.407142857142865,-0.331034482758994,0.400000000000000,-0.014285714285726,0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285729,0.000000000000000,-0.000000000000000,-0.013793103448312,2 -2089,2102,2104,2117,-0.337931034483150,0.421428571428596,-0.331034482758994,0.414285714285728,-0.331034482758994,0.428571428571467,-0.324137931034839,0.421428571428599,-0.014285714285739,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000005,0.013793103448312,0.014285714285741,-0.000000000000000,2 -2090,2103,2105,2118,-0.337931034483150,0.435714285714330,-0.331034482758994,0.428571428571467,-0.331034482758994,0.442857142857198,-0.324137931034839,0.435714285714336,-0.014285714285729,-0.000000000000000,0.000000000000005,-0.013793103448312,-0.000000000000008,0.013793103448312,0.014285714285732,0.000000000000000,2 -2091,2104,2106,2119,-0.337931034483150,0.450000000000060,-0.331034482758994,0.442857142857198,-0.331034482758994,0.457142857142931,-0.324137931034839,0.450000000000069,-0.014285714285731,-0.000000000000000,0.000000000000008,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285734,0.000000000000000,2 -2092,2105,2107,2120,-0.337931034483150,0.464285714285790,-0.331034482758994,0.457142857142931,-0.331034482758994,0.471428571428662,-0.324137931034839,0.464285714285802,-0.014285714285729,0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285732,0.000000000000000,2 -2093,2106,2108,2121,-0.337931034483150,0.478571428571517,-0.331034482758994,0.471428571428662,-0.331034482758994,0.485714285714388,-0.324137931034839,0.478571428571533,-0.014285714285725,-0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285728,0.000000000000000,2 -2094,2107,2109,2122,-0.337931034483150,0.492857142857245,-0.331034482758994,0.485714285714388,-0.331034482758994,0.500000000000118,-0.324137931034839,0.492857142857262,-0.014285714285729,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000018,0.013793103448312,0.014285714285730,0.000000000000000,2 -2095,2108,2110,2123,-0.337931034483150,0.507142857142938,-0.331034482758994,0.500000000000118,-0.331034482758994,0.514285714285773,-0.324137931034839,0.507142857142954,-0.014285714285657,-0.000000000000000,0.000000000000018,-0.013793103448312,-0.000000000000015,0.013793103448312,0.014285714285653,0.000000000000000,2 -2096,2109,2111,2124,-0.337931034483150,0.521428571428591,-0.331034482758994,0.514285714285773,-0.331034482758994,0.528571428571421,-0.324137931034839,0.521428571428603,-0.014285714285651,-0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285645,0.000000000000000,2 -2097,2110,2112,2125,-0.337931034483150,0.535714285714268,-0.331034482758994,0.528571428571421,-0.331034482758994,0.542857142857122,-0.324137931034839,0.535714285714275,-0.014285714285702,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285699,0.000000000000000,2 -2098,2111,2113,2126,-0.337931034483150,0.549999999999971,-0.331034482758994,0.542857142857122,-0.331034482758994,0.557142857142825,-0.324137931034839,0.549999999999976,-0.014285714285704,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285702,0.000000000000000,2 -2099,2112,2114,2127,-0.337931034483150,0.564285714285675,-0.331034482758994,0.557142857142825,-0.331034482758994,0.571428571428528,-0.324137931034839,0.564285714285678,-0.014285714285704,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285701,0.000000000000000,2 -2100,2113,2115,2128,-0.337931034483150,0.578571428571392,-0.331034482758994,0.571428571428528,-0.331034482758995,0.585714285714257,-0.324137931034839,0.578571428571393,-0.014285714285730,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285729,0.000000000000000,2 -1776,2101,2114,2129,-0.331034482758994,0.600000000000000,-0.337931034483150,0.592857142857129,-0.331034482758995,0.585714285714257,-0.324137931034839,0.592857142857129,0.000000000000000,0.013793103448312,-0.014285714285743,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285743,-0.000000000000000,2 -2102,2117,2130,2772,-0.324137931034839,0.407142857142865,-0.317241379310681,0.414285714285731,-0.310344827586523,0.407142857142866,-0.317241379310681,0.400000000000000,-0.014285714285729,-0.000000000000000,-0.000000000000003,0.013793103448315,0.014285714285732,0.000000000000000,-0.000000000000000,-0.013793103448315,2 -2103,2116,2118,2131,-0.324137931034839,0.421428571428599,-0.317241379310681,0.414285714285731,-0.317241379310681,0.428571428571472,-0.310344827586523,0.421428571428603,-0.014285714285741,0.000000000000000,0.000000000000003,-0.013793103448315,-0.000000000000004,0.013793103448315,0.014285714285742,-0.000000000000000,2 -2104,2117,2119,2132,-0.324137931034839,0.435714285714336,-0.317241379310681,0.428571428571472,-0.317241379310681,0.442857142857206,-0.310344827586523,0.435714285714342,-0.014285714285732,-0.000000000000000,0.000000000000004,-0.013793103448315,-0.000000000000008,0.013793103448315,0.014285714285736,0.000000000000000,2 -2105,2118,2120,2133,-0.324137931034839,0.450000000000069,-0.317241379310681,0.442857142857206,-0.317241379310681,0.457142857142942,-0.310344827586523,0.450000000000078,-0.014285714285734,-0.000000000000000,0.000000000000008,-0.013793103448315,-0.000000000000011,0.013793103448315,0.014285714285738,-0.000000000000000,2 -2106,2119,2121,2134,-0.324137931034839,0.464285714285802,-0.317241379310681,0.457142857142942,-0.317241379310681,0.471428571428676,-0.310344827586523,0.464285714285815,-0.014285714285732,-0.000000000000000,0.000000000000011,-0.013793103448315,-0.000000000000014,0.013793103448315,0.014285714285735,0.000000000000000,2 -2107,2120,2122,2135,-0.324137931034839,0.478571428571533,-0.317241379310681,0.471428571428676,-0.317241379310681,0.485714285714405,-0.310344827586523,0.478571428571548,-0.014285714285728,-0.000000000000000,0.000000000000014,-0.013793103448315,-0.000000000000017,0.013793103448315,0.014285714285731,0.000000000000000,2 -2108,2121,2123,2136,-0.324137931034839,0.492857142857262,-0.317241379310681,0.485714285714405,-0.317241379310681,0.500000000000137,-0.310344827586523,0.492857142857280,-0.014285714285730,-0.000000000000000,0.000000000000017,-0.013793103448315,-0.000000000000018,0.013793103448315,0.014285714285732,-0.000000000000000,2 -2109,2122,2124,2137,-0.324137931034839,0.507142857142954,-0.317241379310681,0.500000000000137,-0.317241379310681,0.514285714285788,-0.310344827586523,0.507142857142971,-0.014285714285653,-0.000000000000000,0.000000000000018,-0.013793103448315,-0.000000000000015,0.013793103448315,0.014285714285649,0.000000000000000,2 -2110,2123,2125,2138,-0.324137931034839,0.521428571428603,-0.317241379310681,0.514285714285788,-0.317241379310681,0.528571428571430,-0.310344827586523,0.521428571428615,-0.014285714285645,-0.000000000000000,0.000000000000015,-0.013793103448315,-0.000000000000009,0.013793103448315,0.014285714285639,0.000000000000000,2 -2111,2124,2126,2139,-0.324137931034839,0.535714285714275,-0.317241379310681,0.528571428571430,-0.317241379310681,0.542857142857128,-0.310344827586523,0.535714285714283,-0.014285714285699,-0.000000000000000,0.000000000000009,-0.013793103448315,-0.000000000000007,0.013793103448315,0.014285714285697,0.000000000000000,2 -2112,2125,2127,2140,-0.324137931034839,0.549999999999976,-0.317241379310681,0.542857142857128,-0.317241379310681,0.557142857142829,-0.310344827586523,0.549999999999981,-0.014285714285702,-0.000000000000000,0.000000000000007,-0.013793103448315,-0.000000000000004,0.013793103448315,0.014285714285699,0.000000000000000,2 -2113,2126,2128,2141,-0.324137931034839,0.564285714285678,-0.317241379310681,0.557142857142829,-0.317241379310681,0.571428571428529,-0.310344827586523,0.564285714285680,-0.014285714285701,-0.000000000000000,0.000000000000004,-0.013793103448315,-0.000000000000001,0.013793103448315,0.014285714285699,0.000000000000000,2 -2114,2127,2129,2142,-0.324137931034839,0.578571428571393,-0.317241379310681,0.571428571428529,-0.317241379310681,0.585714285714257,-0.310344827586523,0.578571428571393,-0.014285714285729,-0.000000000000000,0.000000000000001,-0.013793103448315,0.000000000000001,0.013793103448315,0.014285714285727,0.000000000000000,2 -1782,2115,2128,2143,-0.317241379310681,0.600000000000000,-0.324137931034839,0.592857142857129,-0.317241379310681,0.585714285714257,-0.310344827586523,0.592857142857128,0.000000000000000,0.013793103448315,-0.014285714285743,0.000000000000000,-0.000000000000001,-0.013793103448315,0.014285714285744,-0.000000000000000,2 -2116,2131,2144,2713,-0.310344827586523,0.407142857142866,-0.303448275862364,0.414285714285734,-0.296551724138205,0.407142857142868,-0.303448275862364,0.400000000000000,-0.014285714285732,-0.000000000000000,-0.000000000000003,0.013793103448318,0.014285714285735,0.000000000000000,-0.000000000000000,-0.013793103448318,2 -2117,2130,2132,2145,-0.310344827586523,0.421428571428603,-0.303448275862364,0.414285714285734,-0.303448275862364,0.428571428571476,-0.296551724138205,0.421428571428607,-0.014285714285742,0.000000000000000,0.000000000000003,-0.013793103448318,-0.000000000000004,0.013793103448318,0.014285714285743,0.000000000000000,2 -2118,2131,2133,2146,-0.310344827586523,0.435714285714342,-0.303448275862364,0.428571428571476,-0.303448275862364,0.442857142857213,-0.296551724138205,0.435714285714348,-0.014285714285736,-0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000007,0.013793103448318,0.014285714285739,-0.000000000000000,2 -2119,2132,2134,2147,-0.310344827586523,0.450000000000078,-0.303448275862364,0.442857142857213,-0.303448275862364,0.457142857142953,-0.296551724138205,0.450000000000087,-0.014285714285738,0.000000000000000,0.000000000000007,-0.013793103448318,-0.000000000000011,0.013793103448318,0.014285714285741,-0.000000000000000,2 -2120,2133,2135,2148,-0.310344827586523,0.464285714285815,-0.303448275862364,0.457142857142953,-0.303448275862364,0.471428571428690,-0.296551724138205,0.464285714285827,-0.014285714285735,-0.000000000000000,0.000000000000011,-0.013793103448318,-0.000000000000014,0.013793103448318,0.014285714285739,0.000000000000000,2 -2121,2134,2136,2149,-0.310344827586523,0.478571428571548,-0.303448275862364,0.471428571428690,-0.303448275862364,0.485714285714422,-0.296551724138205,0.478571428571564,-0.014285714285731,-0.000000000000000,0.000000000000014,-0.013793103448318,-0.000000000000017,0.013793103448318,0.014285714285734,-0.000000000000000,2 -2122,2135,2137,2150,-0.310344827586523,0.492857142857280,-0.303448275862364,0.485714285714422,-0.303448275862364,0.500000000000155,-0.296551724138205,0.492857142857297,-0.014285714285732,0.000000000000000,0.000000000000017,-0.013793103448318,-0.000000000000018,0.013793103448318,0.014285714285733,0.000000000000000,2 -2123,2136,2138,2151,-0.310344827586523,0.507142857142971,-0.303448275862364,0.500000000000155,-0.303448275862364,0.514285714285803,-0.296551724138205,0.507142857142987,-0.014285714285649,-0.000000000000000,0.000000000000018,-0.013793103448318,-0.000000000000015,0.013793103448318,0.014285714285646,0.000000000000000,2 -2124,2137,2139,2152,-0.310344827586523,0.521428571428615,-0.303448275862364,0.514285714285803,-0.303448275862364,0.528571428571439,-0.296551724138205,0.521428571428627,-0.014285714285639,-0.000000000000000,0.000000000000015,-0.013793103448318,-0.000000000000009,0.013793103448318,0.014285714285633,0.000000000000000,2 -2125,2138,2140,2153,-0.310344827586523,0.535714285714283,-0.303448275862364,0.528571428571439,-0.303448275862364,0.542857142857135,-0.296551724138205,0.535714285714291,-0.014285714285697,-0.000000000000000,0.000000000000009,-0.013793103448318,-0.000000000000006,0.013793103448318,0.014285714285694,0.000000000000000,2 -2126,2139,2141,2154,-0.310344827586523,0.549999999999981,-0.303448275862364,0.542857142857135,-0.303448275862364,0.557142857142832,-0.296551724138205,0.549999999999986,-0.014285714285699,-0.000000000000000,0.000000000000006,-0.013793103448318,-0.000000000000004,0.013793103448318,0.014285714285696,0.000000000000000,2 -2127,2140,2142,2155,-0.310344827586523,0.564285714285680,-0.303448275862364,0.557142857142832,-0.303448275862364,0.571428571428530,-0.296551724138205,0.564285714285682,-0.014285714285699,-0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000001,0.013793103448318,0.014285714285696,0.000000000000000,2 -2128,2141,2143,2156,-0.310344827586523,0.578571428571393,-0.303448275862364,0.571428571428530,-0.303448275862364,0.585714285714257,-0.296551724138205,0.578571428571393,-0.014285714285727,-0.000000000000000,0.000000000000001,-0.013793103448318,-0.000000000000000,0.013793103448318,0.014285714285726,0.000000000000000,2 -1788,2129,2142,2157,-0.303448275862364,0.600000000000000,-0.310344827586523,0.592857142857128,-0.303448275862364,0.585714285714257,-0.296551724138205,0.592857142857128,0.000000000000000,0.013793103448318,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448318,0.014285714285743,-0.000000000000000,2 -2130,2145,2158,2654,-0.296551724138205,0.407142857142868,-0.289655172414046,0.414285714285737,-0.282758620689887,0.407142857142869,-0.289655172414046,0.400000000000000,-0.014285714285735,-0.000000000000000,-0.000000000000003,0.013793103448318,0.014285714285738,-0.000000000000000,-0.000000000000000,-0.013793103448318,2 -2131,2144,2146,2159,-0.296551724138205,0.421428571428607,-0.289655172414046,0.414285714285737,-0.289655172414046,0.428571428571481,-0.282758620689887,0.421428571428610,-0.014285714285743,-0.000000000000000,0.000000000000003,-0.013793103448318,-0.000000000000004,0.013793103448318,0.014285714285745,0.000000000000000,2 -2132,2145,2147,2160,-0.296551724138205,0.435714285714348,-0.289655172414046,0.428571428571481,-0.289655172414046,0.442857142857221,-0.282758620689887,0.435714285714354,-0.014285714285739,0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000008,0.013793103448318,0.014285714285742,-0.000000000000000,2 -2133,2146,2148,2161,-0.296551724138205,0.450000000000087,-0.289655172414046,0.442857142857221,-0.289655172414046,0.457142857142963,-0.282758620689887,0.450000000000097,-0.014285714285741,0.000000000000000,0.000000000000008,-0.013793103448318,-0.000000000000011,0.013793103448318,0.014285714285744,0.000000000000000,2 -2134,2147,2149,2162,-0.296551724138205,0.464285714285827,-0.289655172414046,0.457142857142963,-0.289655172414046,0.471428571428704,-0.282758620689887,0.464285714285840,-0.014285714285739,-0.000000000000000,0.000000000000011,-0.013793103448318,-0.000000000000014,0.013793103448318,0.014285714285742,0.000000000000000,2 -2135,2148,2150,2163,-0.296551724138205,0.478571428571564,-0.289655172414046,0.471428571428704,-0.289655172414046,0.485714285714439,-0.282758620689887,0.478571428571579,-0.014285714285734,0.000000000000000,0.000000000000014,-0.013793103448318,-0.000000000000017,0.013793103448318,0.014285714285737,0.000000000000000,2 -2136,2149,2151,2164,-0.296551724138205,0.492857142857297,-0.289655172414046,0.485714285714439,-0.289655172414046,0.500000000000173,-0.282758620689887,0.492857142857315,-0.014285714285733,-0.000000000000000,0.000000000000017,-0.013793103448318,-0.000000000000018,0.013793103448318,0.014285714285735,0.000000000000000,2 -2137,2150,2152,2165,-0.296551724138205,0.507142857142987,-0.289655172414046,0.500000000000173,-0.289655172414046,0.514285714285817,-0.282758620689887,0.507142857143004,-0.014285714285646,-0.000000000000000,0.000000000000018,-0.013793103448318,-0.000000000000015,0.013793103448318,0.014285714285642,0.000000000000000,2 -2138,2151,2153,2166,-0.296551724138205,0.521428571428627,-0.289655172414046,0.514285714285817,-0.289655172414046,0.528571428571448,-0.282758620689887,0.521428571428638,-0.014285714285633,-0.000000000000000,0.000000000000015,-0.013793103448318,-0.000000000000009,0.013793103448318,0.014285714285628,0.000000000000000,2 -2139,2152,2154,2167,-0.296551724138205,0.535714285714291,-0.289655172414046,0.528571428571448,-0.289655172414046,0.542857142857141,-0.282758620689887,0.535714285714298,-0.014285714285694,-0.000000000000000,0.000000000000009,-0.013793103448318,-0.000000000000006,0.013793103448318,0.014285714285692,0.000000000000000,2 -2140,2153,2155,2168,-0.296551724138205,0.549999999999986,-0.289655172414046,0.542857142857141,-0.289655172414046,0.557142857142836,-0.282758620689887,0.549999999999991,-0.014285714285696,-0.000000000000000,0.000000000000006,-0.013793103448318,-0.000000000000004,0.013793103448318,0.014285714285694,0.000000000000000,2 -2141,2154,2156,2169,-0.296551724138205,0.564285714285682,-0.289655172414046,0.557142857142836,-0.289655172414046,0.571428571428531,-0.282758620689887,0.564285714285685,-0.014285714285696,-0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000001,0.013793103448318,0.014285714285693,0.000000000000000,2 -2142,2155,2157,2170,-0.296551724138205,0.578571428571393,-0.289655172414046,0.571428571428531,-0.289655172414046,0.585714285714256,-0.282758620689887,0.578571428571394,-0.014285714285726,-0.000000000000000,0.000000000000001,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285725,0.000000000000000,2 -1794,2143,2156,2171,-0.289655172414046,0.600000000000000,-0.296551724138205,0.592857142857128,-0.289655172414046,0.585714285714256,-0.282758620689887,0.592857142857128,0.000000000000000,0.013793103448318,-0.014285714285743,0.000000000000000,-0.000000000000000,-0.013793103448318,0.014285714285744,-0.000000000000000,2 -2144,2159,2172,2595,-0.282758620689887,0.407142857142869,-0.275862068965728,0.414285714285740,-0.268965517241570,0.407142857142871,-0.275862068965729,0.400000000000000,-0.014285714285738,0.000000000000000,-0.000000000000003,0.013793103448318,0.014285714285741,-0.000000000000000,-0.000000000000000,-0.013793103448317,2 -2145,2158,2160,2173,-0.282758620689887,0.421428571428610,-0.275862068965728,0.414285714285740,-0.275862068965729,0.428571428571485,-0.268965517241570,0.421428571428614,-0.014285714285745,-0.000000000000000,0.000000000000003,-0.013793103448318,-0.000000000000004,0.013793103448317,0.014285714285746,0.000000000000000,2 -2146,2159,2161,2174,-0.282758620689887,0.435714285714354,-0.275862068965729,0.428571428571485,-0.275862068965729,0.442857142857228,-0.268965517241570,0.435714285714360,-0.014285714285742,0.000000000000000,0.000000000000004,-0.013793103448317,-0.000000000000007,0.013793103448317,0.014285714285745,0.000000000000000,2 -2147,2160,2162,2175,-0.282758620689887,0.450000000000097,-0.275862068965729,0.442857142857228,-0.275862068965729,0.457142857142974,-0.268965517241570,0.450000000000106,-0.014285714285744,-0.000000000000000,0.000000000000007,-0.013793103448317,-0.000000000000011,0.013793103448317,0.014285714285748,0.000000000000000,2 -2148,2161,2163,2176,-0.282758620689887,0.464285714285840,-0.275862068965729,0.457142857142974,-0.275862068965729,0.471428571428718,-0.268965517241570,0.464285714285852,-0.014285714285742,-0.000000000000000,0.000000000000011,-0.013793103448317,-0.000000000000014,0.013793103448317,0.014285714285745,0.000000000000000,2 -2149,2162,2164,2177,-0.282758620689887,0.478571428571579,-0.275862068965729,0.471428571428718,-0.275862068965728,0.485714285714456,-0.268965517241570,0.478571428571594,-0.014285714285737,-0.000000000000000,0.000000000000014,-0.013793103448317,-0.000000000000017,0.013793103448318,0.014285714285740,-0.000000000000000,2 -2150,2163,2165,2178,-0.282758620689887,0.492857142857315,-0.275862068965728,0.485714285714456,-0.275862068965729,0.500000000000192,-0.268965517241570,0.492857142857333,-0.014285714285735,-0.000000000000000,0.000000000000017,-0.013793103448318,-0.000000000000018,0.013793103448317,0.014285714285736,0.000000000000000,2 -2151,2164,2166,2179,-0.282758620689887,0.507142857143004,-0.275862068965729,0.500000000000192,-0.275862068965729,0.514285714285832,-0.268965517241570,0.507142857143020,-0.014285714285642,-0.000000000000000,0.000000000000018,-0.013793103448317,-0.000000000000015,0.013793103448317,0.014285714285639,0.000000000000000,2 -2152,2165,2167,2180,-0.282758620689887,0.521428571428638,-0.275862068965729,0.514285714285832,-0.275862068965729,0.528571428571457,-0.268965517241570,0.521428571428650,-0.014285714285628,-0.000000000000000,0.000000000000015,-0.013793103448317,-0.000000000000009,0.013793103448317,0.014285714285622,0.000000000000000,2 -2153,2166,2168,2181,-0.282758620689887,0.535714285714298,-0.275862068965729,0.528571428571457,-0.275862068965729,0.542857142857147,-0.268965517241570,0.535714285714306,-0.014285714285692,-0.000000000000000,0.000000000000009,-0.013793103448317,-0.000000000000006,0.013793103448317,0.014285714285690,0.000000000000000,2 -2154,2167,2169,2182,-0.282758620689887,0.549999999999991,-0.275862068965729,0.542857142857147,-0.275862068965729,0.557142857142840,-0.268965517241570,0.549999999999996,-0.014285714285694,-0.000000000000000,0.000000000000006,-0.013793103448317,-0.000000000000004,0.013793103448317,0.014285714285691,0.000000000000000,2 -2155,2168,2170,2183,-0.282758620689887,0.564285714285685,-0.275862068965729,0.557142857142840,-0.275862068965729,0.571428571428532,-0.268965517241570,0.564285714285687,-0.014285714285693,-0.000000000000000,0.000000000000004,-0.013793103448317,-0.000000000000001,0.013793103448317,0.014285714285691,0.000000000000000,2 -2156,2169,2171,2184,-0.282758620689887,0.578571428571394,-0.275862068965729,0.571428571428532,-0.275862068965729,0.585714285714256,-0.268965517241570,0.578571428571394,-0.014285714285725,-0.000000000000000,0.000000000000001,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285724,0.000000000000000,2 -1800,2157,2170,2185,-0.275862068965729,0.600000000000000,-0.282758620689887,0.592857142857128,-0.275862068965729,0.585714285714256,-0.268965517241570,0.592857142857128,0.000000000000000,0.013793103448317,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448317,0.014285714285744,-0.000000000000000,2 -2158,2173,2186,2536,-0.268965517241570,0.407142857142871,-0.262068965517414,0.414285714285743,-0.255172413793258,0.407142857142872,-0.262068965517414,0.400000000000000,-0.014285714285741,0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448312,2 -2159,2172,2174,2187,-0.268965517241570,0.421428571428614,-0.262068965517414,0.414285714285743,-0.262068965517414,0.428571428571489,-0.255172413793258,0.421428571428618,-0.014285714285746,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285747,0.000000000000000,2 -2160,2173,2175,2188,-0.268965517241570,0.435714285714360,-0.262068965517414,0.428571428571489,-0.262068965517414,0.442857142857236,-0.255172413793258,0.435714285714365,-0.014285714285745,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000007,0.013793103448312,0.014285714285748,0.000000000000000,2 -2161,2174,2176,2189,-0.268965517241570,0.450000000000106,-0.262068965517414,0.442857142857236,-0.262068965517414,0.457142857142985,-0.255172413793258,0.450000000000115,-0.014285714285748,-0.000000000000000,0.000000000000007,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285751,0.000000000000000,2 -2162,2175,2177,2190,-0.268965517241570,0.464285714285852,-0.262068965517414,0.457142857142985,-0.262068965517414,0.471428571428732,-0.255172413793258,0.464285714285865,-0.014285714285745,-0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285748,0.000000000000000,2 -2163,2176,2178,2191,-0.268965517241570,0.478571428571594,-0.262068965517414,0.471428571428732,-0.262068965517414,0.485714285714473,-0.255172413793258,0.478571428571610,-0.014285714285740,0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285743,0.000000000000000,2 -2164,2177,2179,2192,-0.268965517241570,0.492857142857333,-0.262068965517414,0.485714285714473,-0.262068965517414,0.500000000000210,-0.255172413793258,0.492857142857350,-0.014285714285736,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000018,0.013793103448312,0.014285714285738,0.000000000000000,2 -2165,2178,2180,2193,-0.268965517241570,0.507142857143020,-0.262068965517414,0.500000000000210,-0.262068965517414,0.514285714285847,-0.255172413793258,0.507142857143037,-0.014285714285639,-0.000000000000000,0.000000000000018,-0.013793103448312,-0.000000000000015,0.013793103448312,0.014285714285635,0.000000000000000,2 -2166,2179,2181,2194,-0.268965517241570,0.521428571428650,-0.262068965517414,0.514285714285847,-0.262068965517414,0.528571428571466,-0.255172413793258,0.521428571428662,-0.014285714285622,-0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285616,-0.000000000000000,2 -2167,2180,2182,2195,-0.268965517241570,0.535714285714306,-0.262068965517414,0.528571428571466,-0.262068965517414,0.542857142857154,-0.255172413793258,0.535714285714314,-0.014285714285690,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285687,0.000000000000000,2 -2168,2181,2183,2196,-0.268965517241570,0.549999999999996,-0.262068965517414,0.542857142857154,-0.262068965517414,0.557142857142843,-0.255172413793258,0.550000000000001,-0.014285714285691,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285688,0.000000000000000,2 -2169,2182,2184,2197,-0.268965517241570,0.564285714285687,-0.262068965517414,0.557142857142843,-0.262068965517414,0.571428571428533,-0.255172413793258,0.564285714285689,-0.014285714285691,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285688,0.000000000000000,2 -2170,2183,2185,2198,-0.268965517241570,0.578571428571394,-0.262068965517414,0.571428571428533,-0.262068965517414,0.585714285714256,-0.255172413793258,0.578571428571395,-0.014285714285724,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285722,0.000000000000000,2 -1806,2171,2184,2199,-0.262068965517414,0.600000000000000,-0.268965517241570,0.592857142857128,-0.262068965517414,0.585714285714256,-0.255172413793258,0.592857142857128,0.000000000000000,0.013793103448312,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285744,-0.000000000000000,2 -2172,2187,2200,2477,-0.255172413793258,0.407142857142872,-0.248275862069102,0.414285714285746,-0.241379310344946,0.407142857142874,-0.248275862069102,0.400000000000000,-0.014285714285744,-0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285747,0.000000000000000,-0.000000000000000,-0.013793103448312,2 -2173,2186,2188,2201,-0.255172413793258,0.421428571428618,-0.248275862069102,0.414285714285746,-0.248275862069102,0.428571428571494,-0.241379310344946,0.421428571428621,-0.014285714285747,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285749,0.000000000000000,2 -2174,2187,2189,2202,-0.255172413793258,0.435714285714365,-0.248275862069102,0.428571428571494,-0.248275862069102,0.442857142857243,-0.241379310344946,0.435714285714371,-0.014285714285748,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000008,0.013793103448312,0.014285714285751,0.000000000000000,2 -2175,2188,2190,2203,-0.255172413793258,0.450000000000115,-0.248275862069102,0.442857142857243,-0.248275862069102,0.457142857142996,-0.241379310344946,0.450000000000124,-0.014285714285751,-0.000000000000000,0.000000000000008,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285754,0.000000000000000,2 -2176,2189,2191,2204,-0.255172413793258,0.464285714285865,-0.248275862069102,0.457142857142996,-0.248275862069102,0.471428571428745,-0.241379310344946,0.464285714285877,-0.014285714285748,-0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285751,0.000000000000000,2 -2177,2190,2192,2205,-0.255172413793258,0.478571428571610,-0.248275862069102,0.471428571428745,-0.248275862069102,0.485714285714490,-0.241379310344946,0.478571428571625,-0.014285714285743,-0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285746,0.000000000000000,2 -2178,2191,2193,2206,-0.255172413793258,0.492857142857350,-0.248275862069102,0.485714285714490,-0.248275862069102,0.500000000000228,-0.241379310344946,0.492857142857368,-0.014285714285738,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000018,0.013793103448312,0.014285714285739,0.000000000000000,2 -2179,2192,2194,2207,-0.255172413793258,0.507142857143037,-0.248275862069102,0.500000000000228,-0.248275862069102,0.514285714285861,-0.241379310344946,0.507142857143053,-0.014285714285635,-0.000000000000000,0.000000000000018,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285631,0.000000000000000,2 -2180,2193,2195,2208,-0.255172413793258,0.521428571428662,-0.248275862069102,0.514285714285861,-0.248275862069102,0.528571428571474,-0.241379310344946,0.521428571428673,-0.014285714285616,0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285611,0.000000000000000,2 -2181,2194,2196,2209,-0.255172413793258,0.535714285714314,-0.248275862069102,0.528571428571474,-0.248275862069102,0.542857142857160,-0.241379310344946,0.535714285714321,-0.014285714285687,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285685,0.000000000000000,2 -2182,2195,2197,2210,-0.255172413793258,0.550000000000001,-0.248275862069102,0.542857142857160,-0.248275862069102,0.557142857142847,-0.241379310344946,0.550000000000006,-0.014285714285688,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285685,0.000000000000000,2 -2183,2196,2198,2211,-0.255172413793258,0.564285714285689,-0.248275862069102,0.557142857142847,-0.248275862069102,0.571428571428534,-0.241379310344946,0.564285714285692,-0.014285714285688,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285685,0.000000000000000,2 -2184,2197,2199,2212,-0.255172413793258,0.578571428571395,-0.248275862069102,0.571428571428534,-0.248275862069102,0.585714285714255,-0.241379310344946,0.578571428571395,-0.014285714285722,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285721,0.000000000000000,2 -1812,2185,2198,2213,-0.248275862069102,0.600000000000000,-0.255172413793258,0.592857142857128,-0.248275862069102,0.585714285714255,-0.241379310344946,0.592857142857128,0.000000000000000,0.013793103448312,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285745,-0.000000000000000,2 -2186,2201,2214,2418,-0.241379310344946,0.407142857142874,-0.234482758620790,0.414285714285749,-0.227586206896634,0.407142857142875,-0.234482758620790,0.400000000000000,-0.014285714285747,-0.000000000000000,-0.000000000000003,0.013793103448312,0.014285714285750,0.000000000000000,-0.000000000000000,-0.013793103448312,2 -2187,2200,2202,2215,-0.241379310344946,0.421428571428621,-0.234482758620790,0.414285714285749,-0.234482758620790,0.428571428571498,-0.227586206896634,0.421428571428625,-0.014285714285749,-0.000000000000000,0.000000000000003,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285750,0.000000000000000,2 -2188,2201,2203,2216,-0.241379310344946,0.435714285714371,-0.234482758620790,0.428571428571498,-0.234482758620790,0.442857142857251,-0.227586206896634,0.435714285714377,-0.014285714285751,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000008,0.013793103448312,0.014285714285754,0.000000000000000,2 -2189,2202,2204,2217,-0.241379310344946,0.450000000000124,-0.234482758620790,0.442857142857251,-0.234482758620790,0.457142857143007,-0.227586206896634,0.450000000000133,-0.014285714285754,-0.000000000000000,0.000000000000008,-0.013793103448312,-0.000000000000011,0.013793103448312,0.014285714285757,0.000000000000000,2 -2190,2203,2205,2218,-0.241379310344946,0.464285714285877,-0.234482758620790,0.457142857143007,-0.234482758620790,0.471428571428759,-0.227586206896634,0.464285714285889,-0.014285714285751,-0.000000000000000,0.000000000000011,-0.013793103448312,-0.000000000000014,0.013793103448312,0.014285714285754,-0.000000000000000,2 -2191,2204,2206,2219,-0.241379310344946,0.478571428571625,-0.234482758620790,0.471428571428759,-0.234482758620790,0.485714285714507,-0.227586206896634,0.478571428571641,-0.014285714285746,-0.000000000000000,0.000000000000014,-0.013793103448312,-0.000000000000017,0.013793103448312,0.014285714285749,0.000000000000000,2 -2192,2205,2207,2220,-0.241379310344946,0.492857142857368,-0.234482758620790,0.485714285714507,-0.234482758620790,0.500000000000247,-0.227586206896634,0.492857142857385,-0.014285714285739,-0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000018,0.013793103448312,0.014285714285741,0.000000000000000,2 -2193,2206,2208,2221,-0.241379310344946,0.507142857143053,-0.234482758620790,0.500000000000247,-0.234482758620790,0.514285714285876,-0.227586206896634,0.507142857143069,-0.014285714285631,-0.000000000000000,0.000000000000018,-0.013793103448312,-0.000000000000015,0.013793103448312,0.014285714285627,0.000000000000000,2 -2194,2207,2209,2222,-0.241379310344946,0.521428571428673,-0.234482758620790,0.514285714285876,-0.234482758620790,0.528571428571483,-0.227586206896634,0.521428571428685,-0.014285714285611,-0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000009,0.013793103448312,0.014285714285605,0.000000000000000,2 -2195,2208,2210,2223,-0.241379310344946,0.535714285714321,-0.234482758620790,0.528571428571483,-0.234482758620790,0.542857142857167,-0.227586206896634,0.535714285714329,-0.014285714285685,-0.000000000000000,0.000000000000009,-0.013793103448312,-0.000000000000006,0.013793103448312,0.014285714285682,0.000000000000000,2 -2196,2209,2211,2224,-0.241379310344946,0.550000000000006,-0.234482758620790,0.542857142857167,-0.234482758620790,0.557142857142851,-0.227586206896634,0.550000000000011,-0.014285714285685,-0.000000000000000,0.000000000000006,-0.013793103448312,-0.000000000000004,0.013793103448312,0.014285714285683,0.000000000000000,2 -2197,2210,2212,2225,-0.241379310344946,0.564285714285692,-0.234482758620790,0.557142857142851,-0.234482758620790,0.571428571428535,-0.227586206896634,0.564285714285694,-0.014285714285685,-0.000000000000000,0.000000000000004,-0.013793103448312,-0.000000000000001,0.013793103448312,0.014285714285682,0.000000000000000,2 -2198,2211,2213,2226,-0.241379310344946,0.578571428571395,-0.234482758620790,0.571428571428535,-0.234482758620790,0.585714285714255,-0.227586206896634,0.578571428571395,-0.014285714285721,-0.000000000000000,0.000000000000001,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285720,0.000000000000000,2 -1818,2199,2212,2227,-0.234482758620790,0.600000000000000,-0.241379310344946,0.592857142857128,-0.234482758620790,0.585714285714255,-0.227586206896634,0.592857142857127,0.000000000000000,0.013793103448312,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285745,-0.000000000000000,2 -2200,2215,2228,2359,-0.227586206896634,0.407142857142875,-0.220689655172476,0.414285714285752,-0.213793103448318,0.407142857142877,-0.220689655172476,0.400000000000000,-0.014285714285750,-0.000000000000000,-0.000000000000003,0.013793103448316,0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448316,2 -2201,2214,2216,2229,-0.227586206896634,0.421428571428625,-0.220689655172476,0.414285714285752,-0.220689655172476,0.428571428571502,-0.213793103448318,0.421428571428629,-0.014285714285750,-0.000000000000000,0.000000000000003,-0.013793103448316,-0.000000000000004,0.013793103448316,0.014285714285752,0.000000000000000,2 -2202,2215,2217,2230,-0.227586206896634,0.435714285714377,-0.220689655172476,0.428571428571502,-0.220689655172476,0.442857142857258,-0.213793103448318,0.435714285714383,-0.014285714285754,-0.000000000000000,0.000000000000004,-0.013793103448316,-0.000000000000007,0.013793103448316,0.014285714285757,0.000000000000000,2 -2203,2216,2218,2231,-0.227586206896634,0.450000000000133,-0.220689655172476,0.442857142857258,-0.220689655172476,0.457142857143017,-0.213793103448318,0.450000000000142,-0.014285714285757,-0.000000000000000,0.000000000000007,-0.013793103448316,-0.000000000000011,0.013793103448316,0.014285714285761,-0.000000000000000,2 -2204,2217,2219,2232,-0.227586206896634,0.464285714285889,-0.220689655172476,0.457142857143017,-0.220689655172476,0.471428571428773,-0.213793103448318,0.464285714285902,-0.014285714285754,0.000000000000000,0.000000000000011,-0.013793103448316,-0.000000000000014,0.013793103448316,0.014285714285758,0.000000000000000,2 -2205,2218,2220,2233,-0.227586206896634,0.478571428571641,-0.220689655172476,0.471428571428773,-0.220689655172476,0.485714285714524,-0.213793103448318,0.478571428571656,-0.014285714285749,-0.000000000000000,0.000000000000014,-0.013793103448316,-0.000000000000017,0.013793103448316,0.014285714285752,0.000000000000000,2 -2206,2219,2221,2234,-0.227586206896634,0.492857142857385,-0.220689655172476,0.485714285714524,-0.220689655172476,0.500000000000265,-0.213793103448318,0.492857142857403,-0.014285714285741,-0.000000000000000,0.000000000000017,-0.013793103448316,-0.000000000000018,0.013793103448316,0.014285714285742,0.000000000000000,2 -2207,2220,2222,2235,-0.227586206896634,0.507142857143069,-0.220689655172476,0.500000000000265,-0.220689655172476,0.514285714285890,-0.213793103448318,0.507142857143086,-0.014285714285627,-0.000000000000000,0.000000000000018,-0.013793103448316,-0.000000000000015,0.013793103448316,0.014285714285624,0.000000000000000,2 -2208,2221,2223,2236,-0.227586206896634,0.521428571428685,-0.220689655172476,0.514285714285890,-0.220689655172476,0.528571428571492,-0.213793103448318,0.521428571428697,-0.014285714285605,-0.000000000000000,0.000000000000015,-0.013793103448316,-0.000000000000009,0.013793103448316,0.014285714285599,0.000000000000000,2 -2209,2222,2224,2237,-0.227586206896634,0.535714285714329,-0.220689655172476,0.528571428571492,-0.220689655172476,0.542857142857173,-0.213793103448318,0.535714285714337,-0.014285714285682,-0.000000000000000,0.000000000000009,-0.013793103448316,-0.000000000000007,0.013793103448316,0.014285714285680,0.000000000000000,2 -2210,2223,2225,2238,-0.227586206896634,0.550000000000011,-0.220689655172476,0.542857142857173,-0.220689655172476,0.557142857142854,-0.213793103448318,0.550000000000016,-0.014285714285683,-0.000000000000000,0.000000000000007,-0.013793103448316,-0.000000000000004,0.013793103448316,0.014285714285680,-0.000000000000000,2 -2211,2224,2226,2239,-0.227586206896634,0.564285714285694,-0.220689655172476,0.557142857142854,-0.220689655172476,0.571428571428536,-0.213793103448318,0.564285714285696,-0.014285714285682,-0.000000000000000,0.000000000000004,-0.013793103448316,-0.000000000000001,0.013793103448316,0.014285714285680,0.000000000000000,2 -2212,2225,2227,2240,-0.227586206896634,0.578571428571395,-0.220689655172476,0.571428571428536,-0.220689655172476,0.585714285714255,-0.213793103448318,0.578571428571395,-0.014285714285720,-0.000000000000000,0.000000000000001,-0.013793103448316,0.000000000000000,0.013793103448316,0.014285714285718,0.000000000000000,2 -1824,2213,2226,2241,-0.220689655172476,0.600000000000000,-0.227586206896634,0.592857142857127,-0.220689655172476,0.585714285714255,-0.213793103448318,0.592857142857127,0.000000000000000,0.013793103448316,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448316,0.014285714285745,-0.000000000000000,2 -2214,2229,2300,7288,-0.213793103448318,0.407142857142877,-0.206896551724159,0.414285714285755,-0.206896551724159,0.400000000000000,-0.200000000000000,0.407142857142878,-0.014285714285753,-0.000000000000000,-0.000000000000003,0.013793103448318,0.000000000000000,-0.013793103448318,0.014285714285756,0.000000000000000,2 -2215,2228,2230,7289,-0.213793103448318,0.421428571428629,-0.206896551724159,0.414285714285755,-0.206896551724159,0.428571428571507,-0.200000000000000,0.421428571428633,-0.014285714285752,-0.000000000000000,0.000000000000003,-0.013793103448318,-0.000000000000004,0.013793103448318,0.014285714285753,-0.000000000000000,2 -2216,2229,2231,7290,-0.213793103448318,0.435714285714383,-0.206896551724159,0.428571428571507,-0.206896551724159,0.442857142857266,-0.200000000000000,0.435714285714389,-0.014285714285757,-0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000008,0.013793103448318,0.014285714285761,-0.000000000000000,2 -2217,2230,2232,7291,-0.213793103448318,0.450000000000142,-0.206896551724159,0.442857142857266,-0.206896551724159,0.457142857143028,-0.200000000000000,0.450000000000152,-0.014285714285761,0.000000000000000,0.000000000000008,-0.013793103448318,-0.000000000000011,0.013793103448318,0.014285714285764,-0.000000000000000,2 -2218,2231,2233,7292,-0.213793103448318,0.464285714285902,-0.206896551724159,0.457142857143028,-0.206896551724159,0.471428571428787,-0.200000000000000,0.464285714285914,-0.014285714285758,-0.000000000000000,0.000000000000011,-0.013793103448318,-0.000000000000014,0.013793103448318,0.014285714285761,-0.000000000000000,2 -2219,2232,2234,7293,-0.213793103448318,0.478571428571656,-0.206896551724159,0.471428571428787,-0.206896551724159,0.485714285714540,-0.200000000000000,0.478571428571672,-0.014285714285752,-0.000000000000000,0.000000000000014,-0.013793103448318,-0.000000000000017,0.013793103448318,0.014285714285754,-0.000000000000000,2 -2220,2233,2235,7294,-0.213793103448318,0.492857142857403,-0.206896551724159,0.485714285714540,-0.206896551724159,0.500000000000283,-0.200000000000000,0.492857142857421,-0.014285714285742,-0.000000000000000,0.000000000000017,-0.013793103448318,-0.000000000000019,0.013793103448318,0.014285714285744,-0.000000000000000,2 -2221,2234,2236,7295,-0.213793103448318,0.507142857143086,-0.206896551724159,0.500000000000283,-0.206896551724159,0.514285714285905,-0.200000000000000,0.507142857143103,-0.014285714285624,-0.000000000000000,0.000000000000019,-0.013793103448318,-0.000000000000015,0.013793103448318,0.014285714285620,-0.000000000000000,2 -2222,2235,2237,7296,-0.213793103448318,0.521428571428697,-0.206896551724159,0.514285714285905,-0.206896551724159,0.528571428571501,-0.200000000000000,0.521428571428709,-0.014285714285599,-0.000000000000000,0.000000000000015,-0.013793103448318,-0.000000000000009,0.013793103448318,0.014285714285593,-0.000000000000000,2 -2223,2236,2238,7297,-0.213793103448318,0.535714285714337,-0.206896551724159,0.528571428571501,-0.206896551724159,0.542857142857180,-0.200000000000000,0.535714285714345,-0.014285714285680,-0.000000000000000,0.000000000000009,-0.013793103448318,-0.000000000000007,0.013793103448318,0.014285714285677,-0.000000000000000,2 -2224,2237,2239,7298,-0.213793103448318,0.550000000000016,-0.206896551724159,0.542857142857180,-0.206896551724159,0.557142857142858,-0.200000000000000,0.550000000000022,-0.014285714285680,0.000000000000000,0.000000000000007,-0.013793103448318,-0.000000000000004,0.013793103448318,0.014285714285677,-0.000000000000000,2 -2225,2238,2240,7299,-0.213793103448318,0.564285714285696,-0.206896551724159,0.557142857142858,-0.206896551724159,0.571428571428537,-0.200000000000000,0.564285714285699,-0.014285714285680,-0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000001,0.013793103448318,0.014285714285677,-0.000000000000000,2 -2226,2239,2241,7300,-0.213793103448318,0.578571428571395,-0.206896551724159,0.571428571428537,-0.206896551724159,0.585714285714255,-0.200000000000000,0.578571428571396,-0.014285714285718,-0.000000000000000,0.000000000000001,-0.013793103448318,-0.000000000000000,0.013793103448318,0.014285714285717,-0.000000000000000,2 -1830,2227,2240,7301,-0.206896551724159,0.600000000000000,-0.213793103448318,0.592857142857127,-0.206896551724159,0.585714285714255,-0.200000000000000,0.592857142857127,-0.000000000000000,0.013793103448318,-0.014285714285745,0.000000000000000,0.000000000000000,-0.013793103448318,0.014285714285745,-0.000000000000000,2 -2243,2301,3966,8100,-0.206896551724127,-0.386440677966119,-0.213793103448254,-0.393220338983059,-0.206896551724127,-0.400000000000000,-0.200000000000000,-0.393220338983059,0.000000000000000,0.013793103448255,-0.013559322033882,-0.000000000000001,0.000000000000000,-0.013793103448254,0.013559322033881,0.000000000000000,2 -2242,2244,2302,8114,-0.206896551724127,-0.386440677966119,-0.206896551724128,-0.372881355932259,-0.213793103448255,-0.379661016949189,-0.200000000000000,-0.379661016949189,-0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2243,2245,2303,8128,-0.206896551724128,-0.372881355932259,-0.206896551724129,-0.359322033898399,-0.213793103448256,-0.366101694915329,-0.200000000000000,-0.366101694915329,-0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2244,2246,2304,8142,-0.206896551724129,-0.359322033898399,-0.206896551724129,-0.345762711864539,-0.213793103448258,-0.352542372881469,-0.200000000000000,-0.352542372881469,-0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2245,2247,2305,8156,-0.206896551724129,-0.345762711864539,-0.206896551724130,-0.332203389830670,-0.213793103448259,-0.338983050847605,-0.200000000000000,-0.338983050847605,-0.000000000000000,-0.013793103448258,0.000000000000000,0.013793103448259,-0.013559322033869,-0.000000000000001,0.013559322033869,0.000000000000000,2 -2246,2248,2306,8170,-0.206896551724130,-0.332203389830670,-0.206896551724130,-0.318644067796787,-0.213793103448260,-0.325423728813729,-0.200000000000000,-0.325423728813729,-0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448260,-0.013559322033883,-0.000000000000001,0.013559322033883,0.000000000000000,2 -2247,2249,2307,8184,-0.206896551724130,-0.318644067796787,-0.206896551724131,-0.305084745762915,-0.213793103448261,-0.311864406779851,-0.200000000000000,-0.311864406779851,-0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033872,-0.000000000000001,0.013559322033872,0.000000000000000,2 -2248,2250,2308,8198,-0.206896551724131,-0.305084745762915,-0.206896551724131,-0.291525423729035,-0.213793103448262,-0.298305084745975,-0.200000000000000,-0.298305084745975,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448262,-0.013559322033879,-0.000000000000001,0.013559322033879,0.000000000000000,2 -2249,2251,2309,8212,-0.206896551724131,-0.291525423729035,-0.206896551724132,-0.277966101695176,-0.213793103448263,-0.284745762712106,-0.200000000000000,-0.284745762712106,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2250,2252,2310,8226,-0.206896551724132,-0.277966101695176,-0.206896551724132,-0.264406779661316,-0.213793103448264,-0.271186440678246,-0.200000000000000,-0.271186440678246,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2251,2253,2311,8240,-0.206896551724132,-0.264406779661316,-0.206896551724133,-0.250847457627456,-0.213793103448265,-0.257627118644386,-0.200000000000000,-0.257627118644386,-0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2252,2254,2312,8254,-0.206896551724133,-0.250847457627456,-0.206896551724133,-0.237288135593597,-0.213793103448266,-0.244067796610526,-0.200000000000000,-0.244067796610526,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448267,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2253,2255,2313,8268,-0.206896551724133,-0.237288135593597,-0.206896551724134,-0.223728813559737,-0.213793103448267,-0.230508474576667,-0.200000000000000,-0.230508474576667,0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2254,2256,2314,8282,-0.206896551724134,-0.223728813559737,-0.206896551724135,-0.210169491525877,-0.213793103448268,-0.216949152542807,-0.200000000000000,-0.216949152542807,-0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2255,2257,2315,8296,-0.206896551724135,-0.210169491525877,-0.206896551724135,-0.196610169492017,-0.213793103448270,-0.203389830508947,-0.200000000000000,-0.203389830508947,-0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2256,2258,2316,8310,-0.206896551724135,-0.196610169492017,-0.206896551724136,-0.183050847458158,-0.213793103448271,-0.189830508475087,-0.200000000000000,-0.189830508475088,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2257,2259,2317,8324,-0.206896551724136,-0.183050847458158,-0.206896551724136,-0.169491525424298,-0.213793103448272,-0.176271186441228,-0.200000000000000,-0.176271186441228,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2258,2260,2318,8338,-0.206896551724136,-0.169491525424298,-0.206896551724137,-0.155932203390438,-0.213793103448273,-0.162711864407368,-0.200000000000000,-0.162711864407368,-0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2259,2261,2319,8352,-0.206896551724137,-0.155932203390438,-0.206896551724137,-0.142372881356579,-0.213793103448274,-0.149152542373509,-0.200000000000000,-0.149152542373509,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2260,2262,2320,8366,-0.206896551724137,-0.142372881356579,-0.206896551724138,-0.128813559322719,-0.213793103448275,-0.135593220339649,-0.200000000000000,-0.135593220339649,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2261,2263,2321,8380,-0.206896551724138,-0.128813559322719,-0.206896551724138,-0.115254237288859,-0.213793103448276,-0.122033898305789,-0.200000000000000,-0.122033898305789,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2262,2264,2322,8394,-0.206896551724138,-0.115254237288859,-0.206896551724139,-0.101694915255008,-0.213793103448277,-0.108474576271933,-0.200000000000000,-0.108474576271933,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033852,-0.000000000000001,0.013559322033852,0.000000000000000,2 -2263,2265,2323,8408,-0.206896551724139,-0.101694915255008,-0.206896551724139,-0.088135593221162,-0.213793103448278,-0.094915254238085,-0.200000000000000,-0.094915254238085,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448279,-0.013559322033846,-0.000000000000001,0.013559322033846,0.000000000000000,2 -2264,2266,2324,8422,-0.206896551724139,-0.088135593221162,-0.206896551724140,-0.074576271187302,-0.213793103448279,-0.081355932204232,-0.200000000000000,-0.081355932204232,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2265,2267,2325,8436,-0.206896551724140,-0.074576271187302,-0.206896551724141,-0.061016949153442,-0.213793103448280,-0.067796610170372,-0.200000000000000,-0.067796610170372,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2266,2268,2326,8450,-0.206896551724141,-0.061016949153442,-0.206896551724141,-0.047457627119583,-0.213793103448282,-0.054237288136513,-0.200000000000000,-0.054237288136513,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2267,2269,2327,8464,-0.206896551724141,-0.047457627119583,-0.206896551724142,-0.033898305085723,-0.213793103448283,-0.040677966102653,-0.200000000000000,-0.040677966102653,-0.000000000000000,-0.013793103448282,0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2268,2270,2328,8478,-0.206896551724142,-0.033898305085723,-0.206896551724142,-0.020338983051863,-0.213793103448284,-0.027118644068793,-0.200000000000000,-0.027118644068793,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2269,2271,2329,8492,-0.206896551724142,-0.020338983051863,-0.206896551724143,-0.006779661018004,-0.213793103448285,-0.013559322034933,-0.200000000000000,-0.013559322034933,0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000001,0.013559322033860,0.000000000000000,2 -2270,2272,2330,8506,-0.206896551724143,-0.006779661018004,-0.206896551724143,0.006779661015891,-0.213793103448286,-0.000000000001056,-0.200000000000000,-0.000000000001056,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448286,-0.013559322033895,-0.000000000000001,0.013559322033895,0.000000000000000,2 -2271,2273,2331,8520,-0.206896551724143,0.006779661015891,-0.206896551724144,0.020338983049833,-0.213793103448287,0.013559322032862,-0.200000000000000,0.013559322032862,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448288,-0.013559322033941,-0.000000000000001,0.013559322033941,0.000000000000000,2 -2272,2274,2332,8534,-0.206896551724144,0.020338983049833,-0.206896551724144,0.033898305083763,-0.213793103448288,0.027118644066798,-0.200000000000000,0.027118644066798,-0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448289,-0.013559322033930,-0.000000000000001,0.013559322033930,0.000000000000000,2 -2273,2275,2333,8548,-0.206896551724144,0.033898305083763,-0.206896551724145,0.047457627117699,-0.213793103448289,0.040677966100731,-0.200000000000000,0.040677966100731,0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448290,-0.013559322033937,-0.000000000000001,0.013559322033937,0.000000000000000,2 -2274,2276,2334,8562,-0.206896551724145,0.047457627117699,-0.206896551724145,0.061016949151634,-0.213793103448290,0.054237288134667,-0.200000000000000,0.054237288134667,-0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033935,-0.000000000000001,0.013559322033935,0.000000000000000,2 -2275,2277,2335,8576,-0.206896551724145,0.061016949151634,-0.206896551724146,0.074576271185565,-0.213793103448291,0.067796610168599,-0.200000000000000,0.067796610168599,0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448292,-0.013559322033930,-0.000000000000001,0.013559322033930,0.000000000000000,2 -2276,2278,2336,8590,-0.206896551724146,0.074576271185565,-0.206896551724147,0.088135593219506,-0.213793103448292,0.081355932202535,-0.200000000000000,0.081355932202535,-0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448293,-0.013559322033941,-0.000000000000001,0.013559322033941,0.000000000000000,2 -2277,2279,2337,8604,-0.206896551724147,0.088135593219506,-0.206896551724147,0.101694915253436,-0.213793103448294,0.094915254236471,-0.200000000000000,0.094915254236471,-0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448294,-0.013559322033930,-0.000000000000001,0.013559322033930,0.000000000000000,2 -2278,2280,2338,8618,-0.206896551724147,0.101694915253436,-0.206896551724148,0.115254237287382,-0.213793103448295,0.108474576270409,-0.200000000000000,0.108474576270409,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033946,-0.000000000000001,0.013559322033946,0.000000000000000,2 -2279,2281,2339,8632,-0.206896551724148,0.115254237287382,-0.206896551724148,0.128813559321301,-0.213793103448296,0.122033898304341,-0.200000000000000,0.122033898304341,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033919,-0.000000000000001,0.013559322033919,0.000000000000000,2 -2280,2282,2340,8646,-0.206896551724148,0.128813559321301,-0.206896551724149,0.142372881355246,-0.213793103448297,0.135593220338273,-0.200000000000000,0.135593220338273,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033945,-0.000000000000001,0.013559322033945,0.000000000000000,2 -2281,2283,2341,8660,-0.206896551724149,0.142372881355246,-0.206896551724149,0.155932203389179,-0.213793103448298,0.149152542372213,-0.200000000000000,0.149152542372213,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448298,-0.013559322033933,-0.000000000000001,0.013559322033933,0.000000000000000,2 -2282,2284,2342,8674,-0.206896551724149,0.155932203389179,-0.206896551724150,0.169491525423110,-0.213793103448299,0.162711864406145,-0.200000000000000,0.162711864406145,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448299,-0.013559322033931,-0.000000000000001,0.013559322033931,0.000000000000000,2 -2283,2285,2343,8688,-0.206896551724150,0.169491525423110,-0.206896551724150,0.183050847457058,-0.213793103448300,0.176271186440084,-0.200000000000000,0.176271186440084,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448301,-0.013559322033948,-0.000000000000001,0.013559322033947,0.000000000000000,2 -2284,2286,2344,8702,-0.206896551724150,0.183050847457058,-0.206896551724151,0.196610169490975,-0.213793103448301,0.189830508474016,-0.200000000000000,0.189830508474016,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448302,-0.013559322033917,-0.000000000000001,0.013559322033917,0.000000000000000,2 -2285,2287,2345,8716,-0.206896551724151,0.196610169490975,-0.206896551724151,0.210169491524915,-0.213793103448302,0.203389830507945,-0.200000000000000,0.203389830507945,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448303,-0.013559322033940,-0.000000000000001,0.013559322033940,0.000000000000000,2 -2286,2288,2346,8730,-0.206896551724151,0.210169491524915,-0.206896551724152,0.223728813558839,-0.213793103448303,0.216949152541877,-0.200000000000000,0.216949152541877,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033924,-0.000000000000001,0.013559322033924,0.000000000000000,2 -2287,2289,2347,8744,-0.206896551724152,0.223728813558839,-0.206896551724152,0.237288135592793,-0.213793103448304,0.230508474575816,-0.200000000000000,0.230508474575816,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033954,-0.000000000000001,0.013559322033954,0.000000000000000,2 -2288,2290,2348,8758,-0.206896551724152,0.237288135592793,-0.206896551724153,0.250847457626703,-0.213793103448306,0.244067796609748,-0.200000000000000,0.244067796609748,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448306,-0.013559322033910,-0.000000000000001,0.013559322033910,0.000000000000000,2 -2289,2291,2349,8772,-0.206896551724153,0.250847457626703,-0.206896551724154,0.264406779660657,-0.213793103448307,0.257627118643680,-0.200000000000000,0.257627118643680,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448307,-0.013559322033954,-0.000000000000001,0.013559322033954,0.000000000000000,2 -2290,2292,2350,8786,-0.206896551724154,0.264406779660657,-0.206896551724154,0.277966101694579,-0.213793103448308,0.271186440677618,-0.200000000000000,0.271186440677618,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448308,-0.013559322033922,-0.000000000000001,0.013559322033922,0.000000000000000,2 -2291,2293,2351,8800,-0.206896551724154,0.277966101694579,-0.206896551724155,0.291525423728521,-0.213793103448309,0.284745762711550,-0.200000000000000,0.284745762711550,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033942,-0.000000000000001,0.013559322033942,0.000000000000000,2 -2292,2294,2352,8814,-0.206896551724155,0.291525423728521,-0.206896551724155,0.305084745762457,-0.213793103448310,0.298305084745489,-0.200000000000000,0.298305084745489,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448311,-0.013559322033936,-0.000000000000001,0.013559322033936,0.000000000000000,2 -2293,2295,2353,8828,-0.206896551724155,0.305084745762457,-0.206896551724156,0.318644067796385,-0.213793103448311,0.311864406779421,-0.200000000000000,0.311864406779421,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448312,-0.013559322033928,-0.000000000000001,0.013559322033928,0.000000000000000,2 -2294,2296,2354,8842,-0.206896551724156,0.318644067796385,-0.206896551724156,0.332203389830336,-0.213793103448312,0.325423728813361,-0.200000000000000,0.325423728813361,0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448313,-0.013559322033951,-0.000000000000001,0.013559322033950,0.000000000000000,2 -2295,2297,2355,8856,-0.206896551724156,0.332203389830336,-0.206896551724157,0.345762711864250,-0.213793103448313,0.338983050847293,-0.200000000000000,0.338983050847293,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448314,-0.013559322033914,-0.000000000000001,0.013559322033914,0.000000000000000,2 -2296,2298,2356,8870,-0.206896551724157,0.345762711864250,-0.206896551724157,0.359322033898204,-0.213793103448314,0.352542372881227,-0.200000000000000,0.352542372881227,0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448315,-0.013559322033954,-0.000000000000001,0.013559322033954,0.000000000000000,2 -2297,2299,2357,8884,-0.206896551724157,0.359322033898204,-0.206896551724158,0.372881355932121,-0.213793103448315,0.366101694915162,-0.200000000000000,0.366101694915163,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448316,-0.013559322033918,-0.000000000000001,0.013559322033918,0.000000000000000,2 -2298,2300,2358,8898,-0.206896551724158,0.372881355932121,-0.206896551724158,0.386440677966068,-0.213793103448317,0.379661016949095,-0.200000000000000,0.379661016949095,0.000000000000000,-0.013793103448316,-0.000000000000000,0.013793103448317,-0.013559322033946,-0.000000000000001,0.013559322033946,0.000000000000000,2 -2228,2299,2359,8912,-0.206896551724159,0.400000000000000,-0.206896551724158,0.386440677966068,-0.213793103448318,0.393220338983034,-0.200000000000000,0.393220338983034,-0.000000000000000,0.013793103448318,0.000000000000000,-0.013793103448317,-0.013559322033932,-0.000000000000001,0.013559322033932,-0.000000000000000,2 -2242,2302,2360,3980,-0.213793103448254,-0.393220338983059,-0.220689655172377,-0.386440677966118,-0.227586206896498,-0.393220338983059,-0.220689655172375,-0.400000000000000,0.013559322033882,0.000000000000001,-0.000000000000000,0.013793103448244,-0.013559322033882,-0.000000000000002,0.000000000000000,-0.013793103448243,2 -2243,2301,2303,2361,-0.213793103448255,-0.379661016949189,-0.220689655172377,-0.386440677966118,-0.220689655172379,-0.372881355932259,-0.227586206896500,-0.379661016949189,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448245,-0.013559322033860,-0.000000000000002,2 -2244,2302,2304,2362,-0.213793103448256,-0.366101694915329,-0.220689655172379,-0.372881355932259,-0.220689655172380,-0.359322033898399,-0.227586206896502,-0.366101694915329,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448246,-0.013559322033860,-0.000000000000002,2 -2245,2303,2305,2363,-0.213793103448258,-0.352542372881469,-0.220689655172380,-0.359322033898399,-0.220689655172382,-0.345762711864539,-0.227586206896505,-0.352542372881469,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000002,2 -2246,2304,2306,2364,-0.213793103448259,-0.338983050847605,-0.220689655172382,-0.345762711864539,-0.220689655172384,-0.332203389830670,-0.227586206896507,-0.338983050847605,0.013559322033869,0.000000000000001,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448249,-0.013559322033869,-0.000000000000002,2 -2247,2305,2307,2365,-0.213793103448260,-0.325423728813729,-0.220689655172384,-0.332203389830670,-0.220689655172385,-0.318644067796787,-0.227586206896509,-0.325423728813729,0.013559322033883,0.000000000000001,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448250,-0.013559322033883,-0.000000000000002,2 -2248,2306,2308,2366,-0.213793103448261,-0.311864406779851,-0.220689655172385,-0.318644067796787,-0.220689655172387,-0.305084745762915,-0.227586206896512,-0.311864406779851,0.013559322033872,0.000000000000001,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448252,-0.013559322033872,-0.000000000000002,2 -2249,2307,2309,2367,-0.213793103448262,-0.298305084745975,-0.220689655172387,-0.305084745762915,-0.220689655172389,-0.291525423729035,-0.227586206896514,-0.298305084745975,0.013559322033879,0.000000000000001,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033879,-0.000000000000002,2 -2250,2308,2310,2368,-0.213793103448263,-0.284745762712106,-0.220689655172389,-0.291525423729035,-0.220689655172391,-0.277966101695176,-0.227586206896516,-0.284745762712106,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448254,-0.013559322033860,-0.000000000000002,2 -2251,2309,2311,2369,-0.213793103448264,-0.271186440678246,-0.220689655172391,-0.277966101695176,-0.220689655172392,-0.264406779661316,-0.227586206896519,-0.271186440678246,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000002,2 -2252,2310,2312,2370,-0.213793103448265,-0.257627118644386,-0.220689655172392,-0.264406779661316,-0.220689655172394,-0.250847457627456,-0.227586206896521,-0.257627118644386,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000002,2 -2253,2311,2313,2371,-0.213793103448266,-0.244067796610526,-0.220689655172394,-0.250847457627456,-0.220689655172396,-0.237288135593597,-0.227586206896523,-0.244067796610526,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000002,2 -2254,2312,2314,2372,-0.213793103448267,-0.230508474576667,-0.220689655172396,-0.237288135593597,-0.220689655172397,-0.223728813559737,-0.227586206896526,-0.230508474576667,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000002,2 -2255,2313,2315,2373,-0.213793103448268,-0.216949152542807,-0.220689655172397,-0.223728813559737,-0.220689655172399,-0.210169491525877,-0.227586206896528,-0.216949152542807,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000002,2 -2256,2314,2316,2374,-0.213793103448270,-0.203389830508947,-0.220689655172399,-0.210169491525877,-0.220689655172401,-0.196610169492017,-0.227586206896530,-0.203389830508947,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000002,2 -2257,2315,2317,2375,-0.213793103448271,-0.189830508475087,-0.220689655172401,-0.196610169492017,-0.220689655172403,-0.183050847458158,-0.227586206896533,-0.189830508475088,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000002,2 -2258,2316,2318,2376,-0.213793103448272,-0.176271186441228,-0.220689655172403,-0.183050847458158,-0.220689655172404,-0.169491525424298,-0.227586206896535,-0.176271186441228,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448264,-0.013559322033860,-0.000000000000002,2 -2259,2317,2319,2377,-0.213793103448273,-0.162711864407368,-0.220689655172404,-0.169491525424298,-0.220689655172406,-0.155932203390438,-0.227586206896537,-0.162711864407368,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000002,2 -2260,2318,2320,2378,-0.213793103448274,-0.149152542373509,-0.220689655172406,-0.155932203390438,-0.220689655172408,-0.142372881356579,-0.227586206896540,-0.149152542373509,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000002,2 -2261,2319,2321,2379,-0.213793103448275,-0.135593220339649,-0.220689655172408,-0.142372881356579,-0.220689655172409,-0.128813559322719,-0.227586206896542,-0.135593220339649,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000002,2 -2262,2320,2322,2380,-0.213793103448276,-0.122033898305789,-0.220689655172409,-0.128813559322719,-0.220689655172411,-0.115254237288859,-0.227586206896544,-0.122033898305789,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000002,2 -2263,2321,2323,2381,-0.213793103448277,-0.108474576271933,-0.220689655172411,-0.115254237288859,-0.220689655172413,-0.101694915255008,-0.227586206896547,-0.108474576271933,0.013559322033852,0.000000000000001,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448270,-0.013559322033852,-0.000000000000002,2 -2264,2322,2324,2382,-0.213793103448278,-0.094915254238085,-0.220689655172413,-0.101694915255008,-0.220689655172415,-0.088135593221162,-0.227586206896549,-0.094915254238085,0.013559322033846,0.000000000000001,0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448271,-0.013559322033846,-0.000000000000002,2 -2265,2323,2325,2383,-0.213793103448279,-0.081355932204232,-0.220689655172415,-0.088135593221162,-0.220689655172416,-0.074576271187302,-0.227586206896551,-0.081355932204232,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000002,2 -2266,2324,2326,2384,-0.213793103448280,-0.067796610170372,-0.220689655172416,-0.074576271187302,-0.220689655172418,-0.061016949153442,-0.227586206896554,-0.067796610170372,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000002,2 -2267,2325,2327,2385,-0.213793103448282,-0.054237288136513,-0.220689655172418,-0.061016949153442,-0.220689655172420,-0.047457627119583,-0.227586206896556,-0.054237288136513,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000002,2 -2268,2326,2328,2386,-0.213793103448283,-0.040677966102653,-0.220689655172420,-0.047457627119583,-0.220689655172421,-0.033898305085723,-0.227586206896558,-0.040677966102653,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000002,2 -2269,2327,2329,2387,-0.213793103448284,-0.027118644068793,-0.220689655172421,-0.033898305085723,-0.220689655172423,-0.020338983051863,-0.227586206896561,-0.027118644068793,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000002,2 -2270,2328,2330,2388,-0.213793103448285,-0.013559322034933,-0.220689655172423,-0.020338983051863,-0.220689655172425,-0.006779661018004,-0.227586206896563,-0.013559322034934,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000002,2 -2271,2329,2331,2389,-0.213793103448286,-0.000000000001056,-0.220689655172425,-0.006779661018004,-0.220689655172427,0.006779661015891,-0.227586206896565,-0.000000000001056,0.013559322033895,0.000000000000001,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448280,-0.013559322033895,-0.000000000000002,2 -2272,2330,2332,2390,-0.213793103448287,0.013559322032862,-0.220689655172427,0.006779661015891,-0.220689655172428,0.020338983049833,-0.227586206896568,0.013559322032862,0.013559322033941,0.000000000000001,0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448281,-0.013559322033941,-0.000000000000002,2 -2273,2331,2333,2391,-0.213793103448288,0.027118644066798,-0.220689655172428,0.020338983049833,-0.220689655172430,0.033898305083763,-0.227586206896570,0.027118644066798,0.013559322033930,0.000000000000001,-0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000002,2 -2274,2332,2334,2392,-0.213793103448289,0.040677966100731,-0.220689655172430,0.033898305083763,-0.220689655172432,0.047457627117699,-0.227586206896572,0.040677966100731,0.013559322033937,0.000000000000001,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033937,-0.000000000000002,2 -2275,2333,2335,2393,-0.213793103448290,0.054237288134667,-0.220689655172432,0.047457627117699,-0.220689655172433,0.061016949151634,-0.227586206896575,0.054237288134667,0.013559322033935,0.000000000000001,0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448285,-0.013559322033935,-0.000000000000002,2 -2276,2334,2336,2394,-0.213793103448291,0.067796610168599,-0.220689655172433,0.061016949151634,-0.220689655172435,0.074576271185565,-0.227586206896577,0.067796610168599,0.013559322033930,0.000000000000001,-0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448286,-0.013559322033930,-0.000000000000002,2 -2277,2335,2337,2395,-0.213793103448292,0.081355932202535,-0.220689655172435,0.074576271185565,-0.220689655172437,0.088135593219506,-0.227586206896579,0.081355932202535,0.013559322033941,0.000000000000001,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448288,-0.013559322033941,-0.000000000000002,2 -2278,2336,2338,2396,-0.213793103448294,0.094915254236471,-0.220689655172437,0.088135593219506,-0.220689655172439,0.101694915253436,-0.227586206896582,0.094915254236471,0.013559322033930,0.000000000000001,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448289,-0.013559322033930,-0.000000000000002,2 -2279,2337,2339,2397,-0.213793103448295,0.108474576270409,-0.220689655172439,0.101694915253436,-0.220689655172440,0.115254237287382,-0.227586206896584,0.108474576270409,0.013559322033946,0.000000000000001,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448290,-0.013559322033946,-0.000000000000002,2 -2280,2338,2340,2398,-0.213793103448296,0.122033898304341,-0.220689655172440,0.115254237287382,-0.220689655172442,0.128813559321301,-0.227586206896586,0.122033898304341,0.013559322033919,0.000000000000001,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033919,-0.000000000000002,2 -2281,2339,2341,2399,-0.213793103448297,0.135593220338273,-0.220689655172442,0.128813559321301,-0.220689655172444,0.142372881355246,-0.227586206896589,0.135593220338273,0.013559322033945,0.000000000000001,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033945,-0.000000000000002,2 -2282,2340,2342,2400,-0.213793103448298,0.149152542372213,-0.220689655172444,0.142372881355246,-0.220689655172445,0.155932203389179,-0.227586206896591,0.149152542372213,0.013559322033933,0.000000000000001,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033933,-0.000000000000002,2 -2283,2341,2343,2401,-0.213793103448299,0.162711864406145,-0.220689655172445,0.155932203389179,-0.220689655172447,0.169491525423110,-0.227586206896593,0.162711864406145,0.013559322033931,0.000000000000001,0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448295,-0.013559322033931,-0.000000000000002,2 -2284,2342,2344,2402,-0.213793103448300,0.176271186440084,-0.220689655172447,0.169491525423110,-0.220689655172449,0.183050847457058,-0.227586206896596,0.176271186440084,0.013559322033948,0.000000000000001,-0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033947,-0.000000000000002,2 -2285,2343,2345,2403,-0.213793103448301,0.189830508474016,-0.220689655172449,0.183050847457058,-0.220689655172451,0.196610169490975,-0.227586206896598,0.189830508474016,0.013559322033917,0.000000000000001,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448298,-0.013559322033917,-0.000000000000002,2 -2286,2344,2346,2404,-0.213793103448302,0.203389830507945,-0.220689655172451,0.196610169490975,-0.220689655172452,0.210169491524915,-0.227586206896601,0.203389830507945,0.013559322033940,0.000000000000001,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448299,-0.013559322033940,-0.000000000000002,2 -2287,2345,2347,2405,-0.213793103448303,0.216949152541877,-0.220689655172452,0.210169491524915,-0.220689655172454,0.223728813558839,-0.227586206896603,0.216949152541877,0.013559322033924,0.000000000000001,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033924,-0.000000000000002,2 -2288,2346,2348,2406,-0.213793103448304,0.230508474575816,-0.220689655172454,0.223728813558839,-0.220689655172456,0.237288135592793,-0.227586206896605,0.230508474575816,0.013559322033954,0.000000000000001,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448301,-0.013559322033954,-0.000000000000002,2 -2289,2347,2349,2407,-0.213793103448306,0.244067796609748,-0.220689655172456,0.237288135592793,-0.220689655172457,0.250847457626703,-0.227586206896607,0.244067796609748,0.013559322033910,0.000000000000001,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448302,-0.013559322033910,-0.000000000000002,2 -2290,2348,2350,2408,-0.213793103448307,0.257627118643680,-0.220689655172457,0.250847457626703,-0.220689655172459,0.264406779660657,-0.227586206896610,0.257627118643680,0.013559322033954,0.000000000000001,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448304,-0.013559322033954,-0.000000000000002,2 -2291,2349,2351,2409,-0.213793103448308,0.271186440677618,-0.220689655172459,0.264406779660657,-0.220689655172461,0.277966101694579,-0.227586206896612,0.271186440677618,0.013559322033922,0.000000000000001,0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448305,-0.013559322033922,-0.000000000000002,2 -2292,2350,2352,2410,-0.213793103448309,0.284745762711550,-0.220689655172461,0.277966101694579,-0.220689655172463,0.291525423728521,-0.227586206896615,0.284745762711550,0.013559322033942,0.000000000000001,-0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448306,-0.013559322033942,-0.000000000000002,2 -2293,2351,2353,2411,-0.213793103448310,0.298305084745489,-0.220689655172463,0.291525423728521,-0.220689655172464,0.305084745762457,-0.227586206896617,0.298305084745489,0.013559322033936,0.000000000000001,-0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448307,-0.013559322033936,-0.000000000000002,2 -2294,2352,2354,2412,-0.213793103448311,0.311864406779421,-0.220689655172464,0.305084745762457,-0.220689655172466,0.318644067796385,-0.227586206896619,0.311864406779421,0.013559322033928,0.000000000000001,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448309,-0.013559322033928,-0.000000000000002,2 -2295,2353,2355,2413,-0.213793103448312,0.325423728813361,-0.220689655172466,0.318644067796385,-0.220689655172468,0.332203389830336,-0.227586206896622,0.325423728813361,0.013559322033951,0.000000000000001,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448310,-0.013559322033950,-0.000000000000002,2 -2296,2354,2356,2414,-0.213793103448313,0.338983050847293,-0.220689655172468,0.332203389830336,-0.220689655172469,0.345762711864250,-0.227586206896624,0.338983050847293,0.013559322033914,0.000000000000001,0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448311,-0.013559322033914,-0.000000000000002,2 -2297,2355,2357,2415,-0.213793103448314,0.352542372881227,-0.220689655172469,0.345762711864250,-0.220689655172471,0.359322033898203,-0.227586206896626,0.352542372881227,0.013559322033954,0.000000000000001,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448312,-0.013559322033954,-0.000000000000002,2 -2298,2356,2358,2416,-0.213793103448315,0.366101694915162,-0.220689655172471,0.359322033898203,-0.220689655172473,0.372881355932121,-0.227586206896629,0.366101694915162,0.013559322033918,0.000000000000001,0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448314,-0.013559322033918,-0.000000000000002,2 -2299,2357,2359,2417,-0.213793103448317,0.379661016949095,-0.220689655172473,0.372881355932121,-0.220689655172475,0.386440677966068,-0.227586206896631,0.379661016949094,0.013559322033946,0.000000000000001,0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448315,-0.013559322033947,-0.000000000000002,2 -2214,2300,2358,2418,-0.220689655172476,0.400000000000000,-0.213793103448318,0.393220338983034,-0.220689655172475,0.386440677966068,-0.227586206896633,0.393220338983034,0.000000000000000,0.013793103448316,0.013559322033932,0.000000000000001,0.000000000000000,-0.013793103448315,-0.013559322033932,-0.000000000000002,2 -2301,2361,2419,3994,-0.227586206896498,-0.393220338983059,-0.234482758620626,-0.386440677966118,-0.241379310344752,-0.393220338983059,-0.234482758620623,-0.400000000000000,0.013559322033882,0.000000000000002,-0.000000000000000,0.013793103448255,-0.013559322033882,-0.000000000000003,0.000000000000000,-0.013793103448254,2 -2302,2360,2362,2420,-0.227586206896500,-0.379661016949189,-0.234482758620626,-0.386440677966118,-0.234482758620629,-0.372881355932259,-0.241379310344755,-0.379661016949189,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000003,2 -2303,2361,2363,2421,-0.227586206896502,-0.366101694915329,-0.234482758620629,-0.372881355932259,-0.234482758620632,-0.359322033898399,-0.241379310344758,-0.366101694915329,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000003,2 -2304,2362,2364,2422,-0.227586206896505,-0.352542372881469,-0.234482758620632,-0.359322033898399,-0.234482758620635,-0.345762711864539,-0.241379310344762,-0.352542372881469,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000003,2 -2305,2363,2365,2423,-0.227586206896507,-0.338983050847605,-0.234482758620635,-0.345762711864539,-0.234482758620637,-0.332203389830670,-0.241379310344765,-0.338983050847605,0.013559322033869,0.000000000000002,0.000000000000000,-0.013793103448258,0.000000000000000,0.013793103448259,-0.013559322033869,-0.000000000000003,2 -2306,2364,2366,2424,-0.227586206896509,-0.325423728813729,-0.234482758620637,-0.332203389830670,-0.234482758620640,-0.318644067796787,-0.241379310344768,-0.325423728813729,0.013559322033883,0.000000000000002,-0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448260,-0.013559322033883,-0.000000000000003,2 -2307,2365,2367,2425,-0.227586206896512,-0.311864406779851,-0.234482758620640,-0.318644067796787,-0.234482758620643,-0.305084745762915,-0.241379310344772,-0.311864406779851,0.013559322033872,0.000000000000002,0.000000000000000,-0.013793103448260,0.000000000000000,0.013793103448261,-0.013559322033873,-0.000000000000003,2 -2308,2366,2368,2426,-0.227586206896514,-0.298305084745975,-0.234482758620643,-0.305084745762915,-0.234482758620646,-0.291525423729035,-0.241379310344775,-0.298305084745975,0.013559322033879,0.000000000000002,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448261,-0.013559322033879,-0.000000000000003,2 -2309,2367,2369,2427,-0.227586206896516,-0.284745762712106,-0.234482758620646,-0.291525423729035,-0.234482758620649,-0.277966101695176,-0.241379310344778,-0.284745762712106,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000003,2 -2310,2368,2370,2428,-0.227586206896519,-0.271186440678246,-0.234482758620649,-0.277966101695176,-0.234482758620652,-0.264406779661316,-0.241379310344782,-0.271186440678246,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448264,-0.013559322033860,-0.000000000000003,2 -2311,2369,2371,2429,-0.227586206896521,-0.257627118644386,-0.234482758620652,-0.264406779661316,-0.234482758620654,-0.250847457627456,-0.241379310344785,-0.257627118644386,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000003,2 -2312,2370,2372,2430,-0.227586206896523,-0.244067796610526,-0.234482758620654,-0.250847457627456,-0.234482758620657,-0.237288135593597,-0.241379310344788,-0.244067796610526,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448265,-0.013559322033859,-0.000000000000003,2 -2313,2371,2373,2431,-0.227586206896526,-0.230508474576667,-0.234482758620657,-0.237288135593597,-0.234482758620660,-0.223728813559737,-0.241379310344792,-0.230508474576667,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000003,2 -2314,2372,2374,2432,-0.227586206896528,-0.216949152542807,-0.234482758620660,-0.223728813559737,-0.234482758620663,-0.210169491525877,-0.241379310344795,-0.216949152542807,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448267,-0.013559322033860,-0.000000000000003,2 -2315,2373,2375,2433,-0.227586206896530,-0.203389830508947,-0.234482758620663,-0.210169491525877,-0.234482758620666,-0.196610169492017,-0.241379310344798,-0.203389830508947,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000003,2 -2316,2374,2376,2434,-0.227586206896533,-0.189830508475088,-0.234482758620666,-0.196610169492017,-0.234482758620669,-0.183050847458158,-0.241379310344802,-0.189830508475088,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000003,2 -2317,2375,2377,2435,-0.227586206896535,-0.176271186441228,-0.234482758620669,-0.183050847458158,-0.234482758620671,-0.169491525424298,-0.241379310344805,-0.176271186441228,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000003,2 -2318,2376,2378,2436,-0.227586206896537,-0.162711864407368,-0.234482758620671,-0.169491525424298,-0.234482758620674,-0.155932203390438,-0.241379310344808,-0.162711864407368,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000003,2 -2319,2377,2379,2437,-0.227586206896540,-0.149152542373509,-0.234482758620674,-0.155932203390438,-0.234482758620677,-0.142372881356579,-0.241379310344812,-0.149152542373509,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000003,2 -2320,2378,2380,2438,-0.227586206896542,-0.135593220339649,-0.234482758620677,-0.142372881356579,-0.234482758620680,-0.128813559322719,-0.241379310344815,-0.135593220339649,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000003,2 -2321,2379,2381,2439,-0.227586206896544,-0.122033898305789,-0.234482758620680,-0.128813559322719,-0.234482758620683,-0.115254237288859,-0.241379310344818,-0.122033898305789,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000003,2 -2322,2380,2382,2440,-0.227586206896547,-0.108474576271933,-0.234482758620683,-0.115254237288859,-0.234482758620686,-0.101694915255008,-0.241379310344822,-0.108474576271933,0.013559322033852,0.000000000000002,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448275,-0.013559322033852,-0.000000000000003,2 -2323,2381,2383,2441,-0.227586206896549,-0.094915254238085,-0.234482758620686,-0.101694915255008,-0.234482758620688,-0.088135593221162,-0.241379310344825,-0.094915254238085,0.013559322033846,0.000000000000002,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448276,-0.013559322033846,-0.000000000000003,2 -2324,2382,2384,2442,-0.227586206896551,-0.081355932204232,-0.234482758620688,-0.088135593221162,-0.234482758620691,-0.074576271187302,-0.241379310344828,-0.081355932204232,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000003,2 -2325,2383,2385,2443,-0.227586206896554,-0.067796610170372,-0.234482758620691,-0.074576271187302,-0.234482758620694,-0.061016949153442,-0.241379310344832,-0.067796610170372,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000003,2 -2326,2384,2386,2444,-0.227586206896556,-0.054237288136513,-0.234482758620694,-0.061016949153442,-0.234482758620697,-0.047457627119583,-0.241379310344835,-0.054237288136513,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000003,2 -2327,2385,2387,2445,-0.227586206896558,-0.040677966102653,-0.234482758620697,-0.047457627119583,-0.234482758620700,-0.033898305085723,-0.241379310344838,-0.040677966102653,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000003,2 -2328,2386,2388,2446,-0.227586206896561,-0.027118644068793,-0.234482758620700,-0.033898305085723,-0.234482758620703,-0.020338983051863,-0.241379310344841,-0.027118644068793,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000003,2 -2329,2387,2389,2447,-0.227586206896563,-0.013559322034934,-0.234482758620703,-0.020338983051863,-0.234482758620705,-0.006779661018004,-0.241379310344845,-0.013559322034934,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000003,2 -2330,2388,2390,2448,-0.227586206896565,-0.000000000001056,-0.234482758620705,-0.006779661018004,-0.234482758620708,0.006779661015891,-0.241379310344848,-0.000000000001056,0.013559322033895,0.000000000000002,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033895,-0.000000000000003,2 -2331,2389,2391,2449,-0.227586206896568,0.013559322032862,-0.234482758620708,0.006779661015891,-0.234482758620711,0.020338983049833,-0.241379310344851,0.013559322032862,0.013559322033941,0.000000000000002,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033941,-0.000000000000003,2 -2332,2390,2392,2450,-0.227586206896570,0.027118644066798,-0.234482758620711,0.020338983049833,-0.234482758620714,0.033898305083763,-0.241379310344855,0.027118644066798,0.013559322033930,0.000000000000002,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448285,-0.013559322033930,-0.000000000000003,2 -2333,2391,2393,2451,-0.227586206896572,0.040677966100731,-0.234482758620714,0.033898305083763,-0.234482758620717,0.047457627117699,-0.241379310344858,0.040677966100731,0.013559322033937,0.000000000000002,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448286,-0.013559322033937,-0.000000000000003,2 -2334,2392,2394,2452,-0.227586206896575,0.054237288134667,-0.234482758620717,0.047457627117699,-0.234482758620719,0.061016949151634,-0.241379310344861,0.054237288134667,0.013559322033935,0.000000000000002,0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448287,-0.013559322033935,-0.000000000000003,2 -2335,2393,2395,2453,-0.227586206896577,0.067796610168599,-0.234482758620719,0.061016949151634,-0.234482758620722,0.074576271185565,-0.241379310344865,0.067796610168599,0.013559322033930,0.000000000000002,-0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033930,-0.000000000000003,2 -2336,2394,2396,2454,-0.227586206896579,0.081355932202535,-0.234482758620722,0.074576271185565,-0.234482758620725,0.088135593219506,-0.241379310344868,0.081355932202535,0.013559322033941,0.000000000000002,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448289,-0.013559322033941,-0.000000000000003,2 -2337,2395,2397,2455,-0.227586206896582,0.094915254236471,-0.234482758620725,0.088135593219506,-0.234482758620728,0.101694915253436,-0.241379310344871,0.094915254236471,0.013559322033930,0.000000000000002,-0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448290,-0.013559322033930,-0.000000000000003,2 -2338,2396,2398,2456,-0.227586206896584,0.108474576270409,-0.234482758620728,0.101694915253436,-0.234482758620731,0.115254237287382,-0.241379310344875,0.108474576270409,0.013559322033946,0.000000000000002,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033946,-0.000000000000003,2 -2339,2397,2399,2457,-0.227586206896586,0.122033898304341,-0.234482758620731,0.115254237287382,-0.234482758620734,0.128813559321301,-0.241379310344878,0.122033898304341,0.013559322033919,0.000000000000002,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033919,-0.000000000000003,2 -2340,2398,2400,2458,-0.227586206896589,0.135593220338273,-0.234482758620734,0.128813559321301,-0.234482758620737,0.142372881355246,-0.241379310344881,0.135593220338273,0.013559322033945,0.000000000000002,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448293,-0.013559322033945,-0.000000000000003,2 -2341,2399,2401,2459,-0.227586206896591,0.149152542372213,-0.234482758620737,0.142372881355246,-0.234482758620739,0.155932203389179,-0.241379310344885,0.149152542372213,0.013559322033933,0.000000000000002,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448294,-0.013559322033933,-0.000000000000003,2 -2342,2400,2402,2460,-0.227586206896593,0.162711864406145,-0.234482758620739,0.155932203389179,-0.234482758620742,0.169491525423110,-0.241379310344888,0.162711864406145,0.013559322033931,0.000000000000002,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033931,-0.000000000000003,2 -2343,2401,2403,2461,-0.227586206896596,0.176271186440084,-0.234482758620742,0.169491525423110,-0.234482758620745,0.183050847457058,-0.241379310344891,0.176271186440084,0.013559322033947,0.000000000000002,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033948,-0.000000000000003,2 -2344,2402,2404,2462,-0.227586206896598,0.189830508474016,-0.234482758620745,0.183050847457058,-0.234482758620748,0.196610169490975,-0.241379310344895,0.189830508474016,0.013559322033917,0.000000000000002,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033917,-0.000000000000003,2 -2345,2403,2405,2463,-0.227586206896601,0.203389830507945,-0.234482758620748,0.196610169490975,-0.234482758620751,0.210169491524915,-0.241379310344898,0.203389830507945,0.013559322033940,0.000000000000002,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448298,-0.013559322033940,-0.000000000000003,2 -2346,2404,2406,2464,-0.227586206896603,0.216949152541877,-0.234482758620751,0.210169491524915,-0.234482758620754,0.223728813558839,-0.241379310344901,0.216949152541877,0.013559322033924,0.000000000000002,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448299,-0.013559322033924,-0.000000000000003,2 -2347,2405,2407,2465,-0.227586206896605,0.230508474575816,-0.234482758620754,0.223728813558839,-0.234482758620756,0.237288135592793,-0.241379310344905,0.230508474575816,0.013559322033954,0.000000000000002,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033954,-0.000000000000003,2 -2348,2406,2408,2466,-0.227586206896607,0.244067796609748,-0.234482758620756,0.237288135592793,-0.234482758620759,0.250847457626703,-0.241379310344908,0.244067796609748,0.013559322033910,0.000000000000002,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448301,-0.013559322033910,-0.000000000000003,2 -2349,2407,2409,2467,-0.227586206896610,0.257627118643680,-0.234482758620759,0.250847457626703,-0.234482758620762,0.264406779660657,-0.241379310344911,0.257627118643680,0.013559322033954,0.000000000000002,0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448302,-0.013559322033954,-0.000000000000003,2 -2350,2408,2410,2468,-0.227586206896612,0.271186440677618,-0.234482758620762,0.264406779660657,-0.234482758620765,0.277966101694579,-0.241379310344915,0.271186440677618,0.013559322033922,0.000000000000002,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448303,-0.013559322033922,-0.000000000000003,2 -2351,2409,2411,2469,-0.227586206896615,0.284745762711550,-0.234482758620765,0.277966101694579,-0.234482758620768,0.291525423728521,-0.241379310344918,0.284745762711550,0.013559322033942,0.000000000000002,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033942,-0.000000000000003,2 -2352,2410,2412,2470,-0.227586206896617,0.298305084745489,-0.234482758620768,0.291525423728521,-0.234482758620770,0.305084745762457,-0.241379310344921,0.298305084745489,0.013559322033936,0.000000000000002,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033936,-0.000000000000003,2 -2353,2411,2413,2471,-0.227586206896619,0.311864406779421,-0.234482758620770,0.305084745762457,-0.234482758620773,0.318644067796385,-0.241379310344925,0.311864406779421,0.013559322033928,0.000000000000002,0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448306,-0.013559322033928,-0.000000000000003,2 -2354,2412,2414,2472,-0.227586206896622,0.325423728813361,-0.234482758620773,0.318644067796385,-0.234482758620776,0.332203389830336,-0.241379310344928,0.325423728813361,0.013559322033950,0.000000000000002,-0.000000000000000,-0.013793103448306,0.000000000000000,0.013793103448307,-0.013559322033950,-0.000000000000003,2 -2355,2413,2415,2473,-0.227586206896624,0.338983050847293,-0.234482758620776,0.332203389830336,-0.234482758620779,0.345762711864250,-0.241379310344931,0.338983050847293,0.013559322033914,0.000000000000002,-0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448308,-0.013559322033914,-0.000000000000003,2 -2356,2414,2416,2474,-0.227586206896626,0.352542372881227,-0.234482758620779,0.345762711864250,-0.234482758620782,0.359322033898203,-0.241379310344935,0.352542372881227,0.013559322033954,0.000000000000002,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033954,-0.000000000000003,2 -2357,2415,2417,2475,-0.227586206896629,0.366101694915162,-0.234482758620782,0.359322033898203,-0.234482758620785,0.372881355932121,-0.241379310344938,0.366101694915162,0.013559322033918,0.000000000000002,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448310,-0.013559322033918,-0.000000000000003,2 -2358,2416,2418,2476,-0.227586206896631,0.379661016949094,-0.234482758620785,0.372881355932121,-0.234482758620787,0.386440677966068,-0.241379310344941,0.379661016949094,0.013559322033947,0.000000000000002,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448311,-0.013559322033946,-0.000000000000003,2 -2200,2359,2417,2477,-0.234482758620790,0.400000000000000,-0.227586206896633,0.393220338983034,-0.234482758620787,0.386440677966068,-0.241379310344945,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000002,0.000000000000000,-0.013793103448311,-0.013559322033932,-0.000000000000003,2 -2360,2420,2478,4008,-0.241379310344752,-0.393220338983059,-0.248275862068876,-0.386440677966118,-0.255172413792997,-0.393220338983059,-0.248275862068872,-0.400000000000000,0.013559322033882,0.000000000000003,-0.000000000000000,0.013793103448246,-0.013559322033882,-0.000000000000005,0.000000000000000,-0.013793103448245,2 -2361,2419,2421,2479,-0.241379310344755,-0.379661016949189,-0.248275862068876,-0.386440677966118,-0.248275862068880,-0.372881355932259,-0.255172413793001,-0.379661016949189,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000004,2 -2362,2420,2422,2480,-0.241379310344758,-0.366101694915329,-0.248275862068880,-0.372881355932259,-0.248275862068884,-0.359322033898399,-0.255172413793006,-0.366101694915329,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000004,2 -2363,2421,2423,2481,-0.241379310344762,-0.352542372881469,-0.248275862068884,-0.359322033898399,-0.248275862068888,-0.345762711864539,-0.255172413793010,-0.352542372881469,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000004,2 -2364,2422,2424,2482,-0.241379310344765,-0.338983050847605,-0.248275862068888,-0.345762711864539,-0.248275862068892,-0.332203389830670,-0.255172413793015,-0.338983050847605,0.013559322033869,0.000000000000003,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448250,-0.013559322033869,-0.000000000000004,2 -2365,2423,2425,2483,-0.241379310344768,-0.325423728813729,-0.248275862068892,-0.332203389830670,-0.248275862068896,-0.318644067796787,-0.255172413793019,-0.325423728813729,0.013559322033883,0.000000000000003,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448252,-0.013559322033883,-0.000000000000004,2 -2366,2424,2426,2484,-0.241379310344772,-0.311864406779851,-0.248275862068896,-0.318644067796787,-0.248275862068900,-0.305084745762915,-0.255172413793024,-0.311864406779851,0.013559322033873,0.000000000000003,-0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033872,-0.000000000000004,2 -2367,2425,2427,2485,-0.241379310344775,-0.298305084745975,-0.248275862068900,-0.305084745762915,-0.248275862068904,-0.291525423729035,-0.255172413793028,-0.298305084745975,0.013559322033879,0.000000000000003,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448254,-0.013559322033879,-0.000000000000004,2 -2368,2426,2428,2486,-0.241379310344778,-0.284745762712106,-0.248275862068904,-0.291525423729035,-0.248275862068907,-0.277966101695176,-0.255172413793033,-0.284745762712106,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000004,2 -2369,2427,2429,2487,-0.241379310344782,-0.271186440678246,-0.248275862068907,-0.277966101695176,-0.248275862068911,-0.264406779661316,-0.255172413793037,-0.271186440678246,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000004,2 -2370,2428,2430,2488,-0.241379310344785,-0.257627118644386,-0.248275862068911,-0.264406779661316,-0.248275862068915,-0.250847457627456,-0.255172413793042,-0.257627118644386,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000004,2 -2371,2429,2431,2489,-0.241379310344788,-0.244067796610526,-0.248275862068915,-0.250847457627456,-0.248275862068919,-0.237288135593597,-0.255172413793046,-0.244067796610526,0.013559322033859,0.000000000000003,0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000004,2 -2372,2430,2432,2490,-0.241379310344792,-0.230508474576667,-0.248275862068919,-0.237288135593597,-0.248275862068923,-0.223728813559737,-0.255172413793051,-0.230508474576667,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000004,2 -2373,2431,2433,2491,-0.241379310344795,-0.216949152542807,-0.248275862068923,-0.223728813559737,-0.248275862068927,-0.210169491525877,-0.255172413793055,-0.216949152542807,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000004,2 -2374,2432,2434,2492,-0.241379310344798,-0.203389830508947,-0.248275862068927,-0.210169491525877,-0.248275862068931,-0.196610169492017,-0.255172413793059,-0.203389830508947,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000004,2 -2375,2433,2435,2493,-0.241379310344802,-0.189830508475088,-0.248275862068931,-0.196610169492017,-0.248275862068935,-0.183050847458158,-0.255172413793064,-0.189830508475088,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000004,2 -2376,2434,2436,2494,-0.241379310344805,-0.176271186441228,-0.248275862068935,-0.183050847458158,-0.248275862068939,-0.169491525424298,-0.255172413793068,-0.176271186441228,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448264,-0.013559322033860,-0.000000000000004,2 -2377,2435,2437,2495,-0.241379310344808,-0.162711864407368,-0.248275862068939,-0.169491525424298,-0.248275862068942,-0.155932203390438,-0.255172413793073,-0.162711864407368,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000004,2 -2378,2436,2438,2496,-0.241379310344812,-0.149152542373509,-0.248275862068942,-0.155932203390438,-0.248275862068946,-0.142372881356579,-0.255172413793077,-0.149152542373509,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000004,2 -2379,2437,2439,2497,-0.241379310344815,-0.135593220339649,-0.248275862068946,-0.142372881356579,-0.248275862068950,-0.128813559322719,-0.255172413793082,-0.135593220339649,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448267,-0.013559322033860,-0.000000000000004,2 -2380,2438,2440,2498,-0.241379310344818,-0.122033898305789,-0.248275862068950,-0.128813559322719,-0.248275862068954,-0.115254237288859,-0.255172413793086,-0.122033898305789,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000004,2 -2381,2439,2441,2499,-0.241379310344822,-0.108474576271933,-0.248275862068954,-0.115254237288859,-0.248275862068958,-0.101694915255008,-0.255172413793091,-0.108474576271933,0.013559322033852,0.000000000000003,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448270,-0.013559322033852,-0.000000000000004,2 -2382,2440,2442,2500,-0.241379310344825,-0.094915254238085,-0.248275862068958,-0.101694915255008,-0.248275862068962,-0.088135593221162,-0.255172413793095,-0.094915254238085,0.013559322033846,0.000000000000003,0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448271,-0.013559322033846,-0.000000000000004,2 -2383,2441,2443,2501,-0.241379310344828,-0.081355932204232,-0.248275862068962,-0.088135593221162,-0.248275862068966,-0.074576271187302,-0.255172413793100,-0.081355932204232,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000004,2 -2384,2442,2444,2502,-0.241379310344832,-0.067796610170372,-0.248275862068966,-0.074576271187302,-0.248275862068970,-0.061016949153442,-0.255172413793104,-0.067796610170372,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000005,2 -2385,2443,2445,2503,-0.241379310344835,-0.054237288136513,-0.248275862068970,-0.061016949153442,-0.248275862068974,-0.047457627119583,-0.255172413793109,-0.054237288136513,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000004,2 -2386,2444,2446,2504,-0.241379310344838,-0.040677966102653,-0.248275862068974,-0.047457627119583,-0.248275862068978,-0.033898305085723,-0.255172413793113,-0.040677966102653,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000005,2 -2387,2445,2447,2505,-0.241379310344841,-0.027118644068793,-0.248275862068978,-0.033898305085723,-0.248275862068981,-0.020338983051863,-0.255172413793117,-0.027118644068793,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000004,2 -2388,2446,2448,2506,-0.241379310344845,-0.013559322034934,-0.248275862068981,-0.020338983051863,-0.248275862068985,-0.006779661018004,-0.255172413793122,-0.013559322034933,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000005,2 -2389,2447,2449,2507,-0.241379310344848,-0.000000000001056,-0.248275862068985,-0.006779661018004,-0.248275862068989,0.006779661015891,-0.255172413793126,-0.000000000001056,0.013559322033895,0.000000000000003,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448279,-0.013559322033895,-0.000000000000004,2 -2390,2448,2450,2508,-0.241379310344851,0.013559322032862,-0.248275862068989,0.006779661015891,-0.248275862068993,0.020338983049833,-0.255172413793131,0.013559322032862,0.013559322033941,0.000000000000003,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448280,-0.013559322033941,-0.000000000000004,2 -2391,2449,2451,2509,-0.241379310344855,0.027118644066798,-0.248275862068993,0.020338983049833,-0.248275862068997,0.033898305083763,-0.255172413793135,0.027118644066798,0.013559322033930,0.000000000000003,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448281,-0.013559322033930,-0.000000000000004,2 -2392,2450,2452,2510,-0.241379310344858,0.040677966100731,-0.248275862068997,0.033898305083763,-0.248275862069001,0.047457627117699,-0.255172413793140,0.040677966100731,0.013559322033937,0.000000000000003,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448282,-0.013559322033937,-0.000000000000004,2 -2393,2451,2453,2511,-0.241379310344861,0.054237288134667,-0.248275862069001,0.047457627117699,-0.248275862069005,0.061016949151634,-0.255172413793144,0.054237288134667,0.013559322033935,0.000000000000003,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033935,-0.000000000000004,2 -2394,2452,2454,2512,-0.241379310344865,0.067796610168599,-0.248275862069005,0.061016949151634,-0.248275862069009,0.074576271185565,-0.255172413793149,0.067796610168599,0.013559322033930,0.000000000000003,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033930,-0.000000000000004,2 -2395,2453,2455,2513,-0.241379310344868,0.081355932202535,-0.248275862069009,0.074576271185565,-0.248275862069013,0.088135593219506,-0.255172413793153,0.081355932202535,0.013559322033941,0.000000000000003,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448286,-0.013559322033941,-0.000000000000004,2 -2396,2454,2456,2514,-0.241379310344871,0.094915254236471,-0.248275862069013,0.088135593219506,-0.248275862069016,0.101694915253436,-0.255172413793158,0.094915254236471,0.013559322033930,0.000000000000003,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033930,-0.000000000000004,2 -2397,2455,2457,2515,-0.241379310344875,0.108474576270409,-0.248275862069016,0.101694915253436,-0.248275862069020,0.115254237287382,-0.255172413793162,0.108474576270409,0.013559322033946,0.000000000000003,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033946,-0.000000000000005,2 -2398,2456,2458,2516,-0.241379310344878,0.122033898304341,-0.248275862069020,0.115254237287382,-0.248275862069024,0.128813559321301,-0.255172413793167,0.122033898304341,0.013559322033919,0.000000000000003,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448289,-0.013559322033919,-0.000000000000004,2 -2399,2457,2459,2517,-0.241379310344881,0.135593220338273,-0.248275862069024,0.128813559321301,-0.248275862069028,0.142372881355246,-0.255172413793171,0.135593220338273,0.013559322033945,0.000000000000003,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448290,-0.013559322033945,-0.000000000000004,2 -2400,2458,2460,2518,-0.241379310344885,0.149152542372213,-0.248275862069028,0.142372881355246,-0.248275862069032,0.155932203389179,-0.255172413793175,0.149152542372213,0.013559322033933,0.000000000000003,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033933,-0.000000000000004,2 -2401,2459,2461,2519,-0.241379310344888,0.162711864406145,-0.248275862069032,0.155932203389179,-0.248275862069036,0.169491525423110,-0.255172413793180,0.162711864406145,0.013559322033931,0.000000000000003,0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448292,-0.013559322033931,-0.000000000000004,2 -2402,2460,2462,2520,-0.241379310344891,0.176271186440084,-0.248275862069036,0.169491525423110,-0.248275862069040,0.183050847457058,-0.255172413793184,0.176271186440084,0.013559322033948,0.000000000000003,-0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033947,-0.000000000000004,2 -2403,2461,2463,2521,-0.241379310344895,0.189830508474016,-0.248275862069040,0.183050847457058,-0.248275862069044,0.196610169490975,-0.255172413793189,0.189830508474016,0.013559322033917,0.000000000000003,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033917,-0.000000000000004,2 -2404,2462,2464,2522,-0.241379310344898,0.203389830507945,-0.248275862069044,0.196610169490975,-0.248275862069048,0.210169491524915,-0.255172413793193,0.203389830507945,0.013559322033940,0.000000000000003,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033940,-0.000000000000005,2 -2405,2463,2465,2523,-0.241379310344901,0.216949152541877,-0.248275862069048,0.210169491524915,-0.248275862069052,0.223728813558839,-0.255172413793198,0.216949152541877,0.013559322033924,0.000000000000003,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033924,-0.000000000000004,2 -2406,2464,2466,2524,-0.241379310344905,0.230508474575816,-0.248275862069052,0.223728813558839,-0.248275862069055,0.237288135592793,-0.255172413793202,0.230508474575816,0.013559322033954,0.000000000000003,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448298,-0.013559322033954,-0.000000000000004,2 -2407,2465,2467,2525,-0.241379310344908,0.244067796609748,-0.248275862069055,0.237288135592793,-0.248275862069059,0.250847457626703,-0.255172413793207,0.244067796609748,0.013559322033910,0.000000000000003,-0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448299,-0.013559322033910,-0.000000000000005,2 -2408,2466,2468,2526,-0.241379310344911,0.257627118643680,-0.248275862069059,0.250847457626703,-0.248275862069063,0.264406779660657,-0.255172413793211,0.257627118643680,0.013559322033954,0.000000000000003,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448301,-0.013559322033954,-0.000000000000004,2 -2409,2467,2469,2527,-0.241379310344915,0.271186440677618,-0.248275862069063,0.264406779660657,-0.248275862069067,0.277966101694579,-0.255172413793216,0.271186440677618,0.013559322033922,0.000000000000003,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448302,-0.013559322033922,-0.000000000000004,2 -2410,2468,2470,2528,-0.241379310344918,0.284745762711550,-0.248275862069067,0.277966101694579,-0.248275862069071,0.291525423728521,-0.255172413793220,0.284745762711550,0.013559322033942,0.000000000000003,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448303,-0.013559322033942,-0.000000000000004,2 -2411,2469,2471,2529,-0.241379310344921,0.298305084745489,-0.248275862069071,0.291525423728521,-0.248275862069075,0.305084745762457,-0.255172413793225,0.298305084745489,0.013559322033936,0.000000000000003,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033936,-0.000000000000004,2 -2412,2470,2472,2530,-0.241379310344925,0.311864406779421,-0.248275862069075,0.305084745762457,-0.248275862069079,0.318644067796385,-0.255172413793229,0.311864406779421,0.013559322033928,0.000000000000003,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033928,-0.000000000000004,2 -2413,2471,2473,2531,-0.241379310344928,0.325423728813361,-0.248275862069079,0.318644067796385,-0.248275862069083,0.332203389830336,-0.255172413793233,0.325423728813361,0.013559322033950,0.000000000000003,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448306,-0.013559322033950,-0.000000000000004,2 -2414,2472,2474,2532,-0.241379310344931,0.338983050847293,-0.248275862069083,0.332203389830336,-0.248275862069087,0.345762711864250,-0.255172413793238,0.338983050847293,0.013559322033914,0.000000000000003,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448307,-0.013559322033914,-0.000000000000005,2 -2415,2473,2475,2533,-0.241379310344935,0.352542372881227,-0.248275862069087,0.345762711864250,-0.248275862069090,0.359322033898204,-0.255172413793242,0.352542372881227,0.013559322033954,0.000000000000003,0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000004,2 -2416,2474,2476,2534,-0.241379310344938,0.366101694915162,-0.248275862069090,0.359322033898204,-0.248275862069094,0.372881355932121,-0.255172413793247,0.366101694915162,0.013559322033918,0.000000000000003,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448310,-0.013559322033918,-0.000000000000004,2 -2417,2475,2477,2535,-0.241379310344941,0.379661016949094,-0.248275862069094,0.372881355932121,-0.248275862069098,0.386440677966068,-0.255172413793251,0.379661016949095,0.013559322033946,0.000000000000003,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448311,-0.013559322033946,-0.000000000000004,2 -2186,2418,2476,2536,-0.248275862069102,0.400000000000000,-0.241379310344945,0.393220338983034,-0.248275862069098,0.386440677966068,-0.255172413793256,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000003,-0.000000000000000,-0.013793103448311,-0.013559322033932,-0.000000000000004,2 -2419,2479,2537,4022,-0.255172413792997,-0.393220338983059,-0.262068965517117,-0.386440677966118,-0.268965517241233,-0.393220338983059,-0.262068965517112,-0.400000000000000,0.013559322033882,0.000000000000005,0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000006,0.000000000000000,-0.013793103448235,2 -2420,2478,2480,2538,-0.255172413793001,-0.379661016949189,-0.262068965517117,-0.386440677966118,-0.262068965517122,-0.372881355932259,-0.268965517241238,-0.379661016949189,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000006,2 -2421,2479,2481,2539,-0.255172413793006,-0.366101694915329,-0.262068965517122,-0.372881355932259,-0.262068965517128,-0.359322033898399,-0.268965517241244,-0.366101694915329,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000006,2 -2422,2480,2482,2540,-0.255172413793010,-0.352542372881469,-0.262068965517128,-0.359322033898399,-0.262068965517133,-0.345762711864539,-0.268965517241250,-0.352542372881469,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448240,-0.013559322033860,-0.000000000000006,2 -2423,2481,2483,2541,-0.255172413793015,-0.338983050847605,-0.262068965517133,-0.345762711864539,-0.262068965517138,-0.332203389830670,-0.268965517241256,-0.338983050847605,0.013559322033869,0.000000000000004,0.000000000000000,-0.013793103448240,0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000006,2 -2424,2482,2484,2542,-0.255172413793019,-0.325423728813729,-0.262068965517138,-0.332203389830670,-0.262068965517143,-0.318644067796787,-0.268965517241262,-0.325423728813729,0.013559322033883,0.000000000000004,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000006,2 -2425,2483,2485,2543,-0.255172413793024,-0.311864406779851,-0.262068965517143,-0.318644067796787,-0.262068965517148,-0.305084745762915,-0.268965517241267,-0.311864406779851,0.013559322033872,0.000000000000004,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448244,-0.013559322033872,-0.000000000000006,2 -2426,2484,2486,2544,-0.255172413793028,-0.298305084745975,-0.262068965517148,-0.305084745762915,-0.262068965517153,-0.291525423729035,-0.268965517241273,-0.298305084745975,0.013559322033879,0.000000000000004,0.000000000000000,-0.013793103448244,0.000000000000000,0.013793103448245,-0.013559322033880,-0.000000000000006,2 -2427,2485,2487,2545,-0.255172413793033,-0.284745762712106,-0.262068965517153,-0.291525423729035,-0.262068965517158,-0.277966101695176,-0.268965517241279,-0.284745762712105,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000006,2 -2428,2486,2488,2546,-0.255172413793037,-0.271186440678246,-0.262068965517158,-0.277966101695176,-0.262068965517163,-0.264406779661316,-0.268965517241285,-0.271186440678246,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000006,2 -2429,2487,2489,2547,-0.255172413793042,-0.257627118644386,-0.262068965517163,-0.264406779661316,-0.262068965517169,-0.250847457627456,-0.268965517241290,-0.257627118644386,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448250,-0.013559322033860,-0.000000000000006,2 -2430,2488,2490,2548,-0.255172413793046,-0.244067796610526,-0.262068965517169,-0.250847457627456,-0.262068965517174,-0.237288135593596,-0.268965517241296,-0.244067796610526,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000006,2 -2431,2489,2491,2549,-0.255172413793051,-0.230508474576667,-0.262068965517174,-0.237288135593596,-0.262068965517179,-0.223728813559737,-0.268965517241302,-0.230508474576667,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448252,-0.013559322033860,-0.000000000000006,2 -2432,2490,2492,2550,-0.255172413793055,-0.216949152542807,-0.262068965517179,-0.223728813559737,-0.262068965517184,-0.210169491525877,-0.268965517241308,-0.216949152542807,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000006,2 -2433,2491,2493,2551,-0.255172413793059,-0.203389830508947,-0.262068965517184,-0.210169491525877,-0.262068965517189,-0.196610169492017,-0.268965517241313,-0.203389830508947,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448254,-0.013559322033860,-0.000000000000006,2 -2434,2492,2494,2552,-0.255172413793064,-0.189830508475088,-0.262068965517189,-0.196610169492017,-0.262068965517194,-0.183050847458158,-0.268965517241319,-0.189830508475088,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000006,2 -2435,2493,2495,2553,-0.255172413793068,-0.176271186441228,-0.262068965517194,-0.183050847458158,-0.262068965517199,-0.169491525424298,-0.268965517241325,-0.176271186441228,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000006,2 -2436,2494,2496,2554,-0.255172413793073,-0.162711864407368,-0.262068965517199,-0.169491525424298,-0.262068965517204,-0.155932203390438,-0.268965517241331,-0.162711864407368,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000006,2 -2437,2495,2497,2555,-0.255172413793077,-0.149152542373509,-0.262068965517204,-0.155932203390438,-0.262068965517209,-0.142372881356579,-0.268965517241336,-0.149152542373509,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000006,2 -2438,2496,2498,2556,-0.255172413793082,-0.135593220339649,-0.262068965517209,-0.142372881356579,-0.262068965517215,-0.128813559322719,-0.268965517241342,-0.135593220339649,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000006,2 -2439,2497,2499,2557,-0.255172413793086,-0.122033898305789,-0.262068965517215,-0.128813559322719,-0.262068965517220,-0.115254237288859,-0.268965517241348,-0.122033898305789,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000006,2 -2440,2498,2500,2558,-0.255172413793091,-0.108474576271933,-0.262068965517220,-0.115254237288859,-0.262068965517225,-0.101694915255008,-0.268965517241354,-0.108474576271933,0.013559322033852,0.000000000000004,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448264,-0.013559322033852,-0.000000000000006,2 -2441,2499,2501,2559,-0.255172413793095,-0.094915254238085,-0.262068965517225,-0.101694915255008,-0.262068965517230,-0.088135593221162,-0.268965517241359,-0.094915254238085,0.013559322033846,0.000000000000004,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448265,-0.013559322033846,-0.000000000000006,2 -2442,2500,2502,2560,-0.255172413793100,-0.081355932204232,-0.262068965517230,-0.088135593221162,-0.262068965517235,-0.074576271187302,-0.268965517241365,-0.081355932204232,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000006,2 -2443,2501,2503,2561,-0.255172413793104,-0.067796610170372,-0.262068965517235,-0.074576271187302,-0.262068965517240,-0.061016949153442,-0.268965517241371,-0.067796610170372,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000006,2 -2444,2502,2504,2562,-0.255172413793109,-0.054237288136513,-0.262068965517240,-0.061016949153442,-0.262068965517245,-0.047457627119583,-0.268965517241377,-0.054237288136513,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000006,2 -2445,2503,2505,2563,-0.255172413793113,-0.040677966102653,-0.262068965517245,-0.047457627119583,-0.262068965517250,-0.033898305085723,-0.268965517241383,-0.040677966102653,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000006,2 -2446,2504,2506,2564,-0.255172413793117,-0.027118644068793,-0.262068965517250,-0.033898305085723,-0.262068965517255,-0.020338983051863,-0.268965517241388,-0.027118644068793,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000006,2 -2447,2505,2507,2565,-0.255172413793122,-0.013559322034933,-0.262068965517255,-0.020338983051863,-0.262068965517261,-0.006779661018004,-0.268965517241394,-0.013559322034934,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000006,2 -2448,2506,2508,2566,-0.255172413793126,-0.000000000001056,-0.262068965517261,-0.006779661018004,-0.262068965517266,0.006779661015891,-0.268965517241400,-0.000000000001056,0.013559322033895,0.000000000000004,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000006,2 -2449,2507,2509,2567,-0.255172413793131,0.013559322032862,-0.262068965517266,0.006779661015891,-0.262068965517271,0.020338983049833,-0.268965517241406,0.013559322032862,0.013559322033941,0.000000000000004,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448276,-0.013559322033941,-0.000000000000006,2 -2450,2508,2510,2568,-0.255172413793135,0.027118644066798,-0.262068965517271,0.020338983049833,-0.262068965517276,0.033898305083763,-0.268965517241411,0.027118644066798,0.013559322033930,0.000000000000004,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448277,-0.013559322033930,-0.000000000000006,2 -2451,2509,2511,2569,-0.255172413793140,0.040677966100731,-0.262068965517276,0.033898305083763,-0.262068965517281,0.047457627117699,-0.268965517241417,0.040677966100731,0.013559322033937,0.000000000000004,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033937,-0.000000000000006,2 -2452,2510,2512,2570,-0.255172413793144,0.054237288134667,-0.262068965517281,0.047457627117699,-0.262068965517286,0.061016949151634,-0.268965517241423,0.054237288134667,0.013559322033935,0.000000000000004,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448279,-0.013559322033935,-0.000000000000006,2 -2453,2511,2513,2571,-0.255172413793149,0.067796610168599,-0.262068965517286,0.061016949151634,-0.262068965517291,0.074576271185565,-0.268965517241429,0.067796610168599,0.013559322033930,0.000000000000004,-0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448281,-0.013559322033930,-0.000000000000006,2 -2454,2512,2514,2572,-0.255172413793153,0.081355932202535,-0.262068965517291,0.074576271185565,-0.262068965517296,0.088135593219506,-0.268965517241434,0.081355932202535,0.013559322033941,0.000000000000004,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448282,-0.013559322033941,-0.000000000000006,2 -2455,2513,2515,2573,-0.255172413793158,0.094915254236471,-0.262068965517296,0.088135593219506,-0.262068965517301,0.101694915253436,-0.268965517241440,0.094915254236471,0.013559322033930,0.000000000000004,-0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000006,2 -2456,2514,2516,2574,-0.255172413793162,0.108474576270409,-0.262068965517301,0.101694915253436,-0.262068965517307,0.115254237287382,-0.268965517241446,0.108474576270409,0.013559322033946,0.000000000000005,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033946,-0.000000000000006,2 -2457,2515,2517,2575,-0.255172413793167,0.122033898304341,-0.262068965517307,0.115254237287382,-0.262068965517312,0.128813559321301,-0.268965517241452,0.122033898304341,0.013559322033919,0.000000000000004,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448286,-0.013559322033919,-0.000000000000006,2 -2458,2516,2518,2576,-0.255172413793171,0.135593220338273,-0.262068965517312,0.128813559321301,-0.262068965517317,0.142372881355246,-0.268965517241457,0.135593220338273,0.013559322033945,0.000000000000004,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033945,-0.000000000000006,2 -2459,2517,2519,2577,-0.255172413793175,0.149152542372213,-0.262068965517317,0.142372881355246,-0.262068965517322,0.155932203389179,-0.268965517241463,0.149152542372213,0.013559322033933,0.000000000000004,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033933,-0.000000000000006,2 -2460,2518,2520,2578,-0.255172413793180,0.162711864406145,-0.262068965517322,0.155932203389179,-0.262068965517327,0.169491525423110,-0.268965517241469,0.162711864406145,0.013559322033931,0.000000000000004,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448290,-0.013559322033931,-0.000000000000006,2 -2461,2519,2521,2579,-0.255172413793184,0.176271186440084,-0.262068965517327,0.169491525423110,-0.262068965517332,0.183050847457058,-0.268965517241475,0.176271186440084,0.013559322033947,0.000000000000004,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033947,-0.000000000000006,2 -2462,2520,2522,2580,-0.255172413793189,0.189830508474016,-0.262068965517332,0.183050847457058,-0.262068965517337,0.196610169490975,-0.268965517241480,0.189830508474016,0.013559322033917,0.000000000000004,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033917,-0.000000000000006,2 -2463,2521,2523,2581,-0.255172413793193,0.203389830507945,-0.262068965517337,0.196610169490975,-0.262068965517342,0.210169491524915,-0.268965517241486,0.203389830507945,0.013559322033940,0.000000000000005,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448293,-0.013559322033940,-0.000000000000006,2 -2464,2522,2524,2582,-0.255172413793198,0.216949152541877,-0.262068965517342,0.210169491524915,-0.262068965517347,0.223728813558839,-0.268965517241492,0.216949152541877,0.013559322033924,0.000000000000004,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448295,-0.013559322033924,-0.000000000000006,2 -2465,2523,2525,2583,-0.255172413793202,0.230508474575816,-0.262068965517347,0.223728813558839,-0.262068965517352,0.237288135592793,-0.268965517241498,0.230508474575816,0.013559322033954,0.000000000000004,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033954,-0.000000000000006,2 -2466,2524,2526,2584,-0.255172413793207,0.244067796609748,-0.262068965517352,0.237288135592793,-0.262068965517358,0.250847457626703,-0.268965517241503,0.244067796609748,0.013559322033910,0.000000000000005,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033910,-0.000000000000006,2 -2467,2525,2527,2585,-0.255172413793211,0.257627118643680,-0.262068965517358,0.250847457626703,-0.262068965517363,0.264406779660657,-0.268965517241509,0.257627118643680,0.013559322033954,0.000000000000004,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448299,-0.013559322033954,-0.000000000000006,2 -2468,2526,2528,2586,-0.255172413793216,0.271186440677618,-0.262068965517363,0.264406779660657,-0.262068965517368,0.277966101694579,-0.268965517241515,0.271186440677618,0.013559322033922,0.000000000000004,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033922,-0.000000000000006,2 -2469,2527,2529,2587,-0.255172413793220,0.284745762711550,-0.262068965517368,0.277966101694579,-0.262068965517373,0.291525423728521,-0.268965517241521,0.284745762711550,0.013559322033942,0.000000000000004,0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448301,-0.013559322033942,-0.000000000000006,2 -2470,2528,2530,2588,-0.255172413793225,0.298305084745489,-0.262068965517373,0.291525423728521,-0.262068965517378,0.305084745762457,-0.268965517241527,0.298305084745489,0.013559322033936,0.000000000000004,-0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448303,-0.013559322033936,-0.000000000000006,2 -2471,2529,2531,2589,-0.255172413793229,0.311864406779421,-0.262068965517378,0.305084745762457,-0.262068965517383,0.318644067796385,-0.268965517241532,0.311864406779421,0.013559322033928,0.000000000000004,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033928,-0.000000000000006,2 -2472,2530,2532,2590,-0.255172413793233,0.325423728813361,-0.262068965517383,0.318644067796385,-0.262068965517388,0.332203389830336,-0.268965517241538,0.325423728813361,0.013559322033950,0.000000000000004,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033950,-0.000000000000006,2 -2473,2531,2533,2591,-0.255172413793238,0.338983050847293,-0.262068965517388,0.332203389830336,-0.262068965517393,0.345762711864250,-0.268965517241544,0.338983050847293,0.013559322033914,0.000000000000005,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448307,-0.013559322033914,-0.000000000000006,2 -2474,2532,2534,2592,-0.255172413793242,0.352542372881227,-0.262068965517393,0.345762711864250,-0.262068965517399,0.359322033898204,-0.268965517241550,0.352542372881227,0.013559322033954,0.000000000000004,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000006,2 -2475,2533,2535,2593,-0.255172413793247,0.366101694915162,-0.262068965517399,0.359322033898204,-0.262068965517404,0.372881355932121,-0.268965517241555,0.366101694915162,0.013559322033918,0.000000000000004,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033918,-0.000000000000006,2 -2476,2534,2536,2594,-0.255172413793251,0.379661016949095,-0.262068965517404,0.372881355932121,-0.262068965517409,0.386440677966068,-0.268965517241561,0.379661016949094,0.013559322033946,0.000000000000004,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448310,-0.013559322033946,-0.000000000000006,2 -2172,2477,2535,2595,-0.262068965517414,0.400000000000000,-0.255172413793256,0.393220338983034,-0.262068965517409,0.386440677966068,-0.268965517241567,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000004,0.000000000000000,-0.013793103448310,-0.013559322033932,-0.000000000000006,2 -2478,2538,2596,4036,-0.268965517241233,-0.393220338983059,-0.275862068965354,-0.386440677966118,-0.282758620689469,-0.393220338983059,-0.275862068965347,-0.400000000000000,0.013559322033882,0.000000000000006,-0.000000000000000,0.013793103448237,-0.013559322033882,-0.000000000000007,0.000000000000000,-0.013793103448235,2 -2479,2537,2539,2597,-0.268965517241238,-0.379661016949189,-0.275862068965354,-0.386440677966118,-0.275862068965360,-0.372881355932259,-0.282758620689476,-0.379661016949189,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000007,2 -2480,2538,2540,2598,-0.268965517241244,-0.366101694915329,-0.275862068965360,-0.372881355932259,-0.275862068965367,-0.359322033898399,-0.282758620689483,-0.366101694915329,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448238,0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000007,2 -2481,2539,2541,2599,-0.268965517241250,-0.352542372881469,-0.275862068965367,-0.359322033898399,-0.275862068965373,-0.345762711864539,-0.282758620689490,-0.352542372881469,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448241,-0.013559322033860,-0.000000000000007,2 -2482,2540,2542,2600,-0.268965517241256,-0.338983050847605,-0.275862068965373,-0.345762711864539,-0.275862068965380,-0.332203389830670,-0.282758620689497,-0.338983050847605,0.013559322033869,0.000000000000006,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000007,2 -2483,2541,2543,2601,-0.268965517241262,-0.325423728813729,-0.275862068965380,-0.332203389830670,-0.275862068965386,-0.318644067796787,-0.282758620689504,-0.325423728813729,0.013559322033883,0.000000000000006,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000007,2 -2484,2542,2544,2602,-0.268965517241267,-0.311864406779851,-0.275862068965386,-0.318644067796787,-0.275862068965393,-0.305084745762915,-0.282758620689512,-0.311864406779851,0.013559322033872,0.000000000000006,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448245,-0.013559322033872,-0.000000000000007,2 -2485,2543,2545,2603,-0.268965517241273,-0.298305084745975,-0.275862068965393,-0.305084745762915,-0.275862068965399,-0.291525423729035,-0.282758620689519,-0.298305084745975,0.013559322033880,0.000000000000006,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448246,-0.013559322033880,-0.000000000000007,2 -2486,2544,2546,2604,-0.268965517241279,-0.284745762712105,-0.275862068965399,-0.291525423729035,-0.275862068965406,-0.277966101695176,-0.282758620689526,-0.284745762712105,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000007,2 -2487,2545,2547,2605,-0.268965517241285,-0.271186440678246,-0.275862068965406,-0.277966101695176,-0.275862068965412,-0.264406779661316,-0.282758620689533,-0.271186440678246,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000007,2 -2488,2546,2548,2606,-0.268965517241290,-0.257627118644386,-0.275862068965412,-0.264406779661316,-0.275862068965419,-0.250847457627456,-0.282758620689540,-0.257627118644386,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448250,-0.013559322033860,-0.000000000000007,2 -2489,2547,2549,2607,-0.268965517241296,-0.244067796610526,-0.275862068965419,-0.250847457627456,-0.275862068965425,-0.237288135593597,-0.282758620689547,-0.244067796610526,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448252,-0.013559322033859,-0.000000000000007,2 -2490,2548,2550,2608,-0.268965517241302,-0.230508474576667,-0.275862068965425,-0.237288135593597,-0.275862068965431,-0.223728813559737,-0.282758620689554,-0.230508474576667,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000007,2 -2491,2549,2551,2609,-0.268965517241308,-0.216949152542807,-0.275862068965431,-0.223728813559737,-0.275862068965438,-0.210169491525877,-0.282758620689562,-0.216949152542807,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000007,2 -2492,2550,2552,2610,-0.268965517241313,-0.203389830508947,-0.275862068965438,-0.210169491525877,-0.275862068965444,-0.196610169492017,-0.282758620689569,-0.203389830508947,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000007,2 -2493,2551,2553,2611,-0.268965517241319,-0.189830508475088,-0.275862068965444,-0.196610169492017,-0.275862068965451,-0.183050847458158,-0.282758620689576,-0.189830508475088,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000007,2 -2494,2552,2554,2612,-0.268965517241325,-0.176271186441228,-0.275862068965451,-0.183050847458158,-0.275862068965457,-0.169491525424298,-0.282758620689583,-0.176271186441228,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000007,2 -2495,2553,2555,2613,-0.268965517241331,-0.162711864407368,-0.275862068965457,-0.169491525424298,-0.275862068965464,-0.155932203390438,-0.282758620689590,-0.162711864407368,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000007,2 -2496,2554,2556,2614,-0.268965517241336,-0.149152542373509,-0.275862068965464,-0.155932203390438,-0.275862068965470,-0.142372881356579,-0.282758620689597,-0.149152542373509,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000007,2 -2497,2555,2557,2615,-0.268965517241342,-0.135593220339649,-0.275862068965470,-0.142372881356579,-0.275862068965477,-0.128813559322719,-0.282758620689605,-0.135593220339649,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000007,2 -2498,2556,2558,2616,-0.268965517241348,-0.122033898305789,-0.275862068965477,-0.128813559322719,-0.275862068965483,-0.115254237288859,-0.282758620689612,-0.122033898305789,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448264,-0.013559322033860,-0.000000000000007,2 -2499,2557,2559,2617,-0.268965517241354,-0.108474576271933,-0.275862068965483,-0.115254237288859,-0.275862068965489,-0.101694915255008,-0.282758620689619,-0.108474576271933,0.013559322033852,0.000000000000006,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448266,-0.013559322033852,-0.000000000000007,2 -2500,2558,2560,2618,-0.268965517241359,-0.094915254238085,-0.275862068965489,-0.101694915255008,-0.275862068965496,-0.088135593221162,-0.282758620689626,-0.094915254238085,0.013559322033846,0.000000000000006,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448267,-0.013559322033846,-0.000000000000007,2 -2501,2559,2561,2619,-0.268965517241365,-0.081355932204232,-0.275862068965496,-0.088135593221162,-0.275862068965502,-0.074576271187302,-0.282758620689633,-0.081355932204232,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000007,2 -2502,2560,2562,2620,-0.268965517241371,-0.067796610170372,-0.275862068965502,-0.074576271187302,-0.275862068965509,-0.061016949153442,-0.282758620689640,-0.067796610170372,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000007,2 -2503,2561,2563,2621,-0.268965517241377,-0.054237288136513,-0.275862068965509,-0.061016949153442,-0.275862068965515,-0.047457627119583,-0.282758620689648,-0.054237288136512,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000007,2 -2504,2562,2564,2622,-0.268965517241383,-0.040677966102653,-0.275862068965515,-0.047457627119583,-0.275862068965522,-0.033898305085723,-0.282758620689655,-0.040677966102653,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000007,2 -2505,2563,2565,2623,-0.268965517241388,-0.027118644068793,-0.275862068965522,-0.033898305085723,-0.275862068965528,-0.020338983051863,-0.282758620689662,-0.027118644068793,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000007,2 -2506,2564,2566,2624,-0.268965517241394,-0.013559322034934,-0.275862068965528,-0.020338983051863,-0.275862068965535,-0.006779661018004,-0.282758620689669,-0.013559322034933,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000007,2 -2507,2565,2567,2625,-0.268965517241400,-0.000000000001056,-0.275862068965535,-0.006779661018004,-0.275862068965541,0.006779661015891,-0.282758620689676,-0.000000000001056,0.013559322033895,0.000000000000006,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448277,-0.013559322033895,-0.000000000000007,2 -2508,2566,2568,2626,-0.268965517241406,0.013559322032862,-0.275862068965541,0.006779661015891,-0.275862068965548,0.020338983049833,-0.282758620689683,0.013559322032862,0.013559322033941,0.000000000000006,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033941,-0.000000000000007,2 -2509,2567,2569,2627,-0.268965517241411,0.027118644066798,-0.275862068965548,0.020338983049833,-0.275862068965554,0.033898305083763,-0.282758620689690,0.027118644066798,0.013559322033930,0.000000000000006,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448280,-0.013559322033930,-0.000000000000007,2 -2510,2568,2570,2628,-0.268965517241417,0.040677966100731,-0.275862068965554,0.033898305083763,-0.275862068965561,0.047457627117699,-0.282758620689697,0.040677966100731,0.013559322033937,0.000000000000006,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448281,-0.013559322033937,-0.000000000000007,2 -2511,2569,2571,2629,-0.268965517241423,0.054237288134667,-0.275862068965561,0.047457627117699,-0.275862068965567,0.061016949151634,-0.282758620689705,0.054237288134667,0.013559322033935,0.000000000000006,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448283,-0.013559322033935,-0.000000000000007,2 -2512,2570,2572,2630,-0.268965517241429,0.067796610168599,-0.275862068965567,0.061016949151634,-0.275862068965574,0.074576271185564,-0.282758620689712,0.067796610168599,0.013559322033930,0.000000000000006,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033930,-0.000000000000007,2 -2513,2571,2573,2631,-0.268965517241434,0.081355932202535,-0.275862068965574,0.074576271185564,-0.275862068965580,0.088135593219506,-0.282758620689719,0.081355932202535,0.013559322033941,0.000000000000006,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448285,-0.013559322033941,-0.000000000000007,2 -2514,2572,2574,2632,-0.268965517241440,0.094915254236471,-0.275862068965580,0.088135593219506,-0.275862068965586,0.101694915253436,-0.282758620689726,0.094915254236471,0.013559322033930,0.000000000000006,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448287,-0.013559322033930,-0.000000000000007,2 -2515,2573,2575,2633,-0.268965517241446,0.108474576270409,-0.275862068965586,0.101694915253436,-0.275862068965593,0.115254237287382,-0.282758620689733,0.108474576270409,0.013559322033946,0.000000000000006,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033946,-0.000000000000007,2 -2516,2574,2576,2634,-0.268965517241452,0.122033898304341,-0.275862068965593,0.115254237287382,-0.275862068965599,0.128813559321301,-0.282758620689741,0.122033898304341,0.013559322033919,0.000000000000006,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448290,-0.013559322033919,-0.000000000000007,2 -2517,2575,2577,2635,-0.268965517241457,0.135593220338273,-0.275862068965599,0.128813559321301,-0.275862068965606,0.142372881355246,-0.282758620689748,0.135593220338273,0.013559322033945,0.000000000000006,0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448291,-0.013559322033945,-0.000000000000007,2 -2518,2576,2578,2636,-0.268965517241463,0.149152542372213,-0.275862068965606,0.142372881355246,-0.275862068965612,0.155932203389179,-0.282758620689755,0.149152542372213,0.013559322033933,0.000000000000006,-0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033933,-0.000000000000007,2 -2519,2577,2579,2637,-0.268965517241469,0.162711864406145,-0.275862068965612,0.155932203389179,-0.275862068965619,0.169491525423110,-0.282758620689762,0.162711864406145,0.013559322033931,0.000000000000006,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033931,-0.000000000000007,2 -2520,2578,2580,2638,-0.268965517241475,0.176271186440084,-0.275862068965619,0.169491525423110,-0.275862068965625,0.183050847457058,-0.282758620689769,0.176271186440084,0.013559322033947,0.000000000000006,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033947,-0.000000000000007,2 -2521,2579,2581,2639,-0.268965517241480,0.189830508474016,-0.275862068965625,0.183050847457058,-0.275862068965632,0.196610169490975,-0.282758620689776,0.189830508474016,0.013559322033917,0.000000000000006,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448297,-0.013559322033917,-0.000000000000007,2 -2522,2580,2582,2640,-0.268965517241486,0.203389830507945,-0.275862068965632,0.196610169490975,-0.275862068965638,0.210169491524915,-0.282758620689783,0.203389830507945,0.013559322033940,0.000000000000006,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448298,-0.013559322033940,-0.000000000000007,2 -2523,2581,2583,2641,-0.268965517241492,0.216949152541877,-0.275862068965638,0.210169491524915,-0.275862068965645,0.223728813558839,-0.282758620689791,0.216949152541877,0.013559322033924,0.000000000000006,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448299,-0.013559322033924,-0.000000000000007,2 -2524,2582,2584,2642,-0.268965517241498,0.230508474575816,-0.275862068965645,0.223728813558839,-0.275862068965651,0.237288135592793,-0.282758620689798,0.230508474575816,0.013559322033954,0.000000000000006,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448301,-0.013559322033954,-0.000000000000007,2 -2525,2583,2585,2643,-0.268965517241503,0.244067796609748,-0.275862068965651,0.237288135592793,-0.275862068965657,0.250847457626703,-0.282758620689805,0.244067796609748,0.013559322033910,0.000000000000006,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448302,-0.013559322033910,-0.000000000000007,2 -2526,2584,2586,2644,-0.268965517241509,0.257627118643680,-0.275862068965657,0.250847457626703,-0.275862068965664,0.264406779660657,-0.282758620689812,0.257627118643680,0.013559322033954,0.000000000000006,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448304,-0.013559322033954,-0.000000000000007,2 -2527,2585,2587,2645,-0.268965517241515,0.271186440677618,-0.275862068965664,0.264406779660657,-0.275862068965670,0.277966101694579,-0.282758620689819,0.271186440677618,0.013559322033922,0.000000000000006,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033922,-0.000000000000007,2 -2528,2586,2588,2646,-0.268965517241521,0.284745762711550,-0.275862068965670,0.277966101694579,-0.275862068965677,0.291525423728521,-0.282758620689826,0.284745762711550,0.013559322033942,0.000000000000006,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448306,-0.013559322033942,-0.000000000000007,2 -2529,2587,2589,2647,-0.268965517241527,0.298305084745489,-0.275862068965677,0.291525423728521,-0.275862068965683,0.305084745762457,-0.282758620689833,0.298305084745489,0.013559322033936,0.000000000000006,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448308,-0.013559322033936,-0.000000000000007,2 -2530,2588,2590,2648,-0.268965517241532,0.311864406779421,-0.275862068965683,0.305084745762457,-0.275862068965690,0.318644067796385,-0.282758620689841,0.311864406779421,0.013559322033928,0.000000000000006,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033928,-0.000000000000007,2 -2531,2589,2591,2649,-0.268965517241538,0.325423728813361,-0.275862068965690,0.318644067796385,-0.275862068965696,0.332203389830336,-0.282758620689848,0.325423728813361,0.013559322033950,0.000000000000006,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448311,-0.013559322033951,-0.000000000000007,2 -2532,2590,2592,2650,-0.268965517241544,0.338983050847293,-0.275862068965696,0.332203389830336,-0.275862068965703,0.345762711864250,-0.282758620689855,0.338983050847293,0.013559322033914,0.000000000000006,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,-0.013559322033914,-0.000000000000007,2 -2533,2591,2593,2651,-0.268965517241550,0.352542372881227,-0.275862068965703,0.345762711864250,-0.275862068965709,0.359322033898204,-0.282758620689862,0.352542372881227,0.013559322033954,0.000000000000006,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448313,-0.013559322033954,-0.000000000000007,2 -2534,2592,2594,2652,-0.268965517241555,0.366101694915162,-0.275862068965709,0.359322033898204,-0.275862068965716,0.372881355932121,-0.282758620689869,0.366101694915162,0.013559322033918,0.000000000000006,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448315,-0.013559322033918,-0.000000000000007,2 -2535,2593,2595,2653,-0.268965517241561,0.379661016949094,-0.275862068965716,0.372881355932121,-0.275862068965722,0.386440677966068,-0.282758620689876,0.379661016949094,0.013559322033946,0.000000000000006,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448316,-0.013559322033946,-0.000000000000007,2 -2158,2536,2594,2654,-0.275862068965729,0.400000000000000,-0.268965517241567,0.393220338983034,-0.275862068965722,0.386440677966068,-0.282758620689884,0.393220338983034,0.000000000000000,0.013793103448317,0.013559322033932,0.000000000000006,0.000000000000000,-0.013793103448316,-0.013559322033932,-0.000000000000007,2 -2537,2597,2655,4050,-0.282758620689469,-0.393220338983059,-0.289655172413591,-0.386440677966118,-0.296551724137704,-0.393220338983059,-0.289655172413583,-0.400000000000000,0.013559322033882,0.000000000000007,-0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000009,0.000000000000000,-0.013793103448235,2 -2538,2596,2598,2656,-0.282758620689476,-0.379661016949189,-0.289655172413591,-0.386440677966118,-0.289655172413598,-0.372881355932259,-0.296551724137713,-0.379661016949189,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000008,2 -2539,2597,2599,2657,-0.282758620689483,-0.366101694915329,-0.289655172413598,-0.372881355932259,-0.289655172413606,-0.359322033898399,-0.296551724137721,-0.366101694915329,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000008,2 -2540,2598,2600,2658,-0.282758620689490,-0.352542372881469,-0.289655172413606,-0.359322033898399,-0.289655172413614,-0.345762711864539,-0.296551724137730,-0.352542372881469,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448241,-0.013559322033860,-0.000000000000009,2 -2541,2599,2601,2659,-0.282758620689497,-0.338983050847605,-0.289655172413614,-0.345762711864539,-0.289655172413622,-0.332203389830670,-0.296551724137739,-0.338983050847605,0.013559322033869,0.000000000000007,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000009,2 -2542,2600,2602,2660,-0.282758620689504,-0.325423728813729,-0.289655172413622,-0.332203389830670,-0.289655172413630,-0.318644067796787,-0.296551724137747,-0.325423728813729,0.013559322033883,0.000000000000007,0.000000000000000,-0.013793103448242,0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000008,2 -2543,2601,2603,2661,-0.282758620689512,-0.311864406779851,-0.289655172413630,-0.318644067796787,-0.289655172413638,-0.305084745762915,-0.296551724137756,-0.311864406779851,0.013559322033872,0.000000000000007,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448245,-0.013559322033872,-0.000000000000009,2 -2544,2602,2604,2662,-0.282758620689519,-0.298305084745975,-0.289655172413638,-0.305084745762915,-0.289655172413645,-0.291525423729035,-0.296551724137764,-0.298305084745975,0.013559322033880,0.000000000000007,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448246,-0.013559322033879,-0.000000000000008,2 -2545,2603,2605,2663,-0.282758620689526,-0.284745762712105,-0.289655172413645,-0.291525423729035,-0.289655172413653,-0.277966101695176,-0.296551724137773,-0.284745762712106,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000008,2 -2546,2604,2606,2664,-0.282758620689533,-0.271186440678246,-0.289655172413653,-0.277966101695176,-0.289655172413661,-0.264406779661316,-0.296551724137781,-0.271186440678246,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000009,2 -2547,2605,2607,2665,-0.282758620689540,-0.257627118644386,-0.289655172413661,-0.264406779661316,-0.289655172413669,-0.250847457627456,-0.296551724137790,-0.257627118644386,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000008,2 -2548,2606,2608,2666,-0.282758620689547,-0.244067796610526,-0.289655172413669,-0.250847457627456,-0.289655172413677,-0.237288135593597,-0.296551724137799,-0.244067796610526,0.013559322033859,0.000000000000007,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448252,-0.013559322033859,-0.000000000000008,2 -2549,2607,2609,2667,-0.282758620689554,-0.230508474576667,-0.289655172413677,-0.237288135593597,-0.289655172413685,-0.223728813559737,-0.296551724137807,-0.230508474576667,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000009,2 -2550,2608,2610,2668,-0.282758620689562,-0.216949152542807,-0.289655172413685,-0.223728813559737,-0.289655172413693,-0.210169491525877,-0.296551724137816,-0.216949152542807,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000009,2 -2551,2609,2611,2669,-0.282758620689569,-0.203389830508947,-0.289655172413693,-0.210169491525877,-0.289655172413700,-0.196610169492017,-0.296551724137824,-0.203389830508947,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000008,2 -2552,2610,2612,2670,-0.282758620689576,-0.189830508475088,-0.289655172413700,-0.196610169492017,-0.289655172413708,-0.183050847458158,-0.296551724137833,-0.189830508475088,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000008,2 -2553,2611,2613,2671,-0.282758620689583,-0.176271186441228,-0.289655172413708,-0.183050847458158,-0.289655172413716,-0.169491525424298,-0.296551724137841,-0.176271186441228,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000009,2 -2554,2612,2614,2672,-0.282758620689590,-0.162711864407368,-0.289655172413716,-0.169491525424298,-0.289655172413724,-0.155932203390438,-0.296551724137850,-0.162711864407368,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000008,2 -2555,2613,2615,2673,-0.282758620689597,-0.149152542373509,-0.289655172413724,-0.155932203390438,-0.289655172413732,-0.142372881356579,-0.296551724137858,-0.149152542373509,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000009,2 -2556,2614,2616,2674,-0.282758620689605,-0.135593220339649,-0.289655172413732,-0.142372881356579,-0.289655172413740,-0.128813559322719,-0.296551724137867,-0.135593220339649,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000009,2 -2557,2615,2617,2675,-0.282758620689612,-0.122033898305789,-0.289655172413740,-0.128813559322719,-0.289655172413748,-0.115254237288859,-0.296551724137876,-0.122033898305789,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000008,2 -2558,2616,2618,2676,-0.282758620689619,-0.108474576271933,-0.289655172413748,-0.115254237288859,-0.289655172413755,-0.101694915255008,-0.296551724137884,-0.108474576271933,0.013559322033852,0.000000000000007,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033852,-0.000000000000009,2 -2559,2617,2619,2677,-0.282758620689626,-0.094915254238085,-0.289655172413755,-0.101694915255008,-0.289655172413763,-0.088135593221162,-0.296551724137893,-0.094915254238085,0.013559322033846,0.000000000000007,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448268,-0.013559322033846,-0.000000000000008,2 -2560,2618,2620,2678,-0.282758620689633,-0.081355932204232,-0.289655172413763,-0.088135593221162,-0.289655172413771,-0.074576271187302,-0.296551724137901,-0.081355932204232,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000009,2 -2561,2619,2621,2679,-0.282758620689640,-0.067796610170372,-0.289655172413771,-0.074576271187302,-0.289655172413779,-0.061016949153442,-0.296551724137910,-0.067796610170372,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000008,2 -2562,2620,2622,2680,-0.282758620689648,-0.054237288136512,-0.289655172413779,-0.061016949153442,-0.289655172413787,-0.047457627119583,-0.296551724137918,-0.054237288136512,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000009,2 -2563,2621,2623,2681,-0.282758620689655,-0.040677966102653,-0.289655172413787,-0.047457627119583,-0.289655172413795,-0.033898305085723,-0.296551724137927,-0.040677966102653,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000009,2 -2564,2622,2624,2682,-0.282758620689662,-0.027118644068793,-0.289655172413795,-0.033898305085723,-0.289655172413803,-0.020338983051863,-0.296551724137936,-0.027118644068793,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000008,2 -2565,2623,2625,2683,-0.282758620689669,-0.013559322034933,-0.289655172413803,-0.020338983051863,-0.289655172413810,-0.006779661018004,-0.296551724137944,-0.013559322034934,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000008,2 -2566,2624,2626,2684,-0.282758620689676,-0.000000000001056,-0.289655172413810,-0.006779661018004,-0.289655172413818,0.006779661015891,-0.296551724137953,-0.000000000001056,0.013559322033895,0.000000000000007,0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448277,-0.013559322033895,-0.000000000000009,2 -2567,2625,2627,2685,-0.282758620689683,0.013559322032862,-0.289655172413818,0.006779661015891,-0.289655172413826,0.020338983049833,-0.296551724137961,0.013559322032862,0.013559322033941,0.000000000000007,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448279,-0.013559322033941,-0.000000000000008,2 -2568,2626,2628,2686,-0.282758620689690,0.027118644066798,-0.289655172413826,0.020338983049833,-0.289655172413834,0.033898305083763,-0.296551724137970,0.027118644066798,0.013559322033930,0.000000000000007,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448280,-0.013559322033930,-0.000000000000009,2 -2569,2627,2629,2687,-0.282758620689697,0.040677966100731,-0.289655172413834,0.033898305083763,-0.289655172413842,0.047457627117699,-0.296551724137978,0.040677966100731,0.013559322033937,0.000000000000007,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448281,-0.013559322033937,-0.000000000000008,2 -2570,2628,2630,2688,-0.282758620689705,0.054237288134667,-0.289655172413842,0.047457627117699,-0.289655172413850,0.061016949151634,-0.296551724137987,0.054237288134667,0.013559322033935,0.000000000000007,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448283,-0.013559322033935,-0.000000000000009,2 -2571,2629,2631,2689,-0.282758620689712,0.067796610168599,-0.289655172413850,0.061016949151634,-0.289655172413858,0.074576271185564,-0.296551724137995,0.067796610168599,0.013559322033930,0.000000000000007,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033930,-0.000000000000008,2 -2572,2630,2632,2690,-0.282758620689719,0.081355932202535,-0.289655172413858,0.074576271185564,-0.289655172413865,0.088135593219506,-0.296551724138004,0.081355932202535,0.013559322033941,0.000000000000007,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448286,-0.013559322033941,-0.000000000000009,2 -2573,2631,2633,2691,-0.282758620689726,0.094915254236471,-0.289655172413865,0.088135593219506,-0.289655172413873,0.101694915253436,-0.296551724138013,0.094915254236471,0.013559322033930,0.000000000000007,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033930,-0.000000000000009,2 -2574,2632,2634,2692,-0.282758620689733,0.108474576270409,-0.289655172413873,0.101694915253436,-0.289655172413881,0.115254237287382,-0.296551724138021,0.108474576270409,0.013559322033946,0.000000000000007,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033946,-0.000000000000008,2 -2575,2633,2635,2693,-0.282758620689741,0.122033898304341,-0.289655172413881,0.115254237287382,-0.289655172413889,0.128813559321301,-0.296551724138030,0.122033898304341,0.013559322033919,0.000000000000007,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448290,-0.013559322033919,-0.000000000000009,2 -2576,2634,2636,2694,-0.282758620689748,0.135593220338273,-0.289655172413889,0.128813559321301,-0.289655172413897,0.142372881355246,-0.296551724138038,0.135593220338273,0.013559322033945,0.000000000000007,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033945,-0.000000000000009,2 -2577,2635,2637,2695,-0.282758620689755,0.149152542372213,-0.289655172413897,0.142372881355246,-0.289655172413905,0.155932203389179,-0.296551724138047,0.149152542372213,0.013559322033933,0.000000000000007,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448293,-0.013559322033933,-0.000000000000008,2 -2578,2636,2638,2696,-0.282758620689762,0.162711864406145,-0.289655172413905,0.155932203389179,-0.289655172413913,0.169491525423110,-0.296551724138055,0.162711864406145,0.013559322033931,0.000000000000007,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448294,-0.013559322033931,-0.000000000000009,2 -2579,2637,2639,2697,-0.282758620689769,0.176271186440084,-0.289655172413913,0.169491525423110,-0.289655172413920,0.183050847457058,-0.296551724138064,0.176271186440084,0.013559322033947,0.000000000000007,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448296,-0.013559322033947,-0.000000000000009,2 -2580,2638,2640,2698,-0.282758620689776,0.189830508474016,-0.289655172413920,0.183050847457058,-0.289655172413928,0.196610169490975,-0.296551724138073,0.189830508474016,0.013559322033917,0.000000000000007,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033917,-0.000000000000008,2 -2581,2639,2641,2699,-0.282758620689783,0.203389830507945,-0.289655172413928,0.196610169490975,-0.289655172413936,0.210169491524915,-0.296551724138081,0.203389830507945,0.013559322033940,0.000000000000007,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448298,-0.013559322033940,-0.000000000000009,2 -2582,2640,2642,2700,-0.282758620689791,0.216949152541877,-0.289655172413936,0.210169491524915,-0.289655172413944,0.223728813558839,-0.296551724138090,0.216949152541877,0.013559322033924,0.000000000000007,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448300,-0.013559322033924,-0.000000000000009,2 -2583,2641,2643,2701,-0.282758620689798,0.230508474575816,-0.289655172413944,0.223728813558839,-0.289655172413952,0.237288135592793,-0.296551724138098,0.230508474575816,0.013559322033954,0.000000000000007,0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448301,-0.013559322033954,-0.000000000000008,2 -2584,2642,2644,2702,-0.282758620689805,0.244067796609748,-0.289655172413952,0.237288135592793,-0.289655172413960,0.250847457626703,-0.296551724138107,0.244067796609748,0.013559322033910,0.000000000000007,-0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448303,-0.013559322033910,-0.000000000000009,2 -2585,2643,2645,2703,-0.282758620689812,0.257627118643680,-0.289655172413960,0.250847457626703,-0.289655172413968,0.264406779660657,-0.296551724138115,0.257627118643680,0.013559322033954,0.000000000000007,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033954,-0.000000000000008,2 -2586,2644,2646,2704,-0.282758620689819,0.271186440677618,-0.289655172413968,0.264406779660657,-0.289655172413975,0.277966101694579,-0.296551724138124,0.271186440677618,0.013559322033922,0.000000000000007,0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448305,-0.013559322033922,-0.000000000000009,2 -2587,2645,2647,2705,-0.282758620689826,0.284745762711550,-0.289655172413975,0.277966101694579,-0.289655172413983,0.291525423728521,-0.296551724138132,0.284745762711550,0.013559322033942,0.000000000000007,-0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448307,-0.013559322033942,-0.000000000000008,2 -2588,2646,2648,2706,-0.282758620689833,0.298305084745489,-0.289655172413983,0.291525423728521,-0.289655172413991,0.305084745762457,-0.296551724138141,0.298305084745489,0.013559322033936,0.000000000000007,-0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448308,-0.013559322033936,-0.000000000000009,2 -2589,2647,2649,2707,-0.282758620689841,0.311864406779421,-0.289655172413991,0.305084745762457,-0.289655172413999,0.318644067796385,-0.296551724138150,0.311864406779421,0.013559322033928,0.000000000000007,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448309,-0.013559322033928,-0.000000000000008,2 -2590,2648,2650,2708,-0.282758620689848,0.325423728813361,-0.289655172413999,0.318644067796385,-0.289655172414007,0.332203389830336,-0.296551724138158,0.325423728813361,0.013559322033951,0.000000000000007,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448311,-0.013559322033950,-0.000000000000009,2 -2591,2649,2651,2709,-0.282758620689855,0.338983050847293,-0.289655172414007,0.332203389830336,-0.289655172414015,0.345762711864250,-0.296551724138167,0.338983050847293,0.013559322033914,0.000000000000007,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448312,-0.013559322033914,-0.000000000000009,2 -2592,2650,2652,2710,-0.282758620689862,0.352542372881227,-0.289655172414015,0.345762711864250,-0.289655172414023,0.359322033898204,-0.296551724138175,0.352542372881227,0.013559322033954,0.000000000000007,0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448314,-0.013559322033954,-0.000000000000009,2 -2593,2651,2653,2711,-0.282758620689869,0.366101694915162,-0.289655172414023,0.359322033898204,-0.289655172414031,0.372881355932121,-0.296551724138184,0.366101694915163,0.013559322033918,0.000000000000007,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448315,-0.013559322033918,-0.000000000000009,2 -2594,2652,2654,2712,-0.282758620689876,0.379661016949094,-0.289655172414031,0.372881355932121,-0.289655172414038,0.386440677966068,-0.296551724138193,0.379661016949095,0.013559322033946,0.000000000000007,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448317,-0.013559322033946,-0.000000000000008,2 -2144,2595,2653,2713,-0.289655172414046,0.400000000000000,-0.282758620689884,0.393220338983034,-0.289655172414038,0.386440677966068,-0.296551724138201,0.393220338983034,0.000000000000000,0.013793103448318,0.013559322033932,0.000000000000007,-0.000000000000000,-0.013793103448317,-0.013559322033932,-0.000000000000009,2 -2596,2656,2714,4064,-0.296551724137704,-0.393220338983059,-0.303448275861827,-0.386440677966118,-0.310344827585940,-0.393220338983059,-0.303448275861818,-0.400000000000000,0.013559322033882,0.000000000000009,-0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000010,0.000000000000000,-0.013793103448235,2 -2597,2655,2657,2715,-0.296551724137713,-0.379661016949189,-0.303448275861827,-0.386440677966118,-0.303448275861836,-0.372881355932259,-0.310344827585950,-0.379661016949189,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000010,2 -2598,2656,2658,2716,-0.296551724137721,-0.366101694915329,-0.303448275861836,-0.372881355932259,-0.303448275861845,-0.359322033898399,-0.310344827585960,-0.366101694915329,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000010,2 -2599,2657,2659,2717,-0.296551724137730,-0.352542372881469,-0.303448275861845,-0.359322033898399,-0.303448275861855,-0.345762711864539,-0.310344827585970,-0.352542372881469,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448241,-0.013559322033860,-0.000000000000010,2 -2600,2658,2660,2718,-0.296551724137739,-0.338983050847605,-0.303448275861855,-0.345762711864539,-0.303448275861864,-0.332203389830670,-0.310344827585980,-0.338983050847605,0.013559322033869,0.000000000000009,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000010,2 -2601,2659,2661,2719,-0.296551724137747,-0.325423728813729,-0.303448275861864,-0.332203389830670,-0.303448275861873,-0.318644067796787,-0.310344827585990,-0.325423728813729,0.013559322033883,0.000000000000008,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448244,-0.013559322033883,-0.000000000000010,2 -2602,2660,2662,2720,-0.296551724137756,-0.311864406779851,-0.303448275861873,-0.318644067796787,-0.303448275861883,-0.305084745762915,-0.310344827586000,-0.311864406779851,0.013559322033872,0.000000000000009,0.000000000000000,-0.013793103448244,0.000000000000000,0.013793103448245,-0.013559322033872,-0.000000000000010,2 -2603,2661,2663,2721,-0.296551724137764,-0.298305084745975,-0.303448275861883,-0.305084745762915,-0.303448275861892,-0.291525423729035,-0.310344827586010,-0.298305084745975,0.013559322033879,0.000000000000008,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448246,-0.013559322033879,-0.000000000000010,2 -2604,2662,2664,2722,-0.296551724137773,-0.284745762712106,-0.303448275861892,-0.291525423729035,-0.303448275861901,-0.277966101695176,-0.310344827586020,-0.284745762712106,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000010,2 -2605,2663,2665,2723,-0.296551724137781,-0.271186440678246,-0.303448275861901,-0.277966101695176,-0.303448275861910,-0.264406779661316,-0.310344827586030,-0.271186440678246,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000010,2 -2606,2664,2666,2724,-0.296551724137790,-0.257627118644386,-0.303448275861910,-0.264406779661316,-0.303448275861920,-0.250847457627456,-0.310344827586040,-0.257627118644386,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000010,2 -2607,2665,2667,2725,-0.296551724137799,-0.244067796610526,-0.303448275861920,-0.250847457627456,-0.303448275861929,-0.237288135593597,-0.310344827586050,-0.244067796610526,0.013559322033859,0.000000000000008,0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448252,-0.013559322033860,-0.000000000000010,2 -2608,2666,2668,2726,-0.296551724137807,-0.230508474576667,-0.303448275861929,-0.237288135593597,-0.303448275861938,-0.223728813559737,-0.310344827586060,-0.230508474576667,0.013559322033860,0.000000000000009,-0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000010,2 -2609,2667,2669,2727,-0.296551724137816,-0.216949152542807,-0.303448275861938,-0.223728813559737,-0.303448275861947,-0.210169491525877,-0.310344827586070,-0.216949152542807,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000010,2 -2610,2668,2670,2728,-0.296551724137824,-0.203389830508947,-0.303448275861947,-0.210169491525877,-0.303448275861957,-0.196610169492017,-0.310344827586080,-0.203389830508947,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000010,2 -2611,2669,2671,2729,-0.296551724137833,-0.189830508475088,-0.303448275861957,-0.196610169492017,-0.303448275861966,-0.183050847458158,-0.310344827586090,-0.189830508475088,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000010,2 -2612,2670,2672,2730,-0.296551724137841,-0.176271186441228,-0.303448275861966,-0.183050847458158,-0.303448275861975,-0.169491525424298,-0.310344827586100,-0.176271186441228,0.013559322033860,0.000000000000009,-0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000010,2 -2613,2671,2673,2731,-0.296551724137850,-0.162711864407368,-0.303448275861975,-0.169491525424298,-0.303448275861984,-0.155932203390438,-0.310344827586110,-0.162711864407368,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000010,2 -2614,2672,2674,2732,-0.296551724137858,-0.149152542373509,-0.303448275861984,-0.155932203390438,-0.303448275861994,-0.142372881356579,-0.310344827586120,-0.149152542373509,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000010,2 -2615,2673,2675,2733,-0.296551724137867,-0.135593220339649,-0.303448275861994,-0.142372881356579,-0.303448275862003,-0.128813559322719,-0.310344827586130,-0.135593220339649,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000010,2 -2616,2674,2676,2734,-0.296551724137876,-0.122033898305789,-0.303448275862003,-0.128813559322719,-0.303448275862012,-0.115254237288859,-0.310344827586140,-0.122033898305789,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000010,2 -2617,2675,2677,2735,-0.296551724137884,-0.108474576271933,-0.303448275862012,-0.115254237288859,-0.303448275862021,-0.101694915255008,-0.310344827586150,-0.108474576271933,0.013559322033852,0.000000000000009,-0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033852,-0.000000000000010,2 -2618,2676,2678,2736,-0.296551724137893,-0.094915254238085,-0.303448275862021,-0.101694915255008,-0.303448275862031,-0.088135593221162,-0.310344827586159,-0.094915254238085,0.013559322033846,0.000000000000008,0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448268,-0.013559322033846,-0.000000000000010,2 -2619,2677,2679,2737,-0.296551724137901,-0.081355932204232,-0.303448275862031,-0.088135593221162,-0.303448275862040,-0.074576271187302,-0.310344827586169,-0.081355932204232,0.013559322033860,0.000000000000009,-0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000010,2 -2620,2678,2680,2738,-0.296551724137910,-0.067796610170372,-0.303448275862040,-0.074576271187302,-0.303448275862049,-0.061016949153442,-0.310344827586179,-0.067796610170372,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000010,2 -2621,2679,2681,2739,-0.296551724137918,-0.054237288136512,-0.303448275862049,-0.061016949153442,-0.303448275862059,-0.047457627119583,-0.310344827586189,-0.054237288136513,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000010,2 -2622,2680,2682,2740,-0.296551724137927,-0.040677966102653,-0.303448275862059,-0.047457627119583,-0.303448275862068,-0.033898305085723,-0.310344827586199,-0.040677966102653,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000010,2 -2623,2681,2683,2741,-0.296551724137936,-0.027118644068793,-0.303448275862068,-0.033898305085723,-0.303448275862077,-0.020338983051863,-0.310344827586209,-0.027118644068793,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000010,2 -2624,2682,2684,2742,-0.296551724137944,-0.013559322034934,-0.303448275862077,-0.020338983051863,-0.303448275862086,-0.006779661018004,-0.310344827586219,-0.013559322034934,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000010,2 -2625,2683,2685,2743,-0.296551724137953,-0.000000000001056,-0.303448275862086,-0.006779661018004,-0.303448275862096,0.006779661015891,-0.310344827586229,-0.000000000001056,0.013559322033895,0.000000000000009,0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448277,-0.013559322033895,-0.000000000000010,2 -2626,2684,2686,2744,-0.296551724137961,0.013559322032862,-0.303448275862096,0.006779661015891,-0.303448275862105,0.020338983049833,-0.310344827586239,0.013559322032862,0.013559322033941,0.000000000000008,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448279,-0.013559322033941,-0.000000000000010,2 -2627,2685,2687,2745,-0.296551724137970,0.027118644066798,-0.303448275862105,0.020338983049833,-0.303448275862114,0.033898305083763,-0.310344827586249,0.027118644066798,0.013559322033930,0.000000000000009,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448280,-0.013559322033930,-0.000000000000010,2 -2628,2686,2688,2746,-0.296551724137978,0.040677966100731,-0.303448275862114,0.033898305083763,-0.303448275862123,0.047457627117699,-0.310344827586259,0.040677966100731,0.013559322033937,0.000000000000008,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448282,-0.013559322033937,-0.000000000000010,2 -2629,2687,2689,2747,-0.296551724137987,0.054237288134667,-0.303448275862123,0.047457627117699,-0.303448275862133,0.061016949151634,-0.310344827586269,0.054237288134667,0.013559322033935,0.000000000000009,-0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033935,-0.000000000000010,2 -2630,2688,2690,2748,-0.296551724137995,0.067796610168599,-0.303448275862133,0.061016949151634,-0.303448275862142,0.074576271185564,-0.310344827586279,0.067796610168599,0.013559322033930,0.000000000000008,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448284,-0.013559322033930,-0.000000000000010,2 -2631,2689,2691,2749,-0.296551724138004,0.081355932202535,-0.303448275862142,0.074576271185564,-0.303448275862151,0.088135593219506,-0.310344827586289,0.081355932202535,0.013559322033941,0.000000000000009,-0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448286,-0.013559322033941,-0.000000000000010,2 -2632,2690,2692,2750,-0.296551724138013,0.094915254236471,-0.303448275862151,0.088135593219506,-0.303448275862160,0.101694915253436,-0.310344827586299,0.094915254236471,0.013559322033930,0.000000000000009,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033930,-0.000000000000010,2 -2633,2691,2693,2751,-0.296551724138021,0.108474576270409,-0.303448275862160,0.101694915253436,-0.303448275862170,0.115254237287382,-0.310344827586309,0.108474576270409,0.013559322033946,0.000000000000008,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448289,-0.013559322033946,-0.000000000000010,2 -2634,2692,2694,2752,-0.296551724138030,0.122033898304341,-0.303448275862170,0.115254237287382,-0.303448275862179,0.128813559321301,-0.310344827586319,0.122033898304341,0.013559322033919,0.000000000000009,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448290,-0.013559322033919,-0.000000000000010,2 -2635,2693,2695,2753,-0.296551724138038,0.135593220338273,-0.303448275862179,0.128813559321301,-0.303448275862188,0.142372881355246,-0.310344827586329,0.135593220338273,0.013559322033945,0.000000000000009,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033945,-0.000000000000010,2 -2636,2694,2696,2754,-0.296551724138047,0.149152542372213,-0.303448275862188,0.142372881355246,-0.303448275862197,0.155932203389179,-0.310344827586339,0.149152542372213,0.013559322033933,0.000000000000008,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448293,-0.013559322033933,-0.000000000000010,2 -2637,2695,2697,2755,-0.296551724138055,0.162711864406145,-0.303448275862197,0.155932203389179,-0.303448275862207,0.169491525423110,-0.310344827586349,0.162711864406145,0.013559322033931,0.000000000000009,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448294,-0.013559322033931,-0.000000000000010,2 -2638,2696,2698,2756,-0.296551724138064,0.176271186440084,-0.303448275862207,0.169491525423110,-0.303448275862216,0.183050847457058,-0.310344827586359,0.176271186440084,0.013559322033947,0.000000000000009,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033948,-0.000000000000010,2 -2639,2697,2699,2757,-0.296551724138073,0.189830508474016,-0.303448275862216,0.183050847457058,-0.303448275862225,0.196610169490975,-0.310344827586369,0.189830508474016,0.013559322033917,0.000000000000008,0.000000000000000,-0.013793103448295,0.000000000000000,0.013793103448297,-0.013559322033917,-0.000000000000010,2 -2640,2698,2700,2758,-0.296551724138081,0.203389830507945,-0.303448275862225,0.196610169490975,-0.303448275862235,0.210169491524915,-0.310344827586379,0.203389830507945,0.013559322033940,0.000000000000009,-0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448298,-0.013559322033940,-0.000000000000010,2 -2641,2699,2701,2759,-0.296551724138090,0.216949152541877,-0.303448275862235,0.210169491524915,-0.303448275862244,0.223728813558839,-0.310344827586389,0.216949152541877,0.013559322033924,0.000000000000009,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448300,-0.013559322033924,-0.000000000000010,2 -2642,2700,2702,2760,-0.296551724138098,0.230508474575816,-0.303448275862244,0.223728813558839,-0.303448275862253,0.237288135592793,-0.310344827586399,0.230508474575816,0.013559322033954,0.000000000000008,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448301,-0.013559322033954,-0.000000000000010,2 -2643,2701,2703,2761,-0.296551724138107,0.244067796609748,-0.303448275862253,0.237288135592793,-0.303448275862262,0.250847457626703,-0.310344827586409,0.244067796609748,0.013559322033910,0.000000000000009,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448303,-0.013559322033910,-0.000000000000010,2 -2644,2702,2704,2762,-0.296551724138115,0.257627118643680,-0.303448275862262,0.250847457626703,-0.303448275862272,0.264406779660657,-0.310344827586419,0.257627118643680,0.013559322033954,0.000000000000008,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033954,-0.000000000000010,2 -2645,2703,2705,2763,-0.296551724138124,0.271186440677618,-0.303448275862272,0.264406779660657,-0.303448275862281,0.277966101694579,-0.310344827586429,0.271186440677618,0.013559322033922,0.000000000000009,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033922,-0.000000000000010,2 -2646,2704,2706,2764,-0.296551724138132,0.284745762711550,-0.303448275862281,0.277966101694579,-0.303448275862290,0.291525423728521,-0.310344827586439,0.284745762711550,0.013559322033942,0.000000000000008,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448307,-0.013559322033942,-0.000000000000010,2 -2647,2705,2707,2765,-0.296551724138141,0.298305084745489,-0.303448275862290,0.291525423728521,-0.303448275862299,0.305084745762457,-0.310344827586449,0.298305084745489,0.013559322033936,0.000000000000009,0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448308,-0.013559322033937,-0.000000000000010,2 -2648,2706,2708,2766,-0.296551724138150,0.311864406779421,-0.303448275862299,0.305084745762457,-0.303448275862309,0.318644067796385,-0.310344827586459,0.311864406779421,0.013559322033928,0.000000000000008,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448310,-0.013559322033928,-0.000000000000010,2 -2649,2707,2709,2767,-0.296551724138158,0.325423728813361,-0.303448275862309,0.318644067796385,-0.303448275862318,0.332203389830336,-0.310344827586469,0.325423728813361,0.013559322033950,0.000000000000009,0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448311,-0.013559322033951,-0.000000000000010,2 -2650,2708,2710,2768,-0.296551724138167,0.338983050847293,-0.303448275862318,0.332203389830336,-0.303448275862327,0.345762711864250,-0.310344827586479,0.338983050847293,0.013559322033914,0.000000000000009,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448313,-0.013559322033914,-0.000000000000010,2 -2651,2709,2711,2769,-0.296551724138175,0.352542372881227,-0.303448275862327,0.345762711864250,-0.303448275862337,0.359322033898204,-0.310344827586489,0.352542372881227,0.013559322033954,0.000000000000009,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448314,-0.013559322033954,-0.000000000000010,2 -2652,2710,2712,2770,-0.296551724138184,0.366101694915163,-0.303448275862337,0.359322033898204,-0.303448275862346,0.372881355932121,-0.310344827586498,0.366101694915162,0.013559322033918,0.000000000000009,0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448315,-0.013559322033918,-0.000000000000010,2 -2653,2711,2713,2771,-0.296551724138193,0.379661016949095,-0.303448275862346,0.372881355932121,-0.303448275862355,0.386440677966068,-0.310344827586508,0.379661016949094,0.013559322033946,0.000000000000008,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448317,-0.013559322033947,-0.000000000000010,2 -2130,2654,2712,2772,-0.303448275862364,0.400000000000000,-0.296551724138201,0.393220338983034,-0.303448275862355,0.386440677966068,-0.310344827586518,0.393220338983034,0.000000000000000,0.013793103448318,0.013559322033932,0.000000000000009,0.000000000000000,-0.013793103448317,-0.013559322033932,-0.000000000000010,2 -2655,2715,2773,4078,-0.310344827585940,-0.393220338983059,-0.317241379310063,-0.386440677966118,-0.324137931034176,-0.393220338983059,-0.317241379310053,-0.400000000000000,0.013559322033882,0.000000000000010,0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000011,0.000000000000000,-0.013793103448235,2 -2656,2714,2716,2774,-0.310344827585950,-0.379661016949189,-0.317241379310063,-0.386440677966118,-0.317241379310074,-0.372881355932259,-0.324137931034187,-0.379661016949189,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000011,2 -2657,2715,2717,2775,-0.310344827585960,-0.366101694915329,-0.317241379310074,-0.372881355932259,-0.317241379310085,-0.359322033898399,-0.324137931034199,-0.366101694915329,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000011,2 -2658,2716,2718,2776,-0.310344827585970,-0.352542372881469,-0.317241379310085,-0.359322033898399,-0.317241379310095,-0.345762711864539,-0.324137931034210,-0.352542372881469,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448241,-0.013559322033860,-0.000000000000011,2 -2659,2717,2719,2777,-0.310344827585980,-0.338983050847605,-0.317241379310095,-0.345762711864539,-0.317241379310106,-0.332203389830670,-0.324137931034221,-0.338983050847605,0.013559322033869,0.000000000000010,0.000000000000000,-0.013793103448241,0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000011,2 -2660,2718,2720,2778,-0.310344827585990,-0.325423728813729,-0.317241379310106,-0.332203389830670,-0.317241379310117,-0.318644067796787,-0.324137931034233,-0.325423728813729,0.013559322033883,0.000000000000010,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000011,2 -2661,2719,2721,2779,-0.310344827586000,-0.311864406779851,-0.317241379310117,-0.318644067796787,-0.317241379310127,-0.305084745762915,-0.324137931034244,-0.311864406779851,0.013559322033872,0.000000000000010,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448245,-0.013559322033872,-0.000000000000011,2 -2662,2720,2722,2780,-0.310344827586010,-0.298305084745975,-0.317241379310127,-0.305084745762915,-0.317241379310138,-0.291525423729035,-0.324137931034255,-0.298305084745975,0.013559322033879,0.000000000000010,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448246,-0.013559322033879,-0.000000000000011,2 -2663,2721,2723,2781,-0.310344827586020,-0.284745762712106,-0.317241379310138,-0.291525423729035,-0.317241379310149,-0.277966101695176,-0.324137931034267,-0.284745762712105,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000011,2 -2664,2722,2724,2782,-0.310344827586030,-0.271186440678246,-0.317241379310149,-0.277966101695176,-0.317241379310159,-0.264406779661316,-0.324137931034278,-0.271186440678246,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000011,2 -2665,2723,2725,2783,-0.310344827586040,-0.257627118644386,-0.317241379310159,-0.264406779661316,-0.317241379310170,-0.250847457627456,-0.324137931034289,-0.257627118644386,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448250,-0.013559322033860,-0.000000000000011,2 -2666,2724,2726,2784,-0.310344827586050,-0.244067796610526,-0.317241379310170,-0.250847457627456,-0.317241379310180,-0.237288135593596,-0.324137931034300,-0.244067796610526,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000011,2 -2667,2725,2727,2785,-0.310344827586060,-0.230508474576667,-0.317241379310180,-0.237288135593596,-0.317241379310191,-0.223728813559737,-0.324137931034312,-0.230508474576667,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000011,2 -2668,2726,2728,2786,-0.310344827586070,-0.216949152542807,-0.317241379310191,-0.223728813559737,-0.317241379310202,-0.210169491525877,-0.324137931034323,-0.216949152542807,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448254,-0.013559322033860,-0.000000000000011,2 -2669,2727,2729,2787,-0.310344827586080,-0.203389830508947,-0.317241379310202,-0.210169491525877,-0.317241379310213,-0.196610169492017,-0.324137931034335,-0.203389830508947,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000011,2 -2670,2728,2730,2788,-0.310344827586090,-0.189830508475088,-0.317241379310213,-0.196610169492017,-0.317241379310223,-0.183050847458158,-0.324137931034346,-0.189830508475088,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000011,2 -2671,2729,2731,2789,-0.310344827586100,-0.176271186441228,-0.317241379310223,-0.183050847458158,-0.317241379310234,-0.169491525424298,-0.324137931034357,-0.176271186441228,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000011,2 -2672,2730,2732,2790,-0.310344827586110,-0.162711864407368,-0.317241379310234,-0.169491525424298,-0.317241379310244,-0.155932203390438,-0.324137931034368,-0.162711864407368,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000011,2 -2673,2731,2733,2791,-0.310344827586120,-0.149152542373509,-0.317241379310244,-0.155932203390438,-0.317241379310255,-0.142372881356579,-0.324137931034380,-0.149152542373509,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000011,2 -2674,2732,2734,2792,-0.310344827586130,-0.135593220339649,-0.317241379310255,-0.142372881356579,-0.317241379310266,-0.128813559322719,-0.324137931034391,-0.135593220339649,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000011,2 -2675,2733,2735,2793,-0.310344827586140,-0.122033898305789,-0.317241379310266,-0.128813559322719,-0.317241379310276,-0.115254237288859,-0.324137931034402,-0.122033898305789,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448264,-0.013559322033860,-0.000000000000011,2 -2676,2734,2736,2794,-0.310344827586150,-0.108474576271933,-0.317241379310276,-0.115254237288859,-0.317241379310287,-0.101694915255008,-0.324137931034414,-0.108474576271933,0.013559322033852,0.000000000000010,0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448265,-0.013559322033852,-0.000000000000011,2 -2677,2735,2737,2795,-0.310344827586159,-0.094915254238085,-0.317241379310287,-0.101694915255008,-0.317241379310298,-0.088135593221162,-0.324137931034425,-0.094915254238085,0.013559322033846,0.000000000000010,-0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448266,-0.013559322033846,-0.000000000000011,2 -2678,2736,2738,2796,-0.310344827586169,-0.081355932204232,-0.317241379310298,-0.088135593221162,-0.317241379310308,-0.074576271187302,-0.324137931034436,-0.081355932204232,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000011,2 -2679,2737,2739,2797,-0.310344827586179,-0.067796610170372,-0.317241379310308,-0.074576271187302,-0.317241379310319,-0.061016949153442,-0.324137931034448,-0.067796610170372,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000011,2 -2680,2738,2740,2798,-0.310344827586189,-0.054237288136513,-0.317241379310319,-0.061016949153442,-0.317241379310330,-0.047457627119583,-0.324137931034459,-0.054237288136513,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000012,2 -2681,2739,2741,2799,-0.310344827586199,-0.040677966102653,-0.317241379310330,-0.047457627119583,-0.317241379310340,-0.033898305085723,-0.324137931034471,-0.040677966102653,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000011,2 -2682,2740,2742,2800,-0.310344827586209,-0.027118644068793,-0.317241379310340,-0.033898305085723,-0.317241379310351,-0.020338983051863,-0.324137931034482,-0.027118644068793,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000011,2 -2683,2741,2743,2801,-0.310344827586219,-0.013559322034934,-0.317241379310351,-0.020338983051863,-0.317241379310361,-0.006779661018004,-0.324137931034493,-0.013559322034934,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000011,2 -2684,2742,2744,2802,-0.310344827586229,-0.000000000001056,-0.317241379310361,-0.006779661018004,-0.317241379310372,0.006779661015891,-0.324137931034504,-0.000000000001056,0.013559322033895,0.000000000000010,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448276,-0.013559322033895,-0.000000000000011,2 -2685,2743,2745,2803,-0.310344827586239,0.013559322032862,-0.317241379310372,0.006779661015891,-0.317241379310383,0.020338983049833,-0.324137931034516,0.013559322032862,0.013559322033941,0.000000000000010,0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448277,-0.013559322033941,-0.000000000000011,2 -2686,2744,2746,2804,-0.310344827586249,0.027118644066798,-0.317241379310383,0.020338983049833,-0.317241379310394,0.033898305083763,-0.324137931034527,0.027118644066798,0.013559322033930,0.000000000000010,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033930,-0.000000000000011,2 -2687,2745,2747,2805,-0.310344827586259,0.040677966100731,-0.317241379310394,0.033898305083763,-0.317241379310404,0.047457627117699,-0.324137931034538,0.040677966100731,0.013559322033937,0.000000000000010,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448280,-0.013559322033937,-0.000000000000011,2 -2688,2746,2748,2806,-0.310344827586269,0.054237288134667,-0.317241379310404,0.047457627117699,-0.317241379310415,0.061016949151634,-0.324137931034550,0.054237288134667,0.013559322033935,0.000000000000010,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448281,-0.013559322033935,-0.000000000000011,2 -2689,2747,2749,2807,-0.310344827586279,0.067796610168599,-0.317241379310415,0.061016949151634,-0.317241379310425,0.074576271185564,-0.324137931034561,0.067796610168599,0.013559322033930,0.000000000000010,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448282,-0.013559322033930,-0.000000000000011,2 -2690,2748,2750,2808,-0.310344827586289,0.081355932202535,-0.317241379310425,0.074576271185564,-0.317241379310436,0.088135593219506,-0.324137931034572,0.081355932202535,0.013559322033941,0.000000000000010,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448284,-0.013559322033941,-0.000000000000011,2 -2691,2749,2751,2809,-0.310344827586299,0.094915254236471,-0.317241379310436,0.088135593219506,-0.317241379310447,0.101694915253436,-0.324137931034584,0.094915254236471,0.013559322033930,0.000000000000010,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448285,-0.013559322033930,-0.000000000000011,2 -2692,2750,2752,2810,-0.310344827586309,0.108474576270409,-0.317241379310447,0.101694915253436,-0.317241379310457,0.115254237287382,-0.324137931034595,0.108474576270409,0.013559322033946,0.000000000000010,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448287,-0.013559322033946,-0.000000000000011,2 -2693,2751,2753,2811,-0.310344827586319,0.122033898304341,-0.317241379310457,0.115254237287382,-0.317241379310468,0.128813559321301,-0.324137931034606,0.122033898304341,0.013559322033919,0.000000000000010,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033919,-0.000000000000011,2 -2694,2752,2754,2812,-0.310344827586329,0.135593220338273,-0.317241379310468,0.128813559321301,-0.317241379310479,0.142372881355246,-0.324137931034618,0.135593220338273,0.013559322033945,0.000000000000010,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448289,-0.013559322033945,-0.000000000000011,2 -2695,2753,2755,2813,-0.310344827586339,0.149152542372213,-0.317241379310479,0.142372881355246,-0.317241379310489,0.155932203389179,-0.324137931034629,0.149152542372213,0.013559322033933,0.000000000000010,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448291,-0.013559322033933,-0.000000000000011,2 -2696,2754,2756,2814,-0.310344827586349,0.162711864406145,-0.317241379310489,0.155932203389179,-0.317241379310500,0.169491525423110,-0.324137931034640,0.162711864406145,0.013559322033931,0.000000000000010,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033931,-0.000000000000011,2 -2697,2755,2757,2815,-0.310344827586359,0.176271186440084,-0.317241379310500,0.169491525423110,-0.317241379310511,0.183050847457058,-0.324137931034652,0.176271186440084,0.013559322033948,0.000000000000010,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448293,-0.013559322033948,-0.000000000000011,2 -2698,2756,2758,2816,-0.310344827586369,0.189830508474016,-0.317241379310511,0.183050847457058,-0.317241379310521,0.196610169490975,-0.324137931034663,0.189830508474016,0.013559322033917,0.000000000000010,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448295,-0.013559322033917,-0.000000000000011,2 -2699,2757,2759,2817,-0.310344827586379,0.203389830507945,-0.317241379310521,0.196610169490975,-0.317241379310532,0.210169491524915,-0.324137931034674,0.203389830507945,0.013559322033940,0.000000000000010,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033940,-0.000000000000011,2 -2700,2758,2760,2818,-0.310344827586389,0.216949152541877,-0.317241379310532,0.210169491524915,-0.317241379310543,0.223728813558839,-0.324137931034686,0.216949152541877,0.013559322033924,0.000000000000010,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033924,-0.000000000000011,2 -2701,2759,2761,2819,-0.310344827586399,0.230508474575816,-0.317241379310543,0.223728813558839,-0.317241379310553,0.237288135592793,-0.324137931034697,0.230508474575816,0.013559322033954,0.000000000000010,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448299,-0.013559322033954,-0.000000000000011,2 -2702,2760,2762,2820,-0.310344827586409,0.244067796609748,-0.317241379310553,0.237288135592793,-0.317241379310564,0.250847457626703,-0.324137931034708,0.244067796609748,0.013559322033910,0.000000000000010,0.000000000000000,-0.013793103448299,0.000000000000000,0.013793103448300,-0.013559322033910,-0.000000000000011,2 -2703,2761,2763,2821,-0.310344827586419,0.257627118643680,-0.317241379310564,0.250847457626703,-0.317241379310575,0.264406779660657,-0.324137931034720,0.257627118643680,0.013559322033954,0.000000000000010,-0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448302,-0.013559322033954,-0.000000000000011,2 -2704,2762,2764,2822,-0.310344827586429,0.271186440677618,-0.317241379310575,0.264406779660657,-0.317241379310585,0.277966101694579,-0.324137931034731,0.271186440677618,0.013559322033922,0.000000000000010,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448303,-0.013559322033922,-0.000000000000011,2 -2705,2763,2765,2823,-0.310344827586439,0.284745762711550,-0.317241379310585,0.277966101694579,-0.317241379310596,0.291525423728521,-0.324137931034742,0.284745762711550,0.013559322033942,0.000000000000010,0.000000000000000,-0.013793103448303,0.000000000000000,0.013793103448304,-0.013559322033942,-0.000000000000011,2 -2706,2764,2766,2824,-0.310344827586449,0.298305084745489,-0.317241379310596,0.291525423728521,-0.317241379310606,0.305084745762457,-0.324137931034754,0.298305084745489,0.013559322033937,0.000000000000010,-0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033936,-0.000000000000011,2 -2707,2765,2767,2825,-0.310344827586459,0.311864406779421,-0.317241379310606,0.305084745762457,-0.317241379310617,0.318644067796385,-0.324137931034765,0.311864406779421,0.013559322033928,0.000000000000010,0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448307,-0.013559322033928,-0.000000000000011,2 -2708,2766,2768,2826,-0.310344827586469,0.325423728813361,-0.317241379310617,0.318644067796385,-0.317241379310628,0.332203389830336,-0.324137931034776,0.325423728813361,0.013559322033951,0.000000000000010,-0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448308,-0.013559322033950,-0.000000000000011,2 -2709,2767,2769,2827,-0.310344827586479,0.338983050847293,-0.317241379310628,0.332203389830336,-0.317241379310638,0.345762711864250,-0.324137931034788,0.338983050847293,0.013559322033914,0.000000000000010,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448310,-0.013559322033914,-0.000000000000011,2 -2710,2768,2770,2828,-0.310344827586489,0.352542372881227,-0.317241379310638,0.345762711864250,-0.317241379310649,0.359322033898203,-0.324137931034799,0.352542372881227,0.013559322033954,0.000000000000010,0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448311,-0.013559322033954,-0.000000000000011,2 -2711,2769,2771,2829,-0.310344827586498,0.366101694915162,-0.317241379310649,0.359322033898203,-0.317241379310660,0.372881355932121,-0.324137931034810,0.366101694915162,0.013559322033918,0.000000000000010,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448313,-0.013559322033918,-0.000000000000011,2 -2712,2770,2772,2830,-0.310344827586508,0.379661016949094,-0.317241379310660,0.372881355932121,-0.317241379310670,0.386440677966068,-0.324137931034822,0.379661016949095,0.013559322033947,0.000000000000010,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448314,-0.013559322033946,-0.000000000000011,2 -2116,2713,2771,2831,-0.317241379310681,0.400000000000000,-0.310344827586518,0.393220338983034,-0.317241379310670,0.386440677966068,-0.324137931034833,0.393220338983034,0.000000000000000,0.013793103448315,0.013559322033932,0.000000000000010,0.000000000000000,-0.013793103448314,-0.013559322033932,-0.000000000000011,2 -2714,2774,2832,4092,-0.324137931034176,-0.393220338983059,-0.331034482758300,-0.386440677966118,-0.337931034482412,-0.393220338983059,-0.331034482758288,-0.400000000000000,0.013559322033882,0.000000000000011,-0.000000000000000,0.013793103448237,-0.013559322033882,-0.000000000000013,0.000000000000000,-0.013793103448235,2 -2715,2773,2775,2833,-0.324137931034187,-0.379661016949189,-0.331034482758300,-0.386440677966118,-0.331034482758312,-0.372881355932259,-0.337931034482424,-0.379661016949189,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000013,2 -2716,2774,2776,2834,-0.324137931034199,-0.366101694915329,-0.331034482758312,-0.372881355932259,-0.331034482758324,-0.359322033898399,-0.337931034482437,-0.366101694915329,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000013,2 -2717,2775,2777,2835,-0.324137931034210,-0.352542372881469,-0.331034482758324,-0.359322033898399,-0.331034482758336,-0.345762711864539,-0.337931034482450,-0.352542372881469,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448240,-0.013559322033860,-0.000000000000013,2 -2718,2776,2778,2836,-0.324137931034221,-0.338983050847605,-0.331034482758336,-0.345762711864539,-0.331034482758348,-0.332203389830670,-0.337931034482462,-0.338983050847605,0.013559322033869,0.000000000000011,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000012,2 -2719,2777,2779,2837,-0.324137931034233,-0.325423728813729,-0.331034482758348,-0.332203389830670,-0.331034482758360,-0.318644067796787,-0.337931034482475,-0.325423728813729,0.013559322033883,0.000000000000011,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000013,2 -2720,2778,2780,2838,-0.324137931034244,-0.311864406779851,-0.331034482758360,-0.318644067796787,-0.331034482758372,-0.305084745762915,-0.337931034482488,-0.311864406779851,0.013559322033872,0.000000000000011,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448244,-0.013559322033872,-0.000000000000013,2 -2721,2779,2781,2839,-0.324137931034255,-0.298305084745975,-0.331034482758372,-0.305084745762915,-0.331034482758384,-0.291525423729035,-0.337931034482500,-0.298305084745975,0.013559322033879,0.000000000000011,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448246,-0.013559322033879,-0.000000000000013,2 -2722,2780,2782,2840,-0.324137931034267,-0.284745762712105,-0.331034482758384,-0.291525423729035,-0.331034482758396,-0.277966101695176,-0.337931034482513,-0.284745762712106,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000013,2 -2723,2781,2783,2841,-0.324137931034278,-0.271186440678246,-0.331034482758396,-0.277966101695176,-0.331034482758408,-0.264406779661316,-0.337931034482525,-0.271186440678246,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000012,2 -2724,2782,2784,2842,-0.324137931034289,-0.257627118644386,-0.331034482758408,-0.264406779661316,-0.331034482758420,-0.250847457627456,-0.337931034482538,-0.257627118644386,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448250,-0.013559322033860,-0.000000000000013,2 -2725,2783,2785,2843,-0.324137931034300,-0.244067796610526,-0.331034482758420,-0.250847457627456,-0.331034482758432,-0.237288135593596,-0.337931034482551,-0.244067796610526,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000013,2 -2726,2784,2786,2844,-0.324137931034312,-0.230508474576667,-0.331034482758432,-0.237288135593596,-0.331034482758444,-0.223728813559737,-0.337931034482563,-0.230508474576667,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448252,-0.013559322033860,-0.000000000000013,2 -2727,2785,2787,2845,-0.324137931034323,-0.216949152542807,-0.331034482758444,-0.223728813559737,-0.331034482758456,-0.210169491525877,-0.337931034482576,-0.216949152542807,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000013,2 -2728,2786,2788,2846,-0.324137931034335,-0.203389830508947,-0.331034482758456,-0.210169491525877,-0.331034482758468,-0.196610169492017,-0.337931034482589,-0.203389830508947,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000013,2 -2729,2787,2789,2847,-0.324137931034346,-0.189830508475088,-0.331034482758468,-0.196610169492017,-0.331034482758480,-0.183050847458158,-0.337931034482601,-0.189830508475088,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000013,2 -2730,2788,2790,2848,-0.324137931034357,-0.176271186441228,-0.331034482758480,-0.183050847458158,-0.331034482758491,-0.169491525424298,-0.337931034482614,-0.176271186441228,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000013,2 -2731,2789,2791,2849,-0.324137931034368,-0.162711864407368,-0.331034482758491,-0.169491525424298,-0.331034482758503,-0.155932203390438,-0.337931034482626,-0.162711864407368,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000013,2 -2732,2790,2792,2850,-0.324137931034380,-0.149152542373509,-0.331034482758503,-0.155932203390438,-0.331034482758515,-0.142372881356579,-0.337931034482639,-0.149152542373509,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000013,2 -2733,2791,2793,2851,-0.324137931034391,-0.135593220339649,-0.331034482758515,-0.142372881356579,-0.331034482758527,-0.128813559322719,-0.337931034482652,-0.135593220339649,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000012,2 -2734,2792,2794,2852,-0.324137931034402,-0.122033898305789,-0.331034482758527,-0.128813559322719,-0.331034482758539,-0.115254237288859,-0.337931034482664,-0.122033898305789,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000013,2 -2735,2793,2795,2853,-0.324137931034414,-0.108474576271933,-0.331034482758539,-0.115254237288859,-0.331034482758551,-0.101694915255007,-0.337931034482677,-0.108474576271933,0.013559322033852,0.000000000000011,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448264,-0.013559322033852,-0.000000000000012,2 -2736,2794,2796,2854,-0.324137931034425,-0.094915254238085,-0.331034482758551,-0.101694915255007,-0.331034482758563,-0.088135593221162,-0.337931034482689,-0.094915254238085,0.013559322033846,0.000000000000011,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448265,-0.013559322033846,-0.000000000000013,2 -2737,2795,2797,2855,-0.324137931034436,-0.081355932204232,-0.331034482758563,-0.088135593221162,-0.331034482758575,-0.074576271187302,-0.337931034482702,-0.081355932204232,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000013,2 -2738,2796,2798,2856,-0.324137931034448,-0.067796610170372,-0.331034482758575,-0.074576271187302,-0.331034482758587,-0.061016949153442,-0.337931034482715,-0.067796610170372,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000013,2 -2739,2797,2799,2857,-0.324137931034459,-0.054237288136513,-0.331034482758587,-0.061016949153442,-0.331034482758599,-0.047457627119583,-0.337931034482728,-0.054237288136513,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000013,2 -2740,2798,2800,2858,-0.324137931034471,-0.040677966102653,-0.331034482758599,-0.047457627119583,-0.331034482758611,-0.033898305085723,-0.337931034482740,-0.040677966102653,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000013,2 -2741,2799,2801,2859,-0.324137931034482,-0.027118644068793,-0.331034482758611,-0.033898305085723,-0.331034482758623,-0.020338983051863,-0.337931034482753,-0.027118644068793,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000013,2 -2742,2800,2802,2860,-0.324137931034493,-0.013559322034934,-0.331034482758623,-0.020338983051863,-0.331034482758635,-0.006779661018004,-0.337931034482765,-0.013559322034933,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000013,2 -2743,2801,2803,2861,-0.324137931034504,-0.000000000001056,-0.331034482758635,-0.006779661018004,-0.331034482758647,0.006779661015891,-0.337931034482778,-0.000000000001056,0.013559322033895,0.000000000000011,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000013,2 -2744,2802,2804,2862,-0.324137931034516,0.013559322032862,-0.331034482758647,0.006779661015891,-0.331034482758659,0.020338983049833,-0.337931034482791,0.013559322032862,0.013559322033941,0.000000000000011,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448275,-0.013559322033941,-0.000000000000013,2 -2745,2803,2805,2863,-0.324137931034527,0.027118644066798,-0.331034482758659,0.020338983049833,-0.331034482758671,0.033898305083763,-0.337931034482803,0.027118644066798,0.013559322033930,0.000000000000011,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448277,-0.013559322033930,-0.000000000000013,2 -2746,2804,2806,2864,-0.324137931034538,0.040677966100731,-0.331034482758671,0.033898305083763,-0.331034482758683,0.047457627117699,-0.337931034482816,0.040677966100731,0.013559322033937,0.000000000000011,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033937,-0.000000000000012,2 -2747,2805,2807,2865,-0.324137931034550,0.054237288134667,-0.331034482758683,0.047457627117699,-0.331034482758695,0.061016949151634,-0.337931034482828,0.054237288134667,0.013559322033935,0.000000000000011,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448279,-0.013559322033935,-0.000000000000013,2 -2748,2806,2808,2866,-0.324137931034561,0.067796610168599,-0.331034482758695,0.061016949151634,-0.331034482758707,0.074576271185564,-0.337931034482841,0.067796610168599,0.013559322033930,0.000000000000011,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448281,-0.013559322033930,-0.000000000000013,2 -2749,2807,2809,2867,-0.324137931034572,0.081355932202535,-0.331034482758707,0.074576271185564,-0.331034482758719,0.088135593219506,-0.337931034482854,0.081355932202535,0.013559322033941,0.000000000000011,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448282,-0.013559322033941,-0.000000000000013,2 -2750,2808,2810,2868,-0.324137931034584,0.094915254236471,-0.331034482758719,0.088135593219506,-0.331034482758731,0.101694915253436,-0.337931034482866,0.094915254236471,0.013559322033930,0.000000000000011,-0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000013,2 -2751,2809,2811,2869,-0.324137931034595,0.108474576270409,-0.331034482758731,0.101694915253436,-0.331034482758743,0.115254237287382,-0.337931034482879,0.108474576270409,0.013559322033946,0.000000000000011,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033946,-0.000000000000013,2 -2752,2810,2812,2870,-0.324137931034606,0.122033898304341,-0.331034482758743,0.115254237287382,-0.331034482758755,0.128813559321301,-0.337931034482892,0.122033898304341,0.013559322033919,0.000000000000011,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448286,-0.013559322033919,-0.000000000000013,2 -2753,2811,2813,2871,-0.324137931034618,0.135593220338273,-0.331034482758755,0.128813559321301,-0.331034482758767,0.142372881355246,-0.337931034482904,0.135593220338273,0.013559322033945,0.000000000000011,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033945,-0.000000000000013,2 -2754,2812,2814,2872,-0.324137931034629,0.149152542372213,-0.331034482758767,0.142372881355246,-0.331034482758779,0.155932203389179,-0.337931034482917,0.149152542372213,0.013559322033933,0.000000000000011,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033933,-0.000000000000013,2 -2755,2813,2815,2873,-0.324137931034640,0.162711864406145,-0.331034482758779,0.155932203389179,-0.331034482758791,0.169491525423110,-0.337931034482929,0.162711864406145,0.013559322033931,0.000000000000011,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448290,-0.013559322033931,-0.000000000000013,2 -2756,2814,2816,2874,-0.324137931034652,0.176271186440084,-0.331034482758791,0.169491525423110,-0.331034482758803,0.183050847457058,-0.337931034482942,0.176271186440084,0.013559322033948,0.000000000000011,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033948,-0.000000000000013,2 -2757,2815,2817,2875,-0.324137931034663,0.189830508474016,-0.331034482758803,0.183050847457058,-0.331034482758815,0.196610169490975,-0.337931034482955,0.189830508474016,0.013559322033917,0.000000000000011,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033917,-0.000000000000013,2 -2758,2816,2818,2876,-0.324137931034674,0.203389830507945,-0.331034482758815,0.196610169490975,-0.331034482758827,0.210169491524915,-0.337931034482967,0.203389830507945,0.013559322033940,0.000000000000011,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033940,-0.000000000000013,2 -2759,2817,2819,2877,-0.324137931034686,0.216949152541877,-0.331034482758827,0.210169491524915,-0.331034482758839,0.223728813558839,-0.337931034482980,0.216949152541877,0.013559322033924,0.000000000000011,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033924,-0.000000000000013,2 -2760,2818,2820,2878,-0.324137931034697,0.230508474575816,-0.331034482758839,0.223728813558839,-0.331034482758851,0.237288135592793,-0.337931034482993,0.230508474575816,0.013559322033954,0.000000000000011,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033954,-0.000000000000013,2 -2761,2819,2821,2879,-0.324137931034708,0.244067796609748,-0.331034482758851,0.237288135592793,-0.331034482758863,0.250847457626703,-0.337931034483005,0.244067796609748,0.013559322033910,0.000000000000011,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033910,-0.000000000000013,2 -2762,2820,2822,2880,-0.324137931034720,0.257627118643680,-0.331034482758863,0.250847457626703,-0.331034482758875,0.264406779660657,-0.337931034483018,0.257627118643680,0.013559322033954,0.000000000000011,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448299,-0.013559322033954,-0.000000000000013,2 -2763,2821,2823,2881,-0.324137931034731,0.271186440677618,-0.331034482758875,0.264406779660657,-0.331034482758887,0.277966101694579,-0.337931034483030,0.271186440677618,0.013559322033922,0.000000000000011,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033922,-0.000000000000013,2 -2764,2822,2824,2882,-0.324137931034742,0.284745762711550,-0.331034482758887,0.277966101694579,-0.331034482758899,0.291525423728521,-0.337931034483043,0.284745762711550,0.013559322033942,0.000000000000011,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448301,-0.013559322033942,-0.000000000000013,2 -2765,2823,2825,2883,-0.324137931034754,0.298305084745489,-0.331034482758899,0.291525423728521,-0.331034482758911,0.305084745762457,-0.337931034483056,0.298305084745489,0.013559322033936,0.000000000000011,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448303,-0.013559322033936,-0.000000000000013,2 -2766,2824,2826,2884,-0.324137931034765,0.311864406779421,-0.331034482758911,0.305084745762457,-0.331034482758923,0.318644067796385,-0.337931034483068,0.311864406779421,0.013559322033928,0.000000000000011,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033928,-0.000000000000013,2 -2767,2825,2827,2885,-0.324137931034776,0.325423728813361,-0.331034482758923,0.318644067796385,-0.331034482758935,0.332203389830336,-0.337931034483081,0.325423728813361,0.013559322033950,0.000000000000011,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033951,-0.000000000000013,2 -2768,2826,2828,2886,-0.324137931034788,0.338983050847293,-0.331034482758935,0.332203389830336,-0.331034482758947,0.345762711864250,-0.337931034483094,0.338983050847293,0.013559322033914,0.000000000000011,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448306,-0.013559322033914,-0.000000000000012,2 -2769,2827,2829,2887,-0.324137931034799,0.352542372881227,-0.331034482758947,0.345762711864250,-0.331034482758959,0.359322033898203,-0.337931034483106,0.352542372881226,0.013559322033954,0.000000000000011,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000013,2 -2770,2828,2830,2888,-0.324137931034810,0.366101694915162,-0.331034482758959,0.359322033898203,-0.331034482758971,0.372881355932121,-0.337931034483119,0.366101694915162,0.013559322033918,0.000000000000011,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033918,-0.000000000000013,2 -2771,2829,2831,2889,-0.324137931034822,0.379661016949095,-0.331034482758971,0.372881355932121,-0.331034482758983,0.386440677966068,-0.337931034483131,0.379661016949094,0.013559322033946,0.000000000000011,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448311,-0.013559322033946,-0.000000000000013,2 -2102,2772,2830,2890,-0.331034482758994,0.400000000000000,-0.324137931034833,0.393220338983034,-0.331034482758983,0.386440677966068,-0.337931034483144,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000011,0.000000000000000,-0.013793103448311,-0.013559322033932,-0.000000000000013,2 -2773,2833,2891,4106,-0.337931034482412,-0.393220338983059,-0.344827586206536,-0.386440677966118,-0.351724137930648,-0.393220338983059,-0.344827586206523,-0.400000000000000,0.013559322033882,0.000000000000013,-0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000014,0.000000000000000,-0.013793103448235,2 -2774,2832,2834,2892,-0.337931034482424,-0.379661016949189,-0.344827586206536,-0.386440677966118,-0.344827586206550,-0.372881355932259,-0.351724137930661,-0.379661016949189,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000014,2 -2775,2833,2835,2893,-0.337931034482437,-0.366101694915329,-0.344827586206550,-0.372881355932259,-0.344827586206563,-0.359322033898399,-0.351724137930675,-0.366101694915329,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448238,0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000014,2 -2776,2834,2836,2894,-0.337931034482450,-0.352542372881469,-0.344827586206563,-0.359322033898399,-0.344827586206576,-0.345762711864539,-0.351724137930689,-0.352542372881469,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448239,0.000000000000000,0.013793103448240,-0.013559322033860,-0.000000000000014,2 -2777,2835,2837,2895,-0.337931034482462,-0.338983050847605,-0.344827586206576,-0.345762711864539,-0.344827586206589,-0.332203389830670,-0.351724137930703,-0.338983050847605,0.013559322033869,0.000000000000012,-0.000000000000000,-0.013793103448240,0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000014,2 -2778,2836,2838,2896,-0.337931034482475,-0.325423728813729,-0.344827586206589,-0.332203389830670,-0.344827586206603,-0.318644067796787,-0.351724137930717,-0.325423728813729,0.013559322033883,0.000000000000013,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000014,2 -2779,2837,2839,2897,-0.337931034482488,-0.311864406779851,-0.344827586206603,-0.318644067796787,-0.344827586206616,-0.305084745762915,-0.351724137930731,-0.311864406779851,0.013559322033872,0.000000000000013,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448244,-0.013559322033872,-0.000000000000014,2 -2780,2838,2840,2898,-0.337931034482500,-0.298305084745975,-0.344827586206616,-0.305084745762915,-0.344827586206629,-0.291525423729035,-0.351724137930745,-0.298305084745975,0.013559322033879,0.000000000000013,0.000000000000000,-0.013793103448244,0.000000000000000,0.013793103448245,-0.013559322033880,-0.000000000000014,2 -2781,2839,2841,2899,-0.337931034482513,-0.284745762712106,-0.344827586206629,-0.291525423729035,-0.344827586206643,-0.277966101695176,-0.351724137930759,-0.284745762712105,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000014,2 -2782,2840,2842,2900,-0.337931034482525,-0.271186440678246,-0.344827586206643,-0.277966101695176,-0.344827586206656,-0.264406779661316,-0.351724137930773,-0.271186440678246,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000014,2 -2783,2841,2843,2901,-0.337931034482538,-0.257627118644386,-0.344827586206656,-0.264406779661316,-0.344827586206669,-0.250847457627456,-0.351724137930787,-0.257627118644386,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000014,2 -2784,2842,2844,2902,-0.337931034482551,-0.244067796610526,-0.344827586206669,-0.250847457627456,-0.344827586206682,-0.237288135593597,-0.351724137930801,-0.244067796610526,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448251,-0.013559322033859,-0.000000000000014,2 -2785,2843,2845,2903,-0.337931034482563,-0.230508474576667,-0.344827586206682,-0.237288135593597,-0.344827586206696,-0.223728813559737,-0.351724137930815,-0.230508474576667,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448252,-0.013559322033860,-0.000000000000014,2 -2786,2844,2846,2904,-0.337931034482576,-0.216949152542807,-0.344827586206696,-0.223728813559737,-0.344827586206709,-0.210169491525877,-0.351724137930828,-0.216949152542807,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000014,2 -2787,2845,2847,2905,-0.337931034482589,-0.203389830508947,-0.344827586206709,-0.210169491525877,-0.344827586206722,-0.196610169492017,-0.351724137930842,-0.203389830508947,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448254,-0.013559322033860,-0.000000000000014,2 -2788,2846,2848,2906,-0.337931034482601,-0.189830508475088,-0.344827586206722,-0.196610169492017,-0.344827586206735,-0.183050847458158,-0.351724137930856,-0.189830508475088,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000014,2 -2789,2847,2849,2907,-0.337931034482614,-0.176271186441228,-0.344827586206735,-0.183050847458158,-0.344827586206749,-0.169491525424298,-0.351724137930870,-0.176271186441228,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000014,2 -2790,2848,2850,2908,-0.337931034482626,-0.162711864407368,-0.344827586206749,-0.169491525424298,-0.344827586206762,-0.155932203390438,-0.351724137930884,-0.162711864407368,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448258,-0.013559322033860,-0.000000000000014,2 -2791,2849,2851,2909,-0.337931034482639,-0.149152542373509,-0.344827586206762,-0.155932203390438,-0.344827586206775,-0.142372881356579,-0.351724137930898,-0.149152542373509,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000014,2 -2792,2850,2852,2910,-0.337931034482652,-0.135593220339649,-0.344827586206775,-0.142372881356579,-0.344827586206788,-0.128813559322719,-0.351724137930912,-0.135593220339649,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000014,2 -2793,2851,2853,2911,-0.337931034482664,-0.122033898305789,-0.344827586206788,-0.128813559322719,-0.344827586206802,-0.115254237288859,-0.351724137930926,-0.122033898305789,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000014,2 -2794,2852,2854,2912,-0.337931034482677,-0.108474576271933,-0.344827586206802,-0.115254237288859,-0.344827586206815,-0.101694915255008,-0.351724137930940,-0.108474576271933,0.013559322033852,0.000000000000012,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448264,-0.013559322033852,-0.000000000000014,2 -2795,2853,2855,2913,-0.337931034482689,-0.094915254238085,-0.344827586206815,-0.101694915255008,-0.344827586206828,-0.088135593221162,-0.351724137930954,-0.094915254238085,0.013559322033846,0.000000000000013,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448265,-0.013559322033846,-0.000000000000014,2 -2796,2854,2856,2914,-0.337931034482702,-0.081355932204232,-0.344827586206828,-0.088135593221162,-0.344827586206842,-0.074576271187302,-0.351724137930968,-0.081355932204232,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000014,2 -2797,2855,2857,2915,-0.337931034482715,-0.067796610170372,-0.344827586206842,-0.074576271187302,-0.344827586206855,-0.061016949153442,-0.351724137930982,-0.067796610170372,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448267,-0.013559322033860,-0.000000000000014,2 -2798,2856,2858,2916,-0.337931034482728,-0.054237288136513,-0.344827586206855,-0.061016949153442,-0.344827586206868,-0.047457627119583,-0.351724137930996,-0.054237288136513,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000014,2 -2799,2857,2859,2917,-0.337931034482740,-0.040677966102653,-0.344827586206868,-0.047457627119583,-0.344827586206881,-0.033898305085723,-0.351724137931009,-0.040677966102653,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000014,2 -2800,2858,2860,2918,-0.337931034482753,-0.027118644068793,-0.344827586206881,-0.033898305085723,-0.344827586206895,-0.020338983051863,-0.351724137931023,-0.027118644068793,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000014,2 -2801,2859,2861,2919,-0.337931034482765,-0.013559322034933,-0.344827586206895,-0.020338983051863,-0.344827586206908,-0.006779661018004,-0.351724137931037,-0.013559322034933,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000014,2 -2802,2860,2862,2920,-0.337931034482778,-0.000000000001056,-0.344827586206908,-0.006779661018004,-0.344827586206921,0.006779661015891,-0.351724137931051,-0.000000000001056,0.013559322033895,0.000000000000013,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000014,2 -2803,2861,2863,2921,-0.337931034482791,0.013559322032862,-0.344827586206921,0.006779661015891,-0.344827586206935,0.020338983049833,-0.351724137931065,0.013559322032862,0.013559322033941,0.000000000000013,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448275,-0.013559322033941,-0.000000000000014,2 -2804,2862,2864,2922,-0.337931034482803,0.027118644066798,-0.344827586206935,0.020338983049833,-0.344827586206948,0.033898305083763,-0.351724137931079,0.027118644066798,0.013559322033930,0.000000000000013,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448277,-0.013559322033930,-0.000000000000014,2 -2805,2863,2865,2923,-0.337931034482816,0.040677966100731,-0.344827586206948,0.033898305083763,-0.344827586206961,0.047457627117699,-0.351724137931093,0.040677966100731,0.013559322033937,0.000000000000012,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448278,-0.013559322033937,-0.000000000000014,2 -2806,2864,2866,2924,-0.337931034482828,0.054237288134667,-0.344827586206961,0.047457627117699,-0.344827586206974,0.061016949151634,-0.351724137931107,0.054237288134667,0.013559322033935,0.000000000000013,-0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448279,-0.013559322033935,-0.000000000000014,2 -2807,2865,2867,2925,-0.337931034482841,0.067796610168599,-0.344827586206974,0.061016949151634,-0.344827586206988,0.074576271185564,-0.351724137931121,0.067796610168599,0.013559322033930,0.000000000000013,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448281,-0.013559322033930,-0.000000000000014,2 -2808,2866,2868,2926,-0.337931034482854,0.081355932202535,-0.344827586206988,0.074576271185564,-0.344827586207001,0.088135593219506,-0.351724137931135,0.081355932202535,0.013559322033941,0.000000000000013,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448282,-0.013559322033941,-0.000000000000014,2 -2809,2867,2869,2927,-0.337931034482866,0.094915254236471,-0.344827586207001,0.088135593219506,-0.344827586207014,0.101694915253436,-0.351724137931149,0.094915254236471,0.013559322033930,0.000000000000013,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000014,2 -2810,2868,2870,2928,-0.337931034482879,0.108474576270409,-0.344827586207014,0.101694915253436,-0.344827586207027,0.115254237287382,-0.351724137931163,0.108474576270409,0.013559322033946,0.000000000000013,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033946,-0.000000000000014,2 -2811,2869,2871,2929,-0.337931034482892,0.122033898304341,-0.344827586207027,0.115254237287382,-0.344827586207041,0.128813559321301,-0.351724137931177,0.122033898304341,0.013559322033919,0.000000000000013,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448286,-0.013559322033919,-0.000000000000014,2 -2812,2870,2872,2930,-0.337931034482904,0.135593220338273,-0.344827586207041,0.128813559321301,-0.344827586207054,0.142372881355246,-0.351724137931191,0.135593220338273,0.013559322033945,0.000000000000013,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033945,-0.000000000000014,2 -2813,2871,2873,2931,-0.337931034482917,0.149152542372213,-0.344827586207054,0.142372881355246,-0.344827586207067,0.155932203389179,-0.351724137931204,0.149152542372213,0.013559322033933,0.000000000000013,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033933,-0.000000000000014,2 -2814,2872,2874,2932,-0.337931034482929,0.162711864406145,-0.344827586207067,0.155932203389179,-0.344827586207081,0.169491525423110,-0.351724137931218,0.162711864406145,0.013559322033931,0.000000000000013,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448290,-0.013559322033931,-0.000000000000014,2 -2815,2873,2875,2933,-0.337931034482942,0.176271186440084,-0.344827586207081,0.169491525423110,-0.344827586207094,0.183050847457058,-0.351724137931232,0.176271186440084,0.013559322033948,0.000000000000013,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033948,-0.000000000000014,2 -2816,2874,2876,2934,-0.337931034482955,0.189830508474016,-0.344827586207094,0.183050847457058,-0.344827586207107,0.196610169490975,-0.351724137931246,0.189830508474016,0.013559322033917,0.000000000000013,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033917,-0.000000000000014,2 -2817,2875,2877,2935,-0.337931034482967,0.203389830507945,-0.344827586207107,0.196610169490975,-0.344827586207120,0.210169491524915,-0.351724137931260,0.203389830507945,0.013559322033940,0.000000000000013,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033940,-0.000000000000014,2 -2818,2876,2878,2936,-0.337931034482980,0.216949152541877,-0.344827586207120,0.210169491524915,-0.344827586207134,0.223728813558839,-0.351724137931274,0.216949152541877,0.013559322033924,0.000000000000013,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033924,-0.000000000000014,2 -2819,2877,2879,2937,-0.337931034482993,0.230508474575816,-0.344827586207134,0.223728813558839,-0.344827586207147,0.237288135592793,-0.351724137931288,0.230508474575816,0.013559322033954,0.000000000000013,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033954,-0.000000000000014,2 -2820,2878,2880,2938,-0.337931034483005,0.244067796609748,-0.344827586207147,0.237288135592793,-0.344827586207160,0.250847457626703,-0.351724137931302,0.244067796609748,0.013559322033910,0.000000000000013,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448298,-0.013559322033910,-0.000000000000014,2 -2821,2879,2881,2939,-0.337931034483018,0.257627118643680,-0.344827586207160,0.250847457626703,-0.344827586207173,0.264406779660657,-0.351724137931316,0.257627118643680,0.013559322033954,0.000000000000013,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448299,-0.013559322033954,-0.000000000000014,2 -2822,2880,2882,2940,-0.337931034483030,0.271186440677618,-0.344827586207173,0.264406779660657,-0.344827586207187,0.277966101694579,-0.351724137931330,0.271186440677618,0.013559322033922,0.000000000000013,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033922,-0.000000000000014,2 -2823,2881,2883,2941,-0.337931034483043,0.284745762711550,-0.344827586207187,0.277966101694579,-0.344827586207200,0.291525423728521,-0.351724137931344,0.284745762711550,0.013559322033942,0.000000000000013,0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448301,-0.013559322033942,-0.000000000000014,2 -2824,2882,2884,2942,-0.337931034483056,0.298305084745489,-0.344827586207200,0.291525423728521,-0.344827586207213,0.305084745762457,-0.351724137931358,0.298305084745489,0.013559322033936,0.000000000000013,-0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448302,-0.013559322033936,-0.000000000000014,2 -2825,2883,2885,2943,-0.337931034483068,0.311864406779421,-0.344827586207213,0.305084745762457,-0.344827586207227,0.318644067796385,-0.351724137931372,0.311864406779421,0.013559322033928,0.000000000000013,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448304,-0.013559322033928,-0.000000000000014,2 -2826,2884,2886,2944,-0.337931034483081,0.325423728813361,-0.344827586207227,0.318644067796385,-0.344827586207240,0.332203389830336,-0.351724137931386,0.325423728813361,0.013559322033951,0.000000000000013,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033951,-0.000000000000014,2 -2827,2885,2887,2945,-0.337931034483094,0.338983050847293,-0.344827586207240,0.332203389830336,-0.344827586207253,0.345762711864250,-0.351724137931400,0.338983050847293,0.013559322033914,0.000000000000012,0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448307,-0.013559322033914,-0.000000000000014,2 -2828,2886,2888,2946,-0.337931034483106,0.352542372881226,-0.344827586207253,0.345762711864250,-0.344827586207266,0.359322033898203,-0.351724137931413,0.352542372881227,0.013559322033954,0.000000000000013,-0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000014,2 -2829,2887,2889,2947,-0.337931034483119,0.366101694915162,-0.344827586207266,0.359322033898203,-0.344827586207280,0.372881355932121,-0.351724137931427,0.366101694915162,0.013559322033918,0.000000000000013,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448309,-0.013559322033918,-0.000000000000014,2 -2830,2888,2890,2948,-0.337931034483131,0.379661016949094,-0.344827586207280,0.372881355932121,-0.344827586207293,0.386440677966068,-0.351724137931441,0.379661016949094,0.013559322033946,0.000000000000013,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448310,-0.013559322033946,-0.000000000000014,2 -2088,2831,2889,2949,-0.344827586207306,0.400000000000000,-0.337931034483144,0.393220338983034,-0.344827586207293,0.386440677966068,-0.351724137931455,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000013,0.000000000000000,-0.013793103448310,-0.013559322033932,-0.000000000000014,2 -2832,2892,2950,4120,-0.351724137930648,-0.393220338983059,-0.358620689654773,-0.386440677966118,-0.365517241378883,-0.393220338983059,-0.358620689654758,-0.400000000000000,0.013559322033882,0.000000000000014,-0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000015,0.000000000000000,-0.013793103448235,2 -2833,2891,2893,2951,-0.351724137930661,-0.379661016949189,-0.358620689654773,-0.386440677966118,-0.358620689654787,-0.372881355932259,-0.365517241378899,-0.379661016949189,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000015,2 -2834,2892,2894,2952,-0.351724137930675,-0.366101694915329,-0.358620689654787,-0.372881355932259,-0.358620689654802,-0.359322033898399,-0.365517241378914,-0.366101694915329,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000015,2 -2835,2893,2895,2953,-0.351724137930689,-0.352542372881469,-0.358620689654802,-0.359322033898399,-0.358620689654816,-0.345762711864539,-0.365517241378929,-0.352542372881469,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448241,-0.013559322033860,-0.000000000000015,2 -2836,2894,2896,2954,-0.351724137930703,-0.338983050847605,-0.358620689654816,-0.345762711864539,-0.358620689654831,-0.332203389830670,-0.365517241378944,-0.338983050847605,0.013559322033869,0.000000000000014,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000015,2 -2837,2895,2897,2955,-0.351724137930717,-0.325423728813729,-0.358620689654831,-0.332203389830670,-0.358620689654846,-0.318644067796787,-0.365517241378959,-0.325423728813729,0.013559322033883,0.000000000000014,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000015,2 -2838,2896,2898,2956,-0.351724137930731,-0.311864406779851,-0.358620689654846,-0.318644067796787,-0.358620689654860,-0.305084745762915,-0.365517241378975,-0.311864406779851,0.013559322033872,0.000000000000014,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448244,-0.013559322033872,-0.000000000000015,2 -2839,2897,2899,2957,-0.351724137930745,-0.298305084745975,-0.358620689654860,-0.305084745762915,-0.358620689654875,-0.291525423729035,-0.365517241378990,-0.298305084745975,0.013559322033880,0.000000000000014,-0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448246,-0.013559322033879,-0.000000000000015,2 -2840,2898,2900,2958,-0.351724137930759,-0.284745762712105,-0.358620689654875,-0.291525423729035,-0.358620689654889,-0.277966101695176,-0.365517241379005,-0.284745762712106,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000015,2 -2841,2899,2901,2959,-0.351724137930773,-0.271186440678246,-0.358620689654889,-0.277966101695176,-0.358620689654904,-0.264406779661316,-0.365517241379020,-0.271186440678246,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000015,2 -2842,2900,2902,2960,-0.351724137930787,-0.257627118644386,-0.358620689654904,-0.264406779661316,-0.358620689654918,-0.250847457627456,-0.365517241379036,-0.257627118644386,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000015,2 -2843,2901,2903,2961,-0.351724137930801,-0.244067796610526,-0.358620689654918,-0.250847457627456,-0.358620689654933,-0.237288135593597,-0.365517241379051,-0.244067796610526,0.013559322033859,0.000000000000014,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000015,2 -2844,2902,2904,2962,-0.351724137930815,-0.230508474576667,-0.358620689654933,-0.237288135593597,-0.358620689654948,-0.223728813559737,-0.365517241379066,-0.230508474576667,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448252,-0.013559322033860,-0.000000000000015,2 -2845,2903,2905,2963,-0.351724137930828,-0.216949152542807,-0.358620689654948,-0.223728813559737,-0.358620689654962,-0.210169491525877,-0.365517241379081,-0.216949152542807,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000015,2 -2846,2904,2906,2964,-0.351724137930842,-0.203389830508947,-0.358620689654962,-0.210169491525877,-0.358620689654977,-0.196610169492017,-0.365517241379096,-0.203389830508947,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000015,2 -2847,2905,2907,2965,-0.351724137930856,-0.189830508475088,-0.358620689654977,-0.196610169492017,-0.358620689654991,-0.183050847458158,-0.365517241379112,-0.189830508475088,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000015,2 -2848,2906,2908,2966,-0.351724137930870,-0.176271186441228,-0.358620689654991,-0.183050847458158,-0.358620689655006,-0.169491525424298,-0.365517241379127,-0.176271186441228,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000015,2 -2849,2907,2909,2967,-0.351724137930884,-0.162711864407368,-0.358620689655006,-0.169491525424298,-0.358620689655020,-0.155932203390438,-0.365517241379142,-0.162711864407368,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000015,2 -2850,2908,2910,2968,-0.351724137930898,-0.149152542373509,-0.358620689655020,-0.155932203390438,-0.358620689655035,-0.142372881356579,-0.365517241379157,-0.149152542373509,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000015,2 -2851,2909,2911,2969,-0.351724137930912,-0.135593220339649,-0.358620689655035,-0.142372881356579,-0.358620689655050,-0.128813559322719,-0.365517241379173,-0.135593220339649,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000015,2 -2852,2910,2912,2970,-0.351724137930926,-0.122033898305789,-0.358620689655050,-0.128813559322719,-0.358620689655064,-0.115254237288859,-0.365517241379188,-0.122033898305789,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000015,2 -2853,2911,2913,2971,-0.351724137930940,-0.108474576271933,-0.358620689655064,-0.115254237288859,-0.358620689655079,-0.101694915255008,-0.365517241379203,-0.108474576271933,0.013559322033852,0.000000000000014,-0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448264,-0.013559322033852,-0.000000000000015,2 -2854,2912,2914,2972,-0.351724137930954,-0.094915254238085,-0.358620689655079,-0.101694915255008,-0.358620689655093,-0.088135593221162,-0.365517241379218,-0.094915254238085,0.013559322033846,0.000000000000014,0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448265,-0.013559322033846,-0.000000000000015,2 -2855,2913,2915,2973,-0.351724137930968,-0.081355932204232,-0.358620689655093,-0.088135593221162,-0.358620689655108,-0.074576271187302,-0.365517241379233,-0.081355932204232,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000015,2 -2856,2914,2916,2974,-0.351724137930982,-0.067796610170372,-0.358620689655108,-0.074576271187302,-0.358620689655123,-0.061016949153442,-0.365517241379249,-0.067796610170372,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000015,2 -2857,2915,2917,2975,-0.351724137930996,-0.054237288136513,-0.358620689655123,-0.061016949153442,-0.358620689655137,-0.047457627119583,-0.365517241379264,-0.054237288136513,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000015,2 -2858,2916,2918,2976,-0.351724137931009,-0.040677966102653,-0.358620689655137,-0.047457627119583,-0.358620689655152,-0.033898305085723,-0.365517241379279,-0.040677966102653,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000015,2 -2859,2917,2919,2977,-0.351724137931023,-0.027118644068793,-0.358620689655152,-0.033898305085723,-0.358620689655166,-0.020338983051863,-0.365517241379294,-0.027118644068793,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000015,2 -2860,2918,2920,2978,-0.351724137931037,-0.013559322034933,-0.358620689655166,-0.020338983051863,-0.358620689655181,-0.006779661018004,-0.365517241379310,-0.013559322034933,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000015,2 -2861,2919,2921,2979,-0.351724137931051,-0.000000000001056,-0.358620689655181,-0.006779661018004,-0.358620689655195,0.006779661015891,-0.365517241379325,-0.000000000001056,0.013559322033895,0.000000000000014,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000015,2 -2862,2920,2922,2980,-0.351724137931065,0.013559322032862,-0.358620689655195,0.006779661015891,-0.358620689655210,0.020338983049833,-0.365517241379340,0.013559322032862,0.013559322033941,0.000000000000014,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448276,-0.013559322033941,-0.000000000000015,2 -2863,2921,2923,2981,-0.351724137931079,0.027118644066798,-0.358620689655210,0.020338983049833,-0.358620689655225,0.033898305083763,-0.365517241379355,0.027118644066798,0.013559322033930,0.000000000000014,0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448277,-0.013559322033930,-0.000000000000015,2 -2864,2922,2924,2982,-0.351724137931093,0.040677966100731,-0.358620689655225,0.033898305083763,-0.358620689655239,0.047457627117699,-0.365517241379370,0.040677966100731,0.013559322033937,0.000000000000014,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448278,-0.013559322033937,-0.000000000000015,2 -2865,2923,2925,2983,-0.351724137931107,0.054237288134667,-0.358620689655239,0.047457627117699,-0.358620689655254,0.061016949151634,-0.365517241379386,0.054237288134667,0.013559322033935,0.000000000000014,-0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448279,-0.013559322033935,-0.000000000000015,2 -2866,2924,2926,2984,-0.351724137931121,0.067796610168599,-0.358620689655254,0.061016949151634,-0.358620689655268,0.074576271185564,-0.365517241379401,0.067796610168599,0.013559322033930,0.000000000000014,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448281,-0.013559322033930,-0.000000000000015,2 -2867,2925,2927,2985,-0.351724137931135,0.081355932202535,-0.358620689655268,0.074576271185564,-0.358620689655283,0.088135593219506,-0.365517241379416,0.081355932202535,0.013559322033941,0.000000000000014,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448282,-0.013559322033941,-0.000000000000015,2 -2868,2926,2928,2986,-0.351724137931149,0.094915254236471,-0.358620689655283,0.088135593219506,-0.358620689655297,0.101694915253436,-0.365517241379431,0.094915254236471,0.013559322033930,0.000000000000014,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000015,2 -2869,2927,2929,2987,-0.351724137931163,0.108474576270409,-0.358620689655297,0.101694915253436,-0.358620689655312,0.115254237287382,-0.365517241379447,0.108474576270409,0.013559322033946,0.000000000000014,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448285,-0.013559322033946,-0.000000000000015,2 -2870,2928,2930,2988,-0.351724137931177,0.122033898304341,-0.358620689655312,0.115254237287382,-0.358620689655326,0.128813559321301,-0.365517241379462,0.122033898304341,0.013559322033919,0.000000000000014,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448286,-0.013559322033919,-0.000000000000015,2 -2871,2929,2931,2989,-0.351724137931191,0.135593220338273,-0.358620689655326,0.128813559321301,-0.358620689655341,0.142372881355246,-0.365517241379477,0.135593220338273,0.013559322033945,0.000000000000014,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033945,-0.000000000000015,2 -2872,2930,2932,2990,-0.351724137931204,0.149152542372213,-0.358620689655341,0.142372881355246,-0.358620689655356,0.155932203389179,-0.365517241379492,0.149152542372213,0.013559322033933,0.000000000000014,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448289,-0.013559322033933,-0.000000000000015,2 -2873,2931,2933,2991,-0.351724137931218,0.162711864406145,-0.358620689655356,0.155932203389179,-0.358620689655370,0.169491525423110,-0.365517241379507,0.162711864406145,0.013559322033931,0.000000000000014,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448290,-0.013559322033931,-0.000000000000015,2 -2874,2932,2934,2992,-0.351724137931232,0.176271186440084,-0.358620689655370,0.169491525423110,-0.358620689655385,0.183050847457058,-0.365517241379523,0.176271186440084,0.013559322033948,0.000000000000014,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033948,-0.000000000000015,2 -2875,2933,2935,2993,-0.351724137931246,0.189830508474016,-0.358620689655385,0.183050847457058,-0.358620689655399,0.196610169490975,-0.365517241379538,0.189830508474016,0.013559322033917,0.000000000000014,0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448292,-0.013559322033917,-0.000000000000015,2 -2876,2934,2936,2994,-0.351724137931260,0.203389830507945,-0.358620689655399,0.196610169490975,-0.358620689655414,0.210169491524915,-0.365517241379553,0.203389830507945,0.013559322033940,0.000000000000014,-0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033940,-0.000000000000015,2 -2877,2935,2937,2995,-0.351724137931274,0.216949152541877,-0.358620689655414,0.210169491524915,-0.358620689655428,0.223728813558839,-0.365517241379568,0.216949152541877,0.013559322033924,0.000000000000014,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448295,-0.013559322033924,-0.000000000000015,2 -2878,2936,2938,2996,-0.351724137931288,0.230508474575816,-0.358620689655428,0.223728813558839,-0.358620689655443,0.237288135592793,-0.365517241379584,0.230508474575816,0.013559322033954,0.000000000000014,0.000000000000000,-0.013793103448295,0.000000000000000,0.013793103448296,-0.013559322033954,-0.000000000000015,2 -2879,2937,2939,2997,-0.351724137931302,0.244067796609748,-0.358620689655443,0.237288135592793,-0.358620689655458,0.250847457626703,-0.365517241379599,0.244067796609748,0.013559322033910,0.000000000000014,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033910,-0.000000000000015,2 -2880,2938,2940,2998,-0.351724137931316,0.257627118643680,-0.358620689655458,0.250847457626703,-0.358620689655472,0.264406779660657,-0.365517241379614,0.257627118643680,0.013559322033954,0.000000000000014,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448299,-0.013559322033954,-0.000000000000015,2 -2881,2939,2941,2999,-0.351724137931330,0.271186440677618,-0.358620689655472,0.264406779660657,-0.358620689655487,0.277966101694579,-0.365517241379629,0.271186440677618,0.013559322033922,0.000000000000014,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033922,-0.000000000000015,2 -2882,2940,2942,3000,-0.351724137931344,0.284745762711550,-0.358620689655487,0.277966101694579,-0.358620689655501,0.291525423728521,-0.365517241379644,0.284745762711550,0.013559322033942,0.000000000000014,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448301,-0.013559322033942,-0.000000000000015,2 -2883,2941,2943,3001,-0.351724137931358,0.298305084745489,-0.358620689655501,0.291525423728521,-0.358620689655516,0.305084745762457,-0.365517241379660,0.298305084745489,0.013559322033936,0.000000000000014,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448303,-0.013559322033936,-0.000000000000015,2 -2884,2942,2944,3002,-0.351724137931372,0.311864406779421,-0.358620689655516,0.305084745762457,-0.358620689655531,0.318644067796385,-0.365517241379675,0.311864406779421,0.013559322033928,0.000000000000014,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033928,-0.000000000000015,2 -2885,2943,2945,3003,-0.351724137931386,0.325423728813361,-0.358620689655531,0.318644067796385,-0.358620689655545,0.332203389830336,-0.365517241379690,0.325423728813361,0.013559322033951,0.000000000000014,0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448305,-0.013559322033951,-0.000000000000015,2 -2886,2944,2946,3004,-0.351724137931400,0.338983050847293,-0.358620689655545,0.332203389830336,-0.358620689655560,0.345762711864250,-0.365517241379705,0.338983050847293,0.013559322033914,0.000000000000014,-0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448307,-0.013559322033914,-0.000000000000015,2 -2887,2945,2947,3005,-0.351724137931413,0.352542372881227,-0.358620689655560,0.345762711864250,-0.358620689655574,0.359322033898203,-0.365517241379721,0.352542372881226,0.013559322033954,0.000000000000014,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000015,2 -2888,2946,2948,3006,-0.351724137931427,0.366101694915162,-0.358620689655574,0.359322033898203,-0.358620689655589,0.372881355932121,-0.365517241379736,0.366101694915162,0.013559322033918,0.000000000000014,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033918,-0.000000000000015,2 -2889,2947,2949,3007,-0.351724137931441,0.379661016949094,-0.358620689655589,0.372881355932121,-0.358620689655603,0.386440677966068,-0.365517241379751,0.379661016949094,0.013559322033946,0.000000000000014,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448311,-0.013559322033946,-0.000000000000015,2 -2074,2890,2948,3008,-0.358620689655618,0.400000000000000,-0.351724137931455,0.393220338983034,-0.358620689655603,0.386440677966068,-0.365517241379766,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000014,0.000000000000000,-0.013793103448311,-0.013559322033932,-0.000000000000015,2 -2891,2951,3009,4134,-0.365517241378883,-0.393220338983059,-0.372413793103009,-0.386440677966118,-0.379310344827119,-0.393220338983059,-0.372413793102993,-0.400000000000000,0.013559322033882,0.000000000000015,-0.000000000000000,0.013793103448236,-0.013559322033882,-0.000000000000017,0.000000000000000,-0.013793103448235,2 -2892,2950,2952,3010,-0.365517241378899,-0.379661016949189,-0.372413793103009,-0.386440677966118,-0.372413793103025,-0.372881355932259,-0.379310344827136,-0.379661016949189,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000017,2 -2893,2951,2953,3011,-0.365517241378914,-0.366101694915329,-0.372413793103025,-0.372881355932259,-0.372413793103041,-0.359322033898399,-0.379310344827153,-0.366101694915329,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448238,0.000000000000000,0.013793103448240,-0.013559322033860,-0.000000000000017,2 -2894,2952,2954,3012,-0.365517241378929,-0.352542372881469,-0.372413793103041,-0.359322033898399,-0.372413793103057,-0.345762711864539,-0.379310344827169,-0.352542372881469,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448241,-0.013559322033860,-0.000000000000017,2 -2895,2953,2955,3013,-0.365517241378944,-0.338983050847605,-0.372413793103057,-0.345762711864539,-0.372413793103073,-0.332203389830670,-0.379310344827186,-0.338983050847605,0.013559322033869,0.000000000000015,0.000000000000000,-0.013793103448241,0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000017,2 -2896,2954,2956,3014,-0.365517241378959,-0.325423728813729,-0.372413793103073,-0.332203389830670,-0.372413793103089,-0.318644067796787,-0.379310344827203,-0.325423728813729,0.013559322033883,0.000000000000015,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448244,-0.013559322033883,-0.000000000000017,2 -2897,2955,2957,3015,-0.365517241378975,-0.311864406779851,-0.372413793103089,-0.318644067796787,-0.372413793103105,-0.305084745762915,-0.379310344827219,-0.311864406779851,0.013559322033872,0.000000000000015,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448246,-0.013559322033872,-0.000000000000017,2 -2898,2956,2958,3016,-0.365517241378990,-0.298305084745975,-0.372413793103105,-0.305084745762915,-0.372413793103121,-0.291525423729035,-0.379310344827236,-0.298305084745975,0.013559322033879,0.000000000000015,0.000000000000000,-0.013793103448246,0.000000000000000,0.013793103448247,-0.013559322033880,-0.000000000000017,2 -2899,2957,2959,3017,-0.365517241379005,-0.284745762712106,-0.372413793103121,-0.291525423729035,-0.372413793103137,-0.277966101695176,-0.379310344827253,-0.284745762712105,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000017,2 -2900,2958,2960,3018,-0.365517241379020,-0.271186440678246,-0.372413793103137,-0.277966101695176,-0.372413793103153,-0.264406779661316,-0.379310344827270,-0.271186440678246,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448250,-0.013559322033860,-0.000000000000017,2 -2901,2959,2961,3019,-0.365517241379036,-0.257627118644386,-0.372413793103153,-0.264406779661316,-0.372413793103169,-0.250847457627456,-0.379310344827286,-0.257627118644386,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000017,2 -2902,2960,2962,3020,-0.365517241379051,-0.244067796610526,-0.372413793103169,-0.250847457627456,-0.372413793103185,-0.237288135593597,-0.379310344827303,-0.244067796610526,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448253,-0.013559322033859,-0.000000000000017,2 -2903,2961,2963,3021,-0.365517241379066,-0.230508474576667,-0.372413793103185,-0.237288135593597,-0.372413793103201,-0.223728813559737,-0.379310344827320,-0.230508474576667,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448254,-0.013559322033860,-0.000000000000016,2 -2904,2962,2964,3022,-0.365517241379081,-0.216949152542807,-0.372413793103201,-0.223728813559737,-0.372413793103217,-0.210169491525877,-0.379310344827336,-0.216949152542807,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000017,2 -2905,2963,2965,3023,-0.365517241379096,-0.203389830508947,-0.372413793103217,-0.210169491525877,-0.372413793103233,-0.196610169492017,-0.379310344827353,-0.203389830508947,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000017,2 -2906,2964,2966,3024,-0.365517241379112,-0.189830508475088,-0.372413793103233,-0.196610169492017,-0.372413793103249,-0.183050847458158,-0.379310344827370,-0.189830508475087,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000017,2 -2907,2965,2967,3025,-0.365517241379127,-0.176271186441228,-0.372413793103249,-0.183050847458158,-0.372413793103265,-0.169491525424298,-0.379310344827386,-0.176271186441228,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000017,2 -2908,2966,2968,3026,-0.365517241379142,-0.162711864407368,-0.372413793103265,-0.169491525424298,-0.372413793103281,-0.155932203390438,-0.379310344827403,-0.162711864407368,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000017,2 -2909,2967,2969,3027,-0.365517241379157,-0.149152542373509,-0.372413793103281,-0.155932203390438,-0.372413793103297,-0.142372881356579,-0.379310344827420,-0.149152542373509,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448263,-0.013559322033860,-0.000000000000017,2 -2910,2968,2970,3028,-0.365517241379173,-0.135593220339649,-0.372413793103297,-0.142372881356579,-0.372413793103313,-0.128813559322719,-0.379310344827437,-0.135593220339649,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448265,-0.013559322033860,-0.000000000000017,2 -2911,2969,2971,3029,-0.365517241379188,-0.122033898305789,-0.372413793103313,-0.128813559322719,-0.372413793103329,-0.115254237288859,-0.379310344827453,-0.122033898305789,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000017,2 -2912,2970,2972,3030,-0.365517241379203,-0.108474576271933,-0.372413793103329,-0.115254237288859,-0.372413793103345,-0.101694915255008,-0.379310344827470,-0.108474576271933,0.013559322033852,0.000000000000015,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448268,-0.013559322033852,-0.000000000000017,2 -2913,2971,2973,3031,-0.365517241379218,-0.094915254238085,-0.372413793103345,-0.101694915255008,-0.372413793103361,-0.088135593221162,-0.379310344827487,-0.094915254238085,0.013559322033846,0.000000000000015,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448269,-0.013559322033846,-0.000000000000017,2 -2914,2972,2974,3032,-0.365517241379233,-0.081355932204232,-0.372413793103361,-0.088135593221162,-0.372413793103376,-0.074576271187302,-0.379310344827503,-0.081355932204232,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000017,2 -2915,2973,2975,3033,-0.365517241379249,-0.067796610170372,-0.372413793103376,-0.074576271187302,-0.372413793103392,-0.061016949153442,-0.379310344827520,-0.067796610170372,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000017,2 -2916,2974,2976,3034,-0.365517241379264,-0.054237288136513,-0.372413793103392,-0.061016949153442,-0.372413793103408,-0.047457627119583,-0.379310344827537,-0.054237288136513,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000017,2 -2917,2975,2977,3035,-0.365517241379279,-0.040677966102653,-0.372413793103408,-0.047457627119583,-0.372413793103424,-0.033898305085723,-0.379310344827554,-0.040677966102653,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000017,2 -2918,2976,2978,3036,-0.365517241379294,-0.027118644068793,-0.372413793103424,-0.033898305085723,-0.372413793103440,-0.020338983051863,-0.379310344827570,-0.027118644068793,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000017,2 -2919,2977,2979,3037,-0.365517241379310,-0.013559322034933,-0.372413793103440,-0.020338983051863,-0.372413793103456,-0.006779661018004,-0.379310344827587,-0.013559322034934,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000017,2 -2920,2978,2980,3038,-0.365517241379325,-0.000000000001056,-0.372413793103456,-0.006779661018004,-0.372413793103472,0.006779661015891,-0.379310344827604,-0.000000000001056,0.013559322033895,0.000000000000015,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448279,-0.013559322033895,-0.000000000000016,2 -2921,2979,2981,3039,-0.365517241379340,0.013559322032862,-0.372413793103472,0.006779661015891,-0.372413793103488,0.020338983049833,-0.379310344827620,0.013559322032862,0.013559322033941,0.000000000000015,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448281,-0.013559322033941,-0.000000000000017,2 -2922,2980,2982,3040,-0.365517241379355,0.027118644066798,-0.372413793103488,0.020338983049833,-0.372413793103504,0.033898305083763,-0.379310344827637,0.027118644066798,0.013559322033930,0.000000000000015,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000017,2 -2923,2981,2983,3041,-0.365517241379370,0.040677966100731,-0.372413793103504,0.033898305083763,-0.372413793103520,0.047457627117699,-0.379310344827654,0.040677966100731,0.013559322033937,0.000000000000015,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033937,-0.000000000000017,2 -2924,2982,2984,3042,-0.365517241379386,0.054237288134667,-0.372413793103520,0.047457627117699,-0.372413793103536,0.061016949151634,-0.379310344827670,0.054237288134667,0.013559322033935,0.000000000000015,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448285,-0.013559322033935,-0.000000000000017,2 -2925,2983,2985,3043,-0.365517241379401,0.067796610168599,-0.372413793103536,0.061016949151634,-0.372413793103552,0.074576271185564,-0.379310344827687,0.067796610168599,0.013559322033930,0.000000000000015,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448287,-0.013559322033930,-0.000000000000017,2 -2926,2984,2986,3044,-0.365517241379416,0.081355932202535,-0.372413793103552,0.074576271185564,-0.372413793103568,0.088135593219506,-0.379310344827704,0.081355932202535,0.013559322033941,0.000000000000015,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033941,-0.000000000000017,2 -2927,2985,2987,3045,-0.365517241379431,0.094915254236471,-0.372413793103568,0.088135593219506,-0.372413793103584,0.101694915253436,-0.379310344827721,0.094915254236471,0.013559322033930,0.000000000000015,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448290,-0.013559322033930,-0.000000000000017,2 -2928,2986,2988,3046,-0.365517241379447,0.108474576270409,-0.372413793103584,0.101694915253436,-0.372413793103600,0.115254237287382,-0.379310344827737,0.108474576270409,0.013559322033946,0.000000000000015,-0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033946,-0.000000000000017,2 -2929,2987,2989,3047,-0.365517241379462,0.122033898304341,-0.372413793103600,0.115254237287382,-0.372413793103616,0.128813559321301,-0.379310344827754,0.122033898304341,0.013559322033919,0.000000000000015,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448293,-0.013559322033919,-0.000000000000017,2 -2930,2988,2990,3048,-0.365517241379477,0.135593220338273,-0.372413793103616,0.128813559321301,-0.372413793103632,0.142372881355246,-0.379310344827771,0.135593220338273,0.013559322033945,0.000000000000015,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448294,-0.013559322033945,-0.000000000000017,2 -2931,2989,2991,3049,-0.365517241379492,0.149152542372213,-0.372413793103632,0.142372881355246,-0.372413793103648,0.155932203389179,-0.379310344827787,0.149152542372213,0.013559322033933,0.000000000000015,0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448296,-0.013559322033933,-0.000000000000017,2 -2932,2990,2992,3050,-0.365517241379507,0.162711864406145,-0.372413793103648,0.155932203389179,-0.372413793103664,0.169491525423110,-0.379310344827804,0.162711864406145,0.013559322033931,0.000000000000015,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033931,-0.000000000000017,2 -2933,2991,2993,3051,-0.365517241379523,0.176271186440084,-0.372413793103664,0.169491525423110,-0.372413793103680,0.183050847457058,-0.379310344827821,0.176271186440084,0.013559322033948,0.000000000000015,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448299,-0.013559322033948,-0.000000000000017,2 -2934,2992,2994,3052,-0.365517241379538,0.189830508474016,-0.372413793103680,0.183050847457058,-0.372413793103696,0.196610169490975,-0.379310344827838,0.189830508474016,0.013559322033917,0.000000000000015,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033917,-0.000000000000017,2 -2935,2993,2995,3053,-0.365517241379553,0.203389830507945,-0.372413793103696,0.196610169490975,-0.372413793103712,0.210169491524915,-0.379310344827854,0.203389830507945,0.013559322033940,0.000000000000015,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448302,-0.013559322033940,-0.000000000000017,2 -2936,2994,2996,3054,-0.365517241379568,0.216949152541877,-0.372413793103712,0.210169491524915,-0.372413793103728,0.223728813558839,-0.379310344827871,0.216949152541877,0.013559322033924,0.000000000000015,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448303,-0.013559322033924,-0.000000000000017,2 -2937,2995,2997,3055,-0.365517241379584,0.230508474575816,-0.372413793103728,0.223728813558839,-0.372413793103744,0.237288135592793,-0.379310344827888,0.230508474575816,0.013559322033954,0.000000000000015,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448305,-0.013559322033954,-0.000000000000017,2 -2938,2996,2998,3056,-0.365517241379599,0.244067796609748,-0.372413793103744,0.237288135592793,-0.372413793103760,0.250847457626703,-0.379310344827904,0.244067796609748,0.013559322033910,0.000000000000015,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448306,-0.013559322033910,-0.000000000000017,2 -2939,2997,2999,3057,-0.365517241379614,0.257627118643680,-0.372413793103760,0.250847457626703,-0.372413793103776,0.264406779660657,-0.379310344827921,0.257627118643680,0.013559322033954,0.000000000000015,0.000000000000000,-0.013793103448306,0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000017,2 -2940,2998,3000,3058,-0.365517241379629,0.271186440677618,-0.372413793103776,0.264406779660657,-0.372413793103792,0.277966101694579,-0.379310344827938,0.271186440677618,0.013559322033922,0.000000000000015,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033922,-0.000000000000017,2 -2941,2999,3001,3059,-0.365517241379644,0.284745762711550,-0.372413793103792,0.277966101694579,-0.372413793103808,0.291525423728521,-0.379310344827955,0.284745762711550,0.013559322033942,0.000000000000015,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448311,-0.013559322033942,-0.000000000000017,2 -2942,3000,3002,3060,-0.365517241379660,0.298305084745489,-0.372413793103808,0.291525423728521,-0.372413793103824,0.305084745762457,-0.379310344827971,0.298305084745489,0.013559322033936,0.000000000000015,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,-0.013559322033936,-0.000000000000017,2 -2943,3001,3003,3061,-0.365517241379675,0.311864406779421,-0.372413793103824,0.305084745762457,-0.372413793103839,0.318644067796385,-0.379310344827988,0.311864406779421,0.013559322033928,0.000000000000015,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448314,-0.013559322033928,-0.000000000000017,2 -2944,3002,3004,3062,-0.365517241379690,0.325423728813361,-0.372413793103839,0.318644067796385,-0.372413793103855,0.332203389830336,-0.379310344828005,0.325423728813361,0.013559322033951,0.000000000000015,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448315,-0.013559322033950,-0.000000000000017,2 -2945,3003,3005,3063,-0.365517241379705,0.338983050847293,-0.372413793103855,0.332203389830336,-0.372413793103871,0.345762711864250,-0.379310344828021,0.338983050847293,0.013559322033914,0.000000000000015,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448317,-0.013559322033914,-0.000000000000017,2 -2946,3004,3006,3064,-0.365517241379721,0.352542372881226,-0.372413793103871,0.345762711864250,-0.372413793103887,0.359322033898204,-0.379310344828038,0.352542372881227,0.013559322033954,0.000000000000015,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448318,-0.013559322033954,-0.000000000000017,2 -2947,3005,3007,3065,-0.365517241379736,0.366101694915162,-0.372413793103887,0.359322033898204,-0.372413793103903,0.372881355932121,-0.379310344828055,0.366101694915163,0.013559322033918,0.000000000000015,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448320,-0.013559322033918,-0.000000000000017,2 -2948,3006,3008,3066,-0.365517241379751,0.379661016949094,-0.372413793103903,0.372881355932121,-0.372413793103919,0.386440677966068,-0.379310344828071,0.379661016949095,0.013559322033946,0.000000000000015,-0.000000000000000,-0.013793103448320,0.000000000000000,0.013793103448321,-0.013559322033946,-0.000000000000017,2 -2060,2949,3007,3067,-0.372413793103935,0.400000000000000,-0.365517241379766,0.393220338983034,-0.372413793103919,0.386440677966068,-0.379310344828088,0.393220338983034,0.000000000000000,0.013793103448323,0.013559322033932,0.000000000000015,-0.000000000000000,-0.013793103448321,-0.013559322033932,-0.000000000000017,2 -2950,3010,3068,4148,-0.379310344827119,-0.393220338983059,-0.386206896551246,-0.386440677966118,-0.393103448275355,-0.393220338983059,-0.386206896551228,-0.400000000000000,0.013559322033882,0.000000000000017,-0.000000000000000,0.013793103448237,-0.013559322033882,-0.000000000000018,0.000000000000000,-0.013793103448235,2 -2951,3009,3011,3069,-0.379310344827136,-0.379661016949189,-0.386206896551246,-0.386440677966118,-0.386206896551263,-0.372881355932259,-0.393103448275373,-0.379661016949189,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448238,-0.013559322033860,-0.000000000000018,2 -2952,3010,3012,3070,-0.379310344827153,-0.366101694915329,-0.386206896551263,-0.372881355932259,-0.386206896551280,-0.359322033898399,-0.393103448275391,-0.366101694915329,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448238,-0.000000000000000,0.013793103448239,-0.013559322033860,-0.000000000000018,2 -2953,3011,3013,3071,-0.379310344827169,-0.352542372881469,-0.386206896551280,-0.359322033898399,-0.386206896551298,-0.345762711864539,-0.393103448275409,-0.352542372881469,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448239,-0.000000000000000,0.013793103448240,-0.013559322033860,-0.000000000000018,2 -2954,3012,3014,3072,-0.379310344827186,-0.338983050847605,-0.386206896551298,-0.345762711864539,-0.386206896551315,-0.332203389830670,-0.393103448275427,-0.338983050847605,0.013559322033869,0.000000000000017,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448242,-0.013559322033869,-0.000000000000018,2 -2955,3013,3015,3073,-0.379310344827203,-0.325423728813729,-0.386206896551315,-0.332203389830670,-0.386206896551333,-0.318644067796787,-0.393103448275445,-0.325423728813729,0.013559322033883,0.000000000000017,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448243,-0.013559322033883,-0.000000000000018,2 -2956,3014,3016,3074,-0.379310344827219,-0.311864406779851,-0.386206896551333,-0.318644067796787,-0.386206896551350,-0.305084745762915,-0.393103448275463,-0.311864406779851,0.013559322033872,0.000000000000017,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448244,-0.013559322033872,-0.000000000000018,2 -2957,3015,3017,3075,-0.379310344827236,-0.298305084745975,-0.386206896551350,-0.305084745762915,-0.386206896551367,-0.291525423729035,-0.393103448275481,-0.298305084745975,0.013559322033880,0.000000000000017,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448245,-0.013559322033880,-0.000000000000018,2 -2958,3016,3018,3076,-0.379310344827253,-0.284745762712105,-0.386206896551367,-0.291525423729035,-0.386206896551385,-0.277966101695176,-0.393103448275499,-0.284745762712105,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448247,-0.013559322033860,-0.000000000000018,2 -2959,3017,3019,3077,-0.379310344827270,-0.271186440678246,-0.386206896551385,-0.277966101695176,-0.386206896551402,-0.264406779661316,-0.393103448275517,-0.271186440678246,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448248,-0.013559322033860,-0.000000000000018,2 -2960,3018,3020,3078,-0.379310344827286,-0.257627118644386,-0.386206896551402,-0.264406779661316,-0.386206896551419,-0.250847457627456,-0.393103448275535,-0.257627118644386,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448249,-0.013559322033860,-0.000000000000018,2 -2961,3019,3021,3079,-0.379310344827303,-0.244067796610526,-0.386206896551419,-0.250847457627456,-0.386206896551437,-0.237288135593597,-0.393103448275553,-0.244067796610526,0.013559322033859,0.000000000000017,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448251,-0.013559322033860,-0.000000000000018,2 -2962,3020,3022,3080,-0.379310344827320,-0.230508474576667,-0.386206896551437,-0.237288135593597,-0.386206896551454,-0.223728813559737,-0.393103448275571,-0.230508474576667,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448252,-0.013559322033860,-0.000000000000018,2 -2963,3021,3023,3081,-0.379310344827336,-0.216949152542807,-0.386206896551454,-0.223728813559737,-0.386206896551471,-0.210169491525877,-0.393103448275589,-0.216949152542807,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448253,-0.013559322033860,-0.000000000000018,2 -2964,3022,3024,3082,-0.379310344827353,-0.203389830508947,-0.386206896551471,-0.210169491525877,-0.386206896551489,-0.196610169492017,-0.393103448275607,-0.203389830508947,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448255,-0.013559322033860,-0.000000000000018,2 -2965,3023,3025,3083,-0.379310344827370,-0.189830508475087,-0.386206896551489,-0.196610169492017,-0.386206896551506,-0.183050847458158,-0.393103448275625,-0.189830508475088,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448256,-0.013559322033860,-0.000000000000018,2 -2966,3024,3026,3084,-0.379310344827386,-0.176271186441228,-0.386206896551506,-0.183050847458158,-0.386206896551523,-0.169491525424298,-0.393103448275643,-0.176271186441228,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448257,-0.013559322033860,-0.000000000000018,2 -2967,3025,3027,3085,-0.379310344827403,-0.162711864407368,-0.386206896551523,-0.169491525424298,-0.386206896551541,-0.155932203390438,-0.393103448275661,-0.162711864407368,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448259,-0.013559322033860,-0.000000000000018,2 -2968,3026,3028,3086,-0.379310344827420,-0.149152542373509,-0.386206896551541,-0.155932203390438,-0.386206896551558,-0.142372881356579,-0.393103448275679,-0.149152542373509,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448260,-0.013559322033860,-0.000000000000018,2 -2969,3027,3029,3087,-0.379310344827437,-0.135593220339649,-0.386206896551558,-0.142372881356579,-0.386206896551576,-0.128813559322719,-0.393103448275697,-0.135593220339649,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448261,-0.013559322033860,-0.000000000000018,2 -2970,3028,3030,3088,-0.379310344827453,-0.122033898305789,-0.386206896551576,-0.128813559322719,-0.386206896551593,-0.115254237288859,-0.393103448275715,-0.122033898305789,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448262,-0.013559322033860,-0.000000000000018,2 -2971,3029,3031,3089,-0.379310344827470,-0.108474576271933,-0.386206896551593,-0.115254237288859,-0.386206896551610,-0.101694915255008,-0.393103448275733,-0.108474576271933,0.013559322033852,0.000000000000017,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448264,-0.013559322033852,-0.000000000000018,2 -2972,3030,3032,3090,-0.379310344827487,-0.094915254238085,-0.386206896551610,-0.101694915255008,-0.386206896551628,-0.088135593221162,-0.393103448275751,-0.094915254238085,0.013559322033846,0.000000000000017,0.000000000000000,-0.013793103448264,0.000000000000000,0.013793103448265,-0.013559322033846,-0.000000000000018,2 -2973,3031,3033,3091,-0.379310344827503,-0.081355932204232,-0.386206896551628,-0.088135593221162,-0.386206896551645,-0.074576271187302,-0.393103448275769,-0.081355932204232,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448266,-0.013559322033860,-0.000000000000018,2 -2974,3032,3034,3092,-0.379310344827520,-0.067796610170372,-0.386206896551645,-0.074576271187302,-0.386206896551662,-0.061016949153442,-0.393103448275787,-0.067796610170372,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000018,2 -2975,3033,3035,3093,-0.379310344827537,-0.054237288136513,-0.386206896551662,-0.061016949153442,-0.386206896551680,-0.047457627119583,-0.393103448275805,-0.054237288136513,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000018,2 -2976,3034,3036,3094,-0.379310344827554,-0.040677966102653,-0.386206896551680,-0.047457627119583,-0.386206896551697,-0.033898305085723,-0.393103448275823,-0.040677966102653,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000018,2 -2977,3035,3037,3095,-0.379310344827570,-0.027118644068793,-0.386206896551697,-0.033898305085723,-0.386206896551714,-0.020338983051863,-0.393103448275841,-0.027118644068793,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000018,2 -2978,3036,3038,3096,-0.379310344827587,-0.013559322034934,-0.386206896551714,-0.020338983051863,-0.386206896551732,-0.006779661018004,-0.393103448275859,-0.013559322034934,0.013559322033860,0.000000000000017,-0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000018,2 -2979,3037,3039,3097,-0.379310344827604,-0.000000000001056,-0.386206896551732,-0.006779661018004,-0.386206896551749,0.006779661015891,-0.393103448275877,-0.000000000001056,0.013559322033895,0.000000000000016,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000018,2 -2980,3038,3040,3098,-0.379310344827620,0.013559322032862,-0.386206896551749,0.006779661015891,-0.386206896551767,0.020338983049833,-0.393103448275895,0.013559322032862,0.013559322033941,0.000000000000017,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448275,-0.013559322033941,-0.000000000000018,2 -2981,3039,3041,3099,-0.379310344827637,0.027118644066798,-0.386206896551767,0.020338983049833,-0.386206896551784,0.033898305083763,-0.393103448275913,0.027118644066798,0.013559322033930,0.000000000000017,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448277,-0.013559322033930,-0.000000000000018,2 -2982,3040,3042,3100,-0.379310344827654,0.040677966100731,-0.386206896551784,0.033898305083763,-0.386206896551801,0.047457627117699,-0.393103448275931,0.040677966100731,0.013559322033937,0.000000000000017,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448278,-0.013559322033937,-0.000000000000018,2 -2983,3041,3043,3101,-0.379310344827670,0.054237288134667,-0.386206896551801,0.047457627117699,-0.386206896551818,0.061016949151634,-0.393103448275949,0.054237288134667,0.013559322033935,0.000000000000017,-0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448279,-0.013559322033935,-0.000000000000018,2 -2984,3042,3044,3102,-0.379310344827687,0.067796610168599,-0.386206896551818,0.061016949151634,-0.386206896551836,0.074576271185564,-0.393103448275967,0.067796610168599,0.013559322033930,0.000000000000017,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448281,-0.013559322033930,-0.000000000000018,2 -2985,3043,3045,3103,-0.379310344827704,0.081355932202535,-0.386206896551836,0.074576271185564,-0.386206896551853,0.088135593219506,-0.393103448275985,0.081355932202535,0.013559322033941,0.000000000000017,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448282,-0.013559322033941,-0.000000000000018,2 -2986,3044,3046,3104,-0.379310344827721,0.094915254236471,-0.386206896551853,0.088135593219506,-0.386206896551871,0.101694915253436,-0.393103448276003,0.094915254236471,0.013559322033930,0.000000000000017,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000018,2 -2987,3045,3047,3105,-0.379310344827737,0.108474576270409,-0.386206896551871,0.101694915253436,-0.386206896551888,0.115254237287382,-0.393103448276021,0.108474576270409,0.013559322033946,0.000000000000017,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448284,-0.013559322033946,-0.000000000000018,2 -2988,3046,3048,3106,-0.379310344827754,0.122033898304341,-0.386206896551888,0.115254237287382,-0.386206896551905,0.128813559321301,-0.393103448276039,0.122033898304341,0.013559322033919,0.000000000000017,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448286,-0.013559322033919,-0.000000000000018,2 -2989,3047,3049,3107,-0.379310344827771,0.135593220338273,-0.386206896551905,0.128813559321301,-0.386206896551923,0.142372881355246,-0.393103448276057,0.135593220338273,0.013559322033945,0.000000000000017,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448287,-0.013559322033945,-0.000000000000018,2 -2990,3048,3050,3108,-0.379310344827787,0.149152542372213,-0.386206896551923,0.142372881355246,-0.386206896551940,0.155932203389179,-0.393103448276075,0.149152542372213,0.013559322033933,0.000000000000017,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448288,-0.013559322033933,-0.000000000000018,2 -2991,3049,3051,3109,-0.379310344827804,0.162711864406145,-0.386206896551940,0.155932203389179,-0.386206896551957,0.169491525423110,-0.393103448276093,0.162711864406145,0.013559322033931,0.000000000000017,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448290,-0.013559322033931,-0.000000000000018,2 -2992,3050,3052,3110,-0.379310344827821,0.176271186440084,-0.386206896551957,0.169491525423110,-0.386206896551975,0.183050847457058,-0.393103448276111,0.176271186440084,0.013559322033948,0.000000000000017,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448291,-0.013559322033948,-0.000000000000018,2 -2993,3051,3053,3111,-0.379310344827838,0.189830508474016,-0.386206896551975,0.183050847457058,-0.386206896551992,0.196610169490975,-0.393103448276129,0.189830508474016,0.013559322033917,0.000000000000017,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448292,-0.013559322033917,-0.000000000000018,2 -2994,3052,3054,3112,-0.379310344827854,0.203389830507945,-0.386206896551992,0.196610169490975,-0.386206896552009,0.210169491524915,-0.393103448276147,0.203389830507945,0.013559322033940,0.000000000000017,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448294,-0.013559322033940,-0.000000000000018,2 -2995,3053,3055,3113,-0.379310344827871,0.216949152541877,-0.386206896552009,0.210169491524915,-0.386206896552027,0.223728813558839,-0.393103448276165,0.216949152541877,0.013559322033924,0.000000000000017,0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448295,-0.013559322033924,-0.000000000000018,2 -2996,3054,3056,3114,-0.379310344827888,0.230508474575816,-0.386206896552027,0.223728813558839,-0.386206896552044,0.237288135592793,-0.393103448276183,0.230508474575816,0.013559322033954,0.000000000000017,-0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448296,-0.013559322033954,-0.000000000000018,2 -2997,3055,3057,3115,-0.379310344827904,0.244067796609748,-0.386206896552044,0.237288135592793,-0.386206896552062,0.250847457626703,-0.393103448276201,0.244067796609748,0.013559322033910,0.000000000000017,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,-0.013559322033910,-0.000000000000018,2 -2998,3056,3058,3116,-0.379310344827921,0.257627118643680,-0.386206896552062,0.250847457626703,-0.386206896552079,0.264406779660657,-0.393103448276219,0.257627118643680,0.013559322033954,0.000000000000017,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448299,-0.013559322033954,-0.000000000000018,2 -2999,3057,3059,3117,-0.379310344827938,0.271186440677618,-0.386206896552079,0.264406779660657,-0.386206896552096,0.277966101694579,-0.393103448276237,0.271186440677618,0.013559322033922,0.000000000000017,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448300,-0.013559322033922,-0.000000000000018,2 -3000,3058,3060,3118,-0.379310344827955,0.284745762711550,-0.386206896552096,0.277966101694579,-0.386206896552114,0.291525423728521,-0.393103448276255,0.284745762711550,0.013559322033942,0.000000000000017,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448301,-0.013559322033942,-0.000000000000018,2 -3001,3059,3061,3119,-0.379310344827971,0.298305084745489,-0.386206896552114,0.291525423728521,-0.386206896552131,0.305084745762457,-0.393103448276273,0.298305084745489,0.013559322033936,0.000000000000017,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448303,-0.013559322033936,-0.000000000000018,2 -3002,3060,3062,3120,-0.379310344827988,0.311864406779421,-0.386206896552131,0.305084745762457,-0.386206896552148,0.318644067796385,-0.393103448276291,0.311864406779421,0.013559322033928,0.000000000000017,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448304,-0.013559322033928,-0.000000000000018,2 -3003,3061,3063,3121,-0.379310344828005,0.325423728813361,-0.386206896552148,0.318644067796385,-0.386206896552166,0.332203389830336,-0.393103448276309,0.325423728813361,0.013559322033950,0.000000000000017,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448305,-0.013559322033951,-0.000000000000018,2 -3004,3062,3064,3122,-0.379310344828021,0.338983050847293,-0.386206896552166,0.332203389830336,-0.386206896552183,0.345762711864250,-0.393103448276327,0.338983050847293,0.013559322033914,0.000000000000017,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448307,-0.013559322033914,-0.000000000000018,2 -3005,3063,3065,3123,-0.379310344828038,0.352542372881227,-0.386206896552183,0.345762711864250,-0.386206896552200,0.359322033898204,-0.393103448276345,0.352542372881227,0.013559322033954,0.000000000000017,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448308,-0.013559322033954,-0.000000000000018,2 -3006,3064,3066,3124,-0.379310344828055,0.366101694915163,-0.386206896552200,0.359322033898204,-0.386206896552218,0.372881355932121,-0.393103448276363,0.366101694915162,0.013559322033918,0.000000000000017,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448309,-0.013559322033918,-0.000000000000018,2 -3007,3065,3067,3125,-0.379310344828071,0.379661016949095,-0.386206896552218,0.372881355932121,-0.386206896552235,0.386440677966068,-0.393103448276381,0.379661016949095,0.013559322033946,0.000000000000017,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448311,-0.013559322033946,-0.000000000000018,2 -2046,3008,3066,3126,-0.386206896552252,0.400000000000000,-0.379310344828088,0.393220338983034,-0.386206896552235,0.386440677966068,-0.393103448276399,0.393220338983034,0.000000000000000,0.013793103448312,0.013559322033932,0.000000000000017,0.000000000000000,-0.013793103448311,-0.013559322033932,-0.000000000000018,2 -3009,3069,3127,4162,-0.393103448275355,-0.393220338983059,-0.399999999999505,-0.386440677966118,-0.406896551723638,-0.393220338983059,-0.399999999999487,-0.400000000000000,0.013559322033882,0.000000000000018,-0.000000000000000,0.013793103448283,-0.013559322033882,-0.000000000000018,0.000000000000000,-0.013793103448283,2 -3010,3068,3070,3128,-0.393103448275373,-0.379661016949189,-0.399999999999505,-0.386440677966118,-0.399999999999523,-0.372881355932259,-0.406896551723655,-0.379661016949189,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000018,2 -3011,3069,3071,3129,-0.393103448275391,-0.366101694915329,-0.399999999999523,-0.372881355932259,-0.399999999999541,-0.359322033898399,-0.406896551723673,-0.366101694915329,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000018,2 -3012,3070,3072,3130,-0.393103448275409,-0.352542372881469,-0.399999999999541,-0.359322033898399,-0.399999999999559,-0.345762711864539,-0.406896551723691,-0.352542372881469,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000018,2 -3013,3071,3073,3131,-0.393103448275427,-0.338983050847605,-0.399999999999559,-0.345762711864539,-0.399999999999577,-0.332203389830670,-0.406896551723709,-0.338983050847605,0.013559322033869,0.000000000000018,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448281,-0.013559322033869,-0.000000000000018,2 -3014,3072,3074,3132,-0.393103448275445,-0.325423728813729,-0.399999999999577,-0.332203389830670,-0.399999999999595,-0.318644067796787,-0.406896551723726,-0.325423728813729,0.013559322033883,0.000000000000018,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448281,-0.013559322033883,-0.000000000000018,2 -3015,3073,3075,3133,-0.393103448275463,-0.311864406779851,-0.399999999999595,-0.318644067796787,-0.399999999999612,-0.305084745762915,-0.406896551723744,-0.311864406779851,0.013559322033872,0.000000000000018,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448281,-0.013559322033872,-0.000000000000018,2 -3016,3074,3076,3134,-0.393103448275481,-0.298305084745975,-0.399999999999612,-0.305084745762915,-0.399999999999630,-0.291525423729035,-0.406896551723762,-0.298305084745975,0.013559322033880,0.000000000000018,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448281,-0.013559322033880,-0.000000000000018,2 -3017,3075,3077,3135,-0.393103448275499,-0.284745762712105,-0.399999999999630,-0.291525423729035,-0.399999999999648,-0.277966101695176,-0.406896551723779,-0.284745762712105,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000018,2 -3018,3076,3078,3136,-0.393103448275517,-0.271186440678246,-0.399999999999648,-0.277966101695176,-0.399999999999666,-0.264406779661316,-0.406896551723797,-0.271186440678246,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000018,2 -3019,3077,3079,3137,-0.393103448275535,-0.257627118644386,-0.399999999999666,-0.264406779661316,-0.399999999999684,-0.250847457627456,-0.406896551723815,-0.257627118644386,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000018,2 -3020,3078,3080,3138,-0.393103448275553,-0.244067796610526,-0.399999999999684,-0.250847457627456,-0.399999999999702,-0.237288135593597,-0.406896551723832,-0.244067796610526,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000018,2 -3021,3079,3081,3139,-0.393103448275571,-0.230508474576667,-0.399999999999702,-0.237288135593597,-0.399999999999719,-0.223728813559737,-0.406896551723850,-0.230508474576667,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000018,2 -3022,3080,3082,3140,-0.393103448275589,-0.216949152542807,-0.399999999999719,-0.223728813559737,-0.399999999999737,-0.210169491525877,-0.406896551723868,-0.216949152542807,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000018,2 -3023,3081,3083,3141,-0.393103448275607,-0.203389830508947,-0.399999999999737,-0.210169491525877,-0.399999999999755,-0.196610169492017,-0.406896551723885,-0.203389830508947,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000018,2 -3024,3082,3084,3142,-0.393103448275625,-0.189830508475088,-0.399999999999755,-0.196610169492017,-0.399999999999773,-0.183050847458158,-0.406896551723903,-0.189830508475088,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000018,2 -3025,3083,3085,3143,-0.393103448275643,-0.176271186441228,-0.399999999999773,-0.183050847458158,-0.399999999999791,-0.169491525424298,-0.406896551723921,-0.176271186441228,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000018,2 -3026,3084,3086,3144,-0.393103448275661,-0.162711864407368,-0.399999999999791,-0.169491525424298,-0.399999999999809,-0.155932203390438,-0.406896551723938,-0.162711864407368,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000018,2 -3027,3085,3087,3145,-0.393103448275679,-0.149152542373509,-0.399999999999809,-0.155932203390438,-0.399999999999826,-0.142372881356579,-0.406896551723956,-0.149152542373509,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000018,2 -3028,3086,3088,3146,-0.393103448275697,-0.135593220339649,-0.399999999999826,-0.142372881356579,-0.399999999999844,-0.128813559322719,-0.406896551723974,-0.135593220339649,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000018,2 -3029,3087,3089,3147,-0.393103448275715,-0.122033898305789,-0.399999999999844,-0.128813559322719,-0.399999999999862,-0.115254237288859,-0.406896551723991,-0.122033898305789,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000018,2 -3030,3088,3090,3148,-0.393103448275733,-0.108474576271933,-0.399999999999862,-0.115254237288859,-0.399999999999880,-0.101694915255008,-0.406896551724009,-0.108474576271933,0.013559322033852,0.000000000000018,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448276,-0.013559322033852,-0.000000000000018,2 -3031,3089,3091,3149,-0.393103448275751,-0.094915254238085,-0.399999999999880,-0.101694915255008,-0.399999999999898,-0.088135593221162,-0.406896551724027,-0.094915254238085,0.013559322033846,0.000000000000018,0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448276,-0.013559322033846,-0.000000000000017,2 -3032,3090,3092,3150,-0.393103448275769,-0.081355932204232,-0.399999999999898,-0.088135593221162,-0.399999999999916,-0.074576271187302,-0.406896551724044,-0.081355932204232,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000018,2 -3033,3091,3093,3151,-0.393103448275787,-0.067796610170372,-0.399999999999916,-0.074576271187302,-0.399999999999934,-0.061016949153442,-0.406896551724062,-0.067796610170372,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000018,2 -3034,3092,3094,3152,-0.393103448275805,-0.054237288136513,-0.399999999999934,-0.061016949153442,-0.399999999999951,-0.047457627119583,-0.406896551724080,-0.054237288136513,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000018,2 -3035,3093,3095,3153,-0.393103448275823,-0.040677966102653,-0.399999999999951,-0.047457627119583,-0.399999999999969,-0.033898305085723,-0.406896551724097,-0.040677966102653,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000018,2 -3036,3094,3096,3154,-0.393103448275841,-0.027118644068793,-0.399999999999969,-0.033898305085723,-0.399999999999987,-0.020338983051863,-0.406896551724115,-0.027118644068793,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000018,2 -3037,3095,3097,3155,-0.393103448275859,-0.013559322034934,-0.399999999999987,-0.020338983051863,-0.400000000000005,-0.006779661018004,-0.406896551724133,-0.013559322034934,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000018,2 -3038,3096,3098,3156,-0.393103448275877,-0.000000000001056,-0.400000000000005,-0.006779661018004,-0.400000000000023,0.006779661015891,-0.406896551724151,-0.000000000001056,0.013559322033895,0.000000000000018,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448273,-0.013559322033895,-0.000000000000017,2 -3039,3097,3099,3157,-0.393103448275895,0.013559322032862,-0.400000000000023,0.006779661015891,-0.400000000000041,0.020338983049833,-0.406896551724168,0.013559322032862,0.013559322033941,0.000000000000018,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448273,-0.013559322033941,-0.000000000000017,2 -3040,3098,3100,3158,-0.393103448275913,0.027118644066798,-0.400000000000041,0.020338983049833,-0.400000000000058,0.033898305083763,-0.406896551724186,0.027118644066798,0.013559322033930,0.000000000000018,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448273,-0.013559322033930,-0.000000000000018,2 -3041,3099,3101,3159,-0.393103448275931,0.040677966100731,-0.400000000000058,0.033898305083763,-0.400000000000076,0.047457627117699,-0.406896551724204,0.040677966100731,0.013559322033937,0.000000000000018,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,-0.013559322033937,-0.000000000000018,2 -3042,3100,3102,3160,-0.393103448275949,0.054237288134667,-0.400000000000076,0.047457627117699,-0.400000000000094,0.061016949151634,-0.406896551724221,0.054237288134667,0.013559322033935,0.000000000000018,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448272,-0.013559322033935,-0.000000000000018,2 -3043,3101,3103,3161,-0.393103448275967,0.067796610168599,-0.400000000000094,0.061016949151634,-0.400000000000112,0.074576271185564,-0.406896551724239,0.067796610168599,0.013559322033930,0.000000000000018,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448272,-0.013559322033930,-0.000000000000018,2 -3044,3102,3104,3162,-0.393103448275985,0.081355932202535,-0.400000000000112,0.074576271185564,-0.400000000000130,0.088135593219506,-0.406896551724257,0.081355932202535,0.013559322033941,0.000000000000018,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448271,-0.013559322033941,-0.000000000000018,2 -3045,3103,3105,3163,-0.393103448276003,0.094915254236471,-0.400000000000130,0.088135593219506,-0.400000000000148,0.101694915253436,-0.406896551724274,0.094915254236471,0.013559322033930,0.000000000000018,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448271,-0.013559322033930,-0.000000000000018,2 -3046,3104,3106,3164,-0.393103448276021,0.108474576270409,-0.400000000000148,0.101694915253436,-0.400000000000165,0.115254237287382,-0.406896551724292,0.108474576270409,0.013559322033946,0.000000000000018,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448271,-0.013559322033946,-0.000000000000018,2 -3047,3105,3107,3165,-0.393103448276039,0.122033898304341,-0.400000000000165,0.115254237287382,-0.400000000000183,0.128813559321301,-0.406896551724310,0.122033898304341,0.013559322033919,0.000000000000018,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448270,-0.013559322033919,-0.000000000000018,2 -3048,3106,3108,3166,-0.393103448276057,0.135593220338273,-0.400000000000183,0.128813559321301,-0.400000000000201,0.142372881355246,-0.406896551724327,0.135593220338273,0.013559322033945,0.000000000000018,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448270,-0.013559322033945,-0.000000000000017,2 -3049,3107,3109,3167,-0.393103448276075,0.149152542372213,-0.400000000000201,0.142372881355246,-0.400000000000219,0.155932203389179,-0.406896551724345,0.149152542372213,0.013559322033933,0.000000000000018,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448270,-0.013559322033933,-0.000000000000018,2 -3050,3108,3110,3168,-0.393103448276093,0.162711864406145,-0.400000000000219,0.155932203389179,-0.400000000000237,0.169491525423110,-0.406896551724363,0.162711864406145,0.013559322033931,0.000000000000018,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033931,-0.000000000000018,2 -3051,3109,3111,3169,-0.393103448276111,0.176271186440084,-0.400000000000237,0.169491525423110,-0.400000000000255,0.183050847457058,-0.406896551724380,0.176271186440084,0.013559322033948,0.000000000000018,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448269,-0.013559322033948,-0.000000000000018,2 -3052,3110,3112,3170,-0.393103448276129,0.189830508474016,-0.400000000000255,0.183050847457058,-0.400000000000273,0.196610169490975,-0.406896551724398,0.189830508474016,0.013559322033917,0.000000000000018,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448269,-0.013559322033917,-0.000000000000018,2 -3053,3111,3113,3171,-0.393103448276147,0.203389830507945,-0.400000000000273,0.196610169490975,-0.400000000000290,0.210169491524915,-0.406896551724416,0.203389830507945,0.013559322033940,0.000000000000018,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033940,-0.000000000000018,2 -3054,3112,3114,3172,-0.393103448276165,0.216949152541877,-0.400000000000290,0.210169491524915,-0.400000000000308,0.223728813558839,-0.406896551724433,0.216949152541877,0.013559322033924,0.000000000000018,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448268,-0.013559322033924,-0.000000000000018,2 -3055,3113,3115,3173,-0.393103448276183,0.230508474575816,-0.400000000000308,0.223728813558839,-0.400000000000326,0.237288135592793,-0.406896551724451,0.230508474575816,0.013559322033954,0.000000000000018,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448268,-0.013559322033954,-0.000000000000018,2 -3056,3114,3116,3174,-0.393103448276201,0.244067796609748,-0.400000000000326,0.237288135592793,-0.400000000000344,0.250847457626703,-0.406896551724469,0.244067796609748,0.013559322033910,0.000000000000018,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033910,-0.000000000000018,2 -3057,3115,3117,3175,-0.393103448276219,0.257627118643680,-0.400000000000344,0.250847457626703,-0.400000000000362,0.264406779660657,-0.406896551724486,0.257627118643680,0.013559322033954,0.000000000000018,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448267,-0.013559322033954,-0.000000000000018,2 -3058,3116,3118,3176,-0.393103448276237,0.271186440677618,-0.400000000000362,0.264406779660657,-0.400000000000380,0.277966101694579,-0.406896551724504,0.271186440677618,0.013559322033922,0.000000000000018,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448267,-0.013559322033922,-0.000000000000018,2 -3059,3117,3119,3177,-0.393103448276255,0.284745762711550,-0.400000000000380,0.277966101694579,-0.400000000000397,0.291525423728521,-0.406896551724522,0.284745762711550,0.013559322033942,0.000000000000018,0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448266,-0.013559322033942,-0.000000000000018,2 -3060,3118,3120,3178,-0.393103448276273,0.298305084745489,-0.400000000000397,0.291525423728521,-0.400000000000415,0.305084745762457,-0.406896551724540,0.298305084745489,0.013559322033936,0.000000000000018,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448266,-0.013559322033936,-0.000000000000018,2 -3061,3119,3121,3179,-0.393103448276291,0.311864406779421,-0.400000000000415,0.305084745762457,-0.400000000000433,0.318644067796385,-0.406896551724557,0.311864406779421,0.013559322033928,0.000000000000018,0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448266,-0.013559322033928,-0.000000000000018,2 -3062,3120,3122,3180,-0.393103448276309,0.325423728813361,-0.400000000000433,0.318644067796385,-0.400000000000451,0.332203389830336,-0.406896551724575,0.325423728813361,0.013559322033951,0.000000000000018,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448265,-0.013559322033950,-0.000000000000018,2 -3063,3121,3123,3181,-0.393103448276327,0.338983050847293,-0.400000000000451,0.332203389830336,-0.400000000000469,0.345762711864250,-0.406896551724593,0.338983050847293,0.013559322033914,0.000000000000018,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448265,-0.013559322033914,-0.000000000000018,2 -3064,3122,3124,3182,-0.393103448276345,0.352542372881227,-0.400000000000469,0.345762711864250,-0.400000000000487,0.359322033898203,-0.406896551724610,0.352542372881227,0.013559322033954,0.000000000000018,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448265,-0.013559322033954,-0.000000000000018,2 -3065,3123,3125,3183,-0.393103448276363,0.366101694915162,-0.400000000000487,0.359322033898203,-0.400000000000505,0.372881355932121,-0.406896551724628,0.366101694915162,0.013559322033918,0.000000000000018,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448265,-0.013559322033918,-0.000000000000018,2 -3066,3124,3126,3184,-0.393103448276381,0.379661016949095,-0.400000000000505,0.372881355932121,-0.400000000000522,0.386440677966068,-0.406896551724646,0.379661016949095,0.013559322033946,0.000000000000018,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448264,-0.013559322033946,-0.000000000000018,2 -2032,3067,3125,3185,-0.400000000000540,0.400000000000000,-0.393103448276399,0.393220338983034,-0.400000000000522,0.386440677966068,-0.406896551724663,0.393220338983034,0.000000000000000,0.013793103448264,0.013559322033932,0.000000000000018,0.000000000000000,-0.013793103448264,-0.013559322033932,-0.000000000000018,2 -3068,3128,3186,4176,-0.406896551723638,-0.393220338983059,-0.413793103447803,-0.386440677966118,-0.420689655171950,-0.393220338983059,-0.413793103447786,-0.400000000000000,0.013559322033882,0.000000000000018,0.000000000000000,0.013793103448312,-0.013559322033882,-0.000000000000016,0.000000000000000,-0.013793103448313,2 -3069,3127,3129,3187,-0.406896551723655,-0.379661016949189,-0.413793103447803,-0.386440677966118,-0.413793103447820,-0.372881355932259,-0.420689655171967,-0.379661016949189,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448311,-0.013559322033860,-0.000000000000017,2 -3070,3128,3130,3188,-0.406896551723673,-0.366101694915329,-0.413793103447820,-0.372881355932259,-0.413793103447837,-0.359322033898399,-0.420689655171983,-0.366101694915329,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448309,-0.013559322033860,-0.000000000000016,2 -3071,3129,3131,3189,-0.406896551723691,-0.352542372881469,-0.413793103447837,-0.359322033898399,-0.413793103447854,-0.345762711864539,-0.420689655172000,-0.352542372881469,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448308,-0.013559322033860,-0.000000000000016,2 -3072,3130,3132,3190,-0.406896551723709,-0.338983050847605,-0.413793103447854,-0.345762711864539,-0.413793103447871,-0.332203389830670,-0.420689655172016,-0.338983050847605,0.013559322033869,0.000000000000018,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448307,-0.013559322033869,-0.000000000000016,2 -3073,3131,3133,3191,-0.406896551723726,-0.325423728813729,-0.413793103447871,-0.332203389830670,-0.413793103447888,-0.318644067796787,-0.420689655172032,-0.325423728813729,0.013559322033883,0.000000000000018,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448305,-0.013559322033883,-0.000000000000016,2 -3074,3132,3134,3192,-0.406896551723744,-0.311864406779851,-0.413793103447888,-0.318644067796787,-0.413793103447905,-0.305084745762915,-0.420689655172049,-0.311864406779851,0.013559322033872,0.000000000000018,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448304,-0.013559322033872,-0.000000000000016,2 -3075,3133,3135,3193,-0.406896551723762,-0.298305084745975,-0.413793103447905,-0.305084745762915,-0.413793103447922,-0.291525423729035,-0.420689655172065,-0.298305084745975,0.013559322033880,0.000000000000018,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448303,-0.013559322033880,-0.000000000000016,2 -3076,3134,3136,3194,-0.406896551723779,-0.284745762712105,-0.413793103447922,-0.291525423729035,-0.413793103447939,-0.277966101695176,-0.420689655172082,-0.284745762712105,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,-0.013559322033860,-0.000000000000016,2 -3077,3135,3137,3195,-0.406896551723797,-0.271186440678246,-0.413793103447939,-0.277966101695176,-0.413793103447956,-0.264406779661316,-0.420689655172098,-0.271186440678246,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448300,-0.013559322033860,-0.000000000000016,2 -3078,3136,3138,3196,-0.406896551723815,-0.257627118644386,-0.413793103447956,-0.264406779661316,-0.413793103447973,-0.250847457627456,-0.420689655172114,-0.257627118644386,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448299,-0.013559322033860,-0.000000000000016,2 -3079,3137,3139,3197,-0.406896551723832,-0.244067796610526,-0.413793103447973,-0.250847457627456,-0.413793103447990,-0.237288135593597,-0.420689655172131,-0.244067796610526,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000017,2 -3080,3138,3140,3198,-0.406896551723850,-0.230508474576667,-0.413793103447990,-0.237288135593597,-0.413793103448007,-0.223728813559737,-0.420689655172147,-0.230508474576667,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448298,0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000016,2 -3081,3139,3141,3199,-0.406896551723868,-0.216949152542807,-0.413793103448007,-0.223728813559737,-0.413793103448024,-0.210169491525877,-0.420689655172164,-0.216949152542807,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000016,2 -3082,3140,3142,3200,-0.406896551723885,-0.203389830508947,-0.413793103448024,-0.210169491525877,-0.413793103448041,-0.196610169492017,-0.420689655172180,-0.203389830508947,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000016,2 -3083,3141,3143,3201,-0.406896551723903,-0.189830508475088,-0.413793103448041,-0.196610169492017,-0.413793103448058,-0.183050847458158,-0.420689655172196,-0.189830508475088,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000016,2 -3084,3142,3144,3202,-0.406896551723921,-0.176271186441228,-0.413793103448058,-0.183050847458158,-0.413793103448075,-0.169491525424298,-0.420689655172213,-0.176271186441228,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000016,2 -3085,3143,3145,3203,-0.406896551723938,-0.162711864407368,-0.413793103448075,-0.169491525424298,-0.413793103448092,-0.155932203390438,-0.420689655172229,-0.162711864407368,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000016,2 -3086,3144,3146,3204,-0.406896551723956,-0.149152542373509,-0.413793103448092,-0.155932203390438,-0.413793103448109,-0.142372881356579,-0.420689655172246,-0.149152542373509,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000016,2 -3087,3145,3147,3205,-0.406896551723974,-0.135593220339649,-0.413793103448109,-0.142372881356579,-0.413793103448126,-0.128813559322719,-0.420689655172262,-0.135593220339649,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448288,-0.013559322033860,-0.000000000000017,2 -3088,3146,3148,3206,-0.406896551723991,-0.122033898305789,-0.413793103448126,-0.128813559322719,-0.413793103448143,-0.115254237288859,-0.420689655172278,-0.122033898305789,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000016,2 -3089,3147,3149,3207,-0.406896551724009,-0.108474576271933,-0.413793103448143,-0.115254237288859,-0.413793103448161,-0.101694915255008,-0.420689655172295,-0.108474576271933,0.013559322033852,0.000000000000018,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448285,-0.013559322033852,-0.000000000000017,2 -3090,3148,3150,3208,-0.406896551724027,-0.094915254238085,-0.413793103448161,-0.101694915255008,-0.413793103448177,-0.088135593221162,-0.420689655172311,-0.094915254238085,0.013559322033846,0.000000000000017,-0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448284,-0.013559322033846,-0.000000000000016,2 -3091,3149,3151,3209,-0.406896551724044,-0.081355932204232,-0.413793103448177,-0.088135593221162,-0.413793103448195,-0.074576271187302,-0.420689655172328,-0.081355932204232,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000017,2 -3092,3150,3152,3210,-0.406896551724062,-0.067796610170372,-0.413793103448195,-0.074576271187302,-0.413793103448212,-0.061016949153442,-0.420689655172344,-0.067796610170372,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000016,2 -3093,3151,3153,3211,-0.406896551724080,-0.054237288136513,-0.413793103448212,-0.061016949153442,-0.413793103448229,-0.047457627119583,-0.420689655172360,-0.054237288136513,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000017,2 -3094,3152,3154,3212,-0.406896551724097,-0.040677966102653,-0.413793103448229,-0.047457627119583,-0.413793103448246,-0.033898305085723,-0.420689655172377,-0.040677966102653,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000016,2 -3095,3153,3155,3213,-0.406896551724115,-0.027118644068793,-0.413793103448246,-0.033898305085723,-0.413793103448263,-0.020338983051863,-0.420689655172393,-0.027118644068793,0.013559322033860,0.000000000000018,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000016,2 -3096,3154,3156,3214,-0.406896551724133,-0.013559322034934,-0.413793103448263,-0.020338983051863,-0.413793103448280,-0.006779661018004,-0.420689655172410,-0.013559322034933,0.013559322033860,0.000000000000018,-0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000016,2 -3097,3155,3157,3215,-0.406896551724151,-0.000000000001056,-0.413793103448280,-0.006779661018004,-0.413793103448297,0.006779661015891,-0.420689655172426,-0.000000000001056,0.013559322033895,0.000000000000017,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448275,-0.013559322033895,-0.000000000000017,2 -3098,3156,3158,3216,-0.406896551724168,0.013559322032862,-0.413793103448297,0.006779661015891,-0.413793103448314,0.020338983049833,-0.420689655172443,0.013559322032862,0.013559322033941,0.000000000000017,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448274,-0.013559322033941,-0.000000000000016,2 -3099,3157,3159,3217,-0.406896551724186,0.027118644066798,-0.413793103448314,0.020338983049833,-0.413793103448331,0.033898305083763,-0.420689655172459,0.027118644066798,0.013559322033930,0.000000000000018,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448272,-0.013559322033930,-0.000000000000016,2 -3100,3158,3160,3218,-0.406896551724204,0.040677966100731,-0.413793103448331,0.033898305083763,-0.413793103448348,0.047457627117699,-0.420689655172475,0.040677966100731,0.013559322033937,0.000000000000018,0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448271,-0.013559322033937,-0.000000000000016,2 -3101,3159,3161,3219,-0.406896551724221,0.054237288134667,-0.413793103448348,0.047457627117699,-0.413793103448365,0.061016949151634,-0.420689655172492,0.054237288134667,0.013559322033935,0.000000000000018,-0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448270,-0.013559322033935,-0.000000000000017,2 -3102,3160,3162,3220,-0.406896551724239,0.067796610168599,-0.413793103448365,0.061016949151634,-0.413793103448382,0.074576271185564,-0.420689655172508,0.067796610168599,0.013559322033930,0.000000000000018,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448268,-0.013559322033930,-0.000000000000016,2 -3103,3161,3163,3221,-0.406896551724257,0.081355932202535,-0.413793103448382,0.074576271185564,-0.413793103448399,0.088135593219506,-0.420689655172524,0.081355932202535,0.013559322033941,0.000000000000018,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033941,-0.000000000000016,2 -3104,3162,3164,3222,-0.406896551724274,0.094915254236471,-0.413793103448399,0.088135593219506,-0.413793103448416,0.101694915253436,-0.420689655172541,0.094915254236471,0.013559322033930,0.000000000000018,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448266,-0.013559322033930,-0.000000000000017,2 -3105,3163,3165,3223,-0.406896551724292,0.108474576270409,-0.413793103448416,0.101694915253436,-0.413793103448433,0.115254237287382,-0.420689655172557,0.108474576270409,0.013559322033946,0.000000000000018,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448265,-0.013559322033946,-0.000000000000016,2 -3106,3164,3166,3224,-0.406896551724310,0.122033898304341,-0.413793103448433,0.115254237287382,-0.413793103448450,0.128813559321301,-0.420689655172574,0.122033898304341,0.013559322033919,0.000000000000018,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448263,-0.013559322033919,-0.000000000000016,2 -3107,3165,3167,3225,-0.406896551724327,0.135593220338273,-0.413793103448450,0.128813559321301,-0.413793103448467,0.142372881355246,-0.420689655172590,0.135593220338273,0.013559322033945,0.000000000000017,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033945,-0.000000000000017,2 -3108,3166,3168,3226,-0.406896551724345,0.149152542372213,-0.413793103448467,0.142372881355246,-0.413793103448484,0.155932203389179,-0.420689655172606,0.149152542372213,0.013559322033933,0.000000000000018,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033933,-0.000000000000016,2 -3109,3167,3169,3227,-0.406896551724363,0.162711864406145,-0.413793103448484,0.155932203389179,-0.413793103448501,0.169491525423110,-0.420689655172623,0.162711864406145,0.013559322033931,0.000000000000018,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448260,-0.013559322033931,-0.000000000000016,2 -3110,3168,3170,3228,-0.406896551724380,0.176271186440084,-0.413793103448501,0.169491525423110,-0.413793103448518,0.183050847457058,-0.420689655172639,0.176271186440084,0.013559322033948,0.000000000000018,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448258,-0.013559322033948,-0.000000000000016,2 -3111,3169,3171,3229,-0.406896551724398,0.189830508474016,-0.413793103448518,0.183050847457058,-0.413793103448535,0.196610169490975,-0.420689655172656,0.189830508474016,0.013559322033917,0.000000000000018,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033917,-0.000000000000016,2 -3112,3170,3172,3230,-0.406896551724416,0.203389830507945,-0.413793103448535,0.196610169490975,-0.413793103448552,0.210169491524915,-0.420689655172672,0.203389830507945,0.013559322033940,0.000000000000018,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448256,-0.013559322033940,-0.000000000000016,2 -3113,3171,3173,3231,-0.406896551724433,0.216949152541877,-0.413793103448552,0.210169491524915,-0.413793103448569,0.223728813558839,-0.420689655172688,0.216949152541877,0.013559322033924,0.000000000000018,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448254,-0.013559322033924,-0.000000000000016,2 -3114,3172,3174,3232,-0.406896551724451,0.230508474575816,-0.413793103448569,0.223728813558839,-0.413793103448586,0.237288135592793,-0.420689655172705,0.230508474575816,0.013559322033954,0.000000000000018,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448253,-0.013559322033954,-0.000000000000017,2 -3115,3173,3175,3233,-0.406896551724469,0.244067796609748,-0.413793103448586,0.237288135592793,-0.413793103448604,0.250847457626703,-0.420689655172721,0.244067796609748,0.013559322033910,0.000000000000018,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033910,-0.000000000000016,2 -3116,3174,3176,3234,-0.406896551724486,0.257627118643680,-0.413793103448604,0.250847457626703,-0.413793103448621,0.264406779660657,-0.420689655172738,0.257627118643680,0.013559322033954,0.000000000000018,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033954,-0.000000000000016,2 -3117,3175,3177,3235,-0.406896551724504,0.271186440677618,-0.413793103448621,0.264406779660657,-0.413793103448638,0.277966101694579,-0.420689655172754,0.271186440677618,0.013559322033922,0.000000000000018,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448249,-0.013559322033922,-0.000000000000016,2 -3118,3176,3178,3236,-0.406896551724522,0.284745762711550,-0.413793103448638,0.277966101694579,-0.413793103448655,0.291525423728521,-0.420689655172771,0.284745762711550,0.013559322033942,0.000000000000018,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448248,-0.013559322033942,-0.000000000000016,2 -3119,3177,3179,3237,-0.406896551724540,0.298305084745489,-0.413793103448655,0.291525423728521,-0.413793103448672,0.305084745762457,-0.420689655172787,0.298305084745489,0.013559322033936,0.000000000000018,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033936,-0.000000000000016,2 -3120,3178,3180,3238,-0.406896551724557,0.311864406779421,-0.413793103448672,0.305084745762457,-0.413793103448689,0.318644067796385,-0.420689655172803,0.311864406779421,0.013559322033928,0.000000000000018,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000016,2 -3121,3179,3181,3239,-0.406896551724575,0.325423728813361,-0.413793103448689,0.318644067796385,-0.413793103448706,0.332203389830336,-0.420689655172820,0.325423728813361,0.013559322033950,0.000000000000018,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033950,-0.000000000000016,2 -3122,3180,3182,3240,-0.406896551724593,0.338983050847293,-0.413793103448706,0.332203389830336,-0.413793103448723,0.345762711864250,-0.420689655172836,0.338983050847293,0.013559322033914,0.000000000000018,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000016,2 -3123,3181,3183,3241,-0.406896551724610,0.352542372881227,-0.413793103448723,0.345762711864250,-0.413793103448740,0.359322033898204,-0.420689655172853,0.352542372881227,0.013559322033954,0.000000000000018,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448242,-0.013559322033954,-0.000000000000016,2 -3124,3182,3184,3242,-0.406896551724628,0.366101694915162,-0.413793103448740,0.359322033898204,-0.413793103448757,0.372881355932121,-0.420689655172869,0.366101694915162,0.013559322033918,0.000000000000018,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000016,2 -3125,3183,3185,3243,-0.406896551724646,0.379661016949095,-0.413793103448757,0.372881355932121,-0.413793103448774,0.386440677966068,-0.420689655172885,0.379661016949095,0.013559322033946,0.000000000000018,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000016,2 -2018,3126,3184,3244,-0.413793103448791,0.400000000000000,-0.406896551724663,0.393220338983034,-0.413793103448774,0.386440677966068,-0.420689655172902,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000018,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000016,2 -3127,3187,3245,4190,-0.420689655171950,-0.393220338983059,-0.427586206896116,-0.386440677966118,-0.434482758620265,-0.393220338983059,-0.427586206896100,-0.400000000000000,0.013559322033882,0.000000000000016,-0.000000000000000,0.013793103448314,-0.013559322033882,-0.000000000000015,0.000000000000000,-0.013793103448315,2 -3128,3186,3188,3246,-0.420689655171967,-0.379661016949189,-0.427586206896116,-0.386440677966118,-0.427586206896131,-0.372881355932259,-0.434482758620280,-0.379661016949189,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448313,-0.013559322033860,-0.000000000000015,2 -3129,3187,3189,3247,-0.420689655171983,-0.366101694915329,-0.427586206896131,-0.372881355932259,-0.427586206896147,-0.359322033898399,-0.434482758620295,-0.366101694915329,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448311,-0.013559322033860,-0.000000000000015,2 -3130,3188,3190,3248,-0.420689655172000,-0.352542372881469,-0.427586206896147,-0.359322033898399,-0.427586206896163,-0.345762711864539,-0.434482758620310,-0.352542372881469,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448310,-0.013559322033860,-0.000000000000015,2 -3131,3189,3191,3249,-0.420689655172016,-0.338983050847605,-0.427586206896163,-0.345762711864539,-0.427586206896179,-0.332203389830670,-0.434482758620325,-0.338983050847605,0.013559322033869,0.000000000000016,0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448309,-0.013559322033869,-0.000000000000015,2 -3132,3190,3192,3250,-0.420689655172032,-0.325423728813729,-0.427586206896179,-0.332203389830670,-0.427586206896194,-0.318644067796787,-0.434482758620340,-0.325423728813729,0.013559322033883,0.000000000000016,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448308,-0.013559322033883,-0.000000000000015,2 -3133,3191,3193,3251,-0.420689655172049,-0.311864406779851,-0.427586206896194,-0.318644067796787,-0.427586206896210,-0.305084745762915,-0.434482758620356,-0.311864406779851,0.013559322033872,0.000000000000016,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448306,-0.013559322033872,-0.000000000000015,2 -3134,3192,3194,3252,-0.420689655172065,-0.298305084745975,-0.427586206896210,-0.305084745762915,-0.427586206896226,-0.291525423729035,-0.434482758620371,-0.298305084745975,0.013559322033880,0.000000000000016,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448305,-0.013559322033880,-0.000000000000015,2 -3135,3193,3195,3253,-0.420689655172082,-0.284745762712105,-0.427586206896226,-0.291525423729035,-0.427586206896241,-0.277966101695176,-0.434482758620386,-0.284745762712105,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448304,-0.013559322033860,-0.000000000000015,2 -3136,3194,3196,3254,-0.420689655172098,-0.271186440678246,-0.427586206896241,-0.277966101695176,-0.427586206896257,-0.264406779661316,-0.434482758620401,-0.271186440678246,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448302,-0.013559322033860,-0.000000000000015,2 -3137,3195,3197,3255,-0.420689655172114,-0.257627118644386,-0.427586206896257,-0.264406779661316,-0.427586206896273,-0.250847457627456,-0.434482758620416,-0.257627118644386,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,-0.013559322033860,-0.000000000000015,2 -3138,3196,3198,3256,-0.420689655172131,-0.244067796610526,-0.427586206896273,-0.250847457627456,-0.427586206896289,-0.237288135593597,-0.434482758620431,-0.244067796610526,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448300,-0.013559322033860,-0.000000000000015,2 -3139,3197,3199,3257,-0.420689655172147,-0.230508474576667,-0.427586206896289,-0.237288135593597,-0.427586206896305,-0.223728813559737,-0.434482758620446,-0.230508474576667,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000015,2 -3140,3198,3200,3258,-0.420689655172164,-0.216949152542807,-0.427586206896305,-0.223728813559737,-0.427586206896320,-0.210169491525877,-0.434482758620461,-0.216949152542807,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000015,2 -3141,3199,3201,3259,-0.420689655172180,-0.203389830508947,-0.427586206896320,-0.210169491525877,-0.427586206896336,-0.196610169492017,-0.434482758620476,-0.203389830508947,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000015,2 -3142,3200,3202,3260,-0.420689655172196,-0.189830508475088,-0.427586206896336,-0.196610169492017,-0.427586206896352,-0.183050847458158,-0.434482758620492,-0.189830508475088,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000015,2 -3143,3201,3203,3261,-0.420689655172213,-0.176271186441228,-0.427586206896352,-0.183050847458158,-0.427586206896368,-0.169491525424298,-0.434482758620507,-0.176271186441228,0.013559322033860,0.000000000000016,-0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000015,2 -3144,3202,3204,3262,-0.420689655172229,-0.162711864407368,-0.427586206896368,-0.169491525424298,-0.427586206896383,-0.155932203390438,-0.434482758620522,-0.162711864407368,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000015,2 -3145,3203,3205,3263,-0.420689655172246,-0.149152542373509,-0.427586206896383,-0.155932203390438,-0.427586206896399,-0.142372881356579,-0.434482758620537,-0.149152542373509,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000015,2 -3146,3204,3206,3264,-0.420689655172262,-0.135593220339649,-0.427586206896399,-0.142372881356579,-0.427586206896415,-0.128813559322719,-0.434482758620552,-0.135593220339649,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000015,2 -3147,3205,3207,3265,-0.420689655172278,-0.122033898305789,-0.427586206896415,-0.128813559322719,-0.427586206896430,-0.115254237288859,-0.434482758620567,-0.122033898305789,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448288,-0.013559322033860,-0.000000000000015,2 -3148,3206,3208,3266,-0.420689655172295,-0.108474576271933,-0.427586206896430,-0.115254237288859,-0.427586206896446,-0.101694915255008,-0.434482758620582,-0.108474576271933,0.013559322033852,0.000000000000017,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448286,-0.013559322033852,-0.000000000000015,2 -3149,3207,3209,3267,-0.420689655172311,-0.094915254238085,-0.427586206896446,-0.101694915255008,-0.427586206896462,-0.088135593221162,-0.434482758620597,-0.094915254238085,0.013559322033846,0.000000000000016,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033846,-0.000000000000015,2 -3150,3208,3210,3268,-0.420689655172328,-0.081355932204232,-0.427586206896462,-0.088135593221162,-0.427586206896478,-0.074576271187302,-0.434482758620612,-0.081355932204232,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000015,2 -3151,3209,3211,3269,-0.420689655172344,-0.067796610170372,-0.427586206896478,-0.074576271187302,-0.427586206896494,-0.061016949153442,-0.434482758620627,-0.067796610170372,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000015,2 -3152,3210,3212,3270,-0.420689655172360,-0.054237288136513,-0.427586206896494,-0.061016949153442,-0.427586206896509,-0.047457627119583,-0.434482758620642,-0.054237288136513,0.013559322033860,0.000000000000017,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000015,2 -3153,3211,3213,3271,-0.420689655172377,-0.040677966102653,-0.427586206896509,-0.047457627119583,-0.427586206896525,-0.033898305085723,-0.434482758620657,-0.040677966102653,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000015,2 -3154,3212,3214,3272,-0.420689655172393,-0.027118644068793,-0.427586206896525,-0.033898305085723,-0.427586206896541,-0.020338983051863,-0.434482758620672,-0.027118644068793,0.013559322033860,0.000000000000016,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000015,2 -3155,3213,3215,3273,-0.420689655172410,-0.013559322034933,-0.427586206896541,-0.020338983051863,-0.427586206896556,-0.006779661018004,-0.434482758620688,-0.013559322034934,0.013559322033860,0.000000000000016,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000015,2 -3156,3214,3216,3274,-0.420689655172426,-0.000000000001056,-0.427586206896556,-0.006779661018004,-0.427586206896572,0.006779661015891,-0.434482758620703,-0.000000000001056,0.013559322033895,0.000000000000017,0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448276,-0.013559322033895,-0.000000000000015,2 -3157,3215,3217,3275,-0.420689655172443,0.013559322032862,-0.427586206896572,0.006779661015891,-0.427586206896588,0.020338983049833,-0.434482758620718,0.013559322032862,0.013559322033941,0.000000000000016,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448274,-0.013559322033941,-0.000000000000015,2 -3158,3216,3218,3276,-0.420689655172459,0.027118644066798,-0.427586206896588,0.020338983049833,-0.427586206896604,0.033898305083763,-0.434482758620733,0.027118644066798,0.013559322033930,0.000000000000016,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448273,-0.013559322033930,-0.000000000000015,2 -3159,3217,3219,3277,-0.420689655172475,0.040677966100731,-0.427586206896604,0.033898305083763,-0.427586206896619,0.047457627117699,-0.434482758620748,0.040677966100731,0.013559322033937,0.000000000000016,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,-0.013559322033937,-0.000000000000015,2 -3160,3218,3220,3278,-0.420689655172492,0.054237288134667,-0.427586206896619,0.047457627117699,-0.427586206896635,0.061016949151634,-0.434482758620763,0.054237288134667,0.013559322033935,0.000000000000017,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448271,-0.013559322033935,-0.000000000000015,2 -3161,3219,3221,3279,-0.420689655172508,0.067796610168599,-0.427586206896635,0.061016949151634,-0.427586206896651,0.074576271185564,-0.434482758620778,0.067796610168599,0.013559322033930,0.000000000000016,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448269,-0.013559322033930,-0.000000000000015,2 -3162,3220,3222,3280,-0.420689655172524,0.081355932202535,-0.427586206896651,0.074576271185564,-0.427586206896667,0.088135593219506,-0.434482758620793,0.081355932202535,0.013559322033941,0.000000000000016,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033941,-0.000000000000015,2 -3163,3221,3223,3281,-0.420689655172541,0.094915254236471,-0.427586206896667,0.088135593219506,-0.427586206896682,0.101694915253436,-0.434482758620808,0.094915254236471,0.013559322033930,0.000000000000017,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033930,-0.000000000000015,2 -3164,3222,3224,3282,-0.420689655172557,0.108474576270409,-0.427586206896682,0.101694915253436,-0.427586206896698,0.115254237287382,-0.434482758620823,0.108474576270409,0.013559322033946,0.000000000000016,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448266,-0.013559322033946,-0.000000000000015,2 -3165,3223,3225,3283,-0.420689655172574,0.122033898304341,-0.427586206896698,0.115254237287382,-0.427586206896714,0.128813559321301,-0.434482758620838,0.122033898304341,0.013559322033919,0.000000000000016,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448264,-0.013559322033919,-0.000000000000015,2 -3166,3224,3226,3284,-0.420689655172590,0.135593220338273,-0.427586206896714,0.128813559321301,-0.427586206896730,0.142372881355246,-0.434482758620853,0.135593220338273,0.013559322033945,0.000000000000017,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033945,-0.000000000000015,2 -3167,3225,3227,3285,-0.420689655172606,0.149152542372213,-0.427586206896730,0.142372881355246,-0.427586206896745,0.155932203389179,-0.434482758620869,0.149152542372213,0.013559322033933,0.000000000000016,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033933,-0.000000000000015,2 -3168,3226,3228,3286,-0.420689655172623,0.162711864406145,-0.427586206896745,0.155932203389179,-0.427586206896761,0.169491525423110,-0.434482758620884,0.162711864406145,0.013559322033931,0.000000000000016,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448260,-0.013559322033931,-0.000000000000015,2 -3169,3227,3229,3287,-0.420689655172639,0.176271186440084,-0.427586206896761,0.169491525423110,-0.427586206896777,0.183050847457058,-0.434482758620899,0.176271186440084,0.013559322033948,0.000000000000016,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448259,-0.013559322033948,-0.000000000000015,2 -3170,3228,3230,3288,-0.420689655172656,0.189830508474016,-0.427586206896777,0.183050847457058,-0.427586206896793,0.196610169490975,-0.434482758620914,0.189830508474016,0.013559322033917,0.000000000000016,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448257,-0.013559322033917,-0.000000000000015,2 -3171,3229,3231,3289,-0.420689655172672,0.203389830507945,-0.427586206896793,0.196610169490975,-0.427586206896808,0.210169491524915,-0.434482758620929,0.203389830507945,0.013559322033940,0.000000000000016,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448256,-0.013559322033940,-0.000000000000015,2 -3172,3230,3232,3290,-0.420689655172688,0.216949152541877,-0.427586206896808,0.210169491524915,-0.427586206896824,0.223728813558839,-0.434482758620944,0.216949152541877,0.013559322033924,0.000000000000016,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033924,-0.000000000000015,2 -3173,3231,3233,3291,-0.420689655172705,0.230508474575816,-0.427586206896824,0.223728813558839,-0.427586206896840,0.237288135592793,-0.434482758620959,0.230508474575816,0.013559322033954,0.000000000000017,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448253,-0.013559322033954,-0.000000000000015,2 -3174,3232,3234,3292,-0.420689655172721,0.244067796609748,-0.427586206896840,0.237288135592793,-0.427586206896856,0.250847457626703,-0.434482758620974,0.244067796609748,0.013559322033910,0.000000000000016,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033910,-0.000000000000015,2 -3175,3233,3235,3293,-0.420689655172738,0.257627118643680,-0.427586206896856,0.250847457626703,-0.427586206896871,0.264406779660657,-0.434482758620989,0.257627118643680,0.013559322033954,0.000000000000016,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033954,-0.000000000000015,2 -3176,3234,3236,3294,-0.420689655172754,0.271186440677618,-0.427586206896871,0.264406779660657,-0.427586206896887,0.277966101694579,-0.434482758621004,0.271186440677618,0.013559322033922,0.000000000000016,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448249,-0.013559322033922,-0.000000000000015,2 -3177,3235,3237,3295,-0.420689655172771,0.284745762711550,-0.427586206896887,0.277966101694579,-0.427586206896903,0.291525423728521,-0.434482758621019,0.284745762711550,0.013559322033942,0.000000000000016,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448248,-0.013559322033942,-0.000000000000015,2 -3178,3236,3238,3296,-0.420689655172787,0.298305084745489,-0.427586206896903,0.291525423728521,-0.427586206896919,0.305084745762457,-0.434482758621034,0.298305084745489,0.013559322033936,0.000000000000016,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033936,-0.000000000000015,2 -3179,3237,3239,3297,-0.420689655172803,0.311864406779421,-0.427586206896919,0.305084745762457,-0.427586206896934,0.318644067796385,-0.434482758621050,0.311864406779421,0.013559322033928,0.000000000000016,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033928,-0.000000000000015,2 -3180,3238,3240,3298,-0.420689655172820,0.325423728813361,-0.427586206896934,0.318644067796385,-0.427586206896950,0.332203389830336,-0.434482758621065,0.325423728813361,0.013559322033950,0.000000000000016,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448244,-0.013559322033950,-0.000000000000015,2 -3181,3239,3241,3299,-0.420689655172836,0.338983050847293,-0.427586206896950,0.332203389830336,-0.427586206896966,0.345762711864250,-0.434482758621080,0.338983050847293,0.013559322033914,0.000000000000016,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000015,2 -3182,3240,3242,3300,-0.420689655172853,0.352542372881227,-0.427586206896966,0.345762711864250,-0.427586206896982,0.359322033898204,-0.434482758621095,0.352542372881227,0.013559322033954,0.000000000000016,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448242,-0.013559322033954,-0.000000000000015,2 -3183,3241,3243,3301,-0.420689655172869,0.366101694915162,-0.427586206896982,0.359322033898204,-0.427586206896997,0.372881355932121,-0.434482758621110,0.366101694915162,0.013559322033918,0.000000000000016,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000015,2 -3184,3242,3244,3302,-0.420689655172885,0.379661016949095,-0.427586206896997,0.372881355932121,-0.427586206897013,0.386440677966068,-0.434482758621125,0.379661016949094,0.013559322033946,0.000000000000016,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000015,2 -2004,3185,3243,3303,-0.427586206897029,0.400000000000000,-0.420689655172902,0.393220338983034,-0.427586206897013,0.386440677966068,-0.434482758621140,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000016,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000015,2 -3186,3246,3304,4204,-0.434482758620265,-0.393220338983059,-0.441379310344427,-0.386440677966118,-0.448275862068574,-0.393220338983059,-0.441379310344412,-0.400000000000000,0.013559322033882,0.000000000000015,-0.000000000000000,0.013793103448308,-0.013559322033882,-0.000000000000014,0.000000000000000,-0.013793103448310,2 -3187,3245,3247,3305,-0.434482758620280,-0.379661016949189,-0.441379310344427,-0.386440677966118,-0.441379310344441,-0.372881355932259,-0.448275862068588,-0.379661016949189,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448307,-0.013559322033860,-0.000000000000014,2 -3188,3246,3248,3306,-0.434482758620295,-0.366101694915329,-0.441379310344441,-0.372881355932259,-0.441379310344456,-0.359322033898399,-0.448275862068602,-0.366101694915329,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448306,-0.013559322033860,-0.000000000000014,2 -3189,3247,3249,3307,-0.434482758620310,-0.352542372881469,-0.441379310344456,-0.359322033898399,-0.441379310344470,-0.345762711864539,-0.448275862068616,-0.352542372881469,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448305,-0.013559322033860,-0.000000000000014,2 -3190,3248,3250,3308,-0.434482758620325,-0.338983050847605,-0.441379310344470,-0.345762711864539,-0.441379310344485,-0.332203389830670,-0.448275862068629,-0.338983050847605,0.013559322033869,0.000000000000015,0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448303,-0.013559322033869,-0.000000000000014,2 -3191,3249,3251,3309,-0.434482758620340,-0.325423728813729,-0.441379310344485,-0.332203389830670,-0.441379310344499,-0.318644067796787,-0.448275862068643,-0.325423728813729,0.013559322033883,0.000000000000015,-0.000000000000000,-0.013793103448303,0.000000000000000,0.013793103448302,-0.013559322033883,-0.000000000000014,2 -3192,3250,3252,3310,-0.434482758620356,-0.311864406779851,-0.441379310344499,-0.318644067796787,-0.441379310344514,-0.305084745762915,-0.448275862068657,-0.311864406779851,0.013559322033872,0.000000000000015,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,-0.013559322033872,-0.000000000000014,2 -3193,3251,3253,3311,-0.434482758620371,-0.298305084745975,-0.441379310344514,-0.305084745762915,-0.441379310344528,-0.291525423729035,-0.448275862068671,-0.298305084745975,0.013559322033880,0.000000000000015,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448300,-0.013559322033880,-0.000000000000014,2 -3194,3252,3254,3312,-0.434482758620386,-0.284745762712105,-0.441379310344528,-0.291525423729035,-0.441379310344543,-0.277966101695176,-0.448275862068685,-0.284745762712105,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448299,-0.013559322033860,-0.000000000000014,2 -3195,3253,3255,3313,-0.434482758620401,-0.271186440678246,-0.441379310344543,-0.277966101695176,-0.441379310344557,-0.264406779661316,-0.448275862068699,-0.271186440678246,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000014,2 -3196,3254,3256,3314,-0.434482758620416,-0.257627118644386,-0.441379310344557,-0.264406779661316,-0.441379310344572,-0.250847457627456,-0.448275862068713,-0.257627118644386,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000014,2 -3197,3255,3257,3315,-0.434482758620431,-0.244067796610526,-0.441379310344572,-0.250847457627456,-0.441379310344586,-0.237288135593597,-0.448275862068727,-0.244067796610526,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000014,2 -3198,3256,3258,3316,-0.434482758620446,-0.230508474576667,-0.441379310344586,-0.237288135593597,-0.441379310344601,-0.223728813559737,-0.448275862068740,-0.230508474576667,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000014,2 -3199,3257,3259,3317,-0.434482758620461,-0.216949152542807,-0.441379310344601,-0.223728813559737,-0.441379310344615,-0.210169491525877,-0.448275862068754,-0.216949152542807,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000014,2 -3200,3258,3260,3318,-0.434482758620476,-0.203389830508947,-0.441379310344615,-0.210169491525877,-0.441379310344630,-0.196610169492017,-0.448275862068768,-0.203389830508947,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000014,2 -3201,3259,3261,3319,-0.434482758620492,-0.189830508475088,-0.441379310344630,-0.196610169492017,-0.441379310344644,-0.183050847458158,-0.448275862068782,-0.189830508475088,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000014,2 -3202,3260,3262,3320,-0.434482758620507,-0.176271186441228,-0.441379310344644,-0.183050847458158,-0.441379310344658,-0.169491525424298,-0.448275862068796,-0.176271186441228,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448290,0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000014,2 -3203,3261,3263,3321,-0.434482758620522,-0.162711864407368,-0.441379310344658,-0.169491525424298,-0.441379310344673,-0.155932203390438,-0.448275862068810,-0.162711864407368,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000014,2 -3204,3262,3264,3322,-0.434482758620537,-0.149152542373509,-0.441379310344673,-0.155932203390438,-0.441379310344687,-0.142372881356579,-0.448275862068824,-0.149152542373509,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000014,2 -3205,3263,3265,3323,-0.434482758620552,-0.135593220339649,-0.441379310344687,-0.142372881356579,-0.441379310344702,-0.128813559322719,-0.448275862068838,-0.135593220339649,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000014,2 -3206,3264,3266,3324,-0.434482758620567,-0.122033898305789,-0.441379310344702,-0.128813559322719,-0.441379310344716,-0.115254237288859,-0.448275862068851,-0.122033898305789,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000014,2 -3207,3265,3267,3325,-0.434482758620582,-0.108474576271933,-0.441379310344716,-0.115254237288859,-0.441379310344731,-0.101694915255008,-0.448275862068865,-0.108474576271933,0.013559322033852,0.000000000000015,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033852,-0.000000000000014,2 -3208,3266,3268,3326,-0.434482758620597,-0.094915254238085,-0.441379310344731,-0.101694915255008,-0.441379310344745,-0.088135593221162,-0.448275862068879,-0.094915254238085,0.013559322033846,0.000000000000015,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448281,-0.013559322033846,-0.000000000000014,2 -3209,3267,3269,3327,-0.434482758620612,-0.081355932204232,-0.441379310344745,-0.088135593221162,-0.441379310344760,-0.074576271187302,-0.448275862068893,-0.081355932204232,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000014,2 -3210,3268,3270,3328,-0.434482758620627,-0.067796610170372,-0.441379310344760,-0.074576271187302,-0.441379310344774,-0.061016949153442,-0.448275862068907,-0.067796610170372,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000014,2 -3211,3269,3271,3329,-0.434482758620642,-0.054237288136513,-0.441379310344774,-0.061016949153442,-0.441379310344789,-0.047457627119583,-0.448275862068921,-0.054237288136513,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000014,2 -3212,3270,3272,3330,-0.434482758620657,-0.040677966102653,-0.441379310344789,-0.047457627119583,-0.441379310344803,-0.033898305085723,-0.448275862068935,-0.040677966102653,0.013559322033860,0.000000000000015,-0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000014,2 -3213,3271,3273,3331,-0.434482758620672,-0.027118644068793,-0.441379310344803,-0.033898305085723,-0.441379310344818,-0.020338983051863,-0.448275862068948,-0.027118644068793,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448277,-0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000014,2 -3214,3272,3274,3332,-0.434482758620688,-0.013559322034934,-0.441379310344818,-0.020338983051863,-0.441379310344832,-0.006779661018004,-0.448275862068962,-0.013559322034934,0.013559322033860,0.000000000000015,0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000014,2 -3215,3273,3275,3333,-0.434482758620703,-0.000000000001056,-0.441379310344832,-0.006779661018004,-0.441379310344847,0.006779661015891,-0.448275862068976,-0.000000000001056,0.013559322033895,0.000000000000015,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448273,-0.013559322033895,-0.000000000000014,2 -3216,3274,3276,3334,-0.434482758620718,0.013559322032862,-0.441379310344847,0.006779661015891,-0.441379310344861,0.020338983049833,-0.448275862068990,0.013559322032862,0.013559322033941,0.000000000000015,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448272,-0.013559322033941,-0.000000000000014,2 -3217,3275,3277,3335,-0.434482758620733,0.027118644066798,-0.441379310344861,0.020338983049833,-0.441379310344876,0.033898305083763,-0.448275862069004,0.027118644066798,0.013559322033930,0.000000000000015,-0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448271,-0.013559322033930,-0.000000000000014,2 -3218,3276,3278,3336,-0.434482758620748,0.040677966100731,-0.441379310344876,0.033898305083763,-0.441379310344890,0.047457627117699,-0.448275862069018,0.040677966100731,0.013559322033937,0.000000000000015,0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448269,-0.013559322033937,-0.000000000000014,2 -3219,3277,3279,3337,-0.434482758620763,0.054237288134667,-0.441379310344890,0.047457627117699,-0.441379310344905,0.061016949151634,-0.448275862069032,0.054237288134667,0.013559322033935,0.000000000000015,-0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033935,-0.000000000000014,2 -3220,3278,3280,3338,-0.434482758620778,0.067796610168599,-0.441379310344905,0.061016949151634,-0.441379310344919,0.074576271185564,-0.448275862069046,0.067796610168599,0.013559322033930,0.000000000000015,0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448267,-0.013559322033930,-0.000000000000014,2 -3221,3279,3281,3339,-0.434482758620793,0.081355932202535,-0.441379310344919,0.074576271185564,-0.441379310344933,0.088135593219506,-0.448275862069059,0.081355932202535,0.013559322033941,0.000000000000015,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448266,-0.013559322033941,-0.000000000000014,2 -3222,3280,3282,3340,-0.434482758620808,0.094915254236471,-0.441379310344933,0.088135593219506,-0.441379310344948,0.101694915253436,-0.448275862069073,0.094915254236471,0.013559322033930,0.000000000000015,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448264,-0.013559322033930,-0.000000000000014,2 -3223,3281,3283,3341,-0.434482758620823,0.108474576270409,-0.441379310344948,0.101694915253436,-0.441379310344962,0.115254237287382,-0.448275862069087,0.108474576270409,0.013559322033946,0.000000000000015,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033946,-0.000000000000014,2 -3224,3282,3284,3342,-0.434482758620838,0.122033898304341,-0.441379310344962,0.115254237287382,-0.441379310344977,0.128813559321301,-0.448275862069101,0.122033898304341,0.013559322033919,0.000000000000015,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033919,-0.000000000000014,2 -3225,3283,3285,3343,-0.434482758620853,0.135593220338273,-0.441379310344977,0.128813559321301,-0.441379310344991,0.142372881355246,-0.448275862069115,0.135593220338273,0.013559322033945,0.000000000000015,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033945,-0.000000000000014,2 -3226,3284,3286,3344,-0.434482758620869,0.149152542372213,-0.441379310344991,0.142372881355246,-0.441379310345006,0.155932203389179,-0.448275862069129,0.149152542372213,0.013559322033933,0.000000000000015,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448260,-0.013559322033933,-0.000000000000014,2 -3227,3285,3287,3345,-0.434482758620884,0.162711864406145,-0.441379310345006,0.155932203389179,-0.441379310345020,0.169491525423110,-0.448275862069143,0.162711864406145,0.013559322033931,0.000000000000015,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448258,-0.013559322033931,-0.000000000000014,2 -3228,3286,3288,3346,-0.434482758620899,0.176271186440084,-0.441379310345020,0.169491525423110,-0.441379310345035,0.183050847457058,-0.448275862069156,0.176271186440084,0.013559322033948,0.000000000000015,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033948,-0.000000000000014,2 -3229,3287,3289,3347,-0.434482758620914,0.189830508474016,-0.441379310345035,0.183050847457058,-0.441379310345049,0.196610169490975,-0.448275862069170,0.189830508474016,0.013559322033917,0.000000000000015,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448256,-0.013559322033917,-0.000000000000014,2 -3230,3288,3290,3348,-0.434482758620929,0.203389830507945,-0.441379310345049,0.196610169490975,-0.441379310345064,0.210169491524915,-0.448275862069184,0.203389830507945,0.013559322033940,0.000000000000015,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033940,-0.000000000000014,2 -3231,3289,3291,3349,-0.434482758620944,0.216949152541877,-0.441379310345064,0.210169491524915,-0.441379310345078,0.223728813558839,-0.448275862069198,0.216949152541877,0.013559322033924,0.000000000000015,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448253,-0.013559322033924,-0.000000000000014,2 -3232,3290,3292,3350,-0.434482758620959,0.230508474575816,-0.441379310345078,0.223728813558839,-0.441379310345093,0.237288135592793,-0.448275862069212,0.230508474575816,0.013559322033954,0.000000000000015,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033954,-0.000000000000014,2 -3233,3291,3293,3351,-0.434482758620974,0.244067796609748,-0.441379310345093,0.237288135592793,-0.441379310345107,0.250847457626703,-0.448275862069226,0.244067796609748,0.013559322033910,0.000000000000015,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033910,-0.000000000000014,2 -3234,3292,3294,3352,-0.434482758620989,0.257627118643680,-0.441379310345107,0.250847457626703,-0.441379310345122,0.264406779660657,-0.448275862069240,0.257627118643680,0.013559322033954,0.000000000000015,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000014,2 -3235,3293,3295,3353,-0.434482758621004,0.271186440677618,-0.441379310345122,0.264406779660657,-0.441379310345136,0.277966101694579,-0.448275862069254,0.271186440677618,0.013559322033922,0.000000000000015,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448249,-0.013559322033922,-0.000000000000014,2 -3236,3294,3296,3354,-0.434482758621019,0.284745762711550,-0.441379310345136,0.277966101694579,-0.441379310345151,0.291525423728521,-0.448275862069267,0.284745762711550,0.013559322033942,0.000000000000015,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448247,-0.013559322033943,-0.000000000000014,2 -3237,3295,3297,3355,-0.434482758621034,0.298305084745489,-0.441379310345151,0.291525423728521,-0.441379310345165,0.305084745762457,-0.448275862069281,0.298305084745489,0.013559322033936,0.000000000000015,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033936,-0.000000000000014,2 -3238,3296,3298,3356,-0.434482758621050,0.311864406779421,-0.441379310345165,0.305084745762457,-0.441379310345180,0.318644067796385,-0.448275862069295,0.311864406779421,0.013559322033928,0.000000000000015,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000014,2 -3239,3297,3299,3357,-0.434482758621065,0.325423728813361,-0.441379310345180,0.318644067796385,-0.441379310345194,0.332203389830336,-0.448275862069309,0.325423728813361,0.013559322033950,0.000000000000015,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033951,-0.000000000000014,2 -3240,3298,3300,3358,-0.434482758621080,0.338983050847293,-0.441379310345194,0.332203389830336,-0.441379310345208,0.345762711864250,-0.448275862069323,0.338983050847293,0.013559322033914,0.000000000000015,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448242,-0.013559322033914,-0.000000000000014,2 -3241,3299,3301,3359,-0.434482758621095,0.352542372881227,-0.441379310345208,0.345762711864250,-0.441379310345223,0.359322033898204,-0.448275862069337,0.352542372881227,0.013559322033954,0.000000000000015,0.000000000000000,-0.013793103448242,0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000014,2 -3242,3300,3302,3360,-0.434482758621110,0.366101694915162,-0.441379310345223,0.359322033898204,-0.441379310345237,0.372881355932121,-0.448275862069351,0.366101694915162,0.013559322033918,0.000000000000015,-0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000014,2 -3243,3301,3303,3361,-0.434482758621125,0.379661016949094,-0.441379310345237,0.372881355932121,-0.441379310345252,0.386440677966068,-0.448275862069364,0.379661016949095,0.013559322033946,0.000000000000015,0.000000000000000,-0.013793103448240,0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000014,2 -1990,3244,3302,3362,-0.441379310345266,0.400000000000000,-0.434482758621140,0.393220338983034,-0.441379310345252,0.386440677966068,-0.448275862069378,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000015,-0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000014,2 -3245,3305,3363,4218,-0.448275862068574,-0.393220338983059,-0.455172413792735,-0.386440677966118,-0.462068965516882,-0.393220338983059,-0.455172413792722,-0.400000000000000,0.013559322033882,0.000000000000014,-0.000000000000000,0.013793103448308,-0.013559322033882,-0.000000000000013,0.000000000000000,-0.013793103448309,2 -3246,3304,3306,3364,-0.448275862068588,-0.379661016949189,-0.455172413792735,-0.386440677966118,-0.455172413792748,-0.372881355932259,-0.462068965516895,-0.379661016949189,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448307,-0.013559322033860,-0.000000000000013,2 -3247,3305,3307,3365,-0.448275862068602,-0.366101694915329,-0.455172413792748,-0.372881355932259,-0.455172413792761,-0.359322033898399,-0.462068965516908,-0.366101694915329,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448306,-0.013559322033860,-0.000000000000013,2 -3248,3306,3308,3366,-0.448275862068616,-0.352542372881469,-0.455172413792761,-0.359322033898399,-0.455172413792775,-0.345762711864539,-0.462068965516920,-0.352542372881469,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448304,-0.013559322033860,-0.000000000000013,2 -3249,3307,3309,3367,-0.448275862068629,-0.338983050847605,-0.455172413792775,-0.345762711864539,-0.455172413792788,-0.332203389830670,-0.462068965516933,-0.338983050847605,0.013559322033869,0.000000000000014,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448303,-0.013559322033869,-0.000000000000013,2 -3250,3308,3310,3368,-0.448275862068643,-0.325423728813729,-0.455172413792788,-0.332203389830670,-0.455172413792801,-0.318644067796787,-0.462068965516946,-0.325423728813729,0.013559322033883,0.000000000000014,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,-0.013559322033883,-0.000000000000012,2 -3251,3309,3311,3369,-0.448275862068657,-0.311864406779851,-0.455172413792801,-0.318644067796787,-0.455172413792814,-0.305084745762915,-0.462068965516958,-0.311864406779851,0.013559322033872,0.000000000000014,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,-0.013559322033872,-0.000000000000013,2 -3252,3310,3312,3370,-0.448275862068671,-0.298305084745975,-0.455172413792814,-0.305084745762915,-0.455172413792828,-0.291525423729035,-0.462068965516971,-0.298305084745975,0.013559322033880,0.000000000000014,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448300,-0.013559322033880,-0.000000000000013,2 -3253,3311,3313,3371,-0.448275862068685,-0.284745762712105,-0.455172413792828,-0.291525423729035,-0.455172413792841,-0.277966101695176,-0.462068965516984,-0.284745762712105,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000013,2 -3254,3312,3314,3372,-0.448275862068699,-0.271186440678246,-0.455172413792841,-0.277966101695176,-0.455172413792854,-0.264406779661316,-0.462068965516996,-0.271186440678246,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000013,2 -3255,3313,3315,3373,-0.448275862068713,-0.257627118644386,-0.455172413792854,-0.264406779661316,-0.455172413792867,-0.250847457627456,-0.462068965517009,-0.257627118644386,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000013,2 -3256,3314,3316,3374,-0.448275862068727,-0.244067796610526,-0.455172413792867,-0.250847457627456,-0.455172413792881,-0.237288135593597,-0.462068965517022,-0.244067796610526,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448294,-0.013559322033859,-0.000000000000013,2 -3257,3315,3317,3375,-0.448275862068740,-0.230508474576667,-0.455172413792881,-0.237288135593597,-0.455172413792894,-0.223728813559737,-0.462068965517034,-0.230508474576667,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000013,2 -3258,3316,3318,3376,-0.448275862068754,-0.216949152542807,-0.455172413792894,-0.223728813559737,-0.455172413792907,-0.210169491525877,-0.462068965517047,-0.216949152542807,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000013,2 -3259,3317,3319,3377,-0.448275862068768,-0.203389830508947,-0.455172413792907,-0.210169491525877,-0.455172413792921,-0.196610169492017,-0.462068965517060,-0.203389830508947,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000013,2 -3260,3318,3320,3378,-0.448275862068782,-0.189830508475088,-0.455172413792921,-0.196610169492017,-0.455172413792934,-0.183050847458158,-0.462068965517072,-0.189830508475088,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000013,2 -3261,3319,3321,3379,-0.448275862068796,-0.176271186441228,-0.455172413792934,-0.183050847458158,-0.455172413792947,-0.169491525424298,-0.462068965517085,-0.176271186441228,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000013,2 -3262,3320,3322,3380,-0.448275862068810,-0.162711864407368,-0.455172413792947,-0.169491525424298,-0.455172413792960,-0.155932203390438,-0.462068965517098,-0.162711864407368,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000013,2 -3263,3321,3323,3381,-0.448275862068824,-0.149152542373509,-0.455172413792960,-0.155932203390438,-0.455172413792974,-0.142372881356579,-0.462068965517110,-0.149152542373509,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000013,2 -3264,3322,3324,3382,-0.448275862068838,-0.135593220339649,-0.455172413792974,-0.142372881356579,-0.455172413792987,-0.128813559322719,-0.462068965517123,-0.135593220339649,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000013,2 -3265,3323,3325,3383,-0.448275862068851,-0.122033898305789,-0.455172413792987,-0.128813559322719,-0.455172413793000,-0.115254237288859,-0.462068965517136,-0.122033898305789,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000013,2 -3266,3324,3326,3384,-0.448275862068865,-0.108474576271933,-0.455172413793000,-0.115254237288859,-0.455172413793013,-0.101694915255008,-0.462068965517148,-0.108474576271933,0.013559322033852,0.000000000000014,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448282,-0.013559322033852,-0.000000000000012,2 -3267,3325,3327,3385,-0.448275862068879,-0.094915254238085,-0.455172413793013,-0.101694915255008,-0.455172413793027,-0.088135593221162,-0.462068965517161,-0.094915254238085,0.013559322033846,0.000000000000014,0.000000000000000,-0.013793103448282,0.000000000000000,0.013793103448281,-0.013559322033846,-0.000000000000013,2 -3268,3326,3328,3386,-0.448275862068893,-0.081355932204232,-0.455172413793027,-0.088135593221162,-0.455172413793040,-0.074576271187302,-0.462068965517174,-0.081355932204232,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000013,2 -3269,3327,3329,3387,-0.448275862068907,-0.067796610170372,-0.455172413793040,-0.074576271187302,-0.455172413793053,-0.061016949153442,-0.462068965517186,-0.067796610170372,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000013,2 -3270,3328,3330,3388,-0.448275862068921,-0.054237288136513,-0.455172413793053,-0.061016949153442,-0.455172413793066,-0.047457627119583,-0.462068965517199,-0.054237288136513,0.013559322033860,0.000000000000014,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000013,2 -3271,3329,3331,3389,-0.448275862068935,-0.040677966102653,-0.455172413793066,-0.047457627119583,-0.455172413793080,-0.033898305085723,-0.462068965517212,-0.040677966102653,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000013,2 -3272,3330,3332,3390,-0.448275862068948,-0.027118644068793,-0.455172413793080,-0.033898305085723,-0.455172413793093,-0.020338983051863,-0.462068965517224,-0.027118644068793,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000012,2 -3273,3331,3333,3391,-0.448275862068962,-0.013559322034934,-0.455172413793093,-0.020338983051863,-0.455172413793106,-0.006779661018004,-0.462068965517237,-0.013559322034934,0.013559322033860,0.000000000000014,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000013,2 -3274,3332,3334,3392,-0.448275862068976,-0.000000000001056,-0.455172413793106,-0.006779661018004,-0.455172413793119,0.006779661015891,-0.462068965517250,-0.000000000001056,0.013559322033895,0.000000000000014,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448273,-0.013559322033895,-0.000000000000013,2 -3275,3333,3335,3393,-0.448275862068990,0.013559322032862,-0.455172413793119,0.006779661015891,-0.455172413793133,0.020338983049833,-0.462068965517262,0.013559322032862,0.013559322033941,0.000000000000014,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,-0.013559322033941,-0.000000000000013,2 -3276,3334,3336,3394,-0.448275862069004,0.027118644066798,-0.455172413793133,0.020338983049833,-0.455172413793146,0.033898305083763,-0.462068965517275,0.027118644066798,0.013559322033930,0.000000000000014,0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448270,-0.013559322033930,-0.000000000000013,2 -3277,3335,3337,3395,-0.448275862069018,0.040677966100731,-0.455172413793146,0.033898305083763,-0.455172413793159,0.047457627117699,-0.462068965517288,0.040677966100731,0.013559322033937,0.000000000000014,0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448269,-0.013559322033937,-0.000000000000012,2 -3278,3336,3338,3396,-0.448275862069032,0.054237288134667,-0.455172413793159,0.047457627117699,-0.455172413793173,0.061016949151634,-0.462068965517300,0.054237288134667,0.013559322033935,0.000000000000014,-0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448268,-0.013559322033935,-0.000000000000013,2 -3279,3337,3339,3397,-0.448275862069046,0.067796610168599,-0.455172413793173,0.061016949151634,-0.455172413793186,0.074576271185564,-0.462068965517313,0.067796610168599,0.013559322033930,0.000000000000014,-0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033930,-0.000000000000013,2 -3280,3338,3340,3398,-0.448275862069059,0.081355932202535,-0.455172413793186,0.074576271185564,-0.455172413793199,0.088135593219506,-0.462068965517325,0.081355932202535,0.013559322033941,0.000000000000014,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448266,-0.013559322033941,-0.000000000000013,2 -3281,3339,3341,3399,-0.448275862069073,0.094915254236471,-0.455172413793199,0.088135593219506,-0.455172413793212,0.101694915253436,-0.462068965517338,0.094915254236471,0.013559322033930,0.000000000000014,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448264,-0.013559322033930,-0.000000000000013,2 -3282,3340,3342,3400,-0.448275862069087,0.108474576270409,-0.455172413793212,0.101694915253436,-0.455172413793226,0.115254237287382,-0.462068965517351,0.108474576270409,0.013559322033946,0.000000000000014,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033946,-0.000000000000013,2 -3283,3341,3343,3401,-0.448275862069101,0.122033898304341,-0.455172413793226,0.115254237287382,-0.455172413793239,0.128813559321301,-0.462068965517363,0.122033898304341,0.013559322033919,0.000000000000014,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033919,-0.000000000000013,2 -3284,3342,3344,3402,-0.448275862069115,0.135593220338273,-0.455172413793239,0.128813559321301,-0.455172413793252,0.142372881355246,-0.462068965517376,0.135593220338273,0.013559322033945,0.000000000000014,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033945,-0.000000000000013,2 -3285,3343,3345,3403,-0.448275862069129,0.149152542372213,-0.455172413793252,0.142372881355246,-0.455172413793265,0.155932203389179,-0.462068965517389,0.149152542372213,0.013559322033933,0.000000000000014,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448259,-0.013559322033933,-0.000000000000013,2 -3286,3344,3346,3404,-0.448275862069143,0.162711864406145,-0.455172413793265,0.155932203389179,-0.455172413793279,0.169491525423110,-0.462068965517401,0.162711864406145,0.013559322033931,0.000000000000014,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033931,-0.000000000000013,2 -3287,3345,3347,3405,-0.448275862069156,0.176271186440084,-0.455172413793279,0.169491525423110,-0.455172413793292,0.183050847457058,-0.462068965517414,0.176271186440084,0.013559322033948,0.000000000000014,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033948,-0.000000000000013,2 -3288,3346,3348,3406,-0.448275862069170,0.189830508474016,-0.455172413793292,0.183050847457058,-0.455172413793305,0.196610169490975,-0.462068965517427,0.189830508474016,0.013559322033917,0.000000000000014,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448256,-0.013559322033917,-0.000000000000013,2 -3289,3347,3349,3407,-0.448275862069184,0.203389830507945,-0.455172413793305,0.196610169490975,-0.455172413793318,0.210169491524915,-0.462068965517439,0.203389830507945,0.013559322033940,0.000000000000014,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033940,-0.000000000000013,2 -3290,3348,3350,3408,-0.448275862069198,0.216949152541877,-0.455172413793318,0.210169491524915,-0.455172413793332,0.223728813558839,-0.462068965517452,0.216949152541877,0.013559322033924,0.000000000000014,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448254,-0.013559322033924,-0.000000000000013,2 -3291,3349,3351,3409,-0.448275862069212,0.230508474575816,-0.455172413793332,0.223728813558839,-0.455172413793345,0.237288135592793,-0.462068965517465,0.230508474575816,0.013559322033954,0.000000000000014,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448252,-0.013559322033954,-0.000000000000013,2 -3292,3350,3352,3410,-0.448275862069226,0.244067796609748,-0.455172413793345,0.237288135592793,-0.455172413793358,0.250847457626703,-0.462068965517478,0.244067796609748,0.013559322033910,0.000000000000014,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033910,-0.000000000000013,2 -3293,3351,3353,3411,-0.448275862069240,0.257627118643680,-0.455172413793358,0.250847457626703,-0.455172413793371,0.264406779660657,-0.462068965517490,0.257627118643680,0.013559322033954,0.000000000000014,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000012,2 -3294,3352,3354,3412,-0.448275862069254,0.271186440677618,-0.455172413793371,0.264406779660657,-0.455172413793385,0.277966101694579,-0.462068965517503,0.271186440677618,0.013559322033922,0.000000000000014,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448248,-0.013559322033922,-0.000000000000013,2 -3295,3353,3355,3413,-0.448275862069267,0.284745762711550,-0.455172413793385,0.277966101694579,-0.455172413793398,0.291525423728521,-0.462068965517515,0.284745762711550,0.013559322033943,0.000000000000014,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033942,-0.000000000000013,2 -3296,3354,3356,3414,-0.448275862069281,0.298305084745489,-0.455172413793398,0.291525423728521,-0.455172413793411,0.305084745762457,-0.462068965517528,0.298305084745489,0.013559322033936,0.000000000000014,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033936,-0.000000000000013,2 -3297,3355,3357,3415,-0.448275862069295,0.311864406779421,-0.455172413793411,0.305084745762457,-0.455172413793424,0.318644067796385,-0.462068965517541,0.311864406779421,0.013559322033928,0.000000000000014,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000012,2 -3298,3356,3358,3416,-0.448275862069309,0.325423728813361,-0.455172413793424,0.318644067796385,-0.455172413793438,0.332203389830336,-0.462068965517553,0.325423728813361,0.013559322033951,0.000000000000014,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448244,-0.013559322033951,-0.000000000000013,2 -3299,3357,3359,3417,-0.448275862069323,0.338983050847293,-0.455172413793438,0.332203389830336,-0.455172413793451,0.345762711864250,-0.462068965517566,0.338983050847293,0.013559322033914,0.000000000000014,-0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000013,2 -3300,3358,3360,3418,-0.448275862069337,0.352542372881227,-0.455172413793451,0.345762711864250,-0.455172413793464,0.359322033898204,-0.462068965517579,0.352542372881227,0.013559322033954,0.000000000000014,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000013,2 -3301,3359,3361,3419,-0.448275862069351,0.366101694915162,-0.455172413793464,0.359322033898204,-0.455172413793478,0.372881355932121,-0.462068965517591,0.366101694915162,0.013559322033918,0.000000000000014,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000013,2 -3302,3360,3362,3420,-0.448275862069364,0.379661016949095,-0.455172413793478,0.372881355932121,-0.455172413793491,0.386440677966068,-0.462068965517604,0.379661016949094,0.013559322033946,0.000000000000014,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000013,2 -1976,3303,3361,3421,-0.455172413793504,0.400000000000000,-0.448275862069378,0.393220338983034,-0.455172413793491,0.386440677966068,-0.462068965517617,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000014,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000013,2 -3304,3364,3422,4232,-0.462068965516882,-0.393220338983059,-0.468965517241043,-0.386440677966118,-0.475862068965191,-0.393220338983059,-0.468965517241031,-0.400000000000000,0.013559322033882,0.000000000000013,0.000000000000000,0.013793103448308,-0.013559322033882,-0.000000000000011,0.000000000000000,-0.013793103448309,2 -3305,3363,3365,3423,-0.462068965516895,-0.379661016949189,-0.468965517241043,-0.386440677966118,-0.468965517241055,-0.372881355932259,-0.475862068965202,-0.379661016949189,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448307,-0.013559322033860,-0.000000000000011,2 -3306,3364,3366,3424,-0.462068965516908,-0.366101694915329,-0.468965517241055,-0.372881355932259,-0.468965517241067,-0.359322033898399,-0.475862068965214,-0.366101694915329,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448305,-0.013559322033860,-0.000000000000011,2 -3307,3365,3367,3425,-0.462068965516920,-0.352542372881469,-0.468965517241067,-0.359322033898399,-0.468965517241079,-0.345762711864539,-0.475862068965225,-0.352542372881469,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448304,-0.013559322033860,-0.000000000000011,2 -3308,3366,3368,3426,-0.462068965516933,-0.338983050847605,-0.468965517241079,-0.345762711864539,-0.468965517241091,-0.332203389830670,-0.475862068965237,-0.338983050847605,0.013559322033869,0.000000000000013,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448303,-0.013559322033869,-0.000000000000011,2 -3309,3367,3369,3427,-0.462068965516946,-0.325423728813729,-0.468965517241091,-0.332203389830670,-0.468965517241103,-0.318644067796787,-0.475862068965248,-0.325423728813729,0.013559322033883,0.000000000000012,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,-0.013559322033883,-0.000000000000011,2 -3310,3368,3370,3428,-0.462068965516958,-0.311864406779851,-0.468965517241103,-0.318644067796787,-0.468965517241115,-0.305084745762915,-0.475862068965260,-0.311864406779851,0.013559322033872,0.000000000000013,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,-0.013559322033872,-0.000000000000012,2 -3311,3369,3371,3429,-0.462068965516971,-0.298305084745975,-0.468965517241115,-0.305084745762915,-0.468965517241127,-0.291525423729035,-0.475862068965271,-0.298305084745975,0.013559322033880,0.000000000000013,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448299,-0.013559322033880,-0.000000000000011,2 -3312,3370,3372,3430,-0.462068965516984,-0.284745762712105,-0.468965517241127,-0.291525423729035,-0.468965517241139,-0.277966101695176,-0.475862068965282,-0.284745762712105,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000011,2 -3313,3371,3373,3431,-0.462068965516996,-0.271186440678246,-0.468965517241139,-0.277966101695176,-0.468965517241151,-0.264406779661316,-0.475862068965294,-0.271186440678246,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448298,0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000012,2 -3314,3372,3374,3432,-0.462068965517009,-0.257627118644386,-0.468965517241151,-0.264406779661316,-0.468965517241163,-0.250847457627456,-0.475862068965305,-0.257627118644386,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000011,2 -3315,3373,3375,3433,-0.462068965517022,-0.244067796610526,-0.468965517241163,-0.250847457627456,-0.468965517241175,-0.237288135593597,-0.475862068965317,-0.244067796610526,0.013559322033859,0.000000000000013,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000011,2 -3316,3374,3376,3434,-0.462068965517034,-0.230508474576667,-0.468965517241175,-0.237288135593597,-0.468965517241187,-0.223728813559737,-0.475862068965328,-0.230508474576667,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448295,0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000011,2 -3317,3375,3377,3435,-0.462068965517047,-0.216949152542807,-0.468965517241187,-0.223728813559737,-0.468965517241199,-0.210169491525877,-0.475862068965340,-0.216949152542807,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000011,2 -3318,3376,3378,3436,-0.462068965517060,-0.203389830508947,-0.468965517241199,-0.210169491525877,-0.468965517241211,-0.196610169492017,-0.475862068965351,-0.203389830508947,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000012,2 -3319,3377,3379,3437,-0.462068965517072,-0.189830508475088,-0.468965517241211,-0.196610169492017,-0.468965517241224,-0.183050847458158,-0.475862068965363,-0.189830508475088,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033859,-0.000000000000011,2 -3320,3378,3380,3438,-0.462068965517085,-0.176271186441228,-0.468965517241224,-0.183050847458158,-0.468965517241236,-0.169491525424298,-0.475862068965374,-0.176271186441228,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448288,-0.013559322033860,-0.000000000000011,2 -3321,3379,3381,3439,-0.462068965517098,-0.162711864407368,-0.468965517241236,-0.169491525424298,-0.468965517241248,-0.155932203390438,-0.475862068965386,-0.162711864407368,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000011,2 -3322,3380,3382,3440,-0.462068965517110,-0.149152542373509,-0.468965517241248,-0.155932203390438,-0.468965517241260,-0.142372881356579,-0.475862068965397,-0.149152542373509,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000011,2 -3323,3381,3383,3441,-0.462068965517123,-0.135593220339649,-0.468965517241260,-0.142372881356579,-0.468965517241272,-0.128813559322719,-0.475862068965408,-0.135593220339649,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000011,2 -3324,3382,3384,3442,-0.462068965517136,-0.122033898305789,-0.468965517241272,-0.128813559322719,-0.468965517241284,-0.115254237288859,-0.475862068965420,-0.122033898305789,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000012,2 -3325,3383,3385,3443,-0.462068965517148,-0.108474576271933,-0.468965517241284,-0.115254237288859,-0.468965517241296,-0.101694915255008,-0.475862068965431,-0.108474576271933,0.013559322033852,0.000000000000012,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448282,-0.013559322033852,-0.000000000000011,2 -3326,3384,3386,3444,-0.462068965517161,-0.094915254238085,-0.468965517241296,-0.101694915255008,-0.468965517241308,-0.088135593221162,-0.475862068965443,-0.094915254238085,0.013559322033846,0.000000000000013,-0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448281,-0.013559322033846,-0.000000000000012,2 -3327,3385,3387,3445,-0.462068965517174,-0.081355932204232,-0.468965517241308,-0.088135593221162,-0.468965517241320,-0.074576271187302,-0.475862068965454,-0.081355932204232,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000011,2 -3328,3386,3388,3446,-0.462068965517186,-0.067796610170372,-0.468965517241320,-0.074576271187302,-0.468965517241332,-0.061016949153442,-0.475862068965466,-0.067796610170372,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000011,2 -3329,3387,3389,3447,-0.462068965517199,-0.054237288136513,-0.468965517241332,-0.061016949153442,-0.468965517241344,-0.047457627119583,-0.475862068965477,-0.054237288136513,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000011,2 -3330,3388,3390,3448,-0.462068965517212,-0.040677966102653,-0.468965517241344,-0.047457627119583,-0.468965517241356,-0.033898305085723,-0.475862068965489,-0.040677966102653,0.013559322033860,0.000000000000013,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000012,2 -3331,3389,3391,3449,-0.462068965517224,-0.027118644068793,-0.468965517241356,-0.033898305085723,-0.468965517241368,-0.020338983051863,-0.475862068965500,-0.027118644068793,0.013559322033860,0.000000000000012,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000012,2 -3332,3390,3392,3450,-0.462068965517237,-0.013559322034934,-0.468965517241368,-0.020338983051863,-0.468965517241380,-0.006779661018004,-0.475862068965512,-0.013559322034933,0.013559322033860,0.000000000000013,-0.000000000000000,-0.013793103448275,0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000011,2 -3333,3391,3393,3451,-0.462068965517250,-0.000000000001056,-0.468965517241380,-0.006779661018004,-0.468965517241392,0.006779661015891,-0.475862068965523,-0.000000000001056,0.013559322033895,0.000000000000013,-0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448273,-0.013559322033895,-0.000000000000012,2 -3334,3392,3394,3452,-0.462068965517262,0.013559322032862,-0.468965517241392,0.006779661015891,-0.468965517241404,0.020338983049833,-0.475862068965534,0.013559322032862,0.013559322033941,0.000000000000013,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,-0.013559322033941,-0.000000000000011,2 -3335,3393,3395,3453,-0.462068965517275,0.027118644066798,-0.468965517241404,0.020338983049833,-0.468965517241416,0.033898305083763,-0.475862068965546,0.027118644066798,0.013559322033930,0.000000000000013,0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448270,-0.013559322033930,-0.000000000000011,2 -3336,3394,3396,3454,-0.462068965517288,0.040677966100731,-0.468965517241416,0.033898305083763,-0.468965517241428,0.047457627117699,-0.475862068965557,0.040677966100731,0.013559322033937,0.000000000000012,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033937,-0.000000000000011,2 -3337,3395,3397,3455,-0.462068965517300,0.054237288134667,-0.468965517241428,0.047457627117699,-0.468965517241440,0.061016949151634,-0.475862068965569,0.054237288134667,0.013559322033935,0.000000000000013,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033935,-0.000000000000012,2 -3338,3396,3398,3456,-0.462068965517313,0.067796610168599,-0.468965517241440,0.061016949151634,-0.468965517241453,0.074576271185564,-0.475862068965580,0.067796610168599,0.013559322033930,0.000000000000013,0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448267,-0.013559322033930,-0.000000000000011,2 -3339,3397,3399,3457,-0.462068965517325,0.081355932202535,-0.468965517241453,0.074576271185564,-0.468965517241465,0.088135593219506,-0.475862068965592,0.081355932202535,0.013559322033941,0.000000000000013,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448266,-0.013559322033941,-0.000000000000011,2 -3340,3398,3400,3458,-0.462068965517338,0.094915254236471,-0.468965517241465,0.088135593219506,-0.468965517241477,0.101694915253436,-0.475862068965603,0.094915254236471,0.013559322033930,0.000000000000013,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448265,-0.013559322033930,-0.000000000000012,2 -3341,3399,3401,3459,-0.462068965517351,0.108474576270409,-0.468965517241477,0.101694915253436,-0.468965517241489,0.115254237287382,-0.475862068965615,0.108474576270409,0.013559322033946,0.000000000000013,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448263,-0.013559322033946,-0.000000000000011,2 -3342,3400,3402,3460,-0.462068965517363,0.122033898304341,-0.468965517241489,0.115254237287382,-0.468965517241501,0.128813559321301,-0.475862068965626,0.122033898304341,0.013559322033919,0.000000000000013,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033919,-0.000000000000012,2 -3343,3401,3403,3461,-0.462068965517376,0.135593220338273,-0.468965517241501,0.128813559321301,-0.468965517241513,0.142372881355246,-0.475862068965638,0.135593220338273,0.013559322033945,0.000000000000013,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033945,-0.000000000000011,2 -3344,3402,3404,3462,-0.462068965517389,0.149152542372213,-0.468965517241513,0.142372881355246,-0.468965517241525,0.155932203389179,-0.475862068965649,0.149152542372213,0.013559322033933,0.000000000000013,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448259,-0.013559322033933,-0.000000000000011,2 -3345,3403,3405,3463,-0.462068965517401,0.162711864406145,-0.468965517241525,0.155932203389179,-0.468965517241537,0.169491525423110,-0.475862068965660,0.162711864406145,0.013559322033931,0.000000000000013,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033931,-0.000000000000011,2 -3346,3404,3406,3464,-0.462068965517414,0.176271186440084,-0.468965517241537,0.169491525423110,-0.468965517241549,0.183050847457058,-0.475862068965672,0.176271186440084,0.013559322033948,0.000000000000013,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033948,-0.000000000000011,2 -3347,3405,3407,3465,-0.462068965517427,0.189830508474016,-0.468965517241549,0.183050847457058,-0.468965517241561,0.196610169490975,-0.475862068965683,0.189830508474016,0.013559322033917,0.000000000000013,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448256,-0.013559322033917,-0.000000000000012,2 -3348,3406,3408,3466,-0.462068965517439,0.203389830507945,-0.468965517241561,0.196610169490975,-0.468965517241573,0.210169491524915,-0.475862068965695,0.203389830507945,0.013559322033940,0.000000000000013,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033940,-0.000000000000011,2 -3349,3407,3409,3467,-0.462068965517452,0.216949152541877,-0.468965517241573,0.210169491524915,-0.468965517241585,0.223728813558839,-0.475862068965706,0.216949152541877,0.013559322033924,0.000000000000013,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448254,-0.013559322033924,-0.000000000000012,2 -3350,3408,3410,3468,-0.462068965517465,0.230508474575816,-0.468965517241585,0.223728813558839,-0.468965517241597,0.237288135592793,-0.475862068965718,0.230508474575816,0.013559322033954,0.000000000000013,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448252,-0.013559322033954,-0.000000000000011,2 -3351,3409,3411,3469,-0.462068965517478,0.244067796609748,-0.468965517241597,0.237288135592793,-0.468965517241609,0.250847457626703,-0.475862068965729,0.244067796609748,0.013559322033910,0.000000000000013,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033910,-0.000000000000011,2 -3352,3410,3412,3470,-0.462068965517490,0.257627118643680,-0.468965517241609,0.250847457626703,-0.468965517241621,0.264406779660657,-0.475862068965740,0.257627118643680,0.013559322033954,0.000000000000012,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000011,2 -3353,3411,3413,3471,-0.462068965517503,0.271186440677618,-0.468965517241621,0.264406779660657,-0.468965517241633,0.277966101694579,-0.475862068965752,0.271186440677618,0.013559322033922,0.000000000000013,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448249,-0.013559322033922,-0.000000000000012,2 -3354,3412,3414,3472,-0.462068965517515,0.284745762711550,-0.468965517241633,0.277966101694579,-0.468965517241645,0.291525423728521,-0.475862068965763,0.284745762711550,0.013559322033942,0.000000000000013,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448247,-0.013559322033942,-0.000000000000011,2 -3355,3413,3415,3473,-0.462068965517528,0.298305084745489,-0.468965517241645,0.291525423728521,-0.468965517241657,0.305084745762457,-0.475862068965775,0.298305084745489,0.013559322033936,0.000000000000013,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033936,-0.000000000000011,2 -3356,3414,3416,3474,-0.462068965517541,0.311864406779421,-0.468965517241657,0.305084745762457,-0.468965517241669,0.318644067796385,-0.475862068965786,0.311864406779421,0.013559322033928,0.000000000000012,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000012,2 -3357,3415,3417,3475,-0.462068965517553,0.325423728813361,-0.468965517241669,0.318644067796385,-0.468965517241682,0.332203389830336,-0.475862068965798,0.325423728813361,0.013559322033951,0.000000000000013,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033951,-0.000000000000011,2 -3358,3416,3418,3476,-0.462068965517566,0.338983050847293,-0.468965517241682,0.332203389830336,-0.468965517241694,0.345762711864250,-0.475862068965809,0.338983050847293,0.013559322033914,0.000000000000013,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448242,-0.013559322033914,-0.000000000000011,2 -3359,3417,3419,3477,-0.462068965517579,0.352542372881227,-0.468965517241694,0.345762711864250,-0.468965517241706,0.359322033898203,-0.475862068965821,0.352542372881226,0.013559322033954,0.000000000000013,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000011,2 -3360,3418,3420,3478,-0.462068965517591,0.366101694915162,-0.468965517241706,0.359322033898203,-0.468965517241718,0.372881355932121,-0.475862068965832,0.366101694915162,0.013559322033918,0.000000000000013,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000012,2 -3361,3419,3421,3479,-0.462068965517604,0.379661016949094,-0.468965517241718,0.372881355932121,-0.468965517241730,0.386440677966068,-0.475862068965843,0.379661016949094,0.013559322033946,0.000000000000013,0.000000000000000,-0.013793103448240,0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000011,2 -1962,3362,3420,3480,-0.468965517241742,0.400000000000000,-0.462068965517617,0.393220338983034,-0.468965517241730,0.386440677966068,-0.475862068965855,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000013,-0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000011,2 -3363,3423,3481,4246,-0.475862068965191,-0.393220338983059,-0.482758620689352,-0.386440677966118,-0.489655172413503,-0.393220338983059,-0.482758620689341,-0.400000000000000,0.013559322033882,0.000000000000011,-0.000000000000000,0.013793103448311,-0.013559322033882,-0.000000000000010,0.000000000000000,-0.013793103448313,2 -3364,3422,3424,3482,-0.475862068965202,-0.379661016949189,-0.482758620689352,-0.386440677966118,-0.482758620689363,-0.372881355932259,-0.489655172413513,-0.379661016949189,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448310,-0.013559322033860,-0.000000000000010,2 -3365,3423,3425,3483,-0.475862068965214,-0.366101694915329,-0.482758620689363,-0.372881355932259,-0.482758620689374,-0.359322033898399,-0.489655172413523,-0.366101694915329,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448309,-0.013559322033860,-0.000000000000010,2 -3366,3424,3426,3484,-0.475862068965225,-0.352542372881469,-0.482758620689374,-0.359322033898399,-0.482758620689385,-0.345762711864539,-0.489655172413533,-0.352542372881469,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448308,-0.013559322033860,-0.000000000000010,2 -3367,3425,3427,3485,-0.475862068965237,-0.338983050847605,-0.482758620689385,-0.345762711864539,-0.482758620689396,-0.332203389830670,-0.489655172413544,-0.338983050847605,0.013559322033869,0.000000000000011,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448306,-0.013559322033869,-0.000000000000010,2 -3368,3426,3428,3486,-0.475862068965248,-0.325423728813729,-0.482758620689396,-0.332203389830670,-0.482758620689406,-0.318644067796787,-0.489655172413554,-0.325423728813729,0.013559322033883,0.000000000000011,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448305,-0.013559322033883,-0.000000000000010,2 -3369,3427,3429,3487,-0.475862068965260,-0.311864406779851,-0.482758620689406,-0.318644067796787,-0.482758620689417,-0.305084745762915,-0.489655172413564,-0.311864406779851,0.013559322033872,0.000000000000012,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448303,-0.013559322033872,-0.000000000000010,2 -3370,3428,3430,3488,-0.475862068965271,-0.298305084745975,-0.482758620689417,-0.305084745762915,-0.482758620689428,-0.291525423729035,-0.489655172413574,-0.298305084745975,0.013559322033880,0.000000000000011,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,-0.013559322033879,-0.000000000000010,2 -3371,3429,3431,3489,-0.475862068965282,-0.284745762712105,-0.482758620689428,-0.291525423729035,-0.482758620689439,-0.277966101695176,-0.489655172413584,-0.284745762712106,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,-0.013559322033860,-0.000000000000010,2 -3372,3430,3432,3490,-0.475862068965294,-0.271186440678246,-0.482758620689439,-0.277966101695176,-0.482758620689450,-0.264406779661316,-0.489655172413595,-0.271186440678246,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448300,-0.013559322033860,-0.000000000000010,2 -3373,3431,3433,3491,-0.475862068965305,-0.257627118644386,-0.482758620689450,-0.264406779661316,-0.482758620689460,-0.250847457627456,-0.489655172413605,-0.257627118644386,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448300,0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000010,2 -3374,3432,3434,3492,-0.475862068965317,-0.244067796610526,-0.482758620689460,-0.250847457627456,-0.482758620689471,-0.237288135593597,-0.489655172413615,-0.244067796610526,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448298,-0.013559322033859,-0.000000000000010,2 -3375,3433,3435,3493,-0.475862068965328,-0.230508474576667,-0.482758620689471,-0.237288135593597,-0.482758620689482,-0.223728813559737,-0.489655172413625,-0.230508474576667,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000010,2 -3376,3434,3436,3494,-0.475862068965340,-0.216949152542807,-0.482758620689482,-0.223728813559737,-0.482758620689493,-0.210169491525877,-0.489655172413635,-0.216949152542807,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000010,2 -3377,3435,3437,3495,-0.475862068965351,-0.203389830508947,-0.482758620689493,-0.210169491525877,-0.482758620689504,-0.196610169492017,-0.489655172413645,-0.203389830508947,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000010,2 -3378,3436,3438,3496,-0.475862068965363,-0.189830508475088,-0.482758620689504,-0.196610169492017,-0.482758620689514,-0.183050847458158,-0.489655172413656,-0.189830508475087,0.013559322033859,0.000000000000011,0.000000000000000,-0.013793103448293,0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000010,2 -3379,3437,3439,3497,-0.475862068965374,-0.176271186441228,-0.482758620689514,-0.183050847458158,-0.482758620689525,-0.169491525424298,-0.489655172413666,-0.176271186441228,0.013559322033860,0.000000000000011,-0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000010,2 -3380,3438,3440,3498,-0.475862068965386,-0.162711864407368,-0.482758620689525,-0.169491525424298,-0.482758620689536,-0.155932203390438,-0.489655172413676,-0.162711864407368,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000010,2 -3381,3439,3441,3499,-0.475862068965397,-0.149152542373509,-0.482758620689536,-0.155932203390438,-0.482758620689547,-0.142372881356579,-0.489655172413686,-0.149152542373509,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448288,-0.013559322033860,-0.000000000000010,2 -3382,3440,3442,3500,-0.475862068965408,-0.135593220339649,-0.482758620689547,-0.142372881356579,-0.482758620689558,-0.128813559322719,-0.489655172413696,-0.135593220339649,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000010,2 -3383,3441,3443,3501,-0.475862068965420,-0.122033898305789,-0.482758620689558,-0.128813559322719,-0.482758620689569,-0.115254237288859,-0.489655172413706,-0.122033898305789,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000010,2 -3384,3442,3444,3502,-0.475862068965431,-0.108474576271933,-0.482758620689569,-0.115254237288859,-0.482758620689579,-0.101694915255007,-0.489655172413717,-0.108474576271933,0.013559322033852,0.000000000000011,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033852,-0.000000000000010,2 -3385,3443,3445,3503,-0.475862068965443,-0.094915254238085,-0.482758620689579,-0.101694915255007,-0.482758620689590,-0.088135593221162,-0.489655172413727,-0.094915254238085,0.013559322033846,0.000000000000012,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448283,-0.013559322033846,-0.000000000000010,2 -3386,3444,3446,3504,-0.475862068965454,-0.081355932204232,-0.482758620689590,-0.088135593221162,-0.482758620689601,-0.074576271187302,-0.489655172413737,-0.081355932204232,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000010,2 -3387,3445,3447,3505,-0.475862068965466,-0.067796610170372,-0.482758620689601,-0.074576271187302,-0.482758620689612,-0.061016949153442,-0.489655172413747,-0.067796610170372,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000010,2 -3388,3446,3448,3506,-0.475862068965477,-0.054237288136513,-0.482758620689612,-0.061016949153442,-0.482758620689623,-0.047457627119583,-0.489655172413757,-0.054237288136513,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000010,2 -3389,3447,3449,3507,-0.475862068965489,-0.040677966102653,-0.482758620689623,-0.047457627119583,-0.482758620689633,-0.033898305085723,-0.489655172413768,-0.040677966102653,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000010,2 -3390,3448,3450,3508,-0.475862068965500,-0.027118644068793,-0.482758620689633,-0.033898305085723,-0.482758620689644,-0.020338983051863,-0.489655172413778,-0.027118644068793,0.013559322033860,0.000000000000012,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000010,2 -3391,3449,3451,3509,-0.475862068965512,-0.013559322034933,-0.482758620689644,-0.020338983051863,-0.482758620689655,-0.006779661018004,-0.489655172413788,-0.013559322034933,0.013559322033860,0.000000000000011,0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000010,2 -3392,3450,3452,3510,-0.475862068965523,-0.000000000001056,-0.482758620689655,-0.006779661018004,-0.482758620689666,0.006779661015891,-0.489655172413798,-0.000000000001056,0.013559322033895,0.000000000000012,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000010,2 -3393,3451,3453,3511,-0.475862068965534,0.013559322032862,-0.482758620689666,0.006779661015891,-0.482758620689677,0.020338983049833,-0.489655172413808,0.013559322032862,0.013559322033941,0.000000000000011,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448273,-0.013559322033941,-0.000000000000010,2 -3394,3452,3454,3512,-0.475862068965546,0.027118644066798,-0.482758620689677,0.020338983049833,-0.482758620689688,0.033898305083763,-0.489655172413818,0.027118644066798,0.013559322033930,0.000000000000011,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448272,-0.013559322033930,-0.000000000000010,2 -3395,3453,3455,3513,-0.475862068965557,0.040677966100731,-0.482758620689688,0.033898305083763,-0.482758620689698,0.047457627117699,-0.489655172413829,0.040677966100731,0.013559322033937,0.000000000000011,-0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448271,-0.013559322033937,-0.000000000000010,2 -3396,3454,3456,3514,-0.475862068965569,0.054237288134667,-0.482758620689698,0.047457627117699,-0.482758620689709,0.061016949151634,-0.489655172413839,0.054237288134667,0.013559322033935,0.000000000000012,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448269,-0.013559322033935,-0.000000000000010,2 -3397,3455,3457,3515,-0.475862068965580,0.067796610168599,-0.482758620689709,0.061016949151634,-0.482758620689720,0.074576271185564,-0.489655172413849,0.067796610168599,0.013559322033930,0.000000000000011,-0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033930,-0.000000000000010,2 -3398,3456,3458,3516,-0.475862068965592,0.081355932202535,-0.482758620689720,0.074576271185564,-0.482758620689731,0.088135593219506,-0.489655172413859,0.081355932202535,0.013559322033941,0.000000000000011,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033941,-0.000000000000010,2 -3399,3457,3459,3517,-0.475862068965603,0.094915254236471,-0.482758620689731,0.088135593219506,-0.482758620689742,0.101694915253436,-0.489655172413869,0.094915254236471,0.013559322033930,0.000000000000012,0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448266,-0.013559322033930,-0.000000000000010,2 -3400,3458,3460,3518,-0.475862068965615,0.108474576270409,-0.482758620689742,0.101694915253436,-0.482758620689752,0.115254237287382,-0.489655172413880,0.108474576270409,0.013559322033946,0.000000000000011,-0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448264,-0.013559322033946,-0.000000000000010,2 -3401,3459,3461,3519,-0.475862068965626,0.122033898304341,-0.482758620689752,0.115254237287382,-0.482758620689763,0.128813559321301,-0.489655172413890,0.122033898304341,0.013559322033919,0.000000000000012,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033919,-0.000000000000010,2 -3402,3460,3462,3520,-0.475862068965638,0.135593220338273,-0.482758620689763,0.128813559321301,-0.482758620689774,0.142372881355246,-0.489655172413900,0.135593220338273,0.013559322033945,0.000000000000011,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033945,-0.000000000000010,2 -3403,3461,3463,3521,-0.475862068965649,0.149152542372213,-0.482758620689774,0.142372881355246,-0.482758620689785,0.155932203389179,-0.489655172413910,0.149152542372213,0.013559322033933,0.000000000000011,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033933,-0.000000000000010,2 -3404,3462,3464,3522,-0.475862068965660,0.162711864406145,-0.482758620689785,0.155932203389179,-0.482758620689796,0.169491525423110,-0.489655172413920,0.162711864406145,0.013559322033931,0.000000000000011,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448259,-0.013559322033931,-0.000000000000010,2 -3405,3463,3465,3523,-0.475862068965672,0.176271186440084,-0.482758620689796,0.169491525423110,-0.482758620689807,0.183050847457058,-0.489655172413930,0.176271186440084,0.013559322033948,0.000000000000011,-0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033947,-0.000000000000010,2 -3406,3464,3466,3524,-0.475862068965683,0.189830508474016,-0.482758620689807,0.183050847457058,-0.482758620689817,0.196610169490975,-0.489655172413941,0.189830508474016,0.013559322033917,0.000000000000012,0.000000000000000,-0.013793103448258,0.000000000000000,0.013793103448257,-0.013559322033917,-0.000000000000010,2 -3407,3465,3467,3525,-0.475862068965695,0.203389830507945,-0.482758620689817,0.196610169490975,-0.482758620689828,0.210169491524915,-0.489655172413951,0.203389830507945,0.013559322033940,0.000000000000011,-0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448255,-0.013559322033940,-0.000000000000010,2 -3408,3466,3468,3526,-0.475862068965706,0.216949152541877,-0.482758620689828,0.210169491524915,-0.482758620689839,0.223728813558839,-0.489655172413961,0.216949152541877,0.013559322033924,0.000000000000012,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448254,-0.013559322033924,-0.000000000000010,2 -3409,3467,3469,3527,-0.475862068965718,0.230508474575816,-0.482758620689839,0.223728813558839,-0.482758620689850,0.237288135592793,-0.489655172413971,0.230508474575816,0.013559322033954,0.000000000000011,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448253,-0.013559322033954,-0.000000000000010,2 -3410,3468,3470,3528,-0.475862068965729,0.244067796609748,-0.482758620689850,0.237288135592793,-0.482758620689861,0.250847457626703,-0.489655172413981,0.244067796609748,0.013559322033910,0.000000000000011,-0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033910,-0.000000000000010,2 -3411,3469,3471,3529,-0.475862068965740,0.257627118643680,-0.482758620689861,0.250847457626703,-0.482758620689871,0.264406779660657,-0.489655172413992,0.257627118643680,0.013559322033954,0.000000000000011,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000010,2 -3412,3470,3472,3530,-0.475862068965752,0.271186440677618,-0.482758620689871,0.264406779660657,-0.482758620689882,0.277966101694579,-0.489655172414002,0.271186440677618,0.013559322033922,0.000000000000012,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448249,-0.013559322033922,-0.000000000000010,2 -3413,3471,3473,3531,-0.475862068965763,0.284745762711550,-0.482758620689882,0.277966101694579,-0.482758620689893,0.291525423728521,-0.489655172414012,0.284745762711550,0.013559322033942,0.000000000000011,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448248,-0.013559322033942,-0.000000000000010,2 -3414,3472,3474,3532,-0.475862068965775,0.298305084745489,-0.482758620689893,0.291525423728521,-0.482758620689904,0.305084745762457,-0.489655172414022,0.298305084745489,0.013559322033936,0.000000000000011,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033936,-0.000000000000010,2 -3415,3473,3475,3533,-0.475862068965786,0.311864406779421,-0.482758620689904,0.305084745762457,-0.482758620689915,0.318644067796385,-0.489655172414032,0.311864406779421,0.013559322033928,0.000000000000012,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000010,2 -3416,3474,3476,3534,-0.475862068965798,0.325423728813361,-0.482758620689915,0.318644067796385,-0.482758620689925,0.332203389830336,-0.489655172414042,0.325423728813361,0.013559322033951,0.000000000000011,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033951,-0.000000000000010,2 -3417,3475,3477,3535,-0.475862068965809,0.338983050847293,-0.482758620689925,0.332203389830336,-0.482758620689936,0.345762711864250,-0.489655172414053,0.338983050847293,0.013559322033914,0.000000000000011,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000010,2 -3418,3476,3478,3536,-0.475862068965821,0.352542372881226,-0.482758620689936,0.345762711864250,-0.482758620689947,0.359322033898203,-0.489655172414063,0.352542372881227,0.013559322033954,0.000000000000011,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448242,-0.013559322033954,-0.000000000000010,2 -3419,3477,3479,3537,-0.475862068965832,0.366101694915162,-0.482758620689947,0.359322033898203,-0.482758620689958,0.372881355932121,-0.489655172414073,0.366101694915162,0.013559322033918,0.000000000000012,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000010,2 -3420,3478,3480,3538,-0.475862068965843,0.379661016949094,-0.482758620689958,0.372881355932121,-0.482758620689969,0.386440677966068,-0.489655172414083,0.379661016949094,0.013559322033946,0.000000000000011,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000010,2 -1948,3421,3479,3539,-0.482758620689980,0.400000000000000,-0.475862068965855,0.393220338983034,-0.482758620689969,0.386440677966068,-0.489655172414093,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000011,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000010,2 -3422,3482,3540,4260,-0.489655172413503,-0.393220338983059,-0.496551724137675,-0.386440677966118,-0.503448275861838,-0.393220338983059,-0.496551724137666,-0.400000000000000,0.013559322033882,0.000000000000010,-0.000000000000000,0.013793103448334,-0.013559322033882,-0.000000000000008,0.000000000000000,-0.013793103448336,2 -3423,3481,3483,3541,-0.489655172413513,-0.379661016949189,-0.496551724137675,-0.386440677966118,-0.496551724137684,-0.372881355932259,-0.503448275861846,-0.379661016949189,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448334,-0.000000000000000,0.013793103448333,-0.013559322033860,-0.000000000000009,2 -3424,3482,3484,3542,-0.489655172413523,-0.366101694915329,-0.496551724137684,-0.372881355932259,-0.496551724137694,-0.359322033898399,-0.503448275861855,-0.366101694915329,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448333,-0.000000000000000,0.013793103448331,-0.013559322033860,-0.000000000000008,2 -3425,3483,3485,3543,-0.489655172413533,-0.352542372881469,-0.496551724137694,-0.359322033898399,-0.496551724137703,-0.345762711864539,-0.503448275861863,-0.352542372881469,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448331,-0.000000000000000,0.013793103448329,-0.013559322033860,-0.000000000000008,2 -3426,3484,3486,3544,-0.489655172413544,-0.338983050847605,-0.496551724137703,-0.345762711864539,-0.496551724137712,-0.332203389830670,-0.503448275861872,-0.338983050847605,0.013559322033869,0.000000000000010,0.000000000000000,-0.013793103448329,-0.000000000000000,0.013793103448327,-0.013559322033869,-0.000000000000008,2 -3427,3485,3487,3545,-0.489655172413554,-0.325423728813729,-0.496551724137712,-0.332203389830670,-0.496551724137722,-0.318644067796787,-0.503448275861880,-0.325423728813729,0.013559322033883,0.000000000000010,0.000000000000000,-0.013793103448327,-0.000000000000000,0.013793103448326,-0.013559322033883,-0.000000000000009,2 -3428,3486,3488,3546,-0.489655172413564,-0.311864406779851,-0.496551724137722,-0.318644067796787,-0.496551724137731,-0.305084745762915,-0.503448275861889,-0.311864406779851,0.013559322033872,0.000000000000010,0.000000000000000,-0.013793103448326,0.000000000000000,0.013793103448325,-0.013559322033872,-0.000000000000009,2 -3429,3487,3489,3547,-0.489655172413574,-0.298305084745975,-0.496551724137731,-0.305084745762915,-0.496551724137741,-0.291525423729035,-0.503448275861898,-0.298305084745975,0.013559322033879,0.000000000000010,-0.000000000000000,-0.013793103448325,0.000000000000000,0.013793103448323,-0.013559322033879,-0.000000000000008,2 -3430,3488,3490,3548,-0.489655172413584,-0.284745762712106,-0.496551724137741,-0.291525423729035,-0.496551724137750,-0.277966101695176,-0.503448275861906,-0.284745762712105,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448323,-0.000000000000000,0.013793103448321,-0.013559322033860,-0.000000000000008,2 -3431,3489,3491,3549,-0.489655172413595,-0.271186440678246,-0.496551724137750,-0.277966101695176,-0.496551724137759,-0.264406779661316,-0.503448275861915,-0.271186440678246,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448321,-0.000000000000000,0.013793103448319,-0.013559322033860,-0.000000000000008,2 -3432,3490,3492,3550,-0.489655172413605,-0.257627118644386,-0.496551724137759,-0.264406779661316,-0.496551724137769,-0.250847457627456,-0.503448275861923,-0.257627118644386,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448319,-0.000000000000000,0.013793103448318,-0.013559322033860,-0.000000000000009,2 -3433,3491,3493,3551,-0.489655172413615,-0.244067796610526,-0.496551724137769,-0.250847457627456,-0.496551724137778,-0.237288135593597,-0.503448275861932,-0.244067796610526,0.013559322033859,0.000000000000010,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448316,-0.013559322033859,-0.000000000000008,2 -3434,3492,3494,3552,-0.489655172413625,-0.230508474576667,-0.496551724137778,-0.237288135593597,-0.496551724137787,-0.223728813559737,-0.503448275861940,-0.230508474576667,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448316,-0.000000000000000,0.013793103448315,-0.013559322033860,-0.000000000000009,2 -3435,3493,3495,3553,-0.489655172413635,-0.216949152542807,-0.496551724137787,-0.223728813559737,-0.496551724137797,-0.210169491525877,-0.503448275861949,-0.216949152542807,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448313,-0.013559322033860,-0.000000000000009,2 -3436,3494,3496,3554,-0.489655172413645,-0.203389830508947,-0.496551724137797,-0.210169491525877,-0.496551724137806,-0.196610169492017,-0.503448275861957,-0.203389830508947,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448311,-0.013559322033860,-0.000000000000008,2 -3437,3495,3497,3555,-0.489655172413656,-0.189830508475087,-0.496551724137806,-0.196610169492017,-0.496551724137815,-0.183050847458158,-0.503448275861966,-0.189830508475088,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448309,-0.013559322033860,-0.000000000000009,2 -3438,3496,3498,3556,-0.489655172413666,-0.176271186441228,-0.496551724137815,-0.183050847458158,-0.496551724137825,-0.169491525424298,-0.503448275861974,-0.176271186441228,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448308,-0.013559322033860,-0.000000000000008,2 -3439,3497,3499,3557,-0.489655172413676,-0.162711864407368,-0.496551724137825,-0.169491525424298,-0.496551724137834,-0.155932203390438,-0.503448275861983,-0.162711864407368,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448306,-0.013559322033860,-0.000000000000008,2 -3440,3498,3500,3558,-0.489655172413686,-0.149152542373509,-0.496551724137834,-0.155932203390438,-0.496551724137843,-0.142372881356579,-0.503448275861991,-0.149152542373509,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448304,-0.013559322033860,-0.000000000000009,2 -3441,3499,3501,3559,-0.489655172413696,-0.135593220339649,-0.496551724137843,-0.142372881356579,-0.496551724137853,-0.128813559322719,-0.503448275862000,-0.135593220339649,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448303,-0.013559322033860,-0.000000000000008,2 -3442,3500,3502,3560,-0.489655172413706,-0.122033898305789,-0.496551724137853,-0.128813559322719,-0.496551724137862,-0.115254237288859,-0.503448275862008,-0.122033898305789,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448301,-0.013559322033860,-0.000000000000008,2 -3443,3501,3503,3561,-0.489655172413717,-0.108474576271933,-0.496551724137862,-0.115254237288859,-0.496551724137871,-0.101694915255008,-0.503448275862017,-0.108474576271933,0.013559322033852,0.000000000000010,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448299,-0.013559322033852,-0.000000000000009,2 -3444,3502,3504,3562,-0.489655172413727,-0.094915254238085,-0.496551724137871,-0.101694915255008,-0.496551724137881,-0.088135593221162,-0.503448275862025,-0.094915254238085,0.013559322033846,0.000000000000010,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033846,-0.000000000000008,2 -3445,3503,3505,3563,-0.489655172413737,-0.081355932204232,-0.496551724137881,-0.088135593221162,-0.496551724137890,-0.074576271187302,-0.503448275862034,-0.081355932204232,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000008,2 -3446,3504,3506,3564,-0.489655172413747,-0.067796610170372,-0.496551724137890,-0.074576271187302,-0.496551724137899,-0.061016949153442,-0.503448275862042,-0.067796610170372,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000008,2 -3447,3505,3507,3565,-0.489655172413757,-0.054237288136513,-0.496551724137899,-0.061016949153442,-0.496551724137909,-0.047457627119583,-0.503448275862051,-0.054237288136513,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448294,0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000009,2 -3448,3506,3508,3566,-0.489655172413768,-0.040677966102653,-0.496551724137909,-0.047457627119583,-0.496551724137918,-0.033898305085723,-0.503448275862059,-0.040677966102653,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448293,0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000009,2 -3449,3507,3509,3567,-0.489655172413778,-0.027118644068793,-0.496551724137918,-0.033898305085723,-0.496551724137927,-0.020338983051863,-0.503448275862068,-0.027118644068793,0.013559322033860,0.000000000000010,-0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000008,2 -3450,3508,3510,3568,-0.489655172413788,-0.013559322034933,-0.496551724137927,-0.020338983051863,-0.496551724137937,-0.006779661018004,-0.503448275862076,-0.013559322034934,0.013559322033860,0.000000000000010,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448288,-0.013559322033860,-0.000000000000008,2 -3451,3509,3511,3569,-0.489655172413798,-0.000000000001056,-0.496551724137937,-0.006779661018004,-0.496551724137946,0.006779661015891,-0.503448275862085,-0.000000000001056,0.013559322033895,0.000000000000010,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448286,-0.013559322033895,-0.000000000000008,2 -3452,3510,3512,3570,-0.489655172413808,0.013559322032862,-0.496551724137946,0.006779661015891,-0.496551724137956,0.020338983049833,-0.503448275862093,0.013559322032862,0.013559322033941,0.000000000000010,-0.000000000000000,-0.013793103448286,0.000000000000000,0.013793103448284,-0.013559322033941,-0.000000000000009,2 -3453,3511,3513,3571,-0.489655172413818,0.027118644066798,-0.496551724137956,0.020338983049833,-0.496551724137965,0.033898305083763,-0.503448275862102,0.027118644066798,0.013559322033930,0.000000000000010,-0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033930,-0.000000000000008,2 -3454,3512,3514,3572,-0.489655172413829,0.040677966100731,-0.496551724137965,0.033898305083763,-0.496551724137974,0.047457627117699,-0.503448275862110,0.040677966100731,0.013559322033937,0.000000000000010,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448281,-0.013559322033937,-0.000000000000009,2 -3455,3513,3515,3573,-0.489655172413839,0.054237288134667,-0.496551724137974,0.047457627117699,-0.496551724137984,0.061016949151634,-0.503448275862119,0.054237288134667,0.013559322033935,0.000000000000010,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448279,-0.013559322033935,-0.000000000000008,2 -3456,3514,3516,3574,-0.489655172413849,0.067796610168599,-0.496551724137984,0.061016949151634,-0.496551724137993,0.074576271185564,-0.503448275862127,0.067796610168599,0.013559322033930,0.000000000000010,0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448278,-0.013559322033930,-0.000000000000008,2 -3457,3515,3517,3575,-0.489655172413859,0.081355932202535,-0.496551724137993,0.074576271185564,-0.496551724138002,0.088135593219506,-0.503448275862136,0.081355932202535,0.013559322033941,0.000000000000010,-0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448276,-0.013559322033941,-0.000000000000008,2 -3458,3516,3518,3576,-0.489655172413869,0.094915254236471,-0.496551724138002,0.088135593219506,-0.496551724138012,0.101694915253436,-0.503448275862144,0.094915254236471,0.013559322033930,0.000000000000010,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448274,-0.013559322033930,-0.000000000000009,2 -3459,3517,3519,3577,-0.489655172413880,0.108474576270409,-0.496551724138012,0.101694915253436,-0.496551724138021,0.115254237287382,-0.503448275862153,0.108474576270409,0.013559322033946,0.000000000000010,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448273,-0.013559322033946,-0.000000000000008,2 -3460,3518,3520,3578,-0.489655172413890,0.122033898304341,-0.496551724138021,0.115254237287382,-0.496551724138030,0.128813559321301,-0.503448275862162,0.122033898304341,0.013559322033919,0.000000000000010,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448271,-0.013559322033919,-0.000000000000009,2 -3461,3519,3521,3579,-0.489655172413900,0.135593220338273,-0.496551724138030,0.128813559321301,-0.496551724138040,0.142372881355246,-0.503448275862170,0.135593220338273,0.013559322033945,0.000000000000010,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448269,-0.013559322033945,-0.000000000000008,2 -3462,3520,3522,3580,-0.489655172413910,0.149152542372213,-0.496551724138040,0.142372881355246,-0.496551724138049,0.155932203389179,-0.503448275862179,0.149152542372213,0.013559322033933,0.000000000000010,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033933,-0.000000000000008,2 -3463,3521,3523,3581,-0.489655172413920,0.162711864406145,-0.496551724138049,0.155932203389179,-0.496551724138058,0.169491525423110,-0.503448275862187,0.162711864406145,0.013559322033931,0.000000000000010,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448266,-0.013559322033931,-0.000000000000008,2 -3464,3522,3524,3582,-0.489655172413930,0.176271186440084,-0.496551724138058,0.169491525423110,-0.496551724138068,0.183050847457058,-0.503448275862196,0.176271186440084,0.013559322033947,0.000000000000010,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448264,-0.013559322033947,-0.000000000000009,2 -3465,3523,3525,3583,-0.489655172413941,0.189830508474016,-0.496551724138068,0.183050847457058,-0.496551724138077,0.196610169490975,-0.503448275862204,0.189830508474016,0.013559322033917,0.000000000000010,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033917,-0.000000000000008,2 -3466,3524,3526,3584,-0.489655172413951,0.203389830507945,-0.496551724138077,0.196610169490975,-0.496551724138086,0.210169491524915,-0.503448275862213,0.203389830507945,0.013559322033940,0.000000000000010,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448261,-0.013559322033940,-0.000000000000009,2 -3467,3525,3527,3585,-0.489655172413961,0.216949152541877,-0.496551724138086,0.210169491524915,-0.496551724138096,0.223728813558839,-0.503448275862221,0.216949152541877,0.013559322033924,0.000000000000010,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448259,-0.013559322033924,-0.000000000000008,2 -3468,3526,3528,3586,-0.489655172413971,0.230508474575816,-0.496551724138096,0.223728813558839,-0.496551724138105,0.237288135592793,-0.503448275862230,0.230508474575816,0.013559322033954,0.000000000000010,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033954,-0.000000000000008,2 -3469,3527,3529,3587,-0.489655172413981,0.244067796609748,-0.496551724138105,0.237288135592793,-0.496551724138115,0.250847457626703,-0.503448275862238,0.244067796609748,0.013559322033910,0.000000000000010,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448256,-0.013559322033910,-0.000000000000009,2 -3470,3528,3530,3588,-0.489655172413992,0.257627118643680,-0.496551724138115,0.250847457626703,-0.496551724138124,0.264406779660657,-0.503448275862247,0.257627118643680,0.013559322033954,0.000000000000010,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448254,-0.013559322033954,-0.000000000000008,2 -3471,3529,3531,3589,-0.489655172414002,0.271186440677618,-0.496551724138124,0.264406779660657,-0.496551724138133,0.277966101694579,-0.503448275862255,0.271186440677618,0.013559322033922,0.000000000000010,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448253,-0.013559322033922,-0.000000000000009,2 -3472,3530,3532,3590,-0.489655172414012,0.284745762711550,-0.496551724138133,0.277966101694579,-0.496551724138142,0.291525423728521,-0.503448275862264,0.284745762711550,0.013559322033942,0.000000000000010,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448251,-0.013559322033942,-0.000000000000008,2 -3473,3531,3533,3591,-0.489655172414022,0.298305084745489,-0.496551724138142,0.291525423728521,-0.496551724138152,0.305084745762457,-0.503448275862272,0.298305084745489,0.013559322033936,0.000000000000010,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448249,-0.013559322033936,-0.000000000000008,2 -3474,3532,3534,3592,-0.489655172414032,0.311864406779421,-0.496551724138152,0.305084745762457,-0.496551724138161,0.318644067796385,-0.503448275862281,0.311864406779421,0.013559322033928,0.000000000000010,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448248,-0.013559322033928,-0.000000000000008,2 -3475,3533,3535,3593,-0.489655172414042,0.325423728813361,-0.496551724138161,0.318644067796385,-0.496551724138170,0.332203389830336,-0.503448275862289,0.325423728813361,0.013559322033951,0.000000000000010,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448246,-0.013559322033951,-0.000000000000008,2 -3476,3534,3536,3594,-0.489655172414053,0.338983050847293,-0.496551724138170,0.332203389830336,-0.496551724138180,0.345762711864250,-0.503448275862298,0.338983050847293,0.013559322033914,0.000000000000010,-0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448244,-0.013559322033914,-0.000000000000009,2 -3477,3535,3537,3595,-0.489655172414063,0.352542372881227,-0.496551724138180,0.345762711864250,-0.496551724138189,0.359322033898203,-0.503448275862306,0.352542372881226,0.013559322033954,0.000000000000010,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033954,-0.000000000000009,2 -3478,3536,3538,3596,-0.489655172414073,0.366101694915162,-0.496551724138189,0.359322033898203,-0.496551724138199,0.372881355932121,-0.503448275862315,0.366101694915162,0.013559322033918,0.000000000000010,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448241,-0.013559322033918,-0.000000000000009,2 -3479,3537,3539,3597,-0.489655172414083,0.379661016949094,-0.496551724138199,0.372881355932121,-0.496551724138208,0.386440677966068,-0.503448275862323,0.379661016949094,0.013559322033946,0.000000000000010,0.000000000000000,-0.013793103448241,0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000008,2 -1934,3480,3538,3598,-0.496551724138217,0.400000000000000,-0.489655172414093,0.393220338983034,-0.496551724138208,0.386440677966068,-0.503448275862332,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000010,-0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000009,2 -3481,3541,3599,4274,-0.503448275861838,-0.393220338983059,-0.510344827585997,-0.386440677966118,-0.517241379310149,-0.393220338983059,-0.510344827585989,-0.400000000000000,0.013559322033882,0.000000000000008,-0.000000000000000,0.013793103448310,-0.013559322033882,-0.000000000000007,0.000000000000000,-0.013793103448311,2 -3482,3540,3542,3600,-0.503448275861846,-0.379661016949189,-0.510344827585997,-0.386440677966118,-0.510344827586005,-0.372881355932259,-0.517241379310156,-0.379661016949189,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448309,-0.013559322033860,-0.000000000000008,2 -3483,3541,3543,3601,-0.503448275861855,-0.366101694915329,-0.510344827586005,-0.372881355932259,-0.510344827586013,-0.359322033898399,-0.517241379310163,-0.366101694915329,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448308,-0.013559322033860,-0.000000000000007,2 -3484,3542,3544,3602,-0.503448275861863,-0.352542372881469,-0.510344827586013,-0.359322033898399,-0.510344827586021,-0.345762711864539,-0.517241379310171,-0.352542372881469,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448307,-0.013559322033860,-0.000000000000007,2 -3485,3543,3545,3603,-0.503448275861872,-0.338983050847605,-0.510344827586021,-0.345762711864539,-0.510344827586029,-0.332203389830670,-0.517241379310178,-0.338983050847605,0.013559322033869,0.000000000000008,-0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448305,-0.013559322033869,-0.000000000000007,2 -3486,3544,3546,3604,-0.503448275861880,-0.325423728813729,-0.510344827586029,-0.332203389830670,-0.510344827586037,-0.318644067796787,-0.517241379310185,-0.325423728813729,0.013559322033883,0.000000000000009,-0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448304,-0.013559322033883,-0.000000000000007,2 -3487,3545,3547,3605,-0.503448275861889,-0.311864406779851,-0.510344827586037,-0.318644067796787,-0.510344827586045,-0.305084745762915,-0.517241379310192,-0.311864406779851,0.013559322033872,0.000000000000009,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448303,-0.013559322033872,-0.000000000000007,2 -3488,3546,3548,3606,-0.503448275861898,-0.298305084745975,-0.510344827586045,-0.305084745762915,-0.510344827586053,-0.291525423729035,-0.517241379310200,-0.298305084745975,0.013559322033879,0.000000000000008,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448301,-0.013559322033879,-0.000000000000007,2 -3489,3547,3549,3607,-0.503448275861906,-0.284745762712105,-0.510344827586053,-0.291525423729035,-0.510344827586060,-0.277966101695176,-0.517241379310207,-0.284745762712106,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448300,-0.013559322033860,-0.000000000000007,2 -3490,3548,3550,3608,-0.503448275861915,-0.271186440678246,-0.510344827586060,-0.277966101695176,-0.510344827586068,-0.264406779661316,-0.517241379310214,-0.271186440678246,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448299,-0.013559322033860,-0.000000000000007,2 -3491,3549,3551,3609,-0.503448275861923,-0.257627118644386,-0.510344827586068,-0.264406779661316,-0.510344827586076,-0.250847457627456,-0.517241379310221,-0.257627118644386,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000007,2 -3492,3550,3552,3610,-0.503448275861932,-0.244067796610526,-0.510344827586076,-0.250847457627456,-0.510344827586084,-0.237288135593597,-0.517241379310229,-0.244067796610526,0.013559322033859,0.000000000000008,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000007,2 -3493,3551,3553,3611,-0.503448275861940,-0.230508474576667,-0.510344827586084,-0.237288135593597,-0.510344827586092,-0.223728813559737,-0.517241379310236,-0.230508474576667,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000007,2 -3494,3552,3554,3612,-0.503448275861949,-0.216949152542807,-0.510344827586092,-0.223728813559737,-0.510344827586100,-0.210169491525877,-0.517241379310243,-0.216949152542807,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000007,2 -3495,3553,3555,3613,-0.503448275861957,-0.203389830508947,-0.510344827586100,-0.210169491525877,-0.510344827586108,-0.196610169492017,-0.517241379310250,-0.203389830508947,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000007,2 -3496,3554,3556,3614,-0.503448275861966,-0.189830508475088,-0.510344827586108,-0.196610169492017,-0.510344827586116,-0.183050847458158,-0.517241379310258,-0.189830508475088,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000007,2 -3497,3555,3557,3615,-0.503448275861974,-0.176271186441228,-0.510344827586116,-0.183050847458158,-0.510344827586124,-0.169491525424298,-0.517241379310265,-0.176271186441228,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000007,2 -3498,3556,3558,3616,-0.503448275861983,-0.162711864407368,-0.510344827586124,-0.169491525424298,-0.510344827586131,-0.155932203390438,-0.517241379310272,-0.162711864407368,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000007,2 -3499,3557,3559,3617,-0.503448275861991,-0.149152542373509,-0.510344827586131,-0.155932203390438,-0.510344827586139,-0.142372881356579,-0.517241379310280,-0.149152542373509,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448288,-0.013559322033860,-0.000000000000007,2 -3500,3558,3560,3618,-0.503448275862000,-0.135593220339649,-0.510344827586139,-0.142372881356579,-0.510344827586147,-0.128813559322719,-0.517241379310287,-0.135593220339649,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000007,2 -3501,3559,3561,3619,-0.503448275862008,-0.122033898305789,-0.510344827586147,-0.128813559322719,-0.510344827586155,-0.115254237288859,-0.517241379310294,-0.122033898305789,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000007,2 -3502,3560,3562,3620,-0.503448275862017,-0.108474576271933,-0.510344827586155,-0.115254237288859,-0.510344827586163,-0.101694915255008,-0.517241379310301,-0.108474576271933,0.013559322033852,0.000000000000009,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033852,-0.000000000000007,2 -3503,3561,3563,3621,-0.503448275862025,-0.094915254238085,-0.510344827586163,-0.101694915255008,-0.510344827586171,-0.088135593221162,-0.517241379310309,-0.094915254238085,0.013559322033846,0.000000000000008,0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448283,-0.013559322033846,-0.000000000000007,2 -3504,3562,3564,3622,-0.503448275862034,-0.081355932204232,-0.510344827586171,-0.088135593221162,-0.510344827586179,-0.074576271187302,-0.517241379310316,-0.081355932204232,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000007,2 -3505,3563,3565,3623,-0.503448275862042,-0.067796610170372,-0.510344827586179,-0.074576271187302,-0.510344827586187,-0.061016949153442,-0.517241379310323,-0.067796610170372,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000007,2 -3506,3564,3566,3624,-0.503448275862051,-0.054237288136513,-0.510344827586187,-0.061016949153442,-0.510344827586195,-0.047457627119583,-0.517241379310330,-0.054237288136513,0.013559322033860,0.000000000000009,0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000007,2 -3507,3565,3567,3625,-0.503448275862059,-0.040677966102653,-0.510344827586195,-0.047457627119583,-0.510344827586203,-0.033898305085723,-0.517241379310338,-0.040677966102653,0.013559322033860,0.000000000000009,-0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000007,2 -3508,3566,3568,3626,-0.503448275862068,-0.027118644068793,-0.510344827586203,-0.033898305085723,-0.510344827586210,-0.020338983051863,-0.517241379310345,-0.027118644068793,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000007,2 -3509,3567,3569,3627,-0.503448275862076,-0.013559322034934,-0.510344827586210,-0.020338983051863,-0.510344827586218,-0.006779661018004,-0.517241379310352,-0.013559322034934,0.013559322033860,0.000000000000008,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000007,2 -3510,3568,3570,3628,-0.503448275862085,-0.000000000001056,-0.510344827586218,-0.006779661018004,-0.510344827586226,0.006779661015891,-0.517241379310359,-0.000000000001056,0.013559322033895,0.000000000000008,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448274,-0.013559322033895,-0.000000000000008,2 -3511,3569,3571,3629,-0.503448275862093,0.013559322032862,-0.510344827586226,0.006779661015891,-0.510344827586234,0.020338983049833,-0.517241379310367,0.013559322032862,0.013559322033941,0.000000000000009,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448273,-0.013559322033941,-0.000000000000007,2 -3512,3570,3572,3630,-0.503448275862102,0.027118644066798,-0.510344827586234,0.020338983049833,-0.510344827586242,0.033898305083763,-0.517241379310374,0.027118644066798,0.013559322033930,0.000000000000008,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448271,-0.013559322033930,-0.000000000000007,2 -3513,3571,3573,3631,-0.503448275862110,0.040677966100731,-0.510344827586242,0.033898305083763,-0.510344827586250,0.047457627117699,-0.517241379310381,0.040677966100731,0.013559322033937,0.000000000000009,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448270,-0.013559322033937,-0.000000000000007,2 -3514,3572,3574,3632,-0.503448275862119,0.054237288134667,-0.510344827586250,0.047457627117699,-0.510344827586258,0.061016949151634,-0.517241379310389,0.054237288134667,0.013559322033935,0.000000000000008,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033935,-0.000000000000007,2 -3515,3573,3575,3633,-0.503448275862127,0.067796610168599,-0.510344827586258,0.061016949151634,-0.510344827586266,0.074576271185564,-0.517241379310396,0.067796610168599,0.013559322033930,0.000000000000008,0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448268,-0.013559322033930,-0.000000000000007,2 -3516,3574,3576,3634,-0.503448275862136,0.081355932202535,-0.510344827586266,0.074576271185564,-0.510344827586273,0.088135593219506,-0.517241379310403,0.081355932202535,0.013559322033941,0.000000000000008,-0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033941,-0.000000000000007,2 -3517,3575,3577,3635,-0.503448275862144,0.094915254236471,-0.510344827586273,0.088135593219506,-0.510344827586281,0.101694915253436,-0.517241379310410,0.094915254236471,0.013559322033930,0.000000000000009,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448265,-0.013559322033930,-0.000000000000007,2 -3518,3576,3578,3636,-0.503448275862153,0.108474576270409,-0.510344827586281,0.101694915253436,-0.510344827586289,0.115254237287382,-0.517241379310418,0.108474576270409,0.013559322033946,0.000000000000008,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448264,-0.013559322033946,-0.000000000000008,2 -3519,3577,3579,3637,-0.503448275862162,0.122033898304341,-0.510344827586289,0.115254237287382,-0.510344827586297,0.128813559321301,-0.517241379310425,0.122033898304341,0.013559322033919,0.000000000000009,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033919,-0.000000000000007,2 -3520,3578,3580,3638,-0.503448275862170,0.135593220338273,-0.510344827586297,0.128813559321301,-0.510344827586305,0.142372881355246,-0.517241379310432,0.135593220338273,0.013559322033945,0.000000000000008,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448261,-0.013559322033945,-0.000000000000007,2 -3521,3579,3581,3639,-0.503448275862179,0.149152542372213,-0.510344827586305,0.142372881355246,-0.510344827586313,0.155932203389179,-0.517241379310439,0.149152542372213,0.013559322033933,0.000000000000008,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448260,-0.013559322033933,-0.000000000000007,2 -3522,3580,3582,3640,-0.503448275862187,0.162711864406145,-0.510344827586313,0.155932203389179,-0.510344827586321,0.169491525423110,-0.517241379310447,0.162711864406145,0.013559322033931,0.000000000000008,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448259,-0.013559322033931,-0.000000000000007,2 -3523,3581,3583,3641,-0.503448275862196,0.176271186440084,-0.510344827586321,0.169491525423110,-0.510344827586329,0.183050847457058,-0.517241379310454,0.176271186440084,0.013559322033947,0.000000000000009,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033947,-0.000000000000007,2 -3524,3582,3584,3642,-0.503448275862204,0.189830508474016,-0.510344827586329,0.183050847457058,-0.510344827586337,0.196610169490975,-0.517241379310461,0.189830508474016,0.013559322033917,0.000000000000008,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033917,-0.000000000000007,2 -3525,3583,3585,3643,-0.503448275862213,0.203389830507945,-0.510344827586337,0.196610169490975,-0.510344827586344,0.210169491524915,-0.517241379310468,0.203389830507945,0.013559322033940,0.000000000000009,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448255,-0.013559322033940,-0.000000000000007,2 -3526,3584,3586,3644,-0.503448275862221,0.216949152541877,-0.510344827586344,0.210169491524915,-0.510344827586352,0.223728813558839,-0.517241379310476,0.216949152541877,0.013559322033924,0.000000000000008,0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448254,-0.013559322033924,-0.000000000000007,2 -3527,3585,3587,3645,-0.503448275862230,0.230508474575816,-0.510344827586352,0.223728813558839,-0.510344827586360,0.237288135592793,-0.517241379310483,0.230508474575816,0.013559322033954,0.000000000000008,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448253,-0.013559322033954,-0.000000000000007,2 -3528,3586,3588,3646,-0.503448275862238,0.244067796609748,-0.510344827586360,0.237288135592793,-0.510344827586368,0.250847457626703,-0.517241379310490,0.244067796609748,0.013559322033910,0.000000000000009,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448251,-0.013559322033910,-0.000000000000007,2 -3529,3587,3589,3647,-0.503448275862247,0.257627118643680,-0.510344827586368,0.250847457626703,-0.510344827586376,0.264406779660657,-0.517241379310497,0.257627118643680,0.013559322033954,0.000000000000008,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000007,2 -3530,3588,3590,3648,-0.503448275862255,0.271186440677618,-0.510344827586376,0.264406779660657,-0.510344827586384,0.277966101694579,-0.517241379310505,0.271186440677618,0.013559322033922,0.000000000000009,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448249,-0.013559322033922,-0.000000000000007,2 -3531,3589,3591,3649,-0.503448275862264,0.284745762711550,-0.510344827586384,0.277966101694579,-0.510344827586392,0.291525423728521,-0.517241379310512,0.284745762711550,0.013559322033942,0.000000000000008,0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448248,-0.013559322033942,-0.000000000000007,2 -3532,3590,3592,3650,-0.503448275862272,0.298305084745489,-0.510344827586392,0.291525423728521,-0.510344827586400,0.305084745762457,-0.517241379310519,0.298305084745489,0.013559322033936,0.000000000000008,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033936,-0.000000000000007,2 -3533,3591,3593,3651,-0.503448275862281,0.311864406779421,-0.510344827586400,0.305084745762457,-0.510344827586408,0.318644067796385,-0.517241379310527,0.311864406779421,0.013559322033928,0.000000000000008,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000007,2 -3534,3592,3594,3652,-0.503448275862289,0.325423728813361,-0.510344827586408,0.318644067796385,-0.510344827586415,0.332203389830336,-0.517241379310534,0.325423728813361,0.013559322033951,0.000000000000008,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033950,-0.000000000000007,2 -3535,3593,3595,3653,-0.503448275862298,0.338983050847293,-0.510344827586415,0.332203389830336,-0.510344827586423,0.345762711864250,-0.517241379310541,0.338983050847293,0.013559322033914,0.000000000000009,0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000007,2 -3536,3594,3596,3654,-0.503448275862306,0.352542372881226,-0.510344827586423,0.345762711864250,-0.510344827586431,0.359322033898203,-0.517241379310548,0.352542372881227,0.013559322033954,0.000000000000009,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000007,2 -3537,3595,3597,3655,-0.503448275862315,0.366101694915162,-0.510344827586431,0.359322033898203,-0.510344827586439,0.372881355932121,-0.517241379310556,0.366101694915162,0.013559322033918,0.000000000000009,-0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000007,2 -3538,3596,3598,3656,-0.503448275862323,0.379661016949094,-0.510344827586439,0.372881355932121,-0.510344827586447,0.386440677966068,-0.517241379310563,0.379661016949094,0.013559322033946,0.000000000000008,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000007,2 -1920,3539,3597,3657,-0.510344827586455,0.400000000000000,-0.503448275862332,0.393220338983034,-0.510344827586447,0.386440677966068,-0.517241379310570,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000009,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000007,2 -3540,3600,3658,4288,-0.517241379310149,-0.393220338983059,-0.524137931034306,-0.386440677966118,-0.531034482758456,-0.393220338983059,-0.524137931034299,-0.400000000000000,0.013559322033882,0.000000000000007,-0.000000000000000,0.013793103448307,-0.013559322033882,-0.000000000000006,0.000000000000000,-0.013793103448308,2 -3541,3599,3601,3659,-0.517241379310156,-0.379661016949189,-0.524137931034306,-0.386440677966118,-0.524137931034312,-0.372881355932259,-0.531034482758462,-0.379661016949189,0.013559322033860,0.000000000000008,0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448305,-0.013559322033860,-0.000000000000006,2 -3542,3600,3602,3660,-0.517241379310163,-0.366101694915329,-0.524137931034312,-0.372881355932259,-0.524137931034319,-0.359322033898399,-0.531034482758468,-0.366101694915329,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448304,-0.013559322033859,-0.000000000000006,2 -3543,3601,3603,3661,-0.517241379310171,-0.352542372881469,-0.524137931034319,-0.359322033898399,-0.524137931034326,-0.345762711864539,-0.531034482758474,-0.352542372881469,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448304,-0.000000000000000,0.013793103448303,-0.013559322033860,-0.000000000000006,2 -3544,3602,3604,3662,-0.517241379310178,-0.338983050847605,-0.524137931034326,-0.345762711864539,-0.524137931034332,-0.332203389830670,-0.531034482758480,-0.338983050847605,0.013559322033869,0.000000000000007,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448301,-0.013559322033869,-0.000000000000006,2 -3545,3603,3605,3663,-0.517241379310185,-0.325423728813729,-0.524137931034332,-0.332203389830670,-0.524137931034339,-0.318644067796787,-0.531034482758486,-0.325423728813729,0.013559322033883,0.000000000000007,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448301,-0.013559322033883,-0.000000000000006,2 -3546,3604,3606,3664,-0.517241379310192,-0.311864406779851,-0.524137931034339,-0.318644067796787,-0.524137931034346,-0.305084745762915,-0.531034482758492,-0.311864406779851,0.013559322033872,0.000000000000007,0.000000000000000,-0.013793103448301,-0.000000000000000,0.013793103448299,-0.013559322033872,-0.000000000000006,2 -3547,3605,3607,3665,-0.517241379310200,-0.298305084745975,-0.524137931034346,-0.305084745762915,-0.524137931034352,-0.291525423729035,-0.531034482758498,-0.298305084745975,0.013559322033879,0.000000000000007,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033879,-0.000000000000006,2 -3548,3606,3608,3666,-0.517241379310207,-0.284745762712106,-0.524137931034352,-0.291525423729035,-0.524137931034359,-0.277966101695176,-0.531034482758504,-0.284745762712106,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000006,2 -3549,3607,3609,3667,-0.517241379310214,-0.271186440678246,-0.524137931034359,-0.277966101695176,-0.524137931034366,-0.264406779661316,-0.531034482758511,-0.271186440678246,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000006,2 -3550,3608,3610,3668,-0.517241379310221,-0.257627118644386,-0.524137931034366,-0.264406779661316,-0.524137931034372,-0.250847457627456,-0.531034482758517,-0.257627118644386,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000006,2 -3551,3609,3611,3669,-0.517241379310229,-0.244067796610526,-0.524137931034372,-0.250847457627456,-0.524137931034379,-0.237288135593597,-0.531034482758523,-0.244067796610526,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448295,0.000000000000000,0.013793103448293,-0.013559322033860,-0.000000000000006,2 -3552,3610,3612,3670,-0.517241379310236,-0.230508474576667,-0.524137931034379,-0.237288135593597,-0.524137931034386,-0.223728813559737,-0.531034482758529,-0.230508474576667,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448293,0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000006,2 -3553,3611,3613,3671,-0.517241379310243,-0.216949152542807,-0.524137931034386,-0.223728813559737,-0.524137931034393,-0.210169491525877,-0.531034482758535,-0.216949152542807,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000006,2 -3554,3612,3614,3672,-0.517241379310250,-0.203389830508947,-0.524137931034393,-0.210169491525877,-0.524137931034399,-0.196610169492017,-0.531034482758541,-0.203389830508947,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000006,2 -3555,3613,3615,3673,-0.517241379310258,-0.189830508475088,-0.524137931034399,-0.196610169492017,-0.524137931034406,-0.183050847458158,-0.531034482758547,-0.189830508475088,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000006,2 -3556,3614,3616,3674,-0.517241379310265,-0.176271186441228,-0.524137931034406,-0.183050847458158,-0.524137931034412,-0.169491525424298,-0.531034482758553,-0.176271186441228,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000006,2 -3557,3615,3617,3675,-0.517241379310272,-0.162711864407368,-0.524137931034412,-0.169491525424298,-0.524137931034419,-0.155932203390438,-0.531034482758559,-0.162711864407368,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000006,2 -3558,3616,3618,3676,-0.517241379310280,-0.149152542373509,-0.524137931034419,-0.155932203390438,-0.524137931034426,-0.142372881356579,-0.531034482758565,-0.149152542373509,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000006,2 -3559,3617,3619,3677,-0.517241379310287,-0.135593220339649,-0.524137931034426,-0.142372881356579,-0.524137931034432,-0.128813559322719,-0.531034482758571,-0.135593220339649,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000006,2 -3560,3618,3620,3678,-0.517241379310294,-0.122033898305789,-0.524137931034432,-0.128813559322719,-0.524137931034439,-0.115254237288859,-0.531034482758578,-0.122033898305789,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000006,2 -3561,3619,3621,3679,-0.517241379310301,-0.108474576271933,-0.524137931034439,-0.115254237288859,-0.524137931034446,-0.101694915255008,-0.531034482758584,-0.108474576271933,0.013559322033852,0.000000000000007,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448281,-0.013559322033852,-0.000000000000006,2 -3562,3620,3622,3680,-0.517241379310309,-0.094915254238085,-0.524137931034446,-0.101694915255008,-0.524137931034452,-0.088135593221162,-0.531034482758590,-0.094915254238085,0.013559322033846,0.000000000000007,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448280,-0.013559322033846,-0.000000000000006,2 -3563,3621,3623,3681,-0.517241379310316,-0.081355932204232,-0.524137931034452,-0.088135593221162,-0.524137931034459,-0.074576271187302,-0.531034482758596,-0.081355932204232,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000006,2 -3564,3622,3624,3682,-0.517241379310323,-0.067796610170372,-0.524137931034459,-0.074576271187302,-0.524137931034466,-0.061016949153442,-0.531034482758602,-0.067796610170372,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000006,2 -3565,3623,3625,3683,-0.517241379310330,-0.054237288136513,-0.524137931034466,-0.061016949153442,-0.524137931034472,-0.047457627119583,-0.531034482758608,-0.054237288136513,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000006,2 -3566,3624,3626,3684,-0.517241379310338,-0.040677966102653,-0.524137931034472,-0.047457627119583,-0.524137931034479,-0.033898305085723,-0.531034482758614,-0.040677966102653,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000006,2 -3567,3625,3627,3685,-0.517241379310345,-0.027118644068793,-0.524137931034479,-0.033898305085723,-0.524137931034486,-0.020338983051863,-0.531034482758620,-0.027118644068793,0.013559322033860,0.000000000000007,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000006,2 -3568,3626,3628,3686,-0.517241379310352,-0.013559322034934,-0.524137931034486,-0.020338983051863,-0.524137931034492,-0.006779661018004,-0.531034482758626,-0.013559322034934,0.013559322033860,0.000000000000007,0.000000000000000,-0.013793103448274,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000006,2 -3569,3627,3629,3687,-0.517241379310359,-0.000000000001056,-0.524137931034492,-0.006779661018004,-0.524137931034499,0.006779661015891,-0.531034482758632,-0.000000000001056,0.013559322033895,0.000000000000008,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448272,-0.013559322033895,-0.000000000000006,2 -3570,3628,3630,3688,-0.517241379310367,0.013559322032862,-0.524137931034499,0.006779661015891,-0.524137931034506,0.020338983049833,-0.531034482758638,0.013559322032862,0.013559322033941,0.000000000000007,-0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448271,-0.013559322033941,-0.000000000000006,2 -3571,3629,3631,3689,-0.517241379310374,0.027118644066798,-0.524137931034506,0.020338983049833,-0.524137931034512,0.033898305083763,-0.531034482758644,0.027118644066798,0.013559322033930,0.000000000000007,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448270,-0.013559322033930,-0.000000000000006,2 -3572,3630,3632,3690,-0.517241379310381,0.040677966100731,-0.524137931034512,0.033898305083763,-0.524137931034519,0.047457627117699,-0.531034482758650,0.040677966100731,0.013559322033937,0.000000000000007,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033937,-0.000000000000006,2 -3573,3631,3633,3691,-0.517241379310389,0.054237288134667,-0.524137931034519,0.047457627117699,-0.524137931034526,0.061016949151634,-0.531034482758657,0.054237288134667,0.013559322033935,0.000000000000007,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448267,-0.013559322033935,-0.000000000000006,2 -3574,3632,3634,3692,-0.517241379310396,0.067796610168599,-0.524137931034526,0.061016949151634,-0.524137931034532,0.074576271185564,-0.531034482758662,0.067796610168599,0.013559322033930,0.000000000000007,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448266,-0.013559322033930,-0.000000000000006,2 -3575,3633,3635,3693,-0.517241379310403,0.081355932202535,-0.524137931034532,0.074576271185564,-0.524137931034539,0.088135593219506,-0.531034482758669,0.081355932202535,0.013559322033941,0.000000000000007,0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448265,-0.013559322033941,-0.000000000000006,2 -3576,3634,3636,3694,-0.517241379310410,0.094915254236471,-0.524137931034539,0.088135593219506,-0.524137931034546,0.101694915253436,-0.531034482758675,0.094915254236471,0.013559322033930,0.000000000000007,-0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448264,-0.013559322033930,-0.000000000000006,2 -3577,3635,3637,3695,-0.517241379310418,0.108474576270409,-0.524137931034546,0.101694915253436,-0.524137931034553,0.115254237287382,-0.531034482758681,0.108474576270409,0.013559322033946,0.000000000000008,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448262,-0.013559322033946,-0.000000000000006,2 -3578,3636,3638,3696,-0.517241379310425,0.122033898304341,-0.524137931034553,0.115254237287382,-0.524137931034559,0.128813559321301,-0.531034482758687,0.122033898304341,0.013559322033919,0.000000000000007,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033919,-0.000000000000006,2 -3579,3637,3639,3697,-0.517241379310432,0.135593220338273,-0.524137931034559,0.128813559321301,-0.524137931034566,0.142372881355246,-0.531034482758693,0.135593220338273,0.013559322033945,0.000000000000007,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448260,-0.013559322033945,-0.000000000000006,2 -3580,3638,3640,3698,-0.517241379310439,0.149152542372213,-0.524137931034566,0.142372881355246,-0.524137931034573,0.155932203389179,-0.531034482758699,0.149152542372213,0.013559322033933,0.000000000000007,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448259,-0.013559322033933,-0.000000000000006,2 -3581,3639,3641,3699,-0.517241379310447,0.162711864406145,-0.524137931034573,0.155932203389179,-0.524137931034579,0.169491525423110,-0.531034482758705,0.162711864406145,0.013559322033931,0.000000000000007,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033931,-0.000000000000006,2 -3582,3640,3642,3700,-0.517241379310454,0.176271186440084,-0.524137931034579,0.169491525423110,-0.524137931034586,0.183050847457058,-0.531034482758711,0.176271186440084,0.013559322033947,0.000000000000007,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033947,-0.000000000000006,2 -3583,3641,3643,3701,-0.517241379310461,0.189830508474016,-0.524137931034586,0.183050847457058,-0.524137931034593,0.196610169490975,-0.531034482758717,0.189830508474016,0.013559322033917,0.000000000000007,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448255,-0.013559322033917,-0.000000000000006,2 -3584,3642,3644,3702,-0.517241379310468,0.203389830507945,-0.524137931034593,0.196610169490975,-0.524137931034599,0.210169491524915,-0.531034482758723,0.203389830507945,0.013559322033940,0.000000000000007,0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448254,-0.013559322033940,-0.000000000000006,2 -3585,3643,3645,3703,-0.517241379310476,0.216949152541877,-0.524137931034599,0.210169491524915,-0.524137931034606,0.223728813558839,-0.531034482758729,0.216949152541877,0.013559322033924,0.000000000000007,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448253,-0.013559322033924,-0.000000000000006,2 -3586,3644,3646,3704,-0.517241379310483,0.230508474575816,-0.524137931034606,0.223728813558839,-0.524137931034613,0.237288135592793,-0.531034482758736,0.230508474575816,0.013559322033954,0.000000000000007,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033954,-0.000000000000006,2 -3587,3645,3647,3705,-0.517241379310490,0.244067796609748,-0.524137931034613,0.237288135592793,-0.524137931034619,0.250847457626703,-0.531034482758742,0.244067796609748,0.013559322033910,0.000000000000007,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033910,-0.000000000000006,2 -3588,3646,3648,3706,-0.517241379310497,0.257627118643680,-0.524137931034619,0.250847457626703,-0.524137931034626,0.264406779660657,-0.531034482758748,0.257627118643680,0.013559322033954,0.000000000000007,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000006,2 -3589,3647,3649,3707,-0.517241379310505,0.271186440677618,-0.524137931034626,0.264406779660657,-0.524137931034633,0.277966101694579,-0.531034482758754,0.271186440677618,0.013559322033922,0.000000000000007,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448248,-0.013559322033922,-0.000000000000006,2 -3590,3648,3650,3708,-0.517241379310512,0.284745762711550,-0.524137931034633,0.277966101694579,-0.524137931034639,0.291525423728521,-0.531034482758760,0.284745762711550,0.013559322033942,0.000000000000007,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033942,-0.000000000000006,2 -3591,3649,3651,3709,-0.517241379310519,0.298305084745489,-0.524137931034639,0.291525423728521,-0.524137931034646,0.305084745762457,-0.531034482758766,0.298305084745489,0.013559322033936,0.000000000000007,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033936,-0.000000000000006,2 -3592,3650,3652,3710,-0.517241379310527,0.311864406779421,-0.524137931034646,0.305084745762457,-0.524137931034653,0.318644067796385,-0.531034482758772,0.311864406779421,0.013559322033928,0.000000000000007,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000006,2 -3593,3651,3653,3711,-0.517241379310534,0.325423728813361,-0.524137931034653,0.318644067796385,-0.524137931034659,0.332203389830336,-0.531034482758778,0.325423728813361,0.013559322033950,0.000000000000007,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448244,-0.013559322033951,-0.000000000000006,2 -3594,3652,3654,3712,-0.517241379310541,0.338983050847293,-0.524137931034659,0.332203389830336,-0.524137931034666,0.345762711864250,-0.531034482758784,0.338983050847293,0.013559322033914,0.000000000000007,-0.000000000000000,-0.013793103448244,0.000000000000000,0.013793103448242,-0.013559322033914,-0.000000000000006,2 -3595,3653,3655,3713,-0.517241379310548,0.352542372881227,-0.524137931034666,0.345762711864250,-0.524137931034673,0.359322033898204,-0.531034482758790,0.352542372881227,0.013559322033954,0.000000000000007,-0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000006,2 -3596,3654,3656,3714,-0.517241379310556,0.366101694915162,-0.524137931034673,0.359322033898204,-0.524137931034679,0.372881355932121,-0.531034482758796,0.366101694915162,0.013559322033918,0.000000000000007,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000006,2 -3597,3655,3657,3715,-0.517241379310563,0.379661016949094,-0.524137931034679,0.372881355932121,-0.524137931034686,0.386440677966068,-0.531034482758802,0.379661016949094,0.013559322033946,0.000000000000007,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000006,2 -1906,3598,3656,3716,-0.524137931034693,0.400000000000000,-0.517241379310570,0.393220338983034,-0.524137931034686,0.386440677966068,-0.531034482758808,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000007,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000006,2 -3599,3659,3717,4302,-0.531034482758456,-0.393220338983059,-0.537931034482606,-0.386440677966118,-0.544827586206752,-0.393220338983059,-0.537931034482601,-0.400000000000000,0.013559322033882,0.000000000000006,-0.000000000000000,0.013793103448296,-0.013559322033882,-0.000000000000005,0.000000000000000,-0.013793103448296,2 -3600,3658,3660,3718,-0.531034482758462,-0.379661016949189,-0.537931034482606,-0.386440677966118,-0.537931034482612,-0.372881355932259,-0.544827586206757,-0.379661016949189,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000005,2 -3601,3659,3661,3719,-0.531034482758468,-0.366101694915329,-0.537931034482612,-0.372881355932259,-0.537931034482618,-0.359322033898399,-0.544827586206762,-0.366101694915329,0.013559322033859,0.000000000000006,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000005,2 -3602,3660,3662,3720,-0.531034482758474,-0.352542372881469,-0.537931034482618,-0.359322033898399,-0.537931034482623,-0.345762711864539,-0.544827586206767,-0.352542372881469,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000005,2 -3603,3661,3663,3721,-0.531034482758480,-0.338983050847605,-0.537931034482623,-0.345762711864539,-0.537931034482629,-0.332203389830670,-0.544827586206772,-0.338983050847605,0.013559322033869,0.000000000000006,0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448292,-0.013559322033869,-0.000000000000005,2 -3604,3662,3664,3722,-0.531034482758486,-0.325423728813729,-0.537931034482629,-0.332203389830670,-0.537931034482634,-0.318644067796787,-0.544827586206777,-0.325423728813729,0.013559322033883,0.000000000000006,-0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033883,-0.000000000000005,2 -3605,3663,3665,3723,-0.531034482758492,-0.311864406779851,-0.537931034482634,-0.318644067796787,-0.537931034482640,-0.305084745762915,-0.544827586206782,-0.311864406779851,0.013559322033872,0.000000000000006,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448289,-0.013559322033872,-0.000000000000005,2 -3606,3664,3666,3724,-0.531034482758498,-0.298305084745975,-0.537931034482640,-0.305084745762915,-0.537931034482646,-0.291525423729035,-0.544827586206787,-0.298305084745975,0.013559322033879,0.000000000000006,0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448289,-0.013559322033880,-0.000000000000005,2 -3607,3665,3667,3725,-0.531034482758504,-0.284745762712106,-0.537931034482646,-0.291525423729035,-0.537931034482651,-0.277966101695176,-0.544827586206792,-0.284745762712105,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000005,2 -3608,3666,3668,3726,-0.531034482758511,-0.271186440678246,-0.537931034482651,-0.277966101695176,-0.537931034482657,-0.264406779661316,-0.544827586206797,-0.271186440678246,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448287,0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000005,2 -3609,3667,3669,3727,-0.531034482758517,-0.257627118644386,-0.537931034482657,-0.264406779661316,-0.537931034482662,-0.250847457627456,-0.544827586206803,-0.257627118644386,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000005,2 -3610,3668,3670,3728,-0.531034482758523,-0.244067796610526,-0.537931034482662,-0.250847457627456,-0.537931034482668,-0.237288135593597,-0.544827586206808,-0.244067796610526,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000005,2 -3611,3669,3671,3729,-0.531034482758529,-0.230508474576667,-0.537931034482668,-0.237288135593597,-0.537931034482674,-0.223728813559737,-0.544827586206813,-0.230508474576667,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000005,2 -3612,3670,3672,3730,-0.531034482758535,-0.216949152542807,-0.537931034482674,-0.223728813559737,-0.537931034482679,-0.210169491525877,-0.544827586206818,-0.216949152542807,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000005,2 -3613,3671,3673,3731,-0.531034482758541,-0.203389830508947,-0.537931034482679,-0.210169491525877,-0.537931034482685,-0.196610169492017,-0.544827586206823,-0.203389830508947,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000005,2 -3614,3672,3674,3732,-0.531034482758547,-0.189830508475088,-0.537931034482685,-0.196610169492017,-0.537931034482690,-0.183050847458158,-0.544827586206828,-0.189830508475088,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000005,2 -3615,3673,3675,3733,-0.531034482758553,-0.176271186441228,-0.537931034482690,-0.183050847458158,-0.537931034482696,-0.169491525424298,-0.544827586206833,-0.176271186441228,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000005,2 -3616,3674,3676,3734,-0.531034482758559,-0.162711864407368,-0.537931034482696,-0.169491525424298,-0.537931034482702,-0.155932203390438,-0.544827586206838,-0.162711864407368,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000005,2 -3617,3675,3677,3735,-0.531034482758565,-0.149152542373509,-0.537931034482702,-0.155932203390438,-0.537931034482707,-0.142372881356579,-0.544827586206843,-0.149152542373509,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000005,2 -3618,3676,3678,3736,-0.531034482758571,-0.135593220339649,-0.537931034482707,-0.142372881356579,-0.537931034482713,-0.128813559322719,-0.544827586206848,-0.135593220339649,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000005,2 -3619,3677,3679,3737,-0.531034482758578,-0.122033898305789,-0.537931034482713,-0.128813559322719,-0.537931034482718,-0.115254237288859,-0.544827586206853,-0.122033898305789,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448276,-0.013559322033859,-0.000000000000005,2 -3620,3678,3680,3738,-0.531034482758584,-0.108474576271933,-0.537931034482718,-0.115254237288859,-0.537931034482724,-0.101694915255008,-0.544827586206859,-0.108474576271933,0.013559322033852,0.000000000000006,0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448275,-0.013559322033852,-0.000000000000005,2 -3621,3679,3681,3739,-0.531034482758590,-0.094915254238085,-0.537931034482724,-0.101694915255008,-0.537931034482729,-0.088135593221162,-0.544827586206864,-0.094915254238085,0.013559322033846,0.000000000000006,0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448273,-0.013559322033846,-0.000000000000005,2 -3622,3680,3682,3740,-0.531034482758596,-0.081355932204232,-0.537931034482729,-0.088135593221162,-0.537931034482735,-0.074576271187302,-0.544827586206869,-0.081355932204232,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000005,2 -3623,3681,3683,3741,-0.531034482758602,-0.067796610170372,-0.537931034482735,-0.074576271187302,-0.537931034482741,-0.061016949153442,-0.544827586206874,-0.067796610170372,0.013559322033860,0.000000000000006,-0.000000000000000,-0.013793103448272,-0.000000000000000,0.013793103448271,-0.013559322033860,-0.000000000000005,2 -3624,3682,3684,3742,-0.531034482758608,-0.054237288136513,-0.537931034482741,-0.061016949153442,-0.537931034482746,-0.047457627119583,-0.544827586206879,-0.054237288136513,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448271,-0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000005,2 -3625,3683,3685,3743,-0.531034482758614,-0.040677966102653,-0.537931034482746,-0.047457627119583,-0.537931034482752,-0.033898305085723,-0.544827586206884,-0.040677966102653,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000005,2 -3626,3684,3686,3744,-0.531034482758620,-0.027118644068793,-0.537931034482752,-0.033898305085723,-0.537931034482757,-0.020338983051863,-0.544827586206889,-0.027118644068793,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448269,-0.013559322033860,-0.000000000000005,2 -3627,3685,3687,3745,-0.531034482758626,-0.013559322034934,-0.537931034482757,-0.020338983051863,-0.537931034482763,-0.006779661018004,-0.544827586206894,-0.013559322034934,0.013559322033860,0.000000000000006,0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448268,-0.013559322033860,-0.000000000000005,2 -3628,3686,3688,3746,-0.531034482758632,-0.000000000001056,-0.537931034482763,-0.006779661018004,-0.537931034482768,0.006779661015891,-0.544827586206899,-0.000000000001056,0.013559322033895,0.000000000000006,-0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448267,-0.013559322033895,-0.000000000000005,2 -3629,3687,3689,3747,-0.531034482758638,0.013559322032862,-0.537931034482768,0.006779661015891,-0.537931034482774,0.020338983049833,-0.544827586206904,0.013559322032862,0.013559322033941,0.000000000000006,-0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448266,-0.013559322033941,-0.000000000000005,2 -3630,3688,3690,3748,-0.531034482758644,0.027118644066798,-0.537931034482774,0.020338983049833,-0.537931034482780,0.033898305083763,-0.544827586206909,0.027118644066798,0.013559322033930,0.000000000000006,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448265,-0.013559322033930,-0.000000000000005,2 -3631,3689,3691,3749,-0.531034482758650,0.040677966100731,-0.537931034482780,0.033898305083763,-0.537931034482785,0.047457627117699,-0.544827586206914,0.040677966100731,0.013559322033937,0.000000000000006,0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448263,-0.013559322033937,-0.000000000000005,2 -3632,3690,3692,3750,-0.531034482758657,0.054237288134667,-0.537931034482785,0.047457627117699,-0.537931034482791,0.061016949151634,-0.544827586206920,0.054237288134667,0.013559322033935,0.000000000000006,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448263,-0.013559322033935,-0.000000000000005,2 -3633,3691,3693,3751,-0.531034482758662,0.067796610168599,-0.537931034482791,0.061016949151634,-0.537931034482796,0.074576271185564,-0.544827586206925,0.067796610168599,0.013559322033930,0.000000000000006,-0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033930,-0.000000000000005,2 -3634,3692,3694,3752,-0.531034482758669,0.081355932202535,-0.537931034482796,0.074576271185564,-0.537931034482802,0.088135593219506,-0.544827586206930,0.081355932202535,0.013559322033941,0.000000000000006,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033941,-0.000000000000005,2 -3635,3693,3695,3753,-0.531034482758675,0.094915254236471,-0.537931034482802,0.088135593219506,-0.537931034482807,0.101694915253436,-0.544827586206935,0.094915254236471,0.013559322033930,0.000000000000006,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448260,-0.013559322033930,-0.000000000000005,2 -3636,3694,3696,3754,-0.531034482758681,0.108474576270409,-0.537931034482807,0.101694915253436,-0.537931034482813,0.115254237287382,-0.544827586206940,0.108474576270409,0.013559322033946,0.000000000000006,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448259,-0.013559322033946,-0.000000000000005,2 -3637,3695,3697,3755,-0.531034482758687,0.122033898304341,-0.537931034482813,0.115254237287382,-0.537931034482819,0.128813559321301,-0.544827586206945,0.122033898304341,0.013559322033919,0.000000000000006,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033919,-0.000000000000005,2 -3638,3696,3698,3756,-0.531034482758693,0.135593220338273,-0.537931034482819,0.128813559321301,-0.537931034482824,0.142372881355246,-0.544827586206950,0.135593220338273,0.013559322033945,0.000000000000006,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448256,-0.013559322033945,-0.000000000000005,2 -3639,3697,3699,3757,-0.531034482758699,0.149152542372213,-0.537931034482824,0.142372881355246,-0.537931034482830,0.155932203389179,-0.544827586206955,0.149152542372213,0.013559322033933,0.000000000000006,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033933,-0.000000000000005,2 -3640,3698,3700,3758,-0.531034482758705,0.162711864406145,-0.537931034482830,0.155932203389179,-0.537931034482835,0.169491525423110,-0.544827586206960,0.162711864406145,0.013559322033931,0.000000000000006,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448255,-0.013559322033931,-0.000000000000005,2 -3641,3699,3701,3759,-0.531034482758711,0.176271186440084,-0.537931034482835,0.169491525423110,-0.537931034482841,0.183050847457058,-0.544827586206965,0.176271186440084,0.013559322033947,0.000000000000006,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448253,-0.013559322033947,-0.000000000000005,2 -3642,3700,3702,3760,-0.531034482758717,0.189830508474016,-0.537931034482841,0.183050847457058,-0.537931034482847,0.196610169490975,-0.544827586206970,0.189830508474016,0.013559322033917,0.000000000000006,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448253,-0.013559322033917,-0.000000000000005,2 -3643,3701,3703,3761,-0.531034482758723,0.203389830507945,-0.537931034482847,0.196610169490975,-0.537931034482852,0.210169491524915,-0.544827586206976,0.203389830507945,0.013559322033940,0.000000000000006,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033940,-0.000000000000005,2 -3644,3702,3704,3762,-0.531034482758729,0.216949152541877,-0.537931034482852,0.210169491524915,-0.537931034482858,0.223728813558839,-0.544827586206981,0.216949152541877,0.013559322033924,0.000000000000006,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448250,-0.013559322033924,-0.000000000000005,2 -3645,3703,3705,3763,-0.531034482758736,0.230508474575816,-0.537931034482858,0.223728813558839,-0.537931034482863,0.237288135592793,-0.544827586206986,0.230508474575816,0.013559322033954,0.000000000000006,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448249,-0.013559322033954,-0.000000000000005,2 -3646,3704,3706,3764,-0.531034482758742,0.244067796609748,-0.537931034482863,0.237288135592793,-0.537931034482869,0.250847457626703,-0.544827586206991,0.244067796609748,0.013559322033910,0.000000000000006,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448249,-0.013559322033910,-0.000000000000005,2 -3647,3705,3707,3765,-0.531034482758748,0.257627118643680,-0.537931034482869,0.250847457626703,-0.537931034482874,0.264406779660657,-0.544827586206996,0.257627118643680,0.013559322033954,0.000000000000006,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448248,-0.013559322033954,-0.000000000000005,2 -3648,3706,3708,3766,-0.531034482758754,0.271186440677618,-0.537931034482874,0.264406779660657,-0.537931034482880,0.277966101694579,-0.544827586207001,0.271186440677618,0.013559322033922,0.000000000000006,0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033922,-0.000000000000005,2 -3649,3707,3709,3767,-0.531034482758760,0.284745762711550,-0.537931034482880,0.277966101694579,-0.537931034482886,0.291525423728521,-0.544827586207006,0.284745762711550,0.013559322033942,0.000000000000006,0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448246,-0.013559322033943,-0.000000000000005,2 -3650,3708,3710,3768,-0.531034482758766,0.298305084745489,-0.537931034482886,0.291525423728521,-0.537931034482891,0.305084745762457,-0.544827586207011,0.298305084745489,0.013559322033936,0.000000000000006,-0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033936,-0.000000000000005,2 -3651,3709,3711,3769,-0.531034482758772,0.311864406779421,-0.537931034482891,0.305084745762457,-0.537931034482897,0.318644067796385,-0.544827586207016,0.311864406779421,0.013559322033928,0.000000000000006,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033928,-0.000000000000005,2 -3652,3710,3712,3770,-0.531034482758778,0.325423728813361,-0.537931034482897,0.318644067796385,-0.537931034482903,0.332203389830336,-0.544827586207021,0.325423728813361,0.013559322033951,0.000000000000006,0.000000000000000,-0.013793103448244,0.000000000000000,0.013793103448243,-0.013559322033951,-0.000000000000005,2 -3653,3711,3713,3771,-0.531034482758784,0.338983050847293,-0.537931034482903,0.332203389830336,-0.537931034482908,0.345762711864250,-0.544827586207026,0.338983050847293,0.013559322033914,0.000000000000006,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448241,-0.013559322033914,-0.000000000000005,2 -3654,3712,3714,3772,-0.531034482758790,0.352542372881227,-0.537931034482908,0.345762711864250,-0.537931034482914,0.359322033898203,-0.544827586207031,0.352542372881227,0.013559322033954,0.000000000000006,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000005,2 -3655,3713,3715,3773,-0.531034482758796,0.366101694915162,-0.537931034482914,0.359322033898203,-0.537931034482919,0.372881355932121,-0.544827586207037,0.366101694915162,0.013559322033918,0.000000000000006,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000005,2 -3656,3714,3716,3774,-0.531034482758802,0.379661016949094,-0.537931034482919,0.372881355932121,-0.537931034482925,0.386440677966068,-0.544827586207042,0.379661016949095,0.013559322033946,0.000000000000006,0.000000000000000,-0.013793103448240,0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000005,2 -1892,3657,3715,3775,-0.537931034482930,0.400000000000000,-0.531034482758808,0.393220338983034,-0.537931034482925,0.386440677966068,-0.544827586207047,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000006,-0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000005,2 -3658,3718,3776,4316,-0.544827586206752,-0.393220338983059,-0.551724137930904,-0.386440677966118,-0.558620689655053,-0.393220338983059,-0.551724137930900,-0.400000000000000,0.013559322033882,0.000000000000005,0.000000000000000,0.013793103448300,-0.013559322033882,-0.000000000000004,0.000000000000000,-0.013793103448302,2 -3659,3717,3719,3777,-0.544827586206757,-0.379661016949189,-0.551724137930904,-0.386440677966118,-0.551724137930909,-0.372881355932259,-0.558620689655057,-0.379661016949189,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448299,-0.013559322033860,-0.000000000000004,2 -3660,3718,3720,3778,-0.544827586206762,-0.366101694915329,-0.551724137930909,-0.372881355932259,-0.551724137930914,-0.359322033898399,-0.558620689655061,-0.366101694915329,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000004,2 -3661,3719,3721,3779,-0.544827586206767,-0.352542372881469,-0.551724137930914,-0.359322033898399,-0.551724137930918,-0.345762711864539,-0.558620689655065,-0.352542372881469,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000004,2 -3662,3720,3722,3780,-0.544827586206772,-0.338983050847605,-0.551724137930918,-0.345762711864539,-0.551724137930923,-0.332203389830670,-0.558620689655069,-0.338983050847605,0.013559322033869,0.000000000000005,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448296,-0.013559322033869,-0.000000000000004,2 -3663,3721,3723,3781,-0.544827586206777,-0.325423728813729,-0.551724137930923,-0.332203389830670,-0.551724137930927,-0.318644067796787,-0.558620689655073,-0.325423728813729,0.013559322033883,0.000000000000005,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448295,-0.013559322033883,-0.000000000000004,2 -3664,3722,3724,3782,-0.544827586206782,-0.311864406779851,-0.551724137930927,-0.318644067796787,-0.551724137930932,-0.305084745762915,-0.558620689655077,-0.311864406779851,0.013559322033872,0.000000000000005,0.000000000000000,-0.013793103448295,0.000000000000000,0.013793103448294,-0.013559322033872,-0.000000000000004,2 -3665,3723,3725,3783,-0.544827586206787,-0.298305084745975,-0.551724137930932,-0.305084745762915,-0.551724137930937,-0.291525423729035,-0.558620689655081,-0.298305084745975,0.013559322033880,0.000000000000005,-0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448293,-0.013559322033879,-0.000000000000004,2 -3666,3724,3726,3784,-0.544827586206792,-0.284745762712105,-0.551724137930937,-0.291525423729035,-0.551724137930941,-0.277966101695176,-0.558620689655085,-0.284745762712106,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000004,2 -3667,3725,3727,3785,-0.544827586206797,-0.271186440678246,-0.551724137930941,-0.277966101695176,-0.551724137930946,-0.264406779661316,-0.558620689655089,-0.271186440678246,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000004,2 -3668,3726,3728,3786,-0.544827586206803,-0.257627118644386,-0.551724137930946,-0.264406779661316,-0.551724137930950,-0.250847457627456,-0.558620689655093,-0.257627118644386,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000004,2 -3669,3727,3729,3787,-0.544827586206808,-0.244067796610526,-0.551724137930950,-0.250847457627456,-0.551724137930954,-0.237288135593597,-0.558620689655097,-0.244067796610526,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448289,-0.013559322033859,-0.000000000000004,2 -3670,3728,3730,3788,-0.544827586206813,-0.230508474576667,-0.551724137930954,-0.237288135593597,-0.551724137930959,-0.223728813559737,-0.558620689655101,-0.230508474576667,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448289,0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000004,2 -3671,3729,3731,3789,-0.544827586206818,-0.216949152542807,-0.551724137930959,-0.223728813559737,-0.551724137930964,-0.210169491525877,-0.558620689655105,-0.216949152542807,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000004,2 -3672,3730,3732,3790,-0.544827586206823,-0.203389830508947,-0.551724137930964,-0.210169491525877,-0.551724137930968,-0.196610169492017,-0.558620689655109,-0.203389830508947,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000004,2 -3673,3731,3733,3791,-0.544827586206828,-0.189830508475088,-0.551724137930968,-0.196610169492017,-0.551724137930973,-0.183050847458158,-0.558620689655113,-0.189830508475088,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000004,2 -3674,3732,3734,3792,-0.544827586206833,-0.176271186441228,-0.551724137930973,-0.183050847458158,-0.551724137930977,-0.169491525424298,-0.558620689655117,-0.176271186441228,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000004,2 -3675,3733,3735,3793,-0.544827586206838,-0.162711864407368,-0.551724137930977,-0.169491525424298,-0.551724137930982,-0.155932203390438,-0.558620689655121,-0.162711864407368,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448282,-0.013559322033860,-0.000000000000004,2 -3676,3734,3736,3794,-0.544827586206843,-0.149152542373509,-0.551724137930982,-0.155932203390438,-0.551724137930986,-0.142372881356579,-0.558620689655125,-0.149152542373509,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448282,-0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000004,2 -3677,3735,3737,3795,-0.544827586206848,-0.135593220339649,-0.551724137930986,-0.142372881356579,-0.551724137930991,-0.128813559322719,-0.558620689655129,-0.135593220339649,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448281,-0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000004,2 -3678,3736,3738,3796,-0.544827586206853,-0.122033898305789,-0.551724137930991,-0.128813559322719,-0.551724137930995,-0.115254237288859,-0.558620689655133,-0.122033898305789,0.013559322033859,0.000000000000005,0.000000000000000,-0.013793103448280,0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000004,2 -3679,3737,3739,3797,-0.544827586206859,-0.108474576271933,-0.551724137930995,-0.115254237288859,-0.551724137931000,-0.101694915255008,-0.558620689655137,-0.108474576271933,0.013559322033852,0.000000000000005,-0.000000000000000,-0.013793103448279,0.000000000000000,0.013793103448278,-0.013559322033852,-0.000000000000004,2 -3680,3738,3740,3798,-0.544827586206864,-0.094915254238085,-0.551724137931000,-0.101694915255008,-0.551724137931004,-0.088135593221162,-0.558620689655141,-0.094915254238085,0.013559322033846,0.000000000000005,-0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448277,-0.013559322033846,-0.000000000000004,2 -3681,3739,3741,3799,-0.544827586206869,-0.081355932204232,-0.551724137931004,-0.088135593221162,-0.551724137931009,-0.074576271187302,-0.558620689655145,-0.081355932204232,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448276,-0.013559322033860,-0.000000000000004,2 -3682,3740,3742,3800,-0.544827586206874,-0.067796610170372,-0.551724137931009,-0.074576271187302,-0.551724137931013,-0.061016949153442,-0.558620689655149,-0.067796610170372,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000004,2 -3683,3741,3743,3801,-0.544827586206879,-0.054237288136513,-0.551724137931013,-0.061016949153442,-0.551724137931018,-0.047457627119583,-0.558620689655153,-0.054237288136513,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448273,-0.013559322033860,-0.000000000000004,2 -3684,3742,3744,3802,-0.544827586206884,-0.040677966102653,-0.551724137931018,-0.047457627119583,-0.551724137931022,-0.033898305085723,-0.558620689655157,-0.040677966102653,0.013559322033860,0.000000000000005,0.000000000000000,-0.013793103448273,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000004,2 -3685,3743,3745,3803,-0.544827586206889,-0.027118644068793,-0.551724137931022,-0.033898305085723,-0.551724137931027,-0.020338983051863,-0.558620689655161,-0.027118644068793,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448272,-0.013559322033860,-0.000000000000004,2 -3686,3744,3746,3804,-0.544827586206894,-0.013559322034934,-0.551724137931027,-0.020338983051863,-0.551724137931032,-0.006779661018004,-0.558620689655165,-0.013559322034934,0.013559322033860,0.000000000000005,-0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448270,-0.013559322033860,-0.000000000000004,2 -3687,3745,3747,3805,-0.544827586206899,-0.000000000001056,-0.551724137931032,-0.006779661018004,-0.551724137931036,0.006779661015891,-0.558620689655169,-0.000000000001056,0.013559322033895,0.000000000000005,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033895,-0.000000000000004,2 -3688,3746,3748,3806,-0.544827586206904,0.013559322032862,-0.551724137931036,0.006779661015891,-0.551724137931041,0.020338983049833,-0.558620689655173,0.013559322032862,0.013559322033941,0.000000000000005,0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033941,-0.000000000000004,2 -3689,3747,3749,3807,-0.544827586206909,0.027118644066798,-0.551724137931041,0.020338983049833,-0.551724137931045,0.033898305083763,-0.558620689655177,0.027118644066798,0.013559322033930,0.000000000000005,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448267,-0.013559322033930,-0.000000000000004,2 -3690,3748,3750,3808,-0.544827586206914,0.040677966100731,-0.551724137931045,0.033898305083763,-0.551724137931050,0.047457627117699,-0.558620689655181,0.040677966100731,0.013559322033937,0.000000000000005,0.000000000000000,-0.013793103448267,-0.000000000000000,0.013793103448266,-0.013559322033937,-0.000000000000004,2 -3691,3749,3751,3809,-0.544827586206920,0.054237288134667,-0.551724137931050,0.047457627117699,-0.551724137931055,0.061016949151634,-0.558620689655185,0.054237288134667,0.013559322033935,0.000000000000005,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448265,-0.013559322033935,-0.000000000000004,2 -3692,3750,3752,3810,-0.544827586206925,0.067796610168599,-0.551724137931055,0.061016949151634,-0.551724137931059,0.074576271185564,-0.558620689655189,0.067796610168599,0.013559322033930,0.000000000000005,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448264,-0.013559322033930,-0.000000000000004,2 -3693,3751,3753,3811,-0.544827586206930,0.081355932202535,-0.551724137931059,0.074576271185564,-0.551724137931064,0.088135593219506,-0.558620689655193,0.081355932202535,0.013559322033941,0.000000000000005,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448262,-0.013559322033941,-0.000000000000004,2 -3694,3752,3754,3812,-0.544827586206935,0.094915254236471,-0.551724137931064,0.088135593219506,-0.551724137931068,0.101694915253436,-0.558620689655197,0.094915254236471,0.013559322033930,0.000000000000005,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448262,-0.013559322033930,-0.000000000000004,2 -3695,3753,3755,3813,-0.544827586206940,0.108474576270409,-0.551724137931068,0.101694915253436,-0.551724137931073,0.115254237287382,-0.558620689655201,0.108474576270409,0.013559322033946,0.000000000000005,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033946,-0.000000000000004,2 -3696,3754,3756,3814,-0.544827586206945,0.122033898304341,-0.551724137931073,0.115254237287382,-0.551724137931077,0.128813559321301,-0.558620689655205,0.122033898304341,0.013559322033919,0.000000000000005,0.000000000000000,-0.013793103448261,-0.000000000000000,0.013793103448259,-0.013559322033919,-0.000000000000004,2 -3697,3755,3757,3815,-0.544827586206950,0.135593220338273,-0.551724137931077,0.128813559321301,-0.551724137931082,0.142372881355246,-0.558620689655209,0.135593220338273,0.013559322033945,0.000000000000005,0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448258,-0.013559322033945,-0.000000000000004,2 -3698,3756,3758,3816,-0.544827586206955,0.149152542372213,-0.551724137931082,0.142372881355246,-0.551724137931086,0.155932203389179,-0.558620689655213,0.149152542372213,0.013559322033933,0.000000000000005,-0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033933,-0.000000000000004,2 -3699,3757,3759,3817,-0.544827586206960,0.162711864406145,-0.551724137931086,0.155932203389179,-0.551724137931091,0.169491525423110,-0.558620689655217,0.162711864406145,0.013559322033931,0.000000000000005,0.000000000000000,-0.013793103448257,-0.000000000000000,0.013793103448256,-0.013559322033931,-0.000000000000004,2 -3700,3758,3760,3818,-0.544827586206965,0.176271186440084,-0.551724137931091,0.169491525423110,-0.551724137931095,0.183050847457058,-0.558620689655221,0.176271186440084,0.013559322033947,0.000000000000005,0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033948,-0.000000000000004,2 -3701,3759,3761,3819,-0.544827586206970,0.189830508474016,-0.551724137931095,0.183050847457058,-0.551724137931100,0.196610169490975,-0.558620689655225,0.189830508474016,0.013559322033917,0.000000000000005,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448254,-0.013559322033917,-0.000000000000004,2 -3702,3760,3762,3820,-0.544827586206976,0.203389830507945,-0.551724137931100,0.196610169490975,-0.551724137931105,0.210169491524915,-0.558620689655229,0.203389830507945,0.013559322033940,0.000000000000005,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448253,-0.013559322033940,-0.000000000000004,2 -3703,3761,3763,3821,-0.544827586206981,0.216949152541877,-0.551724137931105,0.210169491524915,-0.551724137931109,0.223728813558839,-0.558620689655233,0.216949152541877,0.013559322033924,0.000000000000005,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033924,-0.000000000000004,2 -3704,3762,3764,3822,-0.544827586206986,0.230508474575816,-0.551724137931109,0.223728813558839,-0.551724137931114,0.237288135592793,-0.558620689655237,0.230508474575816,0.013559322033954,0.000000000000005,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033954,-0.000000000000004,2 -3705,3763,3765,3823,-0.544827586206991,0.244067796609748,-0.551724137931114,0.237288135592793,-0.551724137931118,0.250847457626703,-0.558620689655241,0.244067796609748,0.013559322033910,0.000000000000005,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033910,-0.000000000000004,2 -3706,3764,3766,3824,-0.544827586206996,0.257627118643680,-0.551724137931118,0.250847457626703,-0.551724137931123,0.264406779660657,-0.558620689655245,0.257627118643680,0.013559322033954,0.000000000000005,0.000000000000000,-0.013793103448250,-0.000000000000000,0.013793103448249,-0.013559322033954,-0.000000000000004,2 -3707,3765,3767,3825,-0.544827586207001,0.271186440677618,-0.551724137931123,0.264406779660657,-0.551724137931127,0.277966101694579,-0.558620689655249,0.271186440677618,0.013559322033922,0.000000000000005,0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448247,-0.013559322033922,-0.000000000000004,2 -3708,3766,3768,3826,-0.544827586207006,0.284745762711550,-0.551724137931127,0.277966101694579,-0.551724137931132,0.291525423728521,-0.558620689655253,0.284745762711550,0.013559322033943,0.000000000000005,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033943,-0.000000000000004,2 -3709,3767,3769,3827,-0.544827586207011,0.298305084745489,-0.551724137931132,0.291525423728521,-0.551724137931136,0.305084745762457,-0.558620689655257,0.298305084745489,0.013559322033936,0.000000000000005,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033936,-0.000000000000004,2 -3710,3768,3770,3828,-0.544827586207016,0.311864406779421,-0.551724137931136,0.305084745762457,-0.551724137931141,0.318644067796385,-0.558620689655261,0.311864406779421,0.013559322033928,0.000000000000005,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448244,-0.013559322033928,-0.000000000000004,2 -3711,3769,3771,3829,-0.544827586207021,0.325423728813361,-0.551724137931141,0.318644067796385,-0.551724137931145,0.332203389830336,-0.558620689655265,0.325423728813361,0.013559322033951,0.000000000000005,-0.000000000000000,-0.013793103448244,-0.000000000000000,0.013793103448243,-0.013559322033950,-0.000000000000004,2 -3712,3770,3772,3830,-0.544827586207026,0.338983050847293,-0.551724137931145,0.332203389830336,-0.551724137931150,0.345762711864250,-0.558620689655269,0.338983050847293,0.013559322033914,0.000000000000005,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448242,-0.013559322033914,-0.000000000000004,2 -3713,3771,3773,3831,-0.544827586207031,0.352542372881227,-0.551724137931150,0.345762711864250,-0.551724137931154,0.359322033898204,-0.558620689655273,0.352542372881227,0.013559322033954,0.000000000000005,0.000000000000000,-0.013793103448242,0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000004,2 -3714,3772,3774,3832,-0.544827586207037,0.366101694915162,-0.551724137931154,0.359322033898204,-0.551724137931159,0.372881355932121,-0.558620689655277,0.366101694915162,0.013559322033918,0.000000000000005,-0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000004,2 -3715,3773,3775,3833,-0.544827586207042,0.379661016949095,-0.551724137931159,0.372881355932121,-0.551724137931163,0.386440677966068,-0.558620689655281,0.379661016949094,0.013559322033946,0.000000000000005,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000004,2 -1878,3716,3774,3834,-0.551724137931168,0.400000000000000,-0.544827586207047,0.393220338983034,-0.551724137931163,0.386440677966068,-0.558620689655285,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000005,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000004,2 -3717,3777,3835,4330,-0.558620689655053,-0.393220338983059,-0.565517241379209,-0.386440677966118,-0.572413793103361,-0.393220338983059,-0.565517241379205,-0.400000000000000,0.013559322033882,0.000000000000004,-0.000000000000000,0.013793103448308,-0.013559322033882,-0.000000000000003,0.000000000000000,-0.013793103448309,2 -3718,3776,3778,3836,-0.558620689655057,-0.379661016949189,-0.565517241379209,-0.386440677966118,-0.565517241379212,-0.372881355932259,-0.572413793103364,-0.379661016949189,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448307,-0.013559322033860,-0.000000000000003,2 -3719,3777,3779,3837,-0.558620689655061,-0.366101694915329,-0.565517241379212,-0.372881355932259,-0.565517241379216,-0.359322033898399,-0.572413793103367,-0.366101694915329,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448307,-0.000000000000000,0.013793103448306,-0.013559322033860,-0.000000000000003,2 -3720,3778,3780,3838,-0.558620689655065,-0.352542372881469,-0.565517241379216,-0.359322033898399,-0.565517241379219,-0.345762711864539,-0.572413793103370,-0.352542372881469,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448304,-0.013559322033860,-0.000000000000003,2 -3721,3779,3781,3839,-0.558620689655069,-0.338983050847605,-0.565517241379219,-0.345762711864539,-0.565517241379222,-0.332203389830670,-0.572413793103372,-0.338983050847605,0.013559322033869,0.000000000000004,0.000000000000000,-0.013793103448304,0.000000000000000,0.013793103448303,-0.013559322033869,-0.000000000000003,2 -3722,3780,3782,3840,-0.558620689655073,-0.325423728813729,-0.565517241379222,-0.332203389830670,-0.565517241379226,-0.318644067796787,-0.572413793103375,-0.325423728813729,0.013559322033883,0.000000000000004,-0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,-0.013559322033883,-0.000000000000003,2 -3723,3781,3783,3841,-0.558620689655077,-0.311864406779851,-0.565517241379226,-0.318644067796787,-0.565517241379229,-0.305084745762915,-0.572413793103378,-0.311864406779851,0.013559322033872,0.000000000000004,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,-0.013559322033872,-0.000000000000003,2 -3724,3782,3784,3842,-0.558620689655081,-0.298305084745975,-0.565517241379229,-0.305084745762915,-0.565517241379233,-0.291525423729035,-0.572413793103381,-0.298305084745975,0.013559322033879,0.000000000000004,0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448299,-0.013559322033880,-0.000000000000003,2 -3725,3783,3785,3843,-0.558620689655085,-0.284745762712106,-0.565517241379233,-0.291525423729035,-0.565517241379236,-0.277966101695176,-0.572413793103384,-0.284745762712105,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000003,2 -3726,3784,3786,3844,-0.558620689655089,-0.271186440678246,-0.565517241379236,-0.277966101695176,-0.565517241379240,-0.264406779661316,-0.572413793103386,-0.271186440678246,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448297,-0.013559322033860,-0.000000000000003,2 -3727,3785,3787,3845,-0.558620689655093,-0.257627118644386,-0.565517241379240,-0.264406779661316,-0.565517241379243,-0.250847457627456,-0.572413793103389,-0.257627118644386,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000003,2 -3728,3786,3788,3846,-0.558620689655097,-0.244067796610526,-0.565517241379243,-0.250847457627456,-0.565517241379246,-0.237288135593597,-0.572413793103392,-0.244067796610526,0.013559322033859,0.000000000000004,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000003,2 -3729,3787,3789,3847,-0.558620689655101,-0.230508474576667,-0.565517241379246,-0.237288135593597,-0.565517241379250,-0.223728813559737,-0.572413793103395,-0.230508474576667,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000003,2 -3730,3788,3790,3848,-0.558620689655105,-0.216949152542807,-0.565517241379250,-0.223728813559737,-0.565517241379253,-0.210169491525877,-0.572413793103398,-0.216949152542807,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000003,2 -3731,3789,3791,3849,-0.558620689655109,-0.203389830508947,-0.565517241379253,-0.210169491525877,-0.565517241379256,-0.196610169492017,-0.572413793103400,-0.203389830508947,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000003,2 -3732,3790,3792,3850,-0.558620689655113,-0.189830508475088,-0.565517241379256,-0.196610169492017,-0.565517241379260,-0.183050847458158,-0.572413793103403,-0.189830508475087,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448291,0.000000000000000,0.013793103448290,-0.013559322033860,-0.000000000000003,2 -3733,3791,3793,3851,-0.558620689655117,-0.176271186441228,-0.565517241379260,-0.183050847458158,-0.565517241379263,-0.169491525424298,-0.572413793103406,-0.176271186441228,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448290,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000003,2 -3734,3792,3794,3852,-0.558620689655121,-0.162711864407368,-0.565517241379263,-0.169491525424298,-0.565517241379266,-0.155932203390438,-0.572413793103409,-0.162711864407368,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448287,-0.013559322033860,-0.000000000000003,2 -3735,3793,3795,3853,-0.558620689655125,-0.149152542373509,-0.565517241379266,-0.155932203390438,-0.565517241379270,-0.142372881356579,-0.572413793103412,-0.149152542373509,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448286,-0.013559322033860,-0.000000000000003,2 -3736,3794,3796,3854,-0.558620689655129,-0.135593220339649,-0.565517241379270,-0.142372881356579,-0.565517241379273,-0.128813559322719,-0.572413793103414,-0.135593220339649,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000003,2 -3737,3795,3797,3855,-0.558620689655133,-0.122033898305789,-0.565517241379273,-0.128813559322719,-0.565517241379277,-0.115254237288859,-0.572413793103417,-0.122033898305789,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000003,2 -3738,3796,3798,3856,-0.558620689655137,-0.108474576271933,-0.565517241379277,-0.115254237288859,-0.565517241379280,-0.101694915255007,-0.572413793103420,-0.108474576271933,0.013559322033852,0.000000000000004,0.000000000000000,-0.013793103448284,-0.000000000000000,0.013793103448283,-0.013559322033852,-0.000000000000003,2 -3739,3797,3799,3857,-0.558620689655141,-0.094915254238085,-0.565517241379280,-0.101694915255007,-0.565517241379283,-0.088135593221162,-0.572413793103423,-0.094915254238085,0.013559322033846,0.000000000000004,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448282,-0.013559322033846,-0.000000000000003,2 -3740,3798,3800,3858,-0.558620689655145,-0.081355932204232,-0.565517241379283,-0.088135593221162,-0.565517241379287,-0.074576271187302,-0.572413793103426,-0.081355932204232,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448282,0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000003,2 -3741,3799,3801,3859,-0.558620689655149,-0.067796610170372,-0.565517241379287,-0.074576271187302,-0.565517241379290,-0.061016949153442,-0.572413793103428,-0.067796610170372,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000003,2 -3742,3800,3802,3860,-0.558620689655153,-0.054237288136513,-0.565517241379290,-0.061016949153442,-0.565517241379294,-0.047457627119583,-0.572413793103431,-0.054237288136513,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448278,-0.013559322033860,-0.000000000000003,2 -3743,3801,3803,3861,-0.558620689655157,-0.040677966102653,-0.565517241379294,-0.047457627119583,-0.565517241379297,-0.033898305085723,-0.572413793103434,-0.040677966102653,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448278,-0.000000000000000,0.013793103448277,-0.013559322033860,-0.000000000000003,2 -3744,3802,3804,3862,-0.558620689655161,-0.027118644068793,-0.565517241379297,-0.033898305085723,-0.565517241379301,-0.020338983051863,-0.572413793103437,-0.027118644068793,0.013559322033860,0.000000000000004,0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448275,-0.013559322033860,-0.000000000000003,2 -3745,3803,3805,3863,-0.558620689655165,-0.013559322034934,-0.565517241379301,-0.020338983051863,-0.565517241379304,-0.006779661018004,-0.572413793103439,-0.013559322034934,0.013559322033860,0.000000000000004,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448274,-0.013559322033860,-0.000000000000003,2 -3746,3804,3806,3864,-0.558620689655169,-0.000000000001056,-0.565517241379304,-0.006779661018004,-0.565517241379307,0.006779661015891,-0.572413793103442,-0.000000000001056,0.013559322033895,0.000000000000004,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448273,-0.013559322033895,-0.000000000000003,2 -3747,3805,3807,3865,-0.558620689655173,0.013559322032862,-0.565517241379307,0.006779661015891,-0.565517241379311,0.020338983049833,-0.572413793103445,0.013559322032862,0.013559322033941,0.000000000000004,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,-0.013559322033941,-0.000000000000003,2 -3748,3806,3808,3866,-0.558620689655177,0.027118644066798,-0.565517241379311,0.020338983049833,-0.565517241379314,0.033898305083763,-0.572413793103448,0.027118644066798,0.013559322033930,0.000000000000004,0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448270,-0.013559322033930,-0.000000000000003,2 -3749,3807,3809,3867,-0.558620689655181,0.040677966100731,-0.565517241379314,0.033898305083763,-0.565517241379317,0.047457627117699,-0.572413793103451,0.040677966100731,0.013559322033937,0.000000000000004,-0.000000000000000,-0.013793103448270,-0.000000000000000,0.013793103448269,-0.013559322033937,-0.000000000000003,2 -3750,3808,3810,3868,-0.558620689655185,0.054237288134667,-0.565517241379317,0.047457627117699,-0.565517241379321,0.061016949151634,-0.572413793103453,0.054237288134667,0.013559322033935,0.000000000000004,0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448268,-0.013559322033935,-0.000000000000003,2 -3751,3809,3811,3869,-0.558620689655189,0.067796610168599,-0.565517241379321,0.061016949151634,-0.565517241379324,0.074576271185564,-0.572413793103456,0.067796610168599,0.013559322033930,0.000000000000004,-0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448267,-0.013559322033930,-0.000000000000003,2 -3752,3810,3812,3870,-0.558620689655193,0.081355932202535,-0.565517241379324,0.074576271185564,-0.565517241379328,0.088135593219506,-0.572413793103459,0.081355932202535,0.013559322033941,0.000000000000004,-0.000000000000000,-0.013793103448267,0.000000000000000,0.013793103448265,-0.013559322033941,-0.000000000000003,2 -3753,3811,3813,3871,-0.558620689655197,0.094915254236471,-0.565517241379328,0.088135593219506,-0.565517241379331,0.101694915253436,-0.572413793103462,0.094915254236471,0.013559322033930,0.000000000000004,-0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448264,-0.013559322033930,-0.000000000000003,2 -3754,3812,3814,3872,-0.558620689655201,0.108474576270409,-0.565517241379331,0.101694915253436,-0.565517241379335,0.115254237287382,-0.572413793103465,0.108474576270409,0.013559322033946,0.000000000000004,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448263,-0.013559322033946,-0.000000000000003,2 -3755,3813,3815,3873,-0.558620689655205,0.122033898304341,-0.565517241379335,0.115254237287382,-0.565517241379338,0.128813559321301,-0.572413793103467,0.122033898304341,0.013559322033919,0.000000000000004,0.000000000000000,-0.013793103448263,-0.000000000000000,0.013793103448262,-0.013559322033919,-0.000000000000003,2 -3756,3814,3816,3874,-0.558620689655209,0.135593220338273,-0.565517241379338,0.128813559321301,-0.565517241379341,0.142372881355246,-0.572413793103470,0.135593220338273,0.013559322033945,0.000000000000004,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448260,-0.013559322033945,-0.000000000000003,2 -3757,3815,3817,3875,-0.558620689655213,0.149152542372213,-0.565517241379341,0.142372881355246,-0.565517241379345,0.155932203389179,-0.572413793103473,0.149152542372213,0.013559322033933,0.000000000000004,0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448259,-0.013559322033933,-0.000000000000003,2 -3758,3816,3818,3876,-0.558620689655217,0.162711864406145,-0.565517241379345,0.155932203389179,-0.565517241379348,0.169491525423110,-0.572413793103476,0.162711864406145,0.013559322033931,0.000000000000004,0.000000000000000,-0.013793103448259,-0.000000000000000,0.013793103448258,-0.013559322033931,-0.000000000000003,2 -3759,3817,3819,3877,-0.558620689655221,0.176271186440084,-0.565517241379348,0.169491525423110,-0.565517241379351,0.183050847457058,-0.572413793103479,0.176271186440084,0.013559322033948,0.000000000000004,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033947,-0.000000000000003,2 -3760,3818,3820,3878,-0.558620689655225,0.189830508474016,-0.565517241379351,0.183050847457058,-0.565517241379355,0.196610169490975,-0.572413793103481,0.189830508474016,0.013559322033917,0.000000000000004,0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448256,-0.013559322033917,-0.000000000000003,2 -3761,3819,3821,3879,-0.558620689655229,0.203389830507945,-0.565517241379355,0.196610169490975,-0.565517241379358,0.210169491524915,-0.572413793103484,0.203389830507945,0.013559322033940,0.000000000000004,-0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448255,-0.013559322033940,-0.000000000000003,2 -3762,3820,3822,3880,-0.558620689655233,0.216949152541877,-0.565517241379358,0.210169491524915,-0.565517241379362,0.223728813558839,-0.572413793103487,0.216949152541877,0.013559322033924,0.000000000000004,0.000000000000000,-0.013793103448255,-0.000000000000000,0.013793103448253,-0.013559322033924,-0.000000000000003,2 -3763,3821,3823,3881,-0.558620689655237,0.230508474575816,-0.565517241379362,0.223728813558839,-0.565517241379365,0.237288135592793,-0.572413793103490,0.230508474575816,0.013559322033954,0.000000000000004,0.000000000000000,-0.013793103448253,-0.000000000000000,0.013793103448252,-0.013559322033954,-0.000000000000003,2 -3764,3822,3824,3882,-0.558620689655241,0.244067796609748,-0.565517241379365,0.237288135592793,-0.565517241379368,0.250847457626703,-0.572413793103492,0.244067796609748,0.013559322033910,0.000000000000004,0.000000000000000,-0.013793103448252,-0.000000000000000,0.013793103448251,-0.013559322033910,-0.000000000000003,2 -3765,3823,3825,3883,-0.558620689655245,0.257627118643680,-0.565517241379368,0.250847457626703,-0.565517241379372,0.264406779660657,-0.572413793103495,0.257627118643680,0.013559322033954,0.000000000000004,0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033954,-0.000000000000003,2 -3766,3824,3826,3884,-0.558620689655249,0.271186440677618,-0.565517241379372,0.264406779660657,-0.565517241379375,0.277966101694579,-0.572413793103498,0.271186440677618,0.013559322033922,0.000000000000004,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448248,-0.013559322033922,-0.000000000000003,2 -3767,3825,3827,3885,-0.558620689655253,0.284745762711550,-0.565517241379375,0.277966101694579,-0.565517241379379,0.291525423728521,-0.572413793103501,0.284745762711550,0.013559322033943,0.000000000000004,-0.000000000000000,-0.013793103448248,-0.000000000000000,0.013793103448247,-0.013559322033942,-0.000000000000003,2 -3768,3826,3828,3886,-0.558620689655257,0.298305084745489,-0.565517241379379,0.291525423728521,-0.565517241379382,0.305084745762457,-0.572413793103504,0.298305084745489,0.013559322033936,0.000000000000004,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033936,-0.000000000000003,2 -3769,3827,3829,3887,-0.558620689655261,0.311864406779421,-0.565517241379382,0.305084745762457,-0.565517241379385,0.318644067796385,-0.572413793103506,0.311864406779421,0.013559322033928,0.000000000000004,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033928,-0.000000000000003,2 -3770,3828,3830,3888,-0.558620689655265,0.325423728813361,-0.565517241379385,0.318644067796385,-0.565517241379389,0.332203389830336,-0.572413793103509,0.325423728813361,0.013559322033950,0.000000000000004,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448244,-0.013559322033951,-0.000000000000003,2 -3771,3829,3831,3889,-0.558620689655269,0.338983050847293,-0.565517241379389,0.332203389830336,-0.565517241379392,0.345762711864250,-0.572413793103512,0.338983050847293,0.013559322033914,0.000000000000004,0.000000000000000,-0.013793103448244,0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000003,2 -3772,3830,3832,3890,-0.558620689655273,0.352542372881227,-0.565517241379392,0.345762711864250,-0.565517241379396,0.359322033898204,-0.572413793103515,0.352542372881227,0.013559322033954,0.000000000000004,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448241,-0.013559322033954,-0.000000000000003,2 -3773,3831,3833,3891,-0.558620689655277,0.366101694915162,-0.565517241379396,0.359322033898204,-0.565517241379399,0.372881355932121,-0.572413793103518,0.366101694915162,0.013559322033918,0.000000000000004,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448240,-0.013559322033918,-0.000000000000003,2 -3774,3832,3834,3892,-0.558620689655281,0.379661016949094,-0.565517241379399,0.372881355932121,-0.565517241379402,0.386440677966068,-0.572413793103520,0.379661016949094,0.013559322033946,0.000000000000004,0.000000000000000,-0.013793103448240,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000003,2 -1864,3775,3833,3893,-0.565517241379406,0.400000000000000,-0.558620689655285,0.393220338983034,-0.565517241379402,0.386440677966068,-0.572413793103523,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000004,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000003,2 -3776,3836,3894,4344,-0.572413793103361,-0.393220338983059,-0.579310344827521,-0.386440677966118,-0.586206896551679,-0.393220338983059,-0.579310344827519,-0.400000000000000,0.013559322033882,0.000000000000003,-0.000000000000000,0.013793103448317,-0.013559322033882,-0.000000000000002,0.000000000000000,-0.013793103448318,2 -3777,3835,3837,3895,-0.572413793103364,-0.379661016949189,-0.579310344827521,-0.386440677966118,-0.579310344827523,-0.372881355932259,-0.586206896551680,-0.379661016949189,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448316,-0.013559322033860,-0.000000000000001,2 -3778,3836,3838,3896,-0.572413793103367,-0.366101694915329,-0.579310344827523,-0.372881355932259,-0.579310344827526,-0.359322033898399,-0.586206896551682,-0.366101694915329,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448316,-0.000000000000000,0.013793103448314,-0.013559322033860,-0.000000000000002,2 -3779,3837,3839,3897,-0.572413793103370,-0.352542372881469,-0.579310344827526,-0.359322033898399,-0.579310344827527,-0.345762711864539,-0.586206896551683,-0.352542372881469,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448313,-0.013559322033860,-0.000000000000001,2 -3780,3838,3840,3898,-0.572413793103372,-0.338983050847605,-0.579310344827527,-0.345762711864539,-0.579310344827530,-0.332203389830670,-0.586206896551684,-0.338983050847605,0.013559322033869,0.000000000000003,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448311,-0.013559322033869,-0.000000000000001,2 -3781,3839,3841,3899,-0.572413793103375,-0.325423728813729,-0.579310344827530,-0.332203389830670,-0.579310344827532,-0.318644067796787,-0.586206896551686,-0.325423728813729,0.013559322033883,0.000000000000003,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448310,-0.013559322033883,-0.000000000000002,2 -3782,3840,3842,3900,-0.572413793103378,-0.311864406779851,-0.579310344827532,-0.318644067796787,-0.579310344827534,-0.305084745762915,-0.586206896551687,-0.311864406779851,0.013559322033872,0.000000000000003,0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448309,-0.013559322033872,-0.000000000000001,2 -3783,3841,3843,3901,-0.572413793103381,-0.298305084745975,-0.579310344827534,-0.305084745762915,-0.579310344827536,-0.291525423729035,-0.586206896551689,-0.298305084745975,0.013559322033880,0.000000000000003,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448307,-0.013559322033879,-0.000000000000001,2 -3784,3842,3844,3902,-0.572413793103384,-0.284745762712105,-0.579310344827536,-0.291525423729035,-0.579310344827538,-0.277966101695176,-0.586206896551690,-0.284745762712105,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448306,-0.013559322033860,-0.000000000000002,2 -3785,3843,3845,3903,-0.572413793103386,-0.271186440678246,-0.579310344827538,-0.277966101695176,-0.579310344827540,-0.264406779661316,-0.586206896551692,-0.271186440678246,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448306,-0.000000000000000,0.013793103448305,-0.013559322033860,-0.000000000000001,2 -3786,3844,3846,3904,-0.572413793103389,-0.257627118644386,-0.579310344827540,-0.264406779661316,-0.579310344827542,-0.250847457627456,-0.586206896551693,-0.257627118644386,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448305,-0.000000000000000,0.013793103448303,-0.013559322033860,-0.000000000000002,2 -3787,3845,3847,3905,-0.572413793103392,-0.244067796610526,-0.579310344827542,-0.250847457627456,-0.579310344827544,-0.237288135593597,-0.586206896551695,-0.244067796610526,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,-0.013559322033860,-0.000000000000001,2 -3788,3846,3848,3906,-0.572413793103395,-0.230508474576667,-0.579310344827544,-0.237288135593597,-0.579310344827547,-0.223728813559737,-0.586206896551696,-0.230508474576667,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448300,-0.013559322033860,-0.000000000000001,2 -3789,3847,3849,3907,-0.572413793103398,-0.216949152542807,-0.579310344827547,-0.223728813559737,-0.579310344827549,-0.210169491525877,-0.586206896551697,-0.216949152542807,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448300,-0.000000000000000,0.013793103448299,-0.013559322033860,-0.000000000000001,2 -3790,3848,3850,3908,-0.572413793103400,-0.203389830508947,-0.579310344827549,-0.210169491525877,-0.579310344827551,-0.196610169492017,-0.586206896551699,-0.203389830508947,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448298,-0.013559322033860,-0.000000000000001,2 -3791,3849,3851,3909,-0.572413793103403,-0.189830508475087,-0.579310344827551,-0.196610169492017,-0.579310344827553,-0.183050847458158,-0.586206896551700,-0.189830508475088,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448298,-0.000000000000000,0.013793103448296,-0.013559322033860,-0.000000000000002,2 -3792,3850,3852,3910,-0.572413793103406,-0.176271186441228,-0.579310344827553,-0.183050847458158,-0.579310344827555,-0.169491525424298,-0.586206896551702,-0.176271186441228,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448295,-0.013559322033860,-0.000000000000002,2 -3793,3851,3853,3911,-0.572413793103409,-0.162711864407368,-0.579310344827555,-0.169491525424298,-0.579310344827557,-0.155932203390438,-0.586206896551703,-0.162711864407368,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448295,-0.000000000000000,0.013793103448294,-0.013559322033860,-0.000000000000001,2 -3794,3852,3854,3912,-0.572413793103412,-0.149152542373509,-0.579310344827557,-0.155932203390438,-0.579310344827559,-0.142372881356579,-0.586206896551704,-0.149152542373509,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448294,-0.000000000000000,0.013793103448292,-0.013559322033860,-0.000000000000001,2 -3795,3853,3855,3913,-0.572413793103414,-0.135593220339649,-0.579310344827559,-0.142372881356579,-0.579310344827561,-0.128813559322719,-0.586206896551706,-0.135593220339649,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448292,-0.000000000000000,0.013793103448291,-0.013559322033860,-0.000000000000001,2 -3796,3854,3856,3914,-0.572413793103417,-0.122033898305789,-0.579310344827561,-0.128813559322719,-0.579310344827563,-0.115254237288859,-0.586206896551707,-0.122033898305789,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448289,-0.013559322033860,-0.000000000000001,2 -3797,3855,3857,3915,-0.572413793103420,-0.108474576271933,-0.579310344827563,-0.115254237288859,-0.579310344827565,-0.101694915255008,-0.586206896551709,-0.108474576271933,0.013559322033852,0.000000000000003,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448288,-0.013559322033852,-0.000000000000001,2 -3798,3856,3858,3916,-0.572413793103423,-0.094915254238085,-0.579310344827565,-0.101694915255008,-0.579310344827568,-0.088135593221162,-0.586206896551710,-0.094915254238085,0.013559322033846,0.000000000000003,0.000000000000000,-0.013793103448288,-0.000000000000000,0.013793103448287,-0.013559322033846,-0.000000000000002,2 -3799,3857,3859,3917,-0.572413793103426,-0.081355932204232,-0.579310344827568,-0.088135593221162,-0.579310344827570,-0.074576271187302,-0.586206896551712,-0.081355932204232,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448287,-0.000000000000000,0.013793103448285,-0.013559322033860,-0.000000000000001,2 -3800,3858,3860,3918,-0.572413793103428,-0.067796610170372,-0.579310344827570,-0.074576271187302,-0.579310344827572,-0.061016949153442,-0.586206896551713,-0.067796610170372,0.013559322033860,0.000000000000003,0.000000000000000,-0.013793103448285,0.000000000000000,0.013793103448284,-0.013559322033860,-0.000000000000001,2 -3801,3859,3861,3919,-0.572413793103431,-0.054237288136513,-0.579310344827572,-0.061016949153442,-0.579310344827574,-0.047457627119583,-0.586206896551714,-0.054237288136513,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448283,-0.013559322033860,-0.000000000000002,2 -3802,3860,3862,3920,-0.572413793103434,-0.040677966102653,-0.579310344827574,-0.047457627119583,-0.579310344827576,-0.033898305085723,-0.586206896551716,-0.040677966102653,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448281,-0.013559322033860,-0.000000000000001,2 -3803,3861,3863,3921,-0.572413793103437,-0.027118644068793,-0.579310344827576,-0.033898305085723,-0.579310344827578,-0.020338983051863,-0.586206896551717,-0.027118644068793,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448281,0.000000000000000,0.013793103448280,-0.013559322033860,-0.000000000000002,2 -3804,3862,3864,3922,-0.572413793103439,-0.013559322034934,-0.579310344827578,-0.020338983051863,-0.579310344827580,-0.006779661018004,-0.586206896551719,-0.013559322034933,0.013559322033860,0.000000000000003,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,-0.013559322033860,-0.000000000000001,2 -3805,3863,3865,3923,-0.572413793103442,-0.000000000001056,-0.579310344827580,-0.006779661018004,-0.579310344827582,0.006779661015891,-0.586206896551720,-0.000000000001056,0.013559322033895,0.000000000000003,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448277,-0.013559322033895,-0.000000000000001,2 -3806,3864,3866,3924,-0.572413793103445,0.013559322032862,-0.579310344827582,0.006779661015891,-0.579310344827584,0.020338983049833,-0.586206896551722,0.013559322032862,0.013559322033941,0.000000000000003,0.000000000000000,-0.013793103448277,0.000000000000000,0.013793103448276,-0.013559322033941,-0.000000000000001,2 -3807,3865,3867,3925,-0.572413793103448,0.027118644066798,-0.579310344827584,0.020338983049833,-0.579310344827586,0.033898305083763,-0.586206896551723,0.027118644066798,0.013559322033930,0.000000000000003,-0.000000000000000,-0.013793103448276,-0.000000000000000,0.013793103448274,-0.013559322033930,-0.000000000000001,2 -3808,3866,3868,3926,-0.572413793103451,0.040677966100731,-0.579310344827586,0.033898305083763,-0.579310344827589,0.047457627117699,-0.586206896551724,0.040677966100731,0.013559322033937,0.000000000000003,0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448273,-0.013559322033937,-0.000000000000002,2 -3809,3867,3869,3927,-0.572413793103453,0.054237288134667,-0.579310344827589,0.047457627117699,-0.579310344827591,0.061016949151634,-0.586206896551726,0.054237288134667,0.013559322033935,0.000000000000003,-0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,-0.013559322033935,-0.000000000000002,2 -3810,3868,3870,3928,-0.572413793103456,0.067796610168599,-0.579310344827591,0.061016949151634,-0.579310344827593,0.074576271185565,-0.586206896551727,0.067796610168599,0.013559322033930,0.000000000000003,0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448270,-0.013559322033930,-0.000000000000001,2 -3811,3869,3871,3929,-0.572413793103459,0.081355932202535,-0.579310344827593,0.074576271185565,-0.579310344827595,0.088135593219506,-0.586206896551729,0.081355932202535,0.013559322033941,0.000000000000003,-0.000000000000000,-0.013793103448270,0.000000000000000,0.013793103448269,-0.013559322033941,-0.000000000000001,2 -3812,3870,3872,3930,-0.572413793103462,0.094915254236471,-0.579310344827595,0.088135593219506,-0.579310344827597,0.101694915253436,-0.586206896551730,0.094915254236471,0.013559322033930,0.000000000000003,-0.000000000000000,-0.013793103448269,-0.000000000000000,0.013793103448268,-0.013559322033930,-0.000000000000002,2 -3813,3871,3873,3931,-0.572413793103465,0.108474576270409,-0.579310344827597,0.101694915253436,-0.579310344827599,0.115254237287382,-0.586206896551732,0.108474576270409,0.013559322033946,0.000000000000003,0.000000000000000,-0.013793103448268,-0.000000000000000,0.013793103448266,-0.013559322033946,-0.000000000000001,2 -3814,3872,3874,3932,-0.572413793103467,0.122033898304341,-0.579310344827599,0.115254237287382,-0.579310344827601,0.128813559321301,-0.586206896551733,0.122033898304341,0.013559322033919,0.000000000000003,0.000000000000000,-0.013793103448266,-0.000000000000000,0.013793103448265,-0.013559322033919,-0.000000000000001,2 -3815,3873,3875,3933,-0.572413793103470,0.135593220338273,-0.579310344827601,0.128813559321301,-0.579310344827603,0.142372881355246,-0.586206896551734,0.135593220338273,0.013559322033945,0.000000000000003,0.000000000000000,-0.013793103448265,-0.000000000000000,0.013793103448264,-0.013559322033945,-0.000000000000002,2 -3816,3874,3876,3934,-0.572413793103473,0.149152542372213,-0.579310344827603,0.142372881355246,-0.579310344827605,0.155932203389179,-0.586206896551736,0.149152542372213,0.013559322033933,0.000000000000003,0.000000000000000,-0.013793103448264,-0.000000000000000,0.013793103448262,-0.013559322033933,-0.000000000000001,2 -3817,3875,3877,3935,-0.572413793103476,0.162711864406145,-0.579310344827605,0.155932203389179,-0.579310344827608,0.169491525423110,-0.586206896551737,0.162711864406145,0.013559322033931,0.000000000000003,0.000000000000000,-0.013793103448262,-0.000000000000000,0.013793103448261,-0.013559322033931,-0.000000000000001,2 -3818,3876,3878,3936,-0.572413793103479,0.176271186440084,-0.579310344827608,0.169491525423110,-0.579310344827610,0.183050847457058,-0.586206896551739,0.176271186440084,0.013559322033947,0.000000000000003,0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448260,-0.013559322033948,-0.000000000000001,2 -3819,3877,3879,3937,-0.572413793103481,0.189830508474016,-0.579310344827610,0.183050847457058,-0.579310344827612,0.196610169490975,-0.586206896551740,0.189830508474016,0.013559322033917,0.000000000000003,-0.000000000000000,-0.013793103448260,-0.000000000000000,0.013793103448258,-0.013559322033917,-0.000000000000002,2 -3820,3878,3880,3938,-0.572413793103484,0.203389830507945,-0.579310344827612,0.196610169490975,-0.579310344827614,0.210169491524915,-0.586206896551742,0.203389830507945,0.013559322033940,0.000000000000003,0.000000000000000,-0.013793103448258,-0.000000000000000,0.013793103448257,-0.013559322033940,-0.000000000000001,2 -3821,3879,3881,3939,-0.572413793103487,0.216949152541877,-0.579310344827614,0.210169491524915,-0.579310344827616,0.223728813558839,-0.586206896551743,0.216949152541877,0.013559322033924,0.000000000000003,0.000000000000000,-0.013793103448257,0.000000000000000,0.013793103448256,-0.013559322033924,-0.000000000000002,2 -3822,3880,3882,3940,-0.572413793103490,0.230508474575816,-0.579310344827616,0.223728813558839,-0.579310344827618,0.237288135592793,-0.586206896551745,0.230508474575816,0.013559322033954,0.000000000000003,-0.000000000000000,-0.013793103448256,-0.000000000000000,0.013793103448254,-0.013559322033954,-0.000000000000001,2 -3823,3881,3883,3941,-0.572413793103492,0.244067796609748,-0.579310344827618,0.237288135592793,-0.579310344827620,0.250847457626703,-0.586206896551746,0.244067796609748,0.013559322033910,0.000000000000003,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448253,-0.013559322033910,-0.000000000000001,2 -3824,3882,3884,3942,-0.572413793103495,0.257627118643680,-0.579310344827620,0.250847457626703,-0.579310344827622,0.264406779660657,-0.586206896551747,0.257627118643680,0.013559322033954,0.000000000000003,0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448251,-0.013559322033954,-0.000000000000002,2 -3825,3883,3885,3943,-0.572413793103498,0.271186440677618,-0.579310344827622,0.264406779660657,-0.579310344827624,0.277966101694579,-0.586206896551749,0.271186440677618,0.013559322033922,0.000000000000003,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448250,-0.013559322033922,-0.000000000000001,2 -3826,3884,3886,3944,-0.572413793103501,0.284745762711550,-0.579310344827624,0.277966101694579,-0.579310344827627,0.291525423728521,-0.586206896551750,0.284745762711550,0.013559322033942,0.000000000000003,0.000000000000000,-0.013793103448250,0.000000000000000,0.013793103448249,-0.013559322033942,-0.000000000000001,2 -3827,3885,3887,3945,-0.572413793103504,0.298305084745489,-0.579310344827627,0.291525423728521,-0.579310344827629,0.305084745762457,-0.586206896551752,0.298305084745489,0.013559322033936,0.000000000000003,-0.000000000000000,-0.013793103448249,-0.000000000000000,0.013793103448247,-0.013559322033936,-0.000000000000001,2 -3828,3886,3888,3946,-0.572413793103506,0.311864406779421,-0.579310344827629,0.305084745762457,-0.579310344827631,0.318644067796385,-0.586206896551753,0.311864406779421,0.013559322033928,0.000000000000003,0.000000000000000,-0.013793103448247,-0.000000000000000,0.013793103448246,-0.013559322033928,-0.000000000000002,2 -3829,3887,3889,3947,-0.572413793103509,0.325423728813361,-0.579310344827631,0.318644067796385,-0.579310344827633,0.332203389830336,-0.586206896551755,0.325423728813361,0.013559322033951,0.000000000000003,0.000000000000000,-0.013793103448246,-0.000000000000000,0.013793103448245,-0.013559322033951,-0.000000000000001,2 -3830,3888,3890,3948,-0.572413793103512,0.338983050847293,-0.579310344827633,0.332203389830336,-0.579310344827635,0.345762711864250,-0.586206896551756,0.338983050847293,0.013559322033914,0.000000000000003,0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448243,-0.013559322033914,-0.000000000000001,2 -3831,3889,3891,3949,-0.572413793103515,0.352542372881227,-0.579310344827635,0.345762711864250,-0.579310344827637,0.359322033898204,-0.586206896551757,0.352542372881227,0.013559322033954,0.000000000000003,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448242,-0.013559322033954,-0.000000000000001,2 -3832,3890,3892,3950,-0.572413793103518,0.366101694915162,-0.579310344827637,0.359322033898204,-0.579310344827639,0.372881355932121,-0.586206896551759,0.366101694915162,0.013559322033918,0.000000000000003,0.000000000000000,-0.013793103448242,-0.000000000000000,0.013793103448241,-0.013559322033918,-0.000000000000002,2 -3833,3891,3893,3951,-0.572413793103520,0.379661016949094,-0.579310344827639,0.372881355932121,-0.579310344827641,0.386440677966068,-0.586206896551760,0.379661016949094,0.013559322033946,0.000000000000003,0.000000000000000,-0.013793103448241,-0.000000000000000,0.013793103448239,-0.013559322033946,-0.000000000000001,2 -1850,3834,3892,3952,-0.579310344827643,0.400000000000000,-0.572413793103523,0.393220338983034,-0.579310344827641,0.386440677966068,-0.586206896551762,0.393220338983034,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000003,0.000000000000000,-0.013793103448239,-0.013559322033932,-0.000000000000001,2 -80,3835,3895,4358,-0.600000000000000,-0.393220338983059,-0.586206896551679,-0.393220338983059,-0.593103448275840,-0.386440677966118,-0.593103448275839,-0.400000000000000,-0.013559322033881,-0.000000000000000,0.013559322033882,0.000000000000002,-0.000000000000000,0.013793103448320,-0.000000000000000,-0.013793103448322,2 -84,3836,3894,3896,-0.600000000000000,-0.379661016949189,-0.586206896551680,-0.379661016949189,-0.593103448275840,-0.386440677966118,-0.593103448275840,-0.372881355932259,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448320,-0.000000000000000,0.013793103448319,2 -88,3837,3895,3897,-0.600000000000000,-0.366101694915329,-0.586206896551682,-0.366101694915329,-0.593103448275840,-0.372881355932259,-0.593103448275841,-0.359322033898399,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448319,0.000000000000000,0.013793103448317,2 -92,3838,3896,3898,-0.600000000000000,-0.352542372881469,-0.586206896551683,-0.352542372881469,-0.593103448275841,-0.359322033898399,-0.593103448275842,-0.345762711864539,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448316,2 -96,3839,3897,3899,-0.600000000000000,-0.338983050847605,-0.586206896551684,-0.338983050847605,-0.593103448275842,-0.345762711864539,-0.593103448275843,-0.332203389830670,-0.013559322033869,-0.000000000000000,0.013559322033869,0.000000000000001,-0.000000000000000,-0.013793103448316,-0.000000000000000,0.013793103448315,2 -100,3840,3898,3900,-0.600000000000000,-0.325423728813729,-0.586206896551686,-0.325423728813729,-0.593103448275843,-0.332203389830670,-0.593103448275843,-0.318644067796787,-0.013559322033883,-0.000000000000000,0.013559322033883,0.000000000000002,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448313,2 -104,3841,3899,3901,-0.600000000000000,-0.311864406779851,-0.586206896551687,-0.311864406779851,-0.593103448275843,-0.318644067796787,-0.593103448275844,-0.305084745762915,-0.013559322033872,-0.000000000000000,0.013559322033872,0.000000000000001,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448312,2 -108,3842,3900,3902,-0.600000000000000,-0.298305084745975,-0.586206896551689,-0.298305084745975,-0.593103448275844,-0.305084745762915,-0.593103448275845,-0.291525423729035,-0.013559322033879,-0.000000000000000,0.013559322033879,0.000000000000001,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448311,2 -112,3843,3901,3903,-0.600000000000000,-0.284745762712106,-0.586206896551690,-0.284745762712105,-0.593103448275845,-0.291525423729035,-0.593103448275845,-0.277966101695176,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448309,2 -116,3844,3902,3904,-0.600000000000000,-0.271186440678246,-0.586206896551692,-0.271186440678246,-0.593103448275845,-0.277966101695176,-0.593103448275846,-0.264406779661316,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448308,2 -120,3845,3903,3905,-0.600000000000000,-0.257627118644386,-0.586206896551693,-0.257627118644386,-0.593103448275846,-0.264406779661316,-0.593103448275847,-0.250847457627456,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448306,2 -124,3846,3904,3906,-0.600000000000000,-0.244067796610526,-0.586206896551695,-0.244067796610526,-0.593103448275847,-0.250847457627456,-0.593103448275848,-0.237288135593597,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448306,0.000000000000000,0.013793103448305,2 -128,3847,3905,3907,-0.600000000000000,-0.230508474576667,-0.586206896551696,-0.230508474576667,-0.593103448275848,-0.237288135593597,-0.593103448275848,-0.223728813559737,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448305,0.000000000000000,0.013793103448303,2 -132,3848,3906,3908,-0.600000000000000,-0.216949152542807,-0.586206896551697,-0.216949152542807,-0.593103448275848,-0.223728813559737,-0.593103448275849,-0.210169491525877,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448303,-0.000000000000000,0.013793103448302,2 -136,3849,3907,3909,-0.600000000000000,-0.203389830508947,-0.586206896551699,-0.203389830508947,-0.593103448275849,-0.210169491525877,-0.593103448275850,-0.196610169492017,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448301,2 -140,3850,3908,3910,-0.600000000000000,-0.189830508475088,-0.586206896551700,-0.189830508475088,-0.593103448275850,-0.196610169492017,-0.593103448275850,-0.183050847458158,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448299,2 -144,3851,3909,3911,-0.600000000000000,-0.176271186441228,-0.586206896551702,-0.176271186441228,-0.593103448275850,-0.183050847458158,-0.593103448275851,-0.169491525424298,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448299,-0.000000000000000,0.013793103448297,2 -148,3852,3910,3912,-0.600000000000000,-0.162711864407368,-0.586206896551703,-0.162711864407368,-0.593103448275851,-0.169491525424298,-0.593103448275852,-0.155932203390438,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,2 -152,3853,3911,3913,-0.600000000000000,-0.149152542373509,-0.586206896551704,-0.149152542373509,-0.593103448275852,-0.155932203390438,-0.593103448275853,-0.142372881356579,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448295,2 -156,3854,3912,3914,-0.600000000000000,-0.135593220339649,-0.586206896551706,-0.135593220339649,-0.593103448275853,-0.142372881356579,-0.593103448275853,-0.128813559322719,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448295,0.000000000000000,0.013793103448293,2 -160,3855,3913,3915,-0.600000000000000,-0.122033898305789,-0.586206896551707,-0.122033898305789,-0.593103448275853,-0.128813559322719,-0.593103448275854,-0.115254237288859,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448293,-0.000000000000000,0.013793103448292,2 -164,3856,3914,3916,-0.600000000000000,-0.108474576271933,-0.586206896551709,-0.108474576271933,-0.593103448275854,-0.115254237288859,-0.593103448275855,-0.101694915255008,-0.013559322033852,-0.000000000000000,0.013559322033852,0.000000000000001,0.000000000000000,-0.013793103448292,0.000000000000000,0.013793103448291,2 -168,3857,3915,3917,-0.600000000000000,-0.094915254238085,-0.586206896551710,-0.094915254238085,-0.593103448275855,-0.101694915255008,-0.593103448275855,-0.088135593221162,-0.013559322033846,-0.000000000000000,0.013559322033846,0.000000000000002,-0.000000000000000,-0.013793103448291,-0.000000000000000,0.013793103448289,2 -172,3858,3916,3918,-0.600000000000000,-0.081355932204232,-0.586206896551712,-0.081355932204232,-0.593103448275855,-0.088135593221162,-0.593103448275856,-0.074576271187302,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448289,-0.000000000000000,0.013793103448288,2 -176,3859,3917,3919,-0.600000000000000,-0.067796610170372,-0.586206896551713,-0.067796610170372,-0.593103448275856,-0.074576271187302,-0.593103448275857,-0.061016949153442,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448288,0.000000000000000,0.013793103448286,2 -180,3860,3918,3920,-0.600000000000000,-0.054237288136513,-0.586206896551714,-0.054237288136513,-0.593103448275857,-0.061016949153442,-0.593103448275858,-0.047457627119583,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,-0.000000000000000,-0.013793103448286,-0.000000000000000,0.013793103448285,2 -184,3861,3919,3921,-0.600000000000000,-0.040677966102653,-0.586206896551716,-0.040677966102653,-0.593103448275858,-0.047457627119583,-0.593103448275858,-0.033898305085723,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,0.000000000000000,-0.013793103448285,-0.000000000000000,0.013793103448284,2 -188,3862,3920,3922,-0.600000000000000,-0.027118644068793,-0.586206896551717,-0.027118644068793,-0.593103448275858,-0.033898305085723,-0.593103448275859,-0.020338983051863,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000002,0.000000000000000,-0.013793103448284,0.000000000000000,0.013793103448282,2 -192,3863,3921,3923,-0.600000000000000,-0.013559322034933,-0.586206896551719,-0.013559322034933,-0.593103448275859,-0.020338983051863,-0.593103448275860,-0.006779661018004,-0.013559322033860,-0.000000000000000,0.013559322033860,0.000000000000001,-0.000000000000000,-0.013793103448282,0.000000000000000,0.013793103448280,2 -196,3864,3922,3924,-0.600000000000000,-0.000000000001056,-0.586206896551720,-0.000000000001056,-0.593103448275860,-0.006779661018004,-0.593103448275860,0.006779661015891,-0.013559322033895,-0.000000000000000,0.013559322033895,0.000000000000001,-0.000000000000000,-0.013793103448280,-0.000000000000000,0.013793103448279,2 -200,3865,3923,3925,-0.600000000000000,0.013559322032862,-0.586206896551722,0.013559322032862,-0.593103448275860,0.006779661015891,-0.593103448275861,0.020338983049833,-0.013559322033941,-0.000000000000000,0.013559322033941,0.000000000000001,0.000000000000000,-0.013793103448279,-0.000000000000000,0.013793103448278,2 -204,3866,3924,3926,-0.600000000000000,0.027118644066798,-0.586206896551723,0.027118644066798,-0.593103448275861,0.020338983049833,-0.593103448275862,0.033898305083763,-0.013559322033930,-0.000000000000000,0.013559322033930,0.000000000000001,0.000000000000000,-0.013793103448278,0.000000000000000,0.013793103448276,2 -208,3867,3925,3927,-0.600000000000000,0.040677966100731,-0.586206896551724,0.040677966100731,-0.593103448275862,0.033898305083763,-0.593103448275863,0.047457627117699,-0.013559322033937,-0.000000000000000,0.013559322033937,0.000000000000002,-0.000000000000000,-0.013793103448276,0.000000000000000,0.013793103448275,2 -212,3868,3926,3928,-0.600000000000000,0.054237288134667,-0.586206896551726,0.054237288134667,-0.593103448275863,0.047457627117699,-0.593103448275863,0.061016949151634,-0.013559322033935,-0.000000000000000,0.013559322033935,0.000000000000002,-0.000000000000000,-0.013793103448275,-0.000000000000000,0.013793103448273,2 -216,3869,3927,3929,-0.600000000000000,0.067796610168599,-0.586206896551727,0.067796610168599,-0.593103448275863,0.061016949151634,-0.593103448275864,0.074576271185564,-0.013559322033930,-0.000000000000000,0.013559322033930,0.000000000000001,0.000000000000000,-0.013793103448273,-0.000000000000000,0.013793103448272,2 -220,3870,3928,3930,-0.600000000000000,0.081355932202535,-0.586206896551729,0.081355932202535,-0.593103448275864,0.074576271185564,-0.593103448275865,0.088135593219506,-0.013559322033941,-0.000000000000000,0.013559322033941,0.000000000000001,0.000000000000000,-0.013793103448272,0.000000000000000,0.013793103448271,2 -224,3871,3929,3931,-0.600000000000000,0.094915254236471,-0.586206896551730,0.094915254236471,-0.593103448275865,0.088135593219506,-0.593103448275865,0.101694915253436,-0.013559322033930,-0.000000000000000,0.013559322033930,0.000000000000002,-0.000000000000000,-0.013793103448271,0.000000000000000,0.013793103448269,2 -228,3872,3930,3932,-0.600000000000000,0.108474576270409,-0.586206896551732,0.108474576270409,-0.593103448275865,0.101694915253436,-0.593103448275866,0.115254237287382,-0.013559322033946,-0.000000000000000,0.013559322033946,0.000000000000001,-0.000000000000000,-0.013793103448269,0.000000000000000,0.013793103448268,2 -232,3873,3931,3933,-0.600000000000000,0.122033898304341,-0.586206896551733,0.122033898304341,-0.593103448275866,0.115254237287382,-0.593103448275867,0.128813559321301,-0.013559322033919,-0.000000000000000,0.013559322033919,0.000000000000001,-0.000000000000000,-0.013793103448268,0.000000000000000,0.013793103448266,2 -236,3874,3932,3934,-0.600000000000000,0.135593220338273,-0.586206896551734,0.135593220338273,-0.593103448275867,0.128813559321301,-0.593103448275867,0.142372881355246,-0.013559322033945,-0.000000000000000,0.013559322033945,0.000000000000002,-0.000000000000000,-0.013793103448266,0.000000000000000,0.013793103448265,2 -240,3875,3933,3935,-0.600000000000000,0.149152542372213,-0.586206896551736,0.149152542372213,-0.593103448275867,0.142372881355246,-0.593103448275868,0.155932203389179,-0.013559322033933,-0.000000000000000,0.013559322033933,0.000000000000001,-0.000000000000000,-0.013793103448265,0.000000000000000,0.013793103448263,2 -244,3876,3934,3936,-0.600000000000000,0.162711864406145,-0.586206896551737,0.162711864406145,-0.593103448275868,0.155932203389179,-0.593103448275869,0.169491525423110,-0.013559322033931,-0.000000000000000,0.013559322033931,0.000000000000001,-0.000000000000000,-0.013793103448263,0.000000000000000,0.013793103448262,2 -248,3877,3935,3937,-0.600000000000000,0.176271186440084,-0.586206896551739,0.176271186440084,-0.593103448275869,0.169491525423110,-0.593103448275870,0.183050847457058,-0.013559322033947,-0.000000000000000,0.013559322033948,0.000000000000001,-0.000000000000000,-0.013793103448262,0.000000000000000,0.013793103448261,2 -252,3878,3936,3938,-0.600000000000000,0.189830508474016,-0.586206896551740,0.189830508474016,-0.593103448275870,0.183050847457058,-0.593103448275870,0.196610169490975,-0.013559322033917,-0.000000000000000,0.013559322033917,0.000000000000002,-0.000000000000000,-0.013793103448261,0.000000000000000,0.013793103448259,2 -256,3879,3937,3939,-0.600000000000000,0.203389830507945,-0.586206896551742,0.203389830507945,-0.593103448275870,0.196610169490975,-0.593103448275871,0.210169491524915,-0.013559322033940,-0.000000000000000,0.013559322033940,0.000000000000001,-0.000000000000000,-0.013793103448259,0.000000000000000,0.013793103448258,2 -260,3880,3938,3940,-0.600000000000000,0.216949152541877,-0.586206896551743,0.216949152541877,-0.593103448275871,0.210169491524915,-0.593103448275872,0.223728813558839,-0.013559322033924,-0.000000000000000,0.013559322033924,0.000000000000002,-0.000000000000000,-0.013793103448258,0.000000000000000,0.013793103448256,2 -264,3881,3939,3941,-0.600000000000000,0.230508474575816,-0.586206896551745,0.230508474575816,-0.593103448275872,0.223728813558839,-0.593103448275873,0.237288135592793,-0.013559322033954,-0.000000000000000,0.013559322033954,0.000000000000001,-0.000000000000000,-0.013793103448256,0.000000000000000,0.013793103448255,2 -268,3882,3940,3942,-0.600000000000000,0.244067796609748,-0.586206896551746,0.244067796609748,-0.593103448275873,0.237288135592793,-0.593103448275873,0.250847457626703,-0.013559322033910,-0.000000000000000,0.013559322033910,0.000000000000001,-0.000000000000000,-0.013793103448255,0.000000000000000,0.013793103448253,2 -272,3883,3941,3943,-0.600000000000000,0.257627118643680,-0.586206896551747,0.257627118643680,-0.593103448275873,0.250847457626703,-0.593103448275874,0.264406779660657,-0.013559322033954,-0.000000000000000,0.013559322033954,0.000000000000002,-0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448252,2 -276,3884,3942,3944,-0.600000000000000,0.271186440677618,-0.586206896551749,0.271186440677618,-0.593103448275874,0.264406779660657,-0.593103448275875,0.277966101694579,-0.013559322033922,-0.000000000000000,0.013559322033922,0.000000000000001,-0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448251,2 -280,3885,3943,3945,-0.600000000000000,0.284745762711550,-0.586206896551750,0.284745762711550,-0.593103448275875,0.277966101694579,-0.593103448275875,0.291525423728521,-0.013559322033942,-0.000000000000000,0.013559322033942,0.000000000000001,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448249,2 -284,3886,3944,3946,-0.600000000000000,0.298305084745489,-0.586206896551752,0.298305084745489,-0.593103448275875,0.291525423728521,-0.593103448275876,0.305084745762457,-0.013559322033936,-0.000000000000000,0.013559322033936,0.000000000000001,-0.000000000000000,-0.013793103448249,0.000000000000000,0.013793103448248,2 -288,3887,3945,3947,-0.600000000000000,0.311864406779421,-0.586206896551753,0.311864406779421,-0.593103448275876,0.305084745762457,-0.593103448275877,0.318644067796385,-0.013559322033928,-0.000000000000000,0.013559322033928,0.000000000000002,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448246,2 -292,3888,3946,3948,-0.600000000000000,0.325423728813361,-0.586206896551755,0.325423728813361,-0.593103448275877,0.318644067796385,-0.593103448275878,0.332203389830336,-0.013559322033950,-0.000000000000000,0.013559322033951,0.000000000000001,-0.000000000000000,-0.013793103448246,0.000000000000000,0.013793103448245,2 -296,3889,3947,3949,-0.600000000000000,0.338983050847293,-0.586206896551756,0.338983050847293,-0.593103448275878,0.332203389830336,-0.593103448275878,0.345762711864250,-0.013559322033914,-0.000000000000000,0.013559322033914,0.000000000000001,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448243,2 -300,3890,3948,3950,-0.600000000000000,0.352542372881227,-0.586206896551757,0.352542372881227,-0.593103448275878,0.345762711864250,-0.593103448275879,0.359322033898204,-0.013559322033954,-0.000000000000000,0.013559322033954,0.000000000000001,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448242,2 -304,3891,3949,3951,-0.600000000000000,0.366101694915163,-0.586206896551759,0.366101694915162,-0.593103448275879,0.359322033898204,-0.593103448275880,0.372881355932121,-0.013559322033918,-0.000000000000000,0.013559322033918,0.000000000000002,-0.000000000000000,-0.013793103448242,0.000000000000000,0.013793103448240,2 -308,3892,3950,3952,-0.600000000000000,0.379661016949095,-0.586206896551760,0.379661016949094,-0.593103448275880,0.372881355932121,-0.593103448275880,0.386440677966068,-0.013559322033946,-0.000000000000000,0.013559322033946,0.000000000000001,-0.000000000000000,-0.013793103448240,0.000000000000000,0.013793103448239,2 -312,1836,3893,3951,-0.600000000000000,0.393220338983034,-0.593103448275881,0.400000000000000,-0.586206896551762,0.393220338983034,-0.593103448275880,0.386440677966068,-0.013559322033932,0.000000000000000,0.000000000000000,0.013793103448238,0.013559322033932,0.000000000000001,-0.000000000000000,-0.013793103448239,2 -569,3954,3967,4359,-0.206896551724127,-0.600000000000000,-0.206896551724127,-0.585714285714262,-0.213793103448254,-0.592857142857131,-0.200000000000000,-0.592857142857131,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,-0.014285714285738,-0.000000000000000,0.014285714285738,0.000000000000000,2 -3953,3955,3968,4360,-0.206896551724127,-0.585714285714262,-0.206896551724127,-0.571428571428510,-0.213793103448254,-0.578571428571386,-0.200000000000000,-0.578571428571386,-0.000000000000000,-0.013793103448254,-0.000000000000001,0.013793103448254,-0.014285714285752,0.000000000000000,0.014285714285753,-0.000000000000000,2 -3954,3956,3969,4361,-0.206896551724127,-0.571428571428510,-0.206896551724127,-0.557142857142755,-0.213793103448254,-0.564285714285634,-0.200000000000000,-0.564285714285631,0.000000000000001,-0.013793103448254,-0.000000000000004,0.013793103448254,-0.014285714285753,-0.000000000000000,0.014285714285756,-0.000000000000000,2 -3955,3957,3970,4362,-0.206896551724127,-0.557142857142755,-0.206896551724127,-0.542857142857000,-0.213793103448254,-0.549999999999880,-0.200000000000000,-0.549999999999875,0.000000000000004,-0.013793103448254,-0.000000000000006,0.013793103448254,-0.014285714285754,-0.000000000000000,0.014285714285756,-0.000000000000000,2 -3956,3958,3971,4363,-0.206896551724127,-0.542857142857000,-0.206896551724127,-0.528571428571252,-0.213793103448254,-0.535714285714130,-0.200000000000000,-0.535714285714122,0.000000000000006,-0.013793103448254,-0.000000000000009,0.013793103448254,-0.014285714285747,-0.000000000000000,0.014285714285750,-0.000000000000000,2 -3957,3959,3972,4364,-0.206896551724127,-0.528571428571252,-0.206896551724127,-0.514285714285495,-0.213793103448254,-0.521428571428379,-0.200000000000000,-0.521428571428368,0.000000000000009,-0.013793103448254,-0.000000000000015,0.013793103448254,-0.014285714285754,-0.000000000000000,0.014285714285759,-0.000000000000000,2 -3958,3960,3973,4365,-0.206896551724127,-0.514285714285495,-0.206896551724127,-0.499999999999770,-0.213793103448254,-0.507142857142641,-0.200000000000000,-0.507142857142625,0.000000000000015,-0.013793103448254,-0.000000000000018,0.013793103448254,-0.014285714285723,-0.000000000000000,0.014285714285727,-0.000000000000000,2 -3959,3961,3974,4366,-0.206896551724127,-0.499999999999770,-0.206896551724127,-0.485714285714068,-0.213793103448254,-0.492857142856928,-0.200000000000000,-0.492857142856910,0.000000000000018,-0.013793103448254,-0.000000000000017,0.013793103448254,-0.014285714285703,-0.000000000000000,0.014285714285702,-0.000000000000000,2 -3960,3962,3975,4367,-0.206896551724127,-0.485714285714068,-0.206896551724127,-0.471428571428397,-0.213793103448254,-0.478571428571240,-0.200000000000000,-0.478571428571225,0.000000000000017,-0.013793103448254,-0.000000000000014,0.013793103448254,-0.014285714285672,-0.000000000000000,0.014285714285669,-0.000000000000000,2 -3961,3963,3976,4368,-0.206896551724127,-0.471428571428397,-0.206896551724127,-0.457142857142726,-0.213793103448254,-0.464285714285568,-0.200000000000000,-0.464285714285555,0.000000000000014,-0.013793103448254,-0.000000000000011,0.013793103448254,-0.014285714285672,0.000000000000000,0.014285714285669,-0.000000000000000,2 -3962,3964,3977,4369,-0.206896551724127,-0.457142857142726,-0.206896551724127,-0.442857142857055,-0.213793103448254,-0.449999999999895,-0.200000000000000,-0.449999999999886,0.000000000000011,-0.013793103448254,-0.000000000000007,0.013793103448254,-0.014285714285673,-0.000000000000000,0.014285714285669,-0.000000000000000,2 -3963,3965,3978,4370,-0.206896551724127,-0.442857142857055,-0.206896551724127,-0.428571428571384,-0.213793103448254,-0.435714285714223,-0.200000000000000,-0.435714285714217,0.000000000000007,-0.013793103448254,-0.000000000000004,0.013793103448254,-0.014285714285672,-0.000000000000000,0.014285714285669,-0.000000000000000,2 -3964,3966,3979,4371,-0.206896551724127,-0.428571428571384,-0.206896551724127,-0.414285714285671,-0.213793103448254,-0.421428571428529,-0.200000000000000,-0.421428571428526,0.000000000000004,-0.013793103448254,-0.000000000000003,0.013793103448254,-0.014285714285714,-0.000000000000000,0.014285714285713,-0.000000000000000,2 -2242,3965,3980,4372,-0.206896551724127,-0.400000000000000,-0.206896551724127,-0.414285714285671,-0.213793103448254,-0.407142857142836,-0.200000000000000,-0.407142857142835,-0.000000000000000,0.013793103448254,0.000000000000003,-0.013793103448254,-0.014285714285672,0.000000000000000,0.014285714285669,-0.000000000000000,2 -563,3953,3968,3981,-0.220689655172375,-0.600000000000000,-0.213793103448254,-0.592857142857131,-0.220689655172375,-0.585714285714262,-0.227586206896496,-0.592857142857131,0.000000000000000,-0.013793103448243,0.014285714285738,0.000000000000000,0.000000000000000,0.013793103448243,-0.014285714285738,-0.000000000000000,2 -3954,3967,3969,3982,-0.213793103448254,-0.578571428571386,-0.220689655172375,-0.585714285714262,-0.220689655172375,-0.571428571428511,-0.227586206896496,-0.578571428571387,0.014285714285752,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000001,0.013793103448243,-0.014285714285751,-0.000000000000000,2 -3955,3968,3970,3983,-0.213793103448254,-0.564285714285634,-0.220689655172375,-0.571428571428511,-0.220689655172375,-0.557142857142759,-0.227586206896496,-0.564285714285636,0.014285714285753,0.000000000000000,0.000000000000001,-0.013793103448243,-0.000000000000004,0.013793103448243,-0.014285714285751,-0.000000000000000,2 -3956,3969,3971,3984,-0.213793103448254,-0.549999999999880,-0.220689655172375,-0.557142857142759,-0.220689655172375,-0.542857142857007,-0.227586206896496,-0.549999999999885,0.014285714285754,0.000000000000000,0.000000000000004,-0.013793103448243,-0.000000000000006,0.013793103448243,-0.014285714285751,-0.000000000000000,2 -3957,3970,3972,3985,-0.213793103448254,-0.535714285714130,-0.220689655172375,-0.542857142857007,-0.220689655172375,-0.528571428571261,-0.227586206896496,-0.535714285714137,0.014285714285747,0.000000000000000,0.000000000000006,-0.013793103448243,-0.000000000000009,0.013793103448243,-0.014285714285745,-0.000000000000000,2 -3958,3971,3973,3986,-0.213793103448254,-0.521428571428379,-0.220689655172375,-0.528571428571261,-0.220689655172375,-0.514285714285510,-0.227586206896496,-0.521428571428391,0.014285714285754,0.000000000000000,0.000000000000009,-0.013793103448243,-0.000000000000015,0.013793103448243,-0.014285714285748,0.000000000000000,2 -3959,3972,3974,3987,-0.213793103448254,-0.507142857142641,-0.220689655172375,-0.514285714285510,-0.220689655172375,-0.499999999999789,-0.227586206896496,-0.507142857142658,0.014285714285723,0.000000000000000,0.000000000000015,-0.013793103448243,-0.000000000000018,0.013793103448243,-0.014285714285719,-0.000000000000000,2 -3960,3973,3975,3988,-0.213793103448254,-0.492857142856928,-0.220689655172375,-0.499999999999789,-0.220689655172375,-0.485714285714085,-0.227586206896496,-0.492857142856946,0.014285714285703,0.000000000000000,0.000000000000018,-0.013793103448243,-0.000000000000017,0.013793103448243,-0.014285714285705,-0.000000000000000,2 -3961,3974,3976,3989,-0.213793103448254,-0.478571428571240,-0.220689655172375,-0.485714285714085,-0.220689655172375,-0.471428571428411,-0.227586206896496,-0.478571428571256,0.014285714285672,0.000000000000000,0.000000000000017,-0.013793103448243,-0.000000000000014,0.013793103448243,-0.014285714285675,-0.000000000000000,2 -3962,3975,3977,3990,-0.213793103448254,-0.464285714285568,-0.220689655172375,-0.471428571428411,-0.220689655172375,-0.457142857142737,-0.227586206896496,-0.464285714285580,0.014285714285672,-0.000000000000000,0.000000000000014,-0.013793103448243,-0.000000000000011,0.013793103448243,-0.014285714285676,-0.000000000000000,2 -3963,3976,3978,3991,-0.213793103448254,-0.449999999999895,-0.220689655172375,-0.457142857142737,-0.220689655172375,-0.442857142857063,-0.227586206896496,-0.449999999999904,0.014285714285673,0.000000000000000,0.000000000000011,-0.013793103448243,-0.000000000000008,0.013793103448243,-0.014285714285676,-0.000000000000000,2 -3964,3977,3979,3992,-0.213793103448254,-0.435714285714223,-0.220689655172375,-0.442857142857063,-0.220689655172375,-0.428571428571389,-0.227586206896496,-0.435714285714229,0.014285714285672,0.000000000000000,0.000000000000008,-0.013793103448243,-0.000000000000004,0.013793103448243,-0.014285714285676,-0.000000000000000,2 -3965,3978,3980,3993,-0.213793103448254,-0.421428571428529,-0.220689655172375,-0.428571428571389,-0.220689655172375,-0.414285714285674,-0.227586206896496,-0.421428571428533,0.014285714285714,0.000000000000000,0.000000000000004,-0.013793103448243,-0.000000000000003,0.013793103448243,-0.014285714285716,-0.000000000000000,2 -2301,3966,3979,3994,-0.220689655172375,-0.400000000000000,-0.213793103448254,-0.407142857142836,-0.220689655172375,-0.414285714285674,-0.227586206896496,-0.407142857142838,-0.000000000000000,0.013793103448243,0.014285714285672,-0.000000000000000,0.000000000000003,-0.013793103448243,-0.014285714285675,0.000000000000000,2 -557,3967,3982,3995,-0.234482758620623,-0.600000000000000,-0.227586206896496,-0.592857142857131,-0.234482758620623,-0.585714285714262,-0.241379310344750,-0.592857142857131,0.000000000000000,-0.013793103448254,0.014285714285738,0.000000000000000,0.000000000000000,0.013793103448254,-0.014285714285738,-0.000000000000000,2 -3968,3981,3983,3996,-0.227586206896496,-0.578571428571387,-0.234482758620623,-0.585714285714262,-0.234482758620623,-0.571428571428512,-0.241379310344750,-0.578571428571387,0.014285714285751,0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000001,0.013793103448254,-0.014285714285749,-0.000000000000000,2 -3969,3982,3984,3997,-0.227586206896496,-0.564285714285636,-0.234482758620623,-0.571428571428512,-0.234482758620623,-0.557142857142762,-0.241379310344750,-0.564285714285638,0.014285714285751,0.000000000000000,0.000000000000001,-0.013793103448254,-0.000000000000004,0.013793103448254,-0.014285714285748,-0.000000000000000,2 -3970,3983,3985,3998,-0.227586206896496,-0.549999999999885,-0.234482758620623,-0.557142857142762,-0.234482758620623,-0.542857142857013,-0.241379310344750,-0.549999999999890,0.014285714285751,0.000000000000000,0.000000000000004,-0.013793103448254,-0.000000000000006,0.013793103448254,-0.014285714285748,0.000000000000000,2 -3971,3984,3986,3999,-0.227586206896496,-0.535714285714137,-0.234482758620623,-0.542857142857013,-0.234482758620623,-0.528571428571270,-0.241379310344750,-0.535714285714145,0.014285714285745,0.000000000000000,0.000000000000006,-0.013793103448254,-0.000000000000009,0.013793103448253,-0.014285714285742,-0.000000000000000,2 -3972,3985,3987,4000,-0.227586206896496,-0.521428571428391,-0.234482758620623,-0.528571428571270,-0.234482758620623,-0.514285714285524,-0.241379310344750,-0.521428571428403,0.014285714285748,-0.000000000000000,0.000000000000009,-0.013793103448253,-0.000000000000014,0.013793103448254,-0.014285714285742,-0.000000000000000,2 -3973,3986,3988,4001,-0.227586206896496,-0.507142857142658,-0.234482758620623,-0.514285714285524,-0.234482758620623,-0.499999999999807,-0.241379310344750,-0.507142857142674,0.014285714285719,0.000000000000000,0.000000000000014,-0.013793103448254,-0.000000000000018,0.013793103448254,-0.014285714285716,-0.000000000000000,2 -3974,3987,3989,4002,-0.227586206896496,-0.492857142856946,-0.234482758620623,-0.499999999999807,-0.234482758620623,-0.485714285714102,-0.241379310344750,-0.492857142856963,0.014285714285705,0.000000000000000,0.000000000000018,-0.013793103448254,-0.000000000000017,0.013793103448254,-0.014285714285706,-0.000000000000000,2 -3975,3988,3990,4003,-0.227586206896496,-0.478571428571256,-0.234482758620623,-0.485714285714102,-0.234482758620623,-0.471428571428425,-0.241379310344750,-0.478571428571271,0.014285714285675,0.000000000000000,0.000000000000017,-0.013793103448254,-0.000000000000014,0.013793103448254,-0.014285714285678,-0.000000000000000,2 -3976,3989,3991,4004,-0.227586206896496,-0.464285714285580,-0.234482758620623,-0.471428571428425,-0.234482758620623,-0.457142857142748,-0.241379310344750,-0.464285714285593,0.014285714285676,0.000000000000000,0.000000000000014,-0.013793103448254,-0.000000000000011,0.013793103448254,-0.014285714285679,-0.000000000000000,2 -3977,3990,3992,4005,-0.227586206896496,-0.449999999999904,-0.234482758620623,-0.457142857142748,-0.234482758620623,-0.442857142857070,-0.241379310344750,-0.449999999999914,0.014285714285676,0.000000000000000,0.000000000000011,-0.013793103448254,-0.000000000000007,0.013793103448254,-0.014285714285679,-0.000000000000000,2 -3978,3991,3993,4006,-0.227586206896496,-0.435714285714229,-0.234482758620623,-0.442857142857070,-0.234482758620623,-0.428571428571393,-0.241379310344750,-0.435714285714235,0.014285714285676,0.000000000000000,0.000000000000007,-0.013793103448254,-0.000000000000004,0.013793103448254,-0.014285714285679,-0.000000000000000,2 -3979,3992,3994,4007,-0.227586206896496,-0.421428571428533,-0.234482758620623,-0.428571428571393,-0.234482758620623,-0.414285714285677,-0.241379310344750,-0.421428571428537,0.014285714285716,0.000000000000000,0.000000000000004,-0.013793103448254,-0.000000000000003,0.013793103448254,-0.014285714285717,-0.000000000000000,2 -2360,3980,3993,4008,-0.234482758620623,-0.400000000000000,-0.227586206896496,-0.407142857142838,-0.234482758620623,-0.414285714285677,-0.241379310344750,-0.407142857142839,-0.000000000000000,0.013793103448254,0.014285714285675,-0.000000000000000,0.000000000000003,-0.013793103448254,-0.014285714285678,0.000000000000000,2 -551,3981,3996,4009,-0.248275862068872,-0.600000000000000,-0.241379310344750,-0.592857142857131,-0.248275862068872,-0.585714285714261,-0.255172413792995,-0.592857142857131,0.000000000000000,-0.013793103448245,0.014285714285738,0.000000000000000,0.000000000000001,0.013793103448245,-0.014285714285739,-0.000000000000000,2 -3982,3995,3997,4010,-0.241379310344750,-0.578571428571387,-0.248275862068872,-0.585714285714261,-0.248275862068872,-0.571428571428513,-0.255172413792995,-0.578571428571387,0.014285714285749,0.000000000000000,-0.000000000000001,-0.013793103448245,-0.000000000000001,0.013793103448245,-0.014285714285748,-0.000000000000000,2 -3983,3996,3998,4011,-0.241379310344750,-0.564285714285638,-0.248275862068872,-0.571428571428513,-0.248275862068872,-0.557142857142766,-0.255172413792995,-0.564285714285641,0.014285714285748,0.000000000000000,0.000000000000001,-0.013793103448245,-0.000000000000004,0.013793103448245,-0.014285714285745,-0.000000000000000,2 -3984,3997,3999,4012,-0.241379310344750,-0.549999999999890,-0.248275862068872,-0.557142857142766,-0.248275862068872,-0.542857142857020,-0.255172413792995,-0.549999999999895,0.014285714285748,-0.000000000000000,0.000000000000004,-0.013793103448245,-0.000000000000006,0.013793103448245,-0.014285714285745,0.000000000000000,2 -3985,3998,4000,4013,-0.241379310344750,-0.535714285714145,-0.248275862068872,-0.542857142857020,-0.248275862068872,-0.528571428571278,-0.255172413792995,-0.535714285714153,0.014285714285742,0.000000000000000,0.000000000000006,-0.013793103448245,-0.000000000000009,0.013793103448245,-0.014285714285740,-0.000000000000000,2 -3986,3999,4001,4014,-0.241379310344750,-0.521428571428403,-0.248275862068872,-0.528571428571278,-0.248275862068872,-0.514285714285539,-0.255172413792995,-0.521428571428415,0.014285714285742,0.000000000000000,0.000000000000009,-0.013793103448245,-0.000000000000015,0.013793103448245,-0.014285714285736,0.000000000000000,2 -3987,4000,4002,4015,-0.241379310344750,-0.507142857142674,-0.248275862068872,-0.514285714285539,-0.248275862068872,-0.499999999999825,-0.255172413792995,-0.507142857142691,0.014285714285716,0.000000000000000,0.000000000000015,-0.013793103448245,-0.000000000000018,0.013793103448245,-0.014285714285712,-0.000000000000000,2 -3988,4001,4003,4016,-0.241379310344750,-0.492857142856963,-0.248275862068872,-0.499999999999825,-0.248275862068872,-0.485714285714119,-0.255172413792995,-0.492857142856981,0.014285714285706,0.000000000000000,0.000000000000018,-0.013793103448245,-0.000000000000017,0.013793103448245,-0.014285714285708,-0.000000000000000,2 -3989,4002,4004,4017,-0.241379310344750,-0.478571428571271,-0.248275862068872,-0.485714285714119,-0.248275862068872,-0.471428571428439,-0.255172413792995,-0.478571428571286,0.014285714285678,0.000000000000000,0.000000000000017,-0.013793103448245,-0.000000000000014,0.013793103448245,-0.014285714285681,-0.000000000000000,2 -3990,4003,4005,4018,-0.241379310344750,-0.464285714285593,-0.248275862068872,-0.471428571428439,-0.248275862068872,-0.457142857142758,-0.255172413792995,-0.464285714285605,0.014285714285679,0.000000000000000,0.000000000000014,-0.013793103448245,-0.000000000000011,0.013793103448245,-0.014285714285682,-0.000000000000000,2 -3991,4004,4006,4019,-0.241379310344750,-0.449999999999914,-0.248275862068872,-0.457142857142758,-0.248275862068872,-0.442857142857078,-0.255172413792995,-0.449999999999923,0.014285714285679,0.000000000000000,0.000000000000011,-0.013793103448245,-0.000000000000008,0.013793103448245,-0.014285714285682,-0.000000000000000,2 -3992,4005,4007,4020,-0.241379310344750,-0.435714285714235,-0.248275862068872,-0.442857142857078,-0.248275862068872,-0.428571428571397,-0.255172413792995,-0.435714285714241,0.014285714285679,0.000000000000000,0.000000000000008,-0.013793103448245,-0.000000000000004,0.013793103448245,-0.014285714285682,-0.000000000000000,2 -3993,4006,4008,4021,-0.241379310344750,-0.421428571428537,-0.248275862068872,-0.428571428571397,-0.248275862068872,-0.414285714285680,-0.255172413792995,-0.421428571428540,0.014285714285717,0.000000000000000,0.000000000000004,-0.013793103448245,-0.000000000000003,0.013793103448245,-0.014285714285718,-0.000000000000000,2 -2419,3994,4007,4022,-0.248275862068872,-0.400000000000000,-0.241379310344750,-0.407142857142839,-0.248275862068872,-0.414285714285680,-0.255172413792995,-0.407142857142841,-0.000000000000000,0.013793103448245,0.014285714285678,-0.000000000000000,0.000000000000003,-0.013793103448245,-0.014285714285681,0.000000000000000,2 -545,3995,4010,4023,-0.262068965517112,-0.600000000000000,-0.255172413792995,-0.592857142857131,-0.262068965517112,-0.585714285714261,-0.268965517241230,-0.592857142857131,0.000000000000000,-0.013793103448235,0.014285714285739,0.000000000000000,-0.000000000000000,0.013793103448235,-0.014285714285739,-0.000000000000000,2 -3996,4009,4011,4024,-0.255172413792995,-0.578571428571387,-0.262068965517112,-0.585714285714261,-0.262068965517112,-0.571428571428514,-0.268965517241230,-0.578571428571388,0.014285714285748,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285747,-0.000000000000000,2 -3997,4010,4012,4025,-0.255172413792995,-0.564285714285641,-0.262068965517112,-0.571428571428514,-0.262068965517112,-0.557142857142770,-0.268965517241230,-0.564285714285643,0.014285714285745,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285743,-0.000000000000000,2 -3998,4011,4013,4026,-0.255172413792995,-0.549999999999895,-0.262068965517112,-0.557142857142770,-0.262068965517112,-0.542857142857026,-0.268965517241230,-0.549999999999900,0.014285714285745,-0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285742,-0.000000000000000,2 -3999,4012,4014,4027,-0.255172413792995,-0.535714285714153,-0.262068965517112,-0.542857142857026,-0.262068965517112,-0.528571428571287,-0.268965517241230,-0.535714285714161,0.014285714285740,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285737,-0.000000000000000,2 -4000,4013,4015,4028,-0.255172413792995,-0.521428571428415,-0.262068965517112,-0.528571428571287,-0.262068965517112,-0.514285714285554,-0.268965517241230,-0.521428571428426,0.014285714285736,-0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285731,-0.000000000000000,2 -4001,4014,4016,4029,-0.255172413792995,-0.507142857142691,-0.262068965517112,-0.514285714285554,-0.262068965517112,-0.499999999999844,-0.268965517241230,-0.507142857142707,0.014285714285712,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285708,-0.000000000000000,2 -4002,4015,4017,4030,-0.255172413792995,-0.492857142856981,-0.262068965517112,-0.499999999999844,-0.262068965517112,-0.485714285714135,-0.268965517241230,-0.492857142856998,0.014285714285708,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285709,-0.000000000000000,2 -4003,4016,4018,4031,-0.255172413792995,-0.478571428571286,-0.262068965517112,-0.485714285714135,-0.262068965517112,-0.471428571428453,-0.268965517241230,-0.478571428571302,0.014285714285681,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285684,-0.000000000000000,2 -4004,4017,4019,4032,-0.255172413792995,-0.464285714285605,-0.262068965517112,-0.471428571428453,-0.262068965517112,-0.457142857142769,-0.268965517241230,-0.464285714285617,0.014285714285682,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285685,-0.000000000000000,2 -4005,4018,4020,4033,-0.255172413792995,-0.449999999999923,-0.262068965517112,-0.457142857142769,-0.262068965517112,-0.442857142857085,-0.268965517241230,-0.449999999999932,0.014285714285682,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285686,-0.000000000000000,2 -4006,4019,4021,4034,-0.255172413792995,-0.435714285714241,-0.262068965517112,-0.442857142857085,-0.262068965517112,-0.428571428571402,-0.268965517241230,-0.435714285714247,0.014285714285682,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285685,-0.000000000000000,2 -4007,4020,4022,4035,-0.255172413792995,-0.421428571428540,-0.262068965517112,-0.428571428571402,-0.262068965517112,-0.414285714285683,-0.268965517241230,-0.421428571428544,0.014285714285718,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285720,-0.000000000000000,2 -2478,4008,4021,4036,-0.262068965517112,-0.400000000000000,-0.255172413792995,-0.407142857142841,-0.262068965517112,-0.414285714285683,-0.268965517241230,-0.407142857142842,-0.000000000000000,0.013793103448235,0.014285714285681,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285684,0.000000000000000,2 -539,4009,4024,4037,-0.275862068965347,-0.600000000000000,-0.268965517241230,-0.592857142857131,-0.275862068965347,-0.585714285714261,-0.282758620689465,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285739,0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285739,-0.000000000000000,2 -4010,4023,4025,4038,-0.268965517241230,-0.578571428571388,-0.275862068965347,-0.585714285714261,-0.275862068965347,-0.571428571428515,-0.282758620689465,-0.578571428571388,0.014285714285747,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285745,-0.000000000000000,2 -4011,4024,4026,4039,-0.268965517241230,-0.564285714285643,-0.275862068965347,-0.571428571428515,-0.275862068965347,-0.557142857142774,-0.282758620689465,-0.564285714285645,0.014285714285743,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285740,-0.000000000000000,2 -4012,4025,4027,4040,-0.268965517241230,-0.549999999999900,-0.275862068965347,-0.557142857142774,-0.275862068965347,-0.542857142857033,-0.282758620689465,-0.549999999999906,0.014285714285742,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285740,-0.000000000000000,2 -4013,4026,4028,4041,-0.268965517241230,-0.535714285714161,-0.275862068965347,-0.542857142857033,-0.275862068965347,-0.528571428571296,-0.282758620689465,-0.535714285714168,0.014285714285737,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285735,-0.000000000000000,2 -4014,4027,4029,4042,-0.268965517241230,-0.521428571428426,-0.275862068965347,-0.528571428571296,-0.275862068965347,-0.514285714285568,-0.282758620689465,-0.521428571428438,0.014285714285731,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285725,-0.000000000000000,2 -4015,4028,4030,4043,-0.268965517241230,-0.507142857142707,-0.275862068965347,-0.514285714285568,-0.275862068965347,-0.499999999999862,-0.282758620689465,-0.507142857142723,0.014285714285708,0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285704,-0.000000000000000,2 -4016,4029,4031,4044,-0.268965517241230,-0.492857142856998,-0.275862068965347,-0.499999999999862,-0.275862068965347,-0.485714285714152,-0.282758620689465,-0.492857142857016,0.014285714285709,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285711,-0.000000000000000,2 -4017,4030,4032,4045,-0.268965517241230,-0.478571428571302,-0.275862068965347,-0.485714285714152,-0.275862068965347,-0.471428571428467,-0.282758620689465,-0.478571428571317,0.014285714285684,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285687,-0.000000000000000,2 -4018,4031,4033,4046,-0.268965517241230,-0.464285714285617,-0.275862068965347,-0.471428571428467,-0.275862068965347,-0.457142857142780,-0.282758620689465,-0.464285714285630,0.014285714285685,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285688,-0.000000000000000,2 -4019,4032,4034,4047,-0.268965517241230,-0.449999999999932,-0.275862068965347,-0.457142857142780,-0.275862068965347,-0.442857142857093,-0.282758620689465,-0.449999999999941,0.014285714285686,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285689,-0.000000000000000,2 -4020,4033,4035,4048,-0.268965517241230,-0.435714285714247,-0.275862068965347,-0.442857142857093,-0.275862068965347,-0.428571428571406,-0.282758620689465,-0.435714285714252,0.014285714285685,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285688,-0.000000000000000,2 -4021,4034,4036,4049,-0.268965517241230,-0.421428571428544,-0.275862068965347,-0.428571428571406,-0.275862068965347,-0.414285714285686,-0.282758620689465,-0.421428571428548,0.014285714285720,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285721,-0.000000000000000,2 -2537,4022,4035,4050,-0.275862068965347,-0.400000000000000,-0.268965517241230,-0.407142857142842,-0.275862068965347,-0.414285714285686,-0.282758620689465,-0.407142857142844,-0.000000000000000,0.013793103448235,0.014285714285684,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285687,0.000000000000000,2 -533,4023,4038,4051,-0.289655172413583,-0.600000000000000,-0.282758620689465,-0.592857142857130,-0.289655172413583,-0.585714285714261,-0.296551724137700,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285739,0.000000000000000,-0.000000000000000,0.013793103448235,-0.014285714285739,-0.000000000000000,2 -4024,4037,4039,4052,-0.282758620689465,-0.578571428571388,-0.289655172413583,-0.585714285714261,-0.289655172413583,-0.571428571428516,-0.296551724137700,-0.578571428571389,0.014285714285745,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285745,-0.000000000000000,2 -4025,4038,4040,4053,-0.282758620689465,-0.564285714285645,-0.289655172413583,-0.571428571428516,-0.289655172413583,-0.557142857142777,-0.296551724137700,-0.564285714285648,0.014285714285740,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285737,-0.000000000000000,2 -4026,4039,4041,4054,-0.282758620689465,-0.549999999999906,-0.289655172413583,-0.557142857142777,-0.289655172413583,-0.542857142857039,-0.296551724137700,-0.549999999999911,0.014285714285740,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285737,-0.000000000000000,2 -4027,4040,4042,4055,-0.282758620689465,-0.535714285714168,-0.289655172413583,-0.542857142857039,-0.289655172413583,-0.528571428571305,-0.296551724137700,-0.535714285714176,0.014285714285735,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285732,-0.000000000000000,2 -4028,4041,4043,4056,-0.282758620689465,-0.521428571428438,-0.289655172413583,-0.528571428571305,-0.289655172413583,-0.514285714285583,-0.296551724137700,-0.521428571428450,0.014285714285725,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285719,-0.000000000000000,2 -4029,4042,4044,4057,-0.282758620689465,-0.507142857142723,-0.289655172413583,-0.514285714285583,-0.289655172413583,-0.499999999999880,-0.296551724137700,-0.507142857142740,0.014285714285704,0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285701,0.000000000000000,2 -4030,4043,4045,4058,-0.282758620689465,-0.492857142857016,-0.289655172413583,-0.499999999999880,-0.289655172413583,-0.485714285714169,-0.296551724137700,-0.492857142857034,0.014285714285711,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285712,-0.000000000000000,2 -4031,4044,4046,4059,-0.282758620689465,-0.478571428571317,-0.289655172413583,-0.485714285714169,-0.289655172413583,-0.471428571428481,-0.296551724137700,-0.478571428571333,0.014285714285687,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285690,-0.000000000000000,2 -4032,4045,4047,4060,-0.282758620689465,-0.464285714285630,-0.289655172413583,-0.471428571428481,-0.289655172413583,-0.457142857142791,-0.296551724137700,-0.464285714285642,0.014285714285688,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285691,0.000000000000000,2 -4033,4046,4048,4061,-0.282758620689465,-0.449999999999941,-0.289655172413583,-0.457142857142791,-0.289655172413583,-0.442857142857100,-0.296551724137700,-0.449999999999950,0.014285714285689,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000008,0.013793103448235,-0.014285714285692,-0.000000000000000,2 -4034,4047,4049,4062,-0.282758620689465,-0.435714285714252,-0.289655172413583,-0.442857142857100,-0.289655172413583,-0.428571428571411,-0.296551724137700,-0.435714285714258,0.014285714285688,0.000000000000000,0.000000000000008,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285691,0.000000000000000,2 -4035,4048,4050,4063,-0.282758620689465,-0.421428571428548,-0.289655172413583,-0.428571428571411,-0.289655172413583,-0.414285714285689,-0.296551724137700,-0.421428571428552,0.014285714285721,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285723,-0.000000000000000,2 -2596,4036,4049,4064,-0.289655172413583,-0.400000000000000,-0.282758620689465,-0.407142857142844,-0.289655172413583,-0.414285714285689,-0.296551724137700,-0.407142857142845,-0.000000000000000,0.013793103448235,0.014285714285687,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285690,0.000000000000000,2 -527,4037,4052,4065,-0.303448275861818,-0.600000000000000,-0.296551724137700,-0.592857142857130,-0.303448275861818,-0.585714285714261,-0.310344827585935,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285739,0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285740,-0.000000000000000,2 -4038,4051,4053,4066,-0.296551724137700,-0.578571428571389,-0.303448275861818,-0.585714285714261,-0.303448275861818,-0.571428571428517,-0.310344827585935,-0.578571428571389,0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285743,0.000000000000000,2 -4039,4052,4054,4067,-0.296551724137700,-0.564285714285648,-0.303448275861818,-0.571428571428517,-0.303448275861818,-0.557142857142781,-0.310344827585935,-0.564285714285650,0.014285714285737,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285734,-0.000000000000000,2 -4040,4053,4055,4068,-0.296551724137700,-0.549999999999911,-0.303448275861818,-0.557142857142781,-0.303448275861818,-0.542857142857045,-0.310344827585935,-0.549999999999916,0.014285714285737,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285734,-0.000000000000000,2 -4041,4054,4056,4069,-0.296551724137700,-0.535714285714176,-0.303448275861818,-0.542857142857045,-0.303448275861818,-0.528571428571314,-0.310344827585935,-0.535714285714184,0.014285714285732,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285730,-0.000000000000000,2 -4042,4055,4057,4070,-0.296551724137700,-0.521428571428450,-0.303448275861818,-0.528571428571314,-0.303448275861818,-0.514285714285598,-0.310344827585935,-0.521428571428462,0.014285714285719,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285714,-0.000000000000000,2 -4043,4056,4058,4071,-0.296551724137700,-0.507142857142740,-0.303448275861818,-0.514285714285598,-0.303448275861818,-0.499999999999899,-0.310344827585935,-0.507142857142757,0.014285714285701,-0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285697,0.000000000000000,2 -4044,4057,4059,4072,-0.296551724137700,-0.492857142857034,-0.303448275861818,-0.499999999999899,-0.303448275861818,-0.485714285714186,-0.310344827585935,-0.492857142857051,0.014285714285712,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285714,-0.000000000000000,2 -4045,4058,4060,4073,-0.296551724137700,-0.478571428571333,-0.303448275861818,-0.485714285714186,-0.303448275861818,-0.471428571428495,-0.310344827585935,-0.478571428571348,0.014285714285690,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285693,0.000000000000000,2 -4046,4059,4061,4074,-0.296551724137700,-0.464285714285642,-0.303448275861818,-0.471428571428495,-0.303448275861818,-0.457142857142802,-0.310344827585935,-0.464285714285654,0.014285714285691,-0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285695,-0.000000000000000,2 -4047,4060,4062,4075,-0.296551724137700,-0.449999999999950,-0.303448275861818,-0.457142857142802,-0.303448275861818,-0.442857142857108,-0.310344827585935,-0.449999999999959,0.014285714285692,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000008,0.013793103448235,-0.014285714285695,-0.000000000000000,2 -4048,4061,4063,4076,-0.296551724137700,-0.435714285714258,-0.303448275861818,-0.442857142857108,-0.303448275861818,-0.428571428571415,-0.310344827585935,-0.435714285714264,0.014285714285691,-0.000000000000000,0.000000000000008,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285695,0.000000000000000,2 -4049,4062,4064,4077,-0.296551724137700,-0.421428571428552,-0.303448275861818,-0.428571428571415,-0.303448275861818,-0.414285714285692,-0.310344827585935,-0.421428571428555,0.014285714285723,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285724,-0.000000000000000,2 -2655,4050,4063,4078,-0.303448275861818,-0.400000000000000,-0.296551724137700,-0.407142857142845,-0.303448275861818,-0.414285714285692,-0.310344827585935,-0.407142857142847,-0.000000000000000,0.013793103448235,0.014285714285690,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285693,-0.000000000000000,2 -521,4051,4066,4079,-0.317241379310053,-0.600000000000000,-0.310344827585935,-0.592857142857130,-0.317241379310053,-0.585714285714260,-0.324137931034170,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285740,0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285740,-0.000000000000000,2 -4052,4065,4067,4080,-0.310344827585935,-0.578571428571389,-0.317241379310053,-0.585714285714260,-0.317241379310053,-0.571428571428518,-0.324137931034170,-0.578571428571389,0.014285714285743,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285742,0.000000000000000,2 -4053,4066,4068,4081,-0.310344827585935,-0.564285714285650,-0.317241379310053,-0.571428571428518,-0.317241379310053,-0.557142857142785,-0.324137931034170,-0.564285714285652,0.014285714285734,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285732,-0.000000000000000,2 -4054,4067,4069,4082,-0.310344827585935,-0.549999999999916,-0.317241379310053,-0.557142857142785,-0.317241379310053,-0.542857142857052,-0.324137931034170,-0.549999999999921,0.014285714285734,0.000000000000000,0.000000000000003,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285731,0.000000000000000,2 -4055,4068,4070,4083,-0.310344827585935,-0.535714285714184,-0.317241379310053,-0.542857142857052,-0.317241379310053,-0.528571428571323,-0.324137931034170,-0.535714285714191,0.014285714285730,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285727,-0.000000000000000,2 -4056,4069,4071,4084,-0.310344827585935,-0.521428571428462,-0.317241379310053,-0.528571428571323,-0.317241379310053,-0.514285714285612,-0.324137931034170,-0.521428571428474,0.014285714285714,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285708,-0.000000000000000,2 -4057,4070,4072,4085,-0.310344827585935,-0.507142857142757,-0.317241379310053,-0.514285714285612,-0.317241379310053,-0.499999999999917,-0.324137931034170,-0.507142857142773,0.014285714285697,-0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285694,-0.000000000000000,2 -4058,4071,4073,4086,-0.310344827585935,-0.492857142857051,-0.317241379310053,-0.499999999999917,-0.317241379310053,-0.485714285714203,-0.324137931034170,-0.492857142857069,0.014285714285714,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285715,-0.000000000000000,2 -4059,4072,4074,4087,-0.310344827585935,-0.478571428571348,-0.317241379310053,-0.485714285714203,-0.317241379310053,-0.471428571428509,-0.324137931034170,-0.478571428571363,0.014285714285693,-0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285696,-0.000000000000000,2 -4060,4073,4075,4088,-0.310344827585935,-0.464285714285654,-0.317241379310053,-0.471428571428509,-0.317241379310053,-0.457142857142812,-0.324137931034170,-0.464285714285667,0.014285714285695,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285698,-0.000000000000000,2 -4061,4074,4076,4089,-0.310344827585935,-0.449999999999959,-0.317241379310053,-0.457142857142812,-0.317241379310053,-0.442857142857115,-0.324137931034170,-0.449999999999969,0.014285714285695,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285699,-0.000000000000000,2 -4062,4075,4077,4090,-0.310344827585935,-0.435714285714264,-0.317241379310053,-0.442857142857115,-0.317241379310053,-0.428571428571419,-0.324137931034170,-0.435714285714270,0.014285714285695,-0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285698,-0.000000000000000,2 -4063,4076,4078,4091,-0.310344827585935,-0.421428571428555,-0.317241379310053,-0.428571428571419,-0.317241379310053,-0.414285714285695,-0.324137931034170,-0.421428571428559,0.014285714285724,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285725,-0.000000000000000,2 -2714,4064,4077,4092,-0.317241379310053,-0.400000000000000,-0.310344827585935,-0.407142857142847,-0.317241379310053,-0.414285714285695,-0.324137931034170,-0.407142857142848,-0.000000000000000,0.013793103448235,0.014285714285693,0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285696,0.000000000000000,2 -515,4065,4080,4093,-0.331034482758288,-0.600000000000000,-0.324137931034170,-0.592857142857130,-0.331034482758288,-0.585714285714260,-0.337931034482406,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285740,0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285740,-0.000000000000000,2 -4066,4079,4081,4094,-0.324137931034170,-0.578571428571389,-0.331034482758288,-0.585714285714260,-0.331034482758288,-0.571428571428518,-0.337931034482406,-0.578571428571389,0.014285714285742,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285741,-0.000000000000000,2 -4067,4080,4082,4095,-0.324137931034170,-0.564285714285652,-0.331034482758288,-0.571428571428518,-0.331034482758288,-0.557142857142788,-0.337931034482406,-0.564285714285655,0.014285714285732,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285729,-0.000000000000000,2 -4068,4081,4083,4096,-0.324137931034170,-0.549999999999921,-0.331034482758288,-0.557142857142788,-0.331034482758288,-0.542857142857058,-0.337931034482406,-0.549999999999926,0.014285714285731,-0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285729,-0.000000000000000,2 -4069,4082,4084,4097,-0.324137931034170,-0.535714285714191,-0.331034482758288,-0.542857142857058,-0.331034482758288,-0.528571428571332,-0.337931034482406,-0.535714285714199,0.014285714285727,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285725,-0.000000000000000,2 -4070,4083,4085,4098,-0.324137931034170,-0.521428571428474,-0.331034482758288,-0.528571428571332,-0.331034482758288,-0.514285714285627,-0.337931034482406,-0.521428571428485,0.014285714285708,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285702,-0.000000000000000,2 -4071,4084,4086,4099,-0.324137931034170,-0.507142857142773,-0.331034482758288,-0.514285714285627,-0.331034482758288,-0.499999999999935,-0.337931034482406,-0.507142857142789,0.014285714285694,0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285690,-0.000000000000000,2 -4072,4085,4087,4100,-0.324137931034170,-0.492857142857069,-0.331034482758288,-0.499999999999935,-0.331034482758288,-0.485714285714220,-0.337931034482406,-0.492857142857086,0.014285714285715,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285716,-0.000000000000000,2 -4073,4086,4088,4101,-0.324137931034170,-0.478571428571363,-0.331034482758288,-0.485714285714220,-0.331034482758288,-0.471428571428523,-0.337931034482406,-0.478571428571379,0.014285714285696,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285699,-0.000000000000000,2 -4074,4087,4089,4102,-0.324137931034170,-0.464285714285667,-0.331034482758288,-0.471428571428523,-0.331034482758288,-0.457142857142823,-0.337931034482406,-0.464285714285679,0.014285714285698,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285701,-0.000000000000000,2 -4075,4088,4090,4103,-0.324137931034170,-0.449999999999969,-0.331034482758288,-0.457142857142823,-0.331034482758288,-0.442857142857123,-0.337931034482406,-0.449999999999978,0.014285714285699,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285702,-0.000000000000000,2 -4076,4089,4091,4104,-0.324137931034170,-0.435714285714270,-0.331034482758288,-0.442857142857123,-0.331034482758288,-0.428571428571424,-0.337931034482406,-0.435714285714276,0.014285714285698,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285701,-0.000000000000000,2 -4077,4090,4092,4105,-0.324137931034170,-0.421428571428559,-0.331034482758288,-0.428571428571424,-0.331034482758288,-0.414285714285698,-0.337931034482406,-0.421428571428563,0.014285714285725,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285727,-0.000000000000000,2 -2773,4078,4091,4106,-0.331034482758288,-0.400000000000000,-0.324137931034170,-0.407142857142848,-0.331034482758288,-0.414285714285698,-0.337931034482406,-0.407142857142850,-0.000000000000000,0.013793103448235,0.014285714285696,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285699,0.000000000000000,2 -509,4079,4094,4107,-0.344827586206523,-0.600000000000000,-0.337931034482406,-0.592857142857130,-0.344827586206523,-0.585714285714260,-0.351724137930641,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285740,0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285741,0.000000000000000,2 -4080,4093,4095,4108,-0.337931034482406,-0.578571428571389,-0.344827586206523,-0.585714285714260,-0.344827586206523,-0.571428571428519,-0.351724137930641,-0.578571428571390,0.014285714285741,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285739,-0.000000000000000,2 -4081,4094,4096,4109,-0.337931034482406,-0.564285714285655,-0.344827586206523,-0.571428571428519,-0.344827586206523,-0.557142857142792,-0.351724137930641,-0.564285714285657,0.014285714285729,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285726,-0.000000000000000,2 -4082,4095,4097,4110,-0.337931034482406,-0.549999999999926,-0.344827586206523,-0.557142857142792,-0.344827586206523,-0.542857142857065,-0.351724137930641,-0.549999999999931,0.014285714285729,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285726,0.000000000000000,2 -4083,4096,4098,4111,-0.337931034482406,-0.535714285714199,-0.344827586206523,-0.542857142857065,-0.344827586206523,-0.528571428571341,-0.351724137930640,-0.535714285714207,0.014285714285725,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285722,-0.000000000000000,2 -4084,4097,4099,4112,-0.337931034482406,-0.521428571428485,-0.344827586206523,-0.528571428571341,-0.344827586206523,-0.514285714285642,-0.351724137930640,-0.521428571428497,0.014285714285702,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285696,-0.000000000000000,2 -4085,4098,4100,4113,-0.337931034482406,-0.507142857142789,-0.344827586206523,-0.514285714285642,-0.344827586206523,-0.499999999999954,-0.351724137930641,-0.507142857142806,0.014285714285690,0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285686,-0.000000000000000,2 -4086,4099,4101,4114,-0.337931034482406,-0.492857142857086,-0.344827586206523,-0.499999999999954,-0.344827586206523,-0.485714285714237,-0.351724137930641,-0.492857142857104,0.014285714285716,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285718,-0.000000000000000,2 -4087,4100,4102,4115,-0.337931034482406,-0.478571428571379,-0.344827586206523,-0.485714285714237,-0.344827586206523,-0.471428571428536,-0.351724137930641,-0.478571428571394,0.014285714285699,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285702,-0.000000000000000,2 -4088,4101,4103,4116,-0.337931034482406,-0.464285714285679,-0.344827586206523,-0.471428571428536,-0.344827586206523,-0.457142857142834,-0.351724137930641,-0.464285714285691,0.014285714285701,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285704,-0.000000000000000,2 -4089,4102,4104,4117,-0.337931034482406,-0.449999999999978,-0.344827586206523,-0.457142857142834,-0.344827586206523,-0.442857142857131,-0.351724137930641,-0.449999999999987,0.014285714285702,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000008,0.013793103448235,-0.014285714285705,0.000000000000000,2 -4090,4103,4105,4118,-0.337931034482406,-0.435714285714276,-0.344827586206523,-0.442857142857131,-0.344827586206523,-0.428571428571428,-0.351724137930641,-0.435714285714282,0.014285714285701,0.000000000000000,0.000000000000008,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285704,-0.000000000000000,2 -4091,4104,4106,4119,-0.337931034482406,-0.421428571428563,-0.344827586206523,-0.428571428571428,-0.344827586206523,-0.414285714285701,-0.351724137930641,-0.421428571428566,0.014285714285727,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285728,-0.000000000000000,2 -2832,4092,4105,4120,-0.344827586206523,-0.400000000000000,-0.337931034482406,-0.407142857142850,-0.344827586206523,-0.414285714285701,-0.351724137930641,-0.407142857142851,-0.000000000000000,0.013793103448235,0.014285714285699,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285702,0.000000000000000,2 -503,4093,4108,4121,-0.358620689654758,-0.600000000000000,-0.351724137930641,-0.592857142857130,-0.358620689654758,-0.585714285714259,-0.365517241378876,-0.592857142857130,0.000000000000000,-0.013793103448235,0.014285714285741,-0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285741,0.000000000000000,2 -4094,4107,4109,4122,-0.351724137930641,-0.578571428571390,-0.358620689654758,-0.585714285714259,-0.358620689654758,-0.571428571428521,-0.365517241378876,-0.578571428571390,0.014285714285739,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285738,-0.000000000000000,2 -4095,4108,4110,4123,-0.351724137930641,-0.564285714285657,-0.358620689654758,-0.571428571428521,-0.358620689654758,-0.557142857142796,-0.365517241378876,-0.564285714285659,0.014285714285726,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285724,-0.000000000000000,2 -4096,4109,4111,4124,-0.351724137930641,-0.549999999999931,-0.358620689654758,-0.557142857142796,-0.358620689654758,-0.542857142857071,-0.365517241378876,-0.549999999999936,0.014285714285726,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285723,0.000000000000000,2 -4097,4110,4112,4125,-0.351724137930640,-0.535714285714207,-0.358620689654758,-0.542857142857071,-0.358620689654758,-0.528571428571350,-0.365517241378876,-0.535714285714214,0.014285714285722,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285720,-0.000000000000000,2 -4098,4111,4113,4126,-0.351724137930640,-0.521428571428497,-0.358620689654758,-0.528571428571350,-0.358620689654758,-0.514285714285656,-0.365517241378876,-0.521428571428509,0.014285714285696,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285691,-0.000000000000000,2 -4099,4112,4114,4127,-0.351724137930641,-0.507142857142806,-0.358620689654758,-0.514285714285656,-0.358620689654758,-0.499999999999972,-0.365517241378876,-0.507142857142822,0.014285714285686,0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285683,0.000000000000000,2 -4100,4113,4115,4128,-0.351724137930641,-0.492857142857104,-0.358620689654758,-0.499999999999972,-0.358620689654758,-0.485714285714254,-0.365517241378876,-0.492857142857122,0.014285714285718,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285719,-0.000000000000000,2 -4101,4114,4116,4129,-0.351724137930641,-0.478571428571394,-0.358620689654758,-0.485714285714254,-0.358620689654758,-0.471428571428550,-0.365517241378876,-0.478571428571410,0.014285714285702,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285705,-0.000000000000000,2 -4102,4115,4117,4130,-0.351724137930641,-0.464285714285691,-0.358620689654758,-0.471428571428550,-0.358620689654758,-0.457142857142845,-0.365517241378876,-0.464285714285704,0.014285714285704,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285707,-0.000000000000000,2 -4103,4116,4118,4131,-0.351724137930641,-0.449999999999987,-0.358620689654758,-0.457142857142845,-0.358620689654758,-0.442857142857138,-0.365517241378876,-0.449999999999996,0.014285714285705,-0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285708,-0.000000000000000,2 -4104,4117,4119,4132,-0.351724137930641,-0.435714285714282,-0.358620689654758,-0.442857142857138,-0.358620689654758,-0.428571428571432,-0.365517241378876,-0.435714285714288,0.014285714285704,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285707,-0.000000000000000,2 -4105,4118,4120,4133,-0.351724137930641,-0.421428571428566,-0.358620689654758,-0.428571428571432,-0.358620689654758,-0.414285714285704,-0.365517241378876,-0.421428571428570,0.014285714285728,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285729,-0.000000000000000,2 -2891,4106,4119,4134,-0.358620689654758,-0.400000000000000,-0.351724137930641,-0.407142857142851,-0.358620689654758,-0.414285714285704,-0.365517241378876,-0.407142857142853,-0.000000000000000,0.013793103448235,0.014285714285702,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285705,0.000000000000000,2 -497,4107,4122,4135,-0.372413793102993,-0.600000000000000,-0.365517241378876,-0.592857142857130,-0.372413793102993,-0.585714285714259,-0.379310344827111,-0.592857142857129,0.000000000000000,-0.013793103448235,0.014285714285741,-0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285741,0.000000000000000,2 -4108,4121,4123,4136,-0.365517241378876,-0.578571428571390,-0.372413793102993,-0.585714285714259,-0.372413793102993,-0.571428571428521,-0.379310344827111,-0.578571428571390,0.014285714285738,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285737,-0.000000000000000,2 -4109,4122,4124,4137,-0.365517241378876,-0.564285714285659,-0.372413793102993,-0.571428571428521,-0.372413793102993,-0.557142857142799,-0.379310344827111,-0.564285714285662,0.014285714285724,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285721,-0.000000000000000,2 -4110,4123,4125,4138,-0.365517241378876,-0.549999999999936,-0.372413793102993,-0.557142857142799,-0.372413793102993,-0.542857142857077,-0.379310344827111,-0.549999999999941,0.014285714285723,-0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000006,0.013793103448235,-0.014285714285721,-0.000000000000000,2 -4111,4124,4126,4139,-0.365517241378876,-0.535714285714214,-0.372413793102993,-0.542857142857077,-0.372413793102993,-0.528571428571359,-0.379310344827111,-0.535714285714222,0.014285714285720,0.000000000000000,0.000000000000006,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285717,-0.000000000000000,2 -4112,4125,4127,4140,-0.365517241378876,-0.521428571428509,-0.372413793102993,-0.528571428571359,-0.372413793102993,-0.514285714285671,-0.379310344827111,-0.521428571428521,0.014285714285691,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285685,-0.000000000000000,2 -4113,4126,4128,4141,-0.365517241378876,-0.507142857142822,-0.372413793102993,-0.514285714285671,-0.372413793102993,-0.499999999999990,-0.379310344827111,-0.507142857142839,0.014285714285683,-0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285679,0.000000000000000,2 -4114,4127,4129,4142,-0.365517241378876,-0.492857142857122,-0.372413793102993,-0.499999999999990,-0.372413793102993,-0.485714285714270,-0.379310344827111,-0.492857142857139,0.014285714285719,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285721,-0.000000000000000,2 -4115,4128,4130,4143,-0.365517241378876,-0.478571428571410,-0.372413793102993,-0.485714285714270,-0.372413793102993,-0.471428571428564,-0.379310344827111,-0.478571428571425,0.014285714285705,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285707,-0.000000000000000,2 -4116,4129,4131,4144,-0.365517241378876,-0.464285714285704,-0.372413793102993,-0.471428571428564,-0.372413793102993,-0.457142857142856,-0.379310344827111,-0.464285714285716,0.014285714285707,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285710,-0.000000000000000,2 -4117,4130,4132,4145,-0.365517241378876,-0.449999999999996,-0.372413793102993,-0.457142857142856,-0.372413793102993,-0.442857142857146,-0.379310344827111,-0.450000000000005,0.014285714285708,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000008,0.013793103448235,-0.014285714285712,-0.000000000000000,2 -4118,4131,4133,4146,-0.365517241378876,-0.435714285714288,-0.372413793102993,-0.442857142857146,-0.372413793102993,-0.428571428571437,-0.379310344827111,-0.435714285714294,0.014285714285707,0.000000000000000,0.000000000000008,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285710,-0.000000000000000,2 -4119,4132,4134,4147,-0.365517241378876,-0.421428571428570,-0.372413793102993,-0.428571428571437,-0.372413793102993,-0.414285714285707,-0.379310344827111,-0.421428571428574,0.014285714285729,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285731,-0.000000000000000,2 -2950,4120,4133,4148,-0.372413793102993,-0.400000000000000,-0.365517241378876,-0.407142857142853,-0.372413793102993,-0.414285714285707,-0.379310344827111,-0.407142857142854,-0.000000000000000,0.013793103448235,0.014285714285705,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285708,0.000000000000000,2 -491,4121,4136,4149,-0.386206896551228,-0.600000000000000,-0.379310344827111,-0.592857142857129,-0.386206896551228,-0.585714285714259,-0.393103448275346,-0.592857142857129,0.000000000000000,-0.013793103448235,0.014285714285741,-0.000000000000000,0.000000000000000,0.013793103448235,-0.014285714285741,-0.000000000000000,2 -4122,4135,4137,4150,-0.379310344827111,-0.578571428571390,-0.386206896551228,-0.585714285714259,-0.386206896551228,-0.571428571428522,-0.393103448275346,-0.578571428571391,0.014285714285737,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000001,0.013793103448235,-0.014285714285736,-0.000000000000000,2 -4123,4136,4138,4151,-0.379310344827111,-0.564285714285662,-0.386206896551228,-0.571428571428522,-0.386206896551228,-0.557142857142803,-0.393103448275346,-0.564285714285664,0.014285714285721,0.000000000000000,0.000000000000001,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285718,-0.000000000000000,2 -4124,4137,4139,4152,-0.379310344827111,-0.549999999999941,-0.386206896551228,-0.557142857142803,-0.386206896551228,-0.542857142857084,-0.393103448275346,-0.549999999999946,0.014285714285721,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285718,-0.000000000000000,2 -4125,4138,4140,4153,-0.379310344827111,-0.535714285714222,-0.386206896551228,-0.542857142857084,-0.386206896551228,-0.528571428571368,-0.393103448275346,-0.535714285714230,0.014285714285717,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000009,0.013793103448235,-0.014285714285715,-0.000000000000000,2 -4126,4139,4141,4154,-0.379310344827111,-0.521428571428521,-0.386206896551228,-0.528571428571368,-0.386206896551228,-0.514285714285686,-0.393103448275346,-0.521428571428532,0.014285714285685,0.000000000000000,0.000000000000009,-0.013793103448235,-0.000000000000015,0.013793103448235,-0.014285714285679,-0.000000000000000,2 -4127,4140,4142,4155,-0.379310344827111,-0.507142857142839,-0.386206896551228,-0.514285714285686,-0.386206896551228,-0.500000000000009,-0.393103448275346,-0.507142857142855,0.014285714285679,-0.000000000000000,0.000000000000015,-0.013793103448235,-0.000000000000018,0.013793103448235,-0.014285714285675,0.000000000000000,2 -4128,4141,4143,4156,-0.379310344827111,-0.492857142857139,-0.386206896551228,-0.500000000000009,-0.386206896551228,-0.485714285714287,-0.393103448275346,-0.492857142857157,0.014285714285721,0.000000000000000,0.000000000000018,-0.013793103448235,-0.000000000000017,0.013793103448235,-0.014285714285722,-0.000000000000000,2 -4129,4142,4144,4157,-0.379310344827111,-0.478571428571425,-0.386206896551228,-0.485714285714287,-0.386206896551228,-0.471428571428578,-0.393103448275346,-0.478571428571441,0.014285714285707,0.000000000000000,0.000000000000017,-0.013793103448235,-0.000000000000014,0.013793103448235,-0.014285714285710,0.000000000000000,2 -4130,4143,4145,4158,-0.379310344827111,-0.464285714285716,-0.386206896551228,-0.471428571428578,-0.386206896551228,-0.457142857142866,-0.393103448275346,-0.464285714285729,0.014285714285710,0.000000000000000,0.000000000000014,-0.013793103448235,-0.000000000000011,0.013793103448235,-0.014285714285714,-0.000000000000000,2 -4131,4144,4146,4159,-0.379310344827111,-0.450000000000005,-0.386206896551228,-0.457142857142866,-0.386206896551228,-0.442857142857153,-0.393103448275346,-0.450000000000014,0.014285714285712,0.000000000000000,0.000000000000011,-0.013793103448235,-0.000000000000007,0.013793103448235,-0.014285714285715,-0.000000000000000,2 -4132,4145,4147,4160,-0.379310344827111,-0.435714285714294,-0.386206896551228,-0.442857142857153,-0.386206896551228,-0.428571428571441,-0.393103448275346,-0.435714285714300,0.014285714285710,0.000000000000000,0.000000000000007,-0.013793103448235,-0.000000000000004,0.013793103448235,-0.014285714285713,-0.000000000000000,2 -4133,4146,4148,4161,-0.379310344827111,-0.421428571428574,-0.386206896551228,-0.428571428571441,-0.386206896551228,-0.414285714285710,-0.393103448275346,-0.421428571428577,0.014285714285731,0.000000000000000,0.000000000000004,-0.013793103448235,-0.000000000000003,0.013793103448235,-0.014285714285732,-0.000000000000000,2 -3009,4134,4147,4162,-0.386206896551228,-0.400000000000000,-0.379310344827111,-0.407142857142854,-0.386206896551228,-0.414285714285710,-0.393103448275346,-0.407142857142856,-0.000000000000000,0.013793103448235,0.014285714285708,-0.000000000000000,0.000000000000003,-0.013793103448235,-0.014285714285711,0.000000000000000,2 -485,4135,4150,4163,-0.399999999999487,-0.600000000000000,-0.393103448275346,-0.592857142857129,-0.399999999999487,-0.585714285714259,-0.406896551723629,-0.592857142857129,0.000000000000000,-0.013793103448283,0.014285714285741,0.000000000000000,0.000000000000000,0.013793103448283,-0.014285714285741,-0.000000000000000,2 -4136,4149,4151,4164,-0.393103448275346,-0.578571428571391,-0.399999999999487,-0.585714285714259,-0.399999999999487,-0.571428571428523,-0.406896551723629,-0.578571428571391,0.014285714285736,0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000001,0.013793103448283,-0.014285714285735,-0.000000000000000,2 -4137,4150,4152,4165,-0.393103448275346,-0.564285714285664,-0.399999999999487,-0.571428571428523,-0.399999999999487,-0.557142857142807,-0.406896551723629,-0.564285714285666,0.014285714285718,0.000000000000000,0.000000000000001,-0.013793103448283,-0.000000000000004,0.013793103448283,-0.014285714285715,-0.000000000000000,2 -4138,4151,4153,4166,-0.393103448275346,-0.549999999999946,-0.399999999999487,-0.557142857142807,-0.399999999999487,-0.542857142857090,-0.406896551723629,-0.549999999999951,0.014285714285718,0.000000000000000,0.000000000000004,-0.013793103448283,-0.000000000000006,0.013793103448283,-0.014285714285715,-0.000000000000000,2 -4139,4152,4154,4167,-0.393103448275346,-0.535714285714230,-0.399999999999487,-0.542857142857090,-0.399999999999487,-0.528571428571377,-0.406896551723629,-0.535714285714237,0.014285714285715,0.000000000000000,0.000000000000006,-0.013793103448283,-0.000000000000009,0.013793103448283,-0.014285714285712,-0.000000000000000,2 -4140,4153,4155,4168,-0.393103448275346,-0.521428571428532,-0.399999999999487,-0.528571428571377,-0.399999999999487,-0.514285714285700,-0.406896551723629,-0.521428571428544,0.014285714285679,0.000000000000000,0.000000000000009,-0.013793103448283,-0.000000000000015,0.013793103448283,-0.014285714285673,0.000000000000000,2 -4141,4154,4156,4169,-0.393103448275346,-0.507142857142855,-0.399999999999487,-0.514285714285700,-0.399999999999487,-0.500000000000027,-0.406896551723629,-0.507142857142872,0.014285714285675,-0.000000000000000,0.000000000000015,-0.013793103448283,-0.000000000000018,0.013793103448283,-0.014285714285671,-0.000000000000000,2 -4142,4155,4157,4170,-0.393103448275346,-0.492857142857157,-0.399999999999487,-0.500000000000027,-0.399999999999487,-0.485714285714304,-0.406896551723629,-0.492857142857174,0.014285714285722,0.000000000000000,0.000000000000018,-0.013793103448283,-0.000000000000017,0.013793103448283,-0.014285714285724,-0.000000000000000,2 -4143,4156,4158,4171,-0.393103448275346,-0.478571428571441,-0.399999999999487,-0.485714285714304,-0.399999999999487,-0.471428571428592,-0.406896551723629,-0.478571428571456,0.014285714285710,-0.000000000000000,0.000000000000017,-0.013793103448283,-0.000000000000014,0.013793103448283,-0.014285714285713,-0.000000000000000,2 -4144,4157,4159,4172,-0.393103448275346,-0.464285714285729,-0.399999999999487,-0.471428571428592,-0.399999999999487,-0.457142857142877,-0.406896551723629,-0.464285714285741,0.014285714285714,0.000000000000000,0.000000000000014,-0.013793103448283,-0.000000000000011,0.013793103448283,-0.014285714285717,-0.000000000000000,2 -4145,4158,4160,4173,-0.393103448275346,-0.450000000000014,-0.399999999999487,-0.457142857142877,-0.399999999999487,-0.442857142857161,-0.406896551723629,-0.450000000000023,0.014285714285715,0.000000000000000,0.000000000000011,-0.013793103448283,-0.000000000000008,0.013793103448283,-0.014285714285718,-0.000000000000000,2 -4146,4159,4161,4174,-0.393103448275346,-0.435714285714300,-0.399999999999487,-0.442857142857161,-0.399999999999487,-0.428571428571446,-0.406896551723629,-0.435714285714306,0.014285714285713,0.000000000000000,0.000000000000008,-0.013793103448283,-0.000000000000004,0.013793103448283,-0.014285714285717,-0.000000000000000,2 -4147,4160,4162,4175,-0.393103448275346,-0.421428571428577,-0.399999999999487,-0.428571428571446,-0.399999999999487,-0.414285714285713,-0.406896551723629,-0.421428571428581,0.014285714285732,0.000000000000000,0.000000000000004,-0.013793103448283,-0.000000000000003,0.013793103448283,-0.014285714285733,-0.000000000000000,2 -3068,4148,4161,4176,-0.399999999999487,-0.400000000000000,-0.393103448275346,-0.407142857142856,-0.399999999999487,-0.414285714285713,-0.406896551723629,-0.407142857142857,-0.000000000000000,0.013793103448283,0.014285714285711,-0.000000000000000,0.000000000000003,-0.013793103448283,-0.014285714285714,0.000000000000000,2 -479,4149,4164,4177,-0.413793103447786,-0.600000000000000,-0.406896551723629,-0.592857142857129,-0.413793103447786,-0.585714285714258,-0.420689655171942,-0.592857142857129,0.000000000000000,-0.013793103448313,0.014285714285741,0.000000000000000,0.000000000000000,0.013793103448313,-0.014285714285742,-0.000000000000000,2 -4150,4163,4165,4178,-0.406896551723629,-0.578571428571391,-0.413793103447786,-0.585714285714258,-0.413793103447786,-0.571428571428524,-0.420689655171942,-0.578571428571391,0.014285714285735,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000001,0.013793103448313,-0.014285714285733,-0.000000000000000,2 -4151,4164,4166,4179,-0.406896551723629,-0.564285714285666,-0.413793103447786,-0.571428571428524,-0.413793103447786,-0.557142857142811,-0.420689655171942,-0.564285714285669,0.014285714285715,0.000000000000000,0.000000000000001,-0.013793103448313,-0.000000000000004,0.013793103448313,-0.014285714285712,0.000000000000000,2 -4152,4165,4167,4180,-0.406896551723629,-0.549999999999951,-0.413793103447786,-0.557142857142811,-0.413793103447786,-0.542857142857097,-0.420689655171942,-0.549999999999956,0.014285714285715,0.000000000000000,0.000000000000004,-0.013793103448313,-0.000000000000006,0.013793103448313,-0.014285714285713,-0.000000000000000,2 -4153,4166,4168,4181,-0.406896551723629,-0.535714285714237,-0.413793103447786,-0.542857142857097,-0.413793103447786,-0.528571428571385,-0.420689655171942,-0.535714285714245,0.014285714285712,0.000000000000000,0.000000000000006,-0.013793103448313,-0.000000000000009,0.013793103448313,-0.014285714285710,-0.000000000000000,2 -4154,4167,4169,4182,-0.406896551723629,-0.521428571428544,-0.413793103447786,-0.528571428571385,-0.413793103447786,-0.514285714285715,-0.420689655171942,-0.521428571428556,0.014285714285673,-0.000000000000000,0.000000000000009,-0.013793103448313,-0.000000000000015,0.013793103448313,-0.014285714285668,-0.000000000000000,2 -4155,4168,4170,4183,-0.406896551723629,-0.507142857142872,-0.413793103447786,-0.514285714285715,-0.413793103447786,-0.500000000000045,-0.420689655171942,-0.507142857142888,0.014285714285671,0.000000000000000,0.000000000000015,-0.013793103448313,-0.000000000000018,0.013793103448313,-0.014285714285668,-0.000000000000000,2 -4156,4169,4171,4184,-0.406896551723629,-0.492857142857174,-0.413793103447786,-0.500000000000045,-0.413793103447786,-0.485714285714321,-0.420689655171942,-0.492857142857192,0.014285714285724,0.000000000000000,0.000000000000018,-0.013793103448313,-0.000000000000017,0.013793103448313,-0.014285714285725,0.000000000000000,2 -4157,4170,4172,4185,-0.406896551723629,-0.478571428571456,-0.413793103447786,-0.485714285714321,-0.413793103447786,-0.471428571428606,-0.420689655171942,-0.478571428571471,0.014285714285713,0.000000000000000,0.000000000000017,-0.013793103448313,-0.000000000000014,0.013793103448313,-0.014285714285716,-0.000000000000000,2 -4158,4171,4173,4186,-0.406896551723629,-0.464285714285741,-0.413793103447786,-0.471428571428606,-0.413793103447786,-0.457142857142888,-0.420689655171942,-0.464285714285753,0.014285714285717,0.000000000000000,0.000000000000014,-0.013793103448313,-0.000000000000011,0.013793103448313,-0.014285714285720,-0.000000000000000,2 -4159,4172,4174,4187,-0.406896551723629,-0.450000000000023,-0.413793103447786,-0.457142857142888,-0.413793103447786,-0.442857142857168,-0.420689655171942,-0.450000000000033,0.014285714285718,0.000000000000000,0.000000000000011,-0.013793103448313,-0.000000000000008,0.013793103448313,-0.014285714285721,-0.000000000000000,2 -4160,4173,4175,4188,-0.406896551723629,-0.435714285714306,-0.413793103447786,-0.442857142857168,-0.413793103447786,-0.428571428571450,-0.420689655171942,-0.435714285714312,0.014285714285717,0.000000000000000,0.000000000000008,-0.013793103448313,-0.000000000000004,0.013793103448313,-0.014285714285720,-0.000000000000000,2 -4161,4174,4176,4189,-0.406896551723629,-0.421428571428581,-0.413793103447786,-0.428571428571450,-0.413793103447786,-0.414285714285716,-0.420689655171942,-0.421428571428585,0.014285714285733,0.000000000000000,0.000000000000004,-0.013793103448313,-0.000000000000003,0.013793103448313,-0.014285714285735,-0.000000000000000,2 -3127,4162,4175,4190,-0.413793103447786,-0.400000000000000,-0.406896551723629,-0.407142857142857,-0.413793103447786,-0.414285714285716,-0.420689655171942,-0.407142857142859,-0.000000000000000,0.013793103448313,0.014285714285714,-0.000000000000000,0.000000000000003,-0.013793103448313,-0.014285714285717,0.000000000000000,2 -473,4163,4178,4191,-0.427586206896100,-0.600000000000000,-0.420689655171942,-0.592857142857129,-0.427586206896100,-0.585714285714258,-0.434482758620257,-0.592857142857129,0.000000000000000,-0.013793103448315,0.014285714285742,0.000000000000000,0.000000000000000,0.013793103448315,-0.014285714285742,-0.000000000000000,2 -4164,4177,4179,4192,-0.420689655171942,-0.578571428571391,-0.427586206896100,-0.585714285714258,-0.427586206896100,-0.571428571428525,-0.434482758620257,-0.578571428571392,0.014285714285733,0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000001,0.013793103448315,-0.014285714285732,-0.000000000000000,2 -4165,4178,4180,4193,-0.420689655171942,-0.564285714285669,-0.427586206896100,-0.571428571428525,-0.427586206896100,-0.557142857142814,-0.434482758620258,-0.564285714285671,0.014285714285712,-0.000000000000000,0.000000000000001,-0.013793103448315,-0.000000000000004,0.013793103448316,-0.014285714285710,-0.000000000000000,2 -4166,4179,4181,4194,-0.420689655171942,-0.549999999999956,-0.427586206896100,-0.557142857142814,-0.427586206896100,-0.542857142857103,-0.434482758620258,-0.549999999999961,0.014285714285713,0.000000000000000,0.000000000000004,-0.013793103448316,-0.000000000000007,0.013793103448315,-0.014285714285710,0.000000000000000,2 -4167,4180,4182,4195,-0.420689655171942,-0.535714285714245,-0.427586206896100,-0.542857142857103,-0.427586206896100,-0.528571428571394,-0.434482758620257,-0.535714285714253,0.014285714285710,0.000000000000000,0.000000000000007,-0.013793103448315,-0.000000000000009,0.013793103448315,-0.014285714285707,-0.000000000000000,2 -4168,4181,4183,4196,-0.420689655171942,-0.521428571428556,-0.427586206896100,-0.528571428571394,-0.427586206896100,-0.514285714285730,-0.434482758620257,-0.521428571428568,0.014285714285668,0.000000000000000,0.000000000000009,-0.013793103448315,-0.000000000000015,0.013793103448315,-0.014285714285662,-0.000000000000000,2 -4169,4182,4184,4197,-0.420689655171942,-0.507142857142888,-0.427586206896100,-0.514285714285730,-0.427586206896100,-0.500000000000064,-0.434482758620258,-0.507142857142905,0.014285714285668,0.000000000000000,0.000000000000015,-0.013793103448315,-0.000000000000018,0.013793103448315,-0.014285714285664,-0.000000000000000,2 -4170,4183,4185,4198,-0.420689655171942,-0.492857142857192,-0.427586206896100,-0.500000000000064,-0.427586206896100,-0.485714285714338,-0.434482758620258,-0.492857142857209,0.014285714285725,-0.000000000000000,0.000000000000018,-0.013793103448315,-0.000000000000017,0.013793103448315,-0.014285714285726,0.000000000000000,2 -4171,4184,4186,4199,-0.420689655171942,-0.478571428571471,-0.427586206896100,-0.485714285714338,-0.427586206896100,-0.471428571428620,-0.434482758620257,-0.478571428571487,0.014285714285716,0.000000000000000,0.000000000000017,-0.013793103448315,-0.000000000000014,0.013793103448315,-0.014285714285719,-0.000000000000000,2 -4172,4185,4187,4200,-0.420689655171942,-0.464285714285753,-0.427586206896100,-0.471428571428620,-0.427586206896100,-0.457142857142899,-0.434482758620257,-0.464285714285766,0.014285714285720,0.000000000000000,0.000000000000014,-0.013793103448315,-0.000000000000011,0.013793103448315,-0.014285714285723,-0.000000000000000,2 -4173,4186,4188,4201,-0.420689655171942,-0.450000000000033,-0.427586206896100,-0.457142857142899,-0.427586206896100,-0.442857142857176,-0.434482758620258,-0.450000000000042,0.014285714285721,0.000000000000000,0.000000000000011,-0.013793103448315,-0.000000000000008,0.013793103448315,-0.014285714285725,-0.000000000000000,2 -4174,4187,4189,4202,-0.420689655171942,-0.435714285714312,-0.427586206896100,-0.442857142857176,-0.427586206896100,-0.428571428571454,-0.434482758620258,-0.435714285714318,0.014285714285720,0.000000000000000,0.000000000000008,-0.013793103448315,-0.000000000000004,0.013793103448315,-0.014285714285723,0.000000000000000,2 -4175,4188,4190,4203,-0.420689655171942,-0.421428571428585,-0.427586206896100,-0.428571428571454,-0.427586206896100,-0.414285714285719,-0.434482758620257,-0.421428571428588,0.014285714285735,0.000000000000000,0.000000000000004,-0.013793103448315,-0.000000000000003,0.013793103448315,-0.014285714285736,-0.000000000000000,2 -3186,4176,4189,4204,-0.427586206896100,-0.400000000000000,-0.420689655171942,-0.407142857142859,-0.427586206896100,-0.414285714285719,-0.434482758620257,-0.407142857142860,-0.000000000000000,0.013793103448315,0.014285714285717,-0.000000000000000,0.000000000000003,-0.013793103448315,-0.014285714285720,0.000000000000000,2 -467,4177,4192,4205,-0.441379310344412,-0.600000000000000,-0.434482758620257,-0.592857142857129,-0.441379310344412,-0.585714285714258,-0.448275862068567,-0.592857142857129,0.000000000000000,-0.013793103448310,0.014285714285742,0.000000000000000,0.000000000000000,0.013793103448310,-0.014285714285742,0.000000000000000,2 -4178,4191,4193,4206,-0.434482758620257,-0.578571428571392,-0.441379310344412,-0.585714285714258,-0.441379310344412,-0.571428571428526,-0.448275862068567,-0.578571428571392,0.014285714285732,0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000001,0.013793103448309,-0.014285714285731,0.000000000000000,2 -4179,4192,4194,4207,-0.434482758620258,-0.564285714285671,-0.441379310344412,-0.571428571428526,-0.441379310344412,-0.557142857142818,-0.448275862068567,-0.564285714285673,0.014285714285710,0.000000000000000,0.000000000000001,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285707,-0.000000000000000,2 -4180,4193,4195,4208,-0.434482758620258,-0.549999999999961,-0.441379310344412,-0.557142857142818,-0.441379310344412,-0.542857142857109,-0.448275862068567,-0.549999999999966,0.014285714285710,-0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000006,0.013793103448310,-0.014285714285707,-0.000000000000000,2 -4181,4194,4196,4209,-0.434482758620257,-0.535714285714253,-0.441379310344412,-0.542857142857109,-0.441379310344412,-0.528571428571403,-0.448275862068567,-0.535714285714260,0.014285714285707,0.000000000000000,0.000000000000006,-0.013793103448310,-0.000000000000009,0.013793103448310,-0.014285714285705,-0.000000000000000,2 -4182,4195,4197,4210,-0.434482758620257,-0.521428571428568,-0.441379310344412,-0.528571428571403,-0.441379310344412,-0.514285714285744,-0.448275862068567,-0.521428571428580,0.014285714285662,0.000000000000000,0.000000000000009,-0.013793103448310,-0.000000000000015,0.013793103448310,-0.014285714285656,0.000000000000000,2 -4183,4196,4198,4211,-0.434482758620258,-0.507142857142905,-0.441379310344412,-0.514285714285744,-0.441379310344412,-0.500000000000082,-0.448275862068567,-0.507142857142921,0.014285714285664,0.000000000000000,0.000000000000015,-0.013793103448310,-0.000000000000019,0.013793103448310,-0.014285714285660,-0.000000000000000,2 -4184,4197,4199,4212,-0.434482758620258,-0.492857142857209,-0.441379310344412,-0.500000000000082,-0.441379310344412,-0.485714285714355,-0.448275862068567,-0.492857142857227,0.014285714285726,-0.000000000000000,0.000000000000019,-0.013793103448310,-0.000000000000017,0.013793103448310,-0.014285714285728,-0.000000000000000,2 -4185,4198,4200,4213,-0.434482758620257,-0.478571428571487,-0.441379310344412,-0.485714285714355,-0.441379310344412,-0.471428571428634,-0.448275862068567,-0.478571428571502,0.014285714285719,0.000000000000000,0.000000000000017,-0.013793103448310,-0.000000000000014,0.013793103448310,-0.014285714285722,-0.000000000000000,2 -4186,4199,4201,4214,-0.434482758620257,-0.464285714285766,-0.441379310344412,-0.471428571428634,-0.441379310344412,-0.457142857142909,-0.448275862068567,-0.464285714285778,0.014285714285723,0.000000000000000,0.000000000000014,-0.013793103448310,-0.000000000000011,0.013793103448310,-0.014285714285726,0.000000000000000,2 -4187,4200,4202,4215,-0.434482758620258,-0.450000000000042,-0.441379310344412,-0.457142857142909,-0.441379310344412,-0.442857142857183,-0.448275862068567,-0.450000000000051,0.014285714285725,0.000000000000000,0.000000000000011,-0.013793103448310,-0.000000000000008,0.013793103448309,-0.014285714285728,-0.000000000000000,2 -4188,4201,4203,4216,-0.434482758620258,-0.435714285714318,-0.441379310344412,-0.442857142857183,-0.441379310344412,-0.428571428571459,-0.448275862068567,-0.435714285714324,0.014285714285723,-0.000000000000000,0.000000000000008,-0.013793103448309,-0.000000000000004,0.013793103448310,-0.014285714285726,-0.000000000000000,2 -4189,4202,4204,4217,-0.434482758620257,-0.421428571428588,-0.441379310344412,-0.428571428571459,-0.441379310344412,-0.414285714285722,-0.448275862068567,-0.421428571428592,0.014285714285736,0.000000000000000,0.000000000000004,-0.013793103448310,-0.000000000000003,0.013793103448310,-0.014285714285738,-0.000000000000000,2 -3245,4190,4203,4218,-0.441379310344412,-0.400000000000000,-0.434482758620257,-0.407142857142860,-0.441379310344412,-0.414285714285722,-0.448275862068567,-0.407142857142862,-0.000000000000000,0.013793103448310,0.014285714285720,-0.000000000000000,0.000000000000003,-0.013793103448310,-0.014285714285723,0.000000000000000,2 -461,4191,4206,4219,-0.455172413792722,-0.600000000000000,-0.448275862068567,-0.592857142857129,-0.455172413792722,-0.585714285714258,-0.462068965516876,-0.592857142857129,0.000000000000000,-0.013793103448309,0.014285714285742,-0.000000000000000,0.000000000000000,0.013793103448309,-0.014285714285743,-0.000000000000000,2 -4192,4205,4207,4220,-0.448275862068567,-0.578571428571392,-0.455172413792722,-0.585714285714258,-0.455172413792722,-0.571428571428527,-0.462068965516876,-0.578571428571393,0.014285714285731,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000001,0.013793103448309,-0.014285714285730,-0.000000000000000,2 -4193,4206,4208,4221,-0.448275862068567,-0.564285714285673,-0.455172413792722,-0.571428571428527,-0.455172413792722,-0.557142857142822,-0.462068965516876,-0.564285714285676,0.014285714285707,0.000000000000000,0.000000000000001,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285704,-0.000000000000000,2 -4194,4207,4209,4222,-0.448275862068567,-0.549999999999966,-0.455172413792722,-0.557142857142822,-0.455172413792722,-0.542857142857116,-0.462068965516876,-0.549999999999971,0.014285714285707,0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000006,0.013793103448309,-0.014285714285704,0.000000000000000,2 -4195,4208,4210,4223,-0.448275862068567,-0.535714285714260,-0.455172413792722,-0.542857142857116,-0.455172413792722,-0.528571428571412,-0.462068965516876,-0.535714285714268,0.014285714285705,0.000000000000000,0.000000000000006,-0.013793103448309,-0.000000000000009,0.013793103448309,-0.014285714285702,-0.000000000000000,2 -4196,4209,4211,4224,-0.448275862068567,-0.521428571428580,-0.455172413792722,-0.528571428571412,-0.455172413792722,-0.514285714285759,-0.462068965516876,-0.521428571428592,0.014285714285656,-0.000000000000000,0.000000000000009,-0.013793103448309,-0.000000000000015,0.013793103448309,-0.014285714285651,-0.000000000000000,2 -4197,4210,4212,4225,-0.448275862068567,-0.507142857142921,-0.455172413792722,-0.514285714285759,-0.455172413792722,-0.500000000000100,-0.462068965516876,-0.507142857142938,0.014285714285660,0.000000000000000,0.000000000000015,-0.013793103448309,-0.000000000000018,0.013793103448309,-0.014285714285657,-0.000000000000000,2 -4198,4211,4213,4226,-0.448275862068567,-0.492857142857227,-0.455172413792722,-0.500000000000100,-0.455172413792722,-0.485714285714372,-0.462068965516876,-0.492857142857245,0.014285714285728,0.000000000000000,0.000000000000018,-0.013793103448309,-0.000000000000017,0.013793103448309,-0.014285714285729,-0.000000000000000,2 -4199,4212,4214,4227,-0.448275862068567,-0.478571428571502,-0.455172413792722,-0.485714285714372,-0.455172413792722,-0.471428571428648,-0.462068965516876,-0.478571428571517,0.014285714285722,0.000000000000000,0.000000000000017,-0.013793103448309,-0.000000000000014,0.013793103448309,-0.014285714285725,-0.000000000000000,2 -4200,4213,4215,4228,-0.448275862068567,-0.464285714285778,-0.455172413792722,-0.471428571428648,-0.455172413792722,-0.457142857142920,-0.462068965516876,-0.464285714285790,0.014285714285726,-0.000000000000000,0.000000000000014,-0.013793103448309,-0.000000000000011,0.013793103448309,-0.014285714285729,-0.000000000000000,2 -4201,4214,4216,4229,-0.448275862068567,-0.450000000000051,-0.455172413792722,-0.457142857142920,-0.455172413792722,-0.442857142857191,-0.462068965516876,-0.450000000000060,0.014285714285728,0.000000000000000,0.000000000000011,-0.013793103448309,-0.000000000000007,0.013793103448309,-0.014285714285731,-0.000000000000000,2 -4202,4215,4217,4230,-0.448275862068567,-0.435714285714324,-0.455172413792722,-0.442857142857191,-0.455172413792722,-0.428571428571463,-0.462068965516876,-0.435714285714330,0.014285714285726,0.000000000000000,0.000000000000007,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285729,0.000000000000000,2 -4203,4216,4218,4231,-0.448275862068567,-0.421428571428592,-0.455172413792722,-0.428571428571463,-0.455172413792722,-0.414285714285725,-0.462068965516876,-0.421428571428596,0.014285714285738,0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000003,0.013793103448309,-0.014285714285739,-0.000000000000000,2 -3304,4204,4217,4232,-0.455172413792722,-0.400000000000000,-0.448275862068567,-0.407142857142862,-0.455172413792722,-0.414285714285725,-0.462068965516876,-0.407142857142863,-0.000000000000000,0.013793103448309,0.014285714285723,-0.000000000000000,0.000000000000003,-0.013793103448309,-0.014285714285726,0.000000000000000,2 -455,4205,4220,4233,-0.468965517241031,-0.600000000000000,-0.462068965516876,-0.592857142857129,-0.468965517241031,-0.585714285714257,-0.475862068965185,-0.592857142857129,0.000000000000000,-0.013793103448309,0.014285714285743,0.000000000000000,0.000000000000000,0.013793103448309,-0.014285714285743,-0.000000000000000,2 -4206,4219,4221,4234,-0.462068965516876,-0.578571428571393,-0.468965517241031,-0.585714285714257,-0.468965517241031,-0.571428571428528,-0.475862068965185,-0.578571428571393,0.014285714285730,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000001,0.013793103448309,-0.014285714285729,-0.000000000000000,2 -4207,4220,4222,4235,-0.462068965516876,-0.564285714285676,-0.468965517241031,-0.571428571428528,-0.468965517241031,-0.557142857142825,-0.475862068965185,-0.564285714285678,0.014285714285704,0.000000000000000,0.000000000000001,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285702,-0.000000000000000,2 -4208,4221,4223,4236,-0.462068965516876,-0.549999999999971,-0.468965517241031,-0.557142857142825,-0.468965517241031,-0.542857142857122,-0.475862068965185,-0.549999999999976,0.014285714285704,-0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000006,0.013793103448309,-0.014285714285702,0.000000000000000,2 -4209,4222,4224,4237,-0.462068965516876,-0.535714285714268,-0.468965517241031,-0.542857142857122,-0.468965517241031,-0.528571428571421,-0.475862068965185,-0.535714285714276,0.014285714285702,0.000000000000000,0.000000000000006,-0.013793103448309,-0.000000000000009,0.013793103448309,-0.014285714285700,-0.000000000000000,2 -4210,4223,4225,4238,-0.462068965516876,-0.521428571428592,-0.468965517241031,-0.528571428571421,-0.468965517241031,-0.514285714285773,-0.475862068965185,-0.521428571428603,0.014285714285651,0.000000000000000,0.000000000000009,-0.013793103448309,-0.000000000000014,0.013793103448309,-0.014285714285645,0.000000000000000,2 -4211,4224,4226,4239,-0.462068965516876,-0.507142857142938,-0.468965517241031,-0.514285714285773,-0.468965517241031,-0.500000000000119,-0.475862068965185,-0.507142857142954,0.014285714285657,0.000000000000000,0.000000000000014,-0.013793103448309,-0.000000000000018,0.013793103448309,-0.014285714285653,-0.000000000000000,2 -4212,4225,4227,4240,-0.462068965516876,-0.492857142857245,-0.468965517241031,-0.500000000000119,-0.468965517241031,-0.485714285714388,-0.475862068965185,-0.492857142857262,0.014285714285729,0.000000000000000,0.000000000000018,-0.013793103448309,-0.000000000000017,0.013793103448309,-0.014285714285731,-0.000000000000000,2 -4213,4226,4228,4241,-0.462068965516876,-0.478571428571517,-0.468965517241031,-0.485714285714388,-0.468965517241031,-0.471428571428662,-0.475862068965185,-0.478571428571533,0.014285714285725,0.000000000000000,0.000000000000017,-0.013793103448309,-0.000000000000014,0.013793103448309,-0.014285714285728,-0.000000000000000,2 -4214,4227,4229,4242,-0.462068965516876,-0.464285714285790,-0.468965517241031,-0.471428571428662,-0.468965517241031,-0.457142857142931,-0.475862068965185,-0.464285714285803,0.014285714285729,0.000000000000000,0.000000000000014,-0.013793103448309,-0.000000000000011,0.013793103448309,-0.014285714285732,-0.000000000000000,2 -4215,4228,4230,4243,-0.462068965516876,-0.450000000000060,-0.468965517241031,-0.457142857142931,-0.468965517241031,-0.442857142857198,-0.475862068965185,-0.450000000000069,0.014285714285731,0.000000000000000,0.000000000000011,-0.013793103448309,-0.000000000000007,0.013793103448309,-0.014285714285735,-0.000000000000000,2 -4216,4229,4231,4244,-0.462068965516876,-0.435714285714330,-0.468965517241031,-0.442857142857198,-0.468965517241031,-0.428571428571467,-0.475862068965185,-0.435714285714336,0.014285714285729,-0.000000000000000,0.000000000000007,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285732,0.000000000000000,2 -4217,4230,4232,4245,-0.462068965516876,-0.421428571428596,-0.468965517241031,-0.428571428571467,-0.468965517241031,-0.414285714285728,-0.475862068965185,-0.421428571428599,0.014285714285739,0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000003,0.013793103448309,-0.014285714285740,-0.000000000000000,2 -3363,4218,4231,4246,-0.468965517241031,-0.400000000000000,-0.462068965516876,-0.407142857142863,-0.468965517241031,-0.414285714285728,-0.475862068965185,-0.407142857142865,-0.000000000000000,0.013793103448309,0.014285714285726,-0.000000000000000,0.000000000000003,-0.013793103448309,-0.014285714285729,0.000000000000000,2 -449,4219,4234,4247,-0.482758620689341,-0.600000000000000,-0.475862068965185,-0.592857142857129,-0.482758620689341,-0.585714285714257,-0.489655172413498,-0.592857142857128,0.000000000000000,-0.013793103448313,0.014285714285743,0.000000000000000,0.000000000000000,0.013793103448313,-0.014285714285743,-0.000000000000000,2 -4220,4233,4235,4248,-0.475862068965185,-0.578571428571393,-0.482758620689341,-0.585714285714257,-0.482758620689341,-0.571428571428529,-0.489655172413498,-0.578571428571393,0.014285714285729,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000001,0.013793103448313,-0.014285714285727,0.000000000000000,2 -4221,4234,4236,4249,-0.475862068965185,-0.564285714285678,-0.482758620689341,-0.571428571428529,-0.482758620689341,-0.557142857142829,-0.489655172413498,-0.564285714285680,0.014285714285702,0.000000000000000,0.000000000000001,-0.013793103448313,-0.000000000000004,0.013793103448313,-0.014285714285699,0.000000000000000,2 -4222,4235,4237,4250,-0.475862068965185,-0.549999999999976,-0.482758620689341,-0.557142857142829,-0.482758620689341,-0.542857142857129,-0.489655172413498,-0.549999999999981,0.014285714285702,-0.000000000000000,0.000000000000004,-0.013793103448313,-0.000000000000006,0.013793103448313,-0.014285714285699,-0.000000000000000,2 -4223,4236,4238,4251,-0.475862068965185,-0.535714285714276,-0.482758620689341,-0.542857142857129,-0.482758620689342,-0.528571428571430,-0.489655172413498,-0.535714285714283,0.014285714285700,0.000000000000000,0.000000000000006,-0.013793103448313,-0.000000000000009,0.013793103448313,-0.014285714285697,-0.000000000000000,2 -4224,4237,4239,4252,-0.475862068965185,-0.521428571428603,-0.482758620689342,-0.528571428571430,-0.482758620689341,-0.514285714285788,-0.489655172413498,-0.521428571428615,0.014285714285645,-0.000000000000000,0.000000000000009,-0.013793103448313,-0.000000000000015,0.013793103448313,-0.014285714285639,-0.000000000000000,2 -4225,4238,4240,4253,-0.475862068965185,-0.507142857142954,-0.482758620689341,-0.514285714285788,-0.482758620689341,-0.500000000000137,-0.489655172413498,-0.507142857142971,0.014285714285653,0.000000000000000,0.000000000000015,-0.013793103448313,-0.000000000000018,0.013793103448313,-0.014285714285649,-0.000000000000000,2 -4226,4239,4241,4254,-0.475862068965185,-0.492857142857262,-0.482758620689341,-0.500000000000137,-0.482758620689341,-0.485714285714405,-0.489655172413498,-0.492857142857280,0.014285714285731,0.000000000000000,0.000000000000018,-0.013793103448313,-0.000000000000017,0.013793103448313,-0.014285714285732,-0.000000000000000,2 -4227,4240,4242,4255,-0.475862068965185,-0.478571428571533,-0.482758620689341,-0.485714285714405,-0.482758620689341,-0.471428571428676,-0.489655172413498,-0.478571428571548,0.014285714285728,0.000000000000000,0.000000000000017,-0.013793103448313,-0.000000000000014,0.013793103448313,-0.014285714285731,-0.000000000000000,2 -4228,4241,4243,4256,-0.475862068965185,-0.464285714285803,-0.482758620689341,-0.471428571428676,-0.482758620689341,-0.457142857142942,-0.489655172413498,-0.464285714285815,0.014285714285732,0.000000000000000,0.000000000000014,-0.013793103448313,-0.000000000000011,0.013793103448313,-0.014285714285735,0.000000000000000,2 -4229,4242,4244,4257,-0.475862068965185,-0.450000000000069,-0.482758620689341,-0.457142857142942,-0.482758620689341,-0.442857142857206,-0.489655172413498,-0.450000000000079,0.014285714285735,0.000000000000000,0.000000000000011,-0.013793103448313,-0.000000000000008,0.013793103448313,-0.014285714285738,-0.000000000000000,2 -4230,4243,4245,4258,-0.475862068965185,-0.435714285714336,-0.482758620689341,-0.442857142857206,-0.482758620689341,-0.428571428571472,-0.489655172413498,-0.435714285714342,0.014285714285732,-0.000000000000000,0.000000000000008,-0.013793103448313,-0.000000000000004,0.013793103448313,-0.014285714285736,0.000000000000000,2 -4231,4244,4246,4259,-0.475862068965185,-0.421428571428599,-0.482758620689341,-0.428571428571472,-0.482758620689341,-0.414285714285731,-0.489655172413498,-0.421428571428603,0.014285714285740,0.000000000000000,0.000000000000004,-0.013793103448313,-0.000000000000003,0.013793103448313,-0.014285714285742,-0.000000000000000,2 -3422,4232,4245,4260,-0.482758620689341,-0.400000000000000,-0.475862068965185,-0.407142857142865,-0.482758620689341,-0.414285714285731,-0.489655172413498,-0.407142857142866,-0.000000000000000,0.013793103448313,0.014285714285729,-0.000000000000000,0.000000000000003,-0.013793103448313,-0.014285714285732,0.000000000000000,2 -443,4233,4248,4261,-0.496551724137666,-0.600000000000000,-0.489655172413498,-0.592857142857128,-0.496551724137666,-0.585714285714257,-0.503448275861834,-0.592857142857128,0.000000000000000,-0.013793103448336,0.014285714285743,0.000000000000000,0.000000000000000,0.013793103448336,-0.014285714285743,-0.000000000000000,2 -4234,4247,4249,4262,-0.489655172413498,-0.578571428571393,-0.496551724137666,-0.585714285714257,-0.496551724137666,-0.571428571428530,-0.503448275861834,-0.578571428571393,0.014285714285727,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000001,0.013793103448336,-0.014285714285726,0.000000000000000,2 -4235,4248,4250,4263,-0.489655172413498,-0.564285714285680,-0.496551724137666,-0.571428571428530,-0.496551724137666,-0.557142857142833,-0.503448275861834,-0.564285714285682,0.014285714285699,-0.000000000000000,0.000000000000001,-0.013793103448336,-0.000000000000004,0.013793103448336,-0.014285714285696,-0.000000000000000,2 -4236,4249,4251,4264,-0.489655172413498,-0.549999999999981,-0.496551724137666,-0.557142857142833,-0.496551724137666,-0.542857142857135,-0.503448275861834,-0.549999999999986,0.014285714285699,0.000000000000000,0.000000000000004,-0.013793103448336,-0.000000000000006,0.013793103448336,-0.014285714285696,-0.000000000000000,2 -4237,4250,4252,4265,-0.489655172413498,-0.535714285714283,-0.496551724137666,-0.542857142857135,-0.496551724137666,-0.528571428571439,-0.503448275861834,-0.535714285714291,0.014285714285697,0.000000000000000,0.000000000000006,-0.013793103448336,-0.000000000000009,0.013793103448336,-0.014285714285695,0.000000000000000,2 -4238,4251,4253,4266,-0.489655172413498,-0.521428571428615,-0.496551724137666,-0.528571428571439,-0.496551724137666,-0.514285714285803,-0.503448275861834,-0.521428571428627,0.014285714285639,0.000000000000000,0.000000000000009,-0.013793103448336,-0.000000000000015,0.013793103448336,-0.014285714285633,-0.000000000000000,2 -4239,4252,4254,4267,-0.489655172413498,-0.507142857142971,-0.496551724137666,-0.514285714285803,-0.496551724137666,-0.500000000000155,-0.503448275861834,-0.507142857142987,0.014285714285649,0.000000000000000,0.000000000000015,-0.013793103448336,-0.000000000000018,0.013793103448336,-0.014285714285646,-0.000000000000000,2 -4240,4253,4255,4268,-0.489655172413498,-0.492857142857280,-0.496551724137666,-0.500000000000155,-0.496551724137666,-0.485714285714422,-0.503448275861834,-0.492857142857298,0.014285714285732,0.000000000000000,0.000000000000018,-0.013793103448336,-0.000000000000017,0.013793103448336,-0.014285714285733,-0.000000000000000,2 -4241,4254,4256,4269,-0.489655172413498,-0.478571428571548,-0.496551724137666,-0.485714285714422,-0.496551724137666,-0.471428571428690,-0.503448275861834,-0.478571428571564,0.014285714285731,0.000000000000000,0.000000000000017,-0.013793103448336,-0.000000000000014,0.013793103448336,-0.014285714285734,-0.000000000000000,2 -4242,4255,4257,4270,-0.489655172413498,-0.464285714285815,-0.496551724137666,-0.471428571428690,-0.496551724137666,-0.457142857142953,-0.503448275861834,-0.464285714285827,0.014285714285735,-0.000000000000000,0.000000000000014,-0.013793103448336,-0.000000000000011,0.013793103448336,-0.014285714285739,-0.000000000000000,2 -4243,4256,4258,4271,-0.489655172413498,-0.450000000000079,-0.496551724137666,-0.457142857142953,-0.496551724137666,-0.442857142857213,-0.503448275861834,-0.450000000000088,0.014285714285738,0.000000000000000,0.000000000000011,-0.013793103448336,-0.000000000000008,0.013793103448336,-0.014285714285741,-0.000000000000000,2 -4244,4257,4259,4272,-0.489655172413498,-0.435714285714342,-0.496551724137666,-0.442857142857213,-0.496551724137666,-0.428571428571476,-0.503448275861834,-0.435714285714348,0.014285714285736,-0.000000000000000,0.000000000000008,-0.013793103448336,-0.000000000000004,0.013793103448336,-0.014285714285739,0.000000000000000,2 -4245,4258,4260,4273,-0.489655172413498,-0.421428571428603,-0.496551724137666,-0.428571428571476,-0.496551724137666,-0.414285714285734,-0.503448275861834,-0.421428571428607,0.014285714285742,0.000000000000000,0.000000000000004,-0.013793103448336,-0.000000000000003,0.013793103448336,-0.014285714285743,-0.000000000000000,2 -3481,4246,4259,4274,-0.496551724137666,-0.400000000000000,-0.489655172413498,-0.407142857142866,-0.496551724137666,-0.414285714285734,-0.503448275861834,-0.407142857142868,-0.000000000000000,0.013793103448336,0.014285714285732,-0.000000000000000,0.000000000000003,-0.013793103448336,-0.014285714285735,0.000000000000000,2 -437,4247,4262,4275,-0.510344827585989,-0.600000000000000,-0.503448275861834,-0.592857142857128,-0.510344827585989,-0.585714285714256,-0.517241379310145,-0.592857142857128,0.000000000000000,-0.013793103448311,0.014285714285743,0.000000000000000,0.000000000000000,0.013793103448311,-0.014285714285744,-0.000000000000000,2 -4248,4261,4263,4276,-0.503448275861834,-0.578571428571393,-0.510344827585989,-0.585714285714256,-0.510344827585989,-0.571428571428531,-0.517241379310145,-0.578571428571394,0.014285714285726,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000001,0.013793103448312,-0.014285714285725,-0.000000000000000,2 -4249,4262,4264,4277,-0.503448275861834,-0.564285714285682,-0.510344827585989,-0.571428571428531,-0.510344827585989,-0.557142857142836,-0.517241379310145,-0.564285714285685,0.014285714285696,0.000000000000000,0.000000000000001,-0.013793103448312,-0.000000000000004,0.013793103448311,-0.014285714285693,0.000000000000000,2 -4250,4263,4265,4278,-0.503448275861834,-0.549999999999986,-0.510344827585989,-0.557142857142836,-0.510344827585989,-0.542857142857141,-0.517241379310145,-0.549999999999991,0.014285714285696,0.000000000000000,0.000000000000004,-0.013793103448311,-0.000000000000006,0.013793103448311,-0.014285714285694,-0.000000000000000,2 -4251,4264,4266,4279,-0.503448275861834,-0.535714285714291,-0.510344827585989,-0.542857142857141,-0.510344827585989,-0.528571428571448,-0.517241379310145,-0.535714285714298,0.014285714285695,-0.000000000000000,0.000000000000006,-0.013793103448311,-0.000000000000009,0.013793103448311,-0.014285714285692,-0.000000000000000,2 -4252,4265,4267,4280,-0.503448275861834,-0.521428571428627,-0.510344827585989,-0.528571428571448,-0.510344827585989,-0.514285714285817,-0.517241379310145,-0.521428571428639,0.014285714285633,0.000000000000000,0.000000000000009,-0.013793103448311,-0.000000000000015,0.013793103448312,-0.014285714285628,-0.000000000000000,2 -4253,4266,4268,4281,-0.503448275861834,-0.507142857142987,-0.510344827585989,-0.514285714285817,-0.510344827585989,-0.500000000000174,-0.517241379310145,-0.507142857143004,0.014285714285646,0.000000000000000,0.000000000000015,-0.013793103448312,-0.000000000000018,0.013793103448311,-0.014285714285642,0.000000000000000,2 -4254,4267,4269,4282,-0.503448275861834,-0.492857142857298,-0.510344827585989,-0.500000000000174,-0.510344827585989,-0.485714285714439,-0.517241379310145,-0.492857142857315,0.014285714285733,0.000000000000000,0.000000000000018,-0.013793103448311,-0.000000000000017,0.013793103448312,-0.014285714285735,-0.000000000000000,2 -4255,4268,4270,4283,-0.503448275861834,-0.478571428571564,-0.510344827585989,-0.485714285714439,-0.510344827585989,-0.471428571428704,-0.517241379310145,-0.478571428571579,0.014285714285734,0.000000000000000,0.000000000000017,-0.013793103448312,-0.000000000000014,0.013793103448311,-0.014285714285737,0.000000000000000,2 -4256,4269,4271,4284,-0.503448275861834,-0.464285714285827,-0.510344827585989,-0.471428571428704,-0.510344827585989,-0.457142857142963,-0.517241379310145,-0.464285714285840,0.014285714285739,0.000000000000000,0.000000000000014,-0.013793103448311,-0.000000000000011,0.013793103448311,-0.014285714285742,-0.000000000000000,2 -4257,4270,4272,4285,-0.503448275861834,-0.450000000000088,-0.510344827585989,-0.457142857142963,-0.510344827585989,-0.442857142857221,-0.517241379310145,-0.450000000000097,0.014285714285741,0.000000000000000,0.000000000000011,-0.013793103448311,-0.000000000000007,0.013793103448311,-0.014285714285744,-0.000000000000000,2 -4258,4271,4273,4286,-0.503448275861834,-0.435714285714348,-0.510344827585989,-0.442857142857221,-0.510344827585989,-0.428571428571481,-0.517241379310145,-0.435714285714354,0.014285714285739,-0.000000000000000,0.000000000000007,-0.013793103448311,-0.000000000000004,0.013793103448311,-0.014285714285742,-0.000000000000000,2 -4259,4272,4274,4287,-0.503448275861834,-0.421428571428607,-0.510344827585989,-0.428571428571481,-0.510344827585989,-0.414285714285737,-0.517241379310145,-0.421428571428610,0.014285714285743,0.000000000000000,0.000000000000004,-0.013793103448311,-0.000000000000003,0.013793103448311,-0.014285714285745,-0.000000000000000,2 -3540,4260,4273,4288,-0.510344827585989,-0.400000000000000,-0.503448275861834,-0.407142857142868,-0.510344827585989,-0.414285714285737,-0.517241379310145,-0.407142857142869,-0.000000000000000,0.013793103448311,0.014285714285735,-0.000000000000000,0.000000000000003,-0.013793103448311,-0.014285714285738,0.000000000000000,2 -431,4261,4276,4289,-0.524137931034299,-0.600000000000000,-0.517241379310145,-0.592857142857128,-0.524137931034299,-0.585714285714256,-0.531034482758453,-0.592857142857128,0.000000000000000,-0.013793103448308,0.014285714285744,0.000000000000000,0.000000000000000,0.013793103448308,-0.014285714285744,-0.000000000000000,2 -4262,4275,4277,4290,-0.517241379310145,-0.578571428571394,-0.524137931034299,-0.585714285714256,-0.524137931034299,-0.571428571428532,-0.531034482758453,-0.578571428571394,0.014285714285725,0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000001,0.013793103448308,-0.014285714285723,-0.000000000000000,2 -4263,4276,4278,4291,-0.517241379310145,-0.564285714285685,-0.524137931034299,-0.571428571428532,-0.524137931034299,-0.557142857142840,-0.531034482758453,-0.564285714285687,0.014285714285693,-0.000000000000000,0.000000000000001,-0.013793103448308,-0.000000000000004,0.013793103448308,-0.014285714285691,-0.000000000000000,2 -4264,4277,4279,4292,-0.517241379310145,-0.549999999999991,-0.524137931034299,-0.557142857142840,-0.524137931034299,-0.542857142857148,-0.531034482758453,-0.549999999999996,0.014285714285694,0.000000000000000,0.000000000000004,-0.013793103448308,-0.000000000000007,0.013793103448308,-0.014285714285691,-0.000000000000000,2 -4265,4278,4280,4293,-0.517241379310145,-0.535714285714298,-0.524137931034299,-0.542857142857148,-0.524137931034299,-0.528571428571457,-0.531034482758453,-0.535714285714306,0.014285714285692,0.000000000000000,0.000000000000007,-0.013793103448308,-0.000000000000009,0.013793103448308,-0.014285714285690,-0.000000000000000,2 -4266,4279,4281,4294,-0.517241379310145,-0.521428571428639,-0.524137931034299,-0.528571428571457,-0.524137931034299,-0.514285714285832,-0.531034482758453,-0.521428571428650,0.014285714285628,0.000000000000000,0.000000000000009,-0.013793103448308,-0.000000000000015,0.013793103448308,-0.014285714285622,-0.000000000000000,2 -4267,4280,4282,4295,-0.517241379310145,-0.507142857143004,-0.524137931034299,-0.514285714285832,-0.524137931034299,-0.500000000000192,-0.531034482758453,-0.507142857143020,0.014285714285642,-0.000000000000000,0.000000000000015,-0.013793103448308,-0.000000000000018,0.013793103448308,-0.014285714285638,0.000000000000000,2 -4268,4281,4283,4296,-0.517241379310145,-0.492857142857315,-0.524137931034299,-0.500000000000192,-0.524137931034299,-0.485714285714456,-0.531034482758453,-0.492857142857333,0.014285714285735,0.000000000000000,0.000000000000018,-0.013793103448308,-0.000000000000017,0.013793103448308,-0.014285714285736,-0.000000000000000,2 -4269,4282,4284,4297,-0.517241379310145,-0.478571428571579,-0.524137931034299,-0.485714285714456,-0.524137931034299,-0.471428571428718,-0.531034482758453,-0.478571428571595,0.014285714285737,-0.000000000000000,0.000000000000017,-0.013793103448308,-0.000000000000014,0.013793103448308,-0.014285714285740,-0.000000000000000,2 -4270,4283,4285,4298,-0.517241379310145,-0.464285714285840,-0.524137931034299,-0.471428571428718,-0.524137931034299,-0.457142857142974,-0.531034482758453,-0.464285714285852,0.014285714285742,0.000000000000000,0.000000000000014,-0.013793103448308,-0.000000000000011,0.013793103448308,-0.014285714285745,-0.000000000000000,2 -4271,4284,4286,4299,-0.517241379310145,-0.450000000000097,-0.524137931034299,-0.457142857142974,-0.524137931034299,-0.442857142857228,-0.531034482758453,-0.450000000000106,0.014285714285744,0.000000000000000,0.000000000000011,-0.013793103448308,-0.000000000000007,0.013793103448308,-0.014285714285747,0.000000000000000,2 -4272,4285,4287,4300,-0.517241379310145,-0.435714285714354,-0.524137931034299,-0.442857142857228,-0.524137931034299,-0.428571428571485,-0.531034482758453,-0.435714285714360,0.014285714285742,0.000000000000000,0.000000000000007,-0.013793103448308,-0.000000000000004,0.013793103448308,-0.014285714285745,-0.000000000000000,2 -4273,4286,4288,4301,-0.517241379310145,-0.421428571428610,-0.524137931034299,-0.428571428571485,-0.524137931034299,-0.414285714285740,-0.531034482758453,-0.421428571428614,0.014285714285745,0.000000000000000,0.000000000000004,-0.013793103448308,-0.000000000000003,0.013793103448308,-0.014285714285746,-0.000000000000000,2 -3599,4274,4287,4302,-0.524137931034299,-0.400000000000000,-0.517241379310145,-0.407142857142869,-0.524137931034299,-0.414285714285740,-0.531034482758453,-0.407142857142871,-0.000000000000000,0.013793103448308,0.014285714285738,-0.000000000000000,0.000000000000003,-0.013793103448308,-0.014285714285741,0.000000000000000,2 -425,4275,4290,4303,-0.537931034482601,-0.600000000000000,-0.531034482758453,-0.592857142857128,-0.537931034482601,-0.585714285714256,-0.544827586206749,-0.592857142857128,0.000000000000000,-0.013793103448296,0.014285714285744,0.000000000000000,0.000000000000000,0.013793103448296,-0.014285714285744,-0.000000000000000,2 -4276,4289,4291,4304,-0.531034482758453,-0.578571428571394,-0.537931034482601,-0.585714285714256,-0.537931034482601,-0.571428571428533,-0.544827586206749,-0.578571428571395,0.014285714285723,0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000001,0.013793103448296,-0.014285714285722,0.000000000000000,2 -4277,4290,4292,4305,-0.531034482758453,-0.564285714285687,-0.537931034482601,-0.571428571428533,-0.537931034482601,-0.557142857142844,-0.544827586206749,-0.564285714285689,0.014285714285691,0.000000000000000,0.000000000000001,-0.013793103448296,-0.000000000000004,0.013793103448296,-0.014285714285688,-0.000000000000000,2 -4278,4291,4293,4306,-0.531034482758453,-0.549999999999996,-0.537931034482601,-0.557142857142844,-0.537931034482601,-0.542857142857154,-0.544827586206749,-0.550000000000001,0.014285714285691,0.000000000000000,0.000000000000004,-0.013793103448296,-0.000000000000006,0.013793103448296,-0.014285714285688,-0.000000000000000,2 -4279,4292,4294,4307,-0.531034482758453,-0.535714285714306,-0.537931034482601,-0.542857142857154,-0.537931034482601,-0.528571428571466,-0.544827586206749,-0.535714285714314,0.014285714285690,0.000000000000000,0.000000000000006,-0.013793103448296,-0.000000000000009,0.013793103448296,-0.014285714285687,-0.000000000000000,2 -4280,4293,4295,4308,-0.531034482758453,-0.521428571428650,-0.537931034482601,-0.528571428571466,-0.537931034482601,-0.514285714285847,-0.544827586206749,-0.521428571428662,0.014285714285622,0.000000000000000,0.000000000000009,-0.013793103448296,-0.000000000000015,0.013793103448296,-0.014285714285616,-0.000000000000000,2 -4281,4294,4296,4309,-0.531034482758453,-0.507142857143020,-0.537931034482601,-0.514285714285847,-0.537931034482601,-0.500000000000210,-0.544827586206749,-0.507142857143037,0.014285714285638,-0.000000000000000,0.000000000000015,-0.013793103448296,-0.000000000000018,0.013793103448296,-0.014285714285635,-0.000000000000000,2 -4282,4295,4297,4310,-0.531034482758453,-0.492857142857333,-0.537931034482601,-0.500000000000210,-0.537931034482601,-0.485714285714473,-0.544827586206749,-0.492857142857350,0.014285714285736,0.000000000000000,0.000000000000018,-0.013793103448296,-0.000000000000017,0.013793103448296,-0.014285714285738,-0.000000000000000,2 -4283,4296,4298,4311,-0.531034482758453,-0.478571428571595,-0.537931034482601,-0.485714285714473,-0.537931034482601,-0.471428571428732,-0.544827586206749,-0.478571428571610,0.014285714285740,0.000000000000000,0.000000000000017,-0.013793103448296,-0.000000000000014,0.013793103448296,-0.014285714285743,-0.000000000000000,2 -4284,4297,4299,4312,-0.531034482758453,-0.464285714285852,-0.537931034482601,-0.471428571428732,-0.537931034482601,-0.457142857142985,-0.544827586206749,-0.464285714285865,0.014285714285745,0.000000000000000,0.000000000000014,-0.013793103448296,-0.000000000000011,0.013793103448296,-0.014285714285748,-0.000000000000000,2 -4285,4298,4300,4313,-0.531034482758453,-0.450000000000106,-0.537931034482601,-0.457142857142985,-0.537931034482601,-0.442857142857236,-0.544827586206749,-0.450000000000115,0.014285714285747,-0.000000000000000,0.000000000000011,-0.013793103448296,-0.000000000000008,0.013793103448296,-0.014285714285751,0.000000000000000,2 -4286,4299,4301,4314,-0.531034482758453,-0.435714285714360,-0.537931034482601,-0.442857142857236,-0.537931034482601,-0.428571428571489,-0.544827586206749,-0.435714285714366,0.014285714285745,0.000000000000000,0.000000000000008,-0.013793103448296,-0.000000000000004,0.013793103448296,-0.014285714285748,-0.000000000000000,2 -4287,4300,4302,4315,-0.531034482758453,-0.421428571428614,-0.537931034482601,-0.428571428571489,-0.537931034482601,-0.414285714285743,-0.544827586206749,-0.421428571428618,0.014285714285746,0.000000000000000,0.000000000000004,-0.013793103448296,-0.000000000000003,0.013793103448296,-0.014285714285747,-0.000000000000000,2 -3658,4288,4301,4316,-0.537931034482601,-0.400000000000000,-0.531034482758453,-0.407142857142871,-0.537931034482601,-0.414285714285743,-0.544827586206749,-0.407142857142872,-0.000000000000000,0.013793103448296,0.014285714285741,-0.000000000000000,0.000000000000003,-0.013793103448296,-0.014285714285744,0.000000000000000,2 -419,4289,4304,4317,-0.551724137930900,-0.600000000000000,-0.544827586206749,-0.592857142857128,-0.551724137930900,-0.585714285714256,-0.558620689655051,-0.592857142857128,0.000000000000000,-0.013793103448302,0.014285714285744,0.000000000000000,0.000000000000000,0.013793103448301,-0.014285714285745,0.000000000000000,2 -4290,4303,4305,4318,-0.544827586206749,-0.578571428571395,-0.551724137930900,-0.585714285714256,-0.551724137930900,-0.571428571428534,-0.558620689655051,-0.578571428571395,0.014285714285722,-0.000000000000000,-0.000000000000000,-0.013793103448301,-0.000000000000001,0.013793103448302,-0.014285714285721,-0.000000000000000,2 -4291,4304,4306,4319,-0.544827586206749,-0.564285714285689,-0.551724137930900,-0.571428571428534,-0.551724137930900,-0.557142857142847,-0.558620689655051,-0.564285714285692,0.014285714285688,0.000000000000000,0.000000000000001,-0.013793103448302,-0.000000000000004,0.013793103448302,-0.014285714285685,0.000000000000000,2 -4292,4305,4307,4320,-0.544827586206749,-0.550000000000001,-0.551724137930900,-0.557142857142847,-0.551724137930900,-0.542857142857161,-0.558620689655051,-0.550000000000006,0.014285714285688,0.000000000000000,0.000000000000004,-0.013793103448302,-0.000000000000006,0.013793103448302,-0.014285714285685,-0.000000000000000,2 -4293,4306,4308,4321,-0.544827586206749,-0.535714285714314,-0.551724137930900,-0.542857142857161,-0.551724137930900,-0.528571428571475,-0.558620689655051,-0.535714285714321,0.014285714285687,0.000000000000000,0.000000000000006,-0.013793103448302,-0.000000000000009,0.013793103448302,-0.014285714285685,0.000000000000000,2 -4294,4307,4309,4322,-0.544827586206749,-0.521428571428662,-0.551724137930900,-0.528571428571475,-0.551724137930900,-0.514285714285861,-0.558620689655051,-0.521428571428674,0.014285714285616,0.000000000000000,0.000000000000009,-0.013793103448302,-0.000000000000015,0.013793103448302,-0.014285714285611,0.000000000000000,2 -4295,4308,4310,4323,-0.544827586206749,-0.507142857143037,-0.551724137930900,-0.514285714285861,-0.551724137930900,-0.500000000000228,-0.558620689655051,-0.507142857143053,0.014285714285635,0.000000000000000,0.000000000000015,-0.013793103448302,-0.000000000000018,0.013793103448302,-0.014285714285631,-0.000000000000000,2 -4296,4309,4311,4324,-0.544827586206749,-0.492857142857350,-0.551724137930900,-0.500000000000228,-0.551724137930900,-0.485714285714490,-0.558620689655051,-0.492857142857368,0.014285714285738,0.000000000000000,0.000000000000018,-0.013793103448302,-0.000000000000017,0.013793103448302,-0.014285714285739,-0.000000000000000,2 -4297,4310,4312,4325,-0.544827586206749,-0.478571428571610,-0.551724137930900,-0.485714285714490,-0.551724137930900,-0.471428571428746,-0.558620689655051,-0.478571428571625,0.014285714285743,0.000000000000000,0.000000000000017,-0.013793103448302,-0.000000000000014,0.013793103448302,-0.014285714285746,-0.000000000000000,2 -4298,4311,4313,4326,-0.544827586206749,-0.464285714285865,-0.551724137930900,-0.471428571428746,-0.551724137930900,-0.457142857142996,-0.558620689655051,-0.464285714285877,0.014285714285748,0.000000000000000,0.000000000000014,-0.013793103448302,-0.000000000000011,0.013793103448302,-0.014285714285751,0.000000000000000,2 -4299,4312,4314,4327,-0.544827586206749,-0.450000000000115,-0.551724137930900,-0.457142857142996,-0.551724137930900,-0.442857142857244,-0.558620689655051,-0.450000000000124,0.014285714285751,-0.000000000000000,0.000000000000011,-0.013793103448302,-0.000000000000007,0.013793103448302,-0.014285714285754,-0.000000000000000,2 -4300,4313,4315,4328,-0.544827586206749,-0.435714285714366,-0.551724137930900,-0.442857142857244,-0.551724137930900,-0.428571428571494,-0.558620689655051,-0.435714285714372,0.014285714285748,0.000000000000000,0.000000000000007,-0.013793103448302,-0.000000000000004,0.013793103448302,-0.014285714285751,-0.000000000000000,2 -4301,4314,4316,4329,-0.544827586206749,-0.421428571428618,-0.551724137930900,-0.428571428571494,-0.551724137930900,-0.414285714285746,-0.558620689655051,-0.421428571428622,0.014285714285747,0.000000000000000,0.000000000000004,-0.013793103448302,-0.000000000000003,0.013793103448302,-0.014285714285749,-0.000000000000000,2 -3717,4302,4315,4330,-0.551724137930900,-0.400000000000000,-0.544827586206749,-0.407142857142872,-0.551724137930900,-0.414285714285746,-0.558620689655051,-0.407142857142874,-0.000000000000000,0.013793103448302,0.014285714285744,-0.000000000000000,0.000000000000003,-0.013793103448302,-0.014285714285747,0.000000000000000,2 -413,4303,4318,4331,-0.565517241379205,-0.600000000000000,-0.558620689655051,-0.592857142857128,-0.565517241379205,-0.585714285714255,-0.572413793103360,-0.592857142857128,0.000000000000000,-0.013793103448309,0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448309,-0.014285714285745,-0.000000000000000,2 -4304,4317,4319,4332,-0.558620689655051,-0.578571428571395,-0.565517241379205,-0.585714285714255,-0.565517241379205,-0.571428571428535,-0.572413793103360,-0.578571428571395,0.014285714285721,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000001,0.013793103448309,-0.014285714285720,-0.000000000000000,2 -4305,4318,4320,4333,-0.558620689655051,-0.564285714285692,-0.565517241379205,-0.571428571428535,-0.565517241379205,-0.557142857142851,-0.572413793103360,-0.564285714285694,0.014285714285685,-0.000000000000000,0.000000000000001,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285682,-0.000000000000000,2 -4306,4319,4321,4334,-0.558620689655051,-0.550000000000006,-0.565517241379205,-0.557142857142851,-0.565517241379205,-0.542857142857167,-0.572413793103360,-0.550000000000012,0.014285714285685,0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000006,0.013793103448309,-0.014285714285683,-0.000000000000000,2 -4307,4320,4322,4335,-0.558620689655051,-0.535714285714321,-0.565517241379205,-0.542857142857167,-0.565517241379205,-0.528571428571484,-0.572413793103360,-0.535714285714329,0.014285714285685,-0.000000000000000,0.000000000000006,-0.013793103448309,-0.000000000000009,0.013793103448309,-0.014285714285682,-0.000000000000000,2 -4308,4321,4323,4336,-0.558620689655051,-0.521428571428674,-0.565517241379205,-0.528571428571484,-0.565517241379205,-0.514285714285876,-0.572413793103360,-0.521428571428686,0.014285714285611,-0.000000000000000,0.000000000000009,-0.013793103448309,-0.000000000000015,0.013793103448309,-0.014285714285605,0.000000000000000,2 -4309,4322,4324,4337,-0.558620689655051,-0.507142857143053,-0.565517241379205,-0.514285714285876,-0.565517241379205,-0.500000000000247,-0.572413793103360,-0.507142857143070,0.014285714285631,0.000000000000000,0.000000000000015,-0.013793103448309,-0.000000000000018,0.013793103448309,-0.014285714285627,-0.000000000000000,2 -4310,4323,4325,4338,-0.558620689655051,-0.492857142857368,-0.565517241379205,-0.500000000000247,-0.565517241379205,-0.485714285714507,-0.572413793103360,-0.492857142857386,0.014285714285739,0.000000000000000,0.000000000000018,-0.013793103448309,-0.000000000000017,0.013793103448309,-0.014285714285741,-0.000000000000000,2 -4311,4324,4326,4339,-0.558620689655051,-0.478571428571625,-0.565517241379205,-0.485714285714507,-0.565517241379205,-0.471428571428760,-0.572413793103360,-0.478571428571641,0.014285714285746,0.000000000000000,0.000000000000017,-0.013793103448309,-0.000000000000014,0.013793103448309,-0.014285714285749,0.000000000000000,2 -4312,4325,4327,4340,-0.558620689655051,-0.464285714285877,-0.565517241379205,-0.471428571428760,-0.565517241379205,-0.457142857143007,-0.572413793103360,-0.464285714285889,0.014285714285751,-0.000000000000000,0.000000000000014,-0.013793103448309,-0.000000000000011,0.013793103448309,-0.014285714285754,-0.000000000000000,2 -4313,4326,4328,4341,-0.558620689655051,-0.450000000000124,-0.565517241379205,-0.457142857143007,-0.565517241379205,-0.442857142857251,-0.572413793103360,-0.450000000000133,0.014285714285754,0.000000000000000,0.000000000000011,-0.013793103448309,-0.000000000000008,0.013793103448309,-0.014285714285757,-0.000000000000000,2 -4314,4327,4329,4342,-0.558620689655051,-0.435714285714372,-0.565517241379205,-0.442857142857251,-0.565517241379205,-0.428571428571498,-0.572413793103360,-0.435714285714378,0.014285714285751,0.000000000000000,0.000000000000008,-0.013793103448309,-0.000000000000004,0.013793103448309,-0.014285714285755,-0.000000000000000,2 -4315,4328,4330,4343,-0.558620689655051,-0.421428571428622,-0.565517241379205,-0.428571428571498,-0.565517241379205,-0.414285714285749,-0.572413793103360,-0.421428571428625,0.014285714285749,0.000000000000000,0.000000000000004,-0.013793103448309,-0.000000000000003,0.013793103448309,-0.014285714285750,-0.000000000000000,2 -3776,4316,4329,4344,-0.565517241379205,-0.400000000000000,-0.558620689655051,-0.407142857142874,-0.565517241379205,-0.414285714285749,-0.572413793103360,-0.407142857142875,-0.000000000000000,0.013793103448309,0.014285714285747,-0.000000000000000,0.000000000000003,-0.013793103448309,-0.014285714285750,0.000000000000000,2 -407,4317,4332,4345,-0.579310344827519,-0.600000000000000,-0.572413793103360,-0.592857142857128,-0.579310344827519,-0.585714285714255,-0.586206896551678,-0.592857142857127,0.000000000000000,-0.013793103448318,0.014285714285745,0.000000000000000,0.000000000000000,0.013793103448318,-0.014285714285745,0.000000000000000,2 -4318,4331,4333,4346,-0.572413793103360,-0.578571428571395,-0.579310344827519,-0.585714285714255,-0.579310344827519,-0.571428571428536,-0.586206896551678,-0.578571428571396,0.014285714285720,0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000001,0.013793103448318,-0.014285714285718,0.000000000000000,2 -4319,4332,4334,4347,-0.572413793103360,-0.564285714285694,-0.579310344827519,-0.571428571428536,-0.579310344827519,-0.557142857142855,-0.586206896551678,-0.564285714285697,0.014285714285682,0.000000000000000,0.000000000000001,-0.013793103448318,-0.000000000000004,0.013793103448318,-0.014285714285680,-0.000000000000000,2 -4320,4333,4335,4348,-0.572413793103360,-0.550000000000012,-0.579310344827519,-0.557142857142855,-0.579310344827519,-0.542857142857173,-0.586206896551678,-0.550000000000017,0.014285714285683,0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000007,0.013793103448318,-0.014285714285680,-0.000000000000000,2 -4321,4334,4336,4349,-0.572413793103360,-0.535714285714329,-0.579310344827519,-0.542857142857173,-0.579310344827519,-0.528571428571493,-0.586206896551678,-0.535714285714337,0.014285714285682,0.000000000000000,0.000000000000007,-0.013793103448318,-0.000000000000009,0.013793103448318,-0.014285714285680,-0.000000000000000,2 -4322,4335,4337,4350,-0.572413793103360,-0.521428571428686,-0.579310344827519,-0.528571428571493,-0.579310344827519,-0.514285714285891,-0.586206896551678,-0.521428571428697,0.014285714285605,-0.000000000000000,0.000000000000009,-0.013793103448318,-0.000000000000015,0.013793103448318,-0.014285714285599,-0.000000000000000,2 -4323,4336,4338,4351,-0.572413793103360,-0.507142857143070,-0.579310344827519,-0.514285714285891,-0.579310344827519,-0.500000000000265,-0.586206896551678,-0.507142857143086,0.014285714285627,0.000000000000000,0.000000000000015,-0.013793103448318,-0.000000000000018,0.013793103448318,-0.014285714285624,0.000000000000000,2 -4324,4337,4339,4352,-0.572413793103360,-0.492857142857386,-0.579310344827519,-0.500000000000265,-0.579310344827519,-0.485714285714524,-0.586206896551678,-0.492857142857403,0.014285714285741,0.000000000000000,0.000000000000018,-0.013793103448318,-0.000000000000017,0.013793103448318,-0.014285714285742,-0.000000000000000,2 -4325,4338,4340,4353,-0.572413793103360,-0.478571428571641,-0.579310344827519,-0.485714285714524,-0.579310344827519,-0.471428571428773,-0.586206896551678,-0.478571428571656,0.014285714285749,-0.000000000000000,0.000000000000017,-0.013793103448318,-0.000000000000014,0.013793103448318,-0.014285714285752,-0.000000000000000,2 -4326,4339,4341,4354,-0.572413793103360,-0.464285714285889,-0.579310344827519,-0.471428571428773,-0.579310344827519,-0.457142857143017,-0.586206896551678,-0.464285714285902,0.014285714285754,0.000000000000000,0.000000000000014,-0.013793103448318,-0.000000000000011,0.013793103448318,-0.014285714285757,-0.000000000000000,2 -4327,4340,4342,4355,-0.572413793103360,-0.450000000000133,-0.579310344827519,-0.457142857143017,-0.579310344827519,-0.442857142857259,-0.586206896551678,-0.450000000000143,0.014285714285757,0.000000000000000,0.000000000000011,-0.013793103448318,-0.000000000000007,0.013793103448318,-0.014285714285761,0.000000000000000,2 -4328,4341,4343,4356,-0.572413793103360,-0.435714285714378,-0.579310344827519,-0.442857142857259,-0.579310344827519,-0.428571428571503,-0.586206896551678,-0.435714285714384,0.014285714285755,0.000000000000000,0.000000000000007,-0.013793103448318,-0.000000000000004,0.013793103448318,-0.014285714285757,-0.000000000000000,2 -4329,4342,4344,4357,-0.572413793103360,-0.421428571428625,-0.579310344827519,-0.428571428571503,-0.579310344827519,-0.414285714285752,-0.586206896551678,-0.421428571428629,0.014285714285750,0.000000000000000,0.000000000000004,-0.013793103448318,-0.000000000000003,0.013793103448318,-0.014285714285752,-0.000000000000000,2 -3835,4330,4343,4358,-0.579310344827519,-0.400000000000000,-0.572413793103360,-0.407142857142875,-0.579310344827519,-0.414285714285752,-0.586206896551678,-0.407142857142877,-0.000000000000000,0.013793103448318,0.014285714285750,-0.000000000000000,0.000000000000003,-0.013793103448318,-0.014285714285753,0.000000000000000,2 -316,401,4331,4346,-0.600000000000000,-0.592857142857127,-0.593103448275839,-0.600000000000000,-0.586206896551678,-0.592857142857127,-0.593103448275839,-0.585714285714255,-0.014285714285745,-0.000000000000000,-0.000000000000000,-0.013793103448322,0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448322,2 -320,4332,4345,4347,-0.600000000000000,-0.578571428571396,-0.586206896551678,-0.578571428571396,-0.593103448275839,-0.585714285714255,-0.593103448275839,-0.571428571428537,-0.014285714285717,-0.000000000000000,0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000001,0.013793103448322,2 -324,4333,4346,4348,-0.600000000000000,-0.564285714285699,-0.586206896551678,-0.564285714285697,-0.593103448275839,-0.571428571428537,-0.593103448275839,-0.557142857142858,-0.014285714285677,-0.000000000000000,0.014285714285680,0.000000000000000,0.000000000000001,-0.013793103448322,-0.000000000000004,0.013793103448322,2 -328,4334,4347,4349,-0.600000000000000,-0.550000000000022,-0.586206896551678,-0.550000000000017,-0.593103448275839,-0.557142857142858,-0.593103448275839,-0.542857142857180,-0.014285714285677,-0.000000000000000,0.014285714285680,0.000000000000000,0.000000000000004,-0.013793103448322,-0.000000000000006,0.013793103448322,2 -332,4335,4348,4350,-0.600000000000000,-0.535714285714345,-0.586206896551678,-0.535714285714337,-0.593103448275839,-0.542857142857180,-0.593103448275839,-0.528571428571502,-0.014285714285677,-0.000000000000000,0.014285714285680,0.000000000000000,0.000000000000006,-0.013793103448322,-0.000000000000009,0.013793103448322,2 -336,4336,4349,4351,-0.600000000000000,-0.521428571428709,-0.586206896551678,-0.521428571428697,-0.593103448275839,-0.528571428571502,-0.593103448275839,-0.514285714285905,-0.014285714285593,-0.000000000000000,0.014285714285599,0.000000000000000,0.000000000000009,-0.013793103448322,-0.000000000000015,0.013793103448322,2 -340,4337,4350,4352,-0.600000000000000,-0.507142857143103,-0.586206896551678,-0.507142857143086,-0.593103448275839,-0.514285714285905,-0.593103448275839,-0.500000000000283,-0.014285714285620,-0.000000000000000,0.014285714285624,-0.000000000000000,0.000000000000015,-0.013793103448322,-0.000000000000018,0.013793103448322,2 -344,4338,4351,4353,-0.600000000000000,-0.492857142857421,-0.586206896551678,-0.492857142857403,-0.593103448275839,-0.500000000000283,-0.593103448275839,-0.485714285714540,-0.014285714285744,-0.000000000000000,0.014285714285742,0.000000000000000,0.000000000000018,-0.013793103448322,-0.000000000000017,0.013793103448322,2 -348,4339,4352,4354,-0.600000000000000,-0.478571428571672,-0.586206896551678,-0.478571428571656,-0.593103448275839,-0.485714285714540,-0.593103448275839,-0.471428571428787,-0.014285714285754,-0.000000000000000,0.014285714285752,0.000000000000000,0.000000000000017,-0.013793103448322,-0.000000000000014,0.013793103448322,2 -352,4340,4353,4355,-0.600000000000000,-0.464285714285914,-0.586206896551678,-0.464285714285902,-0.593103448275839,-0.471428571428787,-0.593103448275839,-0.457142857143028,-0.014285714285761,-0.000000000000000,0.014285714285757,0.000000000000000,0.000000000000014,-0.013793103448322,-0.000000000000011,0.013793103448322,2 -356,4341,4354,4356,-0.600000000000000,-0.450000000000152,-0.586206896551678,-0.450000000000143,-0.593103448275839,-0.457142857143028,-0.593103448275839,-0.442857142857266,-0.014285714285764,-0.000000000000000,0.014285714285761,-0.000000000000000,0.000000000000011,-0.013793103448322,-0.000000000000007,0.013793103448322,2 -360,4342,4355,4357,-0.600000000000000,-0.435714285714389,-0.586206896551678,-0.435714285714384,-0.593103448275839,-0.442857142857266,-0.593103448275839,-0.428571428571507,-0.014285714285761,-0.000000000000000,0.014285714285757,0.000000000000000,0.000000000000007,-0.013793103448322,-0.000000000000004,0.013793103448322,2 -364,4343,4356,4358,-0.600000000000000,-0.421428571428633,-0.586206896551678,-0.421428571428629,-0.593103448275839,-0.428571428571507,-0.593103448275839,-0.414285714285755,-0.014285714285753,-0.000000000000000,0.014285714285752,0.000000000000000,0.000000000000004,-0.013793103448322,-0.000000000000003,0.013793103448322,2 -368,3894,4344,4357,-0.600000000000000,-0.407142857142878,-0.593103448275839,-0.400000000000000,-0.586206896551678,-0.407142857142877,-0.593103448275839,-0.414285714285755,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448322,0.014285714285753,-0.000000000000000,0.000000000000003,-0.013793103448322,2 -575,3953,4360,4373,-0.193103448275876,-0.600000000000000,-0.200000000000000,-0.592857142857131,-0.193103448275876,-0.585714285714262,-0.186206896551752,-0.592857142857131,-0.000000000000000,-0.013793103448248,-0.014285714285738,-0.000000000000000,-0.000000000000000,0.013793103448248,0.014285714285738,0.000000000000000,2 -3954,4359,4361,4374,-0.200000000000000,-0.578571428571386,-0.193103448275876,-0.585714285714262,-0.193103448275876,-0.571428571428510,-0.186206896551752,-0.578571428571386,-0.014285714285753,0.000000000000000,0.000000000000000,-0.013793103448248,0.000000000000001,0.013793103448248,0.014285714285752,0.000000000000000,2 -3955,4360,4362,4375,-0.200000000000000,-0.564285714285631,-0.193103448275876,-0.571428571428510,-0.193103448275876,-0.557142857142755,-0.186206896551752,-0.564285714285633,-0.014285714285756,0.000000000000000,-0.000000000000001,-0.013793103448248,0.000000000000003,0.013793103448248,0.014285714285753,0.000000000000000,2 -3956,4361,4363,4376,-0.200000000000000,-0.549999999999875,-0.193103448275876,-0.557142857142755,-0.193103448275876,-0.542857142857000,-0.186206896551752,-0.549999999999880,-0.014285714285756,0.000000000000000,-0.000000000000003,-0.013793103448248,0.000000000000006,0.013793103448248,0.014285714285753,0.000000000000000,2 -3957,4362,4364,4377,-0.200000000000000,-0.535714285714122,-0.193103448275876,-0.542857142857000,-0.193103448275876,-0.528571428571252,-0.186206896551752,-0.535714285714130,-0.014285714285750,0.000000000000000,-0.000000000000006,-0.013793103448248,0.000000000000009,0.013793103448248,0.014285714285747,0.000000000000000,2 -3958,4363,4365,4378,-0.200000000000000,-0.521428571428368,-0.193103448275876,-0.528571428571252,-0.193103448275876,-0.514285714285495,-0.186206896551752,-0.521428571428379,-0.014285714285759,0.000000000000000,-0.000000000000009,-0.013793103448248,0.000000000000014,0.013793103448248,0.014285714285754,0.000000000000000,2 -3959,4364,4366,4379,-0.200000000000000,-0.507142857142625,-0.193103448275876,-0.514285714285495,-0.193103448275876,-0.499999999999770,-0.186206896551752,-0.507142857142641,-0.014285714285727,0.000000000000000,-0.000000000000014,-0.013793103448248,0.000000000000018,0.013793103448248,0.014285714285723,0.000000000000000,2 -3960,4365,4367,4380,-0.200000000000000,-0.492857142856910,-0.193103448275876,-0.499999999999770,-0.193103448275876,-0.485714285714068,-0.186206896551752,-0.492857142856928,-0.014285714285702,0.000000000000000,-0.000000000000018,-0.013793103448248,0.000000000000017,0.013793103448248,0.014285714285704,0.000000000000000,2 -3961,4366,4368,4381,-0.200000000000000,-0.478571428571225,-0.193103448275876,-0.485714285714068,-0.193103448275876,-0.471428571428397,-0.186206896551752,-0.478571428571240,-0.014285714285669,0.000000000000000,-0.000000000000017,-0.013793103448248,0.000000000000014,0.013793103448248,0.014285714285672,0.000000000000000,2 -3962,4367,4369,4382,-0.200000000000000,-0.464285714285555,-0.193103448275876,-0.471428571428397,-0.193103448275876,-0.457142857142726,-0.186206896551752,-0.464285714285568,-0.014285714285669,0.000000000000000,-0.000000000000014,-0.013793103448248,0.000000000000011,0.013793103448248,0.014285714285673,0.000000000000000,2 -3963,4368,4370,4383,-0.200000000000000,-0.449999999999886,-0.193103448275876,-0.457142857142726,-0.193103448275876,-0.442857142857055,-0.186206896551752,-0.449999999999895,-0.014285714285669,0.000000000000000,-0.000000000000011,-0.013793103448248,0.000000000000007,0.013793103448248,0.014285714285673,0.000000000000000,2 -3964,4369,4371,4384,-0.200000000000000,-0.435714285714217,-0.193103448275876,-0.442857142857055,-0.193103448275876,-0.428571428571384,-0.186206896551752,-0.435714285714222,-0.014285714285669,0.000000000000000,-0.000000000000007,-0.013793103448248,0.000000000000004,0.013793103448248,0.014285714285672,0.000000000000000,2 -3965,4370,4372,4385,-0.200000000000000,-0.421428571428526,-0.193103448275876,-0.428571428571384,-0.193103448275876,-0.414285714285671,-0.186206896551752,-0.421428571428529,-0.014285714285713,0.000000000000000,-0.000000000000004,-0.013793103448248,0.000000000000003,0.013793103448248,0.014285714285714,0.000000000000000,2 -3966,4371,4386,9303,-0.200000000000000,-0.407142857142835,-0.193103448275876,-0.414285714285671,-0.186206896551752,-0.407142857142836,-0.193103448275876,-0.400000000000000,-0.014285714285669,0.000000000000000,-0.000000000000003,-0.013793103448248,0.014285714285672,-0.000000000000000,0.000000000000000,0.013793103448248,2 -581,4359,4374,4387,-0.179310344827634,-0.600000000000000,-0.186206896551752,-0.592857142857131,-0.179310344827634,-0.585714285714262,-0.172413793103516,-0.592857142857131,-0.000000000000000,-0.013793103448237,-0.014285714285738,-0.000000000000000,-0.000000000000000,0.013793103448237,0.014285714285738,0.000000000000000,2 -4360,4373,4375,4388,-0.186206896551752,-0.578571428571386,-0.179310344827634,-0.585714285714262,-0.179310344827634,-0.571428571428511,-0.172413793103516,-0.578571428571386,-0.014285714285752,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285751,0.000000000000000,2 -4361,4374,4376,4389,-0.186206896551752,-0.564285714285633,-0.179310344827634,-0.571428571428511,-0.179310344827634,-0.557142857142759,-0.172413793103516,-0.564285714285636,-0.014285714285753,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285751,0.000000000000000,2 -4362,4375,4377,4390,-0.186206896551752,-0.549999999999880,-0.179310344827634,-0.557142857142759,-0.179310344827634,-0.542857142857007,-0.172413793103516,-0.549999999999885,-0.014285714285753,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285751,0.000000000000000,2 -4363,4376,4378,4391,-0.186206896551752,-0.535714285714130,-0.179310344827634,-0.542857142857007,-0.179310344827634,-0.528571428571260,-0.172413793103516,-0.535714285714137,-0.014285714285747,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448236,0.014285714285745,0.000000000000000,2 -4364,4377,4379,4392,-0.186206896551752,-0.521428571428379,-0.179310344827634,-0.528571428571260,-0.179310344827634,-0.514285714285510,-0.172413793103516,-0.521428571428391,-0.014285714285754,-0.000000000000000,-0.000000000000009,-0.013793103448236,0.000000000000015,0.013793103448237,0.014285714285748,-0.000000000000000,2 -4365,4378,4380,4393,-0.186206896551752,-0.507142857142641,-0.179310344827634,-0.514285714285510,-0.179310344827634,-0.499999999999789,-0.172413793103516,-0.507142857142657,-0.014285714285723,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285719,0.000000000000000,2 -4366,4379,4381,4394,-0.186206896551752,-0.492857142856928,-0.179310344827634,-0.499999999999789,-0.179310344827634,-0.485714285714085,-0.172413793103516,-0.492857142856945,-0.014285714285704,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285705,0.000000000000000,2 -4367,4380,4382,4395,-0.186206896551752,-0.478571428571240,-0.179310344827634,-0.485714285714085,-0.179310344827634,-0.471428571428411,-0.172413793103516,-0.478571428571255,-0.014285714285672,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285675,0.000000000000000,2 -4368,4381,4383,4396,-0.186206896551752,-0.464285714285568,-0.179310344827634,-0.471428571428411,-0.179310344827634,-0.457142857142737,-0.172413793103516,-0.464285714285580,-0.014285714285673,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285676,0.000000000000000,2 -4369,4382,4384,4397,-0.186206896551752,-0.449999999999895,-0.179310344827634,-0.457142857142737,-0.179310344827634,-0.442857142857062,-0.172413793103516,-0.449999999999904,-0.014285714285673,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000008,0.013793103448236,0.014285714285676,0.000000000000000,2 -4370,4383,4385,4398,-0.186206896551752,-0.435714285714222,-0.179310344827634,-0.442857142857062,-0.179310344827634,-0.428571428571389,-0.172413793103516,-0.435714285714228,-0.014285714285672,-0.000000000000000,-0.000000000000008,-0.013793103448236,0.000000000000004,0.013793103448237,0.014285714285676,-0.000000000000000,2 -4371,4384,4386,4399,-0.186206896551752,-0.421428571428529,-0.179310344827634,-0.428571428571389,-0.179310344827634,-0.414285714285674,-0.172413793103516,-0.421428571428533,-0.014285714285714,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285715,0.000000000000000,2 -4372,4385,4400,9304,-0.186206896551752,-0.407142857142836,-0.179310344827634,-0.414285714285674,-0.172413793103516,-0.407142857142838,-0.179310344827634,-0.400000000000000,-0.014285714285672,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285675,-0.000000000000000,0.000000000000000,0.013793103448237,2 -587,4373,4388,4401,-0.165517241379389,-0.600000000000000,-0.172413793103516,-0.592857142857131,-0.165517241379389,-0.585714285714262,-0.158620689655262,-0.592857142857131,-0.000000000000000,-0.013793103448254,-0.014285714285738,-0.000000000000000,-0.000000000000000,0.013793103448254,0.014285714285739,0.000000000000000,2 -4374,4387,4389,4402,-0.172413793103516,-0.578571428571386,-0.165517241379389,-0.585714285714262,-0.165517241379389,-0.571428571428512,-0.158620689655262,-0.578571428571387,-0.014285714285751,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000001,0.013793103448254,0.014285714285749,-0.000000000000000,2 -4375,4388,4390,4403,-0.172413793103516,-0.564285714285636,-0.165517241379389,-0.571428571428512,-0.165517241379389,-0.557142857142762,-0.158620689655262,-0.564285714285638,-0.014285714285751,-0.000000000000000,-0.000000000000001,-0.013793103448254,0.000000000000004,0.013793103448254,0.014285714285748,0.000000000000000,2 -4376,4389,4391,4404,-0.172413793103516,-0.549999999999885,-0.165517241379389,-0.557142857142762,-0.165517241379389,-0.542857142857013,-0.158620689655262,-0.549999999999890,-0.014285714285751,-0.000000000000000,-0.000000000000004,-0.013793103448254,0.000000000000006,0.013793103448254,0.014285714285748,0.000000000000000,2 -4377,4390,4392,4405,-0.172413793103516,-0.535714285714137,-0.165517241379389,-0.542857142857013,-0.165517241379389,-0.528571428571269,-0.158620689655262,-0.535714285714145,-0.014285714285745,-0.000000000000000,-0.000000000000006,-0.013793103448254,0.000000000000009,0.013793103448254,0.014285714285742,0.000000000000000,2 -4378,4391,4393,4406,-0.172413793103516,-0.521428571428391,-0.165517241379389,-0.528571428571269,-0.165517241379389,-0.514285714285524,-0.158620689655262,-0.521428571428403,-0.014285714285748,0.000000000000000,-0.000000000000009,-0.013793103448254,0.000000000000015,0.013793103448254,0.014285714285742,0.000000000000000,2 -4379,4392,4394,4407,-0.172413793103516,-0.507142857142657,-0.165517241379389,-0.514285714285524,-0.165517241379389,-0.499999999999807,-0.158620689655262,-0.507142857142674,-0.014285714285719,-0.000000000000000,-0.000000000000015,-0.013793103448254,0.000000000000018,0.013793103448254,0.014285714285716,0.000000000000000,2 -4380,4393,4395,4408,-0.172413793103516,-0.492857142856945,-0.165517241379389,-0.499999999999807,-0.165517241379389,-0.485714285714102,-0.158620689655262,-0.492857142856963,-0.014285714285705,-0.000000000000000,-0.000000000000018,-0.013793103448254,0.000000000000017,0.013793103448254,0.014285714285706,0.000000000000000,2 -4381,4394,4396,4409,-0.172413793103516,-0.478571428571255,-0.165517241379389,-0.485714285714102,-0.165517241379389,-0.471428571428425,-0.158620689655262,-0.478571428571271,-0.014285714285675,-0.000000000000000,-0.000000000000017,-0.013793103448254,0.000000000000014,0.013793103448254,0.014285714285678,0.000000000000000,2 -4382,4395,4397,4410,-0.172413793103516,-0.464285714285580,-0.165517241379389,-0.471428571428425,-0.165517241379389,-0.457142857142748,-0.158620689655262,-0.464285714285592,-0.014285714285676,-0.000000000000000,-0.000000000000014,-0.013793103448254,0.000000000000011,0.013793103448254,0.014285714285679,0.000000000000000,2 -4383,4396,4398,4411,-0.172413793103516,-0.449999999999904,-0.165517241379389,-0.457142857142748,-0.165517241379389,-0.442857142857070,-0.158620689655262,-0.449999999999913,-0.014285714285676,-0.000000000000000,-0.000000000000011,-0.013793103448254,0.000000000000007,0.013793103448254,0.014285714285679,0.000000000000000,2 -4384,4397,4399,4412,-0.172413793103516,-0.435714285714228,-0.165517241379389,-0.442857142857070,-0.165517241379389,-0.428571428571393,-0.158620689655262,-0.435714285714234,-0.014285714285676,0.000000000000000,-0.000000000000007,-0.013793103448254,0.000000000000004,0.013793103448254,0.014285714285679,0.000000000000000,2 -4385,4398,4400,4413,-0.172413793103516,-0.421428571428533,-0.165517241379389,-0.428571428571393,-0.165517241379389,-0.414285714285677,-0.158620689655262,-0.421428571428537,-0.014285714285715,-0.000000000000000,-0.000000000000004,-0.013793103448254,0.000000000000003,0.013793103448254,0.014285714285717,0.000000000000000,2 -4386,4399,4414,9305,-0.172413793103516,-0.407142857142838,-0.165517241379389,-0.414285714285677,-0.158620689655262,-0.407142857142839,-0.165517241379389,-0.400000000000000,-0.014285714285675,0.000000000000000,-0.000000000000003,-0.013793103448254,0.014285714285678,-0.000000000000000,0.000000000000000,0.013793103448254,2 -593,4387,4402,4415,-0.151724137931136,-0.600000000000000,-0.158620689655262,-0.592857142857131,-0.151724137931136,-0.585714285714261,-0.144827586207010,-0.592857142857131,-0.000000000000000,-0.013793103448251,-0.014285714285739,-0.000000000000000,-0.000000000000000,0.013793103448252,0.014285714285739,0.000000000000000,2 -4388,4401,4403,4416,-0.158620689655262,-0.578571428571387,-0.151724137931136,-0.585714285714261,-0.151724137931136,-0.571428571428513,-0.144827586207010,-0.578571428571387,-0.014285714285749,0.000000000000000,0.000000000000000,-0.013793103448252,0.000000000000001,0.013793103448251,0.014285714285748,0.000000000000000,2 -4389,4402,4404,4417,-0.158620689655262,-0.564285714285638,-0.151724137931136,-0.571428571428513,-0.151724137931136,-0.557142857142766,-0.144827586207010,-0.564285714285640,-0.014285714285748,-0.000000000000000,-0.000000000000001,-0.013793103448251,0.000000000000003,0.013793103448251,0.014285714285745,-0.000000000000000,2 -4390,4403,4405,4418,-0.158620689655262,-0.549999999999890,-0.151724137931136,-0.557142857142766,-0.151724137931136,-0.542857142857019,-0.144827586207010,-0.549999999999895,-0.014285714285748,-0.000000000000000,-0.000000000000003,-0.013793103448251,0.000000000000007,0.013793103448251,0.014285714285745,0.000000000000000,2 -4391,4404,4406,4419,-0.158620689655262,-0.535714285714145,-0.151724137931136,-0.542857142857019,-0.151724137931136,-0.528571428571278,-0.144827586207010,-0.535714285714153,-0.014285714285742,-0.000000000000000,-0.000000000000007,-0.013793103448251,0.000000000000009,0.013793103448251,0.014285714285740,0.000000000000000,2 -4392,4405,4407,4420,-0.158620689655262,-0.521428571428403,-0.151724137931136,-0.528571428571278,-0.151724137931136,-0.514285714285539,-0.144827586207010,-0.521428571428414,-0.014285714285742,-0.000000000000000,-0.000000000000009,-0.013793103448251,0.000000000000015,0.013793103448251,0.014285714285736,0.000000000000000,2 -4393,4406,4408,4421,-0.158620689655262,-0.507142857142674,-0.151724137931136,-0.514285714285539,-0.151724137931136,-0.499999999999825,-0.144827586207010,-0.507142857142690,-0.014285714285716,-0.000000000000000,-0.000000000000015,-0.013793103448251,0.000000000000018,0.013793103448251,0.014285714285712,0.000000000000000,2 -4394,4407,4409,4422,-0.158620689655262,-0.492857142856963,-0.151724137931136,-0.499999999999825,-0.151724137931136,-0.485714285714118,-0.144827586207010,-0.492857142856981,-0.014285714285706,-0.000000000000000,-0.000000000000018,-0.013793103448251,0.000000000000017,0.013793103448251,0.014285714285708,0.000000000000000,2 -4395,4408,4410,4423,-0.158620689655262,-0.478571428571271,-0.151724137931136,-0.485714285714118,-0.151724137931136,-0.471428571428439,-0.144827586207010,-0.478571428571286,-0.014285714285678,-0.000000000000000,-0.000000000000017,-0.013793103448251,0.000000000000014,0.013793103448251,0.014285714285681,0.000000000000000,2 -4396,4409,4411,4424,-0.158620689655262,-0.464285714285592,-0.151724137931136,-0.471428571428439,-0.151724137931136,-0.457142857142758,-0.144827586207010,-0.464285714285605,-0.014285714285679,-0.000000000000000,-0.000000000000014,-0.013793103448251,0.000000000000011,0.013793103448251,0.014285714285682,0.000000000000000,2 -4397,4410,4412,4425,-0.158620689655262,-0.449999999999913,-0.151724137931136,-0.457142857142758,-0.151724137931136,-0.442857142857078,-0.144827586207010,-0.449999999999923,-0.014285714285679,-0.000000000000000,-0.000000000000011,-0.013793103448251,0.000000000000008,0.013793103448251,0.014285714285682,0.000000000000000,2 -4398,4411,4413,4426,-0.158620689655262,-0.435714285714234,-0.151724137931136,-0.442857142857078,-0.151724137931136,-0.428571428571397,-0.144827586207010,-0.435714285714240,-0.014285714285679,-0.000000000000000,-0.000000000000008,-0.013793103448251,0.000000000000004,0.013793103448251,0.014285714285682,0.000000000000000,2 -4399,4412,4414,4427,-0.158620689655262,-0.421428571428537,-0.151724137931136,-0.428571428571397,-0.151724137931136,-0.414285714285680,-0.144827586207010,-0.421428571428540,-0.014285714285717,-0.000000000000000,-0.000000000000004,-0.013793103448251,0.000000000000003,0.013793103448251,0.014285714285718,0.000000000000000,2 -4400,4413,4428,9306,-0.158620689655262,-0.407142857142839,-0.151724137931136,-0.414285714285680,-0.144827586207010,-0.407142857142841,-0.151724137931136,-0.400000000000000,-0.014285714285678,0.000000000000000,-0.000000000000003,-0.013793103448251,0.014285714285681,-0.000000000000000,0.000000000000000,0.013793103448251,2 -599,4401,4416,4429,-0.137931034482892,-0.600000000000000,-0.144827586207010,-0.592857142857131,-0.137931034482892,-0.585714285714261,-0.131034482758774,-0.592857142857130,-0.000000000000000,-0.013793103448237,-0.014285714285739,-0.000000000000000,-0.000000000000001,0.013793103448237,0.014285714285739,0.000000000000000,2 -4402,4415,4417,4430,-0.144827586207010,-0.578571428571387,-0.137931034482892,-0.585714285714261,-0.137931034482892,-0.571428571428514,-0.131034482758774,-0.578571428571387,-0.014285714285748,-0.000000000000000,0.000000000000001,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285747,0.000000000000000,2 -4403,4416,4418,4431,-0.144827586207010,-0.564285714285640,-0.137931034482892,-0.571428571428514,-0.137931034482892,-0.557142857142770,-0.131034482758774,-0.564285714285643,-0.014285714285745,0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285743,0.000000000000000,2 -4404,4417,4419,4432,-0.144827586207010,-0.549999999999895,-0.137931034482892,-0.557142857142770,-0.137931034482892,-0.542857142857026,-0.131034482758774,-0.549999999999900,-0.014285714285745,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285742,0.000000000000000,2 -4405,4418,4420,4433,-0.144827586207010,-0.535714285714153,-0.137931034482892,-0.542857142857026,-0.137931034482892,-0.528571428571287,-0.131034482758774,-0.535714285714160,-0.014285714285740,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285738,0.000000000000000,2 -4406,4419,4421,4434,-0.144827586207010,-0.521428571428414,-0.137931034482892,-0.528571428571287,-0.137931034482892,-0.514285714285554,-0.131034482758774,-0.521428571428426,-0.014285714285736,-0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285730,0.000000000000000,2 -4407,4420,4422,4435,-0.144827586207010,-0.507142857142690,-0.137931034482892,-0.514285714285554,-0.137931034482892,-0.499999999999844,-0.131034482758774,-0.507142857142707,-0.014285714285712,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285708,0.000000000000000,2 -4408,4421,4423,4436,-0.144827586207010,-0.492857142856981,-0.137931034482892,-0.499999999999844,-0.137931034482892,-0.485714285714135,-0.131034482758774,-0.492857142856998,-0.014285714285708,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285709,0.000000000000000,2 -4409,4422,4424,4437,-0.144827586207010,-0.478571428571286,-0.137931034482892,-0.485714285714135,-0.137931034482892,-0.471428571428453,-0.131034482758774,-0.478571428571302,-0.014285714285681,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285684,0.000000000000000,2 -4410,4423,4425,4438,-0.144827586207010,-0.464285714285605,-0.137931034482892,-0.471428571428453,-0.137931034482892,-0.457142857142769,-0.131034482758774,-0.464285714285617,-0.014285714285682,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285685,0.000000000000000,2 -4411,4424,4426,4439,-0.144827586207010,-0.449999999999923,-0.137931034482892,-0.457142857142769,-0.137931034482892,-0.442857142857085,-0.131034482758774,-0.449999999999932,-0.014285714285682,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000007,0.013793103448237,0.014285714285686,0.000000000000000,2 -4412,4425,4427,4440,-0.144827586207010,-0.435714285714240,-0.137931034482892,-0.442857142857085,-0.137931034482892,-0.428571428571402,-0.131034482758774,-0.435714285714246,-0.014285714285682,-0.000000000000000,-0.000000000000007,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285685,0.000000000000000,2 -4413,4426,4428,4441,-0.144827586207010,-0.421428571428540,-0.137931034482892,-0.428571428571402,-0.137931034482892,-0.414285714285683,-0.131034482758774,-0.421428571428544,-0.014285714285718,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285720,0.000000000000000,2 -4414,4427,4442,9307,-0.144827586207010,-0.407142857142841,-0.137931034482892,-0.414285714285683,-0.131034482758774,-0.407142857142842,-0.137931034482892,-0.400000000000000,-0.014285714285681,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285684,-0.000000000000000,0.000000000000000,0.013793103448237,2 -605,4415,4430,4443,-0.124137931034655,-0.600000000000000,-0.131034482758774,-0.592857142857130,-0.124137931034655,-0.585714285714261,-0.117241379310537,-0.592857142857130,-0.000000000000000,-0.013793103448237,-0.014285714285739,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285739,0.000000000000000,2 -4416,4429,4431,4444,-0.131034482758774,-0.578571428571387,-0.124137931034655,-0.585714285714261,-0.124137931034655,-0.571428571428514,-0.117241379310537,-0.578571428571388,-0.014285714285747,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285746,0.000000000000000,2 -4417,4430,4432,4445,-0.131034482758774,-0.564285714285643,-0.124137931034655,-0.571428571428514,-0.124137931034655,-0.557142857142773,-0.117241379310537,-0.564285714285645,-0.014285714285743,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285740,0.000000000000000,2 -4418,4431,4433,4446,-0.131034482758774,-0.549999999999900,-0.124137931034655,-0.557142857142773,-0.124137931034655,-0.542857142857032,-0.117241379310537,-0.549999999999905,-0.014285714285742,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000007,0.013793103448237,0.014285714285739,0.000000000000000,2 -4419,4432,4434,4447,-0.131034482758774,-0.535714285714160,-0.124137931034655,-0.542857142857032,-0.124137931034655,-0.528571428571296,-0.117241379310537,-0.535714285714168,-0.014285714285738,-0.000000000000000,-0.000000000000007,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285735,-0.000000000000000,2 -4420,4433,4435,4448,-0.131034482758774,-0.521428571428426,-0.124137931034655,-0.528571428571296,-0.124137931034655,-0.514285714285568,-0.117241379310537,-0.521428571428438,-0.014285714285730,-0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285725,0.000000000000000,2 -4421,4434,4436,4449,-0.131034482758774,-0.507142857142707,-0.124137931034655,-0.514285714285568,-0.124137931034655,-0.499999999999862,-0.117241379310537,-0.507142857142723,-0.014285714285708,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285705,0.000000000000000,2 -4422,4435,4437,4450,-0.131034482758774,-0.492857142856998,-0.124137931034655,-0.499999999999862,-0.124137931034655,-0.485714285714152,-0.117241379310537,-0.492857142857016,-0.014285714285709,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285710,0.000000000000000,2 -4423,4436,4438,4451,-0.131034482758774,-0.478571428571302,-0.124137931034655,-0.485714285714152,-0.124137931034655,-0.471428571428467,-0.117241379310537,-0.478571428571317,-0.014285714285684,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285687,0.000000000000000,2 -4424,4437,4439,4452,-0.131034482758774,-0.464285714285617,-0.124137931034655,-0.471428571428467,-0.124137931034655,-0.457142857142780,-0.117241379310537,-0.464285714285630,-0.014285714285685,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285688,0.000000000000000,2 -4425,4438,4440,4453,-0.131034482758774,-0.449999999999932,-0.124137931034655,-0.457142857142780,-0.124137931034655,-0.442857142857093,-0.117241379310537,-0.449999999999941,-0.014285714285686,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000008,0.013793103448237,0.014285714285689,0.000000000000000,2 -4426,4439,4441,4454,-0.131034482758774,-0.435714285714246,-0.124137931034655,-0.442857142857093,-0.124137931034655,-0.428571428571406,-0.117241379310537,-0.435714285714252,-0.014285714285685,-0.000000000000000,-0.000000000000008,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285688,0.000000000000000,2 -4427,4440,4442,4455,-0.131034482758774,-0.421428571428544,-0.124137931034655,-0.428571428571406,-0.124137931034655,-0.414285714285686,-0.117241379310537,-0.421428571428548,-0.014285714285720,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285721,0.000000000000000,2 -4428,4441,4456,9308,-0.131034482758774,-0.407142857142842,-0.124137931034655,-0.414285714285686,-0.117241379310537,-0.407142857142844,-0.124137931034655,-0.400000000000000,-0.014285714285684,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285687,-0.000000000000000,0.000000000000000,0.013793103448237,2 -611,4429,4444,4457,-0.110344827586419,-0.600000000000000,-0.117241379310537,-0.592857142857130,-0.110344827586419,-0.585714285714261,-0.103448275862300,-0.592857142857130,-0.000000000000000,-0.013793103448237,-0.014285714285739,-0.000000000000000,-0.000000000000000,0.013793103448237,0.014285714285740,0.000000000000000,2 -4430,4443,4445,4458,-0.117241379310537,-0.578571428571388,-0.110344827586419,-0.585714285714261,-0.110344827586419,-0.571428571428515,-0.103448275862300,-0.578571428571388,-0.014285714285746,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285744,0.000000000000000,2 -4431,4444,4446,4459,-0.117241379310537,-0.564285714285645,-0.110344827586419,-0.571428571428515,-0.110344827586419,-0.557142857142777,-0.103448275862300,-0.564285714285647,-0.014285714285740,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285737,0.000000000000000,2 -4432,4445,4447,4460,-0.117241379310537,-0.549999999999905,-0.110344827586419,-0.557142857142777,-0.110344827586419,-0.542857142857039,-0.103448275862300,-0.549999999999910,-0.014285714285739,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285737,0.000000000000000,2 -4433,4446,4448,4461,-0.117241379310537,-0.535714285714168,-0.110344827586419,-0.542857142857039,-0.110344827586419,-0.528571428571305,-0.103448275862300,-0.535714285714175,-0.014285714285735,0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285732,0.000000000000000,2 -4434,4447,4449,4462,-0.117241379310537,-0.521428571428438,-0.110344827586419,-0.528571428571305,-0.110344827586419,-0.514285714285583,-0.103448275862300,-0.521428571428450,-0.014285714285725,-0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285719,0.000000000000000,2 -4435,4448,4450,4463,-0.117241379310537,-0.507142857142723,-0.110344827586419,-0.514285714285583,-0.110344827586419,-0.499999999999880,-0.103448275862300,-0.507142857142740,-0.014285714285705,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285701,0.000000000000000,2 -4436,4449,4451,4464,-0.117241379310537,-0.492857142857016,-0.110344827586419,-0.499999999999880,-0.110344827586419,-0.485714285714169,-0.103448275862300,-0.492857142857034,-0.014285714285710,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285712,0.000000000000000,2 -4437,4450,4452,4465,-0.117241379310537,-0.478571428571317,-0.110344827586419,-0.485714285714169,-0.110344827586419,-0.471428571428481,-0.103448275862300,-0.478571428571332,-0.014285714285687,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285690,0.000000000000000,2 -4438,4451,4453,4466,-0.117241379310537,-0.464285714285630,-0.110344827586419,-0.471428571428481,-0.110344827586419,-0.457142857142791,-0.103448275862300,-0.464285714285642,-0.014285714285688,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285691,0.000000000000000,2 -4439,4452,4454,4467,-0.117241379310537,-0.449999999999941,-0.110344827586419,-0.457142857142791,-0.110344827586419,-0.442857142857100,-0.103448275862300,-0.449999999999950,-0.014285714285689,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000007,0.013793103448237,0.014285714285692,0.000000000000000,2 -4440,4453,4455,4468,-0.117241379310537,-0.435714285714252,-0.110344827586419,-0.442857142857100,-0.110344827586419,-0.428571428571411,-0.103448275862300,-0.435714285714258,-0.014285714285688,-0.000000000000000,-0.000000000000007,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285691,0.000000000000000,2 -4441,4454,4456,4469,-0.117241379310537,-0.421428571428548,-0.110344827586419,-0.428571428571411,-0.110344827586419,-0.414285714285689,-0.103448275862300,-0.421428571428552,-0.014285714285721,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285723,0.000000000000000,2 -4442,4455,4470,9309,-0.117241379310537,-0.407142857142844,-0.110344827586419,-0.414285714285689,-0.103448275862300,-0.407142857142845,-0.110344827586419,-0.400000000000000,-0.014285714285687,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285690,-0.000000000000000,0.000000000000000,0.013793103448237,2 -617,4443,4458,4471,-0.096551724138182,-0.600000000000000,-0.103448275862300,-0.592857142857130,-0.096551724138182,-0.585714285714260,-0.089655172414064,-0.592857142857130,-0.000000000000000,-0.013793103448237,-0.014285714285740,-0.000000000000000,-0.000000000000000,0.013793103448237,0.014285714285740,0.000000000000000,2 -4444,4457,4459,4472,-0.103448275862300,-0.578571428571388,-0.096551724138182,-0.585714285714260,-0.096551724138182,-0.571428571428516,-0.089655172414064,-0.578571428571389,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285743,0.000000000000000,2 -4445,4458,4460,4473,-0.103448275862300,-0.564285714285647,-0.096551724138182,-0.571428571428516,-0.096551724138182,-0.557142857142781,-0.089655172414064,-0.564285714285650,-0.014285714285737,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285734,0.000000000000000,2 -4446,4459,4461,4474,-0.103448275862300,-0.549999999999910,-0.096551724138182,-0.557142857142781,-0.096551724138182,-0.542857142857045,-0.089655172414064,-0.549999999999915,-0.014285714285737,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285734,-0.000000000000000,2 -4447,4460,4462,4475,-0.103448275862300,-0.535714285714175,-0.096551724138182,-0.542857142857045,-0.096551724138182,-0.528571428571314,-0.089655172414064,-0.535714285714183,-0.014285714285732,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285730,0.000000000000000,2 -4448,4461,4463,4476,-0.103448275862300,-0.521428571428450,-0.096551724138182,-0.528571428571314,-0.096551724138182,-0.514285714285598,-0.089655172414064,-0.521428571428462,-0.014285714285719,-0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285714,0.000000000000000,2 -4449,4462,4464,4477,-0.103448275862300,-0.507142857142740,-0.096551724138182,-0.514285714285598,-0.096551724138182,-0.499999999999899,-0.089655172414064,-0.507142857142756,-0.014285714285701,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285697,0.000000000000000,2 -4450,4463,4465,4478,-0.103448275862300,-0.492857142857034,-0.096551724138182,-0.499999999999899,-0.096551724138182,-0.485714285714186,-0.089655172414064,-0.492857142857051,-0.014285714285712,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285713,-0.000000000000000,2 -4451,4464,4466,4479,-0.103448275862300,-0.478571428571332,-0.096551724138182,-0.485714285714186,-0.096551724138182,-0.471428571428494,-0.089655172414064,-0.478571428571348,-0.014285714285690,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285693,0.000000000000000,2 -4452,4465,4467,4480,-0.103448275862300,-0.464285714285642,-0.096551724138182,-0.471428571428494,-0.096551724138182,-0.457142857142802,-0.089655172414064,-0.464285714285654,-0.014285714285691,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285694,0.000000000000000,2 -4453,4466,4468,4481,-0.103448275862300,-0.449999999999950,-0.096551724138182,-0.457142857142802,-0.096551724138182,-0.442857142857108,-0.089655172414064,-0.449999999999959,-0.014285714285692,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000007,0.013793103448237,0.014285714285696,0.000000000000000,2 -4454,4467,4469,4482,-0.103448275862300,-0.435714285714258,-0.096551724138182,-0.442857142857108,-0.096551724138182,-0.428571428571415,-0.089655172414064,-0.435714285714264,-0.014285714285691,-0.000000000000000,-0.000000000000007,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285695,-0.000000000000000,2 -4455,4468,4470,4483,-0.103448275862300,-0.421428571428552,-0.096551724138182,-0.428571428571415,-0.096551724138182,-0.414285714285692,-0.089655172414064,-0.421428571428555,-0.014285714285723,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285724,0.000000000000000,2 -4456,4469,4484,9310,-0.103448275862300,-0.407142857142845,-0.096551724138182,-0.414285714285692,-0.089655172414064,-0.407142857142847,-0.096551724138182,-0.400000000000000,-0.014285714285690,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285693,-0.000000000000000,0.000000000000000,0.013793103448237,2 -623,4457,4472,4485,-0.082758620689945,-0.600000000000000,-0.089655172414064,-0.592857142857130,-0.082758620689945,-0.585714285714260,-0.075862068965827,-0.592857142857130,-0.000000000000000,-0.013793103448237,-0.014285714285740,-0.000000000000000,-0.000000000000000,0.013793103448237,0.014285714285740,0.000000000000000,2 -4458,4471,4473,4486,-0.089655172414064,-0.578571428571389,-0.082758620689945,-0.585714285714260,-0.082758620689945,-0.571428571428517,-0.075862068965827,-0.578571428571389,-0.014285714285743,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285742,-0.000000000000000,2 -4459,4472,4474,4487,-0.089655172414064,-0.564285714285650,-0.082758620689945,-0.571428571428517,-0.082758620689945,-0.557142857142784,-0.075862068965827,-0.564285714285652,-0.014285714285734,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285732,-0.000000000000000,2 -4460,4473,4475,4488,-0.089655172414064,-0.549999999999915,-0.082758620689945,-0.557142857142784,-0.082758620689945,-0.542857142857051,-0.075862068965827,-0.549999999999920,-0.014285714285734,0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285732,0.000000000000000,2 -4461,4474,4476,4489,-0.089655172414064,-0.535714285714183,-0.082758620689945,-0.542857142857051,-0.082758620689945,-0.528571428571323,-0.075862068965827,-0.535714285714191,-0.014285714285730,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285727,0.000000000000000,2 -4462,4475,4477,4490,-0.089655172414064,-0.521428571428462,-0.082758620689945,-0.528571428571323,-0.082758620689945,-0.514285714285612,-0.075862068965827,-0.521428571428473,-0.014285714285714,-0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285708,-0.000000000000000,2 -4463,4476,4478,4491,-0.089655172414064,-0.507142857142756,-0.082758620689945,-0.514285714285612,-0.082758620689945,-0.499999999999917,-0.075862068965827,-0.507142857142773,-0.014285714285697,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285694,0.000000000000000,2 -4464,4477,4479,4492,-0.089655172414064,-0.492857142857051,-0.082758620689945,-0.499999999999917,-0.082758620689945,-0.485714285714203,-0.075862068965827,-0.492857142857069,-0.014285714285713,0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285715,0.000000000000000,2 -4465,4478,4480,4493,-0.089655172414064,-0.478571428571348,-0.082758620689945,-0.485714285714203,-0.082758620689945,-0.471428571428508,-0.075862068965827,-0.478571428571363,-0.014285714285693,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285696,0.000000000000000,2 -4466,4479,4481,4494,-0.089655172414064,-0.464285714285654,-0.082758620689945,-0.471428571428508,-0.082758620689945,-0.457142857142812,-0.075862068965827,-0.464285714285667,-0.014285714285694,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285698,0.000000000000000,2 -4467,4480,4482,4495,-0.089655172414064,-0.449999999999959,-0.082758620689945,-0.457142857142812,-0.082758620689945,-0.442857142857115,-0.075862068965827,-0.449999999999968,-0.014285714285696,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000008,0.013793103448237,0.014285714285699,0.000000000000000,2 -4468,4481,4483,4496,-0.089655172414064,-0.435714285714264,-0.082758620689945,-0.442857142857115,-0.082758620689945,-0.428571428571419,-0.075862068965827,-0.435714285714270,-0.014285714285695,0.000000000000000,-0.000000000000008,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285698,-0.000000000000000,2 -4469,4482,4484,4497,-0.089655172414064,-0.421428571428555,-0.082758620689945,-0.428571428571419,-0.082758620689945,-0.414285714285695,-0.075862068965827,-0.421428571428559,-0.014285714285724,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285725,0.000000000000000,2 -4470,4483,4498,9311,-0.089655172414064,-0.407142857142847,-0.082758620689945,-0.414285714285695,-0.075862068965827,-0.407142857142848,-0.082758620689945,-0.400000000000000,-0.014285714285693,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285696,-0.000000000000000,0.000000000000000,0.013793103448237,2 -629,4471,4486,4499,-0.068965517241709,-0.600000000000000,-0.075862068965827,-0.592857142857130,-0.068965517241709,-0.585714285714260,-0.062068965517591,-0.592857142857130,-0.000000000000000,-0.013793103448237,-0.014285714285740,-0.000000000000000,-0.000000000000001,0.013793103448237,0.014285714285741,0.000000000000000,2 -4472,4485,4487,4500,-0.075862068965827,-0.578571428571389,-0.068965517241709,-0.585714285714260,-0.068965517241709,-0.571428571428518,-0.062068965517591,-0.578571428571389,-0.014285714285742,0.000000000000000,0.000000000000001,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285740,0.000000000000000,2 -4473,4486,4488,4501,-0.075862068965827,-0.564285714285652,-0.068965517241709,-0.571428571428518,-0.068965517241709,-0.557142857142788,-0.062068965517591,-0.564285714285654,-0.014285714285732,0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285729,0.000000000000000,2 -4474,4487,4489,4502,-0.075862068965827,-0.549999999999920,-0.068965517241709,-0.557142857142788,-0.068965517241709,-0.542857142857058,-0.062068965517591,-0.549999999999925,-0.014285714285732,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285729,-0.000000000000000,2 -4475,4488,4490,4503,-0.075862068965827,-0.535714285714191,-0.068965517241709,-0.542857142857058,-0.068965517241709,-0.528571428571332,-0.062068965517591,-0.535714285714199,-0.014285714285727,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285725,0.000000000000000,2 -4476,4489,4491,4504,-0.075862068965827,-0.521428571428473,-0.068965517241709,-0.528571428571332,-0.068965517241709,-0.514285714285627,-0.062068965517591,-0.521428571428485,-0.014285714285708,0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285702,0.000000000000000,2 -4477,4490,4492,4505,-0.075862068965827,-0.507142857142773,-0.068965517241709,-0.514285714285627,-0.068965517241709,-0.499999999999935,-0.062068965517591,-0.507142857142789,-0.014285714285694,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285690,-0.000000000000000,2 -4478,4491,4493,4506,-0.075862068965827,-0.492857142857069,-0.068965517241709,-0.499999999999935,-0.068965517241709,-0.485714285714220,-0.062068965517591,-0.492857142857086,-0.014285714285715,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285716,0.000000000000000,2 -4479,4492,4494,4507,-0.075862068965827,-0.478571428571363,-0.068965517241709,-0.485714285714220,-0.068965517241709,-0.471428571428522,-0.062068965517591,-0.478571428571379,-0.014285714285696,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285699,0.000000000000000,2 -4480,4493,4495,4508,-0.075862068965827,-0.464285714285667,-0.068965517241709,-0.471428571428522,-0.068965517241709,-0.457142857142823,-0.062068965517591,-0.464285714285679,-0.014285714285698,-0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285701,0.000000000000000,2 -4481,4494,4496,4509,-0.075862068965827,-0.449999999999968,-0.068965517241709,-0.457142857142823,-0.068965517241709,-0.442857142857123,-0.062068965517591,-0.449999999999978,-0.014285714285699,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000008,0.013793103448237,0.014285714285702,0.000000000000000,2 -4482,4495,4497,4510,-0.075862068965827,-0.435714285714270,-0.068965517241709,-0.442857142857123,-0.068965517241709,-0.428571428571424,-0.062068965517591,-0.435714285714276,-0.014285714285698,0.000000000000000,-0.000000000000008,-0.013793103448237,0.000000000000005,0.013793103448237,0.014285714285701,-0.000000000000000,2 -4483,4496,4498,4511,-0.075862068965827,-0.421428571428559,-0.068965517241709,-0.428571428571424,-0.068965517241709,-0.414285714285698,-0.062068965517591,-0.421428571428562,-0.014285714285725,-0.000000000000000,-0.000000000000005,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285727,-0.000000000000000,2 -4484,4497,4512,9312,-0.075862068965827,-0.407142857142848,-0.068965517241709,-0.414285714285698,-0.062068965517591,-0.407142857142850,-0.068965517241709,-0.400000000000000,-0.014285714285696,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285699,0.000000000000000,0.000000000000000,0.013793103448237,2 -635,4485,4500,4513,-0.055172413793477,-0.600000000000000,-0.062068965517591,-0.592857142857130,-0.055172413793477,-0.585714285714259,-0.048275862069362,-0.592857142857130,-0.000000000000000,-0.013793103448228,-0.014285714285741,-0.000000000000000,0.000000000000000,0.013793103448228,0.014285714285741,0.000000000000000,2 -4486,4499,4501,4514,-0.062068965517591,-0.578571428571389,-0.055172413793477,-0.585714285714259,-0.055172413793477,-0.571428571428519,-0.048275862069362,-0.578571428571390,-0.014285714285740,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000001,0.013793103448228,0.014285714285740,0.000000000000000,2 -4487,4500,4502,4515,-0.062068965517591,-0.564285714285654,-0.055172413793477,-0.571428571428519,-0.055172413793477,-0.557142857142792,-0.048275862069362,-0.564285714285657,-0.014285714285729,-0.000000000000000,-0.000000000000001,-0.013793103448228,0.000000000000004,0.013793103448228,0.014285714285726,-0.000000000000000,2 -4488,4501,4503,4516,-0.062068965517591,-0.549999999999925,-0.055172413793477,-0.557142857142792,-0.055172413793477,-0.542857142857064,-0.048275862069362,-0.549999999999930,-0.014285714285729,0.000000000000000,-0.000000000000004,-0.013793103448228,0.000000000000006,0.013793103448228,0.014285714285726,0.000000000000000,2 -4489,4502,4504,4517,-0.062068965517591,-0.535714285714199,-0.055172413793477,-0.542857142857064,-0.055172413793477,-0.528571428571341,-0.048275862069362,-0.535714285714206,-0.014285714285725,-0.000000000000000,-0.000000000000006,-0.013793103448228,0.000000000000009,0.013793103448228,0.014285714285722,0.000000000000000,2 -4490,4503,4505,4518,-0.062068965517591,-0.521428571428485,-0.055172413793477,-0.528571428571341,-0.055172413793477,-0.514285714285642,-0.048275862069362,-0.521428571428497,-0.014285714285702,-0.000000000000000,-0.000000000000009,-0.013793103448228,0.000000000000015,0.013793103448228,0.014285714285696,0.000000000000000,2 -4491,4504,4506,4519,-0.062068965517591,-0.507142857142789,-0.055172413793477,-0.514285714285642,-0.055172413793477,-0.499999999999953,-0.048275862069362,-0.507142857142806,-0.014285714285690,0.000000000000000,-0.000000000000015,-0.013793103448228,0.000000000000019,0.013793103448228,0.014285714285686,0.000000000000000,2 -4492,4505,4507,4520,-0.062068965517591,-0.492857142857086,-0.055172413793477,-0.499999999999953,-0.055172413793477,-0.485714285714237,-0.048275862069362,-0.492857142857104,-0.014285714285716,-0.000000000000000,-0.000000000000019,-0.013793103448228,0.000000000000017,0.013793103448228,0.014285714285718,-0.000000000000000,2 -4493,4506,4508,4521,-0.062068965517591,-0.478571428571379,-0.055172413793477,-0.485714285714237,-0.055172413793477,-0.471428571428536,-0.048275862069362,-0.478571428571394,-0.014285714285699,-0.000000000000000,-0.000000000000017,-0.013793103448228,0.000000000000014,0.013793103448228,0.014285714285702,-0.000000000000000,2 -4494,4507,4509,4522,-0.062068965517591,-0.464285714285679,-0.055172413793477,-0.471428571428536,-0.055172413793477,-0.457142857142834,-0.048275862069362,-0.464285714285691,-0.014285714285701,-0.000000000000000,-0.000000000000014,-0.013793103448228,0.000000000000011,0.013793103448228,0.014285714285704,0.000000000000000,2 -4495,4508,4510,4523,-0.062068965517591,-0.449999999999978,-0.055172413793477,-0.457142857142834,-0.055172413793477,-0.442857142857130,-0.048275862069362,-0.449999999999987,-0.014285714285702,-0.000000000000000,-0.000000000000011,-0.013793103448228,0.000000000000007,0.013793103448228,0.014285714285705,-0.000000000000000,2 -4496,4509,4511,4524,-0.062068965517591,-0.435714285714276,-0.055172413793477,-0.442857142857130,-0.055172413793477,-0.428571428571428,-0.048275862069362,-0.435714285714282,-0.014285714285701,0.000000000000000,-0.000000000000007,-0.013793103448228,0.000000000000004,0.013793103448228,0.014285714285704,0.000000000000000,2 -4497,4510,4512,4525,-0.062068965517591,-0.421428571428562,-0.055172413793477,-0.428571428571428,-0.055172413793477,-0.414285714285701,-0.048275862069362,-0.421428571428566,-0.014285714285727,0.000000000000000,-0.000000000000004,-0.013793103448228,0.000000000000003,0.013793103448228,0.014285714285728,0.000000000000000,2 -4498,4511,4526,9313,-0.062068965517591,-0.407142857142850,-0.055172413793477,-0.414285714285701,-0.048275862069362,-0.407142857142851,-0.055172413793477,-0.400000000000000,-0.014285714285699,-0.000000000000000,-0.000000000000003,-0.013793103448228,0.014285714285702,-0.000000000000000,0.000000000000000,0.013793103448228,2 -641,4499,4514,4527,-0.041379310345245,-0.600000000000000,-0.048275862069362,-0.592857142857130,-0.041379310345245,-0.585714285714259,-0.034482758621128,-0.592857142857129,-0.000000000000000,-0.013793103448234,-0.014285714285741,-0.000000000000000,-0.000000000000000,0.013793103448234,0.014285714285741,0.000000000000000,2 -4500,4513,4515,4528,-0.048275862069362,-0.578571428571390,-0.041379310345245,-0.585714285714259,-0.041379310345245,-0.571428571428520,-0.034482758621128,-0.578571428571390,-0.014285714285740,-0.000000000000000,0.000000000000000,-0.013793103448234,0.000000000000001,0.013793103448234,0.014285714285738,-0.000000000000000,2 -4501,4514,4516,4529,-0.048275862069362,-0.564285714285657,-0.041379310345245,-0.571428571428520,-0.041379310345245,-0.557142857142795,-0.034482758621128,-0.564285714285659,-0.014285714285726,0.000000000000000,-0.000000000000001,-0.013793103448234,0.000000000000004,0.013793103448234,0.014285714285723,0.000000000000000,2 -4502,4515,4517,4530,-0.048275862069362,-0.549999999999930,-0.041379310345245,-0.557142857142795,-0.041379310345245,-0.542857142857071,-0.034482758621128,-0.549999999999936,-0.014285714285726,-0.000000000000000,-0.000000000000004,-0.013793103448234,0.000000000000006,0.013793103448234,0.014285714285723,0.000000000000000,2 -4503,4516,4518,4531,-0.048275862069362,-0.535714285714206,-0.041379310345245,-0.542857142857071,-0.041379310345245,-0.528571428571350,-0.034482758621128,-0.535714285714214,-0.014285714285722,-0.000000000000000,-0.000000000000006,-0.013793103448234,0.000000000000009,0.013793103448234,0.014285714285720,0.000000000000000,2 -4504,4517,4519,4532,-0.048275862069362,-0.521428571428497,-0.041379310345245,-0.528571428571350,-0.041379310345245,-0.514285714285656,-0.034482758621128,-0.521428571428509,-0.014285714285696,-0.000000000000000,-0.000000000000009,-0.013793103448234,0.000000000000014,0.013793103448234,0.014285714285691,-0.000000000000000,2 -4505,4518,4520,4533,-0.048275862069362,-0.507142857142806,-0.041379310345245,-0.514285714285656,-0.041379310345245,-0.499999999999972,-0.034482758621128,-0.507142857142822,-0.014285714285686,-0.000000000000000,-0.000000000000014,-0.013793103448234,0.000000000000018,0.013793103448234,0.014285714285682,-0.000000000000000,2 -4506,4519,4521,4534,-0.048275862069362,-0.492857142857104,-0.041379310345245,-0.499999999999972,-0.041379310345245,-0.485714285714254,-0.034482758621128,-0.492857142857122,-0.014285714285718,0.000000000000000,-0.000000000000018,-0.013793103448234,0.000000000000017,0.013793103448234,0.014285714285719,0.000000000000000,2 -4507,4520,4522,4535,-0.048275862069362,-0.478571428571394,-0.041379310345245,-0.485714285714254,-0.041379310345245,-0.471428571428550,-0.034482758621128,-0.478571428571410,-0.014285714285702,0.000000000000000,-0.000000000000017,-0.013793103448234,0.000000000000014,0.013793103448234,0.014285714285705,0.000000000000000,2 -4508,4521,4523,4536,-0.048275862069362,-0.464285714285691,-0.041379310345245,-0.471428571428550,-0.041379310345245,-0.457142857142845,-0.034482758621128,-0.464285714285704,-0.014285714285704,-0.000000000000000,-0.000000000000014,-0.013793103448234,0.000000000000011,0.013793103448234,0.014285714285707,-0.000000000000000,2 -4509,4522,4524,4537,-0.048275862069362,-0.449999999999987,-0.041379310345245,-0.457142857142845,-0.041379310345245,-0.442857142857138,-0.034482758621128,-0.449999999999996,-0.014285714285705,0.000000000000000,-0.000000000000011,-0.013793103448234,0.000000000000008,0.013793103448234,0.014285714285708,0.000000000000000,2 -4510,4523,4525,4538,-0.048275862069362,-0.435714285714282,-0.041379310345245,-0.442857142857138,-0.041379310345245,-0.428571428571432,-0.034482758621128,-0.435714285714288,-0.014285714285704,-0.000000000000000,-0.000000000000008,-0.013793103448234,0.000000000000004,0.013793103448234,0.014285714285707,0.000000000000000,2 -4511,4524,4526,4539,-0.048275862069362,-0.421428571428566,-0.041379310345245,-0.428571428571432,-0.041379310345245,-0.414285714285704,-0.034482758621128,-0.421428571428570,-0.014285714285728,-0.000000000000000,-0.000000000000004,-0.013793103448234,0.000000000000003,0.013793103448234,0.014285714285730,0.000000000000000,2 -4512,4525,4540,9314,-0.048275862069362,-0.407142857142851,-0.041379310345245,-0.414285714285704,-0.034482758621128,-0.407142857142852,-0.041379310345245,-0.400000000000000,-0.014285714285702,0.000000000000000,-0.000000000000003,-0.013793103448234,0.014285714285705,-0.000000000000000,0.000000000000000,0.013793103448234,2 -647,4513,4528,4541,-0.027586206897010,-0.600000000000000,-0.034482758621128,-0.592857142857129,-0.027586206897010,-0.585714285714259,-0.020689655172892,-0.592857142857129,-0.000000000000000,-0.013793103448237,-0.014285714285741,-0.000000000000000,-0.000000000000000,0.013793103448237,0.014285714285741,-0.000000000000000,2 -4514,4527,4529,4542,-0.034482758621128,-0.578571428571390,-0.027586206897010,-0.585714285714259,-0.027586206897010,-0.571428571428521,-0.020689655172892,-0.578571428571390,-0.014285714285738,0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285737,0.000000000000000,2 -4515,4528,4530,4543,-0.034482758621128,-0.564285714285659,-0.027586206897010,-0.571428571428521,-0.027586206897010,-0.557142857142799,-0.020689655172892,-0.564285714285661,-0.014285714285723,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285721,0.000000000000000,2 -4516,4529,4531,4544,-0.034482758621128,-0.549999999999936,-0.027586206897010,-0.557142857142799,-0.027586206897010,-0.542857142857077,-0.020689655172892,-0.549999999999941,-0.014285714285723,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285721,0.000000000000000,2 -4517,4530,4532,4545,-0.034482758621128,-0.535714285714214,-0.027586206897010,-0.542857142857077,-0.027586206897010,-0.528571428571359,-0.020689655172892,-0.535714285714222,-0.014285714285720,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285717,0.000000000000000,2 -4518,4531,4533,4546,-0.034482758621128,-0.521428571428509,-0.027586206897010,-0.528571428571359,-0.027586206897010,-0.514285714285671,-0.020689655172892,-0.521428571428521,-0.014285714285691,0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285685,-0.000000000000000,2 -4519,4532,4534,4547,-0.034482758621128,-0.507142857142822,-0.027586206897010,-0.514285714285671,-0.027586206897010,-0.499999999999990,-0.020689655172892,-0.507142857142839,-0.014285714285682,0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285679,0.000000000000000,2 -4520,4533,4535,4548,-0.034482758621128,-0.492857142857122,-0.027586206897010,-0.499999999999990,-0.027586206897010,-0.485714285714270,-0.020689655172892,-0.492857142857139,-0.014285714285719,-0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285721,-0.000000000000000,2 -4521,4534,4536,4549,-0.034482758621128,-0.478571428571410,-0.027586206897010,-0.485714285714270,-0.027586206897010,-0.471428571428564,-0.020689655172892,-0.478571428571425,-0.014285714285705,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285708,0.000000000000000,2 -4522,4535,4537,4550,-0.034482758621128,-0.464285714285704,-0.027586206897010,-0.471428571428564,-0.027586206897010,-0.457142857142856,-0.020689655172892,-0.464285714285716,-0.014285714285707,0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285710,-0.000000000000000,2 -4523,4536,4538,4551,-0.034482758621128,-0.449999999999996,-0.027586206897010,-0.457142857142856,-0.027586206897010,-0.442857142857146,-0.020689655172892,-0.450000000000005,-0.014285714285708,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000007,0.013793103448237,0.014285714285712,0.000000000000000,2 -4524,4537,4539,4552,-0.034482758621128,-0.435714285714288,-0.027586206897010,-0.442857142857146,-0.027586206897010,-0.428571428571437,-0.020689655172892,-0.435714285714294,-0.014285714285707,-0.000000000000000,-0.000000000000007,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285710,0.000000000000000,2 -4525,4538,4540,4553,-0.034482758621128,-0.421428571428570,-0.027586206897010,-0.428571428571437,-0.027586206897010,-0.414285714285707,-0.020689655172892,-0.421428571428574,-0.014285714285730,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285731,-0.000000000000000,2 -4526,4539,4554,9315,-0.034482758621128,-0.407142857142852,-0.027586206897010,-0.414285714285707,-0.020689655172892,-0.407142857142854,-0.027586206897010,-0.400000000000000,-0.014285714285705,0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285708,0.000000000000000,0.000000000000000,0.013793103448237,2 -653,4527,4542,4555,-0.013793103448773,-0.600000000000000,-0.020689655172892,-0.592857142857129,-0.013793103448773,-0.585714285714259,-0.006896551724655,-0.592857142857129,-0.000000000000000,-0.013793103448237,-0.014285714285741,0.000000000000000,-0.000000000000000,0.013793103448237,0.014285714285741,0.000000000000000,2 -4528,4541,4543,4556,-0.020689655172892,-0.578571428571390,-0.013793103448773,-0.585714285714259,-0.013793103448773,-0.571428571428522,-0.006896551724655,-0.578571428571391,-0.014285714285737,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000001,0.013793103448237,0.014285714285736,-0.000000000000000,2 -4529,4542,4544,4557,-0.020689655172892,-0.564285714285661,-0.013793103448773,-0.571428571428522,-0.013793103448773,-0.557142857142803,-0.006896551724655,-0.564285714285664,-0.014285714285721,-0.000000000000000,-0.000000000000001,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285718,0.000000000000000,2 -4530,4543,4545,4558,-0.020689655172892,-0.549999999999941,-0.013793103448773,-0.557142857142803,-0.013793103448773,-0.542857142857083,-0.006896551724655,-0.549999999999946,-0.014285714285721,-0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000006,0.013793103448237,0.014285714285718,-0.000000000000000,2 -4531,4544,4546,4559,-0.020689655172892,-0.535714285714222,-0.013793103448773,-0.542857142857083,-0.013793103448773,-0.528571428571367,-0.006896551724655,-0.535714285714229,-0.014285714285717,-0.000000000000000,-0.000000000000006,-0.013793103448237,0.000000000000009,0.013793103448237,0.014285714285715,-0.000000000000000,2 -4532,4545,4547,4560,-0.020689655172892,-0.521428571428521,-0.013793103448773,-0.528571428571367,-0.013793103448773,-0.514285714285686,-0.006896551724655,-0.521428571428532,-0.014285714285685,0.000000000000000,-0.000000000000009,-0.013793103448237,0.000000000000015,0.013793103448237,0.014285714285679,0.000000000000000,2 -4533,4546,4548,4561,-0.020689655172892,-0.507142857142839,-0.013793103448773,-0.514285714285686,-0.013793103448773,-0.500000000000008,-0.006896551724655,-0.507142857142855,-0.014285714285679,-0.000000000000000,-0.000000000000015,-0.013793103448237,0.000000000000018,0.013793103448237,0.014285714285675,-0.000000000000000,2 -4534,4547,4549,4562,-0.020689655172892,-0.492857142857139,-0.013793103448773,-0.500000000000008,-0.013793103448773,-0.485714285714287,-0.006896551724655,-0.492857142857157,-0.014285714285721,0.000000000000000,-0.000000000000018,-0.013793103448237,0.000000000000017,0.013793103448237,0.014285714285722,0.000000000000000,2 -4535,4548,4550,4563,-0.020689655172892,-0.478571428571425,-0.013793103448773,-0.485714285714287,-0.013793103448773,-0.471428571428578,-0.006896551724655,-0.478571428571440,-0.014285714285708,-0.000000000000000,-0.000000000000017,-0.013793103448237,0.000000000000014,0.013793103448237,0.014285714285711,0.000000000000000,2 -4536,4549,4551,4564,-0.020689655172892,-0.464285714285716,-0.013793103448773,-0.471428571428578,-0.013793103448773,-0.457142857142866,-0.006896551724655,-0.464285714285728,-0.014285714285710,0.000000000000000,-0.000000000000014,-0.013793103448237,0.000000000000011,0.013793103448237,0.014285714285713,0.000000000000000,2 -4537,4550,4552,4565,-0.020689655172892,-0.450000000000005,-0.013793103448773,-0.457142857142866,-0.013793103448773,-0.442857142857153,-0.006896551724655,-0.450000000000014,-0.014285714285712,-0.000000000000000,-0.000000000000011,-0.013793103448237,0.000000000000007,0.013793103448237,0.014285714285715,-0.000000000000000,2 -4538,4551,4553,4566,-0.020689655172892,-0.435714285714294,-0.013793103448773,-0.442857142857153,-0.013793103448773,-0.428571428571441,-0.006896551724655,-0.435714285714300,-0.014285714285710,-0.000000000000000,-0.000000000000007,-0.013793103448237,0.000000000000004,0.013793103448237,0.014285714285714,0.000000000000000,2 -4539,4552,4554,4567,-0.020689655172892,-0.421428571428574,-0.013793103448773,-0.428571428571441,-0.013793103448773,-0.414285714285710,-0.006896551724655,-0.421428571428577,-0.014285714285731,0.000000000000000,-0.000000000000004,-0.013793103448237,0.000000000000003,0.013793103448237,0.014285714285732,-0.000000000000000,2 -4540,4553,4568,9316,-0.020689655172892,-0.407142857142854,-0.013793103448773,-0.414285714285710,-0.006896551724655,-0.407142857142856,-0.013793103448773,-0.400000000000000,-0.014285714285708,-0.000000000000000,-0.000000000000003,-0.013793103448237,0.014285714285711,0.000000000000000,0.000000000000000,0.013793103448237,2 -659,4541,4556,4569,-0.000000000000518,-0.600000000000000,-0.006896551724655,-0.592857142857129,-0.000000000000518,-0.585714285714258,0.006896551723618,-0.592857142857129,-0.000000000000000,-0.013793103448274,-0.014285714285741,-0.000000000000000,-0.000000000000000,0.013793103448274,0.014285714285742,0.000000000000000,2 -4542,4555,4557,4570,-0.006896551724655,-0.578571428571391,-0.000000000000518,-0.585714285714258,-0.000000000000518,-0.571428571428523,0.006896551723618,-0.578571428571391,-0.014285714285736,0.000000000000000,0.000000000000000,-0.013793103448274,0.000000000000001,0.013793103448274,0.014285714285734,-0.000000000000000,2 -4543,4556,4558,4571,-0.006896551724655,-0.564285714285664,-0.000000000000518,-0.571428571428523,-0.000000000000518,-0.557142857142806,0.006896551723618,-0.564285714285666,-0.014285714285718,-0.000000000000000,-0.000000000000001,-0.013793103448274,0.000000000000004,0.013793103448274,0.014285714285715,0.000000000000000,2 -4544,4557,4559,4572,-0.006896551724655,-0.549999999999946,-0.000000000000518,-0.557142857142806,-0.000000000000518,-0.542857142857090,0.006896551723618,-0.549999999999951,-0.014285714285718,0.000000000000000,-0.000000000000004,-0.013793103448274,0.000000000000006,0.013793103448274,0.014285714285715,-0.000000000000000,2 -4545,4558,4560,4573,-0.006896551724655,-0.535714285714229,-0.000000000000518,-0.542857142857090,-0.000000000000518,-0.528571428571376,0.006896551723618,-0.535714285714237,-0.014285714285715,0.000000000000000,-0.000000000000006,-0.013793103448274,0.000000000000009,0.013793103448274,0.014285714285712,0.000000000000000,2 -4546,4559,4561,4574,-0.006896551724655,-0.521428571428532,-0.000000000000518,-0.528571428571376,-0.000000000000518,-0.514285714285700,0.006896551723618,-0.521428571428544,-0.014285714285679,-0.000000000000000,-0.000000000000009,-0.013793103448274,0.000000000000014,0.013793103448274,0.014285714285673,0.000000000000000,2 -4547,4560,4562,4575,-0.006896551724655,-0.507142857142855,-0.000000000000518,-0.514285714285700,-0.000000000000518,-0.500000000000027,0.006896551723618,-0.507142857142872,-0.014285714285675,0.000000000000000,-0.000000000000014,-0.013793103448274,0.000000000000018,0.013793103448274,0.014285714285671,-0.000000000000000,2 -4548,4561,4563,4576,-0.006896551724655,-0.492857142857157,-0.000000000000518,-0.500000000000027,-0.000000000000518,-0.485714285714304,0.006896551723618,-0.492857142857174,-0.014285714285722,-0.000000000000000,-0.000000000000018,-0.013793103448274,0.000000000000017,0.013793103448274,0.014285714285723,0.000000000000000,2 -4549,4562,4564,4577,-0.006896551724655,-0.478571428571440,-0.000000000000518,-0.485714285714304,-0.000000000000518,-0.471428571428592,0.006896551723618,-0.478571428571456,-0.014285714285711,-0.000000000000000,-0.000000000000017,-0.013793103448274,0.000000000000014,0.013793103448274,0.014285714285713,-0.000000000000000,2 -4550,4563,4565,4578,-0.006896551724655,-0.464285714285728,-0.000000000000518,-0.471428571428592,-0.000000000000518,-0.457142857142877,0.006896551723618,-0.464285714285741,-0.014285714285713,-0.000000000000000,-0.000000000000014,-0.013793103448274,0.000000000000011,0.013793103448274,0.014285714285717,0.000000000000000,2 -4551,4564,4566,4579,-0.006896551724655,-0.450000000000014,-0.000000000000518,-0.457142857142877,-0.000000000000518,-0.442857142857160,0.006896551723618,-0.450000000000023,-0.014285714285715,0.000000000000000,-0.000000000000011,-0.013793103448274,0.000000000000007,0.013793103448274,0.014285714285719,-0.000000000000000,2 -4552,4565,4567,4580,-0.006896551724655,-0.435714285714300,-0.000000000000518,-0.442857142857160,-0.000000000000518,-0.428571428571445,0.006896551723618,-0.435714285714306,-0.014285714285714,-0.000000000000000,-0.000000000000007,-0.013793103448274,0.000000000000004,0.013793103448274,0.014285714285717,0.000000000000000,2 -4553,4566,4568,4581,-0.006896551724655,-0.421428571428577,-0.000000000000518,-0.428571428571445,-0.000000000000518,-0.414285714285713,0.006896551723618,-0.421428571428581,-0.014285714285732,0.000000000000000,-0.000000000000004,-0.013793103448274,0.000000000000003,0.013793103448274,0.014285714285733,0.000000000000000,2 -4554,4567,4582,9317,-0.006896551724655,-0.407142857142856,-0.000000000000518,-0.414285714285713,0.006896551723618,-0.407142857142857,-0.000000000000518,-0.400000000000000,-0.014285714285711,-0.000000000000000,-0.000000000000003,-0.013793103448274,0.014285714285714,-0.000000000000000,0.000000000000000,0.013793103448274,2 -665,4555,4570,4583,0.013793103447775,-0.600000000000000,0.006896551723618,-0.592857142857129,0.013793103447775,-0.585714285714258,0.020689655171931,-0.592857142857129,-0.000000000000000,-0.013793103448313,-0.014285714285742,-0.000000000000000,0.000000000000000,0.013793103448313,0.014285714285742,0.000000000000000,2 -4556,4569,4571,4584,0.006896551723618,-0.578571428571391,0.013793103447775,-0.585714285714258,0.013793103447775,-0.571428571428524,0.020689655171931,-0.578571428571391,-0.014285714285734,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000001,0.013793103448313,0.014285714285733,-0.000000000000000,2 -4557,4570,4572,4585,0.006896551723618,-0.564285714285666,0.013793103447775,-0.571428571428524,0.013793103447775,-0.557142857142810,0.020689655171931,-0.564285714285668,-0.014285714285715,-0.000000000000000,-0.000000000000001,-0.013793103448313,0.000000000000004,0.013793103448313,0.014285714285712,0.000000000000000,2 -4558,4571,4573,4586,0.006896551723618,-0.549999999999951,0.013793103447775,-0.557142857142810,0.013793103447775,-0.542857142857096,0.020689655171931,-0.549999999999956,-0.014285714285715,0.000000000000000,-0.000000000000004,-0.013793103448313,0.000000000000006,0.013793103448313,0.014285714285713,-0.000000000000000,2 -4559,4572,4574,4587,0.006896551723618,-0.535714285714237,0.013793103447775,-0.542857142857096,0.013793103447775,-0.528571428571385,0.020689655171931,-0.535714285714245,-0.014285714285712,-0.000000000000000,-0.000000000000006,-0.013793103448313,0.000000000000009,0.013793103448313,0.014285714285710,0.000000000000000,2 -4560,4573,4575,4588,0.006896551723618,-0.521428571428544,0.013793103447775,-0.528571428571385,0.013793103447775,-0.514285714285715,0.020689655171931,-0.521428571428556,-0.014285714285673,-0.000000000000000,-0.000000000000009,-0.013793103448313,0.000000000000015,0.013793103448313,0.014285714285668,0.000000000000000,2 -4561,4574,4576,4589,0.006896551723618,-0.507142857142872,0.013793103447775,-0.514285714285715,0.013793103447775,-0.500000000000045,0.020689655171931,-0.507142857142888,-0.014285714285671,0.000000000000000,-0.000000000000015,-0.013793103448313,0.000000000000018,0.013793103448313,0.014285714285667,0.000000000000000,2 -4562,4575,4577,4590,0.006896551723618,-0.492857142857174,0.013793103447775,-0.500000000000045,0.013793103447775,-0.485714285714321,0.020689655171931,-0.492857142857192,-0.014285714285723,-0.000000000000000,-0.000000000000018,-0.013793103448313,0.000000000000017,0.013793103448313,0.014285714285725,0.000000000000000,2 -4563,4576,4578,4591,0.006896551723618,-0.478571428571456,0.013793103447775,-0.485714285714321,0.013793103447775,-0.471428571428606,0.020689655171931,-0.478571428571471,-0.014285714285713,0.000000000000000,-0.000000000000017,-0.013793103448313,0.000000000000014,0.013793103448313,0.014285714285716,0.000000000000000,2 -4564,4577,4579,4592,0.006896551723618,-0.464285714285741,0.013793103447775,-0.471428571428606,0.013793103447775,-0.457142857142888,0.020689655171931,-0.464285714285753,-0.014285714285717,-0.000000000000000,-0.000000000000014,-0.013793103448313,0.000000000000011,0.013793103448313,0.014285714285720,-0.000000000000000,2 -4565,4578,4580,4593,0.006896551723618,-0.450000000000023,0.013793103447775,-0.457142857142888,0.013793103447775,-0.442857142857168,0.020689655171931,-0.450000000000033,-0.014285714285719,0.000000000000000,-0.000000000000011,-0.013793103448313,0.000000000000008,0.013793103448313,0.014285714285722,0.000000000000000,2 -4566,4579,4581,4594,0.006896551723618,-0.435714285714306,0.013793103447775,-0.442857142857168,0.013793103447775,-0.428571428571450,0.020689655171931,-0.435714285714312,-0.014285714285717,-0.000000000000000,-0.000000000000008,-0.013793103448313,0.000000000000004,0.013793103448313,0.014285714285720,-0.000000000000000,2 -4567,4580,4582,4595,0.006896551723618,-0.421428571428581,0.013793103447775,-0.428571428571450,0.013793103447775,-0.414285714285716,0.020689655171931,-0.421428571428584,-0.014285714285733,-0.000000000000000,-0.000000000000004,-0.013793103448313,0.000000000000003,0.013793103448313,0.014285714285735,0.000000000000000,2 -4568,4581,4596,9318,0.006896551723618,-0.407142857142857,0.013793103447775,-0.414285714285716,0.020689655171931,-0.407142857142858,0.013793103447775,-0.400000000000000,-0.014285714285714,0.000000000000000,-0.000000000000003,-0.013793103448313,0.014285714285717,-0.000000000000000,0.000000000000000,0.013793103448313,2 -671,4569,4584,4597,0.027586206896088,-0.600000000000000,0.020689655171931,-0.592857142857129,0.027586206896088,-0.585714285714258,0.034482758620245,-0.592857142857129,-0.000000000000000,-0.013793103448314,-0.014285714285742,-0.000000000000000,-0.000000000000000,0.013793103448314,0.014285714285742,0.000000000000000,2 -4570,4583,4585,4598,0.020689655171931,-0.578571428571391,0.027586206896088,-0.585714285714258,0.027586206896088,-0.571428571428525,0.034482758620245,-0.578571428571392,-0.014285714285733,0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000001,0.013793103448314,0.014285714285732,-0.000000000000000,2 -4571,4584,4586,4599,0.020689655171931,-0.564285714285668,0.027586206896088,-0.571428571428525,0.027586206896088,-0.557142857142814,0.034482758620245,-0.564285714285671,-0.014285714285712,-0.000000000000000,-0.000000000000001,-0.013793103448314,0.000000000000003,0.013793103448314,0.014285714285710,0.000000000000000,2 -4572,4585,4587,4600,0.020689655171931,-0.549999999999956,0.027586206896088,-0.557142857142814,0.027586206896088,-0.542857142857103,0.034482758620245,-0.549999999999961,-0.014285714285713,0.000000000000000,-0.000000000000003,-0.013793103448314,0.000000000000006,0.013793103448314,0.014285714285710,-0.000000000000000,2 -4573,4586,4588,4601,0.020689655171931,-0.535714285714245,0.027586206896088,-0.542857142857103,0.027586206896088,-0.528571428571394,0.034482758620245,-0.535714285714252,-0.014285714285710,-0.000000000000000,-0.000000000000006,-0.013793103448314,0.000000000000009,0.013793103448314,0.014285714285707,0.000000000000000,2 -4574,4587,4589,4602,0.020689655171931,-0.521428571428556,0.027586206896088,-0.528571428571394,0.027586206896088,-0.514285714285729,0.034482758620245,-0.521428571428568,-0.014285714285668,-0.000000000000000,-0.000000000000009,-0.013793103448314,0.000000000000015,0.013793103448314,0.014285714285662,0.000000000000000,2 -4575,4588,4590,4603,0.020689655171931,-0.507142857142888,0.027586206896088,-0.514285714285729,0.027586206896088,-0.500000000000064,0.034482758620245,-0.507142857142905,-0.014285714285667,-0.000000000000000,-0.000000000000015,-0.013793103448314,0.000000000000018,0.013793103448314,0.014285714285664,0.000000000000000,2 -4576,4589,4591,4604,0.020689655171931,-0.492857142857192,0.027586206896088,-0.500000000000064,0.027586206896088,-0.485714285714338,0.034482758620245,-0.492857142857209,-0.014285714285725,-0.000000000000000,-0.000000000000018,-0.013793103448314,0.000000000000017,0.013793103448314,0.014285714285726,-0.000000000000000,2 -4577,4590,4592,4605,0.020689655171931,-0.478571428571471,0.027586206896088,-0.485714285714338,0.027586206896088,-0.471428571428620,0.034482758620245,-0.478571428571487,-0.014285714285716,-0.000000000000000,-0.000000000000017,-0.013793103448314,0.000000000000014,0.013793103448314,0.014285714285719,0.000000000000000,2 -4578,4591,4593,4606,0.020689655171931,-0.464285714285753,0.027586206896088,-0.471428571428620,0.027586206896088,-0.457142857142899,0.034482758620245,-0.464285714285765,-0.014285714285720,0.000000000000000,-0.000000000000014,-0.013793103448314,0.000000000000011,0.013793103448314,0.014285714285723,-0.000000000000000,2 -4579,4592,4594,4607,0.020689655171931,-0.450000000000033,0.027586206896088,-0.457142857142899,0.027586206896088,-0.442857142857176,0.034482758620245,-0.450000000000042,-0.014285714285722,-0.000000000000000,-0.000000000000011,-0.013793103448314,0.000000000000007,0.013793103448314,0.014285714285725,0.000000000000000,2 -4580,4593,4595,4608,0.020689655171931,-0.435714285714312,0.027586206896088,-0.442857142857176,0.027586206896088,-0.428571428571454,0.034482758620245,-0.435714285714318,-0.014285714285720,0.000000000000000,-0.000000000000007,-0.013793103448314,0.000000000000005,0.013793103448314,0.014285714285723,-0.000000000000000,2 -4581,4594,4596,4609,0.020689655171931,-0.421428571428584,0.027586206896088,-0.428571428571454,0.027586206896088,-0.414285714285719,0.034482758620245,-0.421428571428588,-0.014285714285735,-0.000000000000000,-0.000000000000005,-0.013793103448314,0.000000000000003,0.013793103448314,0.014285714285736,0.000000000000000,2 -4582,4595,4610,9319,0.020689655171931,-0.407142857142858,0.027586206896088,-0.414285714285719,0.034482758620245,-0.407142857142860,0.027586206896088,-0.400000000000000,-0.014285714285717,0.000000000000000,-0.000000000000003,-0.013793103448314,0.014285714285720,-0.000000000000000,0.000000000000000,0.013793103448314,2 -677,4583,4598,4611,0.041379310344402,-0.600000000000000,0.034482758620245,-0.592857142857129,0.041379310344402,-0.585714285714258,0.048275862068559,-0.592857142857129,-0.000000000000000,-0.013793103448314,-0.014285714285742,-0.000000000000000,-0.000000000000000,0.013793103448314,0.014285714285743,-0.000000000000000,2 -4584,4597,4599,4612,0.034482758620245,-0.578571428571392,0.041379310344402,-0.585714285714258,0.041379310344402,-0.571428571428526,0.048275862068559,-0.578571428571392,-0.014285714285732,0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000001,0.013793103448314,0.014285714285731,0.000000000000000,2 -4585,4598,4600,4613,0.034482758620245,-0.564285714285671,0.041379310344402,-0.571428571428526,0.041379310344402,-0.557142857142818,0.048275862068559,-0.564285714285673,-0.014285714285710,-0.000000000000000,-0.000000000000001,-0.013793103448314,0.000000000000004,0.013793103448314,0.014285714285707,0.000000000000000,2 -4586,4599,4601,4614,0.034482758620245,-0.549999999999961,0.041379310344402,-0.557142857142818,0.041379310344402,-0.542857142857109,0.048275862068559,-0.549999999999966,-0.014285714285710,0.000000000000000,-0.000000000000004,-0.013793103448314,0.000000000000006,0.013793103448314,0.014285714285707,-0.000000000000000,2 -4587,4600,4602,4615,0.034482758620245,-0.535714285714252,0.041379310344402,-0.542857142857109,0.041379310344402,-0.528571428571403,0.048275862068559,-0.535714285714260,-0.014285714285707,-0.000000000000000,-0.000000000000006,-0.013793103448314,0.000000000000009,0.013793103448314,0.014285714285705,0.000000000000000,2 -4588,4601,4603,4616,0.034482758620245,-0.521428571428568,0.041379310344402,-0.528571428571403,0.041379310344402,-0.514285714285744,0.048275862068559,-0.521428571428579,-0.014285714285662,-0.000000000000000,-0.000000000000009,-0.013793103448314,0.000000000000015,0.013793103448314,0.014285714285656,-0.000000000000000,2 -4589,4602,4604,4617,0.034482758620245,-0.507142857142905,0.041379310344402,-0.514285714285744,0.041379310344402,-0.500000000000082,0.048275862068559,-0.507142857142921,-0.014285714285664,-0.000000000000000,-0.000000000000015,-0.013793103448314,0.000000000000019,0.013793103448314,0.014285714285660,0.000000000000000,2 -4590,4603,4605,4618,0.034482758620245,-0.492857142857209,0.041379310344402,-0.500000000000082,0.041379310344402,-0.485714285714355,0.048275862068559,-0.492857142857227,-0.014285714285726,0.000000000000000,-0.000000000000019,-0.013793103448314,0.000000000000017,0.013793103448314,0.014285714285728,0.000000000000000,2 -4591,4604,4606,4619,0.034482758620245,-0.478571428571487,0.041379310344402,-0.485714285714355,0.041379310344402,-0.471428571428634,0.048275862068559,-0.478571428571502,-0.014285714285719,-0.000000000000000,-0.000000000000017,-0.013793103448314,0.000000000000014,0.013793103448314,0.014285714285722,-0.000000000000000,2 -4592,4605,4607,4620,0.034482758620245,-0.464285714285765,0.041379310344402,-0.471428571428634,0.041379310344402,-0.457142857142910,0.048275862068559,-0.464285714285778,-0.014285714285723,0.000000000000000,-0.000000000000014,-0.013793103448314,0.000000000000011,0.013793103448314,0.014285714285726,0.000000000000000,2 -4593,4606,4608,4621,0.034482758620245,-0.450000000000042,0.041379310344402,-0.457142857142910,0.041379310344402,-0.442857142857183,0.048275862068559,-0.450000000000051,-0.014285714285725,-0.000000000000000,-0.000000000000011,-0.013793103448314,0.000000000000008,0.013793103448314,0.014285714285728,-0.000000000000000,2 -4594,4607,4609,4622,0.034482758620245,-0.435714285714318,0.041379310344402,-0.442857142857183,0.041379310344402,-0.428571428571459,0.048275862068559,-0.435714285714324,-0.014285714285723,0.000000000000000,-0.000000000000008,-0.013793103448314,0.000000000000004,0.013793103448314,0.014285714285726,-0.000000000000000,2 -4595,4608,4610,4623,0.034482758620245,-0.421428571428588,0.041379310344402,-0.428571428571459,0.041379310344402,-0.414285714285722,0.048275862068559,-0.421428571428592,-0.014285714285736,-0.000000000000000,-0.000000000000004,-0.013793103448314,0.000000000000003,0.013793103448314,0.014285714285738,0.000000000000000,2 -4596,4609,4624,9320,0.034482758620245,-0.407142857142860,0.041379310344402,-0.414285714285722,0.048275862068559,-0.407142857142862,0.041379310344402,-0.400000000000000,-0.014285714285720,0.000000000000000,-0.000000000000003,-0.013793103448314,0.014285714285723,0.000000000000000,0.000000000000000,0.013793103448314,2 -683,4597,4612,4625,0.055172413792716,-0.600000000000000,0.048275862068559,-0.592857142857129,0.055172413792716,-0.585714285714257,0.062068965516873,-0.592857142857129,-0.000000000000000,-0.013793103448315,-0.014285714285743,0.000000000000000,-0.000000000000000,0.013793103448315,0.014285714285743,0.000000000000000,2 -4598,4611,4613,4626,0.048275862068559,-0.578571428571392,0.055172413792716,-0.585714285714257,0.055172413792716,-0.571428571428527,0.062068965516873,-0.578571428571392,-0.014285714285731,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000001,0.013793103448315,0.014285714285730,-0.000000000000000,2 -4599,4612,4614,4627,0.048275862068559,-0.564285714285673,0.055172413792716,-0.571428571428527,0.055172413792716,-0.557142857142821,0.062068965516873,-0.564285714285675,-0.014285714285707,-0.000000000000000,-0.000000000000001,-0.013793103448315,0.000000000000004,0.013793103448315,0.014285714285704,-0.000000000000000,2 -4600,4613,4615,4628,0.048275862068559,-0.549999999999966,0.055172413792716,-0.557142857142821,0.055172413792716,-0.542857142857116,0.062068965516873,-0.549999999999971,-0.014285714285707,0.000000000000000,-0.000000000000004,-0.013793103448315,0.000000000000007,0.013793103448315,0.014285714285704,0.000000000000000,2 -4601,4614,4616,4629,0.048275862068559,-0.535714285714260,0.055172413792716,-0.542857142857116,0.055172413792716,-0.528571428571412,0.062068965516873,-0.535714285714268,-0.014285714285705,-0.000000000000000,-0.000000000000007,-0.013793103448315,0.000000000000009,0.013793103448315,0.014285714285702,0.000000000000000,2 -4602,4615,4617,4630,0.048275862068559,-0.521428571428579,0.055172413792716,-0.528571428571412,0.055172413792716,-0.514285714285759,0.062068965516873,-0.521428571428591,-0.014285714285656,0.000000000000000,-0.000000000000009,-0.013793103448315,0.000000000000015,0.013793103448315,0.014285714285651,-0.000000000000000,2 -4603,4616,4618,4631,0.048275862068559,-0.507142857142921,0.055172413792716,-0.514285714285759,0.055172413792716,-0.500000000000100,0.062068965516873,-0.507142857142937,-0.014285714285660,-0.000000000000000,-0.000000000000015,-0.013793103448315,0.000000000000018,0.013793103448315,0.014285714285657,-0.000000000000000,2 -4604,4617,4619,4632,0.048275862068559,-0.492857142857227,0.055172413792716,-0.500000000000100,0.055172413792716,-0.485714285714372,0.062068965516873,-0.492857142857245,-0.014285714285728,-0.000000000000000,-0.000000000000018,-0.013793103448315,0.000000000000017,0.013793103448315,0.014285714285729,0.000000000000000,2 -4605,4618,4620,4633,0.048275862068559,-0.478571428571502,0.055172413792716,-0.485714285714372,0.055172413792716,-0.471428571428648,0.062068965516873,-0.478571428571518,-0.014285714285722,0.000000000000000,-0.000000000000017,-0.013793103448315,0.000000000000014,0.013793103448315,0.014285714285725,0.000000000000000,2 -4606,4619,4621,4634,0.048275862068559,-0.464285714285778,0.055172413792716,-0.471428571428648,0.055172413792716,-0.457142857142920,0.062068965516873,-0.464285714285790,-0.014285714285726,-0.000000000000000,-0.000000000000014,-0.013793103448315,0.000000000000011,0.013793103448315,0.014285714285729,-0.000000000000000,2 -4607,4620,4622,4635,0.048275862068559,-0.450000000000051,0.055172413792716,-0.457142857142920,0.055172413792716,-0.442857142857191,0.062068965516873,-0.450000000000060,-0.014285714285728,0.000000000000000,-0.000000000000011,-0.013793103448315,0.000000000000007,0.013793103448315,0.014285714285731,0.000000000000000,2 -4608,4621,4623,4636,0.048275862068559,-0.435714285714324,0.055172413792716,-0.442857142857191,0.055172413792716,-0.428571428571463,0.062068965516873,-0.435714285714330,-0.014285714285726,0.000000000000000,-0.000000000000007,-0.013793103448315,0.000000000000004,0.013793103448315,0.014285714285729,0.000000000000000,2 -4609,4622,4624,4637,0.048275862068559,-0.421428571428592,0.055172413792716,-0.428571428571463,0.055172413792716,-0.414285714285725,0.062068965516873,-0.421428571428596,-0.014285714285738,-0.000000000000000,-0.000000000000004,-0.013793103448315,0.000000000000003,0.013793103448315,0.014285714285739,0.000000000000000,2 -4610,4623,4638,9321,0.048275862068559,-0.407142857142862,0.055172413792716,-0.414285714285725,0.062068965516873,-0.407142857142863,0.055172413792716,-0.400000000000000,-0.014285714285723,-0.000000000000000,-0.000000000000003,-0.013793103448315,0.014285714285726,-0.000000000000000,0.000000000000000,0.013793103448315,2 -689,4611,4626,4639,0.068965517241032,-0.600000000000000,0.062068965516873,-0.592857142857129,0.068965517241032,-0.585714285714257,0.075862068965190,-0.592857142857128,-0.000000000000000,-0.013793103448317,-0.014285714285743,-0.000000000000000,-0.000000000000000,0.013793103448317,0.014285714285743,0.000000000000000,2 -4612,4625,4627,4640,0.062068965516873,-0.578571428571392,0.068965517241032,-0.585714285714257,0.068965517241032,-0.571428571428528,0.075862068965190,-0.578571428571393,-0.014285714285730,0.000000000000000,0.000000000000000,-0.013793103448317,0.000000000000001,0.013793103448317,0.014285714285728,0.000000000000000,2 -4613,4626,4628,4641,0.062068965516873,-0.564285714285675,0.068965517241032,-0.571428571428528,0.068965517241032,-0.557142857142825,0.075862068965190,-0.564285714285678,-0.014285714285704,0.000000000000000,-0.000000000000001,-0.013793103448317,0.000000000000003,0.013793103448317,0.014285714285702,-0.000000000000000,2 -4614,4627,4629,4642,0.062068965516873,-0.549999999999971,0.068965517241032,-0.557142857142825,0.068965517241032,-0.542857142857122,0.075862068965190,-0.549999999999976,-0.014285714285704,-0.000000000000000,-0.000000000000003,-0.013793103448317,0.000000000000006,0.013793103448317,0.014285714285702,-0.000000000000000,2 -4615,4628,4630,4643,0.062068965516873,-0.535714285714268,0.068965517241032,-0.542857142857122,0.068965517241032,-0.528571428571421,0.075862068965190,-0.535714285714275,-0.014285714285702,-0.000000000000000,-0.000000000000006,-0.013793103448317,0.000000000000009,0.013793103448317,0.014285714285699,0.000000000000000,2 -4616,4629,4631,4644,0.062068965516873,-0.521428571428591,0.068965517241032,-0.528571428571421,0.068965517241032,-0.514285714285773,0.075862068965190,-0.521428571428603,-0.014285714285651,0.000000000000000,-0.000000000000009,-0.013793103448317,0.000000000000015,0.013793103448317,0.014285714285645,0.000000000000000,2 -4617,4630,4632,4645,0.062068965516873,-0.507142857142937,0.068965517241032,-0.514285714285773,0.068965517241032,-0.500000000000118,0.075862068965190,-0.507142857142954,-0.014285714285657,0.000000000000000,-0.000000000000015,-0.013793103448317,0.000000000000019,0.013793103448317,0.014285714285653,0.000000000000000,2 -4618,4631,4633,4646,0.062068965516873,-0.492857142857245,0.068965517241032,-0.500000000000118,0.068965517241032,-0.485714285714389,0.075862068965190,-0.492857142857262,-0.014285714285729,-0.000000000000000,-0.000000000000019,-0.013793103448317,0.000000000000017,0.013793103448317,0.014285714285731,0.000000000000000,2 -4619,4632,4634,4647,0.062068965516873,-0.478571428571518,0.068965517241032,-0.485714285714389,0.068965517241032,-0.471428571428662,0.075862068965190,-0.478571428571533,-0.014285714285725,-0.000000000000000,-0.000000000000017,-0.013793103448317,0.000000000000014,0.013793103448317,0.014285714285728,0.000000000000000,2 -4620,4633,4635,4648,0.062068965516873,-0.464285714285790,0.068965517241032,-0.471428571428662,0.068965517241032,-0.457142857142931,0.075862068965190,-0.464285714285803,-0.014285714285729,0.000000000000000,-0.000000000000014,-0.013793103448317,0.000000000000011,0.013793103448317,0.014285714285732,0.000000000000000,2 -4621,4634,4636,4649,0.062068965516873,-0.450000000000060,0.068965517241032,-0.457142857142931,0.068965517241032,-0.442857142857198,0.075862068965190,-0.450000000000069,-0.014285714285731,-0.000000000000000,-0.000000000000011,-0.013793103448317,0.000000000000007,0.013793103448317,0.014285714285735,0.000000000000000,2 -4622,4635,4637,4650,0.062068965516873,-0.435714285714330,0.068965517241032,-0.442857142857198,0.068965517241032,-0.428571428571467,0.075862068965190,-0.435714285714336,-0.014285714285729,-0.000000000000000,-0.000000000000007,-0.013793103448317,0.000000000000005,0.013793103448317,0.014285714285732,0.000000000000000,2 -4623,4636,4638,4651,0.062068965516873,-0.421428571428596,0.068965517241032,-0.428571428571467,0.068965517241032,-0.414285714285728,0.075862068965190,-0.421428571428599,-0.014285714285739,-0.000000000000000,-0.000000000000005,-0.013793103448317,0.000000000000003,0.013793103448317,0.014285714285741,0.000000000000000,2 -4624,4637,4652,9322,0.062068965516873,-0.407142857142863,0.068965517241032,-0.414285714285728,0.075862068965190,-0.407142857142865,0.068965517241032,-0.400000000000000,-0.014285714285726,0.000000000000000,-0.000000000000003,-0.013793103448317,0.014285714285729,-0.000000000000000,0.000000000000000,0.013793103448317,2 -695,4625,4640,4653,0.082758620689347,-0.600000000000000,0.075862068965190,-0.592857142857128,0.082758620689347,-0.585714285714257,0.089655172413504,-0.592857142857128,-0.000000000000000,-0.013793103448314,-0.014285714285743,-0.000000000000000,0.000000000000000,0.013793103448314,0.014285714285743,-0.000000000000000,2 -4626,4639,4641,4654,0.075862068965190,-0.578571428571393,0.082758620689347,-0.585714285714257,0.082758620689347,-0.571428571428529,0.089655172413504,-0.578571428571393,-0.014285714285728,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000001,0.013793103448314,0.014285714285727,0.000000000000000,2 -4627,4640,4642,4655,0.075862068965190,-0.564285714285678,0.082758620689347,-0.571428571428529,0.082758620689347,-0.557142857142829,0.089655172413504,-0.564285714285680,-0.014285714285702,0.000000000000000,-0.000000000000001,-0.013793103448314,0.000000000000004,0.013793103448314,0.014285714285699,0.000000000000000,2 -4628,4641,4643,4656,0.075862068965190,-0.549999999999976,0.082758620689347,-0.557142857142829,0.082758620689347,-0.542857142857128,0.089655172413504,-0.549999999999981,-0.014285714285702,0.000000000000000,-0.000000000000004,-0.013793103448314,0.000000000000006,0.013793103448314,0.014285714285699,0.000000000000000,2 -4629,4642,4644,4657,0.075862068965190,-0.535714285714275,0.082758620689347,-0.542857142857128,0.082758620689347,-0.528571428571430,0.089655172413504,-0.535714285714283,-0.014285714285699,-0.000000000000000,-0.000000000000006,-0.013793103448314,0.000000000000009,0.013793103448314,0.014285714285697,-0.000000000000000,2 -4630,4643,4645,4658,0.075862068965190,-0.521428571428603,0.082758620689347,-0.528571428571430,0.082758620689347,-0.514285714285788,0.089655172413504,-0.521428571428615,-0.014285714285645,-0.000000000000000,-0.000000000000009,-0.013793103448314,0.000000000000015,0.013793103448314,0.014285714285639,0.000000000000000,2 -4631,4644,4646,4659,0.075862068965190,-0.507142857142954,0.082758620689347,-0.514285714285788,0.082758620689347,-0.500000000000137,0.089655172413504,-0.507142857142970,-0.014285714285653,-0.000000000000000,-0.000000000000015,-0.013793103448314,0.000000000000018,0.013793103448314,0.014285714285649,-0.000000000000000,2 -4632,4645,4647,4660,0.075862068965190,-0.492857142857262,0.082758620689347,-0.500000000000137,0.082758620689347,-0.485714285714405,0.089655172413504,-0.492857142857280,-0.014285714285731,-0.000000000000000,-0.000000000000018,-0.013793103448314,0.000000000000017,0.013793103448314,0.014285714285732,0.000000000000000,2 -4633,4646,4648,4661,0.075862068965190,-0.478571428571533,0.082758620689347,-0.485714285714405,0.082758620689347,-0.471428571428676,0.089655172413504,-0.478571428571548,-0.014285714285728,-0.000000000000000,-0.000000000000017,-0.013793103448314,0.000000000000014,0.013793103448314,0.014285714285731,0.000000000000000,2 -4634,4647,4649,4662,0.075862068965190,-0.464285714285803,0.082758620689347,-0.471428571428676,0.082758620689347,-0.457142857142942,0.089655172413504,-0.464285714285815,-0.014285714285732,-0.000000000000000,-0.000000000000014,-0.013793103448314,0.000000000000011,0.013793103448314,0.014285714285736,0.000000000000000,2 -4635,4648,4650,4663,0.075862068965190,-0.450000000000069,0.082758620689347,-0.457142857142942,0.082758620689347,-0.442857142857206,0.089655172413504,-0.450000000000078,-0.014285714285735,-0.000000000000000,-0.000000000000011,-0.013793103448314,0.000000000000008,0.013793103448314,0.014285714285738,-0.000000000000000,2 -4636,4649,4651,4664,0.075862068965190,-0.435714285714336,0.082758620689347,-0.442857142857206,0.082758620689347,-0.428571428571472,0.089655172413504,-0.435714285714342,-0.014285714285732,-0.000000000000000,-0.000000000000008,-0.013793103448314,0.000000000000004,0.013793103448314,0.014285714285735,0.000000000000000,2 -4637,4650,4652,4665,0.075862068965190,-0.421428571428599,0.082758620689347,-0.428571428571472,0.082758620689347,-0.414285714285731,0.089655172413504,-0.421428571428603,-0.014285714285741,-0.000000000000000,-0.000000000000004,-0.013793103448314,0.000000000000003,0.013793103448314,0.014285714285742,0.000000000000000,2 -4638,4651,4666,9323,0.075862068965190,-0.407142857142865,0.082758620689347,-0.414285714285731,0.089655172413504,-0.407142857142866,0.082758620689347,-0.400000000000000,-0.014285714285729,0.000000000000000,-0.000000000000003,-0.013793103448314,0.014285714285732,-0.000000000000000,0.000000000000000,0.013793103448314,2 -701,4639,4654,4667,0.096551724137659,-0.600000000000000,0.089655172413504,-0.592857142857128,0.096551724137659,-0.585714285714257,0.103448275861814,-0.592857142857128,-0.000000000000000,-0.013793103448309,-0.014285714285743,0.000000000000000,-0.000000000000001,0.013793103448309,0.014285714285744,0.000000000000000,2 -4640,4653,4655,4668,0.089655172413504,-0.578571428571393,0.096551724137659,-0.585714285714257,0.096551724137659,-0.571428571428530,0.103448275861814,-0.578571428571393,-0.014285714285727,-0.000000000000000,0.000000000000001,-0.013793103448309,0.000000000000001,0.013793103448309,0.014285714285726,0.000000000000000,2 -4641,4654,4656,4669,0.089655172413504,-0.564285714285680,0.096551724137659,-0.571428571428530,0.096551724137659,-0.557142857142832,0.103448275861814,-0.564285714285682,-0.014285714285699,-0.000000000000000,-0.000000000000001,-0.013793103448309,0.000000000000004,0.013793103448310,0.014285714285696,-0.000000000000000,2 -4642,4655,4657,4670,0.089655172413504,-0.549999999999981,0.096551724137659,-0.557142857142832,0.096551724137659,-0.542857142857135,0.103448275861814,-0.549999999999986,-0.014285714285699,-0.000000000000000,-0.000000000000004,-0.013793103448310,0.000000000000006,0.013793103448310,0.014285714285696,0.000000000000000,2 -4643,4656,4658,4671,0.089655172413504,-0.535714285714283,0.096551724137659,-0.542857142857135,0.096551724137659,-0.528571428571439,0.103448275861814,-0.535714285714291,-0.014285714285697,0.000000000000000,-0.000000000000006,-0.013793103448310,0.000000000000009,0.013793103448309,0.014285714285695,0.000000000000000,2 -4644,4657,4659,4672,0.089655172413504,-0.521428571428615,0.096551724137659,-0.528571428571439,0.096551724137659,-0.514285714285803,0.103448275861814,-0.521428571428627,-0.014285714285639,-0.000000000000000,-0.000000000000009,-0.013793103448309,0.000000000000015,0.013793103448309,0.014285714285633,0.000000000000000,2 -4645,4658,4660,4673,0.089655172413504,-0.507142857142970,0.096551724137659,-0.514285714285803,0.096551724137659,-0.500000000000155,0.103448275861814,-0.507142857142987,-0.014285714285649,0.000000000000000,-0.000000000000015,-0.013793103448309,0.000000000000019,0.013793103448309,0.014285714285646,0.000000000000000,2 -4646,4659,4661,4674,0.089655172413504,-0.492857142857280,0.096551724137659,-0.500000000000155,0.096551724137659,-0.485714285714422,0.103448275861814,-0.492857142857298,-0.014285714285732,-0.000000000000000,-0.000000000000019,-0.013793103448309,0.000000000000017,0.013793103448309,0.014285714285733,0.000000000000000,2 -4647,4660,4662,4675,0.089655172413504,-0.478571428571548,0.096551724137659,-0.485714285714422,0.096551724137659,-0.471428571428690,0.103448275861814,-0.478571428571564,-0.014285714285731,-0.000000000000000,-0.000000000000017,-0.013793103448309,0.000000000000014,0.013793103448309,0.014285714285734,0.000000000000000,2 -4648,4661,4663,4676,0.089655172413504,-0.464285714285815,0.096551724137659,-0.471428571428690,0.096551724137659,-0.457142857142953,0.103448275861814,-0.464285714285827,-0.014285714285736,-0.000000000000000,-0.000000000000014,-0.013793103448309,0.000000000000011,0.013793103448310,0.014285714285739,0.000000000000000,2 -4649,4662,4664,4677,0.089655172413504,-0.450000000000078,0.096551724137659,-0.457142857142953,0.096551724137659,-0.442857142857213,0.103448275861814,-0.450000000000088,-0.014285714285738,0.000000000000000,-0.000000000000011,-0.013793103448310,0.000000000000008,0.013793103448309,0.014285714285741,0.000000000000000,2 -4650,4663,4665,4678,0.089655172413504,-0.435714285714342,0.096551724137659,-0.442857142857213,0.096551724137659,-0.428571428571476,0.103448275861814,-0.435714285714348,-0.014285714285735,-0.000000000000000,-0.000000000000008,-0.013793103448309,0.000000000000004,0.013793103448309,0.014285714285739,0.000000000000000,2 -4651,4664,4666,4679,0.089655172413504,-0.421428571428603,0.096551724137659,-0.428571428571476,0.096551724137659,-0.414285714285734,0.103448275861814,-0.421428571428607,-0.014285714285742,-0.000000000000000,-0.000000000000004,-0.013793103448309,0.000000000000003,0.013793103448309,0.014285714285743,0.000000000000000,2 -4652,4665,4680,9324,0.089655172413504,-0.407142857142866,0.096551724137659,-0.414285714285734,0.103448275861814,-0.407142857142868,0.096551724137659,-0.400000000000000,-0.014285714285732,0.000000000000000,-0.000000000000003,-0.013793103448309,0.014285714285735,-0.000000000000000,0.000000000000000,0.013793103448309,2 -707,4653,4668,4681,0.110344827585969,-0.600000000000000,0.103448275861814,-0.592857142857128,0.110344827585969,-0.585714285714256,0.117241379310125,-0.592857142857128,-0.000000000000000,-0.013793103448312,-0.014285714285744,-0.000000000000000,-0.000000000000000,0.013793103448312,0.014285714285744,0.000000000000000,2 -4654,4667,4669,4682,0.103448275861814,-0.578571428571393,0.110344827585969,-0.585714285714256,0.110344827585969,-0.571428571428531,0.117241379310125,-0.578571428571394,-0.014285714285726,-0.000000000000000,0.000000000000000,-0.013793103448312,0.000000000000001,0.013793103448312,0.014285714285725,0.000000000000000,2 -4655,4668,4670,4683,0.103448275861814,-0.564285714285682,0.110344827585969,-0.571428571428531,0.110344827585969,-0.557142857142836,0.117241379310125,-0.564285714285685,-0.014285714285696,0.000000000000000,-0.000000000000001,-0.013793103448312,0.000000000000004,0.013793103448312,0.014285714285693,0.000000000000000,2 -4656,4669,4671,4684,0.103448275861814,-0.549999999999986,0.110344827585969,-0.557142857142836,0.110344827585969,-0.542857142857141,0.117241379310125,-0.549999999999991,-0.014285714285696,-0.000000000000000,-0.000000000000004,-0.013793103448312,0.000000000000006,0.013793103448312,0.014285714285694,0.000000000000000,2 -4657,4670,4672,4685,0.103448275861814,-0.535714285714291,0.110344827585969,-0.542857142857141,0.110344827585969,-0.528571428571448,0.117241379310125,-0.535714285714298,-0.014285714285695,-0.000000000000000,-0.000000000000006,-0.013793103448312,0.000000000000009,0.013793103448312,0.014285714285692,0.000000000000000,2 -4658,4671,4673,4686,0.103448275861814,-0.521428571428627,0.110344827585969,-0.528571428571448,0.110344827585969,-0.514285714285817,0.117241379310125,-0.521428571428638,-0.014285714285633,-0.000000000000000,-0.000000000000009,-0.013793103448312,0.000000000000015,0.013793103448312,0.014285714285628,0.000000000000000,2 -4659,4672,4674,4687,0.103448275861814,-0.507142857142987,0.110344827585969,-0.514285714285817,0.110344827585969,-0.500000000000173,0.117241379310125,-0.507142857143003,-0.014285714285646,-0.000000000000000,-0.000000000000015,-0.013793103448312,0.000000000000018,0.013793103448312,0.014285714285642,0.000000000000000,2 -4660,4673,4675,4688,0.103448275861814,-0.492857142857298,0.110344827585969,-0.500000000000173,0.110344827585969,-0.485714285714439,0.117241379310125,-0.492857142857315,-0.014285714285733,-0.000000000000000,-0.000000000000018,-0.013793103448312,0.000000000000017,0.013793103448312,0.014285714285735,0.000000000000000,2 -4661,4674,4676,4689,0.103448275861814,-0.478571428571564,0.110344827585969,-0.485714285714439,0.110344827585969,-0.471428571428704,0.117241379310125,-0.478571428571579,-0.014285714285734,-0.000000000000000,-0.000000000000017,-0.013793103448312,0.000000000000014,0.013793103448312,0.014285714285737,0.000000000000000,2 -4662,4675,4677,4690,0.103448275861814,-0.464285714285827,0.110344827585969,-0.471428571428704,0.110344827585969,-0.457142857142963,0.117241379310125,-0.464285714285840,-0.014285714285739,-0.000000000000000,-0.000000000000014,-0.013793103448312,0.000000000000011,0.013793103448312,0.014285714285742,0.000000000000000,2 -4663,4676,4678,4691,0.103448275861814,-0.450000000000088,0.110344827585969,-0.457142857142963,0.110344827585969,-0.442857142857221,0.117241379310125,-0.450000000000097,-0.014285714285741,-0.000000000000000,-0.000000000000011,-0.013793103448312,0.000000000000007,0.013793103448312,0.014285714285744,0.000000000000000,2 -4664,4677,4679,4692,0.103448275861814,-0.435714285714348,0.110344827585969,-0.442857142857221,0.110344827585969,-0.428571428571480,0.117241379310125,-0.435714285714354,-0.014285714285739,-0.000000000000000,-0.000000000000007,-0.013793103448312,0.000000000000004,0.013793103448312,0.014285714285742,0.000000000000000,2 -4665,4678,4680,4693,0.103448275861814,-0.421428571428607,0.110344827585969,-0.428571428571480,0.110344827585969,-0.414285714285737,0.117241379310125,-0.421428571428610,-0.014285714285743,-0.000000000000000,-0.000000000000004,-0.013793103448312,0.000000000000003,0.013793103448312,0.014285714285744,0.000000000000000,2 -4666,4679,4694,9325,0.103448275861814,-0.407142857142868,0.110344827585969,-0.414285714285737,0.117241379310125,-0.407142857142869,0.110344827585969,-0.400000000000000,-0.014285714285735,0.000000000000000,-0.000000000000003,-0.013793103448312,0.014285714285738,-0.000000000000000,0.000000000000000,0.013793103448312,2 -713,4667,4682,4695,0.124137931034281,-0.600000000000000,0.117241379310125,-0.592857142857128,0.124137931034281,-0.585714285714256,0.131034482758436,-0.592857142857128,-0.000000000000000,-0.013793103448311,-0.014285714285744,-0.000000000000000,-0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 -4668,4681,4683,4696,0.117241379310125,-0.578571428571394,0.124137931034281,-0.585714285714256,0.124137931034281,-0.571428571428532,0.131034482758436,-0.578571428571394,-0.014285714285725,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000001,0.013793103448311,0.014285714285724,0.000000000000000,2 -4669,4682,4684,4697,0.117241379310125,-0.564285714285685,0.124137931034281,-0.571428571428532,0.124137931034281,-0.557142857142840,0.131034482758436,-0.564285714285687,-0.014285714285693,-0.000000000000000,-0.000000000000001,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285691,0.000000000000000,2 -4670,4683,4685,4698,0.117241379310125,-0.549999999999991,0.124137931034281,-0.557142857142840,0.124137931034281,-0.542857142857147,0.131034482758436,-0.549999999999996,-0.014285714285694,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000006,0.013793103448311,0.014285714285691,0.000000000000000,2 -4671,4684,4686,4699,0.117241379310125,-0.535714285714298,0.124137931034281,-0.542857142857147,0.124137931034281,-0.528571428571457,0.131034482758436,-0.535714285714306,-0.014285714285692,-0.000000000000000,-0.000000000000006,-0.013793103448311,0.000000000000009,0.013793103448311,0.014285714285690,0.000000000000000,2 -4672,4685,4687,4700,0.117241379310125,-0.521428571428638,0.124137931034281,-0.528571428571457,0.124137931034281,-0.514285714285832,0.131034482758436,-0.521428571428650,-0.014285714285628,-0.000000000000000,-0.000000000000009,-0.013793103448311,0.000000000000015,0.013793103448311,0.014285714285622,0.000000000000000,2 -4673,4686,4688,4701,0.117241379310125,-0.507142857143003,0.124137931034281,-0.514285714285832,0.124137931034281,-0.500000000000192,0.131034482758436,-0.507142857143020,-0.014285714285642,-0.000000000000000,-0.000000000000015,-0.013793103448311,0.000000000000018,0.013793103448311,0.014285714285638,0.000000000000000,2 -4674,4687,4689,4702,0.117241379310125,-0.492857142857315,0.124137931034281,-0.500000000000192,0.124137931034281,-0.485714285714456,0.131034482758436,-0.492857142857333,-0.014285714285735,-0.000000000000000,-0.000000000000018,-0.013793103448311,0.000000000000017,0.013793103448311,0.014285714285736,0.000000000000000,2 -4675,4688,4690,4703,0.117241379310125,-0.478571428571579,0.124137931034281,-0.485714285714456,0.124137931034281,-0.471428571428718,0.131034482758436,-0.478571428571595,-0.014285714285737,-0.000000000000000,-0.000000000000017,-0.013793103448311,0.000000000000014,0.013793103448311,0.014285714285740,0.000000000000000,2 -4676,4689,4691,4704,0.117241379310125,-0.464285714285840,0.124137931034281,-0.471428571428718,0.124137931034281,-0.457142857142974,0.131034482758436,-0.464285714285852,-0.014285714285742,-0.000000000000000,-0.000000000000014,-0.013793103448311,0.000000000000011,0.013793103448311,0.014285714285745,0.000000000000000,2 -4677,4690,4692,4705,0.117241379310125,-0.450000000000097,0.124137931034281,-0.457142857142974,0.124137931034281,-0.442857142857228,0.131034482758436,-0.450000000000106,-0.014285714285744,-0.000000000000000,-0.000000000000011,-0.013793103448311,0.000000000000007,0.013793103448311,0.014285714285747,0.000000000000000,2 -4678,4691,4693,4706,0.117241379310125,-0.435714285714354,0.124137931034281,-0.442857142857228,0.124137931034281,-0.428571428571485,0.131034482758436,-0.435714285714360,-0.014285714285742,-0.000000000000000,-0.000000000000007,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285745,0.000000000000000,2 -4679,4692,4694,4707,0.117241379310125,-0.421428571428610,0.124137931034281,-0.428571428571485,0.124137931034281,-0.414285714285740,0.131034482758436,-0.421428571428614,-0.014285714285744,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000003,0.013793103448311,0.014285714285746,0.000000000000000,2 -4680,4693,4708,9326,0.117241379310125,-0.407142857142869,0.124137931034281,-0.414285714285740,0.131034482758436,-0.407142857142871,0.124137931034281,-0.400000000000000,-0.014285714285738,0.000000000000000,-0.000000000000003,-0.013793103448311,0.014285714285741,-0.000000000000000,0.000000000000000,0.013793103448311,2 -719,4681,4696,4709,0.137931034482591,-0.600000000000000,0.131034482758436,-0.592857142857128,0.137931034482591,-0.585714285714256,0.144827586206747,-0.592857142857128,-0.000000000000000,-0.013793103448311,-0.014285714285744,-0.000000000000000,-0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 -4682,4695,4697,4710,0.131034482758436,-0.578571428571394,0.137931034482591,-0.585714285714256,0.137931034482591,-0.571428571428533,0.144827586206747,-0.578571428571394,-0.014285714285724,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000001,0.013793103448311,0.014285714285723,0.000000000000000,2 -4683,4696,4698,4711,0.131034482758436,-0.564285714285687,0.137931034482591,-0.571428571428533,0.137931034482591,-0.557142857142843,0.144827586206747,-0.564285714285689,-0.014285714285691,-0.000000000000000,-0.000000000000001,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285688,0.000000000000000,2 -4684,4697,4699,4712,0.131034482758436,-0.549999999999996,0.137931034482591,-0.557142857142843,0.137931034482591,-0.542857142857154,0.144827586206747,-0.550000000000001,-0.014285714285691,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000007,0.013793103448311,0.014285714285688,0.000000000000000,2 -4685,4698,4700,4713,0.131034482758436,-0.535714285714306,0.137931034482591,-0.542857142857154,0.137931034482591,-0.528571428571466,0.144827586206747,-0.535714285714314,-0.014285714285690,-0.000000000000000,-0.000000000000007,-0.013793103448311,0.000000000000009,0.013793103448311,0.014285714285687,0.000000000000000,2 -4686,4699,4701,4714,0.131034482758436,-0.521428571428650,0.137931034482591,-0.528571428571466,0.137931034482591,-0.514285714285847,0.144827586206747,-0.521428571428662,-0.014285714285622,-0.000000000000000,-0.000000000000009,-0.013793103448311,0.000000000000015,0.013793103448311,0.014285714285616,0.000000000000000,2 -4687,4700,4702,4715,0.131034482758436,-0.507142857143020,0.137931034482591,-0.514285714285847,0.137931034482591,-0.500000000000210,0.144827586206747,-0.507142857143037,-0.014285714285638,-0.000000000000000,-0.000000000000015,-0.013793103448311,0.000000000000018,0.013793103448311,0.014285714285635,0.000000000000000,2 -4688,4701,4703,4716,0.131034482758436,-0.492857142857333,0.137931034482591,-0.500000000000210,0.137931034482591,-0.485714285714473,0.144827586206747,-0.492857142857350,-0.014285714285736,-0.000000000000000,-0.000000000000018,-0.013793103448311,0.000000000000017,0.013793103448311,0.014285714285738,0.000000000000000,2 -4689,4702,4704,4717,0.131034482758436,-0.478571428571595,0.137931034482591,-0.485714285714473,0.137931034482591,-0.471428571428732,0.144827586206747,-0.478571428571610,-0.014285714285740,-0.000000000000000,-0.000000000000017,-0.013793103448311,0.000000000000014,0.013793103448311,0.014285714285743,0.000000000000000,2 -4690,4703,4705,4718,0.131034482758436,-0.464285714285852,0.137931034482591,-0.471428571428732,0.137931034482591,-0.457142857142985,0.144827586206747,-0.464285714285865,-0.014285714285745,-0.000000000000000,-0.000000000000014,-0.013793103448311,0.000000000000011,0.013793103448311,0.014285714285748,0.000000000000000,2 -4691,4704,4706,4719,0.131034482758436,-0.450000000000106,0.137931034482591,-0.457142857142985,0.137931034482591,-0.442857142857236,0.144827586206747,-0.450000000000115,-0.014285714285747,-0.000000000000000,-0.000000000000011,-0.013793103448311,0.000000000000008,0.013793103448311,0.014285714285751,0.000000000000000,2 -4692,4705,4707,4720,0.131034482758436,-0.435714285714360,0.137931034482591,-0.442857142857236,0.137931034482591,-0.428571428571489,0.144827586206747,-0.435714285714366,-0.014285714285745,-0.000000000000000,-0.000000000000008,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285748,0.000000000000000,2 -4693,4706,4708,4721,0.131034482758436,-0.421428571428614,0.137931034482591,-0.428571428571489,0.137931034482591,-0.414285714285743,0.144827586206747,-0.421428571428618,-0.014285714285746,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000003,0.013793103448311,0.014285714285748,0.000000000000000,2 -4694,4707,4722,9327,0.131034482758436,-0.407142857142871,0.137931034482591,-0.414285714285743,0.144827586206747,-0.407142857142872,0.137931034482591,-0.400000000000000,-0.014285714285741,0.000000000000000,-0.000000000000003,-0.013793103448311,0.014285714285744,-0.000000000000000,0.000000000000000,0.013793103448311,2 -725,4695,4710,4723,0.151724137930902,-0.600000000000000,0.144827586206747,-0.592857142857128,0.151724137930902,-0.585714285714256,0.158620689655057,-0.592857142857128,-0.000000000000000,-0.013793103448311,-0.014285714285744,-0.000000000000000,-0.000000000000000,0.013793103448311,0.014285714285745,0.000000000000000,2 -4696,4709,4711,4724,0.144827586206747,-0.578571428571394,0.151724137930902,-0.585714285714256,0.151724137930902,-0.571428571428534,0.158620689655057,-0.578571428571395,-0.014285714285723,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000001,0.013793103448311,0.014285714285721,0.000000000000000,2 -4697,4710,4712,4725,0.144827586206747,-0.564285714285689,0.151724137930902,-0.571428571428534,0.151724137930902,-0.557142857142847,0.158620689655057,-0.564285714285692,-0.014285714285688,-0.000000000000000,-0.000000000000001,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285685,0.000000000000000,2 -4698,4711,4713,4726,0.144827586206747,-0.550000000000001,0.151724137930902,-0.557142857142847,0.151724137930902,-0.542857142857160,0.158620689655057,-0.550000000000006,-0.014285714285688,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000006,0.013793103448311,0.014285714285685,0.000000000000000,2 -4699,4712,4714,4727,0.144827586206747,-0.535714285714314,0.151724137930902,-0.542857142857160,0.151724137930902,-0.528571428571474,0.158620689655057,-0.535714285714321,-0.014285714285687,-0.000000000000000,-0.000000000000006,-0.013793103448311,0.000000000000009,0.013793103448311,0.014285714285685,0.000000000000000,2 -4700,4713,4715,4728,0.144827586206747,-0.521428571428662,0.151724137930902,-0.528571428571474,0.151724137930902,-0.514285714285861,0.158620689655057,-0.521428571428673,-0.014285714285616,-0.000000000000000,-0.000000000000009,-0.013793103448311,0.000000000000014,0.013793103448311,0.014285714285611,0.000000000000000,2 -4701,4714,4716,4729,0.144827586206747,-0.507142857143037,0.151724137930902,-0.514285714285861,0.151724137930902,-0.500000000000228,0.158620689655057,-0.507142857143053,-0.014285714285635,-0.000000000000000,-0.000000000000014,-0.013793103448311,0.000000000000018,0.013793103448311,0.014285714285631,0.000000000000000,2 -4702,4715,4717,4730,0.144827586206747,-0.492857142857350,0.151724137930902,-0.500000000000228,0.151724137930902,-0.485714285714490,0.158620689655057,-0.492857142857368,-0.014285714285738,-0.000000000000000,-0.000000000000018,-0.013793103448311,0.000000000000017,0.013793103448311,0.014285714285739,0.000000000000000,2 -4703,4716,4718,4731,0.144827586206747,-0.478571428571610,0.151724137930902,-0.485714285714490,0.151724137930902,-0.471428571428746,0.158620689655057,-0.478571428571625,-0.014285714285743,-0.000000000000000,-0.000000000000017,-0.013793103448311,0.000000000000014,0.013793103448311,0.014285714285746,0.000000000000000,2 -4704,4717,4719,4732,0.144827586206747,-0.464285714285865,0.151724137930902,-0.471428571428746,0.151724137930902,-0.457142857142996,0.158620689655057,-0.464285714285877,-0.014285714285748,-0.000000000000000,-0.000000000000014,-0.013793103448311,0.000000000000011,0.013793103448311,0.014285714285751,0.000000000000000,2 -4705,4718,4720,4733,0.144827586206747,-0.450000000000115,0.151724137930902,-0.457142857142996,0.151724137930902,-0.442857142857244,0.158620689655057,-0.450000000000124,-0.014285714285751,-0.000000000000000,-0.000000000000011,-0.013793103448311,0.000000000000008,0.013793103448311,0.014285714285754,0.000000000000000,2 -4706,4719,4721,4734,0.144827586206747,-0.435714285714366,0.151724137930902,-0.442857142857244,0.151724137930902,-0.428571428571494,0.158620689655057,-0.435714285714372,-0.014285714285748,-0.000000000000000,-0.000000000000008,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285751,0.000000000000000,2 -4707,4720,4722,4735,0.144827586206747,-0.421428571428618,0.151724137930902,-0.428571428571494,0.151724137930902,-0.414285714285746,0.158620689655057,-0.421428571428621,-0.014285714285748,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000003,0.013793103448311,0.014285714285749,0.000000000000000,2 -4708,4721,4736,9328,0.144827586206747,-0.407142857142872,0.151724137930902,-0.414285714285746,0.158620689655057,-0.407142857142874,0.151724137930902,-0.400000000000000,-0.014285714285744,0.000000000000000,-0.000000000000003,-0.013793103448311,0.014285714285747,-0.000000000000000,0.000000000000000,0.013793103448311,2 -731,4709,4724,4737,0.165517241379213,-0.600000000000000,0.158620689655057,-0.592857142857128,0.165517241379213,-0.585714285714255,0.172413793103368,-0.592857142857128,-0.000000000000000,-0.013793103448311,-0.014285714285745,-0.000000000000000,-0.000000000000000,0.013793103448311,0.014285714285745,0.000000000000000,2 -4710,4723,4725,4738,0.158620689655057,-0.578571428571395,0.165517241379213,-0.585714285714255,0.165517241379213,-0.571428571428535,0.172413793103368,-0.578571428571395,-0.014285714285721,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000001,0.013793103448311,0.014285714285720,0.000000000000000,2 -4711,4724,4726,4739,0.158620689655057,-0.564285714285692,0.165517241379213,-0.571428571428535,0.165517241379213,-0.557142857142851,0.172413793103368,-0.564285714285694,-0.014285714285685,-0.000000000000000,-0.000000000000001,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285683,0.000000000000000,2 -4712,4725,4727,4740,0.158620689655057,-0.550000000000006,0.165517241379213,-0.557142857142851,0.165517241379213,-0.542857142857167,0.172413793103368,-0.550000000000011,-0.014285714285685,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000006,0.013793103448311,0.014285714285683,0.000000000000000,2 -4713,4726,4728,4741,0.158620689655057,-0.535714285714321,0.165517241379213,-0.542857142857167,0.165517241379213,-0.528571428571483,0.172413793103368,-0.535714285714329,-0.014285714285685,-0.000000000000000,-0.000000000000006,-0.013793103448311,0.000000000000009,0.013793103448311,0.014285714285682,0.000000000000000,2 -4714,4727,4729,4742,0.158620689655057,-0.521428571428673,0.165517241379213,-0.528571428571483,0.165517241379213,-0.514285714285876,0.172413793103368,-0.521428571428685,-0.014285714285611,-0.000000000000000,-0.000000000000009,-0.013793103448311,0.000000000000015,0.013793103448311,0.014285714285605,-0.000000000000000,2 -4715,4728,4730,4743,0.158620689655057,-0.507142857143053,0.165517241379213,-0.514285714285876,0.165517241379213,-0.500000000000247,0.172413793103368,-0.507142857143069,-0.014285714285631,-0.000000000000000,-0.000000000000015,-0.013793103448311,0.000000000000018,0.013793103448311,0.014285714285627,0.000000000000000,2 -4716,4729,4731,4744,0.158620689655057,-0.492857142857368,0.165517241379213,-0.500000000000247,0.165517241379213,-0.485714285714507,0.172413793103368,-0.492857142857385,-0.014285714285739,-0.000000000000000,-0.000000000000018,-0.013793103448311,0.000000000000017,0.013793103448311,0.014285714285741,0.000000000000000,2 -4717,4730,4732,4745,0.158620689655057,-0.478571428571625,0.165517241379213,-0.485714285714507,0.165517241379213,-0.471428571428759,0.172413793103368,-0.478571428571641,-0.014285714285746,-0.000000000000000,-0.000000000000017,-0.013793103448311,0.000000000000014,0.013793103448311,0.014285714285749,0.000000000000000,2 -4718,4731,4733,4746,0.158620689655057,-0.464285714285877,0.165517241379213,-0.471428571428759,0.165517241379213,-0.457142857143007,0.172413793103368,-0.464285714285889,-0.014285714285751,-0.000000000000000,-0.000000000000014,-0.013793103448311,0.000000000000011,0.013793103448311,0.014285714285754,-0.000000000000000,2 -4719,4732,4734,4747,0.158620689655057,-0.450000000000124,0.165517241379213,-0.457142857143007,0.165517241379213,-0.442857142857251,0.172413793103368,-0.450000000000133,-0.014285714285754,-0.000000000000000,-0.000000000000011,-0.013793103448311,0.000000000000007,0.013793103448311,0.014285714285757,0.000000000000000,2 -4720,4733,4735,4748,0.158620689655057,-0.435714285714372,0.165517241379213,-0.442857142857251,0.165517241379213,-0.428571428571498,0.172413793103368,-0.435714285714377,-0.014285714285751,-0.000000000000000,-0.000000000000007,-0.013793103448311,0.000000000000004,0.013793103448311,0.014285714285754,0.000000000000000,2 -4721,4734,4736,4749,0.158620689655057,-0.421428571428621,0.165517241379213,-0.428571428571498,0.165517241379213,-0.414285714285749,0.172413793103368,-0.421428571428625,-0.014285714285749,-0.000000000000000,-0.000000000000004,-0.013793103448311,0.000000000000003,0.013793103448311,0.014285714285750,0.000000000000000,2 -4722,4735,4750,9329,0.158620689655057,-0.407142857142874,0.165517241379213,-0.414285714285749,0.172413793103368,-0.407142857142875,0.165517241379213,-0.400000000000000,-0.014285714285747,0.000000000000000,-0.000000000000003,-0.013793103448311,0.014285714285750,-0.000000000000000,0.000000000000000,0.013793103448311,2 -737,4723,4738,4751,0.179310344827525,-0.600000000000000,0.172413793103368,-0.592857142857128,0.179310344827525,-0.585714285714255,0.186206896551683,-0.592857142857127,-0.000000000000000,-0.013793103448315,-0.014285714285745,-0.000000000000000,-0.000000000000000,0.013793103448315,0.014285714285745,0.000000000000000,2 -4724,4737,4739,4752,0.172413793103368,-0.578571428571395,0.179310344827525,-0.585714285714255,0.179310344827525,-0.571428571428536,0.186206896551683,-0.578571428571395,-0.014285714285720,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000001,0.013793103448315,0.014285714285719,0.000000000000000,2 -4725,4738,4740,4753,0.172413793103368,-0.564285714285694,0.179310344827525,-0.571428571428536,0.179310344827525,-0.557142857142854,0.186206896551683,-0.564285714285696,-0.014285714285683,-0.000000000000000,-0.000000000000001,-0.013793103448315,0.000000000000004,0.013793103448315,0.014285714285680,0.000000000000000,2 -4726,4739,4741,4754,0.172413793103368,-0.550000000000011,0.179310344827525,-0.557142857142854,0.179310344827525,-0.542857142857173,0.186206896551683,-0.550000000000016,-0.014285714285683,-0.000000000000000,-0.000000000000004,-0.013793103448315,0.000000000000006,0.013793103448315,0.014285714285680,0.000000000000000,2 -4727,4740,4742,4755,0.172413793103368,-0.535714285714329,0.179310344827525,-0.542857142857173,0.179310344827525,-0.528571428571492,0.186206896551683,-0.535714285714337,-0.014285714285682,-0.000000000000000,-0.000000000000006,-0.013793103448315,0.000000000000009,0.013793103448315,0.014285714285680,0.000000000000000,2 -4728,4741,4743,4756,0.172413793103368,-0.521428571428685,0.179310344827525,-0.528571428571492,0.179310344827525,-0.514285714285890,0.186206896551683,-0.521428571428697,-0.014285714285605,0.000000000000000,-0.000000000000009,-0.013793103448315,0.000000000000015,0.013793103448315,0.014285714285599,0.000000000000000,2 -4729,4742,4744,4757,0.172413793103368,-0.507142857143069,0.179310344827525,-0.514285714285890,0.179310344827525,-0.500000000000265,0.186206896551683,-0.507142857143086,-0.014285714285627,-0.000000000000000,-0.000000000000015,-0.013793103448315,0.000000000000018,0.013793103448315,0.014285714285623,0.000000000000000,2 -4730,4743,4745,4758,0.172413793103368,-0.492857142857385,0.179310344827525,-0.500000000000265,0.179310344827525,-0.485714285714524,0.186206896551683,-0.492857142857403,-0.014285714285741,-0.000000000000000,-0.000000000000018,-0.013793103448315,0.000000000000017,0.013793103448315,0.014285714285742,0.000000000000000,2 -4731,4744,4746,4759,0.172413793103368,-0.478571428571641,0.179310344827525,-0.485714285714524,0.179310344827525,-0.471428571428773,0.186206896551683,-0.478571428571656,-0.014285714285749,-0.000000000000000,-0.000000000000017,-0.013793103448315,0.000000000000014,0.013793103448315,0.014285714285752,0.000000000000000,2 -4732,4745,4747,4760,0.172413793103368,-0.464285714285889,0.179310344827525,-0.471428571428773,0.179310344827525,-0.457142857143018,0.186206896551683,-0.464285714285902,-0.014285714285754,0.000000000000000,-0.000000000000014,-0.013793103448315,0.000000000000011,0.013793103448315,0.014285714285757,0.000000000000000,2 -4733,4746,4748,4761,0.172413793103368,-0.450000000000133,0.179310344827525,-0.457142857143018,0.179310344827525,-0.442857142857259,0.186206896551683,-0.450000000000143,-0.014285714285757,-0.000000000000000,-0.000000000000011,-0.013793103448315,0.000000000000008,0.013793103448315,0.014285714285760,0.000000000000000,2 -4734,4747,4749,4762,0.172413793103368,-0.435714285714377,0.179310344827525,-0.442857142857259,0.179310344827525,-0.428571428571502,0.186206896551683,-0.435714285714384,-0.014285714285754,-0.000000000000000,-0.000000000000008,-0.013793103448315,0.000000000000004,0.013793103448315,0.014285714285758,0.000000000000000,2 -4735,4748,4750,4763,0.172413793103368,-0.421428571428625,0.179310344827525,-0.428571428571502,0.179310344827525,-0.414285714285752,0.186206896551683,-0.421428571428629,-0.014285714285750,-0.000000000000000,-0.000000000000004,-0.013793103448315,0.000000000000003,0.013793103448315,0.014285714285752,0.000000000000000,2 -4736,4749,4764,9330,0.172413793103368,-0.407142857142875,0.179310344827525,-0.414285714285752,0.186206896551683,-0.407142857142877,0.179310344827525,-0.400000000000000,-0.014285714285750,0.000000000000000,-0.000000000000003,-0.013793103448315,0.014285714285753,-0.000000000000000,0.000000000000000,0.013793103448315,2 -743,4737,4752,4765,0.193103448275841,-0.600000000000000,0.186206896551683,-0.592857142857127,0.193103448275841,-0.585714285714255,0.200000000000000,-0.592857142857127,0.000000000000000,-0.013793103448317,-0.014285714285745,-0.000000000000000,-0.000000000000000,0.013793103448317,0.014285714285745,0.000000000000000,2 -4738,4751,4753,4766,0.186206896551683,-0.578571428571395,0.193103448275841,-0.585714285714255,0.193103448275841,-0.571428571428537,0.200000000000000,-0.578571428571396,-0.014285714285719,-0.000000000000000,0.000000000000000,-0.013793103448317,0.000000000000001,0.013793103448317,0.014285714285717,0.000000000000000,2 -4739,4752,4754,4767,0.186206896551683,-0.564285714285696,0.193103448275841,-0.571428571428537,0.193103448275841,-0.557142857142858,0.200000000000000,-0.564285714285699,-0.014285714285680,-0.000000000000000,-0.000000000000001,-0.013793103448317,0.000000000000004,0.013793103448317,0.014285714285677,0.000000000000000,2 -4740,4753,4755,4768,0.186206896551683,-0.550000000000016,0.193103448275841,-0.557142857142858,0.193103448275841,-0.542857142857180,0.200000000000000,-0.550000000000022,-0.014285714285680,-0.000000000000000,-0.000000000000004,-0.013793103448317,0.000000000000007,0.013793103448317,0.014285714285677,0.000000000000000,2 -4741,4754,4756,4769,0.186206896551683,-0.535714285714337,0.193103448275841,-0.542857142857180,0.193103448275841,-0.528571428571501,0.200000000000000,-0.535714285714345,-0.014285714285680,-0.000000000000000,-0.000000000000007,-0.013793103448317,0.000000000000009,0.013793103448317,0.014285714285677,0.000000000000000,2 -4742,4755,4757,4770,0.186206896551683,-0.521428571428697,0.193103448275841,-0.528571428571501,0.193103448275841,-0.514285714285905,0.200000000000000,-0.521428571428709,-0.014285714285599,-0.000000000000000,-0.000000000000009,-0.013793103448317,0.000000000000015,0.013793103448317,0.014285714285593,0.000000000000000,2 -4743,4756,4758,4771,0.186206896551683,-0.507142857143086,0.193103448275841,-0.514285714285905,0.193103448275841,-0.500000000000283,0.200000000000000,-0.507142857143103,-0.014285714285623,-0.000000000000000,-0.000000000000015,-0.013793103448317,0.000000000000018,0.013793103448317,0.014285714285620,0.000000000000000,2 -4744,4757,4759,4772,0.186206896551683,-0.492857142857403,0.193103448275841,-0.500000000000283,0.193103448275841,-0.485714285714540,0.200000000000000,-0.492857142857421,-0.014285714285742,-0.000000000000000,-0.000000000000018,-0.013793103448317,0.000000000000017,0.013793103448317,0.014285714285744,0.000000000000000,2 -4745,4758,4760,4773,0.186206896551683,-0.478571428571656,0.193103448275841,-0.485714285714540,0.193103448275841,-0.471428571428787,0.200000000000000,-0.478571428571672,-0.014285714285752,-0.000000000000000,-0.000000000000017,-0.013793103448317,0.000000000000014,0.013793103448317,0.014285714285754,0.000000000000000,2 -4746,4759,4761,4774,0.186206896551683,-0.464285714285902,0.193103448275841,-0.471428571428787,0.193103448275841,-0.457142857143028,0.200000000000000,-0.464285714285914,-0.014285714285757,-0.000000000000000,-0.000000000000014,-0.013793103448317,0.000000000000011,0.013793103448317,0.014285714285761,0.000000000000000,2 -4747,4760,4762,4775,0.186206896551683,-0.450000000000143,0.193103448275841,-0.457142857143028,0.193103448275841,-0.442857142857266,0.200000000000000,-0.450000000000152,-0.014285714285760,-0.000000000000000,-0.000000000000011,-0.013793103448317,0.000000000000007,0.013793103448317,0.014285714285764,0.000000000000000,2 -4748,4761,4763,4776,0.186206896551683,-0.435714285714384,0.193103448275841,-0.442857142857266,0.193103448275841,-0.428571428571507,0.200000000000000,-0.435714285714389,-0.014285714285758,-0.000000000000000,-0.000000000000007,-0.013793103448317,0.000000000000004,0.013793103448317,0.014285714285761,0.000000000000000,2 -4749,4762,4764,4777,0.186206896551683,-0.421428571428629,0.193103448275841,-0.428571428571507,0.193103448275841,-0.414285714285755,0.200000000000000,-0.421428571428633,-0.014285714285752,-0.000000000000000,-0.000000000000004,-0.013793103448317,0.000000000000003,0.013793103448317,0.014285714285753,0.000000000000000,2 -4750,4763,4778,9331,0.186206896551683,-0.407142857142877,0.193103448275841,-0.414285714285755,0.200000000000000,-0.407142857142878,0.193103448275841,-0.400000000000000,-0.014285714285753,0.000000000000000,-0.000000000000003,-0.013793103448317,0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448317,2 -749,4751,4766,4779,0.206896551724127,-0.600000000000000,0.200000000000000,-0.592857142857127,0.206896551724127,-0.585714285714255,0.213793103448254,-0.592857142857127,-0.000000000000000,-0.013793103448254,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448254,0.014285714285745,-0.000000000000000,2 -4752,4765,4767,4780,0.200000000000000,-0.578571428571396,0.206896551724127,-0.585714285714255,0.206896551724127,-0.571428571428537,0.213793103448254,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285717,0.000000000000000,2 -4753,4766,4768,4781,0.200000000000000,-0.564285714285699,0.206896551724127,-0.571428571428537,0.206896551724127,-0.557142857142860,0.213793103448254,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 -4754,4767,4769,4782,0.200000000000000,-0.550000000000022,0.206896551724127,-0.557142857142860,0.206896551724127,-0.542857142857183,0.213793103448254,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 -4755,4768,4770,4783,0.200000000000000,-0.535714285714345,0.206896551724127,-0.542857142857183,0.206896551724127,-0.528571428571506,0.213793103448254,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 -4756,4769,4771,4784,0.200000000000000,-0.521428571428709,0.206896551724127,-0.528571428571506,0.206896551724127,-0.514285714285913,0.213793103448254,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285593,0.000000000000000,2 -4757,4770,4772,4785,0.200000000000000,-0.507142857143103,0.206896551724127,-0.514285714285913,0.206896551724127,-0.500000000000293,0.213793103448254,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285620,0.000000000000000,2 -4758,4771,4773,4786,0.200000000000000,-0.492857142857421,0.206896551724127,-0.500000000000293,0.206896551724127,-0.485714285714549,0.213793103448254,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285744,-0.000000000000000,2 -4759,4772,4774,4787,0.200000000000000,-0.478571428571672,0.206896551724127,-0.485714285714549,0.206896551724127,-0.471428571428794,0.213793103448254,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285755,0.000000000000000,2 -4760,4773,4775,4788,0.200000000000000,-0.464285714285914,0.206896551724127,-0.471428571428794,0.206896551724127,-0.457142857143034,0.213793103448254,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 -4761,4774,4776,4789,0.200000000000000,-0.450000000000152,0.206896551724127,-0.457142857143034,0.206896551724127,-0.442857142857270,0.213793103448254,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285764,0.000000000000000,2 -4762,4775,4777,4790,0.200000000000000,-0.435714285714389,0.206896551724127,-0.442857142857270,0.206896551724127,-0.428571428571509,0.213793103448254,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 -4763,4776,4778,4791,0.200000000000000,-0.421428571428633,0.206896551724127,-0.428571428571509,0.206896551724127,-0.414285714285756,0.213793103448254,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285753,0.000000000000000,2 -4764,4777,4792,5171,0.200000000000000,-0.407142857142878,0.206896551724127,-0.414285714285756,0.213793103448254,-0.407142857142878,0.206896551724127,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448254,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448254,2 -755,4765,4780,4793,0.220689655172375,-0.600000000000000,0.213793103448254,-0.592857142857127,0.220689655172375,-0.585714285714255,0.227586206896496,-0.592857142857127,-0.000000000000000,-0.013793103448243,-0.014285714285745,0.000000000000000,-0.000000000000000,0.013793103448243,0.014285714285745,0.000000000000000,2 -4766,4779,4781,4794,0.213793103448254,-0.578571428571396,0.220689655172375,-0.585714285714255,0.220689655172375,-0.571428571428537,0.227586206896496,-0.578571428571396,-0.014285714285717,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285717,0.000000000000000,2 -4767,4780,4782,4795,0.213793103448254,-0.564285714285699,0.220689655172375,-0.571428571428537,0.220689655172375,-0.557142857142860,0.227586206896496,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285677,0.000000000000000,2 -4768,4781,4783,4796,0.213793103448254,-0.550000000000022,0.220689655172375,-0.557142857142860,0.220689655172375,-0.542857142857183,0.227586206896496,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285677,0.000000000000000,2 -4769,4782,4784,4797,0.213793103448254,-0.535714285714345,0.220689655172375,-0.542857142857183,0.220689655172375,-0.528571428571506,0.227586206896496,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285677,-0.000000000000000,2 -4770,4783,4785,4798,0.213793103448254,-0.521428571428709,0.220689655172375,-0.528571428571506,0.220689655172375,-0.514285714285913,0.227586206896496,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285594,0.000000000000000,2 -4771,4784,4786,4799,0.213793103448254,-0.507142857143103,0.220689655172375,-0.514285714285913,0.220689655172375,-0.500000000000293,0.227586206896496,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285620,0.000000000000000,2 -4772,4785,4787,4800,0.213793103448254,-0.492857142857421,0.220689655172375,-0.500000000000293,0.220689655172375,-0.485714285714549,0.227586206896496,-0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.014285714285744,0.000000000000000,2 -4773,4786,4788,4801,0.213793103448254,-0.478571428571672,0.220689655172375,-0.485714285714549,0.220689655172375,-0.471428571428794,0.227586206896496,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.014285714285755,0.000000000000000,2 -4774,4787,4789,4802,0.213793103448254,-0.464285714285914,0.220689655172375,-0.471428571428794,0.220689655172375,-0.457142857143034,0.227586206896496,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.014285714285761,0.000000000000000,2 -4775,4788,4790,4803,0.213793103448254,-0.450000000000152,0.220689655172375,-0.457142857143034,0.220689655172375,-0.442857142857270,0.227586206896496,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285764,0.000000000000000,2 -4776,4789,4791,4804,0.213793103448254,-0.435714285714389,0.220689655172375,-0.442857142857270,0.220689655172375,-0.428571428571509,0.227586206896496,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285761,0.000000000000000,2 -4777,4790,4792,4805,0.213793103448254,-0.421428571428633,0.220689655172375,-0.428571428571509,0.220689655172375,-0.414285714285756,0.227586206896496,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285753,0.000000000000000,2 -4778,4791,4806,5230,0.213793103448254,-0.407142857142878,0.220689655172375,-0.414285714285756,0.227586206896496,-0.407142857142878,0.220689655172375,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448243,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448243,2 -761,4779,4794,4807,0.234482758620623,-0.600000000000000,0.227586206896496,-0.592857142857127,0.234482758620623,-0.585714285714255,0.241379310344750,-0.592857142857127,-0.000000000000000,-0.013793103448254,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448254,0.014285714285745,0.000000000000000,2 -4780,4793,4795,4808,0.227586206896496,-0.578571428571396,0.234482758620623,-0.585714285714255,0.234482758620623,-0.571428571428537,0.241379310344750,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285718,0.000000000000000,2 -4781,4794,4796,4809,0.227586206896496,-0.564285714285699,0.234482758620623,-0.571428571428537,0.234482758620623,-0.557142857142860,0.241379310344750,-0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 -4782,4795,4797,4810,0.227586206896496,-0.550000000000022,0.234482758620623,-0.557142857142860,0.234482758620623,-0.542857142857183,0.241379310344750,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 -4783,4796,4798,4811,0.227586206896496,-0.535714285714345,0.234482758620623,-0.542857142857183,0.234482758620623,-0.528571428571506,0.241379310344750,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448253,0.014285714285677,0.000000000000000,2 -4784,4797,4799,4812,0.227586206896496,-0.521428571428709,0.234482758620623,-0.528571428571506,0.234482758620623,-0.514285714285913,0.241379310344750,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448254,0.014285714285594,-0.000000000000000,2 -4785,4798,4800,4813,0.227586206896496,-0.507142857143103,0.234482758620623,-0.514285714285913,0.234482758620623,-0.500000000000293,0.241379310344750,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285620,0.000000000000000,2 -4786,4799,4801,4814,0.227586206896496,-0.492857142857421,0.234482758620623,-0.500000000000293,0.234482758620623,-0.485714285714549,0.241379310344750,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285744,0.000000000000000,2 -4787,4800,4802,4815,0.227586206896496,-0.478571428571672,0.234482758620623,-0.485714285714549,0.234482758620623,-0.471428571428794,0.241379310344750,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285755,0.000000000000000,2 -4788,4801,4803,4816,0.227586206896496,-0.464285714285914,0.234482758620623,-0.471428571428794,0.234482758620623,-0.457142857143033,0.241379310344750,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 -4789,4802,4804,4817,0.227586206896496,-0.450000000000152,0.234482758620623,-0.457142857143033,0.234482758620623,-0.442857142857270,0.241379310344750,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285764,0.000000000000000,2 -4790,4803,4805,4818,0.227586206896496,-0.435714285714389,0.234482758620623,-0.442857142857270,0.234482758620623,-0.428571428571509,0.241379310344750,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 -4791,4804,4806,4819,0.227586206896496,-0.421428571428633,0.234482758620623,-0.428571428571509,0.234482758620623,-0.414285714285756,0.241379310344750,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285753,0.000000000000000,2 -4792,4805,4820,5289,0.227586206896496,-0.407142857142878,0.234482758620623,-0.414285714285756,0.241379310344750,-0.407142857142878,0.234482758620623,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448254,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448254,2 -767,4793,4808,4821,0.248275862068872,-0.600000000000000,0.241379310344750,-0.592857142857127,0.248275862068872,-0.585714285714255,0.255172413792995,-0.592857142857127,-0.000000000000000,-0.013793103448245,-0.014285714285745,-0.000000000000000,-0.000000000000000,0.013793103448245,0.014285714285745,0.000000000000000,2 -4794,4807,4809,4822,0.241379310344750,-0.578571428571396,0.248275862068872,-0.585714285714255,0.248275862068872,-0.571428571428537,0.255172413792995,-0.578571428571396,-0.014285714285718,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285717,0.000000000000000,2 -4795,4808,4810,4823,0.241379310344750,-0.564285714285699,0.248275862068872,-0.571428571428537,0.248275862068872,-0.557142857142860,0.255172413792995,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.014285714285677,-0.000000000000000,2 -4796,4809,4811,4824,0.241379310344750,-0.550000000000022,0.248275862068872,-0.557142857142860,0.248275862068872,-0.542857142857183,0.255172413792995,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285677,0.000000000000000,2 -4797,4810,4812,4825,0.241379310344750,-0.535714285714345,0.248275862068872,-0.542857142857183,0.248275862068872,-0.528571428571506,0.255172413792995,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285677,-0.000000000000000,2 -4798,4811,4813,4826,0.241379310344750,-0.521428571428709,0.248275862068872,-0.528571428571506,0.248275862068872,-0.514285714285913,0.255172413792995,-0.521428571428709,-0.014285714285594,0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285594,0.000000000000000,2 -4799,4812,4814,4827,0.241379310344750,-0.507142857143103,0.248275862068872,-0.514285714285913,0.248275862068872,-0.500000000000293,0.255172413792995,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285620,0.000000000000000,2 -4800,4813,4815,4828,0.241379310344750,-0.492857142857421,0.248275862068872,-0.500000000000293,0.248275862068872,-0.485714285714549,0.255172413792995,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285744,0.000000000000000,2 -4801,4814,4816,4829,0.241379310344750,-0.478571428571672,0.248275862068872,-0.485714285714549,0.248275862068872,-0.471428571428794,0.255172413792995,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.014285714285755,0.000000000000000,2 -4802,4815,4817,4830,0.241379310344750,-0.464285714285914,0.248275862068872,-0.471428571428794,0.248275862068872,-0.457142857143034,0.255172413792995,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285761,0.000000000000000,2 -4803,4816,4818,4831,0.241379310344750,-0.450000000000152,0.248275862068872,-0.457142857143034,0.248275862068872,-0.442857142857270,0.255172413792995,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285764,0.000000000000000,2 -4804,4817,4819,4832,0.241379310344750,-0.435714285714389,0.248275862068872,-0.442857142857270,0.248275862068872,-0.428571428571509,0.255172413792995,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.014285714285761,0.000000000000000,2 -4805,4818,4820,4833,0.241379310344750,-0.421428571428633,0.248275862068872,-0.428571428571509,0.248275862068872,-0.414285714285756,0.255172413792995,-0.421428571428633,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285753,0.000000000000000,2 -4806,4819,4834,5348,0.241379310344750,-0.407142857142878,0.248275862068872,-0.414285714285756,0.255172413792995,-0.407142857142878,0.248275862068872,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448245,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448245,2 -773,4807,4822,4835,0.262068965517112,-0.600000000000000,0.255172413792995,-0.592857142857127,0.262068965517112,-0.585714285714255,0.268965517241230,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 -4808,4821,4823,4836,0.255172413792995,-0.578571428571396,0.262068965517112,-0.585714285714255,0.262068965517112,-0.571428571428537,0.268965517241230,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285718,0.000000000000000,2 -4809,4822,4824,4837,0.255172413792995,-0.564285714285699,0.262068965517112,-0.571428571428537,0.262068965517112,-0.557142857142860,0.268965517241230,-0.564285714285699,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4810,4823,4825,4838,0.255172413792995,-0.550000000000022,0.262068965517112,-0.557142857142860,0.262068965517112,-0.542857142857183,0.268965517241230,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4811,4824,4826,4839,0.255172413792995,-0.535714285714345,0.262068965517112,-0.542857142857183,0.262068965517112,-0.528571428571506,0.268965517241230,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4812,4825,4827,4840,0.255172413792995,-0.521428571428709,0.262068965517112,-0.528571428571506,0.262068965517112,-0.514285714285913,0.268965517241230,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285594,0.000000000000000,2 -4813,4826,4828,4841,0.255172413792995,-0.507142857143103,0.262068965517112,-0.514285714285913,0.262068965517112,-0.500000000000293,0.268965517241230,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -4814,4827,4829,4842,0.255172413792995,-0.492857142857421,0.262068965517112,-0.500000000000293,0.262068965517112,-0.485714285714549,0.268965517241230,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 -4815,4828,4830,4843,0.255172413792995,-0.478571428571672,0.262068965517112,-0.485714285714549,0.262068965517112,-0.471428571428794,0.268965517241230,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 -4816,4829,4831,4844,0.255172413792995,-0.464285714285914,0.262068965517112,-0.471428571428794,0.262068965517112,-0.457142857143034,0.268965517241230,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4817,4830,4832,4845,0.255172413792995,-0.450000000000152,0.262068965517112,-0.457142857143034,0.262068965517112,-0.442857142857270,0.268965517241230,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -4818,4831,4833,4846,0.255172413792995,-0.435714285714389,0.262068965517112,-0.442857142857270,0.262068965517112,-0.428571428571509,0.268965517241230,-0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4819,4832,4834,4847,0.255172413792995,-0.421428571428633,0.262068965517112,-0.428571428571509,0.262068965517112,-0.414285714285756,0.268965517241230,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -4820,4833,4848,5407,0.255172413792995,-0.407142857142878,0.262068965517112,-0.414285714285756,0.268965517241230,-0.407142857142878,0.262068965517112,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 -779,4821,4836,4849,0.275862068965347,-0.600000000000000,0.268965517241230,-0.592857142857127,0.275862068965347,-0.585714285714255,0.282758620689465,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 -4822,4835,4837,4850,0.268965517241230,-0.578571428571396,0.275862068965347,-0.585714285714255,0.275862068965347,-0.571428571428537,0.282758620689465,-0.578571428571396,-0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -4823,4836,4838,4851,0.268965517241230,-0.564285714285699,0.275862068965347,-0.571428571428537,0.275862068965347,-0.557142857142860,0.282758620689465,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4824,4837,4839,4852,0.268965517241230,-0.550000000000022,0.275862068965347,-0.557142857142860,0.275862068965347,-0.542857142857183,0.282758620689465,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4825,4838,4840,4853,0.268965517241230,-0.535714285714345,0.275862068965347,-0.542857142857183,0.275862068965347,-0.528571428571506,0.282758620689465,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4826,4839,4841,4854,0.268965517241230,-0.521428571428709,0.275862068965347,-0.528571428571506,0.275862068965347,-0.514285714285913,0.282758620689465,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285594,0.000000000000000,2 -4827,4840,4842,4855,0.268965517241230,-0.507142857143103,0.275862068965347,-0.514285714285913,0.275862068965347,-0.500000000000293,0.282758620689465,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -4828,4841,4843,4856,0.268965517241230,-0.492857142857421,0.275862068965347,-0.500000000000293,0.275862068965347,-0.485714285714549,0.282758620689465,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 -4829,4842,4844,4857,0.268965517241230,-0.478571428571672,0.275862068965347,-0.485714285714549,0.275862068965347,-0.471428571428794,0.282758620689465,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 -4830,4843,4845,4858,0.268965517241230,-0.464285714285914,0.275862068965347,-0.471428571428794,0.275862068965347,-0.457142857143033,0.282758620689465,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4831,4844,4846,4859,0.268965517241230,-0.450000000000152,0.275862068965347,-0.457142857143033,0.275862068965347,-0.442857142857270,0.282758620689465,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -4832,4845,4847,4860,0.268965517241230,-0.435714285714389,0.275862068965347,-0.442857142857270,0.275862068965347,-0.428571428571509,0.282758620689465,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4833,4846,4848,4861,0.268965517241230,-0.421428571428633,0.275862068965347,-0.428571428571509,0.275862068965347,-0.414285714285756,0.282758620689465,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -4834,4847,4862,5466,0.268965517241230,-0.407142857142878,0.275862068965347,-0.414285714285756,0.282758620689465,-0.407142857142878,0.275862068965347,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 -785,4835,4850,4863,0.289655172413583,-0.600000000000000,0.282758620689465,-0.592857142857127,0.289655172413583,-0.585714285714255,0.296551724137700,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 -4836,4849,4851,4864,0.282758620689465,-0.578571428571396,0.289655172413583,-0.585714285714255,0.289655172413583,-0.571428571428537,0.296551724137700,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -4837,4850,4852,4865,0.282758620689465,-0.564285714285699,0.289655172413583,-0.571428571428537,0.289655172413583,-0.557142857142860,0.296551724137700,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4838,4851,4853,4866,0.282758620689465,-0.550000000000022,0.289655172413583,-0.557142857142860,0.289655172413583,-0.542857142857183,0.296551724137700,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4839,4852,4854,4867,0.282758620689465,-0.535714285714345,0.289655172413583,-0.542857142857183,0.289655172413583,-0.528571428571506,0.296551724137700,-0.535714285714345,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4840,4853,4855,4868,0.282758620689465,-0.521428571428709,0.289655172413583,-0.528571428571506,0.289655172413583,-0.514285714285913,0.296551724137700,-0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 -4841,4854,4856,4869,0.282758620689465,-0.507142857143103,0.289655172413583,-0.514285714285913,0.289655172413583,-0.500000000000293,0.296551724137700,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -4842,4855,4857,4870,0.282758620689465,-0.492857142857421,0.289655172413583,-0.500000000000293,0.289655172413583,-0.485714285714549,0.296551724137700,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 -4843,4856,4858,4871,0.282758620689465,-0.478571428571672,0.289655172413583,-0.485714285714549,0.289655172413583,-0.471428571428794,0.296551724137700,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 -4844,4857,4859,4872,0.282758620689465,-0.464285714285914,0.289655172413583,-0.471428571428794,0.289655172413583,-0.457142857143033,0.296551724137700,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4845,4858,4860,4873,0.282758620689465,-0.450000000000152,0.289655172413583,-0.457142857143033,0.289655172413583,-0.442857142857270,0.296551724137700,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,-0.000000000000000,2 -4846,4859,4861,4874,0.282758620689465,-0.435714285714389,0.289655172413583,-0.442857142857270,0.289655172413583,-0.428571428571509,0.296551724137700,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4847,4860,4862,4875,0.282758620689465,-0.421428571428633,0.289655172413583,-0.428571428571509,0.289655172413583,-0.414285714285756,0.296551724137700,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,-0.000000000000000,2 -4848,4861,4876,5525,0.282758620689465,-0.407142857142878,0.289655172413583,-0.414285714285756,0.296551724137700,-0.407142857142878,0.289655172413583,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 -791,4849,4864,4877,0.303448275861818,-0.600000000000000,0.296551724137700,-0.592857142857127,0.303448275861818,-0.585714285714255,0.310344827585935,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 -4850,4863,4865,4878,0.296551724137700,-0.578571428571396,0.303448275861818,-0.585714285714255,0.303448275861818,-0.571428571428537,0.310344827585935,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -4851,4864,4866,4879,0.296551724137700,-0.564285714285699,0.303448275861818,-0.571428571428537,0.303448275861818,-0.557142857142860,0.310344827585935,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 -4852,4865,4867,4880,0.296551724137700,-0.550000000000022,0.303448275861818,-0.557142857142860,0.303448275861818,-0.542857142857183,0.310344827585935,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4853,4866,4868,4881,0.296551724137700,-0.535714285714345,0.303448275861818,-0.542857142857183,0.303448275861818,-0.528571428571506,0.310344827585935,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4854,4867,4869,4882,0.296551724137700,-0.521428571428709,0.303448275861818,-0.528571428571506,0.303448275861818,-0.514285714285913,0.310344827585935,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285594,0.000000000000000,2 -4855,4868,4870,4883,0.296551724137700,-0.507142857143103,0.303448275861818,-0.514285714285913,0.303448275861818,-0.500000000000293,0.310344827585935,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -4856,4869,4871,4884,0.296551724137700,-0.492857142857421,0.303448275861818,-0.500000000000293,0.303448275861818,-0.485714285714549,0.310344827585935,-0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 -4857,4870,4872,4885,0.296551724137700,-0.478571428571672,0.303448275861818,-0.485714285714549,0.303448275861818,-0.471428571428794,0.310344827585935,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 -4858,4871,4873,4886,0.296551724137700,-0.464285714285914,0.303448275861818,-0.471428571428794,0.303448275861818,-0.457142857143034,0.310344827585935,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 -4859,4872,4874,4887,0.296551724137700,-0.450000000000152,0.303448275861818,-0.457142857143034,0.303448275861818,-0.442857142857270,0.310344827585935,-0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -4860,4873,4875,4888,0.296551724137700,-0.435714285714389,0.303448275861818,-0.442857142857270,0.303448275861818,-0.428571428571509,0.310344827585935,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4861,4874,4876,4889,0.296551724137700,-0.421428571428633,0.303448275861818,-0.428571428571509,0.303448275861818,-0.414285714285756,0.310344827585935,-0.421428571428633,-0.014285714285753,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -4862,4875,4890,5584,0.296551724137700,-0.407142857142878,0.303448275861818,-0.414285714285756,0.310344827585935,-0.407142857142878,0.303448275861818,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 -797,4863,4878,4891,0.317241379310053,-0.600000000000000,0.310344827585935,-0.592857142857127,0.317241379310053,-0.585714285714255,0.324137931034170,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,-0.000000000000000,2 -4864,4877,4879,4892,0.310344827585935,-0.578571428571396,0.317241379310053,-0.585714285714255,0.317241379310053,-0.571428571428537,0.324137931034170,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -4865,4878,4880,4893,0.310344827585935,-0.564285714285699,0.317241379310053,-0.571428571428537,0.317241379310053,-0.557142857142860,0.324137931034170,-0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 -4866,4879,4881,4894,0.310344827585935,-0.550000000000022,0.317241379310053,-0.557142857142860,0.317241379310053,-0.542857142857183,0.324137931034170,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4867,4880,4882,4895,0.310344827585935,-0.535714285714345,0.317241379310053,-0.542857142857183,0.317241379310053,-0.528571428571506,0.324137931034170,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4868,4881,4883,4896,0.310344827585935,-0.521428571428709,0.317241379310053,-0.528571428571506,0.317241379310053,-0.514285714285913,0.324137931034170,-0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 -4869,4882,4884,4897,0.310344827585935,-0.507142857143103,0.317241379310053,-0.514285714285913,0.317241379310053,-0.500000000000293,0.324137931034170,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -4870,4883,4885,4898,0.310344827585935,-0.492857142857421,0.317241379310053,-0.500000000000293,0.317241379310053,-0.485714285714549,0.324137931034170,-0.492857142857421,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 -4871,4884,4886,4899,0.310344827585935,-0.478571428571672,0.317241379310053,-0.485714285714549,0.317241379310053,-0.471428571428794,0.324137931034170,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 -4872,4885,4887,4900,0.310344827585935,-0.464285714285914,0.317241379310053,-0.471428571428794,0.317241379310053,-0.457142857143034,0.324137931034170,-0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4873,4886,4888,4901,0.310344827585935,-0.450000000000152,0.317241379310053,-0.457142857143034,0.317241379310053,-0.442857142857270,0.324137931034170,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -4874,4887,4889,4902,0.310344827585935,-0.435714285714389,0.317241379310053,-0.442857142857270,0.317241379310053,-0.428571428571509,0.324137931034170,-0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4875,4888,4890,4903,0.310344827585935,-0.421428571428633,0.317241379310053,-0.428571428571509,0.317241379310053,-0.414285714285756,0.324137931034170,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -4876,4889,4904,5643,0.310344827585935,-0.407142857142878,0.317241379310053,-0.414285714285756,0.324137931034170,-0.407142857142878,0.317241379310053,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 -803,4877,4892,4905,0.331034482758288,-0.600000000000000,0.324137931034170,-0.592857142857127,0.331034482758288,-0.585714285714255,0.337931034482406,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 -4878,4891,4893,4906,0.324137931034170,-0.578571428571396,0.331034482758288,-0.585714285714255,0.331034482758288,-0.571428571428537,0.337931034482406,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285718,0.000000000000000,2 -4879,4892,4894,4907,0.324137931034170,-0.564285714285699,0.331034482758288,-0.571428571428537,0.331034482758288,-0.557142857142860,0.337931034482406,-0.564285714285699,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4880,4893,4895,4908,0.324137931034170,-0.550000000000022,0.331034482758288,-0.557142857142860,0.331034482758288,-0.542857142857183,0.337931034482406,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4881,4894,4896,4909,0.324137931034170,-0.535714285714345,0.331034482758288,-0.542857142857183,0.331034482758288,-0.528571428571506,0.337931034482406,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4882,4895,4897,4910,0.324137931034170,-0.521428571428709,0.331034482758288,-0.528571428571506,0.331034482758288,-0.514285714285913,0.337931034482406,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 -4883,4896,4898,4911,0.324137931034170,-0.507142857143103,0.331034482758288,-0.514285714285913,0.331034482758288,-0.500000000000293,0.337931034482406,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -4884,4897,4899,4912,0.324137931034170,-0.492857142857421,0.331034482758288,-0.500000000000293,0.331034482758288,-0.485714285714549,0.337931034482406,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 -4885,4898,4900,4913,0.324137931034170,-0.478571428571672,0.331034482758288,-0.485714285714549,0.331034482758288,-0.471428571428794,0.337931034482406,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 -4886,4899,4901,4914,0.324137931034170,-0.464285714285914,0.331034482758288,-0.471428571428794,0.331034482758288,-0.457142857143034,0.337931034482406,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4887,4900,4902,4915,0.324137931034170,-0.450000000000152,0.331034482758288,-0.457142857143034,0.331034482758288,-0.442857142857270,0.337931034482406,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -4888,4901,4903,4916,0.324137931034170,-0.435714285714389,0.331034482758288,-0.442857142857270,0.331034482758288,-0.428571428571509,0.337931034482406,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4889,4902,4904,4917,0.324137931034170,-0.421428571428633,0.331034482758288,-0.428571428571509,0.331034482758288,-0.414285714285756,0.337931034482406,-0.421428571428633,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -4890,4903,4918,5702,0.324137931034170,-0.407142857142878,0.331034482758288,-0.414285714285756,0.337931034482406,-0.407142857142878,0.331034482758288,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 -809,4891,4906,4919,0.344827586206523,-0.600000000000000,0.337931034482406,-0.592857142857127,0.344827586206523,-0.585714285714255,0.351724137930641,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 -4892,4905,4907,4920,0.337931034482406,-0.578571428571396,0.344827586206523,-0.585714285714255,0.344827586206523,-0.571428571428537,0.351724137930641,-0.578571428571396,-0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,-0.000000000000000,2 -4893,4906,4908,4921,0.337931034482406,-0.564285714285699,0.344827586206523,-0.571428571428537,0.344827586206523,-0.557142857142860,0.351724137930641,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4894,4907,4909,4922,0.337931034482406,-0.550000000000022,0.344827586206523,-0.557142857142860,0.344827586206523,-0.542857142857183,0.351724137930641,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4895,4908,4910,4923,0.337931034482406,-0.535714285714345,0.344827586206523,-0.542857142857183,0.344827586206523,-0.528571428571506,0.351724137930640,-0.535714285714345,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4896,4909,4911,4924,0.337931034482406,-0.521428571428709,0.344827586206523,-0.528571428571506,0.344827586206523,-0.514285714285913,0.351724137930640,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285594,-0.000000000000000,2 -4897,4910,4912,4925,0.337931034482406,-0.507142857143103,0.344827586206523,-0.514285714285913,0.344827586206523,-0.500000000000293,0.351724137930641,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -4898,4911,4913,4926,0.337931034482406,-0.492857142857421,0.344827586206523,-0.500000000000293,0.344827586206523,-0.485714285714549,0.351724137930641,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 -4899,4912,4914,4927,0.337931034482406,-0.478571428571672,0.344827586206523,-0.485714285714549,0.344827586206523,-0.471428571428794,0.351724137930641,-0.478571428571672,-0.014285714285754,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,-0.000000000000000,2 -4900,4913,4915,4928,0.337931034482406,-0.464285714285914,0.344827586206523,-0.471428571428794,0.344827586206523,-0.457142857143034,0.351724137930641,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4901,4914,4916,4929,0.337931034482406,-0.450000000000152,0.344827586206523,-0.457142857143034,0.344827586206523,-0.442857142857270,0.351724137930641,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -4902,4915,4917,4930,0.337931034482406,-0.435714285714389,0.344827586206523,-0.442857142857270,0.344827586206523,-0.428571428571509,0.351724137930641,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 -4903,4916,4918,4931,0.337931034482406,-0.421428571428633,0.344827586206523,-0.428571428571509,0.344827586206523,-0.414285714285756,0.351724137930641,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -4904,4917,4932,5761,0.337931034482406,-0.407142857142878,0.344827586206523,-0.414285714285756,0.351724137930641,-0.407142857142878,0.344827586206523,-0.400000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 -815,4905,4920,4933,0.358620689654758,-0.600000000000000,0.351724137930641,-0.592857142857127,0.358620689654758,-0.585714285714255,0.365517241378876,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 -4906,4919,4921,4934,0.351724137930641,-0.578571428571396,0.358620689654758,-0.585714285714255,0.358620689654758,-0.571428571428537,0.365517241378876,-0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,-0.000000000000000,2 -4907,4920,4922,4935,0.351724137930641,-0.564285714285699,0.358620689654758,-0.571428571428537,0.358620689654758,-0.557142857142860,0.365517241378876,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4908,4921,4923,4936,0.351724137930641,-0.550000000000022,0.358620689654758,-0.557142857142860,0.358620689654758,-0.542857142857183,0.365517241378876,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4909,4922,4924,4937,0.351724137930640,-0.535714285714345,0.358620689654758,-0.542857142857183,0.358620689654758,-0.528571428571506,0.365517241378876,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4910,4923,4925,4938,0.351724137930640,-0.521428571428709,0.358620689654758,-0.528571428571506,0.358620689654758,-0.514285714285913,0.365517241378876,-0.521428571428709,-0.014285714285594,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,-0.000000000000000,2 -4911,4924,4926,4939,0.351724137930641,-0.507142857143103,0.358620689654758,-0.514285714285913,0.358620689654758,-0.500000000000293,0.365517241378876,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -4912,4925,4927,4940,0.351724137930641,-0.492857142857421,0.358620689654758,-0.500000000000293,0.358620689654758,-0.485714285714549,0.365517241378876,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 -4913,4926,4928,4941,0.351724137930641,-0.478571428571672,0.358620689654758,-0.485714285714549,0.358620689654758,-0.471428571428794,0.365517241378876,-0.478571428571672,-0.014285714285754,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 -4914,4927,4929,4942,0.351724137930641,-0.464285714285914,0.358620689654758,-0.471428571428794,0.358620689654758,-0.457142857143034,0.365517241378876,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4915,4928,4930,4943,0.351724137930641,-0.450000000000152,0.358620689654758,-0.457142857143034,0.358620689654758,-0.442857142857270,0.365517241378876,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -4916,4929,4931,4944,0.351724137930641,-0.435714285714389,0.358620689654758,-0.442857142857270,0.358620689654758,-0.428571428571509,0.365517241378876,-0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4917,4930,4932,4945,0.351724137930641,-0.421428571428633,0.358620689654758,-0.428571428571509,0.358620689654758,-0.414285714285756,0.365517241378876,-0.421428571428633,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,-0.000000000000000,2 -4918,4931,4946,5820,0.351724137930641,-0.407142857142878,0.358620689654758,-0.414285714285756,0.365517241378876,-0.407142857142878,0.358620689654758,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448235,2 -821,4919,4934,4947,0.372413793102993,-0.600000000000000,0.365517241378876,-0.592857142857127,0.372413793102993,-0.585714285714255,0.379310344827111,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 -4920,4933,4935,4948,0.365517241378876,-0.578571428571396,0.372413793102993,-0.585714285714255,0.372413793102993,-0.571428571428537,0.379310344827111,-0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285718,0.000000000000000,2 -4921,4934,4936,4949,0.365517241378876,-0.564285714285699,0.372413793102993,-0.571428571428537,0.372413793102993,-0.557142857142860,0.379310344827111,-0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4922,4935,4937,4950,0.365517241378876,-0.550000000000022,0.372413793102993,-0.557142857142860,0.372413793102993,-0.542857142857183,0.379310344827111,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 -4923,4936,4938,4951,0.365517241378876,-0.535714285714345,0.372413793102993,-0.542857142857183,0.372413793102993,-0.528571428571506,0.379310344827111,-0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4924,4937,4939,4952,0.365517241378876,-0.521428571428709,0.372413793102993,-0.528571428571506,0.372413793102993,-0.514285714285913,0.379310344827111,-0.521428571428709,-0.014285714285593,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 -4925,4938,4940,4953,0.365517241378876,-0.507142857143103,0.372413793102993,-0.514285714285913,0.372413793102993,-0.500000000000293,0.379310344827111,-0.507142857143103,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -4926,4939,4941,4954,0.365517241378876,-0.492857142857421,0.372413793102993,-0.500000000000293,0.372413793102993,-0.485714285714549,0.379310344827111,-0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 -4927,4940,4942,4955,0.365517241378876,-0.478571428571672,0.372413793102993,-0.485714285714549,0.372413793102993,-0.471428571428794,0.379310344827111,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 -4928,4941,4943,4956,0.365517241378876,-0.464285714285914,0.372413793102993,-0.471428571428794,0.372413793102993,-0.457142857143034,0.379310344827111,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4929,4942,4944,4957,0.365517241378876,-0.450000000000152,0.372413793102993,-0.457142857143034,0.372413793102993,-0.442857142857270,0.379310344827111,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -4930,4943,4945,4958,0.365517241378876,-0.435714285714389,0.372413793102993,-0.442857142857270,0.372413793102993,-0.428571428571509,0.379310344827111,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4931,4944,4946,4959,0.365517241378876,-0.421428571428633,0.372413793102993,-0.428571428571509,0.372413793102993,-0.414285714285756,0.379310344827111,-0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -4932,4945,4960,5879,0.365517241378876,-0.407142857142878,0.372413793102993,-0.414285714285756,0.379310344827111,-0.407142857142878,0.372413793102993,-0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 -827,4933,4948,4961,0.386206896551228,-0.600000000000000,0.379310344827111,-0.592857142857127,0.386206896551228,-0.585714285714255,0.393103448275346,-0.592857142857127,-0.000000000000000,-0.013793103448235,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285745,0.000000000000000,2 -4934,4947,4949,4962,0.379310344827111,-0.578571428571396,0.386206896551228,-0.585714285714255,0.386206896551228,-0.571428571428537,0.393103448275346,-0.578571428571396,-0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -4935,4948,4950,4963,0.379310344827111,-0.564285714285699,0.386206896551228,-0.571428571428537,0.386206896551228,-0.557142857142860,0.393103448275346,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4936,4949,4951,4964,0.379310344827111,-0.550000000000022,0.386206896551228,-0.557142857142860,0.386206896551228,-0.542857142857183,0.393103448275346,-0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4937,4950,4952,4965,0.379310344827111,-0.535714285714344,0.386206896551228,-0.542857142857183,0.386206896551228,-0.528571428571506,0.393103448275346,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -4938,4951,4953,4966,0.379310344827111,-0.521428571428709,0.386206896551228,-0.528571428571506,0.386206896551228,-0.514285714285913,0.393103448275346,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,-0.000000000000000,2 -4939,4952,4954,4967,0.379310344827111,-0.507142857143103,0.386206896551228,-0.514285714285913,0.386206896551228,-0.500000000000293,0.393103448275346,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -4940,4953,4955,4968,0.379310344827111,-0.492857142857421,0.386206896551228,-0.500000000000293,0.386206896551228,-0.485714285714549,0.393103448275346,-0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 -4941,4954,4956,4969,0.379310344827111,-0.478571428571672,0.386206896551228,-0.485714285714549,0.386206896551228,-0.471428571428794,0.393103448275346,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 -4942,4955,4957,4970,0.379310344827111,-0.464285714285914,0.386206896551228,-0.471428571428794,0.386206896551228,-0.457142857143034,0.393103448275346,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4943,4956,4958,4971,0.379310344827111,-0.450000000000152,0.386206896551228,-0.457142857143034,0.386206896551228,-0.442857142857270,0.393103448275346,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -4944,4957,4959,4972,0.379310344827111,-0.435714285714389,0.386206896551228,-0.442857142857270,0.386206896551228,-0.428571428571509,0.393103448275346,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -4945,4958,4960,4973,0.379310344827111,-0.421428571428633,0.386206896551228,-0.428571428571509,0.386206896551228,-0.414285714285756,0.393103448275346,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -4946,4959,4974,5938,0.379310344827111,-0.407142857142878,0.386206896551228,-0.414285714285756,0.393103448275346,-0.407142857142878,0.386206896551228,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,2 -833,4947,4962,4975,0.399999999999487,-0.600000000000000,0.393103448275346,-0.592857142857127,0.399999999999487,-0.585714285714255,0.406896551723629,-0.592857142857127,-0.000000000000000,-0.013793103448283,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448283,0.014285714285745,0.000000000000000,2 -4948,4961,4963,4976,0.393103448275346,-0.578571428571396,0.399999999999487,-0.585714285714255,0.399999999999487,-0.571428571428537,0.406896551723629,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285717,0.000000000000000,2 -4949,4962,4964,4977,0.393103448275346,-0.564285714285699,0.399999999999487,-0.571428571428537,0.399999999999487,-0.557142857142860,0.406896551723629,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285677,-0.000000000000000,2 -4950,4963,4965,4978,0.393103448275346,-0.550000000000022,0.399999999999487,-0.557142857142860,0.399999999999487,-0.542857142857183,0.406896551723629,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285677,0.000000000000000,2 -4951,4964,4966,4979,0.393103448275346,-0.535714285714345,0.399999999999487,-0.542857142857183,0.399999999999487,-0.528571428571506,0.406896551723629,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285677,0.000000000000000,2 -4952,4965,4967,4980,0.393103448275346,-0.521428571428709,0.399999999999487,-0.528571428571506,0.399999999999487,-0.514285714285913,0.406896551723629,-0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285593,0.000000000000000,2 -4953,4966,4968,4981,0.393103448275346,-0.507142857143103,0.399999999999487,-0.514285714285913,0.399999999999487,-0.500000000000293,0.406896551723629,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285620,0.000000000000000,2 -4954,4967,4969,4982,0.393103448275346,-0.492857142857421,0.399999999999487,-0.500000000000293,0.399999999999487,-0.485714285714549,0.406896551723629,-0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285744,0.000000000000000,2 -4955,4968,4970,4983,0.393103448275346,-0.478571428571672,0.399999999999487,-0.485714285714549,0.399999999999487,-0.471428571428794,0.406896551723629,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285755,0.000000000000000,2 -4956,4969,4971,4984,0.393103448275346,-0.464285714285914,0.399999999999487,-0.471428571428794,0.399999999999487,-0.457142857143033,0.406896551723629,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285761,0.000000000000000,2 -4957,4970,4972,4985,0.393103448275346,-0.450000000000152,0.399999999999487,-0.457142857143033,0.399999999999487,-0.442857142857270,0.406896551723629,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285764,0.000000000000000,2 -4958,4971,4973,4986,0.393103448275346,-0.435714285714389,0.399999999999487,-0.442857142857270,0.399999999999487,-0.428571428571509,0.406896551723629,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285761,0.000000000000000,2 -4959,4972,4974,4987,0.393103448275346,-0.421428571428633,0.399999999999487,-0.428571428571509,0.399999999999487,-0.414285714285756,0.406896551723629,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285753,0.000000000000000,2 -4960,4973,4988,5997,0.393103448275346,-0.407142857142878,0.399999999999487,-0.414285714285756,0.406896551723629,-0.407142857142878,0.399999999999487,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448283,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448283,2 -839,4961,4976,4989,0.413793103447786,-0.600000000000000,0.406896551723629,-0.592857142857127,0.413793103447786,-0.585714285714255,0.420689655171942,-0.592857142857127,-0.000000000000000,-0.013793103448313,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448313,0.014285714285745,0.000000000000000,2 -4962,4975,4977,4990,0.406896551723629,-0.578571428571396,0.413793103447786,-0.585714285714255,0.413793103447786,-0.571428571428537,0.420689655171942,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285717,0.000000000000000,2 -4963,4976,4978,4991,0.406896551723629,-0.564285714285699,0.413793103447786,-0.571428571428537,0.413793103447786,-0.557142857142860,0.420689655171942,-0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 -4964,4977,4979,4992,0.406896551723629,-0.550000000000022,0.413793103447786,-0.557142857142860,0.413793103447786,-0.542857142857183,0.420689655171942,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 -4965,4978,4980,4993,0.406896551723629,-0.535714285714345,0.413793103447786,-0.542857142857183,0.413793103447786,-0.528571428571506,0.420689655171942,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 -4966,4979,4981,4994,0.406896551723629,-0.521428571428709,0.413793103447786,-0.528571428571506,0.413793103447786,-0.514285714285913,0.420689655171942,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285593,-0.000000000000000,2 -4967,4980,4982,4995,0.406896551723629,-0.507142857143103,0.413793103447786,-0.514285714285913,0.413793103447786,-0.500000000000293,0.420689655171942,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285620,-0.000000000000000,2 -4968,4981,4983,4996,0.406896551723629,-0.492857142857421,0.413793103447786,-0.500000000000293,0.413793103447786,-0.485714285714549,0.420689655171942,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285744,0.000000000000000,2 -4969,4982,4984,4997,0.406896551723629,-0.478571428571672,0.413793103447786,-0.485714285714549,0.413793103447786,-0.471428571428794,0.420689655171942,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285755,0.000000000000000,2 -4970,4983,4985,4998,0.406896551723629,-0.464285714285914,0.413793103447786,-0.471428571428794,0.413793103447786,-0.457142857143033,0.420689655171942,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 -4971,4984,4986,4999,0.406896551723629,-0.450000000000152,0.413793103447786,-0.457142857143033,0.413793103447786,-0.442857142857270,0.420689655171942,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285764,0.000000000000000,2 -4972,4985,4987,5000,0.406896551723629,-0.435714285714389,0.413793103447786,-0.442857142857270,0.413793103447786,-0.428571428571509,0.420689655171942,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 -4973,4986,4988,5001,0.406896551723629,-0.421428571428633,0.413793103447786,-0.428571428571509,0.413793103447786,-0.414285714285756,0.420689655171942,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285753,-0.000000000000000,2 -4974,4987,5002,6056,0.406896551723629,-0.407142857142878,0.413793103447786,-0.414285714285756,0.420689655171942,-0.407142857142878,0.413793103447786,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448313,0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448313,2 -845,4975,4990,5003,0.427586206896100,-0.600000000000000,0.420689655171942,-0.592857142857127,0.427586206896100,-0.585714285714255,0.434482758620257,-0.592857142857127,-0.000000000000000,-0.013793103448315,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448315,0.014285714285745,0.000000000000000,2 -4976,4989,4991,5004,0.420689655171942,-0.578571428571396,0.427586206896100,-0.585714285714255,0.427586206896100,-0.571428571428537,0.434482758620257,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285717,0.000000000000000,2 -4977,4990,4992,5005,0.420689655171942,-0.564285714285699,0.427586206896100,-0.571428571428537,0.427586206896100,-0.557142857142860,0.434482758620258,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448316,0.014285714285677,-0.000000000000000,2 -4978,4991,4993,5006,0.420689655171942,-0.550000000000022,0.427586206896100,-0.557142857142860,0.427586206896100,-0.542857142857183,0.434482758620258,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448316,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 -4979,4992,4994,5007,0.420689655171942,-0.535714285714345,0.427586206896100,-0.542857142857183,0.427586206896100,-0.528571428571506,0.434482758620257,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 -4980,4993,4995,5008,0.420689655171942,-0.521428571428709,0.427586206896100,-0.528571428571506,0.427586206896100,-0.514285714285913,0.434482758620257,-0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285593,0.000000000000000,2 -4981,4994,4996,5009,0.420689655171942,-0.507142857143103,0.427586206896100,-0.514285714285913,0.427586206896100,-0.500000000000293,0.434482758620258,-0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285620,-0.000000000000000,2 -4982,4995,4997,5010,0.420689655171942,-0.492857142857421,0.427586206896100,-0.500000000000293,0.427586206896100,-0.485714285714549,0.434482758620258,-0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285744,0.000000000000000,2 -4983,4996,4998,5011,0.420689655171942,-0.478571428571672,0.427586206896100,-0.485714285714549,0.427586206896100,-0.471428571428794,0.434482758620257,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285754,0.000000000000000,2 -4984,4997,4999,5012,0.420689655171942,-0.464285714285914,0.427586206896100,-0.471428571428794,0.427586206896100,-0.457142857143033,0.434482758620257,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285761,0.000000000000000,2 -4985,4998,5000,5013,0.420689655171942,-0.450000000000152,0.427586206896100,-0.457142857143033,0.427586206896100,-0.442857142857270,0.434482758620258,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285764,-0.000000000000000,2 -4986,4999,5001,5014,0.420689655171942,-0.435714285714389,0.427586206896100,-0.442857142857270,0.427586206896100,-0.428571428571509,0.434482758620258,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285761,0.000000000000000,2 -4987,5000,5002,5015,0.420689655171942,-0.421428571428633,0.427586206896100,-0.428571428571509,0.427586206896100,-0.414285714285756,0.434482758620257,-0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285753,0.000000000000000,2 -4988,5001,5016,6115,0.420689655171942,-0.407142857142878,0.427586206896100,-0.414285714285756,0.434482758620257,-0.407142857142878,0.427586206896100,-0.400000000000000,-0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448315,2 -851,4989,5004,5017,0.441379310344412,-0.600000000000000,0.434482758620257,-0.592857142857127,0.441379310344412,-0.585714285714255,0.448275862068567,-0.592857142857127,-0.000000000000000,-0.013793103448310,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448310,0.014285714285745,0.000000000000000,2 -4990,5003,5005,5018,0.434482758620257,-0.578571428571396,0.441379310344412,-0.585714285714255,0.441379310344412,-0.571428571428537,0.448275862068567,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448309,0.014285714285718,0.000000000000000,2 -4991,5004,5006,5019,0.434482758620258,-0.564285714285699,0.441379310344412,-0.571428571428537,0.441379310344412,-0.557142857142860,0.448275862068567,-0.564285714285699,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285677,-0.000000000000000,2 -4992,5005,5007,5020,0.434482758620258,-0.550000000000022,0.441379310344412,-0.557142857142860,0.441379310344412,-0.542857142857183,0.448275862068567,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448310,0.014285714285677,-0.000000000000000,2 -4993,5006,5008,5021,0.434482758620257,-0.535714285714345,0.441379310344412,-0.542857142857183,0.441379310344412,-0.528571428571506,0.448275862068567,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285677,0.000000000000000,2 -4994,5007,5009,5022,0.434482758620257,-0.521428571428709,0.441379310344412,-0.528571428571506,0.441379310344412,-0.514285714285913,0.448275862068567,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285594,0.000000000000000,2 -4995,5008,5010,5023,0.434482758620258,-0.507142857143103,0.441379310344412,-0.514285714285913,0.441379310344412,-0.500000000000293,0.448275862068567,-0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285620,-0.000000000000000,2 -4996,5009,5011,5024,0.434482758620258,-0.492857142857421,0.441379310344412,-0.500000000000293,0.441379310344412,-0.485714285714549,0.448275862068567,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285744,0.000000000000000,2 -4997,5010,5012,5025,0.434482758620257,-0.478571428571672,0.441379310344412,-0.485714285714549,0.441379310344412,-0.471428571428794,0.448275862068567,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.014285714285754,0.000000000000000,2 -4998,5011,5013,5026,0.434482758620257,-0.464285714285914,0.441379310344412,-0.471428571428794,0.441379310344412,-0.457142857143034,0.448275862068567,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285761,0.000000000000000,2 -4999,5012,5014,5027,0.434482758620258,-0.450000000000152,0.441379310344412,-0.457142857143034,0.441379310344412,-0.442857142857270,0.448275862068567,-0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 -5000,5013,5015,5028,0.434482758620258,-0.435714285714389,0.441379310344412,-0.442857142857270,0.441379310344412,-0.428571428571509,0.448275862068567,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448310,0.014285714285761,-0.000000000000000,2 -5001,5014,5016,5029,0.434482758620257,-0.421428571428633,0.441379310344412,-0.428571428571509,0.441379310344412,-0.414285714285756,0.448275862068567,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285753,0.000000000000000,2 -5002,5015,5030,6174,0.434482758620257,-0.407142857142878,0.441379310344412,-0.414285714285756,0.448275862068567,-0.407142857142878,0.441379310344412,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448310,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448310,2 -857,5003,5018,5031,0.455172413792722,-0.600000000000000,0.448275862068567,-0.592857142857127,0.455172413792722,-0.585714285714255,0.462068965516876,-0.592857142857127,-0.000000000000000,-0.013793103448309,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285745,0.000000000000000,2 -5004,5017,5019,5032,0.448275862068567,-0.578571428571396,0.455172413792722,-0.585714285714255,0.455172413792722,-0.571428571428537,0.462068965516876,-0.578571428571396,-0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 -5005,5018,5020,5033,0.448275862068567,-0.564285714285699,0.455172413792722,-0.571428571428537,0.455172413792722,-0.557142857142860,0.462068965516876,-0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -5006,5019,5021,5034,0.448275862068567,-0.550000000000022,0.455172413792722,-0.557142857142860,0.455172413792722,-0.542857142857183,0.462068965516876,-0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -5007,5020,5022,5035,0.448275862068567,-0.535714285714345,0.455172413792722,-0.542857142857183,0.455172413792722,-0.528571428571506,0.462068965516876,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,-0.000000000000000,2 -5008,5021,5023,5036,0.448275862068567,-0.521428571428709,0.455172413792722,-0.528571428571506,0.455172413792722,-0.514285714285913,0.462068965516876,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285594,0.000000000000000,2 -5009,5022,5024,5037,0.448275862068567,-0.507142857143103,0.455172413792722,-0.514285714285913,0.455172413792722,-0.500000000000293,0.462068965516876,-0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285620,0.000000000000000,2 -5010,5023,5025,5038,0.448275862068567,-0.492857142857421,0.455172413792722,-0.500000000000293,0.455172413792722,-0.485714285714549,0.462068965516876,-0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285744,0.000000000000000,2 -5011,5024,5026,5039,0.448275862068567,-0.478571428571672,0.455172413792722,-0.485714285714549,0.455172413792722,-0.471428571428794,0.462068965516876,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285755,0.000000000000000,2 -5012,5025,5027,5040,0.448275862068567,-0.464285714285914,0.455172413792722,-0.471428571428794,0.455172413792722,-0.457142857143034,0.462068965516876,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -5013,5026,5028,5041,0.448275862068567,-0.450000000000152,0.455172413792722,-0.457142857143034,0.455172413792722,-0.442857142857270,0.462068965516876,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 -5014,5027,5029,5042,0.448275862068567,-0.435714285714389,0.455172413792722,-0.442857142857270,0.455172413792722,-0.428571428571509,0.462068965516876,-0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -5015,5028,5030,5043,0.448275862068567,-0.421428571428633,0.455172413792722,-0.428571428571509,0.455172413792722,-0.414285714285756,0.462068965516876,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285753,-0.000000000000000,2 -5016,5029,5044,6233,0.448275862068567,-0.407142857142878,0.455172413792722,-0.414285714285756,0.462068965516876,-0.407142857142878,0.455172413792722,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,2 -863,5017,5032,5045,0.468965517241031,-0.600000000000000,0.462068965516876,-0.592857142857127,0.468965517241031,-0.585714285714255,0.475862068965185,-0.592857142857127,-0.000000000000000,-0.013793103448309,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285745,0.000000000000000,2 -5018,5031,5033,5046,0.462068965516876,-0.578571428571396,0.468965517241031,-0.585714285714255,0.468965517241031,-0.571428571428537,0.475862068965185,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 -5019,5032,5034,5047,0.462068965516876,-0.564285714285699,0.468965517241031,-0.571428571428537,0.468965517241031,-0.557142857142860,0.475862068965185,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -5020,5033,5035,5048,0.462068965516876,-0.550000000000022,0.468965517241031,-0.557142857142860,0.468965517241031,-0.542857142857183,0.475862068965185,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -5021,5034,5036,5049,0.462068965516876,-0.535714285714345,0.468965517241031,-0.542857142857183,0.468965517241031,-0.528571428571506,0.475862068965185,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,-0.000000000000000,2 -5022,5035,5037,5050,0.462068965516876,-0.521428571428709,0.468965517241031,-0.528571428571506,0.468965517241031,-0.514285714285913,0.475862068965185,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285594,0.000000000000000,2 -5023,5036,5038,5051,0.462068965516876,-0.507142857143103,0.468965517241031,-0.514285714285913,0.468965517241031,-0.500000000000293,0.475862068965185,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285620,0.000000000000000,2 -5024,5037,5039,5052,0.462068965516876,-0.492857142857421,0.468965517241031,-0.500000000000293,0.468965517241031,-0.485714285714549,0.475862068965185,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285744,0.000000000000000,2 -5025,5038,5040,5053,0.462068965516876,-0.478571428571672,0.468965517241031,-0.485714285714549,0.468965517241031,-0.471428571428794,0.475862068965185,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285755,0.000000000000000,2 -5026,5039,5041,5054,0.462068965516876,-0.464285714285914,0.468965517241031,-0.471428571428794,0.468965517241031,-0.457142857143034,0.475862068965185,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -5027,5040,5042,5055,0.462068965516876,-0.450000000000152,0.468965517241031,-0.457142857143034,0.468965517241031,-0.442857142857270,0.475862068965185,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 -5028,5041,5043,5056,0.462068965516876,-0.435714285714389,0.468965517241031,-0.442857142857270,0.468965517241031,-0.428571428571509,0.475862068965185,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -5029,5042,5044,5057,0.462068965516876,-0.421428571428633,0.468965517241031,-0.428571428571509,0.468965517241031,-0.414285714285756,0.475862068965185,-0.421428571428633,-0.014285714285753,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285753,-0.000000000000000,2 -5030,5043,5058,6292,0.462068965516876,-0.407142857142878,0.468965517241031,-0.414285714285756,0.475862068965185,-0.407142857142878,0.468965517241031,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,2 -869,5031,5046,5059,0.482758620689341,-0.600000000000000,0.475862068965185,-0.592857142857127,0.482758620689341,-0.585714285714255,0.489655172413498,-0.592857142857127,-0.000000000000000,-0.013793103448313,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448313,0.014285714285745,-0.000000000000000,2 -5032,5045,5047,5060,0.475862068965185,-0.578571428571396,0.482758620689341,-0.585714285714255,0.482758620689341,-0.571428571428537,0.489655172413498,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285717,0.000000000000000,2 -5033,5046,5048,5061,0.475862068965185,-0.564285714285699,0.482758620689341,-0.571428571428537,0.482758620689341,-0.557142857142860,0.489655172413498,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 -5034,5047,5049,5062,0.475862068965185,-0.550000000000022,0.482758620689341,-0.557142857142860,0.482758620689341,-0.542857142857183,0.489655172413498,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,-0.000000000000000,2 -5035,5048,5050,5063,0.475862068965185,-0.535714285714345,0.482758620689341,-0.542857142857183,0.482758620689342,-0.528571428571506,0.489655172413498,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 -5036,5049,5051,5064,0.475862068965185,-0.521428571428709,0.482758620689342,-0.528571428571506,0.482758620689341,-0.514285714285913,0.489655172413498,-0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285593,0.000000000000000,2 -5037,5050,5052,5065,0.475862068965185,-0.507142857143103,0.482758620689341,-0.514285714285913,0.482758620689341,-0.500000000000293,0.489655172413498,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285620,0.000000000000000,2 -5038,5051,5053,5066,0.475862068965185,-0.492857142857421,0.482758620689341,-0.500000000000293,0.482758620689341,-0.485714285714549,0.489655172413498,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.014285714285744,0.000000000000000,2 -5039,5052,5054,5067,0.475862068965185,-0.478571428571672,0.482758620689341,-0.485714285714549,0.482758620689341,-0.471428571428794,0.489655172413498,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285754,0.000000000000000,2 -5040,5053,5055,5068,0.475862068965185,-0.464285714285914,0.482758620689341,-0.471428571428794,0.482758620689341,-0.457142857143034,0.489655172413498,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 -5041,5054,5056,5069,0.475862068965185,-0.450000000000152,0.482758620689341,-0.457142857143034,0.482758620689341,-0.442857142857270,0.489655172413498,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285764,-0.000000000000000,2 -5042,5055,5057,5070,0.475862068965185,-0.435714285714389,0.482758620689341,-0.442857142857270,0.482758620689341,-0.428571428571509,0.489655172413498,-0.435714285714390,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 -5043,5056,5058,5071,0.475862068965185,-0.421428571428633,0.482758620689341,-0.428571428571509,0.482758620689341,-0.414285714285756,0.489655172413498,-0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285753,-0.000000000000000,2 -5044,5057,5072,6351,0.475862068965185,-0.407142857142878,0.482758620689341,-0.414285714285756,0.489655172413498,-0.407142857142878,0.482758620689341,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448313,0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448313,2 -875,5045,5060,5073,0.496551724137666,-0.600000000000000,0.489655172413498,-0.592857142857127,0.496551724137666,-0.585714285714255,0.503448275861834,-0.592857142857127,-0.000000000000000,-0.013793103448336,-0.014285714285745,0.000000000000000,0.000000000000000,0.013793103448336,0.014285714285745,-0.000000000000000,2 -5046,5059,5061,5074,0.489655172413498,-0.578571428571396,0.496551724137666,-0.585714285714255,0.496551724137666,-0.571428571428537,0.503448275861834,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285717,0.000000000000000,2 -5047,5060,5062,5075,0.489655172413498,-0.564285714285699,0.496551724137666,-0.571428571428537,0.496551724137666,-0.557142857142860,0.503448275861834,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285677,-0.000000000000000,2 -5048,5061,5063,5076,0.489655172413498,-0.550000000000022,0.496551724137666,-0.557142857142860,0.496551724137666,-0.542857142857183,0.503448275861834,-0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.014285714285677,0.000000000000000,2 -5049,5062,5064,5077,0.489655172413498,-0.535714285714345,0.496551724137666,-0.542857142857183,0.496551724137666,-0.528571428571506,0.503448275861834,-0.535714285714345,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285677,0.000000000000000,2 -5050,5063,5065,5078,0.489655172413498,-0.521428571428709,0.496551724137666,-0.528571428571506,0.496551724137666,-0.514285714285913,0.503448275861834,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285593,0.000000000000000,2 -5051,5064,5066,5079,0.489655172413498,-0.507142857143103,0.496551724137666,-0.514285714285913,0.496551724137666,-0.500000000000293,0.503448275861834,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285620,0.000000000000000,2 -5052,5065,5067,5080,0.489655172413498,-0.492857142857421,0.496551724137666,-0.500000000000293,0.496551724137666,-0.485714285714549,0.503448275861834,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285744,0.000000000000000,2 -5053,5066,5068,5081,0.489655172413498,-0.478571428571672,0.496551724137666,-0.485714285714549,0.496551724137666,-0.471428571428794,0.503448275861834,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.014285714285755,0.000000000000000,2 -5054,5067,5069,5082,0.489655172413498,-0.464285714285914,0.496551724137666,-0.471428571428794,0.496551724137666,-0.457142857143034,0.503448275861834,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.014285714285761,0.000000000000000,2 -5055,5068,5070,5083,0.489655172413498,-0.450000000000152,0.496551724137666,-0.457142857143034,0.496551724137666,-0.442857142857270,0.503448275861834,-0.450000000000152,-0.014285714285764,0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285764,-0.000000000000000,2 -5056,5069,5071,5084,0.489655172413498,-0.435714285714390,0.496551724137666,-0.442857142857270,0.496551724137666,-0.428571428571509,0.503448275861834,-0.435714285714390,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285761,0.000000000000000,2 -5057,5070,5072,5085,0.489655172413498,-0.421428571428633,0.496551724137666,-0.428571428571509,0.496551724137666,-0.414285714285756,0.503448275861834,-0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285753,0.000000000000000,2 -5058,5071,5086,6410,0.489655172413498,-0.407142857142878,0.496551724137666,-0.414285714285756,0.503448275861834,-0.407142857142878,0.496551724137666,-0.400000000000000,-0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448336,2 -881,5059,5074,5087,0.510344827585989,-0.600000000000000,0.503448275861834,-0.592857142857127,0.510344827585989,-0.585714285714255,0.517241379310145,-0.592857142857127,-0.000000000000000,-0.013793103448311,-0.014285714285745,0.000000000000000,0.000000000000000,0.013793103448311,0.014285714285745,0.000000000000000,2 -5060,5073,5075,5088,0.503448275861834,-0.578571428571396,0.510344827585989,-0.585714285714255,0.510344827585989,-0.571428571428537,0.517241379310145,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.014285714285717,-0.000000000000000,2 -5061,5074,5076,5089,0.503448275861834,-0.564285714285699,0.510344827585989,-0.571428571428537,0.510344827585989,-0.557142857142860,0.517241379310145,-0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -5062,5075,5077,5090,0.503448275861834,-0.550000000000022,0.510344827585989,-0.557142857142860,0.510344827585989,-0.542857142857183,0.517241379310145,-0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -5063,5076,5078,5091,0.503448275861834,-0.535714285714345,0.510344827585989,-0.542857142857183,0.510344827585989,-0.528571428571506,0.517241379310145,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -5064,5077,5079,5092,0.503448275861834,-0.521428571428709,0.510344827585989,-0.528571428571506,0.510344827585989,-0.514285714285913,0.517241379310145,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.014285714285593,-0.000000000000000,2 -5065,5078,5080,5093,0.503448275861834,-0.507142857143103,0.510344827585989,-0.514285714285913,0.510344827585989,-0.500000000000293,0.517241379310145,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448311,0.014285714285620,0.000000000000000,2 -5066,5079,5081,5094,0.503448275861834,-0.492857142857421,0.510344827585989,-0.500000000000293,0.510344827585989,-0.485714285714549,0.517241379310145,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.014285714285744,-0.000000000000000,2 -5067,5080,5082,5095,0.503448275861834,-0.478571428571672,0.510344827585989,-0.485714285714549,0.510344827585989,-0.471428571428794,0.517241379310145,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448311,0.014285714285754,0.000000000000000,2 -5068,5081,5083,5096,0.503448275861834,-0.464285714285914,0.510344827585989,-0.471428571428794,0.510344827585989,-0.457142857143034,0.517241379310145,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 -5069,5082,5084,5097,0.503448275861834,-0.450000000000152,0.510344827585989,-0.457142857143034,0.510344827585989,-0.442857142857270,0.517241379310145,-0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285764,0.000000000000000,2 -5070,5083,5085,5098,0.503448275861834,-0.435714285714390,0.510344827585989,-0.442857142857270,0.510344827585989,-0.428571428571509,0.517241379310145,-0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 -5071,5084,5086,5099,0.503448275861834,-0.421428571428633,0.510344827585989,-0.428571428571509,0.510344827585989,-0.414285714285756,0.517241379310145,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285753,0.000000000000000,2 -5072,5085,5100,6469,0.503448275861834,-0.407142857142878,0.510344827585989,-0.414285714285756,0.517241379310145,-0.407142857142878,0.510344827585989,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448311,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448311,2 -887,5073,5088,5101,0.524137931034299,-0.600000000000000,0.517241379310145,-0.592857142857127,0.524137931034299,-0.585714285714255,0.531034482758453,-0.592857142857127,-0.000000000000000,-0.013793103448308,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448308,0.014285714285745,0.000000000000000,2 -5074,5087,5089,5102,0.517241379310145,-0.578571428571396,0.524137931034299,-0.585714285714255,0.524137931034299,-0.571428571428537,0.531034482758453,-0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285717,0.000000000000000,2 -5075,5088,5090,5103,0.517241379310145,-0.564285714285699,0.524137931034299,-0.571428571428537,0.524137931034299,-0.557142857142860,0.531034482758453,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285677,0.000000000000000,2 -5076,5089,5091,5104,0.517241379310145,-0.550000000000022,0.524137931034299,-0.557142857142860,0.524137931034299,-0.542857142857183,0.531034482758453,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285677,0.000000000000000,2 -5077,5090,5092,5105,0.517241379310145,-0.535714285714345,0.524137931034299,-0.542857142857183,0.524137931034299,-0.528571428571506,0.531034482758453,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285677,0.000000000000000,2 -5078,5091,5093,5106,0.517241379310145,-0.521428571428709,0.524137931034299,-0.528571428571506,0.524137931034299,-0.514285714285913,0.531034482758453,-0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285593,-0.000000000000000,2 -5079,5092,5094,5107,0.517241379310145,-0.507142857143103,0.524137931034299,-0.514285714285913,0.524137931034299,-0.500000000000293,0.531034482758453,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285620,0.000000000000000,2 -5080,5093,5095,5108,0.517241379310145,-0.492857142857421,0.524137931034299,-0.500000000000293,0.524137931034299,-0.485714285714549,0.531034482758453,-0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285744,0.000000000000000,2 -5081,5094,5096,5109,0.517241379310145,-0.478571428571672,0.524137931034299,-0.485714285714549,0.524137931034299,-0.471428571428794,0.531034482758453,-0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285755,0.000000000000000,2 -5082,5095,5097,5110,0.517241379310145,-0.464285714285914,0.524137931034299,-0.471428571428794,0.524137931034299,-0.457142857143034,0.531034482758453,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.014285714285761,-0.000000000000000,2 -5083,5096,5098,5111,0.517241379310145,-0.450000000000152,0.524137931034299,-0.457142857143034,0.524137931034299,-0.442857142857270,0.531034482758453,-0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285764,0.000000000000000,2 -5084,5097,5099,5112,0.517241379310145,-0.435714285714389,0.524137931034299,-0.442857142857270,0.524137931034299,-0.428571428571509,0.531034482758453,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285761,0.000000000000000,2 -5085,5098,5100,5113,0.517241379310145,-0.421428571428633,0.524137931034299,-0.428571428571509,0.524137931034299,-0.414285714285756,0.531034482758453,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285753,0.000000000000000,2 -5086,5099,5114,6528,0.517241379310145,-0.407142857142878,0.524137931034299,-0.414285714285756,0.531034482758453,-0.407142857142878,0.524137931034299,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448308,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448308,2 -893,5087,5102,5115,0.537931034482601,-0.600000000000000,0.531034482758453,-0.592857142857127,0.537931034482601,-0.585714285714255,0.544827586206749,-0.592857142857127,-0.000000000000000,-0.013793103448296,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448296,0.014285714285745,0.000000000000000,2 -5088,5101,5103,5116,0.531034482758453,-0.578571428571396,0.537931034482601,-0.585714285714255,0.537931034482601,-0.571428571428537,0.544827586206749,-0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285718,0.000000000000000,2 -5089,5102,5104,5117,0.531034482758453,-0.564285714285699,0.537931034482601,-0.571428571428537,0.537931034482601,-0.557142857142860,0.544827586206749,-0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285677,-0.000000000000000,2 -5090,5103,5105,5118,0.531034482758453,-0.550000000000022,0.537931034482601,-0.557142857142860,0.537931034482601,-0.542857142857183,0.544827586206749,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285677,0.000000000000000,2 -5091,5104,5106,5119,0.531034482758453,-0.535714285714345,0.537931034482601,-0.542857142857183,0.537931034482601,-0.528571428571506,0.544827586206749,-0.535714285714345,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285677,0.000000000000000,2 -5092,5105,5107,5120,0.531034482758453,-0.521428571428709,0.537931034482601,-0.528571428571506,0.537931034482601,-0.514285714285913,0.544827586206749,-0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285593,0.000000000000000,2 -5093,5106,5108,5121,0.531034482758453,-0.507142857143103,0.537931034482601,-0.514285714285913,0.537931034482601,-0.500000000000293,0.544827586206749,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285620,0.000000000000000,2 -5094,5107,5109,5122,0.531034482758453,-0.492857142857421,0.537931034482601,-0.500000000000293,0.537931034482601,-0.485714285714549,0.544827586206749,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285744,0.000000000000000,2 -5095,5108,5110,5123,0.531034482758453,-0.478571428571672,0.537931034482601,-0.485714285714549,0.537931034482601,-0.471428571428794,0.544827586206749,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285755,0.000000000000000,2 -5096,5109,5111,5124,0.531034482758453,-0.464285714285914,0.537931034482601,-0.471428571428794,0.537931034482601,-0.457142857143033,0.544827586206749,-0.464285714285914,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285761,0.000000000000000,2 -5097,5110,5112,5125,0.531034482758453,-0.450000000000152,0.537931034482601,-0.457142857143033,0.537931034482601,-0.442857142857270,0.544827586206749,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285764,0.000000000000000,2 -5098,5111,5113,5126,0.531034482758453,-0.435714285714389,0.537931034482601,-0.442857142857270,0.537931034482601,-0.428571428571509,0.544827586206749,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285761,-0.000000000000000,2 -5099,5112,5114,5127,0.531034482758453,-0.421428571428633,0.537931034482601,-0.428571428571509,0.537931034482601,-0.414285714285756,0.544827586206749,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285753,0.000000000000000,2 -5100,5113,5128,6587,0.531034482758453,-0.407142857142878,0.537931034482601,-0.414285714285756,0.544827586206749,-0.407142857142878,0.537931034482601,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448296,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448296,2 -899,5101,5116,5129,0.551724137930900,-0.600000000000000,0.544827586206749,-0.592857142857127,0.551724137930900,-0.585714285714255,0.558620689655051,-0.592857142857127,-0.000000000000000,-0.013793103448302,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448301,0.014285714285745,0.000000000000000,2 -5102,5115,5117,5130,0.544827586206749,-0.578571428571396,0.551724137930900,-0.585714285714255,0.551724137930900,-0.571428571428537,0.558620689655051,-0.578571428571396,-0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448302,0.014285714285717,-0.000000000000000,2 -5103,5116,5118,5131,0.544827586206749,-0.564285714285699,0.551724137930900,-0.571428571428537,0.551724137930900,-0.557142857142860,0.558620689655051,-0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285677,0.000000000000000,2 -5104,5117,5119,5132,0.544827586206749,-0.550000000000022,0.551724137930900,-0.557142857142860,0.551724137930900,-0.542857142857183,0.558620689655051,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285677,-0.000000000000000,2 -5105,5118,5120,5133,0.544827586206749,-0.535714285714345,0.551724137930900,-0.542857142857183,0.551724137930900,-0.528571428571506,0.558620689655051,-0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285677,0.000000000000000,2 -5106,5119,5121,5134,0.544827586206749,-0.521428571428709,0.551724137930900,-0.528571428571506,0.551724137930900,-0.514285714285913,0.558620689655051,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285593,0.000000000000000,2 -5107,5120,5122,5135,0.544827586206749,-0.507142857143103,0.551724137930900,-0.514285714285913,0.551724137930900,-0.500000000000293,0.558620689655051,-0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285620,-0.000000000000000,2 -5108,5121,5123,5136,0.544827586206749,-0.492857142857421,0.551724137930900,-0.500000000000293,0.551724137930900,-0.485714285714549,0.558620689655051,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285744,0.000000000000000,2 -5109,5122,5124,5137,0.544827586206749,-0.478571428571672,0.551724137930900,-0.485714285714549,0.551724137930900,-0.471428571428794,0.558620689655051,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285755,0.000000000000000,2 -5110,5123,5125,5138,0.544827586206749,-0.464285714285914,0.551724137930900,-0.471428571428794,0.551724137930900,-0.457142857143033,0.558620689655051,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285761,0.000000000000000,2 -5111,5124,5126,5139,0.544827586206749,-0.450000000000152,0.551724137930900,-0.457142857143033,0.551724137930900,-0.442857142857270,0.558620689655051,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285764,-0.000000000000000,2 -5112,5125,5127,5140,0.544827586206749,-0.435714285714389,0.551724137930900,-0.442857142857270,0.551724137930900,-0.428571428571509,0.558620689655051,-0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285761,0.000000000000000,2 -5113,5126,5128,5141,0.544827586206749,-0.421428571428633,0.551724137930900,-0.428571428571509,0.551724137930900,-0.414285714285756,0.558620689655051,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285753,0.000000000000000,2 -5114,5127,5142,6646,0.544827586206749,-0.407142857142878,0.551724137930900,-0.414285714285756,0.558620689655051,-0.407142857142878,0.551724137930900,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448302,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448302,2 -905,5115,5130,5143,0.565517241379205,-0.600000000000000,0.558620689655051,-0.592857142857127,0.565517241379205,-0.585714285714255,0.572413793103360,-0.592857142857127,-0.000000000000000,-0.013793103448309,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285745,0.000000000000000,2 -5116,5129,5131,5144,0.558620689655051,-0.578571428571396,0.565517241379205,-0.585714285714255,0.565517241379205,-0.571428571428537,0.572413793103360,-0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 -5117,5130,5132,5145,0.558620689655051,-0.564285714285699,0.565517241379205,-0.571428571428537,0.565517241379205,-0.557142857142860,0.572413793103360,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -5118,5131,5133,5146,0.558620689655051,-0.550000000000022,0.565517241379205,-0.557142857142860,0.565517241379205,-0.542857142857183,0.572413793103360,-0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -5119,5132,5134,5147,0.558620689655051,-0.535714285714345,0.565517241379205,-0.542857142857183,0.565517241379205,-0.528571428571506,0.572413793103360,-0.535714285714345,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,-0.000000000000000,2 -5120,5133,5135,5148,0.558620689655051,-0.521428571428709,0.565517241379205,-0.528571428571506,0.565517241379205,-0.514285714285913,0.572413793103360,-0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285594,0.000000000000000,2 -5121,5134,5136,5149,0.558620689655051,-0.507142857143103,0.565517241379205,-0.514285714285913,0.565517241379205,-0.500000000000293,0.572413793103360,-0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285620,-0.000000000000000,2 -5122,5135,5137,5150,0.558620689655051,-0.492857142857421,0.565517241379205,-0.500000000000293,0.565517241379205,-0.485714285714549,0.572413793103360,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285744,0.000000000000000,2 -5123,5136,5138,5151,0.558620689655051,-0.478571428571672,0.565517241379205,-0.485714285714549,0.565517241379205,-0.471428571428794,0.572413793103360,-0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285755,0.000000000000000,2 -5124,5137,5139,5152,0.558620689655051,-0.464285714285914,0.565517241379205,-0.471428571428794,0.565517241379205,-0.457142857143033,0.572413793103360,-0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -5125,5138,5140,5153,0.558620689655051,-0.450000000000152,0.565517241379205,-0.457142857143033,0.565517241379205,-0.442857142857270,0.572413793103360,-0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 -5126,5139,5141,5154,0.558620689655051,-0.435714285714389,0.565517241379205,-0.442857142857270,0.565517241379205,-0.428571428571509,0.572413793103360,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -5127,5140,5142,5155,0.558620689655051,-0.421428571428633,0.565517241379205,-0.428571428571509,0.565517241379205,-0.414285714285756,0.572413793103360,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285753,0.000000000000000,2 -5128,5141,5156,6705,0.558620689655051,-0.407142857142878,0.565517241379205,-0.414285714285756,0.572413793103360,-0.407142857142878,0.565517241379205,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,2 -911,5129,5144,5157,0.579310344827519,-0.600000000000000,0.572413793103360,-0.592857142857127,0.579310344827519,-0.585714285714255,0.586206896551678,-0.592857142857127,-0.000000000000000,-0.013793103448318,-0.014285714285745,-0.000000000000000,-0.000000000000000,0.013793103448318,0.014285714285745,0.000000000000000,2 -5130,5143,5145,5158,0.572413793103360,-0.578571428571396,0.579310344827519,-0.585714285714255,0.579310344827519,-0.571428571428537,0.586206896551678,-0.578571428571396,-0.014285714285717,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285717,0.000000000000000,2 -5131,5144,5146,5159,0.572413793103360,-0.564285714285699,0.579310344827519,-0.571428571428537,0.579310344827519,-0.557142857142860,0.586206896551678,-0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285677,-0.000000000000000,2 -5132,5145,5147,5160,0.572413793103360,-0.550000000000022,0.579310344827519,-0.557142857142860,0.579310344827519,-0.542857142857183,0.586206896551678,-0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285677,-0.000000000000000,2 -5133,5146,5148,5161,0.572413793103360,-0.535714285714345,0.579310344827519,-0.542857142857183,0.579310344827519,-0.528571428571506,0.586206896551678,-0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285677,0.000000000000000,2 -5134,5147,5149,5162,0.572413793103360,-0.521428571428709,0.579310344827519,-0.528571428571506,0.579310344827519,-0.514285714285913,0.586206896551678,-0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285594,0.000000000000000,2 -5135,5148,5150,5163,0.572413793103360,-0.507142857143103,0.579310344827519,-0.514285714285913,0.579310344827519,-0.500000000000293,0.586206896551678,-0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285620,0.000000000000000,2 -5136,5149,5151,5164,0.572413793103360,-0.492857142857421,0.579310344827519,-0.500000000000293,0.579310344827519,-0.485714285714549,0.586206896551678,-0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.014285714285744,-0.000000000000000,2 -5137,5150,5152,5165,0.572413793103360,-0.478571428571672,0.579310344827519,-0.485714285714549,0.579310344827519,-0.471428571428794,0.586206896551678,-0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285754,0.000000000000000,2 -5138,5151,5153,5166,0.572413793103360,-0.464285714285914,0.579310344827519,-0.471428571428794,0.579310344827519,-0.457142857143033,0.586206896551678,-0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285761,0.000000000000000,2 -5139,5152,5154,5167,0.572413793103360,-0.450000000000152,0.579310344827519,-0.457142857143033,0.579310344827519,-0.442857142857270,0.586206896551678,-0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285764,0.000000000000000,2 -5140,5153,5155,5168,0.572413793103360,-0.435714285714389,0.579310344827519,-0.442857142857270,0.579310344827519,-0.428571428571509,0.586206896551678,-0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285761,0.000000000000000,2 -5141,5154,5156,5169,0.572413793103360,-0.421428571428633,0.579310344827519,-0.428571428571509,0.579310344827519,-0.414285714285756,0.586206896551678,-0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285753,0.000000000000000,2 -5142,5155,5170,6764,0.572413793103360,-0.407142857142878,0.579310344827519,-0.414285714285756,0.586206896551678,-0.407142857142878,0.579310344827519,-0.400000000000000,-0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448318,0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448318,2 -917,942,5143,5158,0.593103448275839,-0.600000000000000,0.600000000000000,-0.592857142857127,0.586206896551678,-0.592857142857127,0.593103448275839,-0.585714285714255,0.000000000000000,-0.013793103448322,0.014285714285745,0.000000000000000,-0.014285714285745,-0.000000000000000,0.000000000000000,0.013793103448322,2 -943,5144,5157,5159,0.600000000000000,-0.578571428571396,0.586206896551678,-0.578571428571396,0.593103448275839,-0.585714285714255,0.593103448275839,-0.571428571428537,0.014285714285717,0.000000000000000,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -944,5145,5158,5160,0.600000000000000,-0.564285714285699,0.586206896551678,-0.564285714285699,0.593103448275839,-0.571428571428537,0.593103448275839,-0.557142857142860,0.014285714285677,0.000000000000000,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -945,5146,5159,5161,0.600000000000000,-0.550000000000022,0.586206896551678,-0.550000000000022,0.593103448275839,-0.557142857142860,0.593103448275839,-0.542857142857183,0.014285714285677,0.000000000000000,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -946,5147,5160,5162,0.600000000000000,-0.535714285714345,0.586206896551678,-0.535714285714345,0.593103448275839,-0.542857142857183,0.593103448275839,-0.528571428571506,0.014285714285677,0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -947,5148,5161,5163,0.600000000000000,-0.521428571428709,0.586206896551678,-0.521428571428709,0.593103448275839,-0.528571428571506,0.593103448275839,-0.514285714285913,0.014285714285593,0.000000000000000,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -948,5149,5162,5164,0.600000000000000,-0.507142857143103,0.586206896551678,-0.507142857143103,0.593103448275839,-0.514285714285913,0.593103448275839,-0.500000000000293,0.014285714285620,0.000000000000000,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -949,5150,5163,5165,0.600000000000000,-0.492857142857421,0.586206896551678,-0.492857142857421,0.593103448275839,-0.500000000000293,0.593103448275839,-0.485714285714549,0.014285714285744,0.000000000000000,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -950,5151,5164,5166,0.600000000000000,-0.478571428571672,0.586206896551678,-0.478571428571672,0.593103448275839,-0.485714285714549,0.593103448275839,-0.471428571428794,0.014285714285754,0.000000000000000,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -951,5152,5165,5167,0.600000000000000,-0.464285714285914,0.586206896551678,-0.464285714285914,0.593103448275839,-0.471428571428794,0.593103448275839,-0.457142857143034,0.014285714285761,0.000000000000000,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -952,5153,5166,5168,0.600000000000000,-0.450000000000152,0.586206896551678,-0.450000000000152,0.593103448275839,-0.457142857143034,0.593103448275839,-0.442857142857270,0.014285714285764,0.000000000000000,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -953,5154,5167,5169,0.600000000000000,-0.435714285714389,0.586206896551678,-0.435714285714389,0.593103448275839,-0.442857142857270,0.593103448275839,-0.428571428571509,0.014285714285761,0.000000000000000,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -954,5155,5168,5170,0.600000000000000,-0.421428571428633,0.586206896551678,-0.421428571428633,0.593103448275839,-0.428571428571509,0.593103448275839,-0.414285714285756,0.014285714285753,0.000000000000000,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -955,5156,5169,6823,0.600000000000000,-0.407142857142878,0.586206896551678,-0.407142857142878,0.593103448275839,-0.414285714285756,0.593103448275839,-0.400000000000000,0.014285714285756,-0.000000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -4778,5172,5230,9332,0.206896551724127,-0.400000000000000,0.206896551724127,-0.386440677966068,0.213793103448254,-0.393220338983034,0.200000000000000,-0.393220338983034,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033932,0.000000000000000,-0.013559322033932,-0.000000000000000,2 -5171,5173,5231,9333,0.206896551724127,-0.386440677966068,0.206896551724127,-0.372881355932122,0.213793103448254,-0.379661016949095,0.200000000000000,-0.379661016949095,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033946,0.000000000000000,-0.013559322033946,0.000000000000000,2 -5172,5174,5232,9334,0.206896551724127,-0.372881355932122,0.206896551724127,-0.359322033898204,0.213793103448254,-0.366101694915163,0.200000000000000,-0.366101694915163,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033918,0.000000000000000,-0.013559322033918,0.000000000000000,2 -5173,5175,5233,9335,0.206896551724127,-0.359322033898204,0.206896551724127,-0.345762711864250,0.213793103448254,-0.352542372881227,0.200000000000000,-0.352542372881227,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033954,0.000000000000000,-0.013559322033954,0.000000000000000,2 -5174,5176,5234,9336,0.206896551724127,-0.345762711864250,0.206896551724127,-0.332203389830336,0.213793103448254,-0.338983050847293,0.200000000000000,-0.338983050847293,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033914,0.000000000000000,-0.013559322033914,0.000000000000000,2 -5175,5177,5235,9337,0.206896551724127,-0.332203389830336,0.206896551724127,-0.318644067796385,0.213793103448254,-0.325423728813361,0.200000000000000,-0.325423728813361,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033951,-0.000000000000000,-0.013559322033950,0.000000000000000,2 -5176,5178,5236,9338,0.206896551724127,-0.318644067796385,0.206896551724127,-0.305084745762457,0.213793103448254,-0.311864406779421,0.200000000000000,-0.311864406779421,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033928,0.000000000000000,-0.013559322033928,0.000000000000000,2 -5177,5179,5237,9339,0.206896551724127,-0.305084745762457,0.206896551724127,-0.291525423728521,0.213793103448254,-0.298305084745489,0.200000000000000,-0.298305084745489,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033936,0.000000000000000,-0.013559322033936,0.000000000000000,2 -5178,5180,5238,9340,0.206896551724127,-0.291525423728521,0.206896551724127,-0.277966101694579,0.213793103448254,-0.284745762711550,0.200000000000000,-0.284745762711550,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033942,0.000000000000000,-0.013559322033942,0.000000000000000,2 -5179,5181,5239,9341,0.206896551724127,-0.277966101694579,0.206896551724127,-0.264406779660657,0.213793103448254,-0.271186440677618,0.200000000000000,-0.271186440677618,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033922,-0.000000000000000,-0.013559322033922,0.000000000000000,2 -5180,5182,5240,9342,0.206896551724127,-0.264406779660657,0.206896551724127,-0.250847457626703,0.213793103448254,-0.257627118643680,0.200000000000000,-0.257627118643680,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033954,0.000000000000000,-0.013559322033954,0.000000000000000,2 -5181,5183,5241,9343,0.206896551724127,-0.250847457626703,0.206896551724127,-0.237288135592793,0.213793103448254,-0.244067796609748,0.200000000000000,-0.244067796609748,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033910,0.000000000000000,-0.013559322033910,0.000000000000000,2 -5182,5184,5242,9344,0.206896551724127,-0.237288135592793,0.206896551724127,-0.223728813558839,0.213793103448254,-0.230508474575816,0.200000000000000,-0.230508474575816,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033954,0.000000000000000,-0.013559322033954,0.000000000000000,2 -5183,5185,5243,9345,0.206896551724127,-0.223728813558839,0.206896551724127,-0.210169491524915,0.213793103448254,-0.216949152541877,0.200000000000000,-0.216949152541877,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033924,0.000000000000000,-0.013559322033924,0.000000000000000,2 -5184,5186,5244,9346,0.206896551724127,-0.210169491524915,0.206896551724127,-0.196610169490975,0.213793103448254,-0.203389830507945,0.200000000000000,-0.203389830507945,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033940,0.000000000000000,-0.013559322033940,0.000000000000000,2 -5185,5187,5245,9347,0.206896551724127,-0.196610169490975,0.206896551724127,-0.183050847457058,0.213793103448254,-0.189830508474016,0.200000000000000,-0.189830508474016,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033917,0.000000000000000,-0.013559322033917,0.000000000000000,2 -5186,5188,5246,9348,0.206896551724127,-0.183050847457058,0.206896551724127,-0.169491525423110,0.213793103448254,-0.176271186440084,0.200000000000000,-0.176271186440084,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033947,-0.000000000000000,-0.013559322033947,0.000000000000000,2 -5187,5189,5247,9349,0.206896551724127,-0.169491525423110,0.206896551724127,-0.155932203389179,0.213793103448254,-0.162711864406145,0.200000000000000,-0.162711864406145,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033931,0.000000000000000,-0.013559322033931,0.000000000000000,2 -5188,5190,5248,9350,0.206896551724127,-0.155932203389179,0.206896551724127,-0.142372881355246,0.213793103448254,-0.149152542372213,0.200000000000000,-0.149152542372213,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033933,0.000000000000000,-0.013559322033933,0.000000000000000,2 -5189,5191,5249,9351,0.206896551724127,-0.142372881355246,0.206896551724127,-0.128813559321301,0.213793103448254,-0.135593220338274,0.200000000000000,-0.135593220338273,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033945,-0.000000000000000,-0.013559322033945,0.000000000000000,2 -5190,5192,5250,9352,0.206896551724127,-0.128813559321301,0.206896551724127,-0.115254237287382,0.213793103448254,-0.122033898304341,0.200000000000000,-0.122033898304341,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033919,0.000000000000000,-0.013559322033919,0.000000000000000,2 -5191,5193,5251,9353,0.206896551724127,-0.115254237287382,0.206896551724127,-0.101694915253436,0.213793103448254,-0.108474576270409,0.200000000000000,-0.108474576270409,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033946,0.000000000000000,-0.013559322033946,0.000000000000000,2 -5192,5194,5252,9354,0.206896551724127,-0.101694915253436,0.206896551724127,-0.088135593219506,0.213793103448254,-0.094915254236471,0.200000000000000,-0.094915254236471,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033930,0.000000000000000,-0.013559322033930,0.000000000000000,2 -5193,5195,5253,9355,0.206896551724127,-0.088135593219506,0.206896551724127,-0.074576271185565,0.213793103448254,-0.081355932202535,0.200000000000000,-0.081355932202535,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033941,0.000000000000000,-0.013559322033941,0.000000000000000,2 -5194,5196,5254,9356,0.206896551724127,-0.074576271185565,0.206896551724127,-0.061016949151634,0.213793103448254,-0.067796610168599,0.200000000000000,-0.067796610168599,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033930,0.000000000000000,-0.013559322033930,0.000000000000000,2 -5195,5197,5255,9357,0.206896551724127,-0.061016949151634,0.206896551724127,-0.047457627117699,0.213793103448254,-0.054237288134667,0.200000000000000,-0.054237288134667,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033935,0.000000000000000,-0.013559322033935,0.000000000000000,2 -5196,5198,5256,9358,0.206896551724127,-0.047457627117699,0.206896551724127,-0.033898305083763,0.213793103448254,-0.040677966100731,0.200000000000000,-0.040677966100731,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033937,0.000000000000000,-0.013559322033937,0.000000000000000,2 -5197,5199,5257,9359,0.206896551724127,-0.033898305083763,0.206896551724127,-0.020338983049833,0.213793103448254,-0.027118644066798,0.200000000000000,-0.027118644066798,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033930,0.000000000000000,-0.013559322033930,0.000000000000000,2 -5198,5200,5258,9360,0.206896551724127,-0.020338983049833,0.206896551724127,-0.006779661015891,0.213793103448254,-0.013559322032862,0.200000000000000,-0.013559322032862,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033941,0.000000000000000,-0.013559322033941,0.000000000000000,2 -5199,5201,5259,9361,0.206896551724127,-0.006779661015891,0.206896551724127,0.006779661018004,0.213793103448254,0.000000000001056,0.200000000000000,0.000000000001056,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033895,0.000000000000000,-0.013559322033895,0.000000000000000,2 -5200,5202,5260,9362,0.206896551724127,0.006779661018004,0.206896551724127,0.020338983051863,0.213793103448254,0.013559322034933,0.200000000000000,0.013559322034933,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5201,5203,5261,9363,0.206896551724127,0.020338983051863,0.206896551724127,0.033898305085723,0.213793103448254,0.027118644068793,0.200000000000000,0.027118644068793,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5202,5204,5262,9364,0.206896551724127,0.033898305085723,0.206896551724127,0.047457627119583,0.213793103448254,0.040677966102653,0.200000000000000,0.040677966102653,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5203,5205,5263,9365,0.206896551724127,0.047457627119583,0.206896551724127,0.061016949153442,0.213793103448254,0.054237288136513,0.200000000000000,0.054237288136513,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5204,5206,5264,9366,0.206896551724127,0.061016949153442,0.206896551724127,0.074576271187302,0.213793103448254,0.067796610170372,0.200000000000000,0.067796610170372,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5205,5207,5265,9367,0.206896551724127,0.074576271187302,0.206896551724127,0.088135593221162,0.213793103448254,0.081355932204232,0.200000000000000,0.081355932204232,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5206,5208,5266,9368,0.206896551724127,0.088135593221162,0.206896551724127,0.101694915255008,0.213793103448254,0.094915254238085,0.200000000000000,0.094915254238085,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033846,0.000000000000000,-0.013559322033846,0.000000000000000,2 -5207,5209,5267,9369,0.206896551724127,0.101694915255008,0.206896551724127,0.115254237288859,0.213793103448254,0.108474576271933,0.200000000000000,0.108474576271933,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033852,0.000000000000000,-0.013559322033852,0.000000000000000,2 -5208,5210,5268,9370,0.206896551724127,0.115254237288859,0.206896551724127,0.128813559322719,0.213793103448254,0.122033898305789,0.200000000000000,0.122033898305789,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5209,5211,5269,9371,0.206896551724127,0.128813559322719,0.206896551724127,0.142372881356579,0.213793103448254,0.135593220339649,0.200000000000000,0.135593220339649,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5210,5212,5270,9372,0.206896551724127,0.142372881356579,0.206896551724127,0.155932203390438,0.213793103448254,0.149152542373509,0.200000000000000,0.149152542373509,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5211,5213,5271,9373,0.206896551724127,0.155932203390438,0.206896551724127,0.169491525424298,0.213793103448254,0.162711864407368,0.200000000000000,0.162711864407368,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 -5212,5214,5272,9374,0.206896551724127,0.169491525424298,0.206896551724127,0.183050847458158,0.213793103448254,0.176271186441228,0.200000000000000,0.176271186441228,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5213,5215,5273,9375,0.206896551724127,0.183050847458158,0.206896551724127,0.196610169492017,0.213793103448254,0.189830508475088,0.200000000000000,0.189830508475088,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5214,5216,5274,9376,0.206896551724127,0.196610169492017,0.206896551724127,0.210169491525877,0.213793103448254,0.203389830508947,0.200000000000000,0.203389830508947,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 -5215,5217,5275,9377,0.206896551724127,0.210169491525877,0.206896551724127,0.223728813559737,0.213793103448254,0.216949152542807,0.200000000000000,0.216949152542807,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5216,5218,5276,9378,0.206896551724127,0.223728813559737,0.206896551724127,0.237288135593597,0.213793103448254,0.230508474576667,0.200000000000000,0.230508474576667,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5217,5219,5277,9379,0.206896551724127,0.237288135593597,0.206896551724127,0.250847457627456,0.213793103448254,0.244067796610527,0.200000000000000,0.244067796610526,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5218,5220,5278,9380,0.206896551724127,0.250847457627456,0.206896551724127,0.264406779661316,0.213793103448254,0.257627118644386,0.200000000000000,0.257627118644386,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5219,5221,5279,9381,0.206896551724127,0.264406779661316,0.206896551724127,0.277966101695176,0.213793103448254,0.271186440678246,0.200000000000000,0.271186440678246,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5220,5222,5280,9382,0.206896551724127,0.277966101695176,0.206896551724127,0.291525423729036,0.213793103448254,0.284745762712106,0.200000000000000,0.284745762712106,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,2 -5221,5223,5281,9383,0.206896551724127,0.291525423729036,0.206896551724127,0.305084745762915,0.213793103448254,0.298305084745975,0.200000000000000,0.298305084745975,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033879,0.000000000000000,-0.013559322033879,0.000000000000000,2 -5222,5224,5282,9384,0.206896551724127,0.305084745762915,0.206896551724127,0.318644067796787,0.213793103448254,0.311864406779851,0.200000000000000,0.311864406779851,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033872,0.000000000000000,-0.013559322033872,0.000000000000000,2 -5223,5225,5283,9385,0.206896551724127,0.318644067796787,0.206896551724127,0.332203389830670,0.213793103448254,0.325423728813729,0.200000000000000,0.325423728813729,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033883,0.000000000000000,-0.013559322033883,0.000000000000000,2 -5224,5226,5284,9386,0.206896551724127,0.332203389830670,0.206896551724127,0.345762711864539,0.213793103448254,0.338983050847605,0.200000000000000,0.338983050847605,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033869,0.000000000000000,-0.013559322033869,0.000000000000000,2 -5225,5227,5285,9387,0.206896551724127,0.345762711864539,0.206896551724127,0.359322033898399,0.213793103448254,0.352542372881469,0.200000000000000,0.352542372881469,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5226,5228,5286,9388,0.206896551724127,0.359322033898399,0.206896551724127,0.372881355932259,0.213793103448254,0.366101694915329,0.200000000000000,0.366101694915329,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5227,5229,5287,9389,0.206896551724127,0.372881355932259,0.206896551724127,0.386440677966119,0.213793103448254,0.379661016949189,0.200000000000000,0.379661016949189,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,-0.013559322033860,0.000000000000000,2 -5228,5288,6882,9390,0.206896551724127,0.386440677966119,0.213793103448254,0.393220338983059,0.206896551724127,0.400000000000000,0.200000000000000,0.393220338983059,-0.000000000000000,-0.013793103448254,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448254,-0.013559322033881,0.000000000000000,2 -4792,5171,5231,5289,0.220689655172375,-0.400000000000000,0.213793103448254,-0.393220338983034,0.220689655172375,-0.386440677966068,0.227586206896496,-0.393220338983034,-0.000000000000000,-0.013793103448243,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448243,0.013559322033932,0.000000000000000,2 -5172,5230,5232,5290,0.213793103448254,-0.379661016949095,0.220689655172375,-0.386440677966068,0.220689655172375,-0.372881355932122,0.227586206896496,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033946,-0.000000000000000,2 -5173,5231,5233,5291,0.213793103448254,-0.366101694915163,0.220689655172375,-0.372881355932122,0.220689655172375,-0.359322033898204,0.227586206896496,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033918,0.000000000000000,2 -5174,5232,5234,5292,0.213793103448254,-0.352542372881227,0.220689655172375,-0.359322033898204,0.220689655172375,-0.345762711864250,0.227586206896496,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033954,0.000000000000000,2 -5175,5233,5235,5293,0.213793103448254,-0.338983050847293,0.220689655172375,-0.345762711864250,0.220689655172375,-0.332203389830336,0.227586206896496,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033914,0.000000000000000,2 -5176,5234,5236,5294,0.213793103448254,-0.325423728813361,0.220689655172375,-0.332203389830336,0.220689655172375,-0.318644067796385,0.227586206896496,-0.325423728813361,-0.013559322033951,0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033950,0.000000000000000,2 -5177,5235,5237,5295,0.213793103448254,-0.311864406779421,0.220689655172375,-0.318644067796385,0.220689655172375,-0.305084745762457,0.227586206896496,-0.311864406779421,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033928,0.000000000000000,2 -5178,5236,5238,5296,0.213793103448254,-0.298305084745489,0.220689655172375,-0.305084745762457,0.220689655172375,-0.291525423728521,0.227586206896496,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033936,-0.000000000000000,2 -5179,5237,5239,5297,0.213793103448254,-0.284745762711550,0.220689655172375,-0.291525423728521,0.220689655172375,-0.277966101694579,0.227586206896496,-0.284745762711550,-0.013559322033942,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033942,0.000000000000000,2 -5180,5238,5240,5298,0.213793103448254,-0.271186440677618,0.220689655172375,-0.277966101694579,0.220689655172375,-0.264406779660657,0.227586206896496,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033922,-0.000000000000000,2 -5181,5239,5241,5299,0.213793103448254,-0.257627118643680,0.220689655172375,-0.264406779660657,0.220689655172375,-0.250847457626703,0.227586206896496,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033954,0.000000000000000,2 -5182,5240,5242,5300,0.213793103448254,-0.244067796609748,0.220689655172375,-0.250847457626703,0.220689655172375,-0.237288135592793,0.227586206896496,-0.244067796609748,-0.013559322033910,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033910,0.000000000000000,2 -5183,5241,5243,5301,0.213793103448254,-0.230508474575816,0.220689655172375,-0.237288135592793,0.220689655172375,-0.223728813558839,0.227586206896496,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033954,0.000000000000000,2 -5184,5242,5244,5302,0.213793103448254,-0.216949152541877,0.220689655172375,-0.223728813558839,0.220689655172375,-0.210169491524915,0.227586206896496,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033924,0.000000000000000,2 -5185,5243,5245,5303,0.213793103448254,-0.203389830507945,0.220689655172375,-0.210169491524915,0.220689655172375,-0.196610169490975,0.227586206896496,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033940,0.000000000000000,2 -5186,5244,5246,5304,0.213793103448254,-0.189830508474016,0.220689655172375,-0.196610169490975,0.220689655172375,-0.183050847457058,0.227586206896496,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033917,0.000000000000000,2 -5187,5245,5247,5305,0.213793103448254,-0.176271186440084,0.220689655172375,-0.183050847457058,0.220689655172375,-0.169491525423110,0.227586206896496,-0.176271186440084,-0.013559322033947,0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033947,0.000000000000000,2 -5188,5246,5248,5306,0.213793103448254,-0.162711864406145,0.220689655172375,-0.169491525423110,0.220689655172375,-0.155932203389179,0.227586206896496,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033931,-0.000000000000000,2 -5189,5247,5249,5307,0.213793103448254,-0.149152542372213,0.220689655172375,-0.155932203389179,0.220689655172375,-0.142372881355246,0.227586206896496,-0.149152542372213,-0.013559322033933,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033933,0.000000000000000,2 -5190,5248,5250,5308,0.213793103448254,-0.135593220338274,0.220689655172375,-0.142372881355246,0.220689655172375,-0.128813559321301,0.227586206896496,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033945,0.000000000000000,2 -5191,5249,5251,5309,0.213793103448254,-0.122033898304341,0.220689655172375,-0.128813559321301,0.220689655172375,-0.115254237287382,0.227586206896496,-0.122033898304341,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033919,0.000000000000000,2 -5192,5250,5252,5310,0.213793103448254,-0.108474576270409,0.220689655172375,-0.115254237287382,0.220689655172375,-0.101694915253436,0.227586206896496,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033946,0.000000000000000,2 -5193,5251,5253,5311,0.213793103448254,-0.094915254236471,0.220689655172375,-0.101694915253436,0.220689655172375,-0.088135593219506,0.227586206896496,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033930,0.000000000000000,2 -5194,5252,5254,5312,0.213793103448254,-0.081355932202535,0.220689655172375,-0.088135593219506,0.220689655172375,-0.074576271185564,0.227586206896496,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033941,0.000000000000000,2 -5195,5253,5255,5313,0.213793103448254,-0.067796610168599,0.220689655172375,-0.074576271185564,0.220689655172375,-0.061016949151634,0.227586206896496,-0.067796610168599,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033930,0.000000000000000,2 -5196,5254,5256,5314,0.213793103448254,-0.054237288134667,0.220689655172375,-0.061016949151634,0.220689655172375,-0.047457627117699,0.227586206896496,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033935,0.000000000000000,2 -5197,5255,5257,5315,0.213793103448254,-0.040677966100731,0.220689655172375,-0.047457627117699,0.220689655172375,-0.033898305083763,0.227586206896496,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033937,-0.000000000000000,2 -5198,5256,5258,5316,0.213793103448254,-0.027118644066798,0.220689655172375,-0.033898305083763,0.220689655172375,-0.020338983049833,0.227586206896496,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033930,0.000000000000000,2 -5199,5257,5259,5317,0.213793103448254,-0.013559322032862,0.220689655172375,-0.020338983049833,0.220689655172375,-0.006779661015891,0.227586206896496,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033941,0.000000000000000,2 -5200,5258,5260,5318,0.213793103448254,0.000000000001056,0.220689655172375,-0.006779661015891,0.220689655172375,0.006779661018004,0.227586206896496,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033895,0.000000000000000,2 -5201,5259,5261,5319,0.213793103448254,0.013559322034933,0.220689655172375,0.006779661018004,0.220689655172375,0.020338983051863,0.227586206896496,0.013559322034934,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5202,5260,5262,5320,0.213793103448254,0.027118644068793,0.220689655172375,0.020338983051863,0.220689655172375,0.033898305085723,0.227586206896496,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5203,5261,5263,5321,0.213793103448254,0.040677966102653,0.220689655172375,0.033898305085723,0.220689655172375,0.047457627119583,0.227586206896496,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5204,5262,5264,5322,0.213793103448254,0.054237288136513,0.220689655172375,0.047457627119583,0.220689655172375,0.061016949153442,0.227586206896496,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5205,5263,5265,5323,0.213793103448254,0.067796610170372,0.220689655172375,0.061016949153442,0.220689655172375,0.074576271187302,0.227586206896496,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5206,5264,5266,5324,0.213793103448254,0.081355932204232,0.220689655172375,0.074576271187302,0.220689655172375,0.088135593221162,0.227586206896496,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5207,5265,5267,5325,0.213793103448254,0.094915254238085,0.220689655172375,0.088135593221162,0.220689655172375,0.101694915255008,0.227586206896496,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033846,-0.000000000000000,2 -5208,5266,5268,5326,0.213793103448254,0.108474576271933,0.220689655172375,0.101694915255008,0.220689655172375,0.115254237288859,0.227586206896496,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033852,0.000000000000000,2 -5209,5267,5269,5327,0.213793103448254,0.122033898305789,0.220689655172375,0.115254237288859,0.220689655172375,0.128813559322719,0.227586206896496,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5210,5268,5270,5328,0.213793103448254,0.135593220339649,0.220689655172375,0.128813559322719,0.220689655172375,0.142372881356579,0.227586206896496,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5211,5269,5271,5329,0.213793103448254,0.149152542373509,0.220689655172375,0.142372881356579,0.220689655172375,0.155932203390438,0.227586206896496,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5212,5270,5272,5330,0.213793103448254,0.162711864407368,0.220689655172375,0.155932203390438,0.220689655172375,0.169491525424298,0.227586206896496,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5213,5271,5273,5331,0.213793103448254,0.176271186441228,0.220689655172375,0.169491525424298,0.220689655172375,0.183050847458158,0.227586206896496,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,-0.000000000000000,2 -5214,5272,5274,5332,0.213793103448254,0.189830508475088,0.220689655172375,0.183050847458158,0.220689655172375,0.196610169492017,0.227586206896497,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5215,5273,5275,5333,0.213793103448254,0.203389830508947,0.220689655172375,0.196610169492017,0.220689655172375,0.210169491525877,0.227586206896497,0.203389830508947,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5216,5274,5276,5334,0.213793103448254,0.216949152542807,0.220689655172375,0.210169491525877,0.220689655172375,0.223728813559737,0.227586206896497,0.216949152542807,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5217,5275,5277,5335,0.213793103448254,0.230508474576667,0.220689655172375,0.223728813559737,0.220689655172375,0.237288135593597,0.227586206896497,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5218,5276,5278,5336,0.213793103448254,0.244067796610527,0.220689655172375,0.237288135593597,0.220689655172375,0.250847457627456,0.227586206896496,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5219,5277,5279,5337,0.213793103448254,0.257627118644386,0.220689655172375,0.250847457627456,0.220689655172375,0.264406779661316,0.227586206896496,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5220,5278,5280,5338,0.213793103448254,0.271186440678246,0.220689655172375,0.264406779661316,0.220689655172375,0.277966101695176,0.227586206896496,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5221,5279,5281,5339,0.213793103448254,0.284745762712106,0.220689655172375,0.277966101695176,0.220689655172375,0.291525423729036,0.227586206896496,0.284745762712106,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5222,5280,5282,5340,0.213793103448254,0.298305084745975,0.220689655172375,0.291525423729036,0.220689655172375,0.305084745762915,0.227586206896496,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033879,0.000000000000000,2 -5223,5281,5283,5341,0.213793103448254,0.311864406779851,0.220689655172375,0.305084745762915,0.220689655172375,0.318644067796787,0.227586206896496,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033872,0.000000000000000,2 -5224,5282,5284,5342,0.213793103448254,0.325423728813729,0.220689655172375,0.318644067796787,0.220689655172375,0.332203389830671,0.227586206896496,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.013559322033883,0.000000000000000,2 -5225,5283,5285,5343,0.213793103448254,0.338983050847605,0.220689655172375,0.332203389830671,0.220689655172375,0.345762711864539,0.227586206896496,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033869,0.000000000000000,2 -5226,5284,5286,5344,0.213793103448254,0.352542372881469,0.220689655172375,0.345762711864539,0.220689655172375,0.359322033898399,0.227586206896496,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5227,5285,5287,5345,0.213793103448254,0.366101694915329,0.220689655172375,0.359322033898399,0.220689655172375,0.372881355932259,0.227586206896496,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,0.000000000000000,2 -5228,5286,5288,5346,0.213793103448254,0.379661016949189,0.220689655172375,0.372881355932259,0.220689655172375,0.386440677966119,0.227586206896496,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.013559322033860,-0.000000000000000,2 -5229,5287,5347,6896,0.213793103448254,0.393220338983059,0.220689655172375,0.386440677966119,0.227586206896496,0.393220338983059,0.220689655172375,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448243,0.013559322033881,0.000000000000000,0.000000000000000,0.013793103448243,2 -4806,5230,5290,5348,0.234482758620623,-0.400000000000000,0.227586206896496,-0.393220338983034,0.234482758620623,-0.386440677966068,0.241379310344750,-0.393220338983034,-0.000000000000000,-0.013793103448254,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448254,0.013559322033932,0.000000000000000,2 -5231,5289,5291,5349,0.227586206896496,-0.379661016949095,0.234482758620623,-0.386440677966068,0.234482758620623,-0.372881355932121,0.241379310344750,-0.379661016949095,-0.013559322033946,0.000000000000000,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033946,-0.000000000000000,2 -5232,5290,5292,5350,0.227586206896496,-0.366101694915163,0.234482758620623,-0.372881355932121,0.234482758620623,-0.359322033898204,0.241379310344750,-0.366101694915163,-0.013559322033918,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033918,0.000000000000000,2 -5233,5291,5293,5351,0.227586206896496,-0.352542372881227,0.234482758620623,-0.359322033898204,0.234482758620623,-0.345762711864250,0.241379310344750,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033954,-0.000000000000000,2 -5234,5292,5294,5352,0.227586206896496,-0.338983050847293,0.234482758620623,-0.345762711864250,0.234482758620623,-0.332203389830336,0.241379310344750,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033914,0.000000000000000,2 -5235,5293,5295,5353,0.227586206896496,-0.325423728813361,0.234482758620623,-0.332203389830336,0.234482758620623,-0.318644067796386,0.241379310344750,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033950,-0.000000000000000,2 -5236,5294,5296,5354,0.227586206896496,-0.311864406779421,0.234482758620623,-0.318644067796386,0.234482758620623,-0.305084745762457,0.241379310344750,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033928,0.000000000000000,2 -5237,5295,5297,5355,0.227586206896496,-0.298305084745489,0.234482758620623,-0.305084745762457,0.234482758620623,-0.291525423728521,0.241379310344750,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448253,0.013559322033936,0.000000000000000,2 -5238,5296,5298,5356,0.227586206896496,-0.284745762711550,0.234482758620623,-0.291525423728521,0.234482758620623,-0.277966101694579,0.241379310344750,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448253,0.000000000000000,0.013793103448254,0.013559322033942,-0.000000000000000,2 -5239,5297,5299,5357,0.227586206896496,-0.271186440677618,0.234482758620623,-0.277966101694579,0.234482758620623,-0.264406779660657,0.241379310344750,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033922,0.000000000000000,2 -5240,5298,5300,5358,0.227586206896496,-0.257627118643680,0.234482758620623,-0.264406779660657,0.234482758620623,-0.250847457626703,0.241379310344750,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033954,0.000000000000000,2 -5241,5299,5301,5359,0.227586206896496,-0.244067796609748,0.234482758620623,-0.250847457626703,0.234482758620623,-0.237288135592793,0.241379310344750,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033910,0.000000000000000,2 -5242,5300,5302,5360,0.227586206896496,-0.230508474575816,0.234482758620623,-0.237288135592793,0.234482758620623,-0.223728813558839,0.241379310344750,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033954,0.000000000000000,2 -5243,5301,5303,5361,0.227586206896496,-0.216949152541877,0.234482758620623,-0.223728813558839,0.234482758620623,-0.210169491524915,0.241379310344750,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033924,0.000000000000000,2 -5244,5302,5304,5362,0.227586206896496,-0.203389830507945,0.234482758620623,-0.210169491524915,0.234482758620623,-0.196610169490975,0.241379310344750,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033940,-0.000000000000000,2 -5245,5303,5305,5363,0.227586206896496,-0.189830508474016,0.234482758620623,-0.196610169490975,0.234482758620623,-0.183050847457058,0.241379310344750,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033917,0.000000000000000,2 -5246,5304,5306,5364,0.227586206896496,-0.176271186440084,0.234482758620623,-0.183050847457058,0.234482758620623,-0.169491525423110,0.241379310344750,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033947,0.000000000000000,2 -5247,5305,5307,5365,0.227586206896496,-0.162711864406145,0.234482758620623,-0.169491525423110,0.234482758620623,-0.155932203389179,0.241379310344750,-0.162711864406145,-0.013559322033931,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033931,0.000000000000000,2 -5248,5306,5308,5366,0.227586206896496,-0.149152542372213,0.234482758620623,-0.155932203389179,0.234482758620623,-0.142372881355246,0.241379310344750,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033933,0.000000000000000,2 -5249,5307,5309,5367,0.227586206896496,-0.135593220338273,0.234482758620623,-0.142372881355246,0.234482758620623,-0.128813559321301,0.241379310344750,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033945,0.000000000000000,2 -5250,5308,5310,5368,0.227586206896496,-0.122033898304341,0.234482758620623,-0.128813559321301,0.234482758620623,-0.115254237287382,0.241379310344750,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033919,0.000000000000000,2 -5251,5309,5311,5369,0.227586206896496,-0.108474576270409,0.234482758620623,-0.115254237287382,0.234482758620623,-0.101694915253436,0.241379310344750,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033946,0.000000000000000,2 -5252,5310,5312,5370,0.227586206896496,-0.094915254236471,0.234482758620623,-0.101694915253436,0.234482758620623,-0.088135593219506,0.241379310344750,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033930,0.000000000000000,2 -5253,5311,5313,5371,0.227586206896496,-0.081355932202535,0.234482758620623,-0.088135593219506,0.234482758620623,-0.074576271185564,0.241379310344750,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033941,0.000000000000000,2 -5254,5312,5314,5372,0.227586206896496,-0.067796610168599,0.234482758620623,-0.074576271185564,0.234482758620623,-0.061016949151634,0.241379310344750,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033930,0.000000000000000,2 -5255,5313,5315,5373,0.227586206896496,-0.054237288134667,0.234482758620623,-0.061016949151634,0.234482758620623,-0.047457627117699,0.241379310344750,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033935,0.000000000000000,2 -5256,5314,5316,5374,0.227586206896496,-0.040677966100731,0.234482758620623,-0.047457627117699,0.234482758620623,-0.033898305083763,0.241379310344750,-0.040677966100731,-0.013559322033937,0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033937,0.000000000000000,2 -5257,5315,5317,5375,0.227586206896496,-0.027118644066798,0.234482758620623,-0.033898305083763,0.234482758620623,-0.020338983049833,0.241379310344750,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033930,0.000000000000000,2 -5258,5316,5318,5376,0.227586206896496,-0.013559322032862,0.234482758620623,-0.020338983049833,0.234482758620623,-0.006779661015891,0.241379310344750,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033941,0.000000000000000,2 -5259,5317,5319,5377,0.227586206896496,0.000000000001056,0.234482758620623,-0.006779661015891,0.234482758620623,0.006779661018004,0.241379310344750,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033895,0.000000000000000,2 -5260,5318,5320,5378,0.227586206896496,0.013559322034934,0.234482758620623,0.006779661018004,0.234482758620623,0.020338983051863,0.241379310344750,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5261,5319,5321,5379,0.227586206896496,0.027118644068793,0.234482758620623,0.020338983051863,0.234482758620623,0.033898305085723,0.241379310344750,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5262,5320,5322,5380,0.227586206896496,0.040677966102653,0.234482758620623,0.033898305085723,0.234482758620623,0.047457627119583,0.241379310344750,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5263,5321,5323,5381,0.227586206896496,0.054237288136513,0.234482758620623,0.047457627119583,0.234482758620623,0.061016949153442,0.241379310344750,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5264,5322,5324,5382,0.227586206896496,0.067796610170372,0.234482758620623,0.061016949153442,0.234482758620623,0.074576271187302,0.241379310344750,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5265,5323,5325,5383,0.227586206896496,0.081355932204232,0.234482758620623,0.074576271187302,0.234482758620623,0.088135593221162,0.241379310344750,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5266,5324,5326,5384,0.227586206896496,0.094915254238085,0.234482758620623,0.088135593221162,0.234482758620623,0.101694915255008,0.241379310344750,0.094915254238085,-0.013559322033846,0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033846,0.000000000000000,2 -5267,5325,5327,5385,0.227586206896496,0.108474576271933,0.234482758620623,0.101694915255008,0.234482758620623,0.115254237288859,0.241379310344750,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033852,0.000000000000000,2 -5268,5326,5328,5386,0.227586206896496,0.122033898305789,0.234482758620623,0.115254237288859,0.234482758620623,0.128813559322719,0.241379310344750,0.122033898305789,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5269,5327,5329,5387,0.227586206896496,0.135593220339649,0.234482758620623,0.128813559322719,0.234482758620623,0.142372881356579,0.241379310344750,0.135593220339649,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5270,5328,5330,5388,0.227586206896496,0.149152542373509,0.234482758620623,0.142372881356579,0.234482758620623,0.155932203390438,0.241379310344750,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5271,5329,5331,5389,0.227586206896496,0.162711864407368,0.234482758620623,0.155932203390438,0.234482758620623,0.169491525424298,0.241379310344750,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5272,5330,5332,5390,0.227586206896496,0.176271186441228,0.234482758620623,0.169491525424298,0.234482758620623,0.183050847458158,0.241379310344750,0.176271186441228,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5273,5331,5333,5391,0.227586206896497,0.189830508475088,0.234482758620623,0.183050847458158,0.234482758620623,0.196610169492018,0.241379310344750,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5274,5332,5334,5392,0.227586206896497,0.203389830508947,0.234482758620623,0.196610169492018,0.234482758620623,0.210169491525877,0.241379310344750,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5275,5333,5335,5393,0.227586206896497,0.216949152542807,0.234482758620623,0.210169491525877,0.234482758620623,0.223728813559737,0.241379310344750,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5276,5334,5336,5394,0.227586206896497,0.230508474576667,0.234482758620623,0.223728813559737,0.234482758620623,0.237288135593597,0.241379310344750,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5277,5335,5337,5395,0.227586206896496,0.244067796610527,0.234482758620623,0.237288135593597,0.234482758620623,0.250847457627456,0.241379310344750,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5278,5336,5338,5396,0.227586206896496,0.257627118644386,0.234482758620623,0.250847457627456,0.234482758620623,0.264406779661316,0.241379310344750,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5279,5337,5339,5397,0.227586206896496,0.271186440678246,0.234482758620623,0.264406779661316,0.234482758620623,0.277966101695176,0.241379310344750,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5280,5338,5340,5398,0.227586206896496,0.284745762712106,0.234482758620623,0.277966101695176,0.234482758620623,0.291525423729036,0.241379310344750,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5281,5339,5341,5399,0.227586206896496,0.298305084745975,0.234482758620623,0.291525423729036,0.234482758620623,0.305084745762915,0.241379310344750,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033879,0.000000000000000,2 -5282,5340,5342,5400,0.227586206896496,0.311864406779851,0.234482758620623,0.305084745762915,0.234482758620623,0.318644067796787,0.241379310344750,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.013559322033873,0.000000000000000,2 -5283,5341,5343,5401,0.227586206896496,0.325423728813729,0.234482758620623,0.318644067796787,0.234482758620623,0.332203389830671,0.241379310344750,0.325423728813729,-0.013559322033883,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033883,0.000000000000000,2 -5284,5342,5344,5402,0.227586206896496,0.338983050847605,0.234482758620623,0.332203389830671,0.234482758620623,0.345762711864539,0.241379310344750,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033869,0.000000000000000,2 -5285,5343,5345,5403,0.227586206896496,0.352542372881469,0.234482758620623,0.345762711864539,0.234482758620623,0.359322033898399,0.241379310344750,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5286,5344,5346,5404,0.227586206896496,0.366101694915329,0.234482758620623,0.359322033898399,0.234482758620623,0.372881355932259,0.241379310344750,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5287,5345,5347,5405,0.227586206896496,0.379661016949189,0.234482758620623,0.372881355932259,0.234482758620623,0.386440677966119,0.241379310344750,0.379661016949189,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.013559322033860,0.000000000000000,2 -5288,5346,5406,6910,0.227586206896496,0.393220338983059,0.234482758620623,0.386440677966119,0.241379310344750,0.393220338983059,0.234482758620623,0.400000000000000,-0.013559322033881,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448254,2 -4820,5289,5349,5407,0.248275862068872,-0.400000000000000,0.241379310344750,-0.393220338983034,0.248275862068872,-0.386440677966068,0.255172413792995,-0.393220338983034,-0.000000000000000,-0.013793103448245,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448245,0.013559322033932,-0.000000000000000,2 -5290,5348,5350,5408,0.241379310344750,-0.379661016949095,0.248275862068872,-0.386440677966068,0.248275862068872,-0.372881355932121,0.255172413792995,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033946,0.000000000000000,2 -5291,5349,5351,5409,0.241379310344750,-0.366101694915163,0.248275862068872,-0.372881355932121,0.248275862068872,-0.359322033898204,0.255172413792995,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033918,-0.000000000000000,2 -5292,5350,5352,5410,0.241379310344750,-0.352542372881227,0.248275862068872,-0.359322033898204,0.248275862068872,-0.345762711864250,0.255172413792995,-0.352542372881227,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033954,0.000000000000000,2 -5293,5351,5353,5411,0.241379310344750,-0.338983050847293,0.248275862068872,-0.345762711864250,0.248275862068872,-0.332203389830336,0.255172413792995,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033914,0.000000000000000,2 -5294,5352,5354,5412,0.241379310344750,-0.325423728813361,0.248275862068872,-0.332203389830336,0.248275862068872,-0.318644067796386,0.255172413792995,-0.325423728813361,-0.013559322033950,0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033950,0.000000000000000,2 -5295,5353,5355,5413,0.241379310344750,-0.311864406779422,0.248275862068872,-0.318644067796386,0.248275862068872,-0.305084745762457,0.255172413792995,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033928,0.000000000000000,2 -5296,5354,5356,5414,0.241379310344750,-0.298305084745489,0.248275862068872,-0.305084745762457,0.248275862068872,-0.291525423728521,0.255172413792995,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033936,-0.000000000000000,2 -5297,5355,5357,5415,0.241379310344750,-0.284745762711550,0.248275862068872,-0.291525423728521,0.248275862068872,-0.277966101694579,0.255172413792995,-0.284745762711550,-0.013559322033942,0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033942,0.000000000000000,2 -5298,5356,5358,5416,0.241379310344750,-0.271186440677618,0.248275862068872,-0.277966101694579,0.248275862068872,-0.264406779660657,0.255172413792995,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033922,-0.000000000000000,2 -5299,5357,5359,5417,0.241379310344750,-0.257627118643680,0.248275862068872,-0.264406779660657,0.248275862068872,-0.250847457626703,0.255172413792995,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033954,0.000000000000000,2 -5300,5358,5360,5418,0.241379310344750,-0.244067796609748,0.248275862068872,-0.250847457626703,0.248275862068872,-0.237288135592793,0.255172413792995,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033910,0.000000000000000,2 -5301,5359,5361,5419,0.241379310344750,-0.230508474575816,0.248275862068872,-0.237288135592793,0.248275862068872,-0.223728813558839,0.255172413792995,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033954,0.000000000000000,2 -5302,5360,5362,5420,0.241379310344750,-0.216949152541877,0.248275862068872,-0.223728813558839,0.248275862068872,-0.210169491524915,0.255172413792995,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033924,0.000000000000000,2 -5303,5361,5363,5421,0.241379310344750,-0.203389830507945,0.248275862068872,-0.210169491524915,0.248275862068872,-0.196610169490975,0.255172413792995,-0.203389830507945,-0.013559322033940,0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033940,0.000000000000000,2 -5304,5362,5364,5422,0.241379310344750,-0.189830508474016,0.248275862068872,-0.196610169490975,0.248275862068872,-0.183050847457058,0.255172413792995,-0.189830508474016,-0.013559322033917,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033917,0.000000000000000,2 -5305,5363,5365,5423,0.241379310344750,-0.176271186440084,0.248275862068872,-0.183050847457058,0.248275862068872,-0.169491525423110,0.255172413792995,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033947,0.000000000000000,2 -5306,5364,5366,5424,0.241379310344750,-0.162711864406145,0.248275862068872,-0.169491525423110,0.248275862068872,-0.155932203389179,0.255172413792995,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033931,0.000000000000000,2 -5307,5365,5367,5425,0.241379310344750,-0.149152542372213,0.248275862068872,-0.155932203389179,0.248275862068872,-0.142372881355246,0.255172413792995,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033933,0.000000000000000,2 -5308,5366,5368,5426,0.241379310344750,-0.135593220338274,0.248275862068872,-0.142372881355246,0.248275862068872,-0.128813559321301,0.255172413792995,-0.135593220338274,-0.013559322033945,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033945,0.000000000000000,2 -5309,5367,5369,5427,0.241379310344750,-0.122033898304341,0.248275862068872,-0.128813559321301,0.248275862068872,-0.115254237287382,0.255172413792995,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033919,0.000000000000000,2 -5310,5368,5370,5428,0.241379310344750,-0.108474576270409,0.248275862068872,-0.115254237287382,0.248275862068872,-0.101694915253436,0.255172413792995,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033946,0.000000000000000,2 -5311,5369,5371,5429,0.241379310344750,-0.094915254236471,0.248275862068872,-0.101694915253436,0.248275862068872,-0.088135593219506,0.255172413792995,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033930,0.000000000000000,2 -5312,5370,5372,5430,0.241379310344750,-0.081355932202535,0.248275862068872,-0.088135593219506,0.248275862068872,-0.074576271185564,0.255172413792995,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033941,0.000000000000000,2 -5313,5371,5373,5431,0.241379310344750,-0.067796610168599,0.248275862068872,-0.074576271185564,0.248275862068872,-0.061016949151634,0.255172413792995,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033930,0.000000000000000,2 -5314,5372,5374,5432,0.241379310344750,-0.054237288134667,0.248275862068872,-0.061016949151634,0.248275862068872,-0.047457627117699,0.255172413792995,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033935,0.000000000000000,2 -5315,5373,5375,5433,0.241379310344750,-0.040677966100731,0.248275862068872,-0.047457627117699,0.248275862068872,-0.033898305083763,0.255172413792995,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033937,0.000000000000000,2 -5316,5374,5376,5434,0.241379310344750,-0.027118644066798,0.248275862068872,-0.033898305083763,0.248275862068872,-0.020338983049833,0.255172413792995,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033930,0.000000000000000,2 -5317,5375,5377,5435,0.241379310344750,-0.013559322032862,0.248275862068872,-0.020338983049833,0.248275862068872,-0.006779661015891,0.255172413792995,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033941,0.000000000000000,2 -5318,5376,5378,5436,0.241379310344750,0.000000000001056,0.248275862068872,-0.006779661015891,0.248275862068872,0.006779661018004,0.255172413792995,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033895,0.000000000000000,2 -5319,5377,5379,5437,0.241379310344750,0.013559322034933,0.248275862068872,0.006779661018004,0.248275862068872,0.020338983051863,0.255172413792995,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5320,5378,5380,5438,0.241379310344750,0.027118644068793,0.248275862068872,0.020338983051863,0.248275862068872,0.033898305085723,0.255172413792995,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5321,5379,5381,5439,0.241379310344750,0.040677966102653,0.248275862068872,0.033898305085723,0.248275862068872,0.047457627119583,0.255172413792995,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5322,5380,5382,5440,0.241379310344750,0.054237288136513,0.248275862068872,0.047457627119583,0.248275862068872,0.061016949153442,0.255172413792995,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5323,5381,5383,5441,0.241379310344750,0.067796610170372,0.248275862068872,0.061016949153442,0.248275862068872,0.074576271187302,0.255172413792995,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5324,5382,5384,5442,0.241379310344750,0.081355932204232,0.248275862068872,0.074576271187302,0.248275862068872,0.088135593221162,0.255172413792995,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5325,5383,5385,5443,0.241379310344750,0.094915254238085,0.248275862068872,0.088135593221162,0.248275862068872,0.101694915255008,0.255172413792995,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033846,0.000000000000000,2 -5326,5384,5386,5444,0.241379310344750,0.108474576271933,0.248275862068872,0.101694915255008,0.248275862068872,0.115254237288859,0.255172413792995,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033852,0.000000000000000,2 -5327,5385,5387,5445,0.241379310344750,0.122033898305789,0.248275862068872,0.115254237288859,0.248275862068872,0.128813559322719,0.255172413792995,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5328,5386,5388,5446,0.241379310344750,0.135593220339649,0.248275862068872,0.128813559322719,0.248275862068872,0.142372881356579,0.255172413792995,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5329,5387,5389,5447,0.241379310344750,0.149152542373509,0.248275862068872,0.142372881356579,0.248275862068872,0.155932203390438,0.255172413792995,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5330,5388,5390,5448,0.241379310344750,0.162711864407368,0.248275862068872,0.155932203390438,0.248275862068872,0.169491525424298,0.255172413792995,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5331,5389,5391,5449,0.241379310344750,0.176271186441228,0.248275862068872,0.169491525424298,0.248275862068872,0.183050847458158,0.255172413792995,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5332,5390,5392,5450,0.241379310344750,0.189830508475088,0.248275862068872,0.183050847458158,0.248275862068872,0.196610169492018,0.255172413792995,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5333,5391,5393,5451,0.241379310344750,0.203389830508947,0.248275862068872,0.196610169492018,0.248275862068872,0.210169491525877,0.255172413792995,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5334,5392,5394,5452,0.241379310344750,0.216949152542807,0.248275862068872,0.210169491525877,0.248275862068872,0.223728813559737,0.255172413792995,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5335,5393,5395,5453,0.241379310344750,0.230508474576667,0.248275862068872,0.223728813559737,0.248275862068872,0.237288135593597,0.255172413792995,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5336,5394,5396,5454,0.241379310344750,0.244067796610527,0.248275862068872,0.237288135593597,0.248275862068872,0.250847457627456,0.255172413792995,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5337,5395,5397,5455,0.241379310344750,0.257627118644386,0.248275862068872,0.250847457627456,0.248275862068872,0.264406779661316,0.255172413792995,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5338,5396,5398,5456,0.241379310344750,0.271186440678246,0.248275862068872,0.264406779661316,0.248275862068872,0.277966101695176,0.255172413792995,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5339,5397,5399,5457,0.241379310344750,0.284745762712106,0.248275862068872,0.277966101695176,0.248275862068872,0.291525423729036,0.255172413792995,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5340,5398,5400,5458,0.241379310344750,0.298305084745975,0.248275862068872,0.291525423729036,0.248275862068872,0.305084745762915,0.255172413792995,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033879,0.000000000000000,2 -5341,5399,5401,5459,0.241379310344750,0.311864406779851,0.248275862068872,0.305084745762915,0.248275862068872,0.318644067796787,0.255172413792995,0.311864406779851,-0.013559322033873,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033872,0.000000000000000,2 -5342,5400,5402,5460,0.241379310344750,0.325423728813729,0.248275862068872,0.318644067796787,0.248275862068872,0.332203389830671,0.255172413792995,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033883,0.000000000000000,2 -5343,5401,5403,5461,0.241379310344750,0.338983050847605,0.248275862068872,0.332203389830671,0.248275862068872,0.345762711864539,0.255172413792995,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033869,0.000000000000000,2 -5344,5402,5404,5462,0.241379310344750,0.352542372881469,0.248275862068872,0.345762711864539,0.248275862068872,0.359322033898399,0.255172413792995,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5345,5403,5405,5463,0.241379310344750,0.366101694915329,0.248275862068872,0.359322033898399,0.248275862068872,0.372881355932259,0.255172413792995,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5346,5404,5406,5464,0.241379310344750,0.379661016949189,0.248275862068872,0.372881355932259,0.248275862068872,0.386440677966119,0.255172413792995,0.379661016949189,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.013559322033860,0.000000000000000,2 -5347,5405,5465,6924,0.241379310344750,0.393220338983059,0.248275862068872,0.386440677966119,0.255172413792995,0.393220338983059,0.248275862068872,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448245,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448245,2 -4834,5348,5408,5466,0.262068965517112,-0.400000000000000,0.255172413792995,-0.393220338983034,0.262068965517112,-0.386440677966068,0.268965517241230,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,0.000000000000000,-0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 -5349,5407,5409,5467,0.255172413792995,-0.379661016949095,0.262068965517112,-0.386440677966068,0.262068965517112,-0.372881355932121,0.268965517241230,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033946,-0.000000000000000,2 -5350,5408,5410,5468,0.255172413792995,-0.366101694915163,0.262068965517112,-0.372881355932121,0.262068965517112,-0.359322033898204,0.268965517241230,-0.366101694915163,-0.013559322033918,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 -5351,5409,5411,5469,0.255172413792995,-0.352542372881227,0.262068965517112,-0.359322033898204,0.262068965517112,-0.345762711864250,0.268965517241230,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5352,5410,5412,5470,0.255172413792995,-0.338983050847293,0.262068965517112,-0.345762711864250,0.262068965517112,-0.332203389830336,0.268965517241230,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 -5353,5411,5413,5471,0.255172413792995,-0.325423728813361,0.262068965517112,-0.332203389830336,0.262068965517112,-0.318644067796386,0.268965517241230,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 -5354,5412,5414,5472,0.255172413792995,-0.311864406779422,0.262068965517112,-0.318644067796386,0.262068965517112,-0.305084745762457,0.268965517241230,-0.311864406779421,-0.013559322033928,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,0.000000000000000,2 -5355,5413,5415,5473,0.255172413792995,-0.298305084745489,0.262068965517112,-0.305084745762457,0.262068965517112,-0.291525423728521,0.268965517241230,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 -5356,5414,5416,5474,0.255172413792995,-0.284745762711550,0.262068965517112,-0.291525423728521,0.262068965517112,-0.277966101694579,0.268965517241230,-0.284745762711550,-0.013559322033942,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 -5357,5415,5417,5475,0.255172413792995,-0.271186440677618,0.262068965517112,-0.277966101694579,0.262068965517112,-0.264406779660657,0.268965517241230,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,0.000000000000000,2 -5358,5416,5418,5476,0.255172413792995,-0.257627118643680,0.262068965517112,-0.264406779660657,0.262068965517112,-0.250847457626703,0.268965517241230,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5359,5417,5419,5477,0.255172413792995,-0.244067796609748,0.262068965517112,-0.250847457626703,0.262068965517112,-0.237288135592793,0.268965517241230,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 -5360,5418,5420,5478,0.255172413792995,-0.230508474575816,0.262068965517112,-0.237288135592793,0.262068965517112,-0.223728813558839,0.268965517241230,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5361,5419,5421,5479,0.255172413792995,-0.216949152541877,0.262068965517112,-0.223728813558839,0.262068965517112,-0.210169491524915,0.268965517241230,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,0.000000000000000,2 -5362,5420,5422,5480,0.255172413792995,-0.203389830507945,0.262068965517112,-0.210169491524915,0.262068965517112,-0.196610169490975,0.268965517241230,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 -5363,5421,5423,5481,0.255172413792995,-0.189830508474016,0.262068965517112,-0.196610169490975,0.262068965517112,-0.183050847457058,0.268965517241230,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 -5364,5422,5424,5482,0.255172413792995,-0.176271186440084,0.262068965517112,-0.183050847457058,0.262068965517112,-0.169491525423110,0.268965517241230,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 -5365,5423,5425,5483,0.255172413792995,-0.162711864406145,0.262068965517112,-0.169491525423110,0.262068965517112,-0.155932203389179,0.268965517241230,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 -5366,5424,5426,5484,0.255172413792995,-0.149152542372213,0.262068965517112,-0.155932203389179,0.262068965517112,-0.142372881355246,0.268965517241230,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 -5367,5425,5427,5485,0.255172413792995,-0.135593220338274,0.262068965517112,-0.142372881355246,0.262068965517112,-0.128813559321301,0.268965517241230,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,0.000000000000000,2 -5368,5426,5428,5486,0.255172413792995,-0.122033898304341,0.262068965517112,-0.128813559321301,0.262068965517112,-0.115254237287382,0.268965517241230,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 -5369,5427,5429,5487,0.255172413792995,-0.108474576270409,0.262068965517112,-0.115254237287382,0.262068965517112,-0.101694915253436,0.268965517241230,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5370,5428,5430,5488,0.255172413792995,-0.094915254236471,0.262068965517112,-0.101694915253436,0.262068965517112,-0.088135593219506,0.268965517241230,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5371,5429,5431,5489,0.255172413792995,-0.081355932202535,0.262068965517112,-0.088135593219506,0.262068965517112,-0.074576271185564,0.268965517241230,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5372,5430,5432,5490,0.255172413792995,-0.067796610168599,0.262068965517112,-0.074576271185564,0.262068965517112,-0.061016949151634,0.268965517241230,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5373,5431,5433,5491,0.255172413792995,-0.054237288134667,0.262068965517112,-0.061016949151634,0.262068965517112,-0.047457627117699,0.268965517241230,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,0.000000000000000,2 -5374,5432,5434,5492,0.255172413792995,-0.040677966100731,0.262068965517112,-0.047457627117699,0.262068965517112,-0.033898305083763,0.268965517241230,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 -5375,5433,5435,5493,0.255172413792995,-0.027118644066798,0.262068965517112,-0.033898305083763,0.262068965517112,-0.020338983049833,0.268965517241230,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5376,5434,5436,5494,0.255172413792995,-0.013559322032862,0.262068965517112,-0.020338983049833,0.262068965517112,-0.006779661015891,0.268965517241230,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5377,5435,5437,5495,0.255172413792995,0.000000000001056,0.262068965517112,-0.006779661015891,0.262068965517112,0.006779661018004,0.268965517241230,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 -5378,5436,5438,5496,0.255172413792995,0.013559322034933,0.262068965517112,0.006779661018004,0.262068965517112,0.020338983051863,0.268965517241230,0.013559322034933,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5379,5437,5439,5497,0.255172413792995,0.027118644068793,0.262068965517112,0.020338983051863,0.262068965517112,0.033898305085723,0.268965517241230,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5380,5438,5440,5498,0.255172413792995,0.040677966102653,0.262068965517112,0.033898305085723,0.262068965517112,0.047457627119583,0.268965517241230,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5381,5439,5441,5499,0.255172413792995,0.054237288136513,0.262068965517112,0.047457627119583,0.262068965517112,0.061016949153442,0.268965517241230,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5382,5440,5442,5500,0.255172413792995,0.067796610170372,0.262068965517112,0.061016949153442,0.262068965517112,0.074576271187302,0.268965517241230,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5383,5441,5443,5501,0.255172413792995,0.081355932204232,0.262068965517112,0.074576271187302,0.262068965517112,0.088135593221162,0.268965517241230,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5384,5442,5444,5502,0.255172413792995,0.094915254238085,0.262068965517112,0.088135593221162,0.262068965517112,0.101694915255008,0.268965517241230,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 -5385,5443,5445,5503,0.255172413792995,0.108474576271933,0.262068965517112,0.101694915255008,0.262068965517112,0.115254237288859,0.268965517241230,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 -5386,5444,5446,5504,0.255172413792995,0.122033898305789,0.262068965517112,0.115254237288859,0.262068965517112,0.128813559322719,0.268965517241230,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5387,5445,5447,5505,0.255172413792995,0.135593220339649,0.262068965517112,0.128813559322719,0.262068965517112,0.142372881356579,0.268965517241230,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5388,5446,5448,5506,0.255172413792995,0.149152542373509,0.262068965517112,0.142372881356579,0.262068965517112,0.155932203390438,0.268965517241230,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5389,5447,5449,5507,0.255172413792995,0.162711864407368,0.262068965517112,0.155932203390438,0.262068965517112,0.169491525424298,0.268965517241230,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5390,5448,5450,5508,0.255172413792995,0.176271186441228,0.262068965517112,0.169491525424298,0.262068965517112,0.183050847458158,0.268965517241230,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5391,5449,5451,5509,0.255172413792995,0.189830508475088,0.262068965517112,0.183050847458158,0.262068965517112,0.196610169492018,0.268965517241230,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5392,5450,5452,5510,0.255172413792995,0.203389830508947,0.262068965517112,0.196610169492018,0.262068965517112,0.210169491525877,0.268965517241230,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5393,5451,5453,5511,0.255172413792995,0.216949152542807,0.262068965517112,0.210169491525877,0.262068965517112,0.223728813559737,0.268965517241230,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5394,5452,5454,5512,0.255172413792995,0.230508474576667,0.262068965517112,0.223728813559737,0.262068965517112,0.237288135593597,0.268965517241230,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5395,5453,5455,5513,0.255172413792995,0.244067796610527,0.262068965517112,0.237288135593597,0.262068965517112,0.250847457627456,0.268965517241230,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5396,5454,5456,5514,0.255172413792995,0.257627118644386,0.262068965517112,0.250847457627456,0.262068965517112,0.264406779661316,0.268965517241230,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5397,5455,5457,5515,0.255172413792995,0.271186440678246,0.262068965517112,0.264406779661316,0.262068965517112,0.277966101695176,0.268965517241230,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5398,5456,5458,5516,0.255172413792995,0.284745762712106,0.262068965517112,0.277966101695176,0.262068965517112,0.291525423729036,0.268965517241230,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5399,5457,5459,5517,0.255172413792995,0.298305084745975,0.262068965517112,0.291525423729036,0.262068965517112,0.305084745762915,0.268965517241230,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 -5400,5458,5460,5518,0.255172413792995,0.311864406779851,0.262068965517112,0.305084745762915,0.262068965517112,0.318644067796787,0.268965517241230,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 -5401,5459,5461,5519,0.255172413792995,0.325423728813729,0.262068965517112,0.318644067796787,0.262068965517112,0.332203389830671,0.268965517241230,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 -5402,5460,5462,5520,0.255172413792995,0.338983050847605,0.262068965517112,0.332203389830671,0.262068965517112,0.345762711864539,0.268965517241230,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 -5403,5461,5463,5521,0.255172413792995,0.352542372881469,0.262068965517112,0.345762711864539,0.262068965517112,0.359322033898399,0.268965517241230,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5404,5462,5464,5522,0.255172413792995,0.366101694915329,0.262068965517112,0.359322033898399,0.262068965517112,0.372881355932259,0.268965517241230,0.366101694915329,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5405,5463,5465,5523,0.255172413792995,0.379661016949189,0.262068965517112,0.372881355932259,0.262068965517112,0.386440677966119,0.268965517241230,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5406,5464,5524,6938,0.255172413792995,0.393220338983059,0.262068965517112,0.386440677966119,0.268965517241230,0.393220338983059,0.262068965517112,0.400000000000000,-0.013559322033881,0.000000000000000,0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 -4848,5407,5467,5525,0.275862068965347,-0.400000000000000,0.268965517241230,-0.393220338983034,0.275862068965347,-0.386440677966068,0.282758620689465,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 -5408,5466,5468,5526,0.268965517241230,-0.379661016949095,0.275862068965347,-0.386440677966068,0.275862068965347,-0.372881355932121,0.282758620689465,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5409,5467,5469,5527,0.268965517241230,-0.366101694915163,0.275862068965347,-0.372881355932121,0.275862068965347,-0.359322033898204,0.282758620689465,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 -5410,5468,5470,5528,0.268965517241230,-0.352542372881227,0.275862068965347,-0.359322033898204,0.275862068965347,-0.345762711864250,0.282758620689465,-0.352542372881227,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,-0.000000000000000,2 -5411,5469,5471,5529,0.268965517241230,-0.338983050847293,0.275862068965347,-0.345762711864250,0.275862068965347,-0.332203389830336,0.282758620689465,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 -5412,5470,5472,5530,0.268965517241230,-0.325423728813361,0.275862068965347,-0.332203389830336,0.275862068965347,-0.318644067796386,0.282758620689465,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 -5413,5471,5473,5531,0.268965517241230,-0.311864406779421,0.275862068965347,-0.318644067796386,0.275862068965347,-0.305084745762457,0.282758620689465,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,0.000000000000000,2 -5414,5472,5474,5532,0.268965517241230,-0.298305084745489,0.275862068965347,-0.305084745762457,0.275862068965347,-0.291525423728521,0.282758620689465,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 -5415,5473,5475,5533,0.268965517241230,-0.284745762711550,0.275862068965347,-0.291525423728521,0.275862068965347,-0.277966101694579,0.282758620689465,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 -5416,5474,5476,5534,0.268965517241230,-0.271186440677618,0.275862068965347,-0.277966101694579,0.275862068965347,-0.264406779660657,0.282758620689465,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,-0.000000000000000,2 -5417,5475,5477,5535,0.268965517241230,-0.257627118643680,0.275862068965347,-0.264406779660657,0.275862068965347,-0.250847457626703,0.282758620689465,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5418,5476,5478,5536,0.268965517241230,-0.244067796609748,0.275862068965347,-0.250847457626703,0.275862068965347,-0.237288135592793,0.282758620689465,-0.244067796609748,-0.013559322033910,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 -5419,5477,5479,5537,0.268965517241230,-0.230508474575816,0.275862068965347,-0.237288135592793,0.275862068965347,-0.223728813558839,0.282758620689465,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5420,5478,5480,5538,0.268965517241230,-0.216949152541877,0.275862068965347,-0.223728813558839,0.275862068965347,-0.210169491524915,0.282758620689465,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033924,0.000000000000000,2 -5421,5479,5481,5539,0.268965517241230,-0.203389830507945,0.275862068965347,-0.210169491524915,0.275862068965347,-0.196610169490975,0.282758620689465,-0.203389830507945,-0.013559322033940,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 -5422,5480,5482,5540,0.268965517241230,-0.189830508474016,0.275862068965347,-0.196610169490975,0.275862068965347,-0.183050847457058,0.282758620689465,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 -5423,5481,5483,5541,0.268965517241230,-0.176271186440084,0.275862068965347,-0.183050847457058,0.275862068965347,-0.169491525423110,0.282758620689465,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 -5424,5482,5484,5542,0.268965517241230,-0.162711864406145,0.275862068965347,-0.169491525423110,0.275862068965347,-0.155932203389179,0.282758620689465,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 -5425,5483,5485,5543,0.268965517241230,-0.149152542372213,0.275862068965347,-0.155932203389179,0.275862068965347,-0.142372881355246,0.282758620689465,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 -5426,5484,5486,5544,0.268965517241230,-0.135593220338274,0.275862068965347,-0.142372881355246,0.275862068965347,-0.128813559321301,0.282758620689465,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,0.000000000000000,2 -5427,5485,5487,5545,0.268965517241230,-0.122033898304341,0.275862068965347,-0.128813559321301,0.275862068965347,-0.115254237287382,0.282758620689465,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 -5428,5486,5488,5546,0.268965517241230,-0.108474576270409,0.275862068965347,-0.115254237287382,0.275862068965347,-0.101694915253436,0.282758620689465,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5429,5487,5489,5547,0.268965517241230,-0.094915254236471,0.275862068965347,-0.101694915253436,0.275862068965347,-0.088135593219506,0.282758620689465,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5430,5488,5490,5548,0.268965517241230,-0.081355932202535,0.275862068965347,-0.088135593219506,0.275862068965347,-0.074576271185564,0.282758620689465,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5431,5489,5491,5549,0.268965517241230,-0.067796610168599,0.275862068965347,-0.074576271185564,0.275862068965347,-0.061016949151634,0.282758620689465,-0.067796610168599,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5432,5490,5492,5550,0.268965517241230,-0.054237288134667,0.275862068965347,-0.061016949151634,0.275862068965347,-0.047457627117699,0.282758620689465,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,0.000000000000000,2 -5433,5491,5493,5551,0.268965517241230,-0.040677966100731,0.275862068965347,-0.047457627117699,0.275862068965347,-0.033898305083763,0.282758620689465,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 -5434,5492,5494,5552,0.268965517241230,-0.027118644066798,0.275862068965347,-0.033898305083763,0.275862068965347,-0.020338983049832,0.282758620689465,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5435,5493,5495,5553,0.268965517241230,-0.013559322032862,0.275862068965347,-0.020338983049832,0.275862068965347,-0.006779661015891,0.282758620689465,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5436,5494,5496,5554,0.268965517241230,0.000000000001056,0.275862068965347,-0.006779661015891,0.275862068965347,0.006779661018004,0.282758620689465,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 -5437,5495,5497,5555,0.268965517241230,0.013559322034933,0.275862068965347,0.006779661018004,0.275862068965347,0.020338983051863,0.282758620689465,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5438,5496,5498,5556,0.268965517241230,0.027118644068793,0.275862068965347,0.020338983051863,0.275862068965347,0.033898305085723,0.282758620689465,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5439,5497,5499,5557,0.268965517241230,0.040677966102653,0.275862068965347,0.033898305085723,0.275862068965347,0.047457627119583,0.282758620689465,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5440,5498,5500,5558,0.268965517241230,0.054237288136513,0.275862068965347,0.047457627119583,0.275862068965347,0.061016949153442,0.282758620689465,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5441,5499,5501,5559,0.268965517241230,0.067796610170372,0.275862068965347,0.061016949153442,0.275862068965347,0.074576271187302,0.282758620689465,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5442,5500,5502,5560,0.268965517241230,0.081355932204232,0.275862068965347,0.074576271187302,0.275862068965347,0.088135593221162,0.282758620689465,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5443,5501,5503,5561,0.268965517241230,0.094915254238085,0.275862068965347,0.088135593221162,0.275862068965347,0.101694915255008,0.282758620689465,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 -5444,5502,5504,5562,0.268965517241230,0.108474576271933,0.275862068965347,0.101694915255008,0.275862068965347,0.115254237288859,0.282758620689465,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 -5445,5503,5505,5563,0.268965517241230,0.122033898305789,0.275862068965347,0.115254237288859,0.275862068965347,0.128813559322719,0.282758620689465,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5446,5504,5506,5564,0.268965517241230,0.135593220339649,0.275862068965347,0.128813559322719,0.275862068965347,0.142372881356579,0.282758620689465,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5447,5505,5507,5565,0.268965517241230,0.149152542373509,0.275862068965347,0.142372881356579,0.275862068965347,0.155932203390438,0.282758620689465,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5448,5506,5508,5566,0.268965517241230,0.162711864407368,0.275862068965347,0.155932203390438,0.275862068965347,0.169491525424298,0.282758620689465,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5449,5507,5509,5567,0.268965517241230,0.176271186441228,0.275862068965347,0.169491525424298,0.275862068965347,0.183050847458158,0.282758620689465,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5450,5508,5510,5568,0.268965517241230,0.189830508475088,0.275862068965347,0.183050847458158,0.275862068965347,0.196610169492018,0.282758620689465,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5451,5509,5511,5569,0.268965517241230,0.203389830508947,0.275862068965347,0.196610169492018,0.275862068965347,0.210169491525877,0.282758620689465,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5452,5510,5512,5570,0.268965517241230,0.216949152542807,0.275862068965347,0.210169491525877,0.275862068965347,0.223728813559737,0.282758620689465,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5453,5511,5513,5571,0.268965517241230,0.230508474576667,0.275862068965347,0.223728813559737,0.275862068965347,0.237288135593597,0.282758620689465,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5454,5512,5514,5572,0.268965517241230,0.244067796610527,0.275862068965347,0.237288135593597,0.275862068965347,0.250847457627456,0.282758620689465,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5455,5513,5515,5573,0.268965517241230,0.257627118644386,0.275862068965347,0.250847457627456,0.275862068965347,0.264406779661316,0.282758620689465,0.257627118644386,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5456,5514,5516,5574,0.268965517241230,0.271186440678246,0.275862068965347,0.264406779661316,0.275862068965347,0.277966101695176,0.282758620689465,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5457,5515,5517,5575,0.268965517241230,0.284745762712106,0.275862068965347,0.277966101695176,0.275862068965347,0.291525423729036,0.282758620689465,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5458,5516,5518,5576,0.268965517241230,0.298305084745975,0.275862068965347,0.291525423729036,0.275862068965347,0.305084745762915,0.282758620689465,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 -5459,5517,5519,5577,0.268965517241230,0.311864406779851,0.275862068965347,0.305084745762915,0.275862068965347,0.318644067796787,0.282758620689465,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033873,0.000000000000000,2 -5460,5518,5520,5578,0.268965517241230,0.325423728813729,0.275862068965347,0.318644067796787,0.275862068965347,0.332203389830671,0.282758620689465,0.325423728813729,-0.013559322033883,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 -5461,5519,5521,5579,0.268965517241230,0.338983050847605,0.275862068965347,0.332203389830671,0.275862068965347,0.345762711864539,0.282758620689465,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 -5462,5520,5522,5580,0.268965517241230,0.352542372881469,0.275862068965347,0.345762711864539,0.275862068965347,0.359322033898399,0.282758620689465,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5463,5521,5523,5581,0.268965517241230,0.366101694915329,0.275862068965347,0.359322033898399,0.275862068965347,0.372881355932259,0.282758620689465,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5464,5522,5524,5582,0.268965517241230,0.379661016949189,0.275862068965347,0.372881355932259,0.275862068965347,0.386440677966119,0.282758620689465,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5465,5523,5583,6952,0.268965517241230,0.393220338983059,0.275862068965347,0.386440677966119,0.282758620689465,0.393220338983059,0.275862068965347,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 -4862,5466,5526,5584,0.289655172413583,-0.400000000000000,0.282758620689465,-0.393220338983034,0.289655172413583,-0.386440677966068,0.296551724137700,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 -5467,5525,5527,5585,0.282758620689465,-0.379661016949095,0.289655172413583,-0.386440677966068,0.289655172413583,-0.372881355932122,0.296551724137700,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5468,5526,5528,5586,0.282758620689465,-0.366101694915163,0.289655172413583,-0.372881355932122,0.289655172413583,-0.359322033898204,0.296551724137700,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 -5469,5527,5529,5587,0.282758620689465,-0.352542372881227,0.289655172413583,-0.359322033898204,0.289655172413583,-0.345762711864250,0.296551724137700,-0.352542372881227,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5470,5528,5530,5588,0.282758620689465,-0.338983050847293,0.289655172413583,-0.345762711864250,0.289655172413583,-0.332203389830336,0.296551724137700,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,-0.000000000000000,2 -5471,5529,5531,5589,0.282758620689465,-0.325423728813361,0.289655172413583,-0.332203389830336,0.289655172413583,-0.318644067796386,0.296551724137700,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 -5472,5530,5532,5590,0.282758620689465,-0.311864406779422,0.289655172413583,-0.318644067796386,0.289655172413583,-0.305084745762457,0.296551724137700,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,0.000000000000000,2 -5473,5531,5533,5591,0.282758620689465,-0.298305084745489,0.289655172413583,-0.305084745762457,0.289655172413583,-0.291525423728521,0.296551724137700,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 -5474,5532,5534,5592,0.282758620689465,-0.284745762711550,0.289655172413583,-0.291525423728521,0.289655172413583,-0.277966101694579,0.296551724137700,-0.284745762711550,-0.013559322033942,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,-0.000000000000000,2 -5475,5533,5535,5593,0.282758620689465,-0.271186440677618,0.289655172413583,-0.277966101694579,0.289655172413583,-0.264406779660657,0.296551724137700,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,0.000000000000000,2 -5476,5534,5536,5594,0.282758620689465,-0.257627118643680,0.289655172413583,-0.264406779660657,0.289655172413583,-0.250847457626703,0.296551724137700,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5477,5535,5537,5595,0.282758620689465,-0.244067796609748,0.289655172413583,-0.250847457626703,0.289655172413583,-0.237288135592793,0.296551724137700,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 -5478,5536,5538,5596,0.282758620689465,-0.230508474575816,0.289655172413583,-0.237288135592793,0.289655172413583,-0.223728813558839,0.296551724137700,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,-0.000000000000000,2 -5479,5537,5539,5597,0.282758620689465,-0.216949152541877,0.289655172413583,-0.223728813558839,0.289655172413583,-0.210169491524915,0.296551724137700,-0.216949152541877,-0.013559322033924,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,0.000000000000000,2 -5480,5538,5540,5598,0.282758620689465,-0.203389830507945,0.289655172413583,-0.210169491524915,0.289655172413583,-0.196610169490975,0.296551724137700,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 -5481,5539,5541,5599,0.282758620689465,-0.189830508474016,0.289655172413583,-0.196610169490975,0.289655172413583,-0.183050847457058,0.296551724137700,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,-0.000000000000000,2 -5482,5540,5542,5600,0.282758620689465,-0.176271186440084,0.289655172413583,-0.183050847457058,0.289655172413583,-0.169491525423110,0.296551724137700,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 -5483,5541,5543,5601,0.282758620689465,-0.162711864406145,0.289655172413583,-0.169491525423110,0.289655172413583,-0.155932203389179,0.296551724137700,-0.162711864406145,-0.013559322033931,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 -5484,5542,5544,5602,0.282758620689465,-0.149152542372213,0.289655172413583,-0.155932203389179,0.289655172413583,-0.142372881355246,0.296551724137700,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 -5485,5543,5545,5603,0.282758620689465,-0.135593220338274,0.289655172413583,-0.142372881355246,0.289655172413583,-0.128813559321301,0.296551724137700,-0.135593220338273,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033945,-0.000000000000000,2 -5486,5544,5546,5604,0.282758620689465,-0.122033898304341,0.289655172413583,-0.128813559321301,0.289655172413583,-0.115254237287382,0.296551724137700,-0.122033898304341,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 -5487,5545,5547,5605,0.282758620689465,-0.108474576270409,0.289655172413583,-0.115254237287382,0.289655172413583,-0.101694915253436,0.296551724137700,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5488,5546,5548,5606,0.282758620689465,-0.094915254236471,0.289655172413583,-0.101694915253436,0.289655172413583,-0.088135593219506,0.296551724137700,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5489,5547,5549,5607,0.282758620689465,-0.081355932202535,0.289655172413583,-0.088135593219506,0.289655172413583,-0.074576271185564,0.296551724137700,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5490,5548,5550,5608,0.282758620689465,-0.067796610168599,0.289655172413583,-0.074576271185564,0.289655172413583,-0.061016949151634,0.296551724137700,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5491,5549,5551,5609,0.282758620689465,-0.054237288134667,0.289655172413583,-0.061016949151634,0.289655172413583,-0.047457627117699,0.296551724137700,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,-0.000000000000000,2 -5492,5550,5552,5610,0.282758620689465,-0.040677966100731,0.289655172413583,-0.047457627117699,0.289655172413583,-0.033898305083763,0.296551724137700,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 -5493,5551,5553,5611,0.282758620689465,-0.027118644066798,0.289655172413583,-0.033898305083763,0.289655172413583,-0.020338983049832,0.296551724137700,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5494,5552,5554,5612,0.282758620689465,-0.013559322032862,0.289655172413583,-0.020338983049832,0.289655172413583,-0.006779661015891,0.296551724137700,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5495,5553,5555,5613,0.282758620689465,0.000000000001056,0.289655172413583,-0.006779661015891,0.289655172413583,0.006779661018004,0.296551724137700,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 -5496,5554,5556,5614,0.282758620689465,0.013559322034933,0.289655172413583,0.006779661018004,0.289655172413583,0.020338983051863,0.296551724137700,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5497,5555,5557,5615,0.282758620689465,0.027118644068793,0.289655172413583,0.020338983051863,0.289655172413583,0.033898305085723,0.296551724137700,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5498,5556,5558,5616,0.282758620689465,0.040677966102653,0.289655172413583,0.033898305085723,0.289655172413583,0.047457627119583,0.296551724137700,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5499,5557,5559,5617,0.282758620689465,0.054237288136513,0.289655172413583,0.047457627119583,0.289655172413583,0.061016949153442,0.296551724137700,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5500,5558,5560,5618,0.282758620689465,0.067796610170372,0.289655172413583,0.061016949153442,0.289655172413583,0.074576271187302,0.296551724137700,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5501,5559,5561,5619,0.282758620689465,0.081355932204232,0.289655172413583,0.074576271187302,0.289655172413583,0.088135593221162,0.296551724137700,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5502,5560,5562,5620,0.282758620689465,0.094915254238085,0.289655172413583,0.088135593221162,0.289655172413583,0.101694915255008,0.296551724137700,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 -5503,5561,5563,5621,0.282758620689465,0.108474576271933,0.289655172413583,0.101694915255008,0.289655172413583,0.115254237288859,0.296551724137700,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 -5504,5562,5564,5622,0.282758620689465,0.122033898305789,0.289655172413583,0.115254237288859,0.289655172413583,0.128813559322719,0.296551724137700,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5505,5563,5565,5623,0.282758620689465,0.135593220339649,0.289655172413583,0.128813559322719,0.289655172413583,0.142372881356579,0.296551724137700,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5506,5564,5566,5624,0.282758620689465,0.149152542373509,0.289655172413583,0.142372881356579,0.289655172413583,0.155932203390438,0.296551724137700,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5507,5565,5567,5625,0.282758620689465,0.162711864407368,0.289655172413583,0.155932203390438,0.289655172413583,0.169491525424298,0.296551724137700,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5508,5566,5568,5626,0.282758620689465,0.176271186441228,0.289655172413583,0.169491525424298,0.289655172413583,0.183050847458158,0.296551724137700,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5509,5567,5569,5627,0.282758620689465,0.189830508475088,0.289655172413583,0.183050847458158,0.289655172413583,0.196610169492018,0.296551724137700,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5510,5568,5570,5628,0.282758620689465,0.203389830508947,0.289655172413583,0.196610169492018,0.289655172413583,0.210169491525877,0.296551724137700,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5511,5569,5571,5629,0.282758620689465,0.216949152542807,0.289655172413583,0.210169491525877,0.289655172413583,0.223728813559737,0.296551724137700,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5512,5570,5572,5630,0.282758620689465,0.230508474576667,0.289655172413583,0.223728813559737,0.289655172413583,0.237288135593597,0.296551724137700,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5513,5571,5573,5631,0.282758620689465,0.244067796610527,0.289655172413583,0.237288135593597,0.289655172413583,0.250847457627456,0.296551724137700,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5514,5572,5574,5632,0.282758620689465,0.257627118644386,0.289655172413583,0.250847457627456,0.289655172413583,0.264406779661316,0.296551724137700,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5515,5573,5575,5633,0.282758620689465,0.271186440678246,0.289655172413583,0.264406779661316,0.289655172413583,0.277966101695176,0.296551724137700,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5516,5574,5576,5634,0.282758620689465,0.284745762712106,0.289655172413583,0.277966101695176,0.289655172413583,0.291525423729036,0.296551724137700,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5517,5575,5577,5635,0.282758620689465,0.298305084745975,0.289655172413583,0.291525423729036,0.289655172413583,0.305084745762915,0.296551724137700,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 -5518,5576,5578,5636,0.282758620689465,0.311864406779851,0.289655172413583,0.305084745762915,0.289655172413583,0.318644067796787,0.296551724137700,0.311864406779851,-0.013559322033873,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 -5519,5577,5579,5637,0.282758620689465,0.325423728813729,0.289655172413583,0.318644067796787,0.289655172413583,0.332203389830670,0.296551724137700,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 -5520,5578,5580,5638,0.282758620689465,0.338983050847605,0.289655172413583,0.332203389830670,0.289655172413583,0.345762711864539,0.296551724137700,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,-0.000000000000000,2 -5521,5579,5581,5639,0.282758620689465,0.352542372881469,0.289655172413583,0.345762711864539,0.289655172413583,0.359322033898399,0.296551724137700,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5522,5580,5582,5640,0.282758620689465,0.366101694915329,0.289655172413583,0.359322033898399,0.289655172413583,0.372881355932259,0.296551724137700,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5523,5581,5583,5641,0.282758620689465,0.379661016949189,0.289655172413583,0.372881355932259,0.289655172413583,0.386440677966119,0.296551724137700,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5524,5582,5642,6966,0.282758620689465,0.393220338983059,0.289655172413583,0.386440677966119,0.296551724137700,0.393220338983059,0.289655172413583,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 -4876,5525,5585,5643,0.303448275861818,-0.400000000000000,0.296551724137700,-0.393220338983034,0.303448275861818,-0.386440677966068,0.310344827585935,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 -5526,5584,5586,5644,0.296551724137700,-0.379661016949095,0.303448275861818,-0.386440677966068,0.303448275861818,-0.372881355932122,0.310344827585935,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,-0.000000000000000,2 -5527,5585,5587,5645,0.296551724137700,-0.366101694915163,0.303448275861818,-0.372881355932122,0.303448275861818,-0.359322033898204,0.310344827585935,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 -5528,5586,5588,5646,0.296551724137700,-0.352542372881227,0.303448275861818,-0.359322033898204,0.303448275861818,-0.345762711864250,0.310344827585935,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5529,5587,5589,5647,0.296551724137700,-0.338983050847293,0.303448275861818,-0.345762711864250,0.303448275861818,-0.332203389830336,0.310344827585935,-0.338983050847293,-0.013559322033914,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 -5530,5588,5590,5648,0.296551724137700,-0.325423728813361,0.303448275861818,-0.332203389830336,0.303448275861818,-0.318644067796386,0.310344827585935,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 -5531,5589,5591,5649,0.296551724137700,-0.311864406779422,0.303448275861818,-0.318644067796386,0.303448275861818,-0.305084745762457,0.310344827585935,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,0.000000000000000,2 -5532,5590,5592,5650,0.296551724137700,-0.298305084745489,0.303448275861818,-0.305084745762457,0.303448275861818,-0.291525423728521,0.310344827585935,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033936,-0.000000000000000,2 -5533,5591,5593,5651,0.296551724137700,-0.284745762711550,0.303448275861818,-0.291525423728521,0.303448275861818,-0.277966101694579,0.310344827585935,-0.284745762711550,-0.013559322033942,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 -5534,5592,5594,5652,0.296551724137700,-0.271186440677618,0.303448275861818,-0.277966101694579,0.303448275861818,-0.264406779660657,0.310344827585935,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,-0.000000000000000,2 -5535,5593,5595,5653,0.296551724137700,-0.257627118643680,0.303448275861818,-0.264406779660657,0.303448275861818,-0.250847457626703,0.310344827585935,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5536,5594,5596,5654,0.296551724137700,-0.244067796609748,0.303448275861818,-0.250847457626703,0.303448275861818,-0.237288135592793,0.310344827585935,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,-0.000000000000000,2 -5537,5595,5597,5655,0.296551724137700,-0.230508474575816,0.303448275861818,-0.237288135592793,0.303448275861818,-0.223728813558839,0.310344827585935,-0.230508474575816,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5538,5596,5598,5656,0.296551724137700,-0.216949152541877,0.303448275861818,-0.223728813558839,0.303448275861818,-0.210169491524915,0.310344827585935,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,-0.000000000000000,2 -5539,5597,5599,5657,0.296551724137700,-0.203389830507945,0.303448275861818,-0.210169491524915,0.303448275861818,-0.196610169490975,0.310344827585935,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 -5540,5598,5600,5658,0.296551724137700,-0.189830508474016,0.303448275861818,-0.196610169490975,0.303448275861818,-0.183050847457058,0.310344827585935,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 -5541,5599,5601,5659,0.296551724137700,-0.176271186440084,0.303448275861818,-0.183050847457058,0.303448275861818,-0.169491525423110,0.310344827585935,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 -5542,5600,5602,5660,0.296551724137700,-0.162711864406145,0.303448275861818,-0.169491525423110,0.303448275861818,-0.155932203389179,0.310344827585935,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 -5543,5601,5603,5661,0.296551724137700,-0.149152542372213,0.303448275861818,-0.155932203389179,0.303448275861818,-0.142372881355246,0.310344827585935,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 -5544,5602,5604,5662,0.296551724137700,-0.135593220338273,0.303448275861818,-0.142372881355246,0.303448275861818,-0.128813559321301,0.310344827585935,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,-0.000000000000000,2 -5545,5603,5605,5663,0.296551724137700,-0.122033898304341,0.303448275861818,-0.128813559321301,0.303448275861818,-0.115254237287382,0.310344827585935,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 -5546,5604,5606,5664,0.296551724137700,-0.108474576270409,0.303448275861818,-0.115254237287382,0.303448275861818,-0.101694915253436,0.310344827585935,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5547,5605,5607,5665,0.296551724137700,-0.094915254236471,0.303448275861818,-0.101694915253436,0.303448275861818,-0.088135593219506,0.310344827585935,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,-0.000000000000000,2 -5548,5606,5608,5666,0.296551724137700,-0.081355932202535,0.303448275861818,-0.088135593219506,0.303448275861818,-0.074576271185565,0.310344827585935,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5549,5607,5609,5667,0.296551724137700,-0.067796610168599,0.303448275861818,-0.074576271185565,0.303448275861818,-0.061016949151634,0.310344827585935,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5550,5608,5610,5668,0.296551724137700,-0.054237288134667,0.303448275861818,-0.061016949151634,0.303448275861818,-0.047457627117699,0.310344827585935,-0.054237288134667,-0.013559322033935,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,-0.000000000000000,2 -5551,5609,5611,5669,0.296551724137700,-0.040677966100731,0.303448275861818,-0.047457627117699,0.303448275861818,-0.033898305083763,0.310344827585935,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 -5552,5610,5612,5670,0.296551724137700,-0.027118644066798,0.303448275861818,-0.033898305083763,0.303448275861818,-0.020338983049832,0.310344827585935,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5553,5611,5613,5671,0.296551724137700,-0.013559322032862,0.303448275861818,-0.020338983049832,0.303448275861818,-0.006779661015891,0.310344827585935,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5554,5612,5614,5672,0.296551724137700,0.000000000001056,0.303448275861818,-0.006779661015891,0.303448275861818,0.006779661018004,0.310344827585935,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 -5555,5613,5615,5673,0.296551724137700,0.013559322034933,0.303448275861818,0.006779661018004,0.303448275861818,0.020338983051863,0.310344827585935,0.013559322034934,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5556,5614,5616,5674,0.296551724137700,0.027118644068793,0.303448275861818,0.020338983051863,0.303448275861818,0.033898305085723,0.310344827585935,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5557,5615,5617,5675,0.296551724137700,0.040677966102653,0.303448275861818,0.033898305085723,0.303448275861818,0.047457627119583,0.310344827585935,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5558,5616,5618,5676,0.296551724137700,0.054237288136513,0.303448275861818,0.047457627119583,0.303448275861818,0.061016949153442,0.310344827585935,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5559,5617,5619,5677,0.296551724137700,0.067796610170372,0.303448275861818,0.061016949153442,0.303448275861818,0.074576271187302,0.310344827585935,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5560,5618,5620,5678,0.296551724137700,0.081355932204232,0.303448275861818,0.074576271187302,0.303448275861818,0.088135593221162,0.310344827585935,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5561,5619,5621,5679,0.296551724137700,0.094915254238085,0.303448275861818,0.088135593221162,0.303448275861818,0.101694915255008,0.310344827585935,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 -5562,5620,5622,5680,0.296551724137700,0.108474576271933,0.303448275861818,0.101694915255008,0.303448275861818,0.115254237288859,0.310344827585935,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033852,-0.000000000000000,2 -5563,5621,5623,5681,0.296551724137700,0.122033898305789,0.303448275861818,0.115254237288859,0.303448275861818,0.128813559322719,0.310344827585935,0.122033898305789,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5564,5622,5624,5682,0.296551724137700,0.135593220339649,0.303448275861818,0.128813559322719,0.303448275861818,0.142372881356579,0.310344827585935,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5565,5623,5625,5683,0.296551724137700,0.149152542373509,0.303448275861818,0.142372881356579,0.303448275861818,0.155932203390438,0.310344827585935,0.149152542373509,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5566,5624,5626,5684,0.296551724137700,0.162711864407368,0.303448275861818,0.155932203390438,0.303448275861818,0.169491525424298,0.310344827585935,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5567,5625,5627,5685,0.296551724137700,0.176271186441228,0.303448275861818,0.169491525424298,0.303448275861818,0.183050847458158,0.310344827585935,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5568,5626,5628,5686,0.296551724137700,0.189830508475088,0.303448275861818,0.183050847458158,0.303448275861818,0.196610169492018,0.310344827585935,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5569,5627,5629,5687,0.296551724137700,0.203389830508947,0.303448275861818,0.196610169492018,0.303448275861818,0.210169491525877,0.310344827585935,0.203389830508947,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5570,5628,5630,5688,0.296551724137700,0.216949152542807,0.303448275861818,0.210169491525877,0.303448275861818,0.223728813559737,0.310344827585935,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5571,5629,5631,5689,0.296551724137700,0.230508474576667,0.303448275861818,0.223728813559737,0.303448275861818,0.237288135593597,0.310344827585935,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5572,5630,5632,5690,0.296551724137700,0.244067796610527,0.303448275861818,0.237288135593597,0.303448275861818,0.250847457627456,0.310344827585935,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5573,5631,5633,5691,0.296551724137700,0.257627118644386,0.303448275861818,0.250847457627456,0.303448275861818,0.264406779661316,0.310344827585935,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5574,5632,5634,5692,0.296551724137700,0.271186440678246,0.303448275861818,0.264406779661316,0.303448275861818,0.277966101695176,0.310344827585935,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5575,5633,5635,5693,0.296551724137700,0.284745762712106,0.303448275861818,0.277966101695176,0.303448275861818,0.291525423729036,0.310344827585935,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5576,5634,5636,5694,0.296551724137700,0.298305084745975,0.303448275861818,0.291525423729036,0.303448275861818,0.305084745762915,0.310344827585935,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 -5577,5635,5637,5695,0.296551724137700,0.311864406779851,0.303448275861818,0.305084745762915,0.303448275861818,0.318644067796787,0.310344827585935,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 -5578,5636,5638,5696,0.296551724137700,0.325423728813729,0.303448275861818,0.318644067796787,0.303448275861818,0.332203389830671,0.310344827585935,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 -5579,5637,5639,5697,0.296551724137700,0.338983050847605,0.303448275861818,0.332203389830671,0.303448275861818,0.345762711864539,0.310344827585935,0.338983050847605,-0.013559322033869,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 -5580,5638,5640,5698,0.296551724137700,0.352542372881469,0.303448275861818,0.345762711864539,0.303448275861818,0.359322033898399,0.310344827585935,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5581,5639,5641,5699,0.296551724137700,0.366101694915329,0.303448275861818,0.359322033898399,0.303448275861818,0.372881355932259,0.310344827585935,0.366101694915329,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5582,5640,5642,5700,0.296551724137700,0.379661016949189,0.303448275861818,0.372881355932259,0.303448275861818,0.386440677966119,0.310344827585935,0.379661016949189,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5583,5641,5701,6980,0.296551724137700,0.393220338983059,0.303448275861818,0.386440677966119,0.310344827585935,0.393220338983059,0.303448275861818,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 -4890,5584,5644,5702,0.317241379310053,-0.400000000000000,0.310344827585935,-0.393220338983034,0.317241379310053,-0.386440677966068,0.324137931034170,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448235,0.013559322033932,-0.000000000000000,2 -5585,5643,5645,5703,0.310344827585935,-0.379661016949095,0.317241379310053,-0.386440677966068,0.317241379310053,-0.372881355932122,0.324137931034170,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5586,5644,5646,5704,0.310344827585935,-0.366101694915163,0.317241379310053,-0.372881355932122,0.317241379310053,-0.359322033898204,0.324137931034170,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 -5587,5645,5647,5705,0.310344827585935,-0.352542372881227,0.317241379310053,-0.359322033898204,0.317241379310053,-0.345762711864250,0.324137931034170,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5588,5646,5648,5706,0.310344827585935,-0.338983050847293,0.317241379310053,-0.345762711864250,0.317241379310053,-0.332203389830336,0.324137931034170,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 -5589,5647,5649,5707,0.310344827585935,-0.325423728813361,0.317241379310053,-0.332203389830336,0.317241379310053,-0.318644067796386,0.324137931034170,-0.325423728813361,-0.013559322033950,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 -5590,5648,5650,5708,0.310344827585935,-0.311864406779422,0.317241379310053,-0.318644067796386,0.317241379310053,-0.305084745762457,0.324137931034170,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,-0.000000000000000,2 -5591,5649,5651,5709,0.310344827585935,-0.298305084745489,0.317241379310053,-0.305084745762457,0.317241379310053,-0.291525423728521,0.324137931034170,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 -5592,5650,5652,5710,0.310344827585935,-0.284745762711550,0.317241379310053,-0.291525423728521,0.317241379310053,-0.277966101694579,0.324137931034170,-0.284745762711550,-0.013559322033942,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 -5593,5651,5653,5711,0.310344827585935,-0.271186440677618,0.317241379310053,-0.277966101694579,0.317241379310053,-0.264406779660657,0.324137931034170,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,0.000000000000000,2 -5594,5652,5654,5712,0.310344827585935,-0.257627118643680,0.317241379310053,-0.264406779660657,0.317241379310053,-0.250847457626703,0.324137931034170,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5595,5653,5655,5713,0.310344827585935,-0.244067796609748,0.317241379310053,-0.250847457626703,0.317241379310053,-0.237288135592793,0.324137931034170,-0.244067796609748,-0.013559322033910,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 -5596,5654,5656,5714,0.310344827585935,-0.230508474575816,0.317241379310053,-0.237288135592793,0.317241379310053,-0.223728813558839,0.324137931034170,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5597,5655,5657,5715,0.310344827585935,-0.216949152541877,0.317241379310053,-0.223728813558839,0.317241379310053,-0.210169491524915,0.324137931034170,-0.216949152541877,-0.013559322033924,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033924,-0.000000000000000,2 -5598,5656,5658,5716,0.310344827585935,-0.203389830507945,0.317241379310053,-0.210169491524915,0.317241379310053,-0.196610169490975,0.324137931034170,-0.203389830507945,-0.013559322033940,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033940,-0.000000000000000,2 -5599,5657,5659,5717,0.310344827585935,-0.189830508474016,0.317241379310053,-0.196610169490975,0.317241379310053,-0.183050847457058,0.324137931034170,-0.189830508474016,-0.013559322033917,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 -5600,5658,5660,5718,0.310344827585935,-0.176271186440084,0.317241379310053,-0.183050847457058,0.317241379310053,-0.169491525423110,0.324137931034170,-0.176271186440084,-0.013559322033947,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 -5601,5659,5661,5719,0.310344827585935,-0.162711864406145,0.317241379310053,-0.169491525423110,0.317241379310053,-0.155932203389179,0.324137931034170,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 -5602,5660,5662,5720,0.310344827585935,-0.149152542372213,0.317241379310053,-0.155932203389179,0.317241379310053,-0.142372881355246,0.324137931034170,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 -5603,5661,5663,5721,0.310344827585935,-0.135593220338273,0.317241379310053,-0.142372881355246,0.317241379310053,-0.128813559321301,0.324137931034170,-0.135593220338274,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,-0.000000000000000,2 -5604,5662,5664,5722,0.310344827585935,-0.122033898304341,0.317241379310053,-0.128813559321301,0.317241379310053,-0.115254237287382,0.324137931034170,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 -5605,5663,5665,5723,0.310344827585935,-0.108474576270409,0.317241379310053,-0.115254237287382,0.317241379310053,-0.101694915253436,0.324137931034170,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5606,5664,5666,5724,0.310344827585935,-0.094915254236471,0.317241379310053,-0.101694915253436,0.317241379310053,-0.088135593219506,0.324137931034170,-0.094915254236471,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5607,5665,5667,5725,0.310344827585935,-0.081355932202535,0.317241379310053,-0.088135593219506,0.317241379310053,-0.074576271185564,0.324137931034170,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5608,5666,5668,5726,0.310344827585935,-0.067796610168599,0.317241379310053,-0.074576271185564,0.317241379310053,-0.061016949151634,0.324137931034170,-0.067796610168599,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5609,5667,5669,5727,0.310344827585935,-0.054237288134667,0.317241379310053,-0.061016949151634,0.317241379310053,-0.047457627117700,0.324137931034170,-0.054237288134667,-0.013559322033935,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033935,0.000000000000000,2 -5610,5668,5670,5728,0.310344827585935,-0.040677966100731,0.317241379310053,-0.047457627117700,0.317241379310053,-0.033898305083763,0.324137931034170,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 -5611,5669,5671,5729,0.310344827585935,-0.027118644066798,0.317241379310053,-0.033898305083763,0.317241379310053,-0.020338983049833,0.324137931034170,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5612,5670,5672,5730,0.310344827585935,-0.013559322032862,0.317241379310053,-0.020338983049833,0.317241379310053,-0.006779661015891,0.324137931034170,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5613,5671,5673,5731,0.310344827585935,0.000000000001056,0.317241379310053,-0.006779661015891,0.317241379310053,0.006779661018004,0.324137931034170,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 -5614,5672,5674,5732,0.310344827585935,0.013559322034934,0.317241379310053,0.006779661018004,0.317241379310053,0.020338983051863,0.324137931034170,0.013559322034933,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5615,5673,5675,5733,0.310344827585935,0.027118644068793,0.317241379310053,0.020338983051863,0.317241379310053,0.033898305085723,0.324137931034170,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5616,5674,5676,5734,0.310344827585935,0.040677966102653,0.317241379310053,0.033898305085723,0.317241379310053,0.047457627119583,0.324137931034170,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5617,5675,5677,5735,0.310344827585935,0.054237288136513,0.317241379310053,0.047457627119583,0.317241379310053,0.061016949153442,0.324137931034170,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5618,5676,5678,5736,0.310344827585935,0.067796610170372,0.317241379310053,0.061016949153442,0.317241379310053,0.074576271187302,0.324137931034170,0.067796610170372,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5619,5677,5679,5737,0.310344827585935,0.081355932204232,0.317241379310053,0.074576271187302,0.317241379310053,0.088135593221162,0.324137931034170,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5620,5678,5680,5738,0.310344827585935,0.094915254238085,0.317241379310053,0.088135593221162,0.317241379310053,0.101694915255008,0.324137931034170,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 -5621,5679,5681,5739,0.310344827585935,0.108474576271933,0.317241379310053,0.101694915255008,0.317241379310053,0.115254237288859,0.324137931034170,0.108474576271933,-0.013559322033852,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 -5622,5680,5682,5740,0.310344827585935,0.122033898305789,0.317241379310053,0.115254237288859,0.317241379310053,0.128813559322719,0.324137931034170,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5623,5681,5683,5741,0.310344827585935,0.135593220339649,0.317241379310053,0.128813559322719,0.317241379310053,0.142372881356579,0.324137931034170,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5624,5682,5684,5742,0.310344827585935,0.149152542373509,0.317241379310053,0.142372881356579,0.317241379310053,0.155932203390438,0.324137931034170,0.149152542373509,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5625,5683,5685,5743,0.310344827585935,0.162711864407368,0.317241379310053,0.155932203390438,0.317241379310053,0.169491525424298,0.324137931034170,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5626,5684,5686,5744,0.310344827585935,0.176271186441228,0.317241379310053,0.169491525424298,0.317241379310053,0.183050847458158,0.324137931034170,0.176271186441228,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5627,5685,5687,5745,0.310344827585935,0.189830508475088,0.317241379310053,0.183050847458158,0.317241379310053,0.196610169492018,0.324137931034170,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5628,5686,5688,5746,0.310344827585935,0.203389830508947,0.317241379310053,0.196610169492018,0.317241379310053,0.210169491525877,0.324137931034170,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5629,5687,5689,5747,0.310344827585935,0.216949152542807,0.317241379310053,0.210169491525877,0.317241379310053,0.223728813559737,0.324137931034170,0.216949152542807,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5630,5688,5690,5748,0.310344827585935,0.230508474576667,0.317241379310053,0.223728813559737,0.317241379310053,0.237288135593597,0.324137931034170,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5631,5689,5691,5749,0.310344827585935,0.244067796610527,0.317241379310053,0.237288135593597,0.317241379310053,0.250847457627456,0.324137931034170,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5632,5690,5692,5750,0.310344827585935,0.257627118644386,0.317241379310053,0.250847457627456,0.317241379310053,0.264406779661316,0.324137931034170,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5633,5691,5693,5751,0.310344827585935,0.271186440678246,0.317241379310053,0.264406779661316,0.317241379310053,0.277966101695176,0.324137931034170,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5634,5692,5694,5752,0.310344827585935,0.284745762712106,0.317241379310053,0.277966101695176,0.317241379310053,0.291525423729036,0.324137931034170,0.284745762712106,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5635,5693,5695,5753,0.310344827585935,0.298305084745975,0.317241379310053,0.291525423729036,0.317241379310053,0.305084745762915,0.324137931034170,0.298305084745975,-0.013559322033879,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 -5636,5694,5696,5754,0.310344827585935,0.311864406779851,0.317241379310053,0.305084745762915,0.317241379310053,0.318644067796787,0.324137931034170,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 -5637,5695,5697,5755,0.310344827585935,0.325423728813729,0.317241379310053,0.318644067796787,0.317241379310053,0.332203389830671,0.324137931034170,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 -5638,5696,5698,5756,0.310344827585935,0.338983050847605,0.317241379310053,0.332203389830671,0.317241379310053,0.345762711864539,0.324137931034170,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 -5639,5697,5699,5757,0.310344827585935,0.352542372881469,0.317241379310053,0.345762711864539,0.317241379310053,0.359322033898399,0.324137931034170,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5640,5698,5700,5758,0.310344827585935,0.366101694915329,0.317241379310053,0.359322033898399,0.317241379310053,0.372881355932259,0.324137931034170,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5641,5699,5701,5759,0.310344827585935,0.379661016949189,0.317241379310053,0.372881355932259,0.317241379310053,0.386440677966119,0.324137931034170,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5642,5700,5760,6994,0.310344827585935,0.393220338983059,0.317241379310053,0.386440677966119,0.324137931034170,0.393220338983059,0.317241379310053,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 -4904,5643,5703,5761,0.331034482758288,-0.400000000000000,0.324137931034170,-0.393220338983034,0.331034482758288,-0.386440677966068,0.337931034482406,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,0.000000000000000,0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 -5644,5702,5704,5762,0.324137931034170,-0.379661016949095,0.331034482758288,-0.386440677966068,0.331034482758288,-0.372881355932122,0.337931034482405,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5645,5703,5705,5763,0.324137931034170,-0.366101694915163,0.331034482758288,-0.372881355932122,0.331034482758288,-0.359322033898204,0.337931034482405,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,-0.000000000000000,2 -5646,5704,5706,5764,0.324137931034170,-0.352542372881227,0.331034482758288,-0.359322033898204,0.331034482758288,-0.345762711864250,0.337931034482406,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5647,5705,5707,5765,0.324137931034170,-0.338983050847293,0.331034482758288,-0.345762711864250,0.331034482758288,-0.332203389830336,0.337931034482406,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 -5648,5706,5708,5766,0.324137931034170,-0.325423728813361,0.331034482758288,-0.332203389830336,0.331034482758288,-0.318644067796386,0.337931034482406,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033951,0.000000000000000,2 -5649,5707,5709,5767,0.324137931034170,-0.311864406779422,0.331034482758288,-0.318644067796386,0.331034482758288,-0.305084745762457,0.337931034482406,-0.311864406779421,-0.013559322033928,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,0.000000000000000,2 -5650,5708,5710,5768,0.324137931034170,-0.298305084745489,0.331034482758288,-0.305084745762457,0.331034482758288,-0.291525423728521,0.337931034482405,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 -5651,5709,5711,5769,0.324137931034170,-0.284745762711550,0.331034482758288,-0.291525423728521,0.331034482758288,-0.277966101694579,0.337931034482405,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033942,-0.000000000000000,2 -5652,5710,5712,5770,0.324137931034170,-0.271186440677618,0.331034482758288,-0.277966101694579,0.331034482758288,-0.264406779660657,0.337931034482406,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,0.000000000000000,2 -5653,5711,5713,5771,0.324137931034170,-0.257627118643680,0.331034482758288,-0.264406779660657,0.331034482758288,-0.250847457626703,0.337931034482406,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5654,5712,5714,5772,0.324137931034170,-0.244067796609748,0.331034482758288,-0.250847457626703,0.331034482758288,-0.237288135592793,0.337931034482406,-0.244067796609748,-0.013559322033910,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 -5655,5713,5715,5773,0.324137931034170,-0.230508474575816,0.331034482758288,-0.237288135592793,0.331034482758288,-0.223728813558839,0.337931034482405,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5656,5714,5716,5774,0.324137931034170,-0.216949152541877,0.331034482758288,-0.223728813558839,0.331034482758288,-0.210169491524915,0.337931034482405,-0.216949152541877,-0.013559322033924,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,-0.000000000000000,2 -5657,5715,5717,5775,0.324137931034170,-0.203389830507945,0.331034482758288,-0.210169491524915,0.331034482758288,-0.196610169490975,0.337931034482406,-0.203389830507945,-0.013559322033940,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 -5658,5716,5718,5776,0.324137931034170,-0.189830508474016,0.331034482758288,-0.196610169490975,0.331034482758288,-0.183050847457058,0.337931034482406,-0.189830508474016,-0.013559322033917,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 -5659,5717,5719,5777,0.324137931034170,-0.176271186440084,0.331034482758288,-0.183050847457058,0.331034482758288,-0.169491525423110,0.337931034482406,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 -5660,5718,5720,5778,0.324137931034170,-0.162711864406145,0.331034482758288,-0.169491525423110,0.331034482758288,-0.155932203389179,0.337931034482406,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 -5661,5719,5721,5779,0.324137931034170,-0.149152542372213,0.331034482758288,-0.155932203389179,0.331034482758288,-0.142372881355246,0.337931034482406,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 -5662,5720,5722,5780,0.324137931034170,-0.135593220338274,0.331034482758288,-0.142372881355246,0.331034482758288,-0.128813559321301,0.337931034482406,-0.135593220338274,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,-0.000000000000000,2 -5663,5721,5723,5781,0.324137931034170,-0.122033898304341,0.331034482758288,-0.128813559321301,0.331034482758288,-0.115254237287382,0.337931034482406,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 -5664,5722,5724,5782,0.324137931034170,-0.108474576270409,0.331034482758288,-0.115254237287382,0.331034482758288,-0.101694915253436,0.337931034482406,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5665,5723,5725,5783,0.324137931034170,-0.094915254236471,0.331034482758288,-0.101694915253436,0.331034482758288,-0.088135593219506,0.337931034482406,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5666,5724,5726,5784,0.324137931034170,-0.081355932202535,0.331034482758288,-0.088135593219506,0.331034482758288,-0.074576271185564,0.337931034482406,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5667,5725,5727,5785,0.324137931034170,-0.067796610168599,0.331034482758288,-0.074576271185564,0.331034482758288,-0.061016949151634,0.337931034482406,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5668,5726,5728,5786,0.324137931034170,-0.054237288134667,0.331034482758288,-0.061016949151634,0.331034482758288,-0.047457627117699,0.337931034482406,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,0.000000000000000,2 -5669,5727,5729,5787,0.324137931034170,-0.040677966100731,0.331034482758288,-0.047457627117699,0.331034482758288,-0.033898305083763,0.337931034482406,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 -5670,5728,5730,5788,0.324137931034170,-0.027118644066798,0.331034482758288,-0.033898305083763,0.331034482758288,-0.020338983049833,0.337931034482406,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5671,5729,5731,5789,0.324137931034170,-0.013559322032862,0.331034482758288,-0.020338983049833,0.331034482758288,-0.006779661015891,0.337931034482406,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5672,5730,5732,5790,0.324137931034170,0.000000000001056,0.331034482758288,-0.006779661015891,0.331034482758288,0.006779661018004,0.337931034482406,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 -5673,5731,5733,5791,0.324137931034170,0.013559322034933,0.331034482758288,0.006779661018004,0.331034482758288,0.020338983051863,0.337931034482406,0.013559322034933,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5674,5732,5734,5792,0.324137931034170,0.027118644068793,0.331034482758288,0.020338983051863,0.331034482758288,0.033898305085723,0.337931034482406,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5675,5733,5735,5793,0.324137931034170,0.040677966102653,0.331034482758288,0.033898305085723,0.331034482758288,0.047457627119583,0.337931034482406,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5676,5734,5736,5794,0.324137931034170,0.054237288136513,0.331034482758288,0.047457627119583,0.331034482758288,0.061016949153442,0.337931034482406,0.054237288136513,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5677,5735,5737,5795,0.324137931034170,0.067796610170372,0.331034482758288,0.061016949153442,0.331034482758288,0.074576271187302,0.337931034482406,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5678,5736,5738,5796,0.324137931034170,0.081355932204232,0.331034482758288,0.074576271187302,0.331034482758288,0.088135593221162,0.337931034482406,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5679,5737,5739,5797,0.324137931034170,0.094915254238085,0.331034482758288,0.088135593221162,0.331034482758288,0.101694915255008,0.337931034482406,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 -5680,5738,5740,5798,0.324137931034170,0.108474576271933,0.331034482758288,0.101694915255008,0.331034482758288,0.115254237288859,0.337931034482406,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 -5681,5739,5741,5799,0.324137931034170,0.122033898305789,0.331034482758288,0.115254237288859,0.331034482758288,0.128813559322719,0.337931034482406,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5682,5740,5742,5800,0.324137931034170,0.135593220339649,0.331034482758288,0.128813559322719,0.331034482758288,0.142372881356579,0.337931034482406,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5683,5741,5743,5801,0.324137931034170,0.149152542373509,0.331034482758288,0.142372881356579,0.331034482758288,0.155932203390438,0.337931034482406,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5684,5742,5744,5802,0.324137931034170,0.162711864407368,0.331034482758288,0.155932203390438,0.331034482758288,0.169491525424298,0.337931034482406,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5685,5743,5745,5803,0.324137931034170,0.176271186441228,0.331034482758288,0.169491525424298,0.331034482758288,0.183050847458158,0.337931034482406,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5686,5744,5746,5804,0.324137931034170,0.189830508475088,0.331034482758288,0.183050847458158,0.331034482758288,0.196610169492017,0.337931034482406,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5687,5745,5747,5805,0.324137931034170,0.203389830508947,0.331034482758288,0.196610169492017,0.331034482758288,0.210169491525877,0.337931034482406,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5688,5746,5748,5806,0.324137931034170,0.216949152542807,0.331034482758288,0.210169491525877,0.331034482758288,0.223728813559737,0.337931034482406,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5689,5747,5749,5807,0.324137931034170,0.230508474576667,0.331034482758288,0.223728813559737,0.331034482758288,0.237288135593597,0.337931034482406,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5690,5748,5750,5808,0.324137931034170,0.244067796610527,0.331034482758288,0.237288135593597,0.331034482758288,0.250847457627456,0.337931034482406,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5691,5749,5751,5809,0.324137931034170,0.257627118644386,0.331034482758288,0.250847457627456,0.331034482758288,0.264406779661316,0.337931034482406,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5692,5750,5752,5810,0.324137931034170,0.271186440678246,0.331034482758288,0.264406779661316,0.331034482758288,0.277966101695176,0.337931034482406,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5693,5751,5753,5811,0.324137931034170,0.284745762712106,0.331034482758288,0.277966101695176,0.331034482758288,0.291525423729036,0.337931034482406,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5694,5752,5754,5812,0.324137931034170,0.298305084745975,0.331034482758288,0.291525423729036,0.331034482758288,0.305084745762915,0.337931034482406,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 -5695,5753,5755,5813,0.324137931034170,0.311864406779851,0.331034482758288,0.305084745762915,0.331034482758288,0.318644067796787,0.337931034482406,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 -5696,5754,5756,5814,0.324137931034170,0.325423728813729,0.331034482758288,0.318644067796787,0.331034482758288,0.332203389830671,0.337931034482406,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 -5697,5755,5757,5815,0.324137931034170,0.338983050847605,0.331034482758288,0.332203389830671,0.331034482758288,0.345762711864539,0.337931034482406,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 -5698,5756,5758,5816,0.324137931034170,0.352542372881469,0.331034482758288,0.345762711864539,0.331034482758288,0.359322033898399,0.337931034482406,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5699,5757,5759,5817,0.324137931034170,0.366101694915329,0.331034482758288,0.359322033898399,0.331034482758288,0.372881355932259,0.337931034482406,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5700,5758,5760,5818,0.324137931034170,0.379661016949189,0.331034482758288,0.372881355932259,0.331034482758288,0.386440677966119,0.337931034482406,0.379661016949189,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5701,5759,5819,7008,0.324137931034170,0.393220338983059,0.331034482758288,0.386440677966119,0.337931034482406,0.393220338983059,0.331034482758288,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 -4918,5702,5762,5820,0.344827586206523,-0.400000000000000,0.337931034482406,-0.393220338983034,0.344827586206523,-0.386440677966068,0.351724137930641,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 -5703,5761,5763,5821,0.337931034482405,-0.379661016949095,0.344827586206523,-0.386440677966068,0.344827586206523,-0.372881355932122,0.351724137930641,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5704,5762,5764,5822,0.337931034482405,-0.366101694915163,0.344827586206523,-0.372881355932122,0.344827586206523,-0.359322033898204,0.351724137930641,-0.366101694915163,-0.013559322033918,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 -5705,5763,5765,5823,0.337931034482406,-0.352542372881227,0.344827586206523,-0.359322033898204,0.344827586206523,-0.345762711864250,0.351724137930641,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,-0.000000000000000,2 -5706,5764,5766,5824,0.337931034482406,-0.338983050847293,0.344827586206523,-0.345762711864250,0.344827586206523,-0.332203389830336,0.351724137930641,-0.338983050847293,-0.013559322033914,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 -5707,5765,5767,5825,0.337931034482406,-0.325423728813361,0.344827586206523,-0.332203389830336,0.344827586206523,-0.318644067796385,0.351724137930641,-0.325423728813361,-0.013559322033951,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033951,0.000000000000000,2 -5708,5766,5768,5826,0.337931034482406,-0.311864406779421,0.344827586206523,-0.318644067796385,0.344827586206523,-0.305084745762457,0.351724137930641,-0.311864406779421,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,-0.000000000000000,2 -5709,5767,5769,5827,0.337931034482405,-0.298305084745489,0.344827586206523,-0.305084745762457,0.344827586206523,-0.291525423728521,0.351724137930641,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 -5710,5768,5770,5828,0.337931034482405,-0.284745762711550,0.344827586206523,-0.291525423728521,0.344827586206523,-0.277966101694579,0.351724137930641,-0.284745762711550,-0.013559322033942,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 -5711,5769,5771,5829,0.337931034482406,-0.271186440677618,0.344827586206523,-0.277966101694579,0.344827586206523,-0.264406779660657,0.351724137930640,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,-0.000000000000000,2 -5712,5770,5772,5830,0.337931034482406,-0.257627118643680,0.344827586206523,-0.264406779660657,0.344827586206523,-0.250847457626703,0.351724137930640,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5713,5771,5773,5831,0.337931034482406,-0.244067796609748,0.344827586206523,-0.250847457626703,0.344827586206523,-0.237288135592793,0.351724137930640,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,-0.000000000000000,2 -5714,5772,5774,5832,0.337931034482405,-0.230508474575816,0.344827586206523,-0.237288135592793,0.344827586206523,-0.223728813558839,0.351724137930641,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5715,5773,5775,5833,0.337931034482405,-0.216949152541877,0.344827586206523,-0.223728813558839,0.344827586206523,-0.210169491524915,0.351724137930641,-0.216949152541877,-0.013559322033924,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,-0.000000000000000,2 -5716,5774,5776,5834,0.337931034482406,-0.203389830507945,0.344827586206523,-0.210169491524915,0.344827586206523,-0.196610169490975,0.351724137930641,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 -5717,5775,5777,5835,0.337931034482406,-0.189830508474016,0.344827586206523,-0.196610169490975,0.344827586206523,-0.183050847457058,0.351724137930641,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,-0.000000000000000,2 -5718,5776,5778,5836,0.337931034482406,-0.176271186440084,0.344827586206523,-0.183050847457058,0.344827586206523,-0.169491525423110,0.351724137930641,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 -5719,5777,5779,5837,0.337931034482406,-0.162711864406145,0.344827586206523,-0.169491525423110,0.344827586206523,-0.155932203389179,0.351724137930641,-0.162711864406145,-0.013559322033931,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 -5720,5778,5780,5838,0.337931034482406,-0.149152542372213,0.344827586206523,-0.155932203389179,0.344827586206523,-0.142372881355246,0.351724137930641,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 -5721,5779,5781,5839,0.337931034482406,-0.135593220338274,0.344827586206523,-0.142372881355246,0.344827586206523,-0.128813559321301,0.351724137930641,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033945,0.000000000000000,2 -5722,5780,5782,5840,0.337931034482406,-0.122033898304341,0.344827586206523,-0.128813559321301,0.344827586206523,-0.115254237287382,0.351724137930641,-0.122033898304341,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 -5723,5781,5783,5841,0.337931034482406,-0.108474576270409,0.344827586206523,-0.115254237287382,0.344827586206523,-0.101694915253436,0.351724137930641,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,-0.000000000000000,2 -5724,5782,5784,5842,0.337931034482406,-0.094915254236471,0.344827586206523,-0.101694915253436,0.344827586206523,-0.088135593219506,0.351724137930641,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5725,5783,5785,5843,0.337931034482406,-0.081355932202535,0.344827586206523,-0.088135593219506,0.344827586206523,-0.074576271185564,0.351724137930640,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5726,5784,5786,5844,0.337931034482406,-0.067796610168599,0.344827586206523,-0.074576271185564,0.344827586206523,-0.061016949151634,0.351724137930641,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,-0.000000000000000,2 -5727,5785,5787,5845,0.337931034482406,-0.054237288134667,0.344827586206523,-0.061016949151634,0.344827586206523,-0.047457627117699,0.351724137930641,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033935,0.000000000000000,2 -5728,5786,5788,5846,0.337931034482406,-0.040677966100731,0.344827586206523,-0.047457627117699,0.344827586206523,-0.033898305083763,0.351724137930641,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 -5729,5787,5789,5847,0.337931034482406,-0.027118644066798,0.344827586206523,-0.033898305083763,0.344827586206523,-0.020338983049833,0.351724137930641,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,-0.000000000000000,2 -5730,5788,5790,5848,0.337931034482406,-0.013559322032862,0.344827586206523,-0.020338983049833,0.344827586206523,-0.006779661015891,0.351724137930641,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5731,5789,5791,5849,0.337931034482406,0.000000000001056,0.344827586206523,-0.006779661015891,0.344827586206523,0.006779661018004,0.351724137930641,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 -5732,5790,5792,5850,0.337931034482406,0.013559322034933,0.344827586206523,0.006779661018004,0.344827586206523,0.020338983051863,0.351724137930641,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5733,5791,5793,5851,0.337931034482406,0.027118644068793,0.344827586206523,0.020338983051863,0.344827586206523,0.033898305085723,0.351724137930641,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5734,5792,5794,5852,0.337931034482406,0.040677966102653,0.344827586206523,0.033898305085723,0.344827586206523,0.047457627119583,0.351724137930641,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5735,5793,5795,5853,0.337931034482406,0.054237288136513,0.344827586206523,0.047457627119583,0.344827586206523,0.061016949153442,0.351724137930641,0.054237288136512,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5736,5794,5796,5854,0.337931034482406,0.067796610170372,0.344827586206523,0.061016949153442,0.344827586206523,0.074576271187302,0.351724137930641,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5737,5795,5797,5855,0.337931034482406,0.081355932204232,0.344827586206523,0.074576271187302,0.344827586206523,0.088135593221162,0.351724137930641,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5738,5796,5798,5856,0.337931034482406,0.094915254238085,0.344827586206523,0.088135593221162,0.344827586206523,0.101694915255008,0.351724137930641,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 -5739,5797,5799,5857,0.337931034482406,0.108474576271933,0.344827586206523,0.101694915255008,0.344827586206523,0.115254237288859,0.351724137930641,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 -5740,5798,5800,5858,0.337931034482406,0.122033898305789,0.344827586206523,0.115254237288859,0.344827586206523,0.128813559322719,0.351724137930641,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5741,5799,5801,5859,0.337931034482406,0.135593220339649,0.344827586206523,0.128813559322719,0.344827586206523,0.142372881356579,0.351724137930641,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5742,5800,5802,5860,0.337931034482406,0.149152542373509,0.344827586206523,0.142372881356579,0.344827586206523,0.155932203390438,0.351724137930641,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5743,5801,5803,5861,0.337931034482406,0.162711864407368,0.344827586206523,0.155932203390438,0.344827586206523,0.169491525424298,0.351724137930641,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5744,5802,5804,5862,0.337931034482406,0.176271186441228,0.344827586206523,0.169491525424298,0.344827586206523,0.183050847458158,0.351724137930641,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5745,5803,5805,5863,0.337931034482406,0.189830508475088,0.344827586206523,0.183050847458158,0.344827586206523,0.196610169492017,0.351724137930641,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5746,5804,5806,5864,0.337931034482406,0.203389830508947,0.344827586206523,0.196610169492017,0.344827586206523,0.210169491525877,0.351724137930641,0.203389830508947,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5747,5805,5807,5865,0.337931034482406,0.216949152542807,0.344827586206523,0.210169491525877,0.344827586206523,0.223728813559737,0.351724137930641,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5748,5806,5808,5866,0.337931034482406,0.230508474576667,0.344827586206523,0.223728813559737,0.344827586206523,0.237288135593597,0.351724137930641,0.230508474576667,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5749,5807,5809,5867,0.337931034482406,0.244067796610527,0.344827586206523,0.237288135593597,0.344827586206523,0.250847457627456,0.351724137930641,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5750,5808,5810,5868,0.337931034482406,0.257627118644386,0.344827586206523,0.250847457627456,0.344827586206523,0.264406779661316,0.351724137930641,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5751,5809,5811,5869,0.337931034482406,0.271186440678246,0.344827586206523,0.264406779661316,0.344827586206523,0.277966101695176,0.351724137930641,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5752,5810,5812,5870,0.337931034482406,0.284745762712106,0.344827586206523,0.277966101695176,0.344827586206523,0.291525423729036,0.351724137930641,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5753,5811,5813,5871,0.337931034482406,0.298305084745975,0.344827586206523,0.291525423729036,0.344827586206523,0.305084745762915,0.351724137930641,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 -5754,5812,5814,5872,0.337931034482406,0.311864406779851,0.344827586206523,0.305084745762915,0.344827586206523,0.318644067796787,0.351724137930641,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033872,-0.000000000000000,2 -5755,5813,5815,5873,0.337931034482406,0.325423728813729,0.344827586206523,0.318644067796787,0.344827586206523,0.332203389830671,0.351724137930641,0.325423728813729,-0.013559322033883,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 -5756,5814,5816,5874,0.337931034482406,0.338983050847605,0.344827586206523,0.332203389830671,0.344827586206523,0.345762711864539,0.351724137930641,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 -5757,5815,5817,5875,0.337931034482406,0.352542372881469,0.344827586206523,0.345762711864539,0.344827586206523,0.359322033898399,0.351724137930641,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5758,5816,5818,5876,0.337931034482406,0.366101694915329,0.344827586206523,0.359322033898399,0.344827586206523,0.372881355932259,0.351724137930641,0.366101694915329,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5759,5817,5819,5877,0.337931034482406,0.379661016949189,0.344827586206523,0.372881355932259,0.344827586206523,0.386440677966119,0.351724137930641,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5760,5818,5878,7022,0.337931034482406,0.393220338983059,0.344827586206523,0.386440677966119,0.351724137930641,0.393220338983059,0.344827586206523,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 -4932,5761,5821,5879,0.358620689654758,-0.400000000000000,0.351724137930641,-0.393220338983034,0.358620689654758,-0.386440677966068,0.365517241378876,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 -5762,5820,5822,5880,0.351724137930641,-0.379661016949095,0.358620689654758,-0.386440677966068,0.358620689654758,-0.372881355932122,0.365517241378876,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5763,5821,5823,5881,0.351724137930641,-0.366101694915163,0.358620689654758,-0.372881355932122,0.358620689654758,-0.359322033898204,0.365517241378876,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 -5764,5822,5824,5882,0.351724137930641,-0.352542372881227,0.358620689654758,-0.359322033898204,0.358620689654758,-0.345762711864250,0.365517241378876,-0.352542372881227,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5765,5823,5825,5883,0.351724137930641,-0.338983050847293,0.358620689654758,-0.345762711864250,0.358620689654758,-0.332203389830336,0.365517241378876,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,-0.000000000000000,2 -5766,5824,5826,5884,0.351724137930641,-0.325423728813361,0.358620689654758,-0.332203389830336,0.358620689654758,-0.318644067796386,0.365517241378876,-0.325423728813361,-0.013559322033951,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 -5767,5825,5827,5885,0.351724137930641,-0.311864406779421,0.358620689654758,-0.318644067796386,0.358620689654758,-0.305084745762457,0.365517241378876,-0.311864406779422,-0.013559322033928,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,-0.000000000000000,2 -5768,5826,5828,5886,0.351724137930641,-0.298305084745489,0.358620689654758,-0.305084745762457,0.358620689654758,-0.291525423728521,0.365517241378876,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033936,-0.000000000000000,2 -5769,5827,5829,5887,0.351724137930641,-0.284745762711550,0.358620689654758,-0.291525423728521,0.358620689654758,-0.277966101694579,0.365517241378876,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 -5770,5828,5830,5888,0.351724137930640,-0.271186440677618,0.358620689654758,-0.277966101694579,0.358620689654758,-0.264406779660657,0.365517241378876,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,-0.000000000000000,2 -5771,5829,5831,5889,0.351724137930640,-0.257627118643680,0.358620689654758,-0.264406779660657,0.358620689654758,-0.250847457626703,0.365517241378876,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5772,5830,5832,5890,0.351724137930640,-0.244067796609748,0.358620689654758,-0.250847457626703,0.358620689654758,-0.237288135592793,0.365517241378876,-0.244067796609748,-0.013559322033910,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,-0.000000000000000,2 -5773,5831,5833,5891,0.351724137930641,-0.230508474575816,0.358620689654758,-0.237288135592793,0.358620689654758,-0.223728813558839,0.365517241378876,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,-0.000000000000000,2 -5774,5832,5834,5892,0.351724137930641,-0.216949152541877,0.358620689654758,-0.223728813558839,0.358620689654758,-0.210169491524915,0.365517241378876,-0.216949152541877,-0.013559322033924,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,0.000000000000000,2 -5775,5833,5835,5893,0.351724137930641,-0.203389830507945,0.358620689654758,-0.210169491524915,0.358620689654758,-0.196610169490975,0.365517241378876,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,-0.000000000000000,2 -5776,5834,5836,5894,0.351724137930641,-0.189830508474016,0.358620689654758,-0.196610169490975,0.358620689654758,-0.183050847457058,0.365517241378876,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 -5777,5835,5837,5895,0.351724137930641,-0.176271186440084,0.358620689654758,-0.183050847457058,0.358620689654758,-0.169491525423110,0.365517241378876,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 -5778,5836,5838,5896,0.351724137930641,-0.162711864406145,0.358620689654758,-0.169491525423110,0.358620689654758,-0.155932203389179,0.365517241378876,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,-0.000000000000000,2 -5779,5837,5839,5897,0.351724137930641,-0.149152542372213,0.358620689654758,-0.155932203389179,0.358620689654758,-0.142372881355246,0.365517241378876,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 -5780,5838,5840,5898,0.351724137930641,-0.135593220338273,0.358620689654758,-0.142372881355246,0.358620689654758,-0.128813559321301,0.365517241378876,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,-0.000000000000000,2 -5781,5839,5841,5899,0.351724137930641,-0.122033898304341,0.358620689654758,-0.128813559321301,0.358620689654758,-0.115254237287382,0.365517241378876,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,-0.000000000000000,2 -5782,5840,5842,5900,0.351724137930641,-0.108474576270409,0.358620689654758,-0.115254237287382,0.358620689654758,-0.101694915253436,0.365517241378876,-0.108474576270409,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5783,5841,5843,5901,0.351724137930641,-0.094915254236471,0.358620689654758,-0.101694915253436,0.358620689654758,-0.088135593219506,0.365517241378876,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5784,5842,5844,5902,0.351724137930640,-0.081355932202535,0.358620689654758,-0.088135593219506,0.358620689654758,-0.074576271185564,0.365517241378876,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,-0.000000000000000,2 -5785,5843,5845,5903,0.351724137930641,-0.067796610168599,0.358620689654758,-0.074576271185564,0.358620689654758,-0.061016949151634,0.365517241378876,-0.067796610168599,-0.013559322033930,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5786,5844,5846,5904,0.351724137930641,-0.054237288134667,0.358620689654758,-0.061016949151634,0.358620689654758,-0.047457627117699,0.365517241378876,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,-0.000000000000000,2 -5787,5845,5847,5905,0.351724137930641,-0.040677966100731,0.358620689654758,-0.047457627117699,0.358620689654758,-0.033898305083763,0.365517241378876,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 -5788,5846,5848,5906,0.351724137930641,-0.027118644066798,0.358620689654758,-0.033898305083763,0.358620689654758,-0.020338983049833,0.365517241378876,-0.027118644066798,-0.013559322033930,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5789,5847,5849,5907,0.351724137930641,-0.013559322032862,0.358620689654758,-0.020338983049833,0.358620689654758,-0.006779661015891,0.365517241378876,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,-0.000000000000000,2 -5790,5848,5850,5908,0.351724137930641,0.000000000001056,0.358620689654758,-0.006779661015891,0.358620689654758,0.006779661018004,0.365517241378876,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 -5791,5849,5851,5909,0.351724137930641,0.013559322034933,0.358620689654758,0.006779661018004,0.358620689654758,0.020338983051863,0.365517241378876,0.013559322034934,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5792,5850,5852,5910,0.351724137930641,0.027118644068793,0.358620689654758,0.020338983051863,0.358620689654758,0.033898305085723,0.365517241378876,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5793,5851,5853,5911,0.351724137930641,0.040677966102653,0.358620689654758,0.033898305085723,0.358620689654758,0.047457627119583,0.365517241378876,0.040677966102653,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5794,5852,5854,5912,0.351724137930641,0.054237288136512,0.358620689654758,0.047457627119583,0.358620689654758,0.061016949153442,0.365517241378876,0.054237288136513,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5795,5853,5855,5913,0.351724137930641,0.067796610170372,0.358620689654758,0.061016949153442,0.358620689654758,0.074576271187302,0.365517241378876,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5796,5854,5856,5914,0.351724137930641,0.081355932204232,0.358620689654758,0.074576271187302,0.358620689654758,0.088135593221162,0.365517241378876,0.081355932204232,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5797,5855,5857,5915,0.351724137930641,0.094915254238085,0.358620689654758,0.088135593221162,0.358620689654758,0.101694915255008,0.365517241378876,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 -5798,5856,5858,5916,0.351724137930641,0.108474576271933,0.358620689654758,0.101694915255008,0.358620689654758,0.115254237288859,0.365517241378876,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033852,-0.000000000000000,2 -5799,5857,5859,5917,0.351724137930641,0.122033898305789,0.358620689654758,0.115254237288859,0.358620689654758,0.128813559322719,0.365517241378876,0.122033898305789,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5800,5858,5860,5918,0.351724137930641,0.135593220339649,0.358620689654758,0.128813559322719,0.358620689654758,0.142372881356579,0.365517241378876,0.135593220339649,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5801,5859,5861,5919,0.351724137930641,0.149152542373509,0.358620689654758,0.142372881356579,0.358620689654758,0.155932203390438,0.365517241378876,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5802,5860,5862,5920,0.351724137930641,0.162711864407368,0.358620689654758,0.155932203390438,0.358620689654758,0.169491525424298,0.365517241378876,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5803,5861,5863,5921,0.351724137930641,0.176271186441228,0.358620689654758,0.169491525424298,0.358620689654758,0.183050847458158,0.365517241378876,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5804,5862,5864,5922,0.351724137930641,0.189830508475088,0.358620689654758,0.183050847458158,0.358620689654758,0.196610169492017,0.365517241378876,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5805,5863,5865,5923,0.351724137930641,0.203389830508947,0.358620689654758,0.196610169492017,0.358620689654758,0.210169491525877,0.365517241378876,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5806,5864,5866,5924,0.351724137930641,0.216949152542807,0.358620689654758,0.210169491525877,0.358620689654758,0.223728813559737,0.365517241378876,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5807,5865,5867,5925,0.351724137930641,0.230508474576667,0.358620689654758,0.223728813559737,0.358620689654758,0.237288135593597,0.365517241378876,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5808,5866,5868,5926,0.351724137930641,0.244067796610527,0.358620689654758,0.237288135593597,0.358620689654758,0.250847457627456,0.365517241378876,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5809,5867,5869,5927,0.351724137930641,0.257627118644386,0.358620689654758,0.250847457627456,0.358620689654758,0.264406779661316,0.365517241378876,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5810,5868,5870,5928,0.351724137930641,0.271186440678246,0.358620689654758,0.264406779661316,0.358620689654758,0.277966101695176,0.365517241378876,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5811,5869,5871,5929,0.351724137930641,0.284745762712106,0.358620689654758,0.277966101695176,0.358620689654758,0.291525423729036,0.365517241378876,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5812,5870,5872,5930,0.351724137930641,0.298305084745975,0.358620689654758,0.291525423729036,0.358620689654758,0.305084745762915,0.365517241378876,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 -5813,5871,5873,5931,0.351724137930641,0.311864406779851,0.358620689654758,0.305084745762915,0.358620689654758,0.318644067796787,0.365517241378876,0.311864406779851,-0.013559322033872,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 -5814,5872,5874,5932,0.351724137930641,0.325423728813729,0.358620689654758,0.318644067796787,0.358620689654758,0.332203389830671,0.365517241378876,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033883,-0.000000000000000,2 -5815,5873,5875,5933,0.351724137930641,0.338983050847605,0.358620689654758,0.332203389830671,0.358620689654758,0.345762711864539,0.365517241378876,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 -5816,5874,5876,5934,0.351724137930641,0.352542372881469,0.358620689654758,0.345762711864539,0.358620689654758,0.359322033898399,0.365517241378876,0.352542372881469,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5817,5875,5877,5935,0.351724137930641,0.366101694915329,0.358620689654758,0.359322033898399,0.358620689654758,0.372881355932259,0.365517241378876,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5818,5876,5878,5936,0.351724137930641,0.379661016949189,0.358620689654758,0.372881355932259,0.358620689654758,0.386440677966119,0.365517241378876,0.379661016949189,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5819,5877,5937,7036,0.351724137930641,0.393220338983059,0.358620689654758,0.386440677966119,0.365517241378876,0.393220338983059,0.358620689654758,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 -4946,5820,5880,5938,0.372413793102993,-0.400000000000000,0.365517241378876,-0.393220338983034,0.372413793102993,-0.386440677966068,0.379310344827111,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 -5821,5879,5881,5939,0.365517241378876,-0.379661016949095,0.372413793102993,-0.386440677966068,0.372413793102993,-0.372881355932122,0.379310344827111,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5822,5880,5882,5940,0.365517241378876,-0.366101694915163,0.372413793102993,-0.372881355932122,0.372413793102993,-0.359322033898204,0.379310344827111,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,-0.000000000000000,2 -5823,5881,5883,5941,0.365517241378876,-0.352542372881227,0.372413793102993,-0.359322033898204,0.372413793102993,-0.345762711864250,0.379310344827111,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5824,5882,5884,5942,0.365517241378876,-0.338983050847293,0.372413793102993,-0.345762711864250,0.372413793102993,-0.332203389830336,0.379310344827111,-0.338983050847293,-0.013559322033914,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033914,-0.000000000000000,2 -5825,5883,5885,5943,0.365517241378876,-0.325423728813361,0.372413793102993,-0.332203389830336,0.372413793102993,-0.318644067796386,0.379310344827111,-0.325423728813361,-0.013559322033950,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 -5826,5884,5886,5944,0.365517241378876,-0.311864406779422,0.372413793102993,-0.318644067796386,0.372413793102993,-0.305084745762457,0.379310344827111,-0.311864406779421,-0.013559322033928,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033928,-0.000000000000000,2 -5827,5885,5887,5945,0.365517241378876,-0.298305084745489,0.372413793102993,-0.305084745762457,0.372413793102993,-0.291525423728521,0.379310344827111,-0.298305084745489,-0.013559322033936,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033936,0.000000000000000,2 -5828,5886,5888,5946,0.365517241378876,-0.284745762711550,0.372413793102993,-0.291525423728521,0.372413793102993,-0.277966101694579,0.379310344827111,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033942,0.000000000000000,2 -5829,5887,5889,5947,0.365517241378876,-0.271186440677618,0.372413793102993,-0.277966101694579,0.372413793102993,-0.264406779660657,0.379310344827111,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,0.000000000000000,2 -5830,5888,5890,5948,0.365517241378876,-0.257627118643680,0.372413793102993,-0.264406779660657,0.372413793102993,-0.250847457626703,0.379310344827111,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,-0.000000000000000,2 -5831,5889,5891,5949,0.365517241378876,-0.244067796609748,0.372413793102993,-0.250847457626703,0.372413793102993,-0.237288135592793,0.379310344827111,-0.244067796609748,-0.013559322033910,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 -5832,5890,5892,5950,0.365517241378876,-0.230508474575816,0.372413793102993,-0.237288135592793,0.372413793102993,-0.223728813558839,0.379310344827111,-0.230508474575816,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5833,5891,5893,5951,0.365517241378876,-0.216949152541877,0.372413793102993,-0.223728813558839,0.372413793102993,-0.210169491524915,0.379310344827111,-0.216949152541877,-0.013559322033924,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033924,0.000000000000000,2 -5834,5892,5894,5952,0.365517241378876,-0.203389830507945,0.372413793102993,-0.210169491524915,0.372413793102993,-0.196610169490975,0.379310344827111,-0.203389830507945,-0.013559322033940,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,-0.000000000000000,2 -5835,5893,5895,5953,0.365517241378876,-0.189830508474016,0.372413793102993,-0.196610169490975,0.372413793102993,-0.183050847457058,0.379310344827111,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033917,0.000000000000000,2 -5836,5894,5896,5954,0.365517241378876,-0.176271186440084,0.372413793102993,-0.183050847457058,0.372413793102993,-0.169491525423110,0.379310344827111,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033947,-0.000000000000000,2 -5837,5895,5897,5955,0.365517241378876,-0.162711864406145,0.372413793102993,-0.169491525423110,0.372413793102993,-0.155932203389179,0.379310344827111,-0.162711864406145,-0.013559322033931,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 -5838,5896,5898,5956,0.365517241378876,-0.149152542372213,0.372413793102993,-0.155932203389179,0.372413793102993,-0.142372881355246,0.379310344827111,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 -5839,5897,5899,5957,0.365517241378876,-0.135593220338274,0.372413793102993,-0.142372881355246,0.372413793102993,-0.128813559321301,0.379310344827111,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033945,0.000000000000000,2 -5840,5898,5900,5958,0.365517241378876,-0.122033898304341,0.372413793102993,-0.128813559321301,0.372413793102993,-0.115254237287382,0.379310344827111,-0.122033898304341,-0.013559322033919,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,-0.000000000000000,2 -5841,5899,5901,5959,0.365517241378876,-0.108474576270409,0.372413793102993,-0.115254237287382,0.372413793102993,-0.101694915253436,0.379310344827111,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5842,5900,5902,5960,0.365517241378876,-0.094915254236471,0.372413793102993,-0.101694915253436,0.372413793102993,-0.088135593219506,0.379310344827111,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5843,5901,5903,5961,0.365517241378876,-0.081355932202535,0.372413793102993,-0.088135593219506,0.372413793102993,-0.074576271185564,0.379310344827111,-0.081355932202535,-0.013559322033941,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5844,5902,5904,5962,0.365517241378876,-0.067796610168599,0.372413793102993,-0.074576271185564,0.372413793102993,-0.061016949151634,0.379310344827111,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5845,5903,5905,5963,0.365517241378876,-0.054237288134667,0.372413793102993,-0.061016949151634,0.372413793102993,-0.047457627117699,0.379310344827111,-0.054237288134667,-0.013559322033935,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033935,-0.000000000000000,2 -5846,5904,5906,5964,0.365517241378876,-0.040677966100731,0.372413793102993,-0.047457627117699,0.372413793102993,-0.033898305083763,0.379310344827111,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033937,0.000000000000000,2 -5847,5905,5907,5965,0.365517241378876,-0.027118644066798,0.372413793102993,-0.033898305083763,0.372413793102993,-0.020338983049832,0.379310344827111,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5848,5906,5908,5966,0.365517241378876,-0.013559322032862,0.372413793102993,-0.020338983049832,0.372413793102993,-0.006779661015891,0.379310344827111,-0.013559322032862,-0.013559322033941,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,-0.000000000000000,2 -5849,5907,5909,5967,0.365517241378876,0.000000000001056,0.372413793102993,-0.006779661015891,0.372413793102993,0.006779661018004,0.379310344827111,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 -5850,5908,5910,5968,0.365517241378876,0.013559322034934,0.372413793102993,0.006779661018004,0.372413793102993,0.020338983051863,0.379310344827111,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5851,5909,5911,5969,0.365517241378876,0.027118644068793,0.372413793102993,0.020338983051863,0.372413793102993,0.033898305085723,0.379310344827111,0.027118644068793,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5852,5910,5912,5970,0.365517241378876,0.040677966102653,0.372413793102993,0.033898305085723,0.372413793102993,0.047457627119583,0.379310344827111,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5853,5911,5913,5971,0.365517241378876,0.054237288136513,0.372413793102993,0.047457627119583,0.372413793102993,0.061016949153442,0.379310344827111,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5854,5912,5914,5972,0.365517241378876,0.067796610170372,0.372413793102993,0.061016949153442,0.372413793102993,0.074576271187302,0.379310344827111,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5855,5913,5915,5973,0.365517241378876,0.081355932204232,0.372413793102993,0.074576271187302,0.372413793102993,0.088135593221162,0.379310344827111,0.081355932204232,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5856,5914,5916,5974,0.365517241378876,0.094915254238085,0.372413793102993,0.088135593221162,0.372413793102993,0.101694915255008,0.379310344827111,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 -5857,5915,5917,5975,0.365517241378876,0.108474576271933,0.372413793102993,0.101694915255008,0.372413793102993,0.115254237288859,0.379310344827111,0.108474576271933,-0.013559322033852,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 -5858,5916,5918,5976,0.365517241378876,0.122033898305789,0.372413793102993,0.115254237288859,0.372413793102993,0.128813559322719,0.379310344827111,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5859,5917,5919,5977,0.365517241378876,0.135593220339649,0.372413793102993,0.128813559322719,0.372413793102993,0.142372881356579,0.379310344827111,0.135593220339649,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5860,5918,5920,5978,0.365517241378876,0.149152542373509,0.372413793102993,0.142372881356579,0.372413793102993,0.155932203390438,0.379310344827111,0.149152542373509,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5861,5919,5921,5979,0.365517241378876,0.162711864407368,0.372413793102993,0.155932203390438,0.372413793102993,0.169491525424298,0.379310344827111,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5862,5920,5922,5980,0.365517241378876,0.176271186441228,0.372413793102993,0.169491525424298,0.372413793102993,0.183050847458158,0.379310344827111,0.176271186441228,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5863,5921,5923,5981,0.365517241378876,0.189830508475088,0.372413793102993,0.183050847458158,0.372413793102993,0.196610169492017,0.379310344827111,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5864,5922,5924,5982,0.365517241378876,0.203389830508947,0.372413793102993,0.196610169492017,0.372413793102993,0.210169491525877,0.379310344827111,0.203389830508947,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5865,5923,5925,5983,0.365517241378876,0.216949152542807,0.372413793102993,0.210169491525877,0.372413793102993,0.223728813559737,0.379310344827111,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5866,5924,5926,5984,0.365517241378876,0.230508474576667,0.372413793102993,0.223728813559737,0.372413793102993,0.237288135593597,0.379310344827111,0.230508474576667,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5867,5925,5927,5985,0.365517241378876,0.244067796610527,0.372413793102993,0.237288135593597,0.372413793102993,0.250847457627456,0.379310344827111,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5868,5926,5928,5986,0.365517241378876,0.257627118644386,0.372413793102993,0.250847457627456,0.372413793102993,0.264406779661316,0.379310344827111,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5869,5927,5929,5987,0.365517241378876,0.271186440678246,0.372413793102993,0.264406779661316,0.372413793102993,0.277966101695176,0.379310344827111,0.271186440678246,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5870,5928,5930,5988,0.365517241378876,0.284745762712106,0.372413793102993,0.277966101695176,0.372413793102993,0.291525423729036,0.379310344827111,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5871,5929,5931,5989,0.365517241378876,0.298305084745975,0.372413793102993,0.291525423729036,0.372413793102993,0.305084745762915,0.379310344827111,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 -5872,5930,5932,5990,0.365517241378876,0.311864406779851,0.372413793102993,0.305084745762915,0.372413793102993,0.318644067796787,0.379310344827111,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 -5873,5931,5933,5991,0.365517241378876,0.325423728813729,0.372413793102993,0.318644067796787,0.372413793102993,0.332203389830671,0.379310344827111,0.325423728813729,-0.013559322033883,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 -5874,5932,5934,5992,0.365517241378876,0.338983050847605,0.372413793102993,0.332203389830671,0.372413793102993,0.345762711864539,0.379310344827111,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 -5875,5933,5935,5993,0.365517241378876,0.352542372881469,0.372413793102993,0.345762711864539,0.372413793102993,0.359322033898399,0.379310344827111,0.352542372881469,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5876,5934,5936,5994,0.365517241378876,0.366101694915329,0.372413793102993,0.359322033898399,0.372413793102993,0.372881355932259,0.379310344827111,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5877,5935,5937,5995,0.365517241378876,0.379661016949189,0.372413793102993,0.372881355932259,0.372413793102993,0.386440677966119,0.379310344827111,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5878,5936,5996,7050,0.365517241378876,0.393220338983059,0.372413793102993,0.386440677966119,0.379310344827111,0.393220338983059,0.372413793102993,0.400000000000000,-0.013559322033881,0.000000000000000,0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 -4960,5879,5939,5997,0.386206896551228,-0.400000000000000,0.379310344827111,-0.393220338983034,0.386206896551228,-0.386440677966068,0.393103448275346,-0.393220338983034,-0.000000000000000,-0.013793103448235,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448235,0.013559322033932,0.000000000000000,2 -5880,5938,5940,5998,0.379310344827111,-0.379661016949095,0.386206896551228,-0.386440677966068,0.386206896551228,-0.372881355932122,0.393103448275346,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5881,5939,5941,5999,0.379310344827111,-0.366101694915163,0.386206896551228,-0.372881355932122,0.386206896551228,-0.359322033898204,0.393103448275346,-0.366101694915163,-0.013559322033918,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033918,0.000000000000000,2 -5882,5940,5942,6000,0.379310344827111,-0.352542372881227,0.386206896551228,-0.359322033898204,0.386206896551228,-0.345762711864250,0.393103448275346,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5883,5941,5943,6001,0.379310344827111,-0.338983050847293,0.386206896551228,-0.345762711864250,0.386206896551228,-0.332203389830336,0.393103448275346,-0.338983050847293,-0.013559322033914,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033914,0.000000000000000,2 -5884,5942,5944,6002,0.379310344827111,-0.325423728813361,0.386206896551228,-0.332203389830336,0.386206896551228,-0.318644067796385,0.393103448275346,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033950,0.000000000000000,2 -5885,5943,5945,6003,0.379310344827111,-0.311864406779421,0.386206896551228,-0.318644067796385,0.386206896551228,-0.305084745762457,0.393103448275346,-0.311864406779421,-0.013559322033928,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033928,0.000000000000000,2 -5886,5944,5946,6004,0.379310344827111,-0.298305084745489,0.386206896551228,-0.305084745762457,0.386206896551228,-0.291525423728521,0.393103448275346,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033936,-0.000000000000000,2 -5887,5945,5947,6005,0.379310344827111,-0.284745762711550,0.386206896551228,-0.291525423728521,0.386206896551228,-0.277966101694579,0.393103448275346,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033942,-0.000000000000000,2 -5888,5946,5948,6006,0.379310344827111,-0.271186440677618,0.386206896551228,-0.277966101694579,0.386206896551228,-0.264406779660657,0.393103448275346,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033922,0.000000000000000,2 -5889,5947,5949,6007,0.379310344827111,-0.257627118643680,0.386206896551228,-0.264406779660657,0.386206896551228,-0.250847457626703,0.393103448275346,-0.257627118643680,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5890,5948,5950,6008,0.379310344827111,-0.244067796609748,0.386206896551228,-0.250847457626703,0.386206896551228,-0.237288135592793,0.393103448275346,-0.244067796609748,-0.013559322033910,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033910,0.000000000000000,2 -5891,5949,5951,6009,0.379310344827111,-0.230508474575816,0.386206896551228,-0.237288135592793,0.386206896551228,-0.223728813558839,0.393103448275346,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033954,0.000000000000000,2 -5892,5950,5952,6010,0.379310344827111,-0.216949152541877,0.386206896551228,-0.223728813558839,0.386206896551228,-0.210169491524915,0.393103448275346,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033924,0.000000000000000,2 -5893,5951,5953,6011,0.379310344827111,-0.203389830507945,0.386206896551228,-0.210169491524915,0.386206896551228,-0.196610169490975,0.393103448275346,-0.203389830507945,-0.013559322033940,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033940,0.000000000000000,2 -5894,5952,5954,6012,0.379310344827111,-0.189830508474016,0.386206896551228,-0.196610169490975,0.386206896551228,-0.183050847457058,0.393103448275346,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033917,-0.000000000000000,2 -5895,5953,5955,6013,0.379310344827111,-0.176271186440084,0.386206896551228,-0.183050847457058,0.386206896551228,-0.169491525423110,0.393103448275346,-0.176271186440084,-0.013559322033947,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033947,0.000000000000000,2 -5896,5954,5956,6014,0.379310344827111,-0.162711864406145,0.386206896551228,-0.169491525423110,0.386206896551228,-0.155932203389179,0.393103448275346,-0.162711864406145,-0.013559322033931,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033931,0.000000000000000,2 -5897,5955,5957,6015,0.379310344827111,-0.149152542372213,0.386206896551228,-0.155932203389179,0.386206896551228,-0.142372881355246,0.393103448275346,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033933,0.000000000000000,2 -5898,5956,5958,6016,0.379310344827111,-0.135593220338273,0.386206896551228,-0.142372881355246,0.386206896551228,-0.128813559321301,0.393103448275346,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033945,-0.000000000000000,2 -5899,5957,5959,6017,0.379310344827111,-0.122033898304341,0.386206896551228,-0.128813559321301,0.386206896551228,-0.115254237287382,0.393103448275346,-0.122033898304341,-0.013559322033919,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033919,0.000000000000000,2 -5900,5958,5960,6018,0.379310344827111,-0.108474576270409,0.386206896551228,-0.115254237287382,0.386206896551228,-0.101694915253436,0.393103448275346,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033946,0.000000000000000,2 -5901,5959,5961,6019,0.379310344827111,-0.094915254236471,0.386206896551228,-0.101694915253436,0.386206896551228,-0.088135593219506,0.393103448275346,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5902,5960,5962,6020,0.379310344827111,-0.081355932202535,0.386206896551228,-0.088135593219506,0.386206896551228,-0.074576271185564,0.393103448275346,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5903,5961,5963,6021,0.379310344827111,-0.067796610168599,0.386206896551228,-0.074576271185564,0.386206896551228,-0.061016949151634,0.393103448275346,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5904,5962,5964,6022,0.379310344827111,-0.054237288134667,0.386206896551228,-0.061016949151634,0.386206896551228,-0.047457627117699,0.393103448275346,-0.054237288134667,-0.013559322033935,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033935,0.000000000000000,2 -5905,5963,5965,6023,0.379310344827111,-0.040677966100731,0.386206896551228,-0.047457627117699,0.386206896551228,-0.033898305083763,0.393103448275346,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033937,-0.000000000000000,2 -5906,5964,5966,6024,0.379310344827111,-0.027118644066798,0.386206896551228,-0.033898305083763,0.386206896551228,-0.020338983049832,0.393103448275346,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033930,0.000000000000000,2 -5907,5965,5967,6025,0.379310344827111,-0.013559322032862,0.386206896551228,-0.020338983049832,0.386206896551228,-0.006779661015891,0.393103448275346,-0.013559322032862,-0.013559322033941,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033941,0.000000000000000,2 -5908,5966,5968,6026,0.379310344827111,0.000000000001056,0.386206896551228,-0.006779661015891,0.386206896551228,0.006779661018004,0.393103448275346,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033895,0.000000000000000,2 -5909,5967,5969,6027,0.379310344827111,0.013559322034933,0.386206896551228,0.006779661018004,0.386206896551228,0.020338983051863,0.393103448275346,0.013559322034933,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5910,5968,5970,6028,0.379310344827111,0.027118644068793,0.386206896551228,0.020338983051863,0.386206896551228,0.033898305085723,0.393103448275346,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5911,5969,5971,6029,0.379310344827111,0.040677966102653,0.386206896551228,0.033898305085723,0.386206896551228,0.047457627119583,0.393103448275346,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5912,5970,5972,6030,0.379310344827111,0.054237288136513,0.386206896551228,0.047457627119583,0.386206896551228,0.061016949153442,0.393103448275346,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5913,5971,5973,6031,0.379310344827111,0.067796610170372,0.386206896551228,0.061016949153442,0.386206896551228,0.074576271187302,0.393103448275346,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5914,5972,5974,6032,0.379310344827111,0.081355932204232,0.386206896551228,0.074576271187302,0.386206896551228,0.088135593221162,0.393103448275346,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5915,5973,5975,6033,0.379310344827111,0.094915254238085,0.386206896551228,0.088135593221162,0.386206896551228,0.101694915255008,0.393103448275346,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033846,0.000000000000000,2 -5916,5974,5976,6034,0.379310344827111,0.108474576271933,0.386206896551228,0.101694915255008,0.386206896551228,0.115254237288859,0.393103448275346,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033852,0.000000000000000,2 -5917,5975,5977,6035,0.379310344827111,0.122033898305789,0.386206896551228,0.115254237288859,0.386206896551228,0.128813559322719,0.393103448275346,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5918,5976,5978,6036,0.379310344827111,0.135593220339649,0.386206896551228,0.128813559322719,0.386206896551228,0.142372881356579,0.393103448275346,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5919,5977,5979,6037,0.379310344827111,0.149152542373509,0.386206896551228,0.142372881356579,0.386206896551228,0.155932203390438,0.393103448275346,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5920,5978,5980,6038,0.379310344827111,0.162711864407368,0.386206896551228,0.155932203390438,0.386206896551228,0.169491525424298,0.393103448275346,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5921,5979,5981,6039,0.379310344827111,0.176271186441228,0.386206896551228,0.169491525424298,0.386206896551228,0.183050847458158,0.393103448275346,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5922,5980,5982,6040,0.379310344827111,0.189830508475088,0.386206896551228,0.183050847458158,0.386206896551228,0.196610169492018,0.393103448275346,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5923,5981,5983,6041,0.379310344827111,0.203389830508947,0.386206896551228,0.196610169492018,0.386206896551228,0.210169491525877,0.393103448275346,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5924,5982,5984,6042,0.379310344827111,0.216949152542807,0.386206896551228,0.210169491525877,0.386206896551228,0.223728813559737,0.393103448275346,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,-0.000000000000000,2 -5925,5983,5985,6043,0.379310344827111,0.230508474576667,0.386206896551228,0.223728813559737,0.386206896551228,0.237288135593597,0.393103448275346,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5926,5984,5986,6044,0.379310344827111,0.244067796610527,0.386206896551228,0.237288135593597,0.386206896551228,0.250847457627456,0.393103448275346,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5927,5985,5987,6045,0.379310344827111,0.257627118644386,0.386206896551228,0.250847457627456,0.386206896551228,0.264406779661316,0.393103448275346,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5928,5986,5988,6046,0.379310344827111,0.271186440678246,0.386206896551228,0.264406779661316,0.386206896551228,0.277966101695176,0.393103448275346,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5929,5987,5989,6047,0.379310344827111,0.284745762712106,0.386206896551228,0.277966101695176,0.386206896551228,0.291525423729036,0.393103448275346,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5930,5988,5990,6048,0.379310344827111,0.298305084745975,0.386206896551228,0.291525423729036,0.386206896551228,0.305084745762915,0.393103448275346,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033879,0.000000000000000,2 -5931,5989,5991,6049,0.379310344827111,0.311864406779851,0.386206896551228,0.305084745762915,0.386206896551228,0.318644067796787,0.393103448275346,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033872,0.000000000000000,2 -5932,5990,5992,6050,0.379310344827111,0.325423728813729,0.386206896551228,0.318644067796787,0.386206896551228,0.332203389830671,0.393103448275346,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.013559322033883,0.000000000000000,2 -5933,5991,5993,6051,0.379310344827111,0.338983050847605,0.386206896551228,0.332203389830671,0.386206896551228,0.345762711864539,0.393103448275346,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033869,0.000000000000000,2 -5934,5992,5994,6052,0.379310344827111,0.352542372881469,0.386206896551228,0.345762711864539,0.386206896551228,0.359322033898399,0.393103448275346,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5935,5993,5995,6053,0.379310344827111,0.366101694915329,0.386206896551228,0.359322033898399,0.386206896551228,0.372881355932259,0.393103448275346,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5936,5994,5996,6054,0.379310344827111,0.379661016949189,0.386206896551228,0.372881355932259,0.386206896551228,0.386440677966119,0.393103448275346,0.379661016949189,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.013559322033860,0.000000000000000,2 -5937,5995,6055,7064,0.379310344827111,0.393220338983059,0.386206896551228,0.386440677966119,0.393103448275346,0.393220338983059,0.386206896551228,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448235,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448235,2 -4974,5938,5998,6056,0.399999999999487,-0.400000000000000,0.393103448275346,-0.393220338983034,0.399999999999487,-0.386440677966068,0.406896551723629,-0.393220338983034,-0.000000000000000,-0.013793103448283,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448283,0.013559322033932,0.000000000000000,2 -5939,5997,5999,6057,0.393103448275346,-0.379661016949095,0.399999999999487,-0.386440677966068,0.399999999999487,-0.372881355932122,0.406896551723629,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033946,0.000000000000000,2 -5940,5998,6000,6058,0.393103448275346,-0.366101694915163,0.399999999999487,-0.372881355932122,0.399999999999487,-0.359322033898204,0.406896551723629,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033918,0.000000000000000,2 -5941,5999,6001,6059,0.393103448275346,-0.352542372881227,0.399999999999487,-0.359322033898204,0.399999999999487,-0.345762711864250,0.406896551723629,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033954,0.000000000000000,2 -5942,6000,6002,6060,0.393103448275346,-0.338983050847293,0.399999999999487,-0.345762711864250,0.399999999999487,-0.332203389830336,0.406896551723629,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033914,0.000000000000000,2 -5943,6001,6003,6061,0.393103448275346,-0.325423728813361,0.399999999999487,-0.332203389830336,0.399999999999487,-0.318644067796386,0.406896551723629,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033950,-0.000000000000000,2 -5944,6002,6004,6062,0.393103448275346,-0.311864406779421,0.399999999999487,-0.318644067796386,0.399999999999487,-0.305084745762457,0.406896551723629,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033928,0.000000000000000,2 -5945,6003,6005,6063,0.393103448275346,-0.298305084745489,0.399999999999487,-0.305084745762457,0.399999999999487,-0.291525423728521,0.406896551723629,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033936,-0.000000000000000,2 -5946,6004,6006,6064,0.393103448275346,-0.284745762711550,0.399999999999487,-0.291525423728521,0.399999999999487,-0.277966101694579,0.406896551723629,-0.284745762711550,-0.013559322033942,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033942,0.000000000000000,2 -5947,6005,6007,6065,0.393103448275346,-0.271186440677618,0.399999999999487,-0.277966101694579,0.399999999999487,-0.264406779660657,0.406896551723629,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033922,0.000000000000000,2 -5948,6006,6008,6066,0.393103448275346,-0.257627118643680,0.399999999999487,-0.264406779660657,0.399999999999487,-0.250847457626703,0.406896551723629,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033954,0.000000000000000,2 -5949,6007,6009,6067,0.393103448275346,-0.244067796609748,0.399999999999487,-0.250847457626703,0.399999999999487,-0.237288135592793,0.406896551723629,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033910,0.000000000000000,2 -5950,6008,6010,6068,0.393103448275346,-0.230508474575816,0.399999999999487,-0.237288135592793,0.399999999999487,-0.223728813558839,0.406896551723629,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033954,-0.000000000000000,2 -5951,6009,6011,6069,0.393103448275346,-0.216949152541877,0.399999999999487,-0.223728813558839,0.399999999999487,-0.210169491524915,0.406896551723629,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033924,0.000000000000000,2 -5952,6010,6012,6070,0.393103448275346,-0.203389830507945,0.399999999999487,-0.210169491524915,0.399999999999487,-0.196610169490975,0.406896551723629,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033940,0.000000000000000,2 -5953,6011,6013,6071,0.393103448275346,-0.189830508474016,0.399999999999487,-0.196610169490975,0.399999999999488,-0.183050847457058,0.406896551723629,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033917,-0.000000000000000,2 -5954,6012,6014,6072,0.393103448275346,-0.176271186440084,0.399999999999488,-0.183050847457058,0.399999999999487,-0.169491525423110,0.406896551723629,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033947,0.000000000000000,2 -5955,6013,6015,6073,0.393103448275346,-0.162711864406145,0.399999999999487,-0.169491525423110,0.399999999999487,-0.155932203389179,0.406896551723629,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033931,0.000000000000000,2 -5956,6014,6016,6074,0.393103448275346,-0.149152542372213,0.399999999999487,-0.155932203389179,0.399999999999487,-0.142372881355246,0.406896551723629,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033933,0.000000000000000,2 -5957,6015,6017,6075,0.393103448275346,-0.135593220338274,0.399999999999487,-0.142372881355246,0.399999999999487,-0.128813559321301,0.406896551723629,-0.135593220338274,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033945,-0.000000000000000,2 -5958,6016,6018,6076,0.393103448275346,-0.122033898304341,0.399999999999487,-0.128813559321301,0.399999999999487,-0.115254237287382,0.406896551723629,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033919,0.000000000000000,2 -5959,6017,6019,6077,0.393103448275346,-0.108474576270409,0.399999999999487,-0.115254237287382,0.399999999999487,-0.101694915253436,0.406896551723629,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033946,0.000000000000000,2 -5960,6018,6020,6078,0.393103448275346,-0.094915254236471,0.399999999999487,-0.101694915253436,0.399999999999487,-0.088135593219506,0.406896551723629,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033930,0.000000000000000,2 -5961,6019,6021,6079,0.393103448275346,-0.081355932202535,0.399999999999487,-0.088135593219506,0.399999999999487,-0.074576271185564,0.406896551723629,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033941,0.000000000000000,2 -5962,6020,6022,6080,0.393103448275346,-0.067796610168599,0.399999999999487,-0.074576271185564,0.399999999999487,-0.061016949151634,0.406896551723629,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033930,0.000000000000000,2 -5963,6021,6023,6081,0.393103448275346,-0.054237288134667,0.399999999999487,-0.061016949151634,0.399999999999487,-0.047457627117699,0.406896551723629,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033935,-0.000000000000000,2 -5964,6022,6024,6082,0.393103448275346,-0.040677966100731,0.399999999999487,-0.047457627117699,0.399999999999487,-0.033898305083763,0.406896551723629,-0.040677966100731,-0.013559322033937,0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.013559322033937,0.000000000000000,2 -5965,6023,6025,6083,0.393103448275346,-0.027118644066798,0.399999999999487,-0.033898305083763,0.399999999999487,-0.020338983049833,0.406896551723629,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033930,0.000000000000000,2 -5966,6024,6026,6084,0.393103448275346,-0.013559322032862,0.399999999999487,-0.020338983049833,0.399999999999487,-0.006779661015891,0.406896551723629,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033941,-0.000000000000000,2 -5967,6025,6027,6085,0.393103448275346,0.000000000001056,0.399999999999487,-0.006779661015891,0.399999999999487,0.006779661018004,0.406896551723629,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.013559322033895,0.000000000000000,2 -5968,6026,6028,6086,0.393103448275346,0.013559322034933,0.399999999999487,0.006779661018004,0.399999999999487,0.020338983051863,0.406896551723629,0.013559322034933,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5969,6027,6029,6087,0.393103448275346,0.027118644068793,0.399999999999487,0.020338983051863,0.399999999999487,0.033898305085723,0.406896551723629,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5970,6028,6030,6088,0.393103448275346,0.040677966102653,0.399999999999487,0.033898305085723,0.399999999999487,0.047457627119583,0.406896551723629,0.040677966102653,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,-0.000000000000000,2 -5971,6029,6031,6089,0.393103448275346,0.054237288136513,0.399999999999487,0.047457627119583,0.399999999999487,0.061016949153442,0.406896551723629,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5972,6030,6032,6090,0.393103448275346,0.067796610170372,0.399999999999487,0.061016949153442,0.399999999999487,0.074576271187302,0.406896551723629,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5973,6031,6033,6091,0.393103448275346,0.081355932204232,0.399999999999487,0.074576271187302,0.399999999999487,0.088135593221162,0.406896551723629,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5974,6032,6034,6092,0.393103448275346,0.094915254238085,0.399999999999487,0.088135593221162,0.399999999999487,0.101694915255008,0.406896551723629,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033846,0.000000000000000,2 -5975,6033,6035,6093,0.393103448275346,0.108474576271933,0.399999999999487,0.101694915255008,0.399999999999487,0.115254237288859,0.406896551723629,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033852,0.000000000000000,2 -5976,6034,6036,6094,0.393103448275346,0.122033898305789,0.399999999999487,0.115254237288859,0.399999999999487,0.128813559322719,0.406896551723629,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5977,6035,6037,6095,0.393103448275346,0.135593220339649,0.399999999999487,0.128813559322719,0.399999999999487,0.142372881356579,0.406896551723629,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,-0.000000000000000,2 -5978,6036,6038,6096,0.393103448275346,0.149152542373509,0.399999999999487,0.142372881356579,0.399999999999487,0.155932203390438,0.406896551723629,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5979,6037,6039,6097,0.393103448275346,0.162711864407368,0.399999999999487,0.155932203390438,0.399999999999487,0.169491525424298,0.406896551723629,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5980,6038,6040,6098,0.393103448275346,0.176271186441228,0.399999999999487,0.169491525424298,0.399999999999487,0.183050847458158,0.406896551723629,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5981,6039,6041,6099,0.393103448275346,0.189830508475088,0.399999999999487,0.183050847458158,0.399999999999487,0.196610169492018,0.406896551723629,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5982,6040,6042,6100,0.393103448275346,0.203389830508947,0.399999999999487,0.196610169492018,0.399999999999487,0.210169491525877,0.406896551723629,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5983,6041,6043,6101,0.393103448275346,0.216949152542807,0.399999999999487,0.210169491525877,0.399999999999487,0.223728813559737,0.406896551723629,0.216949152542807,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5984,6042,6044,6102,0.393103448275346,0.230508474576667,0.399999999999487,0.223728813559737,0.399999999999487,0.237288135593597,0.406896551723629,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5985,6043,6045,6103,0.393103448275346,0.244067796610527,0.399999999999487,0.237288135593597,0.399999999999487,0.250847457627456,0.406896551723629,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5986,6044,6046,6104,0.393103448275346,0.257627118644386,0.399999999999487,0.250847457627456,0.399999999999487,0.264406779661316,0.406896551723629,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5987,6045,6047,6105,0.393103448275346,0.271186440678246,0.399999999999487,0.264406779661316,0.399999999999487,0.277966101695176,0.406896551723629,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5988,6046,6048,6106,0.393103448275346,0.284745762712106,0.399999999999487,0.277966101695176,0.399999999999487,0.291525423729036,0.406896551723629,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5989,6047,6049,6107,0.393103448275346,0.298305084745975,0.399999999999487,0.291525423729036,0.399999999999487,0.305084745762915,0.406896551723629,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033879,0.000000000000000,2 -5990,6048,6050,6108,0.393103448275346,0.311864406779851,0.399999999999487,0.305084745762915,0.399999999999487,0.318644067796787,0.406896551723629,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033872,0.000000000000000,2 -5991,6049,6051,6109,0.393103448275346,0.325423728813729,0.399999999999487,0.318644067796787,0.399999999999487,0.332203389830671,0.406896551723629,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033883,0.000000000000000,2 -5992,6050,6052,6110,0.393103448275346,0.338983050847605,0.399999999999487,0.332203389830671,0.399999999999487,0.345762711864539,0.406896551723629,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033869,0.000000000000000,2 -5993,6051,6053,6111,0.393103448275346,0.352542372881469,0.399999999999487,0.345762711864539,0.399999999999487,0.359322033898399,0.406896551723629,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5994,6052,6054,6112,0.393103448275346,0.366101694915329,0.399999999999487,0.359322033898399,0.399999999999487,0.372881355932259,0.406896551723629,0.366101694915329,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5995,6053,6055,6113,0.393103448275346,0.379661016949189,0.399999999999487,0.372881355932259,0.399999999999487,0.386440677966119,0.406896551723629,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.013559322033860,0.000000000000000,2 -5996,6054,6114,7078,0.393103448275346,0.393220338983059,0.399999999999487,0.386440677966119,0.406896551723629,0.393220338983059,0.399999999999487,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448283,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448283,2 -4988,5997,6057,6115,0.413793103447786,-0.400000000000000,0.406896551723629,-0.393220338983034,0.413793103447786,-0.386440677966068,0.420689655171942,-0.393220338983034,-0.000000000000000,-0.013793103448313,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448313,0.013559322033932,-0.000000000000000,2 -5998,6056,6058,6116,0.406896551723629,-0.379661016949095,0.413793103447786,-0.386440677966068,0.413793103447786,-0.372881355932122,0.420689655171942,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033946,0.000000000000000,2 -5999,6057,6059,6117,0.406896551723629,-0.366101694915163,0.413793103447786,-0.372881355932122,0.413793103447786,-0.359322033898204,0.420689655171942,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033918,0.000000000000000,2 -6000,6058,6060,6118,0.406896551723629,-0.352542372881227,0.413793103447786,-0.359322033898204,0.413793103447786,-0.345762711864250,0.420689655171942,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033954,-0.000000000000000,2 -6001,6059,6061,6119,0.406896551723629,-0.338983050847293,0.413793103447786,-0.345762711864250,0.413793103447786,-0.332203389830336,0.420689655171942,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033914,0.000000000000000,2 -6002,6060,6062,6120,0.406896551723629,-0.325423728813361,0.413793103447786,-0.332203389830336,0.413793103447786,-0.318644067796386,0.420689655171942,-0.325423728813361,-0.013559322033950,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033950,0.000000000000000,2 -6003,6061,6063,6121,0.406896551723629,-0.311864406779422,0.413793103447786,-0.318644067796386,0.413793103447786,-0.305084745762457,0.420689655171942,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033928,0.000000000000000,2 -6004,6062,6064,6122,0.406896551723629,-0.298305084745489,0.413793103447786,-0.305084745762457,0.413793103447786,-0.291525423728521,0.420689655171942,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033936,-0.000000000000000,2 -6005,6063,6065,6123,0.406896551723629,-0.284745762711550,0.413793103447786,-0.291525423728521,0.413793103447786,-0.277966101694579,0.420689655171942,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033942,0.000000000000000,2 -6006,6064,6066,6124,0.406896551723629,-0.271186440677618,0.413793103447786,-0.277966101694579,0.413793103447786,-0.264406779660657,0.420689655171942,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033922,-0.000000000000000,2 -6007,6065,6067,6125,0.406896551723629,-0.257627118643680,0.413793103447786,-0.264406779660657,0.413793103447786,-0.250847457626703,0.420689655171942,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033954,0.000000000000000,2 -6008,6066,6068,6126,0.406896551723629,-0.244067796609748,0.413793103447786,-0.250847457626703,0.413793103447785,-0.237288135592793,0.420689655171942,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033910,0.000000000000000,2 -6009,6067,6069,6127,0.406896551723629,-0.230508474575816,0.413793103447785,-0.237288135592793,0.413793103447786,-0.223728813558839,0.420689655171942,-0.230508474575816,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033954,-0.000000000000000,2 -6010,6068,6070,6128,0.406896551723629,-0.216949152541877,0.413793103447786,-0.223728813558839,0.413793103447786,-0.210169491524915,0.420689655171942,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033924,0.000000000000000,2 -6011,6069,6071,6129,0.406896551723629,-0.203389830507945,0.413793103447786,-0.210169491524915,0.413793103447786,-0.196610169490975,0.420689655171942,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033940,0.000000000000000,2 -6012,6070,6072,6130,0.406896551723629,-0.189830508474016,0.413793103447786,-0.196610169490975,0.413793103447786,-0.183050847457058,0.420689655171942,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033917,-0.000000000000000,2 -6013,6071,6073,6131,0.406896551723629,-0.176271186440084,0.413793103447786,-0.183050847457058,0.413793103447786,-0.169491525423110,0.420689655171942,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033947,0.000000000000000,2 -6014,6072,6074,6132,0.406896551723629,-0.162711864406145,0.413793103447786,-0.169491525423110,0.413793103447786,-0.155932203389179,0.420689655171942,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033931,0.000000000000000,2 -6015,6073,6075,6133,0.406896551723629,-0.149152542372213,0.413793103447786,-0.155932203389179,0.413793103447786,-0.142372881355246,0.420689655171942,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033933,-0.000000000000000,2 -6016,6074,6076,6134,0.406896551723629,-0.135593220338274,0.413793103447786,-0.142372881355246,0.413793103447786,-0.128813559321301,0.420689655171942,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033945,0.000000000000000,2 -6017,6075,6077,6135,0.406896551723629,-0.122033898304341,0.413793103447786,-0.128813559321301,0.413793103447786,-0.115254237287382,0.420689655171942,-0.122033898304341,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033919,0.000000000000000,2 -6018,6076,6078,6136,0.406896551723629,-0.108474576270409,0.413793103447786,-0.115254237287382,0.413793103447786,-0.101694915253436,0.420689655171942,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033946,0.000000000000000,2 -6019,6077,6079,6137,0.406896551723629,-0.094915254236471,0.413793103447786,-0.101694915253436,0.413793103447786,-0.088135593219506,0.420689655171942,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033930,0.000000000000000,2 -6020,6078,6080,6138,0.406896551723629,-0.081355932202535,0.413793103447786,-0.088135593219506,0.413793103447786,-0.074576271185564,0.420689655171942,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033941,-0.000000000000000,2 -6021,6079,6081,6139,0.406896551723629,-0.067796610168599,0.413793103447786,-0.074576271185564,0.413793103447786,-0.061016949151634,0.420689655171942,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033930,0.000000000000000,2 -6022,6080,6082,6140,0.406896551723629,-0.054237288134667,0.413793103447786,-0.061016949151634,0.413793103447786,-0.047457627117699,0.420689655171942,-0.054237288134667,-0.013559322033935,0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033935,0.000000000000000,2 -6023,6081,6083,6141,0.406896551723629,-0.040677966100731,0.413793103447786,-0.047457627117699,0.413793103447786,-0.033898305083763,0.420689655171942,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033937,0.000000000000000,2 -6024,6082,6084,6142,0.406896551723629,-0.027118644066798,0.413793103447786,-0.033898305083763,0.413793103447786,-0.020338983049833,0.420689655171942,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033930,0.000000000000000,2 -6025,6083,6085,6143,0.406896551723629,-0.013559322032862,0.413793103447786,-0.020338983049833,0.413793103447786,-0.006779661015891,0.420689655171942,-0.013559322032862,-0.013559322033941,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033941,0.000000000000000,2 -6026,6084,6086,6144,0.406896551723629,0.000000000001056,0.413793103447786,-0.006779661015891,0.413793103447786,0.006779661018004,0.420689655171942,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033895,0.000000000000000,2 -6027,6085,6087,6145,0.406896551723629,0.013559322034933,0.413793103447786,0.006779661018004,0.413793103447786,0.020338983051863,0.420689655171942,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6028,6086,6088,6146,0.406896551723629,0.027118644068793,0.413793103447786,0.020338983051863,0.413793103447786,0.033898305085723,0.420689655171942,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033860,-0.000000000000000,2 -6029,6087,6089,6147,0.406896551723629,0.040677966102653,0.413793103447786,0.033898305085723,0.413793103447786,0.047457627119583,0.420689655171942,0.040677966102653,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6030,6088,6090,6148,0.406896551723629,0.054237288136513,0.413793103447786,0.047457627119583,0.413793103447786,0.061016949153442,0.420689655171942,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6031,6089,6091,6149,0.406896551723629,0.067796610170372,0.413793103447786,0.061016949153442,0.413793103447786,0.074576271187302,0.420689655171942,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6032,6090,6092,6150,0.406896551723629,0.081355932204232,0.413793103447786,0.074576271187302,0.413793103447786,0.088135593221162,0.420689655171942,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6033,6091,6093,6151,0.406896551723629,0.094915254238085,0.413793103447786,0.088135593221162,0.413793103447786,0.101694915255008,0.420689655171942,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033846,0.000000000000000,2 -6034,6092,6094,6152,0.406896551723629,0.108474576271933,0.413793103447786,0.101694915255008,0.413793103447786,0.115254237288859,0.420689655171942,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033852,0.000000000000000,2 -6035,6093,6095,6153,0.406896551723629,0.122033898305789,0.413793103447786,0.115254237288859,0.413793103447786,0.128813559322719,0.420689655171942,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6036,6094,6096,6154,0.406896551723629,0.135593220339649,0.413793103447786,0.128813559322719,0.413793103447786,0.142372881356579,0.420689655171942,0.135593220339649,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6037,6095,6097,6155,0.406896551723629,0.149152542373509,0.413793103447786,0.142372881356579,0.413793103447786,0.155932203390438,0.420689655171942,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,-0.000000000000000,2 -6038,6096,6098,6156,0.406896551723629,0.162711864407368,0.413793103447786,0.155932203390438,0.413793103447786,0.169491525424298,0.420689655171942,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6039,6097,6099,6157,0.406896551723629,0.176271186441228,0.413793103447786,0.169491525424298,0.413793103447786,0.183050847458158,0.420689655171942,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6040,6098,6100,6158,0.406896551723629,0.189830508475088,0.413793103447786,0.183050847458158,0.413793103447786,0.196610169492018,0.420689655171942,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6041,6099,6101,6159,0.406896551723629,0.203389830508947,0.413793103447786,0.196610169492018,0.413793103447786,0.210169491525877,0.420689655171942,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6042,6100,6102,6160,0.406896551723629,0.216949152542807,0.413793103447786,0.210169491525877,0.413793103447786,0.223728813559737,0.420689655171942,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6043,6101,6103,6161,0.406896551723629,0.230508474576667,0.413793103447786,0.223728813559737,0.413793103447786,0.237288135593597,0.420689655171942,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6044,6102,6104,6162,0.406896551723629,0.244067796610527,0.413793103447786,0.237288135593597,0.413793103447786,0.250847457627456,0.420689655171942,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6045,6103,6105,6163,0.406896551723629,0.257627118644386,0.413793103447786,0.250847457627456,0.413793103447786,0.264406779661316,0.420689655171942,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6046,6104,6106,6164,0.406896551723629,0.271186440678246,0.413793103447786,0.264406779661316,0.413793103447786,0.277966101695176,0.420689655171942,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6047,6105,6107,6165,0.406896551723629,0.284745762712106,0.413793103447786,0.277966101695176,0.413793103447786,0.291525423729036,0.420689655171942,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6048,6106,6108,6166,0.406896551723629,0.298305084745975,0.413793103447786,0.291525423729036,0.413793103447786,0.305084745762915,0.420689655171942,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033879,0.000000000000000,2 -6049,6107,6109,6167,0.406896551723629,0.311864406779851,0.413793103447786,0.305084745762915,0.413793103447786,0.318644067796787,0.420689655171942,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033872,0.000000000000000,2 -6050,6108,6110,6168,0.406896551723629,0.325423728813729,0.413793103447786,0.318644067796787,0.413793103447786,0.332203389830671,0.420689655171942,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033883,0.000000000000000,2 -6051,6109,6111,6169,0.406896551723629,0.338983050847605,0.413793103447786,0.332203389830671,0.413793103447786,0.345762711864539,0.420689655171942,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033869,0.000000000000000,2 -6052,6110,6112,6170,0.406896551723629,0.352542372881469,0.413793103447786,0.345762711864539,0.413793103447786,0.359322033898399,0.420689655171942,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6053,6111,6113,6171,0.406896551723629,0.366101694915329,0.413793103447786,0.359322033898399,0.413793103447786,0.372881355932259,0.420689655171942,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6054,6112,6114,6172,0.406896551723629,0.379661016949189,0.413793103447786,0.372881355932259,0.413793103447786,0.386440677966119,0.420689655171942,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6055,6113,6173,7092,0.406896551723629,0.393220338983059,0.413793103447786,0.386440677966119,0.420689655171942,0.393220338983059,0.413793103447786,0.400000000000000,-0.013559322033881,0.000000000000000,0.000000000000000,-0.013793103448313,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448313,2 -5002,6056,6116,6174,0.427586206896100,-0.400000000000000,0.420689655171942,-0.393220338983034,0.427586206896100,-0.386440677966068,0.434482758620257,-0.393220338983034,-0.000000000000000,-0.013793103448315,-0.013559322033932,0.000000000000000,-0.000000000000000,0.013793103448315,0.013559322033932,0.000000000000000,2 -6057,6115,6117,6175,0.420689655171942,-0.379661016949095,0.427586206896100,-0.386440677966068,0.427586206896100,-0.372881355932122,0.434482758620257,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033946,-0.000000000000000,2 -6058,6116,6118,6176,0.420689655171942,-0.366101694915163,0.427586206896100,-0.372881355932122,0.427586206896100,-0.359322033898204,0.434482758620257,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033918,0.000000000000000,2 -6059,6117,6119,6177,0.420689655171942,-0.352542372881227,0.427586206896100,-0.359322033898204,0.427586206896100,-0.345762711864250,0.434482758620257,-0.352542372881227,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033954,0.000000000000000,2 -6060,6118,6120,6178,0.420689655171942,-0.338983050847293,0.427586206896100,-0.345762711864250,0.427586206896100,-0.332203389830336,0.434482758620258,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.013559322033914,-0.000000000000000,2 -6061,6119,6121,6179,0.420689655171942,-0.325423728813361,0.427586206896100,-0.332203389830336,0.427586206896100,-0.318644067796386,0.434482758620258,-0.325423728813361,-0.013559322033950,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033950,0.000000000000000,2 -6062,6120,6122,6180,0.420689655171942,-0.311864406779422,0.427586206896100,-0.318644067796386,0.427586206896100,-0.305084745762457,0.434482758620257,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033928,0.000000000000000,2 -6063,6121,6123,6181,0.420689655171942,-0.298305084745489,0.427586206896100,-0.305084745762457,0.427586206896100,-0.291525423728521,0.434482758620258,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033936,-0.000000000000000,2 -6064,6122,6124,6182,0.420689655171942,-0.284745762711550,0.427586206896100,-0.291525423728521,0.427586206896100,-0.277966101694579,0.434482758620258,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033942,0.000000000000000,2 -6065,6123,6125,6183,0.420689655171942,-0.271186440677618,0.427586206896100,-0.277966101694579,0.427586206896100,-0.264406779660657,0.434482758620257,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033922,0.000000000000000,2 -6066,6124,6126,6184,0.420689655171942,-0.257627118643680,0.427586206896100,-0.264406779660657,0.427586206896100,-0.250847457626703,0.434482758620257,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033954,0.000000000000000,2 -6067,6125,6127,6185,0.420689655171942,-0.244067796609748,0.427586206896100,-0.250847457626703,0.427586206896100,-0.237288135592793,0.434482758620257,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.013559322033910,0.000000000000000,2 -6068,6126,6128,6186,0.420689655171942,-0.230508474575816,0.427586206896100,-0.237288135592793,0.427586206896100,-0.223728813558839,0.434482758620258,-0.230508474575816,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033954,-0.000000000000000,2 -6069,6127,6129,6187,0.420689655171942,-0.216949152541877,0.427586206896100,-0.223728813558839,0.427586206896100,-0.210169491524915,0.434482758620258,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033924,0.000000000000000,2 -6070,6128,6130,6188,0.420689655171942,-0.203389830507945,0.427586206896100,-0.210169491524915,0.427586206896100,-0.196610169490975,0.434482758620257,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033940,0.000000000000000,2 -6071,6129,6131,6189,0.420689655171942,-0.189830508474016,0.427586206896100,-0.196610169490975,0.427586206896100,-0.183050847457058,0.434482758620258,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033917,-0.000000000000000,2 -6072,6130,6132,6190,0.420689655171942,-0.176271186440084,0.427586206896100,-0.183050847457058,0.427586206896100,-0.169491525423110,0.434482758620258,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.013559322033947,0.000000000000000,2 -6073,6131,6133,6191,0.420689655171942,-0.162711864406145,0.427586206896100,-0.169491525423110,0.427586206896100,-0.155932203389179,0.434482758620257,-0.162711864406145,-0.013559322033931,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033931,0.000000000000000,2 -6074,6132,6134,6192,0.420689655171942,-0.149152542372213,0.427586206896100,-0.155932203389179,0.427586206896100,-0.142372881355246,0.434482758620257,-0.149152542372213,-0.013559322033933,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033933,0.000000000000000,2 -6075,6133,6135,6193,0.420689655171942,-0.135593220338273,0.427586206896100,-0.142372881355246,0.427586206896100,-0.128813559321301,0.434482758620257,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033945,0.000000000000000,2 -6076,6134,6136,6194,0.420689655171942,-0.122033898304341,0.427586206896100,-0.128813559321301,0.427586206896100,-0.115254237287382,0.434482758620257,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033919,0.000000000000000,2 -6077,6135,6137,6195,0.420689655171942,-0.108474576270409,0.427586206896100,-0.115254237287382,0.427586206896100,-0.101694915253436,0.434482758620257,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033946,0.000000000000000,2 -6078,6136,6138,6196,0.420689655171942,-0.094915254236471,0.427586206896100,-0.101694915253436,0.427586206896100,-0.088135593219506,0.434482758620257,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.013559322033930,0.000000000000000,2 -6079,6137,6139,6197,0.420689655171942,-0.081355932202535,0.427586206896100,-0.088135593219506,0.427586206896100,-0.074576271185564,0.434482758620257,-0.081355932202535,-0.013559322033941,0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033941,0.000000000000000,2 -6080,6138,6140,6198,0.420689655171942,-0.067796610168599,0.427586206896100,-0.074576271185564,0.427586206896100,-0.061016949151634,0.434482758620257,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033930,0.000000000000000,2 -6081,6139,6141,6199,0.420689655171942,-0.054237288134667,0.427586206896100,-0.061016949151634,0.427586206896100,-0.047457627117699,0.434482758620257,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.013559322033935,0.000000000000000,2 -6082,6140,6142,6200,0.420689655171942,-0.040677966100731,0.427586206896100,-0.047457627117699,0.427586206896100,-0.033898305083763,0.434482758620258,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033937,-0.000000000000000,2 -6083,6141,6143,6201,0.420689655171942,-0.027118644066798,0.427586206896100,-0.033898305083763,0.427586206896100,-0.020338983049833,0.434482758620258,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033930,0.000000000000000,2 -6084,6142,6144,6202,0.420689655171942,-0.013559322032862,0.427586206896100,-0.020338983049833,0.427586206896100,-0.006779661015891,0.434482758620257,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033941,0.000000000000000,2 -6085,6143,6145,6203,0.420689655171942,0.000000000001056,0.427586206896100,-0.006779661015891,0.427586206896100,0.006779661018004,0.434482758620257,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033895,0.000000000000000,2 -6086,6144,6146,6204,0.420689655171942,0.013559322034933,0.427586206896100,0.006779661018004,0.427586206896100,0.020338983051863,0.434482758620257,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6087,6145,6147,6205,0.420689655171942,0.027118644068793,0.427586206896100,0.020338983051863,0.427586206896100,0.033898305085723,0.434482758620257,0.027118644068793,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6088,6146,6148,6206,0.420689655171942,0.040677966102653,0.427586206896100,0.033898305085723,0.427586206896100,0.047457627119583,0.434482758620257,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6089,6147,6149,6207,0.420689655171942,0.054237288136513,0.427586206896100,0.047457627119583,0.427586206896100,0.061016949153442,0.434482758620257,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6090,6148,6150,6208,0.420689655171942,0.067796610170372,0.427586206896100,0.061016949153442,0.427586206896100,0.074576271187302,0.434482758620257,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6091,6149,6151,6209,0.420689655171942,0.081355932204232,0.427586206896100,0.074576271187302,0.427586206896100,0.088135593221162,0.434482758620257,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6092,6150,6152,6210,0.420689655171942,0.094915254238085,0.427586206896100,0.088135593221162,0.427586206896100,0.101694915255008,0.434482758620257,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033846,0.000000000000000,2 -6093,6151,6153,6211,0.420689655171942,0.108474576271933,0.427586206896100,0.101694915255008,0.427586206896100,0.115254237288859,0.434482758620257,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033852,0.000000000000000,2 -6094,6152,6154,6212,0.420689655171942,0.122033898305789,0.427586206896100,0.115254237288859,0.427586206896100,0.128813559322719,0.434482758620257,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6095,6153,6155,6213,0.420689655171942,0.135593220339649,0.427586206896100,0.128813559322719,0.427586206896100,0.142372881356579,0.434482758620257,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6096,6154,6156,6214,0.420689655171942,0.149152542373509,0.427586206896100,0.142372881356579,0.427586206896100,0.155932203390438,0.434482758620257,0.149152542373509,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6097,6155,6157,6215,0.420689655171942,0.162711864407368,0.427586206896100,0.155932203390438,0.427586206896100,0.169491525424298,0.434482758620258,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,-0.000000000000000,2 -6098,6156,6158,6216,0.420689655171942,0.176271186441228,0.427586206896100,0.169491525424298,0.427586206896100,0.183050847458158,0.434482758620258,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6099,6157,6159,6217,0.420689655171942,0.189830508475088,0.427586206896100,0.183050847458158,0.427586206896100,0.196610169492018,0.434482758620257,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6100,6158,6160,6218,0.420689655171942,0.203389830508947,0.427586206896100,0.196610169492018,0.427586206896100,0.210169491525877,0.434482758620257,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6101,6159,6161,6219,0.420689655171942,0.216949152542807,0.427586206896100,0.210169491525877,0.427586206896100,0.223728813559737,0.434482758620257,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6102,6160,6162,6220,0.420689655171942,0.230508474576667,0.427586206896100,0.223728813559737,0.427586206896100,0.237288135593597,0.434482758620257,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6103,6161,6163,6221,0.420689655171942,0.244067796610527,0.427586206896100,0.237288135593597,0.427586206896100,0.250847457627456,0.434482758620257,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6104,6162,6164,6222,0.420689655171942,0.257627118644386,0.427586206896100,0.250847457627456,0.427586206896100,0.264406779661316,0.434482758620257,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6105,6163,6165,6223,0.420689655171942,0.271186440678246,0.427586206896100,0.264406779661316,0.427586206896100,0.277966101695176,0.434482758620257,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6106,6164,6166,6224,0.420689655171942,0.284745762712106,0.427586206896100,0.277966101695176,0.427586206896100,0.291525423729036,0.434482758620257,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6107,6165,6167,6225,0.420689655171942,0.298305084745975,0.427586206896100,0.291525423729036,0.427586206896100,0.305084745762915,0.434482758620257,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033879,0.000000000000000,2 -6108,6166,6168,6226,0.420689655171942,0.311864406779851,0.427586206896100,0.305084745762915,0.427586206896100,0.318644067796787,0.434482758620257,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033872,0.000000000000000,2 -6109,6167,6169,6227,0.420689655171942,0.325423728813729,0.427586206896100,0.318644067796787,0.427586206896100,0.332203389830671,0.434482758620257,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033883,0.000000000000000,2 -6110,6168,6170,6228,0.420689655171942,0.338983050847605,0.427586206896100,0.332203389830671,0.427586206896100,0.345762711864539,0.434482758620257,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033869,0.000000000000000,2 -6111,6169,6171,6229,0.420689655171942,0.352542372881469,0.427586206896100,0.345762711864539,0.427586206896100,0.359322033898399,0.434482758620257,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6112,6170,6172,6230,0.420689655171942,0.366101694915329,0.427586206896100,0.359322033898399,0.427586206896100,0.372881355932259,0.434482758620257,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6113,6171,6173,6231,0.420689655171942,0.379661016949189,0.427586206896100,0.372881355932259,0.427586206896100,0.386440677966119,0.434482758620257,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.013559322033860,0.000000000000000,2 -6114,6172,6232,7106,0.420689655171942,0.393220338983059,0.427586206896100,0.386440677966119,0.434482758620257,0.393220338983059,0.427586206896100,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448315,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448315,2 -5016,6115,6175,6233,0.441379310344412,-0.400000000000000,0.434482758620257,-0.393220338983034,0.441379310344412,-0.386440677966068,0.448275862068567,-0.393220338983034,-0.000000000000000,-0.013793103448310,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448310,0.013559322033932,0.000000000000000,2 -6116,6174,6176,6234,0.434482758620257,-0.379661016949095,0.441379310344412,-0.386440677966068,0.441379310344412,-0.372881355932122,0.448275862068567,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033946,0.000000000000000,2 -6117,6175,6177,6235,0.434482758620257,-0.366101694915163,0.441379310344412,-0.372881355932122,0.441379310344412,-0.359322033898204,0.448275862068567,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033918,-0.000000000000000,2 -6118,6176,6178,6236,0.434482758620257,-0.352542372881227,0.441379310344412,-0.359322033898204,0.441379310344412,-0.345762711864250,0.448275862068567,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033954,0.000000000000000,2 -6119,6177,6179,6237,0.434482758620258,-0.338983050847293,0.441379310344412,-0.345762711864250,0.441379310344412,-0.332203389830336,0.448275862068567,-0.338983050847293,-0.013559322033914,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033914,0.000000000000000,2 -6120,6178,6180,6238,0.434482758620258,-0.325423728813361,0.441379310344412,-0.332203389830336,0.441379310344412,-0.318644067796386,0.448275862068567,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033950,0.000000000000000,2 -6121,6179,6181,6239,0.434482758620257,-0.311864406779422,0.441379310344412,-0.318644067796386,0.441379310344412,-0.305084745762457,0.448275862068567,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033928,0.000000000000000,2 -6122,6180,6182,6240,0.434482758620258,-0.298305084745489,0.441379310344412,-0.305084745762457,0.441379310344412,-0.291525423728521,0.448275862068567,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033936,0.000000000000000,2 -6123,6181,6183,6241,0.434482758620258,-0.284745762711550,0.441379310344412,-0.291525423728521,0.441379310344412,-0.277966101694579,0.448275862068567,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033942,0.000000000000000,2 -6124,6182,6184,6242,0.434482758620257,-0.271186440677618,0.441379310344412,-0.277966101694579,0.441379310344412,-0.264406779660657,0.448275862068567,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033922,0.000000000000000,2 -6125,6183,6185,6243,0.434482758620257,-0.257627118643680,0.441379310344412,-0.264406779660657,0.441379310344412,-0.250847457626703,0.448275862068567,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033954,-0.000000000000000,2 -6126,6184,6186,6244,0.434482758620257,-0.244067796609748,0.441379310344412,-0.250847457626703,0.441379310344412,-0.237288135592793,0.448275862068567,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033910,0.000000000000000,2 -6127,6185,6187,6245,0.434482758620258,-0.230508474575816,0.441379310344412,-0.237288135592793,0.441379310344412,-0.223728813558839,0.448275862068567,-0.230508474575816,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033954,0.000000000000000,2 -6128,6186,6188,6246,0.434482758620258,-0.216949152541877,0.441379310344412,-0.223728813558839,0.441379310344412,-0.210169491524915,0.448275862068567,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033924,0.000000000000000,2 -6129,6187,6189,6247,0.434482758620257,-0.203389830507945,0.441379310344412,-0.210169491524915,0.441379310344412,-0.196610169490975,0.448275862068567,-0.203389830507945,-0.013559322033940,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033940,0.000000000000000,2 -6130,6188,6190,6248,0.434482758620258,-0.189830508474016,0.441379310344412,-0.196610169490975,0.441379310344412,-0.183050847457058,0.448275862068567,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033917,-0.000000000000000,2 -6131,6189,6191,6249,0.434482758620258,-0.176271186440084,0.441379310344412,-0.183050847457058,0.441379310344412,-0.169491525423110,0.448275862068567,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033947,0.000000000000000,2 -6132,6190,6192,6250,0.434482758620257,-0.162711864406145,0.441379310344412,-0.169491525423110,0.441379310344412,-0.155932203389179,0.448275862068567,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033931,0.000000000000000,2 -6133,6191,6193,6251,0.434482758620257,-0.149152542372213,0.441379310344412,-0.155932203389179,0.441379310344412,-0.142372881355246,0.448275862068567,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033933,-0.000000000000000,2 -6134,6192,6194,6252,0.434482758620257,-0.135593220338274,0.441379310344412,-0.142372881355246,0.441379310344412,-0.128813559321301,0.448275862068567,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033945,0.000000000000000,2 -6135,6193,6195,6253,0.434482758620257,-0.122033898304341,0.441379310344412,-0.128813559321301,0.441379310344412,-0.115254237287382,0.448275862068567,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033919,-0.000000000000000,2 -6136,6194,6196,6254,0.434482758620257,-0.108474576270409,0.441379310344412,-0.115254237287382,0.441379310344412,-0.101694915253436,0.448275862068567,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033946,0.000000000000000,2 -6137,6195,6197,6255,0.434482758620257,-0.094915254236471,0.441379310344412,-0.101694915253436,0.441379310344412,-0.088135593219506,0.448275862068567,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033930,0.000000000000000,2 -6138,6196,6198,6256,0.434482758620257,-0.081355932202535,0.441379310344412,-0.088135593219506,0.441379310344412,-0.074576271185564,0.448275862068567,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033941,0.000000000000000,2 -6139,6197,6199,6257,0.434482758620257,-0.067796610168599,0.441379310344412,-0.074576271185564,0.441379310344412,-0.061016949151634,0.448275862068567,-0.067796610168599,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033930,-0.000000000000000,2 -6140,6198,6200,6258,0.434482758620257,-0.054237288134667,0.441379310344412,-0.061016949151634,0.441379310344412,-0.047457627117699,0.448275862068567,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033935,0.000000000000000,2 -6141,6199,6201,6259,0.434482758620258,-0.040677966100731,0.441379310344412,-0.047457627117699,0.441379310344412,-0.033898305083763,0.448275862068567,-0.040677966100731,-0.013559322033937,0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033937,-0.000000000000000,2 -6142,6200,6202,6260,0.434482758620258,-0.027118644066798,0.441379310344412,-0.033898305083763,0.441379310344412,-0.020338983049833,0.448275862068567,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033930,0.000000000000000,2 -6143,6201,6203,6261,0.434482758620257,-0.013559322032862,0.441379310344412,-0.020338983049833,0.441379310344412,-0.006779661015891,0.448275862068567,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033941,-0.000000000000000,2 -6144,6202,6204,6262,0.434482758620257,0.000000000001056,0.441379310344412,-0.006779661015891,0.441379310344412,0.006779661018004,0.448275862068567,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033895,0.000000000000000,2 -6145,6203,6205,6263,0.434482758620257,0.013559322034933,0.441379310344412,0.006779661018004,0.441379310344412,0.020338983051863,0.448275862068567,0.013559322034933,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6146,6204,6206,6264,0.434482758620257,0.027118644068793,0.441379310344412,0.020338983051863,0.441379310344412,0.033898305085723,0.448275862068567,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6147,6205,6207,6265,0.434482758620257,0.040677966102653,0.441379310344412,0.033898305085723,0.441379310344412,0.047457627119583,0.448275862068567,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6148,6206,6208,6266,0.434482758620257,0.054237288136513,0.441379310344412,0.047457627119583,0.441379310344412,0.061016949153442,0.448275862068567,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6149,6207,6209,6267,0.434482758620257,0.067796610170372,0.441379310344412,0.061016949153442,0.441379310344412,0.074576271187302,0.448275862068567,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6150,6208,6210,6268,0.434482758620257,0.081355932204232,0.441379310344412,0.074576271187302,0.441379310344412,0.088135593221162,0.448275862068567,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6151,6209,6211,6269,0.434482758620257,0.094915254238085,0.441379310344412,0.088135593221162,0.441379310344412,0.101694915255008,0.448275862068567,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033846,-0.000000000000000,2 -6152,6210,6212,6270,0.434482758620257,0.108474576271933,0.441379310344412,0.101694915255008,0.441379310344412,0.115254237288859,0.448275862068567,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033852,0.000000000000000,2 -6153,6211,6213,6271,0.434482758620257,0.122033898305789,0.441379310344412,0.115254237288859,0.441379310344412,0.128813559322719,0.448275862068567,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,-0.000000000000000,2 -6154,6212,6214,6272,0.434482758620257,0.135593220339649,0.441379310344412,0.128813559322719,0.441379310344412,0.142372881356579,0.448275862068567,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6155,6213,6215,6273,0.434482758620257,0.149152542373509,0.441379310344412,0.142372881356579,0.441379310344412,0.155932203390438,0.448275862068567,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6156,6214,6216,6274,0.434482758620258,0.162711864407368,0.441379310344412,0.155932203390438,0.441379310344412,0.169491525424298,0.448275862068567,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6157,6215,6217,6275,0.434482758620258,0.176271186441228,0.441379310344412,0.169491525424298,0.441379310344412,0.183050847458158,0.448275862068567,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6158,6216,6218,6276,0.434482758620257,0.189830508475088,0.441379310344412,0.183050847458158,0.441379310344412,0.196610169492018,0.448275862068567,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6159,6217,6219,6277,0.434482758620257,0.203389830508947,0.441379310344412,0.196610169492018,0.441379310344412,0.210169491525877,0.448275862068567,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,-0.000000000000000,2 -6160,6218,6220,6278,0.434482758620257,0.216949152542807,0.441379310344412,0.210169491525877,0.441379310344412,0.223728813559737,0.448275862068567,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6161,6219,6221,6279,0.434482758620257,0.230508474576667,0.441379310344412,0.223728813559737,0.441379310344412,0.237288135593597,0.448275862068567,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,-0.000000000000000,2 -6162,6220,6222,6280,0.434482758620257,0.244067796610527,0.441379310344412,0.237288135593597,0.441379310344412,0.250847457627456,0.448275862068567,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6163,6221,6223,6281,0.434482758620257,0.257627118644386,0.441379310344412,0.250847457627456,0.441379310344412,0.264406779661316,0.448275862068567,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6164,6222,6224,6282,0.434482758620257,0.271186440678246,0.441379310344412,0.264406779661316,0.441379310344412,0.277966101695176,0.448275862068567,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,-0.000000000000000,2 -6165,6223,6225,6283,0.434482758620257,0.284745762712106,0.441379310344412,0.277966101695176,0.441379310344412,0.291525423729036,0.448275862068567,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6166,6224,6226,6284,0.434482758620257,0.298305084745975,0.441379310344412,0.291525423729036,0.441379310344412,0.305084745762915,0.448275862068567,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033879,0.000000000000000,2 -6167,6225,6227,6285,0.434482758620257,0.311864406779851,0.441379310344412,0.305084745762915,0.441379310344412,0.318644067796787,0.448275862068567,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033872,-0.000000000000000,2 -6168,6226,6228,6286,0.434482758620257,0.325423728813729,0.441379310344412,0.318644067796787,0.441379310344412,0.332203389830671,0.448275862068567,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033883,0.000000000000000,2 -6169,6227,6229,6287,0.434482758620257,0.338983050847605,0.441379310344412,0.332203389830671,0.441379310344412,0.345762711864539,0.448275862068567,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033869,0.000000000000000,2 -6170,6228,6230,6288,0.434482758620257,0.352542372881469,0.441379310344412,0.345762711864539,0.441379310344412,0.359322033898399,0.448275862068567,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6171,6229,6231,6289,0.434482758620257,0.366101694915329,0.441379310344412,0.359322033898399,0.441379310344412,0.372881355932259,0.448275862068567,0.366101694915329,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.013559322033860,0.000000000000000,2 -6172,6230,6232,6290,0.434482758620257,0.379661016949189,0.441379310344412,0.372881355932259,0.441379310344412,0.386440677966119,0.448275862068567,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.013559322033860,-0.000000000000000,2 -6173,6231,6291,7120,0.434482758620257,0.393220338983059,0.441379310344412,0.386440677966119,0.448275862068567,0.393220338983059,0.441379310344412,0.400000000000000,-0.013559322033881,0.000000000000000,0.000000000000000,-0.013793103448310,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448310,2 -5030,6174,6234,6292,0.455172413792722,-0.400000000000000,0.448275862068567,-0.393220338983034,0.455172413792722,-0.386440677966068,0.462068965516876,-0.393220338983034,-0.000000000000000,-0.013793103448309,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448309,0.013559322033932,0.000000000000000,2 -6175,6233,6235,6293,0.448275862068567,-0.379661016949095,0.455172413792722,-0.386440677966068,0.455172413792722,-0.372881355932122,0.462068965516876,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033946,0.000000000000000,2 -6176,6234,6236,6294,0.448275862068567,-0.366101694915163,0.455172413792722,-0.372881355932122,0.455172413792722,-0.359322033898204,0.462068965516876,-0.366101694915163,-0.013559322033918,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033918,-0.000000000000000,2 -6177,6235,6237,6295,0.448275862068567,-0.352542372881227,0.455172413792722,-0.359322033898204,0.455172413792722,-0.345762711864250,0.462068965516876,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 -6178,6236,6238,6296,0.448275862068567,-0.338983050847293,0.455172413792722,-0.345762711864250,0.455172413792722,-0.332203389830336,0.462068965516876,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033914,0.000000000000000,2 -6179,6237,6239,6297,0.448275862068567,-0.325423728813361,0.455172413792722,-0.332203389830336,0.455172413792722,-0.318644067796386,0.462068965516876,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033951,0.000000000000000,2 -6180,6238,6240,6298,0.448275862068567,-0.311864406779422,0.455172413792722,-0.318644067796386,0.455172413792722,-0.305084745762457,0.462068965516876,-0.311864406779421,-0.013559322033928,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033928,-0.000000000000000,2 -6181,6239,6241,6299,0.448275862068567,-0.298305084745489,0.455172413792722,-0.305084745762457,0.455172413792722,-0.291525423728521,0.462068965516876,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033936,0.000000000000000,2 -6182,6240,6242,6300,0.448275862068567,-0.284745762711550,0.455172413792722,-0.291525423728521,0.455172413792721,-0.277966101694579,0.462068965516876,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033942,0.000000000000000,2 -6183,6241,6243,6301,0.448275862068567,-0.271186440677618,0.455172413792721,-0.277966101694579,0.455172413792722,-0.264406779660657,0.462068965516876,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033922,-0.000000000000000,2 -6184,6242,6244,6302,0.448275862068567,-0.257627118643680,0.455172413792722,-0.264406779660657,0.455172413792722,-0.250847457626703,0.462068965516876,-0.257627118643680,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,-0.000000000000000,2 -6185,6243,6245,6303,0.448275862068567,-0.244067796609748,0.455172413792722,-0.250847457626703,0.455172413792722,-0.237288135592793,0.462068965516876,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033910,0.000000000000000,2 -6186,6244,6246,6304,0.448275862068567,-0.230508474575816,0.455172413792722,-0.237288135592793,0.455172413792722,-0.223728813558839,0.462068965516876,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 -6187,6245,6247,6305,0.448275862068567,-0.216949152541877,0.455172413792722,-0.223728813558839,0.455172413792722,-0.210169491524915,0.462068965516876,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033924,0.000000000000000,2 -6188,6246,6248,6306,0.448275862068567,-0.203389830507945,0.455172413792722,-0.210169491524915,0.455172413792722,-0.196610169490975,0.462068965516876,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033940,-0.000000000000000,2 -6189,6247,6249,6307,0.448275862068567,-0.189830508474016,0.455172413792722,-0.196610169490975,0.455172413792722,-0.183050847457058,0.462068965516876,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033917,0.000000000000000,2 -6190,6248,6250,6308,0.448275862068567,-0.176271186440084,0.455172413792722,-0.183050847457058,0.455172413792722,-0.169491525423110,0.462068965516876,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033947,0.000000000000000,2 -6191,6249,6251,6309,0.448275862068567,-0.162711864406145,0.455172413792722,-0.169491525423110,0.455172413792722,-0.155932203389179,0.462068965516876,-0.162711864406145,-0.013559322033931,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033931,0.000000000000000,2 -6192,6250,6252,6310,0.448275862068567,-0.149152542372213,0.455172413792722,-0.155932203389179,0.455172413792722,-0.142372881355246,0.462068965516876,-0.149152542372213,-0.013559322033933,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033933,0.000000000000000,2 -6193,6251,6253,6311,0.448275862068567,-0.135593220338274,0.455172413792722,-0.142372881355246,0.455172413792722,-0.128813559321301,0.462068965516876,-0.135593220338273,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033945,-0.000000000000000,2 -6194,6252,6254,6312,0.448275862068567,-0.122033898304341,0.455172413792722,-0.128813559321301,0.455172413792722,-0.115254237287382,0.462068965516876,-0.122033898304341,-0.013559322033919,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033919,0.000000000000000,2 -6195,6253,6255,6313,0.448275862068567,-0.108474576270409,0.455172413792722,-0.115254237287382,0.455172413792722,-0.101694915253436,0.462068965516876,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033946,0.000000000000000,2 -6196,6254,6256,6314,0.448275862068567,-0.094915254236471,0.455172413792722,-0.101694915253436,0.455172413792722,-0.088135593219506,0.462068965516876,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033930,-0.000000000000000,2 -6197,6255,6257,6315,0.448275862068567,-0.081355932202535,0.455172413792722,-0.088135593219506,0.455172413792722,-0.074576271185564,0.462068965516876,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033941,0.000000000000000,2 -6198,6256,6258,6316,0.448275862068567,-0.067796610168599,0.455172413792722,-0.074576271185564,0.455172413792722,-0.061016949151634,0.462068965516876,-0.067796610168599,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033930,-0.000000000000000,2 -6199,6257,6259,6317,0.448275862068567,-0.054237288134667,0.455172413792722,-0.061016949151634,0.455172413792722,-0.047457627117699,0.462068965516876,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033935,0.000000000000000,2 -6200,6258,6260,6318,0.448275862068567,-0.040677966100731,0.455172413792722,-0.047457627117699,0.455172413792722,-0.033898305083763,0.462068965516876,-0.040677966100731,-0.013559322033937,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033937,0.000000000000000,2 -6201,6259,6261,6319,0.448275862068567,-0.027118644066798,0.455172413792722,-0.033898305083763,0.455172413792722,-0.020338983049832,0.462068965516876,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033930,0.000000000000000,2 -6202,6260,6262,6320,0.448275862068567,-0.013559322032862,0.455172413792722,-0.020338983049832,0.455172413792722,-0.006779661015891,0.462068965516876,-0.013559322032862,-0.013559322033941,0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033941,0.000000000000000,2 -6203,6261,6263,6321,0.448275862068567,0.000000000001056,0.455172413792722,-0.006779661015891,0.455172413792722,0.006779661018004,0.462068965516876,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033895,0.000000000000000,2 -6204,6262,6264,6322,0.448275862068567,0.013559322034933,0.455172413792722,0.006779661018004,0.455172413792722,0.020338983051863,0.462068965516876,0.013559322034933,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6205,6263,6265,6323,0.448275862068567,0.027118644068793,0.455172413792722,0.020338983051863,0.455172413792722,0.033898305085723,0.462068965516876,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6206,6264,6266,6324,0.448275862068567,0.040677966102653,0.455172413792722,0.033898305085723,0.455172413792722,0.047457627119583,0.462068965516876,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6207,6265,6267,6325,0.448275862068567,0.054237288136513,0.455172413792722,0.047457627119583,0.455172413792722,0.061016949153442,0.462068965516876,0.054237288136513,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6208,6266,6268,6326,0.448275862068567,0.067796610170372,0.455172413792722,0.061016949153442,0.455172413792722,0.074576271187302,0.462068965516876,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6209,6267,6269,6327,0.448275862068567,0.081355932204232,0.455172413792722,0.074576271187302,0.455172413792722,0.088135593221162,0.462068965516876,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6210,6268,6270,6328,0.448275862068567,0.094915254238085,0.455172413792722,0.088135593221162,0.455172413792722,0.101694915255008,0.462068965516876,0.094915254238085,-0.013559322033846,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033846,0.000000000000000,2 -6211,6269,6271,6329,0.448275862068567,0.108474576271933,0.455172413792722,0.101694915255008,0.455172413792722,0.115254237288859,0.462068965516876,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033852,0.000000000000000,2 -6212,6270,6272,6330,0.448275862068567,0.122033898305789,0.455172413792722,0.115254237288859,0.455172413792722,0.128813559322719,0.462068965516876,0.122033898305789,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 -6213,6271,6273,6331,0.448275862068567,0.135593220339649,0.455172413792722,0.128813559322719,0.455172413792722,0.142372881356579,0.462068965516876,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6214,6272,6274,6332,0.448275862068567,0.149152542373509,0.455172413792722,0.142372881356579,0.455172413792722,0.155932203390438,0.462068965516876,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6215,6273,6275,6333,0.448275862068567,0.162711864407368,0.455172413792722,0.155932203390438,0.455172413792722,0.169491525424298,0.462068965516876,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6216,6274,6276,6334,0.448275862068567,0.176271186441228,0.455172413792722,0.169491525424298,0.455172413792722,0.183050847458158,0.462068965516876,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6217,6275,6277,6335,0.448275862068567,0.189830508475088,0.455172413792722,0.183050847458158,0.455172413792722,0.196610169492018,0.462068965516876,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 -6218,6276,6278,6336,0.448275862068567,0.203389830508947,0.455172413792722,0.196610169492018,0.455172413792722,0.210169491525877,0.462068965516876,0.203389830508947,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6219,6277,6279,6337,0.448275862068567,0.216949152542807,0.455172413792722,0.210169491525877,0.455172413792722,0.223728813559737,0.462068965516876,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6220,6278,6280,6338,0.448275862068567,0.230508474576667,0.455172413792722,0.223728813559737,0.455172413792722,0.237288135593597,0.462068965516876,0.230508474576667,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6221,6279,6281,6339,0.448275862068567,0.244067796610527,0.455172413792722,0.237288135593597,0.455172413792722,0.250847457627456,0.462068965516876,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6222,6280,6282,6340,0.448275862068567,0.257627118644386,0.455172413792722,0.250847457627456,0.455172413792722,0.264406779661316,0.462068965516876,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6223,6281,6283,6341,0.448275862068567,0.271186440678246,0.455172413792722,0.264406779661316,0.455172413792722,0.277966101695176,0.462068965516876,0.271186440678246,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6224,6282,6284,6342,0.448275862068567,0.284745762712106,0.455172413792722,0.277966101695176,0.455172413792722,0.291525423729036,0.462068965516876,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6225,6283,6285,6343,0.448275862068567,0.298305084745975,0.455172413792722,0.291525423729036,0.455172413792722,0.305084745762915,0.462068965516876,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033879,0.000000000000000,2 -6226,6284,6286,6344,0.448275862068567,0.311864406779851,0.455172413792722,0.305084745762915,0.455172413792722,0.318644067796787,0.462068965516876,0.311864406779851,-0.013559322033872,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033872,0.000000000000000,2 -6227,6285,6287,6345,0.448275862068567,0.325423728813729,0.455172413792722,0.318644067796787,0.455172413792722,0.332203389830671,0.462068965516876,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033883,0.000000000000000,2 -6228,6286,6288,6346,0.448275862068567,0.338983050847605,0.455172413792722,0.332203389830671,0.455172413792722,0.345762711864539,0.462068965516876,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033869,0.000000000000000,2 -6229,6287,6289,6347,0.448275862068567,0.352542372881469,0.455172413792722,0.345762711864539,0.455172413792722,0.359322033898399,0.462068965516876,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6230,6288,6290,6348,0.448275862068567,0.366101694915329,0.455172413792722,0.359322033898399,0.455172413792722,0.372881355932259,0.462068965516876,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6231,6289,6291,6349,0.448275862068567,0.379661016949189,0.455172413792722,0.372881355932259,0.455172413792722,0.386440677966119,0.462068965516876,0.379661016949189,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6232,6290,6350,7134,0.448275862068567,0.393220338983059,0.455172413792722,0.386440677966119,0.462068965516876,0.393220338983059,0.455172413792722,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448309,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448309,2 -5044,6233,6293,6351,0.468965517241031,-0.400000000000000,0.462068965516876,-0.393220338983034,0.468965517241031,-0.386440677966068,0.475862068965185,-0.393220338983034,-0.000000000000000,-0.013793103448309,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448309,0.013559322033932,0.000000000000000,2 -6234,6292,6294,6352,0.462068965516876,-0.379661016949095,0.468965517241031,-0.386440677966068,0.468965517241031,-0.372881355932122,0.475862068965185,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033946,0.000000000000000,2 -6235,6293,6295,6353,0.462068965516876,-0.366101694915163,0.468965517241031,-0.372881355932122,0.468965517241031,-0.359322033898204,0.475862068965185,-0.366101694915163,-0.013559322033918,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033918,0.000000000000000,2 -6236,6294,6296,6354,0.462068965516876,-0.352542372881227,0.468965517241031,-0.359322033898204,0.468965517241031,-0.345762711864250,0.475862068965185,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 -6237,6295,6297,6355,0.462068965516876,-0.338983050847293,0.468965517241031,-0.345762711864250,0.468965517241031,-0.332203389830336,0.475862068965185,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033914,0.000000000000000,2 -6238,6296,6298,6356,0.462068965516876,-0.325423728813361,0.468965517241031,-0.332203389830336,0.468965517241031,-0.318644067796386,0.475862068965185,-0.325423728813361,-0.013559322033951,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033950,-0.000000000000000,2 -6239,6297,6299,6357,0.462068965516876,-0.311864406779421,0.468965517241031,-0.318644067796386,0.468965517241031,-0.305084745762457,0.475862068965185,-0.311864406779422,-0.013559322033928,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033928,0.000000000000000,2 -6240,6298,6300,6358,0.462068965516876,-0.298305084745489,0.468965517241031,-0.305084745762457,0.468965517241031,-0.291525423728521,0.475862068965185,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033936,0.000000000000000,2 -6241,6299,6301,6359,0.462068965516876,-0.284745762711550,0.468965517241031,-0.291525423728521,0.468965517241031,-0.277966101694579,0.475862068965185,-0.284745762711550,-0.013559322033942,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033942,-0.000000000000000,2 -6242,6300,6302,6360,0.462068965516876,-0.271186440677618,0.468965517241031,-0.277966101694579,0.468965517241031,-0.264406779660657,0.475862068965185,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033922,0.000000000000000,2 -6243,6301,6303,6361,0.462068965516876,-0.257627118643680,0.468965517241031,-0.264406779660657,0.468965517241031,-0.250847457626703,0.475862068965185,-0.257627118643680,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 -6244,6302,6304,6362,0.462068965516876,-0.244067796609748,0.468965517241031,-0.250847457626703,0.468965517241031,-0.237288135592793,0.475862068965185,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033910,0.000000000000000,2 -6245,6303,6305,6363,0.462068965516876,-0.230508474575816,0.468965517241031,-0.237288135592793,0.468965517241031,-0.223728813558839,0.475862068965185,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 -6246,6304,6306,6364,0.462068965516876,-0.216949152541877,0.468965517241031,-0.223728813558839,0.468965517241031,-0.210169491524915,0.475862068965185,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033924,0.000000000000000,2 -6247,6305,6307,6365,0.462068965516876,-0.203389830507945,0.468965517241031,-0.210169491524915,0.468965517241031,-0.196610169490975,0.475862068965185,-0.203389830507945,-0.013559322033940,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033940,0.000000000000000,2 -6248,6306,6308,6366,0.462068965516876,-0.189830508474016,0.468965517241031,-0.196610169490975,0.468965517241031,-0.183050847457058,0.475862068965185,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033917,0.000000000000000,2 -6249,6307,6309,6367,0.462068965516876,-0.176271186440084,0.468965517241031,-0.183050847457058,0.468965517241031,-0.169491525423110,0.475862068965185,-0.176271186440084,-0.013559322033947,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033947,0.000000000000000,2 -6250,6308,6310,6368,0.462068965516876,-0.162711864406145,0.468965517241031,-0.169491525423110,0.468965517241031,-0.155932203389179,0.475862068965185,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033931,0.000000000000000,2 -6251,6309,6311,6369,0.462068965516876,-0.149152542372213,0.468965517241031,-0.155932203389179,0.468965517241031,-0.142372881355246,0.475862068965185,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033933,0.000000000000000,2 -6252,6310,6312,6370,0.462068965516876,-0.135593220338273,0.468965517241031,-0.142372881355246,0.468965517241031,-0.128813559321301,0.475862068965185,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033945,0.000000000000000,2 -6253,6311,6313,6371,0.462068965516876,-0.122033898304341,0.468965517241031,-0.128813559321301,0.468965517241031,-0.115254237287382,0.475862068965185,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033919,0.000000000000000,2 -6254,6312,6314,6372,0.462068965516876,-0.108474576270409,0.468965517241031,-0.115254237287382,0.468965517241031,-0.101694915253436,0.475862068965185,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033946,0.000000000000000,2 -6255,6313,6315,6373,0.462068965516876,-0.094915254236471,0.468965517241031,-0.101694915253436,0.468965517241031,-0.088135593219506,0.475862068965185,-0.094915254236471,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033930,-0.000000000000000,2 -6256,6314,6316,6374,0.462068965516876,-0.081355932202535,0.468965517241031,-0.088135593219506,0.468965517241031,-0.074576271185564,0.475862068965185,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033941,0.000000000000000,2 -6257,6315,6317,6375,0.462068965516876,-0.067796610168599,0.468965517241031,-0.074576271185564,0.468965517241031,-0.061016949151634,0.475862068965185,-0.067796610168599,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033930,0.000000000000000,2 -6258,6316,6318,6376,0.462068965516876,-0.054237288134667,0.468965517241031,-0.061016949151634,0.468965517241031,-0.047457627117699,0.475862068965185,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033935,0.000000000000000,2 -6259,6317,6319,6377,0.462068965516876,-0.040677966100731,0.468965517241031,-0.047457627117699,0.468965517241031,-0.033898305083763,0.475862068965185,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033937,0.000000000000000,2 -6260,6318,6320,6378,0.462068965516876,-0.027118644066798,0.468965517241031,-0.033898305083763,0.468965517241031,-0.020338983049832,0.475862068965185,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033930,0.000000000000000,2 -6261,6319,6321,6379,0.462068965516876,-0.013559322032862,0.468965517241031,-0.020338983049832,0.468965517241031,-0.006779661015891,0.475862068965185,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033941,0.000000000000000,2 -6262,6320,6322,6380,0.462068965516876,0.000000000001056,0.468965517241031,-0.006779661015891,0.468965517241031,0.006779661018004,0.475862068965185,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033895,0.000000000000000,2 -6263,6321,6323,6381,0.462068965516876,0.013559322034933,0.468965517241031,0.006779661018004,0.468965517241031,0.020338983051863,0.475862068965185,0.013559322034934,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6264,6322,6324,6382,0.462068965516876,0.027118644068793,0.468965517241031,0.020338983051863,0.468965517241031,0.033898305085723,0.475862068965185,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6265,6323,6325,6383,0.462068965516876,0.040677966102653,0.468965517241031,0.033898305085723,0.468965517241031,0.047457627119583,0.475862068965185,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6266,6324,6326,6384,0.462068965516876,0.054237288136513,0.468965517241031,0.047457627119583,0.468965517241031,0.061016949153442,0.475862068965185,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6267,6325,6327,6385,0.462068965516876,0.067796610170372,0.468965517241031,0.061016949153442,0.468965517241031,0.074576271187302,0.475862068965185,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6268,6326,6328,6386,0.462068965516876,0.081355932204232,0.468965517241031,0.074576271187302,0.468965517241031,0.088135593221162,0.475862068965185,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6269,6327,6329,6387,0.462068965516876,0.094915254238085,0.468965517241031,0.088135593221162,0.468965517241031,0.101694915255008,0.475862068965185,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033846,0.000000000000000,2 -6270,6328,6330,6388,0.462068965516876,0.108474576271933,0.468965517241031,0.101694915255008,0.468965517241031,0.115254237288859,0.475862068965185,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033852,0.000000000000000,2 -6271,6329,6331,6389,0.462068965516876,0.122033898305789,0.468965517241031,0.115254237288859,0.468965517241031,0.128813559322719,0.475862068965185,0.122033898305789,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6272,6330,6332,6390,0.462068965516876,0.135593220339649,0.468965517241031,0.128813559322719,0.468965517241031,0.142372881356579,0.475862068965185,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6273,6331,6333,6391,0.462068965516876,0.149152542373509,0.468965517241031,0.142372881356579,0.468965517241031,0.155932203390438,0.475862068965185,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6274,6332,6334,6392,0.462068965516876,0.162711864407368,0.468965517241031,0.155932203390438,0.468965517241031,0.169491525424298,0.475862068965185,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6275,6333,6335,6393,0.462068965516876,0.176271186441228,0.468965517241031,0.169491525424298,0.468965517241031,0.183050847458158,0.475862068965185,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6276,6334,6336,6394,0.462068965516876,0.189830508475088,0.468965517241031,0.183050847458158,0.468965517241031,0.196610169492018,0.475862068965185,0.189830508475088,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6277,6335,6337,6395,0.462068965516876,0.203389830508947,0.468965517241031,0.196610169492018,0.468965517241031,0.210169491525877,0.475862068965185,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6278,6336,6338,6396,0.462068965516876,0.216949152542807,0.468965517241031,0.210169491525877,0.468965517241031,0.223728813559737,0.475862068965185,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6279,6337,6339,6397,0.462068965516876,0.230508474576667,0.468965517241031,0.223728813559737,0.468965517241031,0.237288135593597,0.475862068965185,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6280,6338,6340,6398,0.462068965516876,0.244067796610527,0.468965517241031,0.237288135593597,0.468965517241031,0.250847457627456,0.475862068965185,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6281,6339,6341,6399,0.462068965516876,0.257627118644386,0.468965517241031,0.250847457627456,0.468965517241031,0.264406779661316,0.475862068965185,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6282,6340,6342,6400,0.462068965516876,0.271186440678246,0.468965517241031,0.264406779661316,0.468965517241031,0.277966101695176,0.475862068965185,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6283,6341,6343,6401,0.462068965516876,0.284745762712106,0.468965517241031,0.277966101695176,0.468965517241031,0.291525423729036,0.475862068965185,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6284,6342,6344,6402,0.462068965516876,0.298305084745975,0.468965517241031,0.291525423729036,0.468965517241031,0.305084745762915,0.475862068965185,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033879,-0.000000000000000,2 -6285,6343,6345,6403,0.462068965516876,0.311864406779851,0.468965517241031,0.305084745762915,0.468965517241031,0.318644067796787,0.475862068965185,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033872,0.000000000000000,2 -6286,6344,6346,6404,0.462068965516876,0.325423728813729,0.468965517241031,0.318644067796787,0.468965517241031,0.332203389830671,0.475862068965185,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033883,0.000000000000000,2 -6287,6345,6347,6405,0.462068965516876,0.338983050847605,0.468965517241031,0.332203389830671,0.468965517241031,0.345762711864539,0.475862068965185,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033869,0.000000000000000,2 -6288,6346,6348,6406,0.462068965516876,0.352542372881469,0.468965517241031,0.345762711864539,0.468965517241031,0.359322033898399,0.475862068965185,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6289,6347,6349,6407,0.462068965516876,0.366101694915329,0.468965517241031,0.359322033898399,0.468965517241031,0.372881355932259,0.475862068965185,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6290,6348,6350,6408,0.462068965516876,0.379661016949189,0.468965517241031,0.372881355932259,0.468965517241031,0.386440677966119,0.475862068965185,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 -6291,6349,6409,7148,0.462068965516876,0.393220338983059,0.468965517241031,0.386440677966119,0.475862068965185,0.393220338983059,0.468965517241031,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448309,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448309,2 -5058,6292,6352,6410,0.482758620689341,-0.400000000000000,0.475862068965185,-0.393220338983034,0.482758620689341,-0.386440677966068,0.489655172413498,-0.393220338983034,-0.000000000000000,-0.013793103448313,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448313,0.013559322033932,0.000000000000000,2 -6293,6351,6353,6411,0.475862068965185,-0.379661016949095,0.482758620689341,-0.386440677966068,0.482758620689341,-0.372881355932122,0.489655172413498,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033946,-0.000000000000000,2 -6294,6352,6354,6412,0.475862068965185,-0.366101694915163,0.482758620689341,-0.372881355932122,0.482758620689341,-0.359322033898204,0.489655172413498,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033918,0.000000000000000,2 -6295,6353,6355,6413,0.475862068965185,-0.352542372881227,0.482758620689341,-0.359322033898204,0.482758620689341,-0.345762711864250,0.489655172413498,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033954,0.000000000000000,2 -6296,6354,6356,6414,0.475862068965185,-0.338983050847293,0.482758620689341,-0.345762711864250,0.482758620689341,-0.332203389830336,0.489655172413498,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033914,-0.000000000000000,2 -6297,6355,6357,6415,0.475862068965185,-0.325423728813361,0.482758620689341,-0.332203389830336,0.482758620689341,-0.318644067796386,0.489655172413498,-0.325423728813361,-0.013559322033950,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033950,0.000000000000000,2 -6298,6356,6358,6416,0.475862068965185,-0.311864406779422,0.482758620689341,-0.318644067796386,0.482758620689341,-0.305084745762457,0.489655172413498,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033928,-0.000000000000000,2 -6299,6357,6359,6417,0.475862068965185,-0.298305084745489,0.482758620689341,-0.305084745762457,0.482758620689341,-0.291525423728521,0.489655172413498,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033936,-0.000000000000000,2 -6300,6358,6360,6418,0.475862068965185,-0.284745762711550,0.482758620689341,-0.291525423728521,0.482758620689341,-0.277966101694579,0.489655172413498,-0.284745762711550,-0.013559322033942,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033942,0.000000000000000,2 -6301,6359,6361,6419,0.475862068965185,-0.271186440677618,0.482758620689341,-0.277966101694579,0.482758620689341,-0.264406779660657,0.489655172413498,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033922,0.000000000000000,2 -6302,6360,6362,6420,0.475862068965185,-0.257627118643680,0.482758620689341,-0.264406779660657,0.482758620689341,-0.250847457626703,0.489655172413498,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033954,-0.000000000000000,2 -6303,6361,6363,6421,0.475862068965185,-0.244067796609748,0.482758620689341,-0.250847457626703,0.482758620689341,-0.237288135592793,0.489655172413498,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033910,0.000000000000000,2 -6304,6362,6364,6422,0.475862068965185,-0.230508474575816,0.482758620689341,-0.237288135592793,0.482758620689341,-0.223728813558839,0.489655172413498,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033954,0.000000000000000,2 -6305,6363,6365,6423,0.475862068965185,-0.216949152541877,0.482758620689341,-0.223728813558839,0.482758620689341,-0.210169491524915,0.489655172413498,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033924,0.000000000000000,2 -6306,6364,6366,6424,0.475862068965185,-0.203389830507945,0.482758620689341,-0.210169491524915,0.482758620689341,-0.196610169490975,0.489655172413498,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033940,0.000000000000000,2 -6307,6365,6367,6425,0.475862068965185,-0.189830508474016,0.482758620689341,-0.196610169490975,0.482758620689341,-0.183050847457058,0.489655172413498,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033917,-0.000000000000000,2 -6308,6366,6368,6426,0.475862068965185,-0.176271186440084,0.482758620689341,-0.183050847457058,0.482758620689341,-0.169491525423110,0.489655172413498,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033947,0.000000000000000,2 -6309,6367,6369,6427,0.475862068965185,-0.162711864406145,0.482758620689341,-0.169491525423110,0.482758620689341,-0.155932203389179,0.489655172413498,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033931,-0.000000000000000,2 -6310,6368,6370,6428,0.475862068965185,-0.149152542372213,0.482758620689341,-0.155932203389179,0.482758620689341,-0.142372881355246,0.489655172413498,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033933,0.000000000000000,2 -6311,6369,6371,6429,0.475862068965185,-0.135593220338273,0.482758620689341,-0.142372881355246,0.482758620689341,-0.128813559321301,0.489655172413498,-0.135593220338273,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033945,-0.000000000000000,2 -6312,6370,6372,6430,0.475862068965185,-0.122033898304341,0.482758620689341,-0.128813559321301,0.482758620689341,-0.115254237287382,0.489655172413498,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033919,0.000000000000000,2 -6313,6371,6373,6431,0.475862068965185,-0.108474576270409,0.482758620689341,-0.115254237287382,0.482758620689341,-0.101694915253436,0.489655172413498,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033946,0.000000000000000,2 -6314,6372,6374,6432,0.475862068965185,-0.094915254236471,0.482758620689341,-0.101694915253436,0.482758620689342,-0.088135593219506,0.489655172413498,-0.094915254236471,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033930,-0.000000000000000,2 -6315,6373,6375,6433,0.475862068965185,-0.081355932202535,0.482758620689342,-0.088135593219506,0.482758620689342,-0.074576271185564,0.489655172413498,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033941,0.000000000000000,2 -6316,6374,6376,6434,0.475862068965185,-0.067796610168599,0.482758620689342,-0.074576271185564,0.482758620689341,-0.061016949151634,0.489655172413498,-0.067796610168599,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033930,0.000000000000000,2 -6317,6375,6377,6435,0.475862068965185,-0.054237288134667,0.482758620689341,-0.061016949151634,0.482758620689341,-0.047457627117699,0.489655172413498,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033935,0.000000000000000,2 -6318,6376,6378,6436,0.475862068965185,-0.040677966100731,0.482758620689341,-0.047457627117699,0.482758620689341,-0.033898305083763,0.489655172413498,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033937,0.000000000000000,2 -6319,6377,6379,6437,0.475862068965185,-0.027118644066798,0.482758620689341,-0.033898305083763,0.482758620689341,-0.020338983049832,0.489655172413498,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033930,-0.000000000000000,2 -6320,6378,6380,6438,0.475862068965185,-0.013559322032862,0.482758620689341,-0.020338983049832,0.482758620689341,-0.006779661015891,0.489655172413498,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033941,0.000000000000000,2 -6321,6379,6381,6439,0.475862068965185,0.000000000001056,0.482758620689341,-0.006779661015891,0.482758620689341,0.006779661018004,0.489655172413498,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033895,0.000000000000000,2 -6322,6380,6382,6440,0.475862068965185,0.013559322034934,0.482758620689341,0.006779661018004,0.482758620689341,0.020338983051863,0.489655172413498,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6323,6381,6383,6441,0.475862068965185,0.027118644068793,0.482758620689341,0.020338983051863,0.482758620689341,0.033898305085723,0.489655172413498,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,-0.000000000000000,2 -6324,6382,6384,6442,0.475862068965185,0.040677966102653,0.482758620689341,0.033898305085723,0.482758620689341,0.047457627119583,0.489655172413498,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6325,6383,6385,6443,0.475862068965185,0.054237288136513,0.482758620689341,0.047457627119583,0.482758620689341,0.061016949153442,0.489655172413498,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6326,6384,6386,6444,0.475862068965185,0.067796610170372,0.482758620689341,0.061016949153442,0.482758620689341,0.074576271187302,0.489655172413498,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6327,6385,6387,6445,0.475862068965185,0.081355932204232,0.482758620689341,0.074576271187302,0.482758620689341,0.088135593221162,0.489655172413498,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6328,6386,6388,6446,0.475862068965185,0.094915254238085,0.482758620689341,0.088135593221162,0.482758620689341,0.101694915255008,0.489655172413498,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033846,-0.000000000000000,2 -6329,6387,6389,6447,0.475862068965185,0.108474576271933,0.482758620689341,0.101694915255008,0.482758620689341,0.115254237288859,0.489655172413498,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033852,0.000000000000000,2 -6330,6388,6390,6448,0.475862068965185,0.122033898305789,0.482758620689341,0.115254237288859,0.482758620689341,0.128813559322719,0.489655172413498,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6331,6389,6391,6449,0.475862068965185,0.135593220339649,0.482758620689341,0.128813559322719,0.482758620689341,0.142372881356579,0.489655172413498,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6332,6390,6392,6450,0.475862068965185,0.149152542373509,0.482758620689341,0.142372881356579,0.482758620689341,0.155932203390438,0.489655172413498,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6333,6391,6393,6451,0.475862068965185,0.162711864407368,0.482758620689341,0.155932203390438,0.482758620689341,0.169491525424298,0.489655172413498,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,-0.000000000000000,2 -6334,6392,6394,6452,0.475862068965185,0.176271186441228,0.482758620689341,0.169491525424298,0.482758620689341,0.183050847458158,0.489655172413498,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,-0.000000000000000,2 -6335,6393,6395,6453,0.475862068965185,0.189830508475088,0.482758620689341,0.183050847458158,0.482758620689341,0.196610169492018,0.489655172413498,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6336,6394,6396,6454,0.475862068965185,0.203389830508947,0.482758620689341,0.196610169492018,0.482758620689341,0.210169491525877,0.489655172413498,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6337,6395,6397,6455,0.475862068965185,0.216949152542807,0.482758620689341,0.210169491525877,0.482758620689341,0.223728813559737,0.489655172413498,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6338,6396,6398,6456,0.475862068965185,0.230508474576667,0.482758620689341,0.223728813559737,0.482758620689341,0.237288135593597,0.489655172413498,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,-0.000000000000000,2 -6339,6397,6399,6457,0.475862068965185,0.244067796610527,0.482758620689341,0.237288135593597,0.482758620689341,0.250847457627456,0.489655172413498,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6340,6398,6400,6458,0.475862068965185,0.257627118644386,0.482758620689341,0.250847457627456,0.482758620689341,0.264406779661316,0.489655172413498,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6341,6399,6401,6459,0.475862068965185,0.271186440678246,0.482758620689341,0.264406779661316,0.482758620689341,0.277966101695176,0.489655172413498,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6342,6400,6402,6460,0.475862068965185,0.284745762712106,0.482758620689341,0.277966101695176,0.482758620689341,0.291525423729036,0.489655172413498,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6343,6401,6403,6461,0.475862068965185,0.298305084745975,0.482758620689341,0.291525423729036,0.482758620689341,0.305084745762915,0.489655172413498,0.298305084745975,-0.013559322033879,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033879,0.000000000000000,2 -6344,6402,6404,6462,0.475862068965185,0.311864406779851,0.482758620689341,0.305084745762915,0.482758620689341,0.318644067796787,0.489655172413498,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033872,-0.000000000000000,2 -6345,6403,6405,6463,0.475862068965185,0.325423728813729,0.482758620689341,0.318644067796787,0.482758620689341,0.332203389830671,0.489655172413498,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033883,0.000000000000000,2 -6346,6404,6406,6464,0.475862068965185,0.338983050847605,0.482758620689341,0.332203389830671,0.482758620689341,0.345762711864539,0.489655172413498,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033869,0.000000000000000,2 -6347,6405,6407,6465,0.475862068965185,0.352542372881469,0.482758620689341,0.345762711864539,0.482758620689341,0.359322033898399,0.489655172413498,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6348,6406,6408,6466,0.475862068965185,0.366101694915329,0.482758620689341,0.359322033898399,0.482758620689341,0.372881355932259,0.489655172413498,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6349,6407,6409,6467,0.475862068965185,0.379661016949189,0.482758620689341,0.372881355932259,0.482758620689341,0.386440677966119,0.489655172413498,0.379661016949189,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.013559322033860,0.000000000000000,2 -6350,6408,6468,7162,0.475862068965185,0.393220338983059,0.482758620689341,0.386440677966119,0.489655172413498,0.393220338983059,0.482758620689341,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448313,0.013559322033881,0.000000000000000,0.000000000000000,0.013793103448313,2 -5072,6351,6411,6469,0.496551724137666,-0.400000000000000,0.489655172413498,-0.393220338983034,0.496551724137666,-0.386440677966068,0.503448275861834,-0.393220338983034,-0.000000000000000,-0.013793103448336,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448336,0.013559322033932,0.000000000000000,2 -6352,6410,6412,6470,0.489655172413498,-0.379661016949095,0.496551724137666,-0.386440677966068,0.496551724137666,-0.372881355932122,0.503448275861834,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033946,-0.000000000000000,2 -6353,6411,6413,6471,0.489655172413498,-0.366101694915163,0.496551724137666,-0.372881355932122,0.496551724137666,-0.359322033898204,0.503448275861834,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033918,0.000000000000000,2 -6354,6412,6414,6472,0.489655172413498,-0.352542372881227,0.496551724137666,-0.359322033898204,0.496551724137666,-0.345762711864250,0.503448275861834,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033954,0.000000000000000,2 -6355,6413,6415,6473,0.489655172413498,-0.338983050847293,0.496551724137666,-0.345762711864250,0.496551724137666,-0.332203389830336,0.503448275861834,-0.338983050847293,-0.013559322033914,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033914,-0.000000000000000,2 -6356,6414,6416,6474,0.489655172413498,-0.325423728813361,0.496551724137666,-0.332203389830336,0.496551724137666,-0.318644067796386,0.503448275861834,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033951,0.000000000000000,2 -6357,6415,6417,6475,0.489655172413498,-0.311864406779422,0.496551724137666,-0.318644067796386,0.496551724137666,-0.305084745762457,0.503448275861834,-0.311864406779421,-0.013559322033928,0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033928,0.000000000000000,2 -6358,6416,6418,6476,0.489655172413498,-0.298305084745489,0.496551724137666,-0.305084745762457,0.496551724137666,-0.291525423728521,0.503448275861834,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033936,0.000000000000000,2 -6359,6417,6419,6477,0.489655172413498,-0.284745762711550,0.496551724137666,-0.291525423728521,0.496551724137666,-0.277966101694579,0.503448275861834,-0.284745762711550,-0.013559322033942,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033942,0.000000000000000,2 -6360,6418,6420,6478,0.489655172413498,-0.271186440677618,0.496551724137666,-0.277966101694579,0.496551724137666,-0.264406779660657,0.503448275861834,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033922,0.000000000000000,2 -6361,6419,6421,6479,0.489655172413498,-0.257627118643680,0.496551724137666,-0.264406779660657,0.496551724137666,-0.250847457626703,0.503448275861834,-0.257627118643680,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033954,0.000000000000000,2 -6362,6420,6422,6480,0.489655172413498,-0.244067796609748,0.496551724137666,-0.250847457626703,0.496551724137666,-0.237288135592793,0.503448275861834,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033910,0.000000000000000,2 -6363,6421,6423,6481,0.489655172413498,-0.230508474575816,0.496551724137666,-0.237288135592793,0.496551724137666,-0.223728813558839,0.503448275861834,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033954,0.000000000000000,2 -6364,6422,6424,6482,0.489655172413498,-0.216949152541877,0.496551724137666,-0.223728813558839,0.496551724137666,-0.210169491524915,0.503448275861834,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033924,-0.000000000000000,2 -6365,6423,6425,6483,0.489655172413498,-0.203389830507945,0.496551724137666,-0.210169491524915,0.496551724137666,-0.196610169490975,0.503448275861834,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033940,0.000000000000000,2 -6366,6424,6426,6484,0.489655172413498,-0.189830508474016,0.496551724137666,-0.196610169490975,0.496551724137666,-0.183050847457058,0.503448275861834,-0.189830508474016,-0.013559322033917,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033917,0.000000000000000,2 -6367,6425,6427,6485,0.489655172413498,-0.176271186440084,0.496551724137666,-0.183050847457058,0.496551724137666,-0.169491525423110,0.503448275861834,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033947,0.000000000000000,2 -6368,6426,6428,6486,0.489655172413498,-0.162711864406145,0.496551724137666,-0.169491525423110,0.496551724137666,-0.155932203389179,0.503448275861834,-0.162711864406145,-0.013559322033931,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033931,0.000000000000000,2 -6369,6427,6429,6487,0.489655172413498,-0.149152542372213,0.496551724137666,-0.155932203389179,0.496551724137666,-0.142372881355246,0.503448275861834,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033933,0.000000000000000,2 -6370,6428,6430,6488,0.489655172413498,-0.135593220338273,0.496551724137666,-0.142372881355246,0.496551724137666,-0.128813559321301,0.503448275861834,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033945,0.000000000000000,2 -6371,6429,6431,6489,0.489655172413498,-0.122033898304341,0.496551724137666,-0.128813559321301,0.496551724137666,-0.115254237287382,0.503448275861834,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033919,0.000000000000000,2 -6372,6430,6432,6490,0.489655172413498,-0.108474576270409,0.496551724137666,-0.115254237287382,0.496551724137666,-0.101694915253436,0.503448275861834,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033946,-0.000000000000000,2 -6373,6431,6433,6491,0.489655172413498,-0.094915254236471,0.496551724137666,-0.101694915253436,0.496551724137666,-0.088135593219506,0.503448275861834,-0.094915254236471,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033930,0.000000000000000,2 -6374,6432,6434,6492,0.489655172413498,-0.081355932202535,0.496551724137666,-0.088135593219506,0.496551724137666,-0.074576271185564,0.503448275861834,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033941,0.000000000000000,2 -6375,6433,6435,6493,0.489655172413498,-0.067796610168599,0.496551724137666,-0.074576271185564,0.496551724137666,-0.061016949151634,0.503448275861834,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033930,-0.000000000000000,2 -6376,6434,6436,6494,0.489655172413498,-0.054237288134667,0.496551724137666,-0.061016949151634,0.496551724137666,-0.047457627117699,0.503448275861834,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033935,0.000000000000000,2 -6377,6435,6437,6495,0.489655172413498,-0.040677966100731,0.496551724137666,-0.047457627117699,0.496551724137666,-0.033898305083763,0.503448275861834,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033937,0.000000000000000,2 -6378,6436,6438,6496,0.489655172413498,-0.027118644066798,0.496551724137666,-0.033898305083763,0.496551724137666,-0.020338983049832,0.503448275861834,-0.027118644066798,-0.013559322033930,0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033930,0.000000000000000,2 -6379,6437,6439,6497,0.489655172413498,-0.013559322032862,0.496551724137666,-0.020338983049832,0.496551724137666,-0.006779661015891,0.503448275861834,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033941,0.000000000000000,2 -6380,6438,6440,6498,0.489655172413498,0.000000000001056,0.496551724137666,-0.006779661015891,0.496551724137666,0.006779661018004,0.503448275861834,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033895,0.000000000000000,2 -6381,6439,6441,6499,0.489655172413498,0.013559322034933,0.496551724137666,0.006779661018004,0.496551724137666,0.020338983051863,0.503448275861834,0.013559322034933,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6382,6440,6442,6500,0.489655172413498,0.027118644068793,0.496551724137666,0.020338983051863,0.496551724137666,0.033898305085723,0.503448275861834,0.027118644068793,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6383,6441,6443,6501,0.489655172413498,0.040677966102653,0.496551724137666,0.033898305085723,0.496551724137666,0.047457627119583,0.503448275861834,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6384,6442,6444,6502,0.489655172413498,0.054237288136513,0.496551724137666,0.047457627119583,0.496551724137666,0.061016949153442,0.503448275861834,0.054237288136513,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6385,6443,6445,6503,0.489655172413498,0.067796610170372,0.496551724137666,0.061016949153442,0.496551724137666,0.074576271187302,0.503448275861834,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6386,6444,6446,6504,0.489655172413498,0.081355932204232,0.496551724137666,0.074576271187302,0.496551724137666,0.088135593221162,0.503448275861834,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6387,6445,6447,6505,0.489655172413498,0.094915254238085,0.496551724137666,0.088135593221162,0.496551724137666,0.101694915255008,0.503448275861834,0.094915254238085,-0.013559322033846,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033846,0.000000000000000,2 -6388,6446,6448,6506,0.489655172413498,0.108474576271933,0.496551724137666,0.101694915255008,0.496551724137666,0.115254237288859,0.503448275861834,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033852,0.000000000000000,2 -6389,6447,6449,6507,0.489655172413498,0.122033898305789,0.496551724137666,0.115254237288859,0.496551724137666,0.128813559322719,0.503448275861834,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6390,6448,6450,6508,0.489655172413498,0.135593220339649,0.496551724137666,0.128813559322719,0.496551724137666,0.142372881356579,0.503448275861834,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6391,6449,6451,6509,0.489655172413498,0.149152542373509,0.496551724137666,0.142372881356579,0.496551724137666,0.155932203390438,0.503448275861834,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6392,6450,6452,6510,0.489655172413498,0.162711864407368,0.496551724137666,0.155932203390438,0.496551724137666,0.169491525424298,0.503448275861834,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6393,6451,6453,6511,0.489655172413498,0.176271186441228,0.496551724137666,0.169491525424298,0.496551724137666,0.183050847458158,0.503448275861834,0.176271186441228,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033859,0.000000000000000,2 -6394,6452,6454,6512,0.489655172413498,0.189830508475088,0.496551724137666,0.183050847458158,0.496551724137666,0.196610169492018,0.503448275861834,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6395,6453,6455,6513,0.489655172413498,0.203389830508947,0.496551724137666,0.196610169492018,0.496551724137666,0.210169491525877,0.503448275861834,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6396,6454,6456,6514,0.489655172413498,0.216949152542807,0.496551724137666,0.210169491525877,0.496551724137666,0.223728813559737,0.503448275861834,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6397,6455,6457,6515,0.489655172413498,0.230508474576667,0.496551724137666,0.223728813559737,0.496551724137666,0.237288135593597,0.503448275861834,0.230508474576667,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6398,6456,6458,6516,0.489655172413498,0.244067796610527,0.496551724137666,0.237288135593597,0.496551724137666,0.250847457627456,0.503448275861834,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6399,6457,6459,6517,0.489655172413498,0.257627118644386,0.496551724137666,0.250847457627456,0.496551724137666,0.264406779661316,0.503448275861834,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6400,6458,6460,6518,0.489655172413498,0.271186440678246,0.496551724137666,0.264406779661316,0.496551724137666,0.277966101695176,0.503448275861834,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6401,6459,6461,6519,0.489655172413498,0.284745762712106,0.496551724137666,0.277966101695176,0.496551724137666,0.291525423729036,0.503448275861834,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6402,6460,6462,6520,0.489655172413498,0.298305084745975,0.496551724137666,0.291525423729036,0.496551724137666,0.305084745762915,0.503448275861834,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033879,0.000000000000000,2 -6403,6461,6463,6521,0.489655172413498,0.311864406779851,0.496551724137666,0.305084745762915,0.496551724137666,0.318644067796787,0.503448275861834,0.311864406779851,-0.013559322033872,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033872,0.000000000000000,2 -6404,6462,6464,6522,0.489655172413498,0.325423728813729,0.496551724137666,0.318644067796787,0.496551724137666,0.332203389830671,0.503448275861834,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033883,0.000000000000000,2 -6405,6463,6465,6523,0.489655172413498,0.338983050847605,0.496551724137666,0.332203389830671,0.496551724137666,0.345762711864539,0.503448275861834,0.338983050847605,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.013559322033869,0.000000000000000,2 -6406,6464,6466,6524,0.489655172413498,0.352542372881469,0.496551724137666,0.345762711864539,0.496551724137666,0.359322033898399,0.503448275861834,0.352542372881469,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6407,6465,6467,6525,0.489655172413498,0.366101694915329,0.496551724137666,0.359322033898399,0.496551724137666,0.372881355932259,0.503448275861834,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6408,6466,6468,6526,0.489655172413498,0.379661016949189,0.496551724137666,0.372881355932259,0.496551724137666,0.386440677966119,0.503448275861834,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.013559322033860,0.000000000000000,2 -6409,6467,6527,7176,0.489655172413498,0.393220338983059,0.496551724137666,0.386440677966119,0.503448275861834,0.393220338983059,0.496551724137666,0.400000000000000,-0.013559322033881,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448336,2 -5086,6410,6470,6528,0.510344827585989,-0.400000000000000,0.503448275861834,-0.393220338983034,0.510344827585989,-0.386440677966068,0.517241379310145,-0.393220338983034,-0.000000000000000,-0.013793103448311,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448311,0.013559322033932,0.000000000000000,2 -6411,6469,6471,6529,0.503448275861834,-0.379661016949095,0.510344827585989,-0.386440677966068,0.510344827585989,-0.372881355932122,0.517241379310145,-0.379661016949095,-0.013559322033946,0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033946,-0.000000000000000,2 -6412,6470,6472,6530,0.503448275861834,-0.366101694915163,0.510344827585989,-0.372881355932122,0.510344827585990,-0.359322033898204,0.517241379310145,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.013559322033918,-0.000000000000000,2 -6413,6471,6473,6531,0.503448275861834,-0.352542372881227,0.510344827585990,-0.359322033898204,0.510344827585989,-0.345762711864250,0.517241379310145,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.013559322033954,0.000000000000000,2 -6414,6472,6474,6532,0.503448275861834,-0.338983050847293,0.510344827585989,-0.345762711864250,0.510344827585989,-0.332203389830336,0.517241379310145,-0.338983050847293,-0.013559322033914,0.000000000000000,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448311,0.013559322033914,0.000000000000000,2 -6415,6473,6475,6533,0.503448275861834,-0.325423728813361,0.510344827585989,-0.332203389830336,0.510344827585989,-0.318644067796386,0.517241379310145,-0.325423728813361,-0.013559322033951,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033950,0.000000000000000,2 -6416,6474,6476,6534,0.503448275861834,-0.311864406779421,0.510344827585989,-0.318644067796386,0.510344827585989,-0.305084745762457,0.517241379310145,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033928,0.000000000000000,2 -6417,6475,6477,6535,0.503448275861834,-0.298305084745489,0.510344827585989,-0.305084745762457,0.510344827585989,-0.291525423728521,0.517241379310145,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.013559322033936,-0.000000000000000,2 -6418,6476,6478,6536,0.503448275861834,-0.284745762711550,0.510344827585989,-0.291525423728521,0.510344827585989,-0.277966101694579,0.517241379310145,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448311,0.013559322033942,0.000000000000000,2 -6419,6477,6479,6537,0.503448275861834,-0.271186440677618,0.510344827585989,-0.277966101694579,0.510344827585989,-0.264406779660657,0.517241379310145,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033922,0.000000000000000,2 -6420,6478,6480,6538,0.503448275861834,-0.257627118643680,0.510344827585989,-0.264406779660657,0.510344827585989,-0.250847457626703,0.517241379310145,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.013559322033954,0.000000000000000,2 -6421,6479,6481,6539,0.503448275861834,-0.244067796609748,0.510344827585989,-0.250847457626703,0.510344827585989,-0.237288135592793,0.517241379310145,-0.244067796609748,-0.013559322033910,-0.000000000000000,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.013559322033910,0.000000000000000,2 -6422,6480,6482,6540,0.503448275861834,-0.230508474575816,0.510344827585989,-0.237288135592793,0.510344827585989,-0.223728813558839,0.517241379310145,-0.230508474575816,-0.013559322033954,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033954,0.000000000000000,2 -6423,6481,6483,6541,0.503448275861834,-0.216949152541877,0.510344827585989,-0.223728813558839,0.510344827585989,-0.210169491524915,0.517241379310145,-0.216949152541877,-0.013559322033924,0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033924,-0.000000000000000,2 -6424,6482,6484,6542,0.503448275861834,-0.203389830507945,0.510344827585989,-0.210169491524915,0.510344827585989,-0.196610169490975,0.517241379310145,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.013559322033940,-0.000000000000000,2 -6425,6483,6485,6543,0.503448275861834,-0.189830508474016,0.510344827585989,-0.196610169490975,0.510344827585989,-0.183050847457058,0.517241379310145,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448311,0.013559322033917,0.000000000000000,2 -6426,6484,6486,6544,0.503448275861834,-0.176271186440084,0.510344827585989,-0.183050847457058,0.510344827585989,-0.169491525423110,0.517241379310145,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033947,-0.000000000000000,2 -6427,6485,6487,6545,0.503448275861834,-0.162711864406145,0.510344827585989,-0.169491525423110,0.510344827585989,-0.155932203389179,0.517241379310145,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.013559322033931,-0.000000000000000,2 -6428,6486,6488,6546,0.503448275861834,-0.149152542372213,0.510344827585989,-0.155932203389179,0.510344827585989,-0.142372881355246,0.517241379310145,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448311,0.013559322033933,0.000000000000000,2 -6429,6487,6489,6547,0.503448275861834,-0.135593220338273,0.510344827585989,-0.142372881355246,0.510344827585989,-0.128813559321301,0.517241379310145,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033945,0.000000000000000,2 -6430,6488,6490,6548,0.503448275861834,-0.122033898304341,0.510344827585989,-0.128813559321301,0.510344827585989,-0.115254237287382,0.517241379310145,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033919,0.000000000000000,2 -6431,6489,6491,6549,0.503448275861834,-0.108474576270409,0.510344827585989,-0.115254237287382,0.510344827585989,-0.101694915253436,0.517241379310145,-0.108474576270409,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033946,0.000000000000000,2 -6432,6490,6492,6550,0.503448275861834,-0.094915254236471,0.510344827585989,-0.101694915253436,0.510344827585989,-0.088135593219506,0.517241379310145,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.013559322033930,0.000000000000000,2 -6433,6491,6493,6551,0.503448275861834,-0.081355932202535,0.510344827585989,-0.088135593219506,0.510344827585989,-0.074576271185565,0.517241379310145,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033941,0.000000000000000,2 -6434,6492,6494,6552,0.503448275861834,-0.067796610168599,0.510344827585989,-0.074576271185565,0.510344827585989,-0.061016949151634,0.517241379310145,-0.067796610168599,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.013559322033930,0.000000000000000,2 -6435,6493,6495,6553,0.503448275861834,-0.054237288134667,0.510344827585989,-0.061016949151634,0.510344827585989,-0.047457627117699,0.517241379310145,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.013559322033935,0.000000000000000,2 -6436,6494,6496,6554,0.503448275861834,-0.040677966100731,0.510344827585989,-0.047457627117699,0.510344827585989,-0.033898305083763,0.517241379310145,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033937,0.000000000000000,2 -6437,6495,6497,6555,0.503448275861834,-0.027118644066798,0.510344827585989,-0.033898305083763,0.510344827585989,-0.020338983049833,0.517241379310145,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033930,0.000000000000000,2 -6438,6496,6498,6556,0.503448275861834,-0.013559322032862,0.510344827585989,-0.020338983049833,0.510344827585989,-0.006779661015891,0.517241379310145,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033941,0.000000000000000,2 -6439,6497,6499,6557,0.503448275861834,0.000000000001056,0.510344827585989,-0.006779661015891,0.510344827585989,0.006779661018004,0.517241379310145,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033895,0.000000000000000,2 -6440,6498,6500,6558,0.503448275861834,0.013559322034933,0.510344827585989,0.006779661018004,0.510344827585989,0.020338983051863,0.517241379310145,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6441,6499,6501,6559,0.503448275861834,0.027118644068793,0.510344827585989,0.020338983051863,0.510344827585989,0.033898305085723,0.517241379310145,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6442,6500,6502,6560,0.503448275861834,0.040677966102653,0.510344827585989,0.033898305085723,0.510344827585989,0.047457627119583,0.517241379310145,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6443,6501,6503,6561,0.503448275861834,0.054237288136513,0.510344827585989,0.047457627119583,0.510344827585989,0.061016949153442,0.517241379310145,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6444,6502,6504,6562,0.503448275861834,0.067796610170372,0.510344827585989,0.061016949153442,0.510344827585989,0.074576271187302,0.517241379310145,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6445,6503,6505,6563,0.503448275861834,0.081355932204232,0.510344827585989,0.074576271187302,0.510344827585989,0.088135593221162,0.517241379310145,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6446,6504,6506,6564,0.503448275861834,0.094915254238085,0.510344827585989,0.088135593221162,0.510344827585989,0.101694915255008,0.517241379310145,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033846,0.000000000000000,2 -6447,6505,6507,6565,0.503448275861834,0.108474576271933,0.510344827585989,0.101694915255008,0.510344827585989,0.115254237288859,0.517241379310145,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033852,0.000000000000000,2 -6448,6506,6508,6566,0.503448275861834,0.122033898305789,0.510344827585989,0.115254237288859,0.510344827585989,0.128813559322719,0.517241379310145,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6449,6507,6509,6567,0.503448275861834,0.135593220339649,0.510344827585989,0.128813559322719,0.510344827585989,0.142372881356579,0.517241379310145,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6450,6508,6510,6568,0.503448275861834,0.149152542373509,0.510344827585989,0.142372881356579,0.510344827585989,0.155932203390438,0.517241379310145,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6451,6509,6511,6569,0.503448275861834,0.162711864407368,0.510344827585989,0.155932203390438,0.510344827585989,0.169491525424298,0.517241379310145,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6452,6510,6512,6570,0.503448275861834,0.176271186441228,0.510344827585989,0.169491525424298,0.510344827585989,0.183050847458158,0.517241379310145,0.176271186441228,-0.013559322033859,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448312,0.013559322033860,-0.000000000000000,2 -6453,6511,6513,6571,0.503448275861834,0.189830508475088,0.510344827585989,0.183050847458158,0.510344827585989,0.196610169492018,0.517241379310145,0.189830508475088,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6454,6512,6514,6572,0.503448275861834,0.203389830508947,0.510344827585989,0.196610169492018,0.510344827585989,0.210169491525877,0.517241379310145,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6455,6513,6515,6573,0.503448275861834,0.216949152542807,0.510344827585989,0.210169491525877,0.510344827585989,0.223728813559737,0.517241379310145,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6456,6514,6516,6574,0.503448275861834,0.230508474576667,0.510344827585989,0.223728813559737,0.510344827585989,0.237288135593597,0.517241379310145,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6457,6515,6517,6575,0.503448275861834,0.244067796610527,0.510344827585989,0.237288135593597,0.510344827585989,0.250847457627456,0.517241379310145,0.244067796610526,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448312,0.013559322033860,-0.000000000000000,2 -6458,6516,6518,6576,0.503448275861834,0.257627118644386,0.510344827585989,0.250847457627456,0.510344827585989,0.264406779661316,0.517241379310145,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6459,6517,6519,6577,0.503448275861834,0.271186440678246,0.510344827585989,0.264406779661316,0.510344827585989,0.277966101695176,0.517241379310145,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6460,6518,6520,6578,0.503448275861834,0.284745762712106,0.510344827585989,0.277966101695176,0.510344827585989,0.291525423729036,0.517241379310145,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6461,6519,6521,6579,0.503448275861834,0.298305084745975,0.510344827585989,0.291525423729036,0.510344827585989,0.305084745762915,0.517241379310145,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033879,0.000000000000000,2 -6462,6520,6522,6580,0.503448275861834,0.311864406779851,0.510344827585989,0.305084745762915,0.510344827585989,0.318644067796787,0.517241379310145,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033872,0.000000000000000,2 -6463,6521,6523,6581,0.503448275861834,0.325423728813729,0.510344827585989,0.318644067796787,0.510344827585989,0.332203389830671,0.517241379310145,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033883,0.000000000000000,2 -6464,6522,6524,6582,0.503448275861834,0.338983050847605,0.510344827585989,0.332203389830671,0.510344827585989,0.345762711864539,0.517241379310145,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033869,0.000000000000000,2 -6465,6523,6525,6583,0.503448275861834,0.352542372881469,0.510344827585989,0.345762711864539,0.510344827585989,0.359322033898399,0.517241379310145,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6466,6524,6526,6584,0.503448275861834,0.366101694915329,0.510344827585989,0.359322033898399,0.510344827585989,0.372881355932259,0.517241379310145,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6467,6525,6527,6585,0.503448275861834,0.379661016949189,0.510344827585989,0.372881355932259,0.510344827585989,0.386440677966119,0.517241379310145,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.013559322033860,0.000000000000000,2 -6468,6526,6586,7190,0.503448275861834,0.393220338983059,0.510344827585989,0.386440677966119,0.517241379310145,0.393220338983059,0.510344827585989,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448311,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448311,2 -5100,6469,6529,6587,0.524137931034299,-0.400000000000000,0.517241379310145,-0.393220338983034,0.524137931034299,-0.386440677966068,0.531034482758453,-0.393220338983034,-0.000000000000000,-0.013793103448308,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448308,0.013559322033932,0.000000000000000,2 -6470,6528,6530,6588,0.517241379310145,-0.379661016949095,0.524137931034299,-0.386440677966068,0.524137931034299,-0.372881355932122,0.531034482758453,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033946,-0.000000000000000,2 -6471,6529,6531,6589,0.517241379310145,-0.366101694915163,0.524137931034299,-0.372881355932122,0.524137931034299,-0.359322033898204,0.531034482758453,-0.366101694915163,-0.013559322033918,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448307,0.013559322033918,0.000000000000000,2 -6472,6530,6532,6590,0.517241379310145,-0.352542372881227,0.524137931034299,-0.359322033898204,0.524137931034299,-0.345762711864250,0.531034482758453,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448308,0.013559322033954,-0.000000000000000,2 -6473,6531,6533,6591,0.517241379310145,-0.338983050847293,0.524137931034299,-0.345762711864250,0.524137931034299,-0.332203389830336,0.531034482758453,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033914,0.000000000000000,2 -6474,6532,6534,6592,0.517241379310145,-0.325423728813361,0.524137931034299,-0.332203389830336,0.524137931034299,-0.318644067796386,0.531034482758453,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033950,0.000000000000000,2 -6475,6533,6535,6593,0.517241379310145,-0.311864406779422,0.524137931034299,-0.318644067796386,0.524137931034299,-0.305084745762457,0.531034482758453,-0.311864406779421,-0.013559322033928,-0.000000000000000,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033928,0.000000000000000,2 -6476,6534,6536,6594,0.517241379310145,-0.298305084745489,0.524137931034299,-0.305084745762457,0.524137931034299,-0.291525423728521,0.531034482758453,-0.298305084745489,-0.013559322033936,0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033936,-0.000000000000000,2 -6477,6535,6537,6595,0.517241379310145,-0.284745762711550,0.524137931034299,-0.291525423728521,0.524137931034299,-0.277966101694579,0.531034482758453,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033942,0.000000000000000,2 -6478,6536,6538,6596,0.517241379310145,-0.271186440677618,0.524137931034299,-0.277966101694579,0.524137931034299,-0.264406779660657,0.531034482758453,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033922,0.000000000000000,2 -6479,6537,6539,6597,0.517241379310145,-0.257627118643680,0.524137931034299,-0.264406779660657,0.524137931034299,-0.250847457626703,0.531034482758453,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033954,0.000000000000000,2 -6480,6538,6540,6598,0.517241379310145,-0.244067796609748,0.524137931034299,-0.250847457626703,0.524137931034299,-0.237288135592793,0.531034482758453,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033910,-0.000000000000000,2 -6481,6539,6541,6599,0.517241379310145,-0.230508474575816,0.524137931034299,-0.237288135592793,0.524137931034299,-0.223728813558839,0.531034482758453,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033954,0.000000000000000,2 -6482,6540,6542,6600,0.517241379310145,-0.216949152541877,0.524137931034299,-0.223728813558839,0.524137931034299,-0.210169491524915,0.531034482758453,-0.216949152541877,-0.013559322033924,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033924,0.000000000000000,2 -6483,6541,6543,6601,0.517241379310145,-0.203389830507945,0.524137931034299,-0.210169491524915,0.524137931034299,-0.196610169490975,0.531034482758453,-0.203389830507945,-0.013559322033940,0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448307,0.013559322033940,0.000000000000000,2 -6484,6542,6544,6602,0.517241379310145,-0.189830508474016,0.524137931034299,-0.196610169490975,0.524137931034299,-0.183050847457058,0.531034482758453,-0.189830508474016,-0.013559322033917,-0.000000000000000,0.000000000000000,-0.013793103448307,0.000000000000000,0.013793103448308,0.013559322033917,-0.000000000000000,2 -6485,6543,6545,6603,0.517241379310145,-0.176271186440084,0.524137931034299,-0.183050847457058,0.524137931034299,-0.169491525423110,0.531034482758453,-0.176271186440084,-0.013559322033947,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033947,0.000000000000000,2 -6486,6544,6546,6604,0.517241379310145,-0.162711864406145,0.524137931034299,-0.169491525423110,0.524137931034299,-0.155932203389179,0.531034482758453,-0.162711864406145,-0.013559322033931,0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033931,0.000000000000000,2 -6487,6545,6547,6605,0.517241379310145,-0.149152542372213,0.524137931034299,-0.155932203389179,0.524137931034299,-0.142372881355246,0.531034482758453,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033933,0.000000000000000,2 -6488,6546,6548,6606,0.517241379310145,-0.135593220338274,0.524137931034299,-0.142372881355246,0.524137931034299,-0.128813559321301,0.531034482758453,-0.135593220338273,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033945,-0.000000000000000,2 -6489,6547,6549,6607,0.517241379310145,-0.122033898304341,0.524137931034299,-0.128813559321301,0.524137931034299,-0.115254237287382,0.531034482758453,-0.122033898304341,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033919,0.000000000000000,2 -6490,6548,6550,6608,0.517241379310145,-0.108474576270409,0.524137931034299,-0.115254237287382,0.524137931034299,-0.101694915253436,0.531034482758453,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033946,-0.000000000000000,2 -6491,6549,6551,6609,0.517241379310145,-0.094915254236471,0.524137931034299,-0.101694915253436,0.524137931034299,-0.088135593219506,0.531034482758453,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033930,-0.000000000000000,2 -6492,6550,6552,6610,0.517241379310145,-0.081355932202535,0.524137931034299,-0.088135593219506,0.524137931034299,-0.074576271185564,0.531034482758453,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033941,0.000000000000000,2 -6493,6551,6553,6611,0.517241379310145,-0.067796610168599,0.524137931034299,-0.074576271185564,0.524137931034299,-0.061016949151634,0.531034482758453,-0.067796610168599,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033930,0.000000000000000,2 -6494,6552,6554,6612,0.517241379310145,-0.054237288134667,0.524137931034299,-0.061016949151634,0.524137931034299,-0.047457627117699,0.531034482758453,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033935,0.000000000000000,2 -6495,6553,6555,6613,0.517241379310145,-0.040677966100731,0.524137931034299,-0.047457627117699,0.524137931034299,-0.033898305083763,0.531034482758453,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033937,0.000000000000000,2 -6496,6554,6556,6614,0.517241379310145,-0.027118644066798,0.524137931034299,-0.033898305083763,0.524137931034299,-0.020338983049833,0.531034482758453,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033930,0.000000000000000,2 -6497,6555,6557,6615,0.517241379310145,-0.013559322032862,0.524137931034299,-0.020338983049833,0.524137931034299,-0.006779661015891,0.531034482758453,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033941,0.000000000000000,2 -6498,6556,6558,6616,0.517241379310145,0.000000000001056,0.524137931034299,-0.006779661015891,0.524137931034299,0.006779661018004,0.531034482758453,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033895,0.000000000000000,2 -6499,6557,6559,6617,0.517241379310145,0.013559322034933,0.524137931034299,0.006779661018004,0.524137931034299,0.020338983051863,0.531034482758453,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,-0.000000000000000,2 -6500,6558,6560,6618,0.517241379310145,0.027118644068793,0.524137931034299,0.020338983051863,0.524137931034299,0.033898305085723,0.531034482758453,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6501,6559,6561,6619,0.517241379310145,0.040677966102653,0.524137931034299,0.033898305085723,0.524137931034299,0.047457627119583,0.531034482758453,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6502,6560,6562,6620,0.517241379310145,0.054237288136513,0.524137931034299,0.047457627119583,0.524137931034299,0.061016949153442,0.531034482758453,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6503,6561,6563,6621,0.517241379310145,0.067796610170372,0.524137931034299,0.061016949153442,0.524137931034299,0.074576271187302,0.531034482758453,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6504,6562,6564,6622,0.517241379310145,0.081355932204232,0.524137931034299,0.074576271187302,0.524137931034299,0.088135593221162,0.531034482758453,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6505,6563,6565,6623,0.517241379310145,0.094915254238085,0.524137931034299,0.088135593221162,0.524137931034299,0.101694915255008,0.531034482758453,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033846,-0.000000000000000,2 -6506,6564,6566,6624,0.517241379310145,0.108474576271933,0.524137931034299,0.101694915255008,0.524137931034299,0.115254237288859,0.531034482758453,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033852,0.000000000000000,2 -6507,6565,6567,6625,0.517241379310145,0.122033898305789,0.524137931034299,0.115254237288859,0.524137931034299,0.128813559322719,0.531034482758453,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6508,6566,6568,6626,0.517241379310145,0.135593220339649,0.524137931034299,0.128813559322719,0.524137931034299,0.142372881356579,0.531034482758453,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6509,6567,6569,6627,0.517241379310145,0.149152542373509,0.524137931034299,0.142372881356579,0.524137931034299,0.155932203390438,0.531034482758453,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6510,6568,6570,6628,0.517241379310145,0.162711864407368,0.524137931034299,0.155932203390438,0.524137931034299,0.169491525424298,0.531034482758453,0.162711864407368,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,-0.000000000000000,2 -6511,6569,6571,6629,0.517241379310145,0.176271186441228,0.524137931034299,0.169491525424298,0.524137931034299,0.183050847458158,0.531034482758453,0.176271186441228,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6512,6570,6572,6630,0.517241379310145,0.189830508475088,0.524137931034299,0.183050847458158,0.524137931034299,0.196610169492018,0.531034482758453,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6513,6571,6573,6631,0.517241379310145,0.203389830508947,0.524137931034299,0.196610169492018,0.524137931034299,0.210169491525877,0.531034482758453,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6514,6572,6574,6632,0.517241379310145,0.216949152542807,0.524137931034299,0.210169491525877,0.524137931034299,0.223728813559737,0.531034482758453,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6515,6573,6575,6633,0.517241379310145,0.230508474576667,0.524137931034299,0.223728813559737,0.524137931034299,0.237288135593597,0.531034482758453,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.013559322033860,-0.000000000000000,2 -6516,6574,6576,6634,0.517241379310145,0.244067796610526,0.524137931034299,0.237288135593597,0.524137931034299,0.250847457627456,0.531034482758453,0.244067796610527,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6517,6575,6577,6635,0.517241379310145,0.257627118644386,0.524137931034299,0.250847457627456,0.524137931034299,0.264406779661316,0.531034482758453,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6518,6576,6578,6636,0.517241379310145,0.271186440678246,0.524137931034299,0.264406779661316,0.524137931034299,0.277966101695176,0.531034482758453,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6519,6577,6579,6637,0.517241379310145,0.284745762712106,0.524137931034299,0.277966101695176,0.524137931034299,0.291525423729036,0.531034482758453,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6520,6578,6580,6638,0.517241379310145,0.298305084745975,0.524137931034299,0.291525423729036,0.524137931034299,0.305084745762915,0.531034482758453,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033879,0.000000000000000,2 -6521,6579,6581,6639,0.517241379310145,0.311864406779851,0.524137931034299,0.305084745762915,0.524137931034299,0.318644067796787,0.531034482758453,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033872,0.000000000000000,2 -6522,6580,6582,6640,0.517241379310145,0.325423728813729,0.524137931034299,0.318644067796787,0.524137931034299,0.332203389830670,0.531034482758453,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033883,0.000000000000000,2 -6523,6581,6583,6641,0.517241379310145,0.338983050847605,0.524137931034299,0.332203389830670,0.524137931034299,0.345762711864539,0.531034482758453,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033869,0.000000000000000,2 -6524,6582,6584,6642,0.517241379310145,0.352542372881469,0.524137931034299,0.345762711864539,0.524137931034299,0.359322033898399,0.531034482758453,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6525,6583,6585,6643,0.517241379310145,0.366101694915329,0.524137931034299,0.359322033898399,0.524137931034299,0.372881355932259,0.531034482758453,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6526,6584,6586,6644,0.517241379310145,0.379661016949189,0.524137931034299,0.372881355932259,0.524137931034299,0.386440677966119,0.531034482758453,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.013559322033860,0.000000000000000,2 -6527,6585,6645,7204,0.517241379310145,0.393220338983059,0.524137931034299,0.386440677966119,0.531034482758453,0.393220338983059,0.524137931034299,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448308,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448308,2 -5114,6528,6588,6646,0.537931034482601,-0.400000000000000,0.531034482758453,-0.393220338983034,0.537931034482601,-0.386440677966068,0.544827586206749,-0.393220338983034,-0.000000000000000,-0.013793103448296,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448297,0.013559322033932,0.000000000000000,2 -6529,6587,6589,6647,0.531034482758453,-0.379661016949095,0.537931034482601,-0.386440677966068,0.537931034482601,-0.372881355932122,0.544827586206749,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033946,0.000000000000000,2 -6530,6588,6590,6648,0.531034482758453,-0.366101694915163,0.537931034482601,-0.372881355932122,0.537931034482601,-0.359322033898204,0.544827586206749,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033918,-0.000000000000000,2 -6531,6589,6591,6649,0.531034482758453,-0.352542372881227,0.537931034482601,-0.359322033898204,0.537931034482601,-0.345762711864250,0.544827586206749,-0.352542372881227,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033954,0.000000000000000,2 -6532,6590,6592,6650,0.531034482758453,-0.338983050847293,0.537931034482601,-0.345762711864250,0.537931034482601,-0.332203389830336,0.544827586206749,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033914,0.000000000000000,2 -6533,6591,6593,6651,0.531034482758453,-0.325423728813361,0.537931034482601,-0.332203389830336,0.537931034482601,-0.318644067796386,0.544827586206749,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033950,0.000000000000000,2 -6534,6592,6594,6652,0.531034482758453,-0.311864406779421,0.537931034482601,-0.318644067796386,0.537931034482601,-0.305084745762457,0.544827586206749,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033928,0.000000000000000,2 -6535,6593,6595,6653,0.531034482758453,-0.298305084745489,0.537931034482601,-0.305084745762457,0.537931034482601,-0.291525423728521,0.544827586206749,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033936,-0.000000000000000,2 -6536,6594,6596,6654,0.531034482758453,-0.284745762711550,0.537931034482601,-0.291525423728521,0.537931034482601,-0.277966101694579,0.544827586206749,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.013559322033942,0.000000000000000,2 -6537,6595,6597,6655,0.531034482758453,-0.271186440677618,0.537931034482601,-0.277966101694579,0.537931034482601,-0.264406779660657,0.544827586206749,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033922,-0.000000000000000,2 -6538,6596,6598,6656,0.531034482758453,-0.257627118643680,0.537931034482601,-0.264406779660657,0.537931034482601,-0.250847457626703,0.544827586206749,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033954,0.000000000000000,2 -6539,6597,6599,6657,0.531034482758453,-0.244067796609748,0.537931034482601,-0.250847457626703,0.537931034482601,-0.237288135592793,0.544827586206749,-0.244067796609748,-0.013559322033910,0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033910,0.000000000000000,2 -6540,6598,6600,6658,0.531034482758453,-0.230508474575816,0.537931034482601,-0.237288135592793,0.537931034482601,-0.223728813558839,0.544827586206749,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033954,0.000000000000000,2 -6541,6599,6601,6659,0.531034482758453,-0.216949152541877,0.537931034482601,-0.223728813558839,0.537931034482601,-0.210169491524915,0.544827586206749,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033924,-0.000000000000000,2 -6542,6600,6602,6660,0.531034482758453,-0.203389830507945,0.537931034482601,-0.210169491524915,0.537931034482601,-0.196610169490975,0.544827586206749,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,0.013559322033940,0.000000000000000,2 -6543,6601,6603,6661,0.531034482758453,-0.189830508474016,0.537931034482601,-0.196610169490975,0.537931034482601,-0.183050847457058,0.544827586206749,-0.189830508474016,-0.013559322033917,0.000000000000000,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033917,0.000000000000000,2 -6544,6602,6604,6662,0.531034482758453,-0.176271186440084,0.537931034482601,-0.183050847457058,0.537931034482601,-0.169491525423110,0.544827586206749,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033947,0.000000000000000,2 -6545,6603,6605,6663,0.531034482758453,-0.162711864406145,0.537931034482601,-0.169491525423110,0.537931034482601,-0.155932203389179,0.544827586206749,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033931,-0.000000000000000,2 -6546,6604,6606,6664,0.531034482758453,-0.149152542372213,0.537931034482601,-0.155932203389179,0.537931034482601,-0.142372881355246,0.544827586206749,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448297,0.013559322033933,0.000000000000000,2 -6547,6605,6607,6665,0.531034482758453,-0.135593220338273,0.537931034482601,-0.142372881355246,0.537931034482601,-0.128813559321301,0.544827586206749,-0.135593220338273,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033945,0.000000000000000,2 -6548,6606,6608,6666,0.531034482758453,-0.122033898304341,0.537931034482601,-0.128813559321301,0.537931034482601,-0.115254237287382,0.544827586206749,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033919,-0.000000000000000,2 -6549,6607,6609,6667,0.531034482758453,-0.108474576270409,0.537931034482601,-0.115254237287382,0.537931034482601,-0.101694915253436,0.544827586206749,-0.108474576270409,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,0.013559322033946,0.000000000000000,2 -6550,6608,6610,6668,0.531034482758453,-0.094915254236471,0.537931034482601,-0.101694915253436,0.537931034482601,-0.088135593219506,0.544827586206749,-0.094915254236471,-0.013559322033930,0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033930,0.000000000000000,2 -6551,6609,6611,6669,0.531034482758453,-0.081355932202535,0.537931034482601,-0.088135593219506,0.537931034482601,-0.074576271185564,0.544827586206749,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033941,0.000000000000000,2 -6552,6610,6612,6670,0.531034482758453,-0.067796610168599,0.537931034482601,-0.074576271185564,0.537931034482601,-0.061016949151634,0.544827586206749,-0.067796610168599,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033930,-0.000000000000000,2 -6553,6611,6613,6671,0.531034482758453,-0.054237288134667,0.537931034482601,-0.061016949151634,0.537931034482601,-0.047457627117699,0.544827586206749,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.013559322033935,0.000000000000000,2 -6554,6612,6614,6672,0.531034482758453,-0.040677966100731,0.537931034482601,-0.047457627117699,0.537931034482601,-0.033898305083763,0.544827586206749,-0.040677966100731,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.013559322033937,0.000000000000000,2 -6555,6613,6615,6673,0.531034482758453,-0.027118644066798,0.537931034482601,-0.033898305083763,0.537931034482601,-0.020338983049833,0.544827586206749,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033930,-0.000000000000000,2 -6556,6614,6616,6674,0.531034482758453,-0.013559322032862,0.537931034482601,-0.020338983049833,0.537931034482601,-0.006779661015891,0.544827586206749,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448297,-0.000000000000000,0.013793103448296,0.013559322033941,0.000000000000000,2 -6557,6615,6617,6675,0.531034482758453,0.000000000001056,0.537931034482601,-0.006779661015891,0.537931034482601,0.006779661018004,0.544827586206749,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,0.013559322033895,-0.000000000000000,2 -6558,6616,6618,6676,0.531034482758453,0.013559322034933,0.537931034482601,0.006779661018004,0.537931034482601,0.020338983051863,0.544827586206749,0.013559322034933,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6559,6617,6619,6677,0.531034482758453,0.027118644068793,0.537931034482601,0.020338983051863,0.537931034482601,0.033898305085723,0.544827586206749,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6560,6618,6620,6678,0.531034482758453,0.040677966102653,0.537931034482601,0.033898305085723,0.537931034482601,0.047457627119583,0.544827586206749,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6561,6619,6621,6679,0.531034482758453,0.054237288136513,0.537931034482601,0.047457627119583,0.537931034482601,0.061016949153442,0.544827586206749,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6562,6620,6622,6680,0.531034482758453,0.067796610170372,0.537931034482601,0.061016949153442,0.537931034482601,0.074576271187302,0.544827586206749,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6563,6621,6623,6681,0.531034482758453,0.081355932204232,0.537931034482601,0.074576271187302,0.537931034482601,0.088135593221162,0.544827586206749,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6564,6622,6624,6682,0.531034482758453,0.094915254238085,0.537931034482601,0.088135593221162,0.537931034482601,0.101694915255008,0.544827586206749,0.094915254238085,-0.013559322033846,0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033846,0.000000000000000,2 -6565,6623,6625,6683,0.531034482758453,0.108474576271933,0.537931034482601,0.101694915255008,0.537931034482601,0.115254237288859,0.544827586206749,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033852,0.000000000000000,2 -6566,6624,6626,6684,0.531034482758453,0.122033898305789,0.537931034482601,0.115254237288859,0.537931034482601,0.128813559322719,0.544827586206749,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6567,6625,6627,6685,0.531034482758453,0.135593220339649,0.537931034482601,0.128813559322719,0.537931034482601,0.142372881356579,0.544827586206749,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,-0.000000000000000,2 -6568,6626,6628,6686,0.531034482758453,0.149152542373509,0.537931034482601,0.142372881356579,0.537931034482601,0.155932203390438,0.544827586206749,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6569,6627,6629,6687,0.531034482758453,0.162711864407368,0.537931034482601,0.155932203390438,0.537931034482601,0.169491525424298,0.544827586206749,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,-0.000000000000000,2 -6570,6628,6630,6688,0.531034482758453,0.176271186441228,0.537931034482601,0.169491525424298,0.537931034482601,0.183050847458158,0.544827586206749,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6571,6629,6631,6689,0.531034482758453,0.189830508475088,0.537931034482601,0.183050847458158,0.537931034482601,0.196610169492018,0.544827586206749,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,-0.000000000000000,2 -6572,6630,6632,6690,0.531034482758453,0.203389830508947,0.537931034482601,0.196610169492018,0.537931034482601,0.210169491525877,0.544827586206749,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6573,6631,6633,6691,0.531034482758453,0.216949152542807,0.537931034482601,0.210169491525877,0.537931034482601,0.223728813559737,0.544827586206749,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033860,0.000000000000000,2 -6574,6632,6634,6692,0.531034482758453,0.230508474576667,0.537931034482601,0.223728813559737,0.537931034482601,0.237288135593597,0.544827586206749,0.230508474576667,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6575,6633,6635,6693,0.531034482758453,0.244067796610527,0.537931034482601,0.237288135593597,0.537931034482601,0.250847457627456,0.544827586206749,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6576,6634,6636,6694,0.531034482758453,0.257627118644386,0.537931034482601,0.250847457627456,0.537931034482601,0.264406779661316,0.544827586206749,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6577,6635,6637,6695,0.531034482758453,0.271186440678246,0.537931034482601,0.264406779661316,0.537931034482601,0.277966101695176,0.544827586206749,0.271186440678246,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6578,6636,6638,6696,0.531034482758453,0.284745762712106,0.537931034482601,0.277966101695176,0.537931034482601,0.291525423729036,0.544827586206749,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6579,6637,6639,6697,0.531034482758453,0.298305084745975,0.537931034482601,0.291525423729036,0.537931034482601,0.305084745762915,0.544827586206749,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033879,0.000000000000000,2 -6580,6638,6640,6698,0.531034482758453,0.311864406779851,0.537931034482601,0.305084745762915,0.537931034482601,0.318644067796787,0.544827586206749,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033872,0.000000000000000,2 -6581,6639,6641,6699,0.531034482758453,0.325423728813729,0.537931034482601,0.318644067796787,0.537931034482601,0.332203389830670,0.544827586206749,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033883,0.000000000000000,2 -6582,6640,6642,6700,0.531034482758453,0.338983050847605,0.537931034482601,0.332203389830670,0.537931034482601,0.345762711864539,0.544827586206749,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.013559322033869,0.000000000000000,2 -6583,6641,6643,6701,0.531034482758453,0.352542372881469,0.537931034482601,0.345762711864539,0.537931034482601,0.359322033898399,0.544827586206749,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448297,0.013559322033860,-0.000000000000000,2 -6584,6642,6644,6702,0.531034482758453,0.366101694915329,0.537931034482601,0.359322033898399,0.537931034482601,0.372881355932259,0.544827586206749,0.366101694915329,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.013559322033860,0.000000000000000,2 -6585,6643,6645,6703,0.531034482758453,0.379661016949189,0.537931034482601,0.372881355932259,0.537931034482601,0.386440677966119,0.544827586206749,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.013559322033860,-0.000000000000000,2 -6586,6644,6704,7218,0.531034482758453,0.393220338983059,0.537931034482601,0.386440677966119,0.544827586206749,0.393220338983059,0.537931034482601,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448297,0.013559322033881,0.000000000000000,0.000000000000000,0.013793103448296,2 -5128,6587,6647,6705,0.551724137930900,-0.400000000000000,0.544827586206749,-0.393220338983034,0.551724137930900,-0.386440677966068,0.558620689655051,-0.393220338983034,-0.000000000000000,-0.013793103448302,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448301,0.013559322033932,0.000000000000000,2 -6588,6646,6648,6706,0.544827586206749,-0.379661016949095,0.551724137930900,-0.386440677966068,0.551724137930900,-0.372881355932122,0.558620689655051,-0.379661016949095,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448302,0.013559322033946,-0.000000000000000,2 -6589,6647,6649,6707,0.544827586206749,-0.366101694915163,0.551724137930900,-0.372881355932122,0.551724137930900,-0.359322033898204,0.558620689655051,-0.366101694915163,-0.013559322033918,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448301,0.013559322033918,0.000000000000000,2 -6590,6648,6650,6708,0.544827586206749,-0.352542372881227,0.551724137930900,-0.359322033898204,0.551724137930900,-0.345762711864250,0.558620689655051,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448301,0.000000000000000,0.013793103448302,0.013559322033954,-0.000000000000000,2 -6591,6649,6651,6709,0.544827586206749,-0.338983050847293,0.551724137930900,-0.345762711864250,0.551724137930900,-0.332203389830336,0.558620689655051,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033914,0.000000000000000,2 -6592,6650,6652,6710,0.544827586206749,-0.325423728813361,0.551724137930900,-0.332203389830336,0.551724137930900,-0.318644067796386,0.558620689655051,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033950,0.000000000000000,2 -6593,6651,6653,6711,0.544827586206749,-0.311864406779422,0.551724137930900,-0.318644067796386,0.551724137930900,-0.305084745762457,0.558620689655051,-0.311864406779422,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033928,0.000000000000000,2 -6594,6652,6654,6712,0.544827586206749,-0.298305084745489,0.551724137930900,-0.305084745762457,0.551724137930900,-0.291525423728521,0.558620689655051,-0.298305084745489,-0.013559322033936,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033936,-0.000000000000000,2 -6595,6653,6655,6713,0.544827586206749,-0.284745762711550,0.551724137930900,-0.291525423728521,0.551724137930900,-0.277966101694579,0.558620689655051,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033942,0.000000000000000,2 -6596,6654,6656,6714,0.544827586206749,-0.271186440677618,0.551724137930900,-0.277966101694579,0.551724137930900,-0.264406779660657,0.558620689655051,-0.271186440677618,-0.013559322033922,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033922,0.000000000000000,2 -6597,6655,6657,6715,0.544827586206749,-0.257627118643680,0.551724137930900,-0.264406779660657,0.551724137930900,-0.250847457626703,0.558620689655051,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033954,-0.000000000000000,2 -6598,6656,6658,6716,0.544827586206749,-0.244067796609748,0.551724137930900,-0.250847457626703,0.551724137930900,-0.237288135592793,0.558620689655051,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033910,0.000000000000000,2 -6599,6657,6659,6717,0.544827586206749,-0.230508474575816,0.551724137930900,-0.237288135592793,0.551724137930900,-0.223728813558839,0.558620689655051,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033954,0.000000000000000,2 -6600,6658,6660,6718,0.544827586206749,-0.216949152541877,0.551724137930900,-0.223728813558839,0.551724137930900,-0.210169491524915,0.558620689655051,-0.216949152541877,-0.013559322033924,0.000000000000000,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033924,0.000000000000000,2 -6601,6659,6661,6719,0.544827586206749,-0.203389830507945,0.551724137930900,-0.210169491524915,0.551724137930900,-0.196610169490975,0.558620689655051,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033940,0.000000000000000,2 -6602,6660,6662,6720,0.544827586206749,-0.189830508474016,0.551724137930900,-0.196610169490975,0.551724137930900,-0.183050847457058,0.558620689655051,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033917,0.000000000000000,2 -6603,6661,6663,6721,0.544827586206749,-0.176271186440084,0.551724137930900,-0.183050847457058,0.551724137930900,-0.169491525423110,0.558620689655051,-0.176271186440084,-0.013559322033947,-0.000000000000000,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033947,0.000000000000000,2 -6604,6662,6664,6722,0.544827586206749,-0.162711864406145,0.551724137930900,-0.169491525423110,0.551724137930900,-0.155932203389179,0.558620689655051,-0.162711864406145,-0.013559322033931,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033931,0.000000000000000,2 -6605,6663,6665,6723,0.544827586206749,-0.149152542372213,0.551724137930900,-0.155932203389179,0.551724137930900,-0.142372881355246,0.558620689655051,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033933,0.000000000000000,2 -6606,6664,6666,6724,0.544827586206749,-0.135593220338273,0.551724137930900,-0.142372881355246,0.551724137930900,-0.128813559321301,0.558620689655051,-0.135593220338273,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033945,-0.000000000000000,2 -6607,6665,6667,6725,0.544827586206749,-0.122033898304341,0.551724137930900,-0.128813559321301,0.551724137930900,-0.115254237287382,0.558620689655051,-0.122033898304341,-0.013559322033919,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033919,0.000000000000000,2 -6608,6666,6668,6726,0.544827586206749,-0.108474576270409,0.551724137930900,-0.115254237287382,0.551724137930900,-0.101694915253436,0.558620689655051,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033946,0.000000000000000,2 -6609,6667,6669,6727,0.544827586206749,-0.094915254236471,0.551724137930900,-0.101694915253436,0.551724137930900,-0.088135593219506,0.558620689655051,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033930,0.000000000000000,2 -6610,6668,6670,6728,0.544827586206749,-0.081355932202535,0.551724137930900,-0.088135593219506,0.551724137930900,-0.074576271185564,0.558620689655051,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033941,0.000000000000000,2 -6611,6669,6671,6729,0.544827586206749,-0.067796610168599,0.551724137930900,-0.074576271185564,0.551724137930900,-0.061016949151634,0.558620689655051,-0.067796610168599,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033930,-0.000000000000000,2 -6612,6670,6672,6730,0.544827586206749,-0.054237288134667,0.551724137930900,-0.061016949151634,0.551724137930900,-0.047457627117699,0.558620689655051,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033935,0.000000000000000,2 -6613,6671,6673,6731,0.544827586206749,-0.040677966100731,0.551724137930900,-0.047457627117699,0.551724137930900,-0.033898305083763,0.558620689655051,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033937,-0.000000000000000,2 -6614,6672,6674,6732,0.544827586206749,-0.027118644066798,0.551724137930900,-0.033898305083763,0.551724137930900,-0.020338983049833,0.558620689655051,-0.027118644066798,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033930,0.000000000000000,2 -6615,6673,6675,6733,0.544827586206749,-0.013559322032862,0.551724137930900,-0.020338983049833,0.551724137930900,-0.006779661015891,0.558620689655051,-0.013559322032862,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033941,0.000000000000000,2 -6616,6674,6676,6734,0.544827586206749,0.000000000001056,0.551724137930900,-0.006779661015891,0.551724137930900,0.006779661018004,0.558620689655051,0.000000000001056,-0.013559322033895,0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033895,0.000000000000000,2 -6617,6675,6677,6735,0.544827586206749,0.013559322034933,0.551724137930900,0.006779661018004,0.551724137930900,0.020338983051863,0.558620689655051,0.013559322034934,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6618,6676,6678,6736,0.544827586206749,0.027118644068793,0.551724137930900,0.020338983051863,0.551724137930900,0.033898305085723,0.558620689655051,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6619,6677,6679,6737,0.544827586206749,0.040677966102653,0.551724137930900,0.033898305085723,0.551724137930900,0.047457627119583,0.558620689655051,0.040677966102653,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6620,6678,6680,6738,0.544827586206749,0.054237288136513,0.551724137930900,0.047457627119583,0.551724137930900,0.061016949153442,0.558620689655051,0.054237288136513,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6621,6679,6681,6739,0.544827586206749,0.067796610170372,0.551724137930900,0.061016949153442,0.551724137930900,0.074576271187302,0.558620689655051,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6622,6680,6682,6740,0.544827586206749,0.081355932204232,0.551724137930900,0.074576271187302,0.551724137930900,0.088135593221162,0.558620689655051,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6623,6681,6683,6741,0.544827586206749,0.094915254238085,0.551724137930900,0.088135593221162,0.551724137930900,0.101694915255008,0.558620689655051,0.094915254238085,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033846,-0.000000000000000,2 -6624,6682,6684,6742,0.544827586206749,0.108474576271933,0.551724137930900,0.101694915255008,0.551724137930900,0.115254237288859,0.558620689655051,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033852,0.000000000000000,2 -6625,6683,6685,6743,0.544827586206749,0.122033898305789,0.551724137930900,0.115254237288859,0.551724137930900,0.128813559322719,0.558620689655051,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6626,6684,6686,6744,0.544827586206749,0.135593220339649,0.551724137930900,0.128813559322719,0.551724137930900,0.142372881356579,0.558620689655051,0.135593220339649,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6627,6685,6687,6745,0.544827586206749,0.149152542373509,0.551724137930900,0.142372881356579,0.551724137930900,0.155932203390438,0.558620689655051,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,-0.000000000000000,2 -6628,6686,6688,6746,0.544827586206749,0.162711864407368,0.551724137930900,0.155932203390438,0.551724137930900,0.169491525424298,0.558620689655051,0.162711864407368,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6629,6687,6689,6747,0.544827586206749,0.176271186441228,0.551724137930900,0.169491525424298,0.551724137930900,0.183050847458158,0.558620689655051,0.176271186441228,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033860,-0.000000000000000,2 -6630,6688,6690,6748,0.544827586206749,0.189830508475088,0.551724137930900,0.183050847458158,0.551724137930900,0.196610169492018,0.558620689655051,0.189830508475088,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6631,6689,6691,6749,0.544827586206749,0.203389830508947,0.551724137930900,0.196610169492018,0.551724137930900,0.210169491525877,0.558620689655051,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,-0.000000000000000,2 -6632,6690,6692,6750,0.544827586206749,0.216949152542807,0.551724137930900,0.210169491525877,0.551724137930900,0.223728813559737,0.558620689655051,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6633,6691,6693,6751,0.544827586206749,0.230508474576667,0.551724137930900,0.223728813559737,0.551724137930900,0.237288135593597,0.558620689655051,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6634,6692,6694,6752,0.544827586206749,0.244067796610527,0.551724137930900,0.237288135593597,0.551724137930900,0.250847457627456,0.558620689655051,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6635,6693,6695,6753,0.544827586206749,0.257627118644386,0.551724137930900,0.250847457627456,0.551724137930900,0.264406779661316,0.558620689655051,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6636,6694,6696,6754,0.544827586206749,0.271186440678246,0.551724137930900,0.264406779661316,0.551724137930900,0.277966101695176,0.558620689655051,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,-0.000000000000000,2 -6637,6695,6697,6755,0.544827586206749,0.284745762712106,0.551724137930900,0.277966101695176,0.551724137930900,0.291525423729036,0.558620689655051,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6638,6696,6698,6756,0.544827586206749,0.298305084745975,0.551724137930900,0.291525423729036,0.551724137930900,0.305084745762915,0.558620689655051,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033879,0.000000000000000,2 -6639,6697,6699,6757,0.544827586206749,0.311864406779851,0.551724137930900,0.305084745762915,0.551724137930900,0.318644067796787,0.558620689655051,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033872,0.000000000000000,2 -6640,6698,6700,6758,0.544827586206749,0.325423728813729,0.551724137930900,0.318644067796787,0.551724137930900,0.332203389830670,0.558620689655051,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033883,0.000000000000000,2 -6641,6699,6701,6759,0.544827586206749,0.338983050847605,0.551724137930900,0.332203389830670,0.551724137930900,0.345762711864539,0.558620689655051,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033869,-0.000000000000000,2 -6642,6700,6702,6760,0.544827586206749,0.352542372881469,0.551724137930900,0.345762711864539,0.551724137930900,0.359322033898399,0.558620689655051,0.352542372881469,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6643,6701,6703,6761,0.544827586206749,0.366101694915329,0.551724137930900,0.359322033898399,0.551724137930900,0.372881355932259,0.558620689655051,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.013559322033860,0.000000000000000,2 -6644,6702,6704,6762,0.544827586206749,0.379661016949189,0.551724137930900,0.372881355932259,0.551724137930900,0.386440677966119,0.558620689655051,0.379661016949189,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.013559322033860,-0.000000000000000,2 -6645,6703,6763,7232,0.544827586206749,0.393220338983059,0.551724137930900,0.386440677966119,0.558620689655051,0.393220338983059,0.551724137930900,0.400000000000000,-0.013559322033881,-0.000000000000000,0.000000000000000,-0.013793103448302,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448302,2 -5142,6646,6706,6764,0.565517241379205,-0.400000000000000,0.558620689655051,-0.393220338983034,0.565517241379205,-0.386440677966068,0.572413793103360,-0.393220338983034,-0.000000000000000,-0.013793103448309,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448309,0.013559322033932,0.000000000000000,2 -6647,6705,6707,6765,0.558620689655051,-0.379661016949095,0.565517241379205,-0.386440677966068,0.565517241379205,-0.372881355932122,0.572413793103360,-0.379661016949095,-0.013559322033946,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033946,0.000000000000000,2 -6648,6706,6708,6766,0.558620689655051,-0.366101694915163,0.565517241379205,-0.372881355932122,0.565517241379205,-0.359322033898204,0.572413793103360,-0.366101694915163,-0.013559322033918,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448310,0.013559322033918,-0.000000000000000,2 -6649,6707,6709,6767,0.558620689655051,-0.352542372881227,0.565517241379205,-0.359322033898204,0.565517241379206,-0.345762711864250,0.572413793103360,-0.352542372881227,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 -6650,6708,6710,6768,0.558620689655051,-0.338983050847293,0.565517241379206,-0.345762711864250,0.565517241379205,-0.332203389830336,0.572413793103360,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033914,0.000000000000000,2 -6651,6709,6711,6769,0.558620689655051,-0.325423728813361,0.565517241379205,-0.332203389830336,0.565517241379205,-0.318644067796386,0.572413793103360,-0.325423728813361,-0.013559322033950,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033951,0.000000000000000,2 -6652,6710,6712,6770,0.558620689655051,-0.311864406779422,0.565517241379205,-0.318644067796386,0.565517241379205,-0.305084745762457,0.572413793103360,-0.311864406779421,-0.013559322033928,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033928,0.000000000000000,2 -6653,6711,6713,6771,0.558620689655051,-0.298305084745489,0.565517241379205,-0.305084745762457,0.565517241379205,-0.291525423728521,0.572413793103360,-0.298305084745489,-0.013559322033936,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033936,0.000000000000000,2 -6654,6712,6714,6772,0.558620689655051,-0.284745762711550,0.565517241379205,-0.291525423728521,0.565517241379206,-0.277966101694579,0.572413793103360,-0.284745762711550,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033942,-0.000000000000000,2 -6655,6713,6715,6773,0.558620689655051,-0.271186440677618,0.565517241379206,-0.277966101694579,0.565517241379205,-0.264406779660657,0.572413793103360,-0.271186440677618,-0.013559322033922,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033922,0.000000000000000,2 -6656,6714,6716,6774,0.558620689655051,-0.257627118643680,0.565517241379205,-0.264406779660657,0.565517241379206,-0.250847457626703,0.572413793103360,-0.257627118643680,-0.013559322033954,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,0.000000000000000,2 -6657,6715,6717,6775,0.558620689655051,-0.244067796609748,0.565517241379206,-0.250847457626703,0.565517241379205,-0.237288135592793,0.572413793103360,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033910,0.000000000000000,2 -6658,6716,6718,6776,0.558620689655051,-0.230508474575816,0.565517241379205,-0.237288135592793,0.565517241379205,-0.223728813558839,0.572413793103360,-0.230508474575816,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033954,-0.000000000000000,2 -6659,6717,6719,6777,0.558620689655051,-0.216949152541877,0.565517241379205,-0.223728813558839,0.565517241379205,-0.210169491524915,0.572413793103360,-0.216949152541877,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033924,0.000000000000000,2 -6660,6718,6720,6778,0.558620689655051,-0.203389830507945,0.565517241379205,-0.210169491524915,0.565517241379205,-0.196610169490975,0.572413793103360,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033940,0.000000000000000,2 -6661,6719,6721,6779,0.558620689655051,-0.189830508474016,0.565517241379205,-0.196610169490975,0.565517241379205,-0.183050847457058,0.572413793103360,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033917,0.000000000000000,2 -6662,6720,6722,6780,0.558620689655051,-0.176271186440084,0.565517241379205,-0.183050847457058,0.565517241379205,-0.169491525423110,0.572413793103360,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033947,0.000000000000000,2 -6663,6721,6723,6781,0.558620689655051,-0.162711864406145,0.565517241379205,-0.169491525423110,0.565517241379205,-0.155932203389179,0.572413793103360,-0.162711864406145,-0.013559322033931,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033931,-0.000000000000000,2 -6664,6722,6724,6782,0.558620689655051,-0.149152542372213,0.565517241379205,-0.155932203389179,0.565517241379205,-0.142372881355246,0.572413793103360,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033933,0.000000000000000,2 -6665,6723,6725,6783,0.558620689655051,-0.135593220338273,0.565517241379205,-0.142372881355246,0.565517241379205,-0.128813559321301,0.572413793103360,-0.135593220338274,-0.013559322033945,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033945,0.000000000000000,2 -6666,6724,6726,6784,0.558620689655051,-0.122033898304341,0.565517241379205,-0.128813559321301,0.565517241379205,-0.115254237287382,0.572413793103360,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033919,0.000000000000000,2 -6667,6725,6727,6785,0.558620689655051,-0.108474576270409,0.565517241379205,-0.115254237287382,0.565517241379205,-0.101694915253436,0.572413793103360,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033946,0.000000000000000,2 -6668,6726,6728,6786,0.558620689655051,-0.094915254236471,0.565517241379205,-0.101694915253436,0.565517241379205,-0.088135593219506,0.572413793103360,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033930,0.000000000000000,2 -6669,6727,6729,6787,0.558620689655051,-0.081355932202535,0.565517241379205,-0.088135593219506,0.565517241379205,-0.074576271185564,0.572413793103360,-0.081355932202535,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033941,0.000000000000000,2 -6670,6728,6730,6788,0.558620689655051,-0.067796610168599,0.565517241379205,-0.074576271185564,0.565517241379205,-0.061016949151634,0.572413793103360,-0.067796610168599,-0.013559322033930,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033930,-0.000000000000000,2 -6671,6729,6731,6789,0.558620689655051,-0.054237288134667,0.565517241379205,-0.061016949151634,0.565517241379205,-0.047457627117699,0.572413793103360,-0.054237288134667,-0.013559322033935,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033935,0.000000000000000,2 -6672,6730,6732,6790,0.558620689655051,-0.040677966100731,0.565517241379205,-0.047457627117699,0.565517241379205,-0.033898305083763,0.572413793103360,-0.040677966100731,-0.013559322033937,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033937,0.000000000000000,2 -6673,6731,6733,6791,0.558620689655051,-0.027118644066798,0.565517241379205,-0.033898305083763,0.565517241379205,-0.020338983049833,0.572413793103360,-0.027118644066798,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033930,0.000000000000000,2 -6674,6732,6734,6792,0.558620689655051,-0.013559322032862,0.565517241379205,-0.020338983049833,0.565517241379205,-0.006779661015891,0.572413793103360,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033941,0.000000000000000,2 -6675,6733,6735,6793,0.558620689655051,0.000000000001056,0.565517241379205,-0.006779661015891,0.565517241379205,0.006779661018004,0.572413793103360,0.000000000001056,-0.013559322033895,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033895,0.000000000000000,2 -6676,6734,6736,6794,0.558620689655051,0.013559322034934,0.565517241379205,0.006779661018004,0.565517241379205,0.020338983051863,0.572413793103360,0.013559322034933,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 -6677,6735,6737,6795,0.558620689655051,0.027118644068793,0.565517241379205,0.020338983051863,0.565517241379205,0.033898305085723,0.572413793103360,0.027118644068793,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6678,6736,6738,6796,0.558620689655051,0.040677966102653,0.565517241379205,0.033898305085723,0.565517241379205,0.047457627119583,0.572413793103360,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6679,6737,6739,6797,0.558620689655051,0.054237288136513,0.565517241379205,0.047457627119583,0.565517241379205,0.061016949153442,0.572413793103360,0.054237288136513,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 -6680,6738,6740,6798,0.558620689655051,0.067796610170372,0.565517241379205,0.061016949153442,0.565517241379205,0.074576271187302,0.572413793103360,0.067796610170372,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6681,6739,6741,6799,0.558620689655051,0.081355932204232,0.565517241379205,0.074576271187302,0.565517241379205,0.088135593221162,0.572413793103360,0.081355932204232,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6682,6740,6742,6800,0.558620689655051,0.094915254238085,0.565517241379205,0.088135593221162,0.565517241379205,0.101694915255008,0.572413793103360,0.094915254238085,-0.013559322033846,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033846,0.000000000000000,2 -6683,6741,6743,6801,0.558620689655051,0.108474576271933,0.565517241379205,0.101694915255008,0.565517241379205,0.115254237288859,0.572413793103360,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033852,0.000000000000000,2 -6684,6742,6744,6802,0.558620689655051,0.122033898305789,0.565517241379205,0.115254237288859,0.565517241379205,0.128813559322719,0.572413793103360,0.122033898305789,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6685,6743,6745,6803,0.558620689655051,0.135593220339649,0.565517241379205,0.128813559322719,0.565517241379205,0.142372881356579,0.572413793103360,0.135593220339649,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6686,6744,6746,6804,0.558620689655051,0.149152542373509,0.565517241379205,0.142372881356579,0.565517241379205,0.155932203390438,0.572413793103360,0.149152542373509,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6687,6745,6747,6805,0.558620689655051,0.162711864407368,0.565517241379205,0.155932203390438,0.565517241379205,0.169491525424298,0.572413793103360,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6688,6746,6748,6806,0.558620689655051,0.176271186441228,0.565517241379205,0.169491525424298,0.565517241379205,0.183050847458158,0.572413793103360,0.176271186441228,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6689,6747,6749,6807,0.558620689655051,0.189830508475088,0.565517241379205,0.183050847458158,0.565517241379205,0.196610169492018,0.572413793103360,0.189830508475088,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 -6690,6748,6750,6808,0.558620689655051,0.203389830508947,0.565517241379205,0.196610169492018,0.565517241379205,0.210169491525877,0.572413793103360,0.203389830508947,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6691,6749,6751,6809,0.558620689655051,0.216949152542807,0.565517241379205,0.210169491525877,0.565517241379205,0.223728813559737,0.572413793103360,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6692,6750,6752,6810,0.558620689655051,0.230508474576667,0.565517241379205,0.223728813559737,0.565517241379205,0.237288135593597,0.572413793103360,0.230508474576667,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 -6693,6751,6753,6811,0.558620689655051,0.244067796610527,0.565517241379205,0.237288135593597,0.565517241379205,0.250847457627456,0.572413793103360,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6694,6752,6754,6812,0.558620689655051,0.257627118644386,0.565517241379205,0.250847457627456,0.565517241379205,0.264406779661316,0.572413793103360,0.257627118644386,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,-0.000000000000000,2 -6695,6753,6755,6813,0.558620689655051,0.271186440678246,0.565517241379205,0.264406779661316,0.565517241379205,0.277966101695176,0.572413793103360,0.271186440678246,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6696,6754,6756,6814,0.558620689655051,0.284745762712106,0.565517241379205,0.277966101695176,0.565517241379205,0.291525423729036,0.572413793103360,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6697,6755,6757,6815,0.558620689655051,0.298305084745975,0.565517241379205,0.291525423729036,0.565517241379205,0.305084745762915,0.572413793103360,0.298305084745975,-0.013559322033879,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033879,0.000000000000000,2 -6698,6756,6758,6816,0.558620689655051,0.311864406779851,0.565517241379205,0.305084745762915,0.565517241379205,0.318644067796787,0.572413793103360,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033872,0.000000000000000,2 -6699,6757,6759,6817,0.558620689655051,0.325423728813729,0.565517241379205,0.318644067796787,0.565517241379205,0.332203389830670,0.572413793103360,0.325423728813729,-0.013559322033883,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033883,-0.000000000000000,2 -6700,6758,6760,6818,0.558620689655051,0.338983050847605,0.565517241379205,0.332203389830670,0.565517241379205,0.345762711864539,0.572413793103360,0.338983050847605,-0.013559322033869,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033869,0.000000000000000,2 -6701,6759,6761,6819,0.558620689655051,0.352542372881469,0.565517241379205,0.345762711864539,0.565517241379205,0.359322033898399,0.572413793103360,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6702,6760,6762,6820,0.558620689655051,0.366101694915329,0.565517241379205,0.359322033898399,0.565517241379205,0.372881355932259,0.572413793103360,0.366101694915329,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6703,6761,6763,6821,0.558620689655051,0.379661016949189,0.565517241379205,0.372881355932259,0.565517241379205,0.386440677966119,0.572413793103360,0.379661016949189,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.013559322033860,0.000000000000000,2 -6704,6762,6822,7246,0.558620689655051,0.393220338983059,0.565517241379205,0.386440677966119,0.572413793103360,0.393220338983059,0.565517241379205,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448309,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448309,2 -5156,6705,6765,6823,0.579310344827519,-0.400000000000000,0.572413793103360,-0.393220338983034,0.579310344827519,-0.386440677966068,0.586206896551678,-0.393220338983034,-0.000000000000000,-0.013793103448318,-0.013559322033932,-0.000000000000000,0.000000000000000,0.013793103448318,0.013559322033932,0.000000000000000,2 -6706,6764,6766,6824,0.572413793103360,-0.379661016949095,0.579310344827519,-0.386440677966068,0.579310344827519,-0.372881355932122,0.586206896551678,-0.379661016949095,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033946,0.000000000000000,2 -6707,6765,6767,6825,0.572413793103360,-0.366101694915163,0.579310344827519,-0.372881355932122,0.579310344827519,-0.359322033898204,0.586206896551678,-0.366101694915163,-0.013559322033918,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033918,0.000000000000000,2 -6708,6766,6768,6826,0.572413793103360,-0.352542372881227,0.579310344827519,-0.359322033898204,0.579310344827519,-0.345762711864250,0.586206896551678,-0.352542372881227,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033954,-0.000000000000000,2 -6709,6767,6769,6827,0.572413793103360,-0.338983050847293,0.579310344827519,-0.345762711864250,0.579310344827519,-0.332203389830336,0.586206896551678,-0.338983050847293,-0.013559322033914,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033914,-0.000000000000000,2 -6710,6768,6770,6828,0.572413793103360,-0.325423728813361,0.579310344827519,-0.332203389830336,0.579310344827519,-0.318644067796385,0.586206896551678,-0.325423728813361,-0.013559322033951,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033950,0.000000000000000,2 -6711,6769,6771,6829,0.572413793103360,-0.311864406779421,0.579310344827519,-0.318644067796385,0.579310344827519,-0.305084745762457,0.586206896551678,-0.311864406779421,-0.013559322033928,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033928,0.000000000000000,2 -6712,6770,6772,6830,0.572413793103360,-0.298305084745489,0.579310344827519,-0.305084745762457,0.579310344827519,-0.291525423728521,0.586206896551678,-0.298305084745489,-0.013559322033936,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033936,0.000000000000000,2 -6713,6771,6773,6831,0.572413793103360,-0.284745762711550,0.579310344827519,-0.291525423728521,0.579310344827519,-0.277966101694579,0.586206896551678,-0.284745762711550,-0.013559322033942,0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033942,0.000000000000000,2 -6714,6772,6774,6832,0.572413793103360,-0.271186440677618,0.579310344827519,-0.277966101694579,0.579310344827519,-0.264406779660657,0.586206896551678,-0.271186440677618,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033922,0.000000000000000,2 -6715,6773,6775,6833,0.572413793103360,-0.257627118643680,0.579310344827519,-0.264406779660657,0.579310344827519,-0.250847457626703,0.586206896551678,-0.257627118643680,-0.013559322033954,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033954,-0.000000000000000,2 -6716,6774,6776,6834,0.572413793103360,-0.244067796609748,0.579310344827519,-0.250847457626703,0.579310344827519,-0.237288135592793,0.586206896551678,-0.244067796609748,-0.013559322033910,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033910,0.000000000000000,2 -6717,6775,6777,6835,0.572413793103360,-0.230508474575816,0.579310344827519,-0.237288135592793,0.579310344827519,-0.223728813558839,0.586206896551678,-0.230508474575816,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033954,-0.000000000000000,2 -6718,6776,6778,6836,0.572413793103360,-0.216949152541877,0.579310344827519,-0.223728813558839,0.579310344827519,-0.210169491524915,0.586206896551678,-0.216949152541877,-0.013559322033924,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033924,0.000000000000000,2 -6719,6777,6779,6837,0.572413793103360,-0.203389830507945,0.579310344827519,-0.210169491524915,0.579310344827519,-0.196610169490975,0.586206896551678,-0.203389830507945,-0.013559322033940,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033940,0.000000000000000,2 -6720,6778,6780,6838,0.572413793103360,-0.189830508474016,0.579310344827519,-0.196610169490975,0.579310344827519,-0.183050847457058,0.586206896551678,-0.189830508474016,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033917,0.000000000000000,2 -6721,6779,6781,6839,0.572413793103360,-0.176271186440084,0.579310344827519,-0.183050847457058,0.579310344827519,-0.169491525423110,0.586206896551678,-0.176271186440084,-0.013559322033947,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033947,0.000000000000000,2 -6722,6780,6782,6840,0.572413793103360,-0.162711864406145,0.579310344827519,-0.169491525423110,0.579310344827519,-0.155932203389179,0.586206896551678,-0.162711864406145,-0.013559322033931,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033931,0.000000000000000,2 -6723,6781,6783,6841,0.572413793103360,-0.149152542372213,0.579310344827519,-0.155932203389179,0.579310344827519,-0.142372881355246,0.586206896551678,-0.149152542372213,-0.013559322033933,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033933,0.000000000000000,2 -6724,6782,6784,6842,0.572413793103360,-0.135593220338274,0.579310344827519,-0.142372881355246,0.579310344827519,-0.128813559321301,0.586206896551678,-0.135593220338274,-0.013559322033945,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033945,0.000000000000000,2 -6725,6783,6785,6843,0.572413793103360,-0.122033898304341,0.579310344827519,-0.128813559321301,0.579310344827519,-0.115254237287382,0.586206896551678,-0.122033898304341,-0.013559322033919,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033919,0.000000000000000,2 -6726,6784,6786,6844,0.572413793103360,-0.108474576270409,0.579310344827519,-0.115254237287382,0.579310344827519,-0.101694915253436,0.586206896551678,-0.108474576270409,-0.013559322033946,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033946,0.000000000000000,2 -6727,6785,6787,6845,0.572413793103360,-0.094915254236471,0.579310344827519,-0.101694915253436,0.579310344827519,-0.088135593219506,0.586206896551678,-0.094915254236471,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033930,-0.000000000000000,2 -6728,6786,6788,6846,0.572413793103360,-0.081355932202535,0.579310344827519,-0.088135593219506,0.579310344827519,-0.074576271185564,0.586206896551678,-0.081355932202535,-0.013559322033941,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033941,0.000000000000000,2 -6729,6787,6789,6847,0.572413793103360,-0.067796610168599,0.579310344827519,-0.074576271185564,0.579310344827519,-0.061016949151634,0.586206896551678,-0.067796610168599,-0.013559322033930,0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033930,0.000000000000000,2 -6730,6788,6790,6848,0.572413793103360,-0.054237288134667,0.579310344827519,-0.061016949151634,0.579310344827519,-0.047457627117699,0.586206896551678,-0.054237288134667,-0.013559322033935,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033935,-0.000000000000000,2 -6731,6789,6791,6849,0.572413793103360,-0.040677966100731,0.579310344827519,-0.047457627117699,0.579310344827519,-0.033898305083763,0.586206896551678,-0.040677966100731,-0.013559322033937,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033937,0.000000000000000,2 -6732,6790,6792,6850,0.572413793103360,-0.027118644066798,0.579310344827519,-0.033898305083763,0.579310344827519,-0.020338983049832,0.586206896551678,-0.027118644066798,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033930,0.000000000000000,2 -6733,6791,6793,6851,0.572413793103360,-0.013559322032862,0.579310344827519,-0.020338983049832,0.579310344827519,-0.006779661015891,0.586206896551678,-0.013559322032862,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033941,-0.000000000000000,2 -6734,6792,6794,6852,0.572413793103360,0.000000000001056,0.579310344827519,-0.006779661015891,0.579310344827519,0.006779661018004,0.586206896551678,0.000000000001056,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033895,0.000000000000000,2 -6735,6793,6795,6853,0.572413793103360,0.013559322034933,0.579310344827519,0.006779661018004,0.579310344827519,0.020338983051863,0.586206896551678,0.013559322034933,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6736,6794,6796,6854,0.572413793103360,0.027118644068793,0.579310344827519,0.020338983051863,0.579310344827519,0.033898305085723,0.586206896551678,0.027118644068793,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6737,6795,6797,6855,0.572413793103360,0.040677966102653,0.579310344827519,0.033898305085723,0.579310344827519,0.047457627119583,0.586206896551678,0.040677966102653,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6738,6796,6798,6856,0.572413793103360,0.054237288136513,0.579310344827519,0.047457627119583,0.579310344827519,0.061016949153442,0.586206896551678,0.054237288136513,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6739,6797,6799,6857,0.572413793103360,0.067796610170372,0.579310344827519,0.061016949153442,0.579310344827519,0.074576271187302,0.586206896551678,0.067796610170372,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6740,6798,6800,6858,0.572413793103360,0.081355932204232,0.579310344827519,0.074576271187302,0.579310344827519,0.088135593221162,0.586206896551678,0.081355932204232,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6741,6799,6801,6859,0.572413793103360,0.094915254238085,0.579310344827519,0.088135593221162,0.579310344827519,0.101694915255008,0.586206896551678,0.094915254238085,-0.013559322033846,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033846,0.000000000000000,2 -6742,6800,6802,6860,0.572413793103360,0.108474576271933,0.579310344827519,0.101694915255008,0.579310344827519,0.115254237288859,0.586206896551678,0.108474576271933,-0.013559322033852,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033852,0.000000000000000,2 -6743,6801,6803,6861,0.572413793103360,0.122033898305789,0.579310344827519,0.115254237288859,0.579310344827519,0.128813559322719,0.586206896551678,0.122033898305789,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6744,6802,6804,6862,0.572413793103360,0.135593220339649,0.579310344827519,0.128813559322719,0.579310344827519,0.142372881356579,0.586206896551678,0.135593220339649,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6745,6803,6805,6863,0.572413793103360,0.149152542373509,0.579310344827519,0.142372881356579,0.579310344827519,0.155932203390438,0.586206896551678,0.149152542373509,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6746,6804,6806,6864,0.572413793103360,0.162711864407368,0.579310344827519,0.155932203390438,0.579310344827519,0.169491525424298,0.586206896551678,0.162711864407368,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6747,6805,6807,6865,0.572413793103360,0.176271186441228,0.579310344827519,0.169491525424298,0.579310344827519,0.183050847458158,0.586206896551678,0.176271186441228,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6748,6806,6808,6866,0.572413793103360,0.189830508475088,0.579310344827519,0.183050847458158,0.579310344827519,0.196610169492018,0.586206896551678,0.189830508475088,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6749,6807,6809,6867,0.572413793103360,0.203389830508947,0.579310344827519,0.196610169492018,0.579310344827519,0.210169491525877,0.586206896551678,0.203389830508947,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6750,6808,6810,6868,0.572413793103360,0.216949152542807,0.579310344827519,0.210169491525877,0.579310344827519,0.223728813559737,0.586206896551678,0.216949152542807,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6751,6809,6811,6869,0.572413793103360,0.230508474576667,0.579310344827519,0.223728813559737,0.579310344827519,0.237288135593597,0.586206896551678,0.230508474576667,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6752,6810,6812,6870,0.572413793103360,0.244067796610527,0.579310344827519,0.237288135593597,0.579310344827519,0.250847457627456,0.586206896551678,0.244067796610527,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6753,6811,6813,6871,0.572413793103360,0.257627118644386,0.579310344827519,0.250847457627456,0.579310344827519,0.264406779661316,0.586206896551678,0.257627118644386,-0.013559322033860,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6754,6812,6814,6872,0.572413793103360,0.271186440678246,0.579310344827519,0.264406779661316,0.579310344827519,0.277966101695176,0.586206896551678,0.271186440678246,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6755,6813,6815,6873,0.572413793103360,0.284745762712106,0.579310344827519,0.277966101695176,0.579310344827519,0.291525423729036,0.586206896551678,0.284745762712106,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6756,6814,6816,6874,0.572413793103360,0.298305084745975,0.579310344827519,0.291525423729036,0.579310344827519,0.305084745762915,0.586206896551678,0.298305084745975,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033879,0.000000000000000,2 -6757,6815,6817,6875,0.572413793103360,0.311864406779851,0.579310344827519,0.305084745762915,0.579310344827519,0.318644067796787,0.586206896551678,0.311864406779851,-0.013559322033872,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033872,-0.000000000000000,2 -6758,6816,6818,6876,0.572413793103360,0.325423728813729,0.579310344827519,0.318644067796787,0.579310344827519,0.332203389830670,0.586206896551678,0.325423728813729,-0.013559322033883,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033883,0.000000000000000,2 -6759,6817,6819,6877,0.572413793103360,0.338983050847605,0.579310344827519,0.332203389830670,0.579310344827519,0.345762711864539,0.586206896551678,0.338983050847605,-0.013559322033869,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033869,0.000000000000000,2 -6760,6818,6820,6878,0.572413793103360,0.352542372881469,0.579310344827519,0.345762711864539,0.579310344827519,0.359322033898399,0.586206896551678,0.352542372881469,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,-0.000000000000000,2 -6761,6819,6821,6879,0.572413793103360,0.366101694915329,0.579310344827519,0.359322033898399,0.579310344827519,0.372881355932259,0.586206896551678,0.366101694915329,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6762,6820,6822,6880,0.572413793103360,0.379661016949189,0.579310344827519,0.372881355932259,0.579310344827519,0.386440677966119,0.586206896551678,0.379661016949189,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.013559322033860,0.000000000000000,2 -6763,6821,6881,7260,0.572413793103360,0.393220338983059,0.579310344827519,0.386440677966119,0.586206896551678,0.393220338983059,0.579310344827519,0.400000000000000,-0.013559322033881,0.000000000000000,-0.000000000000000,-0.013793103448318,0.013559322033881,-0.000000000000000,0.000000000000000,0.013793103448318,2 -998,5170,6764,6824,0.600000000000000,-0.393220338983034,0.593103448275839,-0.400000000000000,0.586206896551678,-0.393220338983034,0.593103448275839,-0.386440677966068,0.013559322033932,0.000000000000000,0.000000000000000,-0.013793103448322,-0.013559322033932,-0.000000000000000,-0.000000000000000,0.013793103448322,2 -999,6765,6823,6825,0.600000000000000,-0.379661016949095,0.586206896551678,-0.379661016949095,0.593103448275839,-0.386440677966068,0.593103448275839,-0.372881355932122,0.013559322033946,-0.000000000000000,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1000,6766,6824,6826,0.600000000000000,-0.366101694915163,0.586206896551678,-0.366101694915163,0.593103448275839,-0.372881355932122,0.593103448275839,-0.359322033898204,0.013559322033918,-0.000000000000000,-0.013559322033918,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1001,6767,6825,6827,0.600000000000000,-0.352542372881227,0.586206896551678,-0.352542372881227,0.593103448275839,-0.359322033898204,0.593103448275839,-0.345762711864250,0.013559322033954,-0.000000000000000,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1002,6768,6826,6828,0.600000000000000,-0.338983050847293,0.586206896551678,-0.338983050847293,0.593103448275839,-0.345762711864250,0.593103448275839,-0.332203389830336,0.013559322033914,-0.000000000000000,-0.013559322033914,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1003,6769,6827,6829,0.600000000000000,-0.325423728813361,0.586206896551678,-0.325423728813361,0.593103448275839,-0.332203389830336,0.593103448275839,-0.318644067796385,0.013559322033950,-0.000000000000000,-0.013559322033950,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1004,6770,6828,6830,0.600000000000000,-0.311864406779421,0.586206896551678,-0.311864406779421,0.593103448275839,-0.318644067796385,0.593103448275839,-0.305084745762457,0.013559322033928,-0.000000000000000,-0.013559322033928,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1005,6771,6829,6831,0.600000000000000,-0.298305084745489,0.586206896551678,-0.298305084745489,0.593103448275839,-0.305084745762457,0.593103448275839,-0.291525423728521,0.013559322033936,-0.000000000000000,-0.013559322033936,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -1006,6772,6830,6832,0.600000000000000,-0.284745762711550,0.586206896551678,-0.284745762711550,0.593103448275839,-0.291525423728521,0.593103448275839,-0.277966101694579,0.013559322033942,-0.000000000000000,-0.013559322033942,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1007,6773,6831,6833,0.600000000000000,-0.271186440677618,0.586206896551678,-0.271186440677618,0.593103448275839,-0.277966101694579,0.593103448275839,-0.264406779660657,0.013559322033922,-0.000000000000000,-0.013559322033922,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1008,6774,6832,6834,0.600000000000000,-0.257627118643680,0.586206896551678,-0.257627118643680,0.593103448275839,-0.264406779660657,0.593103448275839,-0.250847457626703,0.013559322033954,-0.000000000000000,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1009,6775,6833,6835,0.600000000000000,-0.244067796609748,0.586206896551678,-0.244067796609748,0.593103448275839,-0.250847457626703,0.593103448275839,-0.237288135592793,0.013559322033910,-0.000000000000000,-0.013559322033910,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1010,6776,6834,6836,0.600000000000000,-0.230508474575816,0.586206896551678,-0.230508474575816,0.593103448275839,-0.237288135592793,0.593103448275839,-0.223728813558839,0.013559322033954,-0.000000000000000,-0.013559322033954,0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -1011,6777,6835,6837,0.600000000000000,-0.216949152541877,0.586206896551678,-0.216949152541877,0.593103448275839,-0.223728813558839,0.593103448275839,-0.210169491524915,0.013559322033924,-0.000000000000000,-0.013559322033924,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1012,6778,6836,6838,0.600000000000000,-0.203389830507945,0.586206896551678,-0.203389830507945,0.593103448275839,-0.210169491524915,0.593103448275839,-0.196610169490975,0.013559322033940,-0.000000000000000,-0.013559322033940,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -1013,6779,6837,6839,0.600000000000000,-0.189830508474016,0.586206896551678,-0.189830508474016,0.593103448275839,-0.196610169490975,0.593103448275839,-0.183050847457058,0.013559322033917,-0.000000000000000,-0.013559322033917,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1014,6780,6838,6840,0.600000000000000,-0.176271186440084,0.586206896551678,-0.176271186440084,0.593103448275839,-0.183050847457058,0.593103448275839,-0.169491525423110,0.013559322033947,-0.000000000000000,-0.013559322033947,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1015,6781,6839,6841,0.600000000000000,-0.162711864406145,0.586206896551678,-0.162711864406145,0.593103448275839,-0.169491525423110,0.593103448275839,-0.155932203389179,0.013559322033931,-0.000000000000000,-0.013559322033931,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1016,6782,6840,6842,0.600000000000000,-0.149152542372213,0.586206896551678,-0.149152542372213,0.593103448275839,-0.155932203389179,0.593103448275839,-0.142372881355246,0.013559322033933,-0.000000000000000,-0.013559322033933,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1017,6783,6841,6843,0.600000000000000,-0.135593220338273,0.586206896551678,-0.135593220338274,0.593103448275839,-0.142372881355246,0.593103448275839,-0.128813559321301,0.013559322033945,-0.000000000000000,-0.013559322033945,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1018,6784,6842,6844,0.600000000000000,-0.122033898304341,0.586206896551678,-0.122033898304341,0.593103448275839,-0.128813559321301,0.593103448275839,-0.115254237287382,0.013559322033919,-0.000000000000000,-0.013559322033919,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1019,6785,6843,6845,0.600000000000000,-0.108474576270409,0.586206896551678,-0.108474576270409,0.593103448275839,-0.115254237287382,0.593103448275839,-0.101694915253436,0.013559322033946,-0.000000000000000,-0.013559322033946,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1020,6786,6844,6846,0.600000000000000,-0.094915254236471,0.586206896551678,-0.094915254236471,0.593103448275839,-0.101694915253436,0.593103448275839,-0.088135593219506,0.013559322033930,-0.000000000000000,-0.013559322033930,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1021,6787,6845,6847,0.600000000000000,-0.081355932202535,0.586206896551678,-0.081355932202535,0.593103448275839,-0.088135593219506,0.593103448275839,-0.074576271185564,0.013559322033941,-0.000000000000000,-0.013559322033941,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1022,6788,6846,6848,0.600000000000000,-0.067796610168599,0.586206896551678,-0.067796610168599,0.593103448275839,-0.074576271185564,0.593103448275839,-0.061016949151634,0.013559322033930,-0.000000000000000,-0.013559322033930,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -1023,6789,6847,6849,0.600000000000000,-0.054237288134667,0.586206896551678,-0.054237288134667,0.593103448275839,-0.061016949151634,0.593103448275839,-0.047457627117699,0.013559322033935,-0.000000000000000,-0.013559322033935,0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1024,6790,6848,6850,0.600000000000000,-0.040677966100731,0.586206896551678,-0.040677966100731,0.593103448275839,-0.047457627117699,0.593103448275839,-0.033898305083763,0.013559322033937,-0.000000000000000,-0.013559322033937,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -1025,6791,6849,6851,0.600000000000000,-0.027118644066798,0.586206896551678,-0.027118644066798,0.593103448275839,-0.033898305083763,0.593103448275839,-0.020338983049832,0.013559322033930,-0.000000000000000,-0.013559322033930,-0.000000000000000,-0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -1026,6792,6850,6852,0.600000000000000,-0.013559322032862,0.586206896551678,-0.013559322032862,0.593103448275839,-0.020338983049832,0.593103448275839,-0.006779661015891,0.013559322033941,-0.000000000000000,-0.013559322033941,0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1027,6793,6851,6853,0.600000000000000,0.000000000001056,0.586206896551678,0.000000000001056,0.593103448275839,-0.006779661015891,0.593103448275839,0.006779661018004,0.013559322033895,-0.000000000000000,-0.013559322033895,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -1028,6794,6852,6854,0.600000000000000,0.013559322034933,0.586206896551678,0.013559322034933,0.593103448275839,0.006779661018004,0.593103448275839,0.020338983051863,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1029,6795,6853,6855,0.600000000000000,0.027118644068793,0.586206896551678,0.027118644068793,0.593103448275839,0.020338983051863,0.593103448275839,0.033898305085723,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1030,6796,6854,6856,0.600000000000000,0.040677966102653,0.586206896551678,0.040677966102653,0.593103448275839,0.033898305085723,0.593103448275839,0.047457627119583,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1031,6797,6855,6857,0.600000000000000,0.054237288136513,0.586206896551678,0.054237288136513,0.593103448275839,0.047457627119583,0.593103448275839,0.061016949153442,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1032,6798,6856,6858,0.600000000000000,0.067796610170372,0.586206896551678,0.067796610170372,0.593103448275839,0.061016949153442,0.593103448275839,0.074576271187302,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -1033,6799,6857,6859,0.600000000000000,0.081355932204232,0.586206896551678,0.081355932204232,0.593103448275839,0.074576271187302,0.593103448275839,0.088135593221162,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -1034,6800,6858,6860,0.600000000000000,0.094915254238085,0.586206896551678,0.094915254238085,0.593103448275839,0.088135593221162,0.593103448275839,0.101694915255008,0.013559322033846,-0.000000000000000,-0.013559322033846,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1035,6801,6859,6861,0.600000000000000,0.108474576271933,0.586206896551678,0.108474576271933,0.593103448275839,0.101694915255008,0.593103448275839,0.115254237288859,0.013559322033852,-0.000000000000000,-0.013559322033852,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1036,6802,6860,6862,0.600000000000000,0.122033898305789,0.586206896551678,0.122033898305789,0.593103448275839,0.115254237288859,0.593103448275839,0.128813559322719,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -1037,6803,6861,6863,0.600000000000000,0.135593220339649,0.586206896551678,0.135593220339649,0.593103448275839,0.128813559322719,0.593103448275839,0.142372881356579,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1038,6804,6862,6864,0.600000000000000,0.149152542373509,0.586206896551678,0.149152542373509,0.593103448275839,0.142372881356579,0.593103448275839,0.155932203390438,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1039,6805,6863,6865,0.600000000000000,0.162711864407368,0.586206896551678,0.162711864407368,0.593103448275839,0.155932203390438,0.593103448275839,0.169491525424298,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1040,6806,6864,6866,0.600000000000000,0.176271186441228,0.586206896551678,0.176271186441228,0.593103448275839,0.169491525424298,0.593103448275839,0.183050847458158,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1041,6807,6865,6867,0.600000000000000,0.189830508475088,0.586206896551678,0.189830508475088,0.593103448275839,0.183050847458158,0.593103448275839,0.196610169492018,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1042,6808,6866,6868,0.600000000000000,0.203389830508947,0.586206896551678,0.203389830508947,0.593103448275839,0.196610169492018,0.593103448275839,0.210169491525877,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1043,6809,6867,6869,0.600000000000000,0.216949152542807,0.586206896551678,0.216949152542807,0.593103448275839,0.210169491525877,0.593103448275839,0.223728813559737,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1044,6810,6868,6870,0.600000000000000,0.230508474576667,0.586206896551678,0.230508474576667,0.593103448275839,0.223728813559737,0.593103448275839,0.237288135593597,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -1045,6811,6869,6871,0.600000000000000,0.244067796610526,0.586206896551678,0.244067796610527,0.593103448275839,0.237288135593597,0.593103448275839,0.250847457627456,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1046,6812,6870,6872,0.600000000000000,0.257627118644386,0.586206896551678,0.257627118644386,0.593103448275839,0.250847457627456,0.593103448275839,0.264406779661316,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1047,6813,6871,6873,0.600000000000000,0.271186440678246,0.586206896551678,0.271186440678246,0.593103448275839,0.264406779661316,0.593103448275839,0.277966101695176,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1048,6814,6872,6874,0.600000000000000,0.284745762712106,0.586206896551678,0.284745762712106,0.593103448275839,0.277966101695176,0.593103448275839,0.291525423729036,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,0.000000000000000,0.013793103448322,2 -1049,6815,6873,6875,0.600000000000000,0.298305084745975,0.586206896551678,0.298305084745975,0.593103448275839,0.291525423729036,0.593103448275839,0.305084745762915,0.013559322033879,-0.000000000000000,-0.013559322033879,-0.000000000000000,-0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1050,6816,6874,6876,0.600000000000000,0.311864406779851,0.586206896551678,0.311864406779851,0.593103448275839,0.305084745762915,0.593103448275839,0.318644067796787,0.013559322033872,-0.000000000000000,-0.013559322033872,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1051,6817,6875,6877,0.600000000000000,0.325423728813729,0.586206896551678,0.325423728813729,0.593103448275839,0.318644067796787,0.593103448275839,0.332203389830670,0.013559322033883,-0.000000000000000,-0.013559322033883,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1052,6818,6876,6878,0.600000000000000,0.338983050847605,0.586206896551678,0.338983050847605,0.593103448275839,0.332203389830670,0.593103448275839,0.345762711864539,0.013559322033869,-0.000000000000000,-0.013559322033869,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1053,6819,6877,6879,0.600000000000000,0.352542372881469,0.586206896551678,0.352542372881469,0.593103448275839,0.345762711864539,0.593103448275839,0.359322033898399,0.013559322033860,-0.000000000000000,-0.013559322033860,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1054,6820,6878,6880,0.600000000000000,0.366101694915329,0.586206896551678,0.366101694915329,0.593103448275839,0.359322033898399,0.593103448275839,0.372881355932259,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1055,6821,6879,6881,0.600000000000000,0.379661016949189,0.586206896551678,0.379661016949189,0.593103448275839,0.372881355932259,0.593103448275839,0.386440677966119,0.013559322033860,-0.000000000000000,-0.013559322033860,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1056,6822,6880,7274,0.600000000000000,0.393220338983059,0.586206896551678,0.393220338983059,0.593103448275839,0.386440677966119,0.593103448275839,0.400000000000000,0.013559322033881,-0.000000000000000,-0.013559322033881,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -5229,6883,6896,7680,0.206896551724127,0.400000000000000,0.206896551724127,0.414285714285756,0.213793103448254,0.407142857142878,0.200000000000000,0.407142857142878,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285756,0.000000000000000,-0.014285714285756,-0.000000000000000,2 -6882,6884,6897,7681,0.206896551724127,0.414285714285756,0.206896551724127,0.428571428571509,0.213793103448254,0.421428571428632,0.200000000000000,0.421428571428633,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285753,-0.000000000000000,-0.014285714285753,0.000000000000000,2 -6883,6885,6898,7682,0.206896551724127,0.428571428571509,0.206896551724127,0.442857142857270,0.213793103448254,0.435714285714389,0.200000000000000,0.435714285714389,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,-0.014285714285761,0.000000000000000,2 -6884,6886,6899,7683,0.206896551724127,0.442857142857270,0.206896551724127,0.457142857143034,0.213793103448254,0.450000000000152,0.200000000000000,0.450000000000152,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285764,0.000000000000000,-0.014285714285764,0.000000000000000,2 -6885,6887,6900,7684,0.206896551724127,0.457142857143034,0.206896551724127,0.471428571428794,0.213793103448254,0.464285714285914,0.200000000000000,0.464285714285914,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,-0.014285714285761,0.000000000000000,2 -6886,6888,6901,7685,0.206896551724127,0.471428571428794,0.206896551724127,0.485714285714549,0.213793103448254,0.478571428571672,0.200000000000000,0.478571428571672,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285755,0.000000000000000,-0.014285714285754,0.000000000000000,2 -6887,6889,6902,7686,0.206896551724127,0.485714285714549,0.206896551724127,0.500000000000293,0.213793103448254,0.492857142857421,0.200000000000000,0.492857142857421,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285744,0.000000000000000,-0.014285714285744,0.000000000000000,2 -6888,6890,6903,7687,0.206896551724127,0.500000000000293,0.206896551724127,0.514285714285912,0.213793103448254,0.507142857143102,0.200000000000000,0.507142857143103,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285620,0.000000000000000,-0.014285714285620,0.000000000000000,2 -6889,6891,6904,7688,0.206896551724127,0.514285714285912,0.206896551724127,0.528571428571506,0.213793103448254,0.521428571428709,0.200000000000000,0.521428571428709,-0.000000000000000,-0.013793103448254,0.000000000000001,0.013793103448254,0.014285714285593,0.000000000000000,-0.014285714285593,0.000000000000000,2 -6890,6892,6905,7689,0.206896551724127,0.528571428571506,0.206896551724127,0.542857142857183,0.213793103448254,0.535714285714344,0.200000000000000,0.535714285714345,-0.000000000000001,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,-0.014285714285677,0.000000000000000,2 -6891,6893,6906,7690,0.206896551724127,0.542857142857183,0.206896551724127,0.557142857142860,0.213793103448254,0.550000000000021,0.200000000000000,0.550000000000022,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,-0.000000000000000,-0.014285714285677,0.000000000000000,2 -6892,6894,6907,7691,0.206896551724127,0.557142857142860,0.206896551724127,0.571428571428537,0.213793103448254,0.564285714285699,0.200000000000000,0.564285714285699,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,-0.014285714285677,0.000000000000000,2 -6893,6895,6908,7692,0.206896551724127,0.571428571428537,0.206896551724127,0.585714285714255,0.213793103448254,0.578571428571396,0.200000000000000,0.578571428571396,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285717,0.000000000000000,-0.014285714285717,0.000000000000000,2 -1314,6894,6909,7693,0.206896551724127,0.600000000000000,0.206896551724127,0.585714285714255,0.213793103448254,0.592857142857127,0.200000000000000,0.592857142857127,0.000000000000000,0.013793103448254,-0.000000000000000,-0.013793103448254,0.014285714285745,-0.000000000000000,-0.014285714285745,0.000000000000000,2 -5288,6882,6897,6910,0.220689655172375,0.400000000000000,0.213793103448254,0.407142857142878,0.220689655172375,0.414285714285756,0.227586206896496,0.407142857142878,-0.000000000000000,-0.013793103448243,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448243,0.014285714285756,0.000000000000000,2 -6883,6896,6898,6911,0.213793103448254,0.421428571428632,0.220689655172375,0.414285714285756,0.220689655172375,0.428571428571509,0.227586206896496,0.421428571428632,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285753,0.000000000000000,2 -6884,6897,6899,6912,0.213793103448254,0.435714285714389,0.220689655172375,0.428571428571509,0.220689655172375,0.442857142857270,0.227586206896496,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285761,0.000000000000000,2 -6885,6898,6900,6913,0.213793103448254,0.450000000000152,0.220689655172375,0.442857142857270,0.220689655172375,0.457142857143034,0.227586206896496,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.014285714285764,0.000000000000000,2 -6886,6899,6901,6914,0.213793103448254,0.464285714285914,0.220689655172375,0.457142857143034,0.220689655172375,0.471428571428794,0.227586206896496,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285761,0.000000000000000,2 -6887,6900,6902,6915,0.213793103448254,0.478571428571672,0.220689655172375,0.471428571428794,0.220689655172375,0.485714285714549,0.227586206896496,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285755,0.000000000000000,2 -6888,6901,6903,6916,0.213793103448254,0.492857142857421,0.220689655172375,0.485714285714549,0.220689655172375,0.500000000000292,0.227586206896496,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285744,-0.000000000000000,2 -6889,6902,6904,6917,0.213793103448254,0.507142857143102,0.220689655172375,0.500000000000292,0.220689655172375,0.514285714285912,0.227586206896496,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285620,0.000000000000000,2 -6890,6903,6905,6918,0.213793103448254,0.521428571428709,0.220689655172375,0.514285714285912,0.220689655172375,0.528571428571506,0.227586206896496,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.014285714285594,0.000000000000000,2 -6891,6904,6906,6919,0.213793103448254,0.535714285714344,0.220689655172375,0.528571428571506,0.220689655172375,0.542857142857183,0.227586206896496,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448243,-0.000000000000000,0.013793103448243,0.014285714285677,0.000000000000000,2 -6892,6905,6907,6920,0.213793103448254,0.550000000000021,0.220689655172375,0.542857142857183,0.220689655172375,0.557142857142860,0.227586206896496,0.550000000000021,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285677,0.000000000000000,2 -6893,6906,6908,6921,0.213793103448254,0.564285714285699,0.220689655172375,0.557142857142860,0.220689655172375,0.571428571428537,0.227586206896496,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285677,-0.000000000000000,2 -6894,6907,6909,6922,0.213793103448254,0.578571428571396,0.220689655172375,0.571428571428537,0.220689655172375,0.585714285714255,0.227586206896496,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448243,0.000000000000000,0.013793103448243,0.014285714285717,0.000000000000000,2 -1320,6895,6908,6923,0.220689655172375,0.600000000000000,0.213793103448254,0.592857142857127,0.220689655172375,0.585714285714255,0.227586206896496,0.592857142857127,0.000000000000000,0.013793103448243,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448243,0.014285714285745,-0.000000000000000,2 -5347,6896,6911,6924,0.234482758620623,0.400000000000000,0.227586206896496,0.407142857142878,0.234482758620623,0.414285714285756,0.241379310344750,0.407142857142878,-0.000000000000000,-0.013793103448254,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448254,0.014285714285756,0.000000000000000,2 -6897,6910,6912,6925,0.227586206896496,0.421428571428632,0.234482758620623,0.414285714285756,0.234482758620623,0.428571428571509,0.241379310344750,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285753,0.000000000000000,2 -6898,6911,6913,6926,0.227586206896496,0.435714285714389,0.234482758620623,0.428571428571509,0.234482758620623,0.442857142857270,0.241379310344750,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285761,-0.000000000000000,2 -6899,6912,6914,6927,0.227586206896496,0.450000000000152,0.234482758620623,0.442857142857270,0.234482758620623,0.457142857143034,0.241379310344750,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285764,0.000000000000000,2 -6900,6913,6915,6928,0.227586206896496,0.464285714285914,0.234482758620623,0.457142857143034,0.234482758620623,0.471428571428794,0.241379310344750,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 -6901,6914,6916,6929,0.227586206896496,0.478571428571671,0.234482758620623,0.471428571428794,0.234482758620623,0.485714285714549,0.241379310344750,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285755,0.000000000000000,2 -6902,6915,6917,6930,0.227586206896496,0.492857142857421,0.234482758620623,0.485714285714549,0.234482758620623,0.500000000000292,0.241379310344750,0.492857142857421,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285744,0.000000000000000,2 -6903,6916,6918,6931,0.227586206896496,0.507142857143102,0.234482758620623,0.500000000000292,0.234482758620623,0.514285714285912,0.241379310344750,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285620,0.000000000000000,2 -6904,6917,6919,6932,0.227586206896496,0.521428571428709,0.234482758620623,0.514285714285912,0.234482758620623,0.528571428571506,0.241379310344750,0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285593,0.000000000000000,2 -6905,6918,6920,6933,0.227586206896496,0.535714285714344,0.234482758620623,0.528571428571506,0.234482758620623,0.542857142857183,0.241379310344750,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 -6906,6919,6921,6934,0.227586206896496,0.550000000000021,0.234482758620623,0.542857142857183,0.234482758620623,0.557142857142860,0.241379310344750,0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 -6907,6920,6922,6935,0.227586206896496,0.564285714285699,0.234482758620623,0.557142857142860,0.234482758620623,0.571428571428537,0.241379310344750,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 -6908,6921,6923,6936,0.227586206896496,0.578571428571396,0.234482758620623,0.571428571428537,0.234482758620623,0.585714285714254,0.241379310344750,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285717,0.000000000000000,2 -1326,6909,6922,6937,0.234482758620623,0.600000000000000,0.227586206896496,0.592857142857127,0.234482758620623,0.585714285714254,0.241379310344750,0.592857142857127,0.000000000000000,0.013793103448254,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448254,0.014285714285746,-0.000000000000000,2 -5406,6910,6925,6938,0.248275862068872,0.400000000000000,0.241379310344750,0.407142857142878,0.248275862068872,0.414285714285756,0.255172413792995,0.407142857142878,-0.000000000000000,-0.013793103448245,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448245,0.014285714285756,0.000000000000000,2 -6911,6924,6926,6939,0.241379310344750,0.421428571428632,0.248275862068872,0.414285714285756,0.248275862068872,0.428571428571509,0.255172413792995,0.421428571428632,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285753,0.000000000000000,2 -6912,6925,6927,6940,0.241379310344750,0.435714285714389,0.248275862068872,0.428571428571509,0.248275862068872,0.442857142857270,0.255172413792995,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285761,-0.000000000000000,2 -6913,6926,6928,6941,0.241379310344750,0.450000000000152,0.248275862068872,0.442857142857270,0.248275862068872,0.457142857143034,0.255172413792995,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285764,0.000000000000000,2 -6914,6927,6929,6942,0.241379310344750,0.464285714285914,0.248275862068872,0.457142857143034,0.248275862068872,0.471428571428794,0.255172413792995,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285761,0.000000000000000,2 -6915,6928,6930,6943,0.241379310344750,0.478571428571672,0.248275862068872,0.471428571428794,0.248275862068872,0.485714285714549,0.255172413792995,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285755,0.000000000000000,2 -6916,6929,6931,6944,0.241379310344750,0.492857142857421,0.248275862068872,0.485714285714549,0.248275862068872,0.500000000000292,0.255172413792995,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285744,0.000000000000000,2 -6917,6930,6932,6945,0.241379310344750,0.507142857143102,0.248275862068872,0.500000000000292,0.248275862068872,0.514285714285912,0.255172413792995,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285620,0.000000000000000,2 -6918,6931,6933,6946,0.241379310344750,0.521428571428709,0.248275862068872,0.514285714285912,0.248275862068872,0.528571428571506,0.255172413792995,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285593,0.000000000000000,2 -6919,6932,6934,6947,0.241379310344750,0.535714285714344,0.248275862068872,0.528571428571506,0.248275862068872,0.542857142857183,0.255172413792995,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285677,0.000000000000000,2 -6920,6933,6935,6948,0.241379310344750,0.550000000000022,0.248275862068872,0.542857142857183,0.248275862068872,0.557142857142860,0.255172413792995,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285677,0.000000000000000,2 -6921,6934,6936,6949,0.241379310344750,0.564285714285699,0.248275862068872,0.557142857142860,0.248275862068872,0.571428571428537,0.255172413792995,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448245,0.000000000000000,0.013793103448245,0.014285714285677,0.000000000000000,2 -6922,6935,6937,6950,0.241379310344750,0.578571428571396,0.248275862068872,0.571428571428537,0.248275862068872,0.585714285714254,0.255172413792995,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448245,-0.000000000000000,0.013793103448245,0.014285714285717,0.000000000000000,2 -1332,6923,6936,6951,0.248275862068872,0.600000000000000,0.241379310344750,0.592857142857127,0.248275862068872,0.585714285714254,0.255172413792995,0.592857142857127,0.000000000000000,0.013793103448245,-0.014285714285746,0.000000000000000,0.000000000000000,-0.013793103448245,0.014285714285745,-0.000000000000000,2 -5465,6924,6939,6952,0.262068965517112,0.400000000000000,0.255172413792995,0.407142857142878,0.262068965517112,0.414285714285756,0.268965517241230,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 -6925,6938,6940,6953,0.255172413792995,0.421428571428632,0.262068965517112,0.414285714285756,0.262068965517112,0.428571428571509,0.268965517241230,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -6926,6939,6941,6954,0.255172413792995,0.435714285714389,0.262068965517112,0.428571428571509,0.262068965517112,0.442857142857270,0.268965517241230,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -6927,6940,6942,6955,0.255172413792995,0.450000000000152,0.262068965517112,0.442857142857270,0.262068965517112,0.457142857143034,0.268965517241230,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -6928,6941,6943,6956,0.255172413792995,0.464285714285914,0.262068965517112,0.457142857143034,0.262068965517112,0.471428571428794,0.268965517241230,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285760,0.000000000000000,2 -6929,6942,6944,6957,0.255172413792995,0.478571428571671,0.262068965517112,0.471428571428794,0.262068965517112,0.485714285714549,0.268965517241230,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 -6930,6943,6945,6958,0.255172413792995,0.492857142857421,0.262068965517112,0.485714285714549,0.262068965517112,0.500000000000292,0.268965517241230,0.492857142857420,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285743,0.000000000000000,2 -6931,6944,6946,6959,0.255172413792995,0.507142857143102,0.262068965517112,0.500000000000292,0.262068965517112,0.514285714285912,0.268965517241230,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -6932,6945,6947,6960,0.255172413792995,0.521428571428709,0.262068965517112,0.514285714285912,0.262068965517112,0.528571428571506,0.268965517241230,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 -6933,6946,6948,6961,0.255172413792995,0.535714285714344,0.262068965517112,0.528571428571506,0.262068965517112,0.542857142857183,0.268965517241230,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6934,6947,6949,6962,0.255172413792995,0.550000000000021,0.262068965517112,0.542857142857183,0.262068965517112,0.557142857142860,0.268965517241230,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6935,6948,6950,6963,0.255172413792995,0.564285714285699,0.262068965517112,0.557142857142860,0.262068965517112,0.571428571428537,0.268965517241230,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6936,6949,6951,6964,0.255172413792995,0.578571428571396,0.262068965517112,0.571428571428537,0.262068965517112,0.585714285714255,0.268965517241230,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -1338,6937,6950,6965,0.262068965517112,0.600000000000000,0.255172413792995,0.592857142857127,0.262068965517112,0.585714285714255,0.268965517241230,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 -5524,6938,6953,6966,0.275862068965347,0.400000000000000,0.268965517241230,0.407142857142878,0.275862068965347,0.414285714285756,0.282758620689465,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 -6939,6952,6954,6967,0.268965517241230,0.421428571428632,0.275862068965347,0.414285714285756,0.275862068965347,0.428571428571509,0.282758620689465,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -6940,6953,6955,6968,0.268965517241230,0.435714285714389,0.275862068965347,0.428571428571509,0.275862068965347,0.442857142857270,0.282758620689465,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -6941,6954,6956,6969,0.268965517241230,0.450000000000152,0.275862068965347,0.442857142857270,0.275862068965347,0.457142857143034,0.282758620689465,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -6942,6955,6957,6970,0.268965517241230,0.464285714285914,0.275862068965347,0.457142857143034,0.275862068965347,0.471428571428794,0.282758620689465,0.464285714285914,-0.014285714285760,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -6943,6956,6958,6971,0.268965517241230,0.478571428571671,0.275862068965347,0.471428571428794,0.275862068965347,0.485714285714549,0.282758620689465,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 -6944,6957,6959,6972,0.268965517241230,0.492857142857420,0.275862068965347,0.485714285714549,0.275862068965347,0.500000000000292,0.282758620689465,0.492857142857421,-0.014285714285743,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 -6945,6958,6960,6973,0.268965517241230,0.507142857143102,0.275862068965347,0.500000000000292,0.275862068965347,0.514285714285912,0.282758620689465,0.507142857143102,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -6946,6959,6961,6974,0.268965517241230,0.521428571428709,0.275862068965347,0.514285714285912,0.275862068965347,0.528571428571506,0.282758620689465,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 -6947,6960,6962,6975,0.268965517241230,0.535714285714344,0.275862068965347,0.528571428571506,0.275862068965347,0.542857142857183,0.282758620689465,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6948,6961,6963,6976,0.268965517241230,0.550000000000021,0.275862068965347,0.542857142857183,0.275862068965347,0.557142857142860,0.282758620689465,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6949,6962,6964,6977,0.268965517241230,0.564285714285699,0.275862068965347,0.557142857142860,0.275862068965347,0.571428571428537,0.282758620689465,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6950,6963,6965,6978,0.268965517241230,0.578571428571396,0.275862068965347,0.571428571428537,0.275862068965347,0.585714285714255,0.282758620689465,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285718,0.000000000000000,2 -1344,6951,6964,6979,0.275862068965347,0.600000000000000,0.268965517241230,0.592857142857127,0.275862068965347,0.585714285714255,0.282758620689465,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 -5583,6952,6967,6980,0.289655172413583,0.400000000000000,0.282758620689465,0.407142857142878,0.289655172413583,0.414285714285756,0.296551724137700,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 -6953,6966,6968,6981,0.282758620689465,0.421428571428632,0.289655172413583,0.414285714285756,0.289655172413583,0.428571428571509,0.296551724137700,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -6954,6967,6969,6982,0.282758620689465,0.435714285714389,0.289655172413583,0.428571428571509,0.289655172413583,0.442857142857270,0.296551724137700,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 -6955,6968,6970,6983,0.282758620689465,0.450000000000152,0.289655172413583,0.442857142857270,0.289655172413583,0.457142857143033,0.296551724137700,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -6956,6969,6971,6984,0.282758620689465,0.464285714285914,0.289655172413583,0.457142857143033,0.289655172413583,0.471428571428794,0.296551724137700,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 -6957,6970,6972,6985,0.282758620689465,0.478571428571671,0.289655172413583,0.471428571428794,0.289655172413583,0.485714285714549,0.296551724137700,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 -6958,6971,6973,6986,0.282758620689465,0.492857142857421,0.289655172413583,0.485714285714549,0.289655172413583,0.500000000000292,0.296551724137700,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 -6959,6972,6974,6987,0.282758620689465,0.507142857143102,0.289655172413583,0.500000000000292,0.289655172413583,0.514285714285912,0.296551724137700,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -6960,6973,6975,6988,0.282758620689465,0.521428571428709,0.289655172413583,0.514285714285912,0.289655172413583,0.528571428571506,0.296551724137700,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 -6961,6974,6976,6989,0.282758620689465,0.535714285714344,0.289655172413583,0.528571428571506,0.289655172413583,0.542857142857183,0.296551724137700,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 -6962,6975,6977,6990,0.282758620689465,0.550000000000021,0.289655172413583,0.542857142857183,0.289655172413583,0.557142857142860,0.296551724137700,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6963,6976,6978,6991,0.282758620689465,0.564285714285699,0.289655172413583,0.557142857142860,0.289655172413583,0.571428571428537,0.296551724137700,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6964,6977,6979,6992,0.282758620689465,0.578571428571396,0.289655172413583,0.571428571428537,0.289655172413583,0.585714285714255,0.296551724137700,0.578571428571396,-0.014285714285718,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -1350,6965,6978,6993,0.289655172413583,0.600000000000000,0.282758620689465,0.592857142857127,0.289655172413583,0.585714285714255,0.296551724137700,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 -5642,6966,6981,6994,0.303448275861818,0.400000000000000,0.296551724137700,0.407142857142878,0.303448275861818,0.414285714285756,0.310344827585935,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 -6967,6980,6982,6995,0.296551724137700,0.421428571428632,0.303448275861818,0.414285714285756,0.303448275861818,0.428571428571509,0.310344827585935,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,-0.000000000000000,2 -6968,6981,6983,6996,0.296551724137700,0.435714285714389,0.303448275861818,0.428571428571509,0.303448275861818,0.442857142857270,0.310344827585935,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 -6969,6982,6984,6997,0.296551724137700,0.450000000000152,0.303448275861818,0.442857142857270,0.303448275861818,0.457142857143033,0.310344827585935,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -6970,6983,6985,6998,0.296551724137700,0.464285714285914,0.303448275861818,0.457142857143033,0.303448275861818,0.471428571428794,0.310344827585935,0.464285714285914,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -6971,6984,6986,6999,0.296551724137700,0.478571428571671,0.303448275861818,0.471428571428794,0.303448275861818,0.485714285714549,0.310344827585935,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,-0.000000000000000,2 -6972,6985,6987,7000,0.296551724137700,0.492857142857421,0.303448275861818,0.485714285714549,0.303448275861818,0.500000000000292,0.310344827585935,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 -6973,6986,6988,7001,0.296551724137700,0.507142857143102,0.303448275861818,0.500000000000292,0.303448275861818,0.514285714285912,0.310344827585935,0.507142857143102,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -6974,6987,6989,7002,0.296551724137700,0.521428571428709,0.303448275861818,0.514285714285912,0.303448275861818,0.528571428571506,0.310344827585935,0.521428571428709,-0.014285714285593,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285594,0.000000000000000,2 -6975,6988,6990,7003,0.296551724137700,0.535714285714344,0.303448275861818,0.528571428571506,0.303448275861818,0.542857142857183,0.310344827585935,0.535714285714344,-0.014285714285677,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6976,6989,6991,7004,0.296551724137700,0.550000000000021,0.303448275861818,0.542857142857183,0.303448275861818,0.557142857142860,0.310344827585935,0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 -6977,6990,6992,7005,0.296551724137700,0.564285714285699,0.303448275861818,0.557142857142860,0.303448275861818,0.571428571428537,0.310344827585935,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6978,6991,6993,7006,0.296551724137700,0.578571428571396,0.303448275861818,0.571428571428537,0.303448275861818,0.585714285714255,0.310344827585935,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -1356,6979,6992,7007,0.303448275861818,0.600000000000000,0.296551724137700,0.592857142857127,0.303448275861818,0.585714285714255,0.310344827585935,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285746,-0.000000000000000,2 -5701,6980,6995,7008,0.317241379310053,0.400000000000000,0.310344827585935,0.407142857142878,0.317241379310053,0.414285714285756,0.324137931034170,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 -6981,6994,6996,7009,0.310344827585935,0.421428571428632,0.317241379310053,0.414285714285756,0.317241379310053,0.428571428571509,0.324137931034170,0.421428571428633,-0.014285714285753,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -6982,6995,6997,7010,0.310344827585935,0.435714285714389,0.317241379310053,0.428571428571509,0.317241379310053,0.442857142857270,0.324137931034170,0.435714285714389,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -6983,6996,6998,7011,0.310344827585935,0.450000000000152,0.317241379310053,0.442857142857270,0.317241379310053,0.457142857143034,0.324137931034170,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -6984,6997,6999,7012,0.310344827585935,0.464285714285914,0.317241379310053,0.457142857143034,0.317241379310053,0.471428571428794,0.324137931034170,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -6985,6998,7000,7013,0.310344827585935,0.478571428571672,0.317241379310053,0.471428571428794,0.317241379310053,0.485714285714549,0.324137931034170,0.478571428571672,-0.014285714285754,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 -6986,6999,7001,7014,0.310344827585935,0.492857142857421,0.317241379310053,0.485714285714549,0.317241379310053,0.500000000000292,0.324137931034170,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 -6987,7000,7002,7015,0.310344827585935,0.507142857143102,0.317241379310053,0.500000000000292,0.317241379310053,0.514285714285912,0.324137931034170,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -6988,7001,7003,7016,0.310344827585935,0.521428571428709,0.317241379310053,0.514285714285912,0.317241379310053,0.528571428571506,0.324137931034170,0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 -6989,7002,7004,7017,0.310344827585935,0.535714285714344,0.317241379310053,0.528571428571506,0.317241379310053,0.542857142857183,0.324137931034170,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6990,7003,7005,7018,0.310344827585935,0.550000000000022,0.317241379310053,0.542857142857183,0.317241379310053,0.557142857142860,0.324137931034170,0.550000000000021,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6991,7004,7006,7019,0.310344827585935,0.564285714285699,0.317241379310053,0.557142857142860,0.317241379310053,0.571428571428537,0.324137931034170,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -6992,7005,7007,7020,0.310344827585935,0.578571428571396,0.317241379310053,0.571428571428537,0.317241379310053,0.585714285714255,0.324137931034170,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -1362,6993,7006,7021,0.317241379310053,0.600000000000000,0.310344827585935,0.592857142857127,0.317241379310053,0.585714285714255,0.324137931034170,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285746,0.000000000000000,0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 -5760,6994,7009,7022,0.331034482758288,0.400000000000000,0.324137931034170,0.407142857142878,0.331034482758288,0.414285714285756,0.337931034482406,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 -6995,7008,7010,7023,0.324137931034170,0.421428571428633,0.331034482758288,0.414285714285756,0.331034482758288,0.428571428571509,0.337931034482406,0.421428571428633,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -6996,7009,7011,7024,0.324137931034170,0.435714285714389,0.331034482758288,0.428571428571509,0.331034482758288,0.442857142857270,0.337931034482406,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 -6997,7010,7012,7025,0.324137931034170,0.450000000000152,0.331034482758288,0.442857142857270,0.331034482758288,0.457142857143034,0.337931034482406,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -6998,7011,7013,7026,0.324137931034170,0.464285714285914,0.331034482758288,0.457142857143034,0.331034482758288,0.471428571428794,0.337931034482406,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -6999,7012,7014,7027,0.324137931034170,0.478571428571672,0.331034482758288,0.471428571428794,0.331034482758288,0.485714285714549,0.337931034482405,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 -7000,7013,7015,7028,0.324137931034170,0.492857142857421,0.331034482758288,0.485714285714549,0.331034482758288,0.500000000000292,0.337931034482405,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 -7001,7014,7016,7029,0.324137931034170,0.507142857143102,0.331034482758288,0.500000000000292,0.331034482758288,0.514285714285912,0.337931034482406,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -7002,7015,7017,7030,0.324137931034170,0.521428571428709,0.331034482758288,0.514285714285912,0.331034482758288,0.528571428571506,0.337931034482406,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285594,0.000000000000000,2 -7003,7016,7018,7031,0.324137931034170,0.535714285714344,0.331034482758288,0.528571428571506,0.331034482758288,0.542857142857183,0.337931034482406,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7004,7017,7019,7032,0.324137931034170,0.550000000000021,0.331034482758288,0.542857142857183,0.331034482758288,0.557142857142860,0.337931034482406,0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7005,7018,7020,7033,0.324137931034170,0.564285714285699,0.331034482758288,0.557142857142860,0.331034482758288,0.571428571428537,0.337931034482406,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7006,7019,7021,7034,0.324137931034170,0.578571428571396,0.331034482758288,0.571428571428537,0.331034482758288,0.585714285714254,0.337931034482406,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -1368,7007,7020,7035,0.331034482758288,0.600000000000000,0.324137931034170,0.592857142857127,0.331034482758288,0.585714285714254,0.337931034482406,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285746,-0.000000000000000,2 -5819,7008,7023,7036,0.344827586206523,0.400000000000000,0.337931034482406,0.407142857142878,0.344827586206523,0.414285714285756,0.351724137930641,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 -7009,7022,7024,7037,0.337931034482406,0.421428571428633,0.344827586206523,0.414285714285756,0.344827586206523,0.428571428571509,0.351724137930641,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -7010,7023,7025,7038,0.337931034482406,0.435714285714389,0.344827586206523,0.428571428571509,0.344827586206523,0.442857142857270,0.351724137930641,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 -7011,7024,7026,7039,0.337931034482406,0.450000000000152,0.344827586206523,0.442857142857270,0.344827586206523,0.457142857143034,0.351724137930641,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -7012,7025,7027,7040,0.337931034482406,0.464285714285914,0.344827586206523,0.457142857143034,0.344827586206523,0.471428571428794,0.351724137930640,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -7013,7026,7028,7041,0.337931034482405,0.478571428571672,0.344827586206523,0.471428571428794,0.344827586206523,0.485714285714549,0.351724137930641,0.478571428571671,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,-0.000000000000000,2 -7014,7027,7029,7042,0.337931034482405,0.492857142857421,0.344827586206523,0.485714285714549,0.344827586206523,0.500000000000292,0.351724137930641,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 -7015,7028,7030,7043,0.337931034482406,0.507142857143102,0.344827586206523,0.500000000000292,0.344827586206523,0.514285714285912,0.351724137930641,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -7016,7029,7031,7044,0.337931034482406,0.521428571428709,0.344827586206523,0.514285714285912,0.344827586206523,0.528571428571506,0.351724137930641,0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,-0.000000000000000,2 -7017,7030,7032,7045,0.337931034482406,0.535714285714344,0.344827586206523,0.528571428571506,0.344827586206523,0.542857142857183,0.351724137930641,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7018,7031,7033,7046,0.337931034482406,0.550000000000022,0.344827586206523,0.542857142857183,0.344827586206523,0.557142857142860,0.351724137930641,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 -7019,7032,7034,7047,0.337931034482406,0.564285714285699,0.344827586206523,0.557142857142860,0.344827586206523,0.571428571428537,0.351724137930641,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7020,7033,7035,7048,0.337931034482406,0.578571428571396,0.344827586206523,0.571428571428537,0.344827586206523,0.585714285714254,0.351724137930641,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -1374,7021,7034,7049,0.344827586206523,0.600000000000000,0.337931034482406,0.592857142857127,0.344827586206523,0.585714285714254,0.351724137930641,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285746,0.000000000000000,0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 -5878,7022,7037,7050,0.358620689654758,0.400000000000000,0.351724137930641,0.407142857142878,0.358620689654758,0.414285714285756,0.365517241378876,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 -7023,7036,7038,7051,0.351724137930641,0.421428571428633,0.358620689654758,0.414285714285756,0.358620689654758,0.428571428571509,0.365517241378876,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -7024,7037,7039,7052,0.351724137930641,0.435714285714389,0.358620689654758,0.428571428571509,0.358620689654758,0.442857142857270,0.365517241378876,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 -7025,7038,7040,7053,0.351724137930641,0.450000000000152,0.358620689654758,0.442857142857270,0.358620689654758,0.457142857143034,0.365517241378876,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -7026,7039,7041,7054,0.351724137930640,0.464285714285914,0.358620689654758,0.457142857143034,0.358620689654758,0.471428571428794,0.365517241378876,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285760,-0.000000000000000,2 -7027,7040,7042,7055,0.351724137930641,0.478571428571671,0.358620689654758,0.471428571428794,0.358620689654758,0.485714285714549,0.365517241378876,0.478571428571671,-0.014285714285755,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,-0.000000000000000,2 -7028,7041,7043,7056,0.351724137930641,0.492857142857421,0.358620689654758,0.485714285714549,0.358620689654758,0.500000000000292,0.365517241378876,0.492857142857420,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285743,0.000000000000000,2 -7029,7042,7044,7057,0.351724137930641,0.507142857143102,0.358620689654758,0.500000000000292,0.358620689654758,0.514285714285912,0.365517241378876,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,-0.000000000000000,2 -7030,7043,7045,7058,0.351724137930641,0.521428571428709,0.358620689654758,0.514285714285912,0.358620689654758,0.528571428571506,0.365517241378876,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 -7031,7044,7046,7059,0.351724137930641,0.535714285714344,0.358620689654758,0.528571428571506,0.358620689654758,0.542857142857183,0.365517241378876,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7032,7045,7047,7060,0.351724137930641,0.550000000000021,0.358620689654758,0.542857142857183,0.358620689654758,0.557142857142860,0.365517241378876,0.550000000000021,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7033,7046,7048,7061,0.351724137930641,0.564285714285699,0.358620689654758,0.557142857142860,0.358620689654758,0.571428571428537,0.365517241378876,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7034,7047,7049,7062,0.351724137930641,0.578571428571396,0.358620689654758,0.571428571428537,0.358620689654758,0.585714285714255,0.365517241378876,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -1380,7035,7048,7063,0.358620689654758,0.600000000000000,0.351724137930641,0.592857142857127,0.358620689654758,0.585714285714255,0.365517241378876,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 -5937,7036,7051,7064,0.372413793102993,0.400000000000000,0.365517241378876,0.407142857142878,0.372413793102993,0.414285714285756,0.379310344827111,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 -7037,7050,7052,7065,0.365517241378876,0.421428571428633,0.372413793102993,0.414285714285756,0.372413793102993,0.428571428571509,0.379310344827111,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -7038,7051,7053,7066,0.365517241378876,0.435714285714389,0.372413793102993,0.428571428571509,0.372413793102993,0.442857142857270,0.379310344827111,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -7039,7052,7054,7067,0.365517241378876,0.450000000000152,0.372413793102993,0.442857142857270,0.372413793102993,0.457142857143034,0.379310344827111,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -7040,7053,7055,7068,0.365517241378876,0.464285714285914,0.372413793102993,0.457142857143034,0.372413793102993,0.471428571428794,0.379310344827111,0.464285714285914,-0.014285714285760,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -7041,7054,7056,7069,0.365517241378876,0.478571428571671,0.372413793102993,0.471428571428794,0.372413793102993,0.485714285714549,0.379310344827111,0.478571428571672,-0.014285714285755,0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285754,0.000000000000000,2 -7042,7055,7057,7070,0.365517241378876,0.492857142857420,0.372413793102993,0.485714285714549,0.372413793102993,0.500000000000292,0.379310344827111,0.492857142857421,-0.014285714285743,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285744,-0.000000000000000,2 -7043,7056,7058,7071,0.365517241378876,0.507142857143102,0.372413793102993,0.500000000000292,0.372413793102993,0.514285714285912,0.379310344827111,0.507142857143102,-0.014285714285620,0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285620,0.000000000000000,2 -7044,7057,7059,7072,0.365517241378876,0.521428571428709,0.372413793102993,0.514285714285912,0.372413793102993,0.528571428571506,0.379310344827111,0.521428571428709,-0.014285714285593,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 -7045,7058,7060,7073,0.365517241378876,0.535714285714344,0.372413793102993,0.528571428571506,0.372413793102993,0.542857142857183,0.379310344827111,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7046,7059,7061,7074,0.365517241378876,0.550000000000021,0.372413793102993,0.542857142857183,0.372413793102993,0.557142857142860,0.379310344827111,0.550000000000021,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,-0.000000000000000,2 -7047,7060,7062,7075,0.365517241378876,0.564285714285699,0.372413793102993,0.557142857142860,0.372413793102993,0.571428571428537,0.379310344827111,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7048,7061,7063,7076,0.365517241378876,0.578571428571396,0.372413793102993,0.571428571428537,0.372413793102993,0.585714285714255,0.379310344827111,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285718,-0.000000000000000,2 -1386,7049,7062,7077,0.372413793102993,0.600000000000000,0.365517241378876,0.592857142857127,0.372413793102993,0.585714285714255,0.379310344827111,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 -5996,7050,7065,7078,0.386206896551228,0.400000000000000,0.379310344827111,0.407142857142878,0.386206896551228,0.414285714285756,0.393103448275346,0.407142857142878,-0.000000000000000,-0.013793103448235,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448235,0.014285714285756,0.000000000000000,2 -7051,7064,7066,7079,0.379310344827111,0.421428571428632,0.386206896551228,0.414285714285756,0.386206896551228,0.428571428571509,0.393103448275346,0.421428571428632,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285753,0.000000000000000,2 -7052,7065,7067,7080,0.379310344827111,0.435714285714389,0.386206896551228,0.428571428571509,0.386206896551228,0.442857142857270,0.393103448275346,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,0.000000000000000,2 -7053,7066,7068,7081,0.379310344827111,0.450000000000152,0.386206896551228,0.442857142857270,0.386206896551228,0.457142857143033,0.393103448275346,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285764,0.000000000000000,2 -7054,7067,7069,7082,0.379310344827111,0.464285714285914,0.386206896551228,0.457142857143033,0.386206896551228,0.471428571428794,0.393103448275346,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285761,-0.000000000000000,2 -7055,7068,7070,7083,0.379310344827111,0.478571428571672,0.386206896551228,0.471428571428794,0.386206896551228,0.485714285714549,0.393103448275346,0.478571428571671,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285755,0.000000000000000,2 -7056,7069,7071,7084,0.379310344827111,0.492857142857421,0.386206896551228,0.485714285714549,0.386206896551228,0.500000000000293,0.393103448275346,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285744,0.000000000000000,2 -7057,7070,7072,7085,0.379310344827111,0.507142857143102,0.386206896551228,0.500000000000293,0.386206896551228,0.514285714285912,0.393103448275346,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285620,-0.000000000000000,2 -7058,7071,7073,7086,0.379310344827111,0.521428571428709,0.386206896551228,0.514285714285912,0.386206896551228,0.528571428571506,0.393103448275346,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285593,0.000000000000000,2 -7059,7072,7074,7087,0.379310344827111,0.535714285714344,0.386206896551228,0.528571428571506,0.386206896551228,0.542857142857183,0.393103448275346,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7060,7073,7075,7088,0.379310344827111,0.550000000000021,0.386206896551228,0.542857142857183,0.386206896551228,0.557142857142860,0.393103448275346,0.550000000000021,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448235,-0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7061,7074,7076,7089,0.379310344827111,0.564285714285699,0.386206896551228,0.557142857142860,0.386206896551228,0.571428571428537,0.393103448275346,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285677,0.000000000000000,2 -7062,7075,7077,7090,0.379310344827111,0.578571428571396,0.386206896551228,0.571428571428537,0.386206896551228,0.585714285714255,0.393103448275346,0.578571428571396,-0.014285714285718,0.000000000000000,-0.000000000000000,-0.013793103448235,0.000000000000000,0.013793103448235,0.014285714285717,0.000000000000000,2 -1392,7063,7076,7091,0.386206896551228,0.600000000000000,0.379310344827111,0.592857142857127,0.386206896551228,0.585714285714255,0.393103448275346,0.592857142857127,0.000000000000000,0.013793103448235,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448235,0.014285714285745,-0.000000000000000,2 -6055,7064,7079,7092,0.399999999999487,0.400000000000000,0.393103448275346,0.407142857142878,0.399999999999487,0.414285714285756,0.406896551723629,0.407142857142878,-0.000000000000000,-0.013793103448283,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448283,0.014285714285756,0.000000000000000,2 -7065,7078,7080,7093,0.393103448275346,0.421428571428632,0.399999999999487,0.414285714285756,0.399999999999487,0.428571428571509,0.406896551723629,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285753,0.000000000000000,2 -7066,7079,7081,7094,0.393103448275346,0.435714285714389,0.399999999999487,0.428571428571509,0.399999999999487,0.442857142857270,0.406896551723629,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285761,0.000000000000000,2 -7067,7080,7082,7095,0.393103448275346,0.450000000000152,0.399999999999487,0.442857142857270,0.399999999999487,0.457142857143034,0.406896551723629,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.014285714285764,-0.000000000000000,2 -7068,7081,7083,7096,0.393103448275346,0.464285714285914,0.399999999999487,0.457142857143034,0.399999999999487,0.471428571428794,0.406896551723629,0.464285714285914,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285761,-0.000000000000000,2 -7069,7082,7084,7097,0.393103448275346,0.478571428571671,0.399999999999487,0.471428571428794,0.399999999999487,0.485714285714549,0.406896551723629,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285755,0.000000000000000,2 -7070,7083,7085,7098,0.393103448275346,0.492857142857421,0.399999999999487,0.485714285714549,0.399999999999487,0.500000000000292,0.406896551723629,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285744,0.000000000000000,2 -7071,7084,7086,7099,0.393103448275346,0.507142857143102,0.399999999999487,0.500000000000292,0.399999999999487,0.514285714285912,0.406896551723629,0.507142857143102,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285620,0.000000000000000,2 -7072,7085,7087,7100,0.393103448275346,0.521428571428709,0.399999999999487,0.514285714285912,0.399999999999487,0.528571428571506,0.406896551723629,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448283,-0.000000000000000,0.013793103448283,0.014285714285593,0.000000000000000,2 -7073,7086,7088,7101,0.393103448275346,0.535714285714344,0.399999999999487,0.528571428571506,0.399999999999487,0.542857142857183,0.406896551723629,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285677,0.000000000000000,2 -7074,7087,7089,7102,0.393103448275346,0.550000000000021,0.399999999999487,0.542857142857183,0.399999999999487,0.557142857142860,0.406896551723629,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285677,-0.000000000000000,2 -7075,7088,7090,7103,0.393103448275346,0.564285714285699,0.399999999999487,0.557142857142860,0.399999999999487,0.571428571428537,0.406896551723629,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285677,0.000000000000000,2 -7076,7089,7091,7104,0.393103448275346,0.578571428571396,0.399999999999487,0.571428571428537,0.399999999999487,0.585714285714255,0.406896551723629,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448283,0.000000000000000,0.013793103448283,0.014285714285717,0.000000000000000,2 -1398,7077,7090,7105,0.399999999999487,0.600000000000000,0.393103448275346,0.592857142857127,0.399999999999487,0.585714285714255,0.406896551723629,0.592857142857127,0.000000000000000,0.013793103448283,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448283,0.014285714285745,-0.000000000000000,2 -6114,7078,7093,7106,0.413793103447786,0.400000000000000,0.406896551723629,0.407142857142878,0.413793103447786,0.414285714285756,0.420689655171942,0.407142857142878,-0.000000000000000,-0.013793103448313,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448313,0.014285714285756,-0.000000000000000,2 -7079,7092,7094,7107,0.406896551723629,0.421428571428632,0.413793103447786,0.414285714285756,0.413793103447786,0.428571428571509,0.420689655171942,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285753,0.000000000000000,2 -7080,7093,7095,7108,0.406896551723629,0.435714285714389,0.413793103447786,0.428571428571509,0.413793103447786,0.442857142857270,0.420689655171942,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,-0.000000000000000,2 -7081,7094,7096,7109,0.406896551723629,0.450000000000152,0.413793103447786,0.442857142857270,0.413793103447786,0.457142857143034,0.420689655171942,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285764,0.000000000000000,2 -7082,7095,7097,7110,0.406896551723629,0.464285714285914,0.413793103447786,0.457142857143034,0.413793103447786,0.471428571428794,0.420689655171942,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 -7083,7096,7098,7111,0.406896551723629,0.478571428571671,0.413793103447786,0.471428571428794,0.413793103447786,0.485714285714549,0.420689655171942,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285755,0.000000000000000,2 -7084,7097,7099,7112,0.406896551723629,0.492857142857421,0.413793103447786,0.485714285714549,0.413793103447786,0.500000000000292,0.420689655171942,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285744,0.000000000000000,2 -7085,7098,7100,7113,0.406896551723629,0.507142857143102,0.413793103447786,0.500000000000292,0.413793103447786,0.514285714285912,0.420689655171942,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285620,-0.000000000000000,2 -7086,7099,7101,7114,0.406896551723629,0.521428571428709,0.413793103447786,0.514285714285912,0.413793103447786,0.528571428571506,0.420689655171942,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285593,0.000000000000000,2 -7087,7100,7102,7115,0.406896551723629,0.535714285714344,0.413793103447786,0.528571428571506,0.413793103447786,0.542857142857183,0.420689655171942,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 -7088,7101,7103,7116,0.406896551723629,0.550000000000021,0.413793103447786,0.542857142857183,0.413793103447786,0.557142857142860,0.420689655171942,0.550000000000021,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 -7089,7102,7104,7117,0.406896551723629,0.564285714285699,0.413793103447786,0.557142857142860,0.413793103447786,0.571428571428537,0.420689655171942,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 -7090,7103,7105,7118,0.406896551723629,0.578571428571396,0.413793103447786,0.571428571428537,0.413793103447786,0.585714285714255,0.420689655171942,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285717,0.000000000000000,2 -1404,7091,7104,7119,0.413793103447786,0.600000000000000,0.406896551723629,0.592857142857127,0.413793103447786,0.585714285714255,0.420689655171942,0.592857142857127,0.000000000000000,0.013793103448313,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448313,0.014285714285745,-0.000000000000000,2 -6173,7092,7107,7120,0.427586206896100,0.400000000000000,0.420689655171942,0.407142857142878,0.427586206896100,0.414285714285756,0.434482758620257,0.407142857142878,-0.000000000000000,-0.013793103448315,-0.014285714285756,0.000000000000000,-0.000000000000000,0.013793103448315,0.014285714285756,0.000000000000000,2 -7093,7106,7108,7121,0.420689655171942,0.421428571428632,0.427586206896100,0.414285714285756,0.427586206896100,0.428571428571509,0.434482758620257,0.421428571428633,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285753,0.000000000000000,2 -7094,7107,7109,7122,0.420689655171942,0.435714285714389,0.427586206896100,0.428571428571509,0.427586206896100,0.442857142857270,0.434482758620258,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285761,-0.000000000000000,2 -7095,7108,7110,7123,0.420689655171942,0.450000000000152,0.427586206896100,0.442857142857270,0.427586206896100,0.457142857143033,0.434482758620258,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285764,0.000000000000000,2 -7096,7109,7111,7124,0.420689655171942,0.464285714285914,0.427586206896100,0.457142857143033,0.427586206896100,0.471428571428794,0.434482758620257,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285761,-0.000000000000000,2 -7097,7110,7112,7125,0.420689655171942,0.478571428571671,0.427586206896100,0.471428571428794,0.427586206896100,0.485714285714549,0.434482758620257,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285755,0.000000000000000,2 -7098,7111,7113,7126,0.420689655171942,0.492857142857421,0.427586206896100,0.485714285714549,0.427586206896100,0.500000000000292,0.434482758620257,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285744,0.000000000000000,2 -7099,7112,7114,7127,0.420689655171942,0.507142857143102,0.427586206896100,0.500000000000292,0.427586206896100,0.514285714285912,0.434482758620258,0.507142857143102,-0.014285714285620,0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285620,-0.000000000000000,2 -7100,7113,7115,7128,0.420689655171942,0.521428571428709,0.427586206896100,0.514285714285912,0.427586206896100,0.528571428571506,0.434482758620258,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285594,0.000000000000000,2 -7101,7114,7116,7129,0.420689655171942,0.535714285714344,0.427586206896100,0.528571428571506,0.427586206896100,0.542857142857183,0.434482758620257,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 -7102,7115,7117,7130,0.420689655171942,0.550000000000021,0.427586206896100,0.542857142857183,0.427586206896100,0.557142857142860,0.434482758620257,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 -7103,7116,7118,7131,0.420689655171942,0.564285714285699,0.427586206896100,0.557142857142860,0.427586206896100,0.571428571428537,0.434482758620257,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 -7104,7117,7119,7132,0.420689655171942,0.578571428571396,0.427586206896100,0.571428571428537,0.427586206896100,0.585714285714255,0.434482758620257,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285717,0.000000000000000,2 -1410,7105,7118,7133,0.427586206896100,0.600000000000000,0.420689655171942,0.592857142857127,0.427586206896100,0.585714285714255,0.434482758620257,0.592857142857127,0.000000000000000,0.013793103448315,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448315,0.014285714285745,-0.000000000000000,2 -6232,7106,7121,7134,0.441379310344412,0.400000000000000,0.434482758620257,0.407142857142878,0.441379310344412,0.414285714285756,0.448275862068567,0.407142857142878,-0.000000000000000,-0.013793103448310,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448310,0.014285714285756,0.000000000000000,2 -7107,7120,7122,7135,0.434482758620257,0.421428571428633,0.441379310344412,0.414285714285756,0.441379310344412,0.428571428571509,0.448275862068567,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285753,-0.000000000000000,2 -7108,7121,7123,7136,0.434482758620258,0.435714285714389,0.441379310344412,0.428571428571509,0.441379310344412,0.442857142857270,0.448275862068567,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285761,0.000000000000000,2 -7109,7122,7124,7137,0.434482758620258,0.450000000000152,0.441379310344412,0.442857142857270,0.441379310344412,0.457142857143034,0.448275862068567,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.014285714285764,0.000000000000000,2 -7110,7123,7125,7138,0.434482758620257,0.464285714285914,0.441379310344412,0.457142857143034,0.441379310344412,0.471428571428794,0.448275862068567,0.464285714285914,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285761,-0.000000000000000,2 -7111,7124,7126,7139,0.434482758620257,0.478571428571671,0.441379310344412,0.471428571428794,0.441379310344412,0.485714285714549,0.448275862068567,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285755,0.000000000000000,2 -7112,7125,7127,7140,0.434482758620257,0.492857142857421,0.441379310344412,0.485714285714549,0.441379310344412,0.500000000000292,0.448275862068567,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285744,0.000000000000000,2 -7113,7126,7128,7141,0.434482758620258,0.507142857143102,0.441379310344412,0.500000000000292,0.441379310344412,0.514285714285912,0.448275862068567,0.507142857143102,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448310,-0.000000000000000,0.013793103448310,0.014285714285620,-0.000000000000000,2 -7114,7127,7129,7142,0.434482758620258,0.521428571428709,0.441379310344412,0.514285714285912,0.441379310344412,0.528571428571506,0.448275862068567,0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285593,0.000000000000000,2 -7115,7128,7130,7143,0.434482758620257,0.535714285714344,0.441379310344412,0.528571428571506,0.441379310344412,0.542857142857183,0.448275862068567,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285677,0.000000000000000,2 -7116,7129,7131,7144,0.434482758620257,0.550000000000021,0.441379310344412,0.542857142857183,0.441379310344412,0.557142857142860,0.448275862068567,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285677,0.000000000000000,2 -7117,7130,7132,7145,0.434482758620257,0.564285714285699,0.441379310344412,0.557142857142860,0.441379310344412,0.571428571428537,0.448275862068567,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285677,0.000000000000000,2 -7118,7131,7133,7146,0.434482758620257,0.578571428571396,0.441379310344412,0.571428571428537,0.441379310344412,0.585714285714255,0.448275862068567,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448310,0.000000000000000,0.013793103448310,0.014285714285718,0.000000000000000,2 -1416,7119,7132,7147,0.441379310344412,0.600000000000000,0.434482758620257,0.592857142857127,0.441379310344412,0.585714285714255,0.448275862068567,0.592857142857127,0.000000000000000,0.013793103448310,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448310,0.014285714285745,-0.000000000000000,2 -6291,7120,7135,7148,0.455172413792722,0.400000000000000,0.448275862068567,0.407142857142878,0.455172413792722,0.414285714285756,0.462068965516876,0.407142857142878,-0.000000000000000,-0.013793103448309,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285756,0.000000000000000,2 -7121,7134,7136,7149,0.448275862068567,0.421428571428632,0.455172413792722,0.414285714285756,0.455172413792722,0.428571428571509,0.462068965516876,0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285753,-0.000000000000000,2 -7122,7135,7137,7150,0.448275862068567,0.435714285714389,0.455172413792722,0.428571428571509,0.455172413792722,0.442857142857270,0.462068965516876,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -7123,7136,7138,7151,0.448275862068567,0.450000000000152,0.455172413792722,0.442857142857270,0.455172413792722,0.457142857143034,0.462068965516876,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 -7124,7137,7139,7152,0.448275862068567,0.464285714285914,0.455172413792722,0.457142857143034,0.455172413792722,0.471428571428794,0.462068965516876,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -7125,7138,7140,7153,0.448275862068567,0.478571428571671,0.455172413792722,0.471428571428794,0.455172413792722,0.485714285714549,0.462068965516876,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285755,0.000000000000000,2 -7126,7139,7141,7154,0.448275862068567,0.492857142857421,0.455172413792722,0.485714285714549,0.455172413792722,0.500000000000292,0.462068965516876,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285744,-0.000000000000000,2 -7127,7140,7142,7155,0.448275862068567,0.507142857143102,0.455172413792722,0.500000000000292,0.455172413792722,0.514285714285912,0.462068965516876,0.507142857143102,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285620,0.000000000000000,2 -7128,7141,7143,7156,0.448275862068567,0.521428571428709,0.455172413792722,0.514285714285912,0.455172413792722,0.528571428571506,0.462068965516876,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285594,0.000000000000000,2 -7129,7142,7144,7157,0.448275862068567,0.535714285714344,0.455172413792722,0.528571428571506,0.455172413792722,0.542857142857183,0.462068965516876,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -7130,7143,7145,7158,0.448275862068567,0.550000000000021,0.455172413792722,0.542857142857183,0.455172413792722,0.557142857142860,0.462068965516876,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -7131,7144,7146,7159,0.448275862068567,0.564285714285699,0.455172413792722,0.557142857142860,0.455172413792722,0.571428571428537,0.462068965516876,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -7132,7145,7147,7160,0.448275862068567,0.578571428571396,0.455172413792722,0.571428571428537,0.455172413792722,0.585714285714255,0.462068965516876,0.578571428571396,-0.014285714285718,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 -1422,7133,7146,7161,0.455172413792722,0.600000000000000,0.448275862068567,0.592857142857127,0.455172413792722,0.585714285714255,0.462068965516876,0.592857142857127,0.000000000000000,0.013793103448309,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285745,-0.000000000000000,2 -6350,7134,7149,7162,0.468965517241031,0.400000000000000,0.462068965516876,0.407142857142878,0.468965517241031,0.414285714285756,0.475862068965185,0.407142857142878,-0.000000000000000,-0.013793103448309,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285756,0.000000000000000,2 -7135,7148,7150,7163,0.462068965516876,0.421428571428633,0.468965517241031,0.414285714285756,0.468965517241031,0.428571428571509,0.475862068965185,0.421428571428632,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285753,0.000000000000000,2 -7136,7149,7151,7164,0.462068965516876,0.435714285714389,0.468965517241031,0.428571428571509,0.468965517241031,0.442857142857270,0.475862068965185,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,-0.000000000000000,2 -7137,7150,7152,7165,0.462068965516876,0.450000000000152,0.468965517241031,0.442857142857270,0.468965517241031,0.457142857143033,0.475862068965185,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 -7138,7151,7153,7166,0.462068965516876,0.464285714285914,0.468965517241031,0.457142857143033,0.468965517241031,0.471428571428794,0.475862068965185,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -7139,7152,7154,7167,0.462068965516876,0.478571428571671,0.468965517241031,0.471428571428794,0.468965517241031,0.485714285714549,0.475862068965185,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285755,0.000000000000000,2 -7140,7153,7155,7168,0.462068965516876,0.492857142857421,0.468965517241031,0.485714285714549,0.468965517241031,0.500000000000292,0.475862068965185,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285744,0.000000000000000,2 -7141,7154,7156,7169,0.462068965516876,0.507142857143102,0.468965517241031,0.500000000000292,0.468965517241031,0.514285714285912,0.475862068965185,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285620,0.000000000000000,2 -7142,7155,7157,7170,0.462068965516876,0.521428571428709,0.468965517241031,0.514285714285912,0.468965517241031,0.528571428571506,0.475862068965185,0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285593,-0.000000000000000,2 -7143,7156,7158,7171,0.462068965516876,0.535714285714344,0.468965517241031,0.528571428571506,0.468965517241031,0.542857142857183,0.475862068965185,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -7144,7157,7159,7172,0.462068965516876,0.550000000000021,0.468965517241031,0.542857142857183,0.468965517241031,0.557142857142860,0.475862068965185,0.550000000000021,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -7145,7158,7160,7173,0.462068965516876,0.564285714285699,0.468965517241031,0.557142857142860,0.468965517241031,0.571428571428537,0.475862068965185,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -7146,7159,7161,7174,0.462068965516876,0.578571428571396,0.468965517241031,0.571428571428537,0.468965517241031,0.585714285714255,0.475862068965185,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 -1428,7147,7160,7175,0.468965517241031,0.600000000000000,0.462068965516876,0.592857142857127,0.468965517241031,0.585714285714255,0.475862068965185,0.592857142857127,0.000000000000000,0.013793103448309,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285745,-0.000000000000000,2 -6409,7148,7163,7176,0.482758620689341,0.400000000000000,0.475862068965185,0.407142857142878,0.482758620689341,0.414285714285756,0.489655172413498,0.407142857142878,-0.000000000000000,-0.013793103448313,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448313,0.014285714285756,-0.000000000000000,2 -7149,7162,7164,7177,0.475862068965185,0.421428571428632,0.482758620689341,0.414285714285756,0.482758620689341,0.428571428571509,0.489655172413498,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285753,0.000000000000000,2 -7150,7163,7165,7178,0.475862068965185,0.435714285714389,0.482758620689341,0.428571428571509,0.482758620689341,0.442857142857270,0.489655172413498,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448312,0.014285714285761,0.000000000000000,2 -7151,7164,7166,7179,0.475862068965185,0.450000000000152,0.482758620689341,0.442857142857270,0.482758620689341,0.457142857143033,0.489655172413498,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448313,0.014285714285764,0.000000000000000,2 -7152,7165,7167,7180,0.475862068965185,0.464285714285914,0.482758620689341,0.457142857143033,0.482758620689341,0.471428571428794,0.489655172413498,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 -7153,7166,7168,7181,0.475862068965185,0.478571428571671,0.482758620689341,0.471428571428794,0.482758620689341,0.485714285714549,0.489655172413498,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285755,-0.000000000000000,2 -7154,7167,7169,7182,0.475862068965185,0.492857142857421,0.482758620689341,0.485714285714549,0.482758620689341,0.500000000000292,0.489655172413498,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448313,0.014285714285744,0.000000000000000,2 -7155,7168,7170,7183,0.475862068965185,0.507142857143102,0.482758620689341,0.500000000000292,0.482758620689341,0.514285714285912,0.489655172413498,0.507142857143102,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285620,0.000000000000000,2 -7156,7169,7171,7184,0.475862068965185,0.521428571428709,0.482758620689341,0.514285714285912,0.482758620689341,0.528571428571506,0.489655172413498,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013793103448312,0.014285714285593,0.000000000000000,2 -7157,7170,7172,7185,0.475862068965185,0.535714285714344,0.482758620689341,0.528571428571506,0.482758620689341,0.542857142857183,0.489655172413498,0.535714285714344,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 -7158,7171,7173,7186,0.475862068965185,0.550000000000021,0.482758620689341,0.542857142857183,0.482758620689341,0.557142857142860,0.489655172413498,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,-0.000000000000000,2 -7159,7172,7174,7187,0.475862068965185,0.564285714285699,0.482758620689341,0.557142857142860,0.482758620689341,0.571428571428537,0.489655172413498,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 -7160,7173,7175,7188,0.475862068965185,0.578571428571396,0.482758620689341,0.571428571428537,0.482758620689341,0.585714285714255,0.489655172413498,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285717,-0.000000000000000,2 -1434,7161,7174,7189,0.482758620689341,0.600000000000000,0.475862068965185,0.592857142857127,0.482758620689341,0.585714285714255,0.489655172413498,0.592857142857127,0.000000000000000,0.013793103448313,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448313,0.014285714285745,0.000000000000000,2 -6468,7162,7177,7190,0.496551724137666,0.400000000000000,0.489655172413498,0.407142857142878,0.496551724137666,0.414285714285756,0.503448275861834,0.407142857142878,-0.000000000000000,-0.013793103448336,-0.014285714285756,0.000000000000000,-0.000000000000000,0.013793103448336,0.014285714285756,0.000000000000000,2 -7163,7176,7178,7191,0.489655172413498,0.421428571428632,0.496551724137666,0.414285714285756,0.496551724137666,0.428571428571509,0.503448275861834,0.421428571428632,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285753,0.000000000000000,2 -7164,7177,7179,7192,0.489655172413498,0.435714285714389,0.496551724137666,0.428571428571509,0.496551724137666,0.442857142857270,0.503448275861834,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.014285714285761,-0.000000000000000,2 -7165,7178,7180,7193,0.489655172413498,0.450000000000152,0.496551724137666,0.442857142857270,0.496551724137666,0.457142857143033,0.503448275861834,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285764,0.000000000000000,2 -7166,7179,7181,7194,0.489655172413498,0.464285714285914,0.496551724137666,0.457142857143033,0.496551724137666,0.471428571428794,0.503448275861834,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285761,0.000000000000000,2 -7167,7180,7182,7195,0.489655172413498,0.478571428571671,0.496551724137666,0.471428571428794,0.496551724137666,0.485714285714549,0.503448275861834,0.478571428571671,-0.014285714285755,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285755,0.000000000000000,2 -7168,7181,7183,7196,0.489655172413498,0.492857142857421,0.496551724137666,0.485714285714549,0.496551724137666,0.500000000000292,0.503448275861834,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285744,0.000000000000000,2 -7169,7182,7184,7197,0.489655172413498,0.507142857143102,0.496551724137666,0.500000000000292,0.496551724137666,0.514285714285912,0.503448275861834,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285620,0.000000000000000,2 -7170,7183,7185,7198,0.489655172413498,0.521428571428709,0.496551724137666,0.514285714285912,0.496551724137666,0.528571428571506,0.503448275861834,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285594,0.000000000000000,2 -7171,7184,7186,7199,0.489655172413498,0.535714285714344,0.496551724137666,0.528571428571506,0.496551724137666,0.542857142857183,0.503448275861834,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285677,0.000000000000000,2 -7172,7185,7187,7200,0.489655172413498,0.550000000000021,0.496551724137666,0.542857142857183,0.496551724137666,0.557142857142860,0.503448275861834,0.550000000000021,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448336,-0.000000000000000,0.013793103448336,0.014285714285677,0.000000000000000,2 -7173,7186,7188,7201,0.489655172413498,0.564285714285699,0.496551724137666,0.557142857142860,0.496551724137666,0.571428571428537,0.503448275861834,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285677,0.000000000000000,2 -7174,7187,7189,7202,0.489655172413498,0.578571428571396,0.496551724137666,0.571428571428537,0.496551724137666,0.585714285714255,0.503448275861834,0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448336,0.000000000000000,0.013793103448336,0.014285714285717,0.000000000000000,2 -1440,7175,7188,7203,0.496551724137666,0.600000000000000,0.489655172413498,0.592857142857127,0.496551724137666,0.585714285714255,0.503448275861834,0.592857142857127,0.000000000000000,0.013793103448336,-0.014285714285745,-0.000000000000000,-0.000000000000000,-0.013793103448336,0.014285714285745,-0.000000000000000,2 -6527,7176,7191,7204,0.510344827585989,0.400000000000000,0.503448275861834,0.407142857142878,0.510344827585989,0.414285714285756,0.517241379310145,0.407142857142878,-0.000000000000000,-0.013793103448311,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448311,0.014285714285756,0.000000000000000,2 -7177,7190,7192,7205,0.503448275861834,0.421428571428632,0.510344827585989,0.414285714285756,0.510344827585989,0.428571428571509,0.517241379310145,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285753,0.000000000000000,2 -7178,7191,7193,7206,0.503448275861834,0.435714285714389,0.510344827585989,0.428571428571509,0.510344827585990,0.442857142857270,0.517241379310145,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,-0.000000000000000,2 -7179,7192,7194,7207,0.503448275861834,0.450000000000152,0.510344827585990,0.442857142857270,0.510344827585989,0.457142857143033,0.517241379310145,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285764,0.000000000000000,2 -7180,7193,7195,7208,0.503448275861834,0.464285714285914,0.510344827585989,0.457142857143033,0.510344827585989,0.471428571428794,0.517241379310145,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 -7181,7194,7196,7209,0.503448275861834,0.478571428571671,0.510344827585989,0.471428571428794,0.510344827585989,0.485714285714549,0.517241379310145,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285755,0.000000000000000,2 -7182,7195,7197,7210,0.503448275861834,0.492857142857421,0.510344827585989,0.485714285714549,0.510344827585989,0.500000000000292,0.517241379310145,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 -7183,7196,7198,7211,0.503448275861834,0.507142857143102,0.510344827585989,0.500000000000292,0.510344827585989,0.514285714285912,0.517241379310145,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285620,0.000000000000000,2 -7184,7197,7199,7212,0.503448275861834,0.521428571428709,0.510344827585989,0.514285714285912,0.510344827585989,0.528571428571506,0.517241379310145,0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285594,0.000000000000000,2 -7185,7198,7200,7213,0.503448275861834,0.535714285714344,0.510344827585989,0.528571428571506,0.510344827585989,0.542857142857183,0.517241379310145,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7186,7199,7201,7214,0.503448275861834,0.550000000000021,0.510344827585989,0.542857142857183,0.510344827585989,0.557142857142860,0.517241379310145,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7187,7200,7202,7215,0.503448275861834,0.564285714285699,0.510344827585989,0.557142857142860,0.510344827585989,0.571428571428537,0.517241379310145,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7188,7201,7203,7216,0.503448275861834,0.578571428571396,0.510344827585989,0.571428571428537,0.510344827585989,0.585714285714255,0.517241379310145,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285717,0.000000000000000,2 -1446,7189,7202,7217,0.510344827585989,0.600000000000000,0.503448275861834,0.592857142857127,0.510344827585989,0.585714285714255,0.517241379310145,0.592857142857127,0.000000000000000,0.013793103448311,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448311,0.014285714285745,-0.000000000000000,2 -6586,7190,7205,7218,0.524137931034299,0.400000000000000,0.517241379310145,0.407142857142878,0.524137931034299,0.414285714285756,0.531034482758453,0.407142857142878,-0.000000000000000,-0.013793103448308,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448308,0.014285714285756,-0.000000000000000,2 -7191,7204,7206,7219,0.517241379310145,0.421428571428632,0.524137931034299,0.414285714285756,0.524137931034299,0.428571428571509,0.531034482758453,0.421428571428633,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.014285714285753,0.000000000000000,2 -7192,7205,7207,7220,0.517241379310145,0.435714285714389,0.524137931034299,0.428571428571509,0.524137931034299,0.442857142857270,0.531034482758453,0.435714285714389,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285761,0.000000000000000,2 -7193,7206,7208,7221,0.517241379310145,0.450000000000152,0.524137931034299,0.442857142857270,0.524137931034299,0.457142857143033,0.531034482758453,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285764,0.000000000000000,2 -7194,7207,7209,7222,0.517241379310145,0.464285714285914,0.524137931034299,0.457142857143033,0.524137931034299,0.471428571428794,0.531034482758453,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285761,0.000000000000000,2 -7195,7208,7210,7223,0.517241379310145,0.478571428571671,0.524137931034299,0.471428571428794,0.524137931034299,0.485714285714549,0.531034482758453,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285755,0.000000000000000,2 -7196,7209,7211,7224,0.517241379310145,0.492857142857421,0.524137931034299,0.485714285714549,0.524137931034299,0.500000000000292,0.531034482758453,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285744,-0.000000000000000,2 -7197,7210,7212,7225,0.517241379310145,0.507142857143102,0.524137931034299,0.500000000000292,0.524137931034299,0.514285714285912,0.531034482758453,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285620,0.000000000000000,2 -7198,7211,7213,7226,0.517241379310145,0.521428571428709,0.524137931034299,0.514285714285912,0.524137931034299,0.528571428571506,0.531034482758453,0.521428571428709,-0.014285714285594,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285594,0.000000000000000,2 -7199,7212,7214,7227,0.517241379310145,0.535714285714344,0.524137931034299,0.528571428571506,0.524137931034299,0.542857142857183,0.531034482758453,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285677,0.000000000000000,2 -7200,7213,7215,7228,0.517241379310145,0.550000000000021,0.524137931034299,0.542857142857183,0.524137931034299,0.557142857142860,0.531034482758453,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448308,-0.000000000000000,0.013793103448308,0.014285714285677,0.000000000000000,2 -7201,7214,7216,7229,0.517241379310145,0.564285714285699,0.524137931034299,0.557142857142860,0.524137931034299,0.571428571428537,0.531034482758453,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285677,0.000000000000000,2 -7202,7215,7217,7230,0.517241379310145,0.578571428571396,0.524137931034299,0.571428571428537,0.524137931034299,0.585714285714255,0.531034482758453,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448308,0.000000000000000,0.013793103448308,0.014285714285717,0.000000000000000,2 -1452,7203,7216,7231,0.524137931034299,0.600000000000000,0.517241379310145,0.592857142857127,0.524137931034299,0.585714285714255,0.531034482758453,0.592857142857127,0.000000000000000,0.013793103448308,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448308,0.014285714285746,-0.000000000000000,2 -6645,7204,7219,7232,0.537931034482601,0.400000000000000,0.531034482758453,0.407142857142878,0.537931034482601,0.414285714285756,0.544827586206749,0.407142857142878,-0.000000000000000,-0.013793103448296,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448296,0.014285714285756,0.000000000000000,2 -7205,7218,7220,7233,0.531034482758453,0.421428571428633,0.537931034482601,0.414285714285756,0.537931034482601,0.428571428571509,0.544827586206749,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285753,0.000000000000000,2 -7206,7219,7221,7234,0.531034482758453,0.435714285714389,0.537931034482601,0.428571428571509,0.537931034482601,0.442857142857270,0.544827586206749,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448297,0.014285714285761,-0.000000000000000,2 -7207,7220,7222,7235,0.531034482758453,0.450000000000152,0.537931034482601,0.442857142857270,0.537931034482601,0.457142857143033,0.544827586206749,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448297,0.000000000000000,0.013793103448296,0.014285714285764,0.000000000000000,2 -7208,7221,7223,7236,0.531034482758453,0.464285714285914,0.537931034482601,0.457142857143033,0.537931034482601,0.471428571428794,0.544827586206749,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285761,0.000000000000000,2 -7209,7222,7224,7237,0.531034482758453,0.478571428571671,0.537931034482601,0.471428571428794,0.537931034482601,0.485714285714549,0.544827586206749,0.478571428571671,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285755,0.000000000000000,2 -7210,7223,7225,7238,0.531034482758453,0.492857142857421,0.537931034482601,0.485714285714549,0.537931034482601,0.500000000000292,0.544827586206749,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285744,0.000000000000000,2 -7211,7224,7226,7239,0.531034482758453,0.507142857143102,0.537931034482601,0.500000000000292,0.537931034482601,0.514285714285912,0.544827586206749,0.507142857143102,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285620,0.000000000000000,2 -7212,7225,7227,7240,0.531034482758453,0.521428571428709,0.537931034482601,0.514285714285912,0.537931034482601,0.528571428571506,0.544827586206749,0.521428571428709,-0.014285714285594,-0.000000000000000,0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285593,0.000000000000000,2 -7213,7226,7228,7241,0.531034482758453,0.535714285714344,0.537931034482601,0.528571428571506,0.537931034482601,0.542857142857183,0.544827586206749,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285677,0.000000000000000,2 -7214,7227,7229,7242,0.531034482758453,0.550000000000021,0.537931034482601,0.542857142857183,0.537931034482601,0.557142857142860,0.544827586206749,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285677,0.000000000000000,2 -7215,7228,7230,7243,0.531034482758453,0.564285714285699,0.537931034482601,0.557142857142860,0.537931034482601,0.571428571428537,0.544827586206749,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448296,0.000000000000000,0.013793103448296,0.014285714285677,0.000000000000000,2 -7216,7229,7231,7244,0.531034482758453,0.578571428571396,0.537931034482601,0.571428571428537,0.537931034482601,0.585714285714255,0.544827586206749,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448296,-0.000000000000000,0.013793103448296,0.014285714285717,0.000000000000000,2 -1458,7217,7230,7245,0.537931034482601,0.600000000000000,0.531034482758453,0.592857142857127,0.537931034482601,0.585714285714255,0.544827586206749,0.592857142857127,0.000000000000000,0.013793103448296,-0.014285714285746,0.000000000000000,0.000000000000000,-0.013793103448296,0.014285714285745,-0.000000000000000,2 -6704,7218,7233,7246,0.551724137930900,0.400000000000000,0.544827586206749,0.407142857142878,0.551724137930900,0.414285714285756,0.558620689655051,0.407142857142878,-0.000000000000000,-0.013793103448302,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448302,0.014285714285756,0.000000000000000,2 -7219,7232,7234,7247,0.544827586206749,0.421428571428632,0.551724137930900,0.414285714285756,0.551724137930900,0.428571428571509,0.558620689655051,0.421428571428632,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285753,-0.000000000000000,2 -7220,7233,7235,7248,0.544827586206749,0.435714285714389,0.551724137930900,0.428571428571509,0.551724137930900,0.442857142857270,0.558620689655051,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285761,0.000000000000000,2 -7221,7234,7236,7249,0.544827586206749,0.450000000000152,0.551724137930900,0.442857142857270,0.551724137930900,0.457142857143033,0.558620689655051,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285764,0.000000000000000,2 -7222,7235,7237,7250,0.544827586206749,0.464285714285914,0.551724137930900,0.457142857143033,0.551724137930900,0.471428571428794,0.558620689655051,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285761,0.000000000000000,2 -7223,7236,7238,7251,0.544827586206749,0.478571428571671,0.551724137930900,0.471428571428794,0.551724137930900,0.485714285714549,0.558620689655051,0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448302,-0.000000000000000,0.013793103448302,0.014285714285755,0.000000000000000,2 -7224,7237,7239,7252,0.544827586206749,0.492857142857421,0.551724137930900,0.485714285714549,0.551724137930900,0.500000000000292,0.558620689655051,0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285743,-0.000000000000000,2 -7225,7238,7240,7253,0.544827586206749,0.507142857143102,0.551724137930900,0.500000000000292,0.551724137930900,0.514285714285912,0.558620689655051,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285620,0.000000000000000,2 -7226,7239,7241,7254,0.544827586206749,0.521428571428709,0.551724137930900,0.514285714285912,0.551724137930900,0.528571428571506,0.558620689655051,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285593,0.000000000000000,2 -7227,7240,7242,7255,0.544827586206749,0.535714285714344,0.551724137930900,0.528571428571506,0.551724137930900,0.542857142857183,0.558620689655051,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285677,0.000000000000000,2 -7228,7241,7243,7256,0.544827586206749,0.550000000000021,0.551724137930900,0.542857142857183,0.551724137930900,0.557142857142860,0.558620689655051,0.550000000000021,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285677,-0.000000000000000,2 -7229,7242,7244,7257,0.544827586206749,0.564285714285699,0.551724137930900,0.557142857142860,0.551724137930900,0.571428571428537,0.558620689655051,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285677,0.000000000000000,2 -7230,7243,7245,7258,0.544827586206749,0.578571428571396,0.551724137930900,0.571428571428537,0.551724137930900,0.585714285714255,0.558620689655051,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448302,0.000000000000000,0.013793103448302,0.014285714285717,0.000000000000000,2 -1464,7231,7244,7259,0.551724137930900,0.600000000000000,0.544827586206749,0.592857142857127,0.551724137930900,0.585714285714255,0.558620689655051,0.592857142857127,0.000000000000000,0.013793103448302,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448302,0.014285714285745,-0.000000000000000,2 -6763,7232,7247,7260,0.565517241379205,0.400000000000000,0.558620689655051,0.407142857142878,0.565517241379205,0.414285714285756,0.572413793103360,0.407142857142878,-0.000000000000000,-0.013793103448309,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285756,0.000000000000000,2 -7233,7246,7248,7261,0.558620689655051,0.421428571428632,0.565517241379205,0.414285714285756,0.565517241379206,0.428571428571509,0.572413793103360,0.421428571428632,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285753,-0.000000000000000,2 -7234,7247,7249,7262,0.558620689655051,0.435714285714389,0.565517241379206,0.428571428571509,0.565517241379205,0.442857142857270,0.572413793103360,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -7235,7248,7250,7263,0.558620689655051,0.450000000000152,0.565517241379205,0.442857142857270,0.565517241379205,0.457142857143033,0.572413793103360,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,-0.000000000000000,2 -7236,7249,7251,7264,0.558620689655051,0.464285714285914,0.565517241379205,0.457142857143033,0.565517241379205,0.471428571428794,0.572413793103360,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -7237,7250,7252,7265,0.558620689655051,0.478571428571672,0.565517241379205,0.471428571428794,0.565517241379205,0.485714285714549,0.572413793103360,0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285755,-0.000000000000000,2 -7238,7251,7253,7266,0.558620689655051,0.492857142857421,0.565517241379205,0.485714285714549,0.565517241379205,0.500000000000292,0.572413793103360,0.492857142857421,-0.014285714285743,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285744,0.000000000000000,2 -7239,7252,7254,7267,0.558620689655051,0.507142857143102,0.565517241379205,0.500000000000292,0.565517241379205,0.514285714285912,0.572413793103360,0.507142857143102,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285620,0.000000000000000,2 -7240,7253,7255,7268,0.558620689655051,0.521428571428709,0.565517241379205,0.514285714285912,0.565517241379205,0.528571428571506,0.572413793103360,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285593,0.000000000000000,2 -7241,7254,7256,7269,0.558620689655051,0.535714285714344,0.565517241379205,0.528571428571506,0.565517241379205,0.542857142857183,0.572413793103360,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -7242,7255,7257,7270,0.558620689655051,0.550000000000021,0.565517241379205,0.542857142857183,0.565517241379205,0.557142857142860,0.572413793103360,0.550000000000021,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -7243,7256,7258,7271,0.558620689655051,0.564285714285699,0.565517241379205,0.557142857142860,0.565517241379205,0.571428571428537,0.572413793103360,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -7244,7257,7259,7272,0.558620689655051,0.578571428571396,0.565517241379205,0.571428571428537,0.565517241379205,0.585714285714255,0.572413793103360,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 -1470,7245,7258,7273,0.565517241379205,0.600000000000000,0.558620689655051,0.592857142857127,0.565517241379205,0.585714285714255,0.572413793103360,0.592857142857127,0.000000000000000,0.013793103448309,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285745,-0.000000000000000,2 -6822,7246,7261,7274,0.579310344827519,0.400000000000000,0.572413793103360,0.407142857142878,0.579310344827519,0.414285714285756,0.586206896551678,0.407142857142878,-0.000000000000000,-0.013793103448318,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448318,0.014285714285756,0.000000000000000,2 -7247,7260,7262,7275,0.572413793103360,0.421428571428632,0.579310344827519,0.414285714285756,0.579310344827519,0.428571428571509,0.586206896551678,0.421428571428632,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285753,0.000000000000000,2 -7248,7261,7263,7276,0.572413793103360,0.435714285714389,0.579310344827519,0.428571428571509,0.579310344827519,0.442857142857270,0.586206896551678,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.014285714285761,0.000000000000000,2 -7249,7262,7264,7277,0.572413793103360,0.450000000000152,0.579310344827519,0.442857142857270,0.579310344827519,0.457142857143033,0.586206896551678,0.450000000000152,-0.014285714285764,0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285764,0.000000000000000,2 -7250,7263,7265,7278,0.572413793103360,0.464285714285914,0.579310344827519,0.457142857143033,0.579310344827519,0.471428571428794,0.586206896551678,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285761,-0.000000000000000,2 -7251,7264,7266,7279,0.572413793103360,0.478571428571672,0.579310344827519,0.471428571428794,0.579310344827519,0.485714285714549,0.586206896551678,0.478571428571671,-0.014285714285755,0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285755,0.000000000000000,2 -7252,7265,7267,7280,0.572413793103360,0.492857142857421,0.579310344827519,0.485714285714549,0.579310344827519,0.500000000000292,0.586206896551678,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285744,0.000000000000000,2 -7253,7266,7268,7281,0.572413793103360,0.507142857143102,0.579310344827519,0.500000000000292,0.579310344827519,0.514285714285912,0.586206896551678,0.507142857143102,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285620,0.000000000000000,2 -7254,7267,7269,7282,0.572413793103360,0.521428571428709,0.579310344827519,0.514285714285912,0.579310344827519,0.528571428571506,0.586206896551678,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285593,0.000000000000000,2 -7255,7268,7270,7283,0.572413793103360,0.535714285714344,0.579310344827519,0.528571428571506,0.579310344827519,0.542857142857183,0.586206896551678,0.535714285714344,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448318,-0.000000000000000,0.013793103448318,0.014285714285677,0.000000000000000,2 -7256,7269,7271,7284,0.572413793103360,0.550000000000021,0.579310344827519,0.542857142857183,0.579310344827519,0.557142857142860,0.586206896551678,0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285677,0.000000000000000,2 -7257,7270,7272,7285,0.572413793103360,0.564285714285699,0.579310344827519,0.557142857142860,0.579310344827519,0.571428571428537,0.586206896551678,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285677,0.000000000000000,2 -7258,7271,7273,7286,0.572413793103360,0.578571428571396,0.579310344827519,0.571428571428537,0.579310344827519,0.585714285714255,0.586206896551678,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448318,0.000000000000000,0.013793103448318,0.014285714285717,0.000000000000000,2 -1476,7259,7272,7287,0.579310344827519,0.600000000000000,0.572413793103360,0.592857142857127,0.579310344827519,0.585714285714255,0.586206896551678,0.592857142857127,0.000000000000000,0.013793103448318,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448318,0.014285714285746,-0.000000000000000,2 -1276,6881,7260,7275,0.600000000000000,0.407142857142878,0.593103448275839,0.400000000000000,0.586206896551678,0.407142857142878,0.593103448275839,0.414285714285756,0.014285714285756,0.000000000000000,0.000000000000000,-0.013793103448322,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448322,2 -1277,7261,7274,7276,0.600000000000000,0.421428571428633,0.586206896551678,0.421428571428632,0.593103448275839,0.414285714285756,0.593103448275839,0.428571428571509,0.014285714285753,-0.000000000000000,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1278,7262,7275,7277,0.600000000000000,0.435714285714389,0.586206896551678,0.435714285714389,0.593103448275839,0.428571428571509,0.593103448275839,0.442857142857270,0.014285714285761,-0.000000000000000,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1279,7263,7276,7278,0.600000000000000,0.450000000000152,0.586206896551678,0.450000000000152,0.593103448275839,0.442857142857270,0.593103448275839,0.457142857143034,0.014285714285764,-0.000000000000000,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1280,7264,7277,7279,0.600000000000000,0.464285714285914,0.586206896551678,0.464285714285914,0.593103448275839,0.457142857143034,0.593103448275839,0.471428571428794,0.014285714285761,-0.000000000000000,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1281,7265,7278,7280,0.600000000000000,0.478571428571672,0.586206896551678,0.478571428571671,0.593103448275839,0.471428571428794,0.593103448275839,0.485714285714549,0.014285714285754,-0.000000000000000,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1282,7266,7279,7281,0.600000000000000,0.492857142857421,0.586206896551678,0.492857142857421,0.593103448275839,0.485714285714549,0.593103448275839,0.500000000000293,0.014285714285744,-0.000000000000000,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1283,7267,7280,7282,0.600000000000000,0.507142857143103,0.586206896551678,0.507142857143102,0.593103448275839,0.500000000000293,0.593103448275839,0.514285714285912,0.014285714285620,-0.000000000000000,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1284,7268,7281,7283,0.600000000000000,0.521428571428709,0.586206896551678,0.521428571428709,0.593103448275839,0.514285714285912,0.593103448275839,0.528571428571506,0.014285714285593,-0.000000000000000,-0.014285714285593,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1285,7269,7282,7284,0.600000000000000,0.535714285714345,0.586206896551678,0.535714285714344,0.593103448275839,0.528571428571506,0.593103448275839,0.542857142857183,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1286,7270,7283,7285,0.600000000000000,0.550000000000022,0.586206896551678,0.550000000000022,0.593103448275839,0.542857142857183,0.593103448275839,0.557142857142860,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1287,7271,7284,7286,0.600000000000000,0.564285714285699,0.586206896551678,0.564285714285699,0.593103448275839,0.557142857142860,0.593103448275839,0.571428571428537,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1288,7272,7285,7287,0.600000000000000,0.578571428571396,0.586206896551678,0.578571428571396,0.593103448275839,0.571428571428537,0.593103448275839,0.585714285714255,0.014285714285717,-0.000000000000000,-0.014285714285717,-0.000000000000000,0.000000000000000,-0.013793103448322,-0.000000000000000,0.013793103448322,2 -1289,1482,7273,7286,0.600000000000000,0.592857142857127,0.593103448275839,0.600000000000000,0.586206896551678,0.592857142857127,0.593103448275839,0.585714285714255,0.014285714285745,-0.000000000000000,-0.000000000000000,0.013793103448322,-0.014285714285746,0.000000000000000,0.000000000000000,-0.013793103448322,2 -2228,7289,7302,8099,-0.200000000000000,0.407142857142878,-0.193103448275876,0.414285714285756,-0.186206896551752,0.407142857142878,-0.193103448275876,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448248,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448248,2 -2229,7288,7290,7303,-0.200000000000000,0.421428571428633,-0.193103448275876,0.414285714285756,-0.193103448275876,0.428571428571509,-0.186206896551752,0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285753,0.000000000000000,2 -2230,7289,7291,7304,-0.200000000000000,0.435714285714389,-0.193103448275876,0.428571428571509,-0.193103448275876,0.442857142857270,-0.186206896551752,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285761,0.000000000000000,2 -2231,7290,7292,7305,-0.200000000000000,0.450000000000152,-0.193103448275876,0.442857142857270,-0.193103448275876,0.457142857143034,-0.186206896551752,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285764,0.000000000000000,2 -2232,7291,7293,7306,-0.200000000000000,0.464285714285914,-0.193103448275876,0.457142857143034,-0.193103448275876,0.471428571428794,-0.186206896551752,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285761,0.000000000000000,2 -2233,7292,7294,7307,-0.200000000000000,0.478571428571672,-0.193103448275876,0.471428571428794,-0.193103448275876,0.485714285714549,-0.186206896551753,0.478571428571672,-0.014285714285754,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448247,0.014285714285754,0.000000000000000,2 -2234,7293,7295,7308,-0.200000000000000,0.492857142857421,-0.193103448275876,0.485714285714549,-0.193103448275876,0.500000000000293,-0.186206896551753,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448248,0.014285714285744,-0.000000000000000,2 -2235,7294,7296,7309,-0.200000000000000,0.507142857143103,-0.193103448275876,0.500000000000293,-0.193103448275876,0.514285714285913,-0.186206896551752,0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285620,0.000000000000000,2 -2236,7295,7297,7310,-0.200000000000000,0.521428571428709,-0.193103448275876,0.514285714285913,-0.193103448275876,0.528571428571506,-0.186206896551753,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448247,0.014285714285593,0.000000000000000,2 -2237,7296,7298,7311,-0.200000000000000,0.535714285714345,-0.193103448275876,0.528571428571506,-0.193103448275876,0.542857142857183,-0.186206896551753,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448247,0.000000000000000,0.013793103448248,0.014285714285677,-0.000000000000000,2 -2238,7297,7299,7312,-0.200000000000000,0.550000000000022,-0.193103448275876,0.542857142857183,-0.193103448275876,0.557142857142860,-0.186206896551752,0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285677,0.000000000000000,2 -2239,7298,7300,7313,-0.200000000000000,0.564285714285699,-0.193103448275876,0.557142857142860,-0.193103448275876,0.571428571428537,-0.186206896551752,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285677,0.000000000000000,2 -2240,7299,7301,7314,-0.200000000000000,0.578571428571396,-0.193103448275876,0.571428571428537,-0.193103448275876,0.585714285714255,-0.186206896551752,0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448248,0.000000000000000,0.013793103448248,0.014285714285717,0.000000000000000,2 -1488,2241,7300,7315,-0.193103448275876,0.600000000000000,-0.200000000000000,0.592857142857127,-0.193103448275876,0.585714285714255,-0.186206896551752,0.592857142857127,0.000000000000000,0.013793103448248,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448248,0.014285714285745,-0.000000000000000,2 -7288,7303,7316,8085,-0.186206896551752,0.407142857142878,-0.179310344827634,0.414285714285756,-0.172413793103516,0.407142857142878,-0.179310344827634,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 -7289,7302,7304,7317,-0.186206896551752,0.421428571428633,-0.179310344827634,0.414285714285756,-0.179310344827634,0.428571428571509,-0.172413793103516,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 -7290,7303,7305,7318,-0.186206896551752,0.435714285714389,-0.179310344827634,0.428571428571509,-0.179310344827634,0.442857142857270,-0.172413793103516,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448236,0.014285714285761,0.000000000000000,2 -7291,7304,7306,7319,-0.186206896551752,0.450000000000152,-0.179310344827634,0.442857142857270,-0.179310344827634,0.457142857143034,-0.172413793103516,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448236,-0.000000000000000,0.013793103448237,0.014285714285764,-0.000000000000000,2 -7292,7305,7307,7320,-0.186206896551752,0.464285714285914,-0.179310344827634,0.457142857143034,-0.179310344827634,0.471428571428794,-0.172413793103516,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 -7293,7306,7308,7321,-0.186206896551753,0.478571428571672,-0.179310344827634,0.471428571428794,-0.179310344827634,0.485714285714549,-0.172413793103516,0.478571428571672,-0.014285714285754,-0.000000000000000,0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285754,0.000000000000000,2 -7294,7307,7309,7322,-0.186206896551753,0.492857142857421,-0.179310344827634,0.485714285714549,-0.179310344827634,0.500000000000293,-0.172413793103516,0.492857142857421,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,-0.000000000000000,2 -7295,7308,7310,7323,-0.186206896551752,0.507142857143103,-0.179310344827634,0.500000000000293,-0.179310344827634,0.514285714285913,-0.172413793103516,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,0.000000000000000,2 -7296,7309,7311,7324,-0.186206896551753,0.521428571428709,-0.179310344827634,0.514285714285913,-0.179310344827634,0.528571428571506,-0.172413793103516,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 -7297,7310,7312,7325,-0.186206896551753,0.535714285714345,-0.179310344827634,0.528571428571506,-0.179310344827634,0.542857142857183,-0.172413793103516,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,-0.000000000000000,2 -7298,7311,7313,7326,-0.186206896551752,0.550000000000022,-0.179310344827634,0.542857142857183,-0.179310344827634,0.557142857142860,-0.172413793103516,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7299,7312,7314,7327,-0.186206896551752,0.564285714285699,-0.179310344827634,0.557142857142860,-0.179310344827634,0.571428571428537,-0.172413793103516,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7300,7313,7315,7328,-0.186206896551752,0.578571428571396,-0.179310344827634,0.571428571428537,-0.179310344827634,0.585714285714255,-0.172413793103516,0.578571428571396,-0.014285714285717,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 -1494,7301,7314,7329,-0.179310344827634,0.600000000000000,-0.186206896551752,0.592857142857127,-0.179310344827634,0.585714285714255,-0.172413793103516,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 -7302,7317,7330,8071,-0.172413793103516,0.407142857142878,-0.165517241379389,0.414285714285756,-0.158620689655262,0.407142857142878,-0.165517241379389,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448254,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448254,2 -7303,7316,7318,7331,-0.172413793103516,0.421428571428633,-0.165517241379389,0.414285714285756,-0.165517241379389,0.428571428571509,-0.158620689655262,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285753,0.000000000000000,2 -7304,7317,7319,7332,-0.172413793103516,0.435714285714389,-0.165517241379389,0.428571428571509,-0.165517241379389,0.442857142857270,-0.158620689655262,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 -7305,7318,7320,7333,-0.172413793103516,0.450000000000152,-0.165517241379389,0.442857142857270,-0.165517241379389,0.457142857143034,-0.158620689655262,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285764,0.000000000000000,2 -7306,7319,7321,7334,-0.172413793103516,0.464285714285914,-0.165517241379389,0.457142857143034,-0.165517241379389,0.471428571428795,-0.158620689655262,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285761,0.000000000000000,2 -7307,7320,7322,7335,-0.172413793103516,0.478571428571672,-0.165517241379389,0.471428571428795,-0.165517241379389,0.485714285714549,-0.158620689655262,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285754,-0.000000000000000,2 -7308,7321,7323,7336,-0.172413793103516,0.492857142857421,-0.165517241379389,0.485714285714549,-0.165517241379389,0.500000000000293,-0.158620689655262,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285744,0.000000000000000,2 -7309,7322,7324,7337,-0.172413793103516,0.507142857143103,-0.165517241379389,0.500000000000293,-0.165517241379389,0.514285714285913,-0.158620689655262,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285620,0.000000000000000,2 -7310,7323,7325,7338,-0.172413793103516,0.521428571428709,-0.165517241379389,0.514285714285913,-0.165517241379389,0.528571428571506,-0.158620689655262,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285593,0.000000000000000,2 -7311,7324,7326,7339,-0.172413793103516,0.535714285714345,-0.165517241379389,0.528571428571506,-0.165517241379389,0.542857142857183,-0.158620689655262,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 -7312,7325,7327,7340,-0.172413793103516,0.550000000000022,-0.165517241379389,0.542857142857183,-0.165517241379389,0.557142857142860,-0.158620689655262,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,-0.000000000000000,2 -7313,7326,7328,7341,-0.172413793103516,0.564285714285699,-0.165517241379389,0.557142857142860,-0.165517241379389,0.571428571428537,-0.158620689655262,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285677,0.000000000000000,2 -7314,7327,7329,7342,-0.172413793103516,0.578571428571396,-0.165517241379389,0.571428571428537,-0.165517241379389,0.585714285714255,-0.158620689655262,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448254,0.000000000000000,0.013793103448254,0.014285714285717,0.000000000000000,2 -1500,7315,7328,7343,-0.165517241379389,0.600000000000000,-0.172413793103516,0.592857142857127,-0.165517241379389,0.585714285714255,-0.158620689655262,0.592857142857127,0.000000000000000,0.013793103448254,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448254,0.014285714285745,-0.000000000000000,2 -7316,7331,7344,8057,-0.158620689655262,0.407142857142878,-0.151724137931136,0.414285714285756,-0.144827586207010,0.407142857142878,-0.151724137931136,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448251,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448251,2 -7317,7330,7332,7345,-0.158620689655262,0.421428571428633,-0.151724137931136,0.414285714285756,-0.151724137931136,0.428571428571509,-0.144827586207010,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.014285714285753,0.000000000000000,2 -7318,7331,7333,7346,-0.158620689655262,0.435714285714389,-0.151724137931136,0.428571428571509,-0.151724137931136,0.442857142857270,-0.144827586207010,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448251,0.014285714285761,0.000000000000000,2 -7319,7332,7334,7347,-0.158620689655262,0.450000000000152,-0.151724137931136,0.442857142857270,-0.151724137931136,0.457142857143034,-0.144827586207010,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.014285714285764,0.000000000000000,2 -7320,7333,7335,7348,-0.158620689655262,0.464285714285914,-0.151724137931136,0.457142857143034,-0.151724137931136,0.471428571428794,-0.144827586207010,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448252,0.014285714285761,0.000000000000000,2 -7321,7334,7336,7349,-0.158620689655262,0.478571428571672,-0.151724137931136,0.471428571428794,-0.151724137931136,0.485714285714549,-0.144827586207010,0.478571428571672,-0.014285714285754,0.000000000000000,-0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448251,0.014285714285754,0.000000000000000,2 -7322,7335,7337,7350,-0.158620689655262,0.492857142857421,-0.151724137931136,0.485714285714549,-0.151724137931136,0.500000000000293,-0.144827586207010,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.014285714285744,0.000000000000000,2 -7323,7336,7338,7351,-0.158620689655262,0.507142857143103,-0.151724137931136,0.500000000000293,-0.151724137931136,0.514285714285913,-0.144827586207010,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.014285714285620,0.000000000000000,2 -7324,7337,7339,7352,-0.158620689655262,0.521428571428709,-0.151724137931136,0.514285714285913,-0.151724137931136,0.528571428571506,-0.144827586207010,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.014285714285593,0.000000000000000,2 -7325,7338,7340,7353,-0.158620689655262,0.535714285714345,-0.151724137931136,0.528571428571506,-0.151724137931136,0.542857142857183,-0.144827586207010,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448252,0.014285714285677,0.000000000000000,2 -7326,7339,7341,7354,-0.158620689655262,0.550000000000022,-0.151724137931136,0.542857142857183,-0.151724137931136,0.557142857142860,-0.144827586207010,0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448252,0.000000000000000,0.013793103448251,0.014285714285677,0.000000000000000,2 -7327,7340,7342,7355,-0.158620689655262,0.564285714285699,-0.151724137931136,0.557142857142860,-0.151724137931136,0.571428571428537,-0.144827586207010,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013793103448251,0.014285714285677,0.000000000000000,2 -7328,7341,7343,7356,-0.158620689655262,0.578571428571396,-0.151724137931136,0.571428571428537,-0.151724137931136,0.585714285714255,-0.144827586207010,0.578571428571396,-0.014285714285717,-0.000000000000000,0.000000000000000,-0.013793103448251,0.000000000000000,0.013793103448251,0.014285714285717,0.000000000000000,2 -1506,7329,7342,7357,-0.151724137931136,0.600000000000000,-0.158620689655262,0.592857142857127,-0.151724137931136,0.585714285714255,-0.144827586207010,0.592857142857127,0.000000000000000,0.013793103448251,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448251,0.014285714285745,-0.000000000000000,2 -7330,7345,7358,8043,-0.144827586207010,0.407142857142878,-0.137931034482892,0.414285714285756,-0.131034482758774,0.407142857142878,-0.137931034482892,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 -7331,7344,7346,7359,-0.144827586207010,0.421428571428633,-0.137931034482892,0.414285714285756,-0.137931034482892,0.428571428571509,-0.131034482758774,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 -7332,7345,7347,7360,-0.144827586207010,0.435714285714389,-0.137931034482892,0.428571428571509,-0.137931034482892,0.442857142857270,-0.131034482758774,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 -7333,7346,7348,7361,-0.144827586207010,0.450000000000152,-0.137931034482892,0.442857142857270,-0.137931034482892,0.457142857143034,-0.131034482758774,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 -7334,7347,7349,7362,-0.144827586207010,0.464285714285914,-0.137931034482892,0.457142857143034,-0.137931034482892,0.471428571428794,-0.131034482758774,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 -7335,7348,7350,7363,-0.144827586207010,0.478571428571672,-0.137931034482892,0.471428571428794,-0.137931034482892,0.485714285714549,-0.131034482758774,0.478571428571672,-0.014285714285754,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285754,0.000000000000000,2 -7336,7349,7351,7364,-0.144827586207010,0.492857142857421,-0.137931034482892,0.485714285714549,-0.137931034482892,0.500000000000293,-0.131034482758774,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 -7337,7350,7352,7365,-0.144827586207010,0.507142857143103,-0.137931034482892,0.500000000000293,-0.137931034482892,0.514285714285913,-0.131034482758774,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,0.000000000000000,2 -7338,7351,7353,7366,-0.144827586207010,0.521428571428709,-0.137931034482892,0.514285714285913,-0.137931034482892,0.528571428571506,-0.131034482758774,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 -7339,7352,7354,7367,-0.144827586207010,0.535714285714345,-0.137931034482892,0.528571428571506,-0.137931034482892,0.542857142857183,-0.131034482758774,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7340,7353,7355,7368,-0.144827586207010,0.550000000000022,-0.137931034482892,0.542857142857183,-0.137931034482892,0.557142857142860,-0.131034482758774,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7341,7354,7356,7369,-0.144827586207010,0.564285714285699,-0.137931034482892,0.557142857142860,-0.137931034482892,0.571428571428537,-0.131034482758774,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7342,7355,7357,7370,-0.144827586207010,0.578571428571396,-0.137931034482892,0.571428571428537,-0.137931034482892,0.585714285714255,-0.131034482758774,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 -1512,7343,7356,7371,-0.137931034482892,0.600000000000000,-0.144827586207010,0.592857142857127,-0.137931034482892,0.585714285714255,-0.131034482758774,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 -7344,7359,7372,8029,-0.131034482758774,0.407142857142878,-0.124137931034655,0.414285714285756,-0.117241379310537,0.407142857142878,-0.124137931034655,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 -7345,7358,7360,7373,-0.131034482758774,0.421428571428633,-0.124137931034655,0.414285714285756,-0.124137931034655,0.428571428571509,-0.117241379310537,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 -7346,7359,7361,7374,-0.131034482758774,0.435714285714389,-0.124137931034655,0.428571428571509,-0.124137931034655,0.442857142857270,-0.117241379310537,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 -7347,7360,7362,7375,-0.131034482758774,0.450000000000152,-0.124137931034655,0.442857142857270,-0.124137931034655,0.457142857143034,-0.117241379310537,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 -7348,7361,7363,7376,-0.131034482758774,0.464285714285914,-0.124137931034655,0.457142857143034,-0.124137931034655,0.471428571428794,-0.117241379310537,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 -7349,7362,7364,7377,-0.131034482758774,0.478571428571672,-0.124137931034655,0.471428571428794,-0.124137931034655,0.485714285714549,-0.117241379310537,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285754,0.000000000000000,2 -7350,7363,7365,7378,-0.131034482758774,0.492857142857421,-0.124137931034655,0.485714285714549,-0.124137931034655,0.500000000000293,-0.117241379310537,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 -7351,7364,7366,7379,-0.131034482758774,0.507142857143103,-0.124137931034655,0.500000000000293,-0.124137931034655,0.514285714285913,-0.117241379310537,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,0.000000000000000,2 -7352,7365,7367,7380,-0.131034482758774,0.521428571428709,-0.124137931034655,0.514285714285913,-0.124137931034655,0.528571428571506,-0.117241379310537,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 -7353,7366,7368,7381,-0.131034482758774,0.535714285714345,-0.124137931034655,0.528571428571506,-0.124137931034655,0.542857142857183,-0.117241379310537,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7354,7367,7369,7382,-0.131034482758774,0.550000000000022,-0.124137931034655,0.542857142857183,-0.124137931034655,0.557142857142860,-0.117241379310537,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7355,7368,7370,7383,-0.131034482758774,0.564285714285699,-0.124137931034655,0.557142857142860,-0.124137931034655,0.571428571428537,-0.117241379310537,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7356,7369,7371,7384,-0.131034482758774,0.578571428571396,-0.124137931034655,0.571428571428537,-0.124137931034655,0.585714285714255,-0.117241379310537,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 -1518,7357,7370,7385,-0.124137931034655,0.600000000000000,-0.131034482758774,0.592857142857127,-0.124137931034655,0.585714285714255,-0.117241379310537,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 -7358,7373,7386,8015,-0.117241379310537,0.407142857142878,-0.110344827586419,0.414285714285756,-0.103448275862300,0.407142857142878,-0.110344827586419,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 -7359,7372,7374,7387,-0.117241379310537,0.421428571428633,-0.110344827586419,0.414285714285756,-0.110344827586419,0.428571428571509,-0.103448275862300,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 -7360,7373,7375,7388,-0.117241379310537,0.435714285714389,-0.110344827586419,0.428571428571509,-0.110344827586419,0.442857142857270,-0.103448275862300,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 -7361,7374,7376,7389,-0.117241379310537,0.450000000000152,-0.110344827586419,0.442857142857270,-0.110344827586419,0.457142857143034,-0.103448275862300,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 -7362,7375,7377,7390,-0.117241379310537,0.464285714285914,-0.110344827586419,0.457142857143034,-0.110344827586419,0.471428571428794,-0.103448275862300,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 -7363,7376,7378,7391,-0.117241379310537,0.478571428571672,-0.110344827586419,0.471428571428794,-0.110344827586419,0.485714285714549,-0.103448275862300,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285755,0.000000000000000,2 -7364,7377,7379,7392,-0.117241379310537,0.492857142857421,-0.110344827586419,0.485714285714549,-0.110344827586419,0.500000000000293,-0.103448275862300,0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 -7365,7378,7380,7393,-0.117241379310537,0.507142857143103,-0.110344827586419,0.500000000000293,-0.110344827586419,0.514285714285913,-0.103448275862300,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,0.000000000000000,2 -7366,7379,7381,7394,-0.117241379310537,0.521428571428709,-0.110344827586419,0.514285714285913,-0.110344827586419,0.528571428571506,-0.103448275862300,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 -7367,7380,7382,7395,-0.117241379310537,0.535714285714345,-0.110344827586419,0.528571428571506,-0.110344827586419,0.542857142857183,-0.103448275862300,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7368,7381,7383,7396,-0.117241379310537,0.550000000000022,-0.110344827586419,0.542857142857183,-0.110344827586419,0.557142857142860,-0.103448275862300,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7369,7382,7384,7397,-0.117241379310537,0.564285714285699,-0.110344827586419,0.557142857142860,-0.110344827586419,0.571428571428537,-0.103448275862300,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7370,7383,7385,7398,-0.117241379310537,0.578571428571396,-0.110344827586419,0.571428571428537,-0.110344827586419,0.585714285714255,-0.103448275862300,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 -1524,7371,7384,7399,-0.110344827586419,0.600000000000000,-0.117241379310537,0.592857142857127,-0.110344827586419,0.585714285714255,-0.103448275862300,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 -7372,7387,7400,8001,-0.103448275862300,0.407142857142878,-0.096551724138182,0.414285714285756,-0.089655172414064,0.407142857142878,-0.096551724138182,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 -7373,7386,7388,7401,-0.103448275862300,0.421428571428633,-0.096551724138182,0.414285714285756,-0.096551724138182,0.428571428571509,-0.089655172414064,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 -7374,7387,7389,7402,-0.103448275862300,0.435714285714389,-0.096551724138182,0.428571428571509,-0.096551724138182,0.442857142857270,-0.089655172414064,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 -7375,7388,7390,7403,-0.103448275862300,0.450000000000152,-0.096551724138182,0.442857142857270,-0.096551724138182,0.457142857143034,-0.089655172414064,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 -7376,7389,7391,7404,-0.103448275862300,0.464285714285914,-0.096551724138182,0.457142857143034,-0.096551724138182,0.471428571428794,-0.089655172414064,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 -7377,7390,7392,7405,-0.103448275862300,0.478571428571672,-0.096551724138182,0.471428571428794,-0.096551724138182,0.485714285714549,-0.089655172414064,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285754,0.000000000000000,2 -7378,7391,7393,7406,-0.103448275862300,0.492857142857421,-0.096551724138182,0.485714285714549,-0.096551724138182,0.500000000000293,-0.089655172414064,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 -7379,7392,7394,7407,-0.103448275862300,0.507142857143103,-0.096551724138182,0.500000000000293,-0.096551724138182,0.514285714285913,-0.089655172414064,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,-0.000000000000000,2 -7380,7393,7395,7408,-0.103448275862300,0.521428571428709,-0.096551724138182,0.514285714285913,-0.096551724138182,0.528571428571506,-0.089655172414064,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,-0.000000000000000,2 -7381,7394,7396,7409,-0.103448275862300,0.535714285714345,-0.096551724138182,0.528571428571506,-0.096551724138182,0.542857142857183,-0.089655172414064,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7382,7395,7397,7410,-0.103448275862300,0.550000000000022,-0.096551724138182,0.542857142857183,-0.096551724138182,0.557142857142860,-0.089655172414064,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7383,7396,7398,7411,-0.103448275862300,0.564285714285699,-0.096551724138182,0.557142857142860,-0.096551724138182,0.571428571428537,-0.089655172414064,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7384,7397,7399,7412,-0.103448275862300,0.578571428571396,-0.096551724138182,0.571428571428537,-0.096551724138182,0.585714285714255,-0.089655172414064,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 -1530,7385,7398,7413,-0.096551724138182,0.600000000000000,-0.103448275862300,0.592857142857127,-0.096551724138182,0.585714285714255,-0.089655172414064,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 -7386,7401,7414,7987,-0.089655172414064,0.407142857142878,-0.082758620689945,0.414285714285756,-0.075862068965827,0.407142857142878,-0.082758620689945,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 -7387,7400,7402,7415,-0.089655172414064,0.421428571428633,-0.082758620689945,0.414285714285756,-0.082758620689945,0.428571428571509,-0.075862068965827,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 -7388,7401,7403,7416,-0.089655172414064,0.435714285714389,-0.082758620689945,0.428571428571509,-0.082758620689945,0.442857142857270,-0.075862068965827,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 -7389,7402,7404,7417,-0.089655172414064,0.450000000000152,-0.082758620689945,0.442857142857270,-0.082758620689945,0.457142857143034,-0.075862068965827,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 -7390,7403,7405,7418,-0.089655172414064,0.464285714285914,-0.082758620689945,0.457142857143034,-0.082758620689945,0.471428571428794,-0.075862068965827,0.464285714285914,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 -7391,7404,7406,7419,-0.089655172414064,0.478571428571672,-0.082758620689945,0.471428571428794,-0.082758620689945,0.485714285714549,-0.075862068965827,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285755,0.000000000000000,2 -7392,7405,7407,7420,-0.089655172414064,0.492857142857421,-0.082758620689945,0.485714285714549,-0.082758620689945,0.500000000000293,-0.075862068965827,0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 -7393,7406,7408,7421,-0.089655172414064,0.507142857143103,-0.082758620689945,0.500000000000293,-0.082758620689945,0.514285714285913,-0.075862068965827,0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,0.000000000000000,2 -7394,7407,7409,7422,-0.089655172414064,0.521428571428709,-0.082758620689945,0.514285714285913,-0.082758620689945,0.528571428571506,-0.075862068965827,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 -7395,7408,7410,7423,-0.089655172414064,0.535714285714345,-0.082758620689945,0.528571428571506,-0.082758620689945,0.542857142857183,-0.075862068965827,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7396,7409,7411,7424,-0.089655172414064,0.550000000000022,-0.082758620689945,0.542857142857183,-0.082758620689945,0.557142857142860,-0.075862068965827,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,-0.000000000000000,2 -7397,7410,7412,7425,-0.089655172414064,0.564285714285699,-0.082758620689945,0.557142857142860,-0.082758620689945,0.571428571428537,-0.075862068965827,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7398,7411,7413,7426,-0.089655172414064,0.578571428571396,-0.082758620689945,0.571428571428537,-0.082758620689945,0.585714285714255,-0.075862068965827,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 -1536,7399,7412,7427,-0.082758620689945,0.600000000000000,-0.089655172414064,0.592857142857127,-0.082758620689945,0.585714285714255,-0.075862068965827,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 -7400,7415,7428,7973,-0.075862068965827,0.407142857142878,-0.068965517241709,0.414285714285756,-0.062068965517591,0.407142857142878,-0.068965517241709,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448237,2 -7401,7414,7416,7429,-0.075862068965827,0.421428571428633,-0.068965517241709,0.414285714285756,-0.068965517241709,0.428571428571509,-0.062068965517591,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 -7402,7415,7417,7430,-0.075862068965827,0.435714285714389,-0.068965517241709,0.428571428571509,-0.068965517241709,0.442857142857270,-0.062068965517591,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 -7403,7416,7418,7431,-0.075862068965827,0.450000000000152,-0.068965517241709,0.442857142857270,-0.068965517241709,0.457142857143034,-0.062068965517591,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 -7404,7417,7419,7432,-0.075862068965827,0.464285714285914,-0.068965517241709,0.457142857143034,-0.068965517241709,0.471428571428794,-0.062068965517591,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 -7405,7418,7420,7433,-0.075862068965827,0.478571428571672,-0.068965517241709,0.471428571428794,-0.068965517241709,0.485714285714549,-0.062068965517591,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285754,0.000000000000000,2 -7406,7419,7421,7434,-0.075862068965827,0.492857142857421,-0.068965517241709,0.485714285714549,-0.068965517241709,0.500000000000293,-0.062068965517591,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 -7407,7420,7422,7435,-0.075862068965827,0.507142857143103,-0.068965517241709,0.500000000000293,-0.068965517241709,0.514285714285913,-0.062068965517591,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,-0.000000000000000,2 -7408,7421,7423,7436,-0.075862068965827,0.521428571428709,-0.068965517241709,0.514285714285913,-0.068965517241709,0.528571428571506,-0.062068965517591,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 -7409,7422,7424,7437,-0.075862068965827,0.535714285714345,-0.068965517241709,0.528571428571506,-0.068965517241709,0.542857142857183,-0.062068965517591,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,-0.000000000000000,2 -7410,7423,7425,7438,-0.075862068965827,0.550000000000022,-0.068965517241709,0.542857142857183,-0.068965517241709,0.557142857142860,-0.062068965517591,0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7411,7424,7426,7439,-0.075862068965827,0.564285714285699,-0.068965517241709,0.557142857142860,-0.068965517241709,0.571428571428537,-0.062068965517591,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,-0.000000000000000,2 -7412,7425,7427,7440,-0.075862068965827,0.578571428571396,-0.068965517241709,0.571428571428537,-0.068965517241709,0.585714285714255,-0.062068965517591,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 -1542,7413,7426,7441,-0.068965517241709,0.600000000000000,-0.075862068965827,0.592857142857127,-0.068965517241709,0.585714285714255,-0.062068965517591,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 -7414,7429,7442,7959,-0.062068965517591,0.407142857142878,-0.055172413793477,0.414285714285756,-0.048275862069362,0.407142857142878,-0.055172413793477,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448228,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448228,2 -7415,7428,7430,7443,-0.062068965517591,0.421428571428633,-0.055172413793477,0.414285714285756,-0.055172413793477,0.428571428571509,-0.048275862069362,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448228,-0.000000000000000,0.013793103448228,0.014285714285753,-0.000000000000000,2 -7416,7429,7431,7444,-0.062068965517591,0.435714285714389,-0.055172413793477,0.428571428571509,-0.055172413793477,0.442857142857270,-0.048275862069362,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448228,-0.000000000000000,0.013793103448228,0.014285714285761,0.000000000000000,2 -7417,7430,7432,7445,-0.062068965517591,0.450000000000152,-0.055172413793477,0.442857142857270,-0.055172413793477,0.457142857143034,-0.048275862069362,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285764,0.000000000000000,2 -7418,7431,7433,7446,-0.062068965517591,0.464285714285914,-0.055172413793477,0.457142857143034,-0.055172413793477,0.471428571428795,-0.048275862069362,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285761,-0.000000000000000,2 -7419,7432,7434,7447,-0.062068965517591,0.478571428571672,-0.055172413793477,0.471428571428795,-0.055172413793477,0.485714285714549,-0.048275862069362,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285754,0.000000000000000,2 -7420,7433,7435,7448,-0.062068965517591,0.492857142857421,-0.055172413793477,0.485714285714549,-0.055172413793477,0.500000000000293,-0.048275862069362,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285744,0.000000000000000,2 -7421,7434,7436,7449,-0.062068965517591,0.507142857143103,-0.055172413793477,0.500000000000293,-0.055172413793477,0.514285714285913,-0.048275862069362,0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285620,0.000000000000000,2 -7422,7435,7437,7450,-0.062068965517591,0.521428571428709,-0.055172413793477,0.514285714285913,-0.055172413793477,0.528571428571506,-0.048275862069362,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285593,0.000000000000000,2 -7423,7436,7438,7451,-0.062068965517591,0.535714285714345,-0.055172413793477,0.528571428571506,-0.055172413793477,0.542857142857183,-0.048275862069362,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285677,0.000000000000000,2 -7424,7437,7439,7452,-0.062068965517591,0.550000000000022,-0.055172413793477,0.542857142857183,-0.055172413793477,0.557142857142860,-0.048275862069362,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285677,-0.000000000000000,2 -7425,7438,7440,7453,-0.062068965517591,0.564285714285699,-0.055172413793477,0.557142857142860,-0.055172413793477,0.571428571428537,-0.048275862069362,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285677,0.000000000000000,2 -7426,7439,7441,7454,-0.062068965517591,0.578571428571396,-0.055172413793477,0.571428571428537,-0.055172413793477,0.585714285714255,-0.048275862069362,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013793103448228,0.014285714285717,0.000000000000000,2 -1548,7427,7440,7455,-0.055172413793477,0.600000000000000,-0.062068965517591,0.592857142857127,-0.055172413793477,0.585714285714255,-0.048275862069362,0.592857142857127,0.000000000000000,0.013793103448228,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448228,0.014285714285745,-0.000000000000000,2 -7428,7443,7456,7945,-0.048275862069362,0.407142857142878,-0.041379310345245,0.414285714285756,-0.034482758621128,0.407142857142878,-0.041379310345245,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448234,0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448234,2 -7429,7442,7444,7457,-0.048275862069362,0.421428571428633,-0.041379310345245,0.414285714285756,-0.041379310345245,0.428571428571509,-0.034482758621128,0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285753,0.000000000000000,2 -7430,7443,7445,7458,-0.048275862069362,0.435714285714389,-0.041379310345245,0.428571428571509,-0.041379310345245,0.442857142857270,-0.034482758621128,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285761,0.000000000000000,2 -7431,7444,7446,7459,-0.048275862069362,0.450000000000152,-0.041379310345245,0.442857142857270,-0.041379310345245,0.457142857143034,-0.034482758621128,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285764,-0.000000000000000,2 -7432,7445,7447,7460,-0.048275862069362,0.464285714285914,-0.041379310345245,0.457142857143034,-0.041379310345245,0.471428571428794,-0.034482758621128,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285761,0.000000000000000,2 -7433,7446,7448,7461,-0.048275862069362,0.478571428571672,-0.041379310345245,0.471428571428794,-0.041379310345245,0.485714285714549,-0.034482758621128,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448234,-0.000000000000000,0.013793103448234,0.014285714285755,-0.000000000000000,2 -7434,7447,7449,7462,-0.048275862069362,0.492857142857421,-0.041379310345245,0.485714285714549,-0.041379310345245,0.500000000000293,-0.034482758621128,0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285744,0.000000000000000,2 -7435,7448,7450,7463,-0.048275862069362,0.507142857143103,-0.041379310345245,0.500000000000293,-0.041379310345245,0.514285714285913,-0.034482758621128,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285620,0.000000000000000,2 -7436,7449,7451,7464,-0.048275862069362,0.521428571428709,-0.041379310345245,0.514285714285913,-0.041379310345245,0.528571428571506,-0.034482758621128,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285593,0.000000000000000,2 -7437,7450,7452,7465,-0.048275862069362,0.535714285714345,-0.041379310345245,0.528571428571506,-0.041379310345245,0.542857142857183,-0.034482758621128,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285677,-0.000000000000000,2 -7438,7451,7453,7466,-0.048275862069362,0.550000000000022,-0.041379310345245,0.542857142857183,-0.041379310345245,0.557142857142860,-0.034482758621128,0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285677,0.000000000000000,2 -7439,7452,7454,7467,-0.048275862069362,0.564285714285699,-0.041379310345245,0.557142857142860,-0.041379310345245,0.571428571428537,-0.034482758621128,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285677,-0.000000000000000,2 -7440,7453,7455,7468,-0.048275862069362,0.578571428571396,-0.041379310345245,0.571428571428537,-0.041379310345245,0.585714285714255,-0.034482758621128,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013793103448234,0.014285714285717,0.000000000000000,2 -1554,7441,7454,7469,-0.041379310345245,0.600000000000000,-0.048275862069362,0.592857142857127,-0.041379310345245,0.585714285714255,-0.034482758621128,0.592857142857127,0.000000000000000,0.013793103448234,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448234,0.014285714285745,-0.000000000000000,2 -7442,7457,7470,7931,-0.034482758621128,0.407142857142878,-0.027586206897010,0.414285714285756,-0.020689655172892,0.407142857142878,-0.027586206897010,0.400000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448237,2 -7443,7456,7458,7471,-0.034482758621128,0.421428571428633,-0.027586206897010,0.414285714285756,-0.027586206897010,0.428571428571509,-0.020689655172892,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 -7444,7457,7459,7472,-0.034482758621128,0.435714285714389,-0.027586206897010,0.428571428571509,-0.027586206897010,0.442857142857270,-0.020689655172892,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 -7445,7458,7460,7473,-0.034482758621128,0.450000000000152,-0.027586206897010,0.442857142857270,-0.027586206897010,0.457142857143034,-0.020689655172892,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285764,-0.000000000000000,2 -7446,7459,7461,7474,-0.034482758621128,0.464285714285914,-0.027586206897010,0.457142857143034,-0.027586206897010,0.471428571428794,-0.020689655172892,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,0.000000000000000,2 -7447,7460,7462,7475,-0.034482758621128,0.478571428571672,-0.027586206897010,0.471428571428794,-0.027586206897010,0.485714285714549,-0.020689655172892,0.478571428571672,-0.014285714285755,0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285754,-0.000000000000000,2 -7448,7461,7463,7476,-0.034482758621128,0.492857142857421,-0.027586206897010,0.485714285714549,-0.027586206897010,0.500000000000293,-0.020689655172892,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 -7449,7462,7464,7477,-0.034482758621128,0.507142857143103,-0.027586206897010,0.500000000000293,-0.027586206897010,0.514285714285913,-0.020689655172892,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,-0.000000000000000,2 -7450,7463,7465,7478,-0.034482758621128,0.521428571428709,-0.027586206897010,0.514285714285913,-0.027586206897010,0.528571428571506,-0.020689655172892,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,0.000000000000000,2 -7451,7464,7466,7479,-0.034482758621128,0.535714285714345,-0.027586206897010,0.528571428571506,-0.027586206897010,0.542857142857183,-0.020689655172892,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7452,7465,7467,7480,-0.034482758621128,0.550000000000022,-0.027586206897010,0.542857142857183,-0.027586206897010,0.557142857142860,-0.020689655172892,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7453,7466,7468,7481,-0.034482758621128,0.564285714285699,-0.027586206897010,0.557142857142860,-0.027586206897010,0.571428571428537,-0.020689655172892,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7454,7467,7469,7482,-0.034482758621128,0.578571428571396,-0.027586206897010,0.571428571428537,-0.027586206897010,0.585714285714255,-0.020689655172892,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,-0.000000000000000,2 -1560,7455,7468,7483,-0.027586206897010,0.600000000000000,-0.034482758621128,0.592857142857127,-0.027586206897010,0.585714285714255,-0.020689655172892,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,0.000000000000000,2 -7456,7471,7484,7917,-0.020689655172892,0.407142857142878,-0.013793103448773,0.414285714285756,-0.006896551724655,0.407142857142878,-0.013793103448773,0.400000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448237,0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448237,2 -7457,7470,7472,7485,-0.020689655172892,0.421428571428633,-0.013793103448773,0.414285714285756,-0.013793103448773,0.428571428571509,-0.006896551724655,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285753,0.000000000000000,2 -7458,7471,7473,7486,-0.020689655172892,0.435714285714389,-0.013793103448773,0.428571428571509,-0.013793103448773,0.442857142857270,-0.006896551724655,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 -7459,7472,7474,7487,-0.020689655172892,0.450000000000152,-0.013793103448773,0.442857142857270,-0.013793103448773,0.457142857143034,-0.006896551724655,0.450000000000152,-0.014285714285764,0.000000000000000,0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285764,0.000000000000000,2 -7460,7473,7475,7488,-0.020689655172892,0.464285714285914,-0.013793103448773,0.457142857143034,-0.013793103448773,0.471428571428794,-0.006896551724655,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285761,-0.000000000000000,2 -7461,7474,7476,7489,-0.020689655172892,0.478571428571672,-0.013793103448773,0.471428571428794,-0.013793103448773,0.485714285714549,-0.006896551724655,0.478571428571672,-0.014285714285754,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285754,0.000000000000000,2 -7462,7475,7477,7490,-0.020689655172892,0.492857142857421,-0.013793103448773,0.485714285714549,-0.013793103448773,0.500000000000293,-0.006896551724655,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285744,0.000000000000000,2 -7463,7476,7478,7491,-0.020689655172892,0.507142857143103,-0.013793103448773,0.500000000000293,-0.013793103448773,0.514285714285913,-0.006896551724655,0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285620,0.000000000000000,2 -7464,7477,7479,7492,-0.020689655172892,0.521428571428709,-0.013793103448773,0.514285714285913,-0.013793103448773,0.528571428571506,-0.006896551724655,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285593,-0.000000000000000,2 -7465,7478,7480,7493,-0.020689655172892,0.535714285714345,-0.013793103448773,0.528571428571506,-0.013793103448773,0.542857142857183,-0.006896551724655,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7466,7479,7481,7494,-0.020689655172892,0.550000000000022,-0.013793103448773,0.542857142857183,-0.013793103448773,0.557142857142860,-0.006896551724655,0.550000000000022,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,-0.000000000000000,2 -7467,7480,7482,7495,-0.020689655172892,0.564285714285699,-0.013793103448773,0.557142857142860,-0.013793103448773,0.571428571428537,-0.006896551724655,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285677,0.000000000000000,2 -7468,7481,7483,7496,-0.020689655172892,0.578571428571396,-0.013793103448773,0.571428571428537,-0.013793103448773,0.585714285714255,-0.006896551724655,0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013793103448237,0.014285714285717,0.000000000000000,2 -1566,7469,7482,7497,-0.013793103448773,0.600000000000000,-0.020689655172892,0.592857142857127,-0.013793103448773,0.585714285714255,-0.006896551724655,0.592857142857127,0.000000000000000,0.013793103448237,-0.014285714285745,-0.000000000000000,-0.000000000000000,-0.013793103448237,0.014285714285745,-0.000000000000000,2 -7470,7485,7498,7903,-0.006896551724655,0.407142857142878,-0.000000000000518,0.414285714285756,0.006896551723618,0.407142857142878,-0.000000000000518,0.400000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448274,0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448274,2 -7471,7484,7486,7499,-0.006896551724655,0.421428571428633,-0.000000000000518,0.414285714285756,-0.000000000000518,0.428571428571509,0.006896551723618,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285753,-0.000000000000000,2 -7472,7485,7487,7500,-0.006896551724655,0.435714285714389,-0.000000000000518,0.428571428571509,-0.000000000000518,0.442857142857270,0.006896551723618,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285761,0.000000000000000,2 -7473,7486,7488,7501,-0.006896551724655,0.450000000000152,-0.000000000000518,0.442857142857270,-0.000000000000518,0.457142857143034,0.006896551723618,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285764,0.000000000000000,2 -7474,7487,7489,7502,-0.006896551724655,0.464285714285914,-0.000000000000518,0.457142857143034,-0.000000000000518,0.471428571428794,0.006896551723618,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285761,-0.000000000000000,2 -7475,7488,7490,7503,-0.006896551724655,0.478571428571672,-0.000000000000518,0.471428571428794,-0.000000000000518,0.485714285714549,0.006896551723618,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285754,0.000000000000000,2 -7476,7489,7491,7504,-0.006896551724655,0.492857142857421,-0.000000000000518,0.485714285714549,-0.000000000000518,0.500000000000293,0.006896551723618,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285744,-0.000000000000000,2 -7477,7490,7492,7505,-0.006896551724655,0.507142857143103,-0.000000000000518,0.500000000000293,-0.000000000000518,0.514285714285913,0.006896551723618,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285620,0.000000000000000,2 -7478,7491,7493,7506,-0.006896551724655,0.521428571428709,-0.000000000000518,0.514285714285913,-0.000000000000518,0.528571428571506,0.006896551723618,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285593,0.000000000000000,2 -7479,7492,7494,7507,-0.006896551724655,0.535714285714345,-0.000000000000518,0.528571428571506,-0.000000000000518,0.542857142857183,0.006896551723618,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285677,-0.000000000000000,2 -7480,7493,7495,7508,-0.006896551724655,0.550000000000022,-0.000000000000518,0.542857142857183,-0.000000000000518,0.557142857142860,0.006896551723618,0.550000000000022,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285677,0.000000000000000,2 -7481,7494,7496,7509,-0.006896551724655,0.564285714285699,-0.000000000000518,0.557142857142860,-0.000000000000518,0.571428571428537,0.006896551723618,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285677,-0.000000000000000,2 -7482,7495,7497,7510,-0.006896551724655,0.578571428571396,-0.000000000000518,0.571428571428537,-0.000000000000518,0.585714285714255,0.006896551723618,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013793103448274,0.014285714285717,0.000000000000000,2 -1572,7483,7496,7511,-0.000000000000518,0.600000000000000,-0.006896551724655,0.592857142857127,-0.000000000000518,0.585714285714255,0.006896551723618,0.592857142857127,0.000000000000000,0.013793103448274,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448274,0.014285714285745,-0.000000000000000,2 -7484,7499,7512,7889,0.006896551723618,0.407142857142878,0.013793103447775,0.414285714285756,0.020689655171931,0.407142857142878,0.013793103447775,0.400000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448313,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448313,2 -7485,7498,7500,7513,0.006896551723618,0.421428571428633,0.013793103447775,0.414285714285756,0.013793103447775,0.428571428571509,0.020689655171931,0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285753,-0.000000000000000,2 -7486,7499,7501,7514,0.006896551723618,0.435714285714389,0.013793103447775,0.428571428571509,0.013793103447775,0.442857142857270,0.020689655171931,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 -7487,7500,7502,7515,0.006896551723618,0.450000000000152,0.013793103447775,0.442857142857270,0.013793103447775,0.457142857143034,0.020689655171931,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285764,-0.000000000000000,2 -7488,7501,7503,7516,0.006896551723618,0.464285714285914,0.013793103447775,0.457142857143034,0.013793103447775,0.471428571428794,0.020689655171931,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285761,0.000000000000000,2 -7489,7502,7504,7517,0.006896551723618,0.478571428571672,0.013793103447775,0.471428571428794,0.013793103447775,0.485714285714549,0.020689655171931,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285754,0.000000000000000,2 -7490,7503,7505,7518,0.006896551723618,0.492857142857421,0.013793103447775,0.485714285714549,0.013793103447775,0.500000000000293,0.020689655171931,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285744,-0.000000000000000,2 -7491,7504,7506,7519,0.006896551723618,0.507142857143103,0.013793103447775,0.500000000000293,0.013793103447775,0.514285714285913,0.020689655171931,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285620,0.000000000000000,2 -7492,7505,7507,7520,0.006896551723618,0.521428571428709,0.013793103447775,0.514285714285913,0.013793103447775,0.528571428571506,0.020689655171931,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285593,0.000000000000000,2 -7493,7506,7508,7521,0.006896551723618,0.535714285714345,0.013793103447775,0.528571428571506,0.013793103447775,0.542857142857183,0.020689655171931,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 -7494,7507,7509,7522,0.006896551723618,0.550000000000022,0.013793103447775,0.542857142857183,0.013793103447775,0.557142857142860,0.020689655171931,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,0.000000000000000,2 -7495,7508,7510,7523,0.006896551723618,0.564285714285699,0.013793103447775,0.557142857142860,0.013793103447775,0.571428571428537,0.020689655171931,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285677,-0.000000000000000,2 -7496,7509,7511,7524,0.006896551723618,0.578571428571396,0.013793103447775,0.571428571428537,0.013793103447775,0.585714285714255,0.020689655171931,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448313,0.000000000000000,0.013793103448313,0.014285714285717,0.000000000000000,2 -1578,7497,7510,7525,0.013793103447775,0.600000000000000,0.006896551723618,0.592857142857127,0.013793103447775,0.585714285714255,0.020689655171931,0.592857142857127,0.000000000000000,0.013793103448313,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448313,0.014285714285745,-0.000000000000000,2 -7498,7513,7526,7875,0.020689655171931,0.407142857142878,0.027586206896088,0.414285714285756,0.034482758620245,0.407142857142878,0.027586206896088,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448314,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448314,2 -7499,7512,7514,7527,0.020689655171931,0.421428571428633,0.027586206896088,0.414285714285756,0.027586206896088,0.428571428571509,0.034482758620245,0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448314,0.014285714285753,0.000000000000000,2 -7500,7513,7515,7528,0.020689655171931,0.435714285714389,0.027586206896088,0.428571428571509,0.027586206896088,0.442857142857270,0.034482758620245,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285761,0.000000000000000,2 -7501,7514,7516,7529,0.020689655171931,0.450000000000152,0.027586206896088,0.442857142857270,0.027586206896088,0.457142857143034,0.034482758620245,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448314,0.014285714285764,-0.000000000000000,2 -7502,7515,7517,7530,0.020689655171931,0.464285714285914,0.027586206896088,0.457142857143034,0.027586206896088,0.471428571428794,0.034482758620245,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285761,0.000000000000000,2 -7503,7516,7518,7531,0.020689655171931,0.478571428571672,0.027586206896088,0.471428571428794,0.027586206896088,0.485714285714549,0.034482758620245,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285754,0.000000000000000,2 -7504,7517,7519,7532,0.020689655171931,0.492857142857421,0.027586206896088,0.485714285714549,0.027586206896088,0.500000000000293,0.034482758620245,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285744,-0.000000000000000,2 -7505,7518,7520,7533,0.020689655171931,0.507142857143103,0.027586206896088,0.500000000000293,0.027586206896088,0.514285714285913,0.034482758620245,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285620,0.000000000000000,2 -7506,7519,7521,7534,0.020689655171931,0.521428571428709,0.027586206896088,0.514285714285913,0.027586206896088,0.528571428571506,0.034482758620245,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285593,0.000000000000000,2 -7507,7520,7522,7535,0.020689655171931,0.535714285714345,0.027586206896088,0.528571428571506,0.027586206896088,0.542857142857183,0.034482758620245,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 -7508,7521,7523,7536,0.020689655171931,0.550000000000022,0.027586206896088,0.542857142857183,0.027586206896088,0.557142857142860,0.034482758620245,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 -7509,7522,7524,7537,0.020689655171931,0.564285714285699,0.027586206896088,0.557142857142860,0.027586206896088,0.571428571428537,0.034482758620245,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,-0.000000000000000,2 -7510,7523,7525,7538,0.020689655171931,0.578571428571396,0.027586206896088,0.571428571428537,0.027586206896088,0.585714285714255,0.034482758620245,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285717,0.000000000000000,2 -1584,7511,7524,7539,0.027586206896088,0.600000000000000,0.020689655171931,0.592857142857127,0.027586206896088,0.585714285714255,0.034482758620245,0.592857142857127,0.000000000000000,0.013793103448314,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448314,0.014285714285745,-0.000000000000000,2 -7512,7527,7540,7861,0.034482758620245,0.407142857142878,0.041379310344402,0.414285714285756,0.048275862068559,0.407142857142878,0.041379310344402,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448314,0.014285714285756,-0.000000000000000,-0.000000000000000,-0.013793103448314,2 -7513,7526,7528,7541,0.034482758620245,0.421428571428633,0.041379310344402,0.414285714285756,0.041379310344402,0.428571428571509,0.048275862068559,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285753,0.000000000000000,2 -7514,7527,7529,7542,0.034482758620245,0.435714285714389,0.041379310344402,0.428571428571509,0.041379310344402,0.442857142857270,0.048275862068559,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285761,0.000000000000000,2 -7515,7528,7530,7543,0.034482758620245,0.450000000000152,0.041379310344402,0.442857142857270,0.041379310344402,0.457142857143034,0.048275862068559,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285764,0.000000000000000,2 -7516,7529,7531,7544,0.034482758620245,0.464285714285914,0.041379310344402,0.457142857143034,0.041379310344402,0.471428571428794,0.048275862068559,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285761,-0.000000000000000,2 -7517,7530,7532,7545,0.034482758620245,0.478571428571672,0.041379310344402,0.471428571428794,0.041379310344402,0.485714285714549,0.048275862068559,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013793103448314,0.014285714285755,0.000000000000000,2 -7518,7531,7533,7546,0.034482758620245,0.492857142857421,0.041379310344402,0.485714285714549,0.041379310344402,0.500000000000293,0.048275862068559,0.492857142857421,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285744,-0.000000000000000,2 -7519,7532,7534,7547,0.034482758620245,0.507142857143103,0.041379310344402,0.500000000000293,0.041379310344402,0.514285714285913,0.048275862068559,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285620,0.000000000000000,2 -7520,7533,7535,7548,0.034482758620245,0.521428571428709,0.041379310344402,0.514285714285913,0.041379310344402,0.528571428571506,0.048275862068559,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285593,0.000000000000000,2 -7521,7534,7536,7549,0.034482758620245,0.535714285714345,0.041379310344402,0.528571428571506,0.041379310344402,0.542857142857183,0.048275862068559,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,-0.000000000000000,2 -7522,7535,7537,7550,0.034482758620245,0.550000000000022,0.041379310344402,0.542857142857183,0.041379310344402,0.557142857142860,0.048275862068559,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 -7523,7536,7538,7551,0.034482758620245,0.564285714285699,0.041379310344402,0.557142857142860,0.041379310344402,0.571428571428537,0.048275862068559,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 -7524,7537,7539,7552,0.034482758620245,0.578571428571396,0.041379310344402,0.571428571428537,0.041379310344402,0.585714285714255,0.048275862068559,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285717,-0.000000000000000,2 -1590,7525,7538,7553,0.041379310344402,0.600000000000000,0.034482758620245,0.592857142857127,0.041379310344402,0.585714285714255,0.048275862068559,0.592857142857127,0.000000000000000,0.013793103448314,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448314,0.014285714285745,0.000000000000000,2 -7526,7541,7554,7847,0.048275862068559,0.407142857142878,0.055172413792716,0.414285714285756,0.062068965516873,0.407142857142878,0.055172413792716,0.400000000000000,-0.014285714285756,0.000000000000000,0.000000000000000,0.013793103448315,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448315,2 -7527,7540,7542,7555,0.048275862068559,0.421428571428633,0.055172413792716,0.414285714285756,0.055172413792716,0.428571428571509,0.062068965516873,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285753,0.000000000000000,2 -7528,7541,7543,7556,0.048275862068559,0.435714285714389,0.055172413792716,0.428571428571509,0.055172413792716,0.442857142857270,0.062068965516873,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285761,0.000000000000000,2 -7529,7542,7544,7557,0.048275862068559,0.450000000000152,0.055172413792716,0.442857142857270,0.055172413792716,0.457142857143034,0.062068965516873,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285764,0.000000000000000,2 -7530,7543,7545,7558,0.048275862068559,0.464285714285914,0.055172413792716,0.457142857143034,0.055172413792716,0.471428571428794,0.062068965516873,0.464285714285914,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285761,-0.000000000000000,2 -7531,7544,7546,7559,0.048275862068559,0.478571428571672,0.055172413792716,0.471428571428794,0.055172413792716,0.485714285714549,0.062068965516873,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285754,0.000000000000000,2 -7532,7545,7547,7560,0.048275862068559,0.492857142857421,0.055172413792716,0.485714285714549,0.055172413792716,0.500000000000293,0.062068965516873,0.492857142857421,-0.014285714285744,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285744,0.000000000000000,2 -7533,7546,7548,7561,0.048275862068559,0.507142857143103,0.055172413792716,0.500000000000293,0.055172413792716,0.514285714285913,0.062068965516873,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285620,-0.000000000000000,2 -7534,7547,7549,7562,0.048275862068559,0.521428571428709,0.055172413792716,0.514285714285913,0.055172413792716,0.528571428571506,0.062068965516873,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285593,0.000000000000000,2 -7535,7548,7550,7563,0.048275862068559,0.535714285714345,0.055172413792716,0.528571428571506,0.055172413792716,0.542857142857183,0.062068965516873,0.535714285714345,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 -7536,7549,7551,7564,0.048275862068559,0.550000000000022,0.055172413792716,0.542857142857183,0.055172413792716,0.557142857142860,0.062068965516873,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 -7537,7550,7552,7565,0.048275862068559,0.564285714285699,0.055172413792716,0.557142857142860,0.055172413792716,0.571428571428537,0.062068965516873,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,-0.000000000000000,2 -7538,7551,7553,7566,0.048275862068559,0.578571428571396,0.055172413792716,0.571428571428537,0.055172413792716,0.585714285714255,0.062068965516873,0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285717,0.000000000000000,2 -1596,7539,7552,7567,0.055172413792716,0.600000000000000,0.048275862068559,0.592857142857127,0.055172413792716,0.585714285714255,0.062068965516873,0.592857142857127,0.000000000000000,0.013793103448315,-0.014285714285745,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.014285714285745,-0.000000000000000,2 -7540,7555,7568,7833,0.062068965516873,0.407142857142878,0.068965517241032,0.414285714285756,0.075862068965190,0.407142857142878,0.068965517241032,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448317,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448317,2 -7541,7554,7556,7569,0.062068965516873,0.421428571428633,0.068965517241032,0.414285714285756,0.068965517241032,0.428571428571509,0.075862068965190,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,0.014285714285753,-0.000000000000000,2 -7542,7555,7557,7570,0.062068965516873,0.435714285714389,0.068965517241032,0.428571428571509,0.068965517241032,0.442857142857270,0.075862068965190,0.435714285714389,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285761,0.000000000000000,2 -7543,7556,7558,7571,0.062068965516873,0.450000000000152,0.068965517241032,0.442857142857270,0.068965517241032,0.457142857143034,0.075862068965190,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285764,0.000000000000000,2 -7544,7557,7559,7572,0.062068965516873,0.464285714285914,0.068965517241032,0.457142857143034,0.068965517241032,0.471428571428794,0.075862068965190,0.464285714285914,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285761,0.000000000000000,2 -7545,7558,7560,7573,0.062068965516873,0.478571428571672,0.068965517241032,0.471428571428794,0.068965517241032,0.485714285714549,0.075862068965190,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285755,0.000000000000000,2 -7546,7559,7561,7574,0.062068965516873,0.492857142857421,0.068965517241032,0.485714285714549,0.068965517241032,0.500000000000293,0.075862068965190,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285744,0.000000000000000,2 -7547,7560,7562,7575,0.062068965516873,0.507142857143103,0.068965517241032,0.500000000000293,0.068965517241032,0.514285714285913,0.075862068965190,0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285620,-0.000000000000000,2 -7548,7561,7563,7576,0.062068965516873,0.521428571428709,0.068965517241032,0.514285714285913,0.068965517241032,0.528571428571506,0.075862068965190,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285593,0.000000000000000,2 -7549,7562,7564,7577,0.062068965516873,0.535714285714345,0.068965517241032,0.528571428571506,0.068965517241032,0.542857142857183,0.075862068965190,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285677,0.000000000000000,2 -7550,7563,7565,7578,0.062068965516873,0.550000000000022,0.068965517241032,0.542857142857183,0.068965517241032,0.557142857142860,0.075862068965190,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285677,0.000000000000000,2 -7551,7564,7566,7579,0.062068965516873,0.564285714285699,0.068965517241032,0.557142857142860,0.068965517241032,0.571428571428537,0.075862068965190,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285677,0.000000000000000,2 -7552,7565,7567,7580,0.062068965516873,0.578571428571396,0.068965517241032,0.571428571428537,0.068965517241032,0.585714285714255,0.075862068965190,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,0.014285714285717,0.000000000000000,2 -1602,7553,7566,7581,0.068965517241032,0.600000000000000,0.062068965516873,0.592857142857127,0.068965517241032,0.585714285714255,0.075862068965190,0.592857142857127,0.000000000000000,0.013793103448317,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448317,0.014285714285745,-0.000000000000000,2 -7554,7569,7582,7819,0.075862068965190,0.407142857142878,0.082758620689347,0.414285714285756,0.089655172413504,0.407142857142878,0.082758620689347,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448314,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448314,2 -7555,7568,7570,7583,0.075862068965190,0.421428571428633,0.082758620689347,0.414285714285756,0.082758620689347,0.428571428571509,0.089655172413504,0.421428571428633,-0.014285714285753,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285753,0.000000000000000,2 -7556,7569,7571,7584,0.075862068965190,0.435714285714389,0.082758620689347,0.428571428571509,0.082758620689347,0.442857142857270,0.089655172413504,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285761,-0.000000000000000,2 -7557,7570,7572,7585,0.075862068965190,0.450000000000152,0.082758620689347,0.442857142857270,0.082758620689347,0.457142857143034,0.089655172413504,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285764,0.000000000000000,2 -7558,7571,7573,7586,0.075862068965190,0.464285714285914,0.082758620689347,0.457142857143034,0.082758620689347,0.471428571428794,0.089655172413504,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285761,0.000000000000000,2 -7559,7572,7574,7587,0.075862068965190,0.478571428571672,0.082758620689347,0.471428571428794,0.082758620689347,0.485714285714549,0.089655172413504,0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285755,0.000000000000000,2 -7560,7573,7575,7588,0.075862068965190,0.492857142857421,0.082758620689347,0.485714285714549,0.082758620689347,0.500000000000293,0.089655172413504,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285744,-0.000000000000000,2 -7561,7574,7576,7589,0.075862068965190,0.507142857143103,0.082758620689347,0.500000000000293,0.082758620689347,0.514285714285913,0.089655172413504,0.507142857143103,-0.014285714285620,0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285620,0.000000000000000,2 -7562,7575,7577,7590,0.075862068965190,0.521428571428709,0.082758620689347,0.514285714285913,0.082758620689347,0.528571428571506,0.089655172413504,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285593,-0.000000000000000,2 -7563,7576,7578,7591,0.075862068965190,0.535714285714345,0.082758620689347,0.528571428571506,0.082758620689347,0.542857142857183,0.089655172413504,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 -7564,7577,7579,7592,0.075862068965190,0.550000000000022,0.082758620689347,0.542857142857183,0.082758620689347,0.557142857142860,0.089655172413504,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 -7565,7578,7580,7593,0.075862068965190,0.564285714285699,0.082758620689347,0.557142857142860,0.082758620689347,0.571428571428537,0.089655172413504,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285677,0.000000000000000,2 -7566,7579,7581,7594,0.075862068965190,0.578571428571396,0.082758620689347,0.571428571428537,0.082758620689347,0.585714285714255,0.089655172413504,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448314,0.000000000000000,0.013793103448314,0.014285714285717,-0.000000000000000,2 -1608,7567,7580,7595,0.082758620689347,0.600000000000000,0.075862068965190,0.592857142857127,0.082758620689347,0.585714285714255,0.089655172413504,0.592857142857127,0.000000000000000,0.013793103448314,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448314,0.014285714285745,0.000000000000000,2 -7568,7583,7596,7805,0.089655172413504,0.407142857142878,0.096551724137659,0.414285714285756,0.103448275861814,0.407142857142878,0.096551724137659,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448309,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448309,2 -7569,7582,7584,7597,0.089655172413504,0.421428571428633,0.096551724137659,0.414285714285756,0.096551724137659,0.428571428571509,0.103448275861814,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285753,0.000000000000000,2 -7570,7583,7585,7598,0.089655172413504,0.435714285714389,0.096551724137659,0.428571428571509,0.096551724137659,0.442857142857270,0.103448275861814,0.435714285714389,-0.014285714285761,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -7571,7584,7586,7599,0.089655172413504,0.450000000000152,0.096551724137659,0.442857142857270,0.096551724137659,0.457142857143034,0.103448275861814,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285764,0.000000000000000,2 -7572,7585,7587,7600,0.089655172413504,0.464285714285914,0.096551724137659,0.457142857143034,0.096551724137659,0.471428571428794,0.103448275861814,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285761,0.000000000000000,2 -7573,7586,7588,7601,0.089655172413504,0.478571428571672,0.096551724137659,0.471428571428794,0.096551724137659,0.485714285714549,0.103448275861814,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448309,-0.000000000000000,0.013793103448309,0.014285714285755,0.000000000000000,2 -7574,7587,7589,7602,0.089655172413504,0.492857142857421,0.096551724137659,0.485714285714549,0.096551724137659,0.500000000000293,0.103448275861814,0.492857142857421,-0.014285714285744,0.000000000000000,0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285744,0.000000000000000,2 -7575,7588,7590,7603,0.089655172413504,0.507142857143103,0.096551724137659,0.500000000000293,0.096551724137659,0.514285714285913,0.103448275861814,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285620,0.000000000000000,2 -7576,7589,7591,7604,0.089655172413504,0.521428571428709,0.096551724137659,0.514285714285913,0.096551724137659,0.528571428571506,0.103448275861814,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285593,0.000000000000000,2 -7577,7590,7592,7605,0.089655172413504,0.535714285714345,0.096551724137659,0.528571428571506,0.096551724137659,0.542857142857183,0.103448275861814,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -7578,7591,7593,7606,0.089655172413504,0.550000000000022,0.096551724137659,0.542857142857183,0.096551724137659,0.557142857142860,0.103448275861814,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -7579,7592,7594,7607,0.089655172413504,0.564285714285699,0.096551724137659,0.557142857142860,0.096551724137659,0.571428571428537,0.103448275861814,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285677,0.000000000000000,2 -7580,7593,7595,7608,0.089655172413504,0.578571428571396,0.096551724137659,0.571428571428537,0.096551724137659,0.585714285714255,0.103448275861814,0.578571428571396,-0.014285714285717,0.000000000000000,-0.000000000000000,-0.013793103448309,0.000000000000000,0.013793103448309,0.014285714285717,0.000000000000000,2 -1614,7581,7594,7609,0.096551724137659,0.600000000000000,0.089655172413504,0.592857142857127,0.096551724137659,0.585714285714255,0.103448275861814,0.592857142857127,0.000000000000000,0.013793103448309,-0.014285714285745,-0.000000000000000,-0.000000000000000,-0.013793103448309,0.014285714285745,-0.000000000000000,2 -7582,7597,7610,7791,0.103448275861814,0.407142857142878,0.110344827585969,0.414285714285756,0.117241379310125,0.407142857142878,0.110344827585969,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448312,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448312,2 -7583,7596,7598,7611,0.103448275861814,0.421428571428633,0.110344827585969,0.414285714285756,0.110344827585969,0.428571428571509,0.117241379310125,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285753,0.000000000000000,2 -7584,7597,7599,7612,0.103448275861814,0.435714285714389,0.110344827585969,0.428571428571509,0.110344827585969,0.442857142857270,0.117241379310125,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285761,-0.000000000000000,2 -7585,7598,7600,7613,0.103448275861814,0.450000000000152,0.110344827585969,0.442857142857270,0.110344827585969,0.457142857143034,0.117241379310125,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285764,0.000000000000000,2 -7586,7599,7601,7614,0.103448275861814,0.464285714285914,0.110344827585969,0.457142857143034,0.110344827585969,0.471428571428794,0.117241379310125,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285761,0.000000000000000,2 -7587,7600,7602,7615,0.103448275861814,0.478571428571672,0.110344827585969,0.471428571428794,0.110344827585969,0.485714285714549,0.117241379310125,0.478571428571672,-0.014285714285755,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285754,0.000000000000000,2 -7588,7601,7603,7616,0.103448275861814,0.492857142857421,0.110344827585969,0.485714285714549,0.110344827585969,0.500000000000293,0.117241379310125,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285744,0.000000000000000,2 -7589,7602,7604,7617,0.103448275861814,0.507142857143103,0.110344827585969,0.500000000000293,0.110344827585969,0.514285714285913,0.117241379310125,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285620,0.000000000000000,2 -7590,7603,7605,7618,0.103448275861814,0.521428571428709,0.110344827585969,0.514285714285913,0.110344827585969,0.528571428571506,0.117241379310125,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285593,0.000000000000000,2 -7591,7604,7606,7619,0.103448275861814,0.535714285714345,0.110344827585969,0.528571428571506,0.110344827585969,0.542857142857183,0.117241379310125,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285677,0.000000000000000,2 -7592,7605,7607,7620,0.103448275861814,0.550000000000022,0.110344827585969,0.542857142857183,0.110344827585969,0.557142857142860,0.117241379310125,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285677,0.000000000000000,2 -7593,7606,7608,7621,0.103448275861814,0.564285714285699,0.110344827585969,0.557142857142860,0.110344827585969,0.571428571428537,0.117241379310125,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285677,0.000000000000000,2 -7594,7607,7609,7622,0.103448275861814,0.578571428571396,0.110344827585969,0.571428571428537,0.110344827585969,0.585714285714255,0.117241379310125,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448312,0.000000000000000,0.013793103448312,0.014285714285717,0.000000000000000,2 -1620,7595,7608,7623,0.110344827585969,0.600000000000000,0.103448275861814,0.592857142857127,0.110344827585969,0.585714285714255,0.117241379310125,0.592857142857127,0.000000000000000,0.013793103448312,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448312,0.014285714285745,-0.000000000000000,2 -7596,7611,7624,7777,0.117241379310125,0.407142857142878,0.124137931034281,0.414285714285756,0.131034482758436,0.407142857142878,0.124137931034281,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448311,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448311,2 -7597,7610,7612,7625,0.117241379310125,0.421428571428633,0.124137931034281,0.414285714285756,0.124137931034281,0.428571428571509,0.131034482758436,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285753,0.000000000000000,2 -7598,7611,7613,7626,0.117241379310125,0.435714285714389,0.124137931034281,0.428571428571509,0.124137931034281,0.442857142857270,0.131034482758436,0.435714285714389,-0.014285714285761,0.000000000000000,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 -7599,7612,7614,7627,0.117241379310125,0.450000000000152,0.124137931034281,0.442857142857270,0.124137931034281,0.457142857143034,0.131034482758436,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285764,0.000000000000000,2 -7600,7613,7615,7628,0.117241379310125,0.464285714285914,0.124137931034281,0.457142857143034,0.124137931034281,0.471428571428794,0.131034482758436,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 -7601,7614,7616,7629,0.117241379310125,0.478571428571672,0.124137931034281,0.471428571428794,0.124137931034281,0.485714285714549,0.131034482758436,0.478571428571672,-0.014285714285754,-0.000000000000000,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285754,0.000000000000000,2 -7602,7615,7617,7630,0.117241379310125,0.492857142857421,0.124137931034281,0.485714285714549,0.124137931034281,0.500000000000293,0.131034482758436,0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 -7603,7616,7618,7631,0.117241379310125,0.507142857143103,0.124137931034281,0.500000000000293,0.124137931034281,0.514285714285913,0.131034482758436,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285620,0.000000000000000,2 -7604,7617,7619,7632,0.117241379310125,0.521428571428709,0.124137931034281,0.514285714285913,0.124137931034281,0.528571428571506,0.131034482758436,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285593,0.000000000000000,2 -7605,7618,7620,7633,0.117241379310125,0.535714285714345,0.124137931034281,0.528571428571506,0.124137931034281,0.542857142857183,0.131034482758436,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7606,7619,7621,7634,0.117241379310125,0.550000000000022,0.124137931034281,0.542857142857183,0.124137931034281,0.557142857142860,0.131034482758436,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7607,7620,7622,7635,0.117241379310125,0.564285714285699,0.124137931034281,0.557142857142860,0.124137931034281,0.571428571428537,0.131034482758436,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7608,7621,7623,7636,0.117241379310125,0.578571428571396,0.124137931034281,0.571428571428537,0.124137931034281,0.585714285714255,0.131034482758436,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285717,0.000000000000000,2 -1626,7609,7622,7637,0.124137931034281,0.600000000000000,0.117241379310125,0.592857142857127,0.124137931034281,0.585714285714255,0.131034482758436,0.592857142857127,0.000000000000000,0.013793103448311,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448311,0.014285714285745,-0.000000000000000,2 -7610,7625,7638,7763,0.131034482758436,0.407142857142878,0.137931034482591,0.414285714285756,0.144827586206747,0.407142857142878,0.137931034482591,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448311,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448311,2 -7611,7624,7626,7639,0.131034482758436,0.421428571428633,0.137931034482591,0.414285714285756,0.137931034482591,0.428571428571509,0.144827586206747,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285753,0.000000000000000,2 -7612,7625,7627,7640,0.131034482758436,0.435714285714389,0.137931034482591,0.428571428571509,0.137931034482591,0.442857142857270,0.144827586206747,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 -7613,7626,7628,7641,0.131034482758436,0.450000000000152,0.137931034482591,0.442857142857270,0.137931034482591,0.457142857143034,0.144827586206747,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285764,0.000000000000000,2 -7614,7627,7629,7642,0.131034482758436,0.464285714285914,0.137931034482591,0.457142857143034,0.137931034482591,0.471428571428794,0.144827586206747,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 -7615,7628,7630,7643,0.131034482758436,0.478571428571672,0.137931034482591,0.471428571428794,0.137931034482591,0.485714285714549,0.144827586206747,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285754,0.000000000000000,2 -7616,7629,7631,7644,0.131034482758436,0.492857142857421,0.137931034482591,0.485714285714549,0.137931034482591,0.500000000000293,0.144827586206747,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 -7617,7630,7632,7645,0.131034482758436,0.507142857143103,0.137931034482591,0.500000000000293,0.137931034482591,0.514285714285913,0.144827586206747,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285620,0.000000000000000,2 -7618,7631,7633,7646,0.131034482758436,0.521428571428709,0.137931034482591,0.514285714285913,0.137931034482591,0.528571428571506,0.144827586206747,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285593,-0.000000000000000,2 -7619,7632,7634,7647,0.131034482758436,0.535714285714345,0.137931034482591,0.528571428571506,0.137931034482591,0.542857142857183,0.144827586206747,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7620,7633,7635,7648,0.131034482758436,0.550000000000022,0.137931034482591,0.542857142857183,0.137931034482591,0.557142857142860,0.144827586206747,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7621,7634,7636,7649,0.131034482758436,0.564285714285699,0.137931034482591,0.557142857142860,0.137931034482591,0.571428571428537,0.144827586206747,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7622,7635,7637,7650,0.131034482758436,0.578571428571396,0.137931034482591,0.571428571428537,0.137931034482591,0.585714285714255,0.144827586206747,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285718,0.000000000000000,2 -1632,7623,7636,7651,0.137931034482591,0.600000000000000,0.131034482758436,0.592857142857127,0.137931034482591,0.585714285714255,0.144827586206747,0.592857142857127,0.000000000000000,0.013793103448311,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448311,0.014285714285745,-0.000000000000000,2 -7624,7639,7652,7749,0.144827586206747,0.407142857142878,0.151724137930902,0.414285714285756,0.158620689655057,0.407142857142878,0.151724137930902,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448311,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448311,2 -7625,7638,7640,7653,0.144827586206747,0.421428571428633,0.151724137930902,0.414285714285756,0.151724137930902,0.428571428571509,0.158620689655057,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285753,0.000000000000000,2 -7626,7639,7641,7654,0.144827586206747,0.435714285714389,0.151724137930902,0.428571428571509,0.151724137930902,0.442857142857270,0.158620689655057,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 -7627,7640,7642,7655,0.144827586206747,0.450000000000152,0.151724137930902,0.442857142857270,0.151724137930902,0.457142857143034,0.158620689655057,0.450000000000152,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285764,0.000000000000000,2 -7628,7641,7643,7656,0.144827586206747,0.464285714285914,0.151724137930902,0.457142857143034,0.151724137930902,0.471428571428794,0.158620689655057,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 -7629,7642,7644,7657,0.144827586206747,0.478571428571672,0.151724137930902,0.471428571428794,0.151724137930902,0.485714285714549,0.158620689655057,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285754,0.000000000000000,2 -7630,7643,7645,7658,0.144827586206747,0.492857142857421,0.151724137930902,0.485714285714549,0.151724137930902,0.500000000000293,0.158620689655057,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 -7631,7644,7646,7659,0.144827586206747,0.507142857143103,0.151724137930902,0.500000000000293,0.151724137930902,0.514285714285913,0.158620689655057,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285620,0.000000000000000,2 -7632,7645,7647,7660,0.144827586206747,0.521428571428709,0.151724137930902,0.514285714285913,0.151724137930902,0.528571428571506,0.158620689655057,0.521428571428709,-0.014285714285593,0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285593,0.000000000000000,2 -7633,7646,7648,7661,0.144827586206747,0.535714285714345,0.151724137930902,0.528571428571506,0.151724137930902,0.542857142857183,0.158620689655057,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7634,7647,7649,7662,0.144827586206747,0.550000000000022,0.151724137930902,0.542857142857183,0.151724137930902,0.557142857142860,0.158620689655057,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7635,7648,7650,7663,0.144827586206747,0.564285714285699,0.151724137930902,0.557142857142860,0.151724137930902,0.571428571428537,0.158620689655057,0.564285714285699,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7636,7649,7651,7664,0.144827586206747,0.578571428571396,0.151724137930902,0.571428571428537,0.151724137930902,0.585714285714255,0.158620689655057,0.578571428571396,-0.014285714285718,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285717,0.000000000000000,2 -1638,7637,7650,7665,0.151724137930902,0.600000000000000,0.144827586206747,0.592857142857127,0.151724137930902,0.585714285714255,0.158620689655057,0.592857142857127,0.000000000000000,0.013793103448311,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448311,0.014285714285745,-0.000000000000000,2 -7638,7653,7666,7735,0.158620689655057,0.407142857142878,0.165517241379213,0.414285714285756,0.172413793103368,0.407142857142878,0.165517241379213,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448311,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448311,2 -7639,7652,7654,7667,0.158620689655057,0.421428571428633,0.165517241379213,0.414285714285756,0.165517241379213,0.428571428571509,0.172413793103368,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285753,0.000000000000000,2 -7640,7653,7655,7668,0.158620689655057,0.435714285714389,0.165517241379213,0.428571428571509,0.165517241379213,0.442857142857270,0.172413793103368,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 -7641,7654,7656,7669,0.158620689655057,0.450000000000152,0.165517241379213,0.442857142857270,0.165517241379213,0.457142857143034,0.172413793103368,0.450000000000152,-0.014285714285764,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285764,-0.000000000000000,2 -7642,7655,7657,7670,0.158620689655057,0.464285714285914,0.165517241379213,0.457142857143034,0.165517241379213,0.471428571428794,0.172413793103368,0.464285714285914,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285761,0.000000000000000,2 -7643,7656,7658,7671,0.158620689655057,0.478571428571672,0.165517241379213,0.471428571428794,0.165517241379213,0.485714285714549,0.172413793103368,0.478571428571672,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013793103448311,0.014285714285755,0.000000000000000,2 -7644,7657,7659,7672,0.158620689655057,0.492857142857421,0.165517241379213,0.485714285714549,0.165517241379213,0.500000000000293,0.172413793103368,0.492857142857421,-0.014285714285744,-0.000000000000000,0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285744,0.000000000000000,2 -7645,7658,7660,7673,0.158620689655057,0.507142857143103,0.165517241379213,0.500000000000293,0.165517241379213,0.514285714285913,0.172413793103368,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285620,0.000000000000000,2 -7646,7659,7661,7674,0.158620689655057,0.521428571428709,0.165517241379213,0.514285714285913,0.165517241379213,0.528571428571506,0.172413793103368,0.521428571428709,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285593,0.000000000000000,2 -7647,7660,7662,7675,0.158620689655057,0.535714285714345,0.165517241379213,0.528571428571506,0.165517241379213,0.542857142857183,0.172413793103368,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7648,7661,7663,7676,0.158620689655057,0.550000000000022,0.165517241379213,0.542857142857183,0.165517241379213,0.557142857142860,0.172413793103368,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,0.000000000000000,2 -7649,7662,7664,7677,0.158620689655057,0.564285714285699,0.165517241379213,0.557142857142860,0.165517241379213,0.571428571428537,0.172413793103368,0.564285714285699,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285677,-0.000000000000000,2 -7650,7663,7665,7678,0.158620689655057,0.578571428571396,0.165517241379213,0.571428571428537,0.165517241379213,0.585714285714255,0.172413793103368,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013793103448311,0.014285714285717,0.000000000000000,2 -1644,7651,7664,7679,0.165517241379213,0.600000000000000,0.158620689655057,0.592857142857127,0.165517241379213,0.585714285714255,0.172413793103368,0.592857142857127,0.000000000000000,0.013793103448311,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448311,0.014285714285745,-0.000000000000000,2 -7652,7667,7680,7721,0.172413793103368,0.407142857142878,0.179310344827525,0.414285714285756,0.186206896551683,0.407142857142878,0.179310344827525,0.400000000000000,-0.014285714285756,-0.000000000000000,0.000000000000000,0.013793103448315,0.014285714285756,0.000000000000000,-0.000000000000000,-0.013793103448315,2 -7653,7666,7668,7681,0.172413793103368,0.421428571428633,0.179310344827525,0.414285714285756,0.179310344827525,0.428571428571509,0.186206896551683,0.421428571428633,-0.014285714285753,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285753,0.000000000000000,2 -7654,7667,7669,7682,0.172413793103368,0.435714285714389,0.179310344827525,0.428571428571509,0.179310344827525,0.442857142857270,0.186206896551683,0.435714285714389,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285761,0.000000000000000,2 -7655,7668,7670,7683,0.172413793103368,0.450000000000152,0.179310344827525,0.442857142857270,0.179310344827525,0.457142857143034,0.186206896551683,0.450000000000152,-0.014285714285764,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285764,0.000000000000000,2 -7656,7669,7671,7684,0.172413793103368,0.464285714285914,0.179310344827525,0.457142857143034,0.179310344827525,0.471428571428794,0.186206896551683,0.464285714285914,-0.014285714285761,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285761,0.000000000000000,2 -7657,7670,7672,7685,0.172413793103368,0.478571428571672,0.179310344827525,0.471428571428794,0.179310344827525,0.485714285714549,0.186206896551683,0.478571428571672,-0.014285714285755,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285754,0.000000000000000,2 -7658,7671,7673,7686,0.172413793103368,0.492857142857421,0.179310344827525,0.485714285714549,0.179310344827525,0.500000000000293,0.186206896551683,0.492857142857421,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285744,0.000000000000000,2 -7659,7672,7674,7687,0.172413793103368,0.507142857143103,0.179310344827525,0.500000000000293,0.179310344827525,0.514285714285913,0.186206896551683,0.507142857143103,-0.014285714285620,-0.000000000000000,-0.000000000000000,-0.013793103448315,-0.000000000000000,0.013793103448315,0.014285714285620,0.000000000000000,2 -7660,7673,7675,7688,0.172413793103368,0.521428571428709,0.179310344827525,0.514285714285913,0.179310344827525,0.528571428571506,0.186206896551683,0.521428571428709,-0.014285714285593,-0.000000000000000,0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285593,0.000000000000000,2 -7661,7674,7676,7689,0.172413793103368,0.535714285714345,0.179310344827525,0.528571428571506,0.179310344827525,0.542857142857183,0.186206896551683,0.535714285714345,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 -7662,7675,7677,7690,0.172413793103368,0.550000000000022,0.179310344827525,0.542857142857183,0.179310344827525,0.557142857142860,0.186206896551683,0.550000000000022,-0.014285714285677,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 -7663,7676,7678,7691,0.172413793103368,0.564285714285699,0.179310344827525,0.557142857142860,0.179310344827525,0.571428571428537,0.186206896551683,0.564285714285699,-0.014285714285677,0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285677,0.000000000000000,2 -7664,7677,7679,7692,0.172413793103368,0.578571428571396,0.179310344827525,0.571428571428537,0.179310344827525,0.585714285714255,0.186206896551683,0.578571428571396,-0.014285714285717,-0.000000000000000,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013793103448315,0.014285714285717,0.000000000000000,2 -1650,7665,7678,7693,0.179310344827525,0.600000000000000,0.172413793103368,0.592857142857127,0.179310344827525,0.585714285714255,0.186206896551683,0.592857142857127,0.000000000000000,0.013793103448315,-0.014285714285745,0.000000000000000,-0.000000000000000,-0.013793103448315,0.014285714285745,-0.000000000000000,2 -6882,7666,7681,7707,0.200000000000000,0.407142857142878,0.186206896551683,0.407142857142878,0.193103448275841,0.414285714285756,0.193103448275841,0.400000000000000,0.014285714285756,0.000000000000000,-0.014285714285756,-0.000000000000000,-0.000000000000000,0.013793103448317,0.000000000000000,-0.013793103448317,2 -6883,7667,7680,7682,0.200000000000000,0.421428571428633,0.186206896551683,0.421428571428633,0.193103448275841,0.414285714285756,0.193103448275841,0.428571428571509,0.014285714285753,-0.000000000000000,-0.014285714285753,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 -6884,7668,7681,7683,0.200000000000000,0.435714285714389,0.186206896551683,0.435714285714389,0.193103448275841,0.428571428571509,0.193103448275841,0.442857142857270,0.014285714285761,-0.000000000000000,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 -6885,7669,7682,7684,0.200000000000000,0.450000000000152,0.186206896551683,0.450000000000152,0.193103448275841,0.442857142857270,0.193103448275841,0.457142857143034,0.014285714285764,-0.000000000000000,-0.014285714285764,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 -6886,7670,7683,7685,0.200000000000000,0.464285714285914,0.186206896551683,0.464285714285914,0.193103448275841,0.457142857143034,0.193103448275841,0.471428571428794,0.014285714285761,-0.000000000000000,-0.014285714285761,-0.000000000000000,0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,2 -6887,7671,7684,7686,0.200000000000000,0.478571428571672,0.186206896551683,0.478571428571672,0.193103448275841,0.471428571428794,0.193103448275841,0.485714285714549,0.014285714285754,-0.000000000000000,-0.014285714285754,-0.000000000000000,-0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,2 -6888,7672,7685,7687,0.200000000000000,0.492857142857421,0.186206896551683,0.492857142857421,0.193103448275841,0.485714285714549,0.193103448275841,0.500000000000293,0.014285714285744,-0.000000000000000,-0.014285714285744,-0.000000000000000,-0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 -6889,7673,7686,7688,0.200000000000000,0.507142857143103,0.186206896551683,0.507142857143103,0.193103448275841,0.500000000000293,0.193103448275841,0.514285714285913,0.014285714285620,-0.000000000000000,-0.014285714285620,-0.000000000000000,0.000000000000000,-0.013793103448317,0.000000000000000,0.013793103448317,2 -6890,7674,7687,7689,0.200000000000000,0.521428571428709,0.186206896551683,0.521428571428709,0.193103448275841,0.514285714285913,0.193103448275841,0.528571428571506,0.014285714285593,-0.000000000000000,-0.014285714285593,-0.000000000000000,-0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 -6891,7675,7688,7690,0.200000000000000,0.535714285714345,0.186206896551683,0.535714285714345,0.193103448275841,0.528571428571506,0.193103448275841,0.542857142857183,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 -6892,7676,7689,7691,0.200000000000000,0.550000000000022,0.186206896551683,0.550000000000022,0.193103448275841,0.542857142857183,0.193103448275841,0.557142857142860,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 -6893,7677,7690,7692,0.200000000000000,0.564285714285699,0.186206896551683,0.564285714285699,0.193103448275841,0.557142857142860,0.193103448275841,0.571428571428537,0.014285714285677,-0.000000000000000,-0.014285714285677,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 -6894,7678,7691,7693,0.200000000000000,0.578571428571396,0.186206896551683,0.578571428571396,0.193103448275841,0.571428571428537,0.193103448275841,0.585714285714255,0.014285714285717,-0.000000000000000,-0.014285714285717,-0.000000000000000,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013793103448317,2 -1656,6895,7679,7692,0.193103448275841,0.600000000000000,0.200000000000000,0.592857142857127,0.186206896551683,0.592857142857127,0.193103448275841,0.585714285714255,-0.000000000000000,0.013793103448317,0.014285714285745,-0.000000000000000,-0.014285714285745,0.000000000000000,0.000000000000000,-0.013793103448317,2 -7695,7708,10157,11868,0.148275862068959,0.353571428571415,0.141317733990158,0.351785714285707,0.151785714285707,0.351785714285707,0.144827586206906,0.350000000000000,0.000000000000000,0.010591133004911,-0.003571428571415,0.003325123152692,0.003571428571415,-0.003571428571415,0.000000000000000,-0.010344827586188,2 -7694,7696,7709,10098,0.148275862068959,0.353571428571415,0.151724137931032,0.357142857142849,0.144642857142859,0.355357142857132,0.155357142857132,0.355357142857132,-0.000000000000000,-0.010591133004911,0.000000000000000,0.010837438423635,-0.003571428571434,0.003325123152711,0.003571428571434,-0.003571428571434,2 -7695,7697,7710,10039,0.151724137931032,0.357142857142849,0.155172413793118,0.360714285714297,0.147967980295576,0.358928571428573,0.158928571428573,0.358928571428573,-0.000000000000000,-0.010837438423635,-0.000000000000001,0.011083743842359,-0.003571428571447,0.003325123152724,0.003571428571448,-0.003571428571448,2 -7696,7698,7711,9980,0.155172413793118,0.360714285714297,0.158620689655216,0.364285714285756,0.151293103448306,0.362500000000025,0.162500000000027,0.362500000000027,0.000000000000001,-0.011083743842359,-0.000000000000002,0.011330049261083,-0.003571428571458,0.003325123152736,0.003571428571460,-0.003571428571460,2 -7697,7699,7712,9921,0.158620689655216,0.364285714285756,0.162068965517299,0.367857142857201,0.154618226601035,0.366071428571477,0.166071428571480,0.366071428571480,0.000000000000002,-0.011330049261083,-0.000000000000003,0.011576354679806,-0.003571428571444,0.003325123152722,0.003571428571445,-0.003571428571445,2 -7698,7700,7713,9862,0.162068965517299,0.367857142857201,0.165517241379370,0.371428571428632,0.157943349753751,0.369642857142915,0.169642857142918,0.369642857142918,0.000000000000003,-0.011576354679806,-0.000000000000004,0.011822660098529,-0.003571428571431,0.003325123152709,0.003571428571432,-0.003571428571432,2 -7699,7701,7714,9803,0.165517241379370,0.371428571428632,0.168965517241436,0.375000000000060,0.161268472906458,0.373214285714344,0.173214285714348,0.373214285714348,0.000000000000004,-0.011822660098529,-0.000000000000005,0.012068965517252,-0.003571428571427,0.003325123152705,0.003571428571428,-0.003571428571428,2 -7700,7702,7715,9744,0.168965517241436,0.375000000000060,0.172413793103481,0.378571428571466,0.164593596059152,0.376785714285761,0.176785714285765,0.376785714285765,0.000000000000005,-0.012068965517252,-0.000000000000004,0.012315270935975,-0.003571428571407,0.003325123152683,0.003571428571406,-0.003571428571406,2 -7701,7703,7716,9685,0.172413793103481,0.378571428571466,0.175862068965541,0.382142857142889,0.167918719211843,0.380357142857175,0.180357142857179,0.380357142857179,0.000000000000004,-0.012315270935975,-0.000000000000004,0.012561576354698,-0.003571428571422,0.003325123152698,0.003571428571422,-0.003571428571422,2 -7702,7704,7717,9626,0.175862068965541,0.382142857142889,0.179310344827613,0.385714285714322,0.171243842364547,0.383928571428604,0.183928571428607,0.383928571428607,0.000000000000004,-0.012561576354698,-0.000000000000003,0.012807881773422,-0.003571428571434,0.003325123152709,0.003571428571434,-0.003571428571434,2 -7703,7705,7718,9567,0.179310344827613,0.385714285714322,0.182758620689657,0.389285714285730,0.174568965517243,0.387500000000025,0.187500000000027,0.387500000000027,0.000000000000003,-0.012807881773422,-0.000000000000001,0.013054187192146,-0.003571428571408,0.003325123152682,0.003571428571406,-0.003571428571406,2 -7704,7706,7719,9508,0.182758620689657,0.389285714285730,0.186206896551721,0.392857142857156,0.177894088669935,0.391071428571442,0.191071428571443,0.391071428571443,0.000000000000001,-0.013054187192146,-0.000000000000000,0.013300492610871,-0.003571428571427,0.003325123152702,0.003571428571426,-0.003571428571426,2 -7705,7707,7720,9449,0.186206896551721,0.392857142857156,0.189655172413783,0.396428571428580,0.181219211822636,0.394642857142868,0.194642857142868,0.394642857142868,0.000000000000000,-0.013300492610871,0.000000000000000,0.013546798029594,-0.003571428571425,0.003325123152700,0.003571428571424,-0.003571428571424,2 -7680,7706,7721,9390,0.193103448275841,0.400000000000000,0.189655172413783,0.396428571428580,0.184544334975335,0.398214285714290,0.198214285714290,0.398214285714290,-0.000000000000000,0.013793103448317,-0.000000000000000,-0.013546798029594,-0.003571428571420,0.003325123152697,0.003571428571420,-0.003571428571420,2 -7694,7709,7722,11809,0.141317733990158,0.351785714285707,0.137684729064053,0.353571428571415,0.130849753694619,0.351785714285708,0.134482758620723,0.350000000000000,0.003571428571415,-0.003325123152692,0.000000000000000,0.010591133004901,-0.003571428571415,0.003078817733968,0.000000000000000,-0.010344827586177,2 -7695,7708,7710,7723,0.144642857142859,0.355357142857132,0.137684729064053,0.353571428571415,0.140886699507402,0.357142857142849,0.133928571428596,0.355357142857132,0.003571428571434,-0.003325123152711,-0.000000000000000,-0.010591133004901,-0.000000000000000,0.010837438423625,-0.003571428571434,0.003078817733986,2 -7696,7709,7711,7724,0.147967980295576,0.358928571428573,0.140886699507402,0.357142857142849,0.144088669950763,0.360714285714296,0.137007389162589,0.358928571428572,0.003571428571447,-0.003325123152724,0.000000000000000,-0.010837438423625,-0.000000000000000,0.011083743842350,-0.003571428571447,0.003078817733999,2 -7697,7710,7712,7725,0.151293103448306,0.362500000000025,0.144088669950763,0.360714285714296,0.147290640394137,0.364285714285753,0.140086206896594,0.362500000000024,0.003571428571458,-0.003325123152736,0.000000000000000,-0.011083743842350,-0.000000000000002,0.011330049261074,-0.003571428571456,0.003078817734012,2 -7698,7711,7713,7726,0.154618226601035,0.366071428571477,0.147290640394137,0.364285714285753,0.150492610837497,0.367857142857197,0.143165024630599,0.366071428571474,0.003571428571444,-0.003325123152722,0.000000000000002,-0.011330049261074,-0.000000000000003,0.011576354679799,-0.003571428571443,0.003078817733997,2 -7699,7712,7714,7727,0.157943349753751,0.369642857142915,0.150492610837497,0.367857142857197,0.153694581280844,0.371428571428628,0.146243842364590,0.369642857142911,0.003571428571431,-0.003325123152709,0.000000000000003,-0.011576354679799,-0.000000000000004,0.011822660098522,-0.003571428571430,0.003078817733986,2 -7700,7713,7715,7728,0.161268472906458,0.373214285714344,0.153694581280844,0.371428571428628,0.156896551724188,0.375000000000055,0.149322660098574,0.373214285714339,0.003571428571427,-0.003325123152705,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517245,-0.003571428571426,0.003078817733982,2 -7701,7714,7716,7729,0.164593596059152,0.376785714285761,0.156896551724188,0.375000000000055,0.160098522167509,0.378571428571462,0.152401477832545,0.376785714285756,0.003571428571407,-0.003325123152683,0.000000000000005,-0.012068965517245,-0.000000000000004,0.012315270935969,-0.003571428571408,0.003078817733960,2 -7702,7715,7717,7730,0.167918719211843,0.380357142857175,0.160098522167509,0.378571428571462,0.163300492610846,0.382142857142885,0.155480295566512,0.380357142857172,0.003571428571422,-0.003325123152698,0.000000000000004,-0.012315270935969,-0.000000000000004,0.012561576354693,-0.003571428571423,0.003078817733974,2 -7703,7716,7718,7731,0.171243842364547,0.383928571428604,0.163300492610846,0.382142857142885,0.166502463054192,0.385714285714319,0.158559113300491,0.383928571428600,0.003571428571434,-0.003325123152709,0.000000000000004,-0.012561576354693,-0.000000000000003,0.012807881773418,-0.003571428571435,0.003078817733984,2 -7704,7717,7719,7732,0.174568965517243,0.387500000000025,0.166502463054192,0.385714285714319,0.169704433497513,0.389285714285728,0.161637931034462,0.387500000000023,0.003571428571408,-0.003325123152682,0.000000000000003,-0.012807881773418,-0.000000000000001,0.013054187192143,-0.003571428571410,0.003078817733958,2 -7705,7718,7720,7733,0.177894088669935,0.391071428571442,0.169704433497513,0.389285714285728,0.172906403940852,0.392857142857156,0.164716748768430,0.391071428571442,0.003571428571427,-0.003325123152702,0.000000000000001,-0.013054187192143,-0.000000000000000,0.013300492610867,-0.003571428571428,0.003078817733977,2 -7706,7719,7721,7734,0.181219211822636,0.394642857142868,0.172906403940852,0.392857142857156,0.176108374384190,0.396428571428581,0.167795566502406,0.394642857142868,0.003571428571425,-0.003325123152700,0.000000000000000,-0.013300492610867,-0.000000000000000,0.013546798029592,-0.003571428571425,0.003078817733976,2 -7666,7707,7720,7735,0.179310344827525,0.400000000000000,0.184544334975335,0.398214285714290,0.176108374384190,0.396428571428581,0.170874384236381,0.398214285714290,0.000000000000000,0.013793103448315,0.003571428571420,-0.003325123152697,0.000000000000000,-0.013546798029592,-0.003571428571420,0.003078817733974,2 -7708,7723,7736,11750,0.130849753694619,0.351785714285708,0.127093596059146,0.353571428571415,0.120381773399066,0.351785714285708,0.124137931034539,0.350000000000000,0.003571428571415,-0.003078817733968,0.000000000000000,0.010591133004914,-0.003571428571415,0.002832512315246,0.000000000000000,-0.010344827586192,2 -7709,7722,7724,7737,0.133928571428596,0.355357142857132,0.127093596059146,0.353571428571415,0.130049261083771,0.357142857142849,0.123214285714321,0.355357142857132,0.003571428571434,-0.003078817733986,-0.000000000000000,-0.010591133004914,0.000000000000000,0.010837438423637,-0.003571428571434,0.002832512315264,2 -7710,7723,7725,7738,0.137007389162589,0.358928571428572,0.130049261083771,0.357142857142849,0.133004926108408,0.360714285714295,0.126046798029590,0.358928571428572,0.003571428571447,-0.003078817733999,-0.000000000000000,-0.010837438423637,-0.000000000000001,0.011083743842360,-0.003571428571446,0.002832512315275,2 -7711,7724,7726,7739,0.140086206896594,0.362500000000024,0.133004926108408,0.360714285714295,0.135960591133059,0.364285714285751,0.128879310344873,0.362500000000022,0.003571428571456,-0.003078817734012,0.000000000000001,-0.011083743842360,-0.000000000000002,0.011330049261083,-0.003571428571455,0.002832512315289,2 -7712,7725,7727,7740,0.143165024630599,0.366071428571474,0.135960591133059,0.364285714285751,0.138916256157694,0.367857142857194,0.131711822660154,0.366071428571471,0.003571428571443,-0.003078817733997,0.000000000000002,-0.011330049261083,-0.000000000000003,0.011576354679806,-0.003571428571443,0.002832512315274,2 -7713,7726,7728,7741,0.146243842364590,0.369642857142911,0.138916256157694,0.367857142857194,0.141871921182319,0.371428571428624,0.134544334975423,0.369642857142907,0.003571428571430,-0.003078817733986,0.000000000000003,-0.011576354679806,-0.000000000000004,0.011822660098528,-0.003571428571430,0.002832512315263,2 -7714,7727,7729,7742,0.149322660098574,0.373214285714339,0.141871921182319,0.371428571428624,0.144827586206940,0.375000000000050,0.137376847290685,0.373214285714334,0.003571428571426,-0.003078817733982,0.000000000000004,-0.011822660098528,-0.000000000000005,0.012068965517250,-0.003571428571425,0.002832512315260,2 -7715,7728,7730,7743,0.152401477832545,0.376785714285756,0.144827586206940,0.375000000000050,0.147783251231539,0.378571428571458,0.140209359605934,0.376785714285751,0.003571428571408,-0.003078817733960,0.000000000000005,-0.012068965517250,-0.000000000000004,0.012315270935973,-0.003571428571409,0.002832512315238,2 -7716,7729,7731,7744,0.155480295566512,0.380357142857172,0.147783251231539,0.378571428571458,0.150738916256152,0.382142857142881,0.143041871921178,0.380357142857168,0.003571428571423,-0.003078817733974,0.000000000000004,-0.012315270935973,-0.000000000000004,0.012561576354695,-0.003571428571424,0.002832512315252,2 -7717,7730,7732,7745,0.158559113300491,0.383928571428600,0.150738916256152,0.382142857142881,0.153694581280774,0.385714285714316,0.145874384236434,0.383928571428597,0.003571428571435,-0.003078817733984,0.000000000000004,-0.012561576354695,-0.000000000000003,0.012807881773419,-0.003571428571435,0.002832512315261,2 -7718,7731,7733,7746,0.161637931034462,0.387500000000023,0.153694581280774,0.385714285714316,0.156650246305370,0.389285714285727,0.148706896551682,0.387500000000020,0.003571428571410,-0.003078817733958,0.000000000000003,-0.012807881773419,-0.000000000000001,0.013054187192142,-0.003571428571412,0.002832512315235,2 -7719,7732,7734,7747,0.164716748768430,0.391071428571442,0.156650246305370,0.389285714285727,0.159605911329986,0.392857142857155,0.151539408866926,0.391071428571441,0.003571428571428,-0.003078817733977,0.000000000000001,-0.013054187192142,-0.000000000000000,0.013300492610865,-0.003571428571429,0.002832512315254,2 -7720,7733,7735,7748,0.167795566502406,0.394642857142868,0.159605911329986,0.392857142857155,0.162561576354600,0.396428571428581,0.154371921182179,0.394642857142868,0.003571428571425,-0.003078817733976,0.000000000000000,-0.013300492610865,0.000000000000000,0.013546798029588,-0.003571428571425,0.002832512315253,2 -7652,7721,7734,7749,0.165517241379213,0.400000000000000,0.170874384236381,0.398214285714290,0.162561576354600,0.396428571428581,0.157204433497432,0.398214285714290,0.000000000000000,0.013793103448311,0.003571428571420,-0.003078817733974,-0.000000000000000,-0.013546798029588,-0.003571428571419,0.002832512315251,2 -7722,7737,7750,11691,0.120381773399066,0.351785714285708,0.116502463054238,0.353571428571416,0.109913793103525,0.351785714285708,0.113793103448353,0.350000000000000,0.003571428571415,-0.002832512315246,0.000000000000000,0.010591133004902,-0.003571428571416,0.002586206896523,0.000000000000000,-0.010344827586179,2 -7723,7736,7738,7751,0.123214285714321,0.355357142857132,0.116502463054238,0.353571428571416,0.119211822660140,0.357142857142849,0.112500000000057,0.355357142857132,0.003571428571434,-0.002832512315264,-0.000000000000000,-0.010591133004902,-0.000000000000000,0.010837438423626,-0.003571428571433,0.002586206896540,2 -7724,7737,7739,7752,0.126046798029590,0.358928571428572,0.119211822660140,0.357142857142849,0.121921182266053,0.360714285714295,0.115086206896602,0.358928571428572,0.003571428571446,-0.002832512315275,0.000000000000000,-0.010837438423626,-0.000000000000001,0.011083743842350,-0.003571428571445,0.002586206896551,2 -7725,7738,7740,7753,0.128879310344873,0.362500000000022,0.121921182266053,0.360714285714295,0.124630541871980,0.364285714285748,0.117672413793160,0.362500000000021,0.003571428571455,-0.002832512315289,0.000000000000001,-0.011083743842350,-0.000000000000002,0.011330049261074,-0.003571428571453,0.002586206896565,2 -7726,7739,7741,7754,0.131711822660154,0.366071428571471,0.124630541871980,0.364285714285748,0.127339901477892,0.367857142857191,0.120258620689718,0.366071428571468,0.003571428571443,-0.002832512315274,0.000000000000002,-0.011330049261074,-0.000000000000003,0.011576354679798,-0.003571428571442,0.002586206896550,2 -7727,7740,7742,7755,0.134544334975423,0.369642857142907,0.127339901477892,0.367857142857191,0.130049261083794,0.371428571428620,0.122844827586263,0.369642857142903,0.003571428571430,-0.002832512315263,0.000000000000003,-0.011576354679798,-0.000000000000004,0.011822660098521,-0.003571428571429,0.002586206896540,2 -7728,7741,7743,7756,0.137376847290685,0.373214285714334,0.130049261083794,0.371428571428620,0.132758620689693,0.375000000000045,0.125431034482802,0.373214285714330,0.003571428571425,-0.002832512315260,0.000000000000004,-0.011822660098521,-0.000000000000005,0.012068965517244,-0.003571428571425,0.002586206896537,2 -7729,7742,7744,7757,0.140209359605934,0.376785714285751,0.132758620689693,0.375000000000045,0.135467980295569,0.378571428571454,0.128017241379328,0.376785714285747,0.003571428571409,-0.002832512315238,0.000000000000005,-0.012068965517244,-0.000000000000004,0.012315270935967,-0.003571428571410,0.002586206896515,2 -7730,7743,7745,7758,0.143041871921178,0.380357142857168,0.135467980295569,0.378571428571454,0.138177339901458,0.382142857142877,0.130603448275849,0.380357142857164,0.003571428571424,-0.002832512315252,0.000000000000004,-0.012315270935967,-0.000000000000004,0.012561576354691,-0.003571428571424,0.002586206896528,2 -7731,7744,7746,7759,0.145874384236434,0.383928571428597,0.138177339901458,0.382142857142877,0.140886699507357,0.385714285714313,0.133189655172381,0.383928571428593,0.003571428571435,-0.002832512315261,0.000000000000004,-0.012561576354691,-0.000000000000003,0.012807881773415,-0.003571428571436,0.002586206896536,2 -7732,7745,7747,7760,0.148706896551682,0.387500000000020,0.140886699507357,0.385714285714313,0.143596059113229,0.389285714285726,0.135775862068904,0.387500000000018,0.003571428571412,-0.002832512315235,0.000000000000003,-0.012807881773415,-0.000000000000001,0.013054187192139,-0.003571428571414,0.002586206896511,2 -7733,7746,7748,7761,0.151539408866926,0.391071428571441,0.143596059113229,0.389285714285726,0.146305418719121,0.392857142857155,0.138362068965424,0.391071428571440,0.003571428571429,-0.002832512315254,0.000000000000001,-0.013054187192139,-0.000000000000000,0.013300492610864,-0.003571428571430,0.002586206896529,2 -7734,7747,7749,7762,0.154371921182179,0.394642857142868,0.146305418719121,0.392857142857155,0.149014778325012,0.396428571428581,0.140948275861954,0.394642857142868,0.003571428571425,-0.002832512315253,0.000000000000000,-0.013300492610864,0.000000000000000,0.013546798029588,-0.003571428571426,0.002586206896529,2 -7638,7735,7748,7763,0.151724137930902,0.400000000000000,0.157204433497432,0.398214285714290,0.149014778325012,0.396428571428581,0.143534482758482,0.398214285714290,0.000000000000000,0.013793103448311,0.003571428571419,-0.002832512315251,-0.000000000000000,-0.013546798029588,-0.003571428571419,0.002586206896528,2 -7736,7751,7764,11632,0.109913793103525,0.351785714285708,0.105911330049337,0.353571428571416,0.099445812807986,0.351785714285708,0.103448275862175,0.350000000000000,0.003571428571416,-0.002586206896523,0.000000000000000,0.010591133004900,-0.003571428571416,0.002339901477800,0.000000000000000,-0.010344827586177,2 -7737,7750,7752,7765,0.112500000000057,0.355357142857132,0.105911330049337,0.353571428571416,0.108374384236514,0.357142857142849,0.101785714285794,0.355357142857133,0.003571428571433,-0.002586206896540,-0.000000000000000,-0.010591133004900,0.000000000000000,0.010837438423624,-0.003571428571433,0.002339901477816,2 -7738,7751,7753,7766,0.115086206896602,0.358928571428572,0.108374384236514,0.357142857142849,0.110837438423703,0.360714285714294,0.104125615763615,0.358928571428571,0.003571428571445,-0.002586206896551,-0.000000000000000,-0.010837438423624,-0.000000000000001,0.011083743842349,-0.003571428571445,0.002339901477827,2 -7739,7752,7754,7767,0.117672413793160,0.362500000000021,0.110837438423703,0.360714285714294,0.113300492610906,0.364285714285746,0.106465517241449,0.362500000000019,0.003571428571453,-0.002586206896565,0.000000000000001,-0.011083743842349,-0.000000000000002,0.011330049261073,-0.003571428571451,0.002339901477841,2 -7740,7753,7755,7768,0.120258620689718,0.366071428571468,0.113300492610906,0.364285714285746,0.115763546798094,0.367857142857187,0.108805418719283,0.366071428571465,0.003571428571442,-0.002586206896550,0.000000000000002,-0.011330049261073,-0.000000000000003,0.011576354679797,-0.003571428571441,0.002339901477826,2 -7741,7754,7756,7769,0.122844827586263,0.369642857142903,0.115763546798094,0.367857142857187,0.118226600985273,0.371428571428616,0.111145320197104,0.369642857142900,0.003571428571429,-0.002586206896540,0.000000000000003,-0.011576354679797,-0.000000000000004,0.011822660098520,-0.003571428571428,0.002339901477817,2 -7742,7755,7757,7770,0.125431034482802,0.373214285714330,0.118226600985273,0.371428571428616,0.120689655172449,0.375000000000040,0.113485221674920,0.373214285714325,0.003571428571425,-0.002586206896537,0.000000000000004,-0.011822660098520,-0.000000000000005,0.012068965517243,-0.003571428571424,0.002339901477814,2 -7743,7756,7758,7771,0.128017241379328,0.376785714285747,0.120689655172449,0.375000000000040,0.123152709359602,0.378571428571450,0.115825123152723,0.376785714285742,0.003571428571410,-0.002586206896515,0.000000000000005,-0.012068965517243,-0.000000000000004,0.012315270935966,-0.003571428571410,0.002339901477792,2 -7744,7757,7759,7772,0.130603448275849,0.380357142857164,0.123152709359602,0.378571428571450,0.125615763546768,0.382142857142874,0.118165024630521,0.380357142857160,0.003571428571424,-0.002586206896528,0.000000000000004,-0.012315270935966,-0.000000000000004,0.012561576354690,-0.003571428571425,0.002339901477804,2 -7745,7758,7760,7773,0.133189655172381,0.383928571428593,0.125615763546768,0.382142857142874,0.128078817733942,0.385714285714310,0.120504926108328,0.383928571428590,0.003571428571436,-0.002586206896536,0.000000000000004,-0.012561576354690,-0.000000000000003,0.012807881773415,-0.003571428571436,0.002339901477811,2 -7746,7759,7761,7774,0.135775862068904,0.387500000000018,0.128078817733942,0.385714285714310,0.130541871921090,0.389285714285725,0.122844827586127,0.387500000000016,0.003571428571414,-0.002586206896511,0.000000000000003,-0.012807881773415,-0.000000000000001,0.013054187192139,-0.003571428571416,0.002339901477786,2 -7747,7760,7762,7775,0.138362068965424,0.391071428571440,0.130541871921090,0.389285714285725,0.133004926108257,0.392857142857155,0.125184729063923,0.391071428571439,0.003571428571430,-0.002586206896529,0.000000000000001,-0.013054187192139,-0.000000000000000,0.013300492610864,-0.003571428571431,0.002339901477805,2 -7748,7761,7763,7776,0.140948275861954,0.394642857142868,0.133004926108257,0.392857142857155,0.135467980295424,0.396428571428581,0.127524630541728,0.394642857142868,0.003571428571426,-0.002586206896529,0.000000000000000,-0.013300492610864,0.000000000000000,0.013546798029588,-0.003571428571426,0.002339901477805,2 -7624,7749,7762,7777,0.137931034482591,0.400000000000000,0.143534482758482,0.398214285714290,0.135467980295424,0.396428571428581,0.129864532019533,0.398214285714290,0.000000000000000,0.013793103448311,0.003571428571419,-0.002586206896528,-0.000000000000000,-0.013546798029588,-0.003571428571419,0.002339901477805,2 -7750,7765,7778,11573,0.099445812807986,0.351785714285708,0.095320197044436,0.353571428571416,0.088977832512447,0.351785714285708,0.093103448275998,0.350000000000000,0.003571428571416,-0.002339901477800,0.000000000000000,0.010591133004900,-0.003571428571416,0.002093596059077,0.000000000000000,-0.010344827586177,2 -7751,7764,7766,7779,0.101785714285794,0.355357142857133,0.095320197044436,0.353571428571416,0.097536945812890,0.357142857142849,0.091071428571532,0.355357142857133,0.003571428571433,-0.002339901477816,-0.000000000000000,-0.010591133004900,-0.000000000000000,0.010837438423624,-0.003571428571433,0.002093596059092,2 -7752,7765,7767,7780,0.104125615763615,0.358928571428571,0.097536945812890,0.357142857142849,0.099753694581354,0.360714285714293,0.093165024630629,0.358928571428571,0.003571428571445,-0.002339901477827,0.000000000000000,-0.010837438423624,-0.000000000000001,0.011083743842349,-0.003571428571444,0.002093596059102,2 -7753,7766,7768,7781,0.106465517241449,0.362500000000019,0.099753694581354,0.360714285714293,0.101970443349833,0.364285714285743,0.095258620689738,0.362500000000018,0.003571428571451,-0.002339901477841,0.000000000000001,-0.011083743842349,-0.000000000000003,0.011330049261073,-0.003571428571449,0.002093596059117,2 -7754,7767,7769,7782,0.108805418719283,0.366071428571465,0.101970443349833,0.364285714285743,0.104187192118297,0.367857142857184,0.097352216748848,0.366071428571462,0.003571428571441,-0.002339901477826,0.000000000000003,-0.011330049261073,-0.000000000000003,0.011576354679797,-0.003571428571440,0.002093596059102,2 -7755,7768,7770,7783,0.111145320197104,0.369642857142900,0.104187192118297,0.367857142857184,0.106403940886753,0.371428571428611,0.099445812807945,0.369642857142896,0.003571428571428,-0.002339901477817,0.000000000000003,-0.011576354679797,-0.000000000000004,0.011822660098520,-0.003571428571427,0.002093596059094,2 -7756,7769,7771,7784,0.113485221674920,0.373214285714325,0.106403940886753,0.371428571428611,0.108620689655205,0.375000000000035,0.101539408867038,0.373214285714321,0.003571428571424,-0.002339901477814,0.000000000000004,-0.011822660098520,-0.000000000000005,0.012068965517243,-0.003571428571423,0.002093596059091,2 -7757,7770,7772,7785,0.115825123152723,0.376785714285742,0.108620689655205,0.375000000000035,0.110837438423636,0.378571428571445,0.103633004926118,0.376785714285738,0.003571428571410,-0.002339901477792,0.000000000000005,-0.012068965517243,-0.000000000000004,0.012315270935966,-0.003571428571411,0.002093596059069,2 -7758,7771,7773,7786,0.118165024630521,0.380357142857160,0.110837438423636,0.378571428571445,0.113054187192078,0.382142857142870,0.105726600985193,0.380357142857156,0.003571428571425,-0.002339901477804,0.000000000000004,-0.012315270935966,-0.000000000000004,0.012561576354690,-0.003571428571425,0.002093596059080,2 -7759,7772,7774,7787,0.120504926108328,0.383928571428590,0.113054187192078,0.382142857142870,0.115270935960527,0.385714285714306,0.107820197044276,0.383928571428587,0.003571428571436,-0.002339901477811,0.000000000000004,-0.012561576354690,-0.000000000000003,0.012807881773415,-0.003571428571437,0.002093596059087,2 -7760,7773,7775,7788,0.122844827586127,0.387500000000016,0.115270935960527,0.385714285714306,0.117487684728951,0.389285714285723,0.109913793103350,0.387500000000014,0.003571428571416,-0.002339901477786,0.000000000000003,-0.012807881773415,-0.000000000000001,0.013054187192139,-0.003571428571418,0.002093596059062,2 -7761,7774,7776,7789,0.125184729063923,0.391071428571439,0.117487684728951,0.389285714285723,0.119704433497394,0.392857142857154,0.112007389162422,0.391071428571438,0.003571428571431,-0.002339901477805,0.000000000000001,-0.013054187192139,-0.000000000000000,0.013300492610864,-0.003571428571431,0.002093596059080,2 -7762,7775,7777,7790,0.127524630541728,0.394642857142868,0.119704433497394,0.392857142857154,0.121921182265837,0.396428571428581,0.114100985221502,0.394642857142868,0.003571428571426,-0.002339901477805,0.000000000000000,-0.013300492610864,0.000000000000000,0.013546798029588,-0.003571428571427,0.002093596059081,2 -7610,7763,7776,7791,0.124137931034281,0.400000000000000,0.129864532019533,0.398214285714290,0.121921182265837,0.396428571428581,0.116194581280584,0.398214285714290,0.000000000000000,0.013793103448311,0.003571428571419,-0.002339901477805,-0.000000000000000,-0.013546798029588,-0.003571428571419,0.002093596059082,2 -7764,7779,7792,11514,0.088977832512447,0.351785714285708,0.084729064039536,0.353571428571416,0.078509852216908,0.351785714285708,0.082758620689820,0.350000000000000,0.003571428571416,-0.002093596059077,0.000000000000000,0.010591133004901,-0.003571428571417,0.001847290640354,0.000000000000000,-0.010344827586177,2 -7765,7778,7780,7793,0.091071428571532,0.355357142857133,0.084729064039536,0.353571428571416,0.086699507389265,0.357142857142849,0.080357142857269,0.355357142857133,0.003571428571433,-0.002093596059092,-0.000000000000000,-0.010591133004901,0.000000000000000,0.010837438423625,-0.003571428571433,0.001847290640368,2 -7766,7779,7781,7794,0.093165024630629,0.358928571428571,0.086699507389265,0.357142857142849,0.088669950739005,0.360714285714293,0.082204433497642,0.358928571428571,0.003571428571444,-0.002093596059102,-0.000000000000000,-0.010837438423625,-0.000000000000000,0.011083743842349,-0.003571428571443,0.001847290640378,2 -7767,7780,7782,7795,0.095258620689738,0.362500000000018,0.088669950739005,0.360714285714293,0.090640394088760,0.364285714285741,0.084051724138027,0.362500000000016,0.003571428571449,-0.002093596059117,0.000000000000000,-0.011083743842349,-0.000000000000002,0.011330049261073,-0.003571428571447,0.001847290640393,2 -7768,7781,7783,7796,0.097352216748848,0.366071428571462,0.090640394088760,0.364285714285741,0.092610837438500,0.367857142857181,0.085899014778412,0.366071428571459,0.003571428571440,-0.002093596059102,0.000000000000002,-0.011330049261073,-0.000000000000003,0.011576354679797,-0.003571428571439,0.001847290640378,2 -7769,7782,7784,7797,0.099445812807945,0.369642857142896,0.092610837438500,0.367857142857181,0.094581280788232,0.371428571428607,0.087746305418786,0.369642857142892,0.003571428571427,-0.002093596059094,0.000000000000003,-0.011576354679797,-0.000000000000004,0.011822660098521,-0.003571428571426,0.001847290640371,2 -7770,7783,7785,7798,0.101539408867038,0.373214285714321,0.094581280788232,0.371428571428607,0.096551724137962,0.375000000000030,0.089593596059156,0.373214285714316,0.003571428571423,-0.002093596059091,0.000000000000004,-0.011822660098521,-0.000000000000005,0.012068965517244,-0.003571428571422,0.001847290640368,2 -7771,7784,7786,7799,0.103633004926118,0.376785714285738,0.096551724137962,0.375000000000030,0.098522167487669,0.378571428571441,0.091440886699513,0.376785714285733,0.003571428571411,-0.002093596059069,0.000000000000005,-0.012068965517244,-0.000000000000004,0.012315270935967,-0.003571428571412,0.001847290640345,2 -7772,7785,7787,7800,0.105726600985193,0.380357142857156,0.098522167487669,0.378571428571441,0.100492610837387,0.382142857142866,0.093288177339864,0.380357142857152,0.003571428571425,-0.002093596059080,0.000000000000004,-0.012315270935967,-0.000000000000004,0.012561576354691,-0.003571428571425,0.001847290640356,2 -7773,7786,7788,7801,0.107820197044276,0.383928571428587,0.100492610837387,0.382142857142866,0.102463054187112,0.385714285714303,0.095135467980223,0.383928571428583,0.003571428571437,-0.002093596059087,0.000000000000004,-0.012561576354691,-0.000000000000003,0.012807881773416,-0.003571428571437,0.001847290640362,2 -7774,7787,7789,7802,0.109913793103350,0.387500000000014,0.102463054187112,0.385714285714303,0.104433497536811,0.389285714285722,0.096982758620573,0.387500000000012,0.003571428571418,-0.002093596059062,0.000000000000003,-0.012807881773416,-0.000000000000001,0.013054187192140,-0.003571428571420,0.001847290640338,2 -7775,7788,7790,7803,0.112007389162422,0.391071428571438,0.104433497536811,0.389285714285722,0.106403940886530,0.392857142857154,0.098830049260919,0.391071428571438,0.003571428571431,-0.002093596059080,0.000000000000001,-0.013054187192140,-0.000000000000000,0.013300492610864,-0.003571428571432,0.001847290640356,2 -7776,7789,7791,7804,0.114100985221502,0.394642857142868,0.106403940886530,0.392857142857154,0.108374384236249,0.396428571428581,0.100677339901276,0.394642857142867,0.003571428571427,-0.002093596059081,0.000000000000000,-0.013300492610864,0.000000000000000,0.013546798029589,-0.003571428571427,0.001847290640357,2 -7596,7777,7790,7805,0.110344827585969,0.400000000000000,0.116194581280584,0.398214285714290,0.108374384236249,0.396428571428581,0.102524630541634,0.398214285714291,0.000000000000000,0.013793103448312,0.003571428571419,-0.002093596059082,-0.000000000000000,-0.013546798029589,-0.003571428571419,0.001847290640359,2 -7778,7793,7806,11455,0.078509852216908,0.351785714285708,0.074137931034635,0.353571428571417,0.068041871921370,0.351785714285708,0.072413793103643,0.350000000000000,0.003571428571417,-0.001847290640354,0.000000000000000,0.010591133004900,-0.003571428571417,0.001600985221631,0.000000000000000,-0.010344827586177,2 -7779,7792,7794,7807,0.080357142857269,0.355357142857133,0.074137931034635,0.353571428571417,0.075862068965641,0.357142857142849,0.069642857143007,0.355357142857133,0.003571428571433,-0.001847290640368,-0.000000000000000,-0.010591133004900,0.000000000000000,0.010837438423624,-0.003571428571432,0.001600985221644,2 -7780,7793,7795,7808,0.082204433497642,0.358928571428571,0.075862068965641,0.357142857142849,0.077586206896656,0.360714285714292,0.071243842364655,0.358928571428571,0.003571428571443,-0.001847290640378,-0.000000000000000,-0.010837438423624,-0.000000000000001,0.011083743842349,-0.003571428571443,0.001600985221653,2 -7781,7794,7796,7809,0.084051724138027,0.362500000000016,0.077586206896656,0.360714285714292,0.079310344827687,0.364285714285738,0.072844827586316,0.362500000000015,0.003571428571447,-0.001847290640393,0.000000000000001,-0.011083743842349,-0.000000000000002,0.011330049261073,-0.003571428571445,0.001600985221669,2 -7782,7795,7797,7810,0.085899014778412,0.366071428571459,0.079310344827687,0.364285714285738,0.081034482758703,0.367857142857177,0.074445812807977,0.366071428571456,0.003571428571439,-0.001847290640378,0.000000000000002,-0.011330049261073,-0.000000000000003,0.011576354679797,-0.003571428571438,0.001600985221654,2 -7783,7796,7798,7811,0.087746305418786,0.369642857142892,0.081034482758703,0.367857142857177,0.082758620689712,0.371428571428603,0.076046798029628,0.369642857142888,0.003571428571426,-0.001847290640371,0.000000000000003,-0.011576354679797,-0.000000000000004,0.011822660098520,-0.003571428571425,0.001600985221648,2 -7784,7797,7799,7812,0.089593596059156,0.373214285714316,0.082758620689712,0.371428571428603,0.084482758620719,0.375000000000024,0.077647783251275,0.373214285714311,0.003571428571422,-0.001847290640368,0.000000000000004,-0.011822660098520,-0.000000000000005,0.012068965517243,-0.003571428571421,0.001600985221646,2 -7785,7798,7800,7813,0.091440886699513,0.376785714285733,0.084482758620719,0.375000000000024,0.086206896551703,0.378571428571437,0.079248768472909,0.376785714285728,0.003571428571412,-0.001847290640345,0.000000000000005,-0.012068965517243,-0.000000000000004,0.012315270935966,-0.003571428571413,0.001600985221622,2 -7786,7799,7801,7814,0.093288177339864,0.380357142857152,0.086206896551703,0.378571428571437,0.087931034482697,0.382142857142863,0.080849753694536,0.380357142857148,0.003571428571425,-0.001847290640356,0.000000000000004,-0.012315270935966,-0.000000000000004,0.012561576354689,-0.003571428571426,0.001600985221633,2 -7787,7800,7802,7815,0.095135467980223,0.383928571428583,0.087931034482697,0.382142857142863,0.089655172413697,0.385714285714300,0.082450738916171,0.383928571428580,0.003571428571437,-0.001847290640362,0.000000000000004,-0.012561576354689,-0.000000000000003,0.012807881773414,-0.003571428571438,0.001600985221637,2 -7788,7801,7803,7816,0.096982758620573,0.387500000000012,0.089655172413697,0.385714285714300,0.091379310344672,0.389285714285721,0.084051724137796,0.387500000000009,0.003571428571420,-0.001847290640338,0.000000000000003,-0.012807881773414,-0.000000000000001,0.013054187192138,-0.003571428571421,0.001600985221614,2 -7789,7802,7804,7817,0.098830049260919,0.391071428571438,0.091379310344672,0.389285714285721,0.093103448275666,0.392857142857153,0.085652709359419,0.391071428571437,0.003571428571432,-0.001847290640356,0.000000000000001,-0.013054187192138,-0.000000000000000,0.013300492610863,-0.003571428571433,0.001600985221631,2 -7790,7803,7805,7818,0.100677339901276,0.394642857142867,0.093103448275666,0.392857142857153,0.094827586206661,0.396428571428581,0.087253694581051,0.394642857142867,0.003571428571427,-0.001847290640357,0.000000000000000,-0.013300492610863,-0.000000000000000,0.013546798029587,-0.003571428571428,0.001600985221633,2 -7582,7791,7804,7819,0.096551724137659,0.400000000000000,0.102524630541634,0.398214285714291,0.094827586206661,0.396428571428581,0.088854679802686,0.398214285714291,0.000000000000000,0.013793103448309,0.003571428571419,-0.001847290640359,0.000000000000000,-0.013546798029587,-0.003571428571419,0.001600985221636,2 -7792,7807,7820,11396,0.068041871921370,0.351785714285708,0.063546798029735,0.353571428571417,0.057573891625831,0.351785714285709,0.062068965517465,0.350000000000000,0.003571428571417,-0.001600985221631,0.000000000000000,0.010591133004901,-0.003571428571417,0.001354679802907,0.000000000000000,-0.010344827586177,2 -7793,7806,7808,7821,0.069642857143007,0.355357142857133,0.063546798029735,0.353571428571417,0.065024630542016,0.357142857142849,0.058928571428744,0.355357142857133,0.003571428571432,-0.001600985221644,-0.000000000000000,-0.010591133004901,0.000000000000000,0.010837438423625,-0.003571428571432,0.001354679802920,2 -7794,7807,7809,7822,0.071243842364655,0.358928571428571,0.065024630542016,0.357142857142849,0.066502463054307,0.360714285714292,0.060283251231668,0.358928571428570,0.003571428571443,-0.001600985221653,-0.000000000000000,-0.010837438423625,-0.000000000000001,0.011083743842350,-0.003571428571442,0.001354679802928,2 -7795,7808,7810,7823,0.072844827586316,0.362500000000015,0.066502463054307,0.360714285714292,0.067980295566614,0.364285714285736,0.061637931034605,0.362500000000013,0.003571428571445,-0.001600985221669,0.000000000000001,-0.011083743842350,-0.000000000000003,0.011330049261074,-0.003571428571443,0.001354679802945,2 -7796,7809,7811,7824,0.074445812807977,0.366071428571456,0.067980295566614,0.364285714285736,0.069458128078905,0.367857142857174,0.062992610837541,0.366071428571453,0.003571428571438,-0.001600985221654,0.000000000000003,-0.011330049261074,-0.000000000000003,0.011576354679798,-0.003571428571438,0.001354679802929,2 -7797,7810,7812,7825,0.076046798029628,0.369642857142888,0.069458128078905,0.367857142857174,0.070935960591191,0.371428571428599,0.064347290640468,0.369642857142884,0.003571428571425,-0.001600985221648,0.000000000000003,-0.011576354679798,-0.000000000000004,0.011822660098522,-0.003571428571424,0.001354679802924,2 -7798,7811,7813,7826,0.077647783251275,0.373214285714311,0.070935960591191,0.371428571428599,0.072413793103475,0.375000000000019,0.065701970443391,0.373214285714307,0.003571428571421,-0.001600985221646,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517245,-0.003571428571420,0.001354679802922,2 -7799,7812,7814,7827,0.079248768472909,0.376785714285728,0.072413793103475,0.375000000000019,0.073891625615736,0.378571428571433,0.067056650246302,0.376785714285724,0.003571428571413,-0.001600985221622,0.000000000000005,-0.012068965517245,-0.000000000000004,0.012315270935968,-0.003571428571414,0.001354679802899,2 -7800,7813,7815,7828,0.080849753694536,0.380357142857148,0.073891625615736,0.378571428571433,0.075369458128006,0.382142857142859,0.068411330049206,0.380357142857144,0.003571428571426,-0.001600985221633,0.000000000000004,-0.012315270935968,-0.000000000000003,0.012561576354692,-0.003571428571426,0.001354679802908,2 -7801,7814,7816,7829,0.082450738916171,0.383928571428580,0.075369458128006,0.382142857142859,0.076847290640281,0.385714285714297,0.069766009852116,0.383928571428576,0.003571428571438,-0.001600985221637,0.000000000000003,-0.012561576354692,-0.000000000000003,0.012807881773417,-0.003571428571438,0.001354679802912,2 -7802,7815,7817,7830,0.084051724137796,0.387500000000009,0.076847290640281,0.385714285714297,0.078325123152533,0.389285714285719,0.071120689655017,0.387500000000007,0.003571428571421,-0.001600985221614,0.000000000000003,-0.012807881773417,-0.000000000000001,0.013054187192141,-0.003571428571424,0.001354679802889,2 -7803,7816,7818,7831,0.085652709359419,0.391071428571437,0.078325123152533,0.389285714285719,0.079802955664802,0.392857142857153,0.072475369457915,0.391071428571436,0.003571428571433,-0.001600985221631,0.000000000000001,-0.013054187192141,-0.000000000000000,0.013300492610866,-0.003571428571434,0.001354679802907,2 -7804,7817,7819,7832,0.087253694581051,0.394642857142867,0.079802955664802,0.392857142857153,0.081280788177073,0.396428571428581,0.073830049260823,0.394642857142867,0.003571428571428,-0.001600985221633,0.000000000000000,-0.013300492610866,-0.000000000000000,0.013546798029590,-0.003571428571428,0.001354679802909,2 -7568,7805,7818,7833,0.082758620689347,0.400000000000000,0.088854679802686,0.398214285714291,0.081280788177073,0.396428571428581,0.075184729063734,0.398214285714291,0.000000000000000,0.013793103448314,0.003571428571419,-0.001600985221636,0.000000000000000,-0.013546798029590,-0.003571428571419,0.001354679802913,2 -7806,7821,7834,11337,0.057573891625831,0.351785714285709,0.052955665024834,0.353571428571417,0.047105911330291,0.351785714285709,0.051724137931288,0.350000000000000,0.003571428571417,-0.001354679802907,0.000000000000000,0.010591133004901,-0.003571428571417,0.001108374384184,0.000000000000000,-0.010344827586177,2 -7807,7820,7822,7835,0.058928571428744,0.355357142857133,0.052955665024834,0.353571428571417,0.054187192118391,0.357142857142849,0.048214285714481,0.355357142857133,0.003571428571432,-0.001354679802920,-0.000000000000000,-0.010591133004901,-0.000000000000000,0.010837438423625,-0.003571428571432,0.001108374384195,2 -7808,7821,7823,7836,0.060283251231668,0.358928571428570,0.054187192118391,0.357142857142849,0.055418719211957,0.360714285714291,0.049322660098680,0.358928571428570,0.003571428571442,-0.001354679802928,0.000000000000000,-0.010837438423625,-0.000000000000001,0.011083743842350,-0.003571428571441,0.001108374384203,2 -7809,7822,7824,7837,0.061637931034605,0.362500000000013,0.055418719211957,0.360714285714291,0.056650246305539,0.364285714285733,0.050431034482892,0.362500000000011,0.003571428571443,-0.001354679802945,0.000000000000001,-0.011083743842350,-0.000000000000002,0.011330049261075,-0.003571428571441,0.001108374384220,2 -7810,7823,7825,7838,0.062992610837541,0.366071428571453,0.056650246305539,0.364285714285733,0.057881773399106,0.367857142857171,0.051539408867104,0.366071428571450,0.003571428571438,-0.001354679802929,0.000000000000002,-0.011330049261075,-0.000000000000003,0.011576354679799,-0.003571428571437,0.001108374384205,2 -7811,7824,7826,7839,0.064347290640468,0.369642857142884,0.057881773399106,0.367857142857171,0.059113300492669,0.371428571428594,0.052647783251307,0.369642857142881,0.003571428571424,-0.001354679802924,0.000000000000003,-0.011576354679799,-0.000000000000004,0.011822660098523,-0.003571428571423,0.001108374384201,2 -7812,7825,7827,7840,0.065701970443391,0.373214285714307,0.059113300492669,0.371428571428594,0.060344827586229,0.375000000000014,0.053756157635507,0.373214285714302,0.003571428571420,-0.001354679802922,0.000000000000004,-0.011822660098523,-0.000000000000005,0.012068965517246,-0.003571428571420,0.001108374384199,2 -7813,7826,7828,7841,0.067056650246302,0.376785714285724,0.060344827586229,0.375000000000014,0.061576354679767,0.378571428571429,0.054864532019694,0.376785714285719,0.003571428571414,-0.001354679802899,0.000000000000005,-0.012068965517246,-0.000000000000004,0.012315270935970,-0.003571428571415,0.001108374384175,2 -7814,7827,7829,7842,0.068411330049206,0.380357142857144,0.061576354679767,0.378571428571429,0.062807881773313,0.382142857142855,0.055972906403874,0.380357142857140,0.003571428571426,-0.001354679802908,0.000000000000004,-0.012315270935970,-0.000000000000004,0.012561576354694,-0.003571428571427,0.001108374384184,2 -7815,7828,7830,7843,0.069766009852116,0.383928571428576,0.062807881773313,0.382142857142855,0.064039408866863,0.385714285714294,0.057081280788059,0.383928571428573,0.003571428571438,-0.001354679802912,0.000000000000004,-0.012561576354694,-0.000000000000003,0.012807881773419,-0.003571428571439,0.001108374384187,2 -7816,7829,7831,7844,0.071120689655017,0.387500000000007,0.064039408866863,0.385714285714294,0.065270935960390,0.389285714285718,0.058189655172235,0.387500000000005,0.003571428571424,-0.001354679802889,0.000000000000003,-0.012807881773419,-0.000000000000001,0.013054187192144,-0.003571428571426,0.001108374384165,2 -7817,7830,7832,7845,0.072475369457915,0.391071428571436,0.065270935960390,0.389285714285718,0.066502463053934,0.392857142857153,0.059298029556409,0.391071428571435,0.003571428571434,-0.001354679802907,0.000000000000001,-0.013054187192144,-0.000000000000000,0.013300492610869,-0.003571428571435,0.001108374384182,2 -7818,7831,7833,7846,0.073830049260823,0.394642857142867,0.066502463053934,0.392857142857153,0.067733990147481,0.396428571428581,0.060406403940592,0.394642857142867,0.003571428571428,-0.001354679802909,0.000000000000000,-0.013300492610869,0.000000000000000,0.013546798029593,-0.003571428571429,0.001108374384185,2 -7554,7819,7832,7847,0.068965517241032,0.400000000000000,0.075184729063734,0.398214285714291,0.067733990147481,0.396428571428581,0.061514778324779,0.398214285714291,0.000000000000000,0.013793103448317,0.003571428571419,-0.001354679802913,-0.000000000000000,-0.013546798029593,-0.003571428571419,0.001108374384189,2 -7820,7835,7848,11278,0.047105911330291,0.351785714285709,0.042364532019931,0.353571428571418,0.036637931034748,0.351785714285709,0.041379310345109,0.350000000000000,0.003571428571417,-0.001108374384184,0.000000000000000,0.010591133004905,-0.003571428571418,0.000862068965461,0.000000000000000,-0.010344827586182,2 -7821,7834,7836,7849,0.048214285714481,0.355357142857133,0.042364532019931,0.353571428571418,0.043349753694764,0.357142857142849,0.037500000000214,0.355357142857133,0.003571428571432,-0.001108374384195,-0.000000000000000,-0.010591133004905,-0.000000000000000,0.010837438423629,-0.003571428571431,0.000862068965471,2 -7822,7835,7837,7850,0.049322660098680,0.358928571428570,0.043349753694764,0.357142857142849,0.044334975369605,0.360714285714290,0.038362068965690,0.358928571428570,0.003571428571441,-0.001108374384203,0.000000000000000,-0.010837438423629,-0.000000000000000,0.011083743842353,-0.003571428571441,0.000862068965479,2 -7823,7836,7838,7851,0.050431034482892,0.362500000000011,0.044334975369605,0.360714285714290,0.045320197044463,0.364285714285731,0.039224137931177,0.362500000000010,0.003571428571441,-0.001108374384220,0.000000000000000,-0.011083743842353,-0.000000000000002,0.011330049261077,-0.003571428571439,0.000862068965496,2 -7824,7837,7839,7852,0.051539408867104,0.366071428571450,0.045320197044463,0.364285714285731,0.046305418719306,0.367857142857167,0.040086206896665,0.366071428571447,0.003571428571437,-0.001108374384205,0.000000000000002,-0.011330049261077,-0.000000000000003,0.011576354679801,-0.003571428571436,0.000862068965480,2 -7825,7838,7840,7853,0.052647783251307,0.369642857142881,0.046305418719306,0.367857142857167,0.047290640394145,0.371428571428590,0.040948275862144,0.369642857142877,0.003571428571423,-0.001108374384201,0.000000000000003,-0.011576354679801,-0.000000000000004,0.011822660098524,-0.003571428571423,0.000862068965477,2 -7826,7839,7841,7854,0.053756157635507,0.373214285714302,0.047290640394145,0.371428571428590,0.048275862068983,0.375000000000009,0.041810344827621,0.373214285714297,0.003571428571420,-0.001108374384199,0.000000000000004,-0.011822660098524,-0.000000000000005,0.012068965517247,-0.003571428571419,0.000862068965476,2 -7827,7840,7842,7855,0.054864532019694,0.376785714285719,0.048275862068983,0.375000000000009,0.049261083743796,0.378571428571424,0.042672413793085,0.376785714285715,0.003571428571415,-0.001108374384175,0.000000000000005,-0.012068965517247,-0.000000000000004,0.012315270935970,-0.003571428571416,0.000862068965452,2 -7828,7841,7843,7856,0.055972906403874,0.380357142857140,0.049261083743796,0.378571428571424,0.050246305418619,0.382142857142851,0.043534482758541,0.380357142857136,0.003571428571427,-0.001108374384184,0.000000000000004,-0.012315270935970,-0.000000000000004,0.012561576354694,-0.003571428571427,0.000862068965460,2 -7829,7842,7844,7857,0.057081280788059,0.383928571428573,0.050246305418619,0.382142857142851,0.051231527093444,0.385714285714291,0.044396551724003,0.383928571428569,0.003571428571439,-0.001108374384187,0.000000000000004,-0.012561576354694,-0.000000000000003,0.012807881773419,-0.003571428571439,0.000862068965463,2 -7830,7843,7845,7858,0.058189655172235,0.387500000000005,0.051231527093444,0.385714285714291,0.052216748768246,0.389285714285717,0.045258620689455,0.387500000000003,0.003571428571426,-0.001108374384165,0.000000000000003,-0.012807881773419,-0.000000000000001,0.013054187192143,-0.003571428571427,0.000862068965440,2 -7831,7844,7846,7859,0.059298029556409,0.391071428571435,0.052216748768246,0.389285714285717,0.053201970443066,0.392857142857152,0.046120689654903,0.391071428571434,0.003571428571435,-0.001108374384182,0.000000000000001,-0.013054187192143,-0.000000000000000,0.013300492610867,-0.003571428571436,0.000862068965457,2 -7832,7845,7847,7860,0.060406403940592,0.394642857142867,0.053201970443066,0.392857142857152,0.054187192117889,0.396428571428581,0.046982758620362,0.394642857142867,0.003571428571429,-0.001108374384185,0.000000000000000,-0.013300492610867,0.000000000000000,0.013546798029591,-0.003571428571429,0.000862068965461,2 -7540,7833,7846,7861,0.055172413792716,0.400000000000000,0.061514778324779,0.398214285714291,0.054187192117889,0.396428571428581,0.047844827585826,0.398214285714291,0.000000000000000,0.013793103448315,0.003571428571419,-0.001108374384189,-0.000000000000000,-0.013546798029591,-0.003571428571419,0.000862068965466,2 -7834,7849,7862,11219,0.036637931034748,0.351785714285709,0.031773399015028,0.353571428571418,0.026169950739208,0.351785714285709,0.031034482758929,0.350000000000000,0.003571428571418,-0.000862068965461,0.000000000000000,0.010591133004902,-0.003571428571418,0.000615763546737,0.000000000000000,-0.010344827586179,2 -7835,7848,7850,7863,0.037500000000214,0.355357142857133,0.031773399015028,0.353571428571418,0.032512315271137,0.357142857142849,0.026785714285951,0.355357142857134,0.003571428571431,-0.000862068965471,-0.000000000000000,-0.010591133004902,0.000000000000000,0.010837438423626,-0.003571428571431,0.000615763546747,2 -7836,7849,7851,7864,0.038362068965690,0.358928571428570,0.032512315271137,0.357142857142849,0.033251231527254,0.360714285714290,0.027401477832701,0.358928571428569,0.003571428571441,-0.000862068965479,-0.000000000000000,-0.010837438423626,-0.000000000000001,0.011083743842351,-0.003571428571440,0.000615763546754,2 -7837,7850,7852,7865,0.039224137931177,0.362500000000010,0.033251231527254,0.360714285714290,0.033990147783387,0.364285714285728,0.028017241379464,0.362500000000008,0.003571428571439,-0.000862068965496,0.000000000000001,-0.011083743842351,-0.000000000000003,0.011330049261075,-0.003571428571437,0.000615763546772,2 -7838,7851,7853,7866,0.040086206896665,0.366071428571447,0.033990147783387,0.364285714285728,0.034729064039506,0.367857142857164,0.028633004926228,0.366071428571444,0.003571428571436,-0.000862068965480,0.000000000000003,-0.011330049261075,-0.000000000000003,0.011576354679799,-0.003571428571435,0.000615763546756,2 -7839,7852,7854,7867,0.040948275862144,0.369642857142877,0.034729064039506,0.367857142857164,0.035467980295622,0.371428571428586,0.029248768472983,0.369642857142873,0.003571428571423,-0.000862068965477,0.000000000000003,-0.011576354679799,-0.000000000000004,0.011822660098522,-0.003571428571422,0.000615763546754,2 -7840,7853,7855,7868,0.041810344827621,0.373214285714297,0.035467980295622,0.371428571428586,0.036206896551736,0.375000000000004,0.029864532019737,0.373214285714293,0.003571428571419,-0.000862068965476,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517245,-0.003571428571418,0.000615763546753,2 -7841,7854,7856,7869,0.042672413793085,0.376785714285715,0.036206896551736,0.375000000000004,0.036945812807827,0.378571428571420,0.030480295566478,0.376785714285710,0.003571428571416,-0.000862068965452,0.000000000000005,-0.012068965517245,-0.000000000000004,0.012315270935969,-0.003571428571416,0.000615763546729,2 -7842,7855,7857,7870,0.043534482758541,0.380357142857136,0.036945812807827,0.378571428571420,0.037684729063925,0.382142857142848,0.031096059113211,0.380357142857132,0.003571428571427,-0.000862068965460,0.000000000000004,-0.012315270935969,-0.000000000000003,0.012561576354693,-0.003571428571428,0.000615763546736,2 -7843,7856,7858,7871,0.044396551724003,0.383928571428569,0.037684729063925,0.382142857142848,0.038423645320026,0.385714285714287,0.031711822659948,0.383928571428566,0.003571428571439,-0.000862068965463,0.000000000000003,-0.012561576354693,-0.000000000000003,0.012807881773417,-0.003571428571440,0.000615763546738,2 -7844,7857,7859,7872,0.045258620689455,0.387500000000003,0.038423645320026,0.385714285714287,0.039162561576104,0.389285714285716,0.032327586206675,0.387500000000000,0.003571428571427,-0.000862068965440,0.000000000000003,-0.012807881773417,-0.000000000000001,0.013054187192142,-0.003571428571430,0.000615763546716,2 -7845,7858,7860,7873,0.046120689654903,0.391071428571434,0.039162561576104,0.389285714285716,0.039901477832199,0.392857142857152,0.032943349753399,0.391071428571433,0.003571428571436,-0.000862068965457,0.000000000000001,-0.013054187192142,-0.000000000000000,0.013300492610866,-0.003571428571436,0.000615763546733,2 -7846,7859,7861,7874,0.046982758620362,0.394642857142867,0.039901477832199,0.392857142857152,0.040640394088298,0.396428571428581,0.033559113300134,0.394642857142866,0.003571428571429,-0.000862068965461,0.000000000000000,-0.013300492610866,0.000000000000000,0.013546798029591,-0.003571428571430,0.000615763546737,2 -7526,7847,7860,7875,0.041379310344402,0.400000000000000,0.047844827585826,0.398214285714291,0.040640394088298,0.396428571428581,0.034174876846874,0.398214285714291,0.000000000000000,0.013793103448314,0.003571428571419,-0.000862068965466,-0.000000000000000,-0.013546798029591,-0.003571428571419,0.000615763546743,2 -7848,7863,7876,11160,0.026169950739208,0.351785714285709,0.021182266010127,0.353571428571418,0.015701970443669,0.351785714285709,0.020689655172751,0.350000000000000,0.003571428571418,-0.000615763546737,0.000000000000000,0.010591133004901,-0.003571428571418,0.000369458128014,0.000000000000000,-0.010344827586177,2 -7849,7862,7864,7877,0.026785714285951,0.355357142857134,0.021182266010127,0.353571428571418,0.021674876847512,0.357142857142849,0.016071428571688,0.355357142857134,0.003571428571431,-0.000615763546747,-0.000000000000000,-0.010591133004901,0.000000000000000,0.010837438423625,-0.003571428571431,0.000369458128023,2 -7850,7863,7865,7878,0.027401477832701,0.358928571428569,0.021674876847512,0.357142857142849,0.022167487684904,0.360714285714289,0.016440886699714,0.358928571428569,0.003571428571440,-0.000615763546754,-0.000000000000000,-0.010837438423625,-0.000000000000001,0.011083743842350,-0.003571428571439,0.000369458128030,2 -7851,7864,7866,7879,0.028017241379464,0.362500000000008,0.022167487684904,0.360714285714289,0.022660098522313,0.364285714285726,0.016810344827752,0.362500000000007,0.003571428571437,-0.000615763546772,0.000000000000001,-0.011083743842350,-0.000000000000002,0.011330049261074,-0.003571428571436,0.000369458128047,2 -7852,7865,7867,7880,0.028633004926228,0.366071428571444,0.022660098522313,0.364285714285726,0.023152709359707,0.367857142857160,0.017179802955792,0.366071428571442,0.003571428571435,-0.000615763546756,0.000000000000002,-0.011330049261074,-0.000000000000003,0.011576354679798,-0.003571428571434,0.000369458128032,2 -7853,7866,7868,7881,0.029248768472983,0.369642857142873,0.023152709359707,0.367857142857160,0.023645320197100,0.371428571428582,0.017549261083823,0.369642857142869,0.003571428571422,-0.000615763546754,0.000000000000003,-0.011576354679798,-0.000000000000004,0.011822660098522,-0.003571428571421,0.000369458128031,2 -7854,7867,7869,7882,0.029864532019737,0.373214285714293,0.023645320197100,0.371428571428582,0.024137931034491,0.374999999999999,0.017918719211854,0.373214285714288,0.003571428571418,-0.000615763546753,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517245,-0.003571428571417,0.000369458128030,2 -7855,7868,7870,7883,0.030480295566478,0.376785714285710,0.024137931034491,0.374999999999999,0.024630541871858,0.378571428571416,0.018288177339872,0.376785714285705,0.003571428571416,-0.000615763546729,0.000000000000005,-0.012068965517245,-0.000000000000004,0.012315270935968,-0.003571428571417,0.000369458128006,2 -7856,7869,7871,7884,0.031096059113211,0.380357142857132,0.024630541871858,0.378571428571416,0.025123152709233,0.382142857142844,0.018657635467881,0.380357142857128,0.003571428571428,-0.000615763546736,0.000000000000004,-0.012315270935968,-0.000000000000004,0.012561576354692,-0.003571428571428,0.000369458128012,2 -7857,7870,7872,7885,0.031711822659948,0.383928571428566,0.025123152709233,0.382142857142844,0.025615763546608,0.385714285714284,0.019027093595893,0.383928571428562,0.003571428571440,-0.000615763546738,0.000000000000004,-0.012561576354692,-0.000000000000003,0.012807881773417,-0.003571428571440,0.000369458128013,2 -7858,7871,7873,7886,0.032327586206675,0.387500000000000,0.025615763546608,0.385714285714284,0.026108374383962,0.389285714285714,0.019396551723896,0.387499999999998,0.003571428571430,-0.000615763546716,0.000000000000003,-0.012807881773417,-0.000000000000001,0.013054187192142,-0.003571428571431,0.000369458127992,2 -7859,7872,7874,7887,0.032943349753399,0.391071428571433,0.026108374383962,0.389285714285714,0.026600985221332,0.392857142857151,0.019766009851895,0.391071428571433,0.003571428571436,-0.000615763546733,0.000000000000001,-0.013054187192142,-0.000000000000000,0.013300492610866,-0.003571428571437,0.000369458128008,2 -7860,7873,7875,7888,0.033559113300134,0.394642857142866,0.026600985221332,0.392857142857151,0.027093596058707,0.396428571428581,0.020135467979906,0.394642857142866,0.003571428571430,-0.000615763546737,0.000000000000000,-0.013300492610866,-0.000000000000000,0.013546798029590,-0.003571428571430,0.000369458128012,2 -7512,7861,7874,7889,0.027586206896088,0.400000000000000,0.034174876846874,0.398214285714291,0.027093596058707,0.396428571428581,0.020504926107921,0.398214285714291,0.000000000000000,0.013793103448314,0.003571428571419,-0.000615763546743,0.000000000000000,-0.013546798029590,-0.003571428571419,0.000369458128019,2 -7862,7877,7890,11101,0.015701970443669,0.351785714285709,0.010591133005226,0.353571428571418,0.005233990148130,0.351785714285709,0.010344827586573,0.350000000000000,0.003571428571418,-0.000369458128014,0.000000000000000,0.010591133004901,-0.003571428571419,0.000123152709291,0.000000000000000,-0.010344827586177,2 -7863,7876,7878,7891,0.016071428571688,0.355357142857134,0.010591133005226,0.353571428571418,0.010837438423887,0.357142857142849,0.005357142857425,0.355357142857134,0.003571428571431,-0.000369458128023,-0.000000000000000,-0.010591133004901,-0.000000000000000,0.010837438423625,-0.003571428571431,0.000123152709299,2 -7864,7877,7879,7892,0.016440886699714,0.358928571428569,0.010837438423887,0.357142857142849,0.011083743842554,0.360714285714289,0.005480295566727,0.358928571428569,0.003571428571439,-0.000369458128030,0.000000000000000,-0.010837438423625,-0.000000000000001,0.011083743842349,-0.003571428571439,0.000123152709305,2 -7865,7878,7880,7893,0.016810344827752,0.362500000000007,0.011083743842554,0.360714285714289,0.011330049261239,0.364285714285723,0.005603448276041,0.362500000000005,0.003571428571436,-0.000369458128047,0.000000000000001,-0.011083743842349,-0.000000000000002,0.011330049261074,-0.003571428571434,0.000123152709323,2 -7866,7879,7881,7894,0.017179802955792,0.366071428571442,0.011330049261239,0.364285714285723,0.011576354679909,0.367857142857157,0.005726600985356,0.366071428571439,0.003571428571434,-0.000369458128032,0.000000000000002,-0.011330049261074,-0.000000000000003,0.011576354679798,-0.003571428571433,0.000123152709308,2 -7867,7880,7882,7895,0.017549261083823,0.369642857142869,0.011576354679909,0.367857142857157,0.011822660098578,0.371428571428578,0.005849753694664,0.369642857142865,0.003571428571421,-0.000369458128031,0.000000000000003,-0.011576354679798,-0.000000000000004,0.011822660098521,-0.003571428571420,0.000123152709307,2 -7868,7881,7883,7896,0.017918719211854,0.373214285714288,0.011822660098578,0.371428571428578,0.012068965517246,0.374999999999994,0.005972906403971,0.373214285714284,0.003571428571417,-0.000369458128030,0.000000000000004,-0.011822660098521,-0.000000000000005,0.012068965517244,-0.003571428571416,0.000123152709307,2 -7869,7882,7884,7897,0.018288177339872,0.376785714285705,0.012068965517246,0.374999999999994,0.012315270935891,0.378571428571412,0.006096059113266,0.376785714285701,0.003571428571417,-0.000369458128006,0.000000000000005,-0.012068965517244,-0.000000000000004,0.012315270935968,-0.003571428571418,0.000123152709283,2 -7870,7883,7885,7898,0.018657635467881,0.380357142857128,0.012315270935891,0.378571428571412,0.012561576354541,0.382142857142840,0.006219211822551,0.380357142857124,0.003571428571428,-0.000369458128012,0.000000000000004,-0.012315270935968,-0.000000000000004,0.012561576354692,-0.003571428571429,0.000123152709288,2 -7871,7884,7886,7899,0.019027093595893,0.383928571428562,0.012561576354541,0.382142857142840,0.012807881773191,0.385714285714281,0.006342364531839,0.383928571428559,0.003571428571440,-0.000369458128013,0.000000000000004,-0.012561576354692,-0.000000000000003,0.012807881773416,-0.003571428571441,0.000123152709288,2 -7872,7885,7887,7900,0.019396551723896,0.387499999999998,0.012807881773191,0.385714285714281,0.013054187191821,0.389285714285713,0.006465517241117,0.387499999999996,0.003571428571431,-0.000369458127992,0.000000000000003,-0.012807881773416,-0.000000000000001,0.013054187192141,-0.003571428571433,0.000123152709267,2 -7873,7886,7888,7901,0.019766009851895,0.391071428571433,0.013054187191821,0.389285714285713,0.013300492610467,0.392857142857151,0.006588669950392,0.391071428571432,0.003571428571437,-0.000369458128008,0.000000000000001,-0.013054187192141,-0.000000000000000,0.013300492610865,-0.003571428571438,0.000123152709283,2 -7874,7887,7889,7902,0.020135467979906,0.394642857142866,0.013300492610467,0.392857142857151,0.013546798029117,0.396428571428581,0.006711822659678,0.394642857142866,0.003571428571430,-0.000369458128012,0.000000000000000,-0.013300492610865,0.000000000000000,0.013546798029589,-0.003571428571431,0.000123152709288,2 -7498,7875,7888,7903,0.013793103447775,0.400000000000000,0.020504926107921,0.398214285714291,0.013546798029117,0.396428571428581,0.006834975368970,0.398214285714291,0.000000000000000,0.013793103448313,0.003571428571419,-0.000369458128019,-0.000000000000000,-0.013546798029589,-0.003571428571419,0.000123152709296,2 -7876,7891,7904,11042,0.005233990148130,0.351785714285709,0.000000000000313,0.353571428571419,-0.005233990147436,0.351785714285709,0.000000000000381,0.350000000000000,0.003571428571419,-0.000123152709291,0.000000000000000,0.010591133004925,-0.003571428571419,-0.000123152709428,0.000000000000000,-0.010344827586207,2 -7877,7890,7892,7905,0.005357142857425,0.355357142857134,0.000000000000313,0.353571428571419,0.000000000000252,0.357142857142849,-0.005357142856860,0.355357142857134,0.003571428571431,-0.000123152709299,-0.000000000000000,-0.010591133004925,0.000000000000000,0.010837438423644,-0.003571428571431,-0.000123152709420,2 -7878,7891,7893,7906,0.005480295566727,0.358928571428569,0.000000000000252,0.357142857142849,0.000000000000197,0.360714285714288,-0.005480295566277,0.358928571428569,0.003571428571439,-0.000123152709305,-0.000000000000000,-0.010837438423644,-0.000000000000000,0.011083743842364,-0.003571428571438,-0.000123152709415,2 -7879,7892,7894,7907,0.005603448276041,0.362500000000005,0.000000000000197,0.360714285714288,0.000000000000161,0.364285714285721,-0.005603448275683,0.362500000000004,0.003571428571434,-0.000123152709323,0.000000000000000,-0.011083743842364,-0.000000000000003,0.011330049261083,-0.003571428571432,-0.000123152709396,2 -7880,7893,7895,7908,0.005726600985356,0.366071428571439,0.000000000000161,0.364285714285721,0.000000000000109,0.367857142857154,-0.005726600985087,0.366071428571436,0.003571428571433,-0.000123152709308,0.000000000000003,-0.011330049261083,-0.000000000000003,0.011576354679803,-0.003571428571433,-0.000123152709412,2 -7881,7894,7896,7909,0.005849753694664,0.369642857142865,0.000000000000109,0.367857142857154,0.000000000000057,0.371428571428573,-0.005849753694498,0.369642857142862,0.003571428571420,-0.000123152709307,0.000000000000003,-0.011576354679803,-0.000000000000004,0.011822660098521,-0.003571428571419,-0.000123152709411,2 -7882,7895,7897,7910,0.005972906403971,0.373214285714284,0.000000000000057,0.371428571428573,0.000000000000005,0.374999999999989,-0.005972906403909,0.373214285714279,0.003571428571416,-0.000123152709307,0.000000000000004,-0.011822660098521,-0.000000000000005,0.012068965517239,-0.003571428571415,-0.000123152709411,2 -7883,7896,7898,7911,0.006096059113266,0.376785714285701,0.000000000000005,0.374999999999989,-0.000000000000072,0.378571428571408,-0.006096059113333,0.376785714285696,0.003571428571418,-0.000123152709283,0.000000000000005,-0.012068965517239,-0.000000000000004,0.012315270935958,-0.003571428571419,-0.000123152709436,2 -7884,7897,7899,7912,0.006219211822551,0.380357142857124,-0.000000000000072,0.378571428571408,-0.000000000000143,0.382142857142836,-0.006219211822766,0.380357142857120,0.003571428571429,-0.000123152709288,0.000000000000004,-0.012315270935958,-0.000000000000004,0.012561576354677,-0.003571428571429,-0.000123152709431,2 -7885,7898,7900,7913,0.006342364531839,0.383928571428559,-0.000000000000143,0.382142857142836,-0.000000000000215,0.385714285714278,-0.006342364532198,0.383928571428555,0.003571428571441,-0.000123152709288,0.000000000000004,-0.012561576354677,-0.000000000000003,0.012807881773397,-0.003571428571441,-0.000123152709432,2 -7886,7899,7901,7914,0.006465517241117,0.387499999999996,-0.000000000000215,0.385714285714278,-0.000000000000307,0.389285714285712,-0.006465517241640,0.387499999999994,0.003571428571433,-0.000123152709267,0.000000000000003,-0.012807881773397,-0.000000000000001,0.013054187192116,-0.003571428571435,-0.000123152709452,2 -7887,7900,7902,7915,0.006588669950392,0.391071428571432,-0.000000000000307,0.389285714285712,-0.000000000000384,0.392857142857151,-0.006588669951084,0.391071428571431,0.003571428571438,-0.000123152709283,0.000000000000001,-0.013054187192116,-0.000000000000000,0.013300492610836,-0.003571428571439,-0.000123152709437,2 -7888,7901,7903,7916,0.006711822659678,0.394642857142866,-0.000000000000384,0.392857142857151,-0.000000000000455,0.396428571428582,-0.006711822660517,0.394642857142866,0.003571428571431,-0.000123152709288,0.000000000000000,-0.013300492610836,0.000000000000000,0.013546798029555,-0.003571428571431,-0.000123152709431,2 -7484,7889,7902,7917,-0.000000000000518,0.400000000000000,0.006834975368970,0.398214285714291,-0.000000000000455,0.396428571428582,-0.006834975369944,0.398214285714291,0.000000000000000,0.013793103448274,0.003571428571419,-0.000123152709296,-0.000000000000000,-0.013546798029555,-0.003571428571418,-0.000123152709422,2 -7890,7905,7918,10983,-0.005233990147436,0.351785714285709,-0.010591133004624,0.353571428571419,-0.015701970443029,0.351785714285710,-0.010344827585840,0.350000000000000,0.003571428571419,0.000123152709428,0.000000000000000,0.010591133004950,-0.003571428571419,-0.000369458128141,0.000000000000000,-0.010344827586236,2 -7891,7904,7906,7919,-0.005357142856860,0.355357142857134,-0.010591133004624,0.353571428571419,-0.010837438423402,0.357142857142849,-0.016071428571167,0.355357142857134,0.003571428571431,0.000123152709420,-0.000000000000000,-0.010591133004950,-0.000000000000000,0.010837438423664,-0.003571428571430,-0.000369458128135,2 -7892,7905,7907,7920,-0.005480295566277,0.358928571428569,-0.010837438423402,0.357142857142849,-0.011083743842174,0.360714285714287,-0.016440886699299,0.358928571428568,0.003571428571438,0.000123152709415,0.000000000000000,-0.010837438423664,-0.000000000000001,0.011083743842379,-0.003571428571438,-0.000369458128130,2 -7893,7906,7908,7921,-0.005603448275683,0.362500000000004,-0.011083743842174,0.360714285714287,-0.011330049260928,0.364285714285718,-0.016810344827419,0.362500000000002,0.003571428571432,0.000123152709396,0.000000000000001,-0.011083743842379,-0.000000000000002,0.011330049261094,-0.003571428571430,-0.000369458128111,2 -7894,7907,7909,7922,-0.005726600985087,0.366071428571436,-0.011330049260928,0.364285714285718,-0.011576354679697,0.367857142857150,-0.017179802955538,0.366071428571433,0.003571428571433,0.000123152709412,0.000000000000002,-0.011330049261094,-0.000000000000003,0.011576354679808,-0.003571428571432,-0.000369458128126,2 -7895,7908,7910,7923,-0.005849753694498,0.369642857142862,-0.011576354679697,0.367857142857150,-0.011822660098465,0.371428571428569,-0.017549261083663,0.369642857142858,0.003571428571419,0.000123152709411,0.000000000000003,-0.011576354679808,-0.000000000000004,0.011822660098522,-0.003571428571418,-0.000369458128125,2 -7896,7909,7911,7924,-0.005972906403909,0.373214285714279,-0.011822660098465,0.371428571428569,-0.012068965517233,0.374999999999984,-0.017918719211788,0.373214285714274,0.003571428571415,0.000123152709411,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517236,-0.003571428571415,-0.000369458128125,2 -7897,7910,7912,7925,-0.006096059113333,0.376785714285696,-0.012068965517233,0.374999999999984,-0.012315270936026,0.378571428571403,-0.018288177339925,0.376785714285692,0.003571428571419,0.000123152709436,0.000000000000005,-0.012068965517236,-0.000000000000004,0.012315270935949,-0.003571428571420,-0.000369458128149,2 -7898,7911,7913,7926,-0.006219211822766,0.380357142857120,-0.012315270936026,0.378571428571403,-0.012561576354813,0.382142857142833,-0.018657635468073,0.380357142857116,0.003571428571429,0.000123152709431,0.000000000000004,-0.012315270935949,-0.000000000000003,0.012561576354664,-0.003571428571430,-0.000369458128145,2 -7899,7912,7914,7927,-0.006342364532198,0.383928571428555,-0.012561576354813,0.382142857142833,-0.012807881773603,0.385714285714275,-0.019027093596219,0.383928571428552,0.003571428571441,0.000123152709432,0.000000000000003,-0.012561576354664,-0.000000000000003,0.012807881773379,-0.003571428571442,-0.000369458128147,2 -7900,7913,7915,7928,-0.006465517241640,0.387499999999994,-0.012807881773603,0.385714285714275,-0.013054187192412,0.389285714285711,-0.019396551724376,0.387499999999992,0.003571428571435,0.000123152709452,0.000000000000003,-0.012807881773379,-0.000000000000001,0.013054187192093,-0.003571428571437,-0.000369458128167,2 -7901,7914,7916,7929,-0.006588669951084,0.391071428571431,-0.013054187192412,0.389285714285711,-0.013300492611206,0.392857142857150,-0.019766009852535,0.391071428571430,0.003571428571439,0.000123152709437,0.000000000000001,-0.013054187192093,-0.000000000000000,0.013300492610808,-0.003571428571440,-0.000369458128152,2 -7902,7915,7917,7930,-0.006711822660517,0.394642857142866,-0.013300492611206,0.392857142857150,-0.013546798029994,0.396428571428582,-0.020135467980683,0.394642857142866,0.003571428571431,0.000123152709431,0.000000000000000,-0.013300492610808,-0.000000000000000,0.013546798029523,-0.003571428571432,-0.000369458128145,2 -7470,7903,7916,7931,-0.013793103448773,0.400000000000000,-0.006834975369944,0.398214285714291,-0.013546798029994,0.396428571428582,-0.020504926108824,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.000123152709422,0.000000000000000,-0.013546798029523,-0.003571428571418,-0.000369458128136,2 -7904,7919,7932,10924,-0.015701970443029,0.351785714285710,-0.021182266009574,0.353571428571419,-0.026169950738622,0.351785714285710,-0.020689655172076,0.350000000000000,0.003571428571419,0.000369458128141,0.000000000000000,0.010591133004950,-0.003571428571419,-0.000615763546855,0.000000000000000,-0.010344827586236,2 -7905,7918,7920,7933,-0.016071428571167,0.355357142857134,-0.021182266009574,0.353571428571419,-0.021674876847066,0.357142857142849,-0.026785714285474,0.355357142857134,0.003571428571430,0.000369458128135,-0.000000000000000,-0.010591133004950,-0.000000000000000,0.010837438423664,-0.003571428571430,-0.000615763546849,2 -7906,7919,7921,7934,-0.016440886699299,0.358928571428568,-0.021674876847066,0.357142857142849,-0.022167487684553,0.360714285714287,-0.027401477832321,0.358928571428568,0.003571428571438,0.000369458128130,0.000000000000000,-0.010837438423664,-0.000000000000001,0.011083743842379,-0.003571428571437,-0.000615763546845,2 -7907,7920,7922,7935,-0.016810344827419,0.362500000000002,-0.022167487684553,0.360714285714287,-0.022660098522022,0.364285714285716,-0.028017241379156,0.362500000000000,0.003571428571430,0.000369458128111,0.000000000000001,-0.011083743842379,-0.000000000000003,0.011330049261094,-0.003571428571428,-0.000615763546825,2 -7908,7921,7923,7936,-0.017179802955538,0.366071428571433,-0.022660098522022,0.364285714285716,-0.023152709359505,0.367857142857147,-0.028633004925989,0.366071428571430,0.003571428571432,0.000369458128126,0.000000000000003,-0.011330049261094,-0.000000000000003,0.011576354679808,-0.003571428571431,-0.000615763546841,2 -7909,7922,7924,7937,-0.017549261083663,0.369642857142858,-0.023152709359505,0.367857142857147,-0.023645320196987,0.371428571428565,-0.029248768472829,0.369642857142854,0.003571428571418,0.000369458128125,0.000000000000003,-0.011576354679808,-0.000000000000004,0.011822660098522,-0.003571428571418,-0.000615763546839,2 -7910,7923,7925,7938,-0.017918719211788,0.373214285714274,-0.023645320196987,0.371428571428565,-0.024137931034468,0.374999999999979,-0.029864532019667,0.373214285714270,0.003571428571415,0.000369458128125,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517236,-0.003571428571414,-0.000615763546838,2 -7911,7924,7926,7939,-0.018288177339925,0.376785714285692,-0.024137931034468,0.374999999999979,-0.024630541871975,0.378571428571399,-0.030480295566518,0.376785714285687,0.003571428571420,0.000369458128149,0.000000000000005,-0.012068965517236,-0.000000000000004,0.012315270935949,-0.003571428571421,-0.000615763546863,2 -7912,7925,7927,7940,-0.018657635468073,0.380357142857116,-0.024630541871975,0.378571428571399,-0.025123152709477,0.382142857142829,-0.031096059113379,0.380357142857112,0.003571428571430,0.000369458128145,0.000000000000004,-0.012315270935949,-0.000000000000004,0.012561576354664,-0.003571428571430,-0.000615763546860,2 -7913,7926,7928,7941,-0.019027093596219,0.383928571428552,-0.025123152709477,0.382142857142829,-0.025615763546982,0.385714285714271,-0.031711822660240,0.383928571428549,0.003571428571442,0.000369458128147,0.000000000000004,-0.012561576354664,-0.000000000000003,0.012807881773379,-0.003571428571442,-0.000615763546862,2 -7914,7927,7929,7942,-0.019396551724376,0.387499999999992,-0.025615763546982,0.385714285714271,-0.026108374384506,0.389285714285709,-0.032327586207112,0.387499999999989,0.003571428571437,0.000369458128167,0.000000000000003,-0.012807881773379,-0.000000000000001,0.013054187192093,-0.003571428571439,-0.000615763546881,2 -7915,7928,7930,7943,-0.019766009852535,0.391071428571430,-0.026108374384506,0.389285714285709,-0.026600985222015,0.392857142857150,-0.032943349753986,0.391071428571429,0.003571428571440,0.000369458128152,0.000000000000001,-0.013054187192093,-0.000000000000000,0.013300492610808,-0.003571428571441,-0.000615763546867,2 -7916,7929,7931,7944,-0.020135467980683,0.394642857142866,-0.026600985222015,0.392857142857150,-0.027093596059517,0.396428571428582,-0.033559113300849,0.394642857142866,0.003571428571432,0.000369458128145,0.000000000000000,-0.013300492610808,0.000000000000000,0.013546798029523,-0.003571428571432,-0.000615763546860,2 -7456,7917,7930,7945,-0.027586206897010,0.400000000000000,-0.020504926108824,0.398214285714291,-0.027093596059517,0.396428571428582,-0.034174876847704,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.000369458128136,-0.000000000000000,-0.013546798029523,-0.003571428571418,-0.000615763546850,2 -7918,7933,7946,10865,-0.026169950738622,0.351785714285710,-0.031773399014522,0.353571428571420,-0.036637931034211,0.351785714285710,-0.031034482758311,0.350000000000000,0.003571428571419,0.000615763546855,0.000000000000000,0.010591133004947,-0.003571428571420,-0.000862068965568,0.000000000000000,-0.010344827586233,2 -7919,7932,7934,7947,-0.026785714285474,0.355357142857134,-0.031773399014522,0.353571428571420,-0.032512315270729,0.357142857142849,-0.037499999999778,0.355357142857135,0.003571428571430,0.000615763546849,-0.000000000000000,-0.010591133004947,-0.000000000000000,0.010837438423661,-0.003571428571430,-0.000862068965564,2 -7920,7933,7935,7948,-0.027401477832321,0.358928571428568,-0.032512315270729,0.357142857142849,-0.033251231526931,0.360714285714286,-0.038362068965339,0.358928571428568,0.003571428571437,0.000615763546845,0.000000000000000,-0.010837438423661,-0.000000000000001,0.011083743842376,-0.003571428571436,-0.000862068965560,2 -7921,7934,7936,7949,-0.028017241379156,0.362500000000000,-0.033251231526931,0.360714285714286,-0.033990147783114,0.364285714285713,-0.039224137930889,0.362499999999999,0.003571428571428,0.000615763546825,0.000000000000001,-0.011083743842376,-0.000000000000002,0.011330049261091,-0.003571428571426,-0.000862068965540,2 -7922,7935,7937,7950,-0.028633004925989,0.366071428571430,-0.033990147783114,0.364285714285713,-0.034729064039312,0.367857142857144,-0.040086206896437,0.366071428571427,0.003571428571431,0.000615763546841,0.000000000000002,-0.011330049261091,-0.000000000000003,0.011576354679806,-0.003571428571430,-0.000862068965556,2 -7923,7936,7938,7951,-0.029248768472829,0.369642857142854,-0.034729064039312,0.367857142857144,-0.035467980295508,0.371428571428561,-0.040948275861991,0.369642857142850,0.003571428571418,0.000615763546839,0.000000000000003,-0.011576354679806,-0.000000000000004,0.011822660098519,-0.003571428571417,-0.000862068965552,2 -7924,7937,7939,7952,-0.029864532019667,0.373214285714270,-0.035467980295508,0.371428571428561,-0.036206896551703,0.374999999999974,-0.041810344827543,0.373214285714265,0.003571428571414,0.000615763546838,0.000000000000004,-0.011822660098519,-0.000000000000005,0.012068965517233,-0.003571428571413,-0.000862068965552,2 -7925,7938,7940,7953,-0.030480295566518,0.376785714285687,-0.036206896551703,0.374999999999974,-0.036945812807923,0.378571428571395,-0.042672413793107,0.376785714285682,0.003571428571421,0.000615763546863,0.000000000000005,-0.012068965517233,-0.000000000000004,0.012315270935947,-0.003571428571421,-0.000862068965577,2 -7926,7939,7941,7954,-0.031096059113379,0.380357142857112,-0.036945812807923,0.378571428571395,-0.037684729064139,0.382142857142825,-0.043534482758683,0.380357142857108,0.003571428571430,0.000615763546860,0.000000000000004,-0.012315270935947,-0.000000000000004,0.012561576354661,-0.003571428571431,-0.000862068965574,2 -7927,7940,7942,7955,-0.031711822660240,0.383928571428549,-0.037684729064139,0.382142857142825,-0.038423645320359,0.385714285714268,-0.044396551724258,0.383928571428545,0.003571428571442,0.000615763546862,0.000000000000004,-0.012561576354661,-0.000000000000003,0.012807881773376,-0.003571428571443,-0.000862068965577,2 -7928,7941,7943,7956,-0.032327586207112,0.387499999999989,-0.038423645320359,0.385714285714268,-0.039162561576598,0.389285714285708,-0.045258620689845,0.387499999999987,0.003571428571439,0.000615763546881,0.000000000000003,-0.012807881773376,-0.000000000000001,0.013054187192091,-0.003571428571441,-0.000862068965596,2 -7929,7942,7944,7957,-0.032943349753986,0.391071428571429,-0.039162561576598,0.389285714285708,-0.039901477832822,0.392857142857149,-0.046120689655434,0.391071428571428,0.003571428571441,0.000615763546867,0.000000000000001,-0.013054187192091,-0.000000000000000,0.013300492610806,-0.003571428571442,-0.000862068965582,2 -7930,7943,7945,7958,-0.033559113300849,0.394642857142866,-0.039901477832822,0.392857142857149,-0.040640394089039,0.396428571428582,-0.046982758621012,0.394642857142866,0.003571428571432,0.000615763546860,0.000000000000000,-0.013300492610806,-0.000000000000000,0.013546798029520,-0.003571428571433,-0.000862068965574,2 -7442,7931,7944,7959,-0.041379310345245,0.400000000000000,-0.034174876847704,0.398214285714291,-0.040640394089039,0.396428571428582,-0.047844827586581,0.398214285714291,0.000000000000000,0.013793103448234,0.003571428571418,0.000615763546850,0.000000000000000,-0.013546798029520,-0.003571428571418,-0.000862068965563,2 -7932,7947,7960,10806,-0.036637931034211,0.351785714285710,-0.042364532019469,0.353571428571420,-0.047105911329801,0.351785714285710,-0.041379310344544,0.350000000000000,0.003571428571420,0.000862068965568,0.000000000000000,0.010591133004946,-0.003571428571420,-0.001108374384282,0.000000000000000,-0.010344827586233,2 -7933,7946,7948,7961,-0.037499999999778,0.355357142857135,-0.042364532019469,0.353571428571420,-0.043349753694390,0.357142857142850,-0.048214285714081,0.355357142857135,0.003571428571430,0.000862068965564,-0.000000000000000,-0.010591133004946,0.000000000000000,0.010837438423660,-0.003571428571430,-0.001108374384278,2 -7934,7947,7949,7962,-0.038362068965339,0.358928571428568,-0.043349753694390,0.357142857142850,-0.044334975369307,0.360714285714286,-0.049322660098357,0.358928571428567,0.003571428571436,0.000862068965560,-0.000000000000000,-0.010837438423660,-0.000000000000000,0.011083743842375,-0.003571428571436,-0.001108374384275,2 -7935,7948,7950,7963,-0.039224137930889,0.362499999999999,-0.044334975369307,0.360714285714286,-0.045320197044204,0.364285714285711,-0.050431034482621,0.362499999999997,0.003571428571426,0.000862068965540,0.000000000000000,-0.011083743842375,-0.000000000000002,0.011330049261089,-0.003571428571424,-0.001108374384254,2 -7936,7949,7951,7964,-0.040086206896437,0.366071428571427,-0.045320197044204,0.364285714285711,-0.046305418719117,0.367857142857140,-0.051539408866884,0.366071428571424,0.003571428571430,0.000862068965556,0.000000000000002,-0.011330049261089,-0.000000000000003,0.011576354679803,-0.003571428571429,-0.001108374384270,2 -7937,7950,7952,7965,-0.040948275861991,0.369642857142850,-0.046305418719117,0.367857142857140,-0.047290640394026,0.371428571428557,-0.052647783251151,0.369642857142847,0.003571428571417,0.000862068965552,0.000000000000003,-0.011576354679803,-0.000000000000004,0.011822660098517,-0.003571428571416,-0.001108374384266,2 -7938,7951,7953,7966,-0.041810344827543,0.373214285714265,-0.047290640394026,0.371428571428557,-0.048275862068934,0.374999999999969,-0.053756157635416,0.373214285714260,0.003571428571413,0.000862068965552,0.000000000000004,-0.011822660098517,-0.000000000000005,0.012068965517230,-0.003571428571412,-0.001108374384265,2 -7939,7952,7954,7967,-0.042672413793107,0.376785714285682,-0.048275862068934,0.374999999999969,-0.049261083743867,0.378571428571391,-0.054864532019694,0.376785714285678,0.003571428571421,0.000862068965577,0.000000000000005,-0.012068965517230,-0.000000000000004,0.012315270935943,-0.003571428571422,-0.001108374384290,2 -7940,7953,7955,7968,-0.043534482758683,0.380357142857108,-0.049261083743867,0.378571428571391,-0.050246305418798,0.382142857142822,-0.055972906403983,0.380357142857104,0.003571428571431,0.000862068965574,0.000000000000004,-0.012315270935943,-0.000000000000004,0.012561576354657,-0.003571428571431,-0.001108374384288,2 -7941,7954,7956,7969,-0.044396551724258,0.383928571428545,-0.050246305418798,0.382142857142822,-0.051231527093733,0.385714285714265,-0.057081280788273,0.383928571428542,0.003571428571443,0.000862068965577,0.000000000000004,-0.012561576354657,-0.000000000000003,0.012807881773372,-0.003571428571444,-0.001108374384292,2 -7942,7955,7957,7970,-0.045258620689845,0.387499999999987,-0.051231527093733,0.385714285714265,-0.052216748768686,0.389285714285707,-0.058189655172574,0.387499999999985,0.003571428571441,0.000862068965596,0.000000000000003,-0.012807881773372,-0.000000000000001,0.013054187192086,-0.003571428571443,-0.001108374384311,2 -7943,7956,7958,7971,-0.046120689655434,0.391071428571428,-0.052216748768686,0.389285714285707,-0.053201970443625,0.392857142857149,-0.059298029556878,0.391071428571428,0.003571428571442,0.000862068965582,0.000000000000001,-0.013054187192086,-0.000000000000000,0.013300492610801,-0.003571428571442,-0.001108374384296,2 -7944,7957,7959,7972,-0.046982758621012,0.394642857142866,-0.053201970443625,0.392857142857149,-0.054187192118557,0.396428571428582,-0.060406403941170,0.394642857142865,0.003571428571433,0.000862068965574,0.000000000000000,-0.013300492610801,0.000000000000000,0.013546798029515,-0.003571428571433,-0.001108374384288,2 -7428,7945,7958,7973,-0.055172413793477,0.400000000000000,-0.047844827586581,0.398214285714291,-0.054187192118557,0.396428571428582,-0.061514778325452,0.398214285714291,0.000000000000000,0.013793103448228,0.003571428571418,0.000862068965563,-0.000000000000000,-0.013546798029515,-0.003571428571418,-0.001108374384276,2 -7946,7961,7974,10747,-0.047105911329801,0.351785714285710,-0.052955665024415,0.353571428571420,-0.057573891625391,0.351785714285710,-0.051724137930777,0.350000000000000,0.003571428571420,0.001108374384282,0.000000000000000,0.010591133004947,-0.003571428571420,-0.001354679802996,0.000000000000000,-0.010344827586233,2 -7947,7960,7962,7975,-0.048214285714081,0.355357142857135,-0.052955665024415,0.353571428571420,-0.054187192118050,0.357142857142850,-0.058928571428385,0.355357142857135,0.003571428571430,0.001108374384278,-0.000000000000000,-0.010591133004947,-0.000000000000000,0.010837438423661,-0.003571428571429,-0.001354679802992,2 -7948,7961,7963,7976,-0.049322660098357,0.358928571428567,-0.054187192118050,0.357142857142850,-0.055418719211683,0.360714285714285,-0.060283251231376,0.358928571428567,0.003571428571436,0.001108374384275,0.000000000000000,-0.010837438423661,-0.000000000000001,0.011083743842377,-0.003571428571435,-0.001354679802990,2 -7949,7962,7964,7977,-0.050431034482621,0.362499999999997,-0.055418719211683,0.360714285714285,-0.056650246305294,0.364285714285708,-0.061637931034356,0.362499999999996,0.003571428571424,0.001108374384254,0.000000000000001,-0.011083743842377,-0.000000000000003,0.011330049261092,-0.003571428571422,-0.001354679802969,2 -7950,7963,7965,7978,-0.051539408866884,0.366071428571424,-0.056650246305294,0.364285714285708,-0.057881773398922,0.367857142857137,-0.062992610837332,0.366071428571421,0.003571428571429,0.001108374384270,0.000000000000003,-0.011330049261092,-0.000000000000003,0.011576354679806,-0.003571428571428,-0.001354679802985,2 -7951,7964,7966,7979,-0.052647783251151,0.369642857142847,-0.057881773398922,0.367857142857137,-0.059113300492544,0.371428571428552,-0.064347290640315,0.369642857142843,0.003571428571416,0.001108374384266,0.000000000000003,-0.011576354679806,-0.000000000000004,0.011822660098520,-0.003571428571415,-0.001354679802980,2 -7952,7965,7967,7980,-0.053756157635416,0.373214285714260,-0.059113300492544,0.371428571428552,-0.060344827586166,0.374999999999964,-0.065701970443294,0.373214285714256,0.003571428571412,0.001108374384265,0.000000000000004,-0.011822660098520,-0.000000000000005,0.012068965517234,-0.003571428571411,-0.001354679802978,2 -7953,7966,7968,7981,-0.054864532019694,0.376785714285678,-0.060344827586166,0.374999999999964,-0.061576354679813,0.378571428571387,-0.067056650246285,0.376785714285673,0.003571428571422,0.001108374384290,0.000000000000005,-0.012068965517234,-0.000000000000004,0.012315270935948,-0.003571428571423,-0.001354679803004,2 -7954,7967,7969,7982,-0.055972906403983,0.380357142857104,-0.061576354679813,0.378571428571387,-0.062807881773458,0.382142857142818,-0.068411330049288,0.380357142857100,0.003571428571431,0.001108374384288,0.000000000000004,-0.012315270935948,-0.000000000000003,0.012561576354662,-0.003571428571432,-0.001354679803002,2 -7955,7968,7970,7983,-0.057081280788273,0.383928571428542,-0.062807881773458,0.382142857142818,-0.064039408867108,0.385714285714262,-0.069766009852293,0.383928571428538,0.003571428571444,0.001108374384292,0.000000000000003,-0.012561576354662,-0.000000000000003,0.012807881773378,-0.003571428571444,-0.001354679803008,2 -7956,7969,7971,7984,-0.058189655172574,0.387499999999985,-0.064039408867108,0.385714285714262,-0.065270935960776,0.389285714285706,-0.071120689655309,0.387499999999983,0.003571428571443,0.001108374384311,0.000000000000003,-0.012807881773378,-0.000000000000001,0.013054187192093,-0.003571428571445,-0.001354679803025,2 -7957,7970,7972,7985,-0.059298029556878,0.391071428571428,-0.065270935960776,0.389285714285706,-0.066502463054430,0.392857142857149,-0.072475369458328,0.391071428571427,0.003571428571442,0.001108374384296,0.000000000000001,-0.013054187192093,-0.000000000000000,0.013300492610808,-0.003571428571443,-0.001354679803012,2 -7958,7971,7973,7986,-0.060406403941170,0.394642857142865,-0.066502463054430,0.392857142857149,-0.067733990148076,0.396428571428582,-0.073830049261335,0.394642857142865,0.003571428571433,0.001108374384288,0.000000000000000,-0.013300492610808,0.000000000000000,0.013546798029523,-0.003571428571434,-0.001354679803003,2 -7414,7959,7972,7987,-0.068965517241709,0.400000000000000,-0.061514778325452,0.398214285714291,-0.067733990148076,0.396428571428582,-0.075184729064332,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.001108374384276,-0.000000000000000,-0.013546798029523,-0.003571428571418,-0.001354679802990,2 -7960,7975,7988,10688,-0.057573891625391,0.351785714285710,-0.063546798029363,0.353571428571420,-0.068041871920982,0.351785714285710,-0.062068965517010,0.350000000000000,0.003571428571420,0.001354679802996,0.000000000000000,0.010591133004948,-0.003571428571421,-0.001600985221709,0.000000000000000,-0.010344827586235,2 -7961,7974,7976,7989,-0.058928571428385,0.355357142857135,-0.063546798029363,0.353571428571420,-0.065024630541713,0.357142857142850,-0.069642857142690,0.355357142857135,0.003571428571429,0.001354679802992,-0.000000000000000,-0.010591133004948,-0.000000000000000,0.010837438423663,-0.003571428571429,-0.001600985221707,2 -7962,7975,7977,7990,-0.060283251231376,0.358928571428567,-0.065024630541713,0.357142857142850,-0.066502463054060,0.360714285714284,-0.071243842364396,0.358928571428567,0.003571428571435,0.001354679802990,0.000000000000000,-0.010837438423663,-0.000000000000001,0.011083743842378,-0.003571428571434,-0.001600985221705,2 -7963,7976,7978,7991,-0.061637931034356,0.362499999999996,-0.066502463054060,0.360714285714284,-0.067980295566386,0.364285714285706,-0.072844827586091,0.362499999999994,0.003571428571422,0.001354679802969,0.000000000000001,-0.011083743842378,-0.000000000000002,0.011330049261093,-0.003571428571420,-0.001600985221684,2 -7964,7977,7979,7992,-0.062992610837332,0.366071428571421,-0.067980295566386,0.364285714285706,-0.069458128078729,0.367857142857134,-0.074445812807783,0.366071428571418,0.003571428571428,0.001354679802985,0.000000000000002,-0.011330049261093,-0.000000000000003,0.011576354679807,-0.003571428571428,-0.001600985221700,2 -7965,7978,7980,7993,-0.064347290640315,0.369642857142843,-0.069458128078729,0.367857142857134,-0.070935960591065,0.371428571428548,-0.076046798029479,0.369642857142839,0.003571428571415,0.001354679802980,0.000000000000003,-0.011576354679807,-0.000000000000004,0.011822660098521,-0.003571428571414,-0.001600985221693,2 -7966,7979,7981,7994,-0.065701970443294,0.373214285714256,-0.070935960591065,0.371428571428548,-0.072413793103400,0.374999999999959,-0.077647783251172,0.373214285714251,0.003571428571411,0.001354679802978,0.000000000000004,-0.011822660098521,-0.000000000000005,0.012068965517235,-0.003571428571411,-0.001600985221692,2 -7967,7980,7982,7995,-0.067056650246285,0.376785714285673,-0.072413793103400,0.374999999999959,-0.073891625615761,0.378571428571382,-0.079248768472876,0.376785714285668,0.003571428571423,0.001354679803004,0.000000000000005,-0.012068965517235,-0.000000000000004,0.012315270935949,-0.003571428571424,-0.001600985221718,2 -7968,7981,7983,7996,-0.068411330049288,0.380357142857100,-0.073891625615761,0.378571428571382,-0.075369458128121,0.382142857142814,-0.080849753694594,0.380357142857096,0.003571428571432,0.001354679803002,0.000000000000004,-0.012315270935949,-0.000000000000004,0.012561576354663,-0.003571428571432,-0.001600985221717,2 -7969,7982,7984,7997,-0.069766009852293,0.383928571428538,-0.075369458128121,0.382142857142814,-0.076847290640486,0.385714285714259,-0.082450738916314,0.383928571428535,0.003571428571444,0.001354679803008,0.000000000000004,-0.012561576354663,-0.000000000000003,0.012807881773378,-0.003571428571445,-0.001600985221723,2 -7970,7983,7985,7998,-0.071120689655309,0.387499999999983,-0.076847290640486,0.385714285714259,-0.078325123152869,0.389285714285704,-0.084051724138045,0.387499999999980,0.003571428571445,0.001354679803025,0.000000000000003,-0.012807881773378,-0.000000000000001,0.013054187192093,-0.003571428571447,-0.001600985221740,2 -7971,7984,7986,7999,-0.072475369458328,0.391071428571427,-0.078325123152869,0.389285714285704,-0.079802955665238,0.392857142857148,-0.085652709359779,0.391071428571426,0.003571428571443,0.001354679803012,0.000000000000001,-0.013054187192093,-0.000000000000000,0.013300492610808,-0.003571428571444,-0.001600985221727,2 -7972,7985,7987,8000,-0.073830049261335,0.394642857142865,-0.079802955665238,0.392857142857148,-0.081280788177598,0.396428571428582,-0.087253694581501,0.394642857142865,0.003571428571434,0.001354679803003,0.000000000000000,-0.013300492610808,-0.000000000000000,0.013546798029523,-0.003571428571434,-0.001600985221718,2 -7400,7973,7986,8001,-0.082758620689945,0.400000000000000,-0.075184729064332,0.398214285714291,-0.081280788177598,0.396428571428582,-0.088854679803212,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.001354679802990,0.000000000000000,-0.013546798029523,-0.003571428571418,-0.001600985221704,2 -7974,7989,8002,10629,-0.068041871920982,0.351785714285710,-0.074137931034312,0.353571428571421,-0.078509852216576,0.351785714285710,-0.072413793103246,0.350000000000000,0.003571428571421,0.001600985221709,0.000000000000000,0.010591133004950,-0.003571428571421,-0.001847290640423,0.000000000000000,-0.010344827586237,2 -7975,7988,7990,8003,-0.069642857142690,0.355357142857135,-0.074137931034312,0.353571428571421,-0.075862068965376,0.357142857142850,-0.080357142856998,0.355357142857135,0.003571428571429,0.001600985221707,-0.000000000000000,-0.010591133004950,-0.000000000000000,0.010837438423665,-0.003571428571429,-0.001847290640421,2 -7976,7989,7991,8004,-0.071243842364396,0.358928571428567,-0.075862068965376,0.357142857142850,-0.077586206896439,0.360714285714284,-0.082204433497419,0.358928571428566,0.003571428571434,0.001600985221705,0.000000000000000,-0.010837438423665,-0.000000000000001,0.011083743842380,-0.003571428571434,-0.001847290640420,2 -7977,7990,7992,8005,-0.072844827586091,0.362499999999994,-0.077586206896439,0.360714285714284,-0.079310344827480,0.364285714285703,-0.084051724137828,0.362499999999992,0.003571428571420,0.001600985221684,0.000000000000001,-0.011083743842380,-0.000000000000003,0.011330049261094,-0.003571428571418,-0.001847290640398,2 -7978,7991,7993,8006,-0.074445812807783,0.366071428571418,-0.079310344827480,0.364285714285703,-0.081034482758537,0.367857142857130,-0.085899014778234,0.366071428571415,0.003571428571428,0.001600985221700,0.000000000000003,-0.011330049261094,-0.000000000000003,0.011576354679809,-0.003571428571427,-0.001847290640414,2 -7979,7992,7994,8007,-0.076046798029479,0.369642857142839,-0.081034482758537,0.367857142857130,-0.082758620689587,0.371428571428544,-0.087746305418645,0.369642857142835,0.003571428571414,0.001600985221693,0.000000000000003,-0.011576354679809,-0.000000000000004,0.011822660098522,-0.003571428571413,-0.001847290640407,2 -7980,7993,7995,8008,-0.077647783251172,0.373214285714251,-0.082758620689587,0.371428571428544,-0.084482758620636,0.374999999999954,-0.089593596059051,0.373214285714246,0.003571428571411,0.001600985221692,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517236,-0.003571428571410,-0.001847290640405,2 -7981,7994,7996,8009,-0.079248768472876,0.376785714285668,-0.084482758620636,0.374999999999954,-0.086206896551710,0.378571428571378,-0.091440886699469,0.376785714285664,0.003571428571424,0.001600985221718,0.000000000000005,-0.012068965517236,-0.000000000000004,0.012315270935949,-0.003571428571425,-0.001847290640431,2 -7982,7995,7997,8010,-0.080849753694594,0.380357142857096,-0.086206896551710,0.378571428571378,-0.087931034482784,0.382142857142811,-0.093288177339900,0.380357142857092,0.003571428571432,0.001600985221717,0.000000000000004,-0.012315270935949,-0.000000000000004,0.012561576354664,-0.003571428571433,-0.001847290640431,2 -7983,7996,7998,8011,-0.082450738916314,0.383928571428535,-0.087931034482784,0.382142857142811,-0.089655172413864,0.385714285714255,-0.095135467980335,0.383928571428531,0.003571428571445,0.001600985221723,0.000000000000004,-0.012561576354664,-0.000000000000003,0.012807881773379,-0.003571428571445,-0.001847290640438,2 -7984,7997,7999,8012,-0.084051724138045,0.387499999999980,-0.089655172413864,0.385714285714255,-0.091379310344962,0.389285714285703,-0.096982758620781,0.387499999999978,0.003571428571447,0.001600985221740,0.000000000000003,-0.012807881773379,-0.000000000000001,0.013054187192094,-0.003571428571449,-0.001847290640455,2 -7985,7998,8000,8013,-0.085652709359779,0.391071428571426,-0.091379310344962,0.389285714285703,-0.093103448276046,0.392857142857148,-0.098830049261230,0.391071428571425,0.003571428571444,0.001600985221727,0.000000000000001,-0.013054187192094,-0.000000000000000,0.013300492610809,-0.003571428571445,-0.001847290640442,2 -7986,7999,8001,8014,-0.087253694581501,0.394642857142865,-0.093103448276046,0.392857142857148,-0.094827586207121,0.396428571428582,-0.100677339901667,0.394642857142865,0.003571428571434,0.001600985221718,0.000000000000000,-0.013300492610809,0.000000000000000,0.013546798029523,-0.003571428571434,-0.001847290640432,2 -7386,7987,8000,8015,-0.096551724138182,0.400000000000000,-0.088854679803212,0.398214285714291,-0.094827586207121,0.396428571428582,-0.102524630542092,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.001600985221704,-0.000000000000000,-0.013546798029523,-0.003571428571418,-0.001847290640418,2 -7988,8003,8016,10570,-0.078509852216576,0.351785714285710,-0.084729064039262,0.353571428571421,-0.088977832512168,0.351785714285710,-0.082758620689482,0.350000000000000,0.003571428571421,0.001847290640423,0.000000000000000,0.010591133004949,-0.003571428571421,-0.002093596059137,0.000000000000000,-0.010344827586236,2 -7989,8002,8004,8017,-0.080357142856998,0.355357142857135,-0.084729064039262,0.353571428571421,-0.086699507389040,0.357142857142850,-0.091071428571304,0.355357142857135,0.003571428571429,0.001847290640421,-0.000000000000000,-0.010591133004949,0.000000000000000,0.010837438423664,-0.003571428571429,-0.002093596059136,2 -7990,8003,8005,8018,-0.082204433497419,0.358928571428566,-0.086699507389040,0.357142857142850,-0.088669950738818,0.360714285714283,-0.093165024630440,0.358928571428566,0.003571428571434,0.001847290640420,-0.000000000000000,-0.010837438423664,-0.000000000000001,0.011083743842379,-0.003571428571433,-0.002093596059135,2 -7991,8004,8006,8019,-0.084051724137828,0.362499999999992,-0.088669950738818,0.360714285714283,-0.090640394088574,0.364285714285700,-0.095258620689564,0.362499999999991,0.003571428571418,0.001847290640398,0.000000000000001,-0.011083743842379,-0.000000000000002,0.011330049261093,-0.003571428571417,-0.002093596059113,2 -7992,8005,8007,8020,-0.085899014778234,0.366071428571415,-0.090640394088574,0.364285714285700,-0.092610837438345,0.367857142857127,-0.097352216748685,0.366071428571412,0.003571428571427,0.001847290640414,0.000000000000002,-0.011330049261093,-0.000000000000003,0.011576354679808,-0.003571428571426,-0.002093596059129,2 -7993,8006,8008,8021,-0.087746305418645,0.369642857142835,-0.092610837438345,0.367857142857127,-0.094581280788109,0.371428571428540,-0.099445812807810,0.369642857142831,0.003571428571413,0.001847290640407,0.000000000000003,-0.011576354679808,-0.000000000000004,0.011822660098522,-0.003571428571412,-0.002093596059121,2 -7994,8007,8009,8022,-0.089593596059051,0.373214285714246,-0.094581280788109,0.371428571428540,-0.096551724137871,0.374999999999949,-0.101539408866929,0.373214285714242,0.003571428571410,0.001847290640405,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517235,-0.003571428571409,-0.002093596059119,2 -7995,8008,8010,8023,-0.091440886699469,0.376785714285664,-0.096551724137871,0.374999999999949,-0.098522167487659,0.378571428571374,-0.103633004926061,0.376785714285659,0.003571428571425,0.001847290640431,0.000000000000005,-0.012068965517235,-0.000000000000004,0.012315270935949,-0.003571428571426,-0.002093596059145,2 -7996,8009,8011,8024,-0.093288177339900,0.380357142857092,-0.098522167487659,0.378571428571374,-0.100492610837448,0.382142857142807,-0.105726600985207,0.380357142857089,0.003571428571433,0.001847290640431,0.000000000000004,-0.012315270935949,-0.000000000000004,0.012561576354663,-0.003571428571433,-0.002093596059146,2 -7997,8010,8012,8025,-0.095135467980335,0.383928571428531,-0.100492610837448,0.382142857142807,-0.102463054187243,0.385714285714252,-0.107820197044356,0.383928571428528,0.003571428571445,0.001847290640438,0.000000000000004,-0.012561576354663,-0.000000000000003,0.012807881773379,-0.003571428571445,-0.002093596059153,2 -7998,8011,8013,8026,-0.096982758620781,0.387499999999978,-0.102463054187243,0.385714285714252,-0.104433497537056,0.389285714285702,-0.109913793103517,0.387499999999976,0.003571428571449,0.001847290640455,0.000000000000003,-0.012807881773379,-0.000000000000001,0.013054187192093,-0.003571428571451,-0.002093596059170,2 -7999,8012,8014,8027,-0.098830049261230,0.391071428571425,-0.104433497537056,0.389285714285702,-0.106403940886855,0.392857142857147,-0.112007389162681,0.391071428571424,0.003571428571445,0.001847290640442,0.000000000000001,-0.013054187192093,-0.000000000000000,0.013300492610808,-0.003571428571446,-0.002093596059157,2 -8000,8013,8015,8028,-0.100677339901667,0.394642857142865,-0.106403940886855,0.392857142857147,-0.108374384236644,0.396428571428582,-0.114100985221832,0.394642857142865,0.003571428571434,0.001847290640432,0.000000000000000,-0.013300492610808,0.000000000000000,0.013546798029523,-0.003571428571435,-0.002093596059147,2 -7372,8001,8014,8029,-0.110344827586419,0.400000000000000,-0.102524630542092,0.398214285714291,-0.108374384236644,0.396428571428582,-0.116194581280971,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.001847290640418,-0.000000000000000,-0.013546798029523,-0.003571428571418,-0.002093596059131,2 -8002,8017,8030,10511,-0.088977832512168,0.351785714285710,-0.095320197044211,0.353571428571421,-0.099445812807761,0.351785714285711,-0.093103448275718,0.350000000000000,0.003571428571421,0.002093596059137,0.000000000000000,0.010591133004950,-0.003571428571421,-0.002339901477850,0.000000000000000,-0.010344827586236,2 -8003,8016,8018,8031,-0.091071428571304,0.355357142857135,-0.095320197044211,0.353571428571421,-0.097536945812704,0.357142857142850,-0.101785714285611,0.355357142857135,0.003571428571429,0.002093596059136,-0.000000000000000,-0.010591133004950,-0.000000000000000,0.010837438423664,-0.003571428571428,-0.002339901477851,2 -8004,8017,8019,8032,-0.093165024630440,0.358928571428566,-0.097536945812704,0.357142857142850,-0.099753694581197,0.360714285714282,-0.104125615763461,0.358928571428566,0.003571428571433,0.002093596059135,0.000000000000000,-0.010837438423664,-0.000000000000000,0.011083743842379,-0.003571428571433,-0.002339901477850,2 -8005,8018,8020,8033,-0.095258620689564,0.362499999999991,-0.099753694581197,0.360714285714282,-0.101970443349667,0.364285714285698,-0.106465517241300,0.362499999999989,0.003571428571417,0.002093596059113,0.000000000000000,-0.011083743842379,-0.000000000000002,0.011330049261094,-0.003571428571415,-0.002339901477828,2 -8006,8019,8021,8034,-0.097352216748685,0.366071428571412,-0.101970443349667,0.364285714285698,-0.104187192118153,0.367857142857123,-0.108805418719136,0.366071428571409,0.003571428571426,0.002093596059129,0.000000000000002,-0.011330049261094,-0.000000000000003,0.011576354679808,-0.003571428571425,-0.002339901477843,2 -8007,8020,8022,8035,-0.099445812807810,0.369642857142831,-0.104187192118153,0.367857142857123,-0.106403940886631,0.371428571428535,-0.111145320196975,0.369642857142827,0.003571428571412,0.002093596059121,0.000000000000003,-0.011576354679808,-0.000000000000004,0.011822660098522,-0.003571428571412,-0.002339901477834,2 -8008,8021,8023,8036,-0.101539408866929,0.373214285714242,-0.106403940886631,0.371428571428535,-0.108620689655107,0.374999999999944,-0.113485221674808,0.373214285714237,0.003571428571409,0.002093596059119,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517236,-0.003571428571408,-0.002339901477832,2 -8009,8022,8024,8037,-0.103633004926061,0.376785714285659,-0.108620689655107,0.374999999999944,-0.110837438423608,0.378571428571370,-0.115825123152654,0.376785714285655,0.003571428571426,0.002093596059145,0.000000000000005,-0.012068965517236,-0.000000000000004,0.012315270935949,-0.003571428571426,-0.002339901477858,2 -8010,8023,8025,8038,-0.105726600985207,0.380357142857089,-0.110837438423608,0.378571428571370,-0.113054187192111,0.382142857142803,-0.118165024630513,0.380357142857085,0.003571428571433,0.002093596059146,0.000000000000004,-0.012315270935949,-0.000000000000004,0.012561576354664,-0.003571428571433,-0.002339901477860,2 -8011,8024,8026,8039,-0.107820197044356,0.383928571428528,-0.113054187192111,0.382142857142803,-0.115270935960622,0.385714285714249,-0.120504926108377,0.383928571428524,0.003571428571445,0.002093596059153,0.000000000000004,-0.012561576354664,-0.000000000000003,0.012807881773379,-0.003571428571446,-0.002339901477869,2 -8012,8025,8027,8040,-0.109913793103517,0.387499999999976,-0.115270935960622,0.385714285714249,-0.117487684729149,0.389285714285701,-0.122844827586254,0.387499999999974,0.003571428571451,0.002093596059170,0.000000000000003,-0.012807881773379,-0.000000000000001,0.013054187192093,-0.003571428571453,-0.002339901477884,2 -8013,8026,8028,8041,-0.112007389162681,0.391071428571424,-0.117487684729149,0.389285714285701,-0.119704433497663,0.392857142857147,-0.125184729064132,0.391071428571423,0.003571428571446,0.002093596059157,0.000000000000001,-0.013054187192093,-0.000000000000000,0.013300492610808,-0.003571428571447,-0.002339901477872,2 -8014,8027,8029,8042,-0.114100985221832,0.394642857142865,-0.119704433497663,0.392857142857147,-0.121921182266167,0.396428571428582,-0.127524630541998,0.394642857142864,0.003571428571435,0.002093596059147,0.000000000000000,-0.013300492610808,-0.000000000000000,0.013546798029523,-0.003571428571435,-0.002339901477861,2 -7358,8015,8028,8043,-0.124137931034655,0.400000000000000,-0.116194581280971,0.398214285714291,-0.121921182266167,0.396428571428582,-0.129864532019851,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.002093596059131,0.000000000000000,-0.013546798029523,-0.003571428571418,-0.002339901477845,2 -8016,8031,8044,10452,-0.099445812807761,0.351785714285711,-0.105911330049155,0.353571428571421,-0.109913793103342,0.351785714285711,-0.103448275861948,0.350000000000000,0.003571428571421,0.002339901477850,0.000000000000000,0.010591133004938,-0.003571428571422,-0.002586206896565,0.000000000000000,-0.010344827586224,2 -8017,8030,8032,8045,-0.101785714285611,0.355357142857135,-0.105911330049155,0.353571428571421,-0.108374384236363,0.357142857142850,-0.112499999999907,0.355357142857136,0.003571428571428,0.002339901477851,-0.000000000000000,-0.010591133004938,0.000000000000000,0.010837438423654,-0.003571428571428,-0.002586206896566,2 -8018,8031,8033,8046,-0.104125615763461,0.358928571428566,-0.108374384236363,0.357142857142850,-0.110837438423571,0.360714285714282,-0.115086206896473,0.358928571428566,0.003571428571433,0.002339901477850,-0.000000000000000,-0.010837438423654,-0.000000000000001,0.011083743842369,-0.003571428571432,-0.002586206896566,2 -8019,8032,8034,8047,-0.106465517241300,0.362499999999989,-0.110837438423571,0.360714285714282,-0.113300492610757,0.364285714285695,-0.117672413793028,0.362499999999988,0.003571428571415,0.002339901477828,0.000000000000001,-0.011083743842369,-0.000000000000003,0.011330049261085,-0.003571428571413,-0.002586206896543,2 -8020,8033,8035,8048,-0.108805418719136,0.366071428571409,-0.113300492610757,0.364285714285695,-0.115763546797958,0.367857142857120,-0.120258620689579,0.366071428571406,0.003571428571425,0.002339901477843,0.000000000000003,-0.011330049261085,-0.000000000000003,0.011576354679800,-0.003571428571424,-0.002586206896559,2 -8021,8034,8036,8049,-0.111145320196975,0.369642857142827,-0.115763546797958,0.367857142857120,-0.118226600985150,0.371428571428531,-0.122844827586133,0.369642857142824,0.003571428571412,0.002339901477834,0.000000000000003,-0.011576354679800,-0.000000000000004,0.011822660098515,-0.003571428571411,-0.002586206896549,2 -8022,8035,8037,8050,-0.113485221674808,0.373214285714237,-0.118226600985150,0.371428571428531,-0.120689655172339,0.374999999999939,-0.125431034482680,0.373214285714233,0.003571428571408,0.002339901477832,0.000000000000004,-0.011822660098515,-0.000000000000005,0.012068965517229,-0.003571428571407,-0.002586206896547,2 -8023,8036,8038,8051,-0.115825123152654,0.376785714285655,-0.120689655172339,0.374999999999939,-0.123152709359555,0.378571428571366,-0.128017241379240,0.376785714285650,0.003571428571426,0.002339901477858,0.000000000000005,-0.012068965517229,-0.000000000000004,0.012315270935944,-0.003571428571427,-0.002586206896573,2 -8024,8037,8039,8052,-0.118165024630513,0.380357142857085,-0.123152709359555,0.378571428571366,-0.125615763546772,0.382142857142799,-0.130603448275814,0.380357142857081,0.003571428571433,0.002339901477860,0.000000000000004,-0.012315270935944,-0.000000000000004,0.012561576354659,-0.003571428571434,-0.002586206896575,2 -8025,8038,8040,8053,-0.120504926108377,0.383928571428524,-0.125615763546772,0.382142857142799,-0.128078817733999,0.385714285714246,-0.133189655172394,0.383928571428521,0.003571428571446,0.002339901477869,0.000000000000004,-0.012561576354659,-0.000000000000003,0.012807881773375,-0.003571428571447,-0.002586206896585,2 -8026,8039,8041,8054,-0.122844827586254,0.387499999999974,-0.128078817733999,0.385714285714246,-0.130541871921241,0.389285714285699,-0.135775862068987,0.387499999999971,0.003571428571453,0.002339901477884,0.000000000000003,-0.012807881773375,-0.000000000000001,0.013054187192091,-0.003571428571454,-0.002586206896600,2 -8027,8040,8042,8055,-0.125184729064132,0.391071428571423,-0.130541871921241,0.389285714285699,-0.133004926108471,0.392857142857147,-0.138362068965580,0.391071428571423,0.003571428571447,0.002339901477872,0.000000000000001,-0.013054187192091,-0.000000000000000,0.013300492610807,-0.003571428571448,-0.002586206896588,2 -8028,8041,8043,8056,-0.127524630541998,0.394642857142864,-0.133004926108471,0.392857142857147,-0.135467980295690,0.396428571428582,-0.140948275862162,0.394642857142864,0.003571428571435,0.002339901477861,0.000000000000000,-0.013300492610807,0.000000000000000,0.013546798029522,-0.003571428571436,-0.002586206896576,2 -7344,8029,8042,8057,-0.137931034482892,0.400000000000000,-0.129864532019851,0.398214285714291,-0.135467980295690,0.396428571428582,-0.143534482758730,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.002339901477845,-0.000000000000000,-0.013546798029522,-0.003571428571418,-0.002586206896560,2 -8030,8045,8058,10393,-0.109913793103342,0.351785714285711,-0.116502463054098,0.353571428571422,-0.120381773398932,0.351785714285711,-0.113793103448176,0.350000000000000,0.003571428571422,0.002586206896565,0.000000000000000,0.010591133004947,-0.003571428571422,-0.002832512315280,0.000000000000000,-0.010344827586232,2 -8031,8044,8046,8059,-0.112499999999907,0.355357142857136,-0.116502463054098,0.353571428571422,-0.119211822660022,0.357142857142850,-0.123214285714212,0.355357142857136,0.003571428571428,0.002586206896566,-0.000000000000000,-0.010591133004947,-0.000000000000000,0.010837438423663,-0.003571428571428,-0.002832512315282,2 -8032,8045,8047,8060,-0.115086206896473,0.358928571428566,-0.119211822660022,0.357142857142850,-0.121921182265946,0.360714285714281,-0.126046798029494,0.358928571428565,0.003571428571432,0.002586206896566,0.000000000000000,-0.010837438423663,-0.000000000000001,0.011083743842379,-0.003571428571431,-0.002832512315282,2 -8033,8046,8048,8061,-0.117672413793028,0.362499999999988,-0.121921182265946,0.360714285714281,-0.124630541871847,0.364285714285693,-0.128879310344765,0.362499999999986,0.003571428571413,0.002586206896543,0.000000000000001,-0.011083743842379,-0.000000000000002,0.011330049261095,-0.003571428571411,-0.002832512315259,2 -8034,8047,8049,8062,-0.120258620689579,0.366071428571406,-0.124630541871847,0.364285714285693,-0.127339901477764,0.367857142857117,-0.131711822660032,0.366071428571403,0.003571428571424,0.002586206896559,0.000000000000002,-0.011330049261095,-0.000000000000003,0.011576354679811,-0.003571428571423,-0.002832512315275,2 -8035,8048,8050,8063,-0.122844827586133,0.369642857142824,-0.127339901477764,0.367857142857117,-0.130049261083670,0.371428571428527,-0.134544334975301,0.369642857142820,0.003571428571411,0.002586206896549,0.000000000000003,-0.011576354679811,-0.000000000000004,0.011822660098526,-0.003571428571410,-0.002832512315264,2 -8036,8049,8051,8064,-0.125431034482680,0.373214285714233,-0.130049261083670,0.371428571428527,-0.132758620689574,0.374999999999934,-0.137376847290564,0.373214285714228,0.003571428571407,0.002586206896547,0.000000000000004,-0.011822660098526,-0.000000000000005,0.012068965517241,-0.003571428571406,-0.002832512315262,2 -8037,8050,8052,8065,-0.128017241379240,0.376785714285650,-0.132758620689574,0.374999999999934,-0.135467980295505,0.378571428571362,-0.140209359605839,0.376785714285645,0.003571428571427,0.002586206896573,0.000000000000005,-0.012068965517241,-0.000000000000004,0.012315270935956,-0.003571428571428,-0.002832512315288,2 -8038,8051,8053,8066,-0.130603448275814,0.380357142857081,-0.135467980295505,0.378571428571362,-0.138177339901438,0.382142857142796,-0.143041871921128,0.380357142857077,0.003571428571434,0.002586206896575,0.000000000000004,-0.012315270935956,-0.000000000000004,0.012561576354672,-0.003571428571434,-0.002832512315291,2 -8039,8052,8054,8067,-0.133189655172394,0.383928571428521,-0.138177339901438,0.382142857142796,-0.140886699507381,0.385714285714243,-0.145874384236424,0.383928571428517,0.003571428571447,0.002586206896585,0.000000000000004,-0.012561576354672,-0.000000000000003,0.012807881773388,-0.003571428571447,-0.002832512315301,2 -8040,8053,8055,8068,-0.135775862068987,0.387499999999971,-0.140886699507381,0.385714285714243,-0.143596059113339,0.389285714285698,-0.148706896551733,0.387499999999969,0.003571428571454,0.002586206896600,0.000000000000003,-0.012807881773388,-0.000000000000001,0.013054187192104,-0.003571428571457,-0.002832512315316,2 -8041,8054,8056,8069,-0.138362068965580,0.391071428571423,-0.143596059113339,0.389285714285698,-0.146305418719285,0.392857142857146,-0.151539408867043,0.391071428571422,0.003571428571448,0.002586206896588,0.000000000000001,-0.013054187192104,-0.000000000000000,0.013300492610821,-0.003571428571448,-0.002832512315304,2 -8042,8055,8057,8070,-0.140948275862162,0.394642857142864,-0.146305418719285,0.392857142857146,-0.149014778325219,0.396428571428582,-0.154371921182341,0.394642857142864,0.003571428571436,0.002586206896576,0.000000000000000,-0.013300492610821,0.000000000000000,0.013546798029537,-0.003571428571436,-0.002832512315292,2 -7330,8043,8056,8071,-0.151724137931136,0.400000000000000,-0.143534482758730,0.398214285714291,-0.149014778325219,0.396428571428582,-0.157204433497624,0.398214285714291,0.000000000000000,0.013793103448251,0.003571428571418,0.002586206896560,-0.000000000000000,-0.013546798029537,-0.003571428571418,-0.002832512315274,2 -8044,8059,8072,10334,-0.120381773398932,0.351785714285711,-0.127093596059047,0.353571428571422,-0.130849753694525,0.351785714285711,-0.124137931034410,0.350000000000000,0.003571428571422,0.002832512315280,0.000000000000000,0.010591133004951,-0.003571428571422,-0.003078817733995,0.000000000000000,-0.010344827586236,2 -8045,8058,8060,8073,-0.123214285714212,0.355357142857136,-0.127093596059047,0.353571428571422,-0.130049261083687,0.357142857142850,-0.133928571428521,0.355357142857136,0.003571428571428,0.002832512315282,-0.000000000000000,-0.010591133004951,-0.000000000000000,0.010837438423667,-0.003571428571428,-0.003078817733997,2 -8046,8059,8061,8074,-0.126046798029494,0.358928571428565,-0.130049261083687,0.357142857142850,-0.133004926108327,0.360714285714281,-0.137007389162519,0.358928571428565,0.003571428571431,0.002832512315282,0.000000000000000,-0.010837438423667,-0.000000000000001,0.011083743842383,-0.003571428571430,-0.003078817733998,2 -8047,8060,8062,8075,-0.128879310344765,0.362499999999986,-0.133004926108327,0.360714285714281,-0.135960591132944,0.364285714285690,-0.140086206896506,0.362499999999985,0.003571428571411,0.002832512315259,0.000000000000001,-0.011083743842383,-0.000000000000002,0.011330049261099,-0.003571428571409,-0.003078817733975,2 -8048,8061,8063,8076,-0.131711822660032,0.366071428571403,-0.135960591132944,0.364285714285690,-0.138916256157577,0.367857142857113,-0.143165024630489,0.366071428571400,0.003571428571423,0.002832512315275,0.000000000000002,-0.011330049261099,-0.000000000000003,0.011576354679815,-0.003571428571423,-0.003078817733991,2 -8049,8062,8064,8077,-0.134544334975301,0.369642857142820,-0.138916256157577,0.367857142857113,-0.141871921182198,0.371428571428523,-0.146243842364474,0.369642857142816,0.003571428571410,0.002832512315264,0.000000000000003,-0.011576354679815,-0.000000000000004,0.011822660098530,-0.003571428571409,-0.003078817733979,2 -8050,8063,8065,8078,-0.137376847290564,0.373214285714228,-0.141871921182198,0.371428571428523,-0.144827586206817,0.374999999999929,-0.149322660098451,0.373214285714223,0.003571428571406,0.002832512315262,0.000000000000004,-0.011822660098530,-0.000000000000005,0.012068965517244,-0.003571428571406,-0.003078817733976,2 -8051,8064,8066,8079,-0.140209359605839,0.376785714285645,-0.144827586206817,0.374999999999929,-0.147783251231463,0.378571428571357,-0.152401477832441,0.376785714285641,0.003571428571428,0.002832512315288,0.000000000000005,-0.012068965517244,-0.000000000000004,0.012315270935959,-0.003571428571429,-0.003078817734003,2 -8052,8065,8067,8080,-0.143041871921128,0.380357142857077,-0.147783251231463,0.378571428571357,-0.150738916256111,0.382142857142792,-0.155480295566445,0.380357142857073,0.003571428571434,0.002832512315291,0.000000000000004,-0.012315270935959,-0.000000000000004,0.012561576354675,-0.003571428571435,-0.003078817734006,2 -8053,8066,8068,8081,-0.145874384236424,0.383928571428517,-0.150738916256111,0.382142857142792,-0.153694581280771,0.385714285714239,-0.158559113300457,0.383928571428514,0.003571428571447,0.002832512315301,0.000000000000004,-0.012561576354675,-0.000000000000003,0.012807881773391,-0.003571428571448,-0.003078817734018,2 -8054,8067,8069,8082,-0.148706896551733,0.387499999999969,-0.153694581280771,0.385714285714239,-0.156650246305445,0.389285714285697,-0.161637931034482,0.387499999999967,0.003571428571457,0.002832512315316,0.000000000000003,-0.012807881773391,-0.000000000000001,0.013054187192107,-0.003571428571458,-0.003078817734032,2 -8055,8068,8070,8083,-0.151539408867043,0.391071428571422,-0.156650246305445,0.389285714285697,-0.159605911330107,0.392857142857146,-0.164716748768508,0.391071428571421,0.003571428571448,0.002832512315304,0.000000000000001,-0.013054187192107,-0.000000000000000,0.013300492610823,-0.003571428571449,-0.003078817734020,2 -8056,8069,8071,8084,-0.154371921182341,0.394642857142864,-0.159605911330107,0.392857142857146,-0.162561576354757,0.396428571428583,-0.167795566502523,0.394642857142864,0.003571428571436,0.002832512315292,0.000000000000000,-0.013300492610823,-0.000000000000000,0.013546798029539,-0.003571428571437,-0.003078817734008,2 -7316,8057,8070,8085,-0.165517241379389,0.400000000000000,-0.157204433497624,0.398214285714291,-0.162561576354757,0.396428571428583,-0.170874384236521,0.398214285714291,0.000000000000000,0.013793103448254,0.003571428571418,0.002832512315274,0.000000000000000,-0.013546798029539,-0.003571428571418,-0.003078817733989,2 -8058,8073,8086,10275,-0.130849753694525,0.351785714285711,-0.137684729063997,0.353571428571422,-0.141317733990118,0.351785714285711,-0.134482758620646,0.350000000000000,0.003571428571422,0.003078817733995,0.000000000000000,0.010591133004950,-0.003571428571422,-0.003325123152708,0.000000000000000,-0.010344827586236,2 -8059,8072,8074,8087,-0.133928571428521,0.355357142857136,-0.137684729063997,0.353571428571422,-0.140886699507352,0.357142857142850,-0.144642857142828,0.355357142857136,0.003571428571428,0.003078817733997,-0.000000000000000,-0.010591133004950,-0.000000000000000,0.010837438423664,-0.003571428571427,-0.003325123152712,2 -8060,8073,8075,8088,-0.137007389162519,0.358928571428565,-0.140886699507352,0.357142857142850,-0.144088669950708,0.360714285714280,-0.147967980295541,0.358928571428565,0.003571428571430,0.003078817733998,0.000000000000000,-0.010837438423664,-0.000000000000000,0.011083743842379,-0.003571428571430,-0.003325123152714,2 -8061,8074,8076,8089,-0.140086206896506,0.362499999999985,-0.144088669950708,0.360714285714280,-0.147290640394040,0.364285714285688,-0.151293103448242,0.362499999999983,0.003571428571409,0.003078817733975,0.000000000000000,-0.011083743842379,-0.000000000000003,0.011330049261094,-0.003571428571407,-0.003325123152690,2 -8062,8075,8077,8090,-0.143165024630489,0.366071428571400,-0.147290640394040,0.364285714285688,-0.150492610837388,0.367857142857110,-0.154618226600940,0.366071428571397,0.003571428571423,0.003078817733991,0.000000000000003,-0.011330049261094,-0.000000000000003,0.011576354679808,-0.003571428571422,-0.003325123152705,2 -8063,8076,8078,8091,-0.146243842364474,0.369642857142816,-0.150492610837388,0.367857142857110,-0.153694581280724,0.371428571428518,-0.157943349753639,0.369642857142812,0.003571428571409,0.003078817733979,0.000000000000003,-0.011576354679808,-0.000000000000004,0.011822660098522,-0.003571428571408,-0.003325123152693,2 -8064,8077,8079,8092,-0.149322660098451,0.373214285714223,-0.153694581280724,0.371428571428518,-0.156896551724057,0.374999999999924,-0.161268472906330,0.373214285714219,0.003571428571406,0.003078817733976,0.000000000000004,-0.011822660098522,-0.000000000000005,0.012068965517236,-0.003571428571405,-0.003325123152690,2 -8065,8078,8080,8093,-0.152401477832441,0.376785714285641,-0.156896551724057,0.374999999999924,-0.160098522167417,0.378571428571353,-0.164593596059033,0.376785714285636,0.003571428571429,0.003078817734003,0.000000000000005,-0.012068965517236,-0.000000000000004,0.012315270935949,-0.003571428571430,-0.003325123152716,2 -8066,8079,8081,8094,-0.155480295566445,0.380357142857073,-0.160098522167417,0.378571428571353,-0.163300492610780,0.382142857142788,-0.167918719211752,0.380357142857069,0.003571428571435,0.003078817734006,0.000000000000004,-0.012315270935949,-0.000000000000004,0.012561576354664,-0.003571428571435,-0.003325123152721,2 -8067,8080,8082,8095,-0.158559113300457,0.383928571428514,-0.163300492610780,0.382142857142788,-0.166502463054156,0.385714285714236,-0.171243842364479,0.383928571428511,0.003571428571448,0.003078817734018,0.000000000000004,-0.012561576354664,-0.000000000000003,0.012807881773379,-0.003571428571448,-0.003325123152733,2 -8068,8081,8083,8096,-0.161637931034482,0.387499999999967,-0.166502463054156,0.385714285714236,-0.169704433497545,0.389285714285696,-0.174568965517218,0.387499999999965,0.003571428571458,0.003078817734032,0.000000000000003,-0.012807881773379,-0.000000000000001,0.013054187192094,-0.003571428571460,-0.003325123152747,2 -8069,8082,8084,8097,-0.164716748768508,0.391071428571421,-0.169704433497545,0.389285714285696,-0.172906403940923,0.392857142857145,-0.177894088669959,0.391071428571420,0.003571428571449,0.003078817734020,0.000000000000001,-0.013054187192094,-0.000000000000000,0.013300492610809,-0.003571428571450,-0.003325123152735,2 -8070,8083,8085,8098,-0.167795566502523,0.394642857142864,-0.172906403940923,0.392857142857145,-0.176108374384288,0.396428571428583,-0.181219211822688,0.394642857142864,0.003571428571437,0.003078817734008,0.000000000000000,-0.013300492610809,0.000000000000000,0.013546798029523,-0.003571428571437,-0.003325123152723,2 -7302,8071,8084,8099,-0.179310344827634,0.400000000000000,-0.170874384236521,0.398214285714291,-0.176108374384288,0.396428571428583,-0.184544334975401,0.398214285714291,0.000000000000000,0.013793103448237,0.003571428571418,0.003078817733989,-0.000000000000000,-0.013546798029523,-0.003571428571417,-0.003325123152703,2 -8072,8087,8925,10216,-0.141317733990118,0.351785714285711,-0.148275862068947,0.353571428571423,-0.151785714285711,0.351785714285711,-0.144827586206882,0.350000000000000,0.003571428571422,0.003325123152708,0.000000000000000,0.010591133004951,-0.003571428571423,-0.003571428571423,-0.000000000000000,-0.010344827586236,2 -8073,8086,8088,8924,-0.144642857142828,0.355357142857136,-0.148275862068947,0.353571428571423,-0.151724137931017,0.357142857142850,-0.155357142857136,0.355357142857136,0.003571428571427,0.003325123152712,-0.000000000000000,-0.010591133004951,0.000000000000000,0.010837438423666,-0.003571428571427,-0.003571428571427,2 -8074,8087,8089,8923,-0.147967980295541,0.358928571428565,-0.151724137931017,0.357142857142850,-0.155172413793088,0.360714285714279,-0.158928571428564,0.358928571428564,0.003571428571430,0.003325123152714,-0.000000000000000,-0.010837438423666,-0.000000000000001,0.011083743842382,-0.003571428571429,-0.003571428571429,2 -8075,8088,8090,8922,-0.151293103448242,0.362499999999983,-0.155172413793088,0.360714285714279,-0.158620689655136,0.364285714285685,-0.162499999999982,0.362499999999982,0.003571428571407,0.003325123152690,0.000000000000001,-0.011083743842382,-0.000000000000002,0.011330049261097,-0.003571428571405,-0.003571428571405,2 -8076,8089,8091,8921,-0.154618226600940,0.366071428571397,-0.158620689655136,0.364285714285685,-0.162068965517199,0.367857142857107,-0.166071428571395,0.366071428571395,0.003571428571422,0.003325123152705,0.000000000000002,-0.011330049261097,-0.000000000000003,0.011576354679812,-0.003571428571421,-0.003571428571421,2 -8077,8090,8092,8920,-0.157943349753639,0.369642857142812,-0.162068965517199,0.367857142857107,-0.165517241379249,0.371428571428514,-0.169642857142809,0.369642857142809,0.003571428571408,0.003325123152693,0.000000000000003,-0.011576354679812,-0.000000000000004,0.011822660098527,-0.003571428571407,-0.003571428571407,2 -8078,8091,8093,8919,-0.161268472906330,0.373214285714219,-0.165517241379249,0.371428571428514,-0.168965517241295,0.374999999999919,-0.173214285714214,0.373214285714214,0.003571428571405,0.003325123152690,0.000000000000004,-0.011822660098527,-0.000000000000005,0.012068965517241,-0.003571428571404,-0.003571428571404,2 -8079,8092,8094,8918,-0.164593596059033,0.376785714285636,-0.168965517241295,0.374999999999919,-0.172413793103369,0.378571428571349,-0.176785714285631,0.376785714285631,0.003571428571430,0.003325123152716,0.000000000000005,-0.012068965517241,-0.000000000000004,0.012315270935955,-0.003571428571431,-0.003571428571431,2 -8080,8093,8095,8917,-0.167918719211752,0.380357142857069,-0.172413793103369,0.378571428571349,-0.175862068965447,0.382142857142785,-0.180357142857065,0.380357142857065,0.003571428571435,0.003325123152721,0.000000000000004,-0.012315270935955,-0.000000000000004,0.012561576354671,-0.003571428571436,-0.003571428571436,2 -8081,8094,8096,8916,-0.171243842364479,0.383928571428511,-0.175862068965447,0.382142857142785,-0.179310344827538,0.385714285714233,-0.183928571428507,0.383928571428507,0.003571428571448,0.003325123152733,0.000000000000004,-0.012561576354671,-0.000000000000003,0.012807881773386,-0.003571428571449,-0.003571428571449,2 -8082,8095,8097,8915,-0.174568965517218,0.387499999999965,-0.179310344827538,0.385714285714233,-0.182758620689643,0.389285714285694,-0.187499999999963,0.387499999999963,0.003571428571460,0.003325123152747,0.000000000000003,-0.012807881773386,-0.000000000000001,0.013054187192102,-0.003571428571462,-0.003571428571462,2 -8083,8096,8098,8914,-0.177894088669959,0.391071428571420,-0.182758620689643,0.389285714285694,-0.186206896551736,0.392857142857145,-0.191071428571419,0.391071428571419,0.003571428571450,0.003325123152735,0.000000000000001,-0.013054187192102,-0.000000000000000,0.013300492610818,-0.003571428571451,-0.003571428571451,2 -8084,8097,8099,8913,-0.181219211822688,0.394642857142864,-0.186206896551736,0.392857142857145,-0.189655172413816,0.396428571428583,-0.194642857142864,0.394642857142864,0.003571428571437,0.003325123152723,0.000000000000000,-0.013300492610818,0.000000000000000,0.013546798029533,-0.003571428571438,-0.003571428571438,2 -7288,8085,8098,8912,-0.193103448275876,0.400000000000000,-0.184544334975401,0.398214285714291,-0.189655172413816,0.396428571428583,-0.198214285714291,0.398214285714291,0.000000000000000,0.013793103448248,0.003571428571417,0.003325123152703,-0.000000000000000,-0.013546798029533,-0.003571428571417,-0.003571428571417,2 -2242,8101,8114,9303,-0.200000000000000,-0.393220338983059,-0.196428571428583,-0.389709443099291,-0.198214285714291,-0.384715496368059,-0.198214285714291,-0.398214285714291,-0.013559322033881,-0.000000000000000,0.013438256658583,0.000000000000000,-0.003450363196119,0.003571428571417,0.003571428571417,-0.003571428571417,2 -8100,8102,8115,9274,-0.196428571428583,-0.389709443099291,-0.192857142857145,-0.386198547215503,-0.194642857142864,-0.381265133171930,-0.194642857142864,-0.394642857142864,-0.013438256658583,-0.000000000000000,0.013317191283284,0.000000000000000,-0.003450363196139,0.003571428571438,0.003571428571438,-0.003571428571438,2 -8101,8103,8116,9245,-0.192857142857145,-0.386198547215503,-0.189285714285694,-0.382687651331702,-0.191071428571419,-0.377814769975785,-0.191071428571419,-0.391071428571419,-0.013317191283284,-0.000000000000000,0.013196125907985,-0.000000000000000,-0.003450363196152,0.003571428571451,0.003571428571451,-0.003571428571451,2 -8102,8104,8117,9216,-0.189285714285694,-0.382687651331702,-0.185714285714231,-0.379176755447889,-0.187499999999963,-0.374364406779628,-0.187499999999963,-0.387499999999963,-0.013196125907985,0.000000000000000,0.013075060532685,0.000000000000000,-0.003450363196162,0.003571428571462,0.003571428571462,-0.003571428571462,2 -8103,8105,8118,9187,-0.185714285714231,-0.379176755447889,-0.182142857142783,-0.375665859564090,-0.183928571428507,-0.370914043583472,-0.183928571428507,-0.383928571428507,-0.013075060532685,-0.000000000000000,0.012953995157385,0.000000000000000,-0.003450363196149,0.003571428571449,0.003571428571449,-0.003571428571449,2 -8104,8106,8119,9158,-0.182142857142783,-0.375665859564090,-0.178571428571347,-0.372154963680304,-0.180357142857065,-0.367463680387329,-0.180357142857065,-0.380357142857065,-0.012953995157385,-0.000000000000000,0.012832929782086,-0.000000000000000,-0.003450363196137,0.003571428571436,0.003571428571436,-0.003571428571436,2 -8105,8107,8120,9129,-0.178571428571347,-0.372154963680304,-0.174999999999916,-0.368644067796522,-0.176785714285631,-0.364013317191195,-0.176785714285631,-0.376785714285631,-0.012832929782086,0.000000000000000,0.012711864406787,0.000000000000000,-0.003450363196132,0.003571428571431,0.003571428571431,-0.003571428571431,2 -8106,8108,8121,9100,-0.174999999999916,-0.368644067796522,-0.171428571428512,-0.365133171912767,-0.173214285714214,-0.360562953995076,-0.173214285714214,-0.373214285714214,-0.012711864406787,-0.000000000000000,0.012590799031490,0.000000000000000,-0.003450363196106,0.003571428571404,0.003571428571404,-0.003571428571404,2 -8107,8109,8122,9071,-0.171428571428512,-0.365133171912767,-0.167857142857105,-0.361622276029009,-0.169642857142809,-0.357112590798968,-0.169642857142809,-0.369642857142809,-0.012590799031490,-0.000000000000000,0.012469733656192,0.000000000000000,-0.003450363196109,0.003571428571407,0.003571428571407,-0.003571428571407,2 -8108,8110,8123,9042,-0.167857142857105,-0.361622276029009,-0.164285714285684,-0.358111380145238,-0.166071428571394,-0.353662227602852,-0.166071428571395,-0.366071428571395,-0.012469733656192,-0.000000000000000,0.012348668280893,-0.000000000000000,-0.003450363196122,0.003571428571421,0.003571428571421,-0.003571428571421,2 -8109,8111,8124,9013,-0.164285714285684,-0.358111380145238,-0.160714285714279,-0.354600484261481,-0.162499999999982,-0.350211864406737,-0.162499999999982,-0.362499999999982,-0.012348668280893,0.000000000000000,0.012227602905595,0.000000000000000,-0.003450363196107,0.003571428571405,0.003571428571405,-0.003571428571405,2 -8110,8112,8125,8984,-0.160714285714279,-0.354600484261481,-0.157142857142850,-0.351089588377702,-0.158928571428564,-0.346761501210619,-0.158928571428564,-0.358928571428564,-0.012227602905595,-0.000000000000000,0.012106537530296,0.000000000000000,-0.003450363196131,0.003571428571429,0.003571428571429,-0.003571428571429,2 -8111,8113,8126,8955,-0.157142857142850,-0.351089588377702,-0.153571428571423,-0.347578692493924,-0.155357142857136,-0.343311138014489,-0.155357142857136,-0.355357142857136,-0.012106537530296,-0.000000000000000,0.011985472154998,-0.000000000000000,-0.003450363196128,0.003571428571427,0.003571428571427,-0.003571428571427,2 -8112,8127,8926,10158,-0.153571428571423,-0.347578692493924,-0.151785714285711,-0.339860774818363,-0.151785714285711,-0.351785714285711,-0.150000000000000,-0.344067796610150,-0.011985472154998,0.000000000000000,-0.003450363196124,0.003571428571423,0.003571428571423,-0.003571428571423,0.011864406779699,0.000000000000000,2 -2243,8100,8115,8128,-0.200000000000000,-0.379661016949189,-0.198214285714291,-0.384715496368059,-0.196428571428583,-0.376271186440718,-0.198214285714291,-0.371216707021848,-0.013559322033860,-0.000000000000000,0.003450363196119,-0.003571428571417,0.013438256658562,0.000000000000000,-0.003329297820822,0.003571428571417,2 -8101,8114,8116,8129,-0.194642857142864,-0.381265133171930,-0.196428571428583,-0.376271186440718,-0.192857142857145,-0.372881355932229,-0.194642857142864,-0.367887409201017,0.003450363196139,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.003329297820841,0.003571428571438,2 -8102,8115,8117,8130,-0.191071428571419,-0.377814769975785,-0.192857142857145,-0.372881355932229,-0.189285714285694,-0.369491525423726,-0.191071428571419,-0.364558111380170,0.003450363196152,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907966,0.000000000000000,-0.003329297820853,0.003571428571451,2 -8103,8116,8118,8131,-0.187499999999963,-0.374364406779628,-0.189285714285694,-0.369491525423726,-0.185714285714231,-0.366101694915213,-0.187499999999963,-0.361228813559312,0.003450363196162,-0.003571428571462,-0.013196125907966,-0.000000000000000,0.013075060532667,0.000000000000000,-0.003329297820864,0.003571428571462,2 -8104,8117,8119,8132,-0.183928571428507,-0.370914043583472,-0.185714285714231,-0.366101694915213,-0.182142857142783,-0.362711864406713,-0.183928571428507,-0.357899515738454,0.003450363196149,-0.003571428571449,-0.013075060532667,-0.000000000000000,0.012953995157369,0.000000000000000,-0.003329297820851,0.003571428571449,2 -8105,8118,8120,8133,-0.180357142857065,-0.367463680387329,-0.182142857142783,-0.362711864406713,-0.178571428571347,-0.359322033898225,-0.180357142857065,-0.354570217917610,0.003450363196137,-0.003571428571436,-0.012953995157369,-0.000000000000000,0.012832929782071,0.000000000000000,-0.003329297820839,0.003571428571436,2 -8106,8119,8121,8134,-0.176785714285631,-0.364013317191195,-0.178571428571347,-0.359322033898225,-0.174999999999916,-0.355932203389742,-0.176785714285631,-0.351240920096773,0.003450363196132,-0.003571428571431,-0.012832929782071,-0.000000000000000,0.012711864406773,0.000000000000000,-0.003329297820835,0.003571428571431,2 -8107,8120,8122,8135,-0.173214285714214,-0.360562953995076,-0.174999999999916,-0.355932203389742,-0.171428571428512,-0.352542372881285,-0.173214285714214,-0.347911622275951,0.003450363196106,-0.003571428571404,-0.012711864406773,-0.000000000000000,0.012590799031476,-0.000000000000000,-0.003329297820809,0.003571428571404,2 -8108,8121,8123,8136,-0.169642857142809,-0.357112590798968,-0.171428571428512,-0.352542372881285,-0.167857142857105,-0.349152542372824,-0.169642857142808,-0.344582324455141,0.003450363196109,-0.003571428571407,-0.012590799031476,0.000000000000000,0.012469733656179,0.000000000000000,-0.003329297820812,0.003571428571407,2 -8109,8122,8124,8137,-0.166071428571394,-0.353662227602852,-0.167857142857105,-0.349152542372824,-0.164285714285684,-0.345762711864350,-0.166071428571395,-0.341253026634322,0.003450363196122,-0.003571428571421,-0.012469733656179,-0.000000000000000,0.012348668280881,0.000000000000000,-0.003329297820825,0.003571428571421,2 -8110,8123,8125,8138,-0.162499999999982,-0.350211864406737,-0.164285714285684,-0.345762711864350,-0.160714285714279,-0.342372881355892,-0.162499999999982,-0.337923728813505,0.003450363196107,-0.003571428571405,-0.012348668280881,-0.000000000000000,0.012227602905585,0.000000000000000,-0.003329297820810,0.003571428571405,2 -8111,8124,8126,8139,-0.158928571428564,-0.346761501210619,-0.160714285714279,-0.342372881355892,-0.157142857142850,-0.338983050847410,-0.158928571428565,-0.334594430992683,0.003450363196131,-0.003571428571429,-0.012227602905585,-0.000000000000000,0.012106537530287,0.000000000000000,-0.003329297820833,0.003571428571429,2 -8112,8125,8127,8140,-0.155357142857136,-0.343311138014489,-0.157142857142850,-0.338983050847410,-0.153571428571423,-0.335593220338930,-0.155357142857136,-0.331265133171851,0.003450363196128,-0.003571428571427,-0.012106537530287,-0.000000000000000,0.011985472154989,0.000000000000000,-0.003329297820831,0.003571428571427,2 -8113,8126,8141,10159,-0.151785714285711,-0.339860774818363,-0.153571428571423,-0.335593220338930,-0.151785714285711,-0.327935835351022,-0.150000000000000,-0.332203389830455,0.003450363196124,-0.003571428571423,-0.011985472154989,-0.000000000000000,-0.003329297820827,0.003571428571423,0.011864406779692,-0.000000000000000,2 -2244,8114,8129,8142,-0.200000000000000,-0.366101694915329,-0.198214285714291,-0.371216707021848,-0.196428571428583,-0.362832929782156,-0.198214285714291,-0.357717917675637,-0.013559322033860,-0.000000000000000,0.003329297820822,-0.003571428571417,0.013438256658562,0.000000000000000,-0.003208232445524,0.003571428571417,2 -8115,8128,8130,8143,-0.194642857142864,-0.367887409201017,-0.196428571428583,-0.362832929782156,-0.192857142857145,-0.359564164648965,-0.194642857142864,-0.354509685230104,0.003329297820841,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.003208232445542,0.003571428571438,2 -8116,8129,8131,8144,-0.191071428571419,-0.364558111380170,-0.192857142857145,-0.359564164648965,-0.189285714285694,-0.356295399515761,-0.191071428571419,-0.351301452784556,0.003329297820853,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907965,0.000000000000000,-0.003208232445554,0.003571428571451,2 -8117,8130,8132,8145,-0.187499999999963,-0.361228813559312,-0.189285714285694,-0.356295399515761,-0.185714285714231,-0.353026634382547,-0.187499999999963,-0.348093220338997,0.003329297820864,-0.003571428571462,-0.013196125907965,-0.000000000000000,0.013075060532665,0.000000000000000,-0.003208232445564,0.003571428571462,2 -8118,8131,8133,8146,-0.183928571428507,-0.357899515738454,-0.185714285714231,-0.353026634382547,-0.182142857142783,-0.349757869249346,-0.183928571428507,-0.344884987893439,0.003329297820851,-0.003571428571449,-0.013075060532665,-0.000000000000000,0.012953995157366,0.000000000000000,-0.003208232445552,0.003571428571449,2 -8119,8132,8134,8147,-0.180357142857065,-0.354570217917610,-0.182142857142783,-0.349757869249346,-0.178571428571347,-0.346489104116156,-0.180357142857065,-0.341676755447893,0.003329297820839,-0.003571428571436,-0.012953995157366,-0.000000000000000,0.012832929782068,0.000000000000000,-0.003208232445540,0.003571428571436,2 -8120,8133,8135,8148,-0.176785714285631,-0.351240920096773,-0.178571428571347,-0.346489104116156,-0.174999999999916,-0.343220338982971,-0.176785714285631,-0.338468523002354,0.003329297820835,-0.003571428571431,-0.012832929782068,-0.000000000000000,0.012711864406769,0.000000000000000,-0.003208232445536,0.003571428571431,2 -8121,8134,8136,8149,-0.173214285714214,-0.347911622275951,-0.174999999999916,-0.343220338982971,-0.171428571428512,-0.339951573849811,-0.173214285714214,-0.335260290556830,0.003329297820809,-0.003571428571404,-0.012711864406769,-0.000000000000000,0.012590799031472,0.000000000000000,-0.003208232445512,0.003571428571404,2 -8122,8135,8137,8150,-0.169642857142808,-0.344582324455141,-0.171428571428512,-0.339951573849811,-0.167857142857105,-0.336682808716647,-0.169642857142809,-0.332052058111317,0.003329297820812,-0.003571428571407,-0.012590799031472,-0.000000000000000,0.012469733656174,0.000000000000000,-0.003208232445515,0.003571428571407,2 -8123,8136,8138,8151,-0.166071428571395,-0.341253026634322,-0.167857142857105,-0.336682808716647,-0.164285714285684,-0.333414043583471,-0.166071428571395,-0.328843825665797,0.003329297820825,-0.003571428571421,-0.012469733656174,-0.000000000000000,0.012348668280877,0.000000000000000,-0.003208232445527,0.003571428571421,2 -8124,8137,8139,8152,-0.162499999999982,-0.337923728813505,-0.164285714285684,-0.333414043583471,-0.160714285714279,-0.330145278450310,-0.162499999999982,-0.325635593220277,0.003329297820810,-0.003571428571405,-0.012348668280877,-0.000000000000000,0.012227602905579,-0.000000000000000,-0.003208232445513,0.003571428571405,2 -8125,8138,8140,8153,-0.158928571428565,-0.334594430992683,-0.160714285714279,-0.330145278450310,-0.157142857142850,-0.326876513317126,-0.158928571428564,-0.322427360774753,0.003329297820833,-0.003571428571429,-0.012227602905579,0.000000000000000,0.012106537530281,0.000000000000000,-0.003208232445535,0.003571428571429,2 -8126,8139,8141,8154,-0.155357142857136,-0.331265133171851,-0.157142857142850,-0.326876513317126,-0.153571428571423,-0.323607748183944,-0.155357142857136,-0.319219128329219,0.003329297820831,-0.003571428571427,-0.012106537530281,-0.000000000000000,0.011985472154983,-0.000000000000000,-0.003208232445532,0.003571428571427,2 -8127,8140,8155,10160,-0.151785714285711,-0.327935835351022,-0.153571428571423,-0.323607748183944,-0.151785714285711,-0.316010895883689,-0.150000000000000,-0.320338983050767,0.003329297820827,-0.003571428571423,-0.011985472154983,0.000000000000000,-0.003208232445529,0.003571428571423,0.011864406779685,-0.000000000000000,2 -2245,8128,8143,8156,-0.200000000000000,-0.352542372881469,-0.198214285714291,-0.357717917675637,-0.196428571428583,-0.349394673123594,-0.198214285714291,-0.344219128329426,-0.013559322033860,-0.000000000000000,0.003208232445524,-0.003571428571417,0.013438256658563,0.000000000000000,-0.003087167070227,0.003571428571417,2 -8129,8142,8144,8157,-0.194642857142864,-0.354509685230104,-0.196428571428583,-0.349394673123594,-0.192857142857145,-0.346246973365700,-0.194642857142864,-0.341131961259189,0.003208232445542,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283266,0.000000000000000,-0.003087167070245,0.003571428571438,2 -8130,8143,8145,8158,-0.191071428571419,-0.351301452784556,-0.192857142857145,-0.346246973365700,-0.189285714285694,-0.343099273607795,-0.191071428571419,-0.338044794188938,0.003208232445554,-0.003571428571451,-0.013317191283266,-0.000000000000000,0.013196125907969,0.000000000000000,-0.003087167070257,0.003571428571451,2 -8131,8144,8146,8159,-0.187499999999963,-0.348093220338997,-0.189285714285694,-0.343099273607795,-0.185714285714231,-0.339951573849879,-0.187499999999963,-0.334957627118677,0.003208232445564,-0.003571428571462,-0.013196125907969,-0.000000000000000,0.013075060532671,0.000000000000000,-0.003087167070266,0.003571428571462,2 -8132,8145,8147,8160,-0.183928571428507,-0.344884987893439,-0.185714285714231,-0.339951573849879,-0.182142857142783,-0.336803874091976,-0.183928571428507,-0.331870460048416,0.003208232445552,-0.003571428571449,-0.013075060532671,-0.000000000000000,0.012953995157374,0.000000000000000,-0.003087167070255,0.003571428571449,2 -8133,8146,8148,8161,-0.180357142857065,-0.341676755447893,-0.182142857142783,-0.336803874091976,-0.178571428571347,-0.333656174334084,-0.180357142857065,-0.328783292978167,0.003208232445540,-0.003571428571436,-0.012953995157374,-0.000000000000000,0.012832929782077,0.000000000000000,-0.003087167070244,0.003571428571436,2 -8134,8147,8149,8162,-0.176785714285631,-0.338468523002354,-0.178571428571347,-0.333656174334084,-0.174999999999916,-0.330508474576196,-0.176785714285631,-0.325696125907926,0.003208232445536,-0.003571428571431,-0.012832929782077,-0.000000000000000,0.012711864406780,0.000000000000000,-0.003087167070239,0.003571428571431,2 -8135,8148,8150,8163,-0.173214285714214,-0.335260290556830,-0.174999999999916,-0.330508474576196,-0.171428571428512,-0.327360774818332,-0.173214285714214,-0.322608958837698,0.003208232445512,-0.003571428571404,-0.012711864406780,-0.000000000000000,0.012590799031484,-0.000000000000000,-0.003087167070216,0.003571428571404,2 -8136,8149,8151,8164,-0.169642857142809,-0.332052058111317,-0.171428571428512,-0.327360774818332,-0.167857142857105,-0.324213075060466,-0.169642857142808,-0.319521791767481,0.003208232445515,-0.003571428571407,-0.012590799031484,0.000000000000000,0.012469733656188,0.000000000000000,-0.003087167070219,0.003571428571407,2 -8137,8150,8152,8165,-0.166071428571395,-0.328843825665797,-0.167857142857105,-0.324213075060466,-0.164285714285684,-0.321065375302587,-0.166071428571395,-0.316434624697256,0.003208232445527,-0.003571428571421,-0.012469733656188,-0.000000000000000,0.012348668280892,0.000000000000000,-0.003087167070231,0.003571428571421,2 -8138,8151,8153,8166,-0.162499999999982,-0.325635593220277,-0.164285714285684,-0.321065375302587,-0.160714285714279,-0.317917675544722,-0.162499999999982,-0.313347457627033,0.003208232445513,-0.003571428571405,-0.012348668280892,-0.000000000000000,0.012227602905596,0.000000000000000,-0.003087167070217,0.003571428571405,2 -8139,8152,8154,8167,-0.158928571428564,-0.322427360774753,-0.160714285714279,-0.317917675544722,-0.157142857142850,-0.314769975786836,-0.158928571428564,-0.310260290556805,0.003208232445535,-0.003571428571429,-0.012227602905596,-0.000000000000000,0.012106537530299,0.000000000000000,-0.003087167070238,0.003571428571429,2 -8140,8153,8155,8168,-0.155357142857136,-0.319219128329219,-0.157142857142850,-0.314769975786836,-0.153571428571423,-0.311622276028952,-0.155357142857136,-0.307173123486569,0.003208232445532,-0.003571428571427,-0.012106537530299,-0.000000000000000,0.011985472155003,0.000000000000000,-0.003087167070236,0.003571428571427,2 -8141,8154,8169,10161,-0.151785714285711,-0.316010895883689,-0.153571428571423,-0.311622276028952,-0.151785714285711,-0.304085956416335,-0.150000000000000,-0.308474576271071,0.003208232445529,-0.003571428571423,-0.011985472155003,-0.000000000000000,-0.003087167070232,0.003571428571423,0.011864406779706,-0.000000000000000,2 -2246,8142,8157,8170,-0.200000000000000,-0.338983050847605,-0.198214285714291,-0.344219128329426,-0.196428571428583,-0.335956416465027,-0.198214285714291,-0.330720338983206,-0.013559322033869,-0.000000000000000,0.003087167070227,-0.003571428571417,0.013438256658570,0.000000000000000,-0.002966101694928,0.003571428571417,2 -8143,8156,8158,8171,-0.194642857142864,-0.341131961259189,-0.196428571428583,-0.335956416465027,-0.192857142857145,-0.332929782082432,-0.194642857142864,-0.327754237288270,0.003087167070245,-0.003571428571438,-0.013438256658570,-0.000000000000000,0.013317191283270,0.000000000000000,-0.002966101694945,0.003571428571438,2 -8144,8157,8159,8172,-0.191071428571419,-0.338044794188938,-0.192857142857145,-0.332929782082432,-0.189285714285694,-0.329903147699826,-0.191071428571419,-0.324788135593319,0.003087167070257,-0.003571428571451,-0.013317191283270,-0.000000000000000,0.013196125907969,0.000000000000000,-0.002966101694956,0.003571428571451,2 -8145,8158,8160,8173,-0.187499999999963,-0.334957627118677,-0.189285714285694,-0.329903147699826,-0.185714285714231,-0.326876513317210,-0.187499999999963,-0.321822033898358,0.003087167070266,-0.003571428571462,-0.013196125907969,-0.000000000000000,0.013075060532668,0.000000000000000,-0.002966101694966,0.003571428571462,2 -8146,8159,8161,8174,-0.183928571428507,-0.331870460048416,-0.185714285714231,-0.326876513317210,-0.182142857142783,-0.323849878934605,-0.183928571428507,-0.318855932203398,0.003087167070255,-0.003571428571449,-0.013075060532668,-0.000000000000000,0.012953995157368,-0.000000000000000,-0.002966101694954,0.003571428571449,2 -8147,8160,8162,8175,-0.180357142857065,-0.328783292978167,-0.182142857142783,-0.323849878934605,-0.178571428571347,-0.320823244552011,-0.180357142857065,-0.315889830508449,0.003087167070244,-0.003571428571436,-0.012953995157368,0.000000000000000,0.012832929782068,0.000000000000000,-0.002966101694944,0.003571428571436,2 -8148,8161,8163,8176,-0.176785714285631,-0.325696125907926,-0.178571428571347,-0.320823244552011,-0.174999999999916,-0.317796610169422,-0.176785714285631,-0.312923728813508,0.003087167070239,-0.003571428571431,-0.012832929782068,-0.000000000000000,0.012711864406768,0.000000000000000,-0.002966101694939,0.003571428571431,2 -8149,8162,8164,8177,-0.173214285714214,-0.322608958837698,-0.174999999999916,-0.317796610169422,-0.171428571428512,-0.314769975786856,-0.173214285714214,-0.309957627118579,0.003087167070216,-0.003571428571404,-0.012711864406768,-0.000000000000000,0.012590799031470,0.000000000000000,-0.002966101694917,0.003571428571404,2 -8150,8163,8165,8178,-0.169642857142808,-0.319521791767481,-0.171428571428512,-0.314769975786856,-0.167857142857105,-0.311743341404286,-0.169642857142809,-0.306991525423661,0.003087167070219,-0.003571428571407,-0.012590799031470,-0.000000000000000,0.012469733656171,0.000000000000000,-0.002966101694920,0.003571428571407,2 -8151,8164,8166,8179,-0.166071428571395,-0.316434624697256,-0.167857142857105,-0.311743341404286,-0.164285714285684,-0.308716707021706,-0.166071428571395,-0.304025423728735,0.003087167070231,-0.003571428571421,-0.012469733656171,-0.000000000000000,0.012348668280871,0.000000000000000,-0.002966101694931,0.003571428571421,2 -8152,8165,8167,8180,-0.162499999999982,-0.313347457627033,-0.164285714285684,-0.308716707021706,-0.160714285714279,-0.305690072639138,-0.162499999999982,-0.301059322033811,0.003087167070217,-0.003571428571405,-0.012348668280871,-0.000000000000000,0.012227602905573,0.000000000000000,-0.002966101694918,0.003571428571405,2 -8153,8166,8168,8181,-0.158928571428564,-0.310260290556805,-0.160714285714279,-0.305690072639138,-0.157142857142850,-0.302663438256550,-0.158928571428565,-0.298093220338883,0.003087167070238,-0.003571428571429,-0.012227602905573,-0.000000000000000,0.012106537530273,0.000000000000000,-0.002966101694938,0.003571428571429,2 -8154,8167,8169,8182,-0.155357142857136,-0.307173123486569,-0.157142857142850,-0.302663438256550,-0.153571428571423,-0.299636803873964,-0.155357142857136,-0.295127118643946,0.003087167070236,-0.003571428571427,-0.012106537530273,-0.000000000000000,0.011985472154973,0.000000000000000,-0.002966101694936,0.003571428571427,2 -8155,8168,8183,10162,-0.151785714285711,-0.304085956416335,-0.153571428571423,-0.299636803873964,-0.151785714285711,-0.292161016949011,-0.150000000000000,-0.296610169491382,0.003087167070232,-0.003571428571423,-0.011985472154973,-0.000000000000000,-0.002966101694933,0.003571428571423,0.011864406779674,-0.000000000000000,2 -2247,8156,8171,8184,-0.200000000000000,-0.325423728813729,-0.198214285714291,-0.330720338983206,-0.196428571428583,-0.322518159806449,-0.198214285714291,-0.317221549636972,-0.013559322033883,-0.000000000000000,0.002966101694928,-0.003571428571417,0.013438256658586,0.000000000000000,-0.002845036319631,0.003571428571417,2 -8157,8170,8172,8185,-0.194642857142864,-0.327754237288270,-0.196428571428583,-0.322518159806449,-0.192857142857145,-0.319612590799153,-0.194642857142864,-0.314376513317333,0.002966101694945,-0.003571428571438,-0.013438256658586,-0.000000000000000,0.013317191283288,0.000000000000000,-0.002845036319647,0.003571428571438,2 -8158,8171,8173,8186,-0.191071428571419,-0.324788135593319,-0.192857142857145,-0.319612590799153,-0.189285714285694,-0.316707021791846,-0.191071428571419,-0.311531476997680,0.002966101694956,-0.003571428571451,-0.013317191283288,-0.000000000000000,0.013196125907990,0.000000000000000,-0.002845036319658,0.003571428571451,2 -8159,8172,8174,8187,-0.187499999999963,-0.321822033898358,-0.189285714285694,-0.316707021791846,-0.185714285714231,-0.313801452784530,-0.187499999999963,-0.308686440678018,0.002966101694966,-0.003571428571462,-0.013196125907990,-0.000000000000000,0.013075060532691,0.000000000000000,-0.002845036319667,0.003571428571462,2 -8160,8173,8175,8188,-0.183928571428507,-0.318855932203398,-0.185714285714231,-0.313801452784530,-0.182142857142783,-0.310895883777225,-0.183928571428507,-0.305841404358356,0.002966101694954,-0.003571428571449,-0.013075060532691,-0.000000000000000,0.012953995157393,0.000000000000000,-0.002845036319656,0.003571428571449,2 -8161,8174,8176,8189,-0.180357142857065,-0.315889830508449,-0.182142857142783,-0.310895883777225,-0.178571428571347,-0.307990314769930,-0.180357142857065,-0.302996368038705,0.002966101694944,-0.003571428571436,-0.012953995157393,-0.000000000000000,0.012832929782095,-0.000000000000000,-0.002845036319646,0.003571428571436,2 -8162,8175,8177,8190,-0.176785714285631,-0.312923728813508,-0.178571428571347,-0.307990314769930,-0.174999999999916,-0.305084745762639,-0.176785714285631,-0.300151331719061,0.002966101694939,-0.003571428571431,-0.012832929782095,0.000000000000000,0.012711864406797,-0.000000000000000,-0.002845036319642,0.003571428571431,2 -8163,8176,8178,8191,-0.173214285714214,-0.309957627118579,-0.174999999999916,-0.305084745762639,-0.171428571428512,-0.302179176755371,-0.173214285714214,-0.297306295399430,0.002966101694917,-0.003571428571404,-0.012711864406797,0.000000000000000,0.012590799031501,0.000000000000000,-0.002845036319620,0.003571428571404,2 -8164,8177,8179,8192,-0.169642857142809,-0.306991525423661,-0.171428571428512,-0.302179176755371,-0.167857142857105,-0.299273607748099,-0.169642857142809,-0.294461259079809,0.002966101694920,-0.003571428571407,-0.012590799031501,-0.000000000000000,0.012469733656204,0.000000000000000,-0.002845036319623,0.003571428571407,2 -8165,8178,8180,8193,-0.166071428571395,-0.304025423728735,-0.167857142857105,-0.299273607748099,-0.164285714285684,-0.296368038740817,-0.166071428571395,-0.291616222760180,0.002966101694931,-0.003571428571421,-0.012469733656204,-0.000000000000000,0.012348668280906,0.000000000000000,-0.002845036319634,0.003571428571421,2 -8166,8179,8181,8194,-0.162499999999982,-0.301059322033811,-0.164285714285684,-0.296368038740817,-0.160714285714279,-0.293462469733547,-0.162499999999982,-0.288771186440553,0.002966101694918,-0.003571428571405,-0.012348668280906,-0.000000000000000,0.012227602905610,0.000000000000000,-0.002845036319621,0.003571428571405,2 -8167,8180,8182,8195,-0.158928571428565,-0.298093220338883,-0.160714285714279,-0.293462469733547,-0.157142857142850,-0.290556900726258,-0.158928571428565,-0.285926150120922,0.002966101694938,-0.003571428571429,-0.012227602905610,-0.000000000000000,0.012106537530312,0.000000000000000,-0.002845036319641,0.003571428571429,2 -8168,8181,8183,8196,-0.155357142857136,-0.295127118643946,-0.157142857142850,-0.290556900726258,-0.153571428571423,-0.287651331718970,-0.155357142857136,-0.283081113801282,0.002966101694936,-0.003571428571427,-0.012106537530312,-0.000000000000000,0.011985472155014,-0.000000000000000,-0.002845036319639,0.003571428571427,2 -8169,8182,8197,10163,-0.151785714285711,-0.292161016949011,-0.153571428571423,-0.287651331718970,-0.151785714285711,-0.280236077481645,-0.150000000000000,-0.284745762711686,0.002966101694933,-0.003571428571423,-0.011985472155014,0.000000000000000,-0.002845036319635,0.003571428571423,0.011864406779717,-0.000000000000000,2 -2248,8170,8185,8198,-0.200000000000000,-0.311864406779851,-0.198214285714291,-0.317221549636972,-0.196428571428583,-0.309079903147870,-0.198214285714291,-0.303722760290749,-0.013559322033872,-0.000000000000000,0.002845036319631,-0.003571428571417,0.013438256658573,-0.000000000000000,-0.002723970944332,0.003571428571417,2 -8171,8184,8186,8199,-0.194642857142864,-0.314376513317333,-0.196428571428583,-0.309079903147870,-0.192857142857145,-0.306295399515872,-0.194642857142864,-0.300998789346410,0.002845036319647,-0.003571428571438,-0.013438256658573,0.000000000000000,0.013317191283273,0.000000000000000,-0.002723970944347,0.003571428571438,2 -8172,8185,8187,8200,-0.191071428571419,-0.311531476997680,-0.192857142857145,-0.306295399515872,-0.189285714285694,-0.303510895883865,-0.191071428571419,-0.298274818402058,0.002845036319658,-0.003571428571451,-0.013317191283273,-0.000000000000000,0.013196125907972,0.000000000000000,-0.002723970944357,0.003571428571451,2 -8173,8186,8188,8201,-0.187499999999963,-0.308686440678018,-0.189285714285694,-0.303510895883865,-0.185714285714232,-0.300726392251849,-0.187499999999963,-0.295550847457696,0.002845036319667,-0.003571428571462,-0.013196125907972,-0.000000000000000,0.013075060532671,0.000000000000000,-0.002723970944366,0.003571428571462,2 -8174,8187,8189,8202,-0.183928571428507,-0.305841404358356,-0.185714285714232,-0.300726392251849,-0.182142857142783,-0.297941888619843,-0.183928571428507,-0.292826876513336,0.002845036319656,-0.003571428571449,-0.013075060532671,-0.000000000000000,0.012953995157370,0.000000000000000,-0.002723970944355,0.003571428571449,2 -8175,8188,8190,8203,-0.180357142857065,-0.302996368038705,-0.182142857142783,-0.297941888619843,-0.178571428571347,-0.295157384987847,-0.180357142857065,-0.290102905568985,0.002845036319646,-0.003571428571436,-0.012953995157370,-0.000000000000000,0.012832929782070,0.000000000000000,-0.002723970944346,0.003571428571436,2 -8176,8189,8191,8204,-0.176785714285631,-0.300151331719061,-0.178571428571347,-0.295157384987847,-0.174999999999916,-0.292372881355855,-0.176785714285631,-0.287378934624641,0.002845036319642,-0.003571428571431,-0.012832929782070,-0.000000000000000,0.012711864406770,0.000000000000000,-0.002723970944342,0.003571428571431,2 -8177,8190,8192,8205,-0.173214285714214,-0.297306295399430,-0.174999999999916,-0.292372881355855,-0.171428571428512,-0.289588377723885,-0.173214285714214,-0.284654963680310,0.002845036319620,-0.003571428571404,-0.012711864406770,-0.000000000000000,0.012590799031471,-0.000000000000000,-0.002723970944321,0.003571428571404,2 -8178,8191,8193,8206,-0.169642857142809,-0.294461259079809,-0.171428571428512,-0.289588377723885,-0.167857142857105,-0.286803874091911,-0.169642857142808,-0.281930992735987,0.002845036319623,-0.003571428571407,-0.012590799031471,0.000000000000000,0.012469733656172,0.000000000000000,-0.002723970944324,0.003571428571407,2 -8179,8192,8194,8207,-0.166071428571395,-0.291616222760180,-0.167857142857105,-0.286803874091911,-0.164285714285684,-0.284019370459927,-0.166071428571395,-0.279207021791658,0.002845036319634,-0.003571428571421,-0.012469733656172,-0.000000000000000,0.012348668280872,0.000000000000000,-0.002723970944334,0.003571428571421,2 -8180,8193,8195,8208,-0.162499999999982,-0.288771186440553,-0.164285714285684,-0.284019370459927,-0.160714285714279,-0.281234866827956,-0.162499999999982,-0.276483050847330,0.002845036319621,-0.003571428571405,-0.012348668280872,-0.000000000000000,0.012227602905573,-0.000000000000000,-0.002723970944322,0.003571428571405,2 -8181,8194,8196,8209,-0.158928571428565,-0.285926150120922,-0.160714285714279,-0.281234866827956,-0.157142857142850,-0.278450363195965,-0.158928571428564,-0.273759079902999,0.002845036319641,-0.003571428571429,-0.012227602905573,0.000000000000000,0.012106537530273,0.000000000000000,-0.002723970944341,0.003571428571429,2 -8182,8195,8197,8210,-0.155357142857136,-0.283081113801282,-0.157142857142850,-0.278450363195965,-0.153571428571423,-0.275665859563976,-0.155357142857136,-0.271035108958659,0.002845036319639,-0.003571428571427,-0.012106537530273,-0.000000000000000,0.011985472154974,0.000000000000000,-0.002723970944339,0.003571428571427,2 -8183,8196,8211,10164,-0.151785714285711,-0.280236077481645,-0.153571428571423,-0.275665859563976,-0.151785714285711,-0.268311138014322,-0.150000000000000,-0.272881355931991,0.002845036319635,-0.003571428571423,-0.011985472154974,-0.000000000000000,-0.002723970944336,0.003571428571423,0.011864406779674,-0.000000000000000,2 -2249,8184,8199,8212,-0.200000000000000,-0.298305084745975,-0.198214285714291,-0.303722760290749,-0.196428571428583,-0.295641646489293,-0.198214285714291,-0.290223970944519,-0.013559322033879,-0.000000000000000,0.002723970944332,-0.003571428571417,0.013438256658581,0.000000000000000,-0.002602905569034,0.003571428571417,2 -8185,8198,8200,8213,-0.194642857142864,-0.300998789346410,-0.196428571428583,-0.295641646489293,-0.192857142857145,-0.292978208232595,-0.194642857142864,-0.287621065375478,0.002723970944347,-0.003571428571438,-0.013438256658581,-0.000000000000000,0.013317191283283,0.000000000000000,-0.002602905569049,0.003571428571438,2 -8186,8199,8201,8214,-0.191071428571419,-0.298274818402058,-0.192857142857145,-0.292978208232595,-0.189285714285694,-0.290314769975887,-0.191071428571419,-0.285018159806424,0.002723970944357,-0.003571428571451,-0.013317191283283,-0.000000000000000,0.013196125907984,-0.000000000000000,-0.002602905569058,0.003571428571451,2 -8187,8200,8202,8215,-0.187499999999963,-0.295550847457696,-0.189285714285694,-0.290314769975887,-0.185714285714232,-0.287651331719171,-0.187499999999963,-0.282415254237362,0.002723970944366,-0.003571428571462,-0.013196125907984,0.000000000000000,0.013075060532684,-0.000000000000000,-0.002602905569066,0.003571428571462,2 -8188,8201,8203,8216,-0.183928571428507,-0.292826876513336,-0.185714285714232,-0.287651331719171,-0.182142857142783,-0.284987893462465,-0.183928571428507,-0.279812348668301,0.002723970944355,-0.003571428571449,-0.013075060532684,0.000000000000000,0.012953995157385,0.000000000000000,-0.002602905569057,0.003571428571449,2 -8189,8202,8204,8217,-0.180357142857065,-0.290102905568985,-0.182142857142783,-0.284987893462465,-0.178571428571347,-0.282324455205769,-0.180357142857065,-0.277209443099249,0.002723970944346,-0.003571428571436,-0.012953995157385,-0.000000000000000,0.012832929782087,0.000000000000000,-0.002602905569047,0.003571428571436,2 -8190,8203,8205,8218,-0.176785714285631,-0.287378934624641,-0.178571428571347,-0.282324455205769,-0.174999999999916,-0.279661016949076,-0.176785714285631,-0.274606537530204,0.002723970944342,-0.003571428571431,-0.012832929782087,-0.000000000000000,0.012711864406788,0.000000000000000,-0.002602905569043,0.003571428571431,2 -8191,8204,8206,8219,-0.173214285714214,-0.284654963680310,-0.174999999999916,-0.279661016949076,-0.171428571428512,-0.276997578692404,-0.173214285714214,-0.272003631961170,0.002723970944321,-0.003571428571404,-0.012711864406788,-0.000000000000000,0.012590799031491,0.000000000000000,-0.002602905569024,0.003571428571404,2 -8192,8205,8207,8220,-0.169642857142808,-0.281930992735987,-0.171428571428512,-0.276997578692404,-0.167857142857105,-0.274334140435729,-0.169642857142808,-0.269400726392145,0.002723970944324,-0.003571428571407,-0.012590799031491,-0.000000000000000,0.012469733656193,0.000000000000000,-0.002602905569026,0.003571428571407,2 -8193,8206,8208,8221,-0.166071428571395,-0.279207021791658,-0.167857142857105,-0.274334140435729,-0.164285714285684,-0.271670702179044,-0.166071428571395,-0.266797820823114,0.002723970944334,-0.003571428571421,-0.012469733656193,-0.000000000000000,0.012348668280895,0.000000000000000,-0.002602905569036,0.003571428571421,2 -8194,8207,8209,8222,-0.162499999999982,-0.276483050847330,-0.164285714285684,-0.271670702179044,-0.160714285714279,-0.269007263922370,-0.162499999999982,-0.264194915254084,0.002723970944322,-0.003571428571405,-0.012348668280895,-0.000000000000000,0.012227602905598,0.000000000000000,-0.002602905569025,0.003571428571405,2 -8195,8208,8210,8223,-0.158928571428564,-0.273759079902999,-0.160714285714279,-0.269007263922370,-0.157142857142850,-0.266343825665679,-0.158928571428564,-0.261592009685050,0.002723970944341,-0.003571428571429,-0.012227602905598,-0.000000000000000,0.012106537530299,0.000000000000000,-0.002602905569042,0.003571428571429,2 -8196,8209,8211,8224,-0.155357142857136,-0.271035108958659,-0.157142857142850,-0.266343825665679,-0.153571428571423,-0.263680387408989,-0.155357142857136,-0.258989104116009,0.002723970944339,-0.003571428571427,-0.012106537530299,-0.000000000000000,0.011985472155001,0.000000000000000,-0.002602905569041,0.003571428571427,2 -8197,8210,8225,10165,-0.151785714285711,-0.268311138014322,-0.153571428571423,-0.263680387408989,-0.151785714285711,-0.256386198546970,-0.150000000000000,-0.261016949152303,0.002723970944336,-0.003571428571423,-0.011985472155001,-0.000000000000000,-0.002602905569038,0.003571428571423,0.011864406779703,-0.000000000000000,2 -2250,8198,8213,8226,-0.200000000000000,-0.284745762712106,-0.198214285714291,-0.290223970944519,-0.196428571428583,-0.282203389830721,-0.198214285714291,-0.276725181598308,-0.013559322033860,-0.000000000000000,0.002602905569034,-0.003571428571417,0.013438256658562,0.000000000000000,-0.002481840193736,0.003571428571417,2 -8199,8212,8214,8227,-0.194642857142864,-0.287621065375478,-0.196428571428583,-0.282203389830721,-0.192857142857145,-0.279661016949321,-0.194642857142864,-0.274243341404565,0.002602905569049,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.002481840193750,0.003571428571438,2 -8200,8213,8215,8228,-0.191071428571419,-0.285018159806424,-0.192857142857145,-0.279661016949321,-0.189285714285694,-0.277118644067913,-0.191071428571419,-0.271761501210810,0.002602905569058,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907965,0.000000000000000,-0.002481840193759,0.003571428571451,2 -8201,8214,8216,8229,-0.187499999999963,-0.282415254237362,-0.189285714285694,-0.277118644067913,-0.185714285714231,-0.274576271186496,-0.187499999999963,-0.269279661017047,0.002602905569066,-0.003571428571462,-0.013196125907965,-0.000000000000000,0.013075060532666,0.000000000000000,-0.002481840193767,0.003571428571462,2 -8202,8215,8217,8230,-0.183928571428507,-0.279812348668301,-0.185714285714231,-0.274576271186496,-0.182142857142783,-0.272033898305089,-0.183928571428507,-0.266797820823284,0.002602905569057,-0.003571428571449,-0.013075060532666,-0.000000000000000,0.012953995157367,-0.000000000000000,-0.002481840193758,0.003571428571449,2 -8203,8216,8218,8231,-0.180357142857065,-0.277209443099249,-0.182142857142783,-0.272033898305089,-0.178571428571347,-0.269491525423691,-0.180357142857065,-0.264315980629531,0.002602905569047,-0.003571428571436,-0.012953995157367,0.000000000000000,0.012832929782069,0.000000000000000,-0.002481840193749,0.003571428571436,2 -8204,8217,8219,8232,-0.176785714285631,-0.274606537530204,-0.178571428571347,-0.269491525423691,-0.174999999999916,-0.266949152542296,-0.176785714285631,-0.261834140435784,0.002602905569043,-0.003571428571431,-0.012832929782069,-0.000000000000000,0.012711864406771,0.000000000000000,-0.002481840193745,0.003571428571431,2 -8205,8218,8220,8233,-0.173214285714214,-0.272003631961170,-0.174999999999916,-0.266949152542296,-0.171428571428512,-0.264406779660921,-0.173214285714214,-0.259352300242048,0.002602905569024,-0.003571428571404,-0.012711864406771,-0.000000000000000,0.012590799031474,0.000000000000000,-0.002481840193727,0.003571428571404,2 -8206,8219,8221,8234,-0.169642857142808,-0.269400726392145,-0.171428571428512,-0.264406779660921,-0.167857142857105,-0.261864406779544,-0.169642857142808,-0.256870460048320,0.002602905569026,-0.003571428571407,-0.012590799031474,-0.000000000000000,0.012469733656176,0.000000000000000,-0.002481840193729,0.003571428571407,2 -8207,8220,8222,8235,-0.166071428571395,-0.266797820823114,-0.167857142857105,-0.261864406779544,-0.164285714285684,-0.259322033898157,-0.166071428571395,-0.254388619854587,0.002602905569036,-0.003571428571421,-0.012469733656176,-0.000000000000000,0.012348668280879,0.000000000000000,-0.002481840193739,0.003571428571421,2 -8208,8221,8223,8236,-0.162499999999982,-0.264194915254084,-0.164285714285684,-0.259322033898157,-0.160714285714279,-0.256779661016781,-0.162499999999982,-0.251906779660854,0.002602905569025,-0.003571428571405,-0.012348668280879,-0.000000000000000,0.012227602905581,0.000000000000000,-0.002481840193727,0.003571428571405,2 -8209,8222,8224,8237,-0.158928571428564,-0.261592009685050,-0.160714285714279,-0.256779661016781,-0.157142857142850,-0.254237288135387,-0.158928571428564,-0.249424939467118,0.002602905569042,-0.003571428571429,-0.012227602905581,-0.000000000000000,0.012106537530284,0.000000000000000,-0.002481840193744,0.003571428571429,2 -8210,8223,8225,8238,-0.155357142857136,-0.258989104116009,-0.157142857142850,-0.254237288135387,-0.153571428571423,-0.251694915253996,-0.155357142857136,-0.246943099273374,0.002602905569041,-0.003571428571427,-0.012106537530284,-0.000000000000000,0.011985472154985,0.000000000000000,-0.002481840193742,0.003571428571427,2 -8211,8224,8239,10166,-0.151785714285711,-0.256386198546970,-0.153571428571423,-0.251694915253996,-0.151785714285711,-0.244461259079633,-0.150000000000000,-0.249152542372607,0.002602905569038,-0.003571428571423,-0.011985472154985,-0.000000000000000,-0.002481840193740,0.003571428571423,0.011864406779688,-0.000000000000000,2 -2251,8212,8227,8240,-0.200000000000000,-0.271186440678246,-0.198214285714291,-0.276725181598308,-0.196428571428583,-0.268765133172159,-0.198214285714291,-0.263226392252097,-0.013559322033860,-0.000000000000000,0.002481840193736,-0.003571428571417,0.013438256658562,0.000000000000000,-0.002360774818438,0.003571428571417,2 -8213,8226,8228,8241,-0.194642857142864,-0.274243341404565,-0.196428571428583,-0.268765133172159,-0.192857142857145,-0.266343825666058,-0.194642857142864,-0.260865617433652,0.002481840193750,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.002360774818452,0.003571428571438,2 -8214,8227,8229,8242,-0.191071428571419,-0.271761501210810,-0.192857142857145,-0.266343825666058,-0.189285714285694,-0.263922518159948,-0.191071428571419,-0.258504842615195,0.002481840193759,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907965,-0.000000000000000,-0.002360774818461,0.003571428571451,2 -8215,8228,8230,8243,-0.187499999999963,-0.269279661017047,-0.189285714285694,-0.263922518159948,-0.185714285714231,-0.261501210653830,-0.187499999999963,-0.256144067796731,0.002481840193767,-0.003571428571462,-0.013196125907965,0.000000000000000,0.013075060532666,0.000000000000000,-0.002360774818468,0.003571428571462,2 -8216,8229,8231,8244,-0.183928571428507,-0.266797820823284,-0.185714285714231,-0.261501210653830,-0.182142857142783,-0.259079903147722,-0.183928571428507,-0.253783292978267,0.002481840193758,-0.003571428571449,-0.013075060532666,-0.000000000000000,0.012953995157368,0.000000000000000,-0.002360774818459,0.003571428571449,2 -8217,8230,8232,8245,-0.180357142857065,-0.264315980629531,-0.182142857142783,-0.259079903147722,-0.178571428571347,-0.256658595641622,-0.180357142857065,-0.251422518159813,0.002481840193749,-0.003571428571436,-0.012953995157368,-0.000000000000000,0.012832929782069,-0.000000000000000,-0.002360774818451,0.003571428571436,2 -8218,8231,8233,8246,-0.176785714285631,-0.261834140435784,-0.178571428571347,-0.256658595641622,-0.174999999999916,-0.254237288135525,-0.176785714285631,-0.249061743341363,0.002481840193745,-0.003571428571431,-0.012832929782069,0.000000000000000,0.012711864406771,-0.000000000000000,-0.002360774818447,0.003571428571431,2 -8219,8232,8234,8247,-0.173214285714214,-0.259352300242048,-0.174999999999916,-0.254237288135525,-0.171428571428512,-0.251815980629447,-0.173214285714214,-0.246700968522925,0.002481840193727,-0.003571428571404,-0.012711864406771,0.000000000000000,0.012590799031474,0.000000000000000,-0.002360774818429,0.003571428571404,2 -8220,8233,8235,8248,-0.169642857142808,-0.256870460048320,-0.171428571428512,-0.251815980629447,-0.167857142857105,-0.249394673123367,-0.169642857142808,-0.244340193704495,0.002481840193729,-0.003571428571407,-0.012590799031474,-0.000000000000000,0.012469733656177,0.000000000000000,-0.002360774818432,0.003571428571407,2 -8221,8234,8236,8249,-0.166071428571395,-0.254388619854587,-0.167857142857105,-0.249394673123367,-0.164285714285684,-0.246973365617278,-0.166071428571395,-0.241979418886058,0.002481840193739,-0.003571428571421,-0.012469733656177,-0.000000000000000,0.012348668280879,0.000000000000000,-0.002360774818441,0.003571428571421,2 -8222,8235,8237,8250,-0.162499999999982,-0.251906779660854,-0.164285714285684,-0.246973365617278,-0.160714285714279,-0.244552058111199,-0.162499999999982,-0.239618644067623,0.002481840193727,-0.003571428571405,-0.012348668280879,-0.000000000000000,0.012227602905582,0.000000000000000,-0.002360774818430,0.003571428571405,2 -8223,8236,8238,8251,-0.158928571428564,-0.249424939467118,-0.160714285714279,-0.244552058111199,-0.157142857142850,-0.242130750605104,-0.158928571428564,-0.237257869249185,0.002481840193744,-0.003571428571429,-0.012227602905582,-0.000000000000000,0.012106537530284,0.000000000000000,-0.002360774818446,0.003571428571429,2 -8224,8237,8239,8252,-0.155357142857136,-0.246943099273374,-0.157142857142850,-0.242130750605104,-0.153571428571423,-0.239709443099010,-0.155357142857136,-0.234897094430739,0.002481840193742,-0.003571428571427,-0.012106537530284,-0.000000000000000,0.011985472154987,0.000000000000000,-0.002360774818445,0.003571428571427,2 -8225,8238,8253,10167,-0.151785714285711,-0.244461259079633,-0.153571428571423,-0.239709443099010,-0.151785714285711,-0.232536319612296,-0.150000000000000,-0.237288135592919,0.002481840193740,-0.003571428571423,-0.011985472154987,-0.000000000000000,-0.002360774818442,0.003571428571423,0.011864406779689,-0.000000000000000,2 -2252,8226,8241,8254,-0.200000000000000,-0.257627118644386,-0.198214285714291,-0.263226392252097,-0.196428571428583,-0.255326876513596,-0.198214285714291,-0.249727602905885,-0.013559322033860,-0.000000000000000,0.002360774818438,-0.003571428571417,0.013438256658563,0.000000000000000,-0.002239709443142,0.003571428571417,2 -8227,8240,8242,8255,-0.194642857142864,-0.260865617433652,-0.196428571428583,-0.255326876513596,-0.192857142857145,-0.253026634382793,-0.194642857142864,-0.247487893462737,0.002360774818452,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283266,0.000000000000000,-0.002239709443155,0.003571428571438,2 -8228,8241,8243,8256,-0.191071428571419,-0.258504842615195,-0.192857142857145,-0.253026634382793,-0.189285714285694,-0.250726392251981,-0.191071428571419,-0.245248184019578,0.002360774818461,-0.003571428571451,-0.013317191283266,-0.000000000000000,0.013196125907968,0.000000000000000,-0.002239709443163,0.003571428571451,2 -8229,8242,8244,8257,-0.187499999999963,-0.256144067796731,-0.189285714285694,-0.250726392251981,-0.185714285714231,-0.248426150121162,-0.187499999999963,-0.243008474576412,0.002360774818468,-0.003571428571462,-0.013196125907968,-0.000000000000000,0.013075060532670,0.000000000000000,-0.002239709443170,0.003571428571462,2 -8230,8243,8245,8258,-0.183928571428507,-0.253783292978267,-0.185714285714231,-0.248426150121162,-0.182142857142783,-0.246125907990352,-0.183928571428507,-0.240768765133246,0.002360774818459,-0.003571428571449,-0.013075060532670,-0.000000000000000,0.012953995157372,0.000000000000000,-0.002239709443161,0.003571428571449,2 -8231,8244,8246,8259,-0.180357142857065,-0.251422518159813,-0.182142857142783,-0.246125907990352,-0.178571428571347,-0.243825665859550,-0.180357142857065,-0.238529055690089,0.002360774818451,-0.003571428571436,-0.012953995157372,-0.000000000000000,0.012832929782075,0.000000000000000,-0.002239709443154,0.003571428571436,2 -8232,8245,8247,8260,-0.176785714285631,-0.249061743341363,-0.178571428571347,-0.243825665859550,-0.174999999999916,-0.241525423728751,-0.176785714285631,-0.236289346246937,0.002360774818447,-0.003571428571431,-0.012832929782075,-0.000000000000000,0.012711864406778,0.000000000000000,-0.002239709443150,0.003571428571431,2 -8233,8246,8248,8261,-0.173214285714214,-0.246700968522925,-0.174999999999916,-0.241525423728751,-0.171428571428512,-0.239225181597969,-0.173214285714214,-0.234049636803795,0.002360774818429,-0.003571428571404,-0.012711864406778,-0.000000000000000,0.012590799031482,0.000000000000000,-0.002239709443133,0.003571428571404,2 -8234,8247,8249,8262,-0.169642857142808,-0.244340193704495,-0.171428571428512,-0.239225181597969,-0.167857142857105,-0.236924939467186,-0.169642857142809,-0.231809927360661,0.002360774818432,-0.003571428571407,-0.012590799031482,-0.000000000000000,0.012469733656186,0.000000000000000,-0.002239709443136,0.003571428571407,2 -8235,8248,8250,8263,-0.166071428571395,-0.241979418886058,-0.167857142857105,-0.236924939467186,-0.164285714285684,-0.234624697336393,-0.166071428571395,-0.229570217917521,0.002360774818441,-0.003571428571421,-0.012469733656186,-0.000000000000000,0.012348668280889,0.000000000000000,-0.002239709443144,0.003571428571421,2 -8236,8249,8251,8264,-0.162499999999982,-0.239618644067623,-0.164285714285684,-0.234624697336393,-0.160714285714279,-0.232324455205611,-0.162499999999982,-0.227330508474382,0.002360774818430,-0.003571428571405,-0.012348668280889,-0.000000000000000,0.012227602905593,0.000000000000000,-0.002239709443134,0.003571428571405,2 -8237,8250,8252,8265,-0.158928571428564,-0.237257869249185,-0.160714285714279,-0.232324455205611,-0.157142857142850,-0.230024213074814,-0.158928571428564,-0.225090799031240,0.002360774818446,-0.003571428571429,-0.012227602905593,-0.000000000000000,0.012106537530296,0.000000000000000,-0.002239709443149,0.003571428571429,2 -8238,8251,8253,8266,-0.155357142857136,-0.234897094430739,-0.157142857142850,-0.230024213074814,-0.153571428571423,-0.227723970944017,-0.155357142857136,-0.222851089588092,0.002360774818445,-0.003571428571427,-0.012106537530296,-0.000000000000000,0.011985472154999,-0.000000000000000,-0.002239709443148,0.003571428571427,2 -8239,8252,8267,10168,-0.151785714285711,-0.232536319612296,-0.153571428571423,-0.227723970944017,-0.151785714285711,-0.220611380144945,-0.150000000000000,-0.225423728813224,0.002360774818442,-0.003571428571423,-0.011985472154999,0.000000000000000,-0.002239709443145,0.003571428571423,0.011864406779702,-0.000000000000000,2 -2253,8240,8255,8268,-0.200000000000000,-0.244067796610526,-0.198214285714291,-0.249727602905885,-0.196428571428583,-0.241888619855034,-0.198214285714291,-0.236228813559675,-0.013559322033860,-0.000000000000000,0.002239709443142,-0.003571428571417,0.013438256658561,-0.000000000000000,-0.002118644067843,0.003571428571417,2 -8241,8254,8256,8269,-0.194642857142864,-0.247487893462737,-0.196428571428583,-0.241888619855034,-0.192857142857145,-0.239709443099529,-0.194642857142864,-0.234110169491826,0.002239709443155,-0.003571428571438,-0.013438256658561,0.000000000000000,0.013317191283262,0.000000000000000,-0.002118644067855,0.003571428571438,2 -8242,8255,8257,8270,-0.191071428571419,-0.245248184019578,-0.192857142857145,-0.239709443099529,-0.189285714285694,-0.237530266344016,-0.191071428571419,-0.231991525423967,0.002239709443163,-0.003571428571451,-0.013317191283262,-0.000000000000000,0.013196125907962,0.000000000000000,-0.002118644067863,0.003571428571451,2 -8243,8256,8258,8271,-0.187499999999963,-0.243008474576412,-0.189285714285694,-0.237530266344016,-0.185714285714231,-0.235351089588496,-0.187499999999963,-0.229872881356100,0.002239709443170,-0.003571428571462,-0.013196125907962,-0.000000000000000,0.013075060532662,0.000000000000000,-0.002118644067870,0.003571428571462,2 -8244,8257,8259,8272,-0.183928571428507,-0.240768765133246,-0.185714285714231,-0.235351089588496,-0.182142857142783,-0.233171912832984,-0.183928571428507,-0.227754237288234,0.002239709443161,-0.003571428571449,-0.013075060532662,-0.000000000000000,0.012953995157363,-0.000000000000000,-0.002118644067862,0.003571428571449,2 -8245,8258,8260,8273,-0.180357142857065,-0.238529055690089,-0.182142857142783,-0.233171912832984,-0.178571428571347,-0.230992736077480,-0.180357142857065,-0.225635593220376,0.002239709443154,-0.003571428571436,-0.012953995157363,0.000000000000000,0.012832929782063,-0.000000000000000,-0.002118644067854,0.003571428571436,2 -8246,8259,8261,8274,-0.176785714285631,-0.236289346246937,-0.178571428571347,-0.230992736077480,-0.174999999999916,-0.228813559321980,-0.176785714285631,-0.223516949152523,0.002239709443150,-0.003571428571431,-0.012832929782063,0.000000000000000,0.012711864406764,0.000000000000000,-0.002118644067851,0.003571428571431,2 -8247,8260,8262,8275,-0.173214285714214,-0.234049636803795,-0.174999999999916,-0.228813559321980,-0.171428571428512,-0.226634382566495,-0.173214285714214,-0.221398305084680,0.002239709443133,-0.003571428571404,-0.012711864406764,-0.000000000000000,0.012590799031466,-0.000000000000000,-0.002118644067835,0.003571428571404,2 -8248,8261,8263,8276,-0.169642857142809,-0.231809927360661,-0.171428571428512,-0.226634382566495,-0.167857142857105,-0.224455205811009,-0.169642857142808,-0.219279661016844,0.002239709443136,-0.003571428571407,-0.012590799031466,0.000000000000000,0.012469733656168,0.000000000000000,-0.002118644067837,0.003571428571407,2 -8249,8262,8264,8277,-0.166071428571395,-0.229570217917521,-0.167857142857105,-0.224455205811009,-0.164285714285684,-0.222276029055514,-0.166071428571395,-0.217161016949002,0.002239709443144,-0.003571428571421,-0.012469733656168,-0.000000000000000,0.012348668280869,0.000000000000000,-0.002118644067845,0.003571428571421,2 -8250,8263,8265,8278,-0.162499999999982,-0.227330508474382,-0.164285714285684,-0.222276029055514,-0.160714285714279,-0.220096852300029,-0.162499999999982,-0.215042372881162,0.002239709443134,-0.003571428571405,-0.012348668280869,-0.000000000000000,0.012227602905571,0.000000000000000,-0.002118644067836,0.003571428571405,2 -8251,8264,8266,8279,-0.158928571428564,-0.225090799031240,-0.160714285714279,-0.220096852300029,-0.157142857142850,-0.217917675544530,-0.158928571428564,-0.212923728813319,0.002239709443149,-0.003571428571429,-0.012227602905571,-0.000000000000000,0.012106537530272,0.000000000000000,-0.002118644067850,0.003571428571429,2 -8252,8265,8267,8280,-0.155357142857136,-0.222851089588092,-0.157142857142850,-0.217917675544530,-0.153571428571423,-0.215738498789031,-0.155357142857136,-0.210805084745469,0.002239709443148,-0.003571428571427,-0.012106537530272,-0.000000000000000,0.011985472154973,0.000000000000000,-0.002118644067849,0.003571428571427,2 -8253,8266,8281,10169,-0.151785714285711,-0.220611380144945,-0.153571428571423,-0.215738498789031,-0.151785714285711,-0.208686440677621,-0.150000000000000,-0.213559322033535,0.002239709443145,-0.003571428571423,-0.011985472154973,-0.000000000000000,-0.002118644067846,0.003571428571423,0.011864406779674,-0.000000000000000,2 -2254,8254,8269,8282,-0.200000000000000,-0.230508474576667,-0.198214285714291,-0.236228813559675,-0.196428571428583,-0.228450363196471,-0.198214285714291,-0.222730024213463,-0.013559322033860,-0.000000000000000,0.002118644067843,-0.003571428571417,0.013438256658564,0.000000000000000,-0.001997578692548,0.003571428571417,2 -8255,8268,8270,8283,-0.194642857142864,-0.234110169491826,-0.196428571428583,-0.228450363196471,-0.192857142857145,-0.226392251816264,-0.194642857142864,-0.220732445520910,0.002118644067855,-0.003571428571438,-0.013438256658564,-0.000000000000000,0.013317191283268,0.000000000000000,-0.001997578692559,0.003571428571438,2 -8256,8269,8271,8284,-0.191071428571419,-0.231991525423967,-0.192857142857145,-0.226392251816264,-0.189285714285694,-0.224334140436049,-0.191071428571419,-0.218734866828347,0.002118644067863,-0.003571428571451,-0.013317191283268,-0.000000000000000,0.013196125907971,0.000000000000000,-0.001997578692566,0.003571428571451,2 -8257,8270,8272,8285,-0.187499999999963,-0.229872881356100,-0.189285714285694,-0.224334140436049,-0.185714285714231,-0.222276029055828,-0.187499999999963,-0.216737288135777,0.002118644067870,-0.003571428571462,-0.013196125907971,-0.000000000000000,0.013075060532674,0.000000000000000,-0.001997578692573,0.003571428571462,2 -8258,8271,8273,8286,-0.183928571428507,-0.227754237288234,-0.185714285714231,-0.222276029055828,-0.182142857142783,-0.220217917675614,-0.183928571428507,-0.214739709443208,0.002118644067862,-0.003571428571449,-0.013075060532674,-0.000000000000000,0.012953995157377,0.000000000000000,-0.001997578692565,0.003571428571449,2 -8259,8272,8274,8287,-0.180357142857065,-0.225635593220376,-0.182142857142783,-0.220217917675614,-0.178571428571347,-0.218159806295408,-0.180357142857065,-0.212742130750647,0.002118644067854,-0.003571428571436,-0.012953995157377,-0.000000000000000,0.012832929782081,0.000000000000000,-0.001997578692558,0.003571428571436,2 -8260,8273,8275,8288,-0.176785714285631,-0.223516949152523,-0.178571428571347,-0.218159806295408,-0.174999999999916,-0.216101694915205,-0.176785714285631,-0.210744552058090,0.002118644067851,-0.003571428571431,-0.012832929782081,-0.000000000000000,0.012711864406785,-0.000000000000000,-0.001997578692555,0.003571428571431,2 -8261,8274,8276,8289,-0.173214285714214,-0.221398305084680,-0.174999999999916,-0.216101694915205,-0.171428571428512,-0.214043583535017,-0.173214285714214,-0.208746973365542,0.002118644067835,-0.003571428571404,-0.012711864406785,0.000000000000000,0.012590799031490,0.000000000000000,-0.001997578692540,0.003571428571404,2 -8262,8275,8277,8290,-0.169642857142808,-0.219279661016844,-0.171428571428512,-0.214043583535017,-0.167857142857105,-0.211985472154828,-0.169642857142808,-0.206749394673001,0.002118644067837,-0.003571428571407,-0.012590799031490,-0.000000000000000,0.012469733656195,0.000000000000000,-0.001997578692542,0.003571428571407,2 -8263,8276,8278,8291,-0.166071428571395,-0.217161016949002,-0.167857142857105,-0.211985472154828,-0.164285714285684,-0.209927360774630,-0.166071428571395,-0.204751815980455,0.002118644067845,-0.003571428571421,-0.012469733656195,-0.000000000000000,0.012348668280899,0.000000000000000,-0.001997578692549,0.003571428571421,2 -8264,8277,8279,8292,-0.162499999999982,-0.215042372881162,-0.164285714285684,-0.209927360774630,-0.160714285714279,-0.207869249394442,-0.162499999999982,-0.202754237287910,0.002118644067836,-0.003571428571405,-0.012348668280899,-0.000000000000000,0.012227602905604,0.000000000000000,-0.001997578692541,0.003571428571405,2 -8265,8278,8280,8293,-0.158928571428564,-0.212923728813319,-0.160714285714279,-0.207869249394442,-0.157142857142850,-0.205811138014240,-0.158928571428564,-0.200756658595363,0.002118644067850,-0.003571428571429,-0.012227602905604,-0.000000000000000,0.012106537530308,0.000000000000000,-0.001997578692554,0.003571428571429,2 -8266,8279,8281,8294,-0.155357142857136,-0.210805084745469,-0.157142857142850,-0.205811138014240,-0.153571428571423,-0.203753026634039,-0.155357142857136,-0.198759079902809,0.002118644067849,-0.003571428571427,-0.012106537530308,-0.000000000000000,0.011985472155012,0.000000000000000,-0.001997578692553,0.003571428571427,2 -8267,8280,8295,10170,-0.151785714285711,-0.208686440677621,-0.153571428571423,-0.203753026634039,-0.151785714285711,-0.196761501210257,-0.150000000000000,-0.201694915253840,0.002118644067846,-0.003571428571423,-0.011985472155012,-0.000000000000000,-0.001997578692551,0.003571428571423,0.011864406779716,-0.000000000000000,2 -2255,8268,8283,8296,-0.200000000000000,-0.216949152542807,-0.198214285714291,-0.222730024213463,-0.196428571428583,-0.215012106537909,-0.198214285714291,-0.209231234867253,-0.013559322033860,-0.000000000000000,0.001997578692548,-0.003571428571417,0.013438256658561,0.000000000000000,-0.001876513317249,0.003571428571417,2 -8269,8282,8284,8297,-0.194642857142864,-0.220732445520910,-0.196428571428583,-0.215012106537909,-0.192857142857145,-0.213075060532999,-0.194642857142864,-0.207354721549998,0.001997578692559,-0.003571428571438,-0.013438256658561,-0.000000000000000,0.013317191283262,0.000000000000000,-0.001876513317260,0.003571428571438,2 -8270,8283,8285,8298,-0.191071428571419,-0.218734866828347,-0.192857142857145,-0.213075060532999,-0.189285714285694,-0.211138014528083,-0.191071428571419,-0.205478208232735,0.001997578692566,-0.003571428571451,-0.013317191283262,-0.000000000000000,0.013196125907962,-0.000000000000000,-0.001876513317267,0.003571428571451,2 -8271,8284,8286,8299,-0.187499999999963,-0.216737288135777,-0.189285714285694,-0.211138014528083,-0.185714285714231,-0.209200968523160,-0.187499999999963,-0.203601694915465,0.001997578692573,-0.003571428571462,-0.013196125907962,0.000000000000000,0.013075060532662,0.000000000000000,-0.001876513317273,0.003571428571462,2 -8272,8285,8287,8300,-0.183928571428507,-0.214739709443208,-0.185714285714231,-0.209200968523160,-0.182142857142783,-0.207263922518245,-0.183928571428507,-0.201725181598196,0.001997578692565,-0.003571428571449,-0.013075060532662,-0.000000000000000,0.012953995157362,0.000000000000000,-0.001876513317266,0.003571428571449,2 -8273,8286,8288,8301,-0.180357142857065,-0.212742130750647,-0.182142857142783,-0.207263922518245,-0.178571428571347,-0.205326876513336,-0.180357142857065,-0.199848668280934,0.001997578692558,-0.003571428571436,-0.012953995157362,-0.000000000000000,0.012832929782063,0.000000000000000,-0.001876513317259,0.003571428571436,2 -8274,8287,8289,8302,-0.176785714285631,-0.210744552058090,-0.178571428571347,-0.205326876513336,-0.174999999999916,-0.203389830508431,-0.176785714285631,-0.197972154963677,0.001997578692555,-0.003571428571431,-0.012832929782063,-0.000000000000000,0.012711864406764,0.000000000000000,-0.001876513317256,0.003571428571431,2 -8275,8288,8290,8303,-0.173214285714214,-0.208746973365542,-0.174999999999916,-0.203389830508431,-0.171428571428512,-0.201452784503539,-0.173214285714214,-0.196095641646428,0.001997578692540,-0.003571428571404,-0.012711864406764,-0.000000000000000,0.012590799031466,0.000000000000000,-0.001876513317242,0.003571428571404,2 -8276,8289,8291,8304,-0.169642857142808,-0.206749394673001,-0.171428571428512,-0.201452784503539,-0.167857142857105,-0.199515738498647,-0.169642857142808,-0.194219128329185,0.001997578692542,-0.003571428571407,-0.012590799031466,-0.000000000000000,0.012469733656167,0.000000000000000,-0.001876513317244,0.003571428571407,2 -8277,8290,8292,8305,-0.166071428571395,-0.204751815980455,-0.167857142857105,-0.199515738498647,-0.164285714285684,-0.197578692493746,-0.166071428571395,-0.192342615011937,0.001997578692549,-0.003571428571421,-0.012469733656167,-0.000000000000000,0.012348668280869,0.000000000000000,-0.001876513317251,0.003571428571421,2 -8278,8291,8293,8306,-0.162499999999982,-0.202754237287910,-0.164285714285684,-0.197578692493746,-0.160714285714279,-0.195641646488855,-0.162499999999982,-0.190466101694691,0.001997578692541,-0.003571428571405,-0.012348668280869,-0.000000000000000,0.012227602905570,0.000000000000000,-0.001876513317242,0.003571428571405,2 -8279,8292,8294,8307,-0.158928571428564,-0.200756658595363,-0.160714285714279,-0.195641646488855,-0.157142857142850,-0.193704600483950,-0.158928571428564,-0.188589588377442,0.001997578692554,-0.003571428571429,-0.012227602905570,-0.000000000000000,0.012106537530271,0.000000000000000,-0.001876513317255,0.003571428571429,2 -8280,8293,8295,8308,-0.155357142857136,-0.198759079902809,-0.157142857142850,-0.193704600483950,-0.153571428571423,-0.191767554479046,-0.155357142857136,-0.186713075060187,0.001997578692553,-0.003571428571427,-0.012106537530271,-0.000000000000000,0.011985472154972,0.000000000000000,-0.001876513317254,0.003571428571427,2 -8281,8294,8309,10171,-0.151785714285711,-0.196761501210257,-0.153571428571423,-0.191767554479046,-0.151785714285711,-0.184836561742934,-0.150000000000000,-0.189830508474145,0.001997578692551,-0.003571428571423,-0.011985472154972,-0.000000000000000,-0.001876513317252,0.003571428571423,0.011864406779674,-0.000000000000000,2 -2256,8282,8297,8310,-0.200000000000000,-0.203389830508947,-0.198214285714291,-0.209231234867253,-0.196428571428583,-0.201573849879346,-0.198214285714291,-0.195732445521041,-0.013559322033860,-0.000000000000000,0.001876513317249,-0.003571428571417,0.013438256658563,0.000000000000000,-0.001755447941953,0.003571428571417,2 -8283,8296,8298,8311,-0.194642857142864,-0.207354721549998,-0.196428571428583,-0.201573849879346,-0.192857142857145,-0.199757869249735,-0.194642857142864,-0.193976997579083,0.001876513317260,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283267,0.000000000000000,-0.001755447941963,0.003571428571438,2 -8284,8297,8299,8312,-0.191071428571419,-0.205478208232735,-0.192857142857145,-0.199757869249735,-0.189285714285694,-0.197941888620117,-0.191071428571419,-0.192221549637117,0.001876513317267,-0.003571428571451,-0.013317191283267,-0.000000000000000,0.013196125907969,0.000000000000000,-0.001755447941969,0.003571428571451,2 -8285,8298,8300,8313,-0.187499999999963,-0.203601694915465,-0.189285714285694,-0.197941888620117,-0.185714285714231,-0.196125907990493,-0.187499999999963,-0.190466101695145,0.001876513317273,-0.003571428571462,-0.013196125907969,-0.000000000000000,0.013075060532671,0.000000000000000,-0.001755447941975,0.003571428571462,2 -8286,8299,8301,8314,-0.183928571428507,-0.201725181598196,-0.185714285714231,-0.196125907990493,-0.182142857142783,-0.194309927360876,-0.183928571428507,-0.188710653753174,0.001876513317266,-0.003571428571449,-0.013075060532671,-0.000000000000000,0.012953995157374,0.000000000000000,-0.001755447941968,0.003571428571449,2 -8287,8300,8302,8315,-0.180357142857065,-0.199848668280934,-0.182142857142783,-0.194309927360876,-0.178571428571347,-0.192493946731266,-0.180357142857065,-0.186955205811208,0.001876513317259,-0.003571428571436,-0.012953995157374,-0.000000000000000,0.012832929782077,-0.000000000000000,-0.001755447941962,0.003571428571436,2 -8288,8301,8303,8316,-0.176785714285631,-0.197972154963677,-0.178571428571347,-0.192493946731266,-0.174999999999916,-0.190677966101658,-0.176785714285631,-0.185199757869248,0.001876513317256,-0.003571428571431,-0.012832929782077,0.000000000000000,0.012711864406781,0.000000000000000,-0.001755447941960,0.003571428571431,2 -8289,8302,8304,8317,-0.173214285714214,-0.196095641646428,-0.174999999999916,-0.190677966101658,-0.171428571428512,-0.188861985472064,-0.173214285714214,-0.183444309927295,0.001876513317242,-0.003571428571404,-0.012711864406781,-0.000000000000000,0.012590799031485,0.000000000000000,-0.001755447941946,0.003571428571404,2 -8290,8303,8305,8318,-0.169642857142808,-0.194219128329185,-0.171428571428512,-0.188861985472064,-0.167857142857105,-0.187046004842468,-0.169642857142808,-0.181688861985348,0.001876513317244,-0.003571428571407,-0.012590799031485,-0.000000000000000,0.012469733656189,0.000000000000000,-0.001755447941948,0.003571428571407,2 -8291,8304,8306,8319,-0.166071428571395,-0.192342615011937,-0.167857142857105,-0.187046004842468,-0.164285714285684,-0.185230024212866,-0.166071428571395,-0.179933414043397,0.001876513317251,-0.003571428571421,-0.012469733656189,-0.000000000000000,0.012348668280892,0.000000000000000,-0.001755447941954,0.003571428571421,2 -8292,8305,8307,8320,-0.162499999999982,-0.190466101694691,-0.164285714285684,-0.185230024212866,-0.160714285714279,-0.183414043583271,-0.162499999999982,-0.178177966101446,0.001876513317242,-0.003571428571405,-0.012348668280892,-0.000000000000000,0.012227602905597,0.000000000000000,-0.001755447941947,0.003571428571405,2 -8293,8306,8308,8321,-0.158928571428564,-0.188589588377442,-0.160714285714279,-0.183414043583271,-0.157142857142850,-0.181598062953664,-0.158928571428564,-0.176422518159494,0.001876513317255,-0.003571428571429,-0.012227602905597,-0.000000000000000,0.012106537530300,0.000000000000000,-0.001755447941959,0.003571428571429,2 -8294,8307,8309,8322,-0.155357142857136,-0.186713075060187,-0.157142857142850,-0.181598062953664,-0.153571428571423,-0.179782082324058,-0.155357142857136,-0.174667070217535,0.001876513317254,-0.003571428571427,-0.012106537530300,-0.000000000000000,0.011985472155004,0.000000000000000,-0.001755447941958,0.003571428571427,2 -8295,8308,8323,10172,-0.151785714285711,-0.184836561742934,-0.153571428571423,-0.179782082324058,-0.151785714285711,-0.172911622275579,-0.150000000000000,-0.177966101694455,0.001876513317252,-0.003571428571423,-0.011985472155004,-0.000000000000000,-0.001755447941955,0.003571428571423,0.011864406779707,-0.000000000000000,2 -2257,8296,8311,8324,-0.200000000000000,-0.189830508475088,-0.198214285714291,-0.195732445521041,-0.196428571428583,-0.188135593220784,-0.198214285714291,-0.182233656174830,-0.013559322033860,-0.000000000000000,0.001755447941953,-0.003571428571417,0.013438256658562,0.000000000000000,-0.001634382566655,0.003571428571417,2 -8297,8310,8312,8325,-0.194642857142864,-0.193976997579083,-0.196428571428583,-0.188135593220784,-0.192857142857145,-0.186440677966470,-0.194642857142864,-0.180599273608171,0.001755447941963,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283263,0.000000000000000,-0.001634382566664,0.003571428571438,2 -8298,8311,8313,8326,-0.191071428571419,-0.192221549637117,-0.192857142857145,-0.186440677966470,-0.189285714285694,-0.184745762712150,-0.191071428571419,-0.178964891041504,0.001755447941969,-0.003571428571451,-0.013317191283263,-0.000000000000000,0.013196125907964,0.000000000000000,-0.001634382566670,0.003571428571451,2 -8299,8312,8314,8327,-0.187499999999963,-0.190466101695145,-0.189285714285694,-0.184745762712150,-0.185714285714231,-0.183050847457825,-0.187499999999963,-0.177330508474831,0.001755447941975,-0.003571428571462,-0.013196125907964,-0.000000000000000,0.013075060532665,0.000000000000000,-0.001634382566675,0.003571428571462,2 -8300,8313,8315,8328,-0.183928571428507,-0.188710653753174,-0.185714285714231,-0.183050847457825,-0.182142857142783,-0.181355932203507,-0.183928571428507,-0.175696125908158,0.001755447941968,-0.003571428571449,-0.013075060532665,-0.000000000000000,0.012953995157366,0.000000000000000,-0.001634382566669,0.003571428571449,2 -8301,8314,8316,8329,-0.180357142857065,-0.186955205811208,-0.182142857142783,-0.181355932203507,-0.178571428571347,-0.179661016949194,-0.180357142857065,-0.174061743341492,0.001755447941962,-0.003571428571436,-0.012953995157366,-0.000000000000000,0.012832929782067,0.000000000000000,-0.001634382566663,0.003571428571436,2 -8302,8315,8317,8330,-0.176785714285631,-0.185199757869248,-0.178571428571347,-0.179661016949194,-0.174999999999916,-0.177966101694884,-0.176785714285631,-0.172427360774830,0.001755447941960,-0.003571428571431,-0.012832929782067,-0.000000000000000,0.012711864406769,0.000000000000000,-0.001634382566661,0.003571428571431,2 -8303,8316,8318,8331,-0.173214285714214,-0.183444309927295,-0.174999999999916,-0.177966101694884,-0.171428571428512,-0.176271186440586,-0.173214285714214,-0.170792978208175,0.001755447941946,-0.003571428571404,-0.012711864406769,-0.000000000000000,0.012590799031471,0.000000000000000,-0.001634382566649,0.003571428571404,2 -8304,8317,8319,8332,-0.169642857142808,-0.181688861985348,-0.171428571428512,-0.176271186440586,-0.167857142857105,-0.174576271186287,-0.169642857142808,-0.169158595641525,0.001755447941948,-0.003571428571407,-0.012590799031471,-0.000000000000000,0.012469733656174,0.000000000000000,-0.001634382566650,0.003571428571407,2 -8305,8318,8320,8333,-0.166071428571395,-0.179933414043397,-0.167857142857105,-0.174576271186287,-0.164285714285684,-0.172881355931982,-0.166071428571395,-0.167524213074872,0.001755447941954,-0.003571428571421,-0.012469733656174,-0.000000000000000,0.012348668280876,0.000000000000000,-0.001634382566656,0.003571428571421,2 -8306,8319,8321,8334,-0.162499999999982,-0.178177966101446,-0.164285714285684,-0.172881355931982,-0.160714285714279,-0.171186440677684,-0.162499999999982,-0.165889830508219,0.001755447941947,-0.003571428571405,-0.012348668280876,-0.000000000000000,0.012227602905578,0.000000000000000,-0.001634382566649,0.003571428571405,2 -8307,8320,8322,8335,-0.158928571428564,-0.176422518159494,-0.160714285714279,-0.171186440677684,-0.157142857142850,-0.169491525423374,-0.158928571428564,-0.164255447941564,0.001755447941959,-0.003571428571429,-0.012227602905578,-0.000000000000000,0.012106537530280,0.000000000000000,-0.001634382566660,0.003571428571429,2 -8308,8321,8323,8336,-0.155357142857136,-0.174667070217535,-0.157142857142850,-0.169491525423374,-0.153571428571423,-0.167796610169066,-0.155357142857136,-0.162621065374905,0.001755447941958,-0.003571428571427,-0.012106537530280,-0.000000000000000,0.011985472154982,0.000000000000000,-0.001634382566659,0.003571428571427,2 -8309,8322,8337,10173,-0.151785714285711,-0.172911622275579,-0.153571428571423,-0.167796610169066,-0.151785714285711,-0.160986682808246,-0.150000000000000,-0.166101694914759,0.001755447941955,-0.003571428571423,-0.011985472154982,-0.000000000000000,-0.001634382566657,0.003571428571423,0.011864406779684,-0.000000000000000,2 -2258,8310,8325,8338,-0.200000000000000,-0.176271186441228,-0.198214285714291,-0.182233656174830,-0.196428571428583,-0.174697336562222,-0.198214285714291,-0.168734866828620,-0.013559322033860,-0.000000000000000,0.001634382566655,-0.003571428571417,0.013438256658561,0.000000000000000,-0.001513317191356,0.003571428571417,2 -8311,8324,8326,8339,-0.194642857142864,-0.180599273608171,-0.196428571428583,-0.174697336562222,-0.192857142857145,-0.173123486683208,-0.194642857142864,-0.167221549637259,0.001634382566664,-0.003571428571438,-0.013438256658561,-0.000000000000000,0.013317191283262,0.000000000000000,-0.001513317191365,0.003571428571438,2 -8312,8325,8327,8340,-0.191071428571419,-0.178964891041504,-0.192857142857145,-0.173123486683208,-0.189285714285694,-0.171549636804187,-0.191071428571419,-0.165708232445892,0.001634382566670,-0.003571428571451,-0.013317191283262,-0.000000000000000,0.013196125907962,0.000000000000000,-0.001513317191371,0.003571428571451,2 -8313,8326,8328,8341,-0.187499999999963,-0.177330508474831,-0.189285714285694,-0.171549636804187,-0.185714285714231,-0.169975786925162,-0.187499999999963,-0.164194915254519,0.001634382566675,-0.003571428571462,-0.013196125907962,-0.000000000000000,0.013075060532662,0.000000000000000,-0.001513317191375,0.003571428571462,2 -8314,8327,8329,8342,-0.183928571428507,-0.175696125908158,-0.185714285714231,-0.169975786925162,-0.182142857142783,-0.168401937046143,-0.183928571428507,-0.162681598063146,0.001634382566669,-0.003571428571449,-0.013075060532662,-0.000000000000000,0.012953995157362,-0.000000000000000,-0.001513317191369,0.003571428571449,2 -8315,8328,8330,8343,-0.180357142857065,-0.174061743341492,-0.182142857142783,-0.168401937046143,-0.178571428571347,-0.166828087167129,-0.180357142857065,-0.161168280871779,0.001634382566663,-0.003571428571436,-0.012953995157362,0.000000000000000,0.012832929782063,-0.000000000000000,-0.001513317191364,0.003571428571436,2 -8316,8329,8331,8344,-0.176785714285631,-0.172427360774830,-0.178571428571347,-0.166828087167129,-0.174999999999916,-0.165254237288117,-0.176785714285631,-0.159654963680416,0.001634382566661,-0.003571428571431,-0.012832929782063,0.000000000000000,0.012711864406764,0.000000000000000,-0.001513317191362,0.003571428571431,2 -8317,8330,8332,8345,-0.173214285714214,-0.170792978208175,-0.174999999999916,-0.165254237288117,-0.171428571428512,-0.163680387409118,-0.173214285714214,-0.158141646489060,0.001634382566649,-0.003571428571404,-0.012711864406764,-0.000000000000000,0.012590799031466,0.000000000000000,-0.001513317191351,0.003571428571404,2 -8318,8331,8333,8346,-0.169642857142808,-0.169158595641525,-0.171428571428512,-0.163680387409118,-0.167857142857105,-0.162106537530117,-0.169642857142809,-0.156628329297709,0.001634382566650,-0.003571428571407,-0.012590799031466,-0.000000000000000,0.012469733656167,0.000000000000000,-0.001513317191352,0.003571428571407,2 -8319,8332,8334,8347,-0.166071428571395,-0.167524213074872,-0.167857142857105,-0.162106537530117,-0.164285714285684,-0.160532687651109,-0.166071428571395,-0.155115012106354,0.001634382566656,-0.003571428571421,-0.012469733656167,-0.000000000000000,0.012348668280869,0.000000000000000,-0.001513317191358,0.003571428571421,2 -8320,8333,8335,8348,-0.162499999999982,-0.165889830508219,-0.164285714285684,-0.160532687651109,-0.160714285714279,-0.158958837772109,-0.162499999999982,-0.153601694915000,0.001634382566649,-0.003571428571405,-0.012348668280869,-0.000000000000000,0.012227602905570,0.000000000000000,-0.001513317191351,0.003571428571405,2 -8321,8334,8336,8349,-0.158928571428564,-0.164255447941564,-0.160714285714279,-0.158958837772109,-0.157142857142850,-0.157384987893099,-0.158928571428565,-0.152088377723643,0.001634382566660,-0.003571428571429,-0.012227602905570,-0.000000000000000,0.012106537530271,0.000000000000000,-0.001513317191361,0.003571428571429,2 -8322,8335,8337,8350,-0.155357142857136,-0.162621065374905,-0.157142857142850,-0.157384987893099,-0.153571428571423,-0.155811138014089,-0.155357142857136,-0.150575060532283,0.001634382566659,-0.003571428571427,-0.012106537530271,-0.000000000000000,0.011985472154973,0.000000000000000,-0.001513317191360,0.003571428571427,2 -8323,8336,8351,10174,-0.151785714285711,-0.160986682808246,-0.153571428571423,-0.155811138014089,-0.151785714285711,-0.149061743340923,-0.150000000000000,-0.154237288135081,0.001634382566657,-0.003571428571423,-0.011985472154973,-0.000000000000000,-0.001513317191359,0.003571428571423,0.011864406779674,-0.000000000000000,2 -2259,8324,8339,8352,-0.200000000000000,-0.162711864407368,-0.198214285714291,-0.168734866828620,-0.196428571428583,-0.161259079903661,-0.198214285714291,-0.155236077482409,-0.013559322033860,-0.000000000000000,0.001513317191356,-0.003571428571417,0.013438256658563,0.000000000000000,-0.001392251816059,0.003571428571417,2 -8325,8338,8340,8353,-0.194642857142864,-0.167221549637259,-0.196428571428583,-0.161259079903661,-0.192857142857145,-0.159806295399944,-0.194642857142864,-0.153843825666346,0.001513317191365,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283265,-0.000000000000000,-0.001392251816067,0.003571428571438,2 -8326,8339,8341,8354,-0.191071428571419,-0.165708232445892,-0.192857142857145,-0.159806295399944,-0.189285714285694,-0.158353510896223,-0.191071428571419,-0.152451573850276,0.001513317191371,-0.003571428571451,-0.013317191283265,0.000000000000000,0.013196125907967,0.000000000000000,-0.001392251816072,0.003571428571451,2 -8327,8340,8342,8355,-0.187499999999963,-0.164194915254519,-0.189285714285694,-0.158353510896223,-0.185714285714231,-0.156900726392497,-0.187499999999963,-0.151059322034201,0.001513317191375,-0.003571428571462,-0.013196125907967,-0.000000000000000,0.013075060532668,0.000000000000000,-0.001392251816077,0.003571428571462,2 -8328,8341,8343,8356,-0.183928571428507,-0.162681598063146,-0.185714285714231,-0.156900726392497,-0.182142857142783,-0.155447941888777,-0.183928571428507,-0.149667070218127,0.001513317191369,-0.003571428571449,-0.013075060532668,-0.000000000000000,0.012953995157370,0.000000000000000,-0.001392251816071,0.003571428571449,2 -8329,8342,8344,8357,-0.180357142857065,-0.161168280871779,-0.182142857142783,-0.155447941888777,-0.178571428571347,-0.153995157385061,-0.180357142857065,-0.148274818402058,0.001513317191364,-0.003571428571436,-0.012953995157370,-0.000000000000000,0.012832929782072,0.000000000000000,-0.001392251816067,0.003571428571436,2 -8330,8343,8345,8358,-0.176785714285631,-0.159654963680416,-0.178571428571347,-0.153995157385061,-0.174999999999916,-0.152542372881348,-0.176785714285631,-0.146882566585993,0.001513317191362,-0.003571428571431,-0.012832929782072,-0.000000000000000,0.012711864406775,0.000000000000000,-0.001392251816064,0.003571428571431,2 -8331,8344,8346,8359,-0.173214285714214,-0.158141646489060,-0.174999999999916,-0.152542372881348,-0.171428571428512,-0.151089588377646,-0.173214285714214,-0.145490314769934,0.001513317191351,-0.003571428571404,-0.012711864406775,-0.000000000000000,0.012590799031478,-0.000000000000000,-0.001392251816054,0.003571428571404,2 -8332,8345,8347,8360,-0.169642857142809,-0.156628329297709,-0.171428571428512,-0.151089588377646,-0.167857142857105,-0.149636803873942,-0.169642857142808,-0.144098062953879,0.001513317191352,-0.003571428571407,-0.012590799031478,0.000000000000000,0.012469733656181,0.000000000000000,-0.001392251816055,0.003571428571407,2 -8333,8346,8348,8361,-0.166071428571395,-0.155115012106354,-0.167857142857105,-0.149636803873942,-0.164285714285684,-0.148184019370233,-0.166071428571395,-0.142705811137821,0.001513317191358,-0.003571428571421,-0.012469733656181,-0.000000000000000,0.012348668280884,0.000000000000000,-0.001392251816061,0.003571428571421,2 -8334,8347,8349,8362,-0.162499999999982,-0.153601694915000,-0.164285714285684,-0.148184019370233,-0.160714285714279,-0.146731234866530,-0.162499999999982,-0.141313559321764,0.001513317191351,-0.003571428571405,-0.012348668280884,-0.000000000000000,0.012227602905588,0.000000000000000,-0.001392251816054,0.003571428571405,2 -8335,8348,8350,8363,-0.158928571428565,-0.152088377723643,-0.160714285714279,-0.146731234866530,-0.157142857142850,-0.145278450362818,-0.158928571428565,-0.139921307505705,0.001513317191361,-0.003571428571429,-0.012227602905588,-0.000000000000000,0.012106537530290,0.000000000000000,-0.001392251816064,0.003571428571429,2 -8336,8349,8351,8364,-0.155357142857136,-0.150575060532283,-0.157142857142850,-0.145278450362818,-0.153571428571423,-0.143825665859106,-0.155357142857136,-0.138529055689641,0.001513317191360,-0.003571428571427,-0.012106537530290,-0.000000000000000,0.011985472154993,0.000000000000000,-0.001392251816063,0.003571428571427,2 -8337,8350,8365,10175,-0.151785714285711,-0.149061743340923,-0.153571428571423,-0.143825665859106,-0.151785714285711,-0.137136803873579,-0.150000000000000,-0.142372881355396,0.001513317191359,-0.003571428571423,-0.011985472154993,-0.000000000000000,-0.001392251816061,0.003571428571423,0.011864406779695,-0.000000000000000,2 -2260,8338,8353,8366,-0.200000000000000,-0.149152542373509,-0.198214285714291,-0.155236077482409,-0.196428571428583,-0.147820823245098,-0.198214285714291,-0.141737288136198,-0.013559322033860,-0.000000000000000,0.001392251816059,-0.003571428571417,0.013438256658562,0.000000000000000,-0.001271186440761,0.003571428571417,2 -8339,8352,8354,8367,-0.194642857142864,-0.153843825666346,-0.196428571428583,-0.147820823245098,-0.192857142857145,-0.146489104116680,-0.194642857142864,-0.140466101695433,0.001392251816067,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.001271186440769,0.003571428571438,2 -8340,8353,8355,8368,-0.191071428571419,-0.152451573850276,-0.192857142857145,-0.146489104116680,-0.189285714285694,-0.145157384988257,-0.191071428571419,-0.139194915254662,0.001392251816072,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907965,-0.000000000000000,-0.001271186440774,0.003571428571451,2 -8341,8354,8356,8369,-0.187499999999963,-0.151059322034201,-0.189285714285694,-0.145157384988257,-0.185714285714231,-0.143825665859830,-0.187499999999963,-0.137923728813886,0.001392251816077,-0.003571428571462,-0.013196125907965,0.000000000000000,0.013075060532666,0.000000000000000,-0.001271186440778,0.003571428571462,2 -8342,8355,8357,8370,-0.183928571428507,-0.149667070218127,-0.185714285714231,-0.143825665859830,-0.182142857142783,-0.142493946731408,-0.183928571428507,-0.136652542373111,0.001392251816071,-0.003571428571449,-0.013075060532666,-0.000000000000000,0.012953995157367,0.000000000000000,-0.001271186440773,0.003571428571449,2 -8343,8356,8358,8371,-0.180357142857065,-0.148274818402058,-0.182142857142783,-0.142493946731408,-0.178571428571347,-0.141162227602991,-0.180357142857065,-0.135381355932341,0.001392251816067,-0.003571428571436,-0.012953995157367,-0.000000000000000,0.012832929782069,0.000000000000000,-0.001271186440768,0.003571428571436,2 -8344,8357,8359,8372,-0.176785714285631,-0.146882566585993,-0.178571428571347,-0.141162227602991,-0.174999999999916,-0.139830508474575,-0.176785714285631,-0.134110169491573,0.001392251816064,-0.003571428571431,-0.012832929782069,-0.000000000000000,0.012711864406770,-0.000000000000000,-0.001271186440766,0.003571428571431,2 -8345,8358,8360,8373,-0.173214285714214,-0.145490314769934,-0.174999999999916,-0.139830508474575,-0.171428571428512,-0.138498789346170,-0.173214285714214,-0.132838983050812,0.001392251816054,-0.003571428571404,-0.012711864406770,0.000000000000000,0.012590799031473,0.000000000000000,-0.001271186440757,0.003571428571404,2 -8346,8359,8361,8374,-0.169642857142808,-0.144098062953879,-0.171428571428512,-0.138498789346170,-0.167857142857105,-0.137167070217764,-0.169642857142808,-0.131567796610055,0.001392251816055,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656176,0.000000000000000,-0.001271186440758,0.003571428571407,2 -8347,8360,8362,8375,-0.166071428571395,-0.142705811137821,-0.167857142857105,-0.137167070217764,-0.164285714285684,-0.135835351089352,-0.166071428571395,-0.130296610169294,0.001392251816061,-0.003571428571421,-0.012469733656176,-0.000000000000000,0.012348668280878,0.000000000000000,-0.001271186440763,0.003571428571421,2 -8348,8361,8363,8376,-0.162499999999982,-0.141313559321764,-0.164285714285684,-0.135835351089352,-0.160714285714279,-0.134503631960946,-0.162499999999982,-0.129025423728534,0.001392251816054,-0.003571428571405,-0.012348668280878,-0.000000000000000,0.012227602905581,-0.000000000000000,-0.001271186440757,0.003571428571405,2 -8349,8362,8364,8377,-0.158928571428565,-0.139921307505705,-0.160714285714279,-0.134503631960946,-0.157142857142850,-0.133171912832531,-0.158928571428564,-0.127754237287773,0.001392251816064,-0.003571428571429,-0.012227602905581,0.000000000000000,0.012106537530283,0.000000000000000,-0.001271186440766,0.003571428571429,2 -8350,8363,8365,8378,-0.155357142857136,-0.138529055689641,-0.157142857142850,-0.133171912832531,-0.153571428571423,-0.131840193704117,-0.155357142857136,-0.126483050847007,0.001392251816063,-0.003571428571427,-0.012106537530283,-0.000000000000000,0.011985472154985,-0.000000000000000,-0.001271186440765,0.003571428571427,2 -8351,8364,8379,10176,-0.151785714285711,-0.137136803873579,-0.153571428571423,-0.131840193704117,-0.151785714285711,-0.125211864406243,-0.150000000000000,-0.130508474575705,0.001392251816061,-0.003571428571423,-0.011985472154985,0.000000000000000,-0.001271186440763,0.003571428571423,0.011864406779687,-0.000000000000000,2 -2261,8352,8367,8380,-0.200000000000000,-0.135593220339649,-0.198214285714291,-0.141737288136198,-0.196428571428583,-0.134382566586536,-0.198214285714291,-0.128238498789987,-0.013559322033860,-0.000000000000000,0.001271186440761,-0.003571428571417,0.013438256658563,0.000000000000000,-0.001150121065464,0.003571428571417,2 -8353,8366,8368,8381,-0.194642857142864,-0.140466101695433,-0.196428571428583,-0.134382566586536,-0.192857142857145,-0.133171912833416,-0.194642857142864,-0.127088377724519,0.001271186440769,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283265,0.000000000000000,-0.001150121065471,0.003571428571438,2 -8354,8367,8369,8382,-0.191071428571419,-0.139194915254662,-0.192857142857145,-0.133171912833416,-0.189285714285694,-0.131961259080291,-0.191071428571419,-0.125938256659046,0.001271186440774,-0.003571428571451,-0.013317191283265,-0.000000000000000,0.013196125907967,0.000000000000000,-0.001150121065475,0.003571428571451,2 -8355,8368,8370,8383,-0.187499999999963,-0.137923728813886,-0.189285714285694,-0.131961259080291,-0.185714285714231,-0.130750605327163,-0.187499999999963,-0.124788135593568,0.001271186440778,-0.003571428571462,-0.013196125907967,-0.000000000000000,0.013075060532669,0.000000000000000,-0.001150121065479,0.003571428571462,2 -8356,8369,8371,8384,-0.183928571428507,-0.136652542373111,-0.185714285714231,-0.130750605327163,-0.182142857142783,-0.129539951574039,-0.183928571428507,-0.123638014528091,0.001271186440773,-0.003571428571449,-0.013075060532669,-0.000000000000000,0.012953995157371,0.000000000000000,-0.001150121065475,0.003571428571449,2 -8357,8370,8372,8385,-0.180357142857065,-0.135381355932341,-0.182142857142783,-0.129539951574039,-0.178571428571347,-0.128329297820920,-0.180357142857065,-0.122487893462619,0.001271186440768,-0.003571428571436,-0.012953995157371,-0.000000000000000,0.012832929782073,0.000000000000000,-0.001150121065470,0.003571428571436,2 -8358,8371,8373,8386,-0.176785714285631,-0.134110169491573,-0.178571428571347,-0.128329297820920,-0.174999999999916,-0.127118644067802,-0.176785714285631,-0.121337772397149,0.001271186440766,-0.003571428571431,-0.012832929782073,-0.000000000000000,0.012711864406776,0.000000000000000,-0.001150121065469,0.003571428571431,2 -8359,8372,8374,8387,-0.173214285714214,-0.132838983050812,-0.174999999999916,-0.127118644067802,-0.171428571428512,-0.125907990314694,-0.173214285714214,-0.120187651331684,0.001271186440757,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031479,0.000000000000000,-0.001150121065460,0.003571428571404,2 -8360,8373,8375,8388,-0.169642857142808,-0.131567796610055,-0.171428571428512,-0.125907990314694,-0.167857142857105,-0.124697336561584,-0.169642857142808,-0.119037530266224,0.001271186440758,-0.003571428571407,-0.012590799031479,-0.000000000000000,0.012469733656183,0.000000000000000,-0.001150121065461,0.003571428571407,2 -8361,8374,8376,8389,-0.166071428571395,-0.130296610169294,-0.167857142857105,-0.124697336561584,-0.164285714285684,-0.123486682808470,-0.166071428571395,-0.117887409200760,0.001271186440763,-0.003571428571421,-0.012469733656183,-0.000000000000000,0.012348668280886,0.000000000000000,-0.001150121065466,0.003571428571421,2 -8362,8375,8377,8390,-0.162499999999982,-0.129025423728534,-0.164285714285684,-0.123486682808470,-0.160714285714279,-0.122276029055361,-0.162499999999982,-0.116737288135297,0.001271186440757,-0.003571428571405,-0.012348668280886,-0.000000000000000,0.012227602905589,0.000000000000000,-0.001150121065461,0.003571428571405,2 -8363,8376,8378,8391,-0.158928571428564,-0.127754237287773,-0.160714285714279,-0.122276029055361,-0.157142857142850,-0.121065375302244,-0.158928571428565,-0.115587167069832,0.001271186440766,-0.003571428571429,-0.012227602905589,-0.000000000000000,0.012106537530292,0.000000000000000,-0.001150121065468,0.003571428571429,2 -8364,8377,8379,8392,-0.155357142857136,-0.126483050847007,-0.157142857142850,-0.121065375302244,-0.153571428571423,-0.119854721549128,-0.155357142857136,-0.114437046004364,0.001271186440765,-0.003571428571427,-0.012106537530292,-0.000000000000000,0.011985472154994,0.000000000000000,-0.001150121065468,0.003571428571427,2 -8365,8378,8393,10177,-0.151785714285711,-0.125211864406243,-0.153571428571423,-0.119854721549128,-0.151785714285711,-0.113286924938897,-0.150000000000000,-0.118644067796013,0.001271186440763,-0.003571428571423,-0.011985472154994,-0.000000000000000,-0.001150121065466,0.003571428571423,0.011864406779697,-0.000000000000000,2 -2262,8366,8381,8394,-0.200000000000000,-0.122033898305789,-0.198214285714291,-0.128238498789987,-0.196428571428583,-0.120944309927974,-0.198214285714291,-0.114739709443776,-0.013559322033860,-0.000000000000000,0.001150121065464,-0.003571428571417,0.013438256658562,0.000000000000000,-0.001029055690167,0.003571428571417,2 -8367,8380,8382,8395,-0.194642857142864,-0.127088377724519,-0.196428571428583,-0.120944309927974,-0.192857142857145,-0.119854721550151,-0.194642857142864,-0.113710653753606,0.001150121065471,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283263,0.000000000000000,-0.001029055690173,0.003571428571438,2 -8368,8381,8383,8396,-0.191071428571419,-0.125938256659046,-0.192857142857145,-0.119854721550151,-0.189285714285694,-0.118765133172325,-0.191071428571419,-0.112681598063431,0.001150121065475,-0.003571428571451,-0.013317191283263,-0.000000000000000,0.013196125907965,0.000000000000000,-0.001029055690177,0.003571428571451,2 -8369,8382,8384,8397,-0.187499999999963,-0.124788135593568,-0.189285714285694,-0.118765133172325,-0.185714285714231,-0.117675544794496,-0.187499999999963,-0.111652542373253,0.001150121065479,-0.003571428571462,-0.013196125907965,-0.000000000000000,0.013075060532666,0.000000000000000,-0.001029055690180,0.003571428571462,2 -8370,8383,8385,8398,-0.183928571428507,-0.123638014528091,-0.185714285714231,-0.117675544794496,-0.182142857142783,-0.116585956416671,-0.183928571428507,-0.110623486683075,0.001150121065475,-0.003571428571449,-0.013075060532666,-0.000000000000000,0.012953995157367,0.000000000000000,-0.001029055690176,0.003571428571449,2 -8371,8384,8386,8399,-0.180357142857065,-0.122487893462619,-0.182142857142783,-0.116585956416671,-0.178571428571347,-0.115496368038849,-0.180357142857065,-0.109594430992901,0.001150121065470,-0.003571428571436,-0.012953995157367,-0.000000000000000,0.012832929782068,-0.000000000000000,-0.001029055690172,0.003571428571436,2 -8372,8385,8387,8400,-0.176785714285631,-0.121337772397149,-0.178571428571347,-0.115496368038849,-0.174999999999916,-0.114406779661029,-0.176785714285631,-0.108565375302730,0.001150121065469,-0.003571428571431,-0.012832929782068,0.000000000000000,0.012711864406770,-0.000000000000000,-0.001029055690171,0.003571428571431,2 -8373,8386,8388,8401,-0.173214285714214,-0.120187651331684,-0.174999999999916,-0.114406779661029,-0.171428571428512,-0.113317191283218,-0.173214285714214,-0.107536319612563,0.001150121065460,-0.003571428571404,-0.012711864406770,0.000000000000000,0.012590799031473,0.000000000000000,-0.001029055690163,0.003571428571404,2 -8374,8387,8389,8402,-0.169642857142808,-0.119037530266224,-0.171428571428512,-0.113317191283218,-0.167857142857105,-0.112227602905405,-0.169642857142809,-0.106507263922399,0.001150121065461,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656176,0.000000000000000,-0.001029055690164,0.003571428571407,2 -8375,8388,8390,8403,-0.166071428571395,-0.117887409200760,-0.167857142857105,-0.112227602905405,-0.164285714285684,-0.111138014527588,-0.166071428571395,-0.105478208232233,0.001150121065466,-0.003571428571421,-0.012469733656176,-0.000000000000000,0.012348668280878,0.000000000000000,-0.001029055690168,0.003571428571421,2 -8376,8389,8391,8404,-0.162499999999982,-0.116737288135297,-0.164285714285684,-0.111138014527588,-0.160714285714279,-0.110048426149776,-0.162499999999982,-0.104449152542068,0.001150121065461,-0.003571428571405,-0.012348668280878,-0.000000000000000,0.012227602905580,0.000000000000000,-0.001029055690163,0.003571428571405,2 -8377,8390,8392,8405,-0.158928571428565,-0.115587167069832,-0.160714285714279,-0.110048426149776,-0.157142857142850,-0.108958837771957,-0.158928571428565,-0.103420096851901,0.001150121065468,-0.003571428571429,-0.012227602905580,-0.000000000000000,0.012106537530282,0.000000000000000,-0.001029055690170,0.003571428571429,2 -8378,8391,8393,8406,-0.155357142857136,-0.114437046004364,-0.157142857142850,-0.108958837771957,-0.153571428571423,-0.107869249394138,-0.155357142857136,-0.102391041161731,0.001150121065468,-0.003571428571427,-0.012106537530282,-0.000000000000000,0.011985472154984,0.000000000000000,-0.001029055690170,0.003571428571427,2 -8379,8392,8407,10178,-0.151785714285711,-0.113286924938897,-0.153571428571423,-0.107869249394138,-0.151785714285711,-0.101361985471562,-0.150000000000000,-0.106779661016321,0.001150121065466,-0.003571428571423,-0.011985472154984,-0.000000000000000,-0.001029055690168,0.003571428571423,0.011864406779686,-0.000000000000000,2 -2263,8380,8395,8408,-0.200000000000000,-0.108474576271933,-0.198214285714291,-0.114739709443776,-0.196428571428583,-0.107506053269415,-0.198214285714291,-0.101240920097572,-0.013559322033852,-0.000000000000000,0.001029055690167,-0.003571428571417,0.013438256658555,0.000000000000000,-0.000907990314871,0.003571428571417,2 -8381,8394,8396,8409,-0.194642857142864,-0.113710653753606,-0.196428571428583,-0.107506053269415,-0.192857142857145,-0.106537530266891,-0.194642857142864,-0.100332929782699,0.001029055690173,-0.003571428571438,-0.013438256658555,-0.000000000000000,0.013317191283258,0.000000000000000,-0.000907990314876,0.003571428571438,2 -8382,8395,8397,8410,-0.191071428571419,-0.112681598063431,-0.192857142857145,-0.106537530266891,-0.189285714285694,-0.105569007264363,-0.191071428571419,-0.099424939467822,0.001029055690177,-0.003571428571451,-0.013317191283258,-0.000000000000000,0.013196125907961,0.000000000000000,-0.000907990314879,0.003571428571451,2 -8383,8396,8398,8411,-0.187499999999963,-0.111652542373253,-0.189285714285694,-0.105569007264363,-0.185714285714231,-0.104600484261832,-0.187499999999963,-0.098516949152941,0.001029055690180,-0.003571428571462,-0.013196125907961,-0.000000000000000,0.013075060532663,0.000000000000000,-0.000907990314882,0.003571428571462,2 -8384,8397,8399,8412,-0.183928571428507,-0.110623486683075,-0.185714285714231,-0.104600484261832,-0.182142857142783,-0.103631961259305,-0.183928571428507,-0.097608958838061,0.001029055690176,-0.003571428571449,-0.013075060532663,-0.000000000000000,0.012953995157365,0.000000000000000,-0.000907990314878,0.003571428571449,2 -8385,8398,8400,8413,-0.180357142857065,-0.109594430992901,-0.182142857142783,-0.103631961259305,-0.178571428571347,-0.102663438256781,-0.180357142857065,-0.096700968523184,0.001029055690172,-0.003571428571436,-0.012953995157365,-0.000000000000000,0.012832929782068,0.000000000000000,-0.000907990314875,0.003571428571436,2 -8386,8399,8401,8414,-0.176785714285631,-0.108565375302730,-0.178571428571347,-0.102663438256781,-0.174999999999916,-0.101694915254259,-0.176785714285631,-0.095792978208310,0.001029055690171,-0.003571428571431,-0.012832929782068,-0.000000000000000,0.012711864406772,0.000000000000000,-0.000907990314874,0.003571428571431,2 -8387,8400,8402,8415,-0.173214285714214,-0.107536319612563,-0.174999999999916,-0.101694915254259,-0.171428571428512,-0.100726392251743,-0.173214285714214,-0.094884987893439,0.001029055690163,-0.003571428571404,-0.012711864406772,-0.000000000000000,0.012590799031476,-0.000000000000000,-0.000907990314867,0.003571428571404,2 -8388,8401,8403,8416,-0.169642857142809,-0.106507263922399,-0.171428571428512,-0.100726392251743,-0.167857142857105,-0.099757869249228,-0.169642857142808,-0.093976997578572,0.001029055690164,-0.003571428571407,-0.012590799031476,0.000000000000000,0.012469733656180,0.000000000000000,-0.000907990314868,0.003571428571407,2 -8389,8402,8404,8417,-0.166071428571395,-0.105478208232233,-0.167857142857105,-0.099757869249228,-0.164285714285684,-0.098789346246708,-0.166071428571395,-0.093069007263702,0.001029055690168,-0.003571428571421,-0.012469733656180,-0.000000000000000,0.012348668280883,0.000000000000000,-0.000907990314871,0.003571428571421,2 -8390,8403,8405,8418,-0.162499999999982,-0.104449152542068,-0.164285714285684,-0.098789346246708,-0.160714285714279,-0.097820823244193,-0.162499999999982,-0.092161016948833,0.001029055690163,-0.003571428571405,-0.012348668280883,-0.000000000000000,0.012227602905587,-0.000000000000000,-0.000907990314867,0.003571428571405,2 -8391,8404,8406,8419,-0.158928571428565,-0.103420096851901,-0.160714285714279,-0.097820823244193,-0.157142857142850,-0.096852300241671,-0.158928571428564,-0.091253026633962,0.001029055690170,-0.003571428571429,-0.012227602905587,0.000000000000000,0.012106537530291,0.000000000000000,-0.000907990314874,0.003571428571429,2 -8392,8405,8407,8420,-0.155357142857136,-0.102391041161731,-0.157142857142850,-0.096852300241671,-0.153571428571423,-0.095883777239149,-0.155357142857136,-0.090345036319089,0.001029055690170,-0.003571428571427,-0.012106537530291,-0.000000000000000,0.011985472154994,-0.000000000000000,-0.000907990314873,0.003571428571427,2 -8393,8406,8421,10179,-0.151785714285711,-0.101361985471562,-0.153571428571423,-0.095883777239149,-0.151785714285711,-0.089437046004216,-0.150000000000000,-0.094915254236629,0.001029055690168,-0.003571428571423,-0.011985472154994,0.000000000000000,-0.000907990314872,0.003571428571423,0.011864406779697,-0.000000000000000,2 -2264,8394,8409,8422,-0.200000000000000,-0.094915254238085,-0.198214285714291,-0.101240920097572,-0.196428571428583,-0.094067796610862,-0.198214285714291,-0.087742130751374,-0.013559322033846,-0.000000000000000,0.000907990314871,-0.003571428571417,0.013438256658550,0.000000000000000,-0.000786924939575,0.003571428571417,2 -8395,8408,8410,8423,-0.194642857142864,-0.100332929782699,-0.196428571428583,-0.094067796610862,-0.192857142857145,-0.093220338983635,-0.194642857142864,-0.086955205811798,0.000907990314876,-0.003571428571438,-0.013438256658550,-0.000000000000000,0.013317191283253,0.000000000000000,-0.000786924939579,0.003571428571438,2 -8396,8409,8411,8424,-0.191071428571419,-0.099424939467822,-0.192857142857145,-0.093220338983635,-0.189285714285694,-0.092372881356404,-0.191071428571419,-0.086168280872217,0.000907990314879,-0.003571428571451,-0.013317191283253,-0.000000000000000,0.013196125907956,0.000000000000000,-0.000786924939582,0.003571428571451,2 -8397,8410,8412,8425,-0.187499999999963,-0.098516949152941,-0.189285714285694,-0.092372881356404,-0.185714285714231,-0.091525423729171,-0.187499999999963,-0.085381355932634,0.000907990314882,-0.003571428571462,-0.013196125907956,-0.000000000000000,0.013075060532659,0.000000000000000,-0.000786924939585,0.003571428571462,2 -8398,8411,8413,8426,-0.183928571428507,-0.097608958838061,-0.185714285714231,-0.091525423729171,-0.182142857142783,-0.090677966101941,-0.183928571428507,-0.084594430993051,0.000907990314878,-0.003571428571449,-0.013075060532659,-0.000000000000000,0.012953995157362,0.000000000000000,-0.000786924939581,0.003571428571449,2 -8399,8412,8414,8427,-0.180357142857065,-0.096700968523184,-0.182142857142783,-0.090677966101941,-0.178571428571347,-0.089830508474714,-0.180357142857065,-0.083807506053471,0.000907990314875,-0.003571428571436,-0.012953995157362,-0.000000000000000,0.012832929782065,-0.000000000000000,-0.000786924939579,0.003571428571436,2 -8400,8413,8415,8428,-0.176785714285631,-0.095792978208310,-0.178571428571347,-0.089830508474714,-0.174999999999916,-0.088983050847488,-0.176785714285631,-0.083020581113893,0.000907990314874,-0.003571428571431,-0.012832929782065,0.000000000000000,0.012711864406769,0.000000000000000,-0.000786924939578,0.003571428571431,2 -8401,8414,8416,8429,-0.173214285714214,-0.094884987893439,-0.174999999999916,-0.088983050847488,-0.171428571428512,-0.088135593220269,-0.173214285714214,-0.082233656174318,0.000907990314867,-0.003571428571404,-0.012711864406769,-0.000000000000000,0.012590799031473,0.000000000000000,-0.000786924939572,0.003571428571404,2 -8402,8415,8417,8430,-0.169642857142808,-0.093976997578572,-0.171428571428512,-0.088135593220269,-0.167857142857105,-0.087288135593049,-0.169642857142808,-0.081446731234746,0.000907990314868,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656178,0.000000000000000,-0.000786924939572,0.003571428571407,2 -8403,8416,8418,8431,-0.166071428571395,-0.093069007263702,-0.167857142857105,-0.087288135593049,-0.164285714285684,-0.086440677965825,-0.166071428571395,-0.080659806295172,0.000907990314871,-0.003571428571421,-0.012469733656178,-0.000000000000000,0.012348668280882,0.000000000000000,-0.000786924939575,0.003571428571421,2 -8404,8417,8419,8432,-0.162499999999982,-0.092161016948833,-0.164285714285684,-0.086440677965825,-0.160714285714279,-0.085593220338606,-0.162499999999982,-0.079872881355599,0.000907990314867,-0.003571428571405,-0.012348668280882,-0.000000000000000,0.012227602905586,0.000000000000000,-0.000786924939572,0.003571428571405,2 -8405,8418,8420,8433,-0.158928571428564,-0.091253026633962,-0.160714285714279,-0.085593220338606,-0.157142857142850,-0.084745762711380,-0.158928571428564,-0.079085956416024,0.000907990314874,-0.003571428571429,-0.012227602905586,-0.000000000000000,0.012106537530290,0.000000000000000,-0.000786924939577,0.003571428571429,2 -8406,8419,8421,8434,-0.155357142857136,-0.090345036319089,-0.157142857142850,-0.084745762711380,-0.153571428571423,-0.083898305084156,-0.155357142857136,-0.078299031476447,0.000907990314873,-0.003571428571427,-0.012106537530290,-0.000000000000000,0.011985472154993,0.000000000000000,-0.000786924939577,0.003571428571427,2 -8407,8420,8435,10180,-0.151785714285711,-0.089437046004216,-0.153571428571423,-0.083898305084156,-0.151785714285711,-0.077512106536871,-0.150000000000000,-0.083050847456932,0.000907990314872,-0.003571428571423,-0.011985472154993,-0.000000000000000,-0.000786924939576,0.003571428571423,0.011864406779697,-0.000000000000000,2 -2265,8408,8423,8436,-0.200000000000000,-0.081355932204232,-0.198214285714291,-0.087742130751374,-0.196428571428583,-0.080629539952306,-0.198214285714291,-0.074243341405164,-0.013559322033860,-0.000000000000000,0.000786924939575,-0.003571428571417,0.013438256658562,0.000000000000000,-0.000665859564277,0.003571428571417,2 -8409,8422,8424,8437,-0.194642857142864,-0.086955205811798,-0.196428571428583,-0.080629539952306,-0.192857142857145,-0.079903147700376,-0.194642857142864,-0.073577481840885,0.000786924939579,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.000665859564281,0.003571428571438,2 -8410,8423,8425,8438,-0.191071428571419,-0.086168280872217,-0.192857142857145,-0.079903147700376,-0.189285714285694,-0.079176755448444,-0.191071428571419,-0.072911622276603,0.000786924939582,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907965,-0.000000000000000,-0.000665859564283,0.003571428571451,2 -8411,8424,8426,8439,-0.187499999999963,-0.085381355932634,-0.189285714285694,-0.079176755448444,-0.185714285714231,-0.078450363196509,-0.187499999999963,-0.072245762712319,0.000786924939585,-0.003571428571462,-0.013196125907965,0.000000000000000,0.013075060532665,0.000000000000000,-0.000665859564285,0.003571428571462,2 -8412,8425,8427,8440,-0.183928571428507,-0.084594430993051,-0.185714285714231,-0.078450363196509,-0.182142857142783,-0.077723970944577,-0.183928571428507,-0.071579903148035,0.000786924939581,-0.003571428571449,-0.013075060532665,-0.000000000000000,0.012953995157367,0.000000000000000,-0.000665859564283,0.003571428571449,2 -8413,8426,8428,8441,-0.180357142857065,-0.083807506053471,-0.182142857142783,-0.077723970944577,-0.178571428571347,-0.076997578692647,-0.180357142857065,-0.070914043583753,0.000786924939579,-0.003571428571436,-0.012953995157367,-0.000000000000000,0.012832929782068,0.000000000000000,-0.000665859564280,0.003571428571436,2 -8414,8427,8429,8442,-0.176785714285631,-0.083020581113893,-0.178571428571347,-0.076997578692647,-0.174999999999916,-0.076271186440719,-0.176785714285631,-0.070248184019473,0.000786924939578,-0.003571428571431,-0.012832929782068,-0.000000000000000,0.012711864406770,-0.000000000000000,-0.000665859564279,0.003571428571431,2 -8415,8428,8430,8443,-0.173214285714214,-0.082233656174318,-0.174999999999916,-0.076271186440719,-0.171428571428512,-0.075544794188796,-0.173214285714214,-0.069582324455197,0.000786924939572,-0.003571428571404,-0.012711864406770,0.000000000000000,0.012590799031473,0.000000000000000,-0.000665859564274,0.003571428571404,2 -8416,8429,8431,8444,-0.169642857142808,-0.081446731234746,-0.171428571428512,-0.075544794188796,-0.167857142857105,-0.074818401936872,-0.169642857142808,-0.068916464890922,0.000786924939572,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656176,0.000000000000000,-0.000665859564275,0.003571428571407,2 -8417,8430,8432,8445,-0.166071428571395,-0.080659806295172,-0.167857142857105,-0.074818401936872,-0.164285714285684,-0.074092009684946,-0.166071428571395,-0.068250605326646,0.000786924939575,-0.003571428571421,-0.012469733656176,-0.000000000000000,0.012348668280878,0.000000000000000,-0.000665859564278,0.003571428571421,2 -8418,8431,8433,8446,-0.162499999999982,-0.079872881355599,-0.164285714285684,-0.074092009684946,-0.160714285714279,-0.073365617433023,-0.162499999999982,-0.067584745762370,0.000786924939572,-0.003571428571405,-0.012348668280878,-0.000000000000000,0.012227602905580,0.000000000000000,-0.000665859564275,0.003571428571405,2 -8419,8432,8434,8447,-0.158928571428564,-0.079085956416024,-0.160714285714279,-0.073365617433023,-0.157142857142850,-0.072639225181094,-0.158928571428564,-0.066918886198093,0.000786924939577,-0.003571428571429,-0.012227602905580,-0.000000000000000,0.012106537530282,0.000000000000000,-0.000665859564279,0.003571428571429,2 -8420,8433,8435,8448,-0.155357142857136,-0.078299031476447,-0.157142857142850,-0.072639225181094,-0.153571428571423,-0.071912832929167,-0.155357142857136,-0.066253026633814,0.000786924939577,-0.003571428571427,-0.012106537530282,-0.000000000000000,0.011985472154984,0.000000000000000,-0.000665859564279,0.003571428571427,2 -8421,8434,8449,10181,-0.151785714285711,-0.077512106536871,-0.153571428571423,-0.071912832929167,-0.151785714285711,-0.065587167069536,-0.150000000000000,-0.071186440677240,0.000786924939576,-0.003571428571423,-0.011985472154984,-0.000000000000000,-0.000665859564278,0.003571428571423,0.011864406779686,-0.000000000000000,2 -2266,8422,8437,8450,-0.200000000000000,-0.067796610170372,-0.198214285714291,-0.074243341405164,-0.196428571428583,-0.067191283293744,-0.198214285714291,-0.060744552058952,-0.013559322033860,-0.000000000000000,0.000665859564277,-0.003571428571417,0.013438256658563,0.000000000000000,-0.000544794188980,0.003571428571417,2 -8423,8436,8438,8451,-0.194642857142864,-0.073577481840885,-0.196428571428583,-0.067191283293744,-0.192857142857145,-0.066585956417112,-0.194642857142864,-0.060199757869971,0.000665859564281,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283265,0.000000000000000,-0.000544794188983,0.003571428571438,2 -8424,8437,8439,8452,-0.191071428571419,-0.072911622276603,-0.192857142857145,-0.066585956417112,-0.189285714285694,-0.065980629540478,-0.191071428571419,-0.059654963680987,0.000665859564283,-0.003571428571451,-0.013317191283265,-0.000000000000000,0.013196125907967,0.000000000000000,-0.000544794188985,0.003571428571451,2 -8425,8438,8440,8453,-0.187499999999963,-0.072245762712319,-0.189285714285694,-0.065980629540478,-0.185714285714232,-0.065375302663842,-0.187499999999963,-0.059110169492001,0.000665859564285,-0.003571428571462,-0.013196125907967,-0.000000000000000,0.013075060532669,0.000000000000000,-0.000544794188987,0.003571428571462,2 -8426,8439,8441,8454,-0.183928571428507,-0.071579903148035,-0.185714285714232,-0.065375302663842,-0.182142857142783,-0.064769975787208,-0.183928571428507,-0.058565375303015,0.000665859564283,-0.003571428571449,-0.013075060532669,-0.000000000000000,0.012953995157371,-0.000000000000000,-0.000544794188985,0.003571428571449,2 -8427,8440,8442,8455,-0.180357142857065,-0.070914043583753,-0.182142857142783,-0.064769975787208,-0.178571428571347,-0.064164648910577,-0.180357142857065,-0.058020581114031,0.000665859564280,-0.003571428571436,-0.012953995157371,0.000000000000000,0.012832929782073,0.000000000000000,-0.000544794188983,0.003571428571436,2 -8428,8441,8443,8456,-0.176785714285631,-0.070248184019473,-0.178571428571347,-0.064164648910577,-0.174999999999916,-0.063559322033946,-0.176785714285631,-0.057475786925049,0.000665859564279,-0.003571428571431,-0.012832929782073,-0.000000000000000,0.012711864406776,0.000000000000000,-0.000544794188982,0.003571428571431,2 -8429,8442,8444,8457,-0.173214285714214,-0.069582324455197,-0.174999999999916,-0.063559322033946,-0.171428571428512,-0.062953995157320,-0.173214285714214,-0.056930992736069,0.000665859564274,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031479,0.000000000000000,-0.000544794188978,0.003571428571404,2 -8430,8443,8445,8458,-0.169642857142808,-0.068916464890922,-0.171428571428512,-0.062953995157320,-0.167857142857105,-0.062348668280693,-0.169642857142808,-0.056386198547091,0.000665859564275,-0.003571428571407,-0.012590799031479,-0.000000000000000,0.012469733656183,0.000000000000000,-0.000544794188978,0.003571428571407,2 -8431,8444,8446,8459,-0.166071428571395,-0.068250605326646,-0.167857142857105,-0.062348668280693,-0.164285714285684,-0.061743341404064,-0.166071428571395,-0.055841404358112,0.000665859564278,-0.003571428571421,-0.012469733656183,-0.000000000000000,0.012348668280886,0.000000000000000,-0.000544794188980,0.003571428571421,2 -8432,8445,8447,8460,-0.162499999999982,-0.067584745762370,-0.164285714285684,-0.061743341404064,-0.160714285714279,-0.061138014527438,-0.162499999999982,-0.055296610169132,0.000665859564275,-0.003571428571405,-0.012348668280886,-0.000000000000000,0.012227602905589,0.000000000000000,-0.000544794188978,0.003571428571405,2 -8433,8446,8448,8461,-0.158928571428564,-0.066918886198093,-0.160714285714279,-0.061138014527438,-0.157142857142850,-0.060532687650807,-0.158928571428564,-0.054751815980153,0.000665859564279,-0.003571428571429,-0.012227602905589,-0.000000000000000,0.012106537530292,-0.000000000000000,-0.000544794188982,0.003571428571429,2 -8434,8447,8449,8462,-0.155357142857136,-0.066253026633814,-0.157142857142850,-0.060532687650807,-0.153571428571423,-0.059927360774177,-0.155357142857136,-0.054207021791171,0.000665859564279,-0.003571428571427,-0.012106537530292,0.000000000000000,0.011985472154994,0.000000000000000,-0.000544794188981,0.003571428571427,2 -8435,8448,8463,10182,-0.151785714285711,-0.065587167069536,-0.153571428571423,-0.059927360774177,-0.151785714285711,-0.053662227602190,-0.150000000000000,-0.059322033897548,0.000665859564278,-0.003571428571423,-0.011985472154994,-0.000000000000000,-0.000544794188981,0.003571428571423,0.011864406779697,-0.000000000000000,2 -2267,8436,8451,8464,-0.200000000000000,-0.054237288136513,-0.198214285714291,-0.060744552058952,-0.196428571428583,-0.053753026635181,-0.198214285714291,-0.047245762712741,-0.013559322033860,-0.000000000000000,0.000544794188980,-0.003571428571417,0.013438256658562,0.000000000000000,-0.000423728813683,0.003571428571417,2 -8437,8450,8452,8465,-0.194642857142864,-0.060199757869971,-0.196428571428583,-0.053753026635181,-0.192857142857145,-0.053268765133847,-0.194642857142864,-0.046822033899057,0.000544794188983,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.000423728813685,0.003571428571438,2 -8438,8451,8453,8466,-0.191071428571419,-0.059654963680987,-0.192857142857145,-0.053268765133847,-0.189285714285694,-0.052784503632511,-0.191071428571419,-0.046398305085372,0.000544794188985,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907966,0.000000000000000,-0.000423728813687,0.003571428571451,2 -8439,8452,8454,8467,-0.187499999999963,-0.059110169492001,-0.189285714285694,-0.052784503632511,-0.185714285714232,-0.052300242131174,-0.187499999999963,-0.045974576271684,0.000544794188987,-0.003571428571462,-0.013196125907966,-0.000000000000000,0.013075060532667,-0.000000000000000,-0.000423728813688,0.003571428571462,2 -8440,8453,8455,8468,-0.183928571428507,-0.058565375303015,-0.185714285714232,-0.052300242131174,-0.182142857142783,-0.051815980629838,-0.183928571428507,-0.045550847457997,0.000544794188985,-0.003571428571449,-0.013075060532667,0.000000000000000,0.012953995157369,0.000000000000000,-0.000423728813686,0.003571428571449,2 -8441,8454,8456,8469,-0.180357142857065,-0.058020581114031,-0.182142857142783,-0.051815980629838,-0.178571428571347,-0.051331719128505,-0.180357142857065,-0.045127118644311,0.000544794188983,-0.003571428571436,-0.012953995157369,-0.000000000000000,0.012832929782071,0.000000000000000,-0.000423728813685,0.003571428571436,2 -8442,8455,8457,8470,-0.176785714285631,-0.057475786925049,-0.178571428571347,-0.051331719128505,-0.174999999999916,-0.050847457627171,-0.176785714285631,-0.044703389830627,0.000544794188982,-0.003571428571431,-0.012832929782071,-0.000000000000000,0.012711864406773,0.000000000000000,-0.000423728813684,0.003571428571431,2 -8443,8456,8458,8471,-0.173214285714214,-0.056930992736069,-0.174999999999916,-0.050847457627171,-0.171428571428512,-0.050363196125842,-0.173214285714214,-0.044279661016944,0.000544794188978,-0.003571428571404,-0.012711864406773,-0.000000000000000,0.012590799031477,0.000000000000000,-0.000423728813681,0.003571428571404,2 -8444,8457,8459,8472,-0.169642857142808,-0.056386198547091,-0.171428571428512,-0.050363196125842,-0.167857142857105,-0.049878934624512,-0.169642857142809,-0.043855932203263,0.000544794188978,-0.003571428571407,-0.012590799031477,-0.000000000000000,0.012469733656180,0.000000000000000,-0.000423728813682,0.003571428571407,2 -8445,8458,8460,8473,-0.166071428571395,-0.055841404358112,-0.167857142857105,-0.049878934624512,-0.164285714285684,-0.049394673123180,-0.166071428571395,-0.043432203389581,0.000544794188980,-0.003571428571421,-0.012469733656180,-0.000000000000000,0.012348668280882,0.000000000000000,-0.000423728813683,0.003571428571421,2 -8446,8459,8461,8474,-0.162499999999982,-0.055296610169132,-0.164285714285684,-0.049394673123180,-0.160714285714279,-0.048910411621851,-0.162499999999982,-0.043008474575898,0.000544794188978,-0.003571428571405,-0.012348668280882,-0.000000000000000,0.012227602905586,0.000000000000000,-0.000423728813681,0.003571428571405,2 -8447,8460,8462,8475,-0.158928571428564,-0.054751815980153,-0.160714285714279,-0.048910411621851,-0.157142857142850,-0.048426150120518,-0.158928571428564,-0.042584745762216,0.000544794188982,-0.003571428571429,-0.012227602905586,-0.000000000000000,0.012106537530288,0.000000000000000,-0.000423728813684,0.003571428571429,2 -8448,8461,8463,8476,-0.155357142857136,-0.054207021791171,-0.157142857142850,-0.048426150120518,-0.153571428571423,-0.047941888619185,-0.155357142857136,-0.042161016948532,0.000544794188981,-0.003571428571427,-0.012106537530288,-0.000000000000000,0.011985472154990,0.000000000000000,-0.000423728813684,0.003571428571427,2 -8449,8462,8477,10183,-0.151785714285711,-0.053662227602190,-0.153571428571423,-0.047941888619185,-0.151785714285711,-0.041737288134848,-0.150000000000000,-0.047457627117853,0.000544794188981,-0.003571428571423,-0.011985472154990,-0.000000000000000,-0.000423728813683,0.003571428571423,0.011864406779693,-0.000000000000000,2 -2268,8450,8465,8478,-0.200000000000000,-0.040677966102653,-0.198214285714291,-0.047245762712741,-0.196428571428583,-0.040314769976619,-0.198214285714291,-0.033746973366530,-0.013559322033860,-0.000000000000000,0.000423728813683,-0.003571428571417,0.013438256658562,0.000000000000000,-0.000302663438385,0.003571428571417,2 -8451,8464,8466,8479,-0.194642857142864,-0.046822033899057,-0.196428571428583,-0.040314769976619,-0.192857142857145,-0.039951573850583,-0.194642857142864,-0.033444309928144,0.000423728813685,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.000302663438387,0.003571428571438,2 -8452,8465,8467,8480,-0.191071428571419,-0.046398305085372,-0.192857142857145,-0.039951573850583,-0.189285714285694,-0.039588377724545,-0.191071428571419,-0.033141646489757,0.000423728813687,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907966,0.000000000000000,-0.000302663438388,0.003571428571451,2 -8453,8466,8468,8481,-0.187499999999963,-0.045974576271684,-0.189285714285694,-0.039588377724545,-0.185714285714231,-0.039225181598507,-0.187499999999963,-0.032838983051368,0.000423728813688,-0.003571428571462,-0.013196125907966,-0.000000000000000,0.013075060532667,0.000000000000000,-0.000302663438389,0.003571428571462,2 -8454,8467,8469,8482,-0.183928571428507,-0.045550847457997,-0.185714285714231,-0.039225181598507,-0.182142857142783,-0.038861985472470,-0.183928571428507,-0.032536319612980,0.000423728813686,-0.003571428571449,-0.013075060532667,-0.000000000000000,0.012953995157368,0.000000000000000,-0.000302663438388,0.003571428571449,2 -8455,8468,8470,8483,-0.180357142857065,-0.045127118644311,-0.182142857142783,-0.038861985472470,-0.178571428571347,-0.038498789346434,-0.180357142857065,-0.032233656174592,0.000423728813685,-0.003571428571436,-0.012953995157368,-0.000000000000000,0.012832929782070,0.000000000000000,-0.000302663438387,0.003571428571436,2 -8456,8469,8471,8484,-0.176785714285631,-0.044703389830627,-0.178571428571347,-0.038498789346434,-0.174999999999916,-0.038135593220399,-0.176785714285631,-0.031930992736206,0.000423728813684,-0.003571428571431,-0.012832929782070,-0.000000000000000,0.012711864406772,0.000000000000000,-0.000302663438386,0.003571428571431,2 -8457,8470,8472,8485,-0.173214285714214,-0.044279661016944,-0.174999999999916,-0.038135593220399,-0.171428571428512,-0.037772397094366,-0.173214285714214,-0.031628329297820,0.000423728813681,-0.003571428571404,-0.012711864406772,-0.000000000000000,0.012590799031475,-0.000000000000000,-0.000302663438384,0.003571428571404,2 -8458,8471,8473,8486,-0.169642857142809,-0.043855932203263,-0.171428571428512,-0.037772397094366,-0.167857142857105,-0.037409200968333,-0.169642857142808,-0.031325665859436,0.000423728813682,-0.003571428571407,-0.012590799031475,0.000000000000000,0.012469733656178,0.000000000000000,-0.000302663438384,0.003571428571407,2 -8459,8472,8474,8487,-0.166071428571395,-0.043432203389581,-0.167857142857105,-0.037409200968333,-0.164285714285684,-0.037046004842299,-0.166071428571395,-0.031023002421051,0.000423728813683,-0.003571428571421,-0.012469733656178,-0.000000000000000,0.012348668280881,0.000000000000000,-0.000302663438386,0.003571428571421,2 -8460,8473,8475,8488,-0.162499999999982,-0.043008474575898,-0.164285714285684,-0.037046004842299,-0.160714285714279,-0.036682808716266,-0.162499999999982,-0.030720338982666,0.000423728813681,-0.003571428571405,-0.012348668280881,-0.000000000000000,0.012227602905584,0.000000000000000,-0.000302663438384,0.003571428571405,2 -8461,8474,8476,8489,-0.158928571428564,-0.042584745762216,-0.160714285714279,-0.036682808716266,-0.157142857142850,-0.036319612590231,-0.158928571428564,-0.030417675544281,0.000423728813684,-0.003571428571429,-0.012227602905584,-0.000000000000000,0.012106537530286,0.000000000000000,-0.000302663438386,0.003571428571429,2 -8462,8475,8477,8490,-0.155357142857136,-0.042161016948532,-0.157142857142850,-0.036319612590231,-0.153571428571423,-0.035956416464196,-0.155357142857136,-0.030115012105895,0.000423728813684,-0.003571428571427,-0.012106537530286,-0.000000000000000,0.011985472154988,-0.000000000000000,-0.000302663438386,0.003571428571427,2 -8463,8476,8491,10184,-0.151785714285711,-0.041737288134848,-0.153571428571423,-0.035956416464196,-0.151785714285711,-0.029812348667509,-0.150000000000000,-0.035593220338161,0.000423728813683,-0.003571428571423,-0.011985472154988,0.000000000000000,-0.000302663438386,0.003571428571423,0.011864406779691,-0.000000000000000,2 -2269,8464,8479,8492,-0.200000000000000,-0.027118644068793,-0.198214285714291,-0.033746973366530,-0.196428571428583,-0.026876513318056,-0.198214285714291,-0.020248184020319,-0.013559322033860,-0.000000000000000,0.000302663438385,-0.003571428571417,0.013438256658563,0.000000000000000,-0.000181598063088,0.003571428571417,2 -8465,8478,8480,8493,-0.194642857142864,-0.033444309928144,-0.196428571428583,-0.026876513318056,-0.192857142857145,-0.026634382567318,-0.194642857142864,-0.020066585957230,0.000302663438387,-0.003571428571438,-0.013438256658563,-0.000000000000000,0.013317191283265,0.000000000000000,-0.000181598063089,0.003571428571438,2 -8466,8479,8481,8494,-0.191071428571419,-0.033141646489757,-0.192857142857145,-0.026634382567318,-0.189285714285694,-0.026392251816579,-0.191071428571419,-0.019884987894141,0.000302663438388,-0.003571428571451,-0.013317191283265,-0.000000000000000,0.013196125907967,-0.000000000000000,-0.000181598063090,0.003571428571451,2 -8467,8480,8482,8495,-0.187499999999963,-0.032838983051368,-0.189285714285694,-0.026392251816579,-0.185714285714231,-0.026150121065839,-0.187499999999963,-0.019703389831050,0.000302663438389,-0.003571428571462,-0.013196125907967,0.000000000000000,0.013075060532669,0.000000000000000,-0.000181598063091,0.003571428571462,2 -8468,8481,8483,8496,-0.183928571428507,-0.032536319612980,-0.185714285714231,-0.026150121065839,-0.182142857142783,-0.025907990315100,-0.183928571428507,-0.019521791767960,0.000302663438388,-0.003571428571449,-0.013075060532669,-0.000000000000000,0.012953995157371,-0.000000000000000,-0.000181598063090,0.003571428571449,2 -8469,8482,8484,8497,-0.180357142857065,-0.032233656174592,-0.182142857142783,-0.025907990315100,-0.178571428571347,-0.025665859564362,-0.180357142857065,-0.019340193704870,0.000302663438387,-0.003571428571436,-0.012953995157371,0.000000000000000,0.012832929782073,0.000000000000000,-0.000181598063089,0.003571428571436,2 -8470,8483,8485,8498,-0.176785714285631,-0.031930992736206,-0.178571428571347,-0.025665859564362,-0.174999999999916,-0.025423728813624,-0.176785714285631,-0.019158595641781,0.000302663438386,-0.003571428571431,-0.012832929782073,-0.000000000000000,0.012711864406776,0.000000000000000,-0.000181598063089,0.003571428571431,2 -8471,8484,8486,8499,-0.173214285714214,-0.031628329297820,-0.174999999999916,-0.025423728813624,-0.171428571428512,-0.025181598062889,-0.173214285714214,-0.018976997578693,0.000302663438384,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031479,0.000000000000000,-0.000181598063088,0.003571428571404,2 -8472,8485,8487,8500,-0.169642857142808,-0.031325665859436,-0.171428571428512,-0.025181598062889,-0.167857142857105,-0.024939467312152,-0.169642857142808,-0.018795399515605,0.000302663438384,-0.003571428571407,-0.012590799031479,-0.000000000000000,0.012469733656183,0.000000000000000,-0.000181598063088,0.003571428571407,2 -8473,8486,8488,8501,-0.166071428571395,-0.031023002421051,-0.167857142857105,-0.024939467312152,-0.164285714285684,-0.024697336561415,-0.166071428571395,-0.018613801452517,0.000302663438386,-0.003571428571421,-0.012469733656183,-0.000000000000000,0.012348668280885,0.000000000000000,-0.000181598063088,0.003571428571421,2 -8474,8487,8489,8502,-0.162499999999982,-0.030720338982666,-0.164285714285684,-0.024697336561415,-0.160714285714279,-0.024455205810679,-0.162499999999982,-0.018432203389429,0.000302663438384,-0.003571428571405,-0.012348668280885,-0.000000000000000,0.012227602905589,0.000000000000000,-0.000181598063088,0.003571428571405,2 -8475,8488,8490,8503,-0.158928571428564,-0.030417675544281,-0.160714285714279,-0.024455205810679,-0.157142857142850,-0.024213075059942,-0.158928571428565,-0.018250605326340,0.000302663438386,-0.003571428571429,-0.012227602905589,-0.000000000000000,0.012106537530292,0.000000000000000,-0.000181598063089,0.003571428571429,2 -8476,8489,8491,8504,-0.155357142857136,-0.030115012105895,-0.157142857142850,-0.024213075059942,-0.153571428571423,-0.023970944309204,-0.155357142857136,-0.018069007263252,0.000302663438386,-0.003571428571427,-0.012106537530292,-0.000000000000000,0.011985472154994,0.000000000000000,-0.000181598063089,0.003571428571427,2 -8477,8490,8505,10185,-0.151785714285711,-0.029812348667509,-0.153571428571423,-0.023970944309204,-0.151785714285711,-0.017887409200163,-0.150000000000000,-0.023728813558467,0.000302663438386,-0.003571428571423,-0.011985472154994,-0.000000000000000,-0.000181598063089,0.003571428571423,0.011864406779697,-0.000000000000000,2 -2270,8478,8493,8506,-0.200000000000000,-0.013559322034933,-0.198214285714291,-0.020248184020319,-0.196428571428583,-0.013438256659494,-0.198214285714291,-0.006749394674108,-0.013559322033860,-0.000000000000000,0.000181598063088,-0.003571428571417,0.013438256658562,0.000000000000000,-0.000060532687791,0.003571428571417,2 -8479,8492,8494,8507,-0.194642857142864,-0.020066585957230,-0.196428571428583,-0.013438256659494,-0.192857142857145,-0.013317191284054,-0.194642857142864,-0.006688861986318,0.000181598063089,-0.003571428571438,-0.013438256658562,-0.000000000000000,0.013317191283264,0.000000000000000,-0.000060532687791,0.003571428571438,2 -8480,8493,8495,8508,-0.191071428571419,-0.019884987894141,-0.192857142857145,-0.013317191284054,-0.189285714285694,-0.013196125908613,-0.191071428571419,-0.006628329298526,0.000181598063090,-0.003571428571451,-0.013317191283264,-0.000000000000000,0.013196125907965,0.000000000000000,-0.000060532687791,0.003571428571451,2 -8481,8494,8496,8509,-0.187499999999963,-0.019703389831050,-0.189285714285694,-0.013196125908613,-0.185714285714231,-0.013075060533172,-0.187499999999963,-0.006567796610735,0.000181598063091,-0.003571428571462,-0.013196125907965,-0.000000000000000,0.013075060532665,0.000000000000000,-0.000060532687791,0.003571428571462,2 -8482,8495,8497,8510,-0.183928571428507,-0.019521791767960,-0.185714285714231,-0.013075060533172,-0.182142857142783,-0.012953995157732,-0.183928571428507,-0.006507263922944,0.000181598063090,-0.003571428571449,-0.013075060532665,-0.000000000000000,0.012953995157367,0.000000000000000,-0.000060532687791,0.003571428571449,2 -8483,8496,8498,8511,-0.180357142857065,-0.019340193704870,-0.182142857142783,-0.012953995157732,-0.178571428571347,-0.012832929782292,-0.180357142857065,-0.006446731235153,0.000181598063089,-0.003571428571436,-0.012953995157367,-0.000000000000000,0.012832929782068,0.000000000000000,-0.000060532687791,0.003571428571436,2 -8484,8497,8499,8512,-0.176785714285631,-0.019158595641781,-0.178571428571347,-0.012832929782292,-0.174999999999916,-0.012711864406852,-0.176785714285631,-0.006386198547362,0.000181598063089,-0.003571428571431,-0.012832929782068,-0.000000000000000,0.012711864406770,-0.000000000000000,-0.000060532687791,0.003571428571431,2 -8485,8498,8500,8513,-0.173214285714214,-0.018976997578693,-0.174999999999916,-0.012711864406852,-0.171428571428512,-0.012590799031413,-0.173214285714214,-0.006325665859571,0.000181598063088,-0.003571428571404,-0.012711864406770,0.000000000000000,0.012590799031473,0.000000000000000,-0.000060532687790,0.003571428571404,2 -8486,8499,8501,8514,-0.169642857142808,-0.018795399515605,-0.171428571428512,-0.012590799031413,-0.167857142857105,-0.012469733655973,-0.169642857142808,-0.006265133171781,0.000181598063088,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656176,0.000000000000000,-0.000060532687790,0.003571428571407,2 -8487,8500,8502,8515,-0.166071428571395,-0.018613801452517,-0.167857142857105,-0.012469733655973,-0.164285714285684,-0.012348668280534,-0.166071428571395,-0.006204600483990,0.000181598063088,-0.003571428571421,-0.012469733656176,-0.000000000000000,0.012348668280878,0.000000000000000,-0.000060532687791,0.003571428571421,2 -8488,8501,8503,8516,-0.162499999999982,-0.018432203389429,-0.164285714285684,-0.012348668280534,-0.160714285714279,-0.012227602905095,-0.162499999999982,-0.006144067796200,0.000181598063088,-0.003571428571405,-0.012348668280878,-0.000000000000000,0.012227602905580,0.000000000000000,-0.000060532687790,0.003571428571405,2 -8489,8502,8504,8517,-0.158928571428565,-0.018250605326340,-0.160714285714279,-0.012227602905095,-0.157142857142850,-0.012106537529655,-0.158928571428565,-0.006083535108409,0.000181598063089,-0.003571428571429,-0.012227602905580,-0.000000000000000,0.012106537530282,0.000000000000000,-0.000060532687791,0.003571428571429,2 -8490,8503,8505,8518,-0.155357142857136,-0.018069007263252,-0.157142857142850,-0.012106537529655,-0.153571428571423,-0.011985472154215,-0.155357142857136,-0.006023002420618,0.000181598063089,-0.003571428571427,-0.012106537530282,-0.000000000000000,0.011985472154984,0.000000000000000,-0.000060532687791,0.003571428571427,2 -8491,8504,8519,10186,-0.151785714285711,-0.017887409200163,-0.153571428571423,-0.011985472154215,-0.151785714285711,-0.005962469732828,-0.150000000000000,-0.011864406778775,0.000181598063089,-0.003571428571423,-0.011985472154984,-0.000000000000000,-0.000060532687791,0.003571428571423,0.011864406779686,-0.000000000000000,2 -2271,8492,8507,8520,-0.200000000000000,-0.000000000001056,-0.198214285714291,-0.006749394674108,-0.196428571428583,-0.000000000000916,-0.198214285714291,0.006749394672136,-0.013559322033895,-0.000000000000000,0.000060532687791,-0.003571428571417,0.013438256658594,0.000000000000000,0.000060532687511,0.003571428571417,2 -8493,8506,8508,8521,-0.194642857142864,-0.006688861986318,-0.196428571428583,-0.000000000000916,-0.192857142857145,-0.000000000000776,-0.194642857142864,0.006688861984625,0.000060532687791,-0.003571428571438,-0.013438256658594,-0.000000000000000,0.013317191283292,0.000000000000000,0.000060532687511,0.003571428571438,2 -8494,8507,8509,8522,-0.191071428571419,-0.006628329298526,-0.192857142857145,-0.000000000000776,-0.189285714285694,-0.000000000000636,-0.191071428571419,0.006628329297114,0.000060532687791,-0.003571428571451,-0.013317191283292,-0.000000000000000,0.013196125907989,0.000000000000000,0.000060532687511,0.003571428571451,2 -8495,8508,8510,8523,-0.187499999999963,-0.006567796610735,-0.189285714285694,-0.000000000000636,-0.185714285714231,-0.000000000000496,-0.187499999999963,0.006567796609603,0.000060532687791,-0.003571428571462,-0.013196125907989,-0.000000000000000,0.013075060532687,0.000000000000000,0.000060532687511,0.003571428571462,2 -8496,8509,8511,8524,-0.183928571428507,-0.006507263922944,-0.185714285714231,-0.000000000000496,-0.182142857142783,-0.000000000000356,-0.183928571428507,0.006507263922092,0.000060532687791,-0.003571428571449,-0.013075060532687,-0.000000000000000,0.012953995157385,0.000000000000000,0.000060532687511,0.003571428571449,2 -8497,8510,8512,8525,-0.180357142857065,-0.006446731235153,-0.182142857142783,-0.000000000000356,-0.178571428571347,-0.000000000000216,-0.180357142857065,0.006446731234581,0.000060532687791,-0.003571428571436,-0.012953995157385,-0.000000000000000,0.012832929782083,-0.000000000000000,0.000060532687511,0.003571428571436,2 -8498,8511,8513,8526,-0.176785714285631,-0.006386198547362,-0.178571428571347,-0.000000000000216,-0.174999999999916,-0.000000000000076,-0.176785714285631,0.006386198547070,0.000060532687791,-0.003571428571431,-0.012832929782083,0.000000000000000,0.012711864406781,0.000000000000000,0.000060532687511,0.003571428571431,2 -8499,8512,8514,8527,-0.173214285714214,-0.006325665859571,-0.174999999999916,-0.000000000000076,-0.171428571428512,0.000000000000064,-0.173214285714214,0.006325665859559,0.000060532687790,-0.003571428571404,-0.012711864406781,-0.000000000000000,0.012590799031480,0.000000000000000,0.000060532687510,0.003571428571404,2 -8500,8513,8515,8528,-0.169642857142808,-0.006265133171781,-0.171428571428512,0.000000000000064,-0.167857142857105,0.000000000000204,-0.169642857142808,0.006265133172049,0.000060532687790,-0.003571428571407,-0.012590799031480,-0.000000000000000,0.012469733656179,0.000000000000000,0.000060532687510,0.003571428571407,2 -8501,8514,8516,8529,-0.166071428571395,-0.006204600483990,-0.167857142857105,0.000000000000204,-0.164285714285684,0.000000000000344,-0.166071428571395,0.006204600484538,0.000060532687791,-0.003571428571421,-0.012469733656179,-0.000000000000000,0.012348668280878,0.000000000000000,0.000060532687511,0.003571428571421,2 -8502,8515,8517,8530,-0.162499999999982,-0.006144067796200,-0.164285714285684,0.000000000000344,-0.160714285714279,0.000000000000484,-0.162499999999982,0.006144067797028,0.000060532687790,-0.003571428571405,-0.012348668280878,-0.000000000000000,0.012227602905577,-0.000000000000000,0.000060532687510,0.003571428571405,2 -8503,8516,8518,8531,-0.158928571428565,-0.006083535108409,-0.160714285714279,0.000000000000484,-0.157142857142850,0.000000000000624,-0.158928571428564,0.006083535109517,0.000060532687791,-0.003571428571429,-0.012227602905577,0.000000000000000,0.012106537530276,0.000000000000000,0.000060532687511,0.003571428571429,2 -8504,8517,8519,8532,-0.155357142857136,-0.006023002420618,-0.157142857142850,0.000000000000624,-0.153571428571423,0.000000000000764,-0.155357142857136,0.006023002422007,0.000060532687791,-0.003571428571427,-0.012106537530276,-0.000000000000000,0.011985472154974,0.000000000000000,0.000060532687511,0.003571428571427,2 -8505,8518,8533,10187,-0.151785714285711,-0.005962469732828,-0.153571428571423,0.000000000000764,-0.151785714285711,0.005962469734496,-0.150000000000000,0.000000000000904,0.000060532687791,-0.003571428571423,-0.011985472154974,-0.000000000000000,0.000060532687511,0.003571428571423,0.011864406779673,-0.000000000000000,2 -2272,8506,8521,8534,-0.200000000000000,0.013559322032862,-0.198214285714291,0.006749394672136,-0.196428571428583,0.013438256657697,-0.198214285714291,0.020248184018423,-0.013559322033941,-0.000000000000000,-0.000060532687511,-0.003571428571417,0.013438256658633,0.000000000000000,0.000181598062818,0.003571428571417,2 -8507,8520,8522,8535,-0.194642857142864,0.006688861984625,-0.196428571428583,0.013438256657697,-0.192857142857145,0.013317191282532,-0.194642857142864,0.020066585955604,-0.000060532687511,-0.003571428571438,-0.013438256658633,-0.000000000000000,0.013317191283325,0.000000000000000,0.000181598062819,0.003571428571438,2 -8508,8521,8523,8536,-0.191071428571419,0.006628329297114,-0.192857142857145,0.013317191282532,-0.189285714285694,0.013196125907367,-0.191071428571419,0.019884987892785,-0.000060532687511,-0.003571428571451,-0.013317191283325,-0.000000000000000,0.013196125908016,0.000000000000000,0.000181598062820,0.003571428571451,2 -8509,8522,8524,8537,-0.187499999999963,0.006567796609603,-0.189285714285694,0.013196125907367,-0.185714285714231,0.013075060532201,-0.187499999999963,0.019703389829964,-0.000060532687511,-0.003571428571462,-0.013196125908016,-0.000000000000000,0.013075060532707,0.000000000000000,0.000181598062821,0.003571428571462,2 -8510,8523,8525,8538,-0.183928571428507,0.006507263922092,-0.185714285714231,0.013075060532201,-0.182142857142783,0.012953995157035,-0.183928571428507,0.019521791767144,-0.000060532687511,-0.003571428571449,-0.013075060532707,-0.000000000000000,0.012953995157398,0.000000000000000,0.000181598062820,0.003571428571449,2 -8511,8524,8526,8539,-0.180357142857065,0.006446731234581,-0.182142857142783,0.012953995157035,-0.178571428571347,0.012832929781870,-0.180357142857065,0.019340193704324,-0.000060532687511,-0.003571428571436,-0.012953995157398,-0.000000000000000,0.012832929782089,0.000000000000000,0.000181598062819,0.003571428571436,2 -8512,8525,8527,8540,-0.176785714285631,0.006386198547070,-0.178571428571347,0.012832929781870,-0.174999999999916,0.012711864406705,-0.176785714285631,0.019158595641505,-0.000060532687511,-0.003571428571431,-0.012832929782089,-0.000000000000000,0.012711864406781,0.000000000000000,0.000181598062819,0.003571428571431,2 -8513,8526,8528,8541,-0.173214285714214,0.006325665859559,-0.174999999999916,0.012711864406705,-0.171428571428512,0.012590799031541,-0.173214285714214,0.018976997578687,-0.000060532687510,-0.003571428571404,-0.012711864406781,-0.000000000000000,0.012590799031474,0.000000000000000,0.000181598062818,0.003571428571404,2 -8514,8527,8529,8542,-0.169642857142808,0.006265133172049,-0.171428571428512,0.012590799031541,-0.167857142857105,0.012469733656377,-0.169642857142808,0.018795399515869,-0.000060532687510,-0.003571428571407,-0.012590799031474,-0.000000000000000,0.012469733656166,0.000000000000000,0.000181598062818,0.003571428571407,2 -8515,8528,8530,8543,-0.166071428571395,0.006204600484538,-0.167857142857105,0.012469733656377,-0.164285714285684,0.012348668281212,-0.166071428571395,0.018613801453051,-0.000060532687511,-0.003571428571421,-0.012469733656166,-0.000000000000000,0.012348668280858,0.000000000000000,0.000181598062819,0.003571428571421,2 -8516,8529,8531,8544,-0.162499999999982,0.006144067797028,-0.164285714285684,0.012348668281212,-0.160714285714279,0.012227602906048,-0.162499999999982,0.018432203390233,-0.000060532687510,-0.003571428571405,-0.012348668280858,-0.000000000000000,0.012227602905551,0.000000000000000,0.000181598062818,0.003571428571405,2 -8517,8530,8532,8545,-0.158928571428564,0.006083535109517,-0.160714285714279,0.012227602906048,-0.157142857142850,0.012106537530883,-0.158928571428564,0.018250605327414,-0.000060532687511,-0.003571428571429,-0.012227602905551,-0.000000000000000,0.012106537530243,0.000000000000000,0.000181598062819,0.003571428571429,2 -8518,8531,8533,8546,-0.155357142857136,0.006023002422007,-0.157142857142850,0.012106537530883,-0.153571428571423,0.011985472155719,-0.155357142857136,0.018069007264595,-0.000060532687511,-0.003571428571427,-0.012106537530243,-0.000000000000000,0.011985472154935,0.000000000000000,0.000181598062819,0.003571428571427,2 -8519,8532,8547,10188,-0.151785714285711,0.005962469734496,-0.153571428571423,0.011985472155719,-0.151785714285711,0.017887409201777,-0.150000000000000,0.011864406780554,-0.000060532687511,-0.003571428571423,-0.011985472154935,-0.000000000000000,0.000181598062819,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2273,8520,8535,8548,-0.200000000000000,0.027118644066798,-0.198214285714291,0.020248184018423,-0.196428571428583,0.026876513316326,-0.198214285714291,0.033746973364700,-0.013559322033930,-0.000000000000000,-0.000181598062818,-0.003571428571417,0.013438256658623,0.000000000000000,0.000302663438125,0.003571428571417,2 -8521,8534,8536,8549,-0.194642857142864,0.020066585955604,-0.196428571428583,0.026876513316326,-0.192857142857145,0.026634382565852,-0.194642857142864,0.033444309926574,-0.000181598062819,-0.003571428571438,-0.013438256658623,-0.000000000000000,0.013317191283315,0.000000000000000,0.000302663438127,0.003571428571438,2 -8522,8535,8537,8550,-0.191071428571419,0.019884987892785,-0.192857142857145,0.026634382565852,-0.189285714285694,0.026392251815378,-0.191071428571419,0.033141646488446,-0.000181598062820,-0.003571428571451,-0.013317191283315,-0.000000000000000,0.013196125908007,0.000000000000000,0.000302663438128,0.003571428571451,2 -8523,8536,8538,8551,-0.187499999999963,0.019703389829964,-0.189285714285694,0.026392251815378,-0.185714285714231,0.026150121064903,-0.187499999999963,0.032838983050317,-0.000181598062821,-0.003571428571462,-0.013196125908007,-0.000000000000000,0.013075060532699,0.000000000000000,0.000302663438129,0.003571428571462,2 -8524,8537,8539,8552,-0.183928571428507,0.019521791767144,-0.185714285714231,0.026150121064903,-0.182142857142783,0.025907990314429,-0.183928571428507,0.032536319612189,-0.000181598062820,-0.003571428571449,-0.013075060532699,-0.000000000000000,0.012953995157391,0.000000000000000,0.000302663438128,0.003571428571449,2 -8525,8538,8540,8553,-0.180357142857065,0.019340193704324,-0.182142857142783,0.025907990314429,-0.178571428571347,0.025665859563956,-0.180357142857065,0.032233656174061,-0.000181598062819,-0.003571428571436,-0.012953995157391,-0.000000000000000,0.012832929782083,0.000000000000000,0.000302663438127,0.003571428571436,2 -8526,8539,8541,8554,-0.176785714285631,0.019158595641505,-0.178571428571347,0.025665859563956,-0.174999999999916,0.025423728813483,-0.176785714285631,0.031930992735934,-0.000181598062819,-0.003571428571431,-0.012832929782083,-0.000000000000000,0.012711864406776,0.000000000000000,0.000302663438127,0.003571428571431,2 -8527,8540,8542,8555,-0.173214285714214,0.018976997578687,-0.174999999999916,0.025423728813483,-0.171428571428512,0.025181598063012,-0.173214285714214,0.031628329297809,-0.000181598062818,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031469,0.000000000000000,0.000302663438124,0.003571428571404,2 -8528,8541,8543,8556,-0.169642857142808,0.018795399515869,-0.171428571428512,0.025181598063012,-0.167857142857105,0.024939467312541,-0.169642857142808,0.031325665859685,-0.000181598062818,-0.003571428571407,-0.012590799031469,-0.000000000000000,0.012469733656162,0.000000000000000,0.000302663438125,0.003571428571407,2 -8529,8542,8544,8557,-0.166071428571395,0.018613801453051,-0.167857142857105,0.024939467312541,-0.164285714285684,0.024697336562069,-0.166071428571395,0.031023002421560,-0.000181598062819,-0.003571428571421,-0.012469733656162,-0.000000000000000,0.012348668280855,0.000000000000000,0.000302663438126,0.003571428571421,2 -8530,8543,8545,8558,-0.162499999999982,0.018432203390233,-0.164285714285684,0.024697336562069,-0.160714285714279,0.024455205811598,-0.162499999999982,0.030720338983435,-0.000181598062818,-0.003571428571405,-0.012348668280855,-0.000000000000000,0.012227602905549,0.000000000000000,0.000302663438124,0.003571428571405,2 -8531,8544,8546,8559,-0.158928571428564,0.018250605327414,-0.160714285714279,0.024455205811598,-0.157142857142850,0.024213075061125,-0.158928571428564,0.030417675545309,-0.000181598062819,-0.003571428571429,-0.012227602905549,-0.000000000000000,0.012106537530241,0.000000000000000,0.000302663438126,0.003571428571429,2 -8532,8545,8547,8560,-0.155357142857136,0.018069007264595,-0.157142857142850,0.024213075061125,-0.153571428571423,0.023970944310653,-0.155357142857136,0.030115012107183,-0.000181598062819,-0.003571428571427,-0.012106537530241,-0.000000000000000,0.011985472154934,-0.000000000000000,0.000302663438126,0.003571428571427,2 -8533,8546,8561,10189,-0.151785714285711,0.017887409201777,-0.153571428571423,0.023970944310653,-0.151785714285711,0.029812348669057,-0.150000000000000,0.023728813560181,-0.000181598062819,-0.003571428571423,-0.011985472154934,0.000000000000000,0.000302663438126,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2274,8534,8549,8562,-0.200000000000000,0.040677966100731,-0.198214285714291,0.033746973364700,-0.196428571428583,0.040314769974952,-0.198214285714291,0.047245762710983,-0.013559322033937,-0.000000000000000,-0.000302663438125,-0.003571428571417,0.013438256658629,0.000000000000000,0.000423728813433,0.003571428571417,2 -8535,8548,8550,8563,-0.194642857142864,0.033444309926574,-0.196428571428583,0.040314769974952,-0.192857142857145,0.039951573849171,-0.194642857142864,0.046822033897549,-0.000302663438127,-0.003571428571438,-0.013438256658629,-0.000000000000000,0.013317191283321,0.000000000000000,0.000423728813435,0.003571428571438,2 -8536,8549,8551,8564,-0.191071428571419,0.033141646488446,-0.192857142857145,0.039951573849171,-0.189285714285694,0.039588377723388,-0.191071428571419,0.046398305084113,-0.000302663438128,-0.003571428571451,-0.013317191283321,-0.000000000000000,0.013196125908012,0.000000000000000,0.000423728813437,0.003571428571451,2 -8537,8550,8552,8565,-0.187499999999963,0.032838983050317,-0.189285714285694,0.039588377723388,-0.185714285714231,0.039225181597604,-0.187499999999963,0.045974576270675,-0.000302663438129,-0.003571428571462,-0.013196125908012,-0.000000000000000,0.013075060532703,0.000000000000000,0.000423728813438,0.003571428571462,2 -8538,8551,8553,8566,-0.183928571428507,0.032536319612189,-0.185714285714231,0.039225181597604,-0.182142857142783,0.038861985471822,-0.183928571428507,0.045550847457238,-0.000302663438128,-0.003571428571449,-0.013075060532703,-0.000000000000000,0.012953995157395,0.000000000000000,0.000423728813437,0.003571428571449,2 -8539,8552,8554,8567,-0.180357142857065,0.032233656174061,-0.182142857142783,0.038861985471822,-0.178571428571347,0.038498789346041,-0.180357142857065,0.045127118643802,-0.000302663438127,-0.003571428571436,-0.012953995157395,-0.000000000000000,0.012832929782087,0.000000000000000,0.000423728813435,0.003571428571436,2 -8540,8553,8555,8568,-0.176785714285631,0.031930992735934,-0.178571428571347,0.038498789346041,-0.174999999999916,0.038135593220261,-0.176785714285631,0.044703389830367,-0.000302663438127,-0.003571428571431,-0.012832929782087,-0.000000000000000,0.012711864406779,0.000000000000000,0.000423728813434,0.003571428571431,2 -8541,8554,8556,8569,-0.173214285714214,0.031628329297809,-0.174999999999916,0.038135593220261,-0.171428571428512,0.037772397094483,-0.173214285714214,0.044279661016934,-0.000302663438124,-0.003571428571404,-0.012711864406779,-0.000000000000000,0.012590799031472,0.000000000000000,0.000423728813431,0.003571428571404,2 -8542,8555,8557,8570,-0.169642857142808,0.031325665859685,-0.171428571428512,0.037772397094483,-0.167857142857105,0.037409200968705,-0.169642857142809,0.043855932203503,-0.000302663438125,-0.003571428571407,-0.012590799031472,-0.000000000000000,0.012469733656165,0.000000000000000,0.000423728813432,0.003571428571407,2 -8543,8556,8558,8571,-0.166071428571395,0.031023002421560,-0.167857142857105,0.037409200968705,-0.164285714285684,0.037046004842925,-0.166071428571395,0.043432203390070,-0.000302663438126,-0.003571428571421,-0.012469733656165,-0.000000000000000,0.012348668280857,0.000000000000000,0.000423728813433,0.003571428571421,2 -8544,8557,8559,8572,-0.162499999999982,0.030720338983435,-0.164285714285684,0.037046004842925,-0.160714285714279,0.036682808717147,-0.162499999999982,0.043008474576638,-0.000302663438124,-0.003571428571405,-0.012348668280857,-0.000000000000000,0.012227602905550,0.000000000000000,0.000423728813431,0.003571428571405,2 -8545,8558,8560,8573,-0.158928571428564,0.030417675545309,-0.160714285714279,0.036682808717147,-0.157142857142850,0.036319612591367,-0.158928571428564,0.042584745763205,-0.000302663438126,-0.003571428571429,-0.012227602905550,-0.000000000000000,0.012106537530242,0.000000000000000,0.000423728813434,0.003571428571429,2 -8546,8559,8561,8574,-0.155357142857136,0.030115012107183,-0.157142857142850,0.036319612591367,-0.153571428571423,0.035956416465587,-0.155357142857136,0.042161016949771,-0.000302663438126,-0.003571428571427,-0.012106537530242,-0.000000000000000,0.011985472154934,0.000000000000000,0.000423728813434,0.003571428571427,2 -8547,8560,8575,10190,-0.151785714285711,0.029812348669057,-0.153571428571423,0.035956416465587,-0.151785714285711,0.041737288136337,-0.150000000000000,0.035593220339807,-0.000302663438126,-0.003571428571423,-0.011985472154934,-0.000000000000000,0.000423728813433,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2275,8548,8563,8576,-0.200000000000000,0.054237288134667,-0.198214285714291,0.047245762710983,-0.196428571428583,0.053753026633580,-0.198214285714291,0.060744552057264,-0.013559322033935,-0.000000000000000,-0.000423728813433,-0.003571428571417,0.013438256658627,0.000000000000000,0.000544794188740,0.003571428571417,2 -8549,8562,8564,8577,-0.194642857142864,0.046822033897549,-0.196428571428583,0.053753026633580,-0.192857142857145,0.053268765132491,-0.194642857142864,0.060199757868522,-0.000423728813435,-0.003571428571438,-0.013438256658627,-0.000000000000000,0.013317191283319,0.000000000000000,0.000544794188743,0.003571428571438,2 -8550,8563,8565,8578,-0.191071428571419,0.046398305084113,-0.192857142857145,0.053268765132491,-0.189285714285694,0.052784503631400,-0.191071428571419,0.059654963679778,-0.000423728813437,-0.003571428571451,-0.013317191283319,-0.000000000000000,0.013196125908011,0.000000000000000,0.000544794188745,0.003571428571451,2 -8551,8564,8566,8579,-0.187499999999963,0.045974576270675,-0.189285714285694,0.052784503631400,-0.185714285714231,0.052300242130307,-0.187499999999963,0.059110169491032,-0.000423728813438,-0.003571428571462,-0.013196125908011,-0.000000000000000,0.013075060532702,0.000000000000000,0.000544794188747,0.003571428571462,2 -8552,8565,8567,8580,-0.183928571428507,0.045550847457238,-0.185714285714231,0.052300242130307,-0.182142857142783,0.051815980629216,-0.183928571428507,0.058565375302286,-0.000423728813437,-0.003571428571449,-0.013075060532702,-0.000000000000000,0.012953995157394,0.000000000000000,0.000544794188745,0.003571428571449,2 -8553,8566,8568,8581,-0.180357142857065,0.045127118643802,-0.182142857142783,0.051815980629216,-0.178571428571347,0.051331719128127,-0.180357142857065,0.058020581113542,-0.000423728813435,-0.003571428571436,-0.012953995157394,-0.000000000000000,0.012832929782086,-0.000000000000000,0.000544794188743,0.003571428571436,2 -8554,8567,8569,8582,-0.176785714285631,0.044703389830367,-0.178571428571347,0.051331719128127,-0.174999999999916,0.050847457627039,-0.176785714285631,0.057475786924799,-0.000423728813434,-0.003571428571431,-0.012832929782086,0.000000000000000,0.012711864406778,0.000000000000000,0.000544794188742,0.003571428571431,2 -8555,8568,8570,8583,-0.173214285714214,0.044279661016934,-0.174999999999916,0.050847457627039,-0.171428571428512,0.050363196125954,-0.173214285714214,0.056930992736059,-0.000423728813431,-0.003571428571404,-0.012711864406778,-0.000000000000000,0.012590799031471,0.000000000000000,0.000544794188738,0.003571428571404,2 -8556,8569,8571,8584,-0.169642857142809,0.043855932203503,-0.171428571428512,0.050363196125954,-0.167857142857105,0.049878934624869,-0.169642857142809,0.056386198547320,-0.000423728813432,-0.003571428571407,-0.012590799031471,-0.000000000000000,0.012469733656164,0.000000000000000,0.000544794188739,0.003571428571407,2 -8557,8570,8572,8585,-0.166071428571395,0.043432203390070,-0.167857142857105,0.049878934624869,-0.164285714285684,0.049394673123782,-0.166071428571395,0.055841404358581,-0.000423728813433,-0.003571428571421,-0.012469733656164,-0.000000000000000,0.012348668280857,0.000000000000000,0.000544794188741,0.003571428571421,2 -8558,8571,8573,8586,-0.162499999999982,0.043008474576638,-0.164285714285684,0.049394673123782,-0.160714285714279,0.048910411622697,-0.162499999999982,0.055296610169841,-0.000423728813431,-0.003571428571405,-0.012348668280857,-0.000000000000000,0.012227602905550,0.000000000000000,0.000544794188738,0.003571428571405,2 -8559,8572,8574,8587,-0.158928571428564,0.042584745763205,-0.160714285714279,0.048910411622697,-0.157142857142850,0.048426150121609,-0.158928571428564,0.054751815981101,-0.000423728813434,-0.003571428571429,-0.012227602905550,-0.000000000000000,0.012106537530242,0.000000000000000,0.000544794188742,0.003571428571429,2 -8560,8573,8575,8588,-0.155357142857136,0.042161016949771,-0.157142857142850,0.048426150121609,-0.153571428571423,0.047941888620521,-0.155357142857136,0.054207021792359,-0.000423728813434,-0.003571428571427,-0.012106537530242,-0.000000000000000,0.011985472154934,0.000000000000000,0.000544794188742,0.003571428571427,2 -8561,8574,8589,10191,-0.151785714285711,0.041737288136337,-0.153571428571423,0.047941888620521,-0.151785714285711,0.053662227603618,-0.150000000000000,0.047457627119434,-0.000423728813433,-0.003571428571423,-0.011985472154934,-0.000000000000000,0.000544794188741,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2276,8562,8577,8590,-0.200000000000000,0.067796610168599,-0.198214285714291,0.060744552057264,-0.196428571428583,0.067191283292206,-0.198214285714291,0.074243341403541,-0.013559322033930,-0.000000000000000,-0.000544794188740,-0.003571428571417,0.013438256658623,0.000000000000000,0.000665859564047,0.003571428571417,2 -8563,8576,8578,8591,-0.194642857142864,0.060199757868522,-0.196428571428583,0.067191283292206,-0.192857142857145,0.066585956415808,-0.194642857142864,0.073577481839492,-0.000544794188743,-0.003571428571438,-0.013438256658623,-0.000000000000000,0.013317191283316,0.000000000000000,0.000665859564051,0.003571428571438,2 -8564,8577,8579,8592,-0.191071428571419,0.059654963679778,-0.192857142857145,0.066585956415808,-0.189285714285694,0.065980629539409,-0.191071428571419,0.072911622275439,-0.000544794188745,-0.003571428571451,-0.013317191283316,-0.000000000000000,0.013196125908007,0.000000000000000,0.000665859564053,0.003571428571451,2 -8565,8578,8580,8593,-0.187499999999963,0.059110169491032,-0.189285714285694,0.065980629539409,-0.185714285714231,0.065375302663008,-0.187499999999963,0.072245762711385,-0.000544794188747,-0.003571428571462,-0.013196125908007,-0.000000000000000,0.013075060532699,0.000000000000000,0.000665859564056,0.003571428571462,2 -8566,8579,8581,8594,-0.183928571428507,0.058565375302286,-0.185714285714231,0.065375302663008,-0.182142857142783,0.064769975786609,-0.183928571428507,0.071579903147330,-0.000544794188745,-0.003571428571449,-0.013075060532699,-0.000000000000000,0.012953995157391,0.000000000000000,0.000665859564053,0.003571428571449,2 -8567,8580,8582,8595,-0.180357142857065,0.058020581113542,-0.182142857142783,0.064769975786609,-0.178571428571347,0.064164648910212,-0.180357142857065,0.070914043583279,-0.000544794188743,-0.003571428571436,-0.012953995157391,-0.000000000000000,0.012832929782083,0.000000000000000,0.000665859564051,0.003571428571436,2 -8568,8581,8583,8596,-0.176785714285631,0.057475786924799,-0.178571428571347,0.064164648910212,-0.174999999999916,0.063559322033816,-0.176785714285631,0.070248184019228,-0.000544794188742,-0.003571428571431,-0.012832929782083,-0.000000000000000,0.012711864406776,-0.000000000000000,0.000665859564050,0.003571428571431,2 -8569,8582,8584,8597,-0.173214285714214,0.056930992736059,-0.174999999999916,0.063559322033816,-0.171428571428512,0.062953995157424,-0.173214285714214,0.069582324455181,-0.000544794188738,-0.003571428571404,-0.012711864406776,0.000000000000000,0.012590799031469,0.000000000000000,0.000665859564045,0.003571428571404,2 -8570,8583,8585,8598,-0.169642857142809,0.056386198547320,-0.171428571428512,0.062953995157424,-0.167857142857105,0.062348668281032,-0.169642857142809,0.068916464891136,-0.000544794188739,-0.003571428571407,-0.012590799031469,-0.000000000000000,0.012469733656162,0.000000000000000,0.000665859564045,0.003571428571407,2 -8571,8584,8586,8599,-0.166071428571395,0.055841404358581,-0.167857142857105,0.062348668281032,-0.164285714285684,0.061743341404638,-0.166071428571395,0.068250605327089,-0.000544794188741,-0.003571428571421,-0.012469733656162,-0.000000000000000,0.012348668280855,0.000000000000000,0.000665859564048,0.003571428571421,2 -8572,8585,8587,8600,-0.162499999999982,0.055296610169841,-0.164285714285684,0.061743341404638,-0.160714285714279,0.061138014528246,-0.162499999999982,0.067584745763043,-0.000544794188738,-0.003571428571405,-0.012348668280855,-0.000000000000000,0.012227602905549,0.000000000000000,0.000665859564045,0.003571428571405,2 -8573,8586,8588,8601,-0.158928571428564,0.054751815981101,-0.160714285714279,0.061138014528246,-0.157142857142850,0.060532687651851,-0.158928571428564,0.066918886198996,-0.000544794188742,-0.003571428571429,-0.012227602905549,-0.000000000000000,0.012106537530241,0.000000000000000,0.000665859564049,0.003571428571429,2 -8574,8587,8589,8602,-0.155357142857136,0.054207021792359,-0.157142857142850,0.060532687651851,-0.153571428571423,0.059927360775455,-0.155357142857136,0.066253026634947,-0.000544794188742,-0.003571428571427,-0.012106537530241,-0.000000000000000,0.011985472154934,0.000000000000000,0.000665859564049,0.003571428571427,2 -8575,8588,8603,10192,-0.151785714285711,0.053662227603618,-0.153571428571423,0.059927360775455,-0.151785714285711,0.065587167070898,-0.150000000000000,0.059322033899060,-0.000544794188741,-0.003571428571423,-0.011985472154934,-0.000000000000000,0.000665859564048,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2277,8576,8591,8604,-0.200000000000000,0.081355932202535,-0.198214285714291,0.074243341403541,-0.196428571428583,0.080629539950834,-0.198214285714291,0.087742130749828,-0.013559322033941,-0.000000000000000,-0.000665859564047,-0.003571428571417,0.013438256658633,0.000000000000000,0.000786924939355,0.003571428571417,2 -8577,8590,8592,8605,-0.194642857142864,0.073577481839492,-0.196428571428583,0.080629539950834,-0.192857142857145,0.079903147699129,-0.194642857142864,0.086955205810471,-0.000665859564051,-0.003571428571438,-0.013438256658633,-0.000000000000000,0.013317191283325,0.000000000000000,0.000786924939360,0.003571428571438,2 -8578,8591,8593,8606,-0.191071428571419,0.072911622275439,-0.192857142857145,0.079903147699129,-0.189285714285694,0.079176755447421,-0.191071428571419,0.086168280871110,-0.000665859564053,-0.003571428571451,-0.013317191283325,-0.000000000000000,0.013196125908016,0.000000000000000,0.000786924939362,0.003571428571451,2 -8579,8592,8594,8607,-0.187499999999963,0.072245762711385,-0.189285714285694,0.079176755447421,-0.185714285714231,0.078450363195710,-0.187499999999963,0.085381355931746,-0.000665859564056,-0.003571428571462,-0.013196125908016,-0.000000000000000,0.013075060532707,0.000000000000000,0.000786924939365,0.003571428571462,2 -8580,8593,8595,8608,-0.183928571428507,0.071579903147330,-0.185714285714231,0.078450363195710,-0.182142857142783,0.077723970944003,-0.183928571428507,0.084594430992383,-0.000665859564053,-0.003571428571449,-0.013075060532707,-0.000000000000000,0.012953995157398,0.000000000000000,0.000786924939362,0.003571428571449,2 -8581,8594,8596,8609,-0.180357142857065,0.070914043583279,-0.182142857142783,0.077723970944003,-0.178571428571347,0.076997578692298,-0.180357142857065,0.083807506053022,-0.000665859564051,-0.003571428571436,-0.012953995157398,-0.000000000000000,0.012832929782089,0.000000000000000,0.000786924939359,0.003571428571436,2 -8582,8595,8597,8610,-0.176785714285631,0.070248184019228,-0.178571428571347,0.076997578692298,-0.174999999999916,0.076271186440594,-0.176785714285631,0.083020581113664,-0.000665859564050,-0.003571428571431,-0.012832929782089,-0.000000000000000,0.012711864406781,0.000000000000000,0.000786924939358,0.003571428571431,2 -8583,8596,8598,8611,-0.173214285714214,0.069582324455181,-0.174999999999916,0.076271186440594,-0.171428571428512,0.075544794188896,-0.173214285714214,0.082233656174309,-0.000665859564045,-0.003571428571404,-0.012711864406781,-0.000000000000000,0.012590799031474,0.000000000000000,0.000786924939352,0.003571428571404,2 -8584,8597,8599,8612,-0.169642857142809,0.068916464891136,-0.171428571428512,0.075544794188896,-0.167857142857105,0.074818401937197,-0.169642857142809,0.081446731234956,-0.000665859564045,-0.003571428571407,-0.012590799031474,-0.000000000000000,0.012469733656166,0.000000000000000,0.000786924939353,0.003571428571407,2 -8585,8598,8600,8613,-0.166071428571395,0.068250605327089,-0.167857142857105,0.074818401937197,-0.164285714285684,0.074092009685495,-0.166071428571395,0.080659806295602,-0.000665859564048,-0.003571428571421,-0.012469733656166,-0.000000000000000,0.012348668280858,0.000000000000000,0.000786924939356,0.003571428571421,2 -8586,8599,8601,8614,-0.162499999999982,0.067584745763043,-0.164285714285684,0.074092009685495,-0.160714285714279,0.073365617433796,-0.162499999999982,0.079872881356248,-0.000665859564045,-0.003571428571405,-0.012348668280858,-0.000000000000000,0.012227602905551,0.000000000000000,0.000786924939352,0.003571428571405,2 -8587,8600,8602,8615,-0.158928571428564,0.066918886198996,-0.160714285714279,0.073365617433796,-0.157142857142850,0.072639225182092,-0.158928571428565,0.079085956416893,-0.000665859564049,-0.003571428571429,-0.012227602905551,-0.000000000000000,0.012106537530243,0.000000000000000,0.000786924939358,0.003571428571429,2 -8588,8601,8603,8616,-0.155357142857136,0.066253026634947,-0.157142857142850,0.072639225182092,-0.153571428571423,0.071912832930389,-0.155357142857136,0.078299031477535,-0.000665859564049,-0.003571428571427,-0.012106537530243,-0.000000000000000,0.011985472154935,-0.000000000000000,0.000786924939357,0.003571428571427,2 -8589,8602,8617,10193,-0.151785714285711,0.065587167070898,-0.153571428571423,0.071912832930389,-0.151785714285711,0.077512106538179,-0.150000000000000,0.071186440678687,-0.000665859564048,-0.003571428571423,-0.011985472154935,0.000000000000000,0.000786924939356,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2278,8590,8605,8618,-0.200000000000000,0.094915254236471,-0.198214285714291,0.087742130749828,-0.196428571428583,0.094067796609462,-0.198214285714291,0.101240920096105,-0.013559322033930,-0.000000000000000,-0.000786924939355,-0.003571428571417,0.013438256658623,0.000000000000000,0.000907990314662,0.003571428571417,2 -8591,8604,8606,8619,-0.194642857142864,0.086955205810471,-0.196428571428583,0.094067796609462,-0.192857142857145,0.093220338982449,-0.194642857142864,0.100332929781440,-0.000786924939360,-0.003571428571438,-0.013438256658623,-0.000000000000000,0.013317191283316,0.000000000000000,0.000907990314667,0.003571428571438,2 -8592,8605,8607,8620,-0.191071428571419,0.086168280871110,-0.192857142857145,0.093220338982449,-0.189285714285694,0.092372881355432,-0.191071428571419,0.099424939466771,-0.000786924939362,-0.003571428571451,-0.013317191283316,-0.000000000000000,0.013196125908007,-0.000000000000000,0.000907990314671,0.003571428571451,2 -8593,8606,8608,8621,-0.187499999999963,0.085381355931746,-0.189285714285694,0.092372881355432,-0.185714285714231,0.091525423728413,-0.187499999999963,0.098516949152099,-0.000786924939365,-0.003571428571462,-0.013196125908007,0.000000000000000,0.013075060532699,0.000000000000000,0.000907990314673,0.003571428571462,2 -8594,8607,8609,8622,-0.183928571428507,0.084594430992383,-0.185714285714231,0.091525423728413,-0.182142857142783,0.090677966101397,-0.183928571428507,0.097608958837427,-0.000786924939362,-0.003571428571449,-0.013075060532699,-0.000000000000000,0.012953995157391,0.000000000000000,0.000907990314670,0.003571428571449,2 -8595,8608,8610,8623,-0.180357142857065,0.083807506053022,-0.182142857142783,0.090677966101397,-0.178571428571347,0.089830508474384,-0.180357142857065,0.096700968522759,-0.000786924939359,-0.003571428571436,-0.012953995157391,-0.000000000000000,0.012832929782083,0.000000000000000,0.000907990314667,0.003571428571436,2 -8596,8609,8611,8624,-0.176785714285631,0.083020581113664,-0.178571428571347,0.089830508474384,-0.174999999999916,0.088983050847372,-0.176785714285631,0.095792978208093,-0.000786924939358,-0.003571428571431,-0.012832929782083,-0.000000000000000,0.012711864406776,0.000000000000000,0.000907990314665,0.003571428571431,2 -8597,8610,8612,8625,-0.173214285714214,0.082233656174309,-0.174999999999916,0.088983050847372,-0.171428571428512,0.088135593220367,-0.173214285714214,0.094884987893431,-0.000786924939352,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031469,-0.000000000000000,0.000907990314659,0.003571428571404,2 -8598,8611,8613,8626,-0.169642857142809,0.081446731234956,-0.171428571428512,0.088135593220367,-0.167857142857105,0.087288135593361,-0.169642857142808,0.093976997578772,-0.000786924939353,-0.003571428571407,-0.012590799031469,0.000000000000000,0.012469733656162,0.000000000000000,0.000907990314660,0.003571428571407,2 -8599,8612,8614,8627,-0.166071428571395,0.080659806295602,-0.167857142857105,0.087288135593361,-0.164285714285684,0.086440677966351,-0.166071428571395,0.093069007264110,-0.000786924939356,-0.003571428571421,-0.012469733656162,-0.000000000000000,0.012348668280855,0.000000000000000,0.000907990314663,0.003571428571421,2 -8600,8613,8615,8628,-0.162499999999982,0.079872881356248,-0.164285714285684,0.086440677966351,-0.160714285714279,0.085593220339346,-0.162499999999982,0.092161016949450,-0.000786924939352,-0.003571428571405,-0.012348668280855,-0.000000000000000,0.012227602905549,-0.000000000000000,0.000907990314659,0.003571428571405,2 -8601,8614,8616,8629,-0.158928571428565,0.079085956416893,-0.160714285714279,0.085593220339346,-0.157142857142850,0.084745762712334,-0.158928571428564,0.091253026634788,-0.000786924939358,-0.003571428571429,-0.012227602905549,0.000000000000000,0.012106537530241,0.000000000000000,0.000907990314665,0.003571428571429,2 -8602,8615,8617,8630,-0.155357142857136,0.078299031477535,-0.157142857142850,0.084745762712334,-0.153571428571423,0.083898305085324,-0.155357142857136,0.090345036320123,-0.000786924939357,-0.003571428571427,-0.012106537530241,-0.000000000000000,0.011985472154934,0.000000000000000,0.000907990314665,0.003571428571427,2 -8603,8616,8631,10194,-0.151785714285711,0.077512106538179,-0.153571428571423,0.083898305085324,-0.151785714285711,0.089437046005459,-0.150000000000000,0.083050847458314,-0.000786924939356,-0.003571428571423,-0.011985472154934,-0.000000000000000,0.000907990314663,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2279,8604,8619,8632,-0.200000000000000,0.108474576270409,-0.198214285714291,0.101240920096105,-0.196428571428583,0.107506053268093,-0.198214285714291,0.114739709442397,-0.013559322033946,-0.000000000000000,-0.000907990314662,-0.003571428571417,0.013438256658638,0.000000000000000,0.001029055689970,0.003571428571417,2 -8605,8618,8620,8633,-0.194642857142864,0.100332929781440,-0.196428571428583,0.107506053268093,-0.192857142857145,0.106537530265771,-0.194642857142864,0.113710653752424,-0.000907990314667,-0.003571428571438,-0.013438256658638,-0.000000000000000,0.013317191283329,0.000000000000000,0.001029055689976,0.003571428571438,2 -8606,8619,8621,8634,-0.191071428571419,0.099424939466771,-0.192857142857145,0.106537530265771,-0.189285714285694,0.105569007263446,-0.191071428571419,0.112681598062446,-0.000907990314671,-0.003571428571451,-0.013317191283329,-0.000000000000000,0.013196125908020,0.000000000000000,0.001029055689980,0.003571428571451,2 -8607,8620,8622,8635,-0.187499999999963,0.098516949152099,-0.189285714285694,0.105569007263446,-0.185714285714231,0.104600484261117,-0.187499999999963,0.111652542372464,-0.000907990314673,-0.003571428571462,-0.013196125908020,-0.000000000000000,0.013075060532710,0.000000000000000,0.001029055689983,0.003571428571462,2 -8608,8621,8623,8636,-0.183928571428507,0.097608958837427,-0.185714285714231,0.104600484261117,-0.182142857142783,0.103631961258793,-0.183928571428507,0.110623486682483,-0.000907990314670,-0.003571428571449,-0.013075060532710,-0.000000000000000,0.012953995157401,0.000000000000000,0.001029055689979,0.003571428571449,2 -8609,8622,8624,8637,-0.180357142857065,0.096700968522759,-0.182142857142783,0.103631961258793,-0.178571428571347,0.102663438256472,-0.180357142857065,0.109594430992505,-0.000907990314667,-0.003571428571436,-0.012953995157401,-0.000000000000000,0.012832929782092,0.000000000000000,0.001029055689976,0.003571428571436,2 -8610,8623,8625,8638,-0.176785714285631,0.095792978208093,-0.178571428571347,0.102663438256472,-0.174999999999916,0.101694915254152,-0.176785714285631,0.108565375302531,-0.000907990314665,-0.003571428571431,-0.012832929782092,-0.000000000000000,0.012711864406783,0.000000000000000,0.001029055689974,0.003571428571431,2 -8611,8624,8626,8639,-0.173214285714214,0.094884987893431,-0.174999999999916,0.101694915254152,-0.171428571428512,0.100726392251839,-0.173214285714214,0.107536319612560,-0.000907990314659,-0.003571428571404,-0.012711864406783,-0.000000000000000,0.012590799031476,0.000000000000000,0.001029055689966,0.003571428571404,2 -8612,8625,8627,8640,-0.169642857142808,0.093976997578772,-0.171428571428512,0.100726392251839,-0.167857142857105,0.099757869249526,-0.169642857142809,0.106507263922594,-0.000907990314660,-0.003571428571407,-0.012590799031476,-0.000000000000000,0.012469733656168,0.000000000000000,0.001029055689967,0.003571428571407,2 -8613,8626,8628,8641,-0.166071428571395,0.093069007264110,-0.167857142857105,0.099757869249526,-0.164285714285684,0.098789346247209,-0.166071428571395,0.105478208232624,-0.000907990314663,-0.003571428571421,-0.012469733656168,-0.000000000000000,0.012348668280860,0.000000000000000,0.001029055689971,0.003571428571421,2 -8614,8627,8629,8642,-0.162499999999982,0.092161016949450,-0.164285714285684,0.098789346247209,-0.160714285714279,0.097820823244896,-0.162499999999982,0.104449152542655,-0.000907990314659,-0.003571428571405,-0.012348668280860,-0.000000000000000,0.012227602905552,0.000000000000000,0.001029055689967,0.003571428571405,2 -8615,8628,8630,8643,-0.158928571428564,0.091253026634788,-0.160714285714279,0.097820823244896,-0.157142857142850,0.096852300242577,-0.158928571428565,0.103420096852685,-0.000907990314665,-0.003571428571429,-0.012227602905552,-0.000000000000000,0.012106537530243,0.000000000000000,0.001029055689974,0.003571428571429,2 -8616,8629,8631,8644,-0.155357142857136,0.090345036320123,-0.157142857142850,0.096852300242577,-0.153571428571423,0.095883777240258,-0.155357142857136,0.102391041162712,-0.000907990314665,-0.003571428571427,-0.012106537530243,-0.000000000000000,0.011985472154935,0.000000000000000,0.001029055689973,0.003571428571427,2 -8617,8630,8645,10195,-0.151785714285711,0.089437046005459,-0.153571428571423,0.095883777240258,-0.151785714285711,0.101361985472740,-0.150000000000000,0.094915254237940,-0.000907990314663,-0.003571428571423,-0.011985472154935,-0.000000000000000,0.001029055689972,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2280,8618,8633,8646,-0.200000000000000,0.122033898304341,-0.198214285714291,0.114739709442397,-0.196428571428583,0.120944309926718,-0.198214285714291,0.128238498788663,-0.013559322033919,-0.000000000000000,-0.001029055689970,-0.003571428571417,0.013438256658613,0.000000000000000,0.001150121065276,0.003571428571417,2 -8619,8632,8634,8647,-0.194642857142864,0.113710653752424,-0.196428571428583,0.120944309926718,-0.192857142857145,0.119854721549088,-0.194642857142864,0.127088377723383,-0.001029055689976,-0.003571428571438,-0.013438256658613,-0.000000000000000,0.013317191283306,0.000000000000000,0.001150121065283,0.003571428571438,2 -8620,8633,8635,8648,-0.191071428571419,0.112681598062446,-0.192857142857145,0.119854721549088,-0.189285714285694,0.118765133171455,-0.191071428571419,0.125938256658098,-0.001029055689980,-0.003571428571451,-0.013317191283306,-0.000000000000000,0.013196125907998,0.000000000000000,0.001150121065287,0.003571428571451,2 -8621,8634,8636,8649,-0.187499999999963,0.111652542372464,-0.189285714285694,0.118765133171455,-0.185714285714231,0.117675544793818,-0.187499999999963,0.124788135592809,-0.001029055689983,-0.003571428571462,-0.013196125907998,-0.000000000000000,0.013075060532691,0.000000000000000,0.001150121065291,0.003571428571462,2 -8622,8635,8637,8650,-0.183928571428507,0.110623486682483,-0.185714285714231,0.117675544793818,-0.182142857142783,0.116585956416185,-0.183928571428507,0.123638014527520,-0.001029055689979,-0.003571428571449,-0.013075060532691,-0.000000000000000,0.012953995157383,0.000000000000000,0.001150121065287,0.003571428571449,2 -8623,8636,8638,8651,-0.180357142857065,0.109594430992505,-0.182142857142783,0.116585956416185,-0.178571428571347,0.115496368038556,-0.180357142857065,0.122487893462235,-0.001029055689976,-0.003571428571436,-0.012953995157383,-0.000000000000000,0.012832929782077,-0.000000000000000,0.001150121065282,0.003571428571436,2 -8624,8637,8639,8652,-0.176785714285631,0.108565375302531,-0.178571428571347,0.115496368038556,-0.174999999999916,0.114406779660928,-0.176785714285631,0.121337772396954,-0.001029055689974,-0.003571428571431,-0.012832929782077,0.000000000000000,0.012711864406770,0.000000000000000,0.001150121065281,0.003571428571431,2 -8625,8638,8640,8653,-0.173214285714214,0.107536319612560,-0.174999999999916,0.114406779660928,-0.171428571428512,0.113317191283309,-0.173214285714214,0.120187651331677,-0.001029055689966,-0.003571428571404,-0.012711864406770,-0.000000000000000,0.012590799031464,0.000000000000000,0.001150121065272,0.003571428571404,2 -8626,8639,8641,8654,-0.169642857142809,0.106507263922594,-0.171428571428512,0.113317191283309,-0.167857142857105,0.112227602905689,-0.169642857142809,0.119037530266405,-0.001029055689967,-0.003571428571407,-0.012590799031464,-0.000000000000000,0.012469733656158,0.000000000000000,0.001150121065273,0.003571428571407,2 -8627,8640,8642,8655,-0.166071428571395,0.105478208232624,-0.167857142857105,0.112227602905689,-0.164285714285684,0.111138014528065,-0.166071428571395,0.117887409201129,-0.001029055689971,-0.003571428571421,-0.012469733656158,-0.000000000000000,0.012348668280852,0.000000000000000,0.001150121065277,0.003571428571421,2 -8628,8641,8643,8656,-0.162499999999982,0.104449152542655,-0.164285714285684,0.111138014528065,-0.160714285714279,0.110048426150445,-0.162499999999982,0.116737288135855,-0.001029055689967,-0.003571428571405,-0.012348668280852,-0.000000000000000,0.012227602905546,0.000000000000000,0.001150121065272,0.003571428571405,2 -8629,8642,8644,8657,-0.158928571428565,0.103420096852685,-0.160714285714279,0.110048426150445,-0.157142857142850,0.108958837772818,-0.158928571428565,0.115587167070578,-0.001029055689974,-0.003571428571429,-0.012227602905546,-0.000000000000000,0.012106537530240,0.000000000000000,0.001150121065280,0.003571428571429,2 -8630,8643,8645,8658,-0.155357142857136,0.102391041162712,-0.157142857142850,0.108958837772818,-0.153571428571423,0.107869249395192,-0.155357142857136,0.114437046005298,-0.001029055689973,-0.003571428571427,-0.012106537530240,-0.000000000000000,0.011985472154933,0.000000000000000,0.001150121065280,0.003571428571427,2 -8631,8644,8659,10196,-0.151785714285711,0.101361985472740,-0.153571428571423,0.107869249395192,-0.151785714285711,0.113286924940019,-0.150000000000000,0.106779661017567,-0.001029055689972,-0.003571428571423,-0.011985472154933,-0.000000000000000,0.001150121065278,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2281,8632,8647,8660,-0.200000000000000,0.135593220338273,-0.198214285714291,0.128238498788663,-0.196428571428583,0.134382566585343,-0.198214285714291,0.141737288134954,-0.013559322033945,-0.000000000000000,-0.001150121065276,-0.003571428571417,0.013438256658637,0.000000000000000,0.001271186440584,0.003571428571417,2 -8633,8646,8648,8661,-0.194642857142864,0.127088377723383,-0.196428571428583,0.134382566585343,-0.192857142857145,0.133171912832405,-0.194642857142864,0.140466101694366,-0.001150121065283,-0.003571428571438,-0.013438256658637,-0.000000000000000,0.013317191283329,0.000000000000000,0.001271186440592,0.003571428571438,2 -8634,8647,8649,8662,-0.191071428571419,0.125938256658098,-0.192857142857145,0.133171912832405,-0.189285714285694,0.131961259079464,-0.191071428571419,0.139194915253772,-0.001150121065287,-0.003571428571451,-0.013317191283329,-0.000000000000000,0.013196125908019,0.000000000000000,0.001271186440597,0.003571428571451,2 -8635,8648,8650,8663,-0.187499999999963,0.124788135592809,-0.189285714285694,0.131961259079464,-0.185714285714231,0.130750605326518,-0.187499999999963,0.137923728813173,-0.001150121065291,-0.003571428571462,-0.013196125908019,-0.000000000000000,0.013075060532710,0.000000000000000,0.001271186440600,0.003571428571462,2 -8636,8649,8651,8664,-0.183928571428507,0.123638014527520,-0.185714285714231,0.130750605326518,-0.182142857142783,0.129539951573577,-0.183928571428507,0.136652542372575,-0.001150121065287,-0.003571428571449,-0.013075060532710,-0.000000000000000,0.012953995157401,0.000000000000000,0.001271186440596,0.003571428571449,2 -8637,8650,8652,8665,-0.180357142857065,0.122487893462235,-0.182142857142783,0.129539951573577,-0.178571428571347,0.128329297820640,-0.180357142857065,0.135381355931982,-0.001150121065282,-0.003571428571436,-0.012953995157401,-0.000000000000000,0.012832929782092,0.000000000000000,0.001271186440591,0.003571428571436,2 -8638,8651,8653,8666,-0.176785714285631,0.121337772396954,-0.178571428571347,0.128329297820640,-0.174999999999916,0.127118644067705,-0.176785714285631,0.134110169491391,-0.001150121065281,-0.003571428571431,-0.012832929782092,-0.000000000000000,0.012711864406783,0.000000000000000,0.001271186440589,0.003571428571431,2 -8639,8652,8654,8667,-0.173214285714214,0.120187651331677,-0.174999999999916,0.127118644067705,-0.171428571428512,0.125907990314779,-0.173214285714214,0.132838983050807,-0.001150121065272,-0.003571428571404,-0.012711864406783,-0.000000000000000,0.012590799031476,0.000000000000000,0.001271186440580,0.003571428571404,2 -8640,8653,8655,8668,-0.169642857142809,0.119037530266405,-0.171428571428512,0.125907990314779,-0.167857142857105,0.124697336561852,-0.169642857142809,0.131567796610227,-0.001150121065273,-0.003571428571407,-0.012590799031476,-0.000000000000000,0.012469733656168,0.000000000000000,0.001271186440581,0.003571428571407,2 -8641,8654,8656,8669,-0.166071428571395,0.117887409201129,-0.167857142857105,0.124697336561852,-0.164285714285684,0.123486682808921,-0.166071428571395,0.130296610169643,-0.001150121065277,-0.003571428571421,-0.012469733656168,-0.000000000000000,0.012348668280860,0.000000000000000,0.001271186440586,0.003571428571421,2 -8642,8655,8657,8670,-0.162499999999982,0.116737288135855,-0.164285714285684,0.123486682808921,-0.160714285714279,0.122276029055994,-0.162499999999982,0.129025423729060,-0.001150121065272,-0.003571428571405,-0.012348668280860,-0.000000000000000,0.012227602905552,-0.000000000000000,0.001271186440580,0.003571428571405,2 -8643,8656,8658,8671,-0.158928571428565,0.115587167070578,-0.160714285714279,0.122276029055994,-0.157142857142850,0.121065375303060,-0.158928571428564,0.127754237288476,-0.001150121065280,-0.003571428571429,-0.012227602905552,0.000000000000000,0.012106537530243,0.000000000000000,0.001271186440589,0.003571428571429,2 -8644,8657,8659,8672,-0.155357142857136,0.114437046005298,-0.157142857142850,0.121065375303060,-0.153571428571423,0.119854721550126,-0.155357142857136,0.126483050847887,-0.001150121065280,-0.003571428571427,-0.012106537530243,-0.000000000000000,0.011985472154935,0.000000000000000,0.001271186440588,0.003571428571427,2 -8645,8658,8673,10197,-0.151785714285711,0.113286924940019,-0.153571428571423,0.119854721550126,-0.151785714285711,0.125211864407300,-0.150000000000000,0.118644067797194,-0.001150121065278,-0.003571428571423,-0.011985472154935,-0.000000000000000,0.001271186440586,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2282,8646,8661,8674,-0.200000000000000,0.149152542372213,-0.198214285714291,0.141737288134954,-0.196428571428583,0.147820823243975,-0.198214285714291,0.155236077481234,-0.013559322033933,-0.000000000000000,-0.001271186440584,-0.003571428571417,0.013438256658627,0.000000000000000,0.001392251815891,0.003571428571417,2 -8647,8660,8662,8675,-0.194642857142864,0.140466101694366,-0.196428571428583,0.147820823243975,-0.192857142857145,0.146489104115730,-0.194642857142864,0.153843825665339,-0.001271186440592,-0.003571428571438,-0.013438256658627,-0.000000000000000,0.013317191283319,0.000000000000000,0.001392251815899,0.003571428571438,2 -8648,8661,8663,8676,-0.191071428571419,0.139194915253772,-0.192857142857145,0.146489104115730,-0.189285714285694,0.145157384987479,-0.191071428571419,0.152451573849437,-0.001271186440597,-0.003571428571451,-0.013317191283319,-0.000000000000000,0.013196125908012,-0.000000000000000,0.001392251815904,0.003571428571451,2 -8649,8662,8664,8677,-0.187499999999963,0.137923728813173,-0.189285714285694,0.145157384987479,-0.185714285714231,0.143825665859225,-0.187499999999963,0.151059322033531,-0.001271186440600,-0.003571428571462,-0.013196125908012,0.000000000000000,0.013075060532704,0.000000000000000,0.001392251815909,0.003571428571462,2 -8650,8663,8665,8678,-0.183928571428507,0.136652542372575,-0.185714285714231,0.143825665859225,-0.182142857142783,0.142493946730975,-0.183928571428507,0.149667070217625,-0.001271186440596,-0.003571428571449,-0.013075060532704,-0.000000000000000,0.012953995157396,0.000000000000000,0.001392251815903,0.003571428571449,2 -8651,8664,8666,8679,-0.180357142857065,0.135381355931982,-0.182142857142783,0.142493946730975,-0.178571428571347,0.141162227602731,-0.180357142857065,0.148274818401724,-0.001271186440591,-0.003571428571436,-0.012953995157396,-0.000000000000000,0.012832929782089,0.000000000000000,0.001392251815898,0.003571428571436,2 -8652,8665,8667,8680,-0.176785714285631,0.134110169491391,-0.178571428571347,0.141162227602731,-0.174999999999916,0.139830508474488,-0.176785714285631,0.146882566585827,-0.001271186440589,-0.003571428571431,-0.012832929782089,-0.000000000000000,0.012711864406782,0.000000000000000,0.001392251815896,0.003571428571431,2 -8653,8666,8668,8681,-0.173214285714214,0.132838983050807,-0.174999999999916,0.139830508474488,-0.171428571428512,0.138498789346255,-0.173214285714214,0.145490314769936,-0.001271186440580,-0.003571428571404,-0.012711864406782,-0.000000000000000,0.012590799031476,-0.000000000000000,0.001392251815886,0.003571428571404,2 -8654,8667,8669,8682,-0.169642857142809,0.131567796610227,-0.171428571428512,0.138498789346255,-0.167857142857105,0.137167070218021,-0.169642857142808,0.144098062954050,-0.001271186440581,-0.003571428571407,-0.012590799031476,0.000000000000000,0.012469733656170,0.000000000000000,0.001392251815887,0.003571428571407,2 -8655,8668,8670,8683,-0.166071428571395,0.130296610169643,-0.167857142857105,0.137167070218021,-0.164285714285684,0.135835351089782,-0.166071428571395,0.142705811138160,-0.001271186440586,-0.003571428571421,-0.012469733656170,-0.000000000000000,0.012348668280864,0.000000000000000,0.001392251815892,0.003571428571421,2 -8656,8669,8671,8684,-0.162499999999982,0.129025423729060,-0.164285714285684,0.135835351089782,-0.160714285714279,0.134503631961549,-0.162499999999982,0.141313559322271,-0.001271186440580,-0.003571428571405,-0.012348668280864,-0.000000000000000,0.012227602905558,0.000000000000000,0.001392251815886,0.003571428571405,2 -8657,8670,8672,8685,-0.158928571428564,0.127754237288476,-0.160714285714279,0.134503631961549,-0.157142857142850,0.133171912833307,-0.158928571428565,0.139921307506380,-0.001271186440589,-0.003571428571429,-0.012227602905558,-0.000000000000000,0.012106537530251,0.000000000000000,0.001392251815896,0.003571428571429,2 -8658,8671,8673,8686,-0.155357142857136,0.126483050847887,-0.157142857142850,0.133171912833307,-0.153571428571423,0.131840193705065,-0.155357142857136,0.138529055690485,-0.001271186440588,-0.003571428571427,-0.012106537530251,-0.000000000000000,0.011985472154944,-0.000000000000000,0.001392251815895,0.003571428571427,2 -8659,8672,8687,10198,-0.151785714285711,0.125211864407300,-0.153571428571423,0.131840193705065,-0.151785714285711,0.137136803874591,-0.150000000000000,0.130508474576826,-0.001271186440586,-0.003571428571423,-0.011985472154944,0.000000000000000,0.001392251815893,0.003571428571423,0.011864406779637,-0.000000000000000,2 -2283,8660,8675,8688,-0.200000000000000,0.162711864406145,-0.198214285714291,0.155236077481234,-0.196428571428583,0.161259079902600,-0.198214285714291,0.168734866827511,-0.013559322033931,-0.000000000000000,-0.001392251815891,-0.003571428571417,0.013438256658624,-0.000000000000000,0.001513317191198,0.003571428571417,2 -8661,8674,8676,8689,-0.194642857142864,0.153843825665339,-0.196428571428583,0.161259079902600,-0.192857142857145,0.159806295399047,-0.194642857142864,0.167221549636309,-0.001392251815899,-0.003571428571438,-0.013438256658624,0.000000000000000,0.013317191283316,0.000000000000000,0.001513317191207,0.003571428571438,2 -8662,8675,8677,8690,-0.191071428571419,0.152451573849437,-0.192857142857145,0.159806295399047,-0.189285714285694,0.158353510895489,-0.191071428571419,0.165708232445099,-0.001392251815904,-0.003571428571451,-0.013317191283316,-0.000000000000000,0.013196125908008,0.000000000000000,0.001513317191212,0.003571428571451,2 -8663,8676,8678,8691,-0.187499999999963,0.151059322033531,-0.189285714285694,0.158353510895489,-0.185714285714231,0.156900726391926,-0.187499999999963,0.164194915253885,-0.001392251815909,-0.003571428571462,-0.013196125908008,-0.000000000000000,0.013075060532699,0.000000000000000,0.001513317191217,0.003571428571462,2 -8664,8677,8679,8692,-0.183928571428507,0.149667070217625,-0.185714285714231,0.156900726391926,-0.182142857142783,0.155447941888369,-0.183928571428507,0.162681598062670,-0.001392251815903,-0.003571428571449,-0.013075060532699,-0.000000000000000,0.012953995157391,0.000000000000000,0.001513317191211,0.003571428571449,2 -8665,8678,8680,8693,-0.180357142857065,0.148274818401724,-0.182142857142783,0.155447941888369,-0.178571428571347,0.153995157384817,-0.180357142857065,0.161168280871462,-0.001392251815898,-0.003571428571436,-0.012953995157391,-0.000000000000000,0.012832929782084,-0.000000000000000,0.001513317191206,0.003571428571436,2 -8666,8679,8681,8694,-0.176785714285631,0.146882566585827,-0.178571428571347,0.153995157384817,-0.174999999999916,0.152542372881267,-0.176785714285631,0.159654963680257,-0.001392251815896,-0.003571428571431,-0.012832929782084,0.000000000000000,0.012711864406776,0.000000000000000,0.001513317191204,0.003571428571431,2 -8667,8680,8682,8695,-0.173214285714214,0.145490314769936,-0.174999999999916,0.152542372881267,-0.171428571428512,0.151089588377728,-0.173214285714214,0.158141646489059,-0.001392251815886,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031470,0.000000000000000,0.001513317191192,0.003571428571404,2 -8668,8681,8683,8696,-0.169642857142808,0.144098062954050,-0.171428571428512,0.151089588377728,-0.167857142857105,0.149636803874188,-0.169642857142808,0.156628329297866,-0.001392251815887,-0.003571428571407,-0.012590799031470,-0.000000000000000,0.012469733656163,0.000000000000000,0.001513317191194,0.003571428571407,2 -8669,8682,8684,8697,-0.166071428571395,0.142705811138160,-0.167857142857105,0.149636803874188,-0.164285714285684,0.148184019370642,-0.166071428571395,0.155115012106669,-0.001392251815892,-0.003571428571421,-0.012469733656163,-0.000000000000000,0.012348668280856,0.000000000000000,0.001513317191199,0.003571428571421,2 -8670,8683,8685,8698,-0.162499999999982,0.141313559322271,-0.164285714285684,0.148184019370642,-0.160714285714279,0.146731234867102,-0.162499999999982,0.153601694915473,-0.001392251815886,-0.003571428571405,-0.012348668280856,-0.000000000000000,0.012227602905549,0.000000000000000,0.001513317191193,0.003571428571405,2 -8671,8684,8686,8699,-0.158928571428565,0.139921307506380,-0.160714285714279,0.146731234867102,-0.157142857142850,0.145278450363553,-0.158928571428565,0.152088377724275,-0.001392251815896,-0.003571428571429,-0.012227602905549,-0.000000000000000,0.012106537530242,0.000000000000000,0.001513317191203,0.003571428571429,2 -8672,8685,8687,8700,-0.155357142857136,0.138529055690485,-0.157142857142850,0.145278450363553,-0.153571428571423,0.143825665860004,-0.155357142857136,0.150575060533073,-0.001392251815895,-0.003571428571427,-0.012106537530242,-0.000000000000000,0.011985472154934,0.000000000000000,0.001513317191202,0.003571428571427,2 -8673,8686,8701,10199,-0.151785714285711,0.137136803874591,-0.153571428571423,0.143825665860004,-0.151785714285711,0.149061743341871,-0.150000000000000,0.142372881356458,-0.001392251815893,-0.003571428571423,-0.011985472154934,-0.000000000000000,0.001513317191200,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2284,8674,8689,8702,-0.200000000000000,0.176271186440084,-0.198214285714291,0.168734866827511,-0.196428571428583,0.174697336561232,-0.198214285714291,0.182233656173805,-0.013559322033947,-0.000000000000000,-0.001513317191198,-0.003571428571417,0.013438256658639,0.000000000000000,0.001634382566506,0.003571428571417,2 -8675,8688,8690,8703,-0.194642857142864,0.167221549636309,-0.196428571428583,0.174697336561232,-0.192857142857145,0.173123486682371,-0.194642857142864,0.180599273607294,-0.001513317191207,-0.003571428571438,-0.013438256658639,-0.000000000000000,0.013317191283330,0.000000000000000,0.001634382566516,0.003571428571438,2 -8676,8689,8691,8704,-0.191071428571419,0.165708232445099,-0.192857142857145,0.173123486682371,-0.189285714285694,0.171549636803504,-0.191071428571419,0.178964891040775,-0.001513317191212,-0.003571428571451,-0.013317191283330,-0.000000000000000,0.013196125908021,0.000000000000000,0.001634382566522,0.003571428571451,2 -8677,8690,8692,8705,-0.187499999999963,0.164194915253885,-0.189285714285694,0.171549636803504,-0.185714285714231,0.169975786924632,-0.187499999999963,0.177330508474251,-0.001513317191217,-0.003571428571462,-0.013196125908021,-0.000000000000000,0.013075060532711,0.000000000000000,0.001634382566527,0.003571428571462,2 -8678,8691,8693,8706,-0.183928571428507,0.162681598062670,-0.185714285714231,0.169975786924632,-0.182142857142783,0.168401937045766,-0.183928571428507,0.175696125907727,-0.001513317191211,-0.003571428571449,-0.013075060532711,-0.000000000000000,0.012953995157402,0.000000000000000,0.001634382566521,0.003571428571449,2 -8679,8692,8694,8707,-0.180357142857065,0.161168280871462,-0.182142857142783,0.168401937045766,-0.178571428571347,0.166828087166905,-0.180357142857065,0.174061743341209,-0.001513317191206,-0.003571428571436,-0.012953995157402,-0.000000000000000,0.012832929782093,0.000000000000000,0.001634382566515,0.003571428571436,2 -8680,8693,8695,8708,-0.176785714285631,0.159654963680257,-0.178571428571347,0.166828087166905,-0.174999999999916,0.165254237288047,-0.176785714285631,0.172427360774696,-0.001513317191204,-0.003571428571431,-0.012832929782093,-0.000000000000000,0.012711864406784,0.000000000000000,0.001634382566513,0.003571428571431,2 -8681,8694,8696,8709,-0.173214285714214,0.158141646489059,-0.174999999999916,0.165254237288047,-0.171428571428512,0.163680387409201,-0.173214285714214,0.170792978208189,-0.001513317191192,-0.003571428571404,-0.012711864406784,-0.000000000000000,0.012590799031477,0.000000000000000,0.001634382566500,0.003571428571404,2 -8682,8695,8697,8710,-0.169642857142808,0.156628329297866,-0.171428571428512,0.163680387409201,-0.167857142857105,0.162106537530353,-0.169642857142808,0.169158595641688,-0.001513317191194,-0.003571428571407,-0.012590799031477,-0.000000000000000,0.012469733656169,0.000000000000000,0.001634382566502,0.003571428571407,2 -8683,8696,8698,8711,-0.166071428571395,0.155115012106669,-0.167857142857105,0.162106537530353,-0.164285714285684,0.160532687651500,-0.166071428571395,0.167524213075184,-0.001513317191199,-0.003571428571421,-0.012469733656169,-0.000000000000000,0.012348668280860,0.000000000000000,0.001634382566508,0.003571428571421,2 -8684,8697,8699,8712,-0.162499999999982,0.153601694915473,-0.164285714285684,0.160532687651500,-0.160714285714279,0.158958837772653,-0.162499999999982,0.165889830508679,-0.001513317191193,-0.003571428571405,-0.012348668280860,-0.000000000000000,0.012227602905552,-0.000000000000000,0.001634382566501,0.003571428571405,2 -8685,8698,8700,8713,-0.158928571428565,0.152088377724275,-0.160714285714279,0.158958837772653,-0.157142857142850,0.157384987893795,-0.158928571428564,0.164255447942173,-0.001513317191203,-0.003571428571429,-0.012227602905552,0.000000000000000,0.012106537530244,0.000000000000000,0.001634382566512,0.003571428571429,2 -8686,8699,8701,8714,-0.155357142857136,0.150575060533073,-0.157142857142850,0.157384987893795,-0.153571428571423,0.155811138014939,-0.155357142857136,0.162621065375662,-0.001513317191202,-0.003571428571427,-0.012106537530244,-0.000000000000000,0.011985472154935,0.000000000000000,0.001634382566511,0.003571428571427,2 -8687,8700,8715,10200,-0.151785714285711,0.149061743341871,-0.153571428571423,0.155811138014939,-0.151785714285711,0.160986682809152,-0.150000000000000,0.154237288136084,-0.001513317191200,-0.003571428571423,-0.011985472154935,-0.000000000000000,0.001634382566509,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2285,8688,8703,8716,-0.200000000000000,0.189830508474016,-0.198214285714291,0.182233656173805,-0.196428571428583,0.188135593219857,-0.198214285714291,0.195732445520069,-0.013559322033917,-0.000000000000000,-0.001634382566506,-0.003571428571417,0.013438256658611,0.000000000000000,0.001755447941812,0.003571428571417,2 -8689,8702,8704,8717,-0.194642857142864,0.180599273607294,-0.196428571428583,0.188135593219857,-0.192857142857145,0.186440677965688,-0.194642857142864,0.193976997578251,-0.001634382566516,-0.003571428571438,-0.013438256658611,-0.000000000000000,0.013317191283304,0.000000000000000,0.001755447941823,0.003571428571438,2 -8690,8703,8705,8718,-0.191071428571419,0.178964891040775,-0.192857142857145,0.186440677965688,-0.189285714285694,0.184745762711513,-0.191071428571419,0.192221549636425,-0.001634382566522,-0.003571428571451,-0.013317191283304,-0.000000000000000,0.013196125907997,0.000000000000000,0.001755447941829,0.003571428571451,2 -8691,8704,8706,8719,-0.187499999999963,0.177330508474251,-0.189285714285694,0.184745762711513,-0.185714285714231,0.183050847457332,-0.187499999999963,0.190466101694594,-0.001634382566527,-0.003571428571462,-0.013196125907997,-0.000000000000000,0.013075060532689,0.000000000000000,0.001755447941834,0.003571428571462,2 -8692,8705,8707,8720,-0.183928571428507,0.175696125907727,-0.185714285714231,0.183050847457332,-0.182142857142783,0.181355932203158,-0.183928571428507,0.188710653752763,-0.001634382566521,-0.003571428571449,-0.013075060532689,-0.000000000000000,0.012953995157382,0.000000000000000,0.001755447941828,0.003571428571449,2 -8693,8706,8708,8721,-0.180357142857065,0.174061743341209,-0.182142857142783,0.181355932203158,-0.178571428571347,0.179661016948990,-0.180357142857065,0.186955205810938,-0.001634382566515,-0.003571428571436,-0.012953995157382,-0.000000000000000,0.012832929782075,0.000000000000000,0.001755447941822,0.003571428571436,2 -8694,8707,8709,8722,-0.176785714285631,0.172427360774696,-0.178571428571347,0.179661016948990,-0.174999999999916,0.177966101694824,-0.176785714285631,0.185199757869118,-0.001634382566513,-0.003571428571431,-0.012832929782075,-0.000000000000000,0.012711864406769,0.000000000000000,0.001755447941819,0.003571428571431,2 -8695,8708,8710,8723,-0.173214285714214,0.170792978208189,-0.174999999999916,0.177966101694824,-0.171428571428512,0.176271186440671,-0.173214285714214,0.183444309927305,-0.001634382566500,-0.003571428571404,-0.012711864406769,-0.000000000000000,0.012590799031463,0.000000000000000,0.001755447941806,0.003571428571404,2 -8696,8709,8711,8724,-0.169642857142808,0.169158595641688,-0.171428571428512,0.176271186440671,-0.167857142857105,0.174576271186516,-0.169642857142809,0.181688861985499,-0.001634382566502,-0.003571428571407,-0.012590799031463,-0.000000000000000,0.012469733656158,0.000000000000000,0.001755447941807,0.003571428571407,2 -8697,8710,8712,8725,-0.166071428571395,0.167524213075184,-0.167857142857105,0.174576271186516,-0.164285714285684,0.172881355932355,-0.166071428571395,0.179933414043688,-0.001634382566508,-0.003571428571421,-0.012469733656158,-0.000000000000000,0.012348668280851,0.000000000000000,0.001755447941814,0.003571428571421,2 -8698,8711,8713,8726,-0.162499999999982,0.165889830508679,-0.164285714285684,0.172881355932355,-0.160714285714279,0.171186440678202,-0.162499999999982,0.178177966101878,-0.001634382566501,-0.003571428571405,-0.012348668280851,-0.000000000000000,0.012227602905546,0.000000000000000,0.001755447941806,0.003571428571405,2 -8699,8712,8714,8727,-0.158928571428564,0.164255447942173,-0.160714285714279,0.171186440678202,-0.157142857142850,0.169491525424037,-0.158928571428565,0.176422518160066,-0.001634382566512,-0.003571428571429,-0.012227602905546,-0.000000000000000,0.012106537530239,0.000000000000000,0.001755447941818,0.003571428571429,2 -8700,8713,8715,8728,-0.155357142857136,0.162621065375662,-0.157142857142850,0.169491525424037,-0.153571428571423,0.167796610169873,-0.155357142857136,0.174667070218248,-0.001634382566511,-0.003571428571427,-0.012106537530239,-0.000000000000000,0.011985472154933,0.000000000000000,0.001755447941817,0.003571428571427,2 -8701,8714,8729,10201,-0.151785714285711,0.160986682809152,-0.153571428571423,0.167796610169873,-0.151785714285711,0.172911622276432,-0.150000000000000,0.166101694915711,-0.001634382566509,-0.003571428571423,-0.011985472154933,-0.000000000000000,0.001755447941815,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2286,8702,8717,8730,-0.200000000000000,0.203389830507945,-0.198214285714291,0.195732445520069,-0.196428571428583,0.201573849878479,-0.198214285714291,0.209231234866355,-0.013559322033940,-0.000000000000000,-0.001755447941812,-0.003571428571417,0.013438256658632,0.000000000000000,0.001876513317120,0.003571428571417,2 -8703,8716,8718,8731,-0.194642857142864,0.193976997578251,-0.196428571428583,0.201573849878479,-0.192857142857145,0.199757869249002,-0.194642857142864,0.207354721549229,-0.001755447941823,-0.003571428571438,-0.013438256658632,-0.000000000000000,0.013317191283324,0.000000000000000,0.001876513317131,0.003571428571438,2 -8704,8717,8719,8732,-0.191071428571419,0.192221549636425,-0.192857142857145,0.199757869249002,-0.189285714285694,0.197941888619519,-0.191071428571419,0.205478208232095,-0.001755447941829,-0.003571428571451,-0.013317191283324,-0.000000000000000,0.013196125908015,0.000000000000000,0.001876513317138,0.003571428571451,2 -8705,8718,8720,8733,-0.187499999999963,0.190466101694594,-0.189285714285694,0.197941888619519,-0.185714285714231,0.196125907990029,-0.187499999999963,0.203601694914954,-0.001755447941834,-0.003571428571462,-0.013196125908015,-0.000000000000000,0.013075060532706,0.000000000000000,0.001876513317144,0.003571428571462,2 -8706,8719,8721,8734,-0.183928571428507,0.188710653752763,-0.185714285714231,0.196125907990029,-0.182142857142783,0.194309927360547,-0.183928571428507,0.201725181597814,-0.001755447941828,-0.003571428571449,-0.013075060532706,-0.000000000000000,0.012953995157397,0.000000000000000,0.001876513317137,0.003571428571449,2 -8707,8720,8722,8735,-0.180357142857065,0.186955205810938,-0.182142857142783,0.194309927360547,-0.178571428571347,0.192493946731072,-0.180357142857065,0.199848668280681,-0.001755447941822,-0.003571428571436,-0.012953995157397,-0.000000000000000,0.012832929782089,-0.000000000000000,0.001876513317130,0.003571428571436,2 -8708,8721,8723,8736,-0.176785714285631,0.185199757869118,-0.178571428571347,0.192493946731072,-0.174999999999916,0.190677966101598,-0.176785714285631,0.197972154963552,-0.001755447941819,-0.003571428571431,-0.012832929782089,0.000000000000000,0.012711864406781,0.000000000000000,0.001876513317127,0.003571428571431,2 -8709,8722,8724,8737,-0.173214285714214,0.183444309927305,-0.174999999999916,0.190677966101598,-0.171428571428512,0.188861985472139,-0.173214285714214,0.196095641646432,-0.001755447941806,-0.003571428571404,-0.012711864406781,-0.000000000000000,0.012590799031473,0.000000000000000,0.001876513317113,0.003571428571404,2 -8710,8723,8725,8738,-0.169642857142809,0.181688861985499,-0.171428571428512,0.188861985472139,-0.167857142857105,0.187046004842678,-0.169642857142809,0.194219128329318,-0.001755447941807,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656166,0.000000000000000,0.001876513317115,0.003571428571407,2 -8711,8724,8726,8739,-0.166071428571395,0.179933414043688,-0.167857142857105,0.187046004842678,-0.164285714285684,0.185230024213210,-0.166071428571395,0.192342615012200,-0.001755447941814,-0.003571428571421,-0.012469733656166,-0.000000000000000,0.012348668280858,0.000000000000000,0.001876513317122,0.003571428571421,2 -8712,8725,8727,8740,-0.162499999999982,0.178177966101878,-0.164285714285684,0.185230024213210,-0.160714285714279,0.183414043583750,-0.162499999999982,0.190466101695082,-0.001755447941806,-0.003571428571405,-0.012348668280858,-0.000000000000000,0.012227602905551,0.000000000000000,0.001876513317114,0.003571428571405,2 -8713,8726,8728,8741,-0.158928571428565,0.176422518160066,-0.160714285714279,0.183414043583750,-0.157142857142850,0.181598062954278,-0.158928571428565,0.188589588377962,-0.001755447941818,-0.003571428571429,-0.012227602905551,-0.000000000000000,0.012106537530243,0.000000000000000,0.001876513317126,0.003571428571429,2 -8714,8727,8729,8742,-0.155357142857136,0.174667070218248,-0.157142857142850,0.181598062954278,-0.153571428571423,0.179782082324807,-0.155357142857136,0.186713075060837,-0.001755447941817,-0.003571428571427,-0.012106537530243,-0.000000000000000,0.011985472154935,0.000000000000000,0.001876513317125,0.003571428571427,2 -8715,8728,8743,10202,-0.151785714285711,0.172911622276432,-0.153571428571423,0.179782082324807,-0.151785714285711,0.184836561743712,-0.150000000000000,0.177966101695338,-0.001755447941815,-0.003571428571423,-0.011985472154935,-0.000000000000000,0.001876513317123,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2287,8716,8731,8744,-0.200000000000000,0.216949152541877,-0.198214285714291,0.209231234866355,-0.196428571428583,0.215012106537104,-0.198214285714291,0.222730024212626,-0.013559322033924,-0.000000000000000,-0.001876513317120,-0.003571428571417,0.013438256658617,0.000000000000000,0.001997578692427,0.003571428571417,2 -8717,8730,8732,8745,-0.194642857142864,0.207354721549229,-0.196428571428583,0.215012106537104,-0.192857142857145,0.213075060532319,-0.194642857142864,0.220732445520193,-0.001876513317131,-0.003571428571438,-0.013438256658617,-0.000000000000000,0.013317191283310,0.000000000000000,0.001997578692438,0.003571428571438,2 -8718,8731,8733,8746,-0.191071428571419,0.205478208232095,-0.192857142857145,0.213075060532319,-0.189285714285694,0.211138014527527,-0.191071428571419,0.218734866827751,-0.001876513317138,-0.003571428571451,-0.013317191283310,-0.000000000000000,0.013196125908002,0.000000000000000,0.001997578692446,0.003571428571451,2 -8719,8732,8734,8747,-0.187499999999963,0.203601694914954,-0.189285714285694,0.211138014527527,-0.185714285714231,0.209200968522730,-0.187499999999963,0.216737288135303,-0.001876513317144,-0.003571428571462,-0.013196125908002,-0.000000000000000,0.013075060532694,0.000000000000000,0.001997578692452,0.003571428571462,2 -8720,8733,8735,8748,-0.183928571428507,0.201725181597814,-0.185714285714231,0.209200968522730,-0.182142857142783,0.207263922517939,-0.183928571428507,0.214739709442855,-0.001876513317137,-0.003571428571449,-0.013075060532694,-0.000000000000000,0.012953995157387,-0.000000000000000,0.001997578692444,0.003571428571449,2 -8721,8734,8736,8749,-0.180357142857065,0.199848668280681,-0.182142857142783,0.207263922517939,-0.178571428571347,0.205326876513156,-0.180357142857065,0.212742130750414,-0.001876513317130,-0.003571428571436,-0.012953995157387,0.000000000000000,0.012832929782080,0.000000000000000,0.001997578692437,0.003571428571436,2 -8722,8735,8737,8750,-0.176785714285631,0.197972154963552,-0.178571428571347,0.205326876513156,-0.174999999999916,0.203389830508375,-0.176785714285631,0.210744552057978,-0.001876513317127,-0.003571428571431,-0.012832929782080,-0.000000000000000,0.012711864406772,0.000000000000000,0.001997578692434,0.003571428571431,2 -8723,8736,8738,8751,-0.173214285714214,0.196095641646432,-0.174999999999916,0.203389830508375,-0.171428571428512,0.201452784503609,-0.173214285714214,0.208746973365552,-0.001876513317113,-0.003571428571404,-0.012711864406772,-0.000000000000000,0.012590799031466,0.000000000000000,0.001997578692419,0.003571428571404,2 -8724,8737,8739,8752,-0.169642857142809,0.194219128329318,-0.171428571428512,0.201452784503609,-0.167857142857105,0.199515738498841,-0.169642857142809,0.206749394673132,-0.001876513317115,-0.003571428571407,-0.012590799031466,-0.000000000000000,0.012469733656160,0.000000000000000,0.001997578692421,0.003571428571407,2 -8725,8738,8740,8753,-0.166071428571395,0.192342615012200,-0.167857142857105,0.199515738498841,-0.164285714285684,0.197578692494066,-0.166071428571395,0.204751815980707,-0.001876513317122,-0.003571428571421,-0.012469733656160,-0.000000000000000,0.012348668280853,0.000000000000000,0.001997578692429,0.003571428571421,2 -8726,8739,8741,8754,-0.162499999999982,0.190466101695082,-0.164285714285684,0.197578692494066,-0.160714285714279,0.195641646489299,-0.162499999999982,0.202754237288283,-0.001876513317114,-0.003571428571405,-0.012348668280853,-0.000000000000000,0.012227602905547,0.000000000000000,0.001997578692420,0.003571428571405,2 -8727,8740,8742,8755,-0.158928571428565,0.188589588377962,-0.160714285714279,0.195641646489299,-0.157142857142850,0.193704600484519,-0.158928571428565,0.200756658595856,-0.001876513317126,-0.003571428571429,-0.012227602905547,-0.000000000000000,0.012106537530240,0.000000000000000,0.001997578692433,0.003571428571429,2 -8728,8741,8743,8756,-0.155357142857136,0.186713075060837,-0.157142857142850,0.193704600484519,-0.153571428571423,0.191767554479741,-0.155357142857136,0.198759079903423,-0.001876513317125,-0.003571428571427,-0.012106537530240,-0.000000000000000,0.011985472154933,0.000000000000000,0.001997578692432,0.003571428571427,2 -8729,8742,8757,10203,-0.151785714285711,0.184836561743712,-0.153571428571423,0.191767554479741,-0.151785714285711,0.196761501210992,-0.150000000000000,0.189830508474964,-0.001876513317123,-0.003571428571423,-0.011985472154933,-0.000000000000000,0.001997578692430,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2288,8730,8745,8758,-0.200000000000000,0.230508474575816,-0.198214285714291,0.222730024212626,-0.196428571428583,0.228450363195735,-0.198214285714291,0.236228813558925,-0.013559322033954,-0.000000000000000,-0.001997578692427,-0.003571428571417,0.013438256658645,0.000000000000000,0.002118644067735,0.003571428571417,2 -8731,8744,8746,8759,-0.194642857142864,0.220732445520193,-0.196428571428583,0.228450363195735,-0.192857142857145,0.226392251815642,-0.194642857142864,0.234110169491184,-0.001997578692438,-0.003571428571438,-0.013438256658645,-0.000000000000000,0.013317191283336,0.000000000000000,0.002118644067748,0.003571428571438,2 -8732,8745,8747,8760,-0.191071428571419,0.218734866827751,-0.192857142857145,0.226392251815642,-0.189285714285694,0.224334140435542,-0.191071428571419,0.231991525423432,-0.001997578692446,-0.003571428571451,-0.013317191283336,-0.000000000000000,0.013196125908026,0.000000000000000,0.002118644067755,0.003571428571451,2 -8733,8746,8748,8761,-0.187499999999963,0.216737288135303,-0.189285714285694,0.224334140435542,-0.185714285714231,0.222276029055435,-0.187499999999963,0.229872881355673,-0.001997578692452,-0.003571428571462,-0.013196125908026,-0.000000000000000,0.013075060532715,0.000000000000000,0.002118644067762,0.003571428571462,2 -8734,8747,8749,8762,-0.183928571428507,0.214739709442855,-0.185714285714231,0.222276029055435,-0.182142857142783,0.220217917675335,-0.183928571428507,0.227754237287915,-0.001997578692444,-0.003571428571449,-0.013075060532715,-0.000000000000000,0.012953995157406,0.000000000000000,0.002118644067754,0.003571428571449,2 -8735,8748,8750,8763,-0.180357142857065,0.212742130750414,-0.182142857142783,0.220217917675335,-0.178571428571347,0.218159806295244,-0.180357142857065,0.225635593220165,-0.001997578692437,-0.003571428571436,-0.012953995157406,-0.000000000000000,0.012832929782096,0.000000000000000,0.002118644067747,0.003571428571436,2 -8736,8749,8751,8764,-0.176785714285631,0.210744552057978,-0.178571428571347,0.218159806295244,-0.174999999999916,0.216101694915155,-0.176785714285631,0.223516949152420,-0.001997578692434,-0.003571428571431,-0.012832929782096,-0.000000000000000,0.012711864406787,0.000000000000000,0.002118644067743,0.003571428571431,2 -8737,8750,8752,8765,-0.173214285714214,0.208746973365552,-0.174999999999916,0.216101694915155,-0.171428571428512,0.214043583535082,-0.173214285714214,0.221398305084685,-0.001997578692419,-0.003571428571404,-0.012711864406787,-0.000000000000000,0.012590799031479,0.000000000000000,0.002118644067727,0.003571428571404,2 -8738,8751,8753,8766,-0.169642857142809,0.206749394673132,-0.171428571428512,0.214043583535082,-0.167857142857105,0.211985472155006,-0.169642857142809,0.219279661016957,-0.001997578692421,-0.003571428571407,-0.012590799031479,-0.000000000000000,0.012469733656171,0.000000000000000,0.002118644067730,0.003571428571407,2 -8739,8752,8754,8767,-0.166071428571395,0.204751815980707,-0.167857142857105,0.211985472155006,-0.164285714285684,0.209927360774923,-0.166071428571395,0.217161016949223,-0.001997578692429,-0.003571428571421,-0.012469733656171,-0.000000000000000,0.012348668280862,0.000000000000000,0.002118644067737,0.003571428571421,2 -8740,8753,8755,8768,-0.162499999999982,0.202754237288283,-0.164285714285684,0.209927360774923,-0.160714285714279,0.207869249394850,-0.162499999999982,0.215042372881491,-0.001997578692420,-0.003571428571405,-0.012348668280862,-0.000000000000000,0.012227602905554,-0.000000000000000,0.002118644067728,0.003571428571405,2 -8741,8754,8756,8769,-0.158928571428565,0.200756658595856,-0.160714285714279,0.207869249394850,-0.157142857142850,0.205811138014762,-0.158928571428564,0.212923728813755,-0.001997578692433,-0.003571428571429,-0.012227602905554,0.000000000000000,0.012106537530245,0.000000000000000,0.002118644067743,0.003571428571429,2 -8742,8755,8757,8770,-0.155357142857136,0.198759079903423,-0.157142857142850,0.205811138014762,-0.153571428571423,0.203753026634675,-0.155357142857136,0.210805084746013,-0.001997578692432,-0.003571428571427,-0.012106537530245,-0.000000000000000,0.011985472154935,0.000000000000000,0.002118644067741,0.003571428571427,2 -8743,8756,8771,10204,-0.151785714285711,0.196761501210992,-0.153571428571423,0.203753026634675,-0.151785714285711,0.208686440678274,-0.150000000000000,0.201694915254591,-0.001997578692430,-0.003571428571423,-0.011985472154935,-0.000000000000000,0.002118644067738,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2289,8744,8759,8772,-0.200000000000000,0.244067796609748,-0.198214285714291,0.236228813558925,-0.196428571428583,0.241888619854360,-0.198214285714291,0.249727602905183,-0.013559322033910,-0.000000000000000,-0.002118644067735,-0.003571428571417,0.013438256658605,0.000000000000000,0.002239709443040,0.003571428571417,2 -8745,8758,8760,8773,-0.194642857142864,0.234110169491184,-0.196428571428583,0.241888619854360,-0.192857142857145,0.239709443098960,-0.194642857142864,0.247487893462136,-0.002118644067748,-0.003571428571438,-0.013438256658605,-0.000000000000000,0.013317191283299,0.000000000000000,0.002239709443053,0.003571428571438,2 -8746,8759,8761,8774,-0.191071428571419,0.231991525423432,-0.192857142857145,0.239709443098960,-0.189285714285694,0.237530266343551,-0.191071428571419,0.245248184019078,-0.002118644067755,-0.003571428571451,-0.013317191283299,-0.000000000000000,0.013196125907993,0.000000000000000,0.002239709443062,0.003571428571451,2 -8747,8760,8762,8775,-0.187499999999963,0.229872881355673,-0.189285714285694,0.237530266343551,-0.185714285714231,0.235351089588136,-0.187499999999963,0.243008474576013,-0.002118644067762,-0.003571428571462,-0.013196125907993,-0.000000000000000,0.013075060532687,0.000000000000000,0.002239709443069,0.003571428571462,2 -8748,8761,8763,8776,-0.183928571428507,0.227754237287915,-0.185714285714231,0.235351089588136,-0.182142857142783,0.233171912832729,-0.183928571428507,0.240768765132949,-0.002118644067754,-0.003571428571449,-0.013075060532687,-0.000000000000000,0.012953995157380,0.000000000000000,0.002239709443060,0.003571428571449,2 -8749,8762,8764,8777,-0.180357142857065,0.225635593220165,-0.182142857142783,0.233171912832729,-0.178571428571347,0.230992736077329,-0.180357142857065,0.238529055689893,-0.002118644067747,-0.003571428571436,-0.012953995157380,-0.000000000000000,0.012832929782075,0.000000000000000,0.002239709443052,0.003571428571436,2 -8750,8763,8765,8778,-0.176785714285631,0.223516949152420,-0.178571428571347,0.230992736077329,-0.174999999999916,0.228813559321933,-0.176785714285631,0.236289346246842,-0.002118644067743,-0.003571428571431,-0.012832929782075,-0.000000000000000,0.012711864406769,0.000000000000000,0.002239709443049,0.003571428571431,2 -8751,8764,8766,8779,-0.173214285714214,0.221398305084685,-0.174999999999916,0.228813559321933,-0.171428571428512,0.226634382566553,-0.173214285714214,0.234049636803801,-0.002118644067727,-0.003571428571404,-0.012711864406769,-0.000000000000000,0.012590799031464,0.000000000000000,0.002239709443032,0.003571428571404,2 -8752,8765,8767,8780,-0.169642857142809,0.219279661016957,-0.171428571428512,0.226634382566553,-0.167857142857105,0.224455205811171,-0.169642857142809,0.231809927360768,-0.002118644067730,-0.003571428571407,-0.012590799031464,-0.000000000000000,0.012469733656159,0.000000000000000,0.002239709443034,0.003571428571407,2 -8753,8766,8768,8781,-0.166071428571395,0.217161016949223,-0.167857142857105,0.224455205811171,-0.164285714285684,0.222276029055781,-0.166071428571395,0.229570217917730,-0.002118644067737,-0.003571428571421,-0.012469733656159,-0.000000000000000,0.012348668280854,0.000000000000000,0.002239709443043,0.003571428571421,2 -8754,8767,8769,8782,-0.162499999999982,0.215042372881491,-0.164285714285684,0.222276029055781,-0.160714285714279,0.220096852300401,-0.162499999999982,0.227330508474692,-0.002118644067728,-0.003571428571405,-0.012348668280854,-0.000000000000000,0.012227602905549,0.000000000000000,0.002239709443033,0.003571428571405,2 -8755,8768,8770,8783,-0.158928571428564,0.212923728813755,-0.160714285714279,0.220096852300401,-0.157142857142850,0.217917675545006,-0.158928571428564,0.225090799031652,-0.002118644067743,-0.003571428571429,-0.012227602905549,-0.000000000000000,0.012106537530244,0.000000000000000,0.002239709443048,0.003571428571429,2 -8756,8769,8771,8784,-0.155357142857136,0.210805084746013,-0.157142857142850,0.217917675545006,-0.153571428571423,0.215738498789612,-0.155357142857136,0.222851089588604,-0.002118644067741,-0.003571428571427,-0.012106537530244,-0.000000000000000,0.011985472154938,0.000000000000000,0.002239709443047,0.003571428571427,2 -8757,8770,8785,10205,-0.151785714285711,0.208686440678274,-0.153571428571423,0.215738498789612,-0.151785714285711,0.220611380145559,-0.150000000000000,0.213559322034221,-0.002118644067738,-0.003571428571423,-0.011985472154938,-0.000000000000000,0.002239709443044,0.003571428571423,0.011864406779633,-0.000000000000000,2 -2290,8758,8773,8786,-0.200000000000000,0.257627118643680,-0.198214285714291,0.249727602905183,-0.196428571428583,0.255326876512985,-0.198214285714291,0.263226392251483,-0.013559322033954,-0.000000000000000,-0.002239709443040,-0.003571428571417,0.013438256658646,0.000000000000000,0.002360774818349,0.003571428571417,2 -8759,8772,8774,8787,-0.194642857142864,0.247487893462136,-0.196428571428583,0.255326876512985,-0.192857142857145,0.253026634382277,-0.194642857142864,0.260865617433127,-0.002239709443053,-0.003571428571438,-0.013438256658646,-0.000000000000000,0.013317191283336,0.000000000000000,0.002360774818363,0.003571428571438,2 -8760,8773,8775,8788,-0.191071428571419,0.245248184019078,-0.192857142857145,0.253026634382277,-0.189285714285694,0.250726392251561,-0.191071428571419,0.258504842614760,-0.002239709443062,-0.003571428571451,-0.013317191283336,-0.000000000000000,0.013196125908027,0.000000000000000,0.002360774818371,0.003571428571451,2 -8761,8774,8776,8789,-0.187499999999963,0.243008474576013,-0.189285714285694,0.250726392251561,-0.185714285714231,0.248426150120837,-0.187499999999963,0.256144067796385,-0.002239709443069,-0.003571428571462,-0.013196125908027,-0.000000000000000,0.013075060532717,0.000000000000000,0.002360774818379,0.003571428571462,2 -8762,8775,8777,8790,-0.183928571428507,0.240768765132949,-0.185714285714231,0.248426150120837,-0.182142857142783,0.246125907990122,-0.183928571428507,0.253783292978011,-0.002239709443060,-0.003571428571449,-0.013075060532717,-0.000000000000000,0.012953995157407,0.000000000000000,0.002360774818370,0.003571428571449,2 -8763,8776,8778,8791,-0.180357142857065,0.238529055689893,-0.182142857142783,0.246125907990122,-0.178571428571347,0.243825665859416,-0.180357142857065,0.251422518159646,-0.002239709443052,-0.003571428571436,-0.012953995157407,-0.000000000000000,0.012832929782098,0.000000000000000,0.002360774818361,0.003571428571436,2 -8764,8777,8779,8792,-0.176785714285631,0.236289346246842,-0.178571428571347,0.243825665859416,-0.174999999999916,0.241525423728712,-0.176785714285631,0.249061743341286,-0.002239709443049,-0.003571428571431,-0.012832929782098,-0.000000000000000,0.012711864406790,0.000000000000000,0.002360774818358,0.003571428571431,2 -8765,8778,8780,8793,-0.173214285714214,0.234049636803801,-0.174999999999916,0.241525423728712,-0.171428571428512,0.239225181598026,-0.173214285714214,0.246700968522937,-0.002239709443032,-0.003571428571404,-0.012711864406790,-0.000000000000000,0.012590799031482,0.000000000000000,0.002360774818340,0.003571428571404,2 -8766,8779,8781,8794,-0.169642857142809,0.231809927360768,-0.171428571428512,0.239225181598026,-0.167857142857105,0.236924939467338,-0.169642857142809,0.244340193704596,-0.002239709443034,-0.003571428571407,-0.012590799031482,-0.000000000000000,0.012469733656174,0.000000000000000,0.002360774818342,0.003571428571407,2 -8767,8780,8782,8795,-0.166071428571395,0.229570217917730,-0.167857142857105,0.236924939467338,-0.164285714285684,0.234624697336641,-0.166071428571395,0.241979418886249,-0.002239709443043,-0.003571428571421,-0.012469733656174,-0.000000000000000,0.012348668280865,0.000000000000000,0.002360774818351,0.003571428571421,2 -8768,8781,8783,8796,-0.162499999999982,0.227330508474692,-0.164285714285684,0.234624697336641,-0.160714285714279,0.232324455205954,-0.162499999999982,0.239618644067903,-0.002239709443033,-0.003571428571405,-0.012348668280865,-0.000000000000000,0.012227602905557,0.000000000000000,0.002360774818341,0.003571428571405,2 -8769,8782,8784,8797,-0.158928571428564,0.225090799031652,-0.160714285714279,0.232324455205954,-0.157142857142850,0.230024213075252,-0.158928571428564,0.237257869249555,-0.002239709443048,-0.003571428571429,-0.012227602905557,-0.000000000000000,0.012106537530249,0.000000000000000,0.002360774818357,0.003571428571429,2 -8770,8783,8785,8798,-0.155357142857136,0.222851089588604,-0.157142857142850,0.230024213075252,-0.153571428571423,0.227723970944551,-0.155357142857136,0.234897094431199,-0.002239709443047,-0.003571428571427,-0.012106537530249,-0.000000000000000,0.011985472154940,0.000000000000000,0.002360774818355,0.003571428571427,2 -8771,8784,8799,10206,-0.151785714285711,0.220611380145559,-0.153571428571423,0.227723970944551,-0.151785714285711,0.232536319612845,-0.150000000000000,0.225423728813853,-0.002239709443044,-0.003571428571423,-0.011985472154940,-0.000000000000000,0.002360774818353,0.003571428571423,0.011864406779631,-0.000000000000000,2 -2291,8772,8787,8800,-0.200000000000000,0.271186440677618,-0.198214285714291,0.263226392251483,-0.196428571428583,0.268765133171616,-0.198214285714291,0.276725181597751,-0.013559322033922,-0.000000000000000,-0.002360774818349,-0.003571428571417,0.013438256658616,0.000000000000000,0.002481840193655,0.003571428571417,2 -8773,8786,8788,8801,-0.194642857142864,0.260865617433127,-0.196428571428583,0.268765133171616,-0.192857142857145,0.266343825665600,-0.194642857142864,0.274243341404090,-0.002360774818363,-0.003571428571438,-0.013438256658616,-0.000000000000000,0.013317191283309,0.000000000000000,0.002481840193669,0.003571428571438,2 -8774,8787,8789,8802,-0.191071428571419,0.258504842614760,-0.192857142857145,0.266343825665600,-0.189285714285694,0.263922518159576,-0.191071428571419,0.271761501210416,-0.002360774818371,-0.003571428571451,-0.013317191283309,-0.000000000000000,0.013196125908002,0.000000000000000,0.002481840193678,0.003571428571451,2 -8775,8788,8790,8803,-0.187499999999963,0.256144067796385,-0.189285714285694,0.263922518159576,-0.185714285714231,0.261501210653543,-0.187499999999963,0.269279661016734,-0.002360774818379,-0.003571428571462,-0.013196125908002,-0.000000000000000,0.013075060532695,0.000000000000000,0.002481840193686,0.003571428571462,2 -8776,8789,8791,8804,-0.183928571428507,0.253783292978011,-0.185714285714231,0.261501210653543,-0.182142857142783,0.259079903147520,-0.183928571428507,0.266797820823053,-0.002360774818370,-0.003571428571449,-0.013075060532695,-0.000000000000000,0.012953995157388,0.000000000000000,0.002481840193676,0.003571428571449,2 -8777,8790,8792,8805,-0.180357142857065,0.251422518159646,-0.182142857142783,0.259079903147520,-0.178571428571347,0.256658595641506,-0.180357142857065,0.264315980629381,-0.002360774818361,-0.003571428571436,-0.012953995157388,-0.000000000000000,0.012832929782082,0.000000000000000,0.002481840193668,0.003571428571436,2 -8778,8791,8793,8806,-0.176785714285631,0.249061743341286,-0.178571428571347,0.256658595641506,-0.174999999999916,0.254237288135495,-0.176785714285631,0.261834140435715,-0.002360774818358,-0.003571428571431,-0.012832929782082,-0.000000000000000,0.012711864406775,0.000000000000000,0.002481840193664,0.003571428571431,2 -8779,8792,8794,8807,-0.173214285714214,0.246700968522937,-0.174999999999916,0.254237288135495,-0.171428571428512,0.251815980629502,-0.173214285714214,0.259352300242060,-0.002360774818340,-0.003571428571404,-0.012711864406775,-0.000000000000000,0.012590799031470,-0.000000000000000,0.002481840193645,0.003571428571404,2 -8780,8793,8795,8808,-0.169642857142809,0.244340193704596,-0.171428571428512,0.251815980629502,-0.167857142857105,0.249394673123507,-0.169642857142808,0.256870460048413,-0.002360774818342,-0.003571428571407,-0.012590799031470,0.000000000000000,0.012469733656164,0.000000000000000,0.002481840193648,0.003571428571407,2 -8781,8794,8796,8809,-0.166071428571395,0.241979418886249,-0.167857142857105,0.249394673123507,-0.164285714285684,0.246973365617503,-0.166071428571395,0.254388619854761,-0.002360774818351,-0.003571428571421,-0.012469733656164,-0.000000000000000,0.012348668280859,0.000000000000000,0.002481840193657,0.003571428571421,2 -8782,8795,8797,8810,-0.162499999999982,0.239618644067903,-0.164285714285684,0.246973365617503,-0.160714285714279,0.244552058111510,-0.162499999999982,0.251906779661109,-0.002360774818341,-0.003571428571405,-0.012348668280859,-0.000000000000000,0.012227602905553,0.000000000000000,0.002481840193646,0.003571428571405,2 -8783,8796,8798,8811,-0.158928571428564,0.237257869249555,-0.160714285714279,0.244552058111510,-0.157142857142850,0.242130750605500,-0.158928571428565,0.249424939467455,-0.002360774818357,-0.003571428571429,-0.012227602905553,-0.000000000000000,0.012106537530247,0.000000000000000,0.002481840193663,0.003571428571429,2 -8784,8797,8799,8812,-0.155357142857136,0.234897094431199,-0.157142857142850,0.242130750605500,-0.153571428571423,0.239709443099491,-0.155357142857136,0.246943099273792,-0.002360774818355,-0.003571428571427,-0.012106537530247,-0.000000000000000,0.011985472154941,0.000000000000000,0.002481840193661,0.003571428571427,2 -8785,8798,8813,10207,-0.151785714285711,0.232536319612845,-0.153571428571423,0.239709443099491,-0.151785714285711,0.244461259080132,-0.150000000000000,0.237288135593486,-0.002360774818353,-0.003571428571423,-0.011985472154941,-0.000000000000000,0.002481840193658,0.003571428571423,0.011864406779635,-0.000000000000000,2 -2292,8786,8801,8814,-0.200000000000000,0.284745762711550,-0.198214285714291,0.276725181597751,-0.196428571428583,0.282203389830241,-0.198214285714291,0.290223970944040,-0.013559322033942,-0.000000000000000,-0.002481840193655,-0.003571428571417,0.013438256658634,0.000000000000000,0.002602905568963,0.003571428571417,2 -8787,8800,8802,8815,-0.194642857142864,0.274243341404090,-0.196428571428583,0.282203389830241,-0.192857142857145,0.279661016948918,-0.194642857142864,0.287621065375069,-0.002481840193669,-0.003571428571438,-0.013438256658634,-0.000000000000000,0.013317191283325,0.000000000000000,0.002602905568978,0.003571428571438,2 -8788,8801,8803,8816,-0.191071428571419,0.271761501210416,-0.192857142857145,0.279661016948918,-0.189285714285694,0.277118644067585,-0.191071428571419,0.285018159806087,-0.002481840193678,-0.003571428571451,-0.013317191283325,-0.000000000000000,0.013196125908016,0.000000000000000,0.002602905568988,0.003571428571451,2 -8789,8802,8804,8817,-0.187499999999963,0.269279661016734,-0.189285714285694,0.277118644067585,-0.185714285714231,0.274576271186244,-0.187499999999963,0.282415254237095,-0.002481840193686,-0.003571428571462,-0.013196125908016,-0.000000000000000,0.013075060532706,0.000000000000000,0.002602905568996,0.003571428571462,2 -8790,8803,8805,8818,-0.183928571428507,0.266797820823053,-0.185714285714231,0.274576271186244,-0.182142857142783,0.272033898304913,-0.183928571428507,0.279812348668104,-0.002481840193676,-0.003571428571449,-0.013075060532706,-0.000000000000000,0.012953995157397,0.000000000000000,0.002602905568986,0.003571428571449,2 -8791,8804,8806,8819,-0.180357142857065,0.264315980629381,-0.182142857142783,0.272033898304913,-0.178571428571347,0.269491525423591,-0.180357142857065,0.277209443099123,-0.002481840193668,-0.003571428571436,-0.012953995157397,-0.000000000000000,0.012832929782088,-0.000000000000000,0.002602905568976,0.003571428571436,2 -8792,8805,8807,8820,-0.176785714285631,0.261834140435715,-0.178571428571347,0.269491525423591,-0.174999999999916,0.266949152542272,-0.176785714285631,0.274606537530149,-0.002481840193664,-0.003571428571431,-0.012832929782088,0.000000000000000,0.012711864406780,0.000000000000000,0.002602905568973,0.003571428571431,2 -8793,8806,8808,8821,-0.173214285714214,0.259352300242060,-0.174999999999916,0.266949152542272,-0.171428571428512,0.264406779660973,-0.173214285714214,0.272003631961186,-0.002481840193645,-0.003571428571404,-0.012711864406780,-0.000000000000000,0.012590799031472,0.000000000000000,0.002602905568953,0.003571428571404,2 -8794,8807,8809,8822,-0.169642857142808,0.256870460048413,-0.171428571428512,0.264406779660973,-0.167857142857105,0.261864406779671,-0.169642857142809,0.269400726392231,-0.002481840193648,-0.003571428571407,-0.012590799031472,-0.000000000000000,0.012469733656164,0.000000000000000,0.002602905568956,0.003571428571407,2 -8795,8808,8810,8823,-0.166071428571395,0.254388619854761,-0.167857142857105,0.261864406779671,-0.164285714285684,0.259322033898360,-0.166071428571395,0.266797820823271,-0.002481840193657,-0.003571428571421,-0.012469733656164,-0.000000000000000,0.012348668280856,0.000000000000000,0.002602905568965,0.003571428571421,2 -8796,8809,8811,8824,-0.162499999999982,0.251906779661109,-0.164285714285684,0.259322033898360,-0.160714285714279,0.256779661017060,-0.162499999999982,0.264194915254311,-0.002481840193646,-0.003571428571405,-0.012348668280856,-0.000000000000000,0.012227602905548,0.000000000000000,0.002602905568954,0.003571428571405,2 -8797,8810,8812,8825,-0.158928571428565,0.249424939467455,-0.160714285714279,0.256779661017060,-0.157142857142850,0.254237288135743,-0.158928571428564,0.261592009685348,-0.002481840193663,-0.003571428571429,-0.012227602905548,-0.000000000000000,0.012106537530239,-0.000000000000000,0.002602905568972,0.003571428571430,2 -8798,8811,8813,8826,-0.155357142857136,0.246943099273792,-0.157142857142850,0.254237288135743,-0.153571428571423,0.251694915254427,-0.155357142857136,0.258989104116377,-0.002481840193661,-0.003571428571427,-0.012106537530239,0.000000000000000,0.011985472154931,0.000000000000000,0.002602905568970,0.003571428571427,2 -8799,8812,8827,10208,-0.151785714285711,0.244461259080132,-0.153571428571423,0.251694915254427,-0.151785714285711,0.256386198547409,-0.150000000000000,0.249152542373114,-0.002481840193658,-0.003571428571423,-0.011985472154931,-0.000000000000000,0.002602905568967,0.003571428571423,0.011864406779622,-0.000000000000000,2 -2293,8800,8815,8828,-0.200000000000000,0.298305084745489,-0.198214285714291,0.290223970944040,-0.196428571428583,0.295641646488872,-0.198214285714291,0.303722760290322,-0.013559322033936,-0.000000000000000,-0.002602905568963,-0.003571428571417,0.013438256658628,0.000000000000000,0.002723970944271,0.003571428571417,2 -8801,8814,8816,8829,-0.194642857142864,0.287621065375069,-0.196428571428583,0.295641646488872,-0.192857142857145,0.292978208232240,-0.194642857142864,0.300998789346043,-0.002602905568978,-0.003571428571438,-0.013438256658628,-0.000000000000000,0.013317191283320,0.000000000000000,0.002723970944287,0.003571428571438,2 -8802,8815,8817,8830,-0.191071428571419,0.285018159806087,-0.192857142857145,0.292978208232240,-0.189285714285694,0.290314769975598,-0.191071428571419,0.298274818401752,-0.002602905568988,-0.003571428571451,-0.013317191283320,-0.000000000000000,0.013196125908011,0.000000000000000,0.002723970944296,0.003571428571451,2 -8803,8816,8818,8831,-0.187499999999963,0.282415254237095,-0.189285714285694,0.290314769975598,-0.185714285714231,0.287651331718948,-0.187499999999963,0.295550847457451,-0.002602905568996,-0.003571428571462,-0.013196125908011,-0.000000000000000,0.013075060532701,0.000000000000000,0.002723970944305,0.003571428571462,2 -8804,8817,8819,8832,-0.183928571428507,0.279812348668104,-0.185714285714231,0.287651331718948,-0.182142857142783,0.284987893462308,-0.183928571428507,0.292826876513151,-0.002602905568986,-0.003571428571449,-0.013075060532701,-0.000000000000000,0.012953995157393,0.000000000000000,0.002723970944295,0.003571428571449,2 -8805,8818,8820,8833,-0.180357142857065,0.277209443099123,-0.182142857142783,0.284987893462308,-0.178571428571347,0.282324455205677,-0.180357142857065,0.290102905568861,-0.002602905568976,-0.003571428571436,-0.012953995157393,-0.000000000000000,0.012832929782084,0.000000000000000,0.002723970944285,0.003571428571436,2 -8806,8819,8821,8834,-0.176785714285631,0.274606537530149,-0.178571428571347,0.282324455205677,-0.174999999999916,0.279661016949050,-0.176785714285631,0.287378934624578,-0.002602905568973,-0.003571428571431,-0.012832929782084,-0.000000000000000,0.012711864406776,0.000000000000000,0.002723970944281,0.003571428571431,2 -8807,8820,8822,8835,-0.173214285714214,0.272003631961186,-0.174999999999916,0.279661016949050,-0.171428571428512,0.276997578692443,-0.173214285714214,0.284654963680307,-0.002602905568953,-0.003571428571404,-0.012711864406776,-0.000000000000000,0.012590799031468,-0.000000000000000,0.002723970944260,0.003571428571404,2 -8808,8821,8823,8836,-0.169642857142809,0.269400726392231,-0.171428571428512,0.276997578692443,-0.167857142857105,0.274334140435834,-0.169642857142808,0.281930992736046,-0.002602905568956,-0.003571428571407,-0.012590799031468,0.000000000000000,0.012469733656161,0.000000000000000,0.002723970944263,0.003571428571407,2 -8809,8822,8824,8837,-0.166071428571395,0.266797820823271,-0.167857142857105,0.274334140435834,-0.164285714285684,0.271670702179214,-0.166071428571395,0.279207021791777,-0.002602905568965,-0.003571428571421,-0.012469733656161,-0.000000000000000,0.012348668280853,0.000000000000000,0.002723970944274,0.003571428571421,2 -8810,8823,8825,8838,-0.162499999999982,0.264194915254311,-0.164285714285684,0.271670702179214,-0.160714285714279,0.269007263922607,-0.162499999999982,0.276483050847510,-0.002602905568954,-0.003571428571405,-0.012348668280853,-0.000000000000000,0.012227602905545,0.000000000000000,0.002723970944261,0.003571428571405,2 -8811,8824,8826,8839,-0.158928571428564,0.261592009685348,-0.160714285714279,0.269007263922607,-0.157142857142850,0.266343825665981,-0.158928571428565,0.273759079903239,-0.002602905568972,-0.003571428571430,-0.012227602905545,-0.000000000000000,0.012106537530237,0.000000000000000,0.002723970944280,0.003571428571429,2 -8812,8825,8827,8840,-0.155357142857136,0.258989104116377,-0.157142857142850,0.266343825665981,-0.153571428571423,0.263680387409357,-0.155357142857136,0.271035108958960,-0.002602905568970,-0.003571428571427,-0.012106537530237,-0.000000000000000,0.011985472154929,0.000000000000000,0.002723970944278,0.003571428571427,2 -8813,8826,8841,10209,-0.151785714285711,0.256386198547409,-0.153571428571423,0.263680387409357,-0.151785714285711,0.268311138014684,-0.150000000000000,0.261016949152736,-0.002602905568967,-0.003571428571423,-0.011985472154929,-0.000000000000000,0.002723970944275,0.003571428571423,0.011864406779621,-0.000000000000000,2 -2294,8814,8829,8842,-0.200000000000000,0.311864406779421,-0.198214285714291,0.303722760290322,-0.196428571428583,0.309079903147498,-0.198214285714291,0.317221549636597,-0.013559322033928,-0.000000000000000,-0.002723970944271,-0.003571428571417,0.013438256658622,0.000000000000000,0.002845036319577,0.003571428571417,2 -8815,8828,8830,8843,-0.194642857142864,0.300998789346043,-0.196428571428583,0.309079903147498,-0.192857142857145,0.306295399515558,-0.194642857142864,0.314376513317012,-0.002723970944287,-0.003571428571438,-0.013438256658622,-0.000000000000000,0.013317191283316,0.000000000000000,0.002845036319593,0.003571428571438,2 -8816,8829,8831,8844,-0.191071428571419,0.298274818401752,-0.192857142857145,0.306295399515558,-0.189285714285694,0.303510895883608,-0.191071428571419,0.311531476997414,-0.002723970944296,-0.003571428571451,-0.013317191283316,-0.000000000000000,0.013196125908009,0.000000000000000,0.002845036319604,0.003571428571451,2 -8817,8830,8832,8845,-0.187499999999963,0.295550847457451,-0.189285714285694,0.303510895883608,-0.185714285714232,0.300726392251649,-0.187499999999963,0.308686440677806,-0.002723970944305,-0.003571428571462,-0.013196125908009,-0.000000000000000,0.013075060532701,0.000000000000000,0.002845036319612,0.003571428571462,2 -8818,8831,8833,8846,-0.183928571428507,0.292826876513151,-0.185714285714232,0.300726392251649,-0.182142857142783,0.297941888619701,-0.183928571428507,0.305841404358199,-0.002723970944295,-0.003571428571449,-0.013075060532701,-0.000000000000000,0.012953995157394,0.000000000000000,0.002845036319602,0.003571428571449,2 -8819,8832,8834,8847,-0.180357142857065,0.290102905568861,-0.182142857142783,0.297941888619701,-0.178571428571347,0.295157384987763,-0.180357142857065,0.302996368038602,-0.002723970944285,-0.003571428571436,-0.012953995157394,-0.000000000000000,0.012832929782087,0.000000000000000,0.002845036319592,0.003571428571436,2 -8820,8833,8835,8848,-0.176785714285631,0.287378934624578,-0.178571428571347,0.295157384987763,-0.174999999999916,0.292372881355828,-0.176785714285631,0.300151331719013,-0.002723970944281,-0.003571428571431,-0.012832929782087,-0.000000000000000,0.012711864406781,0.000000000000000,0.002845036319587,0.003571428571431,2 -8821,8834,8836,8849,-0.173214285714214,0.284654963680307,-0.174999999999916,0.292372881355828,-0.171428571428512,0.289588377723915,-0.173214285714214,0.297306295399436,-0.002723970944260,-0.003571428571404,-0.012711864406781,-0.000000000000000,0.012590799031475,0.000000000000000,0.002845036319566,0.003571428571404,2 -8822,8835,8837,8850,-0.169642857142808,0.281930992736046,-0.171428571428512,0.289588377723915,-0.167857142857105,0.286803874091999,-0.169642857142808,0.294461259079868,-0.002723970944263,-0.003571428571407,-0.012590799031475,-0.000000000000000,0.012469733656170,0.000000000000000,0.002845036319569,0.003571428571407,2 -8823,8836,8838,8851,-0.166071428571395,0.279207021791777,-0.167857142857105,0.286803874091999,-0.164285714285684,0.284019370460073,-0.166071428571394,0.291616222760294,-0.002723970944274,-0.003571428571421,-0.012469733656170,-0.000000000000000,0.012348668280864,-0.000000000000000,0.002845036319579,0.003571428571421,2 -8824,8837,8839,8852,-0.162499999999982,0.276483050847510,-0.164285714285684,0.284019370460073,-0.160714285714279,0.281234866828158,-0.162499999999982,0.288771186440721,-0.002723970944261,-0.003571428571405,-0.012348668280864,0.000000000000000,0.012227602905558,-0.000000000000000,0.002845036319567,0.003571428571405,2 -8825,8838,8840,8853,-0.158928571428565,0.273759079903239,-0.160714285714279,0.281234866828158,-0.157142857142850,0.278450363196225,-0.158928571428564,0.285926150121145,-0.002723970944280,-0.003571428571429,-0.012227602905558,0.000000000000000,0.012106537530252,0.000000000000000,0.002845036319586,0.003571428571429,2 -8826,8839,8841,8854,-0.155357142857136,0.271035108958960,-0.157142857142850,0.278450363196225,-0.153571428571423,0.275665859564294,-0.155357142857136,0.283081113801559,-0.002723970944278,-0.003571428571427,-0.012106537530252,-0.000000000000000,0.011985472154946,0.000000000000000,0.002845036319585,0.003571428571427,2 -8827,8840,8855,10210,-0.151785714285711,0.268311138014684,-0.153571428571423,0.275665859564294,-0.151785714285711,0.280236077481976,-0.150000000000000,0.272881355932366,-0.002723970944275,-0.003571428571423,-0.011985472154946,-0.000000000000000,0.002845036319581,0.003571428571423,0.011864406779640,-0.000000000000000,2 -2295,8828,8843,8856,-0.200000000000000,0.325423728813361,-0.198214285714291,0.317221549636597,-0.196428571428583,0.322518159806130,-0.198214285714291,0.330720338982893,-0.013559322033950,-0.000000000000000,-0.002845036319577,-0.003571428571417,0.013438256658642,0.000000000000000,0.002966101694885,0.003571428571417,2 -8829,8842,8844,8857,-0.194642857142864,0.314376513317012,-0.196428571428583,0.322518159806130,-0.192857142857145,0.319612590798882,-0.194642857142864,0.327754237288000,-0.002845036319593,-0.003571428571438,-0.013438256658642,-0.000000000000000,0.013317191283333,0.000000000000000,0.002966101694902,0.003571428571438,2 -8830,8843,8845,8858,-0.191071428571419,0.311531476997414,-0.192857142857145,0.319612590798882,-0.189285714285694,0.316707021791624,-0.191071428571419,0.324788135593092,-0.002845036319604,-0.003571428571451,-0.013317191283333,-0.000000000000000,0.013196125908024,0.000000000000000,0.002966101694913,0.003571428571451,2 -8831,8844,8846,8859,-0.187499999999963,0.308686440677806,-0.189285714285694,0.316707021791624,-0.185714285714232,0.313801452784357,-0.187499999999963,0.321822033898175,-0.002845036319612,-0.003571428571462,-0.013196125908024,-0.000000000000000,0.013075060532714,-0.000000000000000,0.002966101694923,0.003571428571462,2 -8832,8845,8847,8860,-0.183928571428507,0.305841404358199,-0.185714285714232,0.313801452784357,-0.182142857142783,0.310895883777100,-0.183928571428507,0.318855932203258,-0.002845036319602,-0.003571428571449,-0.013075060532714,0.000000000000000,0.012953995157404,0.000000000000000,0.002966101694911,0.003571428571449,2 -8833,8846,8848,8861,-0.180357142857065,0.302996368038602,-0.182142857142783,0.310895883777100,-0.178571428571347,0.307990314769854,-0.180357142857065,0.315889830508352,-0.002845036319592,-0.003571428571436,-0.012953995157404,-0.000000000000000,0.012832929782095,0.000000000000000,0.002966101694901,0.003571428571436,2 -8834,8847,8849,8862,-0.176785714285631,0.300151331719013,-0.178571428571347,0.307990314769854,-0.174999999999916,0.305084745762612,-0.176785714285631,0.312923728813453,-0.002845036319587,-0.003571428571431,-0.012832929782095,-0.000000000000000,0.012711864406786,0.000000000000000,0.002966101694896,0.003571428571431,2 -8835,8848,8850,8863,-0.173214285714214,0.297306295399436,-0.174999999999916,0.305084745762612,-0.171428571428512,0.302179176755392,-0.173214285714214,0.309957627118568,-0.002845036319566,-0.003571428571404,-0.012711864406786,-0.000000000000000,0.012590799031479,0.000000000000000,0.002966101694874,0.003571428571404,2 -8836,8849,8851,8864,-0.169642857142808,0.294461259079868,-0.171428571428512,0.302179176755392,-0.167857142857105,0.299273607748169,-0.169642857142808,0.306991525423693,-0.002845036319569,-0.003571428571407,-0.012590799031479,-0.000000000000000,0.012469733656171,0.000000000000000,0.002966101694877,0.003571428571407,2 -8837,8850,8852,8865,-0.166071428571394,0.291616222760294,-0.167857142857105,0.299273607748169,-0.164285714285684,0.296368038740936,-0.166071428571395,0.304025423728811,-0.002845036319579,-0.003571428571421,-0.012469733656171,-0.000000000000000,0.012348668280862,0.000000000000000,0.002966101694888,0.003571428571421,2 -8838,8851,8853,8866,-0.162499999999982,0.288771186440721,-0.164285714285684,0.296368038740936,-0.160714285714279,0.293462469733715,-0.162499999999982,0.301059322033929,-0.002845036319567,-0.003571428571405,-0.012348668280862,-0.000000000000000,0.012227602905554,0.000000000000000,0.002966101694875,0.003571428571405,2 -8839,8852,8854,8867,-0.158928571428564,0.285926150121145,-0.160714285714279,0.293462469733715,-0.157142857142850,0.290556900726474,-0.158928571428565,0.298093220339044,-0.002845036319586,-0.003571428571429,-0.012227602905554,-0.000000000000000,0.012106537530245,0.000000000000000,0.002966101694895,0.003571428571429,2 -8840,8853,8855,8868,-0.155357142857136,0.283081113801559,-0.157142857142850,0.290556900726474,-0.153571428571423,0.287651331719235,-0.155357142857136,0.295127118644150,-0.002845036319585,-0.003571428571427,-0.012106537530245,-0.000000000000000,0.011985472154937,-0.000000000000000,0.002966101694893,0.003571428571427,2 -8841,8854,8869,10211,-0.151785714285711,0.280236077481976,-0.153571428571423,0.287651331719235,-0.151785714285711,0.292161016949259,-0.150000000000000,0.284745762712000,-0.002845036319581,-0.003571428571423,-0.011985472154937,0.000000000000000,0.002966101694890,0.003571428571423,0.011864406779628,-0.000000000000000,2 -2296,8842,8857,8870,-0.200000000000000,0.338983050847293,-0.198214285714291,0.330720338982893,-0.196428571428583,0.335956416464756,-0.198214285714291,0.344219128329155,-0.013559322033914,-0.000000000000000,-0.002966101694885,-0.003571428571417,0.013438256658609,0.000000000000000,0.003087167070189,0.003571428571417,2 -8843,8856,8858,8871,-0.194642857142864,0.327754237288000,-0.196428571428583,0.335956416464756,-0.192857142857145,0.332929782082201,-0.194642857142864,0.341131961258957,-0.002966101694902,-0.003571428571438,-0.013438256658609,-0.000000000000000,0.013317191283304,0.000000000000000,0.003087167070207,0.003571428571438,2 -8844,8857,8859,8872,-0.191071428571419,0.324788135593092,-0.192857142857145,0.332929782082201,-0.189285714285694,0.329903147699635,-0.191071428571419,0.338044794188744,-0.002966101694913,-0.003571428571451,-0.013317191283304,-0.000000000000000,0.013196125907999,-0.000000000000000,0.003087167070219,0.003571428571451,2 -8845,8858,8860,8873,-0.187499999999963,0.321822033898175,-0.189285714285694,0.329903147699635,-0.185714285714231,0.326876513317060,-0.187499999999963,0.334957627118520,-0.002966101694923,-0.003571428571462,-0.013196125907999,0.000000000000000,0.013075060532693,0.000000000000000,0.003087167070228,0.003571428571462,2 -8846,8859,8861,8874,-0.183928571428507,0.318855932203258,-0.185714285714231,0.326876513317060,-0.182142857142783,0.323849878934496,-0.183928571428507,0.331870460048298,-0.002966101694911,-0.003571428571449,-0.013075060532693,-0.000000000000000,0.012953995157387,0.000000000000000,0.003087167070217,0.003571428571449,2 -8847,8860,8862,8875,-0.180357142857065,0.315889830508352,-0.182142857142783,0.323849878934496,-0.178571428571347,0.320823244551943,-0.180357142857065,0.328783292978087,-0.002966101694901,-0.003571428571436,-0.012953995157387,-0.000000000000000,0.012832929782082,-0.000000000000000,0.003087167070205,0.003571428571436,2 -8848,8861,8863,8876,-0.176785714285631,0.312923728813453,-0.178571428571347,0.320823244551943,-0.174999999999916,0.317796610169394,-0.176785714285631,0.325696125907883,-0.002966101694896,-0.003571428571431,-0.012832929782082,0.000000000000000,0.012711864406777,0.000000000000000,0.003087167070201,0.003571428571431,2 -8849,8862,8864,8877,-0.173214285714214,0.309957627118568,-0.174999999999916,0.317796610169394,-0.171428571428512,0.314769975786868,-0.173214285714214,0.322608958837694,-0.002966101694874,-0.003571428571404,-0.012711864406777,-0.000000000000000,0.012590799031473,0.000000000000000,0.003087167070178,0.003571428571404,2 -8850,8863,8865,8878,-0.169642857142808,0.306991525423693,-0.171428571428512,0.314769975786868,-0.167857142857105,0.311743341404339,-0.169642857142809,0.319521791767514,-0.002966101694877,-0.003571428571407,-0.012590799031473,-0.000000000000000,0.012469733656169,0.000000000000000,0.003087167070181,0.003571428571407,2 -8851,8864,8866,8879,-0.166071428571395,0.304025423728811,-0.167857142857105,0.311743341404339,-0.164285714285684,0.308716707021799,-0.166071428571395,0.316434624697328,-0.002966101694888,-0.003571428571421,-0.012469733656169,-0.000000000000000,0.012348668280865,0.000000000000000,0.003087167070193,0.003571428571421,2 -8852,8865,8867,8880,-0.162499999999982,0.301059322033929,-0.164285714285684,0.308716707021799,-0.160714285714279,0.305690072639272,-0.162499999999982,0.313347457627142,-0.002966101694875,-0.003571428571405,-0.012348668280865,-0.000000000000000,0.012227602905561,0.000000000000000,0.003087167070179,0.003571428571405,2 -8853,8866,8868,8881,-0.158928571428565,0.298093220339044,-0.160714285714279,0.305690072639272,-0.157142857142850,0.302663438256725,-0.158928571428565,0.310260290556953,-0.002966101694895,-0.003571428571429,-0.012227602905561,-0.000000000000000,0.012106537530256,0.000000000000000,0.003087167070200,0.003571428571429,2 -8854,8867,8869,8882,-0.155357142857136,0.295127118644150,-0.157142857142850,0.302663438256725,-0.153571428571423,0.299636803874179,-0.155357142857136,0.307173123486754,-0.002966101694893,-0.003571428571427,-0.012106537530256,-0.000000000000000,0.011985472154951,0.000000000000000,0.003087167070198,0.003571428571427,2 -8855,8868,8883,10212,-0.151785714285711,0.292161016949259,-0.153571428571423,0.299636803874179,-0.151785714285711,0.304085956416558,-0.150000000000000,0.296610169491638,-0.002966101694890,-0.003571428571423,-0.011985472154951,-0.000000000000000,0.003087167070194,0.003571428571423,0.011864406779647,-0.000000000000000,2 -2297,8856,8871,8884,-0.200000000000000,0.352542372881227,-0.198214285714291,0.344219128329155,-0.196428571428583,0.349394673123383,-0.198214285714291,0.357717917675454,-0.013559322033954,-0.000000000000000,-0.003087167070189,-0.003571428571417,0.013438256658645,0.000000000000000,0.003208232445498,0.003571428571417,2 -8857,8870,8872,8885,-0.194642857142864,0.341131961258957,-0.196428571428583,0.349394673123383,-0.192857142857145,0.346246973365521,-0.194642857142864,0.354509685229947,-0.003087167070207,-0.003571428571438,-0.013438256658645,-0.000000000000000,0.013317191283336,0.000000000000000,0.003208232445517,0.003571428571438,2 -8858,8871,8873,8886,-0.191071428571419,0.338044794188744,-0.192857142857145,0.346246973365521,-0.189285714285694,0.343099273607647,-0.191071428571419,0.351301452784424,-0.003087167070219,-0.003571428571451,-0.013317191283336,-0.000000000000000,0.013196125908026,0.000000000000000,0.003208232445528,0.003571428571451,2 -8859,8872,8874,8887,-0.187499999999963,0.334957627118520,-0.189285714285694,0.343099273607647,-0.185714285714231,0.339951573849764,-0.187499999999963,0.348093220338891,-0.003087167070228,-0.003571428571462,-0.013196125908026,-0.000000000000000,0.013075060532716,0.000000000000000,0.003208232445539,0.003571428571462,2 -8860,8873,8875,8888,-0.183928571428507,0.331870460048298,-0.185714285714231,0.339951573849764,-0.182142857142783,0.336803874091892,-0.183928571428507,0.344884987893359,-0.003087167070217,-0.003571428571449,-0.013075060532716,-0.000000000000000,0.012953995157406,-0.000000000000000,0.003208232445526,0.003571428571449,2 -8861,8874,8876,8889,-0.180357142857065,0.328783292978087,-0.182142857142783,0.336803874091892,-0.178571428571347,0.333656174334032,-0.180357142857065,0.341676755447838,-0.003087167070205,-0.003571428571436,-0.012953995157406,0.000000000000000,0.012832929782096,0.000000000000000,0.003208232445515,0.003571428571436,2 -8862,8875,8877,8890,-0.176785714285631,0.325696125907883,-0.178571428571347,0.333656174334032,-0.174999999999916,0.330508474576176,-0.176785714285631,0.338468523002325,-0.003087167070201,-0.003571428571431,-0.012832929782096,-0.000000000000000,0.012711864406787,0.000000000000000,0.003208232445510,0.003571428571431,2 -8863,8876,8878,8891,-0.173214285714214,0.322608958837694,-0.174999999999916,0.330508474576176,-0.171428571428512,0.327360774818344,-0.173214285714214,0.335260290556827,-0.003087167070178,-0.003571428571404,-0.012711864406787,-0.000000000000000,0.012590799031479,-0.000000000000000,0.003208232445486,0.003571428571404,2 -8864,8877,8879,8892,-0.169642857142809,0.319521791767514,-0.171428571428512,0.327360774818344,-0.167857142857105,0.324213075060510,-0.169642857142808,0.332052058111339,-0.003087167070181,-0.003571428571407,-0.012590799031479,0.000000000000000,0.012469733656171,0.000000000000000,0.003208232445489,0.003571428571407,2 -8865,8878,8880,8893,-0.166071428571395,0.316434624697328,-0.167857142857105,0.324213075060510,-0.164285714285684,0.321065375302663,-0.166071428571395,0.328843825665844,-0.003087167070193,-0.003571428571421,-0.012469733656171,-0.000000000000000,0.012348668280862,0.000000000000000,0.003208232445501,0.003571428571421,2 -8866,8879,8881,8894,-0.162499999999982,0.313347457627142,-0.164285714285684,0.321065375302663,-0.160714285714279,0.317917675544830,-0.162499999999982,0.325635593220350,-0.003087167070179,-0.003571428571405,-0.012348668280862,-0.000000000000000,0.012227602905554,-0.000000000000000,0.003208232445487,0.003571428571405,2 -8867,8880,8882,8895,-0.158928571428565,0.310260290556953,-0.160714285714279,0.317917675544830,-0.157142857142850,0.314769975786975,-0.158928571428564,0.322427360774852,-0.003087167070200,-0.003571428571429,-0.012227602905554,0.000000000000000,0.012106537530245,0.000000000000000,0.003208232445509,0.003571428571429,2 -8868,8881,8883,8896,-0.155357142857136,0.307173123486754,-0.157142857142850,0.314769975786975,-0.153571428571423,0.311622276029123,-0.155357142857136,0.319219128329344,-0.003087167070198,-0.003571428571427,-0.012106537530245,-0.000000000000000,0.011985472154936,0.000000000000000,0.003208232445507,0.003571428571427,2 -8869,8882,8897,10213,-0.151785714285711,0.304085956416558,-0.153571428571423,0.311622276029123,-0.151785714285711,0.316010895883839,-0.150000000000000,0.308474576271274,-0.003087167070194,-0.003571428571423,-0.011985472154936,-0.000000000000000,0.003208232445503,0.003571428571423,0.011864406779627,-0.000000000000000,2 -2298,8870,8885,8898,-0.200000000000000,0.366101694915163,-0.198214285714291,0.357717917675454,-0.196428571428583,0.362832929782012,-0.198214285714291,0.371216707021720,-0.013559322033918,-0.000000000000000,-0.003208232445498,-0.003571428571417,0.013438256658613,0.000000000000000,0.003329297820803,0.003571428571417,2 -8871,8884,8886,8899,-0.194642857142864,0.354509685229947,-0.196428571428583,0.362832929782012,-0.192857142857145,0.359564164648842,-0.194642857142864,0.367887409200907,-0.003208232445517,-0.003571428571438,-0.013438256658613,-0.000000000000000,0.013317191283307,0.000000000000000,0.003329297820822,0.003571428571438,2 -8872,8885,8887,8900,-0.191071428571419,0.351301452784424,-0.192857142857145,0.359564164648842,-0.189285714285694,0.356295399515661,-0.191071428571419,0.364558111380079,-0.003208232445528,-0.003571428571451,-0.013317191283307,-0.000000000000000,0.013196125908002,-0.000000000000000,0.003329297820834,0.003571428571451,2 -8873,8886,8888,8901,-0.187499999999963,0.348093220338891,-0.189285714285694,0.356295399515661,-0.185714285714231,0.353026634382469,-0.187499999999963,0.361228813559239,-0.003208232445539,-0.003571428571462,-0.013196125908002,0.000000000000000,0.013075060532695,0.000000000000000,0.003329297820845,0.003571428571462,2 -8874,8887,8889,8902,-0.183928571428507,0.344884987893359,-0.185714285714231,0.353026634382469,-0.182142857142783,0.349757869249290,-0.183928571428507,0.357899515738401,-0.003208232445526,-0.003571428571449,-0.013075060532695,-0.000000000000000,0.012953995157389,0.000000000000000,0.003329297820832,0.003571428571449,2 -8875,8888,8890,8903,-0.180357142857065,0.341676755447838,-0.182142857142783,0.349757869249290,-0.178571428571347,0.346489104116122,-0.180357142857065,0.354570217917574,-0.003208232445515,-0.003571428571436,-0.012953995157389,-0.000000000000000,0.012832929782084,0.000000000000000,0.003329297820821,0.003571428571436,2 -8876,8889,8891,8904,-0.176785714285631,0.338468523002325,-0.178571428571347,0.346489104116122,-0.174999999999916,0.343220338982959,-0.176785714285631,0.351240920096756,-0.003208232445510,-0.003571428571431,-0.012832929782084,-0.000000000000000,0.012711864406778,0.000000000000000,0.003329297820816,0.003571428571431,2 -8877,8890,8892,8905,-0.173214285714214,0.335260290556827,-0.174999999999916,0.343220338982959,-0.171428571428512,0.339951573849821,-0.173214285714214,0.347911622275953,-0.003208232445486,-0.003571428571404,-0.012711864406778,-0.000000000000000,0.012590799031474,0.000000000000000,0.003329297820790,0.003571428571404,2 -8878,8891,8893,8906,-0.169642857142808,0.332052058111339,-0.171428571428512,0.339951573849821,-0.167857142857105,0.336682808716680,-0.169642857142808,0.344582324455161,-0.003208232445489,-0.003571428571407,-0.012590799031474,-0.000000000000000,0.012469733656169,0.000000000000000,0.003329297820794,0.003571428571407,2 -8879,8892,8894,8907,-0.166071428571395,0.328843825665844,-0.167857142857105,0.336682808716680,-0.164285714285684,0.333414043583526,-0.166071428571395,0.341253026634361,-0.003208232445501,-0.003571428571421,-0.012469733656169,-0.000000000000000,0.012348668280865,0.000000000000000,0.003329297820806,0.003571428571421,2 -8880,8893,8895,8908,-0.162499999999982,0.325635593220350,-0.164285714285684,0.333414043583526,-0.160714285714279,0.330145278450386,-0.162499999999982,0.337923728813562,-0.003208232445487,-0.003571428571405,-0.012348668280865,-0.000000000000000,0.012227602905560,0.000000000000000,0.003329297820792,0.003571428571405,2 -8881,8894,8896,8909,-0.158928571428564,0.322427360774852,-0.160714285714279,0.330145278450386,-0.157142857142850,0.326876513317225,-0.158928571428564,0.334594430992759,-0.003208232445509,-0.003571428571429,-0.012227602905560,-0.000000000000000,0.012106537530255,0.000000000000000,0.003329297820814,0.003571428571429,2 -8882,8895,8897,8910,-0.155357142857136,0.319219128329344,-0.157142857142850,0.326876513317225,-0.153571428571423,0.323607748184065,-0.155357142857136,0.331265133171946,-0.003208232445507,-0.003571428571427,-0.012106537530255,-0.000000000000000,0.011985472154950,0.000000000000000,0.003329297820812,0.003571428571427,2 -8883,8896,8911,10214,-0.151785714285711,0.316010895883839,-0.153571428571423,0.323607748184065,-0.151785714285711,0.327935835351136,-0.150000000000000,0.320338983050910,-0.003208232445503,-0.003571428571423,-0.011985472154950,-0.000000000000000,0.003329297820808,0.003571428571423,0.011864406779645,-0.000000000000000,2 -2299,8884,8899,8912,-0.200000000000000,0.379661016949095,-0.198214285714291,0.371216707021720,-0.196428571428583,0.376271186440638,-0.198214285714291,0.384715496368012,-0.013559322033946,-0.000000000000000,-0.003329297820803,-0.003571428571417,0.013438256658639,0.000000000000000,0.003450363196111,0.003571428571417,2 -8885,8898,8900,8913,-0.194642857142864,0.367887409200907,-0.196428571428583,0.376271186440638,-0.192857142857145,0.372881355932161,-0.194642857142864,0.381265133171891,-0.003329297820822,-0.003571428571438,-0.013438256658639,-0.000000000000000,0.013317191283330,0.000000000000000,0.003450363196131,0.003571428571438,2 -8886,8899,8901,8914,-0.191071428571419,0.364558111380079,-0.192857142857145,0.372881355932161,-0.189285714285694,0.369491525423672,-0.191071428571419,0.377814769975754,-0.003329297820834,-0.003571428571451,-0.013317191283330,-0.000000000000000,0.013196125908021,0.000000000000000,0.003450363196144,0.003571428571451,2 -8887,8900,8902,8915,-0.187499999999963,0.361228813559239,-0.189285714285694,0.369491525423672,-0.185714285714231,0.366101694915173,-0.187499999999963,0.374364406779605,-0.003329297820845,-0.003571428571462,-0.013196125908021,-0.000000000000000,0.013075060532712,0.000000000000000,0.003450363196154,0.003571428571462,2 -8888,8901,8903,8916,-0.183928571428507,0.357899515738401,-0.185714285714231,0.366101694915173,-0.182142857142783,0.362711864406686,-0.183928571428507,0.370914043583458,-0.003329297820832,-0.003571428571449,-0.013075060532712,-0.000000000000000,0.012953995157402,0.000000000000000,0.003450363196141,0.003571428571449,2 -8889,8902,8904,8917,-0.180357142857065,0.354570217917574,-0.182142857142783,0.362711864406686,-0.178571428571347,0.359322033898211,-0.180357142857065,0.367463680387323,-0.003329297820821,-0.003571428571436,-0.012953995157402,-0.000000000000000,0.012832929782094,0.000000000000000,0.003450363196129,0.003571428571436,2 -8890,8903,8905,8918,-0.176785714285631,0.351240920096756,-0.178571428571347,0.359322033898211,-0.174999999999916,0.355932203389741,-0.176785714285631,0.364013317191196,-0.003329297820816,-0.003571428571431,-0.012832929782094,-0.000000000000000,0.012711864406786,0.000000000000000,0.003450363196124,0.003571428571431,2 -8891,8904,8906,8919,-0.173214285714214,0.347911622275953,-0.174999999999916,0.355932203389741,-0.171428571428512,0.352542372881297,-0.173214285714214,0.360562953995085,-0.003329297820790,-0.003571428571404,-0.012711864406786,-0.000000000000000,0.012590799031478,0.000000000000000,0.003450363196098,0.003571428571404,2 -8892,8905,8907,8920,-0.169642857142808,0.344582324455161,-0.171428571428512,0.352542372881297,-0.167857142857105,0.349152542372850,-0.169642857142808,0.357112590798985,-0.003329297820794,-0.003571428571407,-0.012590799031478,-0.000000000000000,0.012469733656171,0.000000000000000,0.003450363196101,0.003571428571407,2 -8893,8906,8908,8921,-0.166071428571395,0.341253026634361,-0.167857142857105,0.349152542372850,-0.164285714285684,0.345762711864389,-0.166071428571395,0.353662227602878,-0.003329297820806,-0.003571428571421,-0.012469733656171,-0.000000000000000,0.012348668280862,0.000000000000000,0.003450363196114,0.003571428571421,2 -8894,8907,8909,8922,-0.162499999999982,0.337923728813562,-0.164285714285684,0.345762711864389,-0.160714285714279,0.342372881355944,-0.162499999999982,0.350211864406771,-0.003329297820792,-0.003571428571405,-0.012348668280862,-0.000000000000000,0.012227602905555,0.000000000000000,0.003450363196099,0.003571428571405,2 -8895,8908,8910,8923,-0.158928571428564,0.334594430992759,-0.160714285714279,0.342372881355944,-0.157142857142850,0.338983050847476,-0.158928571428564,0.346761501210660,-0.003329297820814,-0.003571428571429,-0.012227602905555,-0.000000000000000,0.012106537530247,0.000000000000000,0.003450363196123,0.003571428571429,2 -8896,8909,8911,8924,-0.155357142857136,0.331265133171946,-0.157142857142850,0.338983050847476,-0.153571428571423,0.335593220339010,-0.155357142857136,0.343311138014539,-0.003329297820812,-0.003571428571427,-0.012106537530247,-0.000000000000000,0.011985472154938,0.000000000000000,0.003450363196120,0.003571428571427,2 -8897,8910,8925,10215,-0.151785714285711,0.327935835351136,-0.153571428571423,0.335593220339010,-0.151785714285711,0.339860774818421,-0.150000000000000,0.332203389830547,-0.003329297820808,-0.003571428571423,-0.011985472154938,-0.000000000000000,0.003450363196116,0.003571428571423,0.011864406779630,-0.000000000000000,2 -2300,8099,8898,8913,-0.200000000000000,0.393220338983034,-0.198214285714291,0.398214285714291,-0.198214285714291,0.384715496368012,-0.196428571428583,0.389709443099270,-0.013559322033932,0.000000000000000,0.003571428571417,0.003571428571417,-0.003450363196111,-0.003571428571417,0.013438256658626,-0.000000000000000,2 -8098,8899,8912,8914,-0.194642857142864,0.394642857142864,-0.194642857142864,0.381265133171891,-0.196428571428583,0.389709443099270,-0.192857142857145,0.386198547215485,0.003571428571438,0.003571428571438,-0.003450363196131,-0.003571428571438,-0.013438256658626,0.000000000000000,0.013317191283319,-0.000000000000000,2 -8097,8900,8913,8915,-0.191071428571419,0.391071428571419,-0.191071428571419,0.377814769975754,-0.192857142857145,0.386198547215485,-0.189285714285694,0.382687651331688,0.003571428571451,0.003571428571451,-0.003450363196144,-0.003571428571451,-0.013317191283319,0.000000000000000,0.013196125908011,0.000000000000000,2 -8096,8901,8914,8916,-0.187499999999963,0.387499999999963,-0.187499999999963,0.374364406779605,-0.189285714285694,0.382687651331688,-0.185714285714231,0.379176755447880,0.003571428571462,0.003571428571462,-0.003450363196154,-0.003571428571462,-0.013196125908011,-0.000000000000000,0.013075060532703,-0.000000000000000,2 -8095,8902,8915,8917,-0.183928571428507,0.383928571428507,-0.183928571428507,0.370914043583458,-0.185714285714231,0.379176755447880,-0.182142857142783,0.375665859564085,0.003571428571449,0.003571428571449,-0.003450363196141,-0.003571428571449,-0.013075060532703,0.000000000000000,0.012953995157396,-0.000000000000000,2 -8094,8903,8916,8918,-0.180357142857065,0.380357142857065,-0.180357142857065,0.367463680387323,-0.182142857142783,0.375665859564085,-0.178571428571347,0.372154963680302,0.003571428571436,0.003571428571436,-0.003450363196129,-0.003571428571436,-0.012953995157396,0.000000000000000,0.012832929782089,-0.000000000000000,2 -8093,8904,8917,8919,-0.176785714285631,0.376785714285631,-0.176785714285631,0.364013317191196,-0.178571428571347,0.372154963680302,-0.174999999999916,0.368644067796525,0.003571428571431,0.003571428571431,-0.003450363196124,-0.003571428571431,-0.012832929782089,0.000000000000000,0.012711864406782,-0.000000000000000,2 -8092,8905,8918,8920,-0.173214285714214,0.373214285714214,-0.173214285714214,0.360562953995085,-0.174999999999916,0.368644067796525,-0.171428571428512,0.365133171912774,0.003571428571404,0.003571428571404,-0.003450363196098,-0.003571428571404,-0.012711864406782,0.000000000000000,0.012590799031476,0.000000000000000,2 -8091,8906,8919,8921,-0.169642857142809,0.369642857142809,-0.169642857142808,0.357112590798985,-0.171428571428512,0.365133171912774,-0.167857142857105,0.361622276029020,0.003571428571407,0.003571428571407,-0.003450363196101,-0.003571428571407,-0.012590799031476,-0.000000000000000,0.012469733656170,-0.000000000000000,2 -8090,8907,8920,8922,-0.166071428571395,0.366071428571395,-0.166071428571395,0.353662227602878,-0.167857142857105,0.361622276029020,-0.164285714285684,0.358111380145252,0.003571428571421,0.003571428571421,-0.003450363196114,-0.003571428571421,-0.012469733656170,0.000000000000000,0.012348668280864,-0.000000000000000,2 -8089,8908,8921,8923,-0.162499999999982,0.362499999999982,-0.162499999999982,0.350211864406771,-0.164285714285684,0.358111380145252,-0.160714285714279,0.354600484261500,0.003571428571405,0.003571428571405,-0.003450363196099,-0.003571428571405,-0.012348668280864,0.000000000000000,0.012227602905558,-0.000000000000000,2 -8088,8909,8922,8924,-0.158928571428564,0.358928571428564,-0.158928571428564,0.346761501210660,-0.160714285714279,0.354600484261500,-0.157142857142850,0.351089588377724,0.003571428571429,0.003571428571429,-0.003450363196123,-0.003571428571429,-0.012227602905558,0.000000000000000,0.012106537530251,-0.000000000000000,2 -8087,8910,8923,8925,-0.155357142857136,0.355357142857136,-0.155357142857136,0.343311138014539,-0.157142857142850,0.351089588377724,-0.153571428571423,0.347578692493951,0.003571428571427,0.003571428571427,-0.003450363196120,-0.003571428571427,-0.012106537530251,0.000000000000000,0.011985472154944,-0.000000000000000,2 -8086,8911,8924,10216,-0.151785714285711,0.351785714285711,-0.151785714285711,0.339860774818421,-0.153571428571423,0.347578692493951,-0.150000000000000,0.344067796610181,0.003571428571423,0.003571428571423,-0.003450363196116,-0.003571428571423,-0.011985472154944,0.000000000000000,0.011864406779637,-0.000000000000000,2 -8113,8927,8955,10158,-0.151785714285711,-0.351785714285711,-0.141317733990164,-0.351785714285711,-0.148275862068970,-0.353571428571423,-0.144827586206906,-0.350000000000000,-0.003571428571423,0.003571428571423,0.003571428571423,-0.003325123152705,0.000000000000000,-0.010591133004906,0.000000000000000,0.010344827586188,2 -8926,8928,8956,10217,-0.141317733990164,-0.351785714285711,-0.130849753694628,-0.351785714285711,-0.137684729064069,-0.353571428571422,-0.134482758620723,-0.350000000000000,-0.003571428571423,0.003325123152705,0.003571428571422,-0.003078817733987,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 -8927,8929,8957,10276,-0.130849753694628,-0.351785714285711,-0.120381773399077,-0.351785714285711,-0.127093596059167,-0.353571428571422,-0.124137931034539,-0.350000000000000,-0.003571428571422,0.003078817733987,0.003571428571422,-0.002832512315269,0.000000000000000,-0.010591133004910,0.000000000000000,0.010344827586192,2 -8928,8930,8958,10335,-0.120381773399077,-0.351785714285711,-0.109913793103539,-0.351785714285711,-0.116502463054263,-0.353571428571422,-0.113793103448353,-0.350000000000000,-0.003571428571422,0.002832512315269,0.003571428571422,-0.002586206896550,0.000000000000000,-0.010591133004898,0.000000000000000,0.010344827586179,2 -8929,8931,8959,10394,-0.109913793103539,-0.351785714285711,-0.099445812808002,-0.351785714285711,-0.105911330049366,-0.353571428571422,-0.103448275862175,-0.350000000000000,-0.003571428571422,0.002586206896550,0.003571428571422,-0.002339901477832,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 -8930,8932,8960,10453,-0.099445812808002,-0.351785714285711,-0.088977832512466,-0.351785714285711,-0.095320197044471,-0.353571428571421,-0.093103448275998,-0.350000000000000,-0.003571428571422,0.002339901477832,0.003571428571421,-0.002093596059115,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 -8931,8933,8961,10512,-0.088977832512466,-0.351785714285711,-0.078509852216930,-0.351785714285710,-0.084729064039576,-0.353571428571421,-0.082758620689820,-0.350000000000000,-0.003571428571421,0.002093596059115,0.003571428571421,-0.001847290640397,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 -8932,8934,8962,10571,-0.078509852216930,-0.351785714285710,-0.068041871921394,-0.351785714285710,-0.074137931034681,-0.353571428571421,-0.072413793103643,-0.350000000000000,-0.003571428571421,0.001847290640397,0.003571428571421,-0.001600985221679,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 -8933,8935,8963,10630,-0.068041871921394,-0.351785714285710,-0.057573891625857,-0.351785714285710,-0.063546798029785,-0.353571428571420,-0.062068965517465,-0.350000000000000,-0.003571428571421,0.001600985221679,0.003571428571420,-0.001354679802961,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 -8934,8936,8964,10689,-0.057573891625857,-0.351785714285710,-0.047105911330321,-0.351785714285710,-0.052955665024890,-0.353571428571420,-0.051724137931288,-0.350000000000000,-0.003571428571420,0.001354679802961,0.003571428571420,-0.001108374384243,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 -8935,8937,8965,10748,-0.047105911330321,-0.351785714285710,-0.036637931034781,-0.351785714285710,-0.042364532019993,-0.353571428571420,-0.041379310345109,-0.350000000000000,-0.003571428571420,0.001108374384243,0.003571428571420,-0.000862068965526,0.000000000000000,-0.010591133004898,0.000000000000000,0.010344827586182,2 -8936,8938,8966,10807,-0.036637931034781,-0.351785714285710,-0.026169950739244,-0.351785714285710,-0.031773399015096,-0.353571428571420,-0.031034482758929,-0.350000000000000,-0.003571428571420,0.000862068965526,0.003571428571419,-0.000615763546809,0.000000000000000,-0.010591133004896,0.000000000000000,0.010344827586179,2 -8937,8939,8967,10866,-0.026169950739244,-0.351785714285710,-0.015701970443707,-0.351785714285710,-0.021182266010200,-0.353571428571419,-0.020689655172751,-0.350000000000000,-0.003571428571419,0.000615763546809,0.003571428571419,-0.000369458128091,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 -8938,8940,8968,10925,-0.015701970443707,-0.351785714285710,-0.005233990148171,-0.351785714285709,-0.010591133005305,-0.353571428571419,-0.010344827586573,-0.350000000000000,-0.003571428571419,0.000369458128091,0.003571428571419,-0.000123152709373,0.000000000000000,-0.010591133004895,0.000000000000000,0.010344827586177,2 -8939,8941,8969,10984,-0.005233990148171,-0.351785714285709,0.005233990147395,-0.351785714285709,-0.000000000000395,-0.353571428571419,-0.000000000000381,-0.350000000000000,-0.003571428571419,0.000123152709373,0.003571428571419,0.000123152709345,0.000000000000000,-0.010591133004925,0.000000000000000,0.010344827586207,2 -8940,8942,8970,11043,0.005233990147395,-0.351785714285709,0.015701970442990,-0.351785714285709,0.010591133004545,-0.353571428571418,0.010344827585840,-0.350000000000000,-0.003571428571419,-0.000123152709345,0.003571428571418,0.000369458128064,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586236,2 -8941,8943,8971,11102,0.015701970442990,-0.351785714285709,0.026169950738586,-0.351785714285709,0.021182266009500,-0.353571428571418,0.020689655172076,-0.350000000000000,-0.003571428571418,-0.000369458128064,0.003571428571418,0.000615763546784,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586236,2 -8942,8944,8972,11161,0.026169950738586,-0.351785714285709,0.036637931034179,-0.351785714285709,0.031773399014454,-0.353571428571418,0.031034482758311,-0.350000000000000,-0.003571428571418,-0.000615763546784,0.003571428571418,0.000862068965503,0.000000000000000,-0.010591133004952,0.000000000000000,0.010344827586233,2 -8943,8945,8973,11220,0.036637931034179,-0.351785714285709,0.047105911329771,-0.351785714285709,0.042364532019406,-0.353571428571418,0.041379310344544,-0.350000000000000,-0.003571428571418,-0.000862068965503,0.003571428571417,0.001108374384222,0.000000000000000,-0.010591133004952,0.000000000000000,0.010344827586233,2 -8944,8946,8974,11279,0.047105911329771,-0.351785714285709,0.057573891625364,-0.351785714285709,0.052955665024359,-0.353571428571417,0.051724137930777,-0.350000000000000,-0.003571428571417,-0.001108374384222,0.003571428571417,0.001354679802942,0.000000000000000,-0.010591133004953,0.000000000000000,0.010344827586233,2 -8945,8947,8975,11338,0.057573891625364,-0.351785714285709,0.068041871920958,-0.351785714285708,0.063546798029312,-0.353571428571417,0.062068965517010,-0.350000000000000,-0.003571428571417,-0.001354679802942,0.003571428571417,0.001600985221661,0.000000000000000,-0.010591133004954,0.000000000000000,0.010344827586235,2 -8946,8948,8976,11397,0.068041871920958,-0.351785714285708,0.078509852216554,-0.351785714285708,0.074137931034267,-0.353571428571417,0.072413793103246,-0.350000000000000,-0.003571428571417,-0.001600985221661,0.003571428571417,0.001847290640380,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586237,2 -8947,8949,8977,11456,0.078509852216554,-0.351785714285708,0.088977832512149,-0.351785714285708,0.084729064039222,-0.353571428571416,0.082758620689482,-0.350000000000000,-0.003571428571417,-0.001847290640380,0.003571428571416,0.002093596059099,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586236,2 -8948,8950,8978,11515,0.088977832512149,-0.351785714285708,0.099445812807745,-0.351785714285708,0.095320197044176,-0.353571428571416,0.093103448275718,-0.350000000000000,-0.003571428571416,-0.002093596059099,0.003571428571416,0.002339901477818,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586236,2 -8949,8951,8979,11574,0.099445812807745,-0.351785714285708,0.109913793103328,-0.351785714285708,0.105911330049126,-0.353571428571416,0.103448275861948,-0.350000000000000,-0.003571428571416,-0.002339901477818,0.003571428571416,0.002586206896538,0.000000000000000,-0.010591133004943,0.000000000000000,0.010344827586224,2 -8950,8952,8980,11633,0.109913793103328,-0.351785714285708,0.120381773398920,-0.351785714285708,0.116502463054073,-0.353571428571416,0.113793103448176,-0.350000000000000,-0.003571428571416,-0.002586206896538,0.003571428571415,0.002832512315257,0.000000000000000,-0.010591133004952,0.000000000000000,0.010344827586232,2 -8951,8953,8981,11692,0.120381773398920,-0.351785714285708,0.130849753694516,-0.351785714285708,0.127093596059026,-0.353571428571415,0.124137931034410,-0.350000000000000,-0.003571428571415,-0.002832512315257,0.003571428571415,0.003078817733976,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586236,2 -8952,8954,8982,11751,0.130849753694516,-0.351785714285708,0.141317733990111,-0.351785714285707,0.137684729063981,-0.353571428571415,0.134482758620646,-0.350000000000000,-0.003571428571415,-0.003078817733976,0.003571428571415,0.003325123152695,0.000000000000000,-0.010591133004955,0.000000000000000,0.010344827586236,2 -8953,8983,10099,11810,0.141317733990111,-0.351785714285707,0.148275862068937,-0.353571428571415,0.151785714285707,-0.351785714285707,0.144827586206882,-0.350000000000000,-0.003571428571415,-0.003325123152695,0.000000000000000,-0.010591133004955,0.003571428571415,0.003571428571415,-0.000000000000000,0.010344827586236,2 -8112,8926,8956,8984,-0.155357142857136,-0.355357142857136,-0.148275862068970,-0.353571428571423,-0.144642857142871,-0.355357142857136,-0.151724137931037,-0.357142857142850,-0.003571428571427,0.003571428571427,-0.000000000000000,0.010591133004906,0.003571428571427,-0.003325123152708,-0.000000000000000,-0.010837438423625,2 -8927,8955,8957,8985,-0.137684729064069,-0.353571428571422,-0.144642857142871,-0.355357142857136,-0.133928571428616,-0.355357142857136,-0.140886699507418,-0.357142857142850,-0.000000000000000,0.010591133004895,-0.003571428571427,0.003325123152708,0.003571428571428,-0.003078817733990,0.000000000000000,-0.010837438423614,2 -8928,8956,8958,8986,-0.127093596059167,-0.353571428571422,-0.133928571428616,-0.355357142857136,-0.123214285714347,-0.355357142857136,-0.130049261083797,-0.357142857142850,-0.000000000000000,0.010591133004910,-0.003571428571428,0.003078817733990,0.003571428571428,-0.002832512315271,-0.000000000000000,-0.010837438423629,2 -8929,8957,8959,8987,-0.116502463054263,-0.353571428571422,-0.123214285714347,-0.355357142857136,-0.112500000000089,-0.355357142857136,-0.119211822660174,-0.357142857142850,-0.000000000000000,0.010591133004898,-0.003571428571428,0.002832512315271,0.003571428571428,-0.002586206896551,-0.000000000000000,-0.010837438423618,2 -8930,8958,8960,8988,-0.105911330049366,-0.353571428571422,-0.112500000000089,-0.355357142857136,-0.101785714285835,-0.355357142857135,-0.108374384236558,-0.357142857142850,-0.000000000000000,0.010591133004895,-0.003571428571428,0.002586206896551,0.003571428571428,-0.002339901477833,0.000000000000000,-0.010837438423614,2 -8931,8959,8961,8989,-0.095320197044471,-0.353571428571421,-0.101785714285835,-0.355357142857135,-0.091071428571580,-0.355357142857135,-0.097536945812944,-0.357142857142849,-0.000000000000000,0.010591133004895,-0.003571428571428,0.002339901477833,0.003571428571428,-0.002093596059114,-0.000000000000000,-0.010837438423614,2 -8932,8960,8962,8990,-0.084729064039576,-0.353571428571421,-0.091071428571580,-0.355357142857135,-0.080357142857326,-0.355357142857135,-0.086699507389330,-0.357142857142850,-0.000000000000000,0.010591133004895,-0.003571428571428,0.002093596059114,0.003571428571429,-0.001847290640395,-0.000000000000000,-0.010837438423614,2 -8933,8961,8963,8991,-0.074137931034681,-0.353571428571421,-0.080357142857326,-0.355357142857135,-0.069642857143071,-0.355357142857135,-0.075862068965717,-0.357142857142850,-0.000000000000000,0.010591133004895,-0.003571428571429,0.001847290640395,0.003571428571429,-0.001600985221677,0.000000000000000,-0.010837438423614,2 -8934,8962,8964,8992,-0.063546798029785,-0.353571428571420,-0.069642857143071,-0.355357142857135,-0.058928571428817,-0.355357142857135,-0.065024630542103,-0.357142857142849,-0.000000000000000,0.010591133004895,-0.003571428571429,0.001600985221677,0.003571428571429,-0.001354679802958,0.000000000000000,-0.010837438423614,2 -8935,8963,8965,8993,-0.052955665024890,-0.353571428571420,-0.058928571428817,-0.355357142857135,-0.048214285714562,-0.355357142857135,-0.054187192118489,-0.357142857142849,-0.000000000000000,0.010591133004895,-0.003571428571429,0.001354679802958,0.003571428571430,-0.001108374384239,-0.000000000000000,-0.010837438423614,2 -8936,8964,8966,8994,-0.042364532019993,-0.353571428571420,-0.048214285714562,-0.355357142857135,-0.037500000000305,-0.355357142857135,-0.043349753694874,-0.357142857142849,-0.000000000000000,0.010591133004898,-0.003571428571430,0.001108374384239,0.003571428571430,-0.000862068965521,-0.000000000000000,-0.010837438423616,2 -8937,8965,8967,8995,-0.031773399015096,-0.353571428571420,-0.037500000000305,-0.355357142857135,-0.026785714286050,-0.355357142857134,-0.032512315271258,-0.357142857142849,-0.000000000000000,0.010591133004896,-0.003571428571430,0.000862068965521,0.003571428571430,-0.000615763546803,-0.000000000000000,-0.010837438423615,2 -8938,8966,8968,8996,-0.021182266010200,-0.353571428571419,-0.026785714286050,-0.355357142857134,-0.016071428571795,-0.355357142857134,-0.021674876847644,-0.357142857142849,-0.000000000000000,0.010591133004895,-0.003571428571430,0.000615763546803,0.003571428571430,-0.000369458128084,0.000000000000000,-0.010837438423614,2 -8939,8967,8969,8997,-0.010591133005305,-0.353571428571419,-0.016071428571795,-0.355357142857134,-0.005357142857541,-0.355357142857134,-0.010837438424030,-0.357142857142849,-0.000000000000000,0.010591133004895,-0.003571428571430,0.000369458128084,0.003571428571431,-0.000123152709366,-0.000000000000000,-0.010837438423614,2 -8940,8968,8970,8998,-0.000000000000395,-0.353571428571419,-0.005357142857541,-0.355357142857134,0.005357142856744,-0.355357142857134,-0.000000000000401,-0.357142857142849,-0.000000000000000,0.010591133004925,-0.003571428571431,0.000123152709366,0.003571428571431,0.000123152709354,-0.000000000000000,-0.010837438423644,2 -8941,8969,8971,8999,0.010591133004545,-0.353571428571418,0.005357142856744,-0.355357142857134,0.016071428571059,-0.355357142857134,0.010837438423258,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571431,-0.000123152709354,0.003571428571431,0.000369458128073,-0.000000000000000,-0.010837438423675,2 -8942,8970,8972,9000,0.021182266009500,-0.353571428571418,0.016071428571059,-0.355357142857134,0.026785714285374,-0.355357142857134,0.021674876846934,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571431,-0.000369458128073,0.003571428571431,0.000615763546793,-0.000000000000000,-0.010837438423675,2 -8943,8971,8973,9001,0.031773399014454,-0.353571428571418,0.026785714285374,-0.355357142857134,0.037499999999687,-0.355357142857133,0.032512315270607,-0.357142857142849,-0.000000000000000,0.010591133004952,-0.003571428571431,-0.000615763546793,0.003571428571432,0.000862068965514,-0.000000000000000,-0.010837438423673,2 -8944,8972,8974,9002,0.042364532019406,-0.353571428571418,0.037499999999687,-0.355357142857133,0.048214285713999,-0.355357142857133,0.043349753694280,-0.357142857142849,-0.000000000000000,0.010591133004952,-0.003571428571432,-0.000862068965514,0.003571428571432,0.001108374384234,-0.000000000000000,-0.010837438423673,2 -8945,8973,8975,9003,0.052955665024359,-0.353571428571417,0.048214285713999,-0.355357142857133,0.058928571428312,-0.355357142857133,0.054187192117953,-0.357142857142849,-0.000000000000000,0.010591133004953,-0.003571428571432,-0.001108374384234,0.003571428571432,0.001354679802954,0.000000000000000,-0.010837438423673,2 -8946,8974,8976,9004,0.063546798029312,-0.353571428571417,0.058928571428312,-0.355357142857133,0.069642857142626,-0.355357142857133,0.065024630541626,-0.357142857142849,-0.000000000000000,0.010591133004954,-0.003571428571432,-0.001354679802954,0.003571428571432,0.001600985221674,-0.000000000000000,-0.010837438423674,2 -8947,8975,8977,9005,0.074137931034267,-0.353571428571417,0.069642857142626,-0.355357142857133,0.080357142856941,-0.355357142857133,0.075862068965301,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571432,-0.001600985221674,0.003571428571433,0.001847290640394,0.000000000000000,-0.010837438423675,2 -8948,8976,8978,9006,0.084729064039222,-0.353571428571416,0.080357142856941,-0.355357142857133,0.091071428571256,-0.355357142857133,0.086699507388975,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571433,-0.001847290640394,0.003571428571433,0.002093596059114,-0.000000000000000,-0.010837438423674,2 -8949,8977,8979,9007,0.095320197044176,-0.353571428571416,0.091071428571256,-0.355357142857133,0.101785714285571,-0.355357142857133,0.097536945812650,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571433,-0.002093596059114,0.003571428571433,0.002339901477834,-0.000000000000000,-0.010837438423675,2 -8950,8978,8980,9008,0.105911330049126,-0.353571428571416,0.101785714285571,-0.355357142857133,0.112499999999874,-0.355357142857132,0.108374384236319,-0.357142857142849,-0.000000000000000,0.010591133004943,-0.003571428571433,-0.002339901477834,0.003571428571433,0.002586206896554,-0.000000000000000,-0.010837438423664,2 -8951,8979,8981,9009,0.116502463054073,-0.353571428571416,0.112499999999874,-0.355357142857132,0.123214285714186,-0.355357142857132,0.119211822659987,-0.357142857142849,-0.000000000000000,0.010591133004952,-0.003571428571433,-0.002586206896554,0.003571428571434,0.002832512315274,-0.000000000000000,-0.010837438423672,2 -8952,8980,8982,9010,0.127093596059026,-0.353571428571415,0.123214285714186,-0.355357142857132,0.133928571428501,-0.355357142857132,0.130049261083660,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571434,-0.002832512315274,0.003571428571434,0.003078817733994,-0.000000000000000,-0.010837438423675,2 -8953,8981,8983,9011,0.137684729063981,-0.353571428571415,0.133928571428501,-0.355357142857132,0.144642857142816,-0.355357142857132,0.140886699507336,-0.357142857142849,-0.000000000000000,0.010591133004955,-0.003571428571434,-0.003078817733994,0.003571428571434,0.003325123152714,0.000000000000000,-0.010837438423675,2 -8954,8982,9012,10040,0.148275862068937,-0.353571428571415,0.144642857142816,-0.355357142857132,0.151724137931011,-0.357142857142849,0.155357142857132,-0.355357142857132,-0.000000000000000,0.010591133004955,-0.003571428571434,-0.003325123152714,0.000000000000000,-0.010837438423676,0.003571428571434,0.003571428571434,2 -8111,8955,8985,9013,-0.158928571428564,-0.358928571428564,-0.151724137931037,-0.357142857142850,-0.147967980295580,-0.358928571428565,-0.155172413793107,-0.360714285714279,-0.003571428571429,0.003571428571429,0.000000000000000,0.010837438423625,0.003571428571430,-0.003325123152710,-0.000000000000001,-0.011083743842344,2 -8956,8984,8986,9014,-0.140886699507418,-0.357142857142850,-0.147967980295580,-0.358928571428565,-0.137007389162607,-0.358928571428565,-0.144088669950769,-0.360714285714280,-0.000000000000000,0.010837438423614,-0.003571428571430,0.003325123152710,0.003571428571431,-0.003078817733991,-0.000000000000000,-0.011083743842333,2 -8957,8985,8987,9015,-0.130049261083797,-0.357142857142850,-0.137007389162607,-0.358928571428565,-0.126046798029618,-0.358928571428565,-0.133004926108428,-0.360714285714281,0.000000000000000,0.010837438423629,-0.003571428571431,0.003078817733991,0.003571428571431,-0.002832512315271,-0.000000000000001,-0.011083743842348,2 -8958,8986,8988,9016,-0.119211822660174,-0.357142857142850,-0.126046798029618,-0.358928571428565,-0.115086206896641,-0.358928571428566,-0.121921182266085,-0.360714285714281,0.000000000000000,0.010837438423618,-0.003571428571431,0.002832512315271,0.003571428571432,-0.002586206896551,-0.000000000000001,-0.011083743842338,2 -8959,8987,8989,9017,-0.108374384236558,-0.357142857142850,-0.115086206896641,-0.358928571428566,-0.104125615763667,-0.358928571428566,-0.110837438423750,-0.360714285714282,-0.000000000000000,0.010837438423614,-0.003571428571432,0.002586206896551,0.003571428571433,-0.002339901477832,-0.000000000000001,-0.011083743842333,2 -8960,8988,8990,9018,-0.097536945812944,-0.357142857142849,-0.104125615763667,-0.358928571428566,-0.093165024630694,-0.358928571428566,-0.099753694581417,-0.360714285714283,0.000000000000000,0.010837438423614,-0.003571428571433,0.002339901477832,0.003571428571433,-0.002093596059113,-0.000000000000001,-0.011083743842333,2 -8961,8989,8991,9019,-0.086699507389330,-0.357142857142850,-0.093165024630694,-0.358928571428566,-0.082204433497720,-0.358928571428566,-0.088669950739084,-0.360714285714283,0.000000000000000,0.010837438423614,-0.003571428571433,0.002093596059113,0.003571428571434,-0.001847290640394,-0.000000000000001,-0.011083743842333,2 -8962,8990,8992,9020,-0.075862068965717,-0.357142857142850,-0.082204433497720,-0.358928571428566,-0.071243842364747,-0.358928571428567,-0.077586206896751,-0.360714285714284,-0.000000000000000,0.010837438423614,-0.003571428571434,0.001847290640394,0.003571428571434,-0.001600985221675,-0.000000000000001,-0.011083743842333,2 -8963,8991,8993,9021,-0.065024630542103,-0.357142857142849,-0.071243842364747,-0.358928571428567,-0.060283251231773,-0.358928571428567,-0.066502463054418,-0.360714285714284,-0.000000000000000,0.010837438423614,-0.003571428571434,0.001600985221675,0.003571428571435,-0.001354679802955,-0.000000000000001,-0.011083743842333,2 -8964,8992,8994,9022,-0.054187192118489,-0.357142857142849,-0.060283251231773,-0.358928571428567,-0.049322660098800,-0.358928571428567,-0.055418719212085,-0.360714285714285,0.000000000000000,0.010837438423614,-0.003571428571435,0.001354679802955,0.003571428571436,-0.001108374384236,-0.000000000000000,-0.011083743842333,2 -8965,8993,8995,9023,-0.043349753694874,-0.357142857142849,-0.049322660098800,-0.358928571428567,-0.038362068965825,-0.358928571428568,-0.044334975369751,-0.360714285714286,0.000000000000000,0.010837438423616,-0.003571428571436,0.001108374384236,0.003571428571436,-0.000862068965518,-0.000000000000001,-0.011083743842335,2 -8966,8994,8996,9024,-0.032512315271258,-0.357142857142849,-0.038362068965825,-0.358928571428568,-0.027401477832851,-0.358928571428568,-0.033251231527417,-0.360714285714286,0.000000000000000,0.010837438423615,-0.003571428571436,0.000862068965518,0.003571428571437,-0.000615763546799,-0.000000000000000,-0.011083743842333,2 -8967,8995,8997,9025,-0.021674876847644,-0.357142857142849,-0.027401477832851,-0.358928571428568,-0.016440886699877,-0.358928571428568,-0.022167487685083,-0.360714285714287,-0.000000000000000,0.010837438423614,-0.003571428571437,0.000615763546799,0.003571428571438,-0.000369458128080,-0.000000000000001,-0.011083743842333,2 -8968,8996,8998,9026,-0.010837438424030,-0.357142857142849,-0.016440886699877,-0.358928571428568,-0.005480295566904,-0.358928571428569,-0.011083743842750,-0.360714285714287,0.000000000000000,0.010837438423614,-0.003571428571438,0.000369458128080,0.003571428571438,-0.000123152709360,-0.000000000000001,-0.011083743842333,2 -8969,8997,8999,9027,-0.000000000000401,-0.357142857142849,-0.005480295566904,-0.358928571428569,0.005480295566101,-0.358928571428569,-0.000000000000402,-0.360714285714288,0.000000000000000,0.010837438423644,-0.003571428571438,0.000123152709360,0.003571428571439,0.000123152709359,-0.000000000000000,-0.011083743842364,2 -8970,8998,9000,9028,0.010837438423258,-0.357142857142849,0.005480295566101,-0.358928571428569,0.016440886699136,-0.358928571428569,0.011083743841978,-0.360714285714289,0.000000000000000,0.010837438423675,-0.003571428571439,-0.000123152709359,0.003571428571440,0.000369458128080,-0.000000000000001,-0.011083743842395,2 -8971,8999,9001,9029,0.021674876846934,-0.357142857142849,0.016440886699136,-0.358928571428569,0.027401477832171,-0.358928571428569,0.022167487684374,-0.360714285714289,0.000000000000000,0.010837438423675,-0.003571428571440,-0.000369458128080,0.003571428571440,0.000615763546800,-0.000000000000001,-0.011083743842396,2 -8972,9000,9002,9030,0.032512315270607,-0.357142857142849,0.027401477832171,-0.358928571428569,0.038362068965204,-0.358928571428570,0.033251231526768,-0.360714285714290,0.000000000000000,0.010837438423673,-0.003571428571440,-0.000615763546800,0.003571428571441,0.000862068965521,-0.000000000000001,-0.011083743842393,2 -8973,9001,9003,9031,0.043349753694280,-0.357142857142849,0.038362068965204,-0.358928571428570,0.049322660098237,-0.358928571428570,0.044334975369162,-0.360714285714291,0.000000000000000,0.010837438423673,-0.003571428571441,-0.000862068965521,0.003571428571441,0.001108374384242,-0.000000000000001,-0.011083743842393,2 -8974,9002,9004,9032,0.054187192117953,-0.357142857142849,0.049322660098237,-0.358928571428570,0.060283251231271,-0.358928571428570,0.055418719211555,-0.360714285714291,-0.000000000000000,0.010837438423673,-0.003571428571441,-0.001108374384242,0.003571428571442,0.001354679802963,-0.000000000000000,-0.011083743842394,2 -8975,9003,9005,9033,0.065024630541626,-0.357142857142849,0.060283251231271,-0.358928571428570,0.071243842364305,-0.358928571428571,0.066502463053949,-0.360714285714292,0.000000000000000,0.010837438423674,-0.003571428571442,-0.001354679802963,0.003571428571443,0.001600985221684,-0.000000000000001,-0.011083743842395,2 -8976,9004,9006,9034,0.075862068965301,-0.357142857142849,0.071243842364305,-0.358928571428571,0.082204433497340,-0.358928571428571,0.077586206896344,-0.360714285714292,-0.000000000000000,0.010837438423675,-0.003571428571443,-0.001600985221684,0.003571428571443,0.001847290640404,-0.000000000000001,-0.011083743842395,2 -8977,9005,9007,9035,0.086699507388975,-0.357142857142849,0.082204433497340,-0.358928571428571,0.093165024630375,-0.358928571428571,0.088669950738739,-0.360714285714293,0.000000000000000,0.010837438423674,-0.003571428571443,-0.001847290640404,0.003571428571444,0.002093596059124,-0.000000000000001,-0.011083743842395,2 -8978,9006,9008,9036,0.097536945812650,-0.357142857142849,0.093165024630375,-0.358928571428571,0.104125615763410,-0.358928571428571,0.099753694581134,-0.360714285714294,0.000000000000000,0.010837438423675,-0.003571428571444,-0.002093596059124,0.003571428571445,0.002339901477845,-0.000000000000001,-0.011083743842395,2 -8979,9007,9009,9037,0.108374384236319,-0.357142857142849,0.104125615763410,-0.358928571428571,0.115086206896434,-0.358928571428572,0.110837438423525,-0.360714285714294,0.000000000000000,0.010837438423664,-0.003571428571445,-0.002339901477845,0.003571428571445,0.002586206896566,-0.000000000000000,-0.011083743842385,2 -8980,9008,9010,9038,0.119211822659987,-0.357142857142849,0.115086206896434,-0.358928571428572,0.126046798029466,-0.358928571428572,0.121921182265913,-0.360714285714295,0.000000000000000,0.010837438423672,-0.003571428571445,-0.002586206896566,0.003571428571446,0.002832512315286,-0.000000000000001,-0.011083743842392,2 -8981,9009,9011,9039,0.130049261083660,-0.357142857142849,0.126046798029466,-0.358928571428572,0.137007389162501,-0.358928571428572,0.133004926108307,-0.360714285714295,0.000000000000000,0.010837438423675,-0.003571428571446,-0.002832512315286,0.003571428571446,0.003078817734007,-0.000000000000001,-0.011083743842395,2 -8982,9010,9012,9040,0.140886699507336,-0.357142857142849,0.137007389162501,-0.358928571428572,0.147967980295537,-0.358928571428573,0.144088669950702,-0.360714285714296,-0.000000000000000,0.010837438423675,-0.003571428571446,-0.003078817734007,0.003571428571447,0.003325123152727,-0.000000000000001,-0.011083743842396,2 -8983,9011,9041,9981,0.151724137931011,-0.357142857142849,0.147967980295537,-0.358928571428573,0.155172413793099,-0.360714285714297,0.158928571428573,-0.358928571428573,-0.000000000000000,0.010837438423676,-0.003571428571447,-0.003325123152727,-0.000000000000001,-0.011083743842396,0.003571428571448,0.003571428571448,2 -8110,8984,9014,9042,-0.162499999999982,-0.362499999999982,-0.155172413793107,-0.360714285714279,-0.151293103448278,-0.362499999999983,-0.158620689655153,-0.364285714285685,-0.003571428571405,0.003571428571405,0.000000000000001,0.011083743842344,0.003571428571407,-0.003325123152686,-0.000000000000002,-0.011330049261063,2 -8985,9013,9015,9043,-0.144088669950769,-0.360714285714280,-0.151293103448278,-0.362499999999983,-0.140086206896586,-0.362499999999985,-0.147290640394096,-0.364285714285688,0.000000000000000,0.011083743842333,-0.003571428571407,0.003325123152686,0.003571428571409,-0.003078817733967,-0.000000000000003,-0.011330049261052,2 -8986,9014,9016,9044,-0.133004926108428,-0.360714285714281,-0.140086206896586,-0.362499999999985,-0.128879310344878,-0.362499999999986,-0.135960591133036,-0.364285714285690,0.000000000000001,0.011083743842348,-0.003571428571409,0.003078817733967,0.003571428571411,-0.002832512315248,-0.000000000000002,-0.011330049261067,2 -8987,9015,9017,9045,-0.121921182266085,-0.360714285714281,-0.128879310344878,-0.362499999999986,-0.117672413793181,-0.362499999999988,-0.124630541871974,-0.364285714285693,0.000000000000001,0.011083743842338,-0.003571428571411,0.002832512315248,0.003571428571413,-0.002586206896529,-0.000000000000002,-0.011330049261058,2 -8988,9016,9018,9046,-0.110837438423750,-0.360714285714282,-0.117672413793181,-0.362499999999988,-0.106465517241488,-0.362499999999989,-0.113300492610919,-0.364285714285695,0.000000000000001,0.011083743842333,-0.003571428571413,0.002586206896529,0.003571428571415,-0.002339901477810,-0.000000000000003,-0.011330049261052,2 -8989,9017,9019,9047,-0.099753694581417,-0.360714285714283,-0.106465517241488,-0.362499999999989,-0.095258620689796,-0.362499999999991,-0.101970443349867,-0.364285714285698,0.000000000000001,0.011083743842333,-0.003571428571415,0.002339901477810,0.003571428571416,-0.002093596059091,-0.000000000000003,-0.011330049261052,2 -8990,9018,9020,9048,-0.088669950739084,-0.360714285714283,-0.095258620689796,-0.362499999999991,-0.084051724138103,-0.362499999999993,-0.090640394088815,-0.364285714285701,0.000000000000001,0.011083743842333,-0.003571428571416,0.002093596059091,0.003571428571418,-0.001847290640372,-0.000000000000002,-0.011330049261052,2 -8991,9019,9021,9049,-0.077586206896751,-0.360714285714284,-0.084051724138103,-0.362499999999993,-0.072844827586411,-0.362499999999994,-0.079310344827763,-0.364285714285703,0.000000000000001,0.011083743842333,-0.003571428571418,0.001847290640372,0.003571428571420,-0.001600985221653,-0.000000000000003,-0.011330049261052,2 -8992,9020,9022,9050,-0.066502463054418,-0.360714285714284,-0.072844827586411,-0.362499999999994,-0.061637931034718,-0.362499999999996,-0.067980295566712,-0.364285714285706,0.000000000000001,0.011083743842333,-0.003571428571420,0.001600985221653,0.003571428571422,-0.001354679802935,-0.000000000000002,-0.011330049261052,2 -8993,9021,9023,9051,-0.055418719212085,-0.360714285714285,-0.061637931034718,-0.362499999999996,-0.050431034483026,-0.362499999999997,-0.056650246305660,-0.364285714285708,0.000000000000000,0.011083743842333,-0.003571428571422,0.001354679802935,0.003571428571424,-0.001108374384216,-0.000000000000002,-0.011330049261052,2 -8994,9022,9024,9052,-0.044334975369751,-0.360714285714286,-0.050431034483026,-0.362499999999997,-0.039224137931332,-0.362499999999999,-0.045320197044608,-0.364285714285711,0.000000000000001,0.011083743842335,-0.003571428571424,0.001108374384216,0.003571428571426,-0.000862068965498,-0.000000000000003,-0.011330049261052,2 -8995,9023,9025,9053,-0.033251231527417,-0.360714285714286,-0.039224137931332,-0.362499999999999,-0.028017241379640,-0.362500000000000,-0.033990147783555,-0.364285714285713,0.000000000000000,0.011083743842333,-0.003571428571426,0.000862068965498,0.003571428571428,-0.000615763546779,-0.000000000000002,-0.011330049261052,2 -8996,9024,9026,9054,-0.022167487685083,-0.360714285714287,-0.028017241379640,-0.362500000000000,-0.016810344827947,-0.362500000000002,-0.022660098522503,-0.364285714285716,0.000000000000001,0.011083743842333,-0.003571428571428,0.000615763546779,0.003571428571430,-0.000369458128061,-0.000000000000002,-0.011330049261052,2 -8997,9025,9027,9055,-0.011083743842750,-0.360714285714287,-0.016810344827947,-0.362500000000002,-0.005603448276255,-0.362500000000004,-0.011330049261452,-0.364285714285718,0.000000000000001,0.011083743842333,-0.003571428571430,0.000369458128061,0.003571428571432,-0.000123152709342,-0.000000000000003,-0.011330049261052,2 -8998,9026,9028,9056,-0.000000000000402,-0.360714285714288,-0.005603448276255,-0.362500000000004,0.005603448275469,-0.362500000000005,-0.000000000000384,-0.364285714285721,0.000000000000000,0.011083743842364,-0.003571428571432,0.000123152709342,0.003571428571434,0.000123152709378,-0.000000000000002,-0.011330049261083,2 -8999,9027,9029,9057,0.011083743841978,-0.360714285714289,0.005603448275469,-0.362500000000005,0.016810344827225,-0.362500000000007,0.011330049260716,-0.364285714285723,0.000000000000001,0.011083743842395,-0.003571428571434,-0.000123152709378,0.003571428571436,0.000369458128098,-0.000000000000003,-0.011330049261116,2 -9000,9028,9030,9058,0.022167487684374,-0.360714285714289,0.016810344827225,-0.362500000000007,0.028017241378980,-0.362500000000008,0.022660098521831,-0.364285714285726,0.000000000000001,0.011083743842396,-0.003571428571436,-0.000369458128098,0.003571428571437,0.000615763546818,-0.000000000000003,-0.011330049261116,2 -9001,9029,9031,9059,0.033251231526768,-0.360714285714290,0.028017241378980,-0.362500000000008,0.039224137930734,-0.362500000000010,0.033990147782946,-0.364285714285728,0.000000000000001,0.011083743842393,-0.003571428571437,-0.000615763546818,0.003571428571439,0.000862068965538,-0.000000000000002,-0.011330049261114,2 -9002,9030,9032,9060,0.044334975369162,-0.360714285714291,0.039224137930734,-0.362500000000010,0.050431034482488,-0.362500000000011,0.045320197044060,-0.364285714285731,0.000000000000001,0.011083743842393,-0.003571428571439,-0.000862068965538,0.003571428571441,0.001108374384258,-0.000000000000002,-0.011330049261114,2 -9003,9031,9033,9061,0.055418719211555,-0.360714285714291,0.050431034482488,-0.362500000000011,0.061637931034242,-0.362500000000013,0.056650246305174,-0.364285714285733,0.000000000000000,0.011083743842394,-0.003571428571441,-0.001108374384258,0.003571428571443,0.001354679802979,-0.000000000000003,-0.011330049261115,2 -9004,9032,9034,9062,0.066502463053949,-0.360714285714292,0.061637931034242,-0.362500000000013,0.072844827585996,-0.362500000000015,0.067980295566289,-0.364285714285736,0.000000000000001,0.011083743842395,-0.003571428571443,-0.001354679802979,0.003571428571445,0.001600985221699,-0.000000000000002,-0.011330049261115,2 -9005,9033,9035,9063,0.077586206896344,-0.360714285714292,0.072844827585996,-0.362500000000015,0.084051724137752,-0.362500000000016,0.079310344827404,-0.364285714285738,0.000000000000001,0.011083743842395,-0.003571428571445,-0.001600985221699,0.003571428571447,0.001847290640419,-0.000000000000002,-0.011330049261115,2 -9006,9034,9036,9064,0.088669950738739,-0.360714285714293,0.084051724137752,-0.362500000000016,0.095258620689506,-0.362500000000018,0.090640394088518,-0.364285714285741,0.000000000000001,0.011083743842395,-0.003571428571447,-0.001847290640419,0.003571428571449,0.002093596059139,-0.000000000000002,-0.011330049261115,2 -9007,9035,9037,9065,0.099753694581134,-0.360714285714294,0.095258620689506,-0.362500000000018,0.106465517241261,-0.362500000000019,0.101970443349633,-0.364285714285743,0.000000000000001,0.011083743842395,-0.003571428571449,-0.002093596059139,0.003571428571451,0.002339901477859,-0.000000000000002,-0.011330049261115,2 -9008,9036,9038,9066,0.110837438423525,-0.360714285714294,0.106465517241261,-0.362500000000019,0.117672413793007,-0.362500000000021,0.113300492610744,-0.364285714285746,0.000000000000000,0.011083743842385,-0.003571428571451,-0.002339901477859,0.003571428571453,0.002586206896580,-0.000000000000003,-0.011330049261106,2 -9009,9037,9039,9067,0.121921182265913,-0.360714285714295,0.117672413793007,-0.362500000000021,0.128879310344759,-0.362500000000022,0.124630541871853,-0.364285714285748,0.000000000000001,0.011083743842392,-0.003571428571453,-0.002586206896580,0.003571428571454,0.002832512315300,-0.000000000000002,-0.011330049261112,2 -9010,9038,9040,9068,0.133004926108307,-0.360714285714295,0.128879310344759,-0.362500000000022,0.140086206896514,-0.362500000000024,0.135960591132967,-0.364285714285751,0.000000000000001,0.011083743842395,-0.003571428571454,-0.002832512315300,0.003571428571457,0.003078817734020,-0.000000000000003,-0.011330049261115,2 -9011,9039,9041,9069,0.144088669950702,-0.360714285714296,0.140086206896514,-0.362500000000024,0.151293103448270,-0.362500000000026,0.147290640394082,-0.364285714285754,0.000000000000001,0.011083743842396,-0.003571428571457,-0.003078817734020,0.003571428571458,0.003325123152740,-0.000000000000002,-0.011330049261116,2 -9012,9040,9070,9922,0.155172413793099,-0.360714285714297,0.151293103448270,-0.362500000000026,0.158620689655199,-0.364285714285756,0.162500000000027,-0.362500000000027,0.000000000000001,0.011083743842396,-0.003571428571458,-0.003325123152740,-0.000000000000002,-0.011330049261117,0.003571428571460,0.003571428571460,2 -8109,9013,9043,9071,-0.166071428571395,-0.366071428571395,-0.158620689655153,-0.364285714285685,-0.154618226600972,-0.366071428571397,-0.162068965517214,-0.367857142857107,-0.003571428571421,0.003571428571421,0.000000000000002,0.011330049261063,0.003571428571422,-0.003325123152702,-0.000000000000003,-0.011576354679781,2 -9014,9042,9044,9072,-0.147290640394096,-0.364285714285688,-0.154618226600972,-0.366071428571397,-0.143165024630561,-0.366071428571400,-0.150492610837438,-0.367857142857110,0.000000000000003,0.011330049261052,-0.003571428571422,0.003325123152702,0.003571428571423,-0.003078817733983,-0.000000000000003,-0.011576354679771,2 -9015,9043,9045,9073,-0.135960591133036,-0.364285714285690,-0.143165024630561,-0.366071428571400,-0.131711822660135,-0.366071428571403,-0.138916256157660,-0.367857142857113,0.000000000000002,0.011330049261067,-0.003571428571423,0.003078817733983,0.003571428571423,-0.002832512315264,-0.000000000000003,-0.011576354679786,2 -9016,9044,9046,9074,-0.124630541871974,-0.364285714285693,-0.131711822660135,-0.366071428571403,-0.120258620689717,-0.366071428571406,-0.127339901477878,-0.367857142857117,0.000000000000002,0.011330049261058,-0.003571428571423,0.002832512315264,0.003571428571424,-0.002586206896544,-0.000000000000003,-0.011576354679777,2 -9017,9045,9047,9075,-0.113300492610919,-0.364285714285695,-0.120258620689717,-0.366071428571406,-0.108805418719306,-0.366071428571409,-0.115763546798104,-0.367857142857120,0.000000000000003,0.011330049261052,-0.003571428571424,0.002586206896544,0.003571428571425,-0.002339901477826,-0.000000000000003,-0.011576354679771,2 -9018,9046,9048,9076,-0.101970443349867,-0.364285714285698,-0.108805418719306,-0.366071428571409,-0.097352216748895,-0.366071428571412,-0.104187192118333,-0.367857142857123,0.000000000000003,0.011330049261052,-0.003571428571425,0.002339901477826,0.003571428571426,-0.002093596059107,-0.000000000000003,-0.011576354679771,2 -9019,9047,9049,9077,-0.090640394088815,-0.364285714285701,-0.097352216748895,-0.366071428571412,-0.085899014778483,-0.366071428571415,-0.092610837438563,-0.367857142857127,0.000000000000002,0.011330049261052,-0.003571428571426,0.002093596059107,0.003571428571427,-0.001847290640388,-0.000000000000003,-0.011576354679771,2 -9020,9048,9050,9078,-0.079310344827763,-0.364285714285703,-0.085899014778483,-0.366071428571415,-0.074445812808072,-0.366071428571418,-0.081034482758792,-0.367857142857130,0.000000000000003,0.011330049261052,-0.003571428571427,0.001847290640388,0.003571428571427,-0.001600985221669,-0.000000000000003,-0.011576354679771,2 -9021,9049,9051,9079,-0.067980295566712,-0.364285714285706,-0.074445812808072,-0.366071428571418,-0.062992610837661,-0.366071428571421,-0.069458128079021,-0.367857142857134,0.000000000000002,0.011330049261052,-0.003571428571427,0.001600985221669,0.003571428571428,-0.001354679802950,-0.000000000000003,-0.011576354679771,2 -9022,9050,9052,9080,-0.056650246305660,-0.364285714285708,-0.062992610837661,-0.366071428571421,-0.051539408867249,-0.366071428571424,-0.057881773399250,-0.367857142857137,0.000000000000002,0.011330049261052,-0.003571428571428,0.001354679802950,0.003571428571429,-0.001108374384231,-0.000000000000003,-0.011576354679771,2 -9023,9051,9053,9081,-0.045320197044608,-0.364285714285711,-0.051539408867249,-0.366071428571424,-0.040086206896838,-0.366071428571427,-0.046305418719480,-0.367857142857140,0.000000000000003,0.011330049261052,-0.003571428571429,0.001108374384231,0.003571428571430,-0.000862068965513,-0.000000000000004,-0.011576354679770,2 -9024,9052,9054,9082,-0.033990147783555,-0.364285714285713,-0.040086206896838,-0.366071428571427,-0.028633004926427,-0.366071428571430,-0.034729064039710,-0.367857142857144,0.000000000000002,0.011330049261052,-0.003571428571430,0.000862068965513,0.003571428571431,-0.000615763546795,-0.000000000000003,-0.011576354679771,2 -9025,9053,9055,9083,-0.022660098522503,-0.364285714285716,-0.028633004926427,-0.366071428571430,-0.017179802956015,-0.366071428571433,-0.023152709359939,-0.367857142857147,0.000000000000002,0.011330049261052,-0.003571428571431,0.000615763546795,0.003571428571432,-0.000369458128076,-0.000000000000003,-0.011576354679771,2 -9026,9054,9056,9084,-0.011330049261452,-0.364285714285718,-0.017179802956015,-0.366071428571433,-0.005726600985604,-0.366071428571436,-0.011576354680168,-0.367857142857150,0.000000000000003,0.011330049261052,-0.003571428571432,0.000369458128076,0.003571428571433,-0.000123152709357,-0.000000000000003,-0.011576354679771,2 -9027,9055,9057,9085,-0.000000000000384,-0.364285714285721,-0.005726600985604,-0.366071428571436,0.005726600984839,-0.366071428571439,-0.000000000000381,-0.367857142857154,0.000000000000002,0.011330049261083,-0.003571428571433,0.000123152709357,0.003571428571433,0.000123152709362,-0.000000000000003,-0.011576354679803,2 -9028,9056,9058,9086,0.011330049260716,-0.364285714285723,0.005726600984839,-0.366071428571439,0.017179802955314,-0.366071428571441,0.011576354679438,-0.367857142857157,0.000000000000003,0.011330049261116,-0.003571428571433,-0.000123152709362,0.003571428571434,0.000369458128082,-0.000000000000003,-0.011576354679836,2 -9029,9057,9059,9087,0.022660098521831,-0.364285714285726,0.017179802955314,-0.366071428571441,0.028633004925790,-0.366071428571445,0.023152709359274,-0.367857142857160,0.000000000000003,0.011330049261116,-0.003571428571434,-0.000369458128082,0.003571428571435,0.000615763546802,-0.000000000000003,-0.011576354679836,2 -9030,9058,9060,9088,0.033990147782946,-0.364285714285728,0.028633004925790,-0.366071428571445,0.040086206896264,-0.366071428571447,0.034729064039109,-0.367857142857164,0.000000000000002,0.011330049261114,-0.003571428571435,-0.000615763546802,0.003571428571436,0.000862068965523,-0.000000000000003,-0.011576354679834,2 -9031,9059,9061,9089,0.045320197044060,-0.364285714285731,0.040086206896264,-0.366071428571447,0.051539408866738,-0.366071428571450,0.046305418718943,-0.367857142857167,0.000000000000002,0.011330049261114,-0.003571428571436,-0.000862068965523,0.003571428571437,0.001108374384243,-0.000000000000003,-0.011576354679834,2 -9032,9060,9062,9090,0.056650246305174,-0.364285714285733,0.051539408866738,-0.366071428571450,0.062992610837213,-0.366071428571453,0.057881773398777,-0.367857142857171,0.000000000000003,0.011330049261115,-0.003571428571437,-0.001108374384243,0.003571428571438,0.001354679802964,-0.000000000000003,-0.011576354679835,2 -9033,9061,9063,9091,0.067980295566289,-0.364285714285736,0.062992610837213,-0.366071428571453,0.074445812807688,-0.366071428571456,0.069458128078612,-0.367857142857174,0.000000000000002,0.011330049261115,-0.003571428571438,-0.001354679802964,0.003571428571438,0.001600985221684,-0.000000000000003,-0.011576354679835,2 -9034,9062,9064,9092,0.079310344827404,-0.364285714285738,0.074445812807688,-0.366071428571456,0.085899014778163,-0.366071428571459,0.081034482758447,-0.367857142857177,0.000000000000002,0.011330049261115,-0.003571428571438,-0.001600985221684,0.003571428571439,0.001847290640404,-0.000000000000003,-0.011576354679835,2 -9035,9063,9065,9093,0.090640394088518,-0.364285714285741,0.085899014778163,-0.366071428571459,0.097352216748638,-0.366071428571462,0.092610837438282,-0.367857142857181,0.000000000000002,0.011330049261115,-0.003571428571439,-0.001847290640404,0.003571428571440,0.002093596059124,-0.000000000000003,-0.011576354679835,2 -9036,9064,9066,9094,0.101970443349633,-0.364285714285743,0.097352216748638,-0.366071428571462,0.108805418719113,-0.366071428571465,0.104187192118117,-0.367857142857184,0.000000000000002,0.011330049261115,-0.003571428571440,-0.002093596059124,0.003571428571441,0.002339901477844,-0.000000000000003,-0.011576354679835,2 -9037,9065,9067,9095,0.113300492610744,-0.364285714285746,0.108805418719113,-0.366071428571465,0.120258620689579,-0.366071428571468,0.115763546797948,-0.367857142857187,0.000000000000003,0.011330049261106,-0.003571428571441,-0.002339901477844,0.003571428571442,0.002586206896564,-0.000000000000003,-0.011576354679827,2 -9038,9066,9068,9096,0.124630541871853,-0.364285714285748,0.120258620689579,-0.366071428571468,0.131711822660052,-0.366071428571471,0.127339901477778,-0.367857142857191,0.000000000000002,0.011330049261112,-0.003571428571442,-0.002586206896564,0.003571428571443,0.002832512315285,-0.000000000000003,-0.011576354679832,2 -9039,9067,9069,9097,0.135960591132967,-0.364285714285751,0.131711822660052,-0.366071428571471,0.143165024630526,-0.366071428571474,0.138916256157611,-0.367857142857194,0.000000000000003,0.011330049261115,-0.003571428571443,-0.002832512315285,0.003571428571443,0.003078817734005,-0.000000000000003,-0.011576354679835,2 -9040,9068,9070,9098,0.147290640394082,-0.364285714285754,0.143165024630526,-0.366071428571474,0.154618226601003,-0.366071428571477,0.150492610837447,-0.367857142857197,0.000000000000002,0.011330049261116,-0.003571428571443,-0.003078817734005,0.003571428571444,0.003325123152725,-0.000000000000003,-0.011576354679837,2 -9041,9069,9099,9863,0.158620689655199,-0.364285714285756,0.154618226601003,-0.366071428571477,0.162068965517284,-0.367857142857201,0.166071428571480,-0.366071428571480,0.000000000000002,0.011330049261117,-0.003571428571444,-0.003325123152725,-0.000000000000003,-0.011576354679837,0.003571428571445,0.003571428571445,2 -8108,9042,9072,9100,-0.169642857142809,-0.369642857142809,-0.162068965517214,-0.367857142857107,-0.157943349753668,-0.369642857142812,-0.165517241379262,-0.371428571428514,-0.003571428571407,0.003571428571407,0.000000000000003,0.011576354679781,0.003571428571408,-0.003325123152689,-0.000000000000004,-0.011822660098499,2 -9043,9071,9073,9101,-0.150492610837438,-0.367857142857110,-0.157943349753668,-0.369642857142812,-0.146243842364538,-0.369642857142816,-0.153694581280769,-0.371428571428518,0.000000000000003,0.011576354679771,-0.003571428571408,0.003325123152689,0.003571428571409,-0.003078817733972,-0.000000000000004,-0.011822660098489,2 -9044,9072,9074,9102,-0.138916256157660,-0.367857142857113,-0.146243842364538,-0.369642857142816,-0.134544334975393,-0.369642857142820,-0.141871921182272,-0.371428571428523,0.000000000000003,0.011576354679786,-0.003571428571409,0.003078817733972,0.003571428571410,-0.002832512315253,-0.000000000000004,-0.011822660098504,2 -9045,9073,9075,9103,-0.127339901477878,-0.367857142857117,-0.134544334975393,-0.369642857142820,-0.122844827586257,-0.369642857142824,-0.130049261083772,-0.371428571428527,0.000000000000003,0.011576354679777,-0.003571428571410,0.002832512315253,0.003571428571411,-0.002586206896534,-0.000000000000004,-0.011822660098496,2 -9046,9074,9076,9104,-0.115763546798104,-0.367857142857120,-0.122844827586257,-0.369642857142824,-0.111145320197127,-0.369642857142827,-0.118226600985279,-0.371428571428531,0.000000000000003,0.011576354679771,-0.003571428571411,0.002586206896534,0.003571428571412,-0.002339901477817,-0.000000000000004,-0.011822660098489,2 -9047,9075,9077,9105,-0.104187192118333,-0.367857142857123,-0.111145320197127,-0.369642857142827,-0.099445812807997,-0.369642857142831,-0.106403940886791,-0.371428571428535,0.000000000000003,0.011576354679771,-0.003571428571412,0.002339901477817,0.003571428571412,-0.002093596059099,-0.000000000000004,-0.011822660098489,2 -9048,9076,9078,9106,-0.092610837438563,-0.367857142857127,-0.099445812807997,-0.369642857142831,-0.087746305418868,-0.369642857142835,-0.094581280788302,-0.371428571428540,0.000000000000003,0.011576354679771,-0.003571428571412,0.002093596059099,0.003571428571413,-0.001847290640381,-0.000000000000004,-0.011822660098489,2 -9049,9077,9079,9107,-0.081034482758792,-0.367857142857130,-0.087746305418868,-0.369642857142835,-0.076046798029738,-0.369642857142839,-0.082758620689814,-0.371428571428544,0.000000000000003,0.011576354679771,-0.003571428571413,0.001847290640381,0.003571428571414,-0.001600985221663,-0.000000000000004,-0.011822660098489,2 -9050,9078,9080,9108,-0.069458128079021,-0.367857142857134,-0.076046798029738,-0.369642857142839,-0.064347290640608,-0.369642857142843,-0.070935960591325,-0.371428571428548,0.000000000000003,0.011576354679771,-0.003571428571414,0.001600985221663,0.003571428571415,-0.001354679802945,-0.000000000000004,-0.011822660098489,2 -9051,9079,9081,9109,-0.057881773399250,-0.367857142857137,-0.064347290640608,-0.369642857142843,-0.052647783251479,-0.369642857142846,-0.059113300492837,-0.371428571428552,0.000000000000003,0.011576354679771,-0.003571428571415,0.001354679802945,0.003571428571416,-0.001108374384227,-0.000000000000004,-0.011822660098489,2 -9052,9080,9082,9110,-0.046305418719480,-0.367857142857140,-0.052647783251479,-0.369642857142846,-0.040948275862350,-0.369642857142850,-0.047290640394349,-0.371428571428556,0.000000000000004,0.011576354679770,-0.003571428571416,0.001108374384227,0.003571428571417,-0.000862068965510,-0.000000000000004,-0.011822660098487,2 -9053,9081,9083,9111,-0.034729064039710,-0.367857142857144,-0.040948275862350,-0.369642857142850,-0.029248768473220,-0.369642857142854,-0.035467980295861,-0.371428571428561,0.000000000000003,0.011576354679771,-0.003571428571417,0.000862068965510,0.003571428571417,-0.000615763546792,-0.000000000000004,-0.011822660098488,2 -9054,9082,9084,9112,-0.023152709359939,-0.367857142857147,-0.029248768473220,-0.369642857142854,-0.017549261084091,-0.369642857142858,-0.023645320197372,-0.371428571428565,0.000000000000003,0.011576354679771,-0.003571428571417,0.000615763546792,0.003571428571418,-0.000369458128075,-0.000000000000004,-0.011822660098489,2 -9055,9083,9085,9113,-0.011576354680168,-0.367857142857150,-0.017549261084091,-0.369642857142858,-0.005849753694961,-0.369642857142862,-0.011822660098884,-0.371428571428569,0.000000000000003,0.011576354679771,-0.003571428571418,0.000369458128075,0.003571428571419,-0.000123152709357,-0.000000000000004,-0.011822660098489,2 -9056,9084,9086,9114,-0.000000000000381,-0.367857142857154,-0.005849753694961,-0.369642857142862,0.005849753694201,-0.369642857142865,-0.000000000000379,-0.371428571428573,0.000000000000003,0.011576354679803,-0.003571428571419,0.000123152709357,0.003571428571420,0.000123152709362,-0.000000000000004,-0.011822660098521,2 -9057,9085,9087,9115,0.011576354679438,-0.367857142857157,0.005849753694201,-0.369642857142865,0.017549261083396,-0.369642857142869,0.011822660098159,-0.371428571428578,0.000000000000003,0.011576354679836,-0.003571428571420,-0.000123152709362,0.003571428571421,0.000369458128081,-0.000000000000004,-0.011822660098555,2 -9058,9086,9088,9116,0.023152709359274,-0.367857142857160,0.017549261083396,-0.369642857142869,0.029248768472592,-0.369642857142873,0.023645320196714,-0.371428571428582,0.000000000000003,0.011576354679836,-0.003571428571421,-0.000369458128081,0.003571428571422,0.000615763546800,-0.000000000000004,-0.011822660098555,2 -9059,9087,9089,9117,0.034729064039109,-0.367857142857164,0.029248768472592,-0.369642857142873,0.040948275861785,-0.369642857142877,0.035467980295269,-0.371428571428586,0.000000000000003,0.011576354679834,-0.003571428571422,-0.000615763546800,0.003571428571423,0.000862068965520,-0.000000000000004,-0.011822660098554,2 -9060,9088,9090,9118,0.046305418718943,-0.367857142857167,0.040948275861785,-0.369642857142877,0.052647783250979,-0.369642857142881,0.047290640393822,-0.371428571428590,0.000000000000003,0.011576354679834,-0.003571428571423,-0.000862068965520,0.003571428571423,0.001108374384239,-0.000000000000004,-0.011822660098554,2 -9061,9089,9091,9119,0.057881773398777,-0.367857142857171,0.052647783250979,-0.369642857142881,0.064347290640174,-0.369642857142884,0.059113300492376,-0.371428571428594,0.000000000000003,0.011576354679835,-0.003571428571423,-0.001108374384239,0.003571428571424,0.001354679802959,-0.000000000000004,-0.011822660098555,2 -9062,9090,9092,9120,0.069458128078612,-0.367857142857174,0.064347290640174,-0.369642857142884,0.076046798029369,-0.369642857142888,0.070935960590931,-0.371428571428599,0.000000000000003,0.011576354679835,-0.003571428571424,-0.001354679802959,0.003571428571425,0.001600985221678,-0.000000000000004,-0.011822660098554,2 -9063,9091,9093,9121,0.081034482758447,-0.367857142857177,0.076046798029369,-0.369642857142888,0.087746305418563,-0.369642857142892,0.082758620689485,-0.371428571428603,0.000000000000003,0.011576354679835,-0.003571428571425,-0.001600985221678,0.003571428571426,0.001847290640397,-0.000000000000004,-0.011822660098554,2 -9064,9092,9094,9122,0.092610837438282,-0.367857142857181,0.087746305418563,-0.369642857142892,0.099445812807758,-0.369642857142896,0.094581280788039,-0.371428571428607,0.000000000000003,0.011576354679835,-0.003571428571426,-0.001847290640397,0.003571428571427,0.002093596059116,-0.000000000000004,-0.011822660098554,2 -9065,9093,9095,9123,0.104187192118117,-0.367857142857184,0.099445812807758,-0.369642857142896,0.111145320196952,-0.369642857142900,0.106403940886593,-0.371428571428611,0.000000000000003,0.011576354679835,-0.003571428571427,-0.002093596059116,0.003571428571428,0.002339901477835,-0.000000000000004,-0.011822660098554,2 -9066,9094,9096,9124,0.115763546797948,-0.367857142857187,0.111145320196952,-0.369642857142900,0.122844827586139,-0.369642857142903,0.118226600985143,-0.371428571428616,0.000000000000003,0.011576354679827,-0.003571428571428,-0.002339901477835,0.003571428571429,0.002586206896555,-0.000000000000004,-0.011822660098547,2 -9067,9095,9097,9125,0.127339901477778,-0.367857142857191,0.122844827586139,-0.369642857142903,0.134544334975331,-0.369642857142907,0.130049261083692,-0.371428571428620,0.000000000000003,0.011576354679832,-0.003571428571429,-0.002586206896555,0.003571428571429,0.002832512315274,-0.000000000000004,-0.011822660098552,2 -9068,9096,9098,9126,0.138916256157611,-0.367857142857194,0.134544334975331,-0.369642857142907,0.146243842364525,-0.369642857142911,0.141871921182245,-0.371428571428624,0.000000000000003,0.011576354679835,-0.003571428571429,-0.002832512315274,0.003571428571430,0.003078817733993,-0.000000000000004,-0.011822660098554,2 -9069,9097,9099,9127,0.150492610837447,-0.367857142857197,0.146243842364525,-0.369642857142911,0.157943349753722,-0.369642857142915,0.153694581280800,-0.371428571428628,0.000000000000003,0.011576354679837,-0.003571428571430,-0.003078817733993,0.003571428571431,0.003325123152713,-0.000000000000004,-0.011822660098556,2 -9070,9098,9128,9804,0.162068965517284,-0.367857142857201,0.157943349753722,-0.369642857142915,0.165517241379356,-0.371428571428632,0.169642857142918,-0.369642857142918,0.000000000000003,0.011576354679837,-0.003571428571431,-0.003325123152713,-0.000000000000004,-0.011822660098557,0.003571428571432,0.003571428571432,2 -8107,9071,9101,9129,-0.173214285714214,-0.373214285714214,-0.165517241379262,-0.371428571428514,-0.161268472906356,-0.373214285714219,-0.168965517241307,-0.374999999999919,-0.003571428571404,0.003571428571404,0.000000000000004,0.011822660098499,0.003571428571405,-0.003325123152686,-0.000000000000005,-0.012068965517217,2 -9072,9100,9102,9130,-0.153694581280769,-0.371428571428518,-0.161268472906356,-0.373214285714219,-0.149322660098508,-0.373214285714223,-0.156896551724096,-0.374999999999924,0.000000000000004,0.011822660098489,-0.003571428571405,0.003325123152686,0.003571428571406,-0.003078817733969,-0.000000000000005,-0.012068965517206,2 -9073,9101,9103,9131,-0.141871921182272,-0.371428571428523,-0.149322660098508,-0.373214285714223,-0.137376847290645,-0.373214285714228,-0.144827586206882,-0.374999999999929,0.000000000000004,0.011822660098504,-0.003571428571406,0.003078817733969,0.003571428571406,-0.002832512315251,-0.000000000000005,-0.012068965517222,2 -9074,9102,9104,9132,-0.130049261083772,-0.371428571428527,-0.137376847290645,-0.373214285714228,-0.125431034482790,-0.373214285714233,-0.132758620689663,-0.374999999999934,0.000000000000004,0.011822660098496,-0.003571428571406,0.002832512315251,0.003571428571407,-0.002586206896532,-0.000000000000005,-0.012068965517215,2 -9075,9103,9105,9133,-0.118226600985279,-0.371428571428531,-0.125431034482790,-0.373214285714233,-0.113485221674942,-0.373214285714237,-0.120689655172453,-0.374999999999939,0.000000000000004,0.011822660098489,-0.003571428571407,0.002586206896532,0.003571428571408,-0.002339901477814,-0.000000000000005,-0.012068965517206,2 -9076,9104,9106,9134,-0.106403940886791,-0.371428571428535,-0.113485221674942,-0.373214285714237,-0.101539408867095,-0.373214285714242,-0.108620689655246,-0.374999999999944,0.000000000000004,0.011822660098489,-0.003571428571408,0.002339901477814,0.003571428571409,-0.002093596059097,-0.000000000000005,-0.012068965517206,2 -9077,9105,9107,9135,-0.094581280788302,-0.371428571428540,-0.101539408867095,-0.373214285714242,-0.089593596059248,-0.373214285714247,-0.096551724138040,-0.374999999999949,0.000000000000004,0.011822660098489,-0.003571428571409,0.002093596059097,0.003571428571410,-0.001847290640379,-0.000000000000005,-0.012068965517206,2 -9078,9106,9108,9136,-0.082758620689814,-0.371428571428544,-0.089593596059248,-0.373214285714247,-0.077647783251400,-0.373214285714251,-0.084482758620834,-0.374999999999954,0.000000000000004,0.011822660098489,-0.003571428571410,0.001847290640379,0.003571428571411,-0.001600985221661,-0.000000000000005,-0.012068965517206,2 -9079,9107,9109,9137,-0.070935960591325,-0.371428571428548,-0.077647783251400,-0.373214285714251,-0.065701970443553,-0.373214285714256,-0.072413793103628,-0.374999999999959,0.000000000000004,0.011822660098489,-0.003571428571411,0.001600985221661,0.003571428571411,-0.001354679802944,-0.000000000000005,-0.012068965517206,2 -9080,9108,9110,9138,-0.059113300492837,-0.371428571428552,-0.065701970443553,-0.373214285714256,-0.053756157635705,-0.373214285714260,-0.060344827586422,-0.374999999999964,0.000000000000004,0.011822660098489,-0.003571428571411,0.001354679802944,0.003571428571412,-0.001108374384226,-0.000000000000005,-0.012068965517206,2 -9081,9109,9111,9139,-0.047290640394349,-0.371428571428556,-0.053756157635705,-0.373214285714260,-0.041810344827860,-0.373214285714265,-0.048275862069216,-0.374999999999969,0.000000000000004,0.011822660098487,-0.003571428571412,0.001108374384226,0.003571428571413,-0.000862068965509,-0.000000000000005,-0.012068965517204,2 -9082,9110,9112,9140,-0.035467980295861,-0.371428571428561,-0.041810344827860,-0.373214285714265,-0.029864532020013,-0.373214285714270,-0.036206896552012,-0.374999999999974,0.000000000000004,0.011822660098488,-0.003571428571413,0.000862068965509,0.003571428571414,-0.000615763546792,-0.000000000000005,-0.012068965517206,2 -9083,9111,9113,9141,-0.023645320197372,-0.371428571428565,-0.029864532020013,-0.373214285714270,-0.017918719212165,-0.373214285714274,-0.024137931034806,-0.374999999999979,0.000000000000004,0.011822660098489,-0.003571428571414,0.000615763546792,0.003571428571415,-0.000369458128075,-0.000000000000005,-0.012068965517206,2 -9084,9112,9114,9142,-0.011822660098884,-0.371428571428569,-0.017918719212165,-0.373214285714274,-0.005972906404318,-0.373214285714279,-0.012068965517599,-0.374999999999984,0.000000000000004,0.011822660098489,-0.003571428571415,0.000369458128075,0.003571428571415,-0.000123152709357,-0.000000000000005,-0.012068965517206,2 -9085,9113,9115,9143,-0.000000000000379,-0.371428571428573,-0.005972906404318,-0.373214285714279,0.005972906403562,-0.373214285714284,-0.000000000000377,-0.374999999999989,0.000000000000004,0.011822660098521,-0.003571428571415,0.000123152709357,0.003571428571416,0.000123152709361,-0.000000000000005,-0.012068965517239,2 -9086,9114,9116,9144,0.011822660098159,-0.371428571428578,0.005972906403562,-0.373214285714284,0.017918719211477,-0.373214285714288,0.012068965516880,-0.374999999999994,0.000000000000004,0.011822660098555,-0.003571428571416,-0.000123152709361,0.003571428571417,0.000369458128080,-0.000000000000005,-0.012068965517274,2 -9087,9115,9117,9145,0.023645320196714,-0.371428571428582,0.017918719211477,-0.373214285714288,0.029864532019391,-0.373214285714293,0.024137931034154,-0.374999999999999,0.000000000000004,0.011822660098555,-0.003571428571417,-0.000369458128080,0.003571428571418,0.000615763546799,-0.000000000000005,-0.012068965517274,2 -9088,9116,9118,9146,0.035467980295269,-0.371428571428586,0.029864532019391,-0.373214285714293,0.041810344827304,-0.373214285714297,0.036206896551427,-0.375000000000004,0.000000000000004,0.011822660098554,-0.003571428571418,-0.000615763546799,0.003571428571419,0.000862068965518,-0.000000000000005,-0.012068965517273,2 -9089,9117,9119,9147,0.047290640393822,-0.371428571428590,0.041810344827304,-0.373214285714297,0.053756157635218,-0.373214285714302,0.048275862068700,-0.375000000000009,0.000000000000004,0.011822660098554,-0.003571428571419,-0.000862068965518,0.003571428571420,0.001108374384238,-0.000000000000005,-0.012068965517273,2 -9090,9118,9120,9148,0.059113300492376,-0.371428571428594,0.053756157635218,-0.373214285714302,0.065701970443132,-0.373214285714307,0.060344827585974,-0.375000000000014,0.000000000000004,0.011822660098555,-0.003571428571420,-0.001108374384238,0.003571428571421,0.001354679802957,-0.000000000000005,-0.012068965517274,2 -9091,9119,9121,9149,0.070935960590931,-0.371428571428599,0.065701970443132,-0.373214285714307,0.077647783251046,-0.373214285714311,0.072413793103247,-0.375000000000019,0.000000000000004,0.011822660098554,-0.003571428571421,-0.001354679802957,0.003571428571421,0.001600985221676,-0.000000000000005,-0.012068965517273,2 -9092,9120,9122,9150,0.082758620689485,-0.371428571428603,0.077647783251046,-0.373214285714311,0.089593596058959,-0.373214285714316,0.084482758620520,-0.375000000000024,0.000000000000004,0.011822660098554,-0.003571428571421,-0.001600985221676,0.003571428571422,0.001847290640395,-0.000000000000005,-0.012068965517272,2 -9093,9121,9123,9151,0.094581280788039,-0.371428571428607,0.089593596058959,-0.373214285714316,0.101539408866873,-0.373214285714321,0.096551724137793,-0.375000000000030,0.000000000000004,0.011822660098554,-0.003571428571422,-0.001847290640395,0.003571428571423,0.002093596059114,-0.000000000000005,-0.012068965517273,2 -9094,9122,9124,9152,0.106403940886593,-0.371428571428611,0.101539408866873,-0.373214285714321,0.113485221674786,-0.373214285714325,0.108620689655066,-0.375000000000035,0.000000000000004,0.011822660098554,-0.003571428571423,-0.002093596059114,0.003571428571424,0.002339901477832,-0.000000000000005,-0.012068965517273,2 -9095,9123,9125,9153,0.118226600985143,-0.371428571428616,0.113485221674786,-0.373214285714325,0.125431034482692,-0.373214285714330,0.120689655172335,-0.375000000000040,0.000000000000004,0.011822660098547,-0.003571428571424,-0.002339901477832,0.003571428571424,0.002586206896552,-0.000000000000005,-0.012068965517266,2 -9096,9124,9126,9154,0.130049261083692,-0.371428571428620,0.125431034482692,-0.373214285714330,0.137376847290604,-0.373214285714334,0.132758620689604,-0.375000000000045,0.000000000000004,0.011822660098552,-0.003571428571424,-0.002586206896552,0.003571428571425,0.002832512315271,-0.000000000000005,-0.012068965517271,2 -9097,9125,9127,9155,0.141871921182245,-0.371428571428624,0.137376847290604,-0.373214285714334,0.149322660098517,-0.373214285714339,0.144827586206875,-0.375000000000050,0.000000000000004,0.011822660098554,-0.003571428571425,-0.002832512315271,0.003571428571426,0.003078817733990,-0.000000000000005,-0.012068965517273,2 -9098,9126,9128,9156,0.153694581280800,-0.371428571428628,0.149322660098517,-0.373214285714339,0.161268472906432,-0.373214285714344,0.156896551724149,-0.375000000000055,0.000000000000004,0.011822660098556,-0.003571428571426,-0.003078817733990,0.003571428571427,0.003325123152709,-0.000000000000005,-0.012068965517275,2 -9099,9127,9157,9745,0.165517241379356,-0.371428571428632,0.161268472906432,-0.373214285714344,0.168965517241424,-0.375000000000060,0.173214285714348,-0.373214285714348,0.000000000000004,0.011822660098557,-0.003571428571427,-0.003325123152709,-0.000000000000005,-0.012068965517276,0.003571428571428,0.003571428571428,2 -8106,9100,9130,9158,-0.176785714285631,-0.376785714285631,-0.168965517241307,-0.374999999999919,-0.164593596059055,-0.376785714285636,-0.172413793103379,-0.378571428571349,-0.003571428571431,0.003571428571431,0.000000000000005,0.012068965517217,0.003571428571430,-0.003325123152713,-0.000000000000004,-0.012315270935935,2 -9101,9129,9131,9159,-0.156896551724096,-0.374999999999924,-0.164593596059055,-0.376785714285636,-0.152401477832490,-0.376785714285641,-0.160098522167450,-0.378571428571353,0.000000000000005,0.012068965517206,-0.003571428571430,0.003325123152713,0.003571428571429,-0.003078817733995,-0.000000000000004,-0.012315270935924,2 -9102,9130,9132,9160,-0.144827586206882,-0.374999999999929,-0.152401477832490,-0.376785714285641,-0.140209359605909,-0.376785714285645,-0.147783251231518,-0.378571428571357,0.000000000000005,0.012068965517222,-0.003571428571429,0.003078817733995,0.003571428571429,-0.002832512315277,-0.000000000000004,-0.012315270935940,2 -9103,9131,9133,9161,-0.132758620689663,-0.374999999999934,-0.140209359605909,-0.376785714285645,-0.128017241379335,-0.376785714285650,-0.135467980295581,-0.378571428571362,0.000000000000005,0.012068965517215,-0.003571428571429,0.002832512315277,0.003571428571428,-0.002586206896558,-0.000000000000004,-0.012315270935934,2 -9104,9132,9134,9162,-0.120689655172453,-0.374999999999939,-0.128017241379335,-0.376785714285650,-0.115825123152770,-0.376785714285654,-0.123152709359652,-0.378571428571366,0.000000000000005,0.012068965517206,-0.003571428571428,0.002586206896558,0.003571428571427,-0.002339901477841,-0.000000000000004,-0.012315270935924,2 -9105,9133,9135,9163,-0.108620689655246,-0.374999999999944,-0.115825123152770,-0.376785714285654,-0.103633004926205,-0.376785714285659,-0.110837438423728,-0.378571428571370,0.000000000000005,0.012068965517206,-0.003571428571427,0.002339901477841,0.003571428571426,-0.002093596059123,-0.000000000000004,-0.012315270935924,2 -9106,9134,9136,9164,-0.096551724138040,-0.374999999999949,-0.103633004926205,-0.376785714285659,-0.091440886699640,-0.376785714285664,-0.098522167487804,-0.378571428571374,0.000000000000005,0.012068965517206,-0.003571428571426,0.002093596059123,0.003571428571425,-0.001847290640405,-0.000000000000004,-0.012315270935924,2 -9107,9135,9137,9165,-0.084482758620834,-0.374999999999954,-0.091440886699640,-0.376785714285664,-0.079248768473074,-0.376785714285668,-0.086206896551880,-0.378571428571378,0.000000000000005,0.012068965517206,-0.003571428571425,0.001847290640405,0.003571428571424,-0.001600985221687,-0.000000000000004,-0.012315270935924,2 -9108,9136,9138,9166,-0.072413793103628,-0.374999999999959,-0.079248768473074,-0.376785714285668,-0.067056650246509,-0.376785714285673,-0.073891625615956,-0.378571428571382,0.000000000000005,0.012068965517206,-0.003571428571424,0.001600985221687,0.003571428571423,-0.001354679802969,-0.000000000000004,-0.012315270935924,2 -9109,9137,9139,9167,-0.060344827586422,-0.374999999999964,-0.067056650246509,-0.376785714285673,-0.054864532019944,-0.376785714285678,-0.061576354680032,-0.378571428571387,0.000000000000005,0.012068965517206,-0.003571428571423,0.001354679802969,0.003571428571422,-0.001108374384252,-0.000000000000004,-0.012315270935924,2 -9110,9138,9140,9168,-0.048275862069216,-0.374999999999969,-0.054864532019944,-0.376785714285678,-0.042672413793382,-0.376785714285682,-0.049261083744109,-0.378571428571391,0.000000000000005,0.012068965517204,-0.003571428571422,0.001108374384252,0.003571428571421,-0.000862068965535,-0.000000000000004,-0.012315270935921,2 -9111,9139,9141,9169,-0.036206896552012,-0.374999999999974,-0.042672413793382,-0.376785714285682,-0.030480295566817,-0.376785714285687,-0.036945812808187,-0.378571428571395,0.000000000000005,0.012068965517206,-0.003571428571421,0.000862068965535,0.003571428571421,-0.000615763546817,-0.000000000000004,-0.012315270935923,2 -9112,9140,9142,9170,-0.024137931034806,-0.374999999999979,-0.030480295566817,-0.376785714285687,-0.018288177340252,-0.376785714285692,-0.024630541872264,-0.378571428571399,0.000000000000005,0.012068965517206,-0.003571428571421,0.000615763546817,0.003571428571420,-0.000369458128099,-0.000000000000004,-0.012315270935924,2 -9113,9141,9143,9171,-0.012068965517599,-0.374999999999984,-0.018288177340252,-0.376785714285692,-0.006096059113687,-0.376785714285696,-0.012315270936340,-0.378571428571403,0.000000000000005,0.012068965517206,-0.003571428571420,0.000369458128099,0.003571428571419,-0.000123152709381,-0.000000000000004,-0.012315270935924,2 -9114,9142,9144,9172,-0.000000000000377,-0.374999999999989,-0.006096059113687,-0.376785714285696,0.006096059112912,-0.376785714285701,-0.000000000000399,-0.378571428571408,0.000000000000005,0.012068965517239,-0.003571428571419,0.000123152709381,0.003571428571418,0.000123152709337,-0.000000000000004,-0.012315270935958,2 -9115,9143,9145,9173,0.012068965516880,-0.374999999999994,0.006096059112912,-0.376785714285701,0.018288177339545,-0.376785714285705,0.012315270935576,-0.378571428571412,0.000000000000005,0.012068965517274,-0.003571428571418,-0.000123152709337,0.003571428571417,0.000369458128056,-0.000000000000004,-0.012315270935993,2 -9116,9144,9146,9174,0.024137931034154,-0.374999999999999,0.018288177339545,-0.376785714285705,0.030480295566178,-0.376785714285710,0.024630541871569,-0.378571428571416,0.000000000000005,0.012068965517274,-0.003571428571417,-0.000369458128056,0.003571428571416,0.000615763546775,-0.000000000000004,-0.012315270935993,2 -9117,9145,9147,9175,0.036206896551427,-0.375000000000004,0.030480295566178,-0.376785714285710,0.042672413792811,-0.376785714285715,0.036945812807562,-0.378571428571420,0.000000000000005,0.012068965517273,-0.003571428571416,-0.000615763546775,0.003571428571415,0.000862068965495,-0.000000000000004,-0.012315270935992,2 -9118,9146,9148,9176,0.048275862068700,-0.375000000000009,0.042672413792811,-0.376785714285715,0.054864532019444,-0.376785714285719,0.049261083743554,-0.378571428571424,0.000000000000005,0.012068965517273,-0.003571428571415,-0.000862068965495,0.003571428571415,0.001108374384214,-0.000000000000004,-0.012315270935992,2 -9119,9147,9149,9177,0.060344827585974,-0.375000000000014,0.054864532019444,-0.376785714285719,0.067056650246078,-0.376785714285724,0.061576354679547,-0.378571428571429,0.000000000000005,0.012068965517274,-0.003571428571415,-0.001108374384214,0.003571428571414,0.001354679802934,-0.000000000000004,-0.012315270935994,2 -9120,9148,9150,9178,0.072413793103247,-0.375000000000019,0.067056650246078,-0.376785714285724,0.079248768472711,-0.376785714285728,0.073891625615541,-0.378571428571433,0.000000000000005,0.012068965517273,-0.003571428571414,-0.001354679802934,0.003571428571413,0.001600985221653,-0.000000000000004,-0.012315270935993,2 -9121,9149,9151,9179,0.084482758620520,-0.375000000000024,0.079248768472711,-0.376785714285728,0.091440886699342,-0.376785714285733,0.086206896551533,-0.378571428571437,0.000000000000005,0.012068965517272,-0.003571428571413,-0.001600985221653,0.003571428571412,0.001847290640372,-0.000000000000004,-0.012315270935991,2 -9122,9150,9152,9180,0.096551724137793,-0.375000000000030,0.091440886699342,-0.376785714285733,0.103633004925975,-0.376785714285738,0.098522167487524,-0.378571428571441,0.000000000000005,0.012068965517273,-0.003571428571412,-0.001847290640372,0.003571428571411,0.002093596059091,-0.000000000000004,-0.012315270935992,2 -9123,9151,9153,9181,0.108620689655066,-0.375000000000035,0.103633004925975,-0.376785714285738,0.115825123152607,-0.376785714285742,0.110837438423516,-0.378571428571445,0.000000000000005,0.012068965517273,-0.003571428571411,-0.002093596059091,0.003571428571410,0.002339901477810,-0.000000000000004,-0.012315270935992,2 -9124,9152,9154,9182,0.120689655172335,-0.375000000000040,0.115825123152607,-0.376785714285742,0.128017241379233,-0.376785714285747,0.123152709359505,-0.378571428571450,0.000000000000005,0.012068965517266,-0.003571428571410,-0.002339901477810,0.003571428571410,0.002586206896529,-0.000000000000004,-0.012315270935986,2 -9125,9153,9155,9183,0.132758620689604,-0.375000000000045,0.128017241379233,-0.376785714285747,0.140209359605863,-0.376785714285752,0.135467980295493,-0.378571428571454,0.000000000000005,0.012068965517271,-0.003571428571410,-0.002586206896529,0.003571428571409,0.002832512315249,-0.000000000000004,-0.012315270935990,2 -9126,9154,9156,9184,0.144827586206875,-0.375000000000050,0.140209359605863,-0.376785714285752,0.152401477832495,-0.376785714285756,0.147783251231483,-0.378571428571458,0.000000000000005,0.012068965517273,-0.003571428571409,-0.002832512315249,0.003571428571408,0.003078817733967,-0.000000000000004,-0.012315270935992,2 -9127,9155,9157,9185,0.156896551724149,-0.375000000000055,0.152401477832495,-0.376785714285756,0.164593596059130,-0.376785714285761,0.160098522167476,-0.378571428571462,0.000000000000005,0.012068965517275,-0.003571428571408,-0.003078817733967,0.003571428571407,0.003325123152687,-0.000000000000004,-0.012315270935994,2 -9128,9156,9186,9686,0.168965517241424,-0.375000000000060,0.164593596059130,-0.376785714285761,0.172413793103471,-0.378571428571466,0.176785714285765,-0.376785714285765,0.000000000000005,0.012068965517276,-0.003571428571407,-0.003325123152687,-0.000000000000004,-0.012315270935995,0.003571428571406,0.003571428571406,2 -8105,9129,9159,9187,-0.180357142857065,-0.380357142857065,-0.172413793103379,-0.378571428571349,-0.167918719211771,-0.380357142857069,-0.175862068965456,-0.382142857142785,-0.003571428571436,0.003571428571436,0.000000000000004,0.012315270935935,0.003571428571435,-0.003325123152717,-0.000000000000004,-0.012561576354653,2 -9130,9158,9160,9188,-0.160098522167450,-0.378571428571353,-0.167918719211771,-0.380357142857069,-0.155480295566487,-0.380357142857073,-0.163300492610808,-0.382142857142788,0.000000000000004,0.012315270935924,-0.003571428571435,0.003325123152717,0.003571428571435,-0.003078817733999,-0.000000000000004,-0.012561576354643,2 -9131,9159,9161,9189,-0.147783251231518,-0.378571428571357,-0.155480295566487,-0.380357142857073,-0.143041871921188,-0.380357142857077,-0.150738916256157,-0.382142857142792,0.000000000000004,0.012315270935940,-0.003571428571435,0.003078817733999,0.003571428571434,-0.002832512315280,-0.000000000000004,-0.012561576354659,2 -9132,9160,9162,9190,-0.135467980295581,-0.378571428571362,-0.143041871921188,-0.380357142857077,-0.130603448275895,-0.380357142857081,-0.138177339901501,-0.382142857142796,0.000000000000004,0.012315270935934,-0.003571428571434,0.002832512315280,0.003571428571434,-0.002586206896561,-0.000000000000004,-0.012561576354653,2 -9133,9161,9163,9191,-0.123152709359652,-0.378571428571366,-0.130603448275895,-0.380357142857081,-0.118165024630611,-0.380357142857084,-0.125615763546854,-0.382142857142799,0.000000000000004,0.012315270935924,-0.003571428571434,0.002586206896561,0.003571428571434,-0.002339901477842,-0.000000000000004,-0.012561576354643,2 -9134,9162,9164,9192,-0.110837438423728,-0.378571428571370,-0.118165024630611,-0.380357142857084,-0.105726600985328,-0.380357142857089,-0.113054187192211,-0.382142857142803,0.000000000000004,0.012315270935924,-0.003571428571434,0.002339901477842,0.003571428571433,-0.002093596059124,-0.000000000000004,-0.012561576354643,2 -9135,9163,9165,9193,-0.098522167487804,-0.378571428571374,-0.105726600985328,-0.380357142857089,-0.093288177340045,-0.380357142857092,-0.100492610837568,-0.382142857142807,0.000000000000004,0.012315270935924,-0.003571428571433,0.002093596059124,0.003571428571433,-0.001847290640405,-0.000000000000003,-0.012561576354643,2 -9136,9164,9166,9194,-0.086206896551880,-0.378571428571378,-0.093288177340045,-0.380357142857092,-0.080849753694761,-0.380357142857096,-0.087931034482926,-0.382142857142811,0.000000000000004,0.012315270935924,-0.003571428571433,0.001847290640405,0.003571428571432,-0.001600985221686,-0.000000000000004,-0.012561576354643,2 -9137,9165,9167,9195,-0.073891625615956,-0.378571428571382,-0.080849753694761,-0.380357142857096,-0.068411330049478,-0.380357142857100,-0.075369458128283,-0.382142857142814,0.000000000000004,0.012315270935924,-0.003571428571432,0.001600985221686,0.003571428571432,-0.001354679802968,-0.000000000000004,-0.012561576354643,2 -9138,9166,9168,9196,-0.061576354680032,-0.378571428571387,-0.068411330049478,-0.380357142857100,-0.055972906404195,-0.380357142857104,-0.062807881773641,-0.382142857142818,0.000000000000004,0.012315270935924,-0.003571428571432,0.001354679802968,0.003571428571431,-0.001108374384249,-0.000000000000004,-0.012561576354643,2 -9139,9167,9169,9197,-0.049261083744109,-0.378571428571391,-0.055972906404195,-0.380357142857104,-0.043534482758915,-0.380357142857108,-0.050246305419000,-0.382142857142822,0.000000000000004,0.012315270935921,-0.003571428571431,0.001108374384249,0.003571428571431,-0.000862068965532,-0.000000000000004,-0.012561576354639,2 -9140,9168,9170,9198,-0.036945812808187,-0.378571428571395,-0.043534482758915,-0.380357142857108,-0.031096059113633,-0.380357142857112,-0.037684729064360,-0.382142857142825,0.000000000000004,0.012315270935923,-0.003571428571431,0.000862068965532,0.003571428571430,-0.000615763546813,-0.000000000000004,-0.012561576354641,2 -9141,9169,9171,9199,-0.024630541872264,-0.378571428571399,-0.031096059113633,-0.380357142857112,-0.018657635468349,-0.380357142857116,-0.025123152709718,-0.382142857142829,0.000000000000004,0.012315270935924,-0.003571428571430,0.000615763546813,0.003571428571430,-0.000369458128095,-0.000000000000004,-0.012561576354643,2 -9142,9170,9172,9200,-0.012315270936340,-0.378571428571403,-0.018657635468349,-0.380357142857116,-0.006219211823066,-0.380357142857120,-0.012561576355075,-0.382142857142833,0.000000000000004,0.012315270935924,-0.003571428571430,0.000369458128095,0.003571428571429,-0.000123152709376,-0.000000000000004,-0.012561576354643,2 -9143,9171,9173,9201,-0.000000000000399,-0.378571428571408,-0.006219211823066,-0.380357142857120,0.006219211822251,-0.380357142857124,-0.000000000000416,-0.382142857142837,0.000000000000004,0.012315270935958,-0.003571428571429,0.000123152709376,0.003571428571429,0.000123152709343,-0.000000000000004,-0.012561576354677,2 -9144,9172,9174,9202,0.012315270935576,-0.378571428571412,0.006219211822251,-0.380357142857124,0.018657635467604,-0.380357142857128,0.012561576354279,-0.382142857142840,0.000000000000004,0.012315270935993,-0.003571428571429,-0.000123152709343,0.003571428571428,0.000369458128063,-0.000000000000004,-0.012561576354712,2 -9145,9173,9175,9203,0.024630541871569,-0.378571428571416,0.018657635467604,-0.380357142857128,0.031096059112957,-0.380357142857132,0.025123152708992,-0.382142857142844,0.000000000000004,0.012315270935993,-0.003571428571428,-0.000369458128063,0.003571428571428,0.000615763546782,-0.000000000000004,-0.012561576354713,2 -9146,9174,9176,9204,0.036945812807562,-0.378571428571420,0.031096059112957,-0.380357142857132,0.043534482758309,-0.380357142857136,0.037684729063705,-0.382142857142848,0.000000000000004,0.012315270935992,-0.003571428571428,-0.000615763546782,0.003571428571427,0.000862068965503,-0.000000000000004,-0.012561576354712,2 -9147,9175,9177,9205,0.049261083743554,-0.378571428571424,0.043534482758309,-0.380357142857136,0.055972906403662,-0.380357142857140,0.050246305418417,-0.382142857142851,0.000000000000004,0.012315270935992,-0.003571428571427,-0.000862068965503,0.003571428571427,0.001108374384223,-0.000000000000004,-0.012561576354713,2 -9148,9176,9178,9206,0.061576354679547,-0.378571428571429,0.055972906403662,-0.380357142857140,0.068411330049016,-0.380357142857144,0.062807881773130,-0.382142857142855,0.000000000000004,0.012315270935994,-0.003571428571427,-0.001108374384223,0.003571428571426,0.001354679802943,-0.000000000000004,-0.012561576354714,2 -9149,9177,9179,9207,0.073891625615541,-0.378571428571433,0.068411330049016,-0.380357142857144,0.080849753694368,-0.380357142857148,0.075369458127844,-0.382142857142859,0.000000000000004,0.012315270935993,-0.003571428571426,-0.001354679802943,0.003571428571426,0.001600985221663,-0.000000000000004,-0.012561576354713,2 -9150,9178,9180,9208,0.086206896551533,-0.378571428571437,0.080849753694368,-0.380357142857148,0.093288177339719,-0.380357142857152,0.087931034482555,-0.382142857142863,0.000000000000004,0.012315270935991,-0.003571428571426,-0.001600985221663,0.003571428571425,0.001847290640382,-0.000000000000004,-0.012561576354711,2 -9151,9179,9181,9209,0.098522167487524,-0.378571428571441,0.093288177339719,-0.380357142857152,0.105726600985071,-0.380357142857156,0.100492610837266,-0.382142857142866,0.000000000000004,0.012315270935992,-0.003571428571425,-0.001847290640382,0.003571428571425,0.002093596059102,-0.000000000000004,-0.012561576354712,2 -9152,9180,9182,9210,0.110837438423516,-0.378571428571445,0.105726600985071,-0.380357142857156,0.118165024630422,-0.380357142857160,0.113054187191978,-0.382142857142870,0.000000000000004,0.012315270935992,-0.003571428571425,-0.002093596059102,0.003571428571424,0.002339901477822,-0.000000000000004,-0.012561576354711,2 -9153,9181,9183,9211,0.123152709359505,-0.378571428571450,0.118165024630422,-0.380357142857160,0.130603448275769,-0.380357142857164,0.125615763546687,-0.382142857142874,0.000000000000004,0.012315270935986,-0.003571428571424,-0.002339901477822,0.003571428571424,0.002586206896543,-0.000000000000004,-0.012561576354707,2 -9154,9182,9184,9212,0.135467980295493,-0.378571428571454,0.130603448275769,-0.380357142857164,0.143041871921119,-0.380357142857168,0.138177339901395,-0.382142857142877,0.000000000000004,0.012315270935990,-0.003571428571424,-0.002586206896543,0.003571428571423,0.002832512315262,-0.000000000000004,-0.012561576354710,2 -9155,9183,9185,9213,0.147783251231483,-0.378571428571458,0.143041871921119,-0.380357142857168,0.155480295566470,-0.380357142857172,0.150738916256105,-0.382142857142881,0.000000000000004,0.012315270935992,-0.003571428571423,-0.002832512315262,0.003571428571423,0.003078817733982,-0.000000000000004,-0.012561576354711,2 -9156,9184,9186,9214,0.160098522167476,-0.378571428571462,0.155480295566470,-0.380357142857172,0.167918719211824,-0.380357142857175,0.163300492610818,-0.382142857142885,0.000000000000004,0.012315270935994,-0.003571428571423,-0.003078817733982,0.003571428571423,0.003325123152702,-0.000000000000004,-0.012561576354714,2 -9157,9185,9215,9627,0.172413793103471,-0.378571428571466,0.167918719211824,-0.380357142857175,0.175862068965533,-0.382142857142889,0.180357142857179,-0.380357142857179,0.000000000000004,0.012315270935995,-0.003571428571423,-0.003325123152702,-0.000000000000004,-0.012561576354715,0.003571428571422,0.003571428571422,2 -8104,9158,9188,9216,-0.183928571428507,-0.383928571428507,-0.175862068965456,-0.382142857142785,-0.171243842364494,-0.383928571428511,-0.179310344827545,-0.385714285714233,-0.003571428571449,0.003571428571449,0.000000000000004,0.012561576354653,0.003571428571448,-0.003325123152729,-0.000000000000003,-0.012807881773373,2 -9159,9187,9189,9217,-0.163300492610808,-0.382142857142788,-0.171243842364494,-0.383928571428511,-0.158559113300492,-0.383928571428514,-0.166502463054178,-0.385714285714236,0.000000000000004,0.012561576354643,-0.003571428571448,0.003325123152729,0.003571428571448,-0.003078817734010,-0.000000000000003,-0.012807881773362,2 -9160,9188,9190,9218,-0.150738916256157,-0.382142857142792,-0.158559113300492,-0.383928571428514,-0.145874384236473,-0.383928571428517,-0.153694581280807,-0.385714285714239,0.000000000000004,0.012561576354659,-0.003571428571448,0.003078817734010,0.003571428571447,-0.002832512315290,-0.000000000000003,-0.012807881773379,2 -9161,9189,9191,9219,-0.138177339901501,-0.382142857142796,-0.145874384236473,-0.383928571428517,-0.133189655172460,-0.383928571428521,-0.140886699507431,-0.385714285714243,0.000000000000004,0.012561576354653,-0.003571428571447,0.002832512315290,0.003571428571447,-0.002586206896570,-0.000000000000003,-0.012807881773373,2 -9162,9190,9192,9220,-0.125615763546854,-0.382142857142799,-0.133189655172460,-0.383928571428521,-0.120504926108458,-0.383928571428524,-0.128078817734064,-0.385714285714246,0.000000000000004,0.012561576354643,-0.003571428571447,0.002586206896570,0.003571428571446,-0.002339901477851,-0.000000000000003,-0.012807881773362,2 -9163,9191,9193,9221,-0.113054187192211,-0.382142857142803,-0.120504926108458,-0.383928571428524,-0.107820197044455,-0.383928571428528,-0.115270935960702,-0.385714285714249,0.000000000000004,0.012561576354643,-0.003571428571446,0.002339901477851,0.003571428571445,-0.002093596059131,-0.000000000000003,-0.012807881773362,2 -9164,9192,9194,9222,-0.100492610837568,-0.382142857142807,-0.107820197044455,-0.383928571428528,-0.095135467980453,-0.383928571428531,-0.102463054187340,-0.385714285714252,0.000000000000003,0.012561576354643,-0.003571428571445,0.002093596059131,0.003571428571445,-0.001847290640412,-0.000000000000003,-0.012807881773362,2 -9165,9193,9195,9223,-0.087931034482926,-0.382142857142811,-0.095135467980453,-0.383928571428531,-0.082450738916451,-0.383928571428535,-0.089655172413978,-0.385714285714255,0.000000000000004,0.012561576354643,-0.003571428571445,0.001847290640412,0.003571428571445,-0.001600985221692,-0.000000000000003,-0.012807881773362,2 -9166,9194,9196,9224,-0.075369458128283,-0.382142857142814,-0.082450738916451,-0.383928571428535,-0.069766009852448,-0.383928571428538,-0.076847290640616,-0.385714285714259,0.000000000000004,0.012561576354643,-0.003571428571445,0.001600985221692,0.003571428571444,-0.001354679802973,-0.000000000000003,-0.012807881773362,2 -9167,9195,9197,9225,-0.062807881773641,-0.382142857142818,-0.069766009852448,-0.383928571428538,-0.057081280788446,-0.383928571428542,-0.064039408867254,-0.385714285714262,0.000000000000004,0.012561576354643,-0.003571428571444,0.001354679802973,0.003571428571444,-0.001108374384254,-0.000000000000003,-0.012807881773362,2 -9168,9196,9198,9226,-0.050246305419000,-0.382142857142822,-0.057081280788446,-0.383928571428542,-0.044396551724448,-0.383928571428545,-0.051231527093894,-0.385714285714265,0.000000000000004,0.012561576354639,-0.003571428571444,0.001108374384254,0.003571428571443,-0.000862068965535,-0.000000000000003,-0.012807881773357,2 -9169,9197,9199,9227,-0.037684729064360,-0.382142857142825,-0.044396551724448,-0.383928571428545,-0.031711822660447,-0.383928571428549,-0.038423645320536,-0.385714285714268,0.000000000000004,0.012561576354641,-0.003571428571443,0.000862068965535,0.003571428571442,-0.000615763546816,-0.000000000000003,-0.012807881773361,2 -9170,9198,9200,9228,-0.025123152709718,-0.382142857142829,-0.031711822660447,-0.383928571428549,-0.019027093596445,-0.383928571428552,-0.025615763547174,-0.385714285714271,0.000000000000004,0.012561576354643,-0.003571428571442,0.000615763546816,0.003571428571442,-0.000369458128097,-0.000000000000003,-0.012807881773362,2 -9171,9199,9201,9229,-0.012561576355075,-0.382142857142833,-0.019027093596445,-0.383928571428552,-0.006342364532443,-0.383928571428555,-0.012807881773812,-0.385714285714275,0.000000000000004,0.012561576354643,-0.003571428571442,0.000369458128097,0.003571428571441,-0.000123152709377,-0.000000000000003,-0.012807881773362,2 -9172,9200,9202,9230,-0.000000000000416,-0.382142857142837,-0.006342364532443,-0.383928571428555,0.006342364531594,-0.383928571428559,-0.000000000000433,-0.385714285714278,0.000000000000004,0.012561576354677,-0.003571428571441,0.000123152709377,0.003571428571441,0.000123152709343,-0.000000000000003,-0.012807881773397,2 -9173,9201,9203,9231,0.012561576354279,-0.382142857142840,0.006342364531594,-0.383928571428559,0.019027093595667,-0.383928571428562,0.012807881772982,-0.385714285714281,0.000000000000004,0.012561576354712,-0.003571428571441,-0.000123152709343,0.003571428571440,0.000369458128063,-0.000000000000003,-0.012807881773433,2 -9174,9202,9204,9232,0.025123152708992,-0.382142857142844,0.019027093595667,-0.383928571428562,0.031711822659740,-0.383928571428566,0.025615763546416,-0.385714285714284,0.000000000000004,0.012561576354713,-0.003571428571440,-0.000369458128063,0.003571428571440,0.000615763546784,-0.000000000000003,-0.012807881773434,2 -9175,9203,9205,9233,0.037684729063705,-0.382142857142848,0.031711822659740,-0.383928571428566,0.044396551723813,-0.383928571428569,0.038423645319849,-0.385714285714287,0.000000000000004,0.012561576354712,-0.003571428571440,-0.000615763546784,0.003571428571439,0.000862068965505,-0.000000000000003,-0.012807881773433,2 -9176,9204,9206,9234,0.050246305418417,-0.382142857142851,0.044396551723813,-0.383928571428569,0.057081280787886,-0.383928571428573,0.051231527093282,-0.385714285714291,0.000000000000004,0.012561576354713,-0.003571428571439,-0.000862068965505,0.003571428571439,0.001108374384226,-0.000000000000003,-0.012807881773434,2 -9177,9205,9207,9235,0.062807881773130,-0.382142857142855,0.057081280787886,-0.383928571428573,0.069766009851961,-0.383928571428576,0.064039408866717,-0.385714285714294,0.000000000000004,0.012561576354714,-0.003571428571439,-0.001108374384226,0.003571428571438,0.001354679802947,-0.000000000000003,-0.012807881773435,2 -9178,9206,9208,9236,0.075369458127844,-0.382142857142859,0.069766009851961,-0.383928571428576,0.082450738916034,-0.383928571428580,0.076847290640151,-0.385714285714297,0.000000000000004,0.012561576354713,-0.003571428571438,-0.001354679802947,0.003571428571438,0.001600985221668,-0.000000000000003,-0.012807881773433,2 -9179,9207,9209,9237,0.087931034482555,-0.382142857142863,0.082450738916034,-0.383928571428580,0.095135467980105,-0.383928571428583,0.089655172413583,-0.385714285714300,0.000000000000004,0.012561576354711,-0.003571428571438,-0.001600985221668,0.003571428571437,0.001847290640388,-0.000000000000003,-0.012807881773431,2 -9180,9208,9210,9238,0.100492610837266,-0.382142857142866,0.095135467980105,-0.383928571428583,0.107820197044177,-0.383928571428587,0.102463054187015,-0.385714285714303,0.000000000000004,0.012561576354712,-0.003571428571437,-0.001847290640388,0.003571428571437,0.002093596059109,-0.000000000000003,-0.012807881773432,2 -9181,9209,9211,9239,0.113054187191978,-0.382142857142870,0.107820197044177,-0.383928571428587,0.120504926108248,-0.383928571428590,0.115270935960447,-0.385714285714306,0.000000000000004,0.012561576354711,-0.003571428571437,-0.002093596059109,0.003571428571436,0.002339901477829,-0.000000000000003,-0.012807881773432,2 -9182,9210,9212,9240,0.125615763546687,-0.382142857142874,0.120504926108248,-0.383928571428590,0.133189655172315,-0.383928571428593,0.128078817733877,-0.385714285714310,0.000000000000004,0.012561576354707,-0.003571428571436,-0.002339901477829,0.003571428571436,0.002586206896551,-0.000000000000003,-0.012807881773428,2 -9183,9211,9213,9241,0.138177339901395,-0.382142857142877,0.133189655172315,-0.383928571428593,0.145874384236386,-0.383928571428597,0.140886699507306,-0.385714285714313,0.000000000000004,0.012561576354710,-0.003571428571436,-0.002586206896551,0.003571428571435,0.002832512315271,-0.000000000000003,-0.012807881773431,2 -9184,9212,9214,9242,0.150738916256105,-0.382142857142881,0.145874384236386,-0.383928571428597,0.158559113300457,-0.383928571428600,0.153694581280737,-0.385714285714316,0.000000000000004,0.012561576354711,-0.003571428571435,-0.002832512315271,0.003571428571435,0.003078817733992,-0.000000000000003,-0.012807881773432,2 -9185,9213,9215,9243,0.163300492610818,-0.382142857142885,0.158559113300457,-0.383928571428600,0.171243842364531,-0.383928571428604,0.166502463054170,-0.385714285714319,0.000000000000004,0.012561576354714,-0.003571428571435,-0.003078817733992,0.003571428571434,0.003325123152713,-0.000000000000003,-0.012807881773435,2 -9186,9214,9244,9568,0.175862068965533,-0.382142857142889,0.171243842364531,-0.383928571428604,0.179310344827606,-0.385714285714322,0.183928571428607,-0.383928571428607,0.000000000000004,0.012561576354715,-0.003571428571434,-0.003325123152713,-0.000000000000003,-0.012807881773436,0.003571428571434,0.003571428571434,2 -8103,9187,9217,9245,-0.187499999999963,-0.387499999999963,-0.179310344827545,-0.385714285714233,-0.174568965517230,-0.387499999999965,-0.182758620689648,-0.389285714285694,-0.003571428571462,0.003571428571462,0.000000000000003,0.012807881773373,0.003571428571460,-0.003325123152743,-0.000000000000001,-0.013054187192092,2 -9188,9216,9218,9246,-0.166502463054178,-0.385714285714236,-0.174568965517230,-0.387499999999965,-0.161637931034509,-0.387499999999967,-0.169704433497562,-0.389285714285695,0.000000000000003,0.012807881773362,-0.003571428571460,0.003325123152743,0.003571428571458,-0.003078817734024,-0.000000000000001,-0.013054187192081,2 -9189,9217,9219,9247,-0.153694581280807,-0.385714285714239,-0.161637931034509,-0.387499999999967,-0.148706896551771,-0.387499999999969,-0.156650246305472,-0.389285714285697,0.000000000000003,0.012807881773379,-0.003571428571458,0.003078817734024,0.003571428571457,-0.002832512315305,-0.000000000000001,-0.013054187192098,2 -9190,9218,9220,9248,-0.140886699507431,-0.385714285714243,-0.148706896551771,-0.387499999999969,-0.135775862069038,-0.387499999999972,-0.143596059113377,-0.389285714285698,0.000000000000003,0.012807881773373,-0.003571428571457,0.002832512315305,0.003571428571454,-0.002586206896585,-0.000000000000001,-0.013054187192093,2 -9191,9219,9221,9249,-0.128078817734064,-0.385714285714246,-0.135775862069038,-0.387499999999972,-0.122844827586316,-0.387499999999974,-0.130541871921290,-0.389285714285699,0.000000000000003,0.012807881773362,-0.003571428571454,0.002586206896585,0.003571428571453,-0.002339901477867,-0.000000000000001,-0.013054187192081,2 -9192,9220,9222,9250,-0.115270935960702,-0.385714285714249,-0.122844827586316,-0.387499999999974,-0.109913793103595,-0.387499999999976,-0.117487684729209,-0.389285714285701,0.000000000000003,0.012807881773362,-0.003571428571453,0.002339901477867,0.003571428571451,-0.002093596059148,-0.000000000000001,-0.013054187192081,2 -9193,9221,9223,9251,-0.102463054187340,-0.385714285714252,-0.109913793103595,-0.387499999999976,-0.096982758620873,-0.387499999999978,-0.104433497537128,-0.389285714285702,0.000000000000003,0.012807881773362,-0.003571428571451,0.002093596059148,0.003571428571449,-0.001847290640429,-0.000000000000001,-0.013054187192081,2 -9194,9222,9224,9252,-0.089655172413978,-0.385714285714255,-0.096982758620873,-0.387499999999978,-0.084051724138152,-0.387499999999981,-0.091379310345047,-0.389285714285703,0.000000000000003,0.012807881773362,-0.003571428571449,0.001847290640429,0.003571428571447,-0.001600985221710,-0.000000000000001,-0.013054187192081,2 -9195,9223,9225,9253,-0.076847290640616,-0.385714285714259,-0.084051724138152,-0.387499999999981,-0.071120689655430,-0.387499999999983,-0.078325123152966,-0.389285714285704,0.000000000000003,0.012807881773362,-0.003571428571447,0.001600985221710,0.003571428571445,-0.001354679802991,-0.000000000000001,-0.013054187192081,2 -9196,9224,9226,9254,-0.064039408867254,-0.385714285714262,-0.071120689655430,-0.387499999999983,-0.058189655172709,-0.387499999999985,-0.065270935960885,-0.389285714285706,0.000000000000003,0.012807881773362,-0.003571428571445,0.001354679802991,0.003571428571443,-0.001108374384272,-0.000000000000001,-0.013054187192081,2 -9197,9225,9227,9255,-0.051231527093894,-0.385714285714265,-0.058189655172709,-0.387499999999985,-0.045258620689993,-0.387499999999987,-0.052216748768807,-0.389285714285707,0.000000000000003,0.012807881773357,-0.003571428571443,0.001108374384272,0.003571428571441,-0.000862068965554,-0.000000000000001,-0.013054187192075,2 -9198,9226,9228,9256,-0.038423645320536,-0.385714285714268,-0.045258620689993,-0.387499999999987,-0.032327586207273,-0.387499999999989,-0.039162561576730,-0.389285714285708,0.000000000000003,0.012807881773361,-0.003571428571441,0.000862068965554,0.003571428571439,-0.000615763546835,-0.000000000000001,-0.013054187192079,2 -9199,9227,9229,9257,-0.025615763547174,-0.385714285714271,-0.032327586207273,-0.387499999999989,-0.019396551724552,-0.387499999999992,-0.026108374384650,-0.389285714285709,0.000000000000003,0.012807881773362,-0.003571428571439,0.000615763546835,0.003571428571437,-0.000369458128116,-0.000000000000001,-0.013054187192081,2 -9200,9228,9230,9258,-0.012807881773812,-0.385714285714275,-0.019396551724552,-0.387499999999992,-0.006465517241830,-0.387499999999994,-0.013054187192569,-0.389285714285711,0.000000000000003,0.012807881773362,-0.003571428571437,0.000369458128116,0.003571428571435,-0.000123152709398,-0.000000000000001,-0.013054187192081,2 -9201,9229,9231,9259,-0.000000000000433,-0.385714285714278,-0.006465517241830,-0.387499999999994,0.006465517240926,-0.387499999999996,-0.000000000000471,-0.389285714285712,0.000000000000003,0.012807881773397,-0.003571428571435,0.000123152709398,0.003571428571433,0.000123152709322,-0.000000000000001,-0.013054187192116,2 -9202,9230,9232,9260,0.012807881772982,-0.385714285714281,0.006465517240926,-0.387499999999996,0.019396551723720,-0.387499999999998,0.013054187191664,-0.389285714285713,0.000000000000003,0.012807881773433,-0.003571428571433,-0.000123152709322,0.003571428571431,0.000369458128042,-0.000000000000001,-0.013054187192153,2 -9203,9231,9233,9261,0.025615763546416,-0.385714285714284,0.019396551723720,-0.387499999999998,0.032327586206514,-0.387500000000001,0.026108374383818,-0.389285714285714,0.000000000000003,0.012807881773434,-0.003571428571431,-0.000369458128042,0.003571428571429,0.000615763546762,-0.000000000000001,-0.013054187192154,2 -9204,9232,9234,9262,0.038423645319849,-0.385714285714287,0.032327586206514,-0.387500000000001,0.045258620689307,-0.387500000000003,0.039162561575971,-0.389285714285716,0.000000000000003,0.012807881773433,-0.003571428571429,-0.000615763546762,0.003571428571427,0.000862068965483,-0.000000000000001,-0.013054187192153,2 -9205,9233,9235,9263,0.051231527093282,-0.385714285714291,0.045258620689307,-0.387500000000003,0.058189655172101,-0.387500000000005,0.052216748768125,-0.389285714285717,0.000000000000003,0.012807881773434,-0.003571428571427,-0.000862068965483,0.003571428571426,0.001108374384203,-0.000000000000001,-0.013054187192154,2 -9206,9234,9236,9264,0.064039408866717,-0.385714285714294,0.058189655172101,-0.387500000000005,0.071120689654896,-0.387500000000007,0.065270935960280,-0.389285714285718,0.000000000000003,0.012807881773435,-0.003571428571426,-0.001108374384203,0.003571428571424,0.001354679802924,-0.000000000000001,-0.013054187192156,2 -9207,9235,9237,9265,0.076847290640151,-0.385714285714297,0.071120689654896,-0.387500000000007,0.084051724137690,-0.387500000000009,0.078325123152435,-0.389285714285719,0.000000000000003,0.012807881773433,-0.003571428571424,-0.001354679802924,0.003571428571421,0.001600985221644,-0.000000000000001,-0.013054187192154,2 -9208,9236,9238,9266,0.089655172413583,-0.385714285714300,0.084051724137690,-0.387500000000009,0.096982758620481,-0.387500000000012,0.091379310344587,-0.389285714285721,0.000000000000003,0.012807881773431,-0.003571428571421,-0.001600985221644,0.003571428571420,0.001847290640364,-0.000000000000001,-0.013054187192151,2 -9209,9237,9239,9267,0.102463054187015,-0.385714285714303,0.096982758620481,-0.387500000000012,0.109913793103273,-0.387500000000014,0.104433497536739,-0.389285714285722,0.000000000000003,0.012807881773432,-0.003571428571420,-0.001847290640364,0.003571428571418,0.002093596059084,-0.000000000000001,-0.013054187192152,2 -9210,9238,9240,9268,0.115270935960447,-0.385714285714306,0.109913793103273,-0.387500000000014,0.122844827586065,-0.387500000000016,0.117487684728891,-0.389285714285723,0.000000000000003,0.012807881773432,-0.003571428571418,-0.002093596059084,0.003571428571416,0.002339901477804,-0.000000000000001,-0.013054187192152,2 -9211,9239,9241,9269,0.128078817733877,-0.385714285714310,0.122844827586065,-0.387500000000016,0.135775862068853,-0.387500000000018,0.130541871921041,-0.389285714285725,0.000000000000003,0.012807881773428,-0.003571428571416,-0.002339901477804,0.003571428571414,0.002586206896525,-0.000000000000001,-0.013054187192149,2 -9212,9240,9242,9270,0.140886699507306,-0.385714285714313,0.135775862068853,-0.387500000000018,0.148706896551644,-0.387500000000020,0.143596059113191,-0.389285714285726,0.000000000000003,0.012807881773431,-0.003571428571414,-0.002586206896525,0.003571428571412,0.002832512315245,-0.000000000000001,-0.013054187192151,2 -9213,9241,9243,9271,0.153694581280737,-0.385714285714316,0.148706896551644,-0.387500000000020,0.161637931034436,-0.387500000000023,0.156650246305342,-0.389285714285727,0.000000000000003,0.012807881773432,-0.003571428571412,-0.002832512315245,0.003571428571410,0.003078817733965,-0.000000000000001,-0.013054187192152,2 -9214,9242,9244,9272,0.166502463054170,-0.385714285714319,0.161637931034436,-0.387500000000023,0.174568965517231,-0.387500000000025,0.169704433497496,-0.389285714285728,0.000000000000003,0.012807881773435,-0.003571428571410,-0.003078817733965,0.003571428571408,0.003325123152686,-0.000000000000001,-0.013054187192155,2 -9215,9243,9273,9509,0.179310344827606,-0.385714285714322,0.174568965517231,-0.387500000000025,0.182758620689652,-0.389285714285730,0.187500000000027,-0.387500000000027,0.000000000000003,0.012807881773436,-0.003571428571408,-0.003325123152686,-0.000000000000001,-0.013054187192157,0.003571428571406,0.003571428571406,2 -8102,9216,9246,9274,-0.191071428571419,-0.391071428571419,-0.182758620689648,-0.389285714285694,-0.177894088669968,-0.391071428571420,-0.186206896551739,-0.392857142857145,-0.003571428571451,0.003571428571451,0.000000000000001,0.013054187192092,0.003571428571450,-0.003325123152732,-0.000000000000000,-0.013300492610811,2 -9217,9245,9247,9275,-0.169704433497562,-0.389285714285695,-0.177894088669968,-0.391071428571420,-0.164716748768527,-0.391071428571421,-0.172906403940934,-0.392857142857145,0.000000000000001,0.013054187192081,-0.003571428571450,0.003325123152732,0.003571428571450,-0.003078817734013,-0.000000000000000,-0.013300492610800,2 -9218,9246,9248,9276,-0.156650246305472,-0.389285714285697,-0.164716748768527,-0.391071428571421,-0.151539408867070,-0.391071428571422,-0.159605911330125,-0.392857142857146,0.000000000000001,0.013054187192098,-0.003571428571450,0.003078817734013,0.003571428571448,-0.002832512315293,-0.000000000000000,-0.013300492610817,2 -9219,9247,9249,9277,-0.143596059113377,-0.389285714285698,-0.151539408867070,-0.391071428571422,-0.138362068965617,-0.391071428571423,-0.146305418719310,-0.392857142857146,0.000000000000001,0.013054187192093,-0.003571428571448,0.002832512315293,0.003571428571448,-0.002586206896573,-0.000000000000000,-0.013300492610813,2 -9220,9248,9250,9278,-0.130541871921290,-0.389285714285699,-0.138362068965617,-0.391071428571423,-0.125184729064176,-0.391071428571423,-0.133004926108503,-0.392857142857147,0.000000000000001,0.013054187192081,-0.003571428571448,0.002586206896573,0.003571428571447,-0.002339901477854,-0.000000000000000,-0.013300492610800,2 -9221,9249,9251,9279,-0.117487684729209,-0.389285714285701,-0.125184729064176,-0.391071428571423,-0.112007389162736,-0.391071428571424,-0.119704433497703,-0.392857142857147,0.000000000000001,0.013054187192081,-0.003571428571447,0.002339901477854,0.003571428571446,-0.002093596059135,-0.000000000000000,-0.013300492610800,2 -9222,9250,9252,9280,-0.104433497537128,-0.389285714285702,-0.112007389162736,-0.391071428571424,-0.098830049261295,-0.391071428571425,-0.106403940886903,-0.392857142857147,0.000000000000001,0.013054187192081,-0.003571428571446,0.002093596059135,0.003571428571445,-0.001847290640415,-0.000000000000000,-0.013300492610800,2 -9223,9251,9253,9281,-0.091379310345047,-0.389285714285703,-0.098830049261295,-0.391071428571425,-0.085652709359855,-0.391071428571426,-0.093103448276103,-0.392857142857148,0.000000000000001,0.013054187192081,-0.003571428571445,0.001847290640415,0.003571428571444,-0.001600985221696,-0.000000000000000,-0.013300492610800,2 -9224,9252,9254,9282,-0.078325123152966,-0.389285714285704,-0.085652709359855,-0.391071428571426,-0.072475369458414,-0.391071428571427,-0.079802955665303,-0.392857142857148,0.000000000000001,0.013054187192081,-0.003571428571444,0.001600985221696,0.003571428571443,-0.001354679802977,-0.000000000000000,-0.013300492610800,2 -9225,9253,9255,9283,-0.065270935960885,-0.389285714285706,-0.072475369458414,-0.391071428571427,-0.059298029556974,-0.391071428571428,-0.066502463054503,-0.392857142857149,0.000000000000001,0.013054187192081,-0.003571428571443,0.001354679802977,0.003571428571443,-0.001108374384258,-0.000000000000000,-0.013300492610800,2 -9226,9254,9256,9284,-0.052216748768807,-0.389285714285707,-0.059298029556974,-0.391071428571428,-0.046120689655540,-0.391071428571428,-0.053201970443706,-0.392857142857149,0.000000000000001,0.013054187192075,-0.003571428571443,0.001108374384258,0.003571428571442,-0.000862068965539,-0.000000000000000,-0.013300492610793,2 -9227,9255,9257,9285,-0.039162561576730,-0.389285714285708,-0.046120689655540,-0.391071428571428,-0.032943349754101,-0.391071428571429,-0.039901477832910,-0.392857142857149,0.000000000000001,0.013054187192079,-0.003571428571442,0.000862068965539,0.003571428571441,-0.000615763546821,-0.000000000000000,-0.013300492610798,2 -9228,9256,9258,9286,-0.026108374384650,-0.389285714285709,-0.032943349754101,-0.391071428571429,-0.019766009852660,-0.391071428571430,-0.026600985222111,-0.392857142857150,0.000000000000001,0.013054187192081,-0.003571428571441,0.000615763546821,0.003571428571440,-0.000369458128101,-0.000000000000000,-0.013300492610800,2 -9229,9257,9259,9287,-0.013054187192569,-0.389285714285711,-0.019766009852660,-0.391071428571430,-0.006588669951220,-0.391071428571431,-0.013300492611311,-0.392857142857150,0.000000000000001,0.013054187192081,-0.003571428571440,0.000369458128101,0.003571428571439,-0.000123152709382,-0.000000000000000,-0.013300492610800,2 -9230,9258,9260,9288,-0.000000000000471,-0.389285714285712,-0.006588669951220,-0.391071428571431,0.006588669950256,-0.391071428571432,-0.000000000000493,-0.392857142857151,0.000000000000001,0.013054187192116,-0.003571428571439,0.000123152709382,0.003571428571438,0.000123152709338,-0.000000000000000,-0.013300492610836,2 -9231,9259,9261,9289,0.013054187191664,-0.389285714285713,0.006588669950256,-0.391071428571432,0.019766009851770,-0.391071428571433,0.013300492610362,-0.392857142857151,0.000000000000001,0.013054187192153,-0.003571428571438,-0.000123152709338,0.003571428571437,0.000369458128058,-0.000000000000000,-0.013300492610874,2 -9232,9260,9262,9290,0.026108374383818,-0.389285714285714,0.019766009851770,-0.391071428571433,0.032943349753284,-0.391071428571433,0.026600985221236,-0.392857142857151,0.000000000000001,0.013054187192154,-0.003571428571437,-0.000369458128058,0.003571428571436,0.000615763546779,-0.000000000000000,-0.013300492610875,2 -9233,9261,9263,9291,0.039162561575971,-0.389285714285716,0.032943349753284,-0.391071428571433,0.046120689654798,-0.391071428571434,0.039901477832111,-0.392857142857152,0.000000000000001,0.013054187192153,-0.003571428571436,-0.000615763546779,0.003571428571436,0.000862068965499,-0.000000000000000,-0.013300492610874,2 -9234,9262,9264,9292,0.052216748768125,-0.389285714285717,0.046120689654798,-0.391071428571434,0.059298029556312,-0.391071428571435,0.053201970442985,-0.392857142857152,0.000000000000001,0.013054187192154,-0.003571428571436,-0.000862068965499,0.003571428571435,0.001108374384220,-0.000000000000000,-0.013300492610875,2 -9235,9263,9265,9293,0.065270935960280,-0.389285714285718,0.059298029556312,-0.391071428571435,0.072475369457829,-0.391071428571436,0.066502463053861,-0.392857142857153,0.000000000000001,0.013054187192156,-0.003571428571435,-0.001108374384220,0.003571428571434,0.001354679802941,-0.000000000000000,-0.013300492610877,2 -9236,9264,9266,9294,0.078325123152435,-0.389285714285719,0.072475369457829,-0.391071428571436,0.085652709359343,-0.391071428571437,0.079802955664737,-0.392857142857153,0.000000000000001,0.013054187192154,-0.003571428571434,-0.001354679802941,0.003571428571433,0.001600985221662,-0.000000000000000,-0.013300492610874,2 -9237,9265,9267,9295,0.091379310344587,-0.389285714285721,0.085652709359343,-0.391071428571437,0.098830049260854,-0.391071428571438,0.093103448275609,-0.392857142857153,0.000000000000001,0.013054187192151,-0.003571428571433,-0.001600985221662,0.003571428571432,0.001847290640382,-0.000000000000000,-0.013300492610871,2 -9238,9266,9268,9296,0.104433497536739,-0.389285714285722,0.098830049260854,-0.391071428571438,0.112007389162366,-0.391071428571438,0.106403940886481,-0.392857142857154,0.000000000000001,0.013054187192152,-0.003571428571432,-0.001847290640382,0.003571428571431,0.002093596059102,-0.000000000000000,-0.013300492610873,2 -9239,9267,9269,9297,0.117487684728891,-0.389285714285723,0.112007389162366,-0.391071428571438,0.125184729063878,-0.391071428571439,0.119704433497354,-0.392857142857154,0.000000000000001,0.013054187192152,-0.003571428571431,-0.002093596059102,0.003571428571430,0.002339901477823,-0.000000000000000,-0.013300492610872,2 -9240,9268,9270,9298,0.130541871921041,-0.389285714285725,0.125184729063878,-0.391071428571439,0.138362068965388,-0.391071428571440,0.133004926108225,-0.392857142857155,0.000000000000001,0.013054187192149,-0.003571428571430,-0.002339901477823,0.003571428571430,0.002586206896544,-0.000000000000000,-0.013300492610870,2 -9241,9269,9271,9299,0.143596059113191,-0.389285714285726,0.138362068965388,-0.391071428571440,0.151539408866899,-0.391071428571441,0.146305418719095,-0.392857142857155,0.000000000000001,0.013054187192151,-0.003571428571430,-0.002586206896544,0.003571428571429,0.002832512315265,-0.000000000000000,-0.013300492610871,2 -9242,9270,9272,9300,0.156650246305342,-0.389285714285727,0.151539408866899,-0.391071428571441,0.164716748768411,-0.391071428571442,0.159605911329967,-0.392857142857155,0.000000000000001,0.013054187192152,-0.003571428571429,-0.002832512315265,0.003571428571428,0.003078817733985,-0.000000000000000,-0.013300492610872,2 -9243,9271,9273,9301,0.169704433497496,-0.389285714285728,0.164716748768411,-0.391071428571442,0.177894088669926,-0.391071428571443,0.172906403940841,-0.392857142857156,0.000000000000001,0.013054187192155,-0.003571428571428,-0.003078817733985,0.003571428571427,0.003325123152706,-0.000000000000000,-0.013300492610876,2 -9244,9272,9302,9450,0.182758620689652,-0.389285714285730,0.177894088669926,-0.391071428571443,0.186206896551718,-0.392857142857156,0.191071428571443,-0.391071428571443,0.000000000000001,0.013054187192157,-0.003571428571427,-0.003325123152706,-0.000000000000000,-0.013300492610877,0.003571428571426,0.003571428571426,2 -8101,9245,9275,9303,-0.194642857142864,-0.394642857142864,-0.186206896551739,-0.392857142857145,-0.181219211822694,-0.394642857142864,-0.189655172413818,-0.396428571428583,-0.003571428571438,0.003571428571438,0.000000000000000,0.013300492610811,0.003571428571438,-0.003325123152719,-0.000000000000000,-0.013546798029530,2 -9246,9274,9276,9304,-0.172906403940934,-0.392857142857145,-0.181219211822694,-0.394642857142864,-0.167795566502534,-0.394642857142864,-0.176108374384294,-0.396428571428583,0.000000000000000,0.013300492610800,-0.003571428571438,0.003325123152719,0.003571428571437,-0.003078817734000,0.000000000000000,-0.013546798029519,2 -9247,9275,9277,9305,-0.159605911330125,-0.392857142857146,-0.167795566502534,-0.394642857142864,-0.154371921182357,-0.394642857142864,-0.162561576354766,-0.396428571428583,0.000000000000000,0.013300492610817,-0.003571428571437,0.003078817734000,0.003571428571436,-0.002832512315282,0.000000000000000,-0.013546798029536,2 -9248,9276,9278,9306,-0.146305418719310,-0.392857142857146,-0.154371921182357,-0.394642857142864,-0.140948275862184,-0.394642857142864,-0.149014778325232,-0.396428571428582,0.000000000000000,0.013300492610813,-0.003571428571436,0.002832512315282,0.003571428571436,-0.002586206896562,0.000000000000000,-0.013546798029533,2 -9249,9277,9279,9307,-0.133004926108503,-0.392857142857147,-0.140948275862184,-0.394642857142864,-0.127524630542025,-0.394642857142864,-0.135467980295706,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571436,0.002586206896562,0.003571428571435,-0.002339901477843,0.000000000000000,-0.013546798029519,2 -9250,9278,9280,9308,-0.119704433497703,-0.392857142857147,-0.127524630542025,-0.394642857142864,-0.114100985221865,-0.394642857142865,-0.121921182266187,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571435,0.002339901477843,0.003571428571435,-0.002093596059125,0.000000000000000,-0.013546798029519,2 -9251,9279,9281,9309,-0.106403940886903,-0.392857142857147,-0.114100985221865,-0.394642857142865,-0.100677339901706,-0.394642857142865,-0.108374384236668,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571435,0.002093596059125,0.003571428571435,-0.001847290640406,-0.000000000000000,-0.013546798029519,2 -9252,9280,9282,9310,-0.093103448276103,-0.392857142857148,-0.100677339901706,-0.394642857142865,-0.087253694581547,-0.394642857142865,-0.094827586207150,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571435,0.001847290640406,0.003571428571434,-0.001600985221687,0.000000000000000,-0.013546798029519,2 -9253,9281,9283,9311,-0.079802955665303,-0.392857142857148,-0.087253694581547,-0.394642857142865,-0.073830049261387,-0.394642857142865,-0.081280788177631,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571434,0.001600985221687,0.003571428571433,-0.001354679802969,0.000000000000000,-0.013546798029519,2 -9254,9282,9284,9312,-0.066502463054503,-0.392857142857149,-0.073830049261387,-0.394642857142865,-0.060406403941228,-0.394642857142865,-0.067733990148112,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571433,0.001354679802969,0.003571428571433,-0.001108374384250,-0.000000000000000,-0.013546798029519,2 -9255,9283,9285,9313,-0.053201970443706,-0.392857142857149,-0.060406403941228,-0.394642857142865,-0.046982758621075,-0.394642857142866,-0.054187192118597,-0.396428571428582,0.000000000000000,0.013300492610793,-0.003571428571433,0.001108374384250,0.003571428571433,-0.000862068965532,-0.000000000000000,-0.013546798029511,2 -9256,9284,9286,9314,-0.039901477832910,-0.392857142857149,-0.046982758621075,-0.394642857142866,-0.033559113300918,-0.394642857142866,-0.040640394089083,-0.396428571428582,0.000000000000000,0.013300492610798,-0.003571428571433,0.000862068965532,0.003571428571432,-0.000615763546814,-0.000000000000000,-0.013546798029517,2 -9257,9285,9287,9315,-0.026600985222111,-0.392857142857150,-0.033559113300918,-0.394642857142866,-0.020135467980759,-0.394642857142866,-0.027093596059565,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571432,0.000615763546814,0.003571428571432,-0.000369458128095,0.000000000000000,-0.013546798029519,2 -9258,9286,9288,9316,-0.013300492611311,-0.392857142857150,-0.020135467980759,-0.394642857142866,-0.006711822660599,-0.394642857142866,-0.013546798030047,-0.396428571428582,0.000000000000000,0.013300492610800,-0.003571428571432,0.000369458128095,0.003571428571431,-0.000123152709376,0.000000000000000,-0.013546798029519,2 -9259,9287,9289,9317,-0.000000000000493,-0.392857142857151,-0.006711822660599,-0.394642857142866,0.006711822659596,-0.394642857142866,-0.000000000000510,-0.396428571428582,0.000000000000000,0.013300492610836,-0.003571428571431,0.000123152709376,0.003571428571431,0.000123152709343,-0.000000000000000,-0.013546798029555,2 -9260,9288,9290,9318,0.013300492610362,-0.392857142857151,0.006711822659596,-0.394642857142866,0.020135467979830,-0.394642857142866,0.013546798029065,-0.396428571428582,0.000000000000000,0.013300492610874,-0.003571428571431,-0.000123152709343,0.003571428571430,0.000369458128063,0.000000000000000,-0.013546798029594,2 -9261,9289,9291,9319,0.026600985221236,-0.392857142857151,0.020135467979830,-0.394642857142866,0.033559113300065,-0.394642857142867,0.027093596058659,-0.396428571428581,0.000000000000000,0.013300492610875,-0.003571428571430,-0.000369458128063,0.003571428571430,0.000615763546783,0.000000000000000,-0.013546798029595,2 -9262,9290,9292,9320,0.039901477832111,-0.392857142857152,0.033559113300065,-0.394642857142867,0.046982758620299,-0.394642857142867,0.040640394088253,-0.396428571428581,0.000000000000000,0.013300492610874,-0.003571428571430,-0.000615763546783,0.003571428571429,0.000862068965503,0.000000000000000,-0.013546798029594,2 -9263,9291,9293,9321,0.053201970442985,-0.392857142857152,0.046982758620299,-0.394642857142867,0.060406403940534,-0.394642857142867,0.054187192117848,-0.396428571428581,0.000000000000000,0.013300492610875,-0.003571428571429,-0.000862068965503,0.003571428571429,0.001108374384223,-0.000000000000000,-0.013546798029595,2 -9264,9292,9294,9322,0.066502463053861,-0.392857142857153,0.060406403940534,-0.394642857142867,0.073830049260771,-0.394642857142867,0.067733990147444,-0.396428571428581,0.000000000000000,0.013300492610877,-0.003571428571429,-0.001108374384223,0.003571428571428,0.001354679802944,0.000000000000000,-0.013546798029597,2 -9265,9293,9295,9323,0.079802955664737,-0.392857142857153,0.073830049260771,-0.394642857142867,0.087253694581006,-0.394642857142867,0.081280788177040,-0.396428571428581,0.000000000000000,0.013300492610874,-0.003571428571428,-0.001354679802944,0.003571428571428,0.001600985221664,0.000000000000000,-0.013546798029594,2 -9266,9294,9296,9324,0.093103448275609,-0.392857142857153,0.087253694581006,-0.394642857142867,0.100677339901237,-0.394642857142867,0.094827586206633,-0.396428571428581,0.000000000000000,0.013300492610871,-0.003571428571428,-0.001600985221664,0.003571428571427,0.001847290640383,0.000000000000000,-0.013546798029591,2 -9267,9295,9297,9325,0.106403940886481,-0.392857142857154,0.100677339901237,-0.394642857142867,0.114100985221469,-0.394642857142867,0.108374384236225,-0.396428571428581,0.000000000000000,0.013300492610873,-0.003571428571427,-0.001847290640383,0.003571428571427,0.002093596059103,0.000000000000000,-0.013546798029593,2 -9268,9296,9298,9326,0.119704433497354,-0.392857142857154,0.114100985221469,-0.394642857142867,0.127524630541701,-0.394642857142868,0.121921182265817,-0.396428571428581,0.000000000000000,0.013300492610872,-0.003571428571427,-0.002093596059103,0.003571428571426,0.002339901477823,0.000000000000000,-0.013546798029592,2 -9269,9297,9299,9327,0.133004926108225,-0.392857142857155,0.127524630541701,-0.394642857142868,0.140948275861932,-0.394642857142868,0.135467980295408,-0.396428571428581,0.000000000000000,0.013300492610870,-0.003571428571426,-0.002339901477823,0.003571428571426,0.002586206896544,-0.000000000000000,-0.013546798029591,2 -9270,9298,9300,9328,0.146305418719095,-0.392857142857155,0.140948275861932,-0.394642857142868,0.154371921182163,-0.394642857142868,0.149014778324999,-0.396428571428581,0.000000000000000,0.013300492610871,-0.003571428571426,-0.002586206896544,0.003571428571425,0.002832512315264,0.000000000000000,-0.013546798029592,2 -9271,9299,9301,9329,0.159605911329967,-0.392857142857155,0.154371921182163,-0.394642857142868,0.167795566502395,-0.394642857142868,0.162561576354591,-0.396428571428581,0.000000000000000,0.013300492610872,-0.003571428571425,-0.002832512315264,0.003571428571425,0.003078817733984,0.000000000000000,-0.013546798029592,2 -9272,9300,9302,9330,0.172906403940841,-0.392857142857156,0.167795566502395,-0.394642857142868,0.181219211822631,-0.394642857142868,0.176108374384185,-0.396428571428581,0.000000000000000,0.013300492610876,-0.003571428571425,-0.003078817733984,0.003571428571424,0.003325123152704,-0.000000000000000,-0.013546798029596,2 -9273,9301,9331,9391,0.186206896551718,-0.392857142857156,0.181219211822631,-0.394642857142868,0.189655172413781,-0.396428571428580,0.194642857142868,-0.394642857142868,0.000000000000000,0.013300492610877,-0.003571428571424,-0.003325123152704,0.000000000000000,-0.013546798029598,0.003571428571424,0.003571428571424,2 -4372,8100,9274,9304,-0.193103448275876,-0.400000000000000,-0.198214285714291,-0.398214285714291,-0.189655172413818,-0.396428571428583,-0.184544334975403,-0.398214285714291,-0.000000000000000,-0.013793103448248,-0.003571428571417,0.003571428571417,0.000000000000000,0.013546798029530,0.003571428571417,-0.003325123152699,2 -4386,9275,9303,9305,-0.179310344827634,-0.400000000000000,-0.176108374384294,-0.396428571428583,-0.184544334975403,-0.398214285714291,-0.170874384236525,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571417,0.003325123152699,0.003571428571417,-0.003078817733982,2 -4400,9276,9304,9306,-0.165517241379389,-0.400000000000000,-0.162561576354766,-0.396428571428583,-0.170874384236525,-0.398214285714291,-0.157204433497630,-0.398214285714291,-0.000000000000000,-0.013793103448254,-0.000000000000000,0.013546798029536,-0.003571428571417,0.003078817733982,0.003571428571418,-0.002832512315264,2 -4414,9277,9305,9307,-0.151724137931136,-0.400000000000000,-0.149014778325232,-0.396428571428582,-0.157204433497630,-0.398214285714291,-0.143534482758738,-0.398214285714291,-0.000000000000000,-0.013793103448251,-0.000000000000000,0.013546798029533,-0.003571428571418,0.002832512315264,0.003571428571418,-0.002586206896545,2 -4428,9278,9306,9308,-0.137931034482892,-0.400000000000000,-0.135467980295706,-0.396428571428582,-0.143534482758738,-0.398214285714291,-0.129864532019860,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571418,0.002586206896545,0.003571428571418,-0.002339901477827,2 -4442,9279,9307,9309,-0.124137931034655,-0.400000000000000,-0.121921182266187,-0.396428571428582,-0.129864532019860,-0.398214285714291,-0.116194581280982,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571418,0.002339901477827,0.003571428571418,-0.002093596059109,2 -4456,9280,9308,9310,-0.110344827586419,-0.400000000000000,-0.108374384236668,-0.396428571428582,-0.116194581280982,-0.398214285714291,-0.102524630542105,-0.398214285714291,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013546798029519,-0.003571428571418,0.002093596059109,0.003571428571418,-0.001847290640391,2 -4470,9281,9309,9311,-0.096551724138182,-0.400000000000000,-0.094827586207150,-0.396428571428582,-0.102524630542105,-0.398214285714291,-0.088854679803227,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571418,0.001847290640391,0.003571428571418,-0.001600985221674,2 -4484,9282,9310,9312,-0.082758620689945,-0.400000000000000,-0.081280788177631,-0.396428571428582,-0.088854679803227,-0.398214285714291,-0.075184729064349,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571418,0.001600985221674,0.003571428571418,-0.001354679802956,2 -4498,9283,9311,9313,-0.068965517241709,-0.400000000000000,-0.067733990148112,-0.396428571428582,-0.075184729064349,-0.398214285714291,-0.061514778325472,-0.398214285714291,-0.000000000000000,-0.013793103448237,0.000000000000000,0.013546798029519,-0.003571428571418,0.001354679802956,0.003571428571418,-0.001108374384238,2 -4512,9284,9312,9314,-0.055172413793477,-0.400000000000000,-0.054187192118597,-0.396428571428582,-0.061514778325472,-0.398214285714291,-0.047844827586602,-0.398214285714291,-0.000000000000000,-0.013793103448228,0.000000000000000,0.013546798029511,-0.003571428571418,0.001108374384238,0.003571428571418,-0.000862068965521,2 -4526,9285,9313,9315,-0.041379310345245,-0.400000000000000,-0.040640394089083,-0.396428571428582,-0.047844827586602,-0.398214285714291,-0.034174876847727,-0.398214285714291,-0.000000000000000,-0.013793103448234,0.000000000000000,0.013546798029517,-0.003571428571418,0.000862068965521,0.003571428571418,-0.000615763546803,2 -4540,9286,9314,9316,-0.027586206897010,-0.400000000000000,-0.027093596059565,-0.396428571428582,-0.034174876847727,-0.398214285714291,-0.020504926108849,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571418,0.000615763546803,0.003571428571418,-0.000369458128086,2 -4554,9287,9315,9317,-0.013793103448773,-0.400000000000000,-0.013546798030047,-0.396428571428582,-0.020504926108849,-0.398214285714291,-0.006834975369971,-0.398214285714291,-0.000000000000000,-0.013793103448237,-0.000000000000000,0.013546798029519,-0.003571428571418,0.000369458128086,0.003571428571419,-0.000123152709368,2 -4568,9288,9316,9318,-0.000000000000518,-0.400000000000000,-0.000000000000510,-0.396428571428582,-0.006834975369971,-0.398214285714291,0.006834975368943,-0.398214285714291,-0.000000000000000,-0.013793103448274,0.000000000000000,0.013546798029555,-0.003571428571419,0.000123152709368,0.003571428571418,0.000123152709351,2 -4582,9289,9317,9319,0.013793103447775,-0.400000000000000,0.013546798029065,-0.396428571428582,0.006834975368943,-0.398214285714291,0.020504926107896,-0.398214285714291,-0.000000000000000,-0.013793103448313,-0.000000000000000,0.013546798029594,-0.003571428571418,-0.000123152709351,0.003571428571419,0.000369458128070,2 -4596,9290,9318,9320,0.027586206896088,-0.400000000000000,0.027093596058659,-0.396428571428581,0.020504926107896,-0.398214285714291,0.034174876846851,-0.398214285714291,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013546798029595,-0.003571428571419,-0.000369458128070,0.003571428571419,0.000615763546789,2 -4610,9291,9319,9321,0.041379310344402,-0.400000000000000,0.040640394088253,-0.396428571428581,0.034174876846851,-0.398214285714291,0.047844827585805,-0.398214285714291,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013546798029594,-0.003571428571419,-0.000615763546789,0.003571428571419,0.000862068965508,2 -4624,9292,9320,9322,0.055172413792716,-0.400000000000000,0.054187192117848,-0.396428571428581,0.047844827585805,-0.398214285714291,0.061514778324760,-0.398214285714291,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013546798029595,-0.003571428571419,-0.000862068965508,0.003571428571419,0.001108374384228,2 -4638,9293,9321,9323,0.068965517241032,-0.400000000000000,0.067733990147444,-0.396428571428581,0.061514778324760,-0.398214285714291,0.075184729063717,-0.398214285714291,-0.000000000000000,-0.013793103448317,-0.000000000000000,0.013546798029597,-0.003571428571419,-0.001108374384228,0.003571428571419,0.001354679802947,2 -4652,9294,9322,9324,0.082758620689347,-0.400000000000000,0.081280788177040,-0.396428571428581,0.075184729063717,-0.398214285714291,0.088854679802671,-0.398214285714291,-0.000000000000000,-0.013793103448314,-0.000000000000000,0.013546798029594,-0.003571428571419,-0.001354679802947,0.003571428571419,0.001600985221666,2 -4666,9295,9323,9325,0.096551724137659,-0.400000000000000,0.094827586206633,-0.396428571428581,0.088854679802671,-0.398214285714291,0.102524630541621,-0.398214285714290,-0.000000000000000,-0.013793103448309,-0.000000000000000,0.013546798029591,-0.003571428571419,-0.001600985221666,0.003571428571419,0.001847290640385,2 -4680,9296,9324,9326,0.110344827585969,-0.400000000000000,0.108374384236225,-0.396428571428581,0.102524630541621,-0.398214285714290,0.116194581280573,-0.398214285714290,-0.000000000000000,-0.013793103448312,-0.000000000000000,0.013546798029593,-0.003571428571419,-0.001847290640385,0.003571428571419,0.002093596059104,2 -4694,9297,9325,9327,0.124137931034281,-0.400000000000000,0.121921182265817,-0.396428571428581,0.116194581280573,-0.398214285714290,0.129864532019524,-0.398214285714290,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013546798029592,-0.003571428571419,-0.002093596059104,0.003571428571419,0.002339901477823,2 -4708,9298,9326,9328,0.137931034482591,-0.400000000000000,0.135467980295408,-0.396428571428581,0.129864532019524,-0.398214285714290,0.143534482758475,-0.398214285714290,-0.000000000000000,-0.013793103448311,0.000000000000000,0.013546798029591,-0.003571428571419,-0.002339901477823,0.003571428571419,0.002586206896543,2 -4722,9299,9327,9329,0.151724137930902,-0.400000000000000,0.149014778324999,-0.396428571428581,0.143534482758475,-0.398214285714290,0.157204433497426,-0.398214285714290,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013546798029592,-0.003571428571419,-0.002586206896543,0.003571428571419,0.002832512315262,2 -4736,9300,9328,9330,0.165517241379213,-0.400000000000000,0.162561576354591,-0.396428571428581,0.157204433497426,-0.398214285714290,0.170874384236377,-0.398214285714290,-0.000000000000000,-0.013793103448311,-0.000000000000000,0.013546798029592,-0.003571428571419,-0.002832512315262,0.003571428571420,0.003078817733981,2 -4750,9301,9329,9331,0.179310344827525,-0.400000000000000,0.176108374384185,-0.396428571428581,0.170874384236377,-0.398214285714290,0.184544334975333,-0.398214285714290,-0.000000000000000,-0.013793103448315,0.000000000000000,0.013546798029596,-0.003571428571420,-0.003078817733981,0.003571428571420,0.003325123152700,2 -4764,9302,9330,9332,0.193103448275841,-0.400000000000000,0.189655172413781,-0.396428571428580,0.184544334975333,-0.398214285714290,0.198214285714290,-0.398214285714290,0.000000000000000,-0.013793103448317,-0.000000000000000,0.013546798029598,-0.003571428571420,-0.003325123152700,0.003571428571420,0.003571428571420,2 -5171,9331,9333,9391,0.200000000000000,-0.393220338983034,0.198214285714290,-0.398214285714290,0.198214285714290,-0.384715496368011,0.196428571428580,-0.389709443099267,0.013559322033932,0.000000000000000,-0.003571428571420,-0.003571428571420,0.003450363196113,0.003571428571420,-0.013438256658626,0.000000000000000,2 -5172,9332,9334,9392,0.200000000000000,-0.379661016949095,0.198214285714290,-0.384715496368011,0.198214285714290,-0.371216707021719,0.196428571428580,-0.376271186440635,0.013559322033946,-0.000000000000000,-0.003450363196113,-0.003571428571420,0.003329297820805,0.003571428571420,-0.013438256658638,-0.000000000000000,2 -5173,9333,9335,9393,0.200000000000000,-0.366101694915163,0.198214285714290,-0.371216707021719,0.198214285714290,-0.357717917675453,0.196428571428580,-0.362832929782010,0.013559322033918,-0.000000000000000,-0.003329297820805,-0.003571428571420,0.003208232445500,0.003571428571420,-0.013438256658613,-0.000000000000000,2 -5174,9334,9336,9394,0.200000000000000,-0.352542372881227,0.198214285714290,-0.357717917675453,0.198214285714290,-0.344219128329154,0.196428571428580,-0.349394673123381,0.013559322033954,-0.000000000000000,-0.003208232445500,-0.003571428571420,0.003087167070191,0.003571428571420,-0.013438256658645,-0.000000000000000,2 -5175,9335,9337,9395,0.200000000000000,-0.338983050847293,0.198214285714290,-0.344219128329154,0.198214285714290,-0.330720338982892,0.196428571428580,-0.335956416464754,0.013559322033914,-0.000000000000000,-0.003087167070191,-0.003571428571420,0.002966101694887,0.003571428571420,-0.013438256658609,-0.000000000000000,2 -5176,9336,9338,9396,0.200000000000000,-0.325423728813361,0.198214285714290,-0.330720338982892,0.198214285714290,-0.317221549636596,0.196428571428580,-0.322518159806128,0.013559322033950,-0.000000000000000,-0.002966101694887,-0.003571428571420,0.002845036319579,0.003571428571420,-0.013438256658642,-0.000000000000000,2 -5177,9337,9339,9397,0.200000000000000,-0.311864406779421,0.198214285714290,-0.317221549636596,0.198214285714290,-0.303722760290321,0.196428571428580,-0.309079903147496,0.013559322033928,-0.000000000000000,-0.002845036319579,-0.003571428571420,0.002723970944273,0.003571428571420,-0.013438256658622,-0.000000000000000,2 -5178,9338,9340,9398,0.200000000000000,-0.298305084745489,0.198214285714290,-0.303722760290321,0.198214285714290,-0.290223970944039,0.196428571428580,-0.295641646488870,0.013559322033936,-0.000000000000000,-0.002723970944273,-0.003571428571420,0.002602905568965,0.003571428571420,-0.013438256658628,-0.000000000000000,2 -5179,9339,9341,9399,0.200000000000000,-0.284745762711550,0.198214285714290,-0.290223970944039,0.198214285714290,-0.276725181597751,0.196428571428580,-0.282203389830239,0.013559322033942,-0.000000000000000,-0.002602905568965,-0.003571428571420,0.002481840193656,0.003571428571420,-0.013438256658634,-0.000000000000000,2 -5180,9340,9342,9400,0.200000000000000,-0.271186440677618,0.198214285714290,-0.276725181597751,0.198214285714290,-0.263226392251482,0.196428571428580,-0.268765133171614,0.013559322033922,-0.000000000000000,-0.002481840193656,-0.003571428571420,0.002360774818351,0.003571428571420,-0.013438256658616,-0.000000000000000,2 -5181,9341,9343,9401,0.200000000000000,-0.257627118643680,0.198214285714290,-0.263226392251482,0.198214285714290,-0.249727602905182,0.196428571428580,-0.255326876512984,0.013559322033954,-0.000000000000000,-0.002360774818351,-0.003571428571420,0.002239709443042,0.003571428571420,-0.013438256658645,-0.000000000000000,2 -5182,9342,9344,9402,0.200000000000000,-0.244067796609748,0.198214285714290,-0.249727602905182,0.198214285714290,-0.236228813558924,0.196428571428580,-0.241888619854358,0.013559322033910,-0.000000000000000,-0.002239709443042,-0.003571428571420,0.002118644067737,0.003571428571420,-0.013438256658605,-0.000000000000000,2 -5183,9343,9345,9403,0.200000000000000,-0.230508474575816,0.198214285714290,-0.236228813558924,0.198214285714290,-0.222730024212625,0.196428571428580,-0.228450363195733,0.013559322033954,-0.000000000000000,-0.002118644067737,-0.003571428571420,0.001997578692428,0.003571428571420,-0.013438256658645,-0.000000000000000,2 -5184,9344,9346,9404,0.200000000000000,-0.216949152541877,0.198214285714290,-0.222730024212625,0.198214285714290,-0.209231234866354,0.196428571428580,-0.215012106537102,0.013559322033924,-0.000000000000000,-0.001997578692428,-0.003571428571420,0.001876513317121,0.003571428571420,-0.013438256658617,-0.000000000000000,2 -5185,9345,9347,9405,0.200000000000000,-0.203389830507945,0.198214285714290,-0.209231234866354,0.198214285714290,-0.195732445520068,0.196428571428580,-0.201573849878477,0.013559322033940,-0.000000000000000,-0.001876513317121,-0.003571428571420,0.001755447941814,0.003571428571420,-0.013438256658632,0.000000000000000,2 -5186,9346,9348,9406,0.200000000000000,-0.189830508474016,0.198214285714290,-0.195732445520068,0.198214285714290,-0.182233656173804,0.196428571428580,-0.188135593219856,0.013559322033917,-0.000000000000000,-0.001755447941814,-0.003571428571420,0.001634382566507,0.003571428571420,-0.013438256658611,-0.000000000000000,2 -5187,9347,9349,9407,0.200000000000000,-0.176271186440084,0.198214285714290,-0.182233656173804,0.198214285714290,-0.168734866827511,0.196428571428580,-0.174697336561231,0.013559322033947,-0.000000000000000,-0.001634382566507,-0.003571428571420,0.001513317191199,0.003571428571420,-0.013438256658639,-0.000000000000000,2 -5188,9348,9350,9408,0.200000000000000,-0.162711864406145,0.198214285714290,-0.168734866827511,0.198214285714290,-0.155236077481233,0.196428571428580,-0.161259079902599,0.013559322033931,-0.000000000000000,-0.001513317191199,-0.003571428571420,0.001392251815892,0.003571428571420,-0.013438256658624,-0.000000000000000,2 -5189,9349,9351,9409,0.200000000000000,-0.149152542372213,0.198214285714290,-0.155236077481233,0.198214285714290,-0.141737288134954,0.196428571428580,-0.147820823243974,0.013559322033933,-0.000000000000000,-0.001392251815892,-0.003571428571420,0.001271186440585,0.003571428571420,-0.013438256658627,0.000000000000000,2 -5190,9350,9352,9410,0.200000000000000,-0.135593220338273,0.198214285714290,-0.141737288134954,0.198214285714290,-0.128238498788662,0.196428571428580,-0.134382566585342,0.013559322033945,-0.000000000000000,-0.001271186440585,-0.003571428571420,0.001150121065277,0.003571428571420,-0.013438256658637,-0.000000000000000,2 -5191,9351,9353,9411,0.200000000000000,-0.122033898304341,0.198214285714290,-0.128238498788662,0.198214285714290,-0.114739709442396,0.196428571428580,-0.120944309926717,0.013559322033919,-0.000000000000000,-0.001150121065277,-0.003571428571420,0.001029055689971,0.003571428571420,-0.013438256658612,-0.000000000000000,2 -5192,9352,9354,9412,0.200000000000000,-0.108474576270409,0.198214285714290,-0.114739709442396,0.198214285714290,-0.101240920096105,0.196428571428580,-0.107506053268092,0.013559322033946,-0.000000000000000,-0.001029055689971,-0.003571428571420,0.000907990314663,0.003571428571420,-0.013438256658638,-0.000000000000000,2 -5193,9353,9355,9413,0.200000000000000,-0.094915254236471,0.198214285714290,-0.101240920096105,0.198214285714290,-0.087742130749828,0.196428571428580,-0.094067796609462,0.013559322033930,-0.000000000000000,-0.000907990314663,-0.003571428571420,0.000786924939356,0.003571428571420,-0.013438256658623,-0.000000000000000,2 -5194,9354,9356,9414,0.200000000000000,-0.081355932202535,0.198214285714290,-0.087742130749828,0.198214285714290,-0.074243341403541,0.196428571428580,-0.080629539950833,0.013559322033941,-0.000000000000000,-0.000786924939356,-0.003571428571420,0.000665859564048,0.003571428571420,-0.013438256658633,-0.000000000000000,2 -5195,9355,9357,9415,0.200000000000000,-0.067796610168599,0.198214285714290,-0.074243341403541,0.198214285714290,-0.060744552057264,0.196428571428580,-0.067191283292205,0.013559322033930,-0.000000000000000,-0.000665859564048,-0.003571428571420,0.000544794188741,0.003571428571420,-0.013438256658623,-0.000000000000000,2 -5196,9356,9358,9416,0.200000000000000,-0.054237288134667,0.198214285714290,-0.060744552057264,0.198214285714290,-0.047245762710983,0.196428571428580,-0.053753026633580,0.013559322033935,-0.000000000000000,-0.000544794188741,-0.003571428571420,0.000423728813433,0.003571428571420,-0.013438256658627,0.000000000000000,2 -5197,9357,9359,9417,0.200000000000000,-0.040677966100731,0.198214285714290,-0.047245762710983,0.198214285714290,-0.033746973364700,0.196428571428580,-0.040314769974952,0.013559322033937,-0.000000000000000,-0.000423728813433,-0.003571428571420,0.000302663438126,0.003571428571420,-0.013438256658629,-0.000000000000000,2 -5198,9358,9360,9418,0.200000000000000,-0.027118644066798,0.198214285714290,-0.033746973364700,0.198214285714290,-0.020248184018423,0.196428571428580,-0.026876513316326,0.013559322033930,-0.000000000000000,-0.000302663438126,-0.003571428571420,0.000181598062819,0.003571428571420,-0.013438256658623,0.000000000000000,2 -5199,9359,9361,9419,0.200000000000000,-0.013559322032862,0.198214285714290,-0.020248184018423,0.198214285714290,-0.006749394672136,0.196428571428580,-0.013438256657697,0.013559322033941,-0.000000000000000,-0.000181598062819,-0.003571428571420,0.000060532687511,0.003571428571420,-0.013438256658633,-0.000000000000000,2 -5200,9360,9362,9420,0.200000000000000,0.000000000001056,0.198214285714290,-0.006749394672136,0.198214285714290,0.006749394674108,0.196428571428580,0.000000000000916,0.013559322033895,-0.000000000000000,-0.000060532687511,-0.003571428571420,-0.000060532687791,0.003571428571420,-0.013438256658594,-0.000000000000000,2 -5201,9361,9363,9421,0.200000000000000,0.013559322034933,0.198214285714290,0.006749394674108,0.198214285714290,0.020248184020319,0.196428571428580,0.013438256659494,0.013559322033860,-0.000000000000000,0.000060532687791,-0.003571428571420,-0.000181598063088,0.003571428571420,-0.013438256658562,-0.000000000000000,2 -5202,9362,9364,9422,0.200000000000000,0.027118644068793,0.198214285714290,0.020248184020319,0.198214285714290,0.033746973366530,0.196428571428580,0.026876513318056,0.013559322033860,-0.000000000000000,0.000181598063088,-0.003571428571420,-0.000302663438385,0.003571428571420,-0.013438256658563,-0.000000000000000,2 -5203,9363,9365,9423,0.200000000000000,0.040677966102653,0.198214285714290,0.033746973366530,0.198214285714290,0.047245762712741,0.196428571428580,0.040314769976619,0.013559322033860,-0.000000000000000,0.000302663438385,-0.003571428571420,-0.000423728813683,0.003571428571420,-0.013438256658562,-0.000000000000000,2 -5204,9364,9366,9424,0.200000000000000,0.054237288136513,0.198214285714290,0.047245762712741,0.198214285714290,0.060744552058952,0.196428571428580,0.053753026635181,0.013559322033860,-0.000000000000000,0.000423728813683,-0.003571428571420,-0.000544794188980,0.003571428571420,-0.013438256658562,-0.000000000000000,2 -5205,9365,9367,9425,0.200000000000000,0.067796610170372,0.198214285714290,0.060744552058952,0.198214285714290,0.074243341405163,0.196428571428580,0.067191283293743,0.013559322033860,-0.000000000000000,0.000544794188980,-0.003571428571420,-0.000665859564277,0.003571428571420,-0.013438256658563,-0.000000000000000,2 -5206,9366,9368,9426,0.200000000000000,0.081355932204232,0.198214285714290,0.074243341405163,0.198214285714290,0.087742130751374,0.196428571428580,0.080629539952306,0.013559322033860,-0.000000000000000,0.000665859564277,-0.003571428571420,-0.000786924939575,0.003571428571420,-0.013438256658562,-0.000000000000000,2 -5207,9367,9369,9427,0.200000000000000,0.094915254238085,0.198214285714290,0.087742130751374,0.198214285714290,0.101240920097572,0.196428571428580,0.094067796610862,0.013559322033846,-0.000000000000000,0.000786924939575,-0.003571428571420,-0.000907990314871,0.003571428571420,-0.013438256658550,0.000000000000000,2 -5208,9368,9370,9428,0.200000000000000,0.108474576271933,0.198214285714290,0.101240920097572,0.198214285714290,0.114739709443776,0.196428571428580,0.107506053269414,0.013559322033852,-0.000000000000000,0.000907990314871,-0.003571428571420,-0.001029055690168,0.003571428571420,-0.013438256658555,-0.000000000000000,2 -5209,9369,9371,9429,0.200000000000000,0.122033898305789,0.198214285714290,0.114739709443776,0.198214285714290,0.128238498789986,0.196428571428580,0.120944309927973,0.013559322033860,-0.000000000000000,0.001029055690168,-0.003571428571420,-0.001150121065465,0.003571428571420,-0.013438256658562,0.000000000000000,2 -5210,9370,9372,9430,0.200000000000000,0.135593220339649,0.198214285714290,0.128238498789986,0.198214285714290,0.141737288136198,0.196428571428580,0.134382566586535,0.013559322033860,-0.000000000000000,0.001150121065465,-0.003571428571420,-0.001271186440762,0.003571428571420,-0.013438256658563,-0.000000000000000,2 -5211,9371,9373,9431,0.200000000000000,0.149152542373509,0.198214285714290,0.141737288136198,0.198214285714290,0.155236077482408,0.196428571428580,0.147820823245097,0.013559322033860,-0.000000000000000,0.001271186440762,-0.003571428571420,-0.001392251816060,0.003571428571420,-0.013438256658562,-0.000000000000000,2 -5212,9372,9374,9432,0.200000000000000,0.162711864407368,0.198214285714290,0.155236077482408,0.198214285714290,0.168734866828619,0.196428571428580,0.161259079903660,0.013559322033860,-0.000000000000000,0.001392251816060,-0.003571428571420,-0.001513317191357,0.003571428571420,-0.013438256658563,0.000000000000000,2 -5213,9373,9375,9433,0.200000000000000,0.176271186441228,0.198214285714290,0.168734866828619,0.198214285714290,0.182233656174830,0.196428571428580,0.174697336562221,0.013559322033860,-0.000000000000000,0.001513317191357,-0.003571428571420,-0.001634382566656,0.003571428571420,-0.013438256658561,-0.000000000000000,2 -5214,9374,9376,9434,0.200000000000000,0.189830508475088,0.198214285714290,0.182233656174830,0.198214285714290,0.195732445521041,0.196428571428580,0.188135593220783,0.013559322033860,-0.000000000000000,0.001634382566656,-0.003571428571420,-0.001755447941954,0.003571428571420,-0.013438256658562,-0.000000000000000,2 -5215,9375,9377,9435,0.200000000000000,0.203389830508947,0.198214285714290,0.195732445521041,0.198214285714290,0.209231234867252,0.196428571428580,0.201573849879345,0.013559322033860,-0.000000000000000,0.001755447941954,-0.003571428571420,-0.001876513317250,0.003571428571420,-0.013438256658563,-0.000000000000000,2 -5216,9376,9378,9436,0.200000000000000,0.216949152542807,0.198214285714290,0.209231234867252,0.198214285714290,0.222730024213462,0.196428571428580,0.215012106537907,0.013559322033860,-0.000000000000000,0.001876513317250,-0.003571428571420,-0.001997578692549,0.003571428571420,-0.013438256658561,-0.000000000000000,2 -5217,9377,9379,9437,0.200000000000000,0.230508474576667,0.198214285714290,0.222730024213462,0.198214285714290,0.236228813559674,0.196428571428580,0.228450363196470,0.013559322033860,-0.000000000000000,0.001997578692549,-0.003571428571420,-0.002118644067845,0.003571428571420,-0.013438256658564,-0.000000000000000,2 -5218,9378,9380,9438,0.200000000000000,0.244067796610526,0.198214285714290,0.236228813559674,0.198214285714290,0.249727602905885,0.196428571428580,0.241888619855032,0.013559322033860,-0.000000000000000,0.002118644067845,-0.003571428571420,-0.002239709443143,0.003571428571420,-0.013438256658561,0.000000000000000,2 -5219,9379,9381,9439,0.200000000000000,0.257627118644386,0.198214285714290,0.249727602905885,0.198214285714290,0.263226392252096,0.196428571428580,0.255326876513594,0.013559322033860,-0.000000000000000,0.002239709443143,-0.003571428571420,-0.002360774818440,0.003571428571420,-0.013438256658563,-0.000000000000000,2 -5220,9380,9382,9440,0.200000000000000,0.271186440678246,0.198214285714290,0.263226392252096,0.198214285714290,0.276725181598307,0.196428571428580,0.268765133172157,0.013559322033860,-0.000000000000000,0.002360774818440,-0.003571428571420,-0.002481840193738,0.003571428571420,-0.013438256658562,-0.000000000000000,2 -5221,9381,9383,9441,0.200000000000000,0.284745762712106,0.198214285714290,0.276725181598307,0.198214285714290,0.290223970944518,0.196428571428580,0.282203389830719,0.013559322033860,-0.000000000000000,0.002481840193738,-0.003571428571420,-0.002602905569036,0.003571428571420,-0.013438256658562,-0.000000000000000,2 -5222,9382,9384,9442,0.200000000000000,0.298305084745975,0.198214285714290,0.290223970944518,0.198214285714290,0.303722760290748,0.196428571428580,0.295641646489291,0.013559322033879,-0.000000000000000,0.002602905569036,-0.003571428571420,-0.002723970944333,0.003571428571420,-0.013438256658582,-0.000000000000000,2 -5223,9383,9385,9443,0.200000000000000,0.311864406779851,0.198214285714290,0.303722760290748,0.198214285714290,0.317221549636971,0.196428571428580,0.309079903147868,0.013559322033872,-0.000000000000000,0.002723970944333,-0.003571428571420,-0.002845036319633,0.003571428571420,-0.013438256658573,-0.000000000000000,2 -5224,9384,9386,9444,0.200000000000000,0.325423728813729,0.198214285714290,0.317221549636971,0.198214285714290,0.330720338983205,0.196428571428580,0.322518159806447,0.013559322033883,-0.000000000000000,0.002845036319633,-0.003571428571420,-0.002966101694930,0.003571428571420,-0.013438256658586,-0.000000000000000,2 -5225,9385,9387,9445,0.200000000000000,0.338983050847605,0.198214285714290,0.330720338983205,0.198214285714290,0.344219128329425,0.196428571428580,0.335956416465025,0.013559322033869,-0.000000000000000,0.002966101694930,-0.003571428571420,-0.003087167070230,0.003571428571420,-0.013438256658570,-0.000000000000000,2 -5226,9386,9388,9446,0.200000000000000,0.352542372881469,0.198214285714290,0.344219128329425,0.198214285714290,0.357717917675636,0.196428571428580,0.349394673123591,0.013559322033860,-0.000000000000000,0.003087167070230,-0.003571428571420,-0.003208232445526,0.003571428571420,-0.013438256658563,-0.000000000000000,2 -5227,9387,9389,9447,0.200000000000000,0.366101694915329,0.198214285714290,0.357717917675636,0.198214285714290,0.371216707021847,0.196428571428580,0.362832929782154,0.013559322033860,-0.000000000000000,0.003208232445526,-0.003571428571420,-0.003329297820824,0.003571428571420,-0.013438256658562,-0.000000000000000,2 -5228,9388,9390,9448,0.200000000000000,0.379661016949189,0.198214285714290,0.371216707021847,0.198214285714290,0.384715496368058,0.196428571428580,0.376271186440716,0.013559322033860,-0.000000000000000,0.003329297820824,-0.003571428571420,-0.003450363196121,0.003571428571420,-0.013438256658562,-0.000000000000000,2 -5229,7707,9389,9449,0.200000000000000,0.393220338983059,0.198214285714290,0.398214285714290,0.198214285714290,0.384715496368058,0.196428571428580,0.389709443099289,0.013559322033881,-0.000000000000000,-0.003571428571420,0.003571428571420,0.003450363196121,-0.003571428571420,-0.013438256658583,0.000000000000000,2 -9302,9332,9392,9450,0.194642857142868,-0.394642857142868,0.196428571428580,-0.389709443099267,0.194642857142868,-0.381265133171896,0.192857142857156,-0.386198547215497,-0.003571428571424,-0.003571428571424,0.013438256658626,-0.000000000000000,0.003450363196117,0.003571428571424,-0.013317191283319,-0.000000000000000,2 -9333,9391,9393,9451,0.196428571428580,-0.376271186440635,0.194642857142868,-0.381265133171896,0.194642857142868,-0.367887409200911,0.192857142857156,-0.372881355932172,0.013438256658638,0.000000000000000,-0.003450363196117,-0.003571428571424,0.003329297820809,0.003571428571424,-0.013317191283330,-0.000000000000000,2 -9334,9392,9394,9452,0.196428571428580,-0.362832929782010,0.194642857142868,-0.367887409200911,0.194642857142868,-0.354509685229951,0.192857142857156,-0.359564164648853,0.013438256658613,0.000000000000000,-0.003329297820809,-0.003571428571424,0.003208232445504,0.003571428571424,-0.013317191283308,-0.000000000000000,2 -9335,9393,9395,9453,0.196428571428580,-0.349394673123381,0.194642857142868,-0.354509685229951,0.194642857142868,-0.341131961258961,0.192857142857156,-0.346246973365531,0.013438256658645,0.000000000000000,-0.003208232445504,-0.003571428571424,0.003087167070195,0.003571428571424,-0.013317191283336,-0.000000000000000,2 -9336,9394,9396,9454,0.196428571428580,-0.335956416464754,0.194642857142868,-0.341131961258961,0.194642857142868,-0.327754237288004,0.192857142857156,-0.332929782082211,0.013438256658609,0.000000000000000,-0.003087167070195,-0.003571428571424,0.002966101694891,0.003571428571424,-0.013317191283305,-0.000000000000000,2 -9337,9395,9397,9455,0.196428571428580,-0.322518159806128,0.194642857142868,-0.327754237288004,0.194642857142868,-0.314376513317016,0.192857142857156,-0.319612590798892,0.013438256658642,0.000000000000000,-0.002966101694891,-0.003571428571424,0.002845036319582,0.003571428571424,-0.013317191283334,-0.000000000000000,2 -9338,9396,9398,9456,0.196428571428580,-0.309079903147496,0.194642857142868,-0.314376513317016,0.194642857142868,-0.300998789346047,0.192857142857156,-0.306295399515567,0.013438256658622,0.000000000000000,-0.002845036319582,-0.003571428571424,0.002723970944276,0.003571428571424,-0.013317191283316,-0.000000000000000,2 -9339,9397,9399,9457,0.196428571428580,-0.295641646488870,0.194642857142868,-0.300998789346047,0.194642857142868,-0.287621065375073,0.192857142857156,-0.292978208232249,0.013438256658628,0.000000000000000,-0.002723970944276,-0.003571428571424,0.002602905568968,0.003571428571424,-0.013317191283320,-0.000000000000000,2 -9340,9398,9400,9458,0.196428571428580,-0.282203389830239,0.194642857142868,-0.287621065375073,0.194642857142868,-0.274243341404093,0.192857142857156,-0.279661016948926,0.013438256658634,0.000000000000000,-0.002602905568968,-0.003571428571424,0.002481840193659,0.003571428571424,-0.013317191283326,-0.000000000000000,2 -9341,9399,9401,9459,0.196428571428580,-0.268765133171614,0.194642857142868,-0.274243341404093,0.194642857142868,-0.260865617433130,0.192857142857156,-0.266343825665608,0.013438256658616,0.000000000000000,-0.002481840193659,-0.003571428571424,0.002360774818353,0.003571428571424,-0.013317191283310,-0.000000000000000,2 -9342,9400,9402,9460,0.196428571428580,-0.255326876512984,0.194642857142868,-0.260865617433130,0.194642857142868,-0.247487893462139,0.192857142857156,-0.253026634382285,0.013438256658645,0.000000000000000,-0.002360774818353,-0.003571428571424,0.002239709443045,0.003571428571424,-0.013317191283337,-0.000000000000000,2 -9343,9401,9403,9461,0.196428571428580,-0.241888619854358,0.194642857142868,-0.247487893462139,0.194642857142868,-0.234110169491186,0.192857142857156,-0.239709443098967,0.013438256658605,0.000000000000000,-0.002239709443045,-0.003571428571424,0.002118644067739,0.003571428571424,-0.013317191283300,-0.000000000000000,2 -9344,9402,9404,9462,0.196428571428580,-0.228450363195733,0.194642857142868,-0.234110169491186,0.194642857142868,-0.220732445520196,0.192857142857156,-0.226392251815649,0.013438256658645,0.000000000000000,-0.002118644067739,-0.003571428571424,0.001997578692430,0.003571428571424,-0.013317191283336,-0.000000000000000,2 -9345,9403,9405,9463,0.196428571428580,-0.215012106537102,0.194642857142868,-0.220732445520196,0.194642857142868,-0.207354721549232,0.192857142857156,-0.213075060532325,0.013438256658617,0.000000000000000,-0.001997578692430,-0.003571428571424,0.001876513317123,0.003571428571424,-0.013317191283310,-0.000000000000000,2 -9346,9404,9406,9464,0.196428571428580,-0.201573849878477,0.194642857142868,-0.207354721549232,0.194642857142868,-0.193976997578253,0.192857142857156,-0.199757869249008,0.013438256658632,-0.000000000000000,-0.001876513317123,-0.003571428571424,0.001755447941816,0.003571428571424,-0.013317191283325,-0.000000000000000,2 -9347,9405,9407,9465,0.196428571428580,-0.188135593219856,0.194642857142868,-0.193976997578253,0.194642857142868,-0.180599273607296,0.192857142857156,-0.186440677965693,0.013438256658611,0.000000000000000,-0.001755447941816,-0.003571428571424,0.001634382566509,0.003571428571424,-0.013317191283304,-0.000000000000000,2 -9348,9406,9408,9466,0.196428571428580,-0.174697336561231,0.194642857142868,-0.180599273607296,0.194642857142868,-0.167221549636311,0.192857142857156,-0.173123486682376,0.013438256658639,0.000000000000000,-0.001634382566509,-0.003571428571424,0.001513317191201,0.003571428571424,-0.013317191283331,-0.000000000000000,2 -9349,9407,9409,9467,0.196428571428580,-0.161259079902599,0.194642857142868,-0.167221549636311,0.194642857142868,-0.153843825665341,0.192857142857156,-0.159806295399052,0.013438256658624,0.000000000000000,-0.001513317191201,-0.003571428571424,0.001392251815894,0.003571428571424,-0.013317191283317,-0.000000000000000,2 -9350,9408,9410,9468,0.196428571428580,-0.147820823243974,0.194642857142868,-0.153843825665341,0.194642857142868,-0.140466101694367,0.192857142857156,-0.146489104115734,0.013438256658627,-0.000000000000000,-0.001392251815894,-0.003571428571424,0.001271186440587,0.003571428571424,-0.013317191283320,-0.000000000000000,2 -9351,9409,9411,9469,0.196428571428580,-0.134382566585342,0.194642857142868,-0.140466101694367,0.194642857142868,-0.127088377723384,0.192857142857156,-0.133171912832409,0.013438256658637,0.000000000000000,-0.001271186440587,-0.003571428571424,0.001150121065279,0.003571428571424,-0.013317191283329,-0.000000000000000,2 -9352,9410,9412,9470,0.196428571428580,-0.120944309926717,0.194642857142868,-0.127088377723384,0.194642857142868,-0.113710653752425,0.192857142857156,-0.119854721549092,0.013438256658612,0.000000000000000,-0.001150121065279,-0.003571428571424,0.001029055689972,0.003571428571424,-0.013317191283306,-0.000000000000000,2 -9353,9411,9413,9471,0.196428571428580,-0.107506053268092,0.194642857142868,-0.113710653752425,0.194642857142868,-0.100332929781441,0.192857142857156,-0.106537530265774,0.013438256658638,0.000000000000000,-0.001029055689972,-0.003571428571424,0.000907990314664,0.003571428571424,-0.013317191283329,-0.000000000000000,2 -9354,9412,9414,9472,0.196428571428580,-0.094067796609462,0.194642857142868,-0.100332929781441,0.194642857142868,-0.086955205810472,0.192857142857156,-0.093220338982452,0.013438256658623,0.000000000000000,-0.000907990314664,-0.003571428571424,0.000786924939357,0.003571428571424,-0.013317191283316,-0.000000000000000,2 -9355,9413,9415,9473,0.196428571428580,-0.080629539950833,0.194642857142868,-0.086955205810472,0.194642857142868,-0.073577481839493,0.192857142857156,-0.079903147699131,0.013438256658633,0.000000000000000,-0.000786924939357,-0.003571428571424,0.000665859564048,0.003571428571424,-0.013317191283325,-0.000000000000000,2 -9356,9414,9416,9474,0.196428571428580,-0.067191283292205,0.194642857142868,-0.073577481839493,0.194642857142868,-0.060199757868523,0.192857142857156,-0.066585956415810,0.013438256658623,0.000000000000000,-0.000665859564048,-0.003571428571424,0.000544794188741,0.003571428571424,-0.013317191283316,-0.000000000000000,2 -9357,9415,9417,9475,0.196428571428580,-0.053753026633580,0.194642857142868,-0.060199757868523,0.194642857142868,-0.046822033897549,0.192857142857156,-0.053268765132493,0.013438256658627,-0.000000000000000,-0.000544794188741,-0.003571428571424,0.000423728813434,0.003571428571424,-0.013317191283320,-0.000000000000000,2 -9358,9416,9418,9476,0.196428571428580,-0.040314769974952,0.194642857142868,-0.046822033897549,0.194642857142868,-0.033444309926574,0.192857142857156,-0.039951573849172,0.013438256658629,0.000000000000000,-0.000423728813434,-0.003571428571424,0.000302663438126,0.003571428571424,-0.013317191283321,-0.000000000000000,2 -9359,9417,9419,9477,0.196428571428580,-0.026876513316326,0.194642857142868,-0.033444309926574,0.194642857142868,-0.020066585955605,0.192857142857156,-0.026634382565853,0.013438256658623,-0.000000000000000,-0.000302663438126,-0.003571428571424,0.000181598062819,0.003571428571424,-0.013317191283316,-0.000000000000000,2 -9360,9418,9420,9478,0.196428571428580,-0.013438256657697,0.194642857142868,-0.020066585955605,0.194642857142868,-0.006688861984625,0.192857142857156,-0.013317191282533,0.013438256658633,0.000000000000000,-0.000181598062819,-0.003571428571424,0.000060532687511,0.003571428571424,-0.013317191283325,-0.000000000000000,2 -9361,9419,9421,9479,0.196428571428580,0.000000000000916,0.194642857142868,-0.006688861984625,0.194642857142868,0.006688861986318,0.192857142857156,0.000000000000776,0.013438256658594,0.000000000000000,-0.000060532687511,-0.003571428571424,-0.000060532687791,0.003571428571424,-0.013317191283292,-0.000000000000000,2 -9362,9420,9422,9480,0.196428571428580,0.013438256659494,0.194642857142868,0.006688861986318,0.194642857142868,0.020066585957231,0.192857142857156,0.013317191284054,0.013438256658562,0.000000000000000,0.000060532687791,-0.003571428571424,-0.000181598063089,0.003571428571424,-0.013317191283264,-0.000000000000000,2 -9363,9421,9423,9481,0.196428571428580,0.026876513318056,0.194642857142868,0.020066585957231,0.194642857142868,0.033444309928145,0.192857142857156,0.026634382567319,0.013438256658563,0.000000000000000,0.000181598063089,-0.003571428571424,-0.000302663438386,0.003571428571424,-0.013317191283265,-0.000000000000000,2 -9364,9422,9424,9482,0.196428571428580,0.040314769976619,0.194642857142868,0.033444309928145,0.194642857142868,0.046822033899058,0.192857142857156,0.039951573850584,0.013438256658562,0.000000000000000,0.000302663438386,-0.003571428571424,-0.000423728813683,0.003571428571424,-0.013317191283265,-0.000000000000000,2 -9365,9423,9425,9483,0.196428571428580,0.053753026635181,0.194642857142868,0.046822033899058,0.194642857142868,0.060199757869972,0.192857142857156,0.053268765133849,0.013438256658562,0.000000000000000,0.000423728813683,-0.003571428571424,-0.000544794188981,0.003571428571424,-0.013317191283265,-0.000000000000000,2 -9366,9424,9426,9484,0.196428571428580,0.067191283293743,0.194642857142868,0.060199757869972,0.194642857142868,0.073577481840886,0.192857142857156,0.066585956417114,0.013438256658563,0.000000000000000,0.000544794188981,-0.003571428571424,-0.000665859564278,0.003571428571424,-0.013317191283265,-0.000000000000000,2 -9367,9425,9427,9485,0.196428571428580,0.080629539952306,0.194642857142868,0.073577481840886,0.194642857142868,0.086955205811799,0.192857142857156,0.079903147700379,0.013438256658562,0.000000000000000,0.000665859564278,-0.003571428571424,-0.000786924939576,0.003571428571424,-0.013317191283264,-0.000000000000000,2 -9368,9426,9428,9486,0.196428571428580,0.094067796610862,0.194642857142868,0.086955205811799,0.194642857142868,0.100332929782700,0.192857142857156,0.093220338983637,0.013438256658550,-0.000000000000000,0.000786924939576,-0.003571428571424,-0.000907990314872,0.003571428571424,-0.013317191283254,-0.000000000000000,2 -9369,9427,9429,9487,0.196428571428580,0.107506053269414,0.194642857142868,0.100332929782700,0.194642857142868,0.113710653753607,0.192857142857156,0.106537530266894,0.013438256658555,0.000000000000000,0.000907990314872,-0.003571428571424,-0.001029055690169,0.003571428571424,-0.013317191283259,-0.000000000000000,2 -9370,9428,9430,9488,0.196428571428580,0.120944309927973,0.194642857142868,0.113710653753607,0.194642857142868,0.127088377724520,0.192857142857156,0.119854721550155,0.013438256658562,-0.000000000000000,0.001029055690169,-0.003571428571424,-0.001150121065467,0.003571428571424,-0.013317191283264,-0.000000000000000,2 -9371,9429,9431,9489,0.196428571428580,0.134382566586535,0.194642857142868,0.127088377724520,0.194642857142868,0.140466101695434,0.192857142857156,0.133171912833420,0.013438256658563,0.000000000000000,0.001150121065467,-0.003571428571424,-0.001271186440764,0.003571428571424,-0.013317191283266,-0.000000000000000,2 -9372,9430,9432,9490,0.196428571428580,0.147820823245097,0.194642857142868,0.140466101695434,0.194642857142868,0.153843825666347,0.192857142857156,0.146489104116684,0.013438256658562,0.000000000000000,0.001271186440764,-0.003571428571424,-0.001392251816062,0.003571428571424,-0.013317191283264,-0.000000000000000,2 -9373,9431,9433,9491,0.196428571428580,0.161259079903660,0.194642857142868,0.153843825666347,0.194642857142868,0.167221549637261,0.192857142857156,0.159806295399949,0.013438256658563,-0.000000000000000,0.001392251816062,-0.003571428571424,-0.001513317191359,0.003571428571424,-0.013317191283265,-0.000000000000000,2 -9374,9432,9434,9492,0.196428571428580,0.174697336562221,0.194642857142868,0.167221549637261,0.194642857142868,0.180599273608173,0.192857142857156,0.173123486683213,0.013438256658561,0.000000000000000,0.001513317191359,-0.003571428571424,-0.001634382566658,0.003571428571424,-0.013317191283262,-0.000000000000000,2 -9375,9433,9435,9493,0.196428571428580,0.188135593220783,0.194642857142868,0.180599273608173,0.194642857142868,0.193976997579085,0.192857142857156,0.186440677966476,0.013438256658562,0.000000000000000,0.001634382566658,-0.003571428571424,-0.001755447941956,0.003571428571424,-0.013317191283264,-0.000000000000000,2 -9376,9434,9436,9494,0.196428571428580,0.201573849879345,0.194642857142868,0.193976997579085,0.194642857142868,0.207354721550001,0.192857142857156,0.199757869249741,0.013438256658563,0.000000000000000,0.001755447941956,-0.003571428571424,-0.001876513317252,0.003571428571424,-0.013317191283267,-0.000000000000000,2 -9377,9435,9437,9495,0.196428571428580,0.215012106537907,0.194642857142868,0.207354721550001,0.194642857142868,0.220732445520912,0.192857142857156,0.213075060533006,0.013438256658561,0.000000000000000,0.001876513317252,-0.003571428571424,-0.001997578692551,0.003571428571424,-0.013317191283262,-0.000000000000000,2 -9378,9436,9438,9496,0.196428571428580,0.228450363196470,0.194642857142868,0.220732445520912,0.194642857142868,0.234110169491828,0.192857142857156,0.226392251816271,0.013438256658564,0.000000000000000,0.001997578692551,-0.003571428571424,-0.002118644067847,0.003571428571424,-0.013317191283268,-0.000000000000000,2 -9379,9437,9439,9497,0.196428571428580,0.241888619855032,0.194642857142868,0.234110169491828,0.194642857142868,0.247487893462740,0.192857142857156,0.239709443099536,0.013438256658561,-0.000000000000000,0.002118644067847,-0.003571428571424,-0.002239709443146,0.003571428571424,-0.013317191283262,-0.000000000000000,2 -9380,9438,9440,9498,0.196428571428580,0.255326876513594,0.194642857142868,0.247487893462740,0.194642857142868,0.260865617433655,0.192857142857156,0.253026634382800,0.013438256658563,0.000000000000000,0.002239709443146,-0.003571428571424,-0.002360774818443,0.003571428571424,-0.013317191283266,-0.000000000000000,2 -9381,9439,9441,9499,0.196428571428580,0.268765133172157,0.194642857142868,0.260865617433655,0.194642857142868,0.274243341404568,0.192857142857156,0.266343825666065,0.013438256658562,0.000000000000000,0.002360774818443,-0.003571428571424,-0.002481840193741,0.003571428571424,-0.013317191283264,-0.000000000000000,2 -9382,9440,9442,9500,0.196428571428580,0.282203389830719,0.194642857142868,0.274243341404568,0.194642857142868,0.287621065375481,0.192857142857156,0.279661016949330,0.013438256658562,0.000000000000000,0.002481840193741,-0.003571428571424,-0.002602905569038,0.003571428571424,-0.013317191283264,-0.000000000000000,2 -9383,9441,9443,9501,0.196428571428580,0.295641646489291,0.194642857142868,0.287621065375481,0.194642857142868,0.300998789346413,0.192857142857156,0.292978208232603,0.013438256658582,0.000000000000000,0.002602905569038,-0.003571428571424,-0.002723970944337,0.003571428571424,-0.013317191283283,-0.000000000000000,2 -9384,9442,9444,9502,0.196428571428580,0.309079903147868,0.194642857142868,0.300998789346413,0.194642857142868,0.314376513317336,0.192857142857156,0.306295399515881,0.013438256658573,0.000000000000000,0.002723970944337,-0.003571428571424,-0.002845036319636,0.003571428571424,-0.013317191283273,-0.000000000000000,2 -9385,9443,9445,9503,0.196428571428580,0.322518159806447,0.194642857142868,0.314376513317336,0.194642857142868,0.327754237288273,0.192857142857156,0.319612590799162,0.013438256658586,0.000000000000000,0.002845036319636,-0.003571428571424,-0.002966101694933,0.003571428571424,-0.013317191283289,-0.000000000000000,2 -9386,9444,9446,9504,0.196428571428580,0.335956416465025,0.194642857142868,0.327754237288273,0.194642857142868,0.341131961259193,0.192857142857156,0.332929782082442,0.013438256658570,0.000000000000000,0.002966101694933,-0.003571428571424,-0.003087167070233,0.003571428571424,-0.013317191283270,-0.000000000000000,2 -9387,9445,9447,9505,0.196428571428580,0.349394673123591,0.194642857142868,0.341131961259193,0.194642857142868,0.354509685230108,0.192857142857156,0.346246973365710,0.013438256658563,0.000000000000000,0.003087167070233,-0.003571428571424,-0.003208232445530,0.003571428571424,-0.013317191283267,-0.000000000000000,2 -9388,9446,9448,9506,0.196428571428580,0.362832929782154,0.194642857142868,0.354509685230108,0.194642857142868,0.367887409201021,0.192857142857156,0.359564164648975,0.013438256658562,0.000000000000000,0.003208232445530,-0.003571428571424,-0.003329297820828,0.003571428571424,-0.013317191283264,-0.000000000000000,2 -9389,9447,9449,9507,0.196428571428580,0.376271186440716,0.194642857142868,0.367887409201021,0.194642857142868,0.381265133171935,0.192857142857156,0.372881355932240,0.013438256658562,0.000000000000000,0.003329297820828,-0.003571428571424,-0.003450363196125,0.003571428571424,-0.013317191283265,-0.000000000000000,2 -7706,9390,9448,9508,0.194642857142868,0.394642857142868,0.196428571428580,0.389709443099289,0.194642857142868,0.381265133171935,0.192857142857156,0.386198547215514,-0.003571428571424,0.003571428571424,0.013438256658583,-0.000000000000000,0.003450363196125,-0.003571428571424,-0.013317191283285,0.000000000000000,2 -9273,9391,9451,9509,0.191071428571443,-0.391071428571443,0.192857142857156,-0.386198547215497,0.191071428571443,-0.377814769975777,0.189285714285730,-0.382687651331724,-0.003571428571426,-0.003571428571426,0.013317191283319,0.000000000000000,0.003450363196119,0.003571428571426,-0.013196125908013,-0.000000000000000,2 -9392,9450,9452,9510,0.192857142857156,-0.372881355932172,0.191071428571443,-0.377814769975777,0.191071428571443,-0.364558111380101,0.189285714285730,-0.369491525423707,0.013317191283330,0.000000000000000,-0.003450363196119,-0.003571428571426,0.003329297820811,0.003571428571426,-0.013196125908022,-0.000000000000000,2 -9393,9451,9453,9511,0.192857142857156,-0.359564164648853,0.191071428571443,-0.364558111380101,0.191071428571443,-0.351301452784446,0.189285714285730,-0.356295399515694,0.013317191283308,0.000000000000000,-0.003329297820811,-0.003571428571426,0.003208232445506,0.003571428571426,-0.013196125908003,-0.000000000000000,2 -9394,9452,9454,9512,0.192857142857156,-0.346246973365531,0.191071428571443,-0.351301452784446,0.191071428571443,-0.338044794188764,0.189285714285730,-0.343099273607679,0.013317191283336,0.000000000000000,-0.003208232445506,-0.003571428571426,0.003087167070197,0.003571428571426,-0.013196125908027,-0.000000000000000,2 -9395,9453,9455,9513,0.192857142857156,-0.332929782082211,0.191071428571443,-0.338044794188764,0.191071428571443,-0.324788135593112,0.189285714285730,-0.329903147699666,0.013317191283305,0.000000000000000,-0.003087167070197,-0.003571428571426,0.002966101694892,0.003571428571426,-0.013196125908000,-0.000000000000000,2 -9396,9454,9456,9514,0.192857142857156,-0.319612590798892,0.191071428571443,-0.324788135593112,0.191071428571443,-0.311531476997433,0.189285714285730,-0.316707021791653,0.013317191283334,0.000000000000000,-0.002966101694892,-0.003571428571426,0.002845036319584,0.003571428571426,-0.013196125908025,-0.000000000000000,2 -9397,9455,9457,9515,0.192857142857156,-0.306295399515567,0.191071428571443,-0.311531476997433,0.191071428571443,-0.298274818401770,0.189285714285730,-0.303510895883636,0.013317191283316,0.000000000000000,-0.002845036319584,-0.003571428571426,0.002723970944277,0.003571428571426,-0.013196125908010,-0.000000000000000,2 -9398,9456,9458,9516,0.192857142857156,-0.292978208232249,0.191071428571443,-0.298274818401770,0.191071428571443,-0.285018159806104,0.189285714285730,-0.290314769975625,0.013317191283320,0.000000000000000,-0.002723970944277,-0.003571428571426,0.002602905568969,0.003571428571426,-0.013196125908012,-0.000000000000000,2 -9399,9457,9459,9517,0.192857142857156,-0.279661016948926,0.191071428571443,-0.285018159806104,0.191071428571443,-0.271761501210433,0.189285714285730,-0.277118644067611,0.013317191283326,0.000000000000000,-0.002602905568969,-0.003571428571426,0.002481840193661,0.003571428571426,-0.013196125908017,0.000000000000000,2 -9400,9458,9460,9518,0.192857142857156,-0.266343825665608,0.191071428571443,-0.271761501210433,0.191071428571443,-0.258504842614776,0.189285714285730,-0.263922518159600,0.013317191283310,0.000000000000000,-0.002481840193661,-0.003571428571426,0.002360774818355,0.003571428571426,-0.013196125908004,-0.000000000000000,2 -9401,9459,9461,9519,0.192857142857156,-0.253026634382285,0.191071428571443,-0.258504842614776,0.191071428571443,-0.245248184019093,0.189285714285730,-0.250726392251584,0.013317191283337,0.000000000000000,-0.002360774818355,-0.003571428571426,0.002239709443046,0.003571428571426,-0.013196125908028,-0.000000000000000,2 -9402,9460,9462,9520,0.192857142857156,-0.239709443098967,0.191071428571443,-0.245248184019093,0.191071428571443,-0.231991525423446,0.189285714285730,-0.237530266343573,0.013317191283300,0.000000000000000,-0.002239709443046,-0.003571428571426,0.002118644067741,0.003571428571426,-0.013196125907994,-0.000000000000000,2 -9403,9461,9463,9521,0.192857142857156,-0.226392251815649,0.191071428571443,-0.231991525423446,0.191071428571443,-0.218734866827765,0.189285714285730,-0.224334140435562,0.013317191283336,0.000000000000000,-0.002118644067741,-0.003571428571426,0.001997578692432,0.003571428571426,-0.013196125908027,-0.000000000000000,2 -9404,9462,9464,9522,0.192857142857156,-0.213075060532325,0.191071428571443,-0.218734866827765,0.191071428571443,-0.205478208232108,0.189285714285730,-0.211138014527547,0.013317191283310,0.000000000000000,-0.001997578692432,-0.003571428571426,0.001876513317125,0.003571428571426,-0.013196125908004,-0.000000000000000,2 -9405,9463,9465,9523,0.192857142857156,-0.199757869249008,0.191071428571443,-0.205478208232108,0.191071428571443,-0.192221549636437,0.189285714285730,-0.197941888619537,0.013317191283325,0.000000000000000,-0.001876513317125,-0.003571428571426,0.001755447941817,0.003571428571426,-0.013196125908016,-0.000000000000000,2 -9406,9464,9466,9524,0.192857142857156,-0.186440677965693,0.191071428571443,-0.192221549636437,0.191071428571443,-0.178964891040786,0.189285714285730,-0.184745762711530,0.013317191283304,0.000000000000000,-0.001755447941817,-0.003571428571426,0.001634382566510,0.003571428571426,-0.013196125907998,-0.000000000000000,2 -9407,9465,9467,9525,0.192857142857156,-0.173123486682376,0.191071428571443,-0.178964891040786,0.191071428571443,-0.165708232445110,0.189285714285730,-0.171549636803520,0.013317191283331,0.000000000000000,-0.001634382566510,-0.003571428571426,0.001513317191202,0.003571428571426,-0.013196125908022,-0.000000000000000,2 -9408,9466,9468,9526,0.192857142857156,-0.159806295399052,0.191071428571443,-0.165708232445110,0.191071428571443,-0.152451573849447,0.189285714285730,-0.158353510895504,0.013317191283317,0.000000000000000,-0.001513317191202,-0.003571428571426,0.001392251815894,0.003571428571426,-0.013196125908009,-0.000000000000000,2 -9409,9467,9469,9527,0.192857142857156,-0.146489104115734,0.191071428571443,-0.152451573849447,0.191071428571443,-0.139194915253780,0.189285714285730,-0.145157384987493,0.013317191283320,0.000000000000000,-0.001392251815894,-0.003571428571426,0.001271186440588,0.003571428571426,-0.013196125908013,-0.000000000000000,2 -9410,9468,9470,9528,0.192857142857156,-0.133171912832409,0.191071428571443,-0.139194915253780,0.191071428571443,-0.125938256658105,0.189285714285730,-0.131961259079476,0.013317191283329,0.000000000000000,-0.001271186440588,-0.003571428571426,0.001150121065279,0.003571428571426,-0.013196125908021,-0.000000000000000,2 -9411,9469,9471,9529,0.192857142857156,-0.119854721549092,0.191071428571443,-0.125938256658105,0.191071428571443,-0.112681598062452,0.189285714285730,-0.118765133171466,0.013317191283306,0.000000000000000,-0.001150121065279,-0.003571428571426,0.001029055689973,0.003571428571426,-0.013196125907999,-0.000000000000000,2 -9412,9470,9472,9530,0.192857142857156,-0.106537530265774,0.191071428571443,-0.112681598062452,0.191071428571443,-0.099424939466777,0.189285714285730,-0.105569007263456,0.013317191283329,0.000000000000000,-0.001029055689973,-0.003571428571426,0.000907990314664,0.003571428571426,-0.013196125908021,-0.000000000000000,2 -9413,9471,9473,9531,0.192857142857156,-0.093220338982452,0.191071428571443,-0.099424939466777,0.191071428571443,-0.086168280871115,0.189285714285730,-0.092372881355441,0.013317191283316,0.000000000000000,-0.000907990314664,-0.003571428571426,0.000786924939357,0.003571428571426,-0.013196125908009,-0.000000000000000,2 -9414,9472,9474,9532,0.192857142857156,-0.079903147699131,0.191071428571443,-0.086168280871115,0.191071428571443,-0.072911622275444,0.189285714285730,-0.079176755447428,0.013317191283325,0.000000000000000,-0.000786924939357,-0.003571428571426,0.000665859564049,0.003571428571426,-0.013196125908017,-0.000000000000000,2 -9415,9473,9475,9533,0.192857142857156,-0.066585956415810,0.191071428571443,-0.072911622275444,0.191071428571443,-0.059654963679782,0.189285714285730,-0.065980629539415,0.013317191283316,0.000000000000000,-0.000665859564049,-0.003571428571426,0.000544794188742,0.003571428571426,-0.013196125908009,-0.000000000000000,2 -9416,9474,9476,9534,0.192857142857156,-0.053268765132493,0.191071428571443,-0.059654963679782,0.191071428571443,-0.046398305084116,0.189285714285730,-0.052784503631405,0.013317191283320,0.000000000000000,-0.000544794188742,-0.003571428571426,0.000423728813434,0.003571428571426,-0.013196125908012,-0.000000000000000,2 -9417,9475,9477,9535,0.192857142857156,-0.039951573849172,0.191071428571443,-0.046398305084116,0.191071428571443,-0.033141646488448,0.189285714285730,-0.039588377723392,0.013317191283321,0.000000000000000,-0.000423728813434,-0.003571428571426,0.000302663438126,0.003571428571426,-0.013196125908014,-0.000000000000000,2 -9418,9476,9478,9536,0.192857142857156,-0.026634382565853,0.191071428571443,-0.033141646488448,0.191071428571443,-0.019884987892786,0.189285714285730,-0.026392251815381,0.013317191283316,0.000000000000000,-0.000302663438126,-0.003571428571426,0.000181598062819,0.003571428571426,-0.013196125908009,-0.000000000000000,2 -9419,9477,9479,9537,0.192857142857156,-0.013317191282533,0.191071428571443,-0.019884987892786,0.191071428571443,-0.006628329297115,0.189285714285730,-0.013196125907368,0.013317191283325,0.000000000000000,-0.000181598062819,-0.003571428571426,0.000060532687511,0.003571428571426,-0.013196125908017,-0.000000000000000,2 -9420,9478,9480,9538,0.192857142857156,0.000000000000776,0.191071428571443,-0.006628329297115,0.191071428571443,0.006628329298527,0.189285714285730,0.000000000000636,0.013317191283292,0.000000000000000,-0.000060532687511,-0.003571428571426,-0.000060532687791,0.003571428571426,-0.013196125907991,-0.000000000000000,2 -9421,9479,9481,9539,0.192857142857156,0.013317191284054,0.191071428571443,0.006628329298527,0.191071428571443,0.019884987894142,0.189285714285730,0.013196125908614,0.013317191283264,0.000000000000000,0.000060532687791,-0.003571428571426,-0.000181598063089,0.003571428571426,-0.013196125907966,-0.000000000000000,2 -9422,9480,9482,9540,0.192857142857156,0.026634382567319,0.191071428571443,0.019884987894142,0.191071428571443,0.033141646489759,0.189285714285730,0.026392251816582,0.013317191283265,0.000000000000000,0.000181598063089,-0.003571428571426,-0.000302663438386,0.003571428571426,-0.013196125907968,-0.000000000000000,2 -9423,9481,9483,9541,0.192857142857156,0.039951573850584,0.191071428571443,0.033141646489759,0.191071428571443,0.046398305085374,0.189285714285730,0.039588377724549,0.013317191283265,0.000000000000000,0.000302663438386,-0.003571428571426,-0.000423728813684,0.003571428571426,-0.013196125907967,-0.000000000000000,2 -9424,9482,9484,9542,0.192857142857156,0.053268765133849,0.191071428571443,0.046398305085374,0.191071428571443,0.059654963680990,0.189285714285730,0.052784503632516,0.013317191283265,0.000000000000000,0.000423728813684,-0.003571428571426,-0.000544794188981,0.003571428571426,-0.013196125907967,-0.000000000000000,2 -9425,9483,9485,9543,0.192857142857156,0.066585956417114,0.191071428571443,0.059654963680990,0.191071428571443,0.072911622276607,0.189285714285730,0.065980629540484,0.013317191283265,0.000000000000000,0.000544794188981,-0.003571428571426,-0.000665859564279,0.003571428571426,-0.013196125907968,-0.000000000000000,2 -9426,9484,9486,9544,0.192857142857156,0.079903147700379,0.191071428571443,0.072911622276607,0.191071428571443,0.086168280872222,0.189285714285730,0.079176755448451,0.013317191283264,0.000000000000000,0.000665859564279,-0.003571428571426,-0.000786924939577,0.003571428571426,-0.013196125907966,-0.000000000000000,2 -9427,9485,9487,9545,0.192857142857156,0.093220338983637,0.191071428571443,0.086168280872222,0.191071428571443,0.099424939467828,0.189285714285730,0.092372881356413,0.013317191283254,0.000000000000000,0.000786924939577,-0.003571428571426,-0.000907990314873,0.003571428571426,-0.013196125907958,-0.000000000000000,2 -9428,9486,9488,9546,0.192857142857156,0.106537530266894,0.191071428571443,0.099424939467828,0.191071428571443,0.112681598063438,0.189285714285730,0.105569007264373,0.013317191283259,0.000000000000000,0.000907990314873,-0.003571428571426,-0.001029055690170,0.003571428571426,-0.013196125907962,-0.000000000000000,2 -9429,9487,9489,9547,0.192857142857156,0.119854721550155,0.191071428571443,0.112681598063438,0.191071428571443,0.125938256659053,0.189285714285730,0.118765133172337,0.013317191283264,0.000000000000000,0.001029055690170,-0.003571428571426,-0.001150121065467,0.003571428571426,-0.013196125907966,-0.000000000000000,2 -9430,9488,9490,9548,0.192857142857156,0.133171912833420,0.191071428571443,0.125938256659053,0.191071428571443,0.139194915254670,0.189285714285730,0.131961259080304,0.013317191283266,0.000000000000000,0.001150121065467,-0.003571428571426,-0.001271186440765,0.003571428571426,-0.013196125907968,-0.000000000000000,2 -9431,9489,9491,9549,0.192857142857156,0.146489104116684,0.191071428571443,0.139194915254670,0.191071428571443,0.152451573850285,0.189285714285730,0.145157384988271,0.013317191283264,0.000000000000000,0.001271186440765,-0.003571428571426,-0.001392251816063,0.003571428571426,-0.013196125907966,-0.000000000000000,2 -9432,9490,9492,9550,0.192857142857156,0.159806295399949,0.191071428571443,0.152451573850285,0.191071428571443,0.165708232445902,0.189285714285730,0.158353510896238,0.013317191283265,0.000000000000000,0.001392251816063,-0.003571428571426,-0.001513317191360,0.003571428571426,-0.013196125907968,-0.000000000000000,2 -9433,9491,9493,9551,0.192857142857156,0.173123486683213,0.191071428571443,0.165708232445902,0.191071428571443,0.178964891041514,0.189285714285730,0.171549636804203,0.013317191283262,0.000000000000000,0.001513317191360,-0.003571428571426,-0.001634382566659,0.003571428571426,-0.013196125907963,-0.000000000000000,2 -9434,9492,9494,9552,0.192857142857156,0.186440677966476,0.191071428571443,0.178964891041514,0.191071428571443,0.192221549637129,0.189285714285730,0.184745762712168,0.013317191283264,0.000000000000000,0.001634382566659,-0.003571428571426,-0.001755447941957,0.003571428571426,-0.013196125907965,-0.000000000000000,2 -9435,9493,9495,9553,0.192857142857156,0.199757869249741,0.191071428571443,0.192221549637129,0.191071428571443,0.205478208232748,0.189285714285730,0.197941888620136,0.013317191283267,0.000000000000000,0.001755447941957,-0.003571428571426,-0.001876513317254,0.003571428571426,-0.013196125907970,-0.000000000000000,2 -9436,9494,9496,9554,0.192857142857156,0.213075060533006,0.191071428571443,0.205478208232748,0.191071428571443,0.218734866828360,0.189285714285730,0.211138014528102,0.013317191283262,0.000000000000000,0.001876513317254,-0.003571428571426,-0.001997578692553,0.003571428571426,-0.013196125907963,-0.000000000000000,2 -9437,9495,9497,9555,0.192857142857156,0.226392251816271,0.191071428571443,0.218734866828360,0.191071428571443,0.231991525423981,0.189285714285730,0.224334140436070,0.013317191283268,0.000000000000000,0.001997578692553,-0.003571428571426,-0.002118644067848,0.003571428571426,-0.013196125907973,-0.000000000000000,2 -9438,9496,9498,9556,0.192857142857156,0.239709443099536,0.191071428571443,0.231991525423981,0.191071428571443,0.245248184019593,0.189285714285730,0.237530266344038,0.013317191283262,0.000000000000000,0.002118644067848,-0.003571428571426,-0.002239709443147,0.003571428571426,-0.013196125907963,-0.000000000000000,2 -9439,9497,9499,9557,0.192857142857156,0.253026634382800,0.191071428571443,0.245248184019593,0.191071428571443,0.258504842615211,0.189285714285730,0.250726392252004,0.013317191283266,0.000000000000000,0.002239709443147,-0.003571428571426,-0.002360774818444,0.003571428571426,-0.013196125907969,-0.000000000000000,2 -9440,9498,9500,9558,0.192857142857156,0.266343825666065,0.191071428571443,0.258504842615211,0.191071428571443,0.271761501210827,0.189285714285730,0.263922518159972,0.013317191283264,0.000000000000000,0.002360774818444,-0.003571428571426,-0.002481840193742,0.003571428571426,-0.013196125907966,-0.000000000000000,2 -9441,9499,9501,9559,0.192857142857156,0.279661016949330,0.191071428571443,0.271761501210827,0.191071428571443,0.285018159806442,0.189285714285730,0.277118644067939,0.013317191283264,0.000000000000000,0.002481840193742,-0.003571428571426,-0.002602905569040,0.003571428571426,-0.013196125907966,-0.000000000000000,2 -9442,9500,9502,9560,0.192857142857156,0.292978208232603,0.191071428571443,0.285018159806442,0.191071428571443,0.298274818402076,0.189285714285730,0.290314769975914,0.013317191283283,0.000000000000000,0.002602905569040,-0.003571428571426,-0.002723970944338,0.003571428571426,-0.013196125907985,-0.000000000000000,2 -9443,9501,9503,9561,0.192857142857156,0.306295399515881,0.191071428571443,0.298274818402076,0.191071428571443,0.311531476997699,0.189285714285730,0.303510895883893,0.013317191283273,0.000000000000000,0.002723970944338,-0.003571428571426,-0.002845036319638,0.003571428571426,-0.013196125907973,-0.000000000000000,2 -9444,9502,9504,9562,0.192857142857156,0.319612590799162,0.191071428571443,0.311531476997699,0.191071428571443,0.324788135593339,0.189285714285730,0.316707021791875,0.013317191283289,0.000000000000000,0.002845036319638,-0.003571428571426,-0.002966101694936,0.003571428571426,-0.013196125907991,-0.000000000000000,2 -9445,9503,9505,9563,0.192857142857156,0.332929782082442,0.191071428571443,0.324788135593339,0.191071428571443,0.338044794188959,0.189285714285730,0.329903147699856,0.013317191283270,0.000000000000000,0.002966101694936,-0.003571428571426,-0.003087167070235,0.003571428571426,-0.013196125907970,-0.000000000000000,2 -9446,9504,9506,9564,0.192857142857156,0.346246973365710,0.191071428571443,0.338044794188959,0.191071428571443,0.351301452784578,0.189285714285730,0.343099273607826,0.013317191283267,0.000000000000000,0.003087167070235,-0.003571428571426,-0.003208232445532,0.003571428571426,-0.013196125907970,-0.000000000000000,2 -9447,9505,9507,9565,0.192857142857156,0.359564164648975,0.191071428571443,0.351301452784578,0.191071428571443,0.364558111380192,0.189285714285730,0.356295399515794,0.013317191283264,0.000000000000000,0.003208232445532,-0.003571428571426,-0.003329297820830,0.003571428571426,-0.013196125907966,-0.000000000000000,2 -9448,9506,9508,9566,0.192857142857156,0.372881355932240,0.191071428571443,0.364558111380192,0.191071428571443,0.377814769975808,0.189285714285730,0.369491525423761,0.013317191283265,0.000000000000000,0.003329297820830,-0.003571428571426,-0.003450363196127,0.003571428571426,-0.013196125907967,-0.000000000000000,2 -7705,9449,9507,9567,0.191071428571443,0.391071428571443,0.192857142857156,0.386198547215514,0.191071428571443,0.377814769975808,0.189285714285730,0.382687651331737,-0.003571428571426,0.003571428571426,0.013317191283285,-0.000000000000000,0.003450363196127,-0.003571428571426,-0.013196125907986,0.000000000000000,2 -9244,9450,9510,9568,0.187500000000027,-0.387500000000027,0.189285714285730,-0.382687651331724,0.187500000000027,-0.374364406779668,0.185714285714324,-0.379176755447971,-0.003571428571406,-0.003571428571406,0.013196125908013,0.000000000000000,0.003450363196100,0.003571428571406,-0.013075060532706,-0.000000000000000,2 -9451,9509,9511,9569,0.189285714285730,-0.369491525423707,0.187500000000027,-0.374364406779668,0.187500000000027,-0.361228813559299,0.185714285714324,-0.366101694915260,0.013196125908022,0.000000000000000,-0.003450363196100,-0.003571428571406,0.003329297820792,0.003571428571406,-0.013075060532714,-0.000000000000000,2 -9452,9510,9512,9570,0.189285714285730,-0.356295399515694,0.187500000000027,-0.361228813559299,0.187500000000027,-0.348093220338949,0.185714285714324,-0.353026634382554,0.013196125908003,0.000000000000000,-0.003329297820792,-0.003571428571406,0.003208232445488,0.003571428571406,-0.013075060532698,0.000000000000000,2 -9453,9511,9513,9571,0.189285714285730,-0.343099273607679,0.187500000000027,-0.348093220338949,0.187500000000027,-0.334957627118576,0.185714285714324,-0.339951573849845,0.013196125908027,0.000000000000000,-0.003208232445488,-0.003571428571406,0.003087167070180,0.003571428571406,-0.013075060532719,-0.000000000000000,2 -9454,9512,9514,9572,0.189285714285730,-0.329903147699666,0.187500000000027,-0.334957627118576,0.187500000000027,-0.321822033898228,0.185714285714324,-0.326876513317138,0.013196125908000,0.000000000000000,-0.003087167070180,-0.003571428571406,0.002966101694876,0.003571428571406,-0.013075060532696,-0.000000000000000,2 -9455,9513,9515,9573,0.189285714285730,-0.316707021791653,0.187500000000027,-0.321822033898228,0.187500000000027,-0.308686440677857,0.185714285714324,-0.313801452784432,0.013196125908025,0.000000000000000,-0.002966101694876,-0.003571428571406,0.002845036319568,0.003571428571406,-0.013075060532717,-0.000000000000000,2 -9456,9514,9516,9574,0.189285714285730,-0.303510895883636,0.187500000000027,-0.308686440677857,0.187500000000027,-0.295550847457500,0.185714285714324,-0.300726392251721,0.013196125908010,0.000000000000000,-0.002845036319568,-0.003571428571406,0.002723970944262,0.003571428571406,-0.013075060532704,-0.000000000000000,2 -9457,9515,9517,9575,0.189285714285730,-0.290314769975625,0.187500000000027,-0.295550847457500,0.187500000000027,-0.282415254237142,0.185714285714324,-0.287651331719017,0.013196125908012,0.000000000000000,-0.002723970944262,-0.003571428571406,0.002602905568955,0.003571428571406,-0.013075060532704,-0.000000000000000,2 -9458,9516,9518,9576,0.189285714285730,-0.277118644067611,0.187500000000027,-0.282415254237142,0.187500000000027,-0.269279661016779,0.185714285714324,-0.274576271186310,0.013196125908017,-0.000000000000000,-0.002602905568955,-0.003571428571406,0.002481840193647,0.003571428571406,-0.013075060532710,-0.000000000000000,2 -9459,9517,9519,9577,0.189285714285730,-0.263922518159600,0.187500000000027,-0.269279661016779,0.187500000000027,-0.256144067796428,0.185714285714324,-0.261501210653606,0.013196125908004,0.000000000000000,-0.002481840193647,-0.003571428571406,0.002360774818342,0.003571428571406,-0.013075060532698,-0.000000000000000,2 -9460,9518,9520,9578,0.189285714285730,-0.250726392251584,0.187500000000027,-0.256144067796428,0.187500000000027,-0.243008474576054,0.185714285714324,-0.248426150120897,0.013196125908028,0.000000000000000,-0.002360774818342,-0.003571428571406,0.002239709443034,0.003571428571406,-0.013075060532720,-0.000000000000000,2 -9461,9519,9521,9579,0.189285714285730,-0.237530266343573,0.187500000000027,-0.243008474576054,0.187500000000027,-0.229872881355712,0.185714285714324,-0.235351089588192,0.013196125907994,0.000000000000000,-0.002239709443034,-0.003571428571406,0.002118644067729,0.003571428571406,-0.013075060532690,-0.000000000000000,2 -9462,9520,9522,9580,0.189285714285730,-0.224334140435562,0.187500000000027,-0.229872881355712,0.187500000000027,-0.216737288135339,0.185714285714324,-0.222276029055488,0.013196125908027,0.000000000000000,-0.002118644067729,-0.003571428571406,0.001997578692420,0.003571428571406,-0.013075060532719,0.000000000000000,2 -9463,9521,9523,9581,0.189285714285730,-0.211138014527547,0.187500000000027,-0.216737288135339,0.187500000000027,-0.203601694914988,0.185714285714324,-0.209200968522780,0.013196125908004,0.000000000000000,-0.001997578692420,-0.003571428571406,0.001876513317114,0.003571428571406,-0.013075060532697,-0.000000000000000,2 -9464,9522,9524,9582,0.189285714285730,-0.197941888619537,0.187500000000027,-0.203601694914988,0.187500000000027,-0.190466101694625,0.185714285714324,-0.196125907990077,0.013196125908016,0.000000000000000,-0.001876513317114,-0.003571428571406,0.001755447941807,0.003571428571406,-0.013075060532709,-0.000000000000000,2 -9465,9523,9525,9583,0.189285714285730,-0.184745762711530,0.187500000000027,-0.190466101694625,0.187500000000027,-0.177330508474280,0.185714285714324,-0.183050847457376,0.013196125907998,0.000000000000000,-0.001755447941807,-0.003571428571406,0.001634382566501,0.003571428571406,-0.013075060532692,-0.000000000000000,2 -9466,9524,9526,9584,0.189285714285730,-0.171549636803520,0.187500000000027,-0.177330508474280,0.187500000000027,-0.164194915253912,0.185714285714324,-0.169975786924672,0.013196125908022,0.000000000000000,-0.001634382566501,-0.003571428571406,0.001513317191193,0.003571428571406,-0.013075060532714,-0.000000000000000,2 -9467,9525,9527,9585,0.189285714285730,-0.158353510895504,0.187500000000027,-0.164194915253912,0.187500000000027,-0.151059322033556,0.185714285714324,-0.156900726391964,0.013196125908009,0.000000000000000,-0.001513317191193,-0.003571428571406,0.001392251815887,0.003571428571406,-0.013075060532702,0.000000000000000,2 -9468,9526,9528,9586,0.189285714285730,-0.145157384987493,0.187500000000027,-0.151059322033556,0.187500000000027,-0.137923728813196,0.185714285714324,-0.143825665859259,0.013196125908013,0.000000000000000,-0.001392251815887,-0.003571428571406,0.001271186440581,0.003571428571406,-0.013075060532707,-0.000000000000000,2 -9469,9527,9529,9587,0.189285714285730,-0.131961259079476,0.187500000000027,-0.137923728813196,0.187500000000027,-0.124788135592829,0.185714285714324,-0.130750605326549,0.013196125908021,0.000000000000000,-0.001271186440581,-0.003571428571406,0.001150121065273,0.003571428571406,-0.013075060532713,0.000000000000000,2 -9470,9528,9530,9588,0.189285714285730,-0.118765133171466,0.187500000000027,-0.124788135592829,0.187500000000027,-0.111652542372483,0.185714285714324,-0.117675544793846,0.013196125907999,0.000000000000000,-0.001150121065273,-0.003571428571406,0.001029055689967,0.003571428571406,-0.013075060532694,-0.000000000000000,2 -9471,9529,9531,9589,0.189285714285730,-0.105569007263456,0.187500000000027,-0.111652542372483,0.187500000000027,-0.098516949152116,0.185714285714324,-0.104600484261143,0.013196125908021,0.000000000000000,-0.001029055689967,-0.003571428571406,0.000907990314659,0.003571428571406,-0.013075060532713,-0.000000000000000,2 -9472,9530,9532,9590,0.189285714285730,-0.092372881355441,0.187500000000027,-0.098516949152116,0.187500000000027,-0.085381355931760,0.185714285714324,-0.091525423728435,0.013196125908009,0.000000000000000,-0.000907990314659,-0.003571428571406,0.000786924939353,0.003571428571406,-0.013075060532702,-0.000000000000000,2 -9473,9531,9533,9591,0.189285714285730,-0.079176755447428,0.187500000000027,-0.085381355931760,0.187500000000027,-0.072245762711397,0.185714285714324,-0.078450363195729,0.013196125908017,0.000000000000000,-0.000786924939353,-0.003571428571406,0.000665859564045,0.003571428571406,-0.013075060532710,-0.000000000000000,2 -9474,9532,9534,9592,0.189285714285730,-0.065980629539415,0.187500000000027,-0.072245762711397,0.187500000000027,-0.059110169491042,0.185714285714324,-0.065375302663023,0.013196125908009,0.000000000000000,-0.000665859564045,-0.003571428571406,0.000544794188738,0.003571428571406,-0.013075060532702,-0.000000000000000,2 -9475,9533,9535,9593,0.189285714285730,-0.052784503631405,0.187500000000027,-0.059110169491042,0.187500000000027,-0.045974576270683,0.185714285714324,-0.052300242130320,0.013196125908012,0.000000000000000,-0.000544794188738,-0.003571428571406,0.000423728813432,0.003571428571406,-0.013075060532705,-0.000000000000000,2 -9476,9534,9536,9594,0.189285714285730,-0.039588377723392,0.187500000000027,-0.045974576270683,0.187500000000027,-0.032838983050323,0.185714285714324,-0.039225181597614,0.013196125908014,0.000000000000000,-0.000423728813432,-0.003571428571406,0.000302663438125,0.003571428571406,-0.013075060532707,-0.000000000000000,2 -9477,9535,9537,9595,0.189285714285730,-0.026392251815381,0.187500000000027,-0.032838983050323,0.187500000000027,-0.019703389829968,0.185714285714324,-0.026150121064910,0.013196125908009,0.000000000000000,-0.000302663438125,-0.003571428571406,0.000181598062818,0.003571428571406,-0.013075060532702,-0.000000000000000,2 -9478,9536,9538,9596,0.189285714285730,-0.013196125907368,0.187500000000027,-0.019703389829968,0.187500000000027,-0.006567796609604,0.185714285714324,-0.013075060532204,0.013196125908017,0.000000000000000,-0.000181598062818,-0.003571428571406,0.000060532687510,0.003571428571406,-0.013075060532710,-0.000000000000000,2 -9479,9537,9539,9597,0.189285714285730,0.000000000000636,0.187500000000027,-0.006567796609604,0.187500000000027,0.006567796610736,0.185714285714324,0.000000000000496,0.013196125907991,0.000000000000000,-0.000060532687510,-0.003571428571406,-0.000060532687790,0.003571428571406,-0.013075060532690,-0.000000000000000,2 -9480,9538,9540,9598,0.189285714285730,0.013196125908614,0.187500000000027,0.006567796610736,0.187500000000027,0.019703389831054,0.185714285714324,0.013075060533175,0.013196125907966,0.000000000000000,0.000060532687790,-0.003571428571406,-0.000181598063088,0.003571428571406,-0.013075060532669,-0.000000000000000,2 -9481,9539,9541,9599,0.189285714285730,0.026392251816582,0.187500000000027,0.019703389831054,0.187500000000027,0.032838983051374,0.185714285714324,0.026150121065845,0.013196125907968,0.000000000000000,0.000181598063088,-0.003571428571406,-0.000302663438384,0.003571428571406,-0.013075060532672,-0.000000000000000,2 -9482,9540,9542,9600,0.189285714285730,0.039588377724549,0.187500000000027,0.032838983051374,0.187500000000027,0.045974576271692,0.185714285714324,0.039225181598516,0.013196125907967,0.000000000000000,0.000302663438384,-0.003571428571406,-0.000423728813681,0.003571428571406,-0.013075060532670,-0.000000000000000,2 -9483,9541,9543,9601,0.189285714285730,0.052784503632516,0.187500000000027,0.045974576271692,0.187500000000027,0.059110169492011,0.185714285714324,0.052300242131186,0.013196125907967,0.000000000000000,0.000423728813681,-0.003571428571406,-0.000544794188978,0.003571428571406,-0.013075060532670,-0.000000000000000,2 -9484,9542,9544,9602,0.189285714285730,0.065980629540484,0.187500000000027,0.059110169492011,0.187500000000027,0.072245762712331,0.185714285714324,0.065375302663857,0.013196125907968,0.000000000000000,0.000544794188978,-0.003571428571406,-0.000665859564275,0.003571428571406,-0.013075060532672,-0.000000000000000,2 -9485,9543,9545,9603,0.189285714285730,0.079176755448451,0.187500000000027,0.072245762712331,0.187500000000027,0.085381355932648,0.185714285714324,0.078450363196528,0.013196125907966,0.000000000000000,0.000665859564275,-0.003571428571406,-0.000786924939572,0.003571428571406,-0.013075060532669,-0.000000000000000,2 -9486,9544,9546,9604,0.189285714285730,0.092372881356413,0.187500000000027,0.085381355932648,0.187500000000027,0.098516949152958,0.185714285714324,0.091525423729193,0.013196125907958,0.000000000000000,0.000786924939572,-0.003571428571406,-0.000907990314868,0.003571428571406,-0.013075060532662,-0.000000000000000,2 -9487,9545,9547,9605,0.189285714285730,0.105569007264373,0.187500000000027,0.098516949152958,0.187500000000027,0.111652542373272,0.185714285714324,0.104600484261857,0.013196125907962,0.000000000000000,0.000907990314868,-0.003571428571406,-0.001029055690164,0.003571428571406,-0.013075060532666,-0.000000000000000,2 -9488,9546,9548,9606,0.189285714285730,0.118765133172337,0.187500000000027,0.111652542373272,0.187500000000027,0.124788135593589,0.185714285714324,0.117675544794524,0.013196125907966,0.000000000000000,0.001029055690164,-0.003571428571406,-0.001150121065461,0.003571428571406,-0.013075060532669,-0.000000000000000,2 -9489,9547,9549,9607,0.189285714285730,0.131961259080304,0.187500000000027,0.124788135593589,0.187500000000027,0.137923728813909,0.185714285714324,0.130750605327194,0.013196125907968,0.000000000000000,0.001150121065461,-0.003571428571406,-0.001271186440757,0.003571428571406,-0.013075060532672,-0.000000000000000,2 -9490,9548,9550,9608,0.189285714285730,0.145157384988271,0.187500000000027,0.137923728813909,0.187500000000027,0.151059322034226,0.185714285714324,0.143825665859865,0.013196125907966,0.000000000000000,0.001271186440757,-0.003571428571406,-0.001392251816055,0.003571428571406,-0.013075060532669,-0.000000000000000,2 -9491,9549,9551,9609,0.189285714285730,0.158353510896238,0.187500000000027,0.151059322034226,0.187500000000027,0.164194915254546,0.185714285714324,0.156900726392535,0.013196125907968,0.000000000000000,0.001392251816055,-0.003571428571406,-0.001513317191352,0.003571428571406,-0.013075060532671,-0.000000000000000,2 -9492,9550,9552,9610,0.189285714285730,0.171549636804203,0.187500000000027,0.164194915254546,0.187500000000027,0.177330508474860,0.185714285714324,0.169975786925203,0.013196125907963,0.000000000000000,0.001513317191352,-0.003571428571406,-0.001634382566650,0.003571428571406,-0.013075060532665,-0.000000000000000,2 -9493,9551,9553,9611,0.189285714285730,0.184745762712168,0.187500000000027,0.177330508474860,0.187500000000027,0.190466101695177,0.185714285714324,0.183050847457869,0.013196125907965,0.000000000000000,0.001634382566650,-0.003571428571406,-0.001755447941947,0.003571428571406,-0.013075060532668,-0.000000000000000,2 -9494,9552,9554,9612,0.189285714285730,0.197941888620136,0.187500000000027,0.190466101695177,0.187500000000027,0.203601694915499,0.185714285714324,0.196125907990540,0.013196125907970,0.000000000000000,0.001755447941947,-0.003571428571406,-0.001876513317243,0.003571428571406,-0.013075060532674,-0.000000000000000,2 -9495,9553,9555,9613,0.189285714285730,0.211138014528102,0.187500000000027,0.203601694915499,0.187500000000027,0.216737288135813,0.185714285714324,0.209200968523210,0.013196125907963,0.000000000000000,0.001876513317243,-0.003571428571406,-0.001997578692541,0.003571428571406,-0.013075060532665,-0.000000000000000,2 -9496,9554,9556,9614,0.189285714285730,0.224334140436070,0.187500000000027,0.216737288135813,0.187500000000027,0.229872881356138,0.185714285714324,0.222276029055881,0.013196125907973,0.000000000000000,0.001997578692541,-0.003571428571406,-0.002118644067837,0.003571428571406,-0.013075060532677,-0.000000000000000,2 -9497,9555,9557,9615,0.189285714285730,0.237530266344038,0.187500000000027,0.229872881356138,0.187500000000027,0.243008474576452,0.185714285714324,0.235351089588552,0.013196125907963,0.000000000000000,0.002118644067837,-0.003571428571406,-0.002239709443135,0.003571428571406,-0.013075060532665,-0.000000000000000,2 -9498,9556,9558,9616,0.189285714285730,0.250726392252004,0.187500000000027,0.243008474576452,0.187500000000027,0.256144067796774,0.185714285714324,0.248426150121222,0.013196125907969,0.000000000000000,0.002239709443135,-0.003571428571406,-0.002360774818431,0.003571428571406,-0.013075060532673,-0.000000000000000,2 -9499,9557,9559,9617,0.189285714285730,0.263922518159972,0.187500000000027,0.256144067796774,0.187500000000027,0.269279661017091,0.185714285714324,0.261501210653893,0.013196125907966,0.000000000000000,0.002360774818431,-0.003571428571406,-0.002481840193728,0.003571428571406,-0.013075060532669,-0.000000000000000,2 -9500,9558,9560,9618,0.189285714285730,0.277118644067939,0.187500000000027,0.269279661017091,0.187500000000027,0.282415254237409,0.185714285714324,0.274576271186562,0.013196125907966,0.000000000000000,0.002481840193728,-0.003571428571406,-0.002602905569026,0.003571428571406,-0.013075060532669,-0.000000000000000,2 -9501,9559,9561,9619,0.189285714285730,0.290314769975914,0.187500000000027,0.282415254237409,0.187500000000027,0.295550847457745,0.185714285714324,0.287651331719240,0.013196125907985,0.000000000000000,0.002602905569026,-0.003571428571406,-0.002723970944323,0.003571428571406,-0.013075060532687,-0.000000000000000,2 -9502,9560,9562,9620,0.189285714285730,0.303510895883893,0.187500000000027,0.295550847457745,0.187500000000027,0.308686440678069,0.185714285714324,0.300726392251921,0.013196125907973,0.000000000000000,0.002723970944323,-0.003571428571406,-0.002845036319622,0.003571428571406,-0.013075060532674,-0.000000000000000,2 -9503,9561,9563,9621,0.189285714285730,0.316707021791875,0.187500000000027,0.308686440678069,0.187500000000027,0.321822033898411,0.185714285714324,0.313801452784605,0.013196125907991,0.000000000000000,0.002845036319622,-0.003571428571406,-0.002966101694919,0.003571428571406,-0.013075060532694,-0.000000000000000,2 -9504,9562,9564,9622,0.189285714285730,0.329903147699856,0.187500000000027,0.321822033898411,0.187500000000027,0.334957627118732,0.185714285714324,0.326876513317288,0.013196125907970,0.000000000000000,0.002966101694919,-0.003571428571406,-0.003087167070218,0.003571428571406,-0.013075060532671,-0.000000000000000,2 -9505,9563,9565,9623,0.189285714285730,0.343099273607826,0.187500000000027,0.334957627118732,0.187500000000027,0.348093220339055,0.185714285714324,0.339951573849961,0.013196125907970,0.000000000000000,0.003087167070218,-0.003571428571406,-0.003208232445514,0.003571428571406,-0.013075060532674,-0.000000000000000,2 -9506,9564,9566,9624,0.189285714285730,0.356295399515794,0.187500000000027,0.348093220339055,0.187500000000027,0.361228813559372,0.185714285714324,0.353026634382632,0.013196125907966,0.000000000000000,0.003208232445514,-0.003571428571406,-0.003329297820811,0.003571428571406,-0.013075060532668,-0.000000000000000,2 -9507,9565,9567,9625,0.189285714285730,0.369491525423761,0.187500000000027,0.361228813559372,0.187500000000027,0.374364406779690,0.185714285714324,0.366101694915301,0.013196125907967,0.000000000000000,0.003329297820811,-0.003571428571406,-0.003450363196108,0.003571428571406,-0.013075060532670,-0.000000000000000,2 -7704,9508,9566,9626,0.187500000000027,0.387500000000027,0.189285714285730,0.382687651331737,0.187500000000027,0.374364406779690,0.185714285714324,0.379176755447980,-0.003571428571406,0.003571428571406,0.013196125907986,-0.000000000000000,0.003450363196108,-0.003571428571406,-0.013075060532688,0.000000000000000,2 -9215,9509,9569,9627,0.183928571428607,-0.383928571428607,0.185714285714324,-0.379176755447971,0.183928571428607,-0.370914043583554,0.182142857142890,-0.375665859564191,-0.003571428571434,-0.003571428571434,0.013075060532706,0.000000000000000,0.003450363196127,0.003571428571434,-0.012953995157400,-0.000000000000000,2 -9510,9568,9570,9628,0.185714285714324,-0.366101694915260,0.183928571428607,-0.370914043583554,0.183928571428607,-0.357899515738494,0.182142857142890,-0.362711864406788,0.013075060532714,0.000000000000000,-0.003450363196127,-0.003571428571434,0.003329297820818,0.003571428571433,-0.012953995157406,-0.000000000000000,2 -9511,9569,9571,9629,0.185714285714324,-0.353026634382554,0.183928571428607,-0.357899515738494,0.183928571428607,-0.344884987893448,0.182142857142890,-0.349757869249388,0.013075060532698,-0.000000000000000,-0.003329297820818,-0.003571428571433,0.003208232445513,0.003571428571434,-0.012953995157393,-0.000000000000000,2 -9512,9570,9572,9630,0.185714285714324,-0.339951573849845,0.183928571428607,-0.344884987893448,0.183928571428607,-0.331870460048384,0.182142857142890,-0.336803874091987,0.013075060532719,0.000000000000000,-0.003208232445513,-0.003571428571434,0.003087167070204,0.003571428571433,-0.012953995157410,0.000000000000000,2 -9513,9571,9573,9631,0.185714285714324,-0.326876513317138,0.183928571428607,-0.331870460048384,0.183928571428607,-0.318855932203341,0.182142857142890,-0.323849878934587,0.013075060532696,0.000000000000000,-0.003087167070204,-0.003571428571433,0.002966101694899,0.003571428571434,-0.012953995157391,-0.000000000000000,2 -9514,9572,9574,9632,0.185714285714324,-0.313801452784432,0.183928571428607,-0.318855932203341,0.183928571428607,-0.305841404358278,0.182142857142890,-0.310895883777187,0.013075060532717,0.000000000000000,-0.002966101694899,-0.003571428571434,0.002845036319590,0.003571428571434,-0.012953995157408,-0.000000000000000,2 -9515,9573,9575,9633,0.185714285714324,-0.300726392251721,0.183928571428607,-0.305841404358278,0.183928571428607,-0.292826876513227,0.182142857142890,-0.297941888619785,0.013075060532704,0.000000000000000,-0.002845036319590,-0.003571428571434,0.002723970944283,0.003571428571434,-0.012953995157398,-0.000000000000000,2 -9516,9574,9576,9634,0.185714285714324,-0.287651331719017,0.183928571428607,-0.292826876513227,0.183928571428607,-0.279812348668177,0.182142857142890,-0.284987893462388,0.013075060532704,0.000000000000000,-0.002723970944283,-0.003571428571434,0.002602905568975,0.003571428571434,-0.012953995157396,-0.000000000000000,2 -9517,9575,9577,9635,0.185714285714324,-0.274576271186310,0.183928571428607,-0.279812348668177,0.183928571428607,-0.266797820823122,0.182142857142890,-0.272033898304989,0.013075060532710,0.000000000000000,-0.002602905568975,-0.003571428571434,0.002481840193666,0.003571428571434,-0.012953995157401,-0.000000000000000,2 -9518,9576,9578,9636,0.185714285714324,-0.261501210653606,0.183928571428607,-0.266797820823122,0.183928571428607,-0.253783292978077,0.182142857142890,-0.259079903147593,0.013075060532698,0.000000000000000,-0.002481840193666,-0.003571428571434,0.002360774818360,0.003571428571434,-0.012953995157392,-0.000000000000000,2 -9519,9577,9579,9637,0.185714285714324,-0.248426150120897,0.183928571428607,-0.253783292978077,0.183928571428607,-0.240768765133011,0.182142857142890,-0.246125907990192,0.013075060532720,0.000000000000000,-0.002360774818360,-0.003571428571434,0.002239709443051,0.003571428571434,-0.012953995157411,-0.000000000000000,2 -9520,9578,9580,9638,0.185714285714324,-0.235351089588192,0.183928571428607,-0.240768765133011,0.183928571428607,-0.227754237287975,0.182142857142890,-0.233171912832794,0.013075060532690,0.000000000000000,-0.002239709443051,-0.003571428571434,0.002118644067745,0.003571428571434,-0.012953995157384,-0.000000000000000,2 -9521,9579,9581,9639,0.185714285714324,-0.222276029055488,0.183928571428607,-0.227754237287975,0.183928571428607,-0.214739709442911,0.182142857142890,-0.220217917675397,0.013075060532719,-0.000000000000000,-0.002118644067745,-0.003571428571434,0.001997578692436,0.003571428571434,-0.012953995157409,-0.000000000000000,2 -9522,9580,9582,9640,0.185714285714324,-0.209200968522780,0.183928571428607,-0.214739709442911,0.183928571428607,-0.201725181597867,0.182142857142890,-0.207263922517998,0.013075060532697,0.000000000000000,-0.001997578692436,-0.003571428571434,0.001876513317129,0.003571428571434,-0.012953995157390,-0.000000000000000,2 -9523,9581,9583,9641,0.185714285714324,-0.196125907990077,0.183928571428607,-0.201725181597867,0.183928571428607,-0.188710653752812,0.182142857142890,-0.194309927360602,0.013075060532709,0.000000000000000,-0.001876513317129,-0.003571428571434,0.001755447941820,0.003571428571434,-0.012953995157401,-0.000000000000000,2 -9524,9582,9584,9642,0.185714285714324,-0.183050847457376,0.183928571428607,-0.188710653752812,0.183928571428607,-0.175696125907773,0.182142857142890,-0.181355932203209,0.013075060532692,0.000000000000000,-0.001755447941820,-0.003571428571434,0.001634382566514,0.003571428571434,-0.012953995157386,-0.000000000000000,2 -9525,9583,9585,9643,0.185714285714324,-0.169975786924672,0.183928571428607,-0.175696125907773,0.183928571428607,-0.162681598062713,0.182142857142890,-0.168401937045813,0.013075060532714,0.000000000000000,-0.001634382566514,-0.003571428571434,0.001513317191205,0.003571428571434,-0.012953995157405,-0.000000000000000,2 -9526,9584,9586,9644,0.185714285714324,-0.156900726391964,0.183928571428607,-0.162681598062713,0.183928571428607,-0.149667070217664,0.182142857142890,-0.155447941888413,0.013075060532702,-0.000000000000000,-0.001513317191205,-0.003571428571434,0.001392251815897,0.003571428571434,-0.012953995157395,0.000000000000000,2 -9527,9585,9587,9645,0.185714285714324,-0.143825665859259,0.183928571428607,-0.149667070217664,0.183928571428607,-0.136652542372610,0.182142857142890,-0.142493946731015,0.013075060532707,0.000000000000000,-0.001392251815897,-0.003571428571434,0.001271186440590,0.003571428571433,-0.012953995157400,-0.000000000000000,2 -9528,9586,9588,9646,0.185714285714324,-0.130750605326549,0.183928571428607,-0.136652542372610,0.183928571428607,-0.123638014527552,0.182142857142890,-0.129539951573613,0.013075060532713,-0.000000000000000,-0.001271186440590,-0.003571428571433,0.001150121065282,0.003571428571434,-0.012953995157404,-0.000000000000000,2 -9529,9587,9589,9647,0.185714285714324,-0.117675544793846,0.183928571428607,-0.123638014527552,0.183928571428607,-0.110623486682512,0.182142857142890,-0.116585956416218,0.013075060532694,0.000000000000000,-0.001150121065282,-0.003571428571434,0.001029055689975,0.003571428571434,-0.012953995157387,-0.000000000000000,2 -9530,9588,9590,9648,0.185714285714324,-0.104600484261143,0.183928571428607,-0.110623486682512,0.183928571428607,-0.097608958837453,0.182142857142890,-0.103631961258822,0.013075060532713,0.000000000000000,-0.001029055689975,-0.003571428571434,0.000907990314666,0.003571428571434,-0.012953995157405,-0.000000000000000,2 -9531,9589,9591,9649,0.185714285714324,-0.091525423728435,0.183928571428607,-0.097608958837453,0.183928571428607,-0.084594430992405,0.182142857142890,-0.090677966101423,0.013075060532702,0.000000000000000,-0.000907990314666,-0.003571428571434,0.000786924939359,0.003571428571434,-0.012953995157394,-0.000000000000000,2 -9532,9590,9592,9650,0.185714285714324,-0.078450363195729,0.183928571428607,-0.084594430992405,0.183928571428607,-0.071579903147349,0.182142857142890,-0.077723970944025,0.013075060532710,0.000000000000000,-0.000786924939359,-0.003571428571434,0.000665859564050,0.003571428571434,-0.012953995157401,-0.000000000000000,2 -9533,9591,9593,9651,0.185714285714324,-0.065375302663023,0.183928571428607,-0.071579903147349,0.183928571428607,-0.058565375302301,0.182142857142890,-0.064769975786627,0.013075060532702,0.000000000000000,-0.000665859564050,-0.003571428571434,0.000544794188743,0.003571428571434,-0.012953995157394,-0.000000000000000,2 -9534,9592,9594,9652,0.185714285714324,-0.052300242130320,0.183928571428607,-0.058565375302301,0.183928571428607,-0.045550847457250,0.182142857142890,-0.051815980629231,0.013075060532705,0.000000000000000,-0.000544794188743,-0.003571428571434,0.000423728813435,0.003571428571434,-0.012953995157397,-0.000000000000000,2 -9535,9593,9595,9653,0.185714285714324,-0.039225181597614,0.183928571428607,-0.045550847457250,0.183928571428607,-0.032536319612197,0.182142857142890,-0.038861985471833,0.013075060532707,0.000000000000000,-0.000423728813435,-0.003571428571434,0.000302663438127,0.003571428571434,-0.012953995157399,-0.000000000000000,2 -9536,9594,9596,9654,0.185714285714324,-0.026150121064910,0.183928571428607,-0.032536319612197,0.183928571428607,-0.019521791767149,0.182142857142890,-0.025907990314437,0.013075060532702,0.000000000000000,-0.000302663438127,-0.003571428571434,0.000181598062819,0.003571428571434,-0.012953995157394,-0.000000000000000,2 -9537,9595,9597,9655,0.185714285714324,-0.013075060532204,0.183928571428607,-0.019521791767149,0.183928571428607,-0.006507263922093,0.182142857142890,-0.012953995157039,0.013075060532710,0.000000000000000,-0.000181598062819,-0.003571428571434,0.000060532687511,0.003571428571434,-0.012953995157401,-0.000000000000000,2 -9538,9596,9598,9656,0.185714285714324,0.000000000000496,0.183928571428607,-0.006507263922093,0.183928571428607,0.006507263922946,0.182142857142890,0.000000000000356,0.013075060532690,0.000000000000000,-0.000060532687511,-0.003571428571434,-0.000060532687791,0.003571428571434,-0.012953995157388,-0.000000000000000,2 -9539,9597,9599,9657,0.185714285714324,0.013075060533175,0.183928571428607,0.006507263922946,0.183928571428607,0.019521791767965,0.182142857142890,0.012953995157735,0.013075060532669,0.000000000000000,0.000060532687791,-0.003571428571434,-0.000181598063089,0.003571428571434,-0.012953995157370,-0.000000000000000,2 -9540,9598,9600,9658,0.185714285714324,0.026150121065845,0.183928571428607,0.019521791767965,0.183928571428607,0.032536319612988,0.182142857142890,0.025907990315108,0.013075060532672,0.000000000000000,0.000181598063089,-0.003571428571434,-0.000302663438387,0.003571428571434,-0.012953995157374,-0.000000000000000,2 -9541,9599,9601,9659,0.185714285714324,0.039225181598516,0.183928571428607,0.032536319612988,0.183928571428607,0.045550847458009,0.182142857142890,0.038861985472481,0.013075060532670,0.000000000000000,0.000302663438387,-0.003571428571434,-0.000423728813685,0.003571428571434,-0.012953995157372,-0.000000000000000,2 -9542,9600,9602,9660,0.185714285714324,0.052300242131186,0.183928571428607,0.045550847458009,0.183928571428607,0.058565375303030,0.182142857142890,0.051815980629853,0.013075060532670,0.000000000000000,0.000423728813685,-0.003571428571434,-0.000544794188982,0.003571428571434,-0.012953995157373,-0.000000000000000,2 -9543,9601,9603,9661,0.185714285714324,0.065375302663857,0.183928571428607,0.058565375303030,0.183928571428607,0.071579903148053,0.182142857142890,0.064769975787226,0.013075060532672,0.000000000000000,0.000544794188982,-0.003571428571434,-0.000665859564280,0.003571428571434,-0.012953995157374,-0.000000000000000,2 -9544,9602,9604,9662,0.185714285714324,0.078450363196528,0.183928571428607,0.071579903148053,0.183928571428607,0.084594430993073,0.182142857142890,0.077723970944599,0.013075060532669,0.000000000000000,0.000665859564280,-0.003571428571434,-0.000786924939578,0.003571428571434,-0.012953995157370,-0.000000000000000,2 -9545,9603,9605,9663,0.185714285714324,0.091525423729193,0.183928571428607,0.084594430993073,0.183928571428607,0.097608958838087,0.182142857142890,0.090677966101967,0.013075060532662,0.000000000000000,0.000786924939578,-0.003571428571434,-0.000907990314875,0.003571428571434,-0.012953995157365,-0.000000000000000,2 -9546,9604,9606,9664,0.185714285714324,0.104600484261857,0.183928571428607,0.097608958838087,0.183928571428607,0.110623486683104,0.182142857142890,0.103631961259334,0.013075060532666,0.000000000000000,0.000907990314875,-0.003571428571434,-0.001029055690172,0.003571428571434,-0.012953995157369,-0.000000000000000,2 -9547,9605,9607,9665,0.185714285714324,0.117675544794524,0.183928571428607,0.110623486683104,0.183928571428607,0.123638014528124,0.182142857142890,0.116585956416703,0.013075060532669,0.000000000000000,0.001029055690172,-0.003571428571434,-0.001150121065470,0.003571428571434,-0.012953995157370,-0.000000000000000,2 -9548,9606,9608,9666,0.185714285714324,0.130750605327194,0.183928571428607,0.123638014528124,0.183928571428607,0.136652542373147,0.182142857142890,0.129539951574076,0.013075060532672,0.000000000000000,0.001150121065470,-0.003571428571434,-0.001271186440767,0.003571428571434,-0.012953995157374,-0.000000000000000,2 -9549,9607,9609,9667,0.185714285714324,0.143825665859865,0.183928571428607,0.136652542373147,0.183928571428607,0.149667070218166,0.182142857142890,0.142493946731448,0.013075060532669,0.000000000000000,0.001271186440767,-0.003571428571434,-0.001392251816066,0.003571428571434,-0.012953995157371,-0.000000000000000,2 -9550,9608,9610,9668,0.185714285714324,0.156900726392535,0.183928571428607,0.149667070218166,0.183928571428607,0.162681598063189,0.182142857142890,0.155447941888820,0.013075060532671,0.000000000000000,0.001392251816066,-0.003571428571434,-0.001513317191363,0.003571428571434,-0.012953995157374,-0.000000000000000,2 -9551,9609,9611,9669,0.185714285714324,0.169975786925203,0.183928571428607,0.162681598063189,0.183928571428607,0.175696125908204,0.182142857142890,0.168401937046190,0.013075060532665,0.000000000000000,0.001513317191363,-0.003571428571434,-0.001634382566662,0.003571428571434,-0.012953995157366,-0.000000000000000,2 -9552,9610,9612,9670,0.185714285714324,0.183050847457869,0.183928571428607,0.175696125908204,0.183928571428607,0.188710653753223,0.182142857142890,0.181355932203558,0.013075060532668,0.000000000000000,0.001634382566662,-0.003571428571434,-0.001755447941961,0.003571428571434,-0.012953995157370,-0.000000000000000,2 -9553,9611,9613,9671,0.185714285714324,0.196125907990540,0.183928571428607,0.188710653753223,0.183928571428607,0.201725181598249,0.182142857142890,0.194309927360931,0.013075060532674,0.000000000000000,0.001755447941961,-0.003571428571434,-0.001876513317258,0.003571428571434,-0.012953995157378,-0.000000000000000,2 -9554,9612,9614,9672,0.185714285714324,0.209200968523210,0.183928571428607,0.201725181598249,0.183928571428607,0.214739709443264,0.182142857142890,0.207263922518303,0.013075060532665,0.000000000000000,0.001876513317258,-0.003571428571434,-0.001997578692557,0.003571428571434,-0.012953995157366,-0.000000000000000,2 -9555,9613,9615,9673,0.185714285714324,0.222276029055881,0.183928571428607,0.214739709443264,0.183928571428607,0.227754237288293,0.182142857142890,0.220217917675676,0.013075060532677,0.000000000000000,0.001997578692557,-0.003571428571434,-0.002118644067853,0.003571428571434,-0.012953995157381,-0.000000000000000,2 -9556,9614,9616,9674,0.185714285714324,0.235351089588552,0.183928571428607,0.227754237288293,0.183928571428607,0.240768765133309,0.182142857142890,0.233171912833050,0.013075060532665,0.000000000000000,0.002118644067853,-0.003571428571434,-0.002239709443152,0.003571428571434,-0.012953995157366,-0.000000000000000,2 -9557,9615,9617,9675,0.185714285714324,0.248426150121222,0.183928571428607,0.240768765133309,0.183928571428607,0.253783292978334,0.182142857142890,0.246125907990421,0.013075060532673,0.000000000000000,0.002239709443152,-0.003571428571434,-0.002360774818449,0.003571428571434,-0.012953995157376,-0.000000000000000,2 -9558,9616,9618,9676,0.185714285714324,0.261501210653893,0.183928571428607,0.253783292978334,0.183928571428607,0.266797820823354,0.182142857142890,0.259079903147794,0.013075060532669,0.000000000000000,0.002360774818449,-0.003571428571434,-0.002481840193747,0.003571428571434,-0.012953995157371,-0.000000000000000,2 -9559,9617,9619,9677,0.185714285714324,0.274576271186562,0.183928571428607,0.266797820823354,0.183928571428607,0.279812348668374,0.182142857142890,0.272033898305165,0.013075060532669,0.000000000000000,0.002481840193747,-0.003571428571434,-0.002602905569045,0.003571428571434,-0.012953995157371,-0.000000000000000,2 -9560,9618,9620,9678,0.185714285714324,0.287651331719240,0.183928571428607,0.279812348668374,0.183928571428607,0.292826876513412,0.182142857142890,0.284987893462545,0.013075060532687,0.000000000000000,0.002602905569045,-0.003571428571434,-0.002723970944344,0.003571428571434,-0.012953995157389,-0.000000000000000,2 -9561,9619,9621,9679,0.185714285714324,0.300726392251921,0.183928571428607,0.292826876513412,0.183928571428607,0.305841404358436,0.182142857142890,0.297941888619927,0.013075060532674,0.000000000000000,0.002723970944344,-0.003571428571434,-0.002845036319644,0.003571428571434,-0.012953995157374,-0.000000000000000,2 -9562,9620,9622,9680,0.185714285714324,0.313801452784605,0.183928571428607,0.305841404358436,0.183928571428607,0.318855932203481,0.182142857142890,0.310895883777312,0.013075060532694,0.000000000000000,0.002845036319644,-0.003571428571434,-0.002966101694942,0.003571428571434,-0.012953995157396,-0.000000000000000,2 -9563,9621,9623,9681,0.185714285714324,0.326876513317288,0.183928571428607,0.318855932203481,0.183928571428607,0.331870460048503,0.182142857142890,0.323849878934696,0.013075060532671,0.000000000000000,0.002966101694942,-0.003571428571434,-0.003087167070241,0.003571428571434,-0.012953995157372,-0.000000000000000,2 -9564,9622,9624,9682,0.185714285714324,0.339951573849961,0.183928571428607,0.331870460048503,0.183928571428607,0.344884987893529,0.182142857142890,0.336803874092071,0.013075060532674,0.000000000000000,0.003087167070241,-0.003571428571434,-0.003208232445538,0.003571428571434,-0.012953995157377,-0.000000000000000,2 -9565,9623,9625,9683,0.185714285714324,0.353026634382632,0.183928571428607,0.344884987893529,0.183928571428607,0.357899515738548,0.182142857142890,0.349757869249444,0.013075060532668,0.000000000000000,0.003208232445538,-0.003571428571434,-0.003329297820837,0.003571428571434,-0.012953995157370,-0.000000000000000,2 -9566,9624,9626,9684,0.185714285714324,0.366101694915301,0.183928571428607,0.357899515738548,0.183928571428607,0.370914043583569,0.182142857142890,0.362711864406815,0.013075060532670,0.000000000000000,0.003329297820837,-0.003571428571434,-0.003450363196135,0.003571428571434,-0.012953995157372,-0.000000000000000,2 -7703,9567,9625,9685,0.183928571428607,0.383928571428607,0.185714285714324,0.379176755447980,0.183928571428607,0.370914043583569,0.182142857142890,0.375665859564196,-0.003571428571434,0.003571428571434,0.013075060532688,-0.000000000000000,0.003450363196135,-0.003571428571434,-0.012953995157389,0.000000000000000,2 -9186,9568,9628,9686,0.180357142857179,-0.380357142857179,0.182142857142890,-0.375665859564191,0.180357142857179,-0.367463680387433,0.178571428571468,-0.372154963680422,-0.003571428571422,-0.003571428571422,0.012953995157400,0.000000000000000,0.003450363196115,0.003571428571422,-0.012832929782093,-0.000000000000000,2 -9569,9627,9629,9687,0.182142857142890,-0.362711864406788,0.180357142857179,-0.367463680387433,0.180357142857179,-0.354570217917681,0.178571428571468,-0.359322033898326,0.012953995157406,0.000000000000000,-0.003450363196115,-0.003571428571422,0.003329297820808,0.003571428571422,-0.012832929782098,0.000000000000000,2 -9570,9628,9630,9688,0.182142857142890,-0.349757869249388,0.180357142857179,-0.354570217917681,0.180357142857179,-0.341676755447941,0.178571428571468,-0.346489104116233,0.012953995157393,0.000000000000000,-0.003329297820808,-0.003571428571422,0.003208232445503,0.003571428571422,-0.012832929782088,-0.000000000000000,2 -9571,9629,9631,9689,0.182142857142890,-0.336803874091987,0.180357142857179,-0.341676755447941,0.180357142857179,-0.328783292978186,0.178571428571468,-0.333656174334139,0.012953995157410,-0.000000000000000,-0.003208232445503,-0.003571428571422,0.003087167070194,0.003571428571422,-0.012832929782101,-0.000000000000000,2 -9572,9630,9632,9690,0.182142857142890,-0.323849878934587,0.180357142857179,-0.328783292978186,0.180357142857179,-0.315889830508447,0.178571428571468,-0.320823244552046,0.012953995157391,0.000000000000000,-0.003087167070194,-0.003571428571422,0.002966101694889,0.003571428571422,-0.012832929782086,0.000000000000000,2 -9573,9631,9633,9691,0.182142857142890,-0.310895883777187,0.180357142857179,-0.315889830508447,0.180357142857179,-0.302996368038693,0.178571428571468,-0.307990314769953,0.012953995157408,0.000000000000000,-0.002966101694889,-0.003571428571422,0.002845036319580,0.003571428571422,-0.012832929782099,-0.000000000000000,2 -9574,9632,9634,9692,0.182142857142890,-0.297941888619785,0.180357142857179,-0.302996368038693,0.180357142857179,-0.290102905568949,0.178571428571468,-0.295157384987857,0.012953995157398,0.000000000000000,-0.002845036319580,-0.003571428571422,0.002723970944275,0.003571428571422,-0.012832929782092,-0.000000000000000,2 -9575,9633,9635,9693,0.182142857142890,-0.284987893462388,0.180357142857179,-0.290102905568949,0.180357142857179,-0.277209443099207,0.178571428571468,-0.282324455205767,0.012953995157396,0.000000000000000,-0.002723970944275,-0.003571428571422,0.002602905568966,0.003571428571422,-0.012832929782088,-0.000000000000000,2 -9576,9634,9636,9694,0.182142857142890,-0.272033898304989,0.180357142857179,-0.277209443099207,0.180357142857179,-0.264315980629460,0.178571428571468,-0.269491525423677,0.012953995157401,0.000000000000000,-0.002602905568966,-0.003571428571422,0.002481840193658,0.003571428571422,-0.012832929782092,-0.000000000000000,2 -9577,9635,9637,9695,0.182142857142890,-0.259079903147593,0.180357142857179,-0.264315980629460,0.180357142857179,-0.251422518159721,0.178571428571468,-0.256658595641588,0.012953995157392,0.000000000000000,-0.002481840193658,-0.003571428571422,0.002360774818352,0.003571428571422,-0.012832929782086,0.000000000000000,2 -9578,9636,9638,9696,0.182142857142890,-0.246125907990192,0.180357142857179,-0.251422518159721,0.180357142857179,-0.238529055689964,0.178571428571468,-0.243825665859494,0.012953995157411,0.000000000000000,-0.002360774818352,-0.003571428571422,0.002239709443043,0.003571428571422,-0.012832929782103,-0.000000000000000,2 -9579,9637,9639,9697,0.182142857142890,-0.233171912832794,0.180357142857179,-0.238529055689964,0.180357142857179,-0.225635593220233,0.178571428571468,-0.230992736077403,0.012953995157384,0.000000000000000,-0.002239709443043,-0.003571428571422,0.002118644067738,0.003571428571422,-0.012832929782078,0.000000000000000,2 -9580,9638,9640,9698,0.182142857142890,-0.220217917675397,0.180357142857179,-0.225635593220233,0.180357142857179,-0.212742130750478,0.178571428571468,-0.218159806295314,0.012953995157409,0.000000000000000,-0.002118644067738,-0.003571428571422,0.001997578692429,0.003571428571422,-0.012832929782101,-0.000000000000000,2 -9581,9639,9641,9699,0.182142857142890,-0.207263922517998,0.180357142857179,-0.212742130750478,0.180357142857179,-0.199848668280741,0.178571428571468,-0.205326876513222,0.012953995157390,0.000000000000000,-0.001997578692429,-0.003571428571422,0.001876513317123,0.003571428571422,-0.012832929782084,-0.000000000000000,2 -9582,9640,9642,9700,0.182142857142890,-0.194309927360602,0.180357142857179,-0.199848668280741,0.180357142857179,-0.186955205810994,0.178571428571468,-0.192493946731133,0.012953995157401,0.000000000000000,-0.001876513317123,-0.003571428571422,0.001755447941815,0.003571428571422,-0.012832929782093,0.000000000000000,2 -9583,9641,9643,9701,0.182142857142890,-0.181355932203209,0.180357142857179,-0.186955205810994,0.180357142857179,-0.174061743341262,0.178571428571468,-0.179661016949047,0.012953995157386,0.000000000000000,-0.001755447941815,-0.003571428571422,0.001634382566508,0.003571428571422,-0.012832929782079,-0.000000000000000,2 -9584,9642,9644,9702,0.182142857142890,-0.168401937045813,0.180357142857179,-0.174061743341262,0.180357142857179,-0.161168280871510,0.178571428571468,-0.166828087166959,0.012953995157405,0.000000000000000,-0.001634382566508,-0.003571428571422,0.001513317191200,0.003571428571422,-0.012832929782097,-0.000000000000000,2 -9585,9643,9645,9703,0.182142857142890,-0.155447941888413,0.180357142857179,-0.161168280871510,0.180357142857179,-0.148274818401769,0.178571428571468,-0.153995157384867,0.012953995157395,-0.000000000000000,-0.001513317191200,-0.003571428571422,0.001392251815893,0.003571428571422,-0.012832929782088,0.000000000000000,2 -9586,9644,9646,9704,0.182142857142890,-0.142493946731015,0.180357142857179,-0.148274818401769,0.180357142857179,-0.135381355932022,0.178571428571468,-0.141162227602776,0.012953995157400,0.000000000000000,-0.001392251815893,-0.003571428571422,0.001271186440586,0.003571428571422,-0.012832929782093,-0.000000000000000,2 -9587,9645,9647,9705,0.182142857142890,-0.129539951573613,0.180357142857179,-0.135381355932022,0.180357142857179,-0.122487893462272,0.178571428571468,-0.128329297820681,0.012953995157404,0.000000000000000,-0.001271186440586,-0.003571428571422,0.001150121065278,0.003571428571422,-0.012832929782096,-0.000000000000000,2 -9588,9646,9648,9706,0.182142857142890,-0.116585956416218,0.180357142857179,-0.122487893462272,0.180357142857179,-0.109594430992538,0.178571428571468,-0.115496368038593,0.012953995157387,0.000000000000000,-0.001150121065278,-0.003571428571422,0.001029055689972,0.003571428571422,-0.012832929782081,-0.000000000000000,2 -9589,9647,9649,9707,0.182142857142890,-0.103631961258822,0.180357142857179,-0.109594430992538,0.180357142857179,-0.096700968522788,0.178571428571468,-0.102663438256505,0.012953995157405,0.000000000000000,-0.001029055689972,-0.003571428571422,0.000907990314663,0.003571428571422,-0.012832929782096,-0.000000000000000,2 -9590,9648,9650,9708,0.182142857142890,-0.090677966101423,0.180357142857179,-0.096700968522788,0.180357142857179,-0.083807506053047,0.178571428571468,-0.089830508474413,0.012953995157394,0.000000000000000,-0.000907990314663,-0.003571428571422,0.000786924939356,0.003571428571422,-0.012832929782087,0.000000000000000,2 -9591,9649,9651,9709,0.182142857142890,-0.077723970944025,0.180357142857179,-0.083807506053047,0.180357142857179,-0.070914043583300,0.178571428571468,-0.076997578692323,0.012953995157401,0.000000000000000,-0.000786924939356,-0.003571428571422,0.000665859564048,0.003571428571422,-0.012832929782093,-0.000000000000000,2 -9592,9650,9652,9710,0.182142857142890,-0.064769975786627,0.180357142857179,-0.070914043583300,0.180357142857179,-0.058020581113559,0.178571428571468,-0.064164648910232,0.012953995157394,0.000000000000000,-0.000665859564048,-0.003571428571422,0.000544794188741,0.003571428571422,-0.012832929782087,-0.000000000000000,2 -9593,9651,9653,9711,0.182142857142890,-0.051815980629231,0.180357142857179,-0.058020581113559,0.180357142857179,-0.045127118643816,0.178571428571468,-0.051331719128144,0.012953995157397,0.000000000000000,-0.000544794188741,-0.003571428571422,0.000423728813433,0.003571428571422,-0.012832929782090,-0.000000000000000,2 -9594,9652,9654,9712,0.182142857142890,-0.038861985471833,0.180357142857179,-0.045127118643816,0.180357142857179,-0.032233656174071,0.178571428571468,-0.038498789346053,0.012953995157399,0.000000000000000,-0.000423728813433,-0.003571428571422,0.000302663438126,0.003571428571422,-0.012832929782091,0.000000000000000,2 -9595,9653,9655,9713,0.182142857142890,-0.025907990314437,0.180357142857179,-0.032233656174071,0.180357142857179,-0.019340193704330,0.178571428571468,-0.025665859563964,0.012953995157394,0.000000000000000,-0.000302663438126,-0.003571428571422,0.000181598062819,0.003571428571422,-0.012832929782087,-0.000000000000000,2 -9596,9654,9656,9714,0.182142857142890,-0.012953995157039,0.180357142857179,-0.019340193704330,0.180357142857179,-0.006446731234583,0.178571428571468,-0.012832929781874,0.012953995157401,0.000000000000000,-0.000181598062819,-0.003571428571422,0.000060532687511,0.003571428571422,-0.012832929782093,0.000000000000000,2 -9597,9655,9657,9715,0.182142857142890,0.000000000000356,0.180357142857179,-0.006446731234583,0.180357142857179,0.006446731235155,0.178571428571468,0.000000000000216,0.012953995157388,0.000000000000000,-0.000060532687511,-0.003571428571422,-0.000060532687791,0.003571428571422,-0.012832929782087,-0.000000000000000,2 -9598,9656,9658,9716,0.182142857142890,0.012953995157735,0.180357142857179,0.006446731235155,0.180357142857179,0.019340193704876,0.178571428571468,0.012832929782296,0.012953995157370,0.000000000000000,0.000060532687791,-0.003571428571422,-0.000181598063089,0.003571428571422,-0.012832929782072,0.000000000000000,2 -9599,9657,9659,9717,0.182142857142890,0.025907990315108,0.180357142857179,0.019340193704876,0.180357142857179,0.032233656174602,0.178571428571468,0.025665859564370,0.012953995157374,0.000000000000000,0.000181598063089,-0.003571428571422,-0.000302663438386,0.003571428571422,-0.012832929782077,-0.000000000000000,2 -9600,9658,9660,9718,0.182142857142890,0.038861985472481,0.180357142857179,0.032233656174602,0.180357142857179,0.045127118644325,0.178571428571468,0.038498789346446,0.012953995157372,0.000000000000000,0.000302663438386,-0.003571428571422,-0.000423728813683,0.003571428571422,-0.012832929782074,-0.000000000000000,2 -9601,9659,9661,9719,0.182142857142890,0.051815980629853,0.180357142857179,0.045127118644325,0.180357142857179,0.058020581114049,0.178571428571468,0.051331719128521,0.012953995157373,0.000000000000000,0.000423728813683,-0.003571428571422,-0.000544794188981,0.003571428571422,-0.012832929782075,0.000000000000000,2 -9602,9660,9662,9720,0.182142857142890,0.064769975787226,0.180357142857179,0.058020581114049,0.180357142857179,0.070914043583775,0.178571428571468,0.064164648910597,0.012953995157374,0.000000000000000,0.000544794188981,-0.003571428571422,-0.000665859564278,0.003571428571422,-0.012832929782077,-0.000000000000000,2 -9603,9661,9663,9721,0.182142857142890,0.077723970944599,0.180357142857179,0.070914043583775,0.180357142857179,0.083807506053496,0.178571428571468,0.076997578692672,0.012953995157370,0.000000000000000,0.000665859564278,-0.003571428571422,-0.000786924939576,0.003571428571422,-0.012832929782072,-0.000000000000000,2 -9604,9662,9664,9722,0.182142857142890,0.090677966101967,0.180357142857179,0.083807506053496,0.180357142857179,0.096700968523213,0.178571428571468,0.089830508474743,0.012953995157365,0.000000000000000,0.000786924939576,-0.003571428571422,-0.000907990314872,0.003571428571422,-0.012832929782069,0.000000000000000,2 -9605,9663,9665,9723,0.182142857142890,0.103631961259334,0.180357142857179,0.096700968523213,0.180357142857179,0.109594430992934,0.178571428571468,0.102663438256814,0.012953995157369,0.000000000000000,0.000907990314872,-0.003571428571422,-0.001029055690168,0.003571428571422,-0.012832929782073,-0.000000000000000,2 -9606,9664,9666,9724,0.182142857142890,0.116585956416703,0.180357142857179,0.109594430992934,0.180357142857179,0.122487893462656,0.178571428571468,0.115496368038886,0.012953995157370,0.000000000000000,0.001029055690168,-0.003571428571422,-0.001150121065466,0.003571428571422,-0.012832929782072,-0.000000000000000,2 -9607,9665,9667,9725,0.182142857142890,0.129539951574076,0.180357142857179,0.122487893462656,0.180357142857179,0.135381355932381,0.178571428571468,0.128329297820961,0.012953995157374,0.000000000000000,0.001150121065466,-0.003571428571422,-0.001271186440763,0.003571428571422,-0.012832929782077,0.000000000000000,2 -9608,9666,9668,9726,0.182142857142890,0.142493946731448,0.180357142857179,0.135381355932381,0.180357142857179,0.148274818402103,0.178571428571468,0.141162227603036,0.012953995157371,0.000000000000000,0.001271186440763,-0.003571428571422,-0.001392251816061,0.003571428571422,-0.012832929782073,-0.000000000000000,2 -9609,9667,9669,9727,0.182142857142890,0.155447941888820,0.180357142857179,0.148274818402103,0.180357142857179,0.161168280871828,0.178571428571468,0.153995157385111,0.012953995157374,0.000000000000000,0.001392251816061,-0.003571428571422,-0.001513317191358,0.003571428571422,-0.012832929782076,0.000000000000000,2 -9610,9668,9670,9728,0.182142857142890,0.168401937046190,0.180357142857179,0.161168280871828,0.180357142857179,0.174061743341544,0.178571428571468,0.166828087167182,0.012953995157366,0.000000000000000,0.001513317191358,-0.003571428571422,-0.001634382566657,0.003571428571422,-0.012832929782067,-0.000000000000000,2 -9611,9669,9671,9729,0.182142857142890,0.181355932203558,0.180357142857179,0.174061743341544,0.180357142857179,0.186955205811265,0.178571428571468,0.179661016949252,0.012953995157370,0.000000000000000,0.001634382566657,-0.003571428571422,-0.001755447941955,0.003571428571422,-0.012832929782071,-0.000000000000000,2 -9612,9670,9672,9730,0.182142857142890,0.194309927360931,0.180357142857179,0.186955205811265,0.180357142857179,0.199848668280994,0.178571428571468,0.192493946731328,0.012953995157378,0.000000000000000,0.001755447941955,-0.003571428571422,-0.001876513317251,0.003571428571422,-0.012832929782081,0.000000000000000,2 -9613,9671,9673,9731,0.182142857142890,0.207263922518303,0.180357142857179,0.199848668280994,0.180357142857179,0.212742130750711,0.178571428571468,0.205326876513402,0.012953995157366,0.000000000000000,0.001876513317251,-0.003571428571422,-0.001997578692550,0.003571428571422,-0.012832929782067,-0.000000000000000,2 -9614,9672,9674,9732,0.182142857142890,0.220217917675676,0.180357142857179,0.212742130750711,0.180357142857179,0.225635593220444,0.178571428571468,0.218159806295478,0.012953995157381,0.000000000000000,0.001997578692550,-0.003571428571422,-0.002118644067846,0.003571428571422,-0.012832929782085,-0.000000000000000,2 -9615,9673,9675,9733,0.182142857142890,0.233171912833050,0.180357142857179,0.225635593220444,0.180357142857179,0.238529055690161,0.178571428571468,0.230992736077554,0.012953995157366,0.000000000000000,0.002118644067846,-0.003571428571422,-0.002239709443145,0.003571428571422,-0.012832929782067,-0.000000000000000,2 -9616,9674,9676,9734,0.182142857142890,0.246125907990421,0.180357142857179,0.238529055690161,0.180357142857179,0.251422518159888,0.178571428571468,0.243825665859628,0.012953995157376,0.000000000000000,0.002239709443145,-0.003571428571422,-0.002360774818441,0.003571428571422,-0.012832929782079,0.000000000000000,2 -9617,9675,9677,9735,0.182142857142890,0.259079903147794,0.180357142857179,0.251422518159888,0.180357142857179,0.264315980629610,0.178571428571468,0.256658595641704,0.012953995157371,0.000000000000000,0.002360774818441,-0.003571428571422,-0.002481840193739,0.003571428571422,-0.012832929782073,-0.000000000000000,2 -9618,9676,9678,9736,0.182142857142890,0.272033898305165,0.180357142857179,0.264315980629610,0.180357142857179,0.277209443099332,0.178571428571468,0.269491525423777,0.012953995157371,0.000000000000000,0.002481840193739,-0.003571428571422,-0.002602905569037,0.003571428571422,-0.012832929782073,-0.000000000000000,2 -9619,9677,9679,9737,0.182142857142890,0.284987893462545,0.180357142857179,0.277209443099332,0.180357142857179,0.290102905569072,0.178571428571468,0.282324455205859,0.012953995157389,0.000000000000000,0.002602905569037,-0.003571428571422,-0.002723970944335,0.003571428571422,-0.012832929782091,0.000000000000000,2 -9620,9678,9680,9738,0.182142857142890,0.297941888619927,0.180357142857179,0.290102905569072,0.180357142857179,0.302996368038796,0.178571428571468,0.295157384987942,0.012953995157374,0.000000000000000,0.002723970944335,-0.003571428571422,-0.002845036319635,0.003571428571422,-0.012832929782074,-0.000000000000000,2 -9621,9679,9681,9739,0.182142857142890,0.310895883777312,0.180357142857179,0.302996368038796,0.180357142857179,0.315889830508544,0.178571428571468,0.307990314770029,0.012953995157396,0.000000000000000,0.002845036319635,-0.003571428571422,-0.002966101694932,0.003571428571422,-0.012832929782099,0.000000000000000,2 -9622,9680,9682,9740,0.182142857142890,0.323849878934696,0.180357142857179,0.315889830508544,0.180357142857179,0.328783292978266,0.178571428571468,0.320823244552114,0.012953995157372,0.000000000000000,0.002966101694932,-0.003571428571422,-0.003087167070232,0.003571428571422,-0.012832929782072,-0.000000000000000,2 -9623,9681,9683,9741,0.182142857142890,0.336803874092071,0.180357142857179,0.328783292978266,0.180357142857179,0.341676755447995,0.178571428571468,0.333656174334191,0.012953995157377,0.000000000000000,0.003087167070232,-0.003571428571422,-0.003208232445528,0.003571428571422,-0.012832929782081,-0.000000000000000,2 -9624,9682,9684,9742,0.182142857142890,0.349757869249444,0.180357142857179,0.341676755447995,0.180357142857179,0.354570217917716,0.178571428571468,0.346489104116267,0.012953995157370,0.000000000000000,0.003208232445528,-0.003571428571422,-0.003329297820826,0.003571428571422,-0.012832929782072,-0.000000000000000,2 -9625,9683,9685,9743,0.182142857142890,0.362711864406815,0.180357142857179,0.354570217917716,0.180357142857179,0.367463680387440,0.178571428571468,0.359322033898341,0.012953995157372,0.000000000000000,0.003329297820826,-0.003571428571422,-0.003450363196123,0.003571428571422,-0.012832929782075,0.000000000000000,2 -7702,9626,9684,9744,0.180357142857179,0.380357142857179,0.182142857142890,0.375665859564196,0.180357142857179,0.367463680387440,0.178571428571468,0.372154963680423,-0.003571428571422,0.003571428571422,0.012953995157389,-0.000000000000000,0.003450363196123,-0.003571428571422,-0.012832929782090,-0.000000000000000,2 -9157,9627,9687,9745,0.176785714285765,-0.376785714285765,0.178571428571468,-0.372154963680422,0.176785714285765,-0.364013317191325,0.175000000000062,-0.368644067796669,-0.003571428571406,-0.003571428571406,0.012832929782093,0.000000000000000,0.003450363196100,0.003571428571406,-0.012711864406787,0.000000000000000,2 -9628,9686,9688,9746,0.178571428571468,-0.359322033898326,0.176785714285765,-0.364013317191325,0.176785714285765,-0.351240920096881,0.175000000000062,-0.355932203389880,0.012832929782098,-0.000000000000000,-0.003450363196100,-0.003571428571406,0.003329297820793,0.003571428571406,-0.012711864406791,-0.000000000000000,2 -9629,9687,9689,9747,0.178571428571468,-0.346489104116233,0.176785714285765,-0.351240920096881,0.176785714285765,-0.338468523002445,0.175000000000062,-0.343220338983093,0.012832929782088,0.000000000000000,-0.003329297820793,-0.003571428571406,0.003208232445488,0.003571428571406,-0.012711864406783,-0.000000000000000,2 -9630,9688,9690,9748,0.178571428571468,-0.333656174334139,0.176785714285765,-0.338468523002445,0.176785714285765,-0.325696125907999,0.175000000000062,-0.330508474576305,0.012832929782101,0.000000000000000,-0.003208232445488,-0.003571428571406,0.003087167070180,0.003571428571406,-0.012711864406792,-0.000000000000000,2 -9631,9689,9691,9749,0.178571428571468,-0.320823244552046,0.176785714285765,-0.325696125907999,0.176785714285765,-0.312923728813565,0.175000000000062,-0.317796610169518,0.012832929782086,-0.000000000000000,-0.003087167070180,-0.003571428571406,0.002966101694876,0.003571428571406,-0.012711864406782,0.000000000000000,2 -9632,9690,9692,9750,0.178571428571468,-0.307990314769953,0.176785714285765,-0.312923728813565,0.176785714285765,-0.300151331719119,0.175000000000062,-0.305084745762731,0.012832929782099,0.000000000000000,-0.002966101694876,-0.003571428571406,0.002845036319568,0.003571428571406,-0.012711864406791,-0.000000000000000,2 -9633,9691,9693,9751,0.178571428571468,-0.295157384987857,0.176785714285765,-0.300151331719119,0.176785714285765,-0.287378934624680,0.175000000000062,-0.292372881355942,0.012832929782092,0.000000000000000,-0.002845036319568,-0.003571428571406,0.002723970944262,0.003571428571406,-0.012711864406786,-0.000000000000000,2 -9634,9692,9694,9752,0.178571428571468,-0.282324455205767,0.176785714285765,-0.287378934624680,0.176785714285765,-0.274606537530246,0.175000000000062,-0.279661016949159,0.012832929782088,0.000000000000000,-0.002723970944262,-0.003571428571406,0.002602905568955,0.003571428571406,-0.012711864406781,-0.000000000000000,2 -9635,9693,9695,9753,0.178571428571468,-0.269491525423677,0.176785714285765,-0.274606537530246,0.176785714285765,-0.261834140435808,0.175000000000062,-0.266949152542376,0.012832929782092,0.000000000000000,-0.002602905568955,-0.003571428571406,0.002481840193647,0.003571428571406,-0.012711864406785,-0.000000000000000,2 -9636,9694,9696,9754,0.178571428571468,-0.256658595641588,0.176785714285765,-0.261834140435808,0.176785714285765,-0.249061743341374,0.175000000000062,-0.254237288135594,0.012832929782086,-0.000000000000000,-0.002481840193647,-0.003571428571406,0.002360774818341,0.003571428571406,-0.012711864406780,0.000000000000000,2 -9637,9695,9697,9755,0.178571428571468,-0.243825665859494,0.176785714285765,-0.249061743341374,0.176785714285765,-0.236289346246926,0.175000000000062,-0.241525423728806,0.012832929782103,0.000000000000000,-0.002360774818341,-0.003571428571406,0.002239709443033,0.003571428571406,-0.012711864406795,-0.000000000000000,2 -9638,9696,9698,9756,0.178571428571468,-0.230992736077403,0.176785714285765,-0.236289346246926,0.176785714285765,-0.223516949152500,0.175000000000062,-0.228813559322022,0.012832929782078,-0.000000000000000,-0.002239709443033,-0.003571428571406,0.002118644067729,0.003571428571406,-0.012711864406774,-0.000000000000000,2 -9639,9697,9699,9757,0.178571428571468,-0.218159806295314,0.176785714285765,-0.223516949152500,0.176785714285765,-0.210744552058053,0.175000000000062,-0.216101694915239,0.012832929782101,0.000000000000000,-0.002118644067729,-0.003571428571406,0.001997578692420,0.003571428571406,-0.012711864406792,0.000000000000000,2 -9640,9698,9700,9758,0.178571428571468,-0.205326876513222,0.176785714285765,-0.210744552058053,0.176785714285765,-0.197972154963623,0.175000000000062,-0.203389830508454,0.012832929782084,0.000000000000000,-0.001997578692420,-0.003571428571406,0.001876513317114,0.003571428571406,-0.012711864406777,-0.000000000000000,2 -9641,9699,9701,9759,0.178571428571468,-0.192493946731133,0.176785714285765,-0.197972154963623,0.176785714285765,-0.185199757869184,0.175000000000062,-0.190677966101673,0.012832929782093,-0.000000000000000,-0.001876513317114,-0.003571428571406,0.001755447941807,0.003571428571406,-0.012711864406786,-0.000000000000000,2 -9642,9700,9702,9760,0.178571428571468,-0.179661016949047,0.176785714285765,-0.185199757869184,0.176785714285765,-0.172427360774757,0.175000000000062,-0.177966101694893,0.012832929782079,0.000000000000000,-0.001755447941807,-0.003571428571406,0.001634382566501,0.003571428571406,-0.012711864406774,-0.000000000000000,2 -9643,9701,9703,9761,0.178571428571468,-0.166828087166959,0.176785714285765,-0.172427360774757,0.176785714285765,-0.159654963680314,0.175000000000062,-0.165254237288112,0.012832929782097,0.000000000000000,-0.001634382566501,-0.003571428571406,0.001513317191193,0.003571428571406,-0.012711864406789,-0.000000000000000,2 -9644,9702,9704,9762,0.178571428571468,-0.153995157384867,0.176785714285765,-0.159654963680314,0.176785714285765,-0.146882566585879,0.175000000000062,-0.152542372881327,0.012832929782088,-0.000000000000000,-0.001513317191193,-0.003571428571406,0.001392251815887,0.003571428571406,-0.012711864406781,-0.000000000000000,2 -9645,9703,9705,9763,0.178571428571468,-0.141162227602776,0.176785714285765,-0.146882566585879,0.176785714285765,-0.134110169491439,0.175000000000062,-0.139830508474542,0.012832929782093,0.000000000000000,-0.001392251815887,-0.003571428571406,0.001271186440581,0.003571428571406,-0.012711864406787,-0.000000000000000,2 -9646,9704,9706,9764,0.178571428571468,-0.128329297820681,0.176785714285765,-0.134110169491439,0.176785714285765,-0.121337772396997,0.175000000000062,-0.127118644067755,0.012832929782096,0.000000000000000,-0.001271186440581,-0.003571428571406,0.001150121065273,0.003571428571406,-0.012711864406788,-0.000000000000000,2 -9647,9705,9707,9765,0.178571428571468,-0.115496368038593,0.176785714285765,-0.121337772396997,0.176785714285765,-0.108565375302569,0.175000000000062,-0.114406779660973,0.012832929782081,0.000000000000000,-0.001150121065273,-0.003571428571406,0.001029055689967,0.003571428571406,-0.012711864406775,-0.000000000000000,2 -9648,9706,9708,9766,0.178571428571468,-0.102663438256505,0.176785714285765,-0.108565375302569,0.176785714285765,-0.095792978208127,0.175000000000062,-0.101694915254191,0.012832929782096,0.000000000000000,-0.001029055689967,-0.003571428571406,0.000907990314659,0.003571428571406,-0.012711864406788,-0.000000000000000,2 -9649,9707,9709,9767,0.178571428571468,-0.089830508474413,0.176785714285765,-0.095792978208127,0.176785714285765,-0.083020581113693,0.175000000000062,-0.088983050847407,0.012832929782087,-0.000000000000000,-0.000907990314659,-0.003571428571406,0.000786924939353,0.003571428571406,-0.012711864406781,-0.000000000000000,2 -9650,9708,9710,9768,0.178571428571468,-0.076997578692323,0.176785714285765,-0.083020581113693,0.176785714285765,-0.070248184019253,0.175000000000062,-0.076271186440624,0.012832929782093,0.000000000000000,-0.000786924939353,-0.003571428571406,0.000665859564045,0.003571428571406,-0.012711864406786,-0.000000000000000,2 -9651,9709,9711,9769,0.178571428571468,-0.064164648910232,0.176785714285765,-0.070248184019253,0.176785714285765,-0.057475786924819,0.175000000000062,-0.063559322033840,0.012832929782087,0.000000000000000,-0.000665859564045,-0.003571428571406,0.000544794188739,0.003571428571406,-0.012711864406781,-0.000000000000000,2 -9652,9710,9712,9770,0.178571428571468,-0.051331719128144,0.176785714285765,-0.057475786924819,0.176785714285765,-0.044703389830383,0.175000000000062,-0.050847457627059,0.012832929782090,0.000000000000000,-0.000544794188739,-0.003571428571406,0.000423728813432,0.003571428571406,-0.012711864406783,-0.000000000000000,2 -9653,9711,9713,9771,0.178571428571468,-0.038498789346053,0.176785714285765,-0.044703389830383,0.176785714285765,-0.031930992735946,0.175000000000062,-0.038135593220276,0.012832929782091,-0.000000000000000,-0.000423728813432,-0.003571428571406,0.000302663438124,0.003571428571406,-0.012711864406784,-0.000000000000000,2 -9654,9712,9714,9772,0.178571428571468,-0.025665859563964,0.176785714285765,-0.031930992735946,0.176785714285765,-0.019158595641512,0.175000000000062,-0.025423728813493,0.012832929782087,0.000000000000000,-0.000302663438124,-0.003571428571406,0.000181598062818,0.003571428571406,-0.012711864406781,-0.000000000000000,2 -9655,9713,9715,9773,0.178571428571468,-0.012832929781874,0.176785714285765,-0.019158595641512,0.176785714285765,-0.006386198547072,0.175000000000062,-0.012711864406710,0.012832929782093,-0.000000000000000,-0.000181598062818,-0.003571428571406,0.000060532687510,0.003571428571406,-0.012711864406786,0.000000000000000,2 -9656,9714,9716,9774,0.178571428571468,0.000000000000216,0.176785714285765,-0.006386198547072,0.176785714285765,0.006386198547364,0.175000000000062,0.000000000000076,0.012832929782087,0.000000000000000,-0.000060532687510,-0.003571428571406,-0.000060532687790,0.003571428571406,-0.012711864406786,-0.000000000000000,2 -9657,9715,9717,9775,0.178571428571468,0.012832929782296,0.176785714285765,0.006386198547364,0.176785714285765,0.019158595641788,0.175000000000062,0.012711864406857,0.012832929782072,-0.000000000000000,0.000060532687790,-0.003571428571406,-0.000181598063088,0.003571428571406,-0.012711864406775,-0.000000000000000,2 -9658,9716,9718,9776,0.178571428571468,0.025665859564370,0.176785714285765,0.019158595641788,0.176785714285765,0.031930992736217,0.175000000000062,0.025423728813634,0.012832929782077,0.000000000000000,0.000181598063088,-0.003571428571406,-0.000302663438384,0.003571428571406,-0.012711864406781,-0.000000000000000,2 -9659,9717,9719,9777,0.178571428571468,0.038498789346446,0.176785714285765,0.031930992736217,0.176785714285765,0.044703389830643,0.175000000000062,0.038135593220413,0.012832929782074,0.000000000000000,0.000302663438384,-0.003571428571406,-0.000423728813681,0.003571428571406,-0.012711864406777,-0.000000000000000,2 -9660,9718,9720,9778,0.178571428571468,0.051331719128521,0.176785714285765,0.044703389830643,0.176785714285765,0.057475786925070,0.175000000000062,0.050847457627191,0.012832929782075,-0.000000000000000,0.000423728813681,-0.003571428571406,-0.000544794188978,0.003571428571406,-0.012711864406778,-0.000000000000000,2 -9661,9719,9721,9779,0.178571428571468,0.064164648910597,0.176785714285765,0.057475786925070,0.176785714285765,0.070248184019498,0.175000000000062,0.063559322033971,0.012832929782077,0.000000000000000,0.000544794188978,-0.003571428571406,-0.000665859564275,0.003571428571406,-0.012711864406781,-0.000000000000000,2 -9662,9720,9722,9780,0.178571428571468,0.076997578692672,0.176785714285765,0.070248184019498,0.176785714285765,0.083020581113922,0.175000000000062,0.076271186440749,0.012832929782072,0.000000000000000,0.000665859564275,-0.003571428571406,-0.000786924939572,0.003571428571406,-0.012711864406775,-0.000000000000000,2 -9663,9721,9723,9781,0.178571428571468,0.089830508474743,0.176785714285765,0.083020581113922,0.176785714285765,0.095792978208344,0.175000000000062,0.088983050847523,0.012832929782069,-0.000000000000000,0.000786924939572,-0.003571428571406,-0.000907990314868,0.003571428571406,-0.012711864406774,-0.000000000000000,2 -9664,9722,9724,9782,0.178571428571468,0.102663438256814,0.176785714285765,0.095792978208344,0.176785714285765,0.108565375302768,0.175000000000062,0.101694915254298,0.012832929782073,0.000000000000000,0.000907990314868,-0.003571428571406,-0.001029055690164,0.003571428571406,-0.012711864406777,-0.000000000000000,2 -9665,9723,9725,9783,0.178571428571468,0.115496368038886,0.176785714285765,0.108565375302768,0.176785714285765,0.121337772397192,0.175000000000062,0.114406779661074,0.012832929782072,0.000000000000000,0.001029055690164,-0.003571428571406,-0.001150121065461,0.003571428571406,-0.012711864406775,-0.000000000000000,2 -9666,9724,9726,9784,0.178571428571468,0.128329297820961,0.176785714285765,0.121337772397192,0.176785714285765,0.134110169491621,0.175000000000062,0.127118644067852,0.012832929782077,-0.000000000000000,0.001150121065461,-0.003571428571406,-0.001271186440758,0.003571428571406,-0.012711864406781,-0.000000000000000,2 -9667,9725,9727,9785,0.178571428571468,0.141162227603036,0.176785714285765,0.134110169491621,0.176785714285765,0.146882566586045,0.175000000000062,0.139830508474630,0.012832929782073,0.000000000000000,0.001271186440758,-0.003571428571406,-0.001392251816055,0.003571428571406,-0.012711864406775,-0.000000000000000,2 -9668,9726,9728,9786,0.178571428571468,0.153995157385111,0.176785714285765,0.146882566586045,0.176785714285765,0.159654963680473,0.175000000000062,0.152542372881407,0.012832929782076,-0.000000000000000,0.001392251816055,-0.003571428571406,-0.001513317191352,0.003571428571406,-0.012711864406780,-0.000000000000000,2 -9669,9727,9729,9787,0.178571428571468,0.166828087167182,0.176785714285765,0.159654963680473,0.176785714285765,0.172427360774891,0.175000000000062,0.165254237288182,0.012832929782067,0.000000000000000,0.001513317191352,-0.003571428571406,-0.001634382566650,0.003571428571406,-0.012711864406769,-0.000000000000000,2 -9670,9728,9730,9788,0.178571428571468,0.179661016949252,0.176785714285765,0.172427360774891,0.176785714285765,0.185199757869314,0.175000000000062,0.177966101694953,0.012832929782071,0.000000000000000,0.001634382566650,-0.003571428571406,-0.001755447941947,0.003571428571406,-0.012711864406774,-0.000000000000000,2 -9671,9729,9731,9789,0.178571428571468,0.192493946731328,0.176785714285765,0.185199757869314,0.176785714285765,0.197972154963747,0.175000000000062,0.190677966101733,0.012832929782081,-0.000000000000000,0.001755447941947,-0.003571428571406,-0.001876513317243,0.003571428571406,-0.012711864406786,-0.000000000000000,2 -9672,9730,9732,9790,0.178571428571468,0.205326876513402,0.176785714285765,0.197972154963747,0.176785714285765,0.210744552058165,0.175000000000062,0.203389830508510,0.012832929782067,0.000000000000000,0.001876513317243,-0.003571428571406,-0.001997578692541,0.003571428571406,-0.012711864406769,-0.000000000000000,2 -9673,9731,9733,9791,0.178571428571468,0.218159806295478,0.176785714285765,0.210744552058165,0.176785714285765,0.223516949152603,0.175000000000062,0.216101694915289,0.012832929782085,0.000000000000000,0.001997578692541,-0.003571428571406,-0.002118644067836,0.003571428571406,-0.012711864406790,-0.000000000000000,2 -9674,9732,9734,9792,0.178571428571468,0.230992736077554,0.176785714285765,0.223516949152603,0.176785714285765,0.236289346247021,0.175000000000062,0.228813559322069,0.012832929782067,0.000000000000000,0.002118644067836,-0.003571428571406,-0.002239709443135,0.003571428571406,-0.012711864406769,-0.000000000000000,2 -9675,9733,9735,9793,0.178571428571468,0.243825665859628,0.176785714285765,0.236289346247021,0.176785714285765,0.249061743341452,0.175000000000062,0.241525423728845,0.012832929782079,-0.000000000000000,0.002239709443135,-0.003571428571406,-0.002360774818431,0.003571428571406,-0.012711864406783,-0.000000000000000,2 -9676,9734,9736,9794,0.178571428571468,0.256658595641704,0.176785714285765,0.249061743341452,0.176785714285765,0.261834140435877,0.175000000000062,0.254237288135625,0.012832929782073,0.000000000000000,0.002360774818431,-0.003571428571406,-0.002481840193728,0.003571428571406,-0.012711864406776,-0.000000000000000,2 -9677,9735,9737,9795,0.178571428571468,0.269491525423777,0.176785714285765,0.261834140435877,0.176785714285765,0.274606537530301,0.175000000000062,0.266949152542401,0.012832929782073,0.000000000000000,0.002481840193728,-0.003571428571406,-0.002602905569025,0.003571428571406,-0.012711864406776,-0.000000000000000,2 -9678,9736,9738,9796,0.178571428571468,0.282324455205859,0.176785714285765,0.274606537530301,0.176785714285765,0.287378934624743,0.175000000000062,0.279661016949185,0.012832929782091,-0.000000000000000,0.002602905569025,-0.003571428571406,-0.002723970944323,0.003571428571406,-0.012711864406793,-0.000000000000000,2 -9679,9737,9739,9797,0.178571428571468,0.295157384987942,0.176785714285765,0.287378934624743,0.176785714285765,0.300151331719168,0.175000000000062,0.292372881355970,0.012832929782074,0.000000000000000,0.002723970944323,-0.003571428571406,-0.002845036319622,0.003571428571406,-0.012711864406775,-0.000000000000000,2 -9680,9738,9740,9798,0.178571428571468,0.307990314770029,0.176785714285765,0.300151331719168,0.176785714285765,0.312923728813619,0.175000000000062,0.305084745762758,0.012832929782099,-0.000000000000000,0.002845036319622,-0.003571428571406,-0.002966101694919,0.003571428571406,-0.012711864406802,-0.000000000000000,2 -9681,9739,9741,9799,0.178571428571468,0.320823244552114,0.176785714285765,0.312923728813619,0.176785714285765,0.325696125908042,0.175000000000062,0.317796610169546,0.012832929782072,0.000000000000000,0.002966101694919,-0.003571428571406,-0.003087167070218,0.003571428571406,-0.012711864406773,-0.000000000000000,2 -9682,9740,9742,9800,0.178571428571468,0.333656174334191,0.176785714285765,0.325696125908042,0.176785714285765,0.338468523002475,0.175000000000062,0.330508474576325,0.012832929782081,0.000000000000000,0.003087167070218,-0.003571428571406,-0.003208232445514,0.003571428571406,-0.012711864406785,-0.000000000000000,2 -9683,9741,9743,9801,0.178571428571468,0.346489104116267,0.176785714285765,0.338468523002475,0.176785714285765,0.351240920096898,0.175000000000062,0.343220338983105,0.012832929782072,0.000000000000000,0.003208232445514,-0.003571428571406,-0.003329297820811,0.003571428571406,-0.012711864406774,-0.000000000000000,2 -9684,9742,9744,9802,0.178571428571468,0.359322033898341,0.176785714285765,0.351240920096898,0.176785714285765,0.364013317191324,0.175000000000062,0.355932203389881,0.012832929782075,-0.000000000000000,0.003329297820811,-0.003571428571406,-0.003450363196108,0.003571428571406,-0.012711864406778,-0.000000000000000,2 -7701,9685,9743,9803,0.176785714285765,0.376785714285765,0.178571428571468,0.372154963680423,0.176785714285765,0.364013317191324,0.175000000000062,0.368644067796666,-0.003571428571406,0.003571428571406,0.012832929782090,0.000000000000000,0.003450363196108,-0.003571428571406,-0.012711864406792,0.000000000000000,2 -9128,9686,9746,9804,0.173214285714348,-0.373214285714348,0.175000000000062,-0.368644067796669,0.173214285714348,-0.360562953995215,0.171428571428634,-0.365133171912894,-0.003571428571428,-0.003571428571428,0.012711864406787,-0.000000000000000,0.003450363196121,0.003571428571428,-0.012590799031480,-0.000000000000000,2 -9687,9745,9747,9805,0.175000000000062,-0.355932203389880,0.173214285714348,-0.360562953995215,0.173214285714348,-0.347911622276078,0.171428571428634,-0.352542372881413,0.012711864406791,0.000000000000000,-0.003450363196121,-0.003571428571428,0.003329297820813,0.003571428571428,-0.012590799031482,-0.000000000000000,2 -9688,9746,9748,9806,0.175000000000062,-0.343220338983093,0.173214285714348,-0.347911622276078,0.173214285714348,-0.335260290556948,0.171428571428634,-0.339951573849933,0.012711864406783,0.000000000000000,-0.003329297820813,-0.003571428571428,0.003208232445507,0.003571428571428,-0.012590799031478,-0.000000000000000,2 -9689,9747,9749,9807,0.175000000000062,-0.330508474576305,0.173214285714348,-0.335260290556948,0.173214285714348,-0.322608958837810,0.171428571428634,-0.327360774818452,0.012711864406792,0.000000000000000,-0.003208232445507,-0.003571428571428,0.003087167070198,0.003571428571428,-0.012590799031483,-0.000000000000000,2 -9690,9748,9750,9808,0.175000000000062,-0.317796610169518,0.173214285714348,-0.322608958837810,0.173214285714348,-0.309957627118680,0.171428571428634,-0.314769975786972,0.012711864406782,-0.000000000000000,-0.003087167070198,-0.003571428571428,0.002966101694894,0.003571428571428,-0.012590799031478,-0.000000000000000,2 -9691,9749,9751,9809,0.175000000000062,-0.305084745762731,0.173214285714348,-0.309957627118680,0.173214285714348,-0.297306295399543,0.171428571428635,-0.302179176755492,0.012711864406791,0.000000000000000,-0.002966101694894,-0.003571428571428,0.002845036319585,0.003571428571428,-0.012590799031483,0.000000000000000,2 -9692,9750,9752,9810,0.175000000000062,-0.292372881355942,0.173214285714348,-0.297306295399543,0.173214285714348,-0.284654963680410,0.171428571428635,-0.289588377724010,0.012711864406786,0.000000000000000,-0.002845036319585,-0.003571428571428,0.002723970944279,0.003571428571428,-0.012590799031480,-0.000000000000000,2 -9693,9751,9753,9811,0.175000000000062,-0.279661016949159,0.173214285714348,-0.284654963680410,0.173214285714348,-0.272003631961283,0.171428571428634,-0.276997578692534,0.012711864406781,0.000000000000000,-0.002723970944279,-0.003571428571428,0.002602905568971,0.003571428571428,-0.012590799031472,-0.000000000000000,2 -9694,9752,9754,9812,0.175000000000062,-0.266949152542376,0.173214285714348,-0.272003631961283,0.173214285714348,-0.259352300242153,0.171428571428634,-0.264406779661060,0.012711864406785,0.000000000000000,-0.002602905568971,-0.003571428571428,0.002481840193662,0.003571428571428,-0.012590799031476,-0.000000000000000,2 -9695,9753,9755,9813,0.175000000000062,-0.254237288135594,0.173214285714348,-0.259352300242153,0.173214285714348,-0.246700968523026,0.171428571428634,-0.251815980629585,0.012711864406780,-0.000000000000000,-0.002481840193662,-0.003571428571428,0.002360774818356,0.003571428571428,-0.012590799031474,-0.000000000000000,2 -9696,9754,9756,9814,0.175000000000062,-0.241525423728806,0.173214285714348,-0.246700968523026,0.173214285714348,-0.234049636803886,0.171428571428634,-0.239225181598105,0.012711864406795,0.000000000000000,-0.002360774818356,-0.003571428571428,0.002239709443047,0.003571428571428,-0.012590799031486,-0.000000000000000,2 -9697,9755,9757,9815,0.175000000000062,-0.228813559322022,0.173214285714348,-0.234049636803886,0.173214285714348,-0.221398305084765,0.171428571428635,-0.226634382566628,0.012711864406774,0.000000000000000,-0.002239709443047,-0.003571428571428,0.002118644067742,0.003571428571428,-0.012590799031468,0.000000000000000,2 -9698,9756,9758,9816,0.175000000000062,-0.216101694915239,0.173214285714348,-0.221398305084765,0.173214285714348,-0.208746973365627,0.171428571428635,-0.214043583535152,0.012711864406792,-0.000000000000000,-0.002118644067742,-0.003571428571428,0.001997578692433,0.003571428571428,-0.012590799031483,-0.000000000000000,2 -9699,9757,9759,9817,0.175000000000062,-0.203389830508454,0.173214285714348,-0.208746973365627,0.173214285714348,-0.196095641646503,0.171428571428634,-0.201452784503675,0.012711864406777,0.000000000000000,-0.001997578692433,-0.003571428571428,0.001876513317126,0.003571428571428,-0.012590799031470,-0.000000000000000,2 -9700,9758,9760,9818,0.175000000000062,-0.190677966101673,0.173214285714348,-0.196095641646503,0.173214285714348,-0.183444309927371,0.171428571428635,-0.188861985472201,0.012711864406786,0.000000000000000,-0.001876513317126,-0.003571428571428,0.001755447941818,0.003571428571428,-0.012590799031478,0.000000000000000,2 -9701,9759,9761,9819,0.175000000000062,-0.177966101694893,0.173214285714348,-0.183444309927371,0.173214285714348,-0.170792978208251,0.171428571428635,-0.176271186440729,0.012711864406774,0.000000000000000,-0.001755447941818,-0.003571428571428,0.001634382566511,0.003571428571428,-0.012590799031467,-0.000000000000000,2 -9702,9760,9762,9820,0.175000000000062,-0.165254237288112,0.173214285714348,-0.170792978208251,0.173214285714348,-0.158141646489116,0.171428571428634,-0.163680387409255,0.012711864406789,0.000000000000000,-0.001634382566511,-0.003571428571428,0.001513317191202,0.003571428571428,-0.012590799031480,-0.000000000000000,2 -9703,9761,9763,9821,0.175000000000062,-0.152542372881327,0.173214285714348,-0.158141646489116,0.173214285714348,-0.145490314769988,0.171428571428634,-0.151089588377778,0.012711864406781,0.000000000000000,-0.001513317191202,-0.003571428571428,0.001392251815895,0.003571428571428,-0.012590799031474,-0.000000000000000,2 -9704,9762,9764,9822,0.175000000000062,-0.139830508474542,0.173214285714348,-0.145490314769988,0.173214285714348,-0.132838983050855,0.171428571428635,-0.138498789346301,0.012711864406787,0.000000000000000,-0.001392251815895,-0.003571428571428,0.001271186440588,0.003571428571428,-0.012590799031480,0.000000000000000,2 -9705,9763,9765,9823,0.175000000000062,-0.127118644067755,0.173214285714348,-0.132838983050855,0.173214285714348,-0.120187651331721,0.171428571428635,-0.125907990314821,0.012711864406788,0.000000000000000,-0.001271186440588,-0.003571428571428,0.001150121065280,0.003571428571428,-0.012590799031480,-0.000000000000000,2 -9706,9764,9766,9824,0.175000000000062,-0.114406779660973,0.173214285714348,-0.120187651331721,0.173214285714348,-0.107536319612599,0.171428571428635,-0.113317191283347,0.012711864406775,0.000000000000000,-0.001150121065280,-0.003571428571428,0.001029055689973,0.003571428571428,-0.012590799031468,0.000000000000000,2 -9707,9765,9767,9825,0.175000000000062,-0.101694915254191,0.173214285714348,-0.107536319612599,0.173214285714348,-0.094884987893465,0.171428571428635,-0.100726392251873,0.012711864406788,0.000000000000000,-0.001029055689973,-0.003571428571428,0.000907990314665,0.003571428571428,-0.012590799031480,-0.000000000000000,2 -9708,9766,9768,9826,0.175000000000062,-0.088983050847407,0.173214285714348,-0.094884987893465,0.173214285714348,-0.082233656174338,0.171428571428635,-0.088135593220396,0.012711864406781,0.000000000000000,-0.000907990314665,-0.003571428571428,0.000786924939357,0.003571428571428,-0.012590799031473,-0.000000000000000,2 -9709,9767,9769,9827,0.175000000000062,-0.076271186440624,0.173214285714348,-0.082233656174338,0.173214285714348,-0.069582324455206,0.171428571428635,-0.075544794188920,0.012711864406786,0.000000000000000,-0.000786924939357,-0.003571428571428,0.000665859564049,0.003571428571428,-0.012590799031478,0.000000000000000,2 -9710,9768,9770,9828,0.175000000000062,-0.063559322033840,0.173214285714348,-0.069582324455206,0.173214285714348,-0.056930992736079,0.171428571428635,-0.062953995157445,0.012711864406781,0.000000000000000,-0.000665859564049,-0.003571428571428,0.000544794188742,0.003571428571428,-0.012590799031473,-0.000000000000000,2 -9711,9769,9771,9829,0.175000000000062,-0.050847457627059,0.173214285714348,-0.056930992736079,0.173214285714348,-0.044279661016950,0.171428571428635,-0.050363196125971,0.012711864406783,0.000000000000000,-0.000544794188742,-0.003571428571428,0.000423728813434,0.003571428571428,-0.012590799031475,-0.000000000000000,2 -9712,9770,9772,9830,0.175000000000062,-0.038135593220276,0.173214285714348,-0.044279661016950,0.173214285714348,-0.031628329297820,0.171428571428634,-0.037772397094495,0.012711864406784,0.000000000000000,-0.000423728813434,-0.003571428571428,0.000302663438126,0.003571428571428,-0.012590799031476,-0.000000000000000,2 -9713,9771,9773,9831,0.175000000000062,-0.025423728813493,0.173214285714348,-0.031628329297820,0.173214285714348,-0.018976997578694,0.171428571428635,-0.025181598063021,0.012711864406781,0.000000000000000,-0.000302663438126,-0.003571428571428,0.000181598062819,0.003571428571428,-0.012590799031473,0.000000000000000,2 -9714,9772,9774,9832,0.175000000000062,-0.012711864406710,0.173214285714348,-0.018976997578694,0.173214285714348,-0.006325665859562,0.171428571428635,-0.012590799031545,0.012711864406786,-0.000000000000000,-0.000181598062819,-0.003571428571428,0.000060532687511,0.003571428571428,-0.012590799031478,-0.000000000000000,2 -9715,9773,9775,9833,0.175000000000062,0.000000000000076,0.173214285714348,-0.006325665859562,0.173214285714348,0.006325665859574,0.171428571428635,-0.000000000000064,0.012711864406786,0.000000000000000,-0.000060532687511,-0.003571428571428,-0.000060532687791,0.003571428571428,-0.012590799031484,0.000000000000000,2 -9716,9774,9776,9834,0.175000000000062,0.012711864406857,0.173214285714348,0.006325665859574,0.173214285714348,0.018976997578700,0.171428571428635,0.012590799031417,0.012711864406775,0.000000000000000,0.000060532687791,-0.003571428571428,-0.000181598063089,0.003571428571428,-0.012590799031477,-0.000000000000000,2 -9717,9775,9777,9835,0.175000000000062,0.025423728813634,0.173214285714348,0.018976997578700,0.173214285714348,0.031628329297832,0.171428571428634,0.025181598062897,0.012711864406781,0.000000000000000,0.000181598063089,-0.003571428571428,-0.000302663438386,0.003571428571428,-0.012590799031483,-0.000000000000000,2 -9718,9776,9778,9836,0.175000000000062,0.038135593220413,0.173214285714348,0.031628329297832,0.173214285714348,0.044279661016960,0.171428571428635,0.037772397094378,0.012711864406777,0.000000000000000,0.000302663438386,-0.003571428571428,-0.000423728813684,0.003571428571428,-0.012590799031480,0.000000000000000,2 -9719,9777,9779,9837,0.175000000000062,0.050847457627191,0.173214285714348,0.044279661016960,0.173214285714348,0.056930992736090,0.171428571428635,0.050363196125859,0.012711864406778,0.000000000000000,0.000423728813684,-0.003571428571428,-0.000544794188982,0.003571428571428,-0.012590799031481,-0.000000000000000,2 -9720,9778,9780,9838,0.175000000000062,0.063559322033971,0.173214285714348,0.056930992736090,0.173214285714348,0.069582324455222,0.171428571428635,0.062953995157341,0.012711864406781,0.000000000000000,0.000544794188982,-0.003571428571428,-0.000665859564279,0.003571428571428,-0.012590799031483,0.000000000000000,2 -9721,9779,9781,9839,0.175000000000062,0.076271186440749,0.173214285714348,0.069582324455222,0.173214285714348,0.082233656174348,0.171428571428635,0.075544794188821,0.012711864406775,0.000000000000000,0.000665859564279,-0.003571428571428,-0.000786924939577,0.003571428571428,-0.012590799031477,-0.000000000000000,2 -9722,9780,9782,9840,0.175000000000062,0.088983050847523,0.173214285714348,0.082233656174348,0.173214285714348,0.094884987893473,0.171428571428635,0.088135593220298,0.012711864406774,0.000000000000000,0.000786924939577,-0.003571428571428,-0.000907990314873,0.003571428571428,-0.012590799031477,-0.000000000000000,2 -9723,9781,9783,9841,0.175000000000062,0.101694915254298,0.173214285714348,0.094884987893473,0.173214285714348,0.107536319612602,0.171428571428635,0.100726392251777,0.012711864406777,0.000000000000000,0.000907990314873,-0.003571428571428,-0.001029055690170,0.003571428571428,-0.012590799031480,0.000000000000000,2 -9724,9782,9784,9842,0.175000000000062,0.114406779661074,0.173214285714348,0.107536319612602,0.173214285714348,0.120187651331728,0.171428571428635,0.113317191283255,0.012711864406775,0.000000000000000,0.001029055690170,-0.003571428571428,-0.001150121065468,0.003571428571428,-0.012590799031477,-0.000000000000000,2 -9725,9783,9785,9843,0.175000000000062,0.127118644067852,0.173214285714348,0.120187651331728,0.173214285714348,0.132838983050860,0.171428571428635,0.125907990314735,0.012711864406781,0.000000000000000,0.001150121065468,-0.003571428571428,-0.001271186440765,0.003571428571428,-0.012590799031483,-0.000000000000000,2 -9726,9784,9786,9844,0.175000000000062,0.139830508474630,0.173214285714348,0.132838983050860,0.173214285714348,0.145490314769986,0.171428571428635,0.138498789346216,0.012711864406775,0.000000000000000,0.001271186440765,-0.003571428571428,-0.001392251816063,0.003571428571428,-0.012590799031477,-0.000000000000000,2 -9727,9785,9787,9845,0.175000000000062,0.152542372881407,0.173214285714348,0.145490314769986,0.173214285714348,0.158141646489117,0.171428571428635,0.151089588377695,0.012711864406780,0.000000000000000,0.001392251816063,-0.003571428571428,-0.001513317191361,0.003571428571428,-0.012590799031482,0.000000000000000,2 -9728,9786,9788,9846,0.175000000000062,0.165254237288182,0.173214285714348,0.158141646489117,0.173214285714348,0.170792978208236,0.171428571428635,0.163680387409172,0.012711864406769,0.000000000000000,0.001513317191361,-0.003571428571428,-0.001634382566660,0.003571428571428,-0.012590799031470,-0.000000000000000,2 -9729,9787,9789,9847,0.175000000000062,0.177966101694953,0.173214285714348,0.170792978208236,0.173214285714348,0.183444309927361,0.171428571428635,0.176271186440644,0.012711864406774,0.000000000000000,0.001634382566660,-0.003571428571428,-0.001755447941958,0.003571428571428,-0.012590799031475,-0.000000000000000,2 -9730,9788,9790,9848,0.175000000000062,0.190677966101733,0.173214285714348,0.183444309927361,0.173214285714348,0.196095641646498,0.171428571428635,0.188861985472126,0.012711864406786,0.000000000000000,0.001755447941958,-0.003571428571428,-0.001876513317254,0.003571428571428,-0.012590799031489,-0.000000000000000,2 -9731,9789,9791,9849,0.175000000000062,0.203389830508510,0.173214285714348,0.196095641646498,0.173214285714348,0.208746973365617,0.171428571428634,0.201452784503606,0.012711864406769,0.000000000000000,0.001876513317254,-0.003571428571428,-0.001997578692554,0.003571428571428,-0.012590799031470,-0.000000000000000,2 -9732,9790,9792,9850,0.175000000000062,0.216101694915289,0.173214285714348,0.208746973365617,0.173214285714348,0.221398305084760,0.171428571428634,0.214043583535088,0.012711864406790,0.000000000000000,0.001997578692554,-0.003571428571428,-0.002118644067849,0.003571428571428,-0.012590799031494,-0.000000000000000,2 -9733,9791,9793,9851,0.175000000000062,0.228813559322069,0.173214285714348,0.221398305084760,0.173214285714348,0.234049636803879,0.171428571428634,0.226634382566570,0.012711864406769,0.000000000000000,0.002118644067849,-0.003571428571428,-0.002239709443148,0.003571428571428,-0.012590799031470,-0.000000000000000,2 -9734,9792,9794,9852,0.175000000000062,0.241525423728845,0.173214285714348,0.234049636803879,0.173214285714348,0.246700968523014,0.171428571428635,0.239225181598048,0.012711864406783,0.000000000000000,0.002239709443148,-0.003571428571428,-0.002360774818445,0.003571428571428,-0.012590799031486,0.000000000000000,2 -9735,9793,9795,9853,0.175000000000062,0.254237288135625,0.173214285714348,0.246700968523014,0.173214285714348,0.259352300242141,0.171428571428635,0.251815980629530,0.012711864406776,0.000000000000000,0.002360774818445,-0.003571428571428,-0.002481840193743,0.003571428571428,-0.012590799031478,-0.000000000000000,2 -9736,9794,9796,9854,0.175000000000062,0.266949152542401,0.173214285714348,0.259352300242141,0.173214285714348,0.272003631961268,0.171428571428635,0.264406779661008,0.012711864406776,0.000000000000000,0.002481840193743,-0.003571428571428,-0.002602905569041,0.003571428571428,-0.012590799031478,-0.000000000000000,2 -9737,9795,9797,9855,0.175000000000062,0.279661016949185,0.173214285714348,0.272003631961268,0.173214285714348,0.284654963680412,0.171428571428635,0.276997578692495,0.012711864406793,0.000000000000000,0.002602905569041,-0.003571428571428,-0.002723970944340,0.003571428571428,-0.012590799031495,-0.000000000000000,2 -9738,9796,9798,9856,0.175000000000062,0.292372881355970,0.173214285714348,0.284654963680412,0.173214285714348,0.297306295399537,0.171428571428634,0.289588377723980,0.012711864406775,0.000000000000000,0.002723970944340,-0.003571428571428,-0.002845036319639,0.003571428571428,-0.012590799031475,-0.000000000000000,2 -9739,9797,9799,9857,0.175000000000062,0.305084745762758,0.173214285714348,0.297306295399537,0.173214285714348,0.309957627118691,0.171428571428634,0.302179176755470,0.012711864406802,0.000000000000000,0.002845036319639,-0.003571428571428,-0.002966101694937,0.003571428571428,-0.012590799031505,-0.000000000000000,2 -9740,9798,9800,9858,0.175000000000062,0.317796610169546,0.173214285714348,0.309957627118691,0.173214285714348,0.322608958837814,0.171428571428635,0.314769975786959,0.012711864406773,0.000000000000000,0.002966101694937,-0.003571428571428,-0.003087167070237,0.003571428571428,-0.012590799031474,0.000000000000000,2 -9741,9799,9801,9859,0.175000000000062,0.330508474576325,0.173214285714348,0.322608958837814,0.173214285714348,0.335260290556951,0.171428571428635,0.327360774818440,0.012711864406785,0.000000000000000,0.003087167070237,-0.003571428571428,-0.003208232445533,0.003571428571428,-0.012590799031488,-0.000000000000000,2 -9742,9800,9802,9860,0.175000000000062,0.343220338983105,0.173214285714348,0.335260290556951,0.173214285714348,0.347911622276076,0.171428571428635,0.339951573849923,0.012711864406774,0.000000000000000,0.003208232445533,-0.003571428571428,-0.003329297820831,0.003571428571428,-0.012590799031476,0.000000000000000,2 -9743,9801,9803,9861,0.175000000000062,0.355932203389881,0.173214285714348,0.347911622276076,0.173214285714348,0.360562953995205,0.171428571428635,0.352542372881401,0.012711864406778,0.000000000000000,0.003329297820831,-0.003571428571428,-0.003450363196129,0.003571428571428,-0.012590799031480,-0.000000000000000,2 -7700,9744,9802,9862,0.173214285714348,0.373214285714348,0.175000000000062,0.368644067796666,0.173214285714348,0.360562953995205,0.171428571428634,0.365133171912888,-0.003571428571428,0.003571428571428,0.012711864406792,-0.000000000000000,0.003450363196129,-0.003571428571428,-0.012590799031494,0.000000000000000,2 -9099,9745,9805,9863,0.169642857142918,-0.369642857142918,0.171428571428634,-0.365133171912894,0.169642857142918,-0.357112590799092,0.167857142857202,-0.361622276029116,-0.003571428571432,-0.003571428571432,0.012590799031480,0.000000000000000,0.003450363196125,0.003571428571432,-0.012469733656173,-0.000000000000000,2 -9746,9804,9806,9864,0.171428571428634,-0.352542372881413,0.169642857142918,-0.357112590799092,0.169642857142919,-0.344582324455264,0.167857142857203,-0.349152542372942,0.012590799031482,0.000000000000000,-0.003450363196125,-0.003571428571432,0.003329297820817,0.003571428571432,-0.012469733656174,0.000000000000000,2 -9747,9805,9807,9865,0.171428571428634,-0.339951573849933,0.169642857142919,-0.344582324455264,0.169642857142918,-0.332052058111438,0.167857142857203,-0.336682808716769,0.012590799031478,0.000000000000000,-0.003329297820817,-0.003571428571432,0.003208232445512,0.003571428571432,-0.012469733656173,-0.000000000000000,2 -9748,9806,9808,9866,0.171428571428634,-0.327360774818452,0.169642857142918,-0.332052058111438,0.169642857142918,-0.319521791767610,0.167857142857202,-0.324213075060595,0.012590799031483,0.000000000000000,-0.003208232445512,-0.003571428571432,0.003087167070202,0.003571428571432,-0.012469733656174,-0.000000000000000,2 -9749,9807,9809,9867,0.171428571428634,-0.314769975786972,0.169642857142918,-0.319521791767610,0.169642857142918,-0.306991525423784,0.167857142857202,-0.311743341404422,0.012590799031478,0.000000000000000,-0.003087167070202,-0.003571428571432,0.002966101694897,0.003571428571432,-0.012469733656173,-0.000000000000000,2 -9750,9808,9810,9868,0.171428571428635,-0.302179176755492,0.169642857142918,-0.306991525423784,0.169642857142919,-0.294461259079956,0.167857142857202,-0.299273607748249,0.012590799031483,-0.000000000000000,-0.002966101694897,-0.003571428571432,0.002845036319588,0.003571428571432,-0.012469733656174,-0.000000000000000,2 -9751,9809,9811,9869,0.171428571428635,-0.289588377724010,0.169642857142919,-0.294461259079956,0.169642857142918,-0.281930992736129,0.167857142857202,-0.286803874092075,0.012590799031480,0.000000000000000,-0.002845036319588,-0.003571428571432,0.002723970944282,0.003571428571432,-0.012469733656173,-0.000000000000000,2 -9752,9810,9812,9870,0.171428571428634,-0.276997578692534,0.169642857142918,-0.281930992736129,0.169642857142918,-0.269400726392311,0.167857142857202,-0.274334140435906,0.012590799031472,0.000000000000000,-0.002723970944282,-0.003571428571432,0.002602905568974,0.003571428571432,-0.012469733656164,-0.000000000000000,2 -9753,9811,9813,9871,0.171428571428634,-0.264406779661060,0.169642857142918,-0.269400726392311,0.169642857142919,-0.256870460048490,0.167857142857203,-0.261864406779741,0.012590799031476,0.000000000000000,-0.002602905568974,-0.003571428571432,0.002481840193665,0.003571428571432,-0.012469733656167,0.000000000000000,2 -9754,9812,9814,9872,0.171428571428634,-0.251815980629585,0.169642857142919,-0.256870460048490,0.169642857142918,-0.244340193704669,0.167857142857203,-0.249394673123573,0.012590799031474,0.000000000000000,-0.002481840193665,-0.003571428571432,0.002360774818359,0.003571428571432,-0.012469733656168,-0.000000000000000,2 -9755,9813,9815,9873,0.171428571428634,-0.239225181598105,0.169642857142918,-0.244340193704669,0.169642857142918,-0.231809927360837,0.167857142857202,-0.236924939467401,0.012590799031486,0.000000000000000,-0.002360774818359,-0.003571428571432,0.002239709443050,0.003571428571432,-0.012469733656177,-0.000000000000000,2 -9756,9814,9816,9874,0.171428571428635,-0.226634382566628,0.169642857142918,-0.231809927360837,0.169642857142919,-0.219279661017022,0.167857142857202,-0.224455205811231,0.012590799031468,-0.000000000000000,-0.002239709443050,-0.003571428571432,0.002118644067744,0.003571428571432,-0.012469733656162,-0.000000000000000,2 -9757,9815,9817,9875,0.171428571428635,-0.214043583535152,0.169642857142919,-0.219279661017022,0.169642857142918,-0.206749394673193,0.167857142857202,-0.211985472155063,0.012590799031483,0.000000000000000,-0.002118644067744,-0.003571428571432,0.001997578692435,0.003571428571432,-0.012469733656174,-0.000000000000000,2 -9758,9816,9818,9876,0.171428571428634,-0.201452784503675,0.169642857142918,-0.206749394673193,0.169642857142918,-0.194219128329376,0.167857142857202,-0.199515738498894,0.012590799031470,0.000000000000000,-0.001997578692435,-0.003571428571432,0.001876513317128,0.003571428571432,-0.012469733656163,-0.000000000000000,2 -9759,9817,9819,9877,0.171428571428635,-0.188861985472201,0.169642857142918,-0.194219128329376,0.169642857142919,-0.181688861985553,0.167857142857202,-0.187046004842728,0.012590799031478,-0.000000000000000,-0.001876513317128,-0.003571428571432,0.001755447941820,0.003571428571432,-0.012469733656169,-0.000000000000000,2 -9760,9818,9820,9878,0.171428571428635,-0.176271186440729,0.169642857142919,-0.181688861985553,0.169642857142918,-0.169158595641739,0.167857142857202,-0.174576271186563,0.012590799031467,0.000000000000000,-0.001755447941820,-0.003571428571432,0.001634382566513,0.003571428571432,-0.012469733656161,-0.000000000000000,2 -9761,9819,9821,9879,0.171428571428634,-0.163680387409255,0.169642857142918,-0.169158595641739,0.169642857142918,-0.156628329297913,0.167857142857202,-0.162106537530396,0.012590799031480,0.000000000000000,-0.001634382566513,-0.003571428571432,0.001513317191204,0.003571428571432,-0.012469733656172,-0.000000000000000,2 -9762,9820,9822,9880,0.171428571428634,-0.151089588377778,0.169642857142918,-0.156628329297913,0.169642857142918,-0.144098062954093,0.167857142857202,-0.149636803874227,0.012590799031474,0.000000000000000,-0.001513317191204,-0.003571428571432,0.001392251815897,0.003571428571432,-0.012469733656166,-0.000000000000000,2 -9763,9821,9823,9881,0.171428571428635,-0.138498789346301,0.169642857142918,-0.144098062954093,0.169642857142919,-0.131567796610266,0.167857142857202,-0.137167070218057,0.012590799031480,-0.000000000000000,-0.001392251815897,-0.003571428571432,0.001271186440590,0.003571428571432,-0.012469733656174,-0.000000000000000,2 -9764,9822,9824,9882,0.171428571428635,-0.125907990314821,0.169642857142919,-0.131567796610266,0.169642857142918,-0.119037530266440,0.167857142857202,-0.124697336561885,0.012590799031480,0.000000000000000,-0.001271186440590,-0.003571428571432,0.001150121065281,0.003571428571432,-0.012469733656171,-0.000000000000000,2 -9765,9823,9825,9883,0.171428571428635,-0.113317191283347,0.169642857142918,-0.119037530266440,0.169642857142919,-0.106507263922625,0.167857142857202,-0.112227602905719,0.012590799031468,-0.000000000000000,-0.001150121065281,-0.003571428571432,0.001029055689975,0.003571428571432,-0.012469733656162,-0.000000000000000,2 -9766,9824,9826,9884,0.171428571428635,-0.100726392251873,0.169642857142919,-0.106507263922625,0.169642857142919,-0.093976997578800,0.167857142857202,-0.099757869249552,0.012590799031480,0.000000000000000,-0.001029055689975,-0.003571428571432,0.000907990314666,0.003571428571432,-0.012469733656171,-0.000000000000000,2 -9767,9825,9827,9885,0.171428571428635,-0.088135593220396,0.169642857142919,-0.093976997578800,0.169642857142918,-0.081446731234980,0.167857142857202,-0.087288135593384,0.012590799031473,0.000000000000000,-0.000907990314666,-0.003571428571432,0.000786924939358,0.003571428571432,-0.012469733656166,-0.000000000000000,2 -9768,9826,9828,9886,0.171428571428635,-0.075544794188920,0.169642857142918,-0.081446731234980,0.169642857142919,-0.068916464891157,0.167857142857202,-0.074818401937216,0.012590799031478,-0.000000000000000,-0.000786924939358,-0.003571428571432,0.000665859564050,0.003571428571432,-0.012469733656170,-0.000000000000000,2 -9769,9827,9829,9887,0.171428571428635,-0.062953995157445,0.169642857142919,-0.068916464891157,0.169642857142919,-0.056386198547337,0.167857142857202,-0.062348668281049,0.012590799031473,0.000000000000000,-0.000665859564050,-0.003571428571432,0.000544794188743,0.003571428571432,-0.012469733656166,-0.000000000000000,2 -9770,9828,9830,9888,0.171428571428635,-0.050363196125971,0.169642857142919,-0.056386198547337,0.169642857142918,-0.043855932203516,0.167857142857202,-0.049878934624882,0.012590799031475,0.000000000000000,-0.000544794188743,-0.003571428571432,0.000423728813435,0.003571428571432,-0.012469733656167,-0.000000000000000,2 -9771,9829,9831,9889,0.171428571428634,-0.037772397094495,0.169642857142918,-0.043855932203516,0.169642857142918,-0.031325665859694,0.167857142857202,-0.037409200968715,0.012590799031476,0.000000000000000,-0.000423728813435,-0.003571428571432,0.000302663438127,0.003571428571432,-0.012469733656168,-0.000000000000000,2 -9772,9830,9832,9890,0.171428571428635,-0.025181598063021,0.169642857142918,-0.031325665859694,0.169642857142919,-0.018795399515875,0.167857142857202,-0.024939467312548,0.012590799031473,-0.000000000000000,-0.000302663438127,-0.003571428571432,0.000181598062819,0.003571428571432,-0.012469733656166,-0.000000000000000,2 -9773,9831,9833,9891,0.171428571428635,-0.012590799031545,0.169642857142919,-0.018795399515875,0.169642857142918,-0.006265133172051,0.167857142857202,-0.012469733656380,0.012590799031478,0.000000000000000,-0.000181598062819,-0.003571428571432,0.000060532687511,0.003571428571432,-0.012469733656170,-0.000000000000000,2 -9774,9832,9834,9892,0.171428571428635,-0.000000000000064,0.169642857142918,-0.006265133172051,0.169642857142919,0.006265133171783,0.167857142857202,-0.000000000000204,0.012590799031484,-0.000000000000000,-0.000060532687511,-0.003571428571432,-0.000060532687791,0.003571428571432,-0.012469733656183,-0.000000000000000,2 -9775,9833,9835,9893,0.171428571428635,0.012590799031417,0.169642857142919,0.006265133171783,0.169642857142918,0.018795399515611,0.167857142857202,0.012469733655977,0.012590799031477,0.000000000000000,0.000060532687791,-0.003571428571432,-0.000181598063089,0.003571428571432,-0.012469733656179,-0.000000000000000,2 -9776,9834,9836,9894,0.171428571428634,0.025181598062897,0.169642857142918,0.018795399515611,0.169642857142918,0.031325665859445,0.167857142857202,0.024939467312159,0.012590799031483,0.000000000000000,0.000181598063089,-0.003571428571432,-0.000302663438387,0.003571428571432,-0.012469733656186,-0.000000000000000,2 -9777,9835,9837,9895,0.171428571428635,0.037772397094378,0.169642857142918,0.031325665859445,0.169642857142919,0.043855932203276,0.167857142857202,0.037409200968343,0.012590799031480,-0.000000000000000,0.000302663438387,-0.003571428571432,-0.000423728813684,0.003571428571432,-0.012469733656182,-0.000000000000000,2 -9778,9836,9838,9896,0.171428571428635,0.050363196125859,0.169642857142919,0.043855932203276,0.169642857142918,0.056386198547108,0.167857142857202,0.049878934624525,0.012590799031481,0.000000000000000,0.000423728813684,-0.003571428571432,-0.000544794188982,0.003571428571432,-0.012469733656183,-0.000000000000000,2 -9779,9837,9839,9897,0.171428571428635,0.062953995157341,0.169642857142918,0.056386198547108,0.169642857142919,0.068916464890942,0.167857142857202,0.062348668280710,0.012590799031483,-0.000000000000000,0.000544794188982,-0.003571428571432,-0.000665859564280,0.003571428571432,-0.012469733656186,-0.000000000000000,2 -9780,9838,9840,9898,0.171428571428635,0.075544794188821,0.169642857142919,0.068916464890942,0.169642857142919,0.081446731234770,0.167857142857202,0.074818401936892,0.012590799031477,0.000000000000000,0.000665859564280,-0.003571428571432,-0.000786924939578,0.003571428571432,-0.012469733656179,-0.000000000000000,2 -9781,9839,9841,9899,0.171428571428635,0.088135593220298,0.169642857142919,0.081446731234770,0.169642857142918,0.093976997578600,0.167857142857202,0.087288135593072,0.012590799031477,0.000000000000000,0.000786924939578,-0.003571428571432,-0.000907990314874,0.003571428571432,-0.012469733656181,-0.000000000000000,2 -9782,9840,9842,9900,0.171428571428635,0.100726392251777,0.169642857142918,0.093976997578600,0.169642857142919,0.106507263922431,0.167857142857202,0.099757869249254,0.012590799031480,-0.000000000000000,0.000907990314874,-0.003571428571432,-0.001029055690171,0.003571428571432,-0.012469733656183,-0.000000000000000,2 -9783,9841,9843,9901,0.171428571428635,0.113317191283255,0.169642857142919,0.106507263922431,0.169642857142919,0.119037530266259,0.167857142857202,0.112227602905435,0.012590799031477,0.000000000000000,0.001029055690171,-0.003571428571432,-0.001150121065469,0.003571428571432,-0.012469733656179,-0.000000000000000,2 -9784,9842,9844,9902,0.171428571428635,0.125907990314735,0.169642857142919,0.119037530266259,0.169642857142919,0.131567796610094,0.167857142857202,0.124697336561617,0.012590799031483,0.000000000000000,0.001150121065469,-0.003571428571432,-0.001271186440767,0.003571428571432,-0.012469733656186,-0.000000000000000,2 -9785,9843,9845,9903,0.171428571428635,0.138498789346216,0.169642857142919,0.131567796610094,0.169642857142918,0.144098062953922,0.167857142857202,0.137167070217800,0.012590799031477,0.000000000000000,0.001271186440767,-0.003571428571432,-0.001392251816065,0.003571428571432,-0.012469733656179,-0.000000000000000,2 -9786,9844,9846,9904,0.171428571428635,0.151089588377695,0.169642857142918,0.144098062953922,0.169642857142919,0.156628329297755,0.167857142857202,0.149636803873982,0.012590799031482,-0.000000000000000,0.001392251816065,-0.003571428571432,-0.001513317191362,0.003571428571432,-0.012469733656185,-0.000000000000000,2 -9787,9845,9847,9905,0.171428571428635,0.163680387409172,0.169642857142919,0.156628329297755,0.169642857142919,0.169158595641576,0.167857142857202,0.162106537530160,0.012590799031470,0.000000000000000,0.001513317191362,-0.003571428571432,-0.001634382566662,0.003571428571432,-0.012469733656171,-0.000000000000000,2 -9788,9846,9848,9906,0.171428571428635,0.176271186440644,0.169642857142919,0.169158595641576,0.169642857142919,0.181688861985402,0.167857142857202,0.174576271186333,0.012590799031475,0.000000000000000,0.001634382566662,-0.003571428571432,-0.001755447941960,0.003571428571432,-0.012469733656177,-0.000000000000000,2 -9789,9847,9849,9907,0.171428571428635,0.188861985472126,0.169642857142919,0.181688861985402,0.169642857142918,0.194219128329243,0.167857142857202,0.187046004842518,0.012590799031489,0.000000000000000,0.001755447941960,-0.003571428571432,-0.001876513317257,0.003571428571432,-0.012469733656192,-0.000000000000000,2 -9790,9848,9850,9908,0.171428571428634,0.201452784503606,0.169642857142918,0.194219128329243,0.169642857142918,0.206749394673063,0.167857142857202,0.199515738498699,0.012590799031470,0.000000000000000,0.001876513317257,-0.003571428571432,-0.001997578692556,0.003571428571432,-0.012469733656171,-0.000000000000000,2 -9791,9849,9851,9909,0.171428571428634,0.214043583535088,0.169642857142918,0.206749394673063,0.169642857142918,0.219279661016909,0.167857142857202,0.211985472154884,0.012590799031494,0.000000000000000,0.001997578692556,-0.003571428571432,-0.002118644067852,0.003571428571432,-0.012469733656198,-0.000000000000000,2 -9792,9850,9852,9910,0.171428571428634,0.226634382566570,0.169642857142918,0.219279661016909,0.169642857142918,0.231809927360730,0.167857142857202,0.224455205811068,0.012590799031470,0.000000000000000,0.002118644067852,-0.003571428571432,-0.002239709443151,0.003571428571432,-0.012469733656171,-0.000000000000000,2 -9793,9851,9853,9911,0.171428571428635,0.239225181598048,0.169642857142918,0.231809927360730,0.169642857142919,0.244340193704567,0.167857142857202,0.236924939467249,0.012590799031486,-0.000000000000000,0.002239709443151,-0.003571428571432,-0.002360774818448,0.003571428571432,-0.012469733656189,-0.000000000000000,2 -9794,9852,9854,9912,0.171428571428635,0.251815980629530,0.169642857142919,0.244340193704567,0.169642857142919,0.256870460048396,0.167857142857202,0.249394673123433,0.012590799031478,0.000000000000000,0.002360774818448,-0.003571428571432,-0.002481840193746,0.003571428571432,-0.012469733656180,-0.000000000000000,2 -9795,9853,9855,9913,0.171428571428635,0.264406779661008,0.169642857142919,0.256870460048396,0.169642857142919,0.269400726392225,0.167857142857202,0.261864406779613,0.012590799031478,0.000000000000000,0.002481840193746,-0.003571428571432,-0.002602905569044,0.003571428571432,-0.012469733656180,-0.000000000000000,2 -9796,9854,9856,9914,0.171428571428635,0.276997578692495,0.169642857142919,0.269400726392225,0.169642857142918,0.281930992736071,0.167857142857202,0.274334140435801,0.012590799031495,0.000000000000000,0.002602905569044,-0.003571428571432,-0.002723970944343,0.003571428571432,-0.012469733656197,-0.000000000000000,2 -9797,9855,9857,9915,0.171428571428634,0.289588377723980,0.169642857142918,0.281930992736071,0.169642857142918,0.294461259079896,0.167857142857202,0.286803874091987,0.012590799031475,0.000000000000000,0.002723970944343,-0.003571428571432,-0.002845036319643,0.003571428571432,-0.012469733656175,-0.000000000000000,2 -9798,9856,9858,9916,0.171428571428634,0.302179176755470,0.169642857142918,0.294461259079896,0.169642857142918,0.306991525423752,0.167857142857202,0.299273607748178,0.012590799031505,0.000000000000000,0.002845036319643,-0.003571428571432,-0.002966101694940,0.003571428571432,-0.012469733656207,-0.000000000000000,2 -9799,9857,9859,9917,0.171428571428635,0.314769975786959,0.169642857142918,0.306991525423752,0.169642857142919,0.319521791767576,0.167857142857202,0.311743341404369,0.012590799031474,-0.000000000000000,0.002966101694940,-0.003571428571432,-0.003087167070240,0.003571428571432,-0.012469733656174,-0.000000000000000,2 -9800,9858,9860,9918,0.171428571428635,0.327360774818440,0.169642857142919,0.319521791767576,0.169642857142918,0.332052058111416,0.167857142857202,0.324213075060552,0.012590799031488,0.000000000000000,0.003087167070240,-0.003571428571432,-0.003208232445537,0.003571428571432,-0.012469733656192,-0.000000000000000,2 -9801,9859,9861,9919,0.171428571428635,0.339951573849923,0.169642857142918,0.332052058111416,0.169642857142919,0.344582324455243,0.167857142857202,0.336682808716736,0.012590799031476,-0.000000000000000,0.003208232445537,-0.003571428571432,-0.003329297820835,0.003571428571432,-0.012469733656178,-0.000000000000000,2 -9802,9860,9862,9920,0.171428571428635,0.352542372881401,0.169642857142919,0.344582324455243,0.169642857142918,0.357112590799074,0.167857142857202,0.349152542372916,0.012590799031480,0.000000000000000,0.003329297820835,-0.003571428571432,-0.003450363196133,0.003571428571432,-0.012469733656182,-0.000000000000000,2 -7699,9803,9861,9921,0.169642857142918,0.369642857142918,0.171428571428634,0.365133171912888,0.169642857142918,0.357112590799074,0.167857142857202,0.361622276029105,-0.003571428571432,0.003571428571432,0.012590799031494,-0.000000000000000,0.003450363196133,-0.003571428571432,-0.012469733656195,0.000000000000000,2 -9070,9804,9864,9922,0.166071428571480,-0.366071428571480,0.167857142857202,-0.361622276029116,0.166071428571480,-0.353662227602960,0.164285714285757,-0.358111380145324,-0.003571428571445,-0.003571428571445,0.012469733656173,0.000000000000000,0.003450363196138,0.003571428571445,-0.012348668280866,-0.000000000000000,2 -9805,9863,9865,9923,0.167857142857203,-0.349152542372942,0.166071428571480,-0.353662227602960,0.166071428571480,-0.341253026634441,0.164285714285757,-0.345762711864459,0.012469733656174,-0.000000000000000,-0.003450363196138,-0.003571428571445,0.003329297820829,0.003571428571445,-0.012348668280865,-0.000000000000000,2 -9806,9864,9866,9924,0.167857142857203,-0.336682808716769,0.166071428571480,-0.341253026634441,0.166071428571480,-0.328843825665921,0.164285714285757,-0.333414043583593,0.012469733656173,0.000000000000000,-0.003329297820829,-0.003571428571445,0.003208232445523,0.003571428571445,-0.012348668280867,-0.000000000000000,2 -9807,9865,9867,9925,0.167857142857202,-0.324213075060595,0.166071428571480,-0.328843825665921,0.166071428571480,-0.316434624697402,0.164285714285757,-0.321065375302727,0.012469733656174,0.000000000000000,-0.003208232445523,-0.003571428571445,0.003087167070214,0.003571428571445,-0.012348668280865,0.000000000000000,2 -9808,9866,9868,9926,0.167857142857202,-0.311743341404422,0.166071428571480,-0.316434624697402,0.166071428571480,-0.304025423728882,0.164285714285757,-0.308716707021861,0.012469733656173,0.000000000000000,-0.003087167070214,-0.003571428571445,0.002966101694908,0.003571428571445,-0.012348668280867,-0.000000000000000,2 -9809,9867,9869,9927,0.167857142857202,-0.299273607748249,0.166071428571480,-0.304025423728882,0.166071428571480,-0.291616222760362,0.164285714285757,-0.296368038740995,0.012469733656174,0.000000000000000,-0.002966101694908,-0.003571428571445,0.002845036319599,0.003571428571445,-0.012348668280865,-0.000000000000000,2 -9810,9868,9870,9928,0.167857142857202,-0.286803874092075,0.166071428571480,-0.291616222760362,0.166071428571480,-0.279207021791842,0.164285714285757,-0.284019370460130,0.012469733656173,0.000000000000000,-0.002845036319599,-0.003571428571445,0.002723970944292,0.003571428571445,-0.012348668280867,-0.000000000000000,2 -9811,9869,9871,9929,0.167857142857202,-0.274334140435906,0.166071428571480,-0.279207021791842,0.166071428571480,-0.266797820823333,0.164285714285757,-0.271670702179269,0.012469733656164,0.000000000000000,-0.002723970944292,-0.003571428571445,0.002602905568983,0.003571428571445,-0.012348668280855,-0.000000000000000,2 -9812,9870,9872,9930,0.167857142857203,-0.261864406779741,0.166071428571480,-0.266797820823333,0.166071428571480,-0.254388619854820,0.164285714285757,-0.259322033898412,0.012469733656167,-0.000000000000000,-0.002602905568983,-0.003571428571445,0.002481840193674,0.003571428571445,-0.012348668280858,-0.000000000000000,2 -9813,9871,9873,9931,0.167857142857203,-0.249394673123573,0.166071428571480,-0.254388619854820,0.166071428571480,-0.241979418886306,0.164285714285757,-0.246973365617553,0.012469733656168,0.000000000000000,-0.002481840193674,-0.003571428571445,0.002360774818367,0.003571428571445,-0.012348668280861,-0.000000000000000,2 -9814,9872,9874,9932,0.167857142857202,-0.236924939467401,0.166071428571480,-0.241979418886306,0.166071428571480,-0.229570217917783,0.164285714285757,-0.234624697336688,0.012469733656177,0.000000000000000,-0.002360774818367,-0.003571428571445,0.002239709443058,0.003571428571445,-0.012348668280868,0.000000000000000,2 -9815,9873,9875,9933,0.167857142857202,-0.224455205811231,0.166071428571480,-0.229570217917783,0.166071428571480,-0.217161016949274,0.164285714285757,-0.222276029055826,0.012469733656162,0.000000000000000,-0.002239709443058,-0.003571428571445,0.002118644067752,0.003571428571445,-0.012348668280856,-0.000000000000000,2 -9816,9874,9876,9934,0.167857142857202,-0.211985472155063,0.166071428571480,-0.217161016949274,0.166071428571480,-0.204751815980754,0.164285714285757,-0.209927360774966,0.012469733656174,0.000000000000000,-0.002118644067752,-0.003571428571445,0.001997578692442,0.003571428571445,-0.012348668280864,-0.000000000000000,2 -9817,9875,9877,9935,0.167857142857202,-0.199515738498894,0.166071428571480,-0.204751815980754,0.166071428571480,-0.192342615012245,0.164285714285757,-0.197578692494105,0.012469733656163,0.000000000000000,-0.001997578692442,-0.003571428571445,0.001876513317135,0.003571428571445,-0.012348668280856,-0.000000000000000,2 -9818,9876,9878,9936,0.167857142857202,-0.187046004842728,0.166071428571480,-0.192342615012245,0.166071428571480,-0.179933414043730,0.164285714285757,-0.185230024213247,0.012469733656169,0.000000000000000,-0.001876513317135,-0.003571428571445,0.001755447941826,0.003571428571445,-0.012348668280861,-0.000000000000000,2 -9819,9877,9879,9937,0.167857142857202,-0.174576271186563,0.166071428571480,-0.179933414043730,0.166071428571480,-0.167524213075223,0.164285714285757,-0.172881355932390,0.012469733656161,0.000000000000000,-0.001755447941826,-0.003571428571445,0.001634382566519,0.003571428571445,-0.012348668280854,-0.000000000000000,2 -9820,9878,9880,9938,0.167857142857202,-0.162106537530396,0.166071428571480,-0.167524213075223,0.166071428571480,-0.155115012106705,0.164285714285757,-0.160532687651532,0.012469733656172,0.000000000000000,-0.001634382566519,-0.003571428571445,0.001513317191210,0.003571428571445,-0.012348668280863,-0.000000000000000,2 -9821,9879,9881,9939,0.167857142857202,-0.149636803874227,0.166071428571480,-0.155115012106705,0.166071428571480,-0.142705811138193,0.164285714285757,-0.148184019370671,0.012469733656166,0.000000000000000,-0.001513317191210,-0.003571428571445,0.001392251815902,0.003571428571445,-0.012348668280858,-0.000000000000000,2 -9822,9880,9882,9940,0.167857142857202,-0.137167070218057,0.166071428571480,-0.142705811138193,0.166071428571480,-0.130296610169673,0.164285714285757,-0.135835351089809,0.012469733656174,0.000000000000000,-0.001392251815902,-0.003571428571445,0.001271186440594,0.003571428571445,-0.012348668280866,-0.000000000000000,2 -9823,9881,9883,9941,0.167857142857202,-0.124697336561885,0.166071428571480,-0.130296610169673,0.166071428571480,-0.117887409201157,0.164285714285757,-0.123486682808945,0.012469733656171,0.000000000000000,-0.001271186440594,-0.003571428571445,0.001150121065285,0.003571428571445,-0.012348668280862,0.000000000000000,2 -9824,9882,9884,9942,0.167857142857202,-0.112227602905719,0.166071428571480,-0.117887409201157,0.166071428571480,-0.105478208232649,0.164285714285757,-0.111138014528087,0.012469733656162,0.000000000000000,-0.001150121065285,-0.003571428571445,0.001029055689978,0.003571428571445,-0.012348668280854,-0.000000000000000,2 -9825,9883,9885,9943,0.167857142857202,-0.099757869249552,0.166071428571480,-0.105478208232649,0.166071428571480,-0.093069007264132,0.164285714285757,-0.098789346247229,0.012469733656171,0.000000000000000,-0.001029055689978,-0.003571428571445,0.000907990314669,0.003571428571445,-0.012348668280862,0.000000000000000,2 -9826,9884,9886,9944,0.167857142857202,-0.087288135593384,0.166071428571480,-0.093069007264132,0.166071428571480,-0.080659806295621,0.164285714285757,-0.086440677966369,0.012469733656166,0.000000000000000,-0.000907990314669,-0.003571428571445,0.000786924939361,0.003571428571445,-0.012348668280858,-0.000000000000000,2 -9827,9885,9887,9945,0.167857142857202,-0.074818401937216,0.166071428571480,-0.080659806295621,0.166071428571480,-0.068250605327105,0.164285714285757,-0.074092009685510,0.012469733656170,0.000000000000000,-0.000786924939361,-0.003571428571445,0.000665859564052,0.003571428571445,-0.012348668280861,-0.000000000000000,2 -9828,9886,9888,9946,0.167857142857202,-0.062348668281049,0.166071428571480,-0.068250605327105,0.166071428571480,-0.055841404358594,0.164285714285757,-0.061743341404650,0.012469733656166,0.000000000000000,-0.000665859564052,-0.003571428571445,0.000544794188744,0.003571428571445,-0.012348668280858,-0.000000000000000,2 -9829,9887,9889,9947,0.167857142857202,-0.049878934624882,0.166071428571480,-0.055841404358594,0.166071428571480,-0.043432203390081,0.164285714285757,-0.049394673123792,0.012469733656167,0.000000000000000,-0.000544794188744,-0.003571428571445,0.000423728813436,0.003571428571445,-0.012348668280859,-0.000000000000000,2 -9830,9888,9890,9948,0.167857142857202,-0.037409200968715,0.166071428571480,-0.043432203390081,0.166071428571480,-0.031023002421567,0.164285714285757,-0.037046004842933,0.012469733656168,0.000000000000000,-0.000423728813436,-0.003571428571445,0.000302663438128,0.003571428571445,-0.012348668280859,-0.000000000000000,2 -9831,9889,9891,9949,0.167857142857202,-0.024939467312548,0.166071428571480,-0.031023002421567,0.166071428571480,-0.018613801453055,0.164285714285757,-0.024697336562074,0.012469733656166,0.000000000000000,-0.000302663438128,-0.003571428571445,0.000181598062820,0.003571428571445,-0.012348668280858,-0.000000000000000,2 -9832,9890,9892,9950,0.167857142857202,-0.012469733656380,0.166071428571480,-0.018613801453055,0.166071428571480,-0.006204600484540,0.164285714285757,-0.012348668281215,0.012469733656170,0.000000000000000,-0.000181598062820,-0.003571428571445,0.000060532687511,0.003571428571445,-0.012348668280861,-0.000000000000000,2 -9833,9891,9893,9951,0.167857142857202,-0.000000000000204,0.166071428571480,-0.006204600484540,0.166071428571480,0.006204600483992,0.164285714285757,-0.000000000000344,0.012469733656183,0.000000000000000,-0.000060532687511,-0.003571428571445,-0.000060532687791,0.003571428571445,-0.012348668280881,-0.000000000000000,2 -9834,9892,9894,9952,0.167857142857202,0.012469733655977,0.166071428571480,0.006204600483992,0.166071428571480,0.018613801452521,0.164285714285757,0.012348668280536,0.012469733656179,0.000000000000000,0.000060532687791,-0.003571428571445,-0.000181598063090,0.003571428571445,-0.012348668280880,-0.000000000000000,2 -9835,9893,9895,9953,0.167857142857202,0.024939467312159,0.166071428571480,0.018613801452521,0.166071428571480,0.031023002421058,0.164285714285757,0.024697336561420,0.012469733656186,0.000000000000000,0.000181598063090,-0.003571428571445,-0.000302663438388,0.003571428571445,-0.012348668280888,-0.000000000000000,2 -9836,9894,9896,9954,0.167857142857202,0.037409200968343,0.166071428571480,0.031023002421058,0.166071428571480,0.043432203389591,0.164285714285757,0.037046004842306,0.012469733656182,0.000000000000000,0.000302663438388,-0.003571428571445,-0.000423728813686,0.003571428571445,-0.012348668280883,-0.000000000000000,2 -9837,9895,9897,9955,0.167857142857202,0.049878934624525,0.166071428571480,0.043432203389591,0.166071428571480,0.055841404358125,0.164285714285757,0.049394673123190,0.012469733656183,0.000000000000000,0.000423728813686,-0.003571428571445,-0.000544794188984,0.003571428571445,-0.012348668280885,-0.000000000000000,2 -9838,9896,9898,9956,0.167857142857202,0.062348668280710,0.166071428571480,0.055841404358125,0.166071428571480,0.068250605326662,0.164285714285757,0.061743341404077,0.012469733656186,0.000000000000000,0.000544794188984,-0.003571428571445,-0.000665859564282,0.003571428571445,-0.012348668280888,-0.000000000000000,2 -9839,9897,9899,9957,0.167857142857202,0.074818401936892,0.166071428571480,0.068250605326662,0.166071428571480,0.080659806295191,0.164285714285757,0.074092009684961,0.012469733656179,0.000000000000000,0.000665859564282,-0.003571428571445,-0.000786924939581,0.003571428571445,-0.012348668280880,-0.000000000000000,2 -9840,9898,9900,9958,0.167857142857202,0.087288135593072,0.166071428571480,0.080659806295191,0.166071428571480,0.093069007263724,0.164285714285757,0.086440677965843,0.012469733656181,0.000000000000000,0.000786924939581,-0.003571428571445,-0.000907990314878,0.003571428571445,-0.012348668280884,-0.000000000000000,2 -9841,9899,9901,9959,0.167857142857202,0.099757869249254,0.166071428571480,0.093069007263724,0.166071428571480,0.105478208232258,0.164285714285757,0.098789346246728,0.012469733656183,0.000000000000000,0.000907990314878,-0.003571428571445,-0.001029055690175,0.003571428571445,-0.012348668280886,-0.000000000000000,2 -9842,9900,9902,9960,0.167857142857202,0.112227602905435,0.166071428571480,0.105478208232258,0.166071428571480,0.117887409200788,0.164285714285757,0.111138014527611,0.012469733656179,0.000000000000000,0.001029055690175,-0.003571428571445,-0.001150121065473,0.003571428571445,-0.012348668280880,-0.000000000000000,2 -9843,9901,9903,9961,0.167857142857202,0.124697336561617,0.166071428571480,0.117887409200788,0.166071428571480,0.130296610169325,0.164285714285757,0.123486682808495,0.012469733656186,0.000000000000000,0.001150121065473,-0.003571428571445,-0.001271186440771,0.003571428571445,-0.012348668280888,-0.000000000000000,2 -9844,9902,9904,9962,0.167857142857202,0.137167070217800,0.166071428571480,0.130296610169325,0.166071428571480,0.142705811137854,0.164285714285757,0.135835351089379,0.012469733656179,0.000000000000000,0.001271186440771,-0.003571428571445,-0.001392251816070,0.003571428571445,-0.012348668280880,-0.000000000000000,2 -9845,9903,9905,9963,0.167857142857202,0.149636803873982,0.166071428571480,0.142705811137854,0.166071428571480,0.155115012106390,0.164285714285757,0.148184019370263,0.012469733656185,0.000000000000000,0.001392251816070,-0.003571428571445,-0.001513317191368,0.003571428571445,-0.012348668280887,-0.000000000000000,2 -9846,9904,9906,9964,0.167857142857202,0.162106537530160,0.166071428571480,0.155115012106390,0.166071428571480,0.167524213074911,0.164285714285757,0.160532687651142,0.012469733656171,0.000000000000000,0.001513317191368,-0.003571428571445,-0.001634382566668,0.003571428571445,-0.012348668280871,-0.000000000000000,2 -9847,9905,9907,9965,0.167857142857202,0.174576271186333,0.166071428571480,0.167524213074911,0.166071428571480,0.179933414043439,0.164285714285757,0.172881355932016,0.012469733656177,0.000000000000000,0.001634382566668,-0.003571428571445,-0.001755447941966,0.003571428571445,-0.012348668280878,-0.000000000000000,2 -9848,9906,9908,9966,0.167857142857202,0.187046004842518,0.166071428571480,0.179933414043439,0.166071428571480,0.192342615011982,0.164285714285757,0.185230024212903,0.012469733656192,0.000000000000000,0.001755447941966,-0.003571428571445,-0.001876513317264,0.003571428571445,-0.012348668280895,-0.000000000000000,2 -9849,9907,9909,9967,0.167857142857202,0.199515738498699,0.166071428571480,0.192342615011982,0.166071428571480,0.204751815980503,0.164285714285757,0.197578692493786,0.012469733656171,0.000000000000000,0.001876513317264,-0.003571428571445,-0.001997578692563,0.003571428571445,-0.012348668280871,0.000000000000000,2 -9850,9908,9910,9968,0.167857142857202,0.211985472154884,0.166071428571480,0.204751815980503,0.166071428571480,0.217161016949053,0.164285714285757,0.209927360774672,0.012469733656198,0.000000000000000,0.001997578692563,-0.003571428571445,-0.002118644067860,0.003571428571445,-0.012348668280902,-0.000000000000000,2 -9851,9909,9911,9969,0.167857142857202,0.224455205811068,0.166071428571480,0.217161016949053,0.166071428571480,0.229570217917574,0.164285714285757,0.222276029055559,0.012469733656171,0.000000000000000,0.002118644067860,-0.003571428571445,-0.002239709443159,0.003571428571445,-0.012348668280872,-0.000000000000000,2 -9852,9910,9912,9970,0.167857142857202,0.236924939467249,0.166071428571480,0.229570217917574,0.166071428571480,0.241979418886115,0.164285714285757,0.234624697336440,0.012469733656189,0.000000000000000,0.002239709443159,-0.003571428571445,-0.002360774818457,0.003571428571445,-0.012348668280891,-0.000000000000000,2 -9853,9911,9913,9971,0.167857142857202,0.249394673123433,0.166071428571480,0.241979418886115,0.166071428571480,0.254388619854646,0.164285714285757,0.246973365617327,0.012469733656180,0.000000000000000,0.002360774818457,-0.003571428571445,-0.002481840193755,0.003571428571445,-0.012348668280882,-0.000000000000000,2 -9854,9912,9914,9972,0.167857142857202,0.261864406779613,0.166071428571480,0.254388619854646,0.166071428571480,0.266797820823176,0.164285714285757,0.259322033898209,0.012469733656180,0.000000000000000,0.002481840193755,-0.003571428571445,-0.002602905569054,0.003571428571445,-0.012348668280881,-0.000000000000000,2 -9855,9913,9915,9973,0.167857142857202,0.274334140435801,0.166071428571480,0.266797820823176,0.166071428571480,0.279207021791723,0.164285714285757,0.271670702179098,0.012469733656197,0.000000000000000,0.002602905569054,-0.003571428571445,-0.002723970944353,0.003571428571445,-0.012348668280898,-0.000000000000000,2 -9856,9914,9916,9974,0.167857142857202,0.286803874091987,0.166071428571480,0.279207021791723,0.166071428571480,0.291616222760248,0.164285714285757,0.284019370459984,0.012469733656175,0.000000000000000,0.002723970944353,-0.003571428571445,-0.002845036319653,0.003571428571445,-0.012348668280875,0.000000000000000,2 -9857,9915,9917,9975,0.167857142857202,0.299273607748178,0.166071428571480,0.291616222760248,0.166071428571480,0.304025423728806,0.164285714285757,0.296368038740876,0.012469733656207,0.000000000000000,0.002845036319653,-0.003571428571445,-0.002966101694951,0.003571428571445,-0.012348668280909,-0.000000000000000,2 -9858,9916,9918,9976,0.167857142857202,0.311743341404369,0.166071428571480,0.304025423728806,0.166071428571480,0.316434624697330,0.164285714285757,0.308716707021767,0.012469733656174,0.000000000000000,0.002966101694951,-0.003571428571445,-0.003087167070252,0.003571428571445,-0.012348668280874,0.000000000000000,2 -9859,9917,9919,9977,0.167857142857202,0.324213075060552,0.166071428571480,0.316434624697330,0.166071428571480,0.328843825665873,0.164285714285757,0.321065375302651,0.012469733656192,0.000000000000000,0.003087167070252,-0.003571428571445,-0.003208232445549,0.003571428571445,-0.012348668280894,-0.000000000000000,2 -9860,9918,9920,9978,0.167857142857202,0.336682808716736,0.166071428571480,0.328843825665873,0.166071428571480,0.341253026634401,0.164285714285757,0.333414043583538,0.012469733656178,0.000000000000000,0.003208232445549,-0.003571428571445,-0.003329297820848,0.003571428571445,-0.012348668280879,-0.000000000000000,2 -9861,9919,9921,9979,0.167857142857202,0.349152542372916,0.166071428571480,0.341253026634401,0.166071428571480,0.353662227602934,0.164285714285757,0.345762711864420,0.012469733656182,0.000000000000000,0.003329297820848,-0.003571428571445,-0.003450363196146,0.003571428571445,-0.012348668280884,-0.000000000000000,2 -7698,9862,9920,9980,0.166071428571480,0.366071428571480,0.167857142857202,0.361622276029105,0.166071428571480,0.353662227602934,0.164285714285757,0.358111380145309,-0.003571428571445,0.003571428571445,0.012469733656195,-0.000000000000000,0.003450363196146,-0.003571428571445,-0.012348668280896,0.000000000000000,2 -9041,9863,9923,9981,0.162500000000027,-0.362500000000027,0.164285714285757,-0.358111380145324,0.162500000000027,-0.350211864406815,0.160714285714297,-0.354600484261518,-0.003571428571460,-0.003571428571460,0.012348668280866,0.000000000000000,0.003450363196152,0.003571428571460,-0.012227602905558,-0.000000000000000,2 -9864,9922,9924,9982,0.164285714285757,-0.345762711864459,0.162500000000027,-0.350211864406815,0.162500000000027,-0.337923728813605,0.160714285714297,-0.342372881355961,0.012348668280865,0.000000000000000,-0.003450363196152,-0.003571428571460,0.003329297820843,0.003571428571460,-0.012227602905556,0.000000000000000,2 -9865,9923,9925,9983,0.164285714285757,-0.333414043583593,0.162500000000027,-0.337923728813605,0.162500000000027,-0.325635593220391,0.160714285714297,-0.330145278450403,0.012348668280867,0.000000000000000,-0.003329297820843,-0.003571428571460,0.003208232445537,0.003571428571460,-0.012227602905561,-0.000000000000000,2 -9866,9924,9926,9984,0.164285714285757,-0.321065375302727,0.162500000000027,-0.325635593220391,0.162500000000027,-0.313347457627181,0.160714285714297,-0.317917675544845,0.012348668280865,-0.000000000000000,-0.003208232445537,-0.003571428571460,0.003087167070227,0.003571428571460,-0.012227602905554,0.000000000000000,2 -9867,9925,9927,9985,0.164285714285757,-0.308716707021861,0.162500000000027,-0.313347457627181,0.162500000000027,-0.301059322033967,0.160714285714297,-0.305690072639287,0.012348668280867,0.000000000000000,-0.003087167070227,-0.003571428571460,0.002966101694921,0.003571428571460,-0.012227602905562,0.000000000000000,2 -9868,9926,9928,9986,0.164285714285757,-0.296368038740995,0.162500000000027,-0.301059322033967,0.162500000000027,-0.288771186440757,0.160714285714297,-0.293462469733729,0.012348668280865,0.000000000000000,-0.002966101694921,-0.003571428571460,0.002845036319611,0.003571428571460,-0.012227602905555,-0.000000000000000,2 -9869,9927,9929,9987,0.164285714285757,-0.284019370460130,0.162500000000027,-0.288771186440757,0.162500000000027,-0.276483050847545,0.160714285714297,-0.281234866828172,0.012348668280867,0.000000000000000,-0.002845036319611,-0.003571428571460,0.002723970944303,0.003571428571460,-0.012227602905559,-0.000000000000000,2 -9870,9928,9930,9988,0.164285714285757,-0.271670702179269,0.162500000000027,-0.276483050847545,0.162500000000027,-0.264194915254344,0.160714285714297,-0.269007263922620,0.012348668280855,0.000000000000000,-0.002723970944303,-0.003571428571460,0.002602905568994,0.003571428571460,-0.012227602905546,-0.000000000000000,2 -9871,9929,9931,9989,0.164285714285757,-0.259322033898412,0.162500000000027,-0.264194915254344,0.162500000000027,-0.251906779661141,0.160714285714297,-0.256779661017073,0.012348668280858,0.000000000000000,-0.002602905568994,-0.003571428571460,0.002481840193685,0.003571428571460,-0.012227602905549,-0.000000000000000,2 -9872,9930,9932,9990,0.164285714285757,-0.246973365617553,0.162500000000027,-0.251906779661141,0.162500000000027,-0.239618644067933,0.160714285714297,-0.244552058111522,0.012348668280861,0.000000000000000,-0.002481840193685,-0.003571428571460,0.002360774818377,0.003571428571460,-0.012227602905554,-0.000000000000000,2 -9873,9931,9933,9991,0.164285714285757,-0.234624697336688,0.162500000000027,-0.239618644067933,0.162500000000027,-0.227330508474720,0.160714285714297,-0.232324455205966,0.012348668280868,-0.000000000000000,-0.002360774818377,-0.003571428571460,0.002239709443067,0.003571428571460,-0.012227602905558,-0.000000000000000,2 -9874,9932,9934,9992,0.164285714285757,-0.222276029055826,0.162500000000027,-0.227330508474720,0.162500000000027,-0.215042372881517,0.160714285714297,-0.220096852300412,0.012348668280856,0.000000000000000,-0.002239709443067,-0.003571428571460,0.002118644067761,0.003571428571460,-0.012227602905550,-0.000000000000000,2 -9875,9933,9935,9993,0.164285714285757,-0.209927360774966,0.162500000000027,-0.215042372881517,0.162500000000027,-0.202754237288308,0.160714285714297,-0.207869249394860,0.012348668280864,0.000000000000000,-0.002118644067761,-0.003571428571460,0.001997578692451,0.003571428571460,-0.012227602905554,-0.000000000000000,2 -9876,9934,9936,9994,0.164285714285757,-0.197578692494105,0.162500000000027,-0.202754237288308,0.162500000000027,-0.190466101695106,0.160714285714297,-0.195641646489309,0.012348668280856,0.000000000000000,-0.001997578692451,-0.003571428571460,0.001876513317143,0.003571428571460,-0.012227602905548,-0.000000000000000,2 -9877,9935,9937,9995,0.164285714285757,-0.185230024213247,0.162500000000027,-0.190466101695106,0.162500000000027,-0.178177966101900,0.160714285714297,-0.183414043583759,0.012348668280861,0.000000000000000,-0.001876513317143,-0.003571428571460,0.001755447941833,0.003571428571460,-0.012227602905551,-0.000000000000000,2 -9878,9936,9938,9996,0.164285714285757,-0.172881355932390,0.162500000000027,-0.178177966101900,0.162500000000027,-0.165889830508700,0.160714285714297,-0.171186440678210,0.012348668280854,0.000000000000000,-0.001755447941833,-0.003571428571460,0.001634382566526,0.003571428571460,-0.012227602905546,-0.000000000000000,2 -9879,9937,9939,9997,0.164285714285757,-0.160532687651532,0.162500000000027,-0.165889830508700,0.162500000000027,-0.153601694915492,0.160714285714297,-0.158958837772661,0.012348668280863,0.000000000000000,-0.001634382566526,-0.003571428571460,0.001513317191216,0.003571428571460,-0.012227602905553,-0.000000000000000,2 -9880,9938,9940,9998,0.164285714285757,-0.148184019370671,0.162500000000027,-0.153601694915492,0.162500000000027,-0.141313559322288,0.160714285714297,-0.146731234867109,0.012348668280858,0.000000000000000,-0.001513317191216,-0.003571428571460,0.001392251815908,0.003571428571460,-0.012227602905550,-0.000000000000000,2 -9881,9939,9941,9999,0.164285714285757,-0.135835351089809,0.162500000000027,-0.141313559322288,0.162500000000027,-0.129025423729076,0.160714285714297,-0.134503631961556,0.012348668280866,0.000000000000000,-0.001392251815908,-0.003571428571460,0.001271186440600,0.003571428571460,-0.012227602905558,-0.000000000000000,2 -9882,9940,9942,10000,0.164285714285757,-0.123486682808945,0.162500000000027,-0.129025423729076,0.162500000000027,-0.116737288135869,0.160714285714297,-0.122276029056000,0.012348668280862,-0.000000000000000,-0.001271186440600,-0.003571428571460,0.001150121065290,0.003571428571460,-0.012227602905552,-0.000000000000000,2 -9883,9941,9943,10001,0.164285714285757,-0.111138014528087,0.162500000000027,-0.116737288135869,0.162500000000027,-0.104449152542668,0.160714285714297,-0.110048426150451,0.012348668280854,0.000000000000000,-0.001150121065290,-0.003571428571460,0.001029055689983,0.003571428571460,-0.012227602905547,-0.000000000000000,2 -9884,9942,9944,10002,0.164285714285757,-0.098789346247229,0.162500000000027,-0.104449152542668,0.162500000000027,-0.092161016949461,0.160714285714297,-0.097820823244901,0.012348668280862,-0.000000000000000,-0.001029055689983,-0.003571428571460,0.000907990314673,0.003571428571460,-0.012227602905553,-0.000000000000000,2 -9885,9943,9945,10003,0.164285714285757,-0.086440677966369,0.162500000000027,-0.092161016949461,0.162500000000027,-0.079872881356258,0.160714285714297,-0.085593220339350,0.012348668280858,0.000000000000000,-0.000907990314673,-0.003571428571460,0.000786924939364,0.003571428571460,-0.012227602905549,-0.000000000000000,2 -9886,9944,9946,10004,0.164285714285757,-0.074092009685510,0.162500000000027,-0.079872881356258,0.162500000000027,-0.067584745763052,0.160714285714297,-0.073365617433800,0.012348668280861,0.000000000000000,-0.000786924939364,-0.003571428571460,0.000665859564055,0.003571428571460,-0.012227602905552,-0.000000000000000,2 -9887,9945,9947,10005,0.164285714285757,-0.061743341404650,0.162500000000027,-0.067584745763052,0.162500000000027,-0.055296610169848,0.160714285714297,-0.061138014528249,0.012348668280858,0.000000000000000,-0.000665859564055,-0.003571428571460,0.000544794188747,0.003571428571460,-0.012227602905549,-0.000000000000000,2 -9888,9946,9948,10006,0.164285714285757,-0.049394673123792,0.162500000000027,-0.055296610169848,0.162500000000027,-0.043008474576643,0.160714285714297,-0.048910411622700,0.012348668280859,0.000000000000000,-0.000544794188747,-0.003571428571460,0.000423728813438,0.003571428571460,-0.012227602905550,-0.000000000000000,2 -9889,9947,9949,10007,0.164285714285757,-0.037046004842933,0.162500000000027,-0.043008474576643,0.162500000000027,-0.030720338983438,0.160714285714297,-0.036682808717149,0.012348668280859,0.000000000000000,-0.000423728813438,-0.003571428571460,0.000302663438129,0.003571428571460,-0.012227602905551,-0.000000000000000,2 -9890,9948,9950,10008,0.164285714285757,-0.024697336562074,0.162500000000027,-0.030720338983438,0.162500000000027,-0.018432203390235,0.160714285714297,-0.024455205811599,0.012348668280858,0.000000000000000,-0.000302663438129,-0.003571428571460,0.000181598062821,0.003571428571460,-0.012227602905549,-0.000000000000000,2 -9891,9949,9951,10009,0.164285714285757,-0.012348668281215,0.162500000000027,-0.018432203390235,0.162500000000027,-0.006144067797029,0.160714285714297,-0.012227602906049,0.012348668280861,0.000000000000000,-0.000181598062821,-0.003571428571460,0.000060532687511,0.003571428571460,-0.012227602905552,-0.000000000000000,2 -9892,9950,9952,10010,0.164285714285757,-0.000000000000344,0.162500000000027,-0.006144067797029,0.162500000000027,0.006144067796201,0.160714285714297,-0.000000000000484,0.012348668280881,0.000000000000000,-0.000060532687511,-0.003571428571460,-0.000060532687791,0.003571428571460,-0.012227602905578,-0.000000000000000,2 -9893,9951,9953,10011,0.164285714285757,0.012348668280536,0.162500000000027,0.006144067796201,0.162500000000027,0.018432203389431,0.160714285714297,0.012227602905095,0.012348668280880,0.000000000000000,0.000060532687791,-0.003571428571460,-0.000181598063091,0.003571428571460,-0.012227602905581,-0.000000000000000,2 -9894,9952,9954,10012,0.164285714285757,0.024697336561420,0.162500000000027,0.018432203389431,0.162500000000027,0.030720338982670,0.160714285714297,0.024455205810681,0.012348668280888,0.000000000000000,0.000181598063091,-0.003571428571460,-0.000302663438389,0.003571428571460,-0.012227602905590,-0.000000000000000,2 -9895,9953,9955,10013,0.164285714285757,0.037046004842306,0.162500000000027,0.030720338982670,0.162500000000027,0.043008474575904,0.160714285714297,0.036682808716268,0.012348668280883,0.000000000000000,0.000302663438389,-0.003571428571460,-0.000423728813688,0.003571428571460,-0.012227602905585,-0.000000000000000,2 -9896,9954,9956,10014,0.164285714285757,0.049394673123190,0.162500000000027,0.043008474575904,0.162500000000027,0.055296610169139,0.160714285714297,0.048910411621853,0.012348668280885,0.000000000000000,0.000423728813688,-0.003571428571460,-0.000544794188986,0.003571428571460,-0.012227602905586,-0.000000000000000,2 -9897,9955,9957,10015,0.164285714285757,0.061743341404077,0.162500000000027,0.055296610169139,0.162500000000027,0.067584745762378,0.160714285714297,0.061138014527441,0.012348668280888,0.000000000000000,0.000544794188986,-0.003571428571460,-0.000665859564285,0.003571428571460,-0.012227602905590,-0.000000000000000,2 -9898,9956,9958,10016,0.164285714285757,0.074092009684961,0.162500000000027,0.067584745762378,0.162500000000027,0.079872881355609,0.160714285714297,0.073365617433026,0.012348668280880,0.000000000000000,0.000665859564285,-0.003571428571460,-0.000786924939584,0.003571428571460,-0.012227602905581,-0.000000000000000,2 -9899,9957,9959,10017,0.164285714285757,0.086440677965843,0.162500000000027,0.079872881355609,0.162500000000027,0.092161016948844,0.160714285714297,0.085593220338610,0.012348668280884,0.000000000000000,0.000786924939584,-0.003571428571460,-0.000907990314881,0.003571428571460,-0.012227602905587,-0.000000000000000,2 -9900,9958,9960,10018,0.164285714285757,0.098789346246728,0.162500000000027,0.092161016948844,0.162500000000027,0.104449152542081,0.160714285714297,0.097820823244197,0.012348668280886,0.000000000000000,0.000907990314881,-0.003571428571460,-0.001029055690179,0.003571428571460,-0.012227602905588,-0.000000000000000,2 -9901,9959,9961,10019,0.164285714285757,0.111138014527611,0.162500000000027,0.104449152542081,0.162500000000027,0.116737288135312,0.160714285714297,0.110048426149782,0.012348668280880,0.000000000000000,0.001029055690179,-0.003571428571460,-0.001150121065479,0.003571428571460,-0.012227602905581,-0.000000000000000,2 -9902,9960,9962,10020,0.164285714285757,0.123486682808495,0.162500000000027,0.116737288135312,0.162500000000027,0.129025423728550,0.160714285714297,0.122276029055367,0.012348668280888,0.000000000000000,0.001150121065479,-0.003571428571460,-0.001271186440777,0.003571428571460,-0.012227602905590,-0.000000000000000,2 -9903,9961,9963,10021,0.164285714285757,0.135835351089379,0.162500000000027,0.129025423728550,0.162500000000027,0.141313559321781,0.160714285714297,0.134503631960953,0.012348668280880,0.000000000000000,0.001271186440777,-0.003571428571460,-0.001392251816076,0.003571428571460,-0.012227602905581,-0.000000000000000,2 -9904,9962,9964,10022,0.164285714285757,0.148184019370263,0.162500000000027,0.141313559321781,0.162500000000027,0.153601694915019,0.160714285714297,0.146731234866537,0.012348668280887,0.000000000000000,0.001392251816076,-0.003571428571460,-0.001513317191374,0.003571428571460,-0.012227602905588,-0.000000000000000,2 -9905,9963,9965,10023,0.164285714285757,0.160532687651142,0.162500000000027,0.153601694915019,0.162500000000027,0.165889830508240,0.160714285714297,0.158958837772117,0.012348668280871,0.000000000000000,0.001513317191374,-0.003571428571460,-0.001634382566675,0.003571428571460,-0.012227602905571,-0.000000000000000,2 -9906,9964,9966,10024,0.164285714285757,0.172881355932016,0.162500000000027,0.165889830508240,0.162500000000027,0.178177966101468,0.160714285714297,0.171186440677692,0.012348668280878,0.000000000000000,0.001634382566675,-0.003571428571460,-0.001755447941974,0.003571428571460,-0.012227602905579,-0.000000000000000,2 -9907,9965,9967,10025,0.164285714285757,0.185230024212903,0.162500000000027,0.178177966101468,0.162500000000027,0.190466101694715,0.160714285714297,0.183414043583280,0.012348668280895,0.000000000000000,0.001755447941974,-0.003571428571460,-0.001876513317272,0.003571428571460,-0.012227602905597,-0.000000000000000,2 -9908,9966,9968,10026,0.164285714285757,0.197578692493786,0.162500000000027,0.190466101694715,0.162500000000027,0.202754237287936,0.160714285714297,0.195641646488864,0.012348668280871,-0.000000000000000,0.001876513317272,-0.003571428571460,-0.001997578692572,0.003571428571460,-0.012227602905571,-0.000000000000000,2 -9909,9967,9969,10027,0.164285714285757,0.209927360774672,0.162500000000027,0.202754237287936,0.162500000000027,0.215042372881189,0.160714285714297,0.207869249394452,0.012348668280902,0.000000000000000,0.001997578692572,-0.003571428571460,-0.002118644067869,0.003571428571460,-0.012227602905605,-0.000000000000000,2 -9910,9968,9970,10028,0.164285714285757,0.222276029055559,0.162500000000027,0.215042372881189,0.162500000000027,0.227330508474410,0.160714285714297,0.220096852300040,0.012348668280872,0.000000000000000,0.002118644067869,-0.003571428571460,-0.002239709443169,0.003571428571460,-0.012227602905572,-0.000000000000000,2 -9911,9969,9971,10029,0.164285714285757,0.234624697336440,0.162500000000027,0.227330508474410,0.162500000000027,0.239618644067653,0.160714285714297,0.232324455205623,0.012348668280891,0.000000000000000,0.002239709443169,-0.003571428571460,-0.002360774818467,0.003571428571460,-0.012227602905593,-0.000000000000000,2 -9912,9970,9972,10030,0.164285714285757,0.246973365617327,0.162500000000027,0.239618644067653,0.162500000000027,0.251906779660885,0.160714285714297,0.244552058111211,0.012348668280882,0.000000000000000,0.002360774818467,-0.003571428571460,-0.002481840193766,0.003571428571460,-0.012227602905583,-0.000000000000000,2 -9913,9971,9973,10031,0.164285714285757,0.259322033898209,0.162500000000027,0.251906779660885,0.162500000000027,0.264194915254117,0.160714285714297,0.256779661016793,0.012348668280881,0.000000000000000,0.002481840193766,-0.003571428571460,-0.002602905569065,0.003571428571460,-0.012227602905582,-0.000000000000000,2 -9914,9972,9974,10032,0.164285714285757,0.271670702179098,0.162500000000027,0.264194915254117,0.162500000000027,0.276483050847365,0.160714285714297,0.269007263922383,0.012348668280898,0.000000000000000,0.002602905569065,-0.003571428571460,-0.002723970944364,0.003571428571460,-0.012227602905598,-0.000000000000000,2 -9915,9973,9975,10033,0.164285714285757,0.284019370459984,0.162500000000027,0.276483050847365,0.162500000000027,0.288771186440589,0.160714285714297,0.281234866827969,0.012348668280875,-0.000000000000000,0.002723970944364,-0.003571428571460,-0.002845036319666,0.003571428571460,-0.012227602905574,-0.000000000000000,2 -9916,9974,9976,10034,0.164285714285757,0.296368038740876,0.162500000000027,0.288771186440589,0.162500000000027,0.301059322033849,0.160714285714297,0.293462469733561,0.012348668280909,0.000000000000000,0.002845036319666,-0.003571428571460,-0.002966101694964,0.003571428571460,-0.012227602905610,-0.000000000000000,2 -9917,9975,9977,10035,0.164285714285757,0.308716707021767,0.162500000000027,0.301059322033849,0.162500000000027,0.313347457627072,0.160714285714297,0.305690072639153,0.012348668280874,-0.000000000000000,0.002966101694964,-0.003571428571460,-0.003087167070264,0.003571428571460,-0.012227602905573,-0.000000000000000,2 -9918,9976,9978,10036,0.164285714285757,0.321065375302651,0.162500000000027,0.313347457627072,0.162500000000027,0.325635593220317,0.160714285714297,0.317917675544738,0.012348668280894,0.000000000000000,0.003087167070264,-0.003571428571460,-0.003208232445562,0.003571428571460,-0.012227602905596,-0.000000000000000,2 -9919,9977,9979,10037,0.164285714285757,0.333414043583538,0.162500000000027,0.325635593220317,0.162500000000027,0.337923728813547,0.160714285714297,0.330145278450326,0.012348668280879,0.000000000000000,0.003208232445562,-0.003571428571460,-0.003329297820862,0.003571428571460,-0.012227602905580,-0.000000000000000,2 -9920,9978,9980,10038,0.164285714285757,0.345762711864420,0.162500000000027,0.337923728813547,0.162500000000027,0.350211864406781,0.160714285714297,0.342372881355908,0.012348668280884,0.000000000000000,0.003329297820862,-0.003571428571460,-0.003450363196160,0.003571428571460,-0.012227602905585,-0.000000000000000,2 -7697,9921,9979,10039,0.162500000000027,0.362500000000027,0.164285714285757,0.358111380145309,0.162500000000027,0.350211864406781,0.160714285714297,0.354600484261499,-0.003571428571460,0.003571428571460,0.012348668280896,-0.000000000000000,0.003450363196160,-0.003571428571460,-0.012227602905596,0.000000000000000,2 -9012,9922,9982,10040,0.158928571428573,-0.358928571428573,0.160714285714297,-0.354600484261518,0.158928571428573,-0.346761501210668,0.157142857142849,-0.351089588377724,-0.003571428571448,-0.003571428571448,0.012227602905558,0.000000000000000,0.003450363196140,0.003571428571448,-0.012106537530251,-0.000000000000000,2 -9923,9981,9983,10041,0.160714285714297,-0.342372881355961,0.158928571428573,-0.346761501210668,0.158928571428573,-0.334594430992767,0.157142857142849,-0.338983050847475,0.012227602905556,-0.000000000000000,-0.003450363196140,-0.003571428571448,0.003329297820831,0.003571428571448,-0.012106537530247,-0.000000000000000,2 -9924,9982,9984,10042,0.160714285714297,-0.330145278450403,0.158928571428573,-0.334594430992767,0.158928571428573,-0.322427360774859,0.157142857142849,-0.326876513317224,0.012227602905561,0.000000000000000,-0.003329297820831,-0.003571428571448,0.003208232445525,0.003571428571448,-0.012106537530255,-0.000000000000000,2 -9925,9983,9985,10043,0.160714285714297,-0.317917675544845,0.158928571428573,-0.322427360774859,0.158928571428573,-0.310260290556960,0.157142857142849,-0.314769975786974,0.012227602905554,-0.000000000000000,-0.003208232445525,-0.003571428571448,0.003087167070216,0.003571428571448,-0.012106537530244,-0.000000000000000,2 -9926,9984,9986,10044,0.160714285714297,-0.305690072639287,0.158928571428573,-0.310260290556960,0.158928571428573,-0.298093220339051,0.157142857142849,-0.302663438256724,0.012227602905562,-0.000000000000000,-0.003087167070216,-0.003571428571448,0.002966101694911,0.003571428571448,-0.012106537530256,-0.000000000000000,2 -9927,9985,9987,10045,0.160714285714297,-0.293462469733729,0.158928571428573,-0.298093220339051,0.158928571428573,-0.285926150121151,0.157142857142849,-0.290556900726473,0.012227602905555,0.000000000000000,-0.002966101694911,-0.003571428571448,0.002845036319601,0.003571428571448,-0.012106537530245,-0.000000000000000,2 -9928,9986,9988,10046,0.160714285714297,-0.281234866828172,0.158928571428573,-0.285926150121151,0.158928571428573,-0.273759079903246,0.157142857142849,-0.278450363196225,0.012227602905559,0.000000000000000,-0.002845036319601,-0.003571428571448,0.002723970944294,0.003571428571448,-0.012106537530252,-0.000000000000000,2 -9929,9987,9989,10047,0.160714285714297,-0.269007263922620,0.158928571428573,-0.273759079903246,0.158928571428573,-0.261592009685354,0.157142857142849,-0.266343825665980,0.012227602905546,0.000000000000000,-0.002723970944294,-0.003571428571448,0.002602905568985,0.003571428571448,-0.012106537530237,-0.000000000000000,2 -9930,9988,9990,10048,0.160714285714297,-0.256779661017073,0.158928571428573,-0.261592009685354,0.158928571428573,-0.249424939467460,0.157142857142849,-0.254237288135742,0.012227602905549,0.000000000000000,-0.002602905568985,-0.003571428571448,0.002481840193676,0.003571428571448,-0.012106537530239,-0.000000000000000,2 -9931,9989,9991,10049,0.160714285714297,-0.244552058111522,0.158928571428573,-0.249424939467460,0.158928571428573,-0.237257869249560,0.157142857142849,-0.242130750605499,0.012227602905554,0.000000000000000,-0.002481840193676,-0.003571428571448,0.002360774818369,0.003571428571448,-0.012106537530247,-0.000000000000000,2 -9932,9990,9992,10050,0.160714285714297,-0.232324455205966,0.158928571428573,-0.237257869249560,0.158928571428573,-0.225090799031657,0.157142857142849,-0.230024213075251,0.012227602905558,0.000000000000000,-0.002360774818369,-0.003571428571448,0.002239709443060,0.003571428571448,-0.012106537530249,-0.000000000000000,2 -9933,9991,9993,10051,0.160714285714297,-0.220096852300412,0.158928571428573,-0.225090799031657,0.158928571428573,-0.212923728813760,0.157142857142849,-0.217917675545005,0.012227602905550,0.000000000000000,-0.002239709443060,-0.003571428571448,0.002118644067753,0.003571428571448,-0.012106537530244,-0.000000000000000,2 -9934,9992,9994,10052,0.160714285714297,-0.207869249394860,0.158928571428573,-0.212923728813760,0.158928571428573,-0.200756658595861,0.157142857142849,-0.205811138014761,0.012227602905554,0.000000000000000,-0.002118644067753,-0.003571428571448,0.001997578692444,0.003571428571448,-0.012106537530245,-0.000000000000000,2 -9935,9993,9995,10053,0.160714285714297,-0.195641646489309,0.158928571428573,-0.200756658595861,0.158928571428573,-0.188589588377967,0.157142857142849,-0.193704600484519,0.012227602905548,0.000000000000000,-0.001997578692444,-0.003571428571448,0.001876513317136,0.003571428571448,-0.012106537530240,-0.000000000000000,2 -9936,9994,9996,10054,0.160714285714297,-0.183414043583759,0.158928571428573,-0.188589588377967,0.158928571428573,-0.176422518160070,0.157142857142849,-0.181598062954277,0.012227602905551,0.000000000000000,-0.001876513317136,-0.003571428571448,0.001755447941827,0.003571428571448,-0.012106537530243,-0.000000000000000,2 -9937,9995,9997,10055,0.160714285714297,-0.171186440678210,0.158928571428573,-0.176422518160070,0.158928571428573,-0.164255447942177,0.157142857142849,-0.169491525424036,0.012227602905546,0.000000000000000,-0.001755447941827,-0.003571428571448,0.001634382566520,0.003571428571448,-0.012106537530239,0.000000000000000,2 -9938,9996,9998,10056,0.160714285714297,-0.158958837772661,0.158928571428573,-0.164255447942177,0.158928571428573,-0.152088377724279,0.157142857142849,-0.157384987893795,0.012227602905553,0.000000000000000,-0.001634382566520,-0.003571428571448,0.001513317191211,0.003571428571448,-0.012106537530243,-0.000000000000000,2 -9939,9997,9999,10057,0.160714285714297,-0.146731234867109,0.158928571428573,-0.152088377724279,0.158928571428573,-0.139921307506383,0.157142857142849,-0.145278450363552,0.012227602905550,0.000000000000000,-0.001513317191211,-0.003571428571448,0.001392251815903,0.003571428571448,-0.012106537530242,-0.000000000000000,2 -9940,9998,10000,10058,0.160714285714297,-0.134503631961556,0.158928571428573,-0.139921307506383,0.158928571428573,-0.127754237288479,0.157142857142849,-0.133171912833306,0.012227602905558,0.000000000000000,-0.001392251815903,-0.003571428571448,0.001271186440595,0.003571428571448,-0.012106537530251,-0.000000000000000,2 -9941,9999,10001,10059,0.160714285714297,-0.122276029056000,0.158928571428573,-0.127754237288479,0.158928571428573,-0.115587167070581,0.157142857142849,-0.121065375303059,0.012227602905552,0.000000000000000,-0.001271186440595,-0.003571428571448,0.001150121065286,0.003571428571448,-0.012106537530243,-0.000000000000000,2 -9942,10000,10002,10060,0.160714285714297,-0.110048426150451,0.158928571428573,-0.115587167070581,0.158928571428573,-0.103420096852688,0.157142857142849,-0.108958837772818,0.012227602905547,0.000000000000000,-0.001150121065286,-0.003571428571448,0.001029055689979,0.003571428571448,-0.012106537530240,-0.000000000000000,2 -9943,10001,10003,10061,0.160714285714297,-0.097820823244901,0.158928571428573,-0.103420096852688,0.158928571428573,-0.091253026634790,0.157142857142849,-0.096852300242576,0.012227602905553,0.000000000000000,-0.001029055689979,-0.003571428571448,0.000907990314670,0.003571428571448,-0.012106537530243,-0.000000000000000,2 -9944,10002,10004,10062,0.160714285714297,-0.085593220339350,0.158928571428573,-0.091253026634790,0.158928571428573,-0.079085956416895,0.157142857142849,-0.084745762712334,0.012227602905549,0.000000000000000,-0.000907990314670,-0.003571428571448,0.000786924939362,0.003571428571448,-0.012106537530241,-0.000000000000000,2 -9945,10003,10005,10063,0.160714285714297,-0.073365617433800,0.158928571428573,-0.079085956416895,0.158928571428573,-0.066918886198997,0.157142857142849,-0.072639225182092,0.012227602905552,0.000000000000000,-0.000786924939362,-0.003571428571448,0.000665859564053,0.003571428571448,-0.012106537530243,-0.000000000000000,2 -9946,10004,10006,10064,0.160714285714297,-0.061138014528249,0.158928571428573,-0.066918886198997,0.158928571428573,-0.054751815981102,0.157142857142849,-0.060532687651850,0.012227602905549,0.000000000000000,-0.000665859564053,-0.003571428571448,0.000544794188745,0.003571428571448,-0.012106537530241,-0.000000000000000,2 -9947,10005,10007,10065,0.160714285714297,-0.048910411622700,0.158928571428573,-0.054751815981102,0.158928571428573,-0.042584745763206,0.157142857142849,-0.048426150121609,0.012227602905550,0.000000000000000,-0.000544794188745,-0.003571428571448,0.000423728813437,0.003571428571448,-0.012106537530242,-0.000000000000000,2 -9948,10006,10008,10066,0.160714285714297,-0.036682808717149,0.158928571428573,-0.042584745763206,0.158928571428573,-0.030417675545310,0.157142857142849,-0.036319612591367,0.012227602905551,0.000000000000000,-0.000423728813437,-0.003571428571448,0.000302663438128,0.003571428571448,-0.012106537530242,-0.000000000000000,2 -9949,10007,10009,10067,0.160714285714297,-0.024455205811599,0.158928571428573,-0.030417675545310,0.158928571428573,-0.018250605327415,0.157142857142849,-0.024213075061125,0.012227602905549,0.000000000000000,-0.000302663438128,-0.003571428571448,0.000181598062820,0.003571428571448,-0.012106537530241,-0.000000000000000,2 -9950,10008,10010,10068,0.160714285714297,-0.012227602906049,0.158928571428573,-0.018250605327415,0.158928571428573,-0.006083535109518,0.157142857142849,-0.012106537530883,0.012227602905552,0.000000000000000,-0.000181598062820,-0.003571428571448,0.000060532687511,0.003571428571448,-0.012106537530243,-0.000000000000000,2 -9951,10009,10011,10069,0.160714285714297,-0.000000000000484,0.158928571428573,-0.006083535109518,0.158928571428573,0.006083535108409,0.157142857142849,-0.000000000000624,0.012227602905578,0.000000000000000,-0.000060532687511,-0.003571428571448,-0.000060532687791,0.003571428571448,-0.012106537530276,-0.000000000000000,2 -9952,10010,10012,10070,0.160714285714297,0.012227602905095,0.158928571428573,0.006083535108409,0.158928571428573,0.018250605326341,0.157142857142849,0.012106537529655,0.012227602905581,0.000000000000000,0.000060532687791,-0.003571428571448,-0.000181598063090,0.003571428571448,-0.012106537530282,-0.000000000000000,2 -9953,10011,10013,10071,0.160714285714297,0.024455205810681,0.158928571428573,0.018250605326341,0.158928571428573,0.030417675544282,0.157142857142849,0.024213075059942,0.012227602905590,0.000000000000000,0.000181598063090,-0.003571428571448,-0.000302663438388,0.003571428571448,-0.012106537530292,-0.000000000000000,2 -9954,10012,10014,10072,0.160714285714297,0.036682808716268,0.158928571428573,0.030417675544282,0.158928571428573,0.042584745762217,0.157142857142849,0.036319612590231,0.012227602905585,0.000000000000000,0.000302663438388,-0.003571428571448,-0.000423728813686,0.003571428571448,-0.012106537530286,-0.000000000000000,2 -9955,10013,10015,10073,0.160714285714297,0.048910411621853,0.158928571428573,0.042584745762217,0.158928571428573,0.054751815980154,0.157142857142849,0.048426150120518,0.012227602905586,0.000000000000000,0.000423728813686,-0.003571428571448,-0.000544794188985,0.003571428571448,-0.012106537530288,-0.000000000000000,2 -9956,10014,10016,10074,0.160714285714297,0.061138014527441,0.158928571428573,0.054751815980154,0.158928571428573,0.066918886198094,0.157142857142849,0.060532687650807,0.012227602905590,0.000000000000000,0.000544794188985,-0.003571428571448,-0.000665859564283,0.003571428571448,-0.012106537530292,-0.000000000000000,2 -9957,10015,10017,10075,0.160714285714297,0.073365617433026,0.158928571428573,0.066918886198094,0.158928571428573,0.079085956416026,0.157142857142849,0.072639225181094,0.012227602905581,0.000000000000000,0.000665859564283,-0.003571428571448,-0.000786924939581,0.003571428571448,-0.012106537530282,-0.000000000000000,2 -9958,10016,10018,10076,0.160714285714297,0.085593220338610,0.158928571428573,0.079085956416026,0.158928571428573,0.091253026633964,0.157142857142849,0.084745762711380,0.012227602905587,0.000000000000000,0.000786924939581,-0.003571428571448,-0.000907990314878,0.003571428571448,-0.012106537530290,-0.000000000000000,2 -9959,10017,10019,10077,0.160714285714297,0.097820823244197,0.158928571428573,0.091253026633964,0.158928571428573,0.103420096851903,0.157142857142849,0.096852300241670,0.012227602905588,0.000000000000000,0.000907990314878,-0.003571428571448,-0.001029055690176,0.003571428571448,-0.012106537530290,-0.000000000000000,2 -9960,10018,10020,10078,0.160714285714297,0.110048426149782,0.158928571428573,0.103420096851903,0.158928571428573,0.115587167069835,0.157142857142849,0.108958837771957,0.012227602905581,0.000000000000000,0.001029055690176,-0.003571428571448,-0.001150121065474,0.003571428571448,-0.012106537530282,-0.000000000000000,2 -9961,10019,10021,10079,0.160714285714297,0.122276029055367,0.158928571428573,0.115587167069835,0.158928571428573,0.127754237287776,0.157142857142849,0.121065375302244,0.012227602905590,0.000000000000000,0.001150121065474,-0.003571428571448,-0.001271186440772,0.003571428571448,-0.012106537530292,-0.000000000000000,2 -9962,10020,10022,10080,0.160714285714297,0.134503631960953,0.158928571428573,0.127754237287776,0.158928571428573,0.139921307505708,0.157142857142849,0.133171912832531,0.012227602905581,0.000000000000000,0.001271186440772,-0.003571428571448,-0.001392251816071,0.003571428571448,-0.012106537530283,-0.000000000000000,2 -9963,10021,10023,10081,0.160714285714297,0.146731234866537,0.158928571428573,0.139921307505708,0.158928571428573,0.152088377723647,0.157142857142849,0.145278450362817,0.012227602905588,0.000000000000000,0.001392251816071,-0.003571428571448,-0.001513317191369,0.003571428571448,-0.012106537530290,-0.000000000000000,2 -9964,10022,10024,10082,0.160714285714297,0.158958837772117,0.158928571428573,0.152088377723647,0.158928571428573,0.164255447941568,0.157142857142849,0.157384987893098,0.012227602905571,0.000000000000000,0.001513317191369,-0.003571428571448,-0.001634382566669,0.003571428571448,-0.012106537530271,-0.000000000000000,2 -9965,10023,10025,10083,0.160714285714297,0.171186440677692,0.158928571428573,0.164255447941568,0.158928571428573,0.176422518159498,0.157142857142849,0.169491525423374,0.012227602905579,0.000000000000000,0.001634382566669,-0.003571428571448,-0.001755447941968,0.003571428571448,-0.012106537530280,-0.000000000000000,2 -9966,10024,10026,10084,0.160714285714297,0.183414043583280,0.158928571428573,0.176422518159498,0.158928571428573,0.188589588377446,0.157142857142849,0.181598062953664,0.012227602905597,0.000000000000000,0.001755447941968,-0.003571428571448,-0.001876513317265,0.003571428571448,-0.012106537530300,-0.000000000000000,2 -9967,10025,10027,10085,0.160714285714297,0.195641646488864,0.158928571428573,0.188589588377446,0.158928571428573,0.200756658595368,0.157142857142849,0.193704600483949,0.012227602905571,0.000000000000000,0.001876513317265,-0.003571428571448,-0.001997578692565,0.003571428571448,-0.012106537530271,-0.000000000000000,2 -9968,10026,10028,10086,0.160714285714297,0.207869249394452,0.158928571428573,0.200756658595368,0.158928571428573,0.212923728813324,0.157142857142849,0.205811138014239,0.012227602905605,0.000000000000000,0.001997578692565,-0.003571428571448,-0.002118644067861,0.003571428571448,-0.012106537530308,-0.000000000000000,2 -9969,10027,10029,10087,0.160714285714297,0.220096852300040,0.158928571428573,0.212923728813324,0.158928571428573,0.225090799031246,0.157142857142849,0.217917675544529,0.012227602905572,0.000000000000000,0.002118644067861,-0.003571428571448,-0.002239709443161,0.003571428571448,-0.012106537530272,-0.000000000000000,2 -9970,10028,10030,10088,0.160714285714297,0.232324455205623,0.158928571428573,0.225090799031246,0.158928571428573,0.237257869249190,0.157142857142849,0.230024213074813,0.012227602905593,0.000000000000000,0.002239709443161,-0.003571428571448,-0.002360774818459,0.003571428571448,-0.012106537530296,-0.000000000000000,2 -9971,10029,10031,10089,0.160714285714297,0.244552058111211,0.158928571428573,0.237257869249190,0.158928571428573,0.249424939467124,0.157142857142849,0.242130750605103,0.012227602905583,0.000000000000000,0.002360774818459,-0.003571428571448,-0.002481840193757,0.003571428571448,-0.012106537530284,-0.000000000000000,2 -9972,10030,10032,10090,0.160714285714297,0.256779661016793,0.158928571428573,0.249424939467124,0.158928571428573,0.261592009685056,0.157142857142849,0.254237288135387,0.012227602905582,0.000000000000000,0.002481840193757,-0.003571428571448,-0.002602905569056,0.003571428571448,-0.012106537530283,-0.000000000000000,2 -9973,10031,10033,10091,0.160714285714297,0.269007263922383,0.158928571428573,0.261592009685056,0.158928571428573,0.273759079903005,0.157142857142849,0.266343825665678,0.012227602905598,0.000000000000000,0.002602905569056,-0.003571428571448,-0.002723970944355,0.003571428571448,-0.012106537530299,-0.000000000000000,2 -9974,10032,10034,10092,0.160714285714297,0.281234866827969,0.158928571428573,0.273759079903005,0.158928571428573,0.285926150120929,0.157142857142849,0.278450363195965,0.012227602905574,0.000000000000000,0.002723970944355,-0.003571428571448,-0.002845036319655,0.003571428571448,-0.012106537530273,-0.000000000000000,2 -9975,10033,10035,10093,0.160714285714297,0.293462469733561,0.158928571428573,0.285926150120929,0.158928571428573,0.298093220338890,0.157142857142849,0.290556900726257,0.012227602905610,0.000000000000000,0.002845036319655,-0.003571428571448,-0.002966101694954,0.003571428571448,-0.012106537530312,-0.000000000000000,2 -9976,10034,10036,10094,0.160714285714297,0.305690072639153,0.158928571428573,0.298093220338890,0.158928571428573,0.310260290556813,0.157142857142849,0.302663438256549,0.012227602905573,0.000000000000000,0.002966101694954,-0.003571428571448,-0.003087167070254,0.003571428571448,-0.012106537530273,-0.000000000000000,2 -9977,10035,10037,10095,0.160714285714297,0.317917675544738,0.158928571428573,0.310260290556813,0.158928571428573,0.322427360774761,0.157142857142849,0.314769975786835,0.012227602905596,0.000000000000000,0.003087167070254,-0.003571428571448,-0.003208232445551,0.003571428571448,-0.012106537530299,-0.000000000000000,2 -9978,10036,10038,10096,0.160714285714297,0.330145278450326,0.158928571428573,0.322427360774761,0.158928571428573,0.334594430992691,0.157142857142849,0.326876513317125,0.012227602905580,0.000000000000000,0.003208232445551,-0.003571428571448,-0.003329297820850,0.003571428571448,-0.012106537530281,-0.000000000000000,2 -9979,10037,10039,10097,0.160714285714297,0.342372881355908,0.158928571428573,0.334594430992691,0.158928571428573,0.346761501210627,0.157142857142849,0.338983050847409,0.012227602905585,0.000000000000000,0.003329297820850,-0.003571428571448,-0.003450363196149,0.003571428571448,-0.012106537530287,-0.000000000000000,2 -7696,9980,10038,10098,0.158928571428573,0.358928571428573,0.160714285714297,0.354600484261499,0.158928571428573,0.346761501210627,0.157142857142849,0.351089588377701,-0.003571428571448,0.003571428571448,0.012227602905596,-0.000000000000000,0.003450363196149,-0.003571428571448,-0.012106537530297,0.000000000000000,2 -8983,9981,10041,10099,0.155357142857132,-0.355357142857132,0.157142857142849,-0.351089588377724,0.155357142857132,-0.343311138014534,0.153571428571415,-0.347578692493943,-0.003571428571434,-0.003571428571434,0.012106537530251,0.000000000000000,0.003450363196128,0.003571428571434,-0.011985472154944,0.000000000000000,2 -9982,10040,10042,10100,0.157142857142849,-0.338983050847475,0.155357142857132,-0.343311138014534,0.155357142857132,-0.331265133171942,0.153571428571415,-0.335593220339001,0.012106537530247,0.000000000000000,-0.003450363196128,-0.003571428571434,0.003329297820819,0.003571428571434,-0.011985472154938,-0.000000000000000,2 -9983,10041,10043,10101,0.157142857142849,-0.326876513317224,0.155357142857132,-0.331265133171942,0.155357142857132,-0.319219128329340,0.153571428571415,-0.323607748184058,0.012106537530255,0.000000000000000,-0.003329297820819,-0.003571428571434,0.003208232445514,0.003571428571434,-0.011985472154949,-0.000000000000000,2 -9984,10042,10044,10102,0.157142857142849,-0.314769975786974,0.155357142857132,-0.319219128329340,0.155357142857132,-0.307173123486750,0.153571428571415,-0.311622276029115,0.012106537530244,0.000000000000000,-0.003208232445514,-0.003571428571434,0.003087167070204,0.003571428571434,-0.011985472154935,-0.000000000000000,2 -9985,10043,10045,10103,0.157142857142849,-0.302663438256724,0.155357142857132,-0.307173123486750,0.155357142857132,-0.295127118644146,0.153571428571415,-0.299636803874172,0.012106537530256,0.000000000000000,-0.003087167070204,-0.003571428571434,0.002966101694899,0.003571428571434,-0.011985472154951,-0.000000000000000,2 -9986,10044,10046,10104,0.157142857142849,-0.290556900726473,0.155357142857132,-0.295127118644146,0.155357142857132,-0.283081113801555,0.153571428571415,-0.287651331719229,0.012106537530245,0.000000000000000,-0.002966101694899,-0.003571428571434,0.002845036319590,0.003571428571434,-0.011985472154937,-0.000000000000000,2 -9987,10045,10047,10105,0.157142857142849,-0.278450363196225,0.155357142857132,-0.283081113801555,0.155357142857132,-0.271035108958957,0.153571428571415,-0.275665859564288,0.012106537530252,0.000000000000000,-0.002845036319590,-0.003571428571434,0.002723970944284,0.003571428571434,-0.011985472154945,-0.000000000000000,2 -9988,10046,10048,10106,0.157142857142849,-0.266343825665980,0.155357142857132,-0.271035108958957,0.155357142857132,-0.258989104116374,0.153571428571415,-0.263680387409351,0.012106537530237,0.000000000000000,-0.002723970944284,-0.003571428571434,0.002602905568975,0.003571428571434,-0.011985472154929,0.000000000000000,2 -9989,10047,10049,10107,0.157142857142849,-0.254237288135742,0.155357142857132,-0.258989104116374,0.155357142857132,-0.246943099273789,0.153571428571415,-0.251694915254421,0.012106537530239,0.000000000000000,-0.002602905568975,-0.003571428571434,0.002481840193667,0.003571428571434,-0.011985472154931,-0.000000000000000,2 -9990,10048,10050,10108,0.157142857142849,-0.242130750605499,0.155357142857132,-0.246943099273789,0.155357142857132,-0.234897094431196,0.153571428571415,-0.239709443099486,0.012106537530247,0.000000000000000,-0.002481840193667,-0.003571428571434,0.002360774818360,0.003571428571434,-0.011985472154940,-0.000000000000000,2 -9991,10049,10051,10109,0.157142857142849,-0.230024213075251,0.155357142857132,-0.234897094431196,0.155357142857132,-0.222851089588601,0.153571428571415,-0.227723970944546,0.012106537530249,0.000000000000000,-0.002360774818360,-0.003571428571434,0.002239709443051,0.003571428571434,-0.011985472154940,-0.000000000000000,2 -9992,10050,10052,10110,0.157142857142849,-0.217917675545005,0.155357142857132,-0.222851089588601,0.155357142857132,-0.210805084746011,0.153571428571415,-0.215738498789607,0.012106537530244,0.000000000000000,-0.002239709443051,-0.003571428571434,0.002118644067746,0.003571428571434,-0.011985472154938,-0.000000000000000,2 -9993,10051,10053,10111,0.157142857142849,-0.205811138014761,0.155357142857132,-0.210805084746011,0.155357142857132,-0.198759079903421,0.153571428571415,-0.203753026634670,0.012106537530245,0.000000000000000,-0.002118644067746,-0.003571428571434,0.001997578692436,0.003571428571434,-0.011985472154935,-0.000000000000000,2 -9994,10052,10054,10112,0.157142857142849,-0.193704600484519,0.155357142857132,-0.198759079903421,0.155357142857132,-0.186713075060834,0.153571428571415,-0.191767554479736,0.012106537530240,0.000000000000000,-0.001997578692436,-0.003571428571434,0.001876513317129,0.003571428571434,-0.011985472154933,-0.000000000000000,2 -9995,10053,10055,10113,0.157142857142849,-0.181598062954277,0.155357142857132,-0.186713075060834,0.155357142857132,-0.174667070218246,0.153571428571415,-0.179782082324802,0.012106537530243,0.000000000000000,-0.001876513317129,-0.003571428571434,0.001755447941821,0.003571428571434,-0.011985472154934,-0.000000000000000,2 -9996,10054,10056,10114,0.157142857142849,-0.169491525424036,0.155357142857132,-0.174667070218246,0.155357142857132,-0.162621065375660,0.153571428571415,-0.167796610169869,0.012106537530239,-0.000000000000000,-0.001755447941821,-0.003571428571434,0.001634382566514,0.003571428571434,-0.011985472154933,-0.000000000000000,2 -9997,10055,10057,10115,0.157142857142849,-0.157384987893795,0.155357142857132,-0.162621065375660,0.155357142857132,-0.150575060533071,0.153571428571415,-0.155811138014935,0.012106537530243,0.000000000000000,-0.001634382566514,-0.003571428571434,0.001513317191205,0.003571428571434,-0.011985472154935,-0.000000000000000,2 -9998,10056,10058,10116,0.157142857142849,-0.145278450363552,0.155357142857132,-0.150575060533071,0.155357142857132,-0.138529055690483,0.153571428571415,-0.143825665860001,0.012106537530242,0.000000000000000,-0.001513317191205,-0.003571428571434,0.001392251815898,0.003571428571434,-0.011985472154934,-0.000000000000000,2 -9999,10057,10059,10117,0.157142857142849,-0.133171912833306,0.155357142857132,-0.138529055690483,0.155357142857132,-0.126483050847886,0.153571428571415,-0.131840193705062,0.012106537530251,0.000000000000000,-0.001392251815898,-0.003571428571434,0.001271186440591,0.003571428571434,-0.011985472154944,-0.000000000000000,2 -10000,10058,10060,10118,0.157142857142849,-0.121065375303059,0.155357142857132,-0.126483050847886,0.155357142857132,-0.114437046005297,0.153571428571415,-0.119854721550123,0.012106537530243,0.000000000000000,-0.001271186440591,-0.003571428571434,0.001150121065282,0.003571428571434,-0.011985472154934,-0.000000000000000,2 -10001,10059,10061,10119,0.157142857142849,-0.108958837772818,0.155357142857132,-0.114437046005297,0.155357142857132,-0.102391041162711,0.153571428571415,-0.107869249395189,0.012106537530240,0.000000000000000,-0.001150121065282,-0.003571428571434,0.001029055689975,0.003571428571434,-0.011985472154933,-0.000000000000000,2 -10002,10060,10062,10120,0.157142857142849,-0.096852300242576,0.155357142857132,-0.102391041162711,0.155357142857132,-0.090345036320122,0.153571428571415,-0.095883777240256,0.012106537530243,0.000000000000000,-0.001029055689975,-0.003571428571434,0.000907990314666,0.003571428571434,-0.011985472154935,-0.000000000000000,2 -10003,10061,10063,10121,0.157142857142849,-0.084745762712334,0.155357142857132,-0.090345036320122,0.155357142857132,-0.078299031477534,0.153571428571415,-0.083898305085322,0.012106537530241,0.000000000000000,-0.000907990314666,-0.003571428571434,0.000786924939359,0.003571428571434,-0.011985472154934,-0.000000000000000,2 -10004,10062,10064,10122,0.157142857142849,-0.072639225182092,0.155357142857132,-0.078299031477534,0.155357142857132,-0.066253026634946,0.153571428571415,-0.071912832930388,0.012106537530243,0.000000000000000,-0.000786924939359,-0.003571428571434,0.000665859564050,0.003571428571434,-0.011985472154934,-0.000000000000000,2 -10005,10063,10065,10123,0.157142857142849,-0.060532687651850,0.155357142857132,-0.066253026634946,0.155357142857132,-0.054207021792358,0.153571428571415,-0.059927360775454,0.012106537530241,0.000000000000000,-0.000665859564050,-0.003571428571434,0.000544794188743,0.003571428571434,-0.011985472154934,-0.000000000000000,2 -10006,10064,10066,10124,0.157142857142849,-0.048426150121609,0.155357142857132,-0.054207021792358,0.155357142857132,-0.042161016949771,0.153571428571415,-0.047941888620520,0.012106537530242,0.000000000000000,-0.000544794188743,-0.003571428571434,0.000423728813435,0.003571428571434,-0.011985472154934,-0.000000000000000,2 -10007,10065,10067,10125,0.157142857142849,-0.036319612591367,0.155357142857132,-0.042161016949771,0.155357142857132,-0.030115012107182,0.153571428571415,-0.035956416465586,0.012106537530242,0.000000000000000,-0.000423728813435,-0.003571428571434,0.000302663438127,0.003571428571434,-0.011985472154934,-0.000000000000000,2 -10008,10066,10068,10126,0.157142857142849,-0.024213075061125,0.155357142857132,-0.030115012107182,0.155357142857132,-0.018069007264595,0.153571428571415,-0.023970944310652,0.012106537530241,0.000000000000000,-0.000302663438127,-0.003571428571434,0.000181598062819,0.003571428571434,-0.011985472154934,-0.000000000000000,2 -10009,10067,10069,10127,0.157142857142849,-0.012106537530883,0.155357142857132,-0.018069007264595,0.155357142857132,-0.006023002422007,0.153571428571415,-0.011985472155718,0.012106537530243,0.000000000000000,-0.000181598062819,-0.003571428571434,0.000060532687511,0.003571428571434,-0.011985472154934,-0.000000000000000,2 -10010,10068,10070,10128,0.157142857142849,-0.000000000000624,0.155357142857132,-0.006023002422007,0.155357142857132,0.006023002420618,0.153571428571415,-0.000000000000764,0.012106537530276,0.000000000000000,-0.000060532687511,-0.003571428571434,-0.000060532687791,0.003571428571434,-0.011985472154974,-0.000000000000000,2 -10011,10069,10071,10129,0.157142857142849,0.012106537529655,0.155357142857132,0.006023002420618,0.155357142857132,0.018069007263251,0.153571428571415,0.011985472154215,0.012106537530282,0.000000000000000,0.000060532687791,-0.003571428571434,-0.000181598063089,0.003571428571434,-0.011985472154984,-0.000000000000000,2 -10012,10070,10072,10130,0.157142857142849,0.024213075059942,0.155357142857132,0.018069007263251,0.155357142857132,0.030115012105894,0.153571428571415,0.023970944309204,0.012106537530292,0.000000000000000,0.000181598063089,-0.003571428571434,-0.000302663438387,0.003571428571434,-0.011985472154994,-0.000000000000000,2 -10013,10071,10073,10131,0.157142857142849,0.036319612590231,0.155357142857132,0.030115012105894,0.155357142857132,0.042161016948531,0.153571428571415,0.035956416464195,0.012106537530286,0.000000000000000,0.000302663438387,-0.003571428571434,-0.000423728813685,0.003571428571434,-0.011985472154988,-0.000000000000000,2 -10014,10072,10074,10132,0.157142857142849,0.048426150120518,0.155357142857132,0.042161016948531,0.155357142857132,0.054207021791170,0.153571428571415,0.047941888619184,0.012106537530288,0.000000000000000,0.000423728813685,-0.003571428571434,-0.000544794188983,0.003571428571434,-0.011985472154990,-0.000000000000000,2 -10015,10073,10075,10133,0.157142857142849,0.060532687650807,0.155357142857132,0.054207021791170,0.155357142857132,0.066253026633813,0.153571428571415,0.059927360774176,0.012106537530292,0.000000000000000,0.000544794188983,-0.003571428571434,-0.000665859564280,0.003571428571434,-0.011985472154994,-0.000000000000000,2 -10016,10074,10076,10134,0.157142857142849,0.072639225181094,0.155357142857132,0.066253026633813,0.155357142857132,0.078299031476446,0.153571428571415,0.071912832929165,0.012106537530282,0.000000000000000,0.000665859564280,-0.003571428571434,-0.000786924939578,0.003571428571434,-0.011985472154984,-0.000000000000000,2 -10017,10075,10077,10135,0.157142857142849,0.084745762711380,0.155357142857132,0.078299031476446,0.155357142857132,0.090345036319088,0.153571428571415,0.083898305084154,0.012106537530290,0.000000000000000,0.000786924939578,-0.003571428571434,-0.000907990314875,0.003571428571434,-0.011985472154993,-0.000000000000000,2 -10018,10076,10078,10136,0.157142857142849,0.096852300241670,0.155357142857132,0.090345036319088,0.155357142857132,0.102391041161730,0.153571428571415,0.095883777239147,0.012106537530290,0.000000000000000,0.000907990314875,-0.003571428571434,-0.001029055690172,0.003571428571434,-0.011985472154994,-0.000000000000000,2 -10019,10077,10079,10137,0.157142857142849,0.108958837771957,0.155357142857132,0.102391041161730,0.155357142857132,0.114437046004363,0.153571428571415,0.107869249394136,0.012106537530282,0.000000000000000,0.001029055690172,-0.003571428571434,-0.001150121065470,0.003571428571434,-0.011985472154984,-0.000000000000000,2 -10020,10078,10080,10138,0.157142857142849,0.121065375302244,0.155357142857132,0.114437046004363,0.155357142857132,0.126483050847006,0.153571428571415,0.119854721549125,0.012106537530292,0.000000000000000,0.001150121065470,-0.003571428571434,-0.001271186440768,0.003571428571434,-0.011985472154994,-0.000000000000000,2 -10021,10079,10081,10139,0.157142857142849,0.133171912832531,0.155357142857132,0.126483050847006,0.155357142857132,0.138529055689639,0.153571428571415,0.131840193704114,0.012106537530283,0.000000000000000,0.001271186440768,-0.003571428571434,-0.001392251816066,0.003571428571434,-0.011985472154984,-0.000000000000000,2 -10022,10080,10082,10140,0.157142857142849,0.145278450362817,0.155357142857132,0.138529055689639,0.155357142857132,0.150575060532281,0.153571428571415,0.143825665859103,0.012106537530290,0.000000000000000,0.001392251816066,-0.003571428571434,-0.001513317191363,0.003571428571434,-0.011985472154992,-0.000000000000000,2 -10023,10081,10083,10141,0.157142857142849,0.157384987893098,0.155357142857132,0.150575060532281,0.155357142857132,0.162621065374902,0.153571428571415,0.155811138014085,0.012106537530271,0.000000000000000,0.001513317191363,-0.003571428571434,-0.001634382566663,0.003571428571434,-0.011985472154972,-0.000000000000000,2 -10024,10082,10084,10142,0.157142857142849,0.169491525423374,0.155357142857132,0.162621065374902,0.155357142857132,0.174667070217533,0.153571428571415,0.167796610169062,0.012106537530280,0.000000000000000,0.001634382566663,-0.003571428571434,-0.001755447941961,0.003571428571434,-0.011985472154981,-0.000000000000000,2 -10025,10083,10085,10143,0.157142857142849,0.181598062953664,0.155357142857132,0.174667070217533,0.155357142857132,0.186713075060185,0.153571428571415,0.179782082324054,0.012106537530300,0.000000000000000,0.001755447941961,-0.003571428571434,-0.001876513317258,0.003571428571434,-0.011985472155003,-0.000000000000000,2 -10026,10084,10086,10144,0.157142857142849,0.193704600483949,0.155357142857132,0.186713075060185,0.155357142857132,0.198759079902807,0.153571428571415,0.191767554479042,0.012106537530271,0.000000000000000,0.001876513317258,-0.003571428571434,-0.001997578692557,0.003571428571434,-0.011985472154972,-0.000000000000000,2 -10027,10085,10087,10145,0.157142857142849,0.205811138014239,0.155357142857132,0.198759079902807,0.155357142857132,0.210805084745466,0.153571428571415,0.203753026634034,0.012106537530308,0.000000000000000,0.001997578692557,-0.003571428571434,-0.002118644067853,0.003571428571434,-0.011985472155012,-0.000000000000000,2 -10028,10086,10088,10146,0.157142857142849,0.217917675544529,0.155357142857132,0.210805084745466,0.155357142857132,0.222851089588089,0.153571428571415,0.215738498789026,0.012106537530272,0.000000000000000,0.002118644067853,-0.003571428571434,-0.002239709443152,0.003571428571434,-0.011985472154973,-0.000000000000000,2 -10029,10087,10089,10147,0.157142857142849,0.230024213074813,0.155357142857132,0.222851089588089,0.155357142857132,0.234897094430736,0.153571428571415,0.227723970944012,0.012106537530296,0.000000000000000,0.002239709443152,-0.003571428571434,-0.002360774818450,0.003571428571434,-0.011985472154998,-0.000000000000000,2 -10030,10088,10090,10148,0.157142857142849,0.242130750605103,0.155357142857132,0.234897094430736,0.155357142857132,0.246943099273371,0.153571428571415,0.239709443099004,0.012106537530284,0.000000000000000,0.002360774818450,-0.003571428571434,-0.002481840193748,0.003571428571434,-0.011985472154986,-0.000000000000000,2 -10031,10089,10091,10149,0.157142857142849,0.254237288135387,0.155357142857132,0.246943099273371,0.155357142857132,0.258989104116005,0.153571428571415,0.251694915253990,0.012106537530283,0.000000000000000,0.002481840193748,-0.003571428571434,-0.002602905569046,0.003571428571434,-0.011985472154985,-0.000000000000000,2 -10032,10090,10092,10150,0.157142857142849,0.266343825665678,0.155357142857132,0.258989104116005,0.155357142857132,0.271035108958656,0.153571428571415,0.263680387408983,0.012106537530299,0.000000000000000,0.002602905569046,-0.003571428571434,-0.002723970944344,0.003571428571434,-0.011985472155001,-0.000000000000000,2 -10033,10091,10093,10151,0.157142857142849,0.278450363195965,0.155357142857132,0.271035108958656,0.155357142857132,0.283081113801279,0.153571428571415,0.275665859563970,0.012106537530273,0.000000000000000,0.002723970944344,-0.003571428571434,-0.002845036319645,0.003571428571434,-0.011985472154973,-0.000000000000000,2 -10034,10092,10094,10152,0.157142857142849,0.290556900726257,0.155357142857132,0.283081113801279,0.155357142857132,0.295127118643942,0.153571428571415,0.287651331718964,0.012106537530312,0.000000000000000,0.002845036319645,-0.003571428571434,-0.002966101694942,0.003571428571434,-0.011985472155014,-0.000000000000000,2 -10035,10093,10095,10153,0.157142857142849,0.302663438256549,0.155357142857132,0.295127118643942,0.155357142857132,0.307173123486565,0.153571428571415,0.299636803873957,0.012106537530273,0.000000000000000,0.002966101694942,-0.003571428571434,-0.003087167070242,0.003571428571434,-0.011985472154973,-0.000000000000000,2 -10036,10094,10096,10154,0.157142857142849,0.314769975786835,0.155357142857132,0.307173123486565,0.155357142857132,0.319219128329215,0.153571428571415,0.311622276028945,0.012106537530299,0.000000000000000,0.003087167070242,-0.003571428571434,-0.003208232445539,0.003571428571434,-0.011985472155002,-0.000000000000000,2 -10037,10095,10097,10155,0.157142857142849,0.326876513317125,0.155357142857132,0.319219128329215,0.155357142857132,0.331265133171847,0.153571428571415,0.323607748183937,0.012106537530281,0.000000000000000,0.003208232445539,-0.003571428571434,-0.003329297820838,0.003571428571434,-0.011985472154982,-0.000000000000000,2 -10038,10096,10098,10156,0.157142857142849,0.338983050847409,0.155357142857132,0.331265133171847,0.155357142857132,0.343311138014485,0.153571428571415,0.335593220338923,0.012106537530287,0.000000000000000,0.003329297820838,-0.003571428571434,-0.003450363196135,0.003571428571434,-0.011985472154989,-0.000000000000000,2 -7695,10039,10097,10157,0.155357142857132,0.355357142857132,0.157142857142849,0.351089588377701,0.155357142857132,0.343311138014485,0.153571428571415,0.347578692493916,-0.003571428571434,0.003571428571434,0.012106537530297,-0.000000000000000,0.003450363196135,-0.003571428571434,-0.011985472154998,0.000000000000000,2 -8954,10040,10100,11810,0.151785714285707,-0.351785714285707,0.153571428571415,-0.347578692493943,0.151785714285707,-0.339860774818416,0.150000000000000,-0.344067796610181,-0.003571428571415,-0.003571428571415,0.011985472154944,-0.000000000000000,0.003450363196108,0.003571428571415,-0.011864406779637,-0.000000000000000,2 -10041,10099,10101,11811,0.153571428571415,-0.335593220339001,0.151785714285707,-0.339860774818416,0.151785714285707,-0.327935835351132,0.150000000000000,-0.332203389830547,0.011985472154938,0.000000000000000,-0.003450363196108,-0.003571428571415,0.003329297820800,0.003571428571415,-0.011864406779630,-0.000000000000000,2 -10042,10100,10102,11812,0.153571428571415,-0.323607748184058,0.151785714285707,-0.327935835351132,0.151785714285707,-0.316010895883835,0.150000000000000,-0.320338983050910,0.011985472154949,0.000000000000000,-0.003329297820800,-0.003571428571415,0.003208232445496,0.003571428571415,-0.011864406779645,-0.000000000000000,2 -10043,10101,10103,11813,0.153571428571415,-0.311622276029115,0.151785714285707,-0.316010895883835,0.151785714285707,-0.304085956416554,0.150000000000000,-0.308474576271274,0.011985472154935,0.000000000000000,-0.003208232445496,-0.003571428571415,0.003087167070187,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10044,10102,10104,11814,0.153571428571415,-0.299636803874172,0.151785714285707,-0.304085956416554,0.151785714285707,-0.292161016949256,0.150000000000000,-0.296610169491638,0.011985472154951,0.000000000000000,-0.003087167070187,-0.003571428571415,0.002966101694883,0.003571428571415,-0.011864406779647,-0.000000000000000,2 -10045,10103,10105,11815,0.153571428571415,-0.287651331719229,0.151785714285707,-0.292161016949256,0.151785714285707,-0.280236077481973,0.150000000000000,-0.284745762712000,0.011985472154937,0.000000000000000,-0.002966101694883,-0.003571428571415,0.002845036319575,0.003571428571415,-0.011864406779628,-0.000000000000000,2 -10046,10104,10106,11816,0.153571428571415,-0.275665859564288,0.151785714285707,-0.280236077481973,0.151785714285707,-0.268311138014681,0.150000000000000,-0.272881355932366,0.011985472154945,0.000000000000000,-0.002845036319575,-0.003571428571415,0.002723970944269,0.003571428571415,-0.011864406779640,-0.000000000000000,2 -10047,10105,10107,11817,0.153571428571415,-0.263680387409351,0.151785714285707,-0.268311138014681,0.151785714285707,-0.256386198547406,0.150000000000000,-0.261016949152736,0.011985472154929,-0.000000000000000,-0.002723970944269,-0.003571428571415,0.002602905568961,0.003571428571415,-0.011864406779621,-0.000000000000000,2 -10048,10106,10108,11818,0.153571428571415,-0.251694915254421,0.151785714285707,-0.256386198547406,0.151785714285707,-0.244461259080130,0.150000000000000,-0.249152542373114,0.011985472154931,0.000000000000000,-0.002602905568961,-0.003571428571415,0.002481840193653,0.003571428571415,-0.011864406779622,-0.000000000000000,2 -10049,10107,10109,11819,0.153571428571415,-0.239709443099486,0.151785714285707,-0.244461259080130,0.151785714285707,-0.232536319612842,0.150000000000000,-0.237288135593486,0.011985472154940,0.000000000000000,-0.002481840193653,-0.003571428571415,0.002360774818347,0.003571428571415,-0.011864406779635,-0.000000000000000,2 -10050,10108,10110,11820,0.153571428571415,-0.227723970944546,0.151785714285707,-0.232536319612842,0.151785714285707,-0.220611380145556,0.150000000000000,-0.225423728813853,0.011985472154940,0.000000000000000,-0.002360774818347,-0.003571428571415,0.002239709443039,0.003571428571415,-0.011864406779631,-0.000000000000000,2 -10051,10109,10111,11821,0.153571428571415,-0.215738498789607,0.151785714285707,-0.220611380145556,0.151785714285707,-0.208686440678271,0.150000000000000,-0.213559322034221,0.011985472154938,0.000000000000000,-0.002239709443039,-0.003571428571415,0.002118644067734,0.003571428571415,-0.011864406779633,-0.000000000000000,2 -10052,10110,10112,11822,0.153571428571415,-0.203753026634670,0.151785714285707,-0.208686440678271,0.151785714285707,-0.196761501210990,0.150000000000000,-0.201694915254591,0.011985472154935,0.000000000000000,-0.002118644067734,-0.003571428571415,0.001997578692425,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10053,10111,10113,11823,0.153571428571415,-0.191767554479736,0.151785714285707,-0.196761501210990,0.151785714285707,-0.184836561743710,0.150000000000000,-0.189830508474964,0.011985472154933,0.000000000000000,-0.001997578692425,-0.003571428571415,0.001876513317119,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10054,10112,10114,11824,0.153571428571415,-0.179782082324802,0.151785714285707,-0.184836561743710,0.151785714285707,-0.172911622276430,0.150000000000000,-0.177966101695338,0.011985472154934,0.000000000000000,-0.001876513317119,-0.003571428571415,0.001755447941811,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10055,10113,10115,11825,0.153571428571415,-0.167796610169869,0.151785714285707,-0.172911622276430,0.151785714285707,-0.160986682809150,0.150000000000000,-0.166101694915711,0.011985472154933,0.000000000000000,-0.001755447941811,-0.003571428571415,0.001634382566505,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10056,10114,10116,11826,0.153571428571415,-0.155811138014935,0.151785714285707,-0.160986682809150,0.151785714285707,-0.149061743341870,0.150000000000000,-0.154237288136084,0.011985472154935,0.000000000000000,-0.001634382566505,-0.003571428571415,0.001513317191197,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10057,10115,10117,11827,0.153571428571415,-0.143825665860001,0.151785714285707,-0.149061743341870,0.151785714285707,-0.137136803874589,0.150000000000000,-0.142372881356458,0.011985472154934,0.000000000000000,-0.001513317191197,-0.003571428571415,0.001392251815890,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10058,10116,10118,11828,0.153571428571415,-0.131840193705062,0.151785714285707,-0.137136803874589,0.151785714285707,-0.125211864407299,0.150000000000000,-0.130508474576826,0.011985472154944,0.000000000000000,-0.001392251815890,-0.003571428571415,0.001271186440583,0.003571428571415,-0.011864406779637,-0.000000000000000,2 -10059,10117,10119,11829,0.153571428571415,-0.119854721550123,0.151785714285707,-0.125211864407299,0.151785714285707,-0.113286924940018,0.150000000000000,-0.118644067797194,0.011985472154934,0.000000000000000,-0.001271186440583,-0.003571428571415,0.001150121065276,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10060,10118,10120,11830,0.153571428571415,-0.107869249395189,0.151785714285707,-0.113286924940018,0.151785714285707,-0.101361985472738,0.150000000000000,-0.106779661017567,0.011985472154933,0.000000000000000,-0.001150121065276,-0.003571428571415,0.001029055689969,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10061,10119,10121,11831,0.153571428571415,-0.095883777240256,0.151785714285707,-0.101361985472738,0.151785714285707,-0.089437046005458,0.150000000000000,-0.094915254237940,0.011985472154935,0.000000000000000,-0.001029055689969,-0.003571428571415,0.000907990314661,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10062,10120,10122,11832,0.153571428571415,-0.083898305085322,0.151785714285707,-0.089437046005458,0.151785714285707,-0.077512106538178,0.150000000000000,-0.083050847458314,0.011985472154934,0.000000000000000,-0.000907990314661,-0.003571428571415,0.000786924939354,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10063,10121,10123,11833,0.153571428571415,-0.071912832930388,0.151785714285707,-0.077512106538178,0.151785714285707,-0.065587167070897,0.150000000000000,-0.071186440678687,0.011985472154934,0.000000000000000,-0.000786924939354,-0.003571428571415,0.000665859564047,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10064,10122,10124,11834,0.153571428571415,-0.059927360775454,0.151785714285707,-0.065587167070897,0.151785714285707,-0.053662227603617,0.150000000000000,-0.059322033899060,0.011985472154934,0.000000000000000,-0.000665859564047,-0.003571428571415,0.000544794188740,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10065,10123,10125,11835,0.153571428571415,-0.047941888620520,0.151785714285707,-0.053662227603617,0.151785714285707,-0.041737288136337,0.150000000000000,-0.047457627119434,0.011985472154934,0.000000000000000,-0.000544794188740,-0.003571428571415,0.000423728813433,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10066,10124,10126,11836,0.153571428571415,-0.035956416465586,0.151785714285707,-0.041737288136337,0.151785714285707,-0.029812348669056,0.150000000000000,-0.035593220339807,0.011985472154934,0.000000000000000,-0.000423728813433,-0.003571428571415,0.000302663438125,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10067,10125,10127,11837,0.153571428571415,-0.023970944310652,0.151785714285707,-0.029812348669056,0.151785714285707,-0.017887409201776,0.150000000000000,-0.023728813560181,0.011985472154934,0.000000000000000,-0.000302663438125,-0.003571428571415,0.000181598062818,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10068,10126,10128,11838,0.153571428571415,-0.011985472155718,0.151785714285707,-0.017887409201776,0.151785714285707,-0.005962469734496,0.150000000000000,-0.011864406780554,0.011985472154934,0.000000000000000,-0.000181598062818,-0.003571428571415,0.000060532687510,0.003571428571415,-0.011864406779627,-0.000000000000000,2 -10069,10127,10129,11839,0.153571428571415,-0.000000000000764,0.151785714285707,-0.005962469734496,0.151785714285707,0.005962469732827,0.150000000000000,-0.000000000000904,0.011985472154974,0.000000000000000,-0.000060532687510,-0.003571428571415,-0.000060532687791,0.003571428571415,-0.011864406779673,-0.000000000000000,2 -10070,10128,10130,11840,0.153571428571415,0.011985472154215,0.151785714285707,0.005962469732827,0.151785714285707,0.017887409200163,0.150000000000000,0.011864406778775,0.011985472154984,0.000000000000000,0.000060532687791,-0.003571428571415,-0.000181598063088,0.003571428571415,-0.011864406779686,-0.000000000000000,2 -10071,10129,10131,11841,0.153571428571415,0.023970944309204,0.151785714285707,0.017887409200163,0.151785714285707,0.029812348667508,0.150000000000000,0.023728813558467,0.011985472154994,0.000000000000000,0.000181598063088,-0.003571428571415,-0.000302663438385,0.003571428571415,-0.011864406779697,-0.000000000000000,2 -10072,10130,10132,11842,0.153571428571415,0.035956416464195,0.151785714285707,0.029812348667508,0.151785714285707,0.041737288134848,0.150000000000000,0.035593220338161,0.011985472154988,0.000000000000000,0.000302663438385,-0.003571428571415,-0.000423728813682,0.003571428571415,-0.011864406779691,-0.000000000000000,2 -10073,10131,10133,11843,0.153571428571415,0.047941888619184,0.151785714285707,0.041737288134848,0.151785714285707,0.053662227602189,0.150000000000000,0.047457627117853,0.011985472154990,0.000000000000000,0.000423728813682,-0.003571428571415,-0.000544794188979,0.003571428571415,-0.011864406779693,-0.000000000000000,2 -10074,10132,10134,11844,0.153571428571415,0.059927360774176,0.151785714285707,0.053662227602189,0.151785714285707,0.065587167069535,0.150000000000000,0.059322033897548,0.011985472154994,0.000000000000000,0.000544794188979,-0.003571428571415,-0.000665859564276,0.003571428571415,-0.011864406779697,-0.000000000000000,2 -10075,10133,10135,11845,0.153571428571415,0.071912832929165,0.151785714285707,0.065587167069535,0.151785714285707,0.077512106536870,0.150000000000000,0.071186440677240,0.011985472154984,0.000000000000000,0.000665859564276,-0.003571428571415,-0.000786924939574,0.003571428571415,-0.011864406779686,-0.000000000000000,2 -10076,10134,10136,11846,0.153571428571415,0.083898305084154,0.151785714285707,0.077512106536870,0.151785714285707,0.089437046004215,0.150000000000000,0.083050847456932,0.011985472154993,0.000000000000000,0.000786924939574,-0.003571428571415,-0.000907990314870,0.003571428571415,-0.011864406779697,-0.000000000000000,2 -10077,10135,10137,11847,0.153571428571415,0.095883777239147,0.151785714285707,0.089437046004215,0.151785714285707,0.101361985471561,0.150000000000000,0.094915254236629,0.011985472154994,0.000000000000000,0.000907990314870,-0.003571428571415,-0.001029055690166,0.003571428571415,-0.011864406779697,-0.000000000000000,2 -10078,10136,10138,11848,0.153571428571415,0.107869249394136,0.151785714285707,0.101361985471561,0.151785714285707,0.113286924938896,0.150000000000000,0.106779661016321,0.011985472154984,0.000000000000000,0.001029055690166,-0.003571428571415,-0.001150121065464,0.003571428571415,-0.011864406779686,-0.000000000000000,2 -10079,10137,10139,11849,0.153571428571415,0.119854721549125,0.151785714285707,0.113286924938896,0.151785714285707,0.125211864406242,0.150000000000000,0.118644067796013,0.011985472154994,0.000000000000000,0.001150121065464,-0.003571428571415,-0.001271186440761,0.003571428571415,-0.011864406779697,-0.000000000000000,2 -10080,10138,10140,11850,0.153571428571415,0.131840193704114,0.151785714285707,0.125211864406242,0.151785714285707,0.137136803873577,0.150000000000000,0.130508474575705,0.011985472154984,0.000000000000000,0.001271186440761,-0.003571428571415,-0.001392251816058,0.003571428571415,-0.011864406779687,-0.000000000000000,2 -10081,10139,10141,11851,0.153571428571415,0.143825665859103,0.151785714285707,0.137136803873577,0.151785714285707,0.149061743340921,0.150000000000000,0.142372881355396,0.011985472154992,0.000000000000000,0.001392251816058,-0.003571428571415,-0.001513317191355,0.003571428571415,-0.011864406779695,-0.000000000000000,2 -10082,10140,10142,11852,0.153571428571415,0.155811138014085,0.151785714285707,0.149061743340921,0.151785714285707,0.160986682808244,0.150000000000000,0.154237288135081,0.011985472154972,0.000000000000000,0.001513317191355,-0.003571428571415,-0.001634382566653,0.003571428571415,-0.011864406779674,-0.000000000000000,2 -10083,10141,10143,11853,0.153571428571415,0.167796610169062,0.151785714285707,0.160986682808244,0.151785714285707,0.172911622275577,0.150000000000000,0.166101694914759,0.011985472154981,0.000000000000000,0.001634382566653,-0.003571428571415,-0.001755447941951,0.003571428571415,-0.011864406779684,-0.000000000000000,2 -10084,10142,10144,11854,0.153571428571415,0.179782082324054,0.151785714285707,0.172911622275577,0.151785714285707,0.184836561742932,0.150000000000000,0.177966101694455,0.011985472155003,0.000000000000000,0.001755447941951,-0.003571428571415,-0.001876513317248,0.003571428571415,-0.011864406779707,-0.000000000000000,2 -10085,10143,10145,11855,0.153571428571415,0.191767554479042,0.151785714285707,0.184836561742932,0.151785714285707,0.196761501210255,0.150000000000000,0.189830508474145,0.011985472154972,0.000000000000000,0.001876513317248,-0.003571428571415,-0.001997578692546,0.003571428571415,-0.011864406779674,-0.000000000000000,2 -10086,10144,10146,11856,0.153571428571415,0.203753026634034,0.151785714285707,0.196761501210255,0.151785714285707,0.208686440677619,0.150000000000000,0.201694915253840,0.011985472155012,0.000000000000000,0.001997578692546,-0.003571428571415,-0.002118644067842,0.003571428571415,-0.011864406779716,-0.000000000000000,2 -10087,10145,10147,11857,0.153571428571415,0.215738498789026,0.151785714285707,0.208686440677619,0.151785714285707,0.220611380144943,0.150000000000000,0.213559322033535,0.011985472154973,0.000000000000000,0.002118644067842,-0.003571428571415,-0.002239709443140,0.003571428571415,-0.011864406779674,-0.000000000000000,2 -10088,10146,10148,11858,0.153571428571415,0.227723970944012,0.151785714285707,0.220611380144943,0.151785714285707,0.232536319612293,0.150000000000000,0.225423728813224,0.011985472154998,0.000000000000000,0.002239709443140,-0.003571428571415,-0.002360774818436,0.003571428571415,-0.011864406779702,-0.000000000000000,2 -10089,10147,10149,11859,0.153571428571415,0.239709443099004,0.151785714285707,0.232536319612293,0.151785714285707,0.244461259079630,0.150000000000000,0.237288135592919,0.011985472154986,0.000000000000000,0.002360774818436,-0.003571428571415,-0.002481840193734,0.003571428571415,-0.011864406779689,-0.000000000000000,2 -10090,10148,10150,11860,0.153571428571415,0.251694915253990,0.151785714285707,0.244461259079630,0.151785714285707,0.256386198546967,0.150000000000000,0.249152542372607,0.011985472154985,0.000000000000000,0.002481840193734,-0.003571428571415,-0.002602905569032,0.003571428571415,-0.011864406779688,-0.000000000000000,2 -10091,10149,10151,11861,0.153571428571415,0.263680387408983,0.151785714285707,0.256386198546967,0.151785714285707,0.268311138014319,0.150000000000000,0.261016949152303,0.011985472155001,0.000000000000000,0.002602905569032,-0.003571428571415,-0.002723970944329,0.003571428571415,-0.011864406779703,-0.000000000000000,2 -10092,10150,10152,11862,0.153571428571415,0.275665859563970,0.151785714285707,0.268311138014319,0.151785714285707,0.280236077481642,0.150000000000000,0.272881355931991,0.011985472154973,0.000000000000000,0.002723970944329,-0.003571428571415,-0.002845036319629,0.003571428571415,-0.011864406779674,-0.000000000000000,2 -10093,10151,10153,11863,0.153571428571415,0.287651331718964,0.151785714285707,0.280236077481642,0.151785714285707,0.292161016949008,0.150000000000000,0.284745762711686,0.011985472155014,0.000000000000000,0.002845036319629,-0.003571428571415,-0.002966101694926,0.003571428571415,-0.011864406779717,-0.000000000000000,2 -10094,10152,10154,11864,0.153571428571415,0.299636803873957,0.151785714285707,0.292161016949008,0.151785714285707,0.304085956416331,0.150000000000000,0.296610169491382,0.011985472154973,0.000000000000000,0.002966101694926,-0.003571428571415,-0.003087167070225,0.003571428571415,-0.011864406779674,-0.000000000000000,2 -10095,10153,10155,11865,0.153571428571415,0.311622276028945,0.151785714285707,0.304085956416331,0.151785714285707,0.316010895883685,0.150000000000000,0.308474576271071,0.011985472155002,0.000000000000000,0.003087167070225,-0.003571428571415,-0.003208232445521,0.003571428571415,-0.011864406779706,-0.000000000000000,2 -10096,10154,10156,11866,0.153571428571415,0.323607748183937,0.151785714285707,0.316010895883685,0.151785714285707,0.327935835351019,0.150000000000000,0.320338983050767,0.011985472154982,0.000000000000000,0.003208232445521,-0.003571428571415,-0.003329297820819,0.003571428571415,-0.011864406779685,-0.000000000000000,2 -10097,10155,10157,11867,0.153571428571415,0.335593220338923,0.151785714285707,0.327935835351019,0.151785714285707,0.339860774818359,0.150000000000000,0.332203389830455,0.011985472154989,0.000000000000000,0.003329297820819,-0.003571428571415,-0.003450363196116,0.003571428571415,-0.011864406779692,-0.000000000000000,2 -7694,10098,10156,11868,0.151785714285707,0.351785714285707,0.153571428571415,0.347578692493916,0.151785714285707,0.339860774818359,0.150000000000000,0.344067796610150,-0.003571428571415,0.003571428571415,0.011985472154998,-0.000000000000000,0.003450363196116,-0.003571428571415,-0.011864406779699,0.000000000000000,2 -8113,8926,10159,10217,-0.150000000000000,-0.344067796610150,-0.144827586206906,-0.350000000000000,-0.144827586206906,-0.338135593220302,-0.139655172413811,-0.344067796610152,-0.011864406779699,-0.000000000000000,-0.000000000000000,-0.010344827586188,0.000000000000002,0.010344827586189,0.011864406779697,-0.000000000000001,2 -8127,10158,10160,10218,-0.150000000000000,-0.332203389830455,-0.144827586206906,-0.338135593220302,-0.144827586206905,-0.326271186440611,-0.139655172413811,-0.332203389830458,-0.011864406779692,0.000000000000000,-0.000000000000002,-0.010344827586189,0.000000000000004,0.010344827586190,0.011864406779690,-0.000000000000001,2 -8141,10159,10161,10219,-0.150000000000000,-0.320338983050767,-0.144827586206905,-0.326271186440611,-0.144827586206905,-0.314406779660927,-0.139655172413810,-0.320338983050772,-0.011864406779685,0.000000000000000,-0.000000000000004,-0.010344827586190,0.000000000000006,0.010344827586191,0.011864406779683,-0.000000000000001,2 -8155,10160,10162,10220,-0.150000000000000,-0.308474576271071,-0.144827586206905,-0.314406779660927,-0.144827586206904,-0.302542372881223,-0.139655172413809,-0.308474576271079,-0.011864406779706,0.000000000000000,-0.000000000000006,-0.010344827586191,0.000000000000008,0.010344827586191,0.011864406779703,-0.000000000000001,2 -8169,10161,10163,10221,-0.150000000000000,-0.296610169491382,-0.144827586206904,-0.302542372881223,-0.144827586206904,-0.290677966101549,-0.139655172413808,-0.296610169491390,-0.011864406779674,0.000000000000000,-0.000000000000008,-0.010344827586191,0.000000000000009,0.010344827586192,0.011864406779673,-0.000000000000001,2 -8183,10162,10164,10222,-0.150000000000000,-0.284745762711686,-0.144827586206904,-0.290677966101549,-0.144827586206903,-0.278813559321834,-0.139655172413807,-0.284745762711697,-0.011864406779717,0.000000000000000,-0.000000000000009,-0.010344827586192,0.000000000000012,0.010344827586193,0.011864406779714,-0.000000000000001,2 -8197,10163,10165,10223,-0.150000000000000,-0.272881355931991,-0.144827586206903,-0.278813559321834,-0.144827586206903,-0.266949152542161,-0.139655172413806,-0.272881355932004,-0.011864406779674,0.000000000000000,-0.000000000000012,-0.010344827586193,0.000000000000014,0.010344827586194,0.011864406779672,-0.000000000000001,2 -8211,10164,10166,10224,-0.150000000000000,-0.261016949152303,-0.144827586206903,-0.266949152542161,-0.144827586206903,-0.255084745762459,-0.139655172413806,-0.261016949152318,-0.011864406779703,0.000000000000000,-0.000000000000014,-0.010344827586194,0.000000000000016,0.010344827586195,0.011864406779700,-0.000000000000001,2 -8225,10165,10167,10225,-0.150000000000000,-0.249152542372607,-0.144827586206903,-0.255084745762459,-0.144827586206902,-0.243220338982773,-0.139655172413805,-0.249152542372625,-0.011864406779688,0.000000000000000,-0.000000000000016,-0.010344827586195,0.000000000000019,0.010344827586195,0.011864406779686,-0.000000000000001,2 -8239,10166,10168,10226,-0.150000000000000,-0.237288135592919,-0.144827586206902,-0.243220338982773,-0.144827586206902,-0.231355932203085,-0.139655172413804,-0.237288135592938,-0.011864406779689,0.000000000000000,-0.000000000000019,-0.010344827586195,0.000000000000021,0.010344827586196,0.011864406779687,-0.000000000000001,2 -8253,10167,10169,10227,-0.150000000000000,-0.225423728813224,-0.144827586206902,-0.231355932203085,-0.144827586206901,-0.219491525423384,-0.139655172413803,-0.225423728813245,-0.011864406779702,0.000000000000000,-0.000000000000021,-0.010344827586196,0.000000000000023,0.010344827586197,0.011864406779700,-0.000000000000001,2 -8267,10168,10170,10228,-0.150000000000000,-0.213559322033535,-0.144827586206901,-0.219491525423384,-0.144827586206901,-0.207627118643710,-0.139655172413802,-0.213559322033559,-0.011864406779674,0.000000000000000,-0.000000000000023,-0.010344827586197,0.000000000000024,0.010344827586198,0.011864406779673,-0.000000000000001,2 -8281,10169,10171,10229,-0.150000000000000,-0.201694915253840,-0.144827586206901,-0.207627118643710,-0.144827586206901,-0.195762711863996,-0.139655172413802,-0.201694915253866,-0.011864406779716,0.000000000000000,-0.000000000000024,-0.010344827586198,0.000000000000028,0.010344827586199,0.011864406779713,-0.000000000000001,2 -8295,10170,10172,10230,-0.150000000000000,-0.189830508474145,-0.144827586206901,-0.195762711863996,-0.144827586206900,-0.183898305084323,-0.139655172413801,-0.189830508474173,-0.011864406779674,0.000000000000000,-0.000000000000028,-0.010344827586199,0.000000000000029,0.010344827586200,0.011864406779672,-0.000000000000001,2 -8309,10171,10173,10231,-0.150000000000000,-0.177966101694455,-0.144827586206900,-0.183898305084323,-0.144827586206900,-0.172033898304617,-0.139655172413800,-0.177966101694485,-0.011864406779707,0.000000000000000,-0.000000000000029,-0.010344827586200,0.000000000000032,0.010344827586200,0.011864406779704,-0.000000000000001,2 -8323,10172,10174,10232,-0.150000000000000,-0.166101694914759,-0.144827586206900,-0.172033898304617,-0.144827586206899,-0.160169491524934,-0.139655172413799,-0.166101694914792,-0.011864406779684,0.000000000000000,-0.000000000000032,-0.010344827586200,0.000000000000034,0.010344827586201,0.011864406779682,-0.000000000000001,2 -8337,10173,10175,10233,-0.150000000000000,-0.154237288135081,-0.144827586206899,-0.160169491524934,-0.144827586206899,-0.148305084745262,-0.139655172413798,-0.154237288135115,-0.011864406779674,0.000000000000000,-0.000000000000034,-0.010344827586201,0.000000000000035,0.010344827586202,0.011864406779672,-0.000000000000001,2 -8351,10174,10176,10234,-0.150000000000000,-0.142372881355396,-0.144827586206899,-0.148305084745262,-0.144827586206899,-0.136440677965567,-0.139655172413798,-0.142372881355433,-0.011864406779695,0.000000000000000,-0.000000000000035,-0.010344827586202,0.000000000000038,0.010344827586203,0.011864406779693,-0.000000000000001,2 -8365,10175,10177,10235,-0.150000000000000,-0.130508474575705,-0.144827586206899,-0.136440677965567,-0.144827586206898,-0.124576271185881,-0.139655172413797,-0.130508474575744,-0.011864406779687,0.000000000000000,-0.000000000000038,-0.010344827586203,0.000000000000040,0.010344827586204,0.011864406779685,-0.000000000000001,2 -8379,10176,10178,10236,-0.150000000000000,-0.118644067796013,-0.144827586206898,-0.124576271185881,-0.144827586206898,-0.112711864406185,-0.139655172413796,-0.118644067796054,-0.011864406779697,0.000000000000000,-0.000000000000040,-0.010344827586204,0.000000000000042,0.010344827586205,0.011864406779695,-0.000000000000001,2 -8393,10177,10179,10237,-0.150000000000000,-0.106779661016321,-0.144827586206898,-0.112711864406185,-0.144827586206897,-0.100847457626500,-0.139655172413795,-0.106779661016364,-0.011864406779686,0.000000000000000,-0.000000000000042,-0.010344827586205,0.000000000000044,0.010344827586205,0.011864406779685,-0.000000000000001,2 -8407,10178,10180,10238,-0.150000000000000,-0.094915254236629,-0.144827586206897,-0.100847457626500,-0.144827586206897,-0.088983050846804,-0.139655172413794,-0.094915254236674,-0.011864406779697,0.000000000000000,-0.000000000000044,-0.010344827586205,0.000000000000046,0.010344827586206,0.011864406779695,-0.000000000000001,2 -8421,10179,10181,10239,-0.150000000000000,-0.083050847456932,-0.144827586206897,-0.088983050846804,-0.144827586206897,-0.077118644067108,-0.139655172413794,-0.083050847456979,-0.011864406779697,0.000000000000000,-0.000000000000046,-0.010344827586206,0.000000000000049,0.010344827586207,0.011864406779695,-0.000000000000001,2 -8435,10180,10182,10240,-0.150000000000000,-0.071186440677240,-0.144827586206897,-0.077118644067108,-0.144827586206896,-0.065254237287422,-0.139655172413793,-0.071186440677290,-0.011864406779686,0.000000000000000,-0.000000000000049,-0.010344827586207,0.000000000000051,0.010344827586208,0.011864406779684,-0.000000000000001,2 -8449,10181,10183,10241,-0.150000000000000,-0.059322033897548,-0.144827586206896,-0.065254237287422,-0.144827586206896,-0.053389830507726,-0.139655172413792,-0.059322033897600,-0.011864406779697,0.000000000000000,-0.000000000000051,-0.010344827586208,0.000000000000053,0.010344827586208,0.011864406779695,-0.000000000000001,2 -8463,10182,10184,10242,-0.150000000000000,-0.047457627117853,-0.144827586206896,-0.053389830507726,-0.144827586206895,-0.041525423728034,-0.139655172413791,-0.047457627117908,-0.011864406779693,0.000000000000000,-0.000000000000053,-0.010344827586208,0.000000000000056,0.010344827586209,0.011864406779691,-0.000000000000001,2 -8477,10183,10185,10243,-0.150000000000000,-0.035593220338161,-0.144827586206895,-0.041525423728034,-0.144827586206895,-0.029661016948345,-0.139655172413790,-0.035593220338218,-0.011864406779691,0.000000000000000,-0.000000000000056,-0.010344827586209,0.000000000000058,0.010344827586210,0.011864406779689,-0.000000000000001,2 -8491,10184,10186,10244,-0.150000000000000,-0.023728813558467,-0.144827586206895,-0.029661016948345,-0.144827586206895,-0.017796610168649,-0.139655172413789,-0.023728813558526,-0.011864406779697,0.000000000000000,-0.000000000000058,-0.010344827586210,0.000000000000060,0.010344827586211,0.011864406779695,-0.000000000000001,2 -8505,10185,10187,10245,-0.150000000000000,-0.011864406778775,-0.144827586206895,-0.017796610168649,-0.144827586206894,-0.005932203388963,-0.139655172413789,-0.011864406778837,-0.011864406779686,0.000000000000000,-0.000000000000060,-0.010344827586211,0.000000000000062,0.010344827586212,0.011864406779684,-0.000000000000001,2 -8519,10186,10188,10246,-0.150000000000000,0.000000000000904,-0.144827586206894,-0.005932203388963,-0.144827586206894,0.005932203390709,-0.139655172413788,0.000000000000842,-0.011864406779673,0.000000000000000,-0.000000000000062,-0.010344827586212,0.000000000000062,0.010344827586213,0.011864406779673,-0.000000000000001,2 -8533,10187,10189,10247,-0.150000000000000,0.011864406780554,-0.144827586206894,0.005932203390709,-0.144827586206893,0.017796610170337,-0.139655172413787,0.011864406780493,-0.011864406779627,0.000000000000000,-0.000000000000062,-0.010344827586213,0.000000000000060,0.010344827586213,0.011864406779629,-0.000000000000001,2 -8547,10188,10190,10248,-0.150000000000000,0.023728813560181,-0.144827586206893,0.017796610170337,-0.144827586206893,0.029661016949965,-0.139655172413786,0.023728813560121,-0.011864406779627,0.000000000000000,-0.000000000000060,-0.010344827586213,0.000000000000058,0.010344827586214,0.011864406779629,-0.000000000000001,2 -8561,10189,10191,10249,-0.150000000000000,0.035593220339807,-0.144827586206893,0.029661016949965,-0.144827586206893,0.041525423729593,-0.139655172413785,0.035593220339750,-0.011864406779627,0.000000000000000,-0.000000000000058,-0.010344827586214,0.000000000000056,0.010344827586215,0.011864406779629,-0.000000000000001,2 -8575,10190,10192,10250,-0.150000000000000,0.047457627119434,-0.144827586206893,0.041525423729593,-0.144827586206892,0.053389830509220,-0.139655172413785,0.047457627119379,-0.011864406779627,0.000000000000000,-0.000000000000056,-0.010344827586215,0.000000000000053,0.010344827586216,0.011864406779629,-0.000000000000001,2 -8589,10191,10193,10251,-0.150000000000000,0.059322033899060,-0.144827586206892,0.053389830509220,-0.144827586206892,0.065254237288848,-0.139655172413784,0.059322033899008,-0.011864406779627,0.000000000000000,-0.000000000000053,-0.010344827586216,0.000000000000051,0.010344827586217,0.011864406779629,-0.000000000000001,2 -8603,10192,10194,10252,-0.150000000000000,0.071186440678687,-0.144827586206892,0.065254237288848,-0.144827586206891,0.077118644068476,-0.139655172413783,0.071186440678637,-0.011864406779627,0.000000000000000,-0.000000000000051,-0.010344827586217,0.000000000000049,0.010344827586217,0.011864406779629,-0.000000000000001,2 -8617,10193,10195,10253,-0.150000000000000,0.083050847458314,-0.144827586206891,0.077118644068476,-0.144827586206891,0.088983050848104,-0.139655172413782,0.083050847458266,-0.011864406779627,0.000000000000000,-0.000000000000049,-0.010344827586217,0.000000000000046,0.010344827586218,0.011864406779629,-0.000000000000001,2 -8631,10194,10196,10254,-0.150000000000000,0.094915254237940,-0.144827586206891,0.088983050848104,-0.144827586206891,0.100847457627732,-0.139655172413781,0.094915254237895,-0.011864406779627,0.000000000000000,-0.000000000000046,-0.010344827586218,0.000000000000044,0.010344827586219,0.011864406779629,-0.000000000000001,2 -8645,10195,10197,10255,-0.150000000000000,0.106779661017567,-0.144827586206891,0.100847457627732,-0.144827586206890,0.112711864407359,-0.139655172413781,0.106779661017524,-0.011864406779627,0.000000000000000,-0.000000000000044,-0.010344827586219,0.000000000000042,0.010344827586220,0.011864406779629,-0.000000000000001,2 -8659,10196,10198,10256,-0.150000000000000,0.118644067797194,-0.144827586206890,0.112711864407359,-0.144827586206890,0.124576271186987,-0.139655172413780,0.118644067797153,-0.011864406779627,0.000000000000000,-0.000000000000042,-0.010344827586220,0.000000000000040,0.010344827586221,0.011864406779629,-0.000000000000001,2 -8673,10197,10199,10257,-0.150000000000000,0.130508474576826,-0.144827586206890,0.124576271186987,-0.144827586206889,0.136440677966625,-0.139655172413779,0.130508474576787,-0.011864406779637,0.000000000000000,-0.000000000000040,-0.010344827586221,0.000000000000038,0.010344827586221,0.011864406779639,-0.000000000000001,2 -8687,10198,10200,10258,-0.150000000000000,0.142372881356458,-0.144827586206889,0.136440677966625,-0.144827586206889,0.148305084746253,-0.139655172413778,0.142372881356421,-0.011864406779627,0.000000000000000,-0.000000000000038,-0.010344827586221,0.000000000000035,0.010344827586222,0.011864406779629,-0.000000000000001,2 -8701,10199,10201,10259,-0.150000000000000,0.154237288136084,-0.144827586206889,0.148305084746253,-0.144827586206888,0.160169491525881,-0.139655172413777,0.154237288136050,-0.011864406779627,0.000000000000000,-0.000000000000035,-0.010344827586222,0.000000000000034,0.010344827586223,0.011864406779628,-0.000000000000001,2 -8715,10200,10202,10260,-0.150000000000000,0.166101694915711,-0.144827586206888,0.160169491525881,-0.144827586206888,0.172033898305508,-0.139655172413777,0.166101694915678,-0.011864406779627,0.000000000000000,-0.000000000000034,-0.010344827586223,0.000000000000032,0.010344827586224,0.011864406779629,-0.000000000000001,2 -8729,10201,10203,10261,-0.150000000000000,0.177966101695338,-0.144827586206888,0.172033898305508,-0.144827586206888,0.183898305085136,-0.139655172413776,0.177966101695307,-0.011864406779627,0.000000000000000,-0.000000000000032,-0.010344827586224,0.000000000000029,0.010344827586225,0.011864406779629,-0.000000000000001,2 -8743,10202,10204,10262,-0.150000000000000,0.189830508474964,-0.144827586206888,0.183898305085136,-0.144827586206887,0.195762711864764,-0.139655172413775,0.189830508474936,-0.011864406779627,0.000000000000000,-0.000000000000029,-0.010344827586225,0.000000000000027,0.010344827586226,0.011864406779628,-0.000000000000001,2 -8757,10203,10205,10263,-0.150000000000000,0.201694915254591,-0.144827586206887,0.195762711864764,-0.144827586206887,0.207627118644392,-0.139655172413774,0.201694915254565,-0.011864406779627,0.000000000000000,-0.000000000000027,-0.010344827586226,0.000000000000024,0.010344827586226,0.011864406779630,-0.000000000000001,2 -8771,10204,10206,10264,-0.150000000000000,0.213559322034221,-0.144827586206887,0.207627118644392,-0.144827586206886,0.219491525424026,-0.139655172413773,0.213559322034197,-0.011864406779633,0.000000000000000,-0.000000000000024,-0.010344827586226,0.000000000000023,0.010344827586227,0.011864406779634,-0.000000000000001,2 -8785,10205,10207,10265,-0.150000000000000,0.225423728813853,-0.144827586206886,0.219491525424026,-0.144827586206886,0.231355932203658,-0.139655172413772,0.225423728813831,-0.011864406779631,0.000000000000000,-0.000000000000023,-0.010344827586227,0.000000000000020,0.010344827586228,0.011864406779634,-0.000000000000001,2 -8799,10206,10208,10266,-0.150000000000000,0.237288135593486,-0.144827586206886,0.231355932203658,-0.144827586206886,0.243220338983294,-0.139655172413772,0.237288135593466,-0.011864406779635,0.000000000000000,-0.000000000000020,-0.010344827586228,0.000000000000019,0.010344827586229,0.011864406779636,-0.000000000000001,2 -8813,10207,10209,10267,-0.150000000000000,0.249152542373114,-0.144827586206886,0.243220338983294,-0.144827586206885,0.255084745762917,-0.139655172413771,0.249152542373097,-0.011864406779622,0.000000000000000,-0.000000000000019,-0.010344827586229,0.000000000000016,0.010344827586230,0.011864406779625,-0.000000000000001,2 -8827,10208,10210,10268,-0.150000000000000,0.261016949152736,-0.144827586206885,0.255084745762917,-0.144827586206885,0.266949152542540,-0.139655172413770,0.261016949152721,-0.011864406779621,0.000000000000000,-0.000000000000016,-0.010344827586230,0.000000000000013,0.010344827586230,0.011864406779624,-0.000000000000001,2 -8841,10209,10211,10269,-0.150000000000000,0.272881355932366,-0.144827586206885,0.266949152542540,-0.144827586206884,0.278813559322180,-0.139655172413769,0.272881355932353,-0.011864406779640,0.000000000000000,-0.000000000000013,-0.010344827586230,0.000000000000012,0.010344827586231,0.011864406779641,-0.000000000000001,2 -8855,10210,10212,10270,-0.150000000000000,0.284745762712000,-0.144827586206884,0.278813559322180,-0.144827586206884,0.290677966101810,-0.139655172413768,0.284745762711989,-0.011864406779628,0.000000000000000,-0.000000000000012,-0.010344827586231,0.000000000000009,0.010344827586232,0.011864406779632,-0.000000000000001,2 -8869,10211,10213,10271,-0.150000000000000,0.296610169491638,-0.144827586206884,0.290677966101810,-0.144827586206884,0.302542372881457,-0.139655172413768,0.296610169491629,-0.011864406779647,0.000000000000000,-0.000000000000009,-0.010344827586232,0.000000000000008,0.010344827586233,0.011864406779648,-0.000000000000001,2 -8883,10212,10214,10272,-0.150000000000000,0.308474576271274,-0.144827586206884,0.302542372881457,-0.144827586206883,0.314406779661085,-0.139655172413767,0.308474576271267,-0.011864406779627,0.000000000000000,-0.000000000000008,-0.010344827586233,0.000000000000006,0.010344827586234,0.011864406779629,-0.000000000000001,2 -8897,10213,10215,10273,-0.150000000000000,0.320338983050910,-0.144827586206883,0.314406779661085,-0.144827586206883,0.326271186440730,-0.139655172413766,0.320338983050905,-0.011864406779645,0.000000000000000,-0.000000000000006,-0.010344827586234,0.000000000000004,0.010344827586235,0.011864406779646,-0.000000000000001,2 -8911,10214,10216,10274,-0.150000000000000,0.332203389830547,-0.144827586206883,0.326271186440730,-0.144827586206882,0.338135593220361,-0.139655172413765,0.332203389830544,-0.011864406779630,0.000000000000000,-0.000000000000004,-0.010344827586235,0.000000000000002,0.010344827586235,0.011864406779633,-0.000000000000001,2 -8086,8925,10215,10275,-0.144827586206882,0.350000000000000,-0.150000000000000,0.344067796610181,-0.144827586206882,0.338135593220361,-0.139655172413764,0.344067796610180,0.000000000000000,0.010344827586236,-0.011864406779637,0.000000000000000,-0.000000000000002,-0.010344827586235,0.011864406779640,-0.000000000000001,2 -8927,10158,10218,10276,-0.134482758620723,-0.350000000000000,-0.139655172413811,-0.344067796610152,-0.134482758620722,-0.338135593220304,-0.129310344827634,-0.344067796610152,-0.000000000000000,-0.010344827586177,-0.011864406779697,0.000000000000001,0.000000000000002,0.010344827586178,0.011864406779695,-0.000000000000002,2 -10159,10217,10219,10277,-0.139655172413811,-0.332203389830458,-0.134482758620722,-0.338135593220304,-0.134482758620721,-0.326271186440615,-0.129310344827632,-0.332203389830461,-0.011864406779690,0.000000000000001,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779687,-0.000000000000002,2 -10160,10218,10220,10278,-0.139655172413810,-0.320338983050772,-0.134482758620721,-0.326271186440615,-0.134482758620719,-0.314406779660933,-0.129310344827630,-0.320338983050777,-0.011864406779683,0.000000000000001,-0.000000000000004,-0.010344827586179,0.000000000000005,0.010344827586180,0.011864406779682,-0.000000000000002,2 -10161,10219,10221,10279,-0.139655172413809,-0.308474576271079,-0.134482758620719,-0.314406779660933,-0.134482758620718,-0.302542372881231,-0.129310344827628,-0.308474576271085,-0.011864406779703,0.000000000000001,-0.000000000000005,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779701,-0.000000000000002,2 -10162,10220,10222,10280,-0.139655172413808,-0.296610169491390,-0.134482758620718,-0.302542372881231,-0.134482758620717,-0.290677966101559,-0.129310344827626,-0.296610169491399,-0.011864406779673,0.000000000000001,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779672,-0.000000000000002,2 -10163,10221,10223,10281,-0.139655172413807,-0.284745762711697,-0.134482758620717,-0.290677966101559,-0.134482758620715,-0.278813559321846,-0.129310344827625,-0.284745762711708,-0.011864406779714,0.000000000000001,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779711,-0.000000000000002,2 -10164,10222,10224,10282,-0.139655172413806,-0.272881355932004,-0.134482758620715,-0.278813559321846,-0.134482758620714,-0.266949152542174,-0.129310344827623,-0.272881355932017,-0.011864406779672,0.000000000000001,-0.000000000000012,-0.010344827586183,0.000000000000013,0.010344827586184,0.011864406779671,-0.000000000000002,2 -10165,10223,10225,10283,-0.139655172413806,-0.261016949152318,-0.134482758620714,-0.266949152542174,-0.134482758620713,-0.255084745762476,-0.129310344827621,-0.261016949152333,-0.011864406779700,0.000000000000001,-0.000000000000013,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779697,-0.000000000000002,2 -10166,10224,10226,10284,-0.139655172413805,-0.249152542372625,-0.134482758620713,-0.255084745762476,-0.134482758620711,-0.243220338982791,-0.129310344827619,-0.249152542372642,-0.011864406779686,0.000000000000001,-0.000000000000016,-0.010344827586185,0.000000000000019,0.010344827586186,0.011864406779683,-0.000000000000002,2 -10167,10225,10227,10285,-0.139655172413804,-0.237288135592938,-0.134482758620711,-0.243220338982791,-0.134482758620710,-0.231355932203105,-0.129310344827617,-0.237288135592958,-0.011864406779687,0.000000000000001,-0.000000000000019,-0.010344827586186,0.000000000000020,0.010344827586187,0.011864406779685,-0.000000000000002,2 -10168,10226,10228,10286,-0.139655172413803,-0.225423728813245,-0.134482758620710,-0.231355932203105,-0.134482758620709,-0.219491525423407,-0.129310344827615,-0.225423728813267,-0.011864406779700,0.000000000000001,-0.000000000000020,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779697,-0.000000000000002,2 -10169,10227,10229,10287,-0.139655172413802,-0.213559322033559,-0.134482758620709,-0.219491525423407,-0.134482758620707,-0.207627118643735,-0.129310344827614,-0.213559322033583,-0.011864406779673,0.000000000000001,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779671,-0.000000000000002,2 -10170,10228,10230,10288,-0.139655172413802,-0.201694915253866,-0.134482758620707,-0.207627118643735,-0.134482758620706,-0.195762711864023,-0.129310344827612,-0.201694915253892,-0.011864406779713,0.000000000000001,-0.000000000000024,-0.010344827586189,0.000000000000027,0.010344827586190,0.011864406779710,-0.000000000000002,2 -10171,10229,10231,10289,-0.139655172413801,-0.189830508474173,-0.134482758620706,-0.195762711864023,-0.134482758620705,-0.183898305084352,-0.129310344827610,-0.189830508474202,-0.011864406779672,0.000000000000001,-0.000000000000027,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779670,-0.000000000000002,2 -10172,10230,10232,10290,-0.139655172413800,-0.177966101694485,-0.134482758620705,-0.183898305084352,-0.134482758620703,-0.172033898304649,-0.129310344827608,-0.177966101694516,-0.011864406779704,0.000000000000001,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779701,-0.000000000000002,2 -10173,10231,10233,10291,-0.139655172413799,-0.166101694914792,-0.134482758620703,-0.172033898304649,-0.134482758620702,-0.160169491524968,-0.129310344827606,-0.166101694914825,-0.011864406779682,0.000000000000001,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779680,-0.000000000000002,2 -10174,10232,10234,10292,-0.139655172413798,-0.154237288135115,-0.134482758620702,-0.160169491524968,-0.134482758620701,-0.148305084745297,-0.129310344827605,-0.154237288135150,-0.011864406779672,0.000000000000001,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779670,-0.000000000000002,2 -10175,10233,10235,10293,-0.139655172413798,-0.142372881355433,-0.134482758620701,-0.148305084745297,-0.134482758620700,-0.136440677965605,-0.129310344827603,-0.142372881355469,-0.011864406779693,0.000000000000001,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779691,-0.000000000000002,2 -10176,10234,10236,10294,-0.139655172413797,-0.130508474575744,-0.134482758620700,-0.136440677965605,-0.134482758620698,-0.124576271185921,-0.129310344827601,-0.130508474575782,-0.011864406779685,0.000000000000001,-0.000000000000038,-0.010344827586195,0.000000000000039,0.010344827586196,0.011864406779683,-0.000000000000002,2 -10177,10235,10237,10295,-0.139655172413796,-0.118644067796054,-0.134482758620698,-0.124576271185921,-0.134482758620697,-0.112711864406227,-0.129310344827599,-0.118644067796094,-0.011864406779695,0.000000000000001,-0.000000000000039,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779692,-0.000000000000002,2 -10178,10236,10238,10296,-0.139655172413795,-0.106779661016364,-0.134482758620697,-0.112711864406227,-0.134482758620696,-0.100847457626544,-0.129310344827597,-0.106779661016407,-0.011864406779685,0.000000000000001,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779682,-0.000000000000002,2 -10179,10237,10239,10297,-0.139655172413794,-0.094915254236674,-0.134482758620696,-0.100847457626544,-0.134482758620694,-0.088983050846850,-0.129310344827596,-0.094915254236720,-0.011864406779695,0.000000000000001,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779692,-0.000000000000002,2 -10180,10238,10240,10298,-0.139655172413794,-0.083050847456979,-0.134482758620694,-0.088983050846850,-0.134482758620693,-0.077118644067157,-0.129310344827594,-0.083050847457027,-0.011864406779695,0.000000000000001,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779692,-0.000000000000002,2 -10181,10239,10241,10299,-0.139655172413793,-0.071186440677290,-0.134482758620693,-0.077118644067157,-0.134482758620692,-0.065254237287473,-0.129310344827592,-0.071186440677340,-0.011864406779684,0.000000000000001,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779682,-0.000000000000002,2 -10182,10240,10242,10300,-0.139655172413792,-0.059322033897600,-0.134482758620692,-0.065254237287473,-0.134482758620690,-0.053389830507780,-0.129310344827590,-0.059322033897652,-0.011864406779695,0.000000000000001,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779692,-0.000000000000002,2 -10183,10241,10243,10301,-0.139655172413791,-0.047457627117908,-0.134482758620690,-0.053389830507780,-0.134482758620689,-0.041525423728090,-0.129310344827588,-0.047457627117962,-0.011864406779691,0.000000000000001,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779688,-0.000000000000002,2 -10184,10242,10244,10302,-0.139655172413790,-0.035593220338218,-0.134482758620689,-0.041525423728090,-0.134482758620688,-0.029661016948403,-0.129310344827587,-0.035593220338275,-0.011864406779689,0.000000000000001,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779686,-0.000000000000002,2 -10185,10243,10245,10303,-0.139655172413789,-0.023728813558526,-0.134482758620688,-0.029661016948403,-0.134482758620687,-0.017796610168709,-0.129310344827585,-0.023728813558585,-0.011864406779695,0.000000000000001,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586205,0.011864406779692,-0.000000000000002,2 -10186,10244,10246,10304,-0.139655172413789,-0.011864406778837,-0.134482758620687,-0.017796610168709,-0.134482758620685,-0.005932203389026,-0.129310344827583,-0.011864406778898,-0.011864406779684,0.000000000000001,-0.000000000000060,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779682,-0.000000000000002,2 -10187,10245,10247,10305,-0.139655172413788,0.000000000000842,-0.134482758620685,-0.005932203389026,-0.134482758620684,0.005932203390647,-0.129310344827581,0.000000000000779,-0.011864406779673,0.000000000000001,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000002,2 -10188,10246,10248,10306,-0.139655172413787,0.011864406780493,-0.134482758620684,0.005932203390647,-0.134482758620682,0.017796610170277,-0.129310344827579,0.011864406780431,-0.011864406779629,0.000000000000001,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586208,0.011864406779631,-0.000000000000002,2 -10189,10247,10249,10307,-0.139655172413786,0.023728813560121,-0.134482758620682,0.017796610170277,-0.134482758620681,0.029661016949907,-0.129310344827578,0.023728813560062,-0.011864406779629,0.000000000000001,-0.000000000000060,-0.010344827586208,0.000000000000058,0.010344827586209,0.011864406779632,-0.000000000000002,2 -10190,10248,10250,10308,-0.139655172413785,0.035593220339750,-0.134482758620681,0.029661016949907,-0.134482758620680,0.041525423729537,-0.129310344827576,0.035593220339694,-0.011864406779629,0.000000000000001,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779631,-0.000000000000002,2 -10191,10249,10251,10309,-0.139655172413785,0.047457627119379,-0.134482758620680,0.041525423729537,-0.134482758620679,0.053389830509167,-0.129310344827574,0.047457627119325,-0.011864406779629,0.000000000000001,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586211,0.011864406779631,-0.000000000000002,2 -10192,10250,10252,10310,-0.139655172413784,0.059322033899008,-0.134482758620679,0.053389830509167,-0.134482758620677,0.065254237288797,-0.129310344827572,0.059322033898956,-0.011864406779629,0.000000000000001,-0.000000000000053,-0.010344827586211,0.000000000000051,0.010344827586212,0.011864406779632,-0.000000000000002,2 -10193,10251,10253,10311,-0.139655172413783,0.071186440678637,-0.134482758620677,0.065254237288797,-0.134482758620676,0.077118644068427,-0.129310344827570,0.071186440678587,-0.011864406779629,0.000000000000001,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586213,0.011864406779631,-0.000000000000002,2 -10194,10252,10254,10312,-0.139655172413782,0.083050847458266,-0.134482758620676,0.077118644068427,-0.134482758620675,0.088983050848057,-0.129310344827568,0.083050847458218,-0.011864406779629,0.000000000000001,-0.000000000000049,-0.010344827586213,0.000000000000046,0.010344827586214,0.011864406779631,-0.000000000000002,2 -10195,10253,10255,10313,-0.139655172413781,0.094915254237895,-0.134482758620675,0.088983050848057,-0.134482758620673,0.100847457627688,-0.129310344827567,0.094915254237850,-0.011864406779629,0.000000000000001,-0.000000000000046,-0.010344827586214,0.000000000000044,0.010344827586215,0.011864406779631,-0.000000000000002,2 -10196,10254,10256,10314,-0.139655172413781,0.106779661017524,-0.134482758620673,0.100847457627688,-0.134482758620672,0.112711864407317,-0.129310344827565,0.106779661017481,-0.011864406779629,0.000000000000001,-0.000000000000044,-0.010344827586215,0.000000000000042,0.010344827586216,0.011864406779631,-0.000000000000002,2 -10197,10255,10257,10315,-0.139655172413780,0.118644067797153,-0.134482758620672,0.112711864407317,-0.134482758620671,0.124576271186948,-0.129310344827563,0.118644067797112,-0.011864406779629,0.000000000000001,-0.000000000000042,-0.010344827586216,0.000000000000039,0.010344827586217,0.011864406779631,-0.000000000000002,2 -10198,10256,10258,10316,-0.139655172413779,0.130508474576787,-0.134482758620671,0.124576271186948,-0.134482758620669,0.136440677966588,-0.129310344827561,0.130508474576748,-0.011864406779639,0.000000000000001,-0.000000000000039,-0.010344827586217,0.000000000000038,0.010344827586218,0.011864406779641,-0.000000000000002,2 -10199,10257,10259,10317,-0.139655172413778,0.142372881356421,-0.134482758620669,0.136440677966588,-0.134482758620668,0.148305084746218,-0.129310344827559,0.142372881356384,-0.011864406779629,0.000000000000001,-0.000000000000038,-0.010344827586218,0.000000000000035,0.010344827586219,0.011864406779632,-0.000000000000002,2 -10200,10258,10260,10318,-0.139655172413777,0.154237288136050,-0.134482758620668,0.148305084746218,-0.134482758620667,0.160169491525847,-0.129310344827558,0.154237288136015,-0.011864406779628,0.000000000000001,-0.000000000000035,-0.010344827586219,0.000000000000034,0.010344827586220,0.011864406779630,-0.000000000000002,2 -10201,10259,10261,10319,-0.139655172413777,0.166101694915678,-0.134482758620667,0.160169491525847,-0.134482758620665,0.172033898305477,-0.129310344827556,0.166101694915645,-0.011864406779629,0.000000000000001,-0.000000000000034,-0.010344827586220,0.000000000000032,0.010344827586221,0.011864406779631,-0.000000000000002,2 -10202,10260,10262,10320,-0.139655172413776,0.177966101695307,-0.134482758620665,0.172033898305477,-0.134482758620664,0.183898305085107,-0.129310344827554,0.177966101695277,-0.011864406779629,0.000000000000001,-0.000000000000032,-0.010344827586221,0.000000000000029,0.010344827586222,0.011864406779632,-0.000000000000002,2 -10203,10261,10263,10321,-0.139655172413775,0.189830508474936,-0.134482758620664,0.183898305085107,-0.134482758620663,0.195762711864736,-0.129310344827552,0.189830508474908,-0.011864406779628,0.000000000000001,-0.000000000000029,-0.010344827586222,0.000000000000028,0.010344827586223,0.011864406779630,-0.000000000000002,2 -10204,10262,10264,10322,-0.139655172413774,0.201694915254565,-0.134482758620663,0.195762711864736,-0.134482758620662,0.207627118644368,-0.129310344827550,0.201694915254539,-0.011864406779630,0.000000000000001,-0.000000000000028,-0.010344827586223,0.000000000000024,0.010344827586224,0.011864406779633,-0.000000000000002,2 -10205,10263,10265,10323,-0.139655172413773,0.213559322034197,-0.134482758620662,0.207627118644368,-0.134482758620660,0.219491525424003,-0.129310344827549,0.213559322034173,-0.011864406779634,0.000000000000001,-0.000000000000024,-0.010344827586224,0.000000000000023,0.010344827586225,0.011864406779636,-0.000000000000002,2 -10206,10264,10266,10324,-0.139655172413772,0.225423728813831,-0.134482758620660,0.219491525424003,-0.134482758620659,0.231355932203638,-0.129310344827547,0.225423728813809,-0.011864406779634,0.000000000000001,-0.000000000000023,-0.010344827586225,0.000000000000021,0.010344827586226,0.011864406779636,-0.000000000000002,2 -10207,10265,10267,10325,-0.139655172413772,0.237288135593466,-0.134482758620659,0.231355932203638,-0.134482758620658,0.243220338983275,-0.129310344827545,0.237288135593447,-0.011864406779636,0.000000000000001,-0.000000000000021,-0.010344827586226,0.000000000000019,0.010344827586227,0.011864406779638,-0.000000000000002,2 -10208,10266,10268,10326,-0.139655172413771,0.249152542373097,-0.134482758620658,0.243220338983275,-0.134482758620656,0.255084745762901,-0.129310344827543,0.249152542373079,-0.011864406779625,0.000000000000001,-0.000000000000019,-0.010344827586227,0.000000000000016,0.010344827586228,0.011864406779627,-0.000000000000002,2 -10209,10267,10269,10327,-0.139655172413770,0.261016949152721,-0.134482758620656,0.255084745762901,-0.134482758620655,0.266949152542526,-0.129310344827541,0.261016949152706,-0.011864406779624,0.000000000000001,-0.000000000000016,-0.010344827586228,0.000000000000014,0.010344827586229,0.011864406779626,-0.000000000000002,2 -10210,10268,10270,10328,-0.139655172413769,0.272881355932353,-0.134482758620655,0.266949152542526,-0.134482758620654,0.278813559322167,-0.129310344827540,0.272881355932340,-0.011864406779641,0.000000000000001,-0.000000000000014,-0.010344827586229,0.000000000000012,0.010344827586230,0.011864406779642,-0.000000000000002,2 -10211,10269,10271,10329,-0.139655172413768,0.284745762711989,-0.134482758620654,0.278813559322167,-0.134482758620652,0.290677966101800,-0.129310344827538,0.284745762711978,-0.011864406779632,0.000000000000001,-0.000000000000012,-0.010344827586230,0.000000000000009,0.010344827586231,0.011864406779634,-0.000000000000002,2 -10212,10270,10272,10330,-0.139655172413768,0.296610169491629,-0.134482758620652,0.290677966101800,-0.134482758620651,0.302542372881448,-0.129310344827536,0.296610169491620,-0.011864406779648,0.000000000000001,-0.000000000000009,-0.010344827586231,0.000000000000008,0.010344827586232,0.011864406779649,-0.000000000000002,2 -10213,10271,10273,10331,-0.139655172413767,0.308474576271267,-0.134482758620651,0.302542372881448,-0.134482758620650,0.314406779661079,-0.129310344827534,0.308474576271260,-0.011864406779629,0.000000000000001,-0.000000000000008,-0.010344827586232,0.000000000000006,0.010344827586233,0.011864406779632,-0.000000000000002,2 -10214,10272,10274,10332,-0.139655172413766,0.320338983050905,-0.134482758620650,0.314406779661079,-0.134482758620649,0.326271186440726,-0.129310344827532,0.320338983050900,-0.011864406779646,0.000000000000001,-0.000000000000006,-0.010344827586233,0.000000000000004,0.010344827586234,0.011864406779648,-0.000000000000002,2 -10215,10273,10275,10333,-0.139655172413765,0.332203389830544,-0.134482758620649,0.326271186440726,-0.134482758620647,0.338135593220359,-0.129310344827531,0.332203389830541,-0.011864406779633,0.000000000000001,-0.000000000000004,-0.010344827586234,0.000000000000002,0.010344827586235,0.011864406779634,-0.000000000000002,2 -8072,10216,10274,10334,-0.134482758620646,0.350000000000000,-0.139655172413764,0.344067796610180,-0.134482758620647,0.338135593220359,-0.129310344827529,0.344067796610179,-0.000000000000000,0.010344827586236,-0.011864406779640,0.000000000000001,-0.000000000000002,-0.010344827586235,0.011864406779642,-0.000000000000002,2 -8928,10217,10277,10335,-0.124137931034539,-0.350000000000000,-0.129310344827634,-0.344067796610152,-0.124137931034536,-0.338135593220306,-0.118965517241442,-0.344067796610154,-0.000000000000000,-0.010344827586192,-0.011864406779695,0.000000000000002,0.000000000000002,0.010344827586192,0.011864406779693,-0.000000000000002,2 -10218,10276,10278,10336,-0.129310344827632,-0.332203389830461,-0.124137931034536,-0.338135593220306,-0.124137931034534,-0.326271186440620,-0.118965517241439,-0.332203389830464,-0.011864406779687,0.000000000000002,-0.000000000000002,-0.010344827586192,0.000000000000004,0.010344827586193,0.011864406779685,-0.000000000000003,2 -10219,10277,10279,10337,-0.129310344827630,-0.320338983050777,-0.124137931034534,-0.326271186440620,-0.124137931034532,-0.314406779660939,-0.118965517241437,-0.320338983050782,-0.011864406779682,0.000000000000002,-0.000000000000004,-0.010344827586193,0.000000000000006,0.010344827586194,0.011864406779680,-0.000000000000003,2 -10220,10278,10280,10338,-0.129310344827628,-0.308474576271085,-0.124137931034532,-0.314406779660939,-0.124137931034530,-0.302542372881239,-0.118965517241434,-0.308474576271092,-0.011864406779701,0.000000000000002,-0.000000000000006,-0.010344827586194,0.000000000000008,0.010344827586195,0.011864406779698,-0.000000000000002,2 -10221,10279,10281,10339,-0.129310344827626,-0.296610169491399,-0.124137931034530,-0.302542372881239,-0.124137931034528,-0.290677966101568,-0.118965517241431,-0.296610169491408,-0.011864406779672,0.000000000000002,-0.000000000000008,-0.010344827586195,0.000000000000009,0.010344827586195,0.011864406779671,-0.000000000000003,2 -10222,10280,10282,10340,-0.129310344827625,-0.284745762711708,-0.124137931034528,-0.290677966101568,-0.124137931034526,-0.278813559321859,-0.118965517241429,-0.284745762711719,-0.011864406779711,0.000000000000002,-0.000000000000009,-0.010344827586195,0.000000000000012,0.010344827586196,0.011864406779708,-0.000000000000003,2 -10223,10281,10283,10341,-0.129310344827623,-0.272881355932017,-0.124137931034526,-0.278813559321859,-0.124137931034523,-0.266949152542188,-0.118965517241426,-0.272881355932030,-0.011864406779671,0.000000000000002,-0.000000000000012,-0.010344827586196,0.000000000000013,0.010344827586197,0.011864406779670,-0.000000000000002,2 -10224,10282,10284,10342,-0.129310344827621,-0.261016949152333,-0.124137931034523,-0.266949152542188,-0.124137931034521,-0.255084745762492,-0.118965517241424,-0.261016949152347,-0.011864406779697,0.000000000000002,-0.000000000000013,-0.010344827586197,0.000000000000016,0.010344827586198,0.011864406779695,-0.000000000000003,2 -10225,10283,10285,10343,-0.129310344827619,-0.249152542372642,-0.124137931034521,-0.255084745762492,-0.124137931034519,-0.243220338982810,-0.118965517241421,-0.249152542372660,-0.011864406779683,0.000000000000002,-0.000000000000016,-0.010344827586198,0.000000000000018,0.010344827586198,0.011864406779681,-0.000000000000003,2 -10226,10284,10286,10344,-0.129310344827617,-0.237288135592958,-0.124137931034519,-0.243220338982810,-0.124137931034517,-0.231355932203126,-0.118965517241419,-0.237288135592978,-0.011864406779685,0.000000000000002,-0.000000000000018,-0.010344827586198,0.000000000000020,0.010344827586199,0.011864406779683,-0.000000000000002,2 -10227,10285,10287,10345,-0.129310344827615,-0.225423728813267,-0.124137931034517,-0.231355932203126,-0.124137931034515,-0.219491525423430,-0.118965517241416,-0.225423728813289,-0.011864406779697,0.000000000000002,-0.000000000000020,-0.010344827586199,0.000000000000023,0.010344827586200,0.011864406779695,-0.000000000000003,2 -10228,10286,10288,10346,-0.129310344827614,-0.213559322033583,-0.124137931034515,-0.219491525423430,-0.124137931034513,-0.207627118643759,-0.118965517241413,-0.213559322033606,-0.011864406779671,0.000000000000002,-0.000000000000023,-0.010344827586200,0.000000000000024,0.010344827586201,0.011864406779670,-0.000000000000002,2 -10229,10287,10289,10347,-0.129310344827612,-0.201694915253892,-0.124137931034513,-0.207627118643759,-0.124137931034510,-0.195762711864050,-0.118965517241411,-0.201694915253918,-0.011864406779710,0.000000000000002,-0.000000000000024,-0.010344827586201,0.000000000000027,0.010344827586201,0.011864406779707,-0.000000000000003,2 -10230,10288,10290,10348,-0.129310344827610,-0.189830508474202,-0.124137931034510,-0.195762711864050,-0.124137931034508,-0.183898305084381,-0.118965517241408,-0.189830508474230,-0.011864406779670,0.000000000000002,-0.000000000000027,-0.010344827586201,0.000000000000029,0.010344827586202,0.011864406779669,-0.000000000000002,2 -10231,10289,10291,10349,-0.129310344827608,-0.177966101694516,-0.124137931034508,-0.183898305084381,-0.124137931034506,-0.172033898304681,-0.118965517241406,-0.177966101694546,-0.011864406779701,0.000000000000002,-0.000000000000029,-0.010344827586202,0.000000000000032,0.010344827586203,0.011864406779699,-0.000000000000003,2 -10232,10290,10292,10350,-0.129310344827606,-0.166101694914825,-0.124137931034506,-0.172033898304681,-0.124137931034504,-0.160169491525002,-0.118965517241403,-0.166101694914858,-0.011864406779680,0.000000000000002,-0.000000000000032,-0.010344827586203,0.000000000000034,0.010344827586204,0.011864406779678,-0.000000000000003,2 -10233,10291,10293,10351,-0.129310344827605,-0.154237288135150,-0.124137931034504,-0.160169491525002,-0.124137931034501,-0.148305084745332,-0.118965517241401,-0.154237288135185,-0.011864406779670,0.000000000000002,-0.000000000000034,-0.010344827586204,0.000000000000035,0.010344827586204,0.011864406779669,-0.000000000000003,2 -10234,10292,10294,10352,-0.129310344827603,-0.142372881355469,-0.124137931034501,-0.148305084745332,-0.124137931034499,-0.136440677965643,-0.118965517241398,-0.142372881355506,-0.011864406779691,0.000000000000002,-0.000000000000035,-0.010344827586204,0.000000000000038,0.010344827586205,0.011864406779689,-0.000000000000002,2 -10235,10293,10295,10353,-0.129310344827601,-0.130508474575782,-0.124137931034499,-0.136440677965643,-0.124137931034497,-0.124576271185960,-0.118965517241396,-0.130508474575821,-0.011864406779683,0.000000000000002,-0.000000000000038,-0.010344827586205,0.000000000000039,0.010344827586206,0.011864406779682,-0.000000000000003,2 -10236,10294,10296,10354,-0.129310344827599,-0.118644067796094,-0.124137931034497,-0.124576271185960,-0.124137931034495,-0.112711864406269,-0.118965517241393,-0.118644067796135,-0.011864406779692,0.000000000000002,-0.000000000000039,-0.010344827586206,0.000000000000042,0.010344827586207,0.011864406779690,-0.000000000000003,2 -10237,10295,10297,10355,-0.129310344827597,-0.106779661016407,-0.124137931034495,-0.112711864406269,-0.124137931034493,-0.100847457626588,-0.118965517241390,-0.106779661016450,-0.011864406779682,0.000000000000002,-0.000000000000042,-0.010344827586207,0.000000000000044,0.010344827586207,0.011864406779680,-0.000000000000002,2 -10238,10296,10298,10356,-0.129310344827596,-0.094915254236720,-0.124137931034493,-0.100847457626588,-0.124137931034491,-0.088983050846897,-0.118965517241388,-0.094915254236765,-0.011864406779692,0.000000000000002,-0.000000000000044,-0.010344827586207,0.000000000000046,0.010344827586208,0.011864406779690,-0.000000000000003,2 -10239,10297,10299,10357,-0.129310344827594,-0.083050847457027,-0.124137931034491,-0.088983050846897,-0.124137931034488,-0.077118644067205,-0.118965517241385,-0.083050847457075,-0.011864406779692,0.000000000000002,-0.000000000000046,-0.010344827586208,0.000000000000049,0.010344827586209,0.011864406779690,-0.000000000000002,2 -10240,10298,10300,10358,-0.129310344827592,-0.071186440677340,-0.124137931034488,-0.077118644067205,-0.124137931034486,-0.065254237287524,-0.118965517241383,-0.071186440677390,-0.011864406779682,0.000000000000002,-0.000000000000049,-0.010344827586209,0.000000000000051,0.010344827586210,0.011864406779680,-0.000000000000003,2 -10241,10299,10301,10359,-0.129310344827590,-0.059322033897652,-0.124137931034486,-0.065254237287524,-0.124137931034484,-0.053389830507833,-0.118965517241380,-0.059322033897705,-0.011864406779692,0.000000000000002,-0.000000000000051,-0.010344827586210,0.000000000000053,0.010344827586210,0.011864406779690,-0.000000000000003,2 -10242,10300,10302,10360,-0.129310344827588,-0.047457627117962,-0.124137931034484,-0.053389830507833,-0.124137931034482,-0.041525423728146,-0.118965517241378,-0.047457627118017,-0.011864406779688,0.000000000000002,-0.000000000000053,-0.010344827586210,0.000000000000056,0.010344827586211,0.011864406779686,-0.000000000000002,2 -10243,10301,10303,10361,-0.129310344827587,-0.035593220338275,-0.124137931034482,-0.041525423728146,-0.124137931034480,-0.029661016948461,-0.118965517241375,-0.035593220338332,-0.011864406779686,0.000000000000002,-0.000000000000056,-0.010344827586211,0.000000000000058,0.010344827586212,0.011864406779684,-0.000000000000003,2 -10244,10302,10304,10362,-0.129310344827585,-0.023728813558585,-0.124137931034480,-0.029661016948461,-0.124137931034478,-0.017796610168769,-0.118965517241372,-0.023728813558644,-0.011864406779692,0.000000000000002,-0.000000000000058,-0.010344827586212,0.000000000000060,0.010344827586213,0.011864406779690,-0.000000000000003,2 -10245,10303,10305,10363,-0.129310344827583,-0.011864406778898,-0.124137931034478,-0.017796610168769,-0.124137931034475,-0.005932203389088,-0.118965517241370,-0.011864406778959,-0.011864406779682,0.000000000000002,-0.000000000000060,-0.010344827586213,0.000000000000062,0.010344827586214,0.011864406779680,-0.000000000000002,2 -10246,10304,10306,10364,-0.129310344827581,0.000000000000779,-0.124137931034475,-0.005932203389088,-0.124137931034473,0.005932203390585,-0.118965517241367,0.000000000000717,-0.011864406779673,0.000000000000002,-0.000000000000062,-0.010344827586214,0.000000000000062,0.010344827586214,0.011864406779673,-0.000000000000003,2 -10247,10305,10307,10365,-0.129310344827579,0.011864406780431,-0.124137931034473,0.005932203390585,-0.124137931034471,0.017796610170216,-0.118965517241365,0.011864406780370,-0.011864406779631,0.000000000000002,-0.000000000000062,-0.010344827586214,0.000000000000060,0.010344827586215,0.011864406779633,-0.000000000000002,2 -10248,10306,10308,10366,-0.129310344827578,0.023728813560062,-0.124137931034471,0.017796610170216,-0.124137931034469,0.029661016949849,-0.118965517241362,0.023728813560003,-0.011864406779632,0.000000000000002,-0.000000000000060,-0.010344827586215,0.000000000000058,0.010344827586216,0.011864406779634,-0.000000000000003,2 -10249,10307,10309,10367,-0.129310344827576,0.035593220339694,-0.124137931034469,0.029661016949849,-0.124137931034467,0.041525423729481,-0.118965517241360,0.035593220339637,-0.011864406779631,0.000000000000002,-0.000000000000058,-0.010344827586216,0.000000000000056,0.010344827586217,0.011864406779633,-0.000000000000003,2 -10250,10308,10310,10368,-0.129310344827574,0.047457627119325,-0.124137931034467,0.041525423729481,-0.124137931034464,0.053389830509114,-0.118965517241357,0.047457627119270,-0.011864406779631,0.000000000000002,-0.000000000000056,-0.010344827586217,0.000000000000053,0.010344827586217,0.011864406779633,-0.000000000000003,2 -10251,10309,10311,10369,-0.129310344827572,0.059322033898956,-0.124137931034464,0.053389830509114,-0.124137931034462,0.065254237288746,-0.118965517241354,0.059322033898904,-0.011864406779632,0.000000000000002,-0.000000000000053,-0.010344827586217,0.000000000000051,0.010344827586218,0.011864406779634,-0.000000000000003,2 -10252,10310,10312,10370,-0.129310344827570,0.071186440678587,-0.124137931034462,0.065254237288746,-0.124137931034460,0.077118644068378,-0.118965517241352,0.071186440678537,-0.011864406779631,0.000000000000002,-0.000000000000051,-0.010344827586218,0.000000000000049,0.010344827586219,0.011864406779633,-0.000000000000003,2 -10253,10311,10313,10371,-0.129310344827568,0.083050847458218,-0.124137931034460,0.077118644068378,-0.124137931034458,0.088983050848011,-0.118965517241349,0.083050847458171,-0.011864406779631,0.000000000000002,-0.000000000000049,-0.010344827586219,0.000000000000046,0.010344827586219,0.011864406779634,-0.000000000000002,2 -10254,10312,10314,10372,-0.129310344827567,0.094915254237850,-0.124137931034458,0.088983050848011,-0.124137931034456,0.100847457627644,-0.118965517241347,0.094915254237805,-0.011864406779631,0.000000000000002,-0.000000000000046,-0.010344827586219,0.000000000000044,0.010344827586220,0.011864406779634,-0.000000000000003,2 -10255,10313,10315,10373,-0.129310344827565,0.106779661017481,-0.124137931034456,0.100847457627644,-0.124137931034453,0.112711864407275,-0.118965517241344,0.106779661017438,-0.011864406779631,0.000000000000002,-0.000000000000044,-0.010344827586220,0.000000000000042,0.010344827586221,0.011864406779633,-0.000000000000003,2 -10256,10314,10316,10374,-0.129310344827563,0.118644067797112,-0.124137931034453,0.112711864407275,-0.124137931034451,0.124576271186908,-0.118965517241342,0.118644067797071,-0.011864406779631,0.000000000000002,-0.000000000000042,-0.010344827586221,0.000000000000039,0.010344827586222,0.011864406779634,-0.000000000000002,2 -10257,10315,10317,10375,-0.129310344827561,0.130508474576748,-0.124137931034451,0.124576271186908,-0.124137931034449,0.136440677966550,-0.118965517241339,0.130508474576710,-0.011864406779641,0.000000000000002,-0.000000000000039,-0.010344827586222,0.000000000000038,0.010344827586223,0.011864406779642,-0.000000000000003,2 -10258,10316,10318,10376,-0.129310344827559,0.142372881356384,-0.124137931034449,0.136440677966550,-0.124137931034447,0.148305084746182,-0.118965517241337,0.142372881356348,-0.011864406779632,0.000000000000002,-0.000000000000038,-0.010344827586223,0.000000000000035,0.010344827586223,0.011864406779634,-0.000000000000002,2 -10259,10317,10319,10377,-0.129310344827558,0.154237288136015,-0.124137931034447,0.148305084746182,-0.124137931034445,0.160169491525813,-0.118965517241334,0.154237288135981,-0.011864406779630,0.000000000000002,-0.000000000000035,-0.010344827586223,0.000000000000034,0.010344827586224,0.011864406779631,-0.000000000000003,2 -10260,10318,10320,10378,-0.129310344827556,0.166101694915645,-0.124137931034445,0.160169491525813,-0.124137931034443,0.172033898305445,-0.118965517241331,0.166101694915613,-0.011864406779631,0.000000000000002,-0.000000000000034,-0.010344827586224,0.000000000000032,0.010344827586225,0.011864406779633,-0.000000000000003,2 -10261,10319,10321,10379,-0.129310344827554,0.177966101695277,-0.124137931034443,0.172033898305445,-0.124137931034440,0.183898305085078,-0.118965517241329,0.177966101695246,-0.011864406779632,0.000000000000002,-0.000000000000032,-0.010344827586225,0.000000000000029,0.010344827586226,0.011864406779635,-0.000000000000003,2 -10262,10320,10322,10380,-0.129310344827552,0.189830508474908,-0.124137931034440,0.183898305085078,-0.124137931034438,0.195762711864709,-0.118965517241326,0.189830508474879,-0.011864406779630,0.000000000000002,-0.000000000000029,-0.010344827586226,0.000000000000027,0.010344827586226,0.011864406779632,-0.000000000000003,2 -10263,10321,10323,10381,-0.129310344827550,0.201694915254539,-0.124137931034438,0.195762711864709,-0.124137931034436,0.207627118644343,-0.118965517241324,0.201694915254513,-0.011864406779633,0.000000000000002,-0.000000000000027,-0.010344827586226,0.000000000000024,0.010344827586227,0.011864406779636,-0.000000000000003,2 -10264,10322,10324,10382,-0.129310344827549,0.213559322034173,-0.124137931034436,0.207627118644343,-0.124137931034434,0.219491525423980,-0.118965517241321,0.213559322034150,-0.011864406779636,0.000000000000002,-0.000000000000024,-0.010344827586227,0.000000000000023,0.010344827586228,0.011864406779637,-0.000000000000002,2 -10265,10323,10325,10383,-0.129310344827547,0.225423728813809,-0.124137931034434,0.219491525423980,-0.124137931034432,0.231355932203617,-0.118965517241319,0.225423728813788,-0.011864406779636,0.000000000000002,-0.000000000000023,-0.010344827586228,0.000000000000021,0.010344827586229,0.011864406779639,-0.000000000000003,2 -10266,10324,10326,10384,-0.129310344827545,0.237288135593447,-0.124137931034432,0.231355932203617,-0.124137931034429,0.243220338983257,-0.118965517241316,0.237288135593427,-0.011864406779638,0.000000000000002,-0.000000000000021,-0.010344827586229,0.000000000000019,0.010344827586229,0.011864406779640,-0.000000000000003,2 -10267,10325,10327,10385,-0.129310344827543,0.249152542373079,-0.124137931034429,0.243220338983257,-0.124137931034427,0.255084745762885,-0.118965517241313,0.249152542373062,-0.011864406779627,0.000000000000002,-0.000000000000019,-0.010344827586229,0.000000000000017,0.010344827586230,0.011864406779629,-0.000000000000002,2 -10268,10326,10328,10386,-0.129310344827541,0.261016949152706,-0.124137931034427,0.255084745762885,-0.124137931034425,0.266949152542513,-0.118965517241311,0.261016949152691,-0.011864406779626,0.000000000000002,-0.000000000000017,-0.010344827586230,0.000000000000014,0.010344827586231,0.011864406779629,-0.000000000000003,2 -10269,10327,10329,10387,-0.129310344827540,0.272881355932340,-0.124137931034425,0.266949152542513,-0.124137931034423,0.278813559322155,-0.118965517241308,0.272881355932327,-0.011864406779642,0.000000000000002,-0.000000000000014,-0.010344827586231,0.000000000000012,0.010344827586232,0.011864406779643,-0.000000000000002,2 -10270,10328,10330,10388,-0.129310344827538,0.284745762711978,-0.124137931034423,0.278813559322155,-0.124137931034421,0.290677966101791,-0.118965517241306,0.284745762711968,-0.011864406779634,0.000000000000002,-0.000000000000012,-0.010344827586232,0.000000000000009,0.010344827586232,0.011864406779638,-0.000000000000003,2 -10271,10329,10331,10389,-0.129310344827536,0.296610169491620,-0.124137931034421,0.290677966101791,-0.124137931034419,0.302542372881440,-0.118965517241303,0.296610169491611,-0.011864406779649,0.000000000000002,-0.000000000000009,-0.010344827586232,0.000000000000008,0.010344827586233,0.011864406779650,-0.000000000000003,2 -10272,10330,10332,10390,-0.129310344827534,0.308474576271260,-0.124137931034419,0.302542372881440,-0.124137931034416,0.314406779661073,-0.118965517241301,0.308474576271253,-0.011864406779632,0.000000000000002,-0.000000000000008,-0.010344827586233,0.000000000000006,0.010344827586234,0.011864406779635,-0.000000000000002,2 -10273,10331,10333,10391,-0.129310344827532,0.320338983050900,-0.124137931034416,0.314406779661073,-0.124137931034414,0.326271186440722,-0.118965517241298,0.320338983050895,-0.011864406779648,0.000000000000002,-0.000000000000006,-0.010344827586234,0.000000000000004,0.010344827586235,0.011864406779649,-0.000000000000003,2 -10274,10332,10334,10392,-0.129310344827531,0.332203389830541,-0.124137931034414,0.326271186440722,-0.124137931034412,0.338135593220357,-0.118965517241296,0.332203389830538,-0.011864406779634,0.000000000000002,-0.000000000000004,-0.010344827586235,0.000000000000002,0.010344827586235,0.011864406779637,-0.000000000000003,2 -8058,10275,10333,10393,-0.124137931034410,0.350000000000000,-0.129310344827529,0.344067796610179,-0.124137931034412,0.338135593220357,-0.118965517241293,0.344067796610178,-0.000000000000000,0.010344827586236,-0.011864406779642,0.000000000000002,-0.000000000000002,-0.010344827586235,0.011864406779644,-0.000000000000002,2 -8929,10276,10336,10394,-0.113793103448353,-0.350000000000000,-0.118965517241442,-0.344067796610154,-0.113793103448350,-0.338135593220308,-0.108620689655262,-0.344067796610155,-0.000000000000000,-0.010344827586179,-0.011864406779693,0.000000000000002,0.000000000000002,0.010344827586180,0.011864406779691,-0.000000000000003,2 -10277,10335,10337,10395,-0.118965517241439,-0.332203389830464,-0.113793103448350,-0.338135593220308,-0.113793103448347,-0.326271186440624,-0.108620689655258,-0.332203389830468,-0.011864406779685,0.000000000000003,-0.000000000000002,-0.010344827586180,0.000000000000004,0.010344827586181,0.011864406779683,-0.000000000000003,2 -10278,10336,10338,10396,-0.118965517241437,-0.320338983050782,-0.113793103448347,-0.326271186440624,-0.113793103448344,-0.314406779660944,-0.108620689655255,-0.320338983050786,-0.011864406779680,0.000000000000003,-0.000000000000004,-0.010344827586181,0.000000000000006,0.010344827586182,0.011864406779679,-0.000000000000004,2 -10279,10337,10339,10397,-0.118965517241434,-0.308474576271092,-0.113793103448344,-0.314406779660944,-0.113793103448341,-0.302542372881248,-0.108620689655251,-0.308474576271099,-0.011864406779698,0.000000000000002,-0.000000000000006,-0.010344827586182,0.000000000000008,0.010344827586183,0.011864406779695,-0.000000000000003,2 -10280,10338,10340,10398,-0.118965517241431,-0.296610169491408,-0.113793103448341,-0.302542372881248,-0.113793103448338,-0.290677966101577,-0.108620689655248,-0.296610169491417,-0.011864406779671,0.000000000000003,-0.000000000000008,-0.010344827586183,0.000000000000009,0.010344827586184,0.011864406779670,-0.000000000000003,2 -10281,10339,10341,10399,-0.118965517241429,-0.284745762711719,-0.113793103448338,-0.290677966101577,-0.113793103448335,-0.278813559321871,-0.108620689655244,-0.284745762711729,-0.011864406779708,0.000000000000003,-0.000000000000009,-0.010344827586184,0.000000000000012,0.010344827586185,0.011864406779705,-0.000000000000003,2 -10282,10340,10342,10400,-0.118965517241426,-0.272881355932030,-0.113793103448335,-0.278813559321871,-0.113793103448332,-0.266949152542202,-0.108620689655241,-0.272881355932043,-0.011864406779670,0.000000000000002,-0.000000000000012,-0.010344827586185,0.000000000000014,0.010344827586186,0.011864406779669,-0.000000000000003,2 -10283,10341,10343,10401,-0.118965517241424,-0.261016949152347,-0.113793103448332,-0.266949152542202,-0.113793103448329,-0.255084745762508,-0.108620689655238,-0.261016949152362,-0.011864406779695,0.000000000000003,-0.000000000000014,-0.010344827586186,0.000000000000016,0.010344827586187,0.011864406779692,-0.000000000000003,2 -10284,10342,10344,10402,-0.118965517241421,-0.249152542372660,-0.113793103448329,-0.255084745762508,-0.113793103448326,-0.243220338982828,-0.108620689655234,-0.249152542372677,-0.011864406779681,0.000000000000003,-0.000000000000016,-0.010344827586187,0.000000000000019,0.010344827586187,0.011864406779679,-0.000000000000003,2 -10285,10343,10345,10403,-0.118965517241419,-0.237288135592978,-0.113793103448326,-0.243220338982828,-0.113793103448323,-0.231355932203146,-0.108620689655231,-0.237288135592997,-0.011864406779683,0.000000000000002,-0.000000000000019,-0.010344827586187,0.000000000000021,0.010344827586188,0.011864406779681,-0.000000000000003,2 -10286,10344,10346,10404,-0.118965517241416,-0.225423728813289,-0.113793103448323,-0.231355932203146,-0.113793103448320,-0.219491525423453,-0.108620689655227,-0.225423728813310,-0.011864406779695,0.000000000000003,-0.000000000000021,-0.010344827586188,0.000000000000023,0.010344827586189,0.011864406779692,-0.000000000000004,2 -10287,10345,10347,10405,-0.118965517241413,-0.213559322033606,-0.113793103448320,-0.219491525423453,-0.113793103448317,-0.207627118643783,-0.108620689655224,-0.213559322033630,-0.011864406779670,0.000000000000002,-0.000000000000023,-0.010344827586189,0.000000000000024,0.010344827586190,0.011864406779669,-0.000000000000003,2 -10288,10346,10348,10406,-0.118965517241411,-0.201694915253918,-0.113793103448317,-0.207627118643783,-0.113793103448314,-0.195762711864078,-0.108620689655220,-0.201694915253944,-0.011864406779707,0.000000000000003,-0.000000000000024,-0.010344827586190,0.000000000000028,0.010344827586191,0.011864406779704,-0.000000000000003,2 -10289,10347,10349,10407,-0.118965517241408,-0.189830508474230,-0.113793103448314,-0.195762711864078,-0.113793103448311,-0.183898305084410,-0.108620689655217,-0.189830508474258,-0.011864406779669,0.000000000000002,-0.000000000000028,-0.010344827586191,0.000000000000029,0.010344827586192,0.011864406779667,-0.000000000000003,2 -10290,10348,10350,10408,-0.118965517241406,-0.177966101694546,-0.113793103448311,-0.183898305084410,-0.113793103448308,-0.172033898304713,-0.108620689655213,-0.177966101694576,-0.011864406779699,0.000000000000003,-0.000000000000029,-0.010344827586192,0.000000000000032,0.010344827586193,0.011864406779696,-0.000000000000003,2 -10291,10349,10351,10409,-0.118965517241403,-0.166101694914858,-0.113793103448308,-0.172033898304713,-0.113793103448305,-0.160169491525036,-0.108620689655210,-0.166101694914891,-0.011864406779678,0.000000000000003,-0.000000000000032,-0.010344827586193,0.000000000000034,0.010344827586194,0.011864406779676,-0.000000000000003,2 -10292,10350,10352,10410,-0.118965517241401,-0.154237288135185,-0.113793103448305,-0.160169491525036,-0.113793103448302,-0.148305084745368,-0.108620689655206,-0.154237288135219,-0.011864406779669,0.000000000000003,-0.000000000000034,-0.010344827586194,0.000000000000035,0.010344827586195,0.011864406779667,-0.000000000000003,2 -10293,10351,10353,10411,-0.118965517241398,-0.142372881355506,-0.113793103448302,-0.148305084745368,-0.113793103448299,-0.136440677965681,-0.108620689655203,-0.142372881355542,-0.011864406779689,0.000000000000002,-0.000000000000035,-0.010344827586195,0.000000000000038,0.010344827586195,0.011864406779686,-0.000000000000003,2 -10294,10352,10354,10412,-0.118965517241396,-0.130508474575821,-0.113793103448299,-0.136440677965681,-0.113793103448296,-0.124576271186000,-0.108620689655200,-0.130508474575860,-0.011864406779682,0.000000000000003,-0.000000000000038,-0.010344827586195,0.000000000000039,0.010344827586196,0.011864406779680,-0.000000000000003,2 -10295,10353,10355,10413,-0.118965517241393,-0.118644067796135,-0.113793103448296,-0.124576271186000,-0.113793103448293,-0.112711864406311,-0.108620689655196,-0.118644067796176,-0.011864406779690,0.000000000000003,-0.000000000000039,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779688,-0.000000000000004,2 -10296,10354,10356,10414,-0.118965517241390,-0.106779661016450,-0.113793103448293,-0.112711864406311,-0.113793103448290,-0.100847457626632,-0.108620689655193,-0.106779661016493,-0.011864406779680,0.000000000000002,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779678,-0.000000000000003,2 -10297,10355,10357,10415,-0.118965517241388,-0.094915254236765,-0.113793103448290,-0.100847457626632,-0.113793103448287,-0.088983050846943,-0.108620689655189,-0.094915254236810,-0.011864406779690,0.000000000000003,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779688,-0.000000000000003,2 -10298,10356,10358,10416,-0.118965517241385,-0.083050847457075,-0.113793103448287,-0.088983050846943,-0.113793103448284,-0.077118644067254,-0.108620689655186,-0.083050847457122,-0.011864406779690,0.000000000000002,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779688,-0.000000000000003,2 -10299,10357,10359,10417,-0.118965517241383,-0.071186440677390,-0.113793103448284,-0.077118644067254,-0.113793103448281,-0.065254237287575,-0.108620689655182,-0.071186440677440,-0.011864406779680,0.000000000000003,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779678,-0.000000000000003,2 -10300,10358,10360,10418,-0.118965517241380,-0.059322033897705,-0.113793103448281,-0.065254237287575,-0.113793103448278,-0.053389830507886,-0.108620689655179,-0.059322033897757,-0.011864406779690,0.000000000000003,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779688,-0.000000000000003,2 -10301,10359,10361,10419,-0.118965517241378,-0.047457627118017,-0.113793103448278,-0.053389830507886,-0.113793103448275,-0.041525423728201,-0.108620689655175,-0.047457627118071,-0.011864406779686,0.000000000000002,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779684,-0.000000000000003,2 -10302,10360,10362,10420,-0.118965517241375,-0.035593220338332,-0.113793103448275,-0.041525423728201,-0.113793103448272,-0.029661016948518,-0.108620689655172,-0.035593220338388,-0.011864406779684,0.000000000000003,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779682,-0.000000000000003,2 -10303,10361,10363,10421,-0.118965517241372,-0.023728813558644,-0.113793103448272,-0.029661016948518,-0.113793103448269,-0.017796610168830,-0.108620689655168,-0.023728813558704,-0.011864406779690,0.000000000000003,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586205,0.011864406779688,-0.000000000000004,2 -10304,10362,10364,10422,-0.118965517241370,-0.011864406778959,-0.113793103448269,-0.017796610168830,-0.113793103448266,-0.005932203389150,-0.108620689655165,-0.011864406779021,-0.011864406779680,0.000000000000002,-0.000000000000060,-0.010344827586205,0.000000000000062,0.010344827586205,0.011864406779678,-0.000000000000003,2 -10305,10363,10365,10423,-0.118965517241367,0.000000000000717,-0.113793103448266,-0.005932203389150,-0.113793103448263,0.005932203390522,-0.108620689655161,0.000000000000655,-0.011864406779673,0.000000000000003,-0.000000000000062,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000003,2 -10306,10364,10366,10424,-0.118965517241365,0.011864406780370,-0.113793103448263,0.005932203390522,-0.113793103448260,0.017796610170156,-0.108620689655158,0.011864406780309,-0.011864406779633,0.000000000000002,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586207,0.011864406779635,-0.000000000000003,2 -10307,10365,10367,10425,-0.118965517241362,0.023728813560003,-0.113793103448260,0.017796610170156,-0.113793103448257,0.029661016949791,-0.108620689655155,0.023728813559944,-0.011864406779634,0.000000000000003,-0.000000000000060,-0.010344827586207,0.000000000000058,0.010344827586208,0.011864406779636,-0.000000000000003,2 -10308,10366,10368,10426,-0.118965517241360,0.035593220339637,-0.113793103448257,0.029661016949791,-0.113793103448254,0.041525423729426,-0.108620689655151,0.035593220339580,-0.011864406779633,0.000000000000003,-0.000000000000058,-0.010344827586208,0.000000000000056,0.010344827586209,0.011864406779635,-0.000000000000003,2 -10309,10367,10369,10427,-0.118965517241357,0.047457627119270,-0.113793103448254,0.041525423729426,-0.113793103448251,0.053389830509060,-0.108620689655148,0.047457627119216,-0.011864406779633,0.000000000000003,-0.000000000000056,-0.010344827586209,0.000000000000053,0.010344827586210,0.011864406779636,-0.000000000000003,2 -10310,10368,10370,10428,-0.118965517241354,0.059322033898904,-0.113793103448251,0.053389830509060,-0.113793103448248,0.065254237288696,-0.108620689655144,0.059322033898852,-0.011864406779634,0.000000000000003,-0.000000000000053,-0.010344827586210,0.000000000000051,0.010344827586211,0.011864406779636,-0.000000000000003,2 -10311,10369,10371,10429,-0.118965517241352,0.071186440678537,-0.113793103448248,0.065254237288696,-0.113793103448245,0.077118644068329,-0.108620689655141,0.071186440678487,-0.011864406779633,0.000000000000003,-0.000000000000051,-0.010344827586211,0.000000000000049,0.010344827586212,0.011864406779635,-0.000000000000003,2 -10312,10370,10372,10430,-0.118965517241349,0.083050847458171,-0.113793103448245,0.077118644068329,-0.113793103448242,0.088983050847965,-0.108620689655137,0.083050847458123,-0.011864406779634,0.000000000000002,-0.000000000000049,-0.010344827586212,0.000000000000046,0.010344827586213,0.011864406779636,-0.000000000000004,2 -10313,10371,10373,10431,-0.118965517241347,0.094915254237805,-0.113793103448242,0.088983050847965,-0.113793103448239,0.100847457627600,-0.108620689655134,0.094915254237759,-0.011864406779634,0.000000000000003,-0.000000000000046,-0.010344827586213,0.000000000000044,0.010344827586214,0.011864406779636,-0.000000000000003,2 -10314,10372,10374,10432,-0.118965517241344,0.106779661017438,-0.113793103448239,0.100847457627600,-0.113793103448236,0.112711864407234,-0.108620689655130,0.106779661017395,-0.011864406779633,0.000000000000003,-0.000000000000044,-0.010344827586214,0.000000000000042,0.010344827586214,0.011864406779635,-0.000000000000003,2 -10315,10373,10375,10433,-0.118965517241342,0.118644067797071,-0.113793103448236,0.112711864407234,-0.113793103448233,0.124576271186869,-0.108620689655127,0.118644067797031,-0.011864406779634,0.000000000000002,-0.000000000000042,-0.010344827586214,0.000000000000039,0.010344827586215,0.011864406779636,-0.000000000000003,2 -10316,10374,10376,10434,-0.118965517241339,0.130508474576710,-0.113793103448233,0.124576271186869,-0.113793103448230,0.136440677966512,-0.108620689655123,0.130508474576671,-0.011864406779642,0.000000000000003,-0.000000000000039,-0.010344827586215,0.000000000000038,0.010344827586216,0.011864406779644,-0.000000000000003,2 -10317,10375,10377,10435,-0.118965517241337,0.142372881356348,-0.113793103448230,0.136440677966512,-0.113793103448227,0.148305084746147,-0.108620689655120,0.142372881356311,-0.011864406779634,0.000000000000002,-0.000000000000038,-0.010344827586216,0.000000000000035,0.010344827586217,0.011864406779636,-0.000000000000003,2 -10318,10376,10378,10436,-0.118965517241334,0.154237288135981,-0.113793103448227,0.148305084746147,-0.113793103448224,0.160169491525779,-0.108620689655116,0.154237288135946,-0.011864406779631,0.000000000000003,-0.000000000000035,-0.010344827586217,0.000000000000034,0.010344827586218,0.011864406779633,-0.000000000000003,2 -10319,10377,10379,10437,-0.118965517241331,0.166101694915613,-0.113793103448224,0.160169491525779,-0.113793103448221,0.172033898305413,-0.108620689655113,0.166101694915580,-0.011864406779633,0.000000000000003,-0.000000000000034,-0.010344827586218,0.000000000000032,0.010344827586219,0.011864406779635,-0.000000000000003,2 -10320,10378,10380,10438,-0.118965517241329,0.177966101695246,-0.113793103448221,0.172033898305413,-0.113793103448218,0.183898305085049,-0.108620689655110,0.177966101695216,-0.011864406779635,0.000000000000003,-0.000000000000032,-0.010344827586219,0.000000000000029,0.010344827586220,0.011864406779638,-0.000000000000004,2 -10321,10379,10381,10439,-0.118965517241326,0.189830508474879,-0.113793103448218,0.183898305085049,-0.113793103448215,0.195762711864682,-0.108620689655106,0.189830508474851,-0.011864406779632,0.000000000000003,-0.000000000000029,-0.010344827586220,0.000000000000028,0.010344827586221,0.011864406779633,-0.000000000000003,2 -10322,10380,10382,10440,-0.118965517241324,0.201694915254513,-0.113793103448215,0.195762711864682,-0.113793103448212,0.207627118644319,-0.108620689655103,0.201694915254487,-0.011864406779636,0.000000000000003,-0.000000000000028,-0.010344827586221,0.000000000000024,0.010344827586222,0.011864406779639,-0.000000000000003,2 -10323,10381,10383,10441,-0.118965517241321,0.213559322034150,-0.113793103448212,0.207627118644319,-0.113793103448209,0.219491525423957,-0.108620689655099,0.213559322034126,-0.011864406779637,0.000000000000002,-0.000000000000024,-0.010344827586222,0.000000000000023,0.010344827586223,0.011864406779638,-0.000000000000003,2 -10324,10382,10384,10442,-0.118965517241319,0.225423728813788,-0.113793103448209,0.219491525423957,-0.113793103448206,0.231355932203597,-0.108620689655096,0.225423728813766,-0.011864406779639,0.000000000000003,-0.000000000000023,-0.010344827586223,0.000000000000020,0.010344827586223,0.011864406779641,-0.000000000000003,2 -10325,10383,10385,10443,-0.118965517241316,0.237288135593427,-0.113793103448206,0.231355932203597,-0.113793103448203,0.243220338983238,-0.108620689655092,0.237288135593408,-0.011864406779640,0.000000000000003,-0.000000000000020,-0.010344827586223,0.000000000000018,0.010344827586224,0.011864406779642,-0.000000000000003,2 -10326,10384,10386,10444,-0.118965517241313,0.249152542373062,-0.113793103448203,0.243220338983238,-0.113793103448200,0.255084745762868,-0.108620689655089,0.249152542373044,-0.011864406779629,0.000000000000002,-0.000000000000018,-0.010344827586224,0.000000000000016,0.010344827586225,0.011864406779632,-0.000000000000003,2 -10327,10385,10387,10445,-0.118965517241311,0.261016949152691,-0.113793103448200,0.255084745762868,-0.113793103448197,0.266949152542499,-0.108620689655085,0.261016949152676,-0.011864406779629,0.000000000000003,-0.000000000000016,-0.010344827586225,0.000000000000013,0.010344827586226,0.011864406779632,-0.000000000000003,2 -10328,10386,10388,10446,-0.118965517241308,0.272881355932327,-0.113793103448197,0.266949152542499,-0.113793103448194,0.278813559322143,-0.108620689655082,0.272881355932314,-0.011864406779643,0.000000000000002,-0.000000000000013,-0.010344827586226,0.000000000000012,0.010344827586227,0.011864406779644,-0.000000000000004,2 -10329,10387,10389,10447,-0.118965517241306,0.284745762711968,-0.113793103448194,0.278813559322143,-0.113793103448191,0.290677966101782,-0.108620689655078,0.284745762711957,-0.011864406779638,0.000000000000003,-0.000000000000012,-0.010344827586227,0.000000000000009,0.010344827586228,0.011864406779641,-0.000000000000003,2 -10330,10388,10390,10448,-0.118965517241303,0.296610169491611,-0.113793103448191,0.290677966101782,-0.113793103448188,0.302542372881432,-0.108620689655075,0.296610169491602,-0.011864406779650,0.000000000000003,-0.000000000000009,-0.010344827586228,0.000000000000008,0.010344827586229,0.011864406779650,-0.000000000000003,2 -10331,10389,10391,10449,-0.118965517241301,0.308474576271253,-0.113793103448188,0.302542372881432,-0.113793103448185,0.314406779661068,-0.108620689655071,0.308474576271246,-0.011864406779635,0.000000000000002,-0.000000000000008,-0.010344827586229,0.000000000000006,0.010344827586230,0.011864406779638,-0.000000000000003,2 -10332,10390,10392,10450,-0.118965517241298,0.320338983050895,-0.113793103448185,0.314406779661068,-0.113793103448182,0.326271186440717,-0.108620689655068,0.320338983050890,-0.011864406779649,0.000000000000003,-0.000000000000006,-0.010344827586230,0.000000000000004,0.010344827586230,0.011864406779650,-0.000000000000003,2 -10333,10391,10393,10451,-0.118965517241296,0.332203389830538,-0.113793103448182,0.326271186440717,-0.113793103448179,0.338135593220355,-0.108620689655065,0.332203389830535,-0.011864406779637,0.000000000000003,-0.000000000000004,-0.010344827586230,0.000000000000002,0.010344827586231,0.011864406779639,-0.000000000000003,2 -8044,10334,10392,10452,-0.113793103448176,0.350000000000000,-0.118965517241293,0.344067796610178,-0.113793103448179,0.338135593220355,-0.108620689655061,0.344067796610177,-0.000000000000000,0.010344827586232,-0.011864406779644,0.000000000000002,-0.000000000000002,-0.010344827586231,0.011864406779646,-0.000000000000003,2 -8930,10335,10395,10453,-0.103448275862175,-0.350000000000000,-0.108620689655262,-0.344067796610155,-0.103448275862171,-0.338135593220310,-0.098275862069084,-0.344067796610156,-0.000000000000000,-0.010344827586177,-0.011864406779691,0.000000000000003,0.000000000000002,0.010344827586178,0.011864406779689,-0.000000000000004,2 -10336,10394,10396,10454,-0.108620689655258,-0.332203389830468,-0.103448275862171,-0.338135593220310,-0.103448275862167,-0.326271186440628,-0.098275862069080,-0.332203389830471,-0.011864406779683,0.000000000000003,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779681,-0.000000000000004,2 -10337,10395,10397,10455,-0.108620689655255,-0.320338983050786,-0.103448275862167,-0.326271186440628,-0.103448275862163,-0.314406779660950,-0.098275862069076,-0.320338983050791,-0.011864406779679,0.000000000000004,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779678,-0.000000000000004,2 -10338,10396,10398,10456,-0.108620689655251,-0.308474576271099,-0.103448275862163,-0.314406779660950,-0.103448275862159,-0.302542372881256,-0.098275862069071,-0.308474576271106,-0.011864406779695,0.000000000000003,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779692,-0.000000000000004,2 -10339,10397,10399,10457,-0.108620689655248,-0.296610169491417,-0.103448275862159,-0.302542372881256,-0.103448275862156,-0.290677966101586,-0.098275862069067,-0.296610169491426,-0.011864406779670,0.000000000000003,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586181,0.011864406779669,-0.000000000000004,2 -10340,10398,10400,10458,-0.108620689655244,-0.284745762711729,-0.103448275862156,-0.290677966101586,-0.103448275862152,-0.278813559321883,-0.098275862069063,-0.284745762711740,-0.011864406779705,0.000000000000003,-0.000000000000009,-0.010344827586181,0.000000000000012,0.010344827586182,0.011864406779702,-0.000000000000004,2 -10341,10399,10401,10459,-0.108620689655241,-0.272881355932043,-0.103448275862152,-0.278813559321883,-0.103448275862148,-0.266949152542215,-0.098275862069059,-0.272881355932056,-0.011864406779669,0.000000000000003,-0.000000000000012,-0.010344827586182,0.000000000000013,0.010344827586183,0.011864406779668,-0.000000000000004,2 -10342,10400,10402,10460,-0.108620689655238,-0.261016949152362,-0.103448275862148,-0.266949152542215,-0.103448275862144,-0.255084745762525,-0.098275862069054,-0.261016949152377,-0.011864406779692,0.000000000000003,-0.000000000000013,-0.010344827586183,0.000000000000016,0.010344827586184,0.011864406779689,-0.000000000000004,2 -10343,10401,10403,10461,-0.108620689655234,-0.249152542372677,-0.103448275862144,-0.255084745762525,-0.103448275862140,-0.243220338982847,-0.098275862069050,-0.249152542372695,-0.011864406779679,0.000000000000003,-0.000000000000016,-0.010344827586184,0.000000000000019,0.010344827586184,0.011864406779677,-0.000000000000004,2 -10344,10402,10404,10462,-0.108620689655231,-0.237288135592997,-0.103448275862140,-0.243220338982847,-0.103448275862136,-0.231355932203167,-0.098275862069046,-0.237288135593017,-0.011864406779681,0.000000000000003,-0.000000000000019,-0.010344827586184,0.000000000000020,0.010344827586185,0.011864406779679,-0.000000000000004,2 -10345,10403,10405,10463,-0.108620689655227,-0.225423728813310,-0.103448275862136,-0.231355932203167,-0.103448275862132,-0.219491525423476,-0.098275862069042,-0.225423728813332,-0.011864406779692,0.000000000000004,-0.000000000000020,-0.010344827586185,0.000000000000023,0.010344827586186,0.011864406779690,-0.000000000000004,2 -10346,10404,10406,10464,-0.108620689655224,-0.213559322033630,-0.103448275862132,-0.219491525423476,-0.103448275862129,-0.207627118643808,-0.098275862069037,-0.213559322033654,-0.011864406779669,0.000000000000003,-0.000000000000023,-0.010344827586186,0.000000000000024,0.010344827586187,0.011864406779667,-0.000000000000004,2 -10347,10405,10407,10465,-0.108620689655220,-0.201694915253944,-0.103448275862129,-0.207627118643808,-0.103448275862125,-0.195762711864105,-0.098275862069033,-0.201694915253969,-0.011864406779704,0.000000000000003,-0.000000000000024,-0.010344827586187,0.000000000000027,0.010344827586188,0.011864406779701,-0.000000000000004,2 -10348,10406,10408,10466,-0.108620689655217,-0.189830508474258,-0.103448275862125,-0.195762711864105,-0.103448275862121,-0.183898305084439,-0.098275862069029,-0.189830508474286,-0.011864406779667,0.000000000000003,-0.000000000000027,-0.010344827586188,0.000000000000029,0.010344827586188,0.011864406779666,-0.000000000000004,2 -10349,10407,10409,10467,-0.108620689655213,-0.177966101694576,-0.103448275862121,-0.183898305084439,-0.103448275862117,-0.172033898304744,-0.098275862069025,-0.177966101694607,-0.011864406779696,0.000000000000003,-0.000000000000029,-0.010344827586188,0.000000000000032,0.010344827586189,0.011864406779693,-0.000000000000004,2 -10350,10408,10410,10468,-0.108620689655210,-0.166101694914891,-0.103448275862117,-0.172033898304744,-0.103448275862113,-0.160169491525070,-0.098275862069020,-0.166101694914923,-0.011864406779676,0.000000000000003,-0.000000000000032,-0.010344827586189,0.000000000000034,0.010344827586190,0.011864406779674,-0.000000000000004,2 -10351,10409,10411,10469,-0.108620689655206,-0.154237288135219,-0.103448275862113,-0.160169491525070,-0.103448275862109,-0.148305084745403,-0.098275862069016,-0.154237288135254,-0.011864406779667,0.000000000000003,-0.000000000000034,-0.010344827586190,0.000000000000035,0.010344827586191,0.011864406779665,-0.000000000000004,2 -10352,10410,10412,10470,-0.108620689655203,-0.142372881355542,-0.103448275862109,-0.148305084745403,-0.103448275862106,-0.136440677965718,-0.098275862069012,-0.142372881355579,-0.011864406779686,0.000000000000003,-0.000000000000035,-0.010344827586191,0.000000000000038,0.010344827586192,0.011864406779684,-0.000000000000004,2 -10353,10411,10413,10471,-0.108620689655200,-0.130508474575860,-0.103448275862106,-0.136440677965718,-0.103448275862102,-0.124576271186039,-0.098275862069008,-0.130508474575898,-0.011864406779680,0.000000000000003,-0.000000000000038,-0.010344827586192,0.000000000000039,0.010344827586192,0.011864406779678,-0.000000000000004,2 -10354,10412,10414,10472,-0.108620689655196,-0.118644067796176,-0.103448275862102,-0.124576271186039,-0.103448275862098,-0.112711864406353,-0.098275862069003,-0.118644067796216,-0.011864406779688,0.000000000000004,-0.000000000000039,-0.010344827586192,0.000000000000042,0.010344827586193,0.011864406779685,-0.000000000000004,2 -10355,10413,10415,10473,-0.108620689655193,-0.106779661016493,-0.103448275862098,-0.112711864406353,-0.103448275862094,-0.100847457626676,-0.098275862068999,-0.106779661016536,-0.011864406779678,0.000000000000003,-0.000000000000042,-0.010344827586193,0.000000000000044,0.010344827586194,0.011864406779676,-0.000000000000004,2 -10356,10414,10416,10474,-0.108620689655189,-0.094915254236810,-0.103448275862094,-0.100847457626676,-0.103448275862090,-0.088983050846989,-0.098275862068995,-0.094915254236855,-0.011864406779688,0.000000000000003,-0.000000000000044,-0.010344827586194,0.000000000000046,0.010344827586195,0.011864406779685,-0.000000000000004,2 -10357,10415,10417,10475,-0.108620689655186,-0.083050847457122,-0.103448275862090,-0.088983050846989,-0.103448275862086,-0.077118644067303,-0.098275862068991,-0.083050847457170,-0.011864406779688,0.000000000000003,-0.000000000000046,-0.010344827586195,0.000000000000049,0.010344827586195,0.011864406779685,-0.000000000000004,2 -10358,10416,10418,10476,-0.108620689655182,-0.071186440677440,-0.103448275862086,-0.077118644067303,-0.103448275862082,-0.065254237287626,-0.098275862068986,-0.071186440677490,-0.011864406779678,0.000000000000003,-0.000000000000049,-0.010344827586195,0.000000000000051,0.010344827586196,0.011864406779676,-0.000000000000004,2 -10359,10417,10419,10477,-0.108620689655179,-0.059322033897757,-0.103448275862082,-0.065254237287626,-0.103448275862079,-0.053389830507940,-0.098275862068982,-0.059322033897809,-0.011864406779688,0.000000000000003,-0.000000000000051,-0.010344827586196,0.000000000000053,0.010344827586197,0.011864406779685,-0.000000000000004,2 -10360,10418,10420,10478,-0.108620689655175,-0.047457627118071,-0.103448275862079,-0.053389830507940,-0.103448275862075,-0.041525423728257,-0.098275862068978,-0.047457627118126,-0.011864406779684,0.000000000000003,-0.000000000000053,-0.010344827586197,0.000000000000056,0.010344827586198,0.011864406779681,-0.000000000000004,2 -10361,10419,10421,10479,-0.108620689655172,-0.035593220338388,-0.103448275862075,-0.041525423728257,-0.103448275862071,-0.029661016948576,-0.098275862068974,-0.035593220338445,-0.011864406779682,0.000000000000003,-0.000000000000056,-0.010344827586198,0.000000000000058,0.010344827586199,0.011864406779680,-0.000000000000004,2 -10362,10420,10422,10480,-0.108620689655168,-0.023728813558704,-0.103448275862071,-0.029661016948576,-0.103448275862067,-0.017796610168890,-0.098275862068969,-0.023728813558763,-0.011864406779688,0.000000000000004,-0.000000000000058,-0.010344827586199,0.000000000000060,0.010344827586199,0.011864406779685,-0.000000000000004,2 -10363,10421,10423,10481,-0.108620689655165,-0.011864406779021,-0.103448275862067,-0.017796610168890,-0.103448275862063,-0.005932203389213,-0.098275862068965,-0.011864406779082,-0.011864406779678,0.000000000000003,-0.000000000000060,-0.010344827586199,0.000000000000062,0.010344827586200,0.011864406779676,-0.000000000000004,2 -10364,10422,10424,10482,-0.108620689655161,0.000000000000655,-0.103448275862063,-0.005932203389213,-0.103448275862059,0.005932203390460,-0.098275862068961,0.000000000000592,-0.011864406779673,0.000000000000003,-0.000000000000062,-0.010344827586200,0.000000000000062,0.010344827586201,0.011864406779673,-0.000000000000004,2 -10365,10423,10425,10483,-0.108620689655158,0.011864406780309,-0.103448275862059,0.005932203390460,-0.103448275862055,0.017796610170096,-0.098275862068957,0.011864406780247,-0.011864406779635,0.000000000000003,-0.000000000000062,-0.010344827586201,0.000000000000060,0.010344827586202,0.011864406779637,-0.000000000000004,2 -10366,10424,10426,10484,-0.108620689655155,0.023728813559944,-0.103448275862055,0.017796610170096,-0.103448275862052,0.029661016949734,-0.098275862068952,0.023728813559885,-0.011864406779636,0.000000000000003,-0.000000000000060,-0.010344827586202,0.000000000000058,0.010344827586202,0.011864406779639,-0.000000000000004,2 -10367,10425,10427,10485,-0.108620689655151,0.035593220339580,-0.103448275862052,0.029661016949734,-0.103448275862048,0.041525423729370,-0.098275862068948,0.035593220339523,-0.011864406779635,0.000000000000003,-0.000000000000058,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779638,-0.000000000000004,2 -10368,10426,10428,10486,-0.108620689655148,0.047457627119216,-0.103448275862048,0.041525423729370,-0.103448275862044,0.053389830509007,-0.098275862068944,0.047457627119161,-0.011864406779636,0.000000000000003,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586204,0.011864406779638,-0.000000000000004,2 -10369,10427,10429,10487,-0.108620689655144,0.059322033898852,-0.103448275862044,0.053389830509007,-0.103448275862040,0.065254237288645,-0.098275862068940,0.059322033898800,-0.011864406779636,0.000000000000003,-0.000000000000053,-0.010344827586204,0.000000000000051,0.010344827586205,0.011864406779639,-0.000000000000004,2 -10370,10428,10430,10488,-0.108620689655141,0.071186440678487,-0.103448275862040,0.065254237288645,-0.103448275862036,0.077118644068280,-0.098275862068935,0.071186440678438,-0.011864406779635,0.000000000000003,-0.000000000000051,-0.010344827586205,0.000000000000049,0.010344827586206,0.011864406779637,-0.000000000000004,2 -10371,10429,10431,10489,-0.108620689655137,0.083050847458123,-0.103448275862036,0.077118644068280,-0.103448275862032,0.088983050847918,-0.098275862068931,0.083050847458075,-0.011864406779636,0.000000000000004,-0.000000000000049,-0.010344827586206,0.000000000000046,0.010344827586206,0.011864406779639,-0.000000000000004,2 -10372,10430,10432,10490,-0.108620689655134,0.094915254237759,-0.103448275862032,0.088983050847918,-0.103448275862028,0.100847457627556,-0.098275862068927,0.094915254237714,-0.011864406779636,0.000000000000003,-0.000000000000046,-0.010344827586206,0.000000000000044,0.010344827586207,0.011864406779639,-0.000000000000004,2 -10373,10431,10433,10491,-0.108620689655130,0.106779661017395,-0.103448275862028,0.100847457627556,-0.103448275862025,0.112711864407192,-0.098275862068923,0.106779661017352,-0.011864406779635,0.000000000000003,-0.000000000000044,-0.010344827586207,0.000000000000042,0.010344827586208,0.011864406779637,-0.000000000000004,2 -10374,10432,10434,10492,-0.108620689655127,0.118644067797031,-0.103448275862025,0.112711864407192,-0.103448275862021,0.124576271186829,-0.098275862068919,0.118644067796990,-0.011864406779636,0.000000000000003,-0.000000000000042,-0.010344827586208,0.000000000000039,0.010344827586209,0.011864406779639,-0.000000000000004,2 -10375,10433,10435,10493,-0.108620689655123,0.130508474576671,-0.103448275862021,0.124576271186829,-0.103448275862017,0.136440677966474,-0.098275862068914,0.130508474576632,-0.011864406779644,0.000000000000003,-0.000000000000039,-0.010344827586209,0.000000000000038,0.010344827586210,0.011864406779646,-0.000000000000004,2 -10376,10434,10436,10494,-0.108620689655120,0.142372881356311,-0.103448275862017,0.136440677966474,-0.103448275862013,0.148305084746112,-0.098275862068910,0.142372881356275,-0.011864406779636,0.000000000000003,-0.000000000000038,-0.010344827586210,0.000000000000035,0.010344827586210,0.011864406779639,-0.000000000000004,2 -10377,10435,10437,10495,-0.108620689655116,0.154237288135946,-0.103448275862013,0.148305084746112,-0.103448275862009,0.160169491525746,-0.098275862068906,0.154237288135911,-0.011864406779633,0.000000000000003,-0.000000000000035,-0.010344827586210,0.000000000000034,0.010344827586211,0.011864406779635,-0.000000000000004,2 -10378,10436,10438,10496,-0.108620689655113,0.166101694915580,-0.103448275862009,0.160169491525746,-0.103448275862005,0.172033898305381,-0.098275862068902,0.166101694915547,-0.011864406779635,0.000000000000003,-0.000000000000034,-0.010344827586211,0.000000000000032,0.010344827586212,0.011864406779636,-0.000000000000004,2 -10379,10437,10439,10497,-0.108620689655110,0.177966101695216,-0.103448275862005,0.172033898305381,-0.103448275862001,0.183898305085020,-0.098275862068897,0.177966101695185,-0.011864406779638,0.000000000000004,-0.000000000000032,-0.010344827586212,0.000000000000029,0.010344827586213,0.011864406779640,-0.000000000000004,2 -10380,10438,10440,10498,-0.108620689655106,0.189830508474851,-0.103448275862001,0.183898305085020,-0.103448275861998,0.195762711864654,-0.098275862068893,0.189830508474823,-0.011864406779633,0.000000000000003,-0.000000000000029,-0.010344827586213,0.000000000000027,0.010344827586213,0.011864406779635,-0.000000000000004,2 -10381,10439,10441,10499,-0.108620689655103,0.201694915254487,-0.103448275861998,0.195762711864654,-0.103448275861994,0.207627118644295,-0.098275862068889,0.201694915254461,-0.011864406779639,0.000000000000003,-0.000000000000027,-0.010344827586213,0.000000000000024,0.010344827586214,0.011864406779642,-0.000000000000004,2 -10382,10440,10442,10500,-0.108620689655099,0.213559322034126,-0.103448275861994,0.207627118644295,-0.103448275861990,0.219491525423934,-0.098275862068885,0.213559322034102,-0.011864406779638,0.000000000000003,-0.000000000000024,-0.010344827586214,0.000000000000023,0.010344827586215,0.011864406779640,-0.000000000000004,2 -10383,10441,10443,10501,-0.108620689655096,0.225423728813766,-0.103448275861990,0.219491525423934,-0.103448275861986,0.231355932203576,-0.098275862068880,0.225423728813744,-0.011864406779641,0.000000000000003,-0.000000000000023,-0.010344827586215,0.000000000000021,0.010344827586216,0.011864406779644,-0.000000000000004,2 -10384,10442,10444,10502,-0.108620689655092,0.237288135593408,-0.103448275861986,0.231355932203576,-0.103448275861982,0.243220338983219,-0.098275862068876,0.237288135593388,-0.011864406779642,0.000000000000003,-0.000000000000021,-0.010344827586216,0.000000000000019,0.010344827586217,0.011864406779644,-0.000000000000004,2 -10385,10443,10445,10503,-0.108620689655089,0.249152542373044,-0.103448275861982,0.243220338983219,-0.103448275861978,0.255084745762852,-0.098275862068872,0.249152542373027,-0.011864406779632,0.000000000000003,-0.000000000000019,-0.010344827586217,0.000000000000016,0.010344827586217,0.011864406779634,-0.000000000000004,2 -10386,10444,10446,10504,-0.108620689655085,0.261016949152676,-0.103448275861978,0.255084745762852,-0.103448275861975,0.266949152542485,-0.098275862068868,0.261016949152661,-0.011864406779632,0.000000000000003,-0.000000000000016,-0.010344827586217,0.000000000000014,0.010344827586218,0.011864406779635,-0.000000000000004,2 -10387,10445,10447,10505,-0.108620689655082,0.272881355932314,-0.103448275861975,0.266949152542485,-0.103448275861971,0.278813559322130,-0.098275862068863,0.272881355932301,-0.011864406779644,0.000000000000004,-0.000000000000014,-0.010344827586218,0.000000000000012,0.010344827586219,0.011864406779646,-0.000000000000004,2 -10388,10446,10448,10506,-0.108620689655078,0.284745762711957,-0.103448275861971,0.278813559322130,-0.103448275861967,0.290677966101772,-0.098275862068859,0.284745762711946,-0.011864406779641,0.000000000000003,-0.000000000000012,-0.010344827586219,0.000000000000009,0.010344827586220,0.011864406779644,-0.000000000000004,2 -10389,10447,10449,10507,-0.108620689655075,0.296610169491602,-0.103448275861967,0.290677966101772,-0.103448275861963,0.302542372881423,-0.098275862068855,0.296610169491593,-0.011864406779650,0.000000000000003,-0.000000000000009,-0.010344827586220,0.000000000000008,0.010344827586220,0.011864406779651,-0.000000000000004,2 -10390,10448,10450,10508,-0.108620689655071,0.308474576271246,-0.103448275861963,0.302542372881423,-0.103448275861959,0.314406779661062,-0.098275862068851,0.308474576271239,-0.011864406779638,0.000000000000003,-0.000000000000008,-0.010344827586220,0.000000000000005,0.010344827586221,0.011864406779640,-0.000000000000004,2 -10391,10449,10451,10509,-0.108620689655068,0.320338983050890,-0.103448275861959,0.314406779661062,-0.103448275861955,0.326271186440713,-0.098275862068846,0.320338983050885,-0.011864406779650,0.000000000000003,-0.000000000000005,-0.010344827586221,0.000000000000004,0.010344827586222,0.011864406779652,-0.000000000000004,2 -10392,10450,10452,10510,-0.108620689655065,0.332203389830535,-0.103448275861955,0.326271186440713,-0.103448275861951,0.338135593220353,-0.098275862068842,0.332203389830531,-0.011864406779639,0.000000000000003,-0.000000000000004,-0.010344827586222,0.000000000000002,0.010344827586223,0.011864406779641,-0.000000000000004,2 -8030,10393,10451,10511,-0.103448275861948,0.350000000000000,-0.108620689655061,0.344067796610177,-0.103448275861951,0.338135593220353,-0.098275862068838,0.344067796610176,-0.000000000000000,0.010344827586224,-0.011864406779646,0.000000000000003,-0.000000000000002,-0.010344827586223,0.011864406779648,-0.000000000000004,2 -8931,10394,10454,10512,-0.093103448275998,-0.350000000000000,-0.098275862069084,-0.344067796610156,-0.093103448275993,-0.338135593220313,-0.087931034482906,-0.344067796610157,-0.000000000000000,-0.010344827586177,-0.011864406779689,0.000000000000004,0.000000000000002,0.010344827586178,0.011864406779686,-0.000000000000005,2 -10395,10453,10455,10513,-0.098275862069080,-0.332203389830471,-0.093103448275993,-0.338135593220313,-0.093103448275988,-0.326271186440632,-0.087931034482901,-0.332203389830474,-0.011864406779681,0.000000000000004,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779679,-0.000000000000005,2 -10396,10454,10456,10514,-0.098275862069076,-0.320338983050791,-0.093103448275988,-0.326271186440632,-0.093103448275983,-0.314406779660955,-0.087931034482896,-0.320338983050796,-0.011864406779678,0.000000000000004,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779676,-0.000000000000005,2 -10397,10455,10457,10515,-0.098275862069071,-0.308474576271106,-0.093103448275983,-0.314406779660955,-0.093103448275979,-0.302542372881264,-0.087931034482890,-0.308474576271113,-0.011864406779692,0.000000000000004,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779690,-0.000000000000005,2 -10398,10456,10458,10516,-0.098275862069067,-0.296610169491426,-0.093103448275979,-0.302542372881264,-0.093103448275974,-0.290677966101596,-0.087931034482885,-0.296610169491434,-0.011864406779669,0.000000000000004,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779668,-0.000000000000005,2 -10399,10457,10459,10517,-0.098275862069063,-0.284745762711740,-0.093103448275974,-0.290677966101596,-0.093103448275969,-0.278813559321896,-0.087931034482880,-0.284745762711751,-0.011864406779702,0.000000000000004,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779698,-0.000000000000005,2 -10400,10458,10460,10518,-0.098275862069059,-0.272881355932056,-0.093103448275969,-0.278813559321896,-0.093103448275964,-0.266949152542229,-0.087931034482875,-0.272881355932069,-0.011864406779668,0.000000000000004,-0.000000000000012,-0.010344827586183,0.000000000000013,0.010344827586184,0.011864406779667,-0.000000000000005,2 -10401,10459,10461,10519,-0.098275862069054,-0.261016949152377,-0.093103448275964,-0.266949152542229,-0.093103448275960,-0.255084745762541,-0.087931034482870,-0.261016949152392,-0.011864406779689,0.000000000000004,-0.000000000000013,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779686,-0.000000000000005,2 -10402,10460,10462,10520,-0.098275862069050,-0.249152542372695,-0.093103448275960,-0.255084745762541,-0.093103448275955,-0.243220338982866,-0.087931034482864,-0.249152542372712,-0.011864406779677,0.000000000000004,-0.000000000000016,-0.010344827586185,0.000000000000019,0.010344827586186,0.011864406779674,-0.000000000000005,2 -10403,10461,10463,10521,-0.098275862069046,-0.237288135593017,-0.093103448275955,-0.243220338982866,-0.093103448275950,-0.231355932203187,-0.087931034482859,-0.237288135593036,-0.011864406779679,0.000000000000004,-0.000000000000019,-0.010344827586186,0.000000000000021,0.010344827586187,0.011864406779678,-0.000000000000005,2 -10404,10462,10464,10522,-0.098275862069042,-0.225423728813332,-0.093103448275950,-0.231355932203187,-0.093103448275945,-0.219491525423499,-0.087931034482854,-0.225423728813354,-0.011864406779690,0.000000000000004,-0.000000000000021,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779687,-0.000000000000005,2 -10405,10463,10465,10523,-0.098275862069037,-0.213559322033654,-0.093103448275945,-0.219491525423499,-0.093103448275941,-0.207627118643832,-0.087931034482849,-0.213559322033677,-0.011864406779667,0.000000000000004,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779666,-0.000000000000005,2 -10406,10464,10466,10524,-0.098275862069033,-0.201694915253969,-0.093103448275941,-0.207627118643832,-0.093103448275936,-0.195762711864133,-0.087931034482843,-0.201694915253995,-0.011864406779701,0.000000000000004,-0.000000000000024,-0.010344827586189,0.000000000000027,0.010344827586190,0.011864406779698,-0.000000000000005,2 -10407,10465,10467,10525,-0.098275862069029,-0.189830508474286,-0.093103448275936,-0.195762711864133,-0.093103448275931,-0.183898305084468,-0.087931034482838,-0.189830508474314,-0.011864406779666,0.000000000000004,-0.000000000000027,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779664,-0.000000000000005,2 -10408,10466,10468,10526,-0.098275862069025,-0.177966101694607,-0.093103448275931,-0.183898305084468,-0.093103448275926,-0.172033898304776,-0.087931034482833,-0.177966101694637,-0.011864406779693,0.000000000000004,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779690,-0.000000000000005,2 -10409,10467,10469,10527,-0.098275862069020,-0.166101694914923,-0.093103448275926,-0.172033898304776,-0.093103448275922,-0.160169491525103,-0.087931034482828,-0.166101694914956,-0.011864406779674,0.000000000000004,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779672,-0.000000000000005,2 -10410,10468,10470,10528,-0.098275862069016,-0.154237288135254,-0.093103448275922,-0.160169491525103,-0.093103448275917,-0.148305084745439,-0.087931034482822,-0.154237288135288,-0.011864406779665,0.000000000000004,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779664,-0.000000000000005,2 -10411,10469,10471,10529,-0.098275862069012,-0.142372881355579,-0.093103448275917,-0.148305084745439,-0.093103448275912,-0.136440677965756,-0.087931034482817,-0.142372881355616,-0.011864406779684,0.000000000000004,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779681,-0.000000000000005,2 -10412,10470,10472,10530,-0.098275862069008,-0.130508474575898,-0.093103448275912,-0.136440677965756,-0.093103448275907,-0.124576271186079,-0.087931034482812,-0.130508474575937,-0.011864406779678,0.000000000000004,-0.000000000000038,-0.010344827586195,0.000000000000040,0.010344827586196,0.011864406779676,-0.000000000000005,2 -10413,10471,10473,10531,-0.098275862069003,-0.118644067796216,-0.093103448275907,-0.124576271186079,-0.093103448275903,-0.112711864406395,-0.087931034482807,-0.118644067796257,-0.011864406779685,0.000000000000004,-0.000000000000040,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779683,-0.000000000000005,2 -10414,10472,10474,10532,-0.098275862068999,-0.106779661016536,-0.093103448275903,-0.112711864406395,-0.093103448275898,-0.100847457626720,-0.087931034482801,-0.106779661016579,-0.011864406779676,0.000000000000004,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779674,-0.000000000000005,2 -10415,10473,10475,10533,-0.098275862068995,-0.094915254236855,-0.093103448275898,-0.100847457626720,-0.093103448275893,-0.088983050847036,-0.087931034482796,-0.094915254236900,-0.011864406779685,0.000000000000004,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779683,-0.000000000000005,2 -10416,10474,10476,10534,-0.098275862068991,-0.083050847457170,-0.093103448275893,-0.088983050847036,-0.093103448275888,-0.077118644067352,-0.087931034482791,-0.083050847457218,-0.011864406779685,0.000000000000004,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779683,-0.000000000000005,2 -10417,10475,10477,10535,-0.098275862068986,-0.071186440677490,-0.093103448275888,-0.077118644067352,-0.093103448275884,-0.065254237287677,-0.087931034482786,-0.071186440677539,-0.011864406779676,0.000000000000004,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779674,-0.000000000000005,2 -10418,10476,10478,10536,-0.098275862068982,-0.059322033897809,-0.093103448275884,-0.065254237287677,-0.093103448275879,-0.053389830507993,-0.087931034482780,-0.059322033897861,-0.011864406779685,0.000000000000004,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779683,-0.000000000000005,2 -10419,10477,10479,10537,-0.098275862068978,-0.047457627118126,-0.093103448275879,-0.053389830507993,-0.093103448275874,-0.041525423728313,-0.087931034482775,-0.047457627118180,-0.011864406779681,0.000000000000004,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779679,-0.000000000000005,2 -10420,10478,10480,10538,-0.098275862068974,-0.035593220338445,-0.093103448275874,-0.041525423728313,-0.093103448275869,-0.029661016948634,-0.087931034482770,-0.035593220338502,-0.011864406779680,0.000000000000004,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779678,-0.000000000000005,2 -10421,10479,10481,10539,-0.098275862068969,-0.023728813558763,-0.093103448275869,-0.029661016948634,-0.093103448275865,-0.017796610168950,-0.087931034482765,-0.023728813558822,-0.011864406779685,0.000000000000004,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586205,0.011864406779683,-0.000000000000005,2 -10422,10480,10482,10540,-0.098275862068965,-0.011864406779082,-0.093103448275865,-0.017796610168950,-0.093103448275860,-0.005932203389275,-0.087931034482760,-0.011864406779143,-0.011864406779676,0.000000000000004,-0.000000000000060,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779674,-0.000000000000005,2 -10423,10481,10483,10541,-0.098275862068961,0.000000000000592,-0.093103448275860,-0.005932203389275,-0.093103448275855,0.005932203390398,-0.087931034482754,0.000000000000530,-0.011864406779673,0.000000000000004,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000005,2 -10424,10482,10484,10542,-0.098275862068957,0.011864406780247,-0.093103448275855,0.005932203390398,-0.093103448275851,0.017796610170036,-0.087931034482749,0.011864406780186,-0.011864406779637,0.000000000000004,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586208,0.011864406779639,-0.000000000000005,2 -10425,10483,10485,10543,-0.098275862068952,0.023728813559885,-0.093103448275851,0.017796610170036,-0.093103448275846,0.029661016949676,-0.087931034482744,0.023728813559826,-0.011864406779639,0.000000000000004,-0.000000000000060,-0.010344827586208,0.000000000000058,0.010344827586209,0.011864406779641,-0.000000000000005,2 -10426,10484,10486,10544,-0.098275862068948,0.035593220339523,-0.093103448275846,0.029661016949676,-0.093103448275841,0.041525423729314,-0.087931034482739,0.035593220339467,-0.011864406779638,0.000000000000004,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779640,-0.000000000000005,2 -10427,10485,10487,10545,-0.098275862068944,0.047457627119161,-0.093103448275841,0.041525423729314,-0.093103448275836,0.053389830508954,-0.087931034482733,0.047457627119107,-0.011864406779638,0.000000000000004,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586211,0.011864406779640,-0.000000000000005,2 -10428,10486,10488,10546,-0.098275862068940,0.059322033898800,-0.093103448275836,0.053389830508954,-0.093103448275832,0.065254237288594,-0.087931034482728,0.059322033898748,-0.011864406779639,0.000000000000004,-0.000000000000053,-0.010344827586211,0.000000000000051,0.010344827586212,0.011864406779641,-0.000000000000005,2 -10429,10487,10489,10547,-0.098275862068935,0.071186440678438,-0.093103448275832,0.065254237288594,-0.093103448275827,0.077118644068232,-0.087931034482723,0.071186440678388,-0.011864406779637,0.000000000000004,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586213,0.011864406779639,-0.000000000000005,2 -10430,10488,10490,10548,-0.098275862068931,0.083050847458075,-0.093103448275827,0.077118644068232,-0.093103448275822,0.088983050847872,-0.087931034482718,0.083050847458028,-0.011864406779639,0.000000000000004,-0.000000000000049,-0.010344827586213,0.000000000000046,0.010344827586214,0.011864406779641,-0.000000000000005,2 -10431,10489,10491,10549,-0.098275862068927,0.094915254237714,-0.093103448275822,0.088983050847872,-0.093103448275817,0.100847457627512,-0.087931034482712,0.094915254237669,-0.011864406779639,0.000000000000004,-0.000000000000046,-0.010344827586214,0.000000000000044,0.010344827586215,0.011864406779641,-0.000000000000005,2 -10432,10490,10492,10550,-0.098275862068923,0.106779661017352,-0.093103448275817,0.100847457627512,-0.093103448275813,0.112711864407150,-0.087931034482707,0.106779661017309,-0.011864406779637,0.000000000000004,-0.000000000000044,-0.010344827586215,0.000000000000042,0.010344827586216,0.011864406779639,-0.000000000000005,2 -10433,10491,10493,10551,-0.098275862068919,0.118644067796990,-0.093103448275813,0.112711864407150,-0.093103448275808,0.124576271186790,-0.087931034482702,0.118644067796949,-0.011864406779639,0.000000000000004,-0.000000000000042,-0.010344827586216,0.000000000000039,0.010344827586217,0.011864406779641,-0.000000000000005,2 -10434,10492,10494,10552,-0.098275862068914,0.130508474576632,-0.093103448275808,0.124576271186790,-0.093103448275803,0.136440677966436,-0.087931034482697,0.130508474576594,-0.011864406779646,0.000000000000004,-0.000000000000039,-0.010344827586217,0.000000000000038,0.010344827586218,0.011864406779648,-0.000000000000005,2 -10435,10493,10495,10553,-0.098275862068910,0.142372881356275,-0.093103448275803,0.136440677966436,-0.093103448275798,0.148305084746076,-0.087931034482691,0.142372881356238,-0.011864406779639,0.000000000000004,-0.000000000000038,-0.010344827586218,0.000000000000035,0.010344827586219,0.011864406779641,-0.000000000000005,2 -10436,10494,10496,10554,-0.098275862068906,0.154237288135911,-0.093103448275798,0.148305084746076,-0.093103448275794,0.160169491525712,-0.087931034482686,0.154237288135877,-0.011864406779635,0.000000000000004,-0.000000000000035,-0.010344827586219,0.000000000000034,0.010344827586220,0.011864406779636,-0.000000000000005,2 -10437,10495,10497,10555,-0.098275862068902,0.166101694915547,-0.093103448275794,0.160169491525712,-0.093103448275789,0.172033898305349,-0.087931034482681,0.166101694915514,-0.011864406779636,0.000000000000004,-0.000000000000034,-0.010344827586220,0.000000000000032,0.010344827586221,0.011864406779638,-0.000000000000005,2 -10438,10496,10498,10556,-0.098275862068897,0.177966101695185,-0.093103448275789,0.172033898305349,-0.093103448275784,0.183898305084991,-0.087931034482676,0.177966101695155,-0.011864406779640,0.000000000000004,-0.000000000000032,-0.010344827586221,0.000000000000029,0.010344827586222,0.011864406779643,-0.000000000000005,2 -10439,10497,10499,10557,-0.098275862068893,0.189830508474823,-0.093103448275784,0.183898305084991,-0.093103448275779,0.195762711864627,-0.087931034482670,0.189830508474795,-0.011864406779635,0.000000000000004,-0.000000000000029,-0.010344827586222,0.000000000000028,0.010344827586223,0.011864406779636,-0.000000000000005,2 -10440,10498,10500,10558,-0.098275862068889,0.201694915254461,-0.093103448275779,0.195762711864627,-0.093103448275775,0.207627118644270,-0.087931034482665,0.201694915254436,-0.011864406779642,0.000000000000004,-0.000000000000028,-0.010344827586223,0.000000000000024,0.010344827586224,0.011864406779645,-0.000000000000005,2 -10441,10499,10501,10559,-0.098275862068885,0.213559322034102,-0.093103448275775,0.207627118644270,-0.093103448275770,0.219491525423911,-0.087931034482660,0.213559322034079,-0.011864406779640,0.000000000000004,-0.000000000000024,-0.010344827586224,0.000000000000023,0.010344827586225,0.011864406779642,-0.000000000000005,2 -10442,10500,10502,10560,-0.098275862068880,0.225423728813744,-0.093103448275770,0.219491525423911,-0.093103448275765,0.231355932203556,-0.087931034482655,0.225423728813723,-0.011864406779644,0.000000000000004,-0.000000000000023,-0.010344827586225,0.000000000000020,0.010344827586226,0.011864406779646,-0.000000000000005,2 -10443,10501,10503,10561,-0.098275862068876,0.237288135593388,-0.093103448275765,0.231355932203556,-0.093103448275760,0.243220338983201,-0.087931034482649,0.237288135593369,-0.011864406779644,0.000000000000004,-0.000000000000020,-0.010344827586226,0.000000000000018,0.010344827586227,0.011864406779646,-0.000000000000005,2 -10444,10502,10504,10562,-0.098275862068872,0.249152542373027,-0.093103448275760,0.243220338983201,-0.093103448275756,0.255084745762836,-0.087931034482644,0.249152542373009,-0.011864406779634,0.000000000000004,-0.000000000000018,-0.010344827586227,0.000000000000016,0.010344827586228,0.011864406779636,-0.000000000000005,2 -10445,10503,10505,10563,-0.098275862068868,0.261016949152661,-0.093103448275756,0.255084745762836,-0.093103448275751,0.266949152542472,-0.087931034482639,0.261016949152646,-0.011864406779635,0.000000000000004,-0.000000000000016,-0.010344827586228,0.000000000000013,0.010344827586229,0.011864406779638,-0.000000000000005,2 -10446,10504,10506,10564,-0.098275862068863,0.272881355932301,-0.093103448275751,0.266949152542472,-0.093103448275746,0.278813559322118,-0.087931034482634,0.272881355932288,-0.011864406779646,0.000000000000004,-0.000000000000013,-0.010344827586229,0.000000000000012,0.010344827586230,0.011864406779647,-0.000000000000005,2 -10447,10505,10507,10565,-0.098275862068859,0.284745762711946,-0.093103448275746,0.278813559322118,-0.093103448275741,0.290677966101763,-0.087931034482629,0.284745762711935,-0.011864406779644,0.000000000000004,-0.000000000000012,-0.010344827586230,0.000000000000009,0.010344827586231,0.011864406779647,-0.000000000000005,2 -10448,10506,10508,10566,-0.098275862068855,0.296610169491593,-0.093103448275741,0.290677966101763,-0.093103448275737,0.302542372881415,-0.087931034482623,0.296610169491585,-0.011864406779651,0.000000000000004,-0.000000000000009,-0.010344827586231,0.000000000000008,0.010344827586232,0.011864406779652,-0.000000000000005,2 -10449,10507,10509,10567,-0.098275862068851,0.308474576271239,-0.093103448275737,0.302542372881415,-0.093103448275732,0.314406779661057,-0.087931034482618,0.308474576271232,-0.011864406779640,0.000000000000004,-0.000000000000008,-0.010344827586232,0.000000000000006,0.010344827586233,0.011864406779643,-0.000000000000005,2 -10450,10508,10510,10568,-0.098275862068846,0.320338983050885,-0.093103448275732,0.314406779661057,-0.093103448275727,0.326271186440709,-0.087931034482613,0.320338983050880,-0.011864406779652,0.000000000000004,-0.000000000000006,-0.010344827586233,0.000000000000004,0.010344827586234,0.011864406779653,-0.000000000000005,2 -10451,10509,10511,10569,-0.098275862068842,0.332203389830531,-0.093103448275727,0.326271186440709,-0.093103448275722,0.338135593220351,-0.087931034482608,0.332203389830528,-0.011864406779641,0.000000000000004,-0.000000000000004,-0.010344827586234,0.000000000000002,0.010344827586235,0.011864406779643,-0.000000000000005,2 -8016,10452,10510,10570,-0.093103448275718,0.350000000000000,-0.098275862068838,0.344067796610176,-0.093103448275722,0.338135593220351,-0.087931034482602,0.344067796610175,-0.000000000000000,0.010344827586236,-0.011864406779648,0.000000000000004,-0.000000000000002,-0.010344827586235,0.011864406779650,-0.000000000000005,2 -8932,10453,10513,10571,-0.082758620689820,-0.350000000000000,-0.087931034482906,-0.344067796610157,-0.082758620689814,-0.338135593220315,-0.077586206896728,-0.344067796610158,-0.000000000000000,-0.010344827586177,-0.011864406779686,0.000000000000005,0.000000000000002,0.010344827586178,0.011864406779684,-0.000000000000006,2 -10454,10512,10514,10572,-0.087931034482901,-0.332203389830474,-0.082758620689814,-0.338135593220315,-0.082758620689809,-0.326271186440637,-0.077586206896722,-0.332203389830477,-0.011864406779679,0.000000000000005,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779677,-0.000000000000006,2 -10455,10513,10515,10573,-0.087931034482896,-0.320338983050796,-0.082758620689809,-0.326271186440637,-0.082758620689803,-0.314406779660961,-0.077586206896716,-0.320338983050801,-0.011864406779676,0.000000000000005,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779675,-0.000000000000006,2 -10456,10514,10516,10574,-0.087931034482890,-0.308474576271113,-0.082758620689803,-0.314406779660961,-0.082758620689797,-0.302542372881273,-0.077586206896710,-0.308474576271120,-0.011864406779690,0.000000000000005,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779687,-0.000000000000006,2 -10457,10515,10517,10575,-0.087931034482885,-0.296610169491434,-0.082758620689797,-0.302542372881273,-0.082758620689792,-0.290677966101605,-0.077586206896703,-0.296610169491443,-0.011864406779668,0.000000000000005,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779667,-0.000000000000006,2 -10458,10516,10518,10576,-0.087931034482880,-0.284745762711751,-0.082758620689792,-0.290677966101605,-0.082758620689786,-0.278813559321908,-0.077586206896697,-0.284745762711762,-0.011864406779698,0.000000000000005,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779696,-0.000000000000006,2 -10459,10517,10519,10577,-0.087931034482875,-0.272881355932069,-0.082758620689786,-0.278813559321908,-0.082758620689780,-0.266949152542242,-0.077586206896691,-0.272881355932081,-0.011864406779667,0.000000000000005,-0.000000000000012,-0.010344827586183,0.000000000000013,0.010344827586184,0.011864406779665,-0.000000000000006,2 -10460,10518,10520,10578,-0.087931034482870,-0.261016949152392,-0.082758620689780,-0.266949152542242,-0.082758620689774,-0.255084745762557,-0.077586206896685,-0.261016949152407,-0.011864406779686,0.000000000000005,-0.000000000000013,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779683,-0.000000000000006,2 -10461,10519,10521,10579,-0.087931034482864,-0.249152542372712,-0.082758620689774,-0.255084745762557,-0.082758620689769,-0.243220338982884,-0.077586206896679,-0.249152542372729,-0.011864406779674,0.000000000000005,-0.000000000000016,-0.010344827586185,0.000000000000018,0.010344827586186,0.011864406779672,-0.000000000000006,2 -10462,10520,10522,10580,-0.087931034482859,-0.237288135593036,-0.082758620689769,-0.243220338982884,-0.082758620689763,-0.231355932203208,-0.077586206896672,-0.237288135593056,-0.011864406779678,0.000000000000005,-0.000000000000018,-0.010344827586186,0.000000000000020,0.010344827586187,0.011864406779676,-0.000000000000006,2 -10463,10521,10523,10581,-0.087931034482854,-0.225423728813354,-0.082758620689763,-0.231355932203208,-0.082758620689757,-0.219491525423522,-0.077586206896666,-0.225423728813375,-0.011864406779687,0.000000000000005,-0.000000000000020,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779685,-0.000000000000006,2 -10464,10522,10524,10582,-0.087931034482849,-0.213559322033677,-0.082758620689757,-0.219491525423522,-0.082758620689751,-0.207627118643856,-0.077586206896660,-0.213559322033701,-0.011864406779666,0.000000000000005,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779664,-0.000000000000006,2 -10465,10523,10525,10583,-0.087931034482843,-0.201694915253995,-0.082758620689751,-0.207627118643856,-0.082758620689746,-0.195762711864160,-0.077586206896654,-0.201694915254021,-0.011864406779698,0.000000000000005,-0.000000000000024,-0.010344827586189,0.000000000000027,0.010344827586190,0.011864406779695,-0.000000000000006,2 -10466,10524,10526,10584,-0.087931034482838,-0.189830508474314,-0.082758620689746,-0.195762711864160,-0.082758620689740,-0.183898305084497,-0.077586206896647,-0.189830508474343,-0.011864406779664,0.000000000000005,-0.000000000000027,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779662,-0.000000000000006,2 -10467,10525,10527,10585,-0.087931034482833,-0.177966101694637,-0.082758620689740,-0.183898305084497,-0.082758620689734,-0.172033898304808,-0.077586206896641,-0.177966101694668,-0.011864406779690,0.000000000000005,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779688,-0.000000000000006,2 -10468,10526,10528,10586,-0.087931034482828,-0.166101694914956,-0.082758620689734,-0.172033898304808,-0.082758620689728,-0.160169491525137,-0.077586206896635,-0.166101694914989,-0.011864406779672,0.000000000000005,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779670,-0.000000000000006,2 -10469,10527,10529,10587,-0.087931034482822,-0.154237288135288,-0.082758620689728,-0.160169491525137,-0.082758620689723,-0.148305084745474,-0.077586206896629,-0.154237288135323,-0.011864406779664,0.000000000000005,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779662,-0.000000000000006,2 -10470,10528,10530,10588,-0.087931034482817,-0.142372881355616,-0.082758620689723,-0.148305084745474,-0.082758620689717,-0.136440677965794,-0.077586206896623,-0.142372881355652,-0.011864406779681,0.000000000000005,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779679,-0.000000000000006,2 -10471,10529,10531,10589,-0.087931034482812,-0.130508474575937,-0.082758620689717,-0.136440677965794,-0.082758620689711,-0.124576271186118,-0.077586206896616,-0.130508474575975,-0.011864406779676,0.000000000000005,-0.000000000000038,-0.010344827586195,0.000000000000039,0.010344827586196,0.011864406779675,-0.000000000000006,2 -10472,10530,10532,10590,-0.087931034482807,-0.118644067796257,-0.082758620689711,-0.124576271186118,-0.082758620689706,-0.112711864406437,-0.077586206896610,-0.118644067796298,-0.011864406779683,0.000000000000005,-0.000000000000039,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779680,-0.000000000000006,2 -10473,10531,10533,10591,-0.087931034482801,-0.106779661016579,-0.082758620689706,-0.112711864406437,-0.082758620689700,-0.100847457626764,-0.077586206896604,-0.106779661016622,-0.011864406779674,0.000000000000005,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779672,-0.000000000000006,2 -10474,10532,10534,10592,-0.087931034482796,-0.094915254236900,-0.082758620689700,-0.100847457626764,-0.082758620689694,-0.088983050847082,-0.077586206896598,-0.094915254236946,-0.011864406779683,0.000000000000005,-0.000000000000044,-0.010344827586198,0.000000000000047,0.010344827586199,0.011864406779680,-0.000000000000006,2 -10475,10533,10535,10593,-0.087931034482791,-0.083050847457218,-0.082758620689694,-0.088983050847082,-0.082758620689688,-0.077118644067401,-0.077586206896591,-0.083050847457265,-0.011864406779683,0.000000000000005,-0.000000000000047,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779680,-0.000000000000006,2 -10476,10534,10536,10594,-0.087931034482786,-0.071186440677539,-0.082758620689688,-0.077118644067401,-0.082758620689683,-0.065254237287728,-0.077586206896585,-0.071186440677589,-0.011864406779674,0.000000000000005,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779672,-0.000000000000006,2 -10477,10535,10537,10595,-0.087931034482780,-0.059322033897861,-0.082758620689683,-0.065254237287728,-0.082758620689677,-0.053389830508046,-0.077586206896579,-0.059322033897913,-0.011864406779683,0.000000000000005,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779680,-0.000000000000006,2 -10478,10536,10538,10596,-0.087931034482775,-0.047457627118180,-0.082758620689677,-0.053389830508046,-0.082758620689671,-0.041525423728368,-0.077586206896573,-0.047457627118235,-0.011864406779679,0.000000000000005,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779677,-0.000000000000006,2 -10479,10537,10539,10597,-0.087931034482770,-0.035593220338502,-0.082758620689671,-0.041525423728368,-0.082758620689665,-0.029661016948692,-0.077586206896567,-0.035593220338559,-0.011864406779678,0.000000000000005,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779675,-0.000000000000006,2 -10480,10538,10540,10598,-0.087931034482765,-0.023728813558822,-0.082758620689665,-0.029661016948692,-0.082758620689660,-0.017796610169010,-0.077586206896560,-0.023728813558881,-0.011864406779683,0.000000000000005,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586205,0.011864406779680,-0.000000000000006,2 -10481,10539,10541,10599,-0.087931034482760,-0.011864406779143,-0.082758620689660,-0.017796610169010,-0.082758620689654,-0.005932203389338,-0.077586206896554,-0.011864406779205,-0.011864406779674,0.000000000000005,-0.000000000000060,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779672,-0.000000000000006,2 -10482,10540,10542,10600,-0.087931034482754,0.000000000000530,-0.082758620689654,-0.005932203389338,-0.082758620689648,0.005932203390335,-0.077586206896548,0.000000000000468,-0.011864406779673,0.000000000000005,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000006,2 -10483,10541,10543,10601,-0.087931034482749,0.011864406780186,-0.082758620689648,0.005932203390335,-0.082758620689642,0.017796610169975,-0.077586206896542,0.011864406780125,-0.011864406779639,0.000000000000005,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586208,0.011864406779641,-0.000000000000006,2 -10484,10542,10544,10602,-0.087931034482744,0.023728813559826,-0.082758620689642,0.017796610169975,-0.082758620689637,0.029661016949618,-0.077586206896535,0.023728813559767,-0.011864406779641,0.000000000000005,-0.000000000000060,-0.010344827586208,0.000000000000058,0.010344827586209,0.011864406779644,-0.000000000000006,2 -10485,10543,10545,10603,-0.087931034482739,0.035593220339467,-0.082758620689637,0.029661016949618,-0.082758620689631,0.041525423729259,-0.077586206896529,0.035593220339410,-0.011864406779640,0.000000000000005,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779642,-0.000000000000006,2 -10486,10544,10546,10604,-0.087931034482733,0.047457627119107,-0.082758620689631,0.041525423729259,-0.082758620689625,0.053389830508900,-0.077586206896523,0.047457627119052,-0.011864406779640,0.000000000000005,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586211,0.011864406779643,-0.000000000000006,2 -10487,10545,10547,10605,-0.087931034482728,0.059322033898748,-0.082758620689625,0.053389830508900,-0.082758620689620,0.065254237288543,-0.077586206896517,0.059322033898695,-0.011864406779641,0.000000000000005,-0.000000000000053,-0.010344827586211,0.000000000000051,0.010344827586212,0.011864406779644,-0.000000000000006,2 -10488,10546,10548,10606,-0.087931034482723,0.071186440678388,-0.082758620689620,0.065254237288543,-0.082758620689614,0.077118644068183,-0.077586206896511,0.071186440678338,-0.011864406779639,0.000000000000005,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586213,0.011864406779641,-0.000000000000006,2 -10489,10547,10549,10607,-0.087931034482718,0.083050847458028,-0.082758620689614,0.077118644068183,-0.082758620689608,0.088983050847825,-0.077586206896504,0.083050847457980,-0.011864406779641,0.000000000000005,-0.000000000000049,-0.010344827586213,0.000000000000046,0.010344827586214,0.011864406779644,-0.000000000000006,2 -10490,10548,10550,10608,-0.087931034482712,0.094915254237669,-0.082758620689608,0.088983050847825,-0.082758620689602,0.100847457627468,-0.077586206896498,0.094915254237624,-0.011864406779641,0.000000000000005,-0.000000000000046,-0.010344827586214,0.000000000000044,0.010344827586215,0.011864406779644,-0.000000000000006,2 -10491,10549,10551,10609,-0.087931034482707,0.106779661017309,-0.082758620689602,0.100847457627468,-0.082758620689597,0.112711864407108,-0.077586206896492,0.106779661017266,-0.011864406779639,0.000000000000005,-0.000000000000044,-0.010344827586215,0.000000000000042,0.010344827586216,0.011864406779641,-0.000000000000006,2 -10492,10550,10552,10610,-0.087931034482702,0.118644067796949,-0.082758620689597,0.112711864407108,-0.082758620689591,0.124576271186750,-0.077586206896486,0.118644067796909,-0.011864406779641,0.000000000000005,-0.000000000000042,-0.010344827586216,0.000000000000040,0.010344827586217,0.011864406779644,-0.000000000000006,2 -10493,10551,10553,10611,-0.087931034482697,0.130508474576594,-0.082758620689591,0.124576271186750,-0.082758620689585,0.136440677966399,-0.077586206896479,0.130508474576555,-0.011864406779648,0.000000000000005,-0.000000000000040,-0.010344827586217,0.000000000000038,0.010344827586218,0.011864406779649,-0.000000000000006,2 -10494,10552,10554,10612,-0.087931034482691,0.142372881356238,-0.082758620689585,0.136440677966399,-0.082758620689579,0.148305084746041,-0.077586206896473,0.142372881356201,-0.011864406779641,0.000000000000005,-0.000000000000038,-0.010344827586218,0.000000000000035,0.010344827586219,0.011864406779643,-0.000000000000006,2 -10495,10553,10555,10613,-0.087931034482686,0.154237288135877,-0.082758620689579,0.148305084746041,-0.082758620689574,0.160169491525678,-0.077586206896467,0.154237288135842,-0.011864406779636,0.000000000000005,-0.000000000000035,-0.010344827586219,0.000000000000034,0.010344827586220,0.011864406779638,-0.000000000000006,2 -10496,10554,10556,10614,-0.087931034482681,0.166101694915514,-0.082758620689574,0.160169491525678,-0.082758620689568,0.172033898305317,-0.077586206896461,0.166101694915481,-0.011864406779638,0.000000000000005,-0.000000000000034,-0.010344827586220,0.000000000000032,0.010344827586221,0.011864406779640,-0.000000000000006,2 -10497,10555,10557,10615,-0.087931034482676,0.177966101695155,-0.082758620689568,0.172033898305317,-0.082758620689562,0.183898305084962,-0.077586206896454,0.177966101695125,-0.011864406779643,0.000000000000005,-0.000000000000032,-0.010344827586221,0.000000000000029,0.010344827586222,0.011864406779646,-0.000000000000006,2 -10498,10556,10558,10616,-0.087931034482670,0.189830508474795,-0.082758620689562,0.183898305084962,-0.082758620689556,0.195762711864599,-0.077586206896448,0.189830508474767,-0.011864406779636,0.000000000000005,-0.000000000000029,-0.010344827586222,0.000000000000028,0.010344827586223,0.011864406779638,-0.000000000000006,2 -10499,10557,10559,10617,-0.087931034482665,0.201694915254436,-0.082758620689556,0.195762711864599,-0.082758620689551,0.207627118644246,-0.077586206896442,0.201694915254410,-0.011864406779645,0.000000000000005,-0.000000000000028,-0.010344827586223,0.000000000000024,0.010344827586224,0.011864406779648,-0.000000000000006,2 -10500,10558,10560,10618,-0.087931034482660,0.213559322034079,-0.082758620689551,0.207627118644246,-0.082758620689545,0.219491525423888,-0.077586206896436,0.213559322034055,-0.011864406779642,0.000000000000005,-0.000000000000024,-0.010344827586224,0.000000000000023,0.010344827586225,0.011864406779643,-0.000000000000006,2 -10501,10559,10561,10619,-0.087931034482655,0.225423728813723,-0.082758620689545,0.219491525423888,-0.082758620689539,0.231355932203535,-0.077586206896430,0.225423728813701,-0.011864406779646,0.000000000000005,-0.000000000000023,-0.010344827586225,0.000000000000021,0.010344827586226,0.011864406779648,-0.000000000000006,2 -10502,10560,10562,10620,-0.087931034482649,0.237288135593369,-0.082758620689539,0.231355932203535,-0.082758620689534,0.243220338983182,-0.077586206896423,0.237288135593349,-0.011864406779646,0.000000000000005,-0.000000000000021,-0.010344827586226,0.000000000000019,0.010344827586227,0.011864406779648,-0.000000000000006,2 -10503,10561,10563,10621,-0.087931034482644,0.249152542373009,-0.082758620689534,0.243220338983182,-0.082758620689528,0.255084745762819,-0.077586206896417,0.249152542372992,-0.011864406779636,0.000000000000005,-0.000000000000019,-0.010344827586227,0.000000000000016,0.010344827586228,0.011864406779638,-0.000000000000006,2 -10504,10562,10564,10622,-0.087931034482639,0.261016949152646,-0.082758620689528,0.255084745762819,-0.082758620689522,0.266949152542458,-0.077586206896411,0.261016949152631,-0.011864406779638,0.000000000000005,-0.000000000000016,-0.010344827586228,0.000000000000013,0.010344827586229,0.011864406779641,-0.000000000000006,2 -10505,10563,10565,10623,-0.087931034482634,0.272881355932288,-0.082758620689522,0.266949152542458,-0.082758620689516,0.278813559322106,-0.077586206896405,0.272881355932275,-0.011864406779647,0.000000000000005,-0.000000000000013,-0.010344827586229,0.000000000000012,0.010344827586230,0.011864406779648,-0.000000000000006,2 -10506,10564,10566,10624,-0.087931034482629,0.284745762711935,-0.082758620689516,0.278813559322106,-0.082758620689511,0.290677966101754,-0.077586206896398,0.284745762711924,-0.011864406779647,0.000000000000005,-0.000000000000012,-0.010344827586230,0.000000000000009,0.010344827586231,0.011864406779650,-0.000000000000006,2 -10507,10565,10567,10625,-0.087931034482623,0.296610169491585,-0.082758620689511,0.290677966101754,-0.082758620689505,0.302542372881407,-0.077586206896392,0.296610169491576,-0.011864406779652,0.000000000000005,-0.000000000000009,-0.010344827586231,0.000000000000008,0.010344827586232,0.011864406779653,-0.000000000000006,2 -10508,10566,10568,10626,-0.087931034482618,0.308474576271232,-0.082758620689505,0.302542372881407,-0.082758620689499,0.314406779661051,-0.077586206896386,0.308474576271225,-0.011864406779643,0.000000000000005,-0.000000000000008,-0.010344827586232,0.000000000000006,0.010344827586233,0.011864406779646,-0.000000000000006,2 -10509,10567,10569,10627,-0.087931034482613,0.320338983050880,-0.082758620689499,0.314406779661051,-0.082758620689493,0.326271186440705,-0.077586206896380,0.320338983050875,-0.011864406779653,0.000000000000005,-0.000000000000006,-0.010344827586233,0.000000000000004,0.010344827586234,0.011864406779654,-0.000000000000006,2 -10510,10568,10570,10628,-0.087931034482608,0.332203389830528,-0.082758620689493,0.326271186440705,-0.082758620689488,0.338135593220349,-0.077586206896374,0.332203389830525,-0.011864406779643,0.000000000000005,-0.000000000000004,-0.010344827586234,0.000000000000002,0.010344827586235,0.011864406779645,-0.000000000000006,2 -8002,10511,10569,10629,-0.082758620689482,0.350000000000000,-0.087931034482602,0.344067796610175,-0.082758620689488,0.338135593220349,-0.077586206896367,0.344067796610174,-0.000000000000000,0.010344827586236,-0.011864406779650,0.000000000000005,-0.000000000000002,-0.010344827586235,0.011864406779652,-0.000000000000006,2 -8933,10512,10572,10630,-0.072413793103643,-0.350000000000000,-0.077586206896728,-0.344067796610158,-0.072413793103636,-0.338135593220317,-0.067241379310551,-0.344067796610159,-0.000000000000000,-0.010344827586177,-0.011864406779684,0.000000000000006,0.000000000000002,0.010344827586178,0.011864406779682,-0.000000000000007,2 -10513,10571,10573,10631,-0.077586206896722,-0.332203389830477,-0.072413793103636,-0.338135593220317,-0.072413793103629,-0.326271186440641,-0.067241379310543,-0.332203389830480,-0.011864406779677,0.000000000000006,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779675,-0.000000000000007,2 -10514,10572,10574,10632,-0.077586206896716,-0.320338983050801,-0.072413793103629,-0.326271186440641,-0.072413793103623,-0.314406779660967,-0.067241379310536,-0.320338983050806,-0.011864406779675,0.000000000000006,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779673,-0.000000000000007,2 -10515,10573,10575,10633,-0.077586206896710,-0.308474576271120,-0.072413793103623,-0.314406779660967,-0.072413793103616,-0.302542372881281,-0.067241379310529,-0.308474576271127,-0.011864406779687,0.000000000000006,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779684,-0.000000000000007,2 -10516,10574,10576,10634,-0.077586206896703,-0.296610169491443,-0.072413793103616,-0.302542372881281,-0.072413793103609,-0.290677966101614,-0.067241379310522,-0.296610169491452,-0.011864406779667,0.000000000000006,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779666,-0.000000000000007,2 -10517,10575,10577,10635,-0.077586206896697,-0.284745762711762,-0.072413793103609,-0.290677966101614,-0.072413793103602,-0.278813559321920,-0.067241379310514,-0.284745762711773,-0.011864406779696,0.000000000000006,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779693,-0.000000000000007,2 -10518,10576,10578,10636,-0.077586206896691,-0.272881355932081,-0.072413793103602,-0.278813559321920,-0.072413793103596,-0.266949152542255,-0.067241379310507,-0.272881355932094,-0.011864406779665,0.000000000000006,-0.000000000000012,-0.010344827586183,0.000000000000013,0.010344827586184,0.011864406779664,-0.000000000000007,2 -10519,10577,10579,10637,-0.077586206896685,-0.261016949152407,-0.072413793103596,-0.266949152542255,-0.072413793103589,-0.255084745762574,-0.067241379310500,-0.261016949152422,-0.011864406779683,0.000000000000006,-0.000000000000013,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779680,-0.000000000000007,2 -10520,10578,10580,10638,-0.077586206896679,-0.249152542372729,-0.072413793103589,-0.255084745762574,-0.072413793103582,-0.243220338982903,-0.067241379310493,-0.249152542372747,-0.011864406779672,0.000000000000006,-0.000000000000016,-0.010344827586185,0.000000000000019,0.010344827586186,0.011864406779670,-0.000000000000007,2 -10521,10579,10581,10639,-0.077586206896672,-0.237288135593056,-0.072413793103582,-0.243220338982903,-0.072413793103576,-0.231355932203228,-0.067241379310485,-0.237288135593075,-0.011864406779676,0.000000000000006,-0.000000000000019,-0.010344827586186,0.000000000000021,0.010344827586187,0.011864406779674,-0.000000000000007,2 -10522,10580,10582,10640,-0.077586206896666,-0.225423728813375,-0.072413793103576,-0.231355932203228,-0.072413793103569,-0.219491525423544,-0.067241379310478,-0.225423728813397,-0.011864406779685,0.000000000000006,-0.000000000000021,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779683,-0.000000000000007,2 -10523,10581,10583,10641,-0.077586206896660,-0.213559322033701,-0.072413793103569,-0.219491525423544,-0.072413793103562,-0.207627118643881,-0.067241379310471,-0.213559322033724,-0.011864406779664,0.000000000000006,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779663,-0.000000000000007,2 -10524,10582,10584,10642,-0.077586206896654,-0.201694915254021,-0.072413793103562,-0.207627118643881,-0.072413793103555,-0.195762711864188,-0.067241379310464,-0.201694915254047,-0.011864406779695,0.000000000000006,-0.000000000000024,-0.010344827586189,0.000000000000028,0.010344827586190,0.011864406779691,-0.000000000000007,2 -10525,10583,10585,10643,-0.077586206896647,-0.189830508474343,-0.072413793103555,-0.195762711864188,-0.072413793103549,-0.183898305084526,-0.067241379310457,-0.189830508474371,-0.011864406779662,0.000000000000006,-0.000000000000028,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779661,-0.000000000000007,2 -10526,10584,10586,10644,-0.077586206896641,-0.177966101694668,-0.072413793103549,-0.183898305084526,-0.072413793103542,-0.172033898304840,-0.067241379310449,-0.177966101694698,-0.011864406779688,0.000000000000006,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779685,-0.000000000000007,2 -10527,10585,10587,10645,-0.077586206896635,-0.166101694914989,-0.072413793103542,-0.172033898304840,-0.072413793103535,-0.160169491525171,-0.067241379310442,-0.166101694915022,-0.011864406779670,0.000000000000006,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779668,-0.000000000000007,2 -10528,10586,10588,10646,-0.077586206896629,-0.154237288135323,-0.072413793103535,-0.160169491525171,-0.072413793103528,-0.148305084745510,-0.067241379310435,-0.154237288135358,-0.011864406779662,0.000000000000006,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779661,-0.000000000000007,2 -10529,10587,10589,10647,-0.077586206896623,-0.142372881355652,-0.072413793103528,-0.148305084745510,-0.072413793103522,-0.136440677965832,-0.067241379310428,-0.142372881355689,-0.011864406779679,0.000000000000006,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779677,-0.000000000000007,2 -10530,10588,10590,10648,-0.077586206896616,-0.130508474575975,-0.072413793103522,-0.136440677965832,-0.072413793103515,-0.124576271186158,-0.067241379310420,-0.130508474576014,-0.011864406779675,0.000000000000006,-0.000000000000038,-0.010344827586195,0.000000000000040,0.010344827586196,0.011864406779673,-0.000000000000007,2 -10531,10589,10591,10649,-0.077586206896610,-0.118644067796298,-0.072413793103515,-0.124576271186158,-0.072413793103508,-0.112711864406479,-0.067241379310413,-0.118644067796339,-0.011864406779680,0.000000000000006,-0.000000000000040,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779678,-0.000000000000007,2 -10532,10590,10592,10650,-0.077586206896604,-0.106779661016622,-0.072413793103508,-0.112711864406479,-0.072413793103502,-0.100847457626808,-0.067241379310406,-0.106779661016665,-0.011864406779672,0.000000000000006,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779670,-0.000000000000007,2 -10533,10591,10593,10651,-0.077586206896598,-0.094915254236946,-0.072413793103502,-0.100847457626808,-0.072413793103495,-0.088983050847129,-0.067241379310399,-0.094915254236991,-0.011864406779680,0.000000000000006,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779678,-0.000000000000007,2 -10534,10592,10594,10652,-0.077586206896591,-0.083050847457265,-0.072413793103495,-0.088983050847129,-0.072413793103488,-0.077118644067450,-0.067241379310391,-0.083050847457313,-0.011864406779680,0.000000000000006,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779678,-0.000000000000007,2 -10535,10593,10595,10653,-0.077586206896585,-0.071186440677589,-0.072413793103488,-0.077118644067450,-0.072413793103481,-0.065254237287779,-0.067241379310384,-0.071186440677639,-0.011864406779672,0.000000000000006,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779670,-0.000000000000007,2 -10536,10594,10596,10654,-0.077586206896579,-0.059322033897913,-0.072413793103481,-0.065254237287779,-0.072413793103475,-0.053389830508100,-0.067241379310377,-0.059322033897965,-0.011864406779680,0.000000000000006,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779678,-0.000000000000007,2 -10537,10595,10597,10655,-0.077586206896573,-0.047457627118235,-0.072413793103475,-0.053389830508100,-0.072413793103468,-0.041525423728424,-0.067241379310370,-0.047457627118289,-0.011864406779677,0.000000000000006,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779675,-0.000000000000007,2 -10538,10596,10598,10656,-0.077586206896567,-0.035593220338559,-0.072413793103468,-0.041525423728424,-0.072413793103461,-0.029661016948750,-0.067241379310363,-0.035593220338615,-0.011864406779675,0.000000000000006,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779673,-0.000000000000007,2 -10539,10597,10599,10657,-0.077586206896560,-0.023728813558881,-0.072413793103461,-0.029661016948750,-0.072413793103454,-0.017796610169071,-0.067241379310355,-0.023728813558940,-0.011864406779680,0.000000000000006,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586206,0.011864406779678,-0.000000000000007,2 -10540,10598,10600,10658,-0.077586206896554,-0.011864406779205,-0.072413793103454,-0.017796610169071,-0.072413793103448,-0.005932203389400,-0.067241379310348,-0.011864406779266,-0.011864406779672,0.000000000000006,-0.000000000000060,-0.010344827586206,0.000000000000062,0.010344827586206,0.011864406779670,-0.000000000000007,2 -10541,10599,10601,10659,-0.077586206896548,0.000000000000468,-0.072413793103448,-0.005932203389400,-0.072413793103441,0.005932203390273,-0.067241379310341,0.000000000000405,-0.011864406779673,0.000000000000006,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000007,2 -10542,10600,10602,10660,-0.077586206896542,0.011864406780125,-0.072413793103441,0.005932203390273,-0.072413793103434,0.017796610169915,-0.067241379310334,0.011864406780063,-0.011864406779641,0.000000000000006,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586208,0.011864406779643,-0.000000000000007,2 -10543,10601,10603,10661,-0.077586206896535,0.023728813559767,-0.072413793103434,0.017796610169915,-0.072413793103428,0.029661016949560,-0.067241379310326,0.023728813559708,-0.011864406779644,0.000000000000006,-0.000000000000060,-0.010344827586208,0.000000000000058,0.010344827586209,0.011864406779646,-0.000000000000007,2 -10544,10602,10604,10662,-0.077586206896529,0.035593220339410,-0.072413793103428,0.029661016949560,-0.072413793103421,0.041525423729203,-0.067241379310319,0.035593220339353,-0.011864406779642,0.000000000000006,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779644,-0.000000000000007,2 -10545,10603,10605,10663,-0.077586206896523,0.047457627119052,-0.072413793103421,0.041525423729203,-0.072413793103414,0.053389830508847,-0.067241379310312,0.047457627118998,-0.011864406779643,0.000000000000006,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586212,0.011864406779645,-0.000000000000007,2 -10546,10604,10606,10664,-0.077586206896517,0.059322033898695,-0.072413793103414,0.053389830508847,-0.072413793103407,0.065254237288492,-0.067241379310305,0.059322033898643,-0.011864406779644,0.000000000000006,-0.000000000000053,-0.010344827586212,0.000000000000051,0.010344827586212,0.011864406779646,-0.000000000000007,2 -10547,10605,10607,10665,-0.077586206896511,0.071186440678338,-0.072413793103407,0.065254237288492,-0.072413793103401,0.077118644068134,-0.067241379310298,0.071186440678288,-0.011864406779641,0.000000000000006,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586214,0.011864406779643,-0.000000000000007,2 -10548,10606,10608,10666,-0.077586206896504,0.083050847457980,-0.072413793103401,0.077118644068134,-0.072413793103394,0.088983050847779,-0.067241379310290,0.083050847457933,-0.011864406779644,0.000000000000006,-0.000000000000049,-0.010344827586214,0.000000000000046,0.010344827586215,0.011864406779646,-0.000000000000007,2 -10549,10607,10609,10667,-0.077586206896498,0.094915254237624,-0.072413793103394,0.088983050847779,-0.072413793103387,0.100847457627424,-0.067241379310283,0.094915254237579,-0.011864406779644,0.000000000000006,-0.000000000000046,-0.010344827586215,0.000000000000044,0.010344827586216,0.011864406779646,-0.000000000000007,2 -10550,10608,10610,10668,-0.077586206896492,0.106779661017266,-0.072413793103387,0.100847457627424,-0.072413793103380,0.112711864407066,-0.067241379310276,0.106779661017223,-0.011864406779641,0.000000000000006,-0.000000000000044,-0.010344827586216,0.000000000000042,0.010344827586217,0.011864406779643,-0.000000000000007,2 -10551,10609,10611,10669,-0.077586206896486,0.118644067796909,-0.072413793103380,0.112711864407066,-0.072413793103374,0.124576271186711,-0.067241379310269,0.118644067796868,-0.011864406779644,0.000000000000006,-0.000000000000042,-0.010344827586217,0.000000000000039,0.010344827586218,0.011864406779646,-0.000000000000007,2 -10552,10610,10612,10670,-0.077586206896479,0.130508474576555,-0.072413793103374,0.124576271186711,-0.072413793103367,0.136440677966361,-0.067241379310261,0.130508474576516,-0.011864406779649,0.000000000000006,-0.000000000000039,-0.010344827586218,0.000000000000038,0.010344827586219,0.011864406779651,-0.000000000000007,2 -10553,10611,10613,10671,-0.077586206896473,0.142372881356201,-0.072413793103367,0.136440677966361,-0.072413793103360,0.148305084746005,-0.067241379310254,0.142372881356165,-0.011864406779643,0.000000000000006,-0.000000000000038,-0.010344827586219,0.000000000000035,0.010344827586220,0.011864406779646,-0.000000000000007,2 -10554,10612,10614,10672,-0.077586206896467,0.154237288135842,-0.072413793103360,0.148305084746005,-0.072413793103354,0.160169491525644,-0.067241379310247,0.154237288135808,-0.011864406779638,0.000000000000006,-0.000000000000035,-0.010344827586220,0.000000000000034,0.010344827586221,0.011864406779640,-0.000000000000007,2 -10555,10613,10615,10673,-0.077586206896461,0.166101694915481,-0.072413793103354,0.160169491525644,-0.072413793103347,0.172033898305286,-0.067241379310240,0.166101694915448,-0.011864406779640,0.000000000000006,-0.000000000000034,-0.010344827586221,0.000000000000032,0.010344827586222,0.011864406779642,-0.000000000000007,2 -10556,10614,10616,10674,-0.077586206896454,0.177966101695125,-0.072413793103347,0.172033898305286,-0.072413793103340,0.183898305084933,-0.067241379310232,0.177966101695094,-0.011864406779646,0.000000000000006,-0.000000000000032,-0.010344827586222,0.000000000000029,0.010344827586223,0.011864406779649,-0.000000000000007,2 -10557,10615,10617,10675,-0.077586206896448,0.189830508474767,-0.072413793103340,0.183898305084933,-0.072413793103333,0.195762711864572,-0.067241379310225,0.189830508474738,-0.011864406779638,0.000000000000006,-0.000000000000029,-0.010344827586223,0.000000000000027,0.010344827586224,0.011864406779640,-0.000000000000007,2 -10558,10616,10618,10676,-0.077586206896442,0.201694915254410,-0.072413793103333,0.195762711864572,-0.072413793103327,0.207627118644222,-0.067241379310218,0.201694915254384,-0.011864406779648,0.000000000000006,-0.000000000000027,-0.010344827586224,0.000000000000024,0.010344827586225,0.011864406779651,-0.000000000000007,2 -10559,10617,10619,10677,-0.077586206896436,0.213559322034055,-0.072413793103327,0.207627118644222,-0.072413793103320,0.219491525423865,-0.067241379310211,0.213559322034032,-0.011864406779643,0.000000000000006,-0.000000000000024,-0.010344827586225,0.000000000000023,0.010344827586226,0.011864406779644,-0.000000000000007,2 -10560,10618,10620,10678,-0.077586206896430,0.225423728813701,-0.072413793103320,0.219491525423865,-0.072413793103313,0.231355932203515,-0.067241379310204,0.225423728813679,-0.011864406779648,0.000000000000006,-0.000000000000023,-0.010344827586226,0.000000000000020,0.010344827586227,0.011864406779651,-0.000000000000007,2 -10561,10619,10621,10679,-0.077586206896423,0.237288135593349,-0.072413793103313,0.231355932203515,-0.072413793103306,0.243220338983164,-0.067241379310196,0.237288135593329,-0.011864406779648,0.000000000000006,-0.000000000000020,-0.010344827586227,0.000000000000019,0.010344827586228,0.011864406779650,-0.000000000000007,2 -10562,10620,10622,10680,-0.077586206896417,0.249152542372992,-0.072413793103306,0.243220338983164,-0.072413793103300,0.255084745762803,-0.067241379310189,0.249152542372974,-0.011864406779638,0.000000000000006,-0.000000000000019,-0.010344827586228,0.000000000000016,0.010344827586229,0.011864406779640,-0.000000000000007,2 -10563,10621,10623,10681,-0.077586206896411,0.261016949152631,-0.072413793103300,0.255084745762803,-0.072413793103293,0.266949152542445,-0.067241379310182,0.261016949152616,-0.011864406779641,0.000000000000006,-0.000000000000016,-0.010344827586229,0.000000000000014,0.010344827586230,0.011864406779643,-0.000000000000007,2 -10564,10622,10624,10682,-0.077586206896405,0.272881355932275,-0.072413793103293,0.266949152542445,-0.072413793103286,0.278813559322093,-0.067241379310175,0.272881355932263,-0.011864406779648,0.000000000000006,-0.000000000000014,-0.010344827586230,0.000000000000012,0.010344827586231,0.011864406779649,-0.000000000000007,2 -10565,10623,10625,10683,-0.077586206896398,0.284745762711924,-0.072413793103286,0.278813559322093,-0.072413793103280,0.290677966101745,-0.067241379310167,0.284745762711914,-0.011864406779650,0.000000000000006,-0.000000000000012,-0.010344827586231,0.000000000000009,0.010344827586232,0.011864406779653,-0.000000000000007,2 -10566,10624,10626,10684,-0.077586206896392,0.296610169491576,-0.072413793103280,0.290677966101745,-0.072413793103273,0.302542372881398,-0.067241379310160,0.296610169491567,-0.011864406779653,0.000000000000006,-0.000000000000009,-0.010344827586232,0.000000000000008,0.010344827586233,0.011864406779654,-0.000000000000007,2 -10567,10625,10627,10685,-0.077586206896386,0.308474576271225,-0.072413793103273,0.302542372881398,-0.072413793103266,0.314406779661045,-0.067241379310153,0.308474576271218,-0.011864406779646,0.000000000000006,-0.000000000000008,-0.010344827586233,0.000000000000005,0.010344827586234,0.011864406779649,-0.000000000000007,2 -10568,10626,10628,10686,-0.077586206896380,0.320338983050875,-0.072413793103266,0.314406779661045,-0.072413793103259,0.326271186440700,-0.067241379310146,0.320338983050870,-0.011864406779654,0.000000000000006,-0.000000000000005,-0.010344827586234,0.000000000000004,0.010344827586235,0.011864406779656,-0.000000000000007,2 -10569,10627,10629,10687,-0.077586206896374,0.332203389830525,-0.072413793103259,0.326271186440700,-0.072413793103253,0.338135593220347,-0.067241379310138,0.332203389830522,-0.011864406779645,0.000000000000006,-0.000000000000004,-0.010344827586235,0.000000000000002,0.010344827586236,0.011864406779647,-0.000000000000007,2 -7988,10570,10628,10688,-0.072413793103246,0.350000000000000,-0.077586206896367,0.344067796610174,-0.072413793103253,0.338135593220347,-0.067241379310131,0.344067796610173,-0.000000000000000,0.010344827586237,-0.011864406779652,0.000000000000006,-0.000000000000002,-0.010344827586236,0.011864406779655,-0.000000000000007,2 -8934,10571,10631,10689,-0.062068965517465,-0.350000000000000,-0.067241379310551,-0.344067796610159,-0.062068965517458,-0.338135593220319,-0.056896551724373,-0.344067796610160,-0.000000000000000,-0.010344827586177,-0.011864406779682,0.000000000000007,0.000000000000002,0.010344827586178,0.011864406779680,-0.000000000000008,2 -10572,10630,10632,10690,-0.067241379310543,-0.332203389830480,-0.062068965517458,-0.338135593220319,-0.062068965517450,-0.326271186440645,-0.056896551724365,-0.332203389830484,-0.011864406779675,0.000000000000007,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779672,-0.000000000000008,2 -10573,10631,10633,10691,-0.067241379310536,-0.320338983050806,-0.062068965517450,-0.326271186440645,-0.062068965517442,-0.314406779660972,-0.056896551724356,-0.320338983050811,-0.011864406779673,0.000000000000007,-0.000000000000004,-0.010344827586179,0.000000000000005,0.010344827586180,0.011864406779672,-0.000000000000008,2 -10574,10632,10634,10692,-0.067241379310529,-0.308474576271127,-0.062068965517442,-0.314406779660972,-0.062068965517435,-0.302542372881289,-0.056896551724348,-0.308474576271134,-0.011864406779684,0.000000000000007,-0.000000000000005,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779681,-0.000000000000008,2 -10575,10633,10635,10693,-0.067241379310522,-0.296610169491452,-0.062068965517435,-0.302542372881289,-0.062068965517427,-0.290677966101624,-0.056896551724340,-0.296610169491461,-0.011864406779666,0.000000000000007,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779665,-0.000000000000008,2 -10576,10634,10636,10694,-0.067241379310514,-0.284745762711773,-0.062068965517427,-0.290677966101624,-0.062068965517419,-0.278813559321933,-0.056896551724332,-0.284745762711784,-0.011864406779693,0.000000000000007,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779690,-0.000000000000008,2 -10577,10635,10637,10695,-0.067241379310507,-0.272881355932094,-0.062068965517419,-0.278813559321933,-0.062068965517411,-0.266949152542269,-0.056896551724324,-0.272881355932107,-0.011864406779664,0.000000000000007,-0.000000000000012,-0.010344827586183,0.000000000000014,0.010344827586184,0.011864406779663,-0.000000000000008,2 -10578,10636,10638,10696,-0.067241379310500,-0.261016949152422,-0.062068965517411,-0.266949152542269,-0.062068965517404,-0.255084745762590,-0.056896551724315,-0.261016949152437,-0.011864406779680,0.000000000000007,-0.000000000000014,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779677,-0.000000000000008,2 -10579,10637,10639,10697,-0.067241379310493,-0.249152542372747,-0.062068965517404,-0.255084745762590,-0.062068965517396,-0.243220338982922,-0.056896551724307,-0.249152542372765,-0.011864406779670,0.000000000000007,-0.000000000000016,-0.010344827586185,0.000000000000019,0.010344827586186,0.011864406779667,-0.000000000000008,2 -10580,10638,10640,10698,-0.067241379310485,-0.237288135593075,-0.062068965517396,-0.243220338982922,-0.062068965517388,-0.231355932203249,-0.056896551724299,-0.237288135593095,-0.011864406779674,0.000000000000007,-0.000000000000019,-0.010344827586186,0.000000000000020,0.010344827586187,0.011864406779672,-0.000000000000008,2 -10581,10639,10641,10699,-0.067241379310478,-0.225423728813397,-0.062068965517388,-0.231355932203249,-0.062068965517381,-0.219491525423567,-0.056896551724291,-0.225423728813419,-0.011864406779683,0.000000000000007,-0.000000000000020,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779680,-0.000000000000008,2 -10582,10640,10642,10700,-0.067241379310471,-0.213559322033724,-0.062068965517381,-0.219491525423567,-0.062068965517373,-0.207627118643905,-0.056896551724283,-0.213559322033748,-0.011864406779663,0.000000000000007,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779661,-0.000000000000008,2 -10583,10641,10643,10701,-0.067241379310464,-0.201694915254047,-0.062068965517373,-0.207627118643905,-0.062068965517365,-0.195762711864215,-0.056896551724274,-0.201694915254073,-0.011864406779691,0.000000000000007,-0.000000000000024,-0.010344827586189,0.000000000000027,0.010344827586190,0.011864406779689,-0.000000000000008,2 -10584,10642,10644,10702,-0.067241379310457,-0.189830508474371,-0.062068965517365,-0.195762711864215,-0.062068965517357,-0.183898305084555,-0.056896551724266,-0.189830508474399,-0.011864406779661,0.000000000000007,-0.000000000000027,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779659,-0.000000000000008,2 -10585,10643,10645,10703,-0.067241379310449,-0.177966101694698,-0.062068965517357,-0.183898305084555,-0.062068965517350,-0.172033898304872,-0.056896551724258,-0.177966101694729,-0.011864406779685,0.000000000000007,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779682,-0.000000000000008,2 -10586,10644,10646,10704,-0.067241379310442,-0.166101694915022,-0.062068965517350,-0.172033898304872,-0.062068965517342,-0.160169491525205,-0.056896551724250,-0.166101694915055,-0.011864406779668,0.000000000000007,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779666,-0.000000000000008,2 -10587,10645,10647,10705,-0.067241379310435,-0.154237288135358,-0.062068965517342,-0.160169491525205,-0.062068965517334,-0.148305084745545,-0.056896551724242,-0.154237288135392,-0.011864406779661,0.000000000000007,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779659,-0.000000000000008,2 -10588,10646,10648,10706,-0.067241379310428,-0.142372881355689,-0.062068965517334,-0.148305084745545,-0.062068965517327,-0.136440677965870,-0.056896551724233,-0.142372881355726,-0.011864406779677,0.000000000000007,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779674,-0.000000000000008,2 -10589,10647,10649,10707,-0.067241379310420,-0.130508474576014,-0.062068965517327,-0.136440677965870,-0.062068965517319,-0.124576271186197,-0.056896551724225,-0.130508474576053,-0.011864406779673,0.000000000000007,-0.000000000000038,-0.010344827586195,0.000000000000039,0.010344827586196,0.011864406779671,-0.000000000000008,2 -10590,10648,10650,10708,-0.067241379310413,-0.118644067796339,-0.062068965517319,-0.124576271186197,-0.062068965517311,-0.112711864406521,-0.056896551724217,-0.118644067796379,-0.011864406779678,0.000000000000007,-0.000000000000039,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779675,-0.000000000000008,2 -10591,10649,10651,10709,-0.067241379310406,-0.106779661016665,-0.062068965517311,-0.112711864406521,-0.062068965517303,-0.100847457626852,-0.056896551724209,-0.106779661016708,-0.011864406779670,0.000000000000007,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779668,-0.000000000000008,2 -10592,10650,10652,10710,-0.067241379310399,-0.094915254236991,-0.062068965517303,-0.100847457626852,-0.062068965517296,-0.088983050847175,-0.056896551724201,-0.094915254237036,-0.011864406779678,0.000000000000007,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779675,-0.000000000000008,2 -10593,10651,10653,10711,-0.067241379310391,-0.083050847457313,-0.062068965517296,-0.088983050847175,-0.062068965517288,-0.077118644067499,-0.056896551724192,-0.083050847457361,-0.011864406779678,0.000000000000007,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779675,-0.000000000000008,2 -10594,10652,10654,10712,-0.067241379310384,-0.071186440677639,-0.062068965517288,-0.077118644067499,-0.062068965517280,-0.065254237287830,-0.056896551724184,-0.071186440677689,-0.011864406779670,0.000000000000007,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779668,-0.000000000000008,2 -10595,10653,10655,10713,-0.067241379310377,-0.059322033897965,-0.062068965517280,-0.065254237287830,-0.062068965517273,-0.053389830508153,-0.056896551724176,-0.059322033898017,-0.011864406779678,0.000000000000007,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779675,-0.000000000000008,2 -10596,10654,10656,10714,-0.067241379310370,-0.047457627118289,-0.062068965517273,-0.053389830508153,-0.062068965517265,-0.041525423728480,-0.056896551724168,-0.047457627118344,-0.011864406779675,0.000000000000007,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779672,-0.000000000000008,2 -10597,10655,10657,10715,-0.067241379310363,-0.035593220338615,-0.062068965517265,-0.041525423728480,-0.062068965517257,-0.029661016948808,-0.056896551724160,-0.035593220338672,-0.011864406779673,0.000000000000007,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779671,-0.000000000000008,2 -10598,10656,10658,10716,-0.067241379310355,-0.023728813558940,-0.062068965517257,-0.029661016948808,-0.062068965517249,-0.017796610169131,-0.056896551724151,-0.023728813558999,-0.011864406779678,0.000000000000007,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586204,0.011864406779675,-0.000000000000008,2 -10599,10657,10659,10717,-0.067241379310348,-0.011864406779266,-0.062068965517249,-0.017796610169131,-0.062068965517242,-0.005932203389462,-0.056896551724143,-0.011864406779327,-0.011864406779670,0.000000000000007,-0.000000000000060,-0.010344827586204,0.000000000000062,0.010344827586205,0.011864406779668,-0.000000000000008,2 -10600,10658,10660,10718,-0.067241379310341,0.000000000000405,-0.062068965517242,-0.005932203389462,-0.062068965517234,0.005932203390211,-0.056896551724135,0.000000000000343,-0.011864406779673,0.000000000000007,-0.000000000000062,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000008,2 -10601,10659,10661,10719,-0.067241379310334,0.011864406780063,-0.062068965517234,0.005932203390211,-0.062068965517226,0.017796610169855,-0.056896551724127,0.011864406780002,-0.011864406779643,0.000000000000007,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586207,0.011864406779645,-0.000000000000008,2 -10602,10660,10662,10720,-0.067241379310326,0.023728813559708,-0.062068965517226,0.017796610169855,-0.062068965517219,0.029661016949502,-0.056896551724119,0.023728813559649,-0.011864406779646,0.000000000000007,-0.000000000000060,-0.010344827586207,0.000000000000058,0.010344827586208,0.011864406779649,-0.000000000000008,2 -10603,10661,10663,10721,-0.067241379310319,0.035593220339353,-0.062068965517219,0.029661016949502,-0.062068965517211,0.041525423729147,-0.056896551724110,0.035593220339296,-0.011864406779644,0.000000000000007,-0.000000000000058,-0.010344827586208,0.000000000000056,0.010344827586209,0.011864406779647,-0.000000000000008,2 -10604,10662,10664,10722,-0.067241379310312,0.047457627118998,-0.062068965517211,0.041525423729147,-0.062068965517203,0.053389830508794,-0.056896551724102,0.047457627118943,-0.011864406779645,0.000000000000007,-0.000000000000056,-0.010344827586209,0.000000000000053,0.010344827586210,0.011864406779647,-0.000000000000008,2 -10605,10663,10665,10723,-0.067241379310305,0.059322033898643,-0.062068965517203,0.053389830508794,-0.062068965517195,0.065254237288441,-0.056896551724094,0.059322033898591,-0.011864406779646,0.000000000000007,-0.000000000000053,-0.010344827586210,0.000000000000051,0.010344827586211,0.011864406779649,-0.000000000000008,2 -10606,10664,10666,10724,-0.067241379310298,0.071186440678288,-0.062068965517195,0.065254237288441,-0.062068965517188,0.077118644068085,-0.056896551724086,0.071186440678238,-0.011864406779643,0.000000000000007,-0.000000000000051,-0.010344827586211,0.000000000000049,0.010344827586212,0.011864406779645,-0.000000000000008,2 -10607,10665,10667,10725,-0.067241379310290,0.083050847457933,-0.062068965517188,0.077118644068085,-0.062068965517180,0.088983050847732,-0.056896551724078,0.083050847457885,-0.011864406779646,0.000000000000007,-0.000000000000049,-0.010344827586212,0.000000000000046,0.010344827586213,0.011864406779649,-0.000000000000008,2 -10608,10666,10668,10726,-0.067241379310283,0.094915254237579,-0.062068965517180,0.088983050847732,-0.062068965517172,0.100847457627380,-0.056896551724069,0.094915254237533,-0.011864406779646,0.000000000000007,-0.000000000000046,-0.010344827586213,0.000000000000044,0.010344827586214,0.011864406779649,-0.000000000000008,2 -10609,10667,10669,10727,-0.067241379310276,0.106779661017223,-0.062068965517172,0.100847457627380,-0.062068965517165,0.112711864407024,-0.056896551724061,0.106779661017180,-0.011864406779643,0.000000000000007,-0.000000000000044,-0.010344827586214,0.000000000000042,0.010344827586215,0.011864406779645,-0.000000000000008,2 -10610,10668,10670,10728,-0.067241379310269,0.118644067796868,-0.062068965517165,0.112711864407024,-0.062068965517157,0.124576271186671,-0.056896551724053,0.118644067796827,-0.011864406779646,0.000000000000007,-0.000000000000042,-0.010344827586215,0.000000000000039,0.010344827586216,0.011864406779649,-0.000000000000008,2 -10611,10669,10671,10729,-0.067241379310261,0.130508474576516,-0.062068965517157,0.124576271186671,-0.062068965517149,0.136440677966323,-0.056896551724045,0.130508474576478,-0.011864406779651,0.000000000000007,-0.000000000000039,-0.010344827586216,0.000000000000038,0.010344827586217,0.011864406779653,-0.000000000000008,2 -10612,10670,10672,10730,-0.067241379310254,0.142372881356165,-0.062068965517149,0.136440677966323,-0.062068965517141,0.148305084745970,-0.056896551724037,0.142372881356128,-0.011864406779646,0.000000000000007,-0.000000000000038,-0.010344827586217,0.000000000000035,0.010344827586218,0.011864406779648,-0.000000000000008,2 -10613,10671,10673,10731,-0.067241379310247,0.154237288135808,-0.062068965517141,0.148305084745970,-0.062068965517134,0.160169491525610,-0.056896551724028,0.154237288135773,-0.011864406779640,0.000000000000007,-0.000000000000035,-0.010344827586218,0.000000000000034,0.010344827586219,0.011864406779641,-0.000000000000008,2 -10614,10672,10674,10732,-0.067241379310240,0.166101694915448,-0.062068965517134,0.160169491525610,-0.062068965517126,0.172033898305254,-0.056896551724020,0.166101694915416,-0.011864406779642,0.000000000000007,-0.000000000000034,-0.010344827586219,0.000000000000032,0.010344827586220,0.011864406779644,-0.000000000000008,2 -10615,10673,10675,10733,-0.067241379310232,0.177966101695094,-0.062068965517126,0.172033898305254,-0.062068965517118,0.183898305084904,-0.056896551724012,0.177966101695064,-0.011864406779649,0.000000000000007,-0.000000000000032,-0.010344827586220,0.000000000000029,0.010344827586221,0.011864406779652,-0.000000000000008,2 -10616,10674,10676,10734,-0.067241379310225,0.189830508474738,-0.062068965517118,0.183898305084904,-0.062068965517111,0.195762711864544,-0.056896551724004,0.189830508474710,-0.011864406779640,0.000000000000007,-0.000000000000029,-0.010344827586221,0.000000000000027,0.010344827586222,0.011864406779641,-0.000000000000008,2 -10617,10675,10677,10735,-0.067241379310218,0.201694915254384,-0.062068965517111,0.195762711864544,-0.062068965517103,0.207627118644197,-0.056896551723996,0.201694915254358,-0.011864406779651,0.000000000000007,-0.000000000000027,-0.010344827586222,0.000000000000024,0.010344827586223,0.011864406779654,-0.000000000000008,2 -10618,10676,10678,10736,-0.067241379310211,0.213559322034032,-0.062068965517103,0.207627118644197,-0.062068965517095,0.219491525423842,-0.056896551723987,0.213559322034008,-0.011864406779644,0.000000000000007,-0.000000000000024,-0.010344827586223,0.000000000000023,0.010344827586224,0.011864406779646,-0.000000000000008,2 -10619,10677,10679,10737,-0.067241379310204,0.225423728813679,-0.062068965517095,0.219491525423842,-0.062068965517087,0.231355932203494,-0.056896551723979,0.225423728813658,-0.011864406779651,0.000000000000007,-0.000000000000023,-0.010344827586224,0.000000000000020,0.010344827586225,0.011864406779653,-0.000000000000008,2 -10620,10678,10680,10738,-0.067241379310196,0.237288135593329,-0.062068965517087,0.231355932203494,-0.062068965517080,0.243220338983145,-0.056896551723971,0.237288135593310,-0.011864406779650,0.000000000000007,-0.000000000000020,-0.010344827586225,0.000000000000019,0.010344827586226,0.011864406779652,-0.000000000000008,2 -10621,10679,10681,10739,-0.067241379310189,0.249152542372974,-0.062068965517080,0.243220338983145,-0.062068965517072,0.255084745762786,-0.056896551723963,0.249152542372957,-0.011864406779640,0.000000000000007,-0.000000000000019,-0.010344827586226,0.000000000000016,0.010344827586227,0.011864406779643,-0.000000000000008,2 -10622,10680,10682,10740,-0.067241379310182,0.261016949152616,-0.062068965517072,0.255084745762786,-0.062068965517064,0.266949152542431,-0.056896551723955,0.261016949152601,-0.011864406779643,0.000000000000007,-0.000000000000016,-0.010344827586227,0.000000000000013,0.010344827586228,0.011864406779646,-0.000000000000008,2 -10623,10681,10683,10741,-0.067241379310175,0.272881355932263,-0.062068965517064,0.266949152542431,-0.062068965517057,0.278813559322081,-0.056896551723946,0.272881355932250,-0.011864406779649,0.000000000000007,-0.000000000000013,-0.010344827586228,0.000000000000012,0.010344827586229,0.011864406779650,-0.000000000000008,2 -10624,10682,10684,10742,-0.067241379310167,0.284745762711914,-0.062068965517057,0.278813559322081,-0.062068965517049,0.290677966101735,-0.056896551723938,0.284745762711903,-0.011864406779653,0.000000000000007,-0.000000000000012,-0.010344827586229,0.000000000000009,0.010344827586230,0.011864406779656,-0.000000000000008,2 -10625,10683,10685,10743,-0.067241379310160,0.296610169491567,-0.062068965517049,0.290677966101735,-0.062068965517041,0.302542372881390,-0.056896551723930,0.296610169491558,-0.011864406779654,0.000000000000007,-0.000000000000009,-0.010344827586230,0.000000000000008,0.010344827586231,0.011864406779655,-0.000000000000008,2 -10626,10684,10686,10744,-0.067241379310153,0.308474576271218,-0.062068965517041,0.302542372881390,-0.062068965517033,0.314406779661040,-0.056896551723922,0.308474576271211,-0.011864406779649,0.000000000000007,-0.000000000000008,-0.010344827586231,0.000000000000006,0.010344827586232,0.011864406779651,-0.000000000000008,2 -10627,10685,10687,10745,-0.067241379310146,0.320338983050870,-0.062068965517033,0.314406779661040,-0.062068965517026,0.326271186440696,-0.056896551723914,0.320338983050865,-0.011864406779656,0.000000000000007,-0.000000000000006,-0.010344827586232,0.000000000000004,0.010344827586233,0.011864406779657,-0.000000000000008,2 -10628,10686,10688,10746,-0.067241379310138,0.332203389830522,-0.062068965517026,0.326271186440696,-0.062068965517018,0.338135593220344,-0.056896551723905,0.332203389830519,-0.011864406779647,0.000000000000007,-0.000000000000004,-0.010344827586233,0.000000000000002,0.010344827586234,0.011864406779649,-0.000000000000008,2 -7974,10629,10687,10747,-0.062068965517010,0.350000000000000,-0.067241379310131,0.344067796610173,-0.062068965517018,0.338135593220344,-0.056896551723897,0.344067796610172,-0.000000000000000,0.010344827586235,-0.011864406779655,0.000000000000007,-0.000000000000002,-0.010344827586234,0.011864406779657,-0.000000000000008,2 -8935,10630,10690,10748,-0.051724137931288,-0.350000000000000,-0.056896551724373,-0.344067796610160,-0.051724137931279,-0.338135593220321,-0.046551724138195,-0.344067796610161,-0.000000000000000,-0.010344827586177,-0.011864406779680,0.000000000000008,0.000000000000002,0.010344827586178,0.011864406779678,-0.000000000000009,2 -10631,10689,10691,10749,-0.056896551724365,-0.332203389830484,-0.051724137931279,-0.338135593220321,-0.051724137931271,-0.326271186440649,-0.046551724138186,-0.332203389830487,-0.011864406779672,0.000000000000008,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779670,-0.000000000000009,2 -10632,10690,10692,10750,-0.056896551724356,-0.320338983050811,-0.051724137931271,-0.326271186440649,-0.051724137931262,-0.314406779660978,-0.046551724138177,-0.320338983050816,-0.011864406779672,0.000000000000008,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779671,-0.000000000000009,2 -10633,10691,10693,10751,-0.056896551724348,-0.308474576271134,-0.051724137931262,-0.314406779660978,-0.051724137931253,-0.302542372881298,-0.046551724138167,-0.308474576271141,-0.011864406779681,0.000000000000008,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779679,-0.000000000000009,2 -10634,10692,10694,10752,-0.056896551724340,-0.296610169491461,-0.051724137931253,-0.302542372881298,-0.051724137931245,-0.290677966101633,-0.046551724138158,-0.296610169491470,-0.011864406779665,0.000000000000008,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779664,-0.000000000000009,2 -10635,10693,10695,10753,-0.056896551724332,-0.284745762711784,-0.051724137931245,-0.290677966101633,-0.051724137931236,-0.278813559321945,-0.046551724138149,-0.284745762711794,-0.011864406779690,0.000000000000008,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779687,-0.000000000000009,2 -10636,10694,10696,10754,-0.056896551724324,-0.272881355932107,-0.051724137931236,-0.278813559321945,-0.051724137931227,-0.266949152542282,-0.046551724138140,-0.272881355932120,-0.011864406779663,0.000000000000008,-0.000000000000012,-0.010344827586183,0.000000000000014,0.010344827586184,0.011864406779662,-0.000000000000009,2 -10637,10695,10697,10755,-0.056896551724315,-0.261016949152437,-0.051724137931227,-0.266949152542282,-0.051724137931219,-0.255084745762607,-0.046551724138131,-0.261016949152452,-0.011864406779677,0.000000000000008,-0.000000000000014,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779675,-0.000000000000009,2 -10638,10696,10698,10756,-0.056896551724307,-0.249152542372765,-0.051724137931219,-0.255084745762607,-0.051724137931210,-0.243220338982940,-0.046551724138122,-0.249152542372782,-0.011864406779667,0.000000000000008,-0.000000000000016,-0.010344827586185,0.000000000000018,0.010344827586186,0.011864406779665,-0.000000000000009,2 -10639,10697,10699,10757,-0.056896551724299,-0.237288135593095,-0.051724137931210,-0.243220338982940,-0.051724137931201,-0.231355932203269,-0.046551724138113,-0.237288135593114,-0.011864406779672,0.000000000000008,-0.000000000000018,-0.010344827586186,0.000000000000021,0.010344827586187,0.011864406779670,-0.000000000000009,2 -10640,10698,10700,10758,-0.056896551724291,-0.225423728813419,-0.051724137931201,-0.231355932203269,-0.051724137931193,-0.219491525423590,-0.046551724138103,-0.225423728813441,-0.011864406779680,0.000000000000008,-0.000000000000021,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779678,-0.000000000000009,2 -10641,10699,10701,10759,-0.056896551724283,-0.213559322033748,-0.051724137931193,-0.219491525423590,-0.051724137931184,-0.207627118643929,-0.046551724138094,-0.213559322033772,-0.011864406779661,0.000000000000008,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779660,-0.000000000000009,2 -10642,10700,10702,10760,-0.056896551724274,-0.201694915254073,-0.051724137931184,-0.207627118643929,-0.051724137931175,-0.195762711864243,-0.046551724138085,-0.201694915254099,-0.011864406779689,0.000000000000008,-0.000000000000024,-0.010344827586189,0.000000000000027,0.010344827586190,0.011864406779685,-0.000000000000009,2 -10643,10701,10703,10761,-0.056896551724266,-0.189830508474399,-0.051724137931175,-0.195762711864243,-0.051724137931167,-0.183898305084584,-0.046551724138076,-0.189830508474428,-0.011864406779659,0.000000000000008,-0.000000000000027,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779657,-0.000000000000009,2 -10644,10702,10704,10762,-0.056896551724258,-0.177966101694729,-0.051724137931167,-0.183898305084584,-0.051724137931158,-0.172033898304904,-0.046551724138067,-0.177966101694759,-0.011864406779682,0.000000000000008,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586191,0.011864406779679,-0.000000000000009,2 -10645,10703,10705,10763,-0.056896551724250,-0.166101694915055,-0.051724137931158,-0.172033898304904,-0.051724137931149,-0.160169491525239,-0.046551724138058,-0.166101694915087,-0.011864406779666,0.000000000000008,-0.000000000000032,-0.010344827586191,0.000000000000034,0.010344827586192,0.011864406779664,-0.000000000000009,2 -10646,10704,10706,10764,-0.056896551724242,-0.154237288135392,-0.051724137931149,-0.160169491525239,-0.051724137931141,-0.148305084745580,-0.046551724138049,-0.154237288135427,-0.011864406779659,0.000000000000008,-0.000000000000034,-0.010344827586192,0.000000000000035,0.010344827586193,0.011864406779657,-0.000000000000009,2 -10647,10705,10707,10765,-0.056896551724233,-0.142372881355726,-0.051724137931141,-0.148305084745580,-0.051724137931132,-0.136440677965907,-0.046551724138039,-0.142372881355762,-0.011864406779674,0.000000000000008,-0.000000000000035,-0.010344827586193,0.000000000000038,0.010344827586194,0.011864406779672,-0.000000000000009,2 -10648,10706,10708,10766,-0.056896551724225,-0.130508474576053,-0.051724137931132,-0.136440677965907,-0.051724137931123,-0.124576271186237,-0.046551724138030,-0.130508474576091,-0.011864406779671,0.000000000000008,-0.000000000000038,-0.010344827586194,0.000000000000039,0.010344827586195,0.011864406779670,-0.000000000000009,2 -10649,10707,10709,10767,-0.056896551724217,-0.118644067796379,-0.051724137931123,-0.124576271186237,-0.051724137931115,-0.112711864406563,-0.046551724138021,-0.118644067796420,-0.011864406779675,0.000000000000008,-0.000000000000039,-0.010344827586195,0.000000000000042,0.010344827586196,0.011864406779673,-0.000000000000009,2 -10650,10708,10710,10768,-0.056896551724209,-0.106779661016708,-0.051724137931115,-0.112711864406563,-0.051724137931106,-0.100847457626896,-0.046551724138012,-0.106779661016751,-0.011864406779668,0.000000000000008,-0.000000000000042,-0.010344827586196,0.000000000000044,0.010344827586197,0.011864406779666,-0.000000000000009,2 -10651,10709,10711,10769,-0.056896551724201,-0.094915254237036,-0.051724137931106,-0.100847457626896,-0.051724137931097,-0.088983050847222,-0.046551724138003,-0.094915254237081,-0.011864406779675,0.000000000000008,-0.000000000000044,-0.010344827586197,0.000000000000046,0.010344827586198,0.011864406779673,-0.000000000000009,2 -10652,10710,10712,10770,-0.056896551724192,-0.083050847457361,-0.051724137931097,-0.088983050847222,-0.051724137931089,-0.077118644067547,-0.046551724137994,-0.083050847457408,-0.011864406779675,0.000000000000008,-0.000000000000046,-0.010344827586198,0.000000000000049,0.010344827586199,0.011864406779673,-0.000000000000009,2 -10653,10711,10713,10771,-0.056896551724184,-0.071186440677689,-0.051724137931089,-0.077118644067547,-0.051724137931080,-0.065254237287881,-0.046551724137985,-0.071186440677739,-0.011864406779668,0.000000000000008,-0.000000000000049,-0.010344827586199,0.000000000000051,0.010344827586200,0.011864406779666,-0.000000000000009,2 -10654,10712,10714,10772,-0.056896551724176,-0.059322033898017,-0.051724137931080,-0.065254237287881,-0.051724137931071,-0.053389830508207,-0.046551724137975,-0.059322033898070,-0.011864406779675,0.000000000000008,-0.000000000000051,-0.010344827586200,0.000000000000053,0.010344827586201,0.011864406779673,-0.000000000000009,2 -10655,10713,10715,10773,-0.056896551724168,-0.047457627118344,-0.051724137931071,-0.053389830508207,-0.051724137931063,-0.041525423728535,-0.046551724137966,-0.047457627118398,-0.011864406779672,0.000000000000008,-0.000000000000053,-0.010344827586201,0.000000000000056,0.010344827586202,0.011864406779670,-0.000000000000009,2 -10656,10714,10716,10774,-0.056896551724160,-0.035593220338672,-0.051724137931063,-0.041525423728535,-0.051724137931054,-0.029661016948866,-0.046551724137957,-0.035593220338729,-0.011864406779671,0.000000000000008,-0.000000000000056,-0.010344827586202,0.000000000000058,0.010344827586203,0.011864406779669,-0.000000000000009,2 -10657,10715,10717,10775,-0.056896551724151,-0.023728813558999,-0.051724137931054,-0.029661016948866,-0.051724137931045,-0.017796610169191,-0.046551724137948,-0.023728813559058,-0.011864406779675,0.000000000000008,-0.000000000000058,-0.010344827586203,0.000000000000060,0.010344827586204,0.011864406779673,-0.000000000000009,2 -10658,10716,10718,10776,-0.056896551724143,-0.011864406779327,-0.051724137931045,-0.017796610169191,-0.051724137931037,-0.005932203389525,-0.046551724137939,-0.011864406779389,-0.011864406779668,0.000000000000008,-0.000000000000060,-0.010344827586204,0.000000000000062,0.010344827586205,0.011864406779666,-0.000000000000009,2 -10659,10717,10719,10777,-0.056896551724135,0.000000000000343,-0.051724137931037,-0.005932203389525,-0.051724137931028,0.005932203390148,-0.046551724137930,0.000000000000281,-0.011864406779673,0.000000000000008,-0.000000000000062,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000009,2 -10660,10718,10720,10778,-0.056896551724127,0.011864406780002,-0.051724137931028,0.005932203390148,-0.051724137931019,0.017796610169794,-0.046551724137921,0.011864406779941,-0.011864406779645,0.000000000000008,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586207,0.011864406779647,-0.000000000000009,2 -10661,10719,10721,10779,-0.056896551724119,0.023728813559649,-0.051724137931019,0.017796610169794,-0.051724137931011,0.029661016949444,-0.046551724137912,0.023728813559590,-0.011864406779649,0.000000000000008,-0.000000000000060,-0.010344827586207,0.000000000000058,0.010344827586207,0.011864406779651,-0.000000000000009,2 -10662,10720,10722,10780,-0.056896551724110,0.035593220339296,-0.051724137931011,0.029661016949444,-0.051724137931002,0.041525423729092,-0.046551724137902,0.035593220339240,-0.011864406779647,0.000000000000008,-0.000000000000058,-0.010344827586207,0.000000000000056,0.010344827586208,0.011864406779649,-0.000000000000009,2 -10663,10721,10723,10781,-0.056896551724102,0.047457627118943,-0.051724137931002,0.041525423729092,-0.051724137930993,0.053389830508740,-0.046551724137893,0.047457627118889,-0.011864406779647,0.000000000000008,-0.000000000000056,-0.010344827586208,0.000000000000053,0.010344827586209,0.011864406779649,-0.000000000000009,2 -10664,10722,10724,10782,-0.056896551724094,0.059322033898591,-0.051724137930993,0.053389830508740,-0.051724137930985,0.065254237288390,-0.046551724137884,0.059322033898539,-0.011864406779649,0.000000000000008,-0.000000000000053,-0.010344827586209,0.000000000000051,0.010344827586210,0.011864406779651,-0.000000000000009,2 -10665,10723,10725,10783,-0.056896551724086,0.071186440678238,-0.051724137930985,0.065254237288390,-0.051724137930976,0.077118644068036,-0.046551724137875,0.071186440678188,-0.011864406779645,0.000000000000008,-0.000000000000051,-0.010344827586210,0.000000000000049,0.010344827586211,0.011864406779647,-0.000000000000009,2 -10666,10724,10726,10784,-0.056896551724078,0.083050847457885,-0.051724137930976,0.077118644068036,-0.051724137930967,0.088983050847686,-0.046551724137866,0.083050847457837,-0.011864406779649,0.000000000000008,-0.000000000000049,-0.010344827586211,0.000000000000046,0.010344827586212,0.011864406779651,-0.000000000000009,2 -10667,10725,10727,10785,-0.056896551724069,0.094915254237533,-0.051724137930967,0.088983050847686,-0.051724137930959,0.100847457627336,-0.046551724137857,0.094915254237488,-0.011864406779649,0.000000000000008,-0.000000000000046,-0.010344827586212,0.000000000000044,0.010344827586213,0.011864406779651,-0.000000000000009,2 -10668,10726,10728,10786,-0.056896551724061,0.106779661017180,-0.051724137930959,0.100847457627336,-0.051724137930950,0.112711864406982,-0.046551724137848,0.106779661017137,-0.011864406779645,0.000000000000008,-0.000000000000044,-0.010344827586213,0.000000000000042,0.010344827586214,0.011864406779647,-0.000000000000009,2 -10669,10727,10729,10787,-0.056896551724053,0.118644067796827,-0.051724137930950,0.112711864406982,-0.051724137930941,0.124576271186632,-0.046551724137838,0.118644067796787,-0.011864406779649,0.000000000000008,-0.000000000000042,-0.010344827586214,0.000000000000039,0.010344827586215,0.011864406779651,-0.000000000000009,2 -10670,10728,10730,10788,-0.056896551724045,0.130508474576478,-0.051724137930941,0.124576271186632,-0.051724137930933,0.136440677966285,-0.046551724137829,0.130508474576439,-0.011864406779653,0.000000000000008,-0.000000000000039,-0.010344827586215,0.000000000000038,0.010344827586216,0.011864406779654,-0.000000000000009,2 -10671,10729,10731,10789,-0.056896551724037,0.142372881356128,-0.051724137930933,0.136440677966285,-0.051724137930924,0.148305084745935,-0.046551724137820,0.142372881356092,-0.011864406779648,0.000000000000008,-0.000000000000038,-0.010344827586216,0.000000000000035,0.010344827586217,0.011864406779650,-0.000000000000009,2 -10672,10730,10732,10790,-0.056896551724028,0.154237288135773,-0.051724137930924,0.148305084745935,-0.051724137930915,0.160169491525577,-0.046551724137811,0.154237288135738,-0.011864406779641,0.000000000000008,-0.000000000000035,-0.010344827586217,0.000000000000034,0.010344827586218,0.011864406779643,-0.000000000000009,2 -10673,10731,10733,10791,-0.056896551724020,0.166101694915416,-0.051724137930915,0.160169491525577,-0.051724137930907,0.172033898305222,-0.046551724137802,0.166101694915383,-0.011864406779644,0.000000000000008,-0.000000000000034,-0.010344827586218,0.000000000000032,0.010344827586219,0.011864406779646,-0.000000000000009,2 -10674,10732,10734,10792,-0.056896551724012,0.177966101695064,-0.051724137930907,0.172033898305222,-0.051724137930898,0.183898305084875,-0.046551724137793,0.177966101695033,-0.011864406779652,0.000000000000008,-0.000000000000032,-0.010344827586219,0.000000000000029,0.010344827586220,0.011864406779654,-0.000000000000009,2 -10675,10733,10735,10793,-0.056896551724004,0.189830508474710,-0.051724137930898,0.183898305084875,-0.051724137930889,0.195762711864517,-0.046551724137784,0.189830508474682,-0.011864406779641,0.000000000000008,-0.000000000000029,-0.010344827586220,0.000000000000027,0.010344827586221,0.011864406779643,-0.000000000000009,2 -10676,10734,10736,10794,-0.056896551723996,0.201694915254358,-0.051724137930889,0.195762711864517,-0.051724137930881,0.207627118644173,-0.046551724137774,0.201694915254332,-0.011864406779654,0.000000000000008,-0.000000000000027,-0.010344827586221,0.000000000000024,0.010344827586222,0.011864406779657,-0.000000000000009,2 -10677,10735,10737,10795,-0.056896551723987,0.213559322034008,-0.051724137930881,0.207627118644173,-0.051724137930872,0.219491525423819,-0.046551724137765,0.213559322033984,-0.011864406779646,0.000000000000008,-0.000000000000024,-0.010344827586222,0.000000000000023,0.010344827586223,0.011864406779647,-0.000000000000009,2 -10678,10736,10738,10796,-0.056896551723979,0.225423728813658,-0.051724137930872,0.219491525423819,-0.051724137930863,0.231355932203474,-0.046551724137756,0.225423728813636,-0.011864406779653,0.000000000000008,-0.000000000000023,-0.010344827586223,0.000000000000020,0.010344827586223,0.011864406779656,-0.000000000000009,2 -10679,10737,10739,10797,-0.056896551723971,0.237288135593310,-0.051724137930863,0.231355932203474,-0.051724137930855,0.243220338983126,-0.046551724137747,0.237288135593290,-0.011864406779652,0.000000000000008,-0.000000000000020,-0.010344827586223,0.000000000000019,0.010344827586224,0.011864406779653,-0.000000000000009,2 -10680,10738,10740,10798,-0.056896551723963,0.249152542372957,-0.051724137930855,0.243220338983126,-0.051724137930846,0.255084745762770,-0.046551724137738,0.249152542372939,-0.011864406779643,0.000000000000008,-0.000000000000019,-0.010344827586224,0.000000000000016,0.010344827586225,0.011864406779645,-0.000000000000009,2 -10681,10739,10741,10799,-0.056896551723955,0.261016949152601,-0.051724137930846,0.255084745762770,-0.051724137930837,0.266949152542418,-0.046551724137729,0.261016949152586,-0.011864406779646,0.000000000000008,-0.000000000000016,-0.010344827586225,0.000000000000014,0.010344827586226,0.011864406779649,-0.000000000000009,2 -10682,10740,10742,10800,-0.056896551723946,0.272881355932250,-0.051724137930837,0.266949152542418,-0.051724137930829,0.278813559322069,-0.046551724137720,0.272881355932237,-0.011864406779650,0.000000000000008,-0.000000000000014,-0.010344827586226,0.000000000000012,0.010344827586227,0.011864406779651,-0.000000000000009,2 -10683,10741,10743,10801,-0.056896551723938,0.284745762711903,-0.051724137930829,0.278813559322069,-0.051724137930820,0.290677966101726,-0.046551724137710,0.284745762711892,-0.011864406779656,0.000000000000008,-0.000000000000012,-0.010344827586227,0.000000000000009,0.010344827586228,0.011864406779659,-0.000000000000009,2 -10684,10742,10744,10802,-0.056896551723930,0.296610169491558,-0.051724137930820,0.290677966101726,-0.051724137930811,0.302542372881381,-0.046551724137701,0.296610169491549,-0.011864406779655,0.000000000000008,-0.000000000000009,-0.010344827586228,0.000000000000008,0.010344827586229,0.011864406779656,-0.000000000000009,2 -10685,10743,10745,10803,-0.056896551723922,0.308474576271211,-0.051724137930811,0.302542372881381,-0.051724137930803,0.314406779661034,-0.046551724137692,0.308474576271204,-0.011864406779651,0.000000000000008,-0.000000000000008,-0.010344827586229,0.000000000000005,0.010344827586230,0.011864406779654,-0.000000000000009,2 -10686,10744,10746,10804,-0.056896551723914,0.320338983050865,-0.051724137930803,0.314406779661034,-0.051724137930794,0.326271186440692,-0.046551724137683,0.320338983050861,-0.011864406779657,0.000000000000008,-0.000000000000005,-0.010344827586230,0.000000000000004,0.010344827586231,0.011864406779658,-0.000000000000009,2 -10687,10745,10747,10805,-0.056896551723905,0.332203389830519,-0.051724137930794,0.326271186440692,-0.051724137930785,0.338135593220342,-0.046551724137674,0.332203389830516,-0.011864406779649,0.000000000000008,-0.000000000000004,-0.010344827586231,0.000000000000002,0.010344827586232,0.011864406779652,-0.000000000000009,2 -7960,10688,10746,10806,-0.051724137930777,0.350000000000000,-0.056896551723897,0.344067796610172,-0.051724137930785,0.338135593220342,-0.046551724137665,0.344067796610171,-0.000000000000000,0.010344827586233,-0.011864406779657,0.000000000000008,-0.000000000000002,-0.010344827586232,0.011864406779659,-0.000000000000009,2 -8936,10689,10749,10807,-0.041379310345109,-0.350000000000000,-0.046551724138195,-0.344067796610161,-0.041379310345099,-0.338135593220323,-0.036206896552013,-0.344067796610162,-0.000000000000000,-0.010344827586182,-0.011864406779678,0.000000000000009,0.000000000000002,0.010344827586182,0.011864406779676,-0.000000000000010,2 -10690,10748,10750,10808,-0.046551724138186,-0.332203389830487,-0.041379310345099,-0.338135593220323,-0.041379310345090,-0.326271186440654,-0.036206896552003,-0.332203389830490,-0.011864406779670,0.000000000000009,-0.000000000000002,-0.010344827586182,0.000000000000004,0.010344827586183,0.011864406779668,-0.000000000000010,2 -10691,10749,10751,10809,-0.046551724138177,-0.320338983050816,-0.041379310345090,-0.326271186440654,-0.041379310345080,-0.314406779660984,-0.036206896551993,-0.320338983050821,-0.011864406779671,0.000000000000009,-0.000000000000004,-0.010344827586183,0.000000000000005,0.010344827586184,0.011864406779669,-0.000000000000010,2 -10692,10750,10752,10810,-0.046551724138167,-0.308474576271141,-0.041379310345080,-0.314406779660984,-0.041379310345070,-0.302542372881306,-0.036206896551983,-0.308474576271148,-0.011864406779679,0.000000000000009,-0.000000000000005,-0.010344827586184,0.000000000000008,0.010344827586185,0.011864406779676,-0.000000000000010,2 -10693,10751,10753,10811,-0.046551724138158,-0.296610169491470,-0.041379310345070,-0.302542372881306,-0.041379310345061,-0.290677966101642,-0.036206896551973,-0.296610169491479,-0.011864406779664,0.000000000000009,-0.000000000000008,-0.010344827586185,0.000000000000009,0.010344827586186,0.011864406779663,-0.000000000000010,2 -10694,10752,10754,10812,-0.046551724138149,-0.284745762711794,-0.041379310345061,-0.290677966101642,-0.041379310345051,-0.278813559321957,-0.036206896551963,-0.284745762711805,-0.011864406779687,0.000000000000009,-0.000000000000009,-0.010344827586186,0.000000000000012,0.010344827586187,0.011864406779683,-0.000000000000010,2 -10695,10753,10755,10813,-0.046551724138140,-0.272881355932120,-0.041379310345051,-0.278813559321957,-0.041379310345042,-0.266949152542296,-0.036206896551953,-0.272881355932133,-0.011864406779662,0.000000000000009,-0.000000000000012,-0.010344827586187,0.000000000000013,0.010344827586188,0.011864406779661,-0.000000000000010,2 -10696,10754,10756,10814,-0.046551724138131,-0.261016949152452,-0.041379310345042,-0.266949152542296,-0.041379310345032,-0.255084745762623,-0.036206896551943,-0.261016949152467,-0.011864406779675,0.000000000000009,-0.000000000000013,-0.010344827586188,0.000000000000016,0.010344827586188,0.011864406779672,-0.000000000000010,2 -10697,10755,10757,10815,-0.046551724138122,-0.249152542372782,-0.041379310345032,-0.255084745762623,-0.041379310345022,-0.243220338982959,-0.036206896551933,-0.249152542372799,-0.011864406779665,0.000000000000009,-0.000000000000016,-0.010344827586188,0.000000000000019,0.010344827586189,0.011864406779663,-0.000000000000010,2 -10698,10756,10758,10816,-0.046551724138113,-0.237288135593114,-0.041379310345022,-0.243220338982959,-0.041379310345013,-0.231355932203290,-0.036206896551923,-0.237288135593134,-0.011864406779670,0.000000000000009,-0.000000000000019,-0.010344827586189,0.000000000000020,0.010344827586190,0.011864406779668,-0.000000000000010,2 -10699,10757,10759,10817,-0.046551724138103,-0.225423728813441,-0.041379310345013,-0.231355932203290,-0.041379310345003,-0.219491525423613,-0.036206896551913,-0.225423728813462,-0.011864406779678,0.000000000000009,-0.000000000000020,-0.010344827586190,0.000000000000023,0.010344827586191,0.011864406779675,-0.000000000000010,2 -10700,10758,10760,10818,-0.046551724138094,-0.213559322033772,-0.041379310345003,-0.219491525423613,-0.041379310344994,-0.207627118643954,-0.036206896551903,-0.213559322033795,-0.011864406779660,0.000000000000009,-0.000000000000023,-0.010344827586191,0.000000000000024,0.010344827586192,0.011864406779659,-0.000000000000010,2 -10701,10759,10761,10819,-0.046551724138085,-0.201694915254099,-0.041379310344994,-0.207627118643954,-0.041379310344984,-0.195762711864270,-0.036206896551893,-0.201694915254125,-0.011864406779685,0.000000000000009,-0.000000000000024,-0.010344827586192,0.000000000000027,0.010344827586193,0.011864406779682,-0.000000000000010,2 -10702,10760,10762,10820,-0.046551724138076,-0.189830508474428,-0.041379310344984,-0.195762711864270,-0.041379310344975,-0.183898305084613,-0.036206896551883,-0.189830508474456,-0.011864406779657,0.000000000000009,-0.000000000000027,-0.010344827586193,0.000000000000029,0.010344827586194,0.011864406779656,-0.000000000000010,2 -10703,10761,10763,10821,-0.046551724138067,-0.177966101694759,-0.041379310344975,-0.183898305084613,-0.041379310344965,-0.172033898304935,-0.036206896551873,-0.177966101694790,-0.011864406779679,0.000000000000009,-0.000000000000029,-0.010344827586194,0.000000000000032,0.010344827586195,0.011864406779677,-0.000000000000010,2 -10704,10762,10764,10822,-0.046551724138058,-0.166101694915087,-0.041379310344965,-0.172033898304935,-0.041379310344955,-0.160169491525272,-0.036206896551863,-0.166101694915120,-0.011864406779664,0.000000000000009,-0.000000000000032,-0.010344827586195,0.000000000000034,0.010344827586195,0.011864406779662,-0.000000000000010,2 -10705,10763,10765,10823,-0.046551724138049,-0.154237288135427,-0.041379310344955,-0.160169491525272,-0.041379310344946,-0.148305084745616,-0.036206896551853,-0.154237288135461,-0.011864406779657,0.000000000000009,-0.000000000000034,-0.010344827586195,0.000000000000035,0.010344827586196,0.011864406779656,-0.000000000000010,2 -10706,10764,10766,10824,-0.046551724138039,-0.142372881355762,-0.041379310344946,-0.148305084745616,-0.041379310344936,-0.136440677965945,-0.036206896551843,-0.142372881355799,-0.011864406779672,0.000000000000009,-0.000000000000035,-0.010344827586196,0.000000000000038,0.010344827586197,0.011864406779669,-0.000000000000010,2 -10707,10765,10767,10825,-0.046551724138030,-0.130508474576091,-0.041379310344936,-0.136440677965945,-0.041379310344927,-0.124576271186276,-0.036206896551833,-0.130508474576130,-0.011864406779670,0.000000000000009,-0.000000000000038,-0.010344827586197,0.000000000000039,0.010344827586198,0.011864406779668,-0.000000000000010,2 -10708,10766,10768,10826,-0.046551724138021,-0.118644067796420,-0.041379310344927,-0.124576271186276,-0.041379310344917,-0.112711864406605,-0.036206896551823,-0.118644067796461,-0.011864406779673,0.000000000000009,-0.000000000000039,-0.010344827586198,0.000000000000042,0.010344827586199,0.011864406779670,-0.000000000000010,2 -10709,10767,10769,10827,-0.046551724138012,-0.106779661016751,-0.041379310344917,-0.112711864406605,-0.041379310344908,-0.100847457626940,-0.036206896551813,-0.106779661016794,-0.011864406779666,0.000000000000009,-0.000000000000042,-0.010344827586199,0.000000000000044,0.010344827586200,0.011864406779664,-0.000000000000010,2 -10710,10768,10770,10828,-0.046551724138003,-0.094915254237081,-0.041379310344908,-0.100847457626940,-0.041379310344898,-0.088983050847268,-0.036206896551803,-0.094915254237126,-0.011864406779673,0.000000000000009,-0.000000000000044,-0.010344827586200,0.000000000000046,0.010344827586201,0.011864406779670,-0.000000000000010,2 -10711,10769,10771,10829,-0.046551724137994,-0.083050847457408,-0.041379310344898,-0.088983050847268,-0.041379310344888,-0.077118644067596,-0.036206896551793,-0.083050847457456,-0.011864406779673,0.000000000000009,-0.000000000000046,-0.010344827586201,0.000000000000049,0.010344827586202,0.011864406779670,-0.000000000000010,2 -10712,10770,10772,10830,-0.046551724137985,-0.071186440677739,-0.041379310344888,-0.077118644067596,-0.041379310344879,-0.065254237287932,-0.036206896551783,-0.071186440677789,-0.011864406779666,0.000000000000009,-0.000000000000049,-0.010344827586202,0.000000000000051,0.010344827586202,0.011864406779664,-0.000000000000010,2 -10713,10771,10773,10831,-0.046551724137975,-0.059322033898070,-0.041379310344879,-0.065254237287932,-0.041379310344869,-0.053389830508260,-0.036206896551773,-0.059322033898122,-0.011864406779673,0.000000000000009,-0.000000000000051,-0.010344827586202,0.000000000000053,0.010344827586203,0.011864406779671,-0.000000000000010,2 -10714,10772,10774,10832,-0.046551724137966,-0.047457627118398,-0.041379310344869,-0.053389830508260,-0.041379310344860,-0.041525423728591,-0.036206896551763,-0.047457627118453,-0.011864406779670,0.000000000000009,-0.000000000000053,-0.010344827586203,0.000000000000056,0.010344827586204,0.011864406779668,-0.000000000000010,2 -10715,10773,10775,10833,-0.046551724137957,-0.035593220338729,-0.041379310344860,-0.041525423728591,-0.041379310344850,-0.029661016948923,-0.036206896551753,-0.035593220338786,-0.011864406779669,0.000000000000009,-0.000000000000056,-0.010344827586204,0.000000000000058,0.010344827586205,0.011864406779667,-0.000000000000010,2 -10716,10774,10776,10834,-0.046551724137948,-0.023728813559058,-0.041379310344850,-0.029661016948923,-0.041379310344841,-0.017796610169252,-0.036206896551743,-0.023728813559117,-0.011864406779673,0.000000000000009,-0.000000000000058,-0.010344827586205,0.000000000000060,0.010344827586206,0.011864406779671,-0.000000000000010,2 -10717,10775,10777,10835,-0.046551724137939,-0.011864406779389,-0.041379310344841,-0.017796610169252,-0.041379310344831,-0.005932203389587,-0.036206896551733,-0.011864406779450,-0.011864406779666,0.000000000000009,-0.000000000000060,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779664,-0.000000000000010,2 -10718,10776,10778,10836,-0.046551724137930,0.000000000000281,-0.041379310344831,-0.005932203389587,-0.041379310344821,0.005932203390086,-0.036206896551723,0.000000000000218,-0.011864406779673,0.000000000000009,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586208,0.011864406779673,-0.000000000000010,2 -10719,10777,10779,10837,-0.046551724137921,0.011864406779941,-0.041379310344821,0.005932203390086,-0.041379310344812,0.017796610169734,-0.036206896551713,0.011864406779879,-0.011864406779647,0.000000000000009,-0.000000000000062,-0.010344827586208,0.000000000000060,0.010344827586209,0.011864406779649,-0.000000000000010,2 -10720,10778,10780,10838,-0.046551724137912,0.023728813559590,-0.041379310344812,0.017796610169734,-0.041379310344802,0.029661016949386,-0.036206896551703,0.023728813559531,-0.011864406779651,0.000000000000009,-0.000000000000060,-0.010344827586209,0.000000000000058,0.010344827586209,0.011864406779653,-0.000000000000010,2 -10721,10779,10781,10839,-0.046551724137902,0.035593220339240,-0.041379310344802,0.029661016949386,-0.041379310344793,0.041525423729036,-0.036206896551693,0.035593220339183,-0.011864406779649,0.000000000000009,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779651,-0.000000000000010,2 -10722,10780,10782,10840,-0.046551724137893,0.047457627118889,-0.041379310344793,0.041525423729036,-0.041379310344783,0.053389830508687,-0.036206896551683,0.047457627118834,-0.011864406779649,0.000000000000009,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586211,0.011864406779652,-0.000000000000010,2 -10723,10781,10783,10841,-0.046551724137884,0.059322033898539,-0.041379310344783,0.053389830508687,-0.041379310344774,0.065254237288339,-0.036206896551673,0.059322033898487,-0.011864406779651,0.000000000000009,-0.000000000000053,-0.010344827586211,0.000000000000051,0.010344827586212,0.011864406779653,-0.000000000000010,2 -10724,10782,10784,10842,-0.046551724137875,0.071186440678188,-0.041379310344774,0.065254237288339,-0.041379310344764,0.077118644067987,-0.036206896551663,0.071186440678138,-0.011864406779647,0.000000000000009,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586213,0.011864406779649,-0.000000000000010,2 -10725,10783,10785,10843,-0.046551724137866,0.083050847457837,-0.041379310344764,0.077118644067987,-0.041379310344754,0.088983050847639,-0.036206896551653,0.083050847457790,-0.011864406779651,0.000000000000009,-0.000000000000049,-0.010344827586213,0.000000000000046,0.010344827586214,0.011864406779653,-0.000000000000010,2 -10726,10784,10786,10844,-0.046551724137857,0.094915254237488,-0.041379310344754,0.088983050847639,-0.041379310344745,0.100847457627292,-0.036206896551642,0.094915254237443,-0.011864406779651,0.000000000000009,-0.000000000000046,-0.010344827586214,0.000000000000044,0.010344827586215,0.011864406779653,-0.000000000000010,2 -10727,10785,10787,10845,-0.046551724137848,0.106779661017137,-0.041379310344745,0.100847457627292,-0.041379310344735,0.112711864406940,-0.036206896551632,0.106779661017094,-0.011864406779647,0.000000000000009,-0.000000000000044,-0.010344827586215,0.000000000000042,0.010344827586215,0.011864406779649,-0.000000000000010,2 -10728,10786,10788,10846,-0.046551724137838,0.118644067796787,-0.041379310344735,0.112711864406940,-0.041379310344726,0.124576271186592,-0.036206896551622,0.118644067796746,-0.011864406779651,0.000000000000009,-0.000000000000042,-0.010344827586215,0.000000000000040,0.010344827586216,0.011864406779654,-0.000000000000010,2 -10729,10787,10789,10847,-0.046551724137829,0.130508474576439,-0.041379310344726,0.124576271186592,-0.041379310344716,0.136440677966248,-0.036206896551612,0.130508474576401,-0.011864406779654,0.000000000000009,-0.000000000000040,-0.010344827586216,0.000000000000038,0.010344827586217,0.011864406779656,-0.000000000000010,2 -10730,10788,10790,10848,-0.046551724137820,0.142372881356092,-0.041379310344716,0.136440677966248,-0.041379310344706,0.148305084745899,-0.036206896551602,0.142372881356055,-0.011864406779650,0.000000000000009,-0.000000000000038,-0.010344827586217,0.000000000000035,0.010344827586218,0.011864406779653,-0.000000000000010,2 -10731,10789,10791,10849,-0.046551724137811,0.154237288135738,-0.041379310344706,0.148305084745899,-0.041379310344697,0.160169491525543,-0.036206896551592,0.154237288135704,-0.011864406779643,0.000000000000009,-0.000000000000035,-0.010344827586218,0.000000000000034,0.010344827586219,0.011864406779644,-0.000000000000010,2 -10732,10790,10792,10850,-0.046551724137802,0.166101694915383,-0.041379310344697,0.160169491525543,-0.041379310344687,0.172033898305190,-0.036206896551582,0.166101694915350,-0.011864406779646,0.000000000000009,-0.000000000000034,-0.010344827586219,0.000000000000032,0.010344827586220,0.011864406779648,-0.000000000000010,2 -10733,10791,10793,10851,-0.046551724137793,0.177966101695033,-0.041379310344687,0.172033898305190,-0.041379310344678,0.183898305084846,-0.036206896551572,0.177966101695003,-0.011864406779654,0.000000000000009,-0.000000000000032,-0.010344827586220,0.000000000000029,0.010344827586221,0.011864406779657,-0.000000000000010,2 -10734,10792,10794,10852,-0.046551724137784,0.189830508474682,-0.041379310344678,0.183898305084846,-0.041379310344668,0.195762711864490,-0.036206896551562,0.189830508474653,-0.011864406779643,0.000000000000009,-0.000000000000029,-0.010344827586221,0.000000000000028,0.010344827586222,0.011864406779645,-0.000000000000010,2 -10735,10793,10795,10853,-0.046551724137774,0.201694915254332,-0.041379310344668,0.195762711864490,-0.041379310344659,0.207627118644149,-0.036206896551552,0.201694915254306,-0.011864406779657,0.000000000000009,-0.000000000000028,-0.010344827586222,0.000000000000024,0.010344827586222,0.011864406779661,-0.000000000000010,2 -10736,10794,10796,10854,-0.046551724137765,0.213559322033984,-0.041379310344659,0.207627118644149,-0.041379310344649,0.219491525423796,-0.036206896551542,0.213559322033961,-0.011864406779647,0.000000000000009,-0.000000000000024,-0.010344827586222,0.000000000000023,0.010344827586223,0.011864406779649,-0.000000000000010,2 -10737,10795,10797,10855,-0.046551724137756,0.225423728813636,-0.041379310344649,0.219491525423796,-0.041379310344639,0.231355932203453,-0.036206896551532,0.225423728813614,-0.011864406779656,0.000000000000009,-0.000000000000023,-0.010344827586223,0.000000000000021,0.010344827586224,0.011864406779658,-0.000000000000010,2 -10738,10796,10798,10856,-0.046551724137747,0.237288135593290,-0.041379310344639,0.231355932203453,-0.041379310344630,0.243220338983108,-0.036206896551522,0.237288135593271,-0.011864406779653,0.000000000000009,-0.000000000000021,-0.010344827586224,0.000000000000019,0.010344827586225,0.011864406779655,-0.000000000000010,2 -10739,10797,10799,10857,-0.046551724137738,0.249152542372939,-0.041379310344630,0.243220338983108,-0.041379310344620,0.255084745762754,-0.036206896551512,0.249152542372922,-0.011864406779645,0.000000000000009,-0.000000000000019,-0.010344827586225,0.000000000000016,0.010344827586226,0.011864406779647,-0.000000000000010,2 -10740,10798,10800,10858,-0.046551724137729,0.261016949152586,-0.041379310344620,0.255084745762754,-0.041379310344611,0.266949152542404,-0.036206896551502,0.261016949152572,-0.011864406779649,0.000000000000009,-0.000000000000016,-0.010344827586226,0.000000000000013,0.010344827586227,0.011864406779652,-0.000000000000010,2 -10741,10799,10801,10859,-0.046551724137720,0.272881355932237,-0.041379310344611,0.266949152542404,-0.041379310344601,0.278813559322056,-0.036206896551492,0.272881355932224,-0.011864406779651,0.000000000000009,-0.000000000000013,-0.010344827586227,0.000000000000012,0.010344827586228,0.011864406779652,-0.000000000000010,2 -10742,10800,10802,10860,-0.046551724137710,0.284745762711892,-0.041379310344601,0.278813559322056,-0.041379310344592,0.290677966101717,-0.036206896551482,0.284745762711881,-0.011864406779659,0.000000000000009,-0.000000000000012,-0.010344827586228,0.000000000000009,0.010344827586229,0.011864406779662,-0.000000000000010,2 -10743,10801,10803,10861,-0.046551724137701,0.296610169491549,-0.041379310344592,0.290677966101717,-0.041379310344582,0.302542372881373,-0.036206896551472,0.296610169491540,-0.011864406779656,0.000000000000009,-0.000000000000009,-0.010344827586229,0.000000000000008,0.010344827586229,0.011864406779657,-0.000000000000010,2 -10744,10802,10804,10862,-0.046551724137692,0.308474576271204,-0.041379310344582,0.302542372881373,-0.041379310344572,0.314406779661028,-0.036206896551462,0.308474576271197,-0.011864406779654,0.000000000000009,-0.000000000000008,-0.010344827586229,0.000000000000006,0.010344827586230,0.011864406779657,-0.000000000000010,2 -10745,10803,10805,10863,-0.046551724137683,0.320338983050861,-0.041379310344572,0.314406779661028,-0.041379310344563,0.326271186440688,-0.036206896551452,0.320338983050856,-0.011864406779658,0.000000000000009,-0.000000000000006,-0.010344827586230,0.000000000000004,0.010344827586231,0.011864406779660,-0.000000000000010,2 -10746,10804,10806,10864,-0.046551724137674,0.332203389830516,-0.041379310344563,0.326271186440688,-0.041379310344553,0.338135593220340,-0.036206896551442,0.332203389830512,-0.011864406779652,0.000000000000009,-0.000000000000004,-0.010344827586231,0.000000000000002,0.010344827586232,0.011864406779654,-0.000000000000010,2 -7946,10747,10805,10865,-0.041379310344544,0.350000000000000,-0.046551724137665,0.344067796610171,-0.041379310344553,0.338135593220340,-0.036206896551432,0.344067796610170,-0.000000000000000,0.010344827586233,-0.011864406779659,0.000000000000009,-0.000000000000002,-0.010344827586232,0.011864406779661,-0.000000000000010,2 -8937,10748,10808,10866,-0.031034482758929,-0.350000000000000,-0.036206896552013,-0.344067796610162,-0.031034482758918,-0.338135593220325,-0.025862068965834,-0.344067796610163,-0.000000000000000,-0.010344827586179,-0.011864406779676,0.000000000000010,0.000000000000002,0.010344827586179,0.011864406779674,-0.000000000000011,2 -10749,10807,10809,10867,-0.036206896552003,-0.332203389830490,-0.031034482758918,-0.338135593220325,-0.031034482758908,-0.326271186440658,-0.025862068965823,-0.332203389830493,-0.011864406779668,0.000000000000010,-0.000000000000002,-0.010344827586179,0.000000000000004,0.010344827586180,0.011864406779666,-0.000000000000011,2 -10750,10808,10810,10868,-0.036206896551993,-0.320338983050821,-0.031034482758908,-0.326271186440658,-0.031034482758897,-0.314406779660989,-0.025862068965812,-0.320338983050826,-0.011864406779669,0.000000000000010,-0.000000000000004,-0.010344827586180,0.000000000000006,0.010344827586181,0.011864406779668,-0.000000000000011,2 -10751,10809,10811,10869,-0.036206896551983,-0.308474576271148,-0.031034482758897,-0.314406779660989,-0.031034482758887,-0.302542372881315,-0.025862068965801,-0.308474576271155,-0.011864406779676,0.000000000000010,-0.000000000000006,-0.010344827586181,0.000000000000008,0.010344827586182,0.011864406779673,-0.000000000000011,2 -10752,10810,10812,10870,-0.036206896551973,-0.296610169491479,-0.031034482758887,-0.302542372881315,-0.031034482758876,-0.290677966101652,-0.025862068965790,-0.296610169491487,-0.011864406779663,0.000000000000010,-0.000000000000008,-0.010344827586182,0.000000000000009,0.010344827586183,0.011864406779662,-0.000000000000011,2 -10753,10811,10813,10871,-0.036206896551963,-0.284745762711805,-0.031034482758876,-0.290677966101652,-0.031034482758866,-0.278813559321970,-0.025862068965779,-0.284745762711816,-0.011864406779683,0.000000000000010,-0.000000000000009,-0.010344827586183,0.000000000000012,0.010344827586184,0.011864406779680,-0.000000000000011,2 -10754,10812,10814,10872,-0.036206896551953,-0.272881355932133,-0.031034482758866,-0.278813559321970,-0.031034482758855,-0.266949152542310,-0.025862068965768,-0.272881355932146,-0.011864406779661,0.000000000000010,-0.000000000000012,-0.010344827586184,0.000000000000014,0.010344827586185,0.011864406779659,-0.000000000000011,2 -10755,10813,10815,10873,-0.036206896551943,-0.261016949152467,-0.031034482758855,-0.266949152542310,-0.031034482758845,-0.255084745762639,-0.025862068965757,-0.261016949152482,-0.011864406779672,0.000000000000010,-0.000000000000014,-0.010344827586185,0.000000000000016,0.010344827586186,0.011864406779669,-0.000000000000011,2 -10756,10814,10816,10874,-0.036206896551933,-0.249152542372799,-0.031034482758845,-0.255084745762639,-0.031034482758834,-0.243220338982977,-0.025862068965746,-0.249152542372817,-0.011864406779663,0.000000000000010,-0.000000000000016,-0.010344827586186,0.000000000000019,0.010344827586187,0.011864406779661,-0.000000000000011,2 -10757,10815,10817,10875,-0.036206896551923,-0.237288135593134,-0.031034482758834,-0.243220338982977,-0.031034482758824,-0.231355932203310,-0.025862068965735,-0.237288135593153,-0.011864406779668,0.000000000000010,-0.000000000000019,-0.010344827586187,0.000000000000020,0.010344827586188,0.011864406779666,-0.000000000000011,2 -10758,10816,10818,10876,-0.036206896551913,-0.225423728813462,-0.031034482758824,-0.231355932203310,-0.031034482758813,-0.219491525423636,-0.025862068965725,-0.225423728813484,-0.011864406779675,0.000000000000010,-0.000000000000020,-0.010344827586188,0.000000000000023,0.010344827586189,0.011864406779673,-0.000000000000011,2 -10759,10817,10819,10877,-0.036206896551903,-0.213559322033795,-0.031034482758813,-0.219491525423636,-0.031034482758803,-0.207627118643978,-0.025862068965714,-0.213559322033819,-0.011864406779659,0.000000000000010,-0.000000000000023,-0.010344827586189,0.000000000000024,0.010344827586190,0.011864406779657,-0.000000000000011,2 -10760,10818,10820,10878,-0.036206896551893,-0.201694915254125,-0.031034482758803,-0.207627118643978,-0.031034482758792,-0.195762711864297,-0.025862068965703,-0.201694915254151,-0.011864406779682,0.000000000000010,-0.000000000000024,-0.010344827586190,0.000000000000028,0.010344827586191,0.011864406779679,-0.000000000000011,2 -10761,10819,10821,10879,-0.036206896551883,-0.189830508474456,-0.031034482758792,-0.195762711864297,-0.031034482758782,-0.183898305084642,-0.025862068965692,-0.189830508474484,-0.011864406779656,0.000000000000010,-0.000000000000028,-0.010344827586191,0.000000000000029,0.010344827586191,0.011864406779654,-0.000000000000011,2 -10762,10820,10822,10880,-0.036206896551873,-0.177966101694790,-0.031034482758782,-0.183898305084642,-0.031034482758772,-0.172033898304967,-0.025862068965681,-0.177966101694820,-0.011864406779677,0.000000000000010,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779674,-0.000000000000011,2 -10763,10821,10823,10881,-0.036206896551863,-0.166101694915120,-0.031034482758772,-0.172033898304967,-0.031034482758761,-0.160169491525306,-0.025862068965670,-0.166101694915153,-0.011864406779662,0.000000000000010,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779660,-0.000000000000011,2 -10764,10822,10824,10882,-0.036206896551853,-0.154237288135461,-0.031034482758761,-0.160169491525306,-0.031034482758751,-0.148305084745651,-0.025862068965659,-0.154237288135496,-0.011864406779656,0.000000000000010,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779654,-0.000000000000011,2 -10765,10823,10825,10883,-0.036206896551843,-0.142372881355799,-0.031034482758751,-0.148305084745651,-0.031034482758740,-0.136440677965983,-0.025862068965648,-0.142372881355835,-0.011864406779669,0.000000000000010,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779667,-0.000000000000011,2 -10766,10824,10826,10884,-0.036206896551833,-0.130508474576130,-0.031034482758740,-0.136440677965983,-0.031034482758730,-0.124576271186316,-0.025862068965637,-0.130508474576169,-0.011864406779668,0.000000000000010,-0.000000000000038,-0.010344827586195,0.000000000000040,0.010344827586196,0.011864406779666,-0.000000000000011,2 -10767,10825,10827,10885,-0.036206896551823,-0.118644067796461,-0.031034482758730,-0.124576271186316,-0.031034482758719,-0.112711864406646,-0.025862068965626,-0.118644067796501,-0.011864406779670,0.000000000000010,-0.000000000000040,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779668,-0.000000000000011,2 -10768,10826,10828,10886,-0.036206896551813,-0.106779661016794,-0.031034482758719,-0.112711864406646,-0.031034482758709,-0.100847457626984,-0.025862068965615,-0.106779661016837,-0.011864406779664,0.000000000000010,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779662,-0.000000000000011,2 -10769,10827,10829,10887,-0.036206896551803,-0.094915254237126,-0.031034482758709,-0.100847457626984,-0.031034482758698,-0.088983050847314,-0.025862068965604,-0.094915254237172,-0.011864406779670,0.000000000000010,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779668,-0.000000000000011,2 -10770,10828,10830,10888,-0.036206896551793,-0.083050847457456,-0.031034482758698,-0.088983050847314,-0.031034482758688,-0.077118644067645,-0.025862068965593,-0.083050847457504,-0.011864406779670,0.000000000000010,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779668,-0.000000000000011,2 -10771,10829,10831,10889,-0.036206896551783,-0.071186440677789,-0.031034482758688,-0.077118644067645,-0.031034482758677,-0.065254237287983,-0.025862068965582,-0.071186440677839,-0.011864406779664,0.000000000000010,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779662,-0.000000000000011,2 -10772,10830,10832,10890,-0.036206896551773,-0.059322033898122,-0.031034482758677,-0.065254237287983,-0.031034482758667,-0.053389830508313,-0.025862068965571,-0.059322033898174,-0.011864406779671,0.000000000000010,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779668,-0.000000000000011,2 -10773,10831,10833,10891,-0.036206896551763,-0.047457627118453,-0.031034482758667,-0.053389830508313,-0.031034482758656,-0.041525423728647,-0.025862068965561,-0.047457627118507,-0.011864406779668,0.000000000000010,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779665,-0.000000000000011,2 -10774,10832,10834,10892,-0.036206896551753,-0.035593220338786,-0.031034482758656,-0.041525423728647,-0.031034482758646,-0.029661016948981,-0.025862068965550,-0.035593220338842,-0.011864406779667,0.000000000000010,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779664,-0.000000000000011,2 -10775,10833,10835,10893,-0.036206896551743,-0.023728813559117,-0.031034482758646,-0.029661016948981,-0.031034482758635,-0.017796610169312,-0.025862068965539,-0.023728813559176,-0.011864406779671,0.000000000000010,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586204,0.011864406779668,-0.000000000000011,2 -10776,10834,10836,10894,-0.036206896551733,-0.011864406779450,-0.031034482758635,-0.017796610169312,-0.031034482758625,-0.005932203389649,-0.025862068965528,-0.011864406779511,-0.011864406779664,0.000000000000010,-0.000000000000060,-0.010344827586204,0.000000000000062,0.010344827586205,0.011864406779662,-0.000000000000011,2 -10777,10835,10837,10895,-0.036206896551723,0.000000000000218,-0.031034482758625,-0.005932203389649,-0.031034482758614,0.005932203390023,-0.025862068965517,0.000000000000156,-0.011864406779673,0.000000000000010,-0.000000000000062,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000011,2 -10778,10836,10838,10896,-0.036206896551713,0.011864406779879,-0.031034482758614,0.005932203390023,-0.031034482758604,0.017796610169674,-0.025862068965506,0.011864406779818,-0.011864406779649,0.000000000000010,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586207,0.011864406779651,-0.000000000000011,2 -10779,10837,10839,10897,-0.036206896551703,0.023728813559531,-0.031034482758604,0.017796610169674,-0.031034482758593,0.029661016949328,-0.025862068965495,0.023728813559472,-0.011864406779653,0.000000000000010,-0.000000000000060,-0.010344827586207,0.000000000000058,0.010344827586208,0.011864406779656,-0.000000000000011,2 -10780,10838,10840,10898,-0.036206896551693,0.035593220339183,-0.031034482758593,0.029661016949328,-0.031034482758583,0.041525423728981,-0.025862068965484,0.035593220339126,-0.011864406779651,0.000000000000010,-0.000000000000058,-0.010344827586208,0.000000000000056,0.010344827586209,0.011864406779653,-0.000000000000011,2 -10781,10839,10841,10899,-0.036206896551683,0.047457627118834,-0.031034482758583,0.041525423728981,-0.031034482758573,0.053389830508633,-0.025862068965473,0.047457627118780,-0.011864406779652,0.000000000000010,-0.000000000000056,-0.010344827586209,0.000000000000053,0.010344827586210,0.011864406779654,-0.000000000000011,2 -10782,10840,10842,10900,-0.036206896551673,0.059322033898487,-0.031034482758573,0.053389830508633,-0.031034482758562,0.065254237288288,-0.025862068965462,0.059322033898435,-0.011864406779653,0.000000000000010,-0.000000000000053,-0.010344827586210,0.000000000000051,0.010344827586211,0.011864406779656,-0.000000000000011,2 -10783,10841,10843,10901,-0.036206896551663,0.071186440678138,-0.031034482758562,0.065254237288288,-0.031034482758552,0.077118644067938,-0.025862068965451,0.071186440678088,-0.011864406779649,0.000000000000010,-0.000000000000051,-0.010344827586211,0.000000000000049,0.010344827586212,0.011864406779651,-0.000000000000011,2 -10784,10842,10844,10902,-0.036206896551653,0.083050847457790,-0.031034482758552,0.077118644067938,-0.031034482758541,0.088983050847593,-0.025862068965440,0.083050847457742,-0.011864406779653,0.000000000000010,-0.000000000000049,-0.010344827586212,0.000000000000046,0.010344827586213,0.011864406779656,-0.000000000000011,2 -10785,10843,10845,10903,-0.036206896551642,0.094915254237443,-0.031034482758541,0.088983050847593,-0.031034482758531,0.100847457627248,-0.025862068965429,0.094915254237398,-0.011864406779653,0.000000000000010,-0.000000000000046,-0.010344827586213,0.000000000000044,0.010344827586214,0.011864406779656,-0.000000000000011,2 -10786,10844,10846,10904,-0.036206896551632,0.106779661017094,-0.031034482758531,0.100847457627248,-0.031034482758520,0.112711864406898,-0.025862068965418,0.106779661017051,-0.011864406779649,0.000000000000010,-0.000000000000044,-0.010344827586214,0.000000000000042,0.010344827586215,0.011864406779651,-0.000000000000011,2 -10787,10845,10847,10905,-0.036206896551622,0.118644067796746,-0.031034482758520,0.112711864406898,-0.031034482758510,0.124576271186553,-0.025862068965407,0.118644067796705,-0.011864406779654,0.000000000000010,-0.000000000000042,-0.010344827586215,0.000000000000039,0.010344827586216,0.011864406779656,-0.000000000000011,2 -10788,10846,10848,10906,-0.036206896551612,0.130508474576401,-0.031034482758510,0.124576271186553,-0.031034482758499,0.136440677966210,-0.025862068965396,0.130508474576362,-0.011864406779656,0.000000000000010,-0.000000000000039,-0.010344827586216,0.000000000000038,0.010344827586216,0.011864406779658,-0.000000000000011,2 -10789,10847,10849,10907,-0.036206896551602,0.142372881356055,-0.031034482758499,0.136440677966210,-0.031034482758489,0.148305084745864,-0.025862068965386,0.142372881356018,-0.011864406779653,0.000000000000010,-0.000000000000038,-0.010344827586216,0.000000000000035,0.010344827586217,0.011864406779655,-0.000000000000011,2 -10790,10848,10850,10908,-0.036206896551592,0.154237288135704,-0.031034482758489,0.148305084745864,-0.031034482758478,0.160169491525509,-0.025862068965375,0.154237288135669,-0.011864406779644,0.000000000000010,-0.000000000000035,-0.010344827586217,0.000000000000034,0.010344827586218,0.011864406779646,-0.000000000000011,2 -10791,10849,10851,10909,-0.036206896551582,0.166101694915350,-0.031034482758478,0.160169491525509,-0.031034482758468,0.172033898305158,-0.025862068965364,0.166101694915317,-0.011864406779648,0.000000000000010,-0.000000000000034,-0.010344827586218,0.000000000000032,0.010344827586219,0.011864406779650,-0.000000000000011,2 -10792,10850,10852,10910,-0.036206896551572,0.177966101695003,-0.031034482758468,0.172033898305158,-0.031034482758457,0.183898305084817,-0.025862068965353,0.177966101694972,-0.011864406779657,0.000000000000010,-0.000000000000032,-0.010344827586219,0.000000000000029,0.010344827586220,0.011864406779660,-0.000000000000011,2 -10793,10851,10853,10911,-0.036206896551562,0.189830508474653,-0.031034482758457,0.183898305084817,-0.031034482758447,0.195762711864462,-0.025862068965342,0.189830508474625,-0.011864406779645,0.000000000000010,-0.000000000000029,-0.010344827586220,0.000000000000027,0.010344827586221,0.011864406779646,-0.000000000000011,2 -10794,10852,10854,10912,-0.036206896551552,0.201694915254306,-0.031034482758447,0.195762711864462,-0.031034482758436,0.207627118644124,-0.025862068965331,0.201694915254280,-0.011864406779661,0.000000000000010,-0.000000000000027,-0.010344827586221,0.000000000000024,0.010344827586222,0.011864406779664,-0.000000000000011,2 -10795,10853,10855,10913,-0.036206896551542,0.213559322033961,-0.031034482758436,0.207627118644124,-0.031034482758426,0.219491525423774,-0.025862068965320,0.213559322033937,-0.011864406779649,0.000000000000010,-0.000000000000024,-0.010344827586222,0.000000000000023,0.010344827586223,0.011864406779650,-0.000000000000011,2 -10796,10854,10856,10914,-0.036206896551532,0.225423728813614,-0.031034482758426,0.219491525423774,-0.031034482758415,0.231355932203433,-0.025862068965309,0.225423728813592,-0.011864406779658,0.000000000000010,-0.000000000000023,-0.010344827586223,0.000000000000020,0.010344827586224,0.011864406779661,-0.000000000000011,2 -10797,10855,10857,10915,-0.036206896551522,0.237288135593271,-0.031034482758415,0.231355932203433,-0.031034482758405,0.243220338983089,-0.025862068965298,0.237288135593251,-0.011864406779655,0.000000000000010,-0.000000000000020,-0.010344827586224,0.000000000000019,0.010344827586225,0.011864406779657,-0.000000000000011,2 -10798,10856,10858,10916,-0.036206896551512,0.249152542372922,-0.031034482758405,0.243220338983089,-0.031034482758395,0.255084745762737,-0.025862068965287,0.249152542372904,-0.011864406779647,0.000000000000010,-0.000000000000019,-0.010344827586225,0.000000000000016,0.010344827586226,0.011864406779650,-0.000000000000011,2 -10799,10857,10859,10917,-0.036206896551502,0.261016949152572,-0.031034482758395,0.255084745762737,-0.031034482758384,0.266949152542391,-0.025862068965276,0.261016949152557,-0.011864406779652,0.000000000000010,-0.000000000000016,-0.010344827586226,0.000000000000014,0.010344827586227,0.011864406779655,-0.000000000000011,2 -10800,10858,10860,10918,-0.036206896551492,0.272881355932224,-0.031034482758384,0.266949152542391,-0.031034482758374,0.278813559322044,-0.025862068965265,0.272881355932211,-0.011864406779652,0.000000000000010,-0.000000000000014,-0.010344827586227,0.000000000000012,0.010344827586228,0.011864406779654,-0.000000000000011,2 -10801,10859,10861,10919,-0.036206896551482,0.284745762711881,-0.031034482758374,0.278813559322044,-0.031034482758363,0.290677966101707,-0.025862068965254,0.284745762711870,-0.011864406779662,0.000000000000010,-0.000000000000012,-0.010344827586228,0.000000000000009,0.010344827586228,0.011864406779665,-0.000000000000011,2 -10802,10860,10862,10920,-0.036206896551472,0.296610169491540,-0.031034482758363,0.290677966101707,-0.031034482758353,0.302542372881365,-0.025862068965243,0.296610169491532,-0.011864406779657,0.000000000000010,-0.000000000000009,-0.010344827586228,0.000000000000008,0.010344827586229,0.011864406779658,-0.000000000000011,2 -10803,10861,10863,10921,-0.036206896551462,0.308474576271197,-0.031034482758353,0.302542372881365,-0.031034482758342,0.314406779661023,-0.025862068965232,0.308474576271190,-0.011864406779657,0.000000000000010,-0.000000000000008,-0.010344827586229,0.000000000000006,0.010344827586230,0.011864406779659,-0.000000000000011,2 -10804,10862,10864,10922,-0.036206896551452,0.320338983050856,-0.031034482758342,0.314406779661023,-0.031034482758332,0.326271186440683,-0.025862068965221,0.320338983050851,-0.011864406779660,0.000000000000010,-0.000000000000006,-0.010344827586230,0.000000000000004,0.010344827586231,0.011864406779661,-0.000000000000011,2 -10805,10863,10865,10923,-0.036206896551442,0.332203389830512,-0.031034482758332,0.326271186440683,-0.031034482758321,0.338135593220338,-0.025862068965211,0.332203389830509,-0.011864406779654,0.000000000000010,-0.000000000000004,-0.010344827586231,0.000000000000002,0.010344827586232,0.011864406779656,-0.000000000000011,2 -7932,10806,10864,10924,-0.031034482758311,0.350000000000000,-0.036206896551432,0.344067796610170,-0.031034482758321,0.338135593220338,-0.025862068965200,0.344067796610168,-0.000000000000000,0.010344827586233,-0.011864406779661,0.000000000000010,-0.000000000000002,-0.010344827586232,0.011864406779663,-0.000000000000011,2 -8938,10807,10867,10925,-0.020689655172751,-0.350000000000000,-0.025862068965834,-0.344067796610163,-0.020689655172739,-0.338135593220327,-0.015517241379656,-0.344067796610164,-0.000000000000000,-0.010344827586177,-0.011864406779674,0.000000000000011,0.000000000000002,0.010344827586178,0.011864406779671,-0.000000000000012,2 -10808,10866,10868,10926,-0.025862068965823,-0.332203389830493,-0.020689655172739,-0.338135593220327,-0.020689655172728,-0.326271186440662,-0.015517241379644,-0.332203389830496,-0.011864406779666,0.000000000000011,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779664,-0.000000000000012,2 -10809,10867,10869,10927,-0.025862068965812,-0.320338983050826,-0.020689655172728,-0.326271186440662,-0.020689655172716,-0.314406779660995,-0.015517241379632,-0.320338983050831,-0.011864406779668,0.000000000000011,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779667,-0.000000000000012,2 -10810,10868,10870,10928,-0.025862068965801,-0.308474576271155,-0.020689655172716,-0.314406779660995,-0.020689655172705,-0.302542372881323,-0.015517241379620,-0.308474576271162,-0.011864406779673,0.000000000000011,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779670,-0.000000000000012,2 -10811,10869,10871,10929,-0.025862068965790,-0.296610169491487,-0.020689655172705,-0.302542372881323,-0.020689655172694,-0.290677966101661,-0.015517241379608,-0.296610169491496,-0.011864406779662,0.000000000000011,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779662,-0.000000000000012,2 -10812,10870,10872,10930,-0.025862068965779,-0.284745762711816,-0.020689655172694,-0.290677966101661,-0.020689655172682,-0.278813559321982,-0.015517241379596,-0.284745762711827,-0.011864406779680,0.000000000000011,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779677,-0.000000000000012,2 -10813,10871,10873,10931,-0.025862068965768,-0.272881355932146,-0.020689655172682,-0.278813559321982,-0.020689655172671,-0.266949152542323,-0.015517241379584,-0.272881355932159,-0.011864406779659,0.000000000000011,-0.000000000000012,-0.010344827586183,0.000000000000014,0.010344827586184,0.011864406779658,-0.000000000000012,2 -10814,10872,10874,10932,-0.025862068965757,-0.261016949152482,-0.020689655172671,-0.266949152542323,-0.020689655172659,-0.255084745762656,-0.015517241379573,-0.261016949152497,-0.011864406779669,0.000000000000011,-0.000000000000014,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779666,-0.000000000000012,2 -10815,10873,10875,10933,-0.025862068965746,-0.249152542372817,-0.020689655172659,-0.255084745762656,-0.020689655172648,-0.243220338982996,-0.015517241379561,-0.249152542372835,-0.011864406779661,0.000000000000011,-0.000000000000016,-0.010344827586185,0.000000000000019,0.010344827586186,0.011864406779658,-0.000000000000012,2 -10816,10874,10876,10934,-0.025862068965735,-0.237288135593153,-0.020689655172648,-0.243220338982996,-0.020689655172636,-0.231355932203331,-0.015517241379549,-0.237288135593173,-0.011864406779666,0.000000000000011,-0.000000000000019,-0.010344827586186,0.000000000000020,0.010344827586187,0.011864406779665,-0.000000000000012,2 -10817,10875,10877,10935,-0.025862068965725,-0.225423728813484,-0.020689655172636,-0.231355932203331,-0.020689655172625,-0.219491525423659,-0.015517241379537,-0.225423728813506,-0.011864406779673,0.000000000000011,-0.000000000000020,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779670,-0.000000000000012,2 -10818,10876,10878,10936,-0.025862068965714,-0.213559322033819,-0.020689655172625,-0.219491525423659,-0.020689655172613,-0.207627118644003,-0.015517241379525,-0.213559322033843,-0.011864406779657,0.000000000000011,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779656,-0.000000000000012,2 -10819,10877,10879,10937,-0.025862068965703,-0.201694915254151,-0.020689655172613,-0.207627118644003,-0.020689655172602,-0.195762711864325,-0.015517241379513,-0.201694915254177,-0.011864406779679,0.000000000000011,-0.000000000000024,-0.010344827586189,0.000000000000027,0.010344827586190,0.011864406779676,-0.000000000000012,2 -10820,10878,10880,10938,-0.025862068965692,-0.189830508474484,-0.020689655172602,-0.195762711864325,-0.020689655172591,-0.183898305084671,-0.015517241379501,-0.189830508474512,-0.011864406779654,0.000000000000011,-0.000000000000027,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779653,-0.000000000000012,2 -10821,10879,10881,10939,-0.025862068965681,-0.177966101694820,-0.020689655172591,-0.183898305084671,-0.020689655172579,-0.172033898304999,-0.015517241379489,-0.177966101694850,-0.011864406779674,0.000000000000011,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779671,-0.000000000000012,2 -10822,10880,10882,10940,-0.025862068965670,-0.166101694915153,-0.020689655172579,-0.172033898304999,-0.020689655172568,-0.160169491525340,-0.015517241379477,-0.166101694915186,-0.011864406779660,0.000000000000011,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779658,-0.000000000000012,2 -10823,10881,10883,10941,-0.025862068965659,-0.154237288135496,-0.020689655172568,-0.160169491525340,-0.020689655172556,-0.148305084745687,-0.015517241379465,-0.154237288135531,-0.011864406779654,0.000000000000011,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779653,-0.000000000000012,2 -10824,10882,10884,10942,-0.025862068965648,-0.142372881355835,-0.020689655172556,-0.148305084745687,-0.020689655172545,-0.136440677966021,-0.015517241379453,-0.142372881355872,-0.011864406779667,0.000000000000011,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779665,-0.000000000000012,2 -10825,10883,10885,10943,-0.025862068965637,-0.130508474576169,-0.020689655172545,-0.136440677966021,-0.020689655172533,-0.124576271186355,-0.015517241379441,-0.130508474576207,-0.011864406779666,0.000000000000011,-0.000000000000038,-0.010344827586195,0.000000000000039,0.010344827586196,0.011864406779665,-0.000000000000012,2 -10826,10884,10886,10944,-0.025862068965626,-0.118644067796501,-0.020689655172533,-0.124576271186355,-0.020689655172522,-0.112711864406688,-0.015517241379429,-0.118644067796542,-0.011864406779668,0.000000000000011,-0.000000000000039,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779666,-0.000000000000012,2 -10827,10885,10887,10945,-0.025862068965615,-0.106779661016837,-0.020689655172522,-0.112711864406688,-0.020689655172511,-0.100847457627028,-0.015517241379417,-0.106779661016879,-0.011864406779662,0.000000000000011,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779660,-0.000000000000012,2 -10828,10886,10888,10946,-0.025862068965604,-0.094915254237172,-0.020689655172511,-0.100847457627028,-0.020689655172499,-0.088983050847361,-0.015517241379406,-0.094915254237217,-0.011864406779668,0.000000000000011,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779666,-0.000000000000012,2 -10829,10887,10889,10947,-0.025862068965593,-0.083050847457504,-0.020689655172499,-0.088983050847361,-0.020689655172488,-0.077118644067694,-0.015517241379394,-0.083050847457551,-0.011864406779668,0.000000000000011,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779666,-0.000000000000012,2 -10830,10888,10890,10948,-0.025862068965582,-0.071186440677839,-0.020689655172488,-0.077118644067694,-0.020689655172476,-0.065254237288033,-0.015517241379382,-0.071186440677889,-0.011864406779662,0.000000000000011,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779660,-0.000000000000012,2 -10831,10889,10891,10949,-0.025862068965571,-0.059322033898174,-0.020689655172476,-0.065254237288033,-0.020689655172465,-0.053389830508367,-0.015517241379370,-0.059322033898226,-0.011864406779668,0.000000000000011,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779666,-0.000000000000012,2 -10832,10890,10892,10950,-0.025862068965561,-0.047457627118507,-0.020689655172465,-0.053389830508367,-0.020689655172453,-0.041525423728702,-0.015517241379358,-0.047457627118562,-0.011864406779665,0.000000000000011,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779663,-0.000000000000012,2 -10833,10891,10893,10951,-0.025862068965550,-0.035593220338842,-0.020689655172453,-0.041525423728702,-0.020689655172442,-0.029661016949039,-0.015517241379346,-0.035593220338899,-0.011864406779664,0.000000000000011,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779662,-0.000000000000012,2 -10834,10892,10894,10952,-0.025862068965539,-0.023728813559176,-0.020689655172442,-0.029661016949039,-0.020689655172431,-0.017796610169372,-0.015517241379334,-0.023728813559235,-0.011864406779668,0.000000000000011,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586205,0.011864406779666,-0.000000000000012,2 -10835,10893,10895,10953,-0.025862068965528,-0.011864406779511,-0.020689655172431,-0.017796610169372,-0.020689655172419,-0.005932203389712,-0.015517241379322,-0.011864406779573,-0.011864406779662,0.000000000000011,-0.000000000000060,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779660,-0.000000000000012,2 -10836,10894,10896,10954,-0.025862068965517,0.000000000000156,-0.020689655172419,-0.005932203389712,-0.020689655172408,0.005932203389961,-0.015517241379310,0.000000000000094,-0.011864406779673,0.000000000000011,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000012,2 -10837,10895,10897,10955,-0.025862068965506,0.011864406779818,-0.020689655172408,0.005932203389961,-0.020689655172396,0.017796610169613,-0.015517241379298,0.011864406779757,-0.011864406779651,0.000000000000011,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586208,0.011864406779653,-0.000000000000012,2 -10838,10896,10898,10956,-0.025862068965495,0.023728813559472,-0.020689655172396,0.017796610169613,-0.020689655172385,0.029661016949271,-0.015517241379286,0.023728813559413,-0.011864406779656,0.000000000000011,-0.000000000000060,-0.010344827586208,0.000000000000058,0.010344827586209,0.011864406779658,-0.000000000000012,2 -10839,10897,10899,10957,-0.025862068965484,0.035593220339126,-0.020689655172385,0.029661016949271,-0.020689655172373,0.041525423728925,-0.015517241379274,0.035593220339069,-0.011864406779653,0.000000000000011,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779655,-0.000000000000012,2 -10840,10898,10900,10958,-0.025862068965473,0.047457627118780,-0.020689655172373,0.041525423728925,-0.020689655172362,0.053389830508580,-0.015517241379262,0.047457627118725,-0.011864406779654,0.000000000000011,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586211,0.011864406779656,-0.000000000000012,2 -10841,10899,10901,10959,-0.025862068965462,0.059322033898435,-0.020689655172362,0.053389830508580,-0.020689655172351,0.065254237288237,-0.015517241379250,0.059322033898383,-0.011864406779656,0.000000000000011,-0.000000000000053,-0.010344827586211,0.000000000000051,0.010344827586212,0.011864406779658,-0.000000000000012,2 -10842,10900,10902,10960,-0.025862068965451,0.071186440678088,-0.020689655172351,0.065254237288237,-0.020689655172339,0.077118644067890,-0.015517241379238,0.071186440678038,-0.011864406779651,0.000000000000011,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586213,0.011864406779653,-0.000000000000012,2 -10843,10901,10903,10961,-0.025862068965440,0.083050847457742,-0.020689655172339,0.077118644067890,-0.020689655172328,0.088983050847547,-0.015517241379227,0.083050847457694,-0.011864406779656,0.000000000000011,-0.000000000000049,-0.010344827586213,0.000000000000046,0.010344827586214,0.011864406779658,-0.000000000000012,2 -10844,10902,10904,10962,-0.025862068965429,0.094915254237398,-0.020689655172328,0.088983050847547,-0.020689655172316,0.100847457627204,-0.015517241379215,0.094915254237353,-0.011864406779656,0.000000000000011,-0.000000000000046,-0.010344827586214,0.000000000000044,0.010344827586215,0.011864406779658,-0.000000000000012,2 -10845,10903,10905,10963,-0.025862068965418,0.106779661017051,-0.020689655172316,0.100847457627204,-0.020689655172305,0.112711864406856,-0.015517241379203,0.106779661017008,-0.011864406779651,0.000000000000011,-0.000000000000044,-0.010344827586215,0.000000000000042,0.010344827586216,0.011864406779653,-0.000000000000012,2 -10846,10904,10906,10964,-0.025862068965407,0.118644067796705,-0.020689655172305,0.112711864406856,-0.020689655172293,0.124576271186513,-0.015517241379191,0.118644067796664,-0.011864406779656,0.000000000000011,-0.000000000000042,-0.010344827586216,0.000000000000039,0.010344827586217,0.011864406779658,-0.000000000000012,2 -10847,10905,10907,10965,-0.025862068965396,0.130508474576362,-0.020689655172293,0.124576271186513,-0.020689655172282,0.136440677966172,-0.015517241379179,0.130508474576323,-0.011864406779658,0.000000000000011,-0.000000000000039,-0.010344827586217,0.000000000000038,0.010344827586218,0.011864406779659,-0.000000000000012,2 -10848,10906,10908,10966,-0.025862068965386,0.142372881356018,-0.020689655172282,0.136440677966172,-0.020689655172271,0.148305084745828,-0.015517241379167,0.142372881355982,-0.011864406779655,0.000000000000011,-0.000000000000038,-0.010344827586218,0.000000000000035,0.010344827586219,0.011864406779658,-0.000000000000012,2 -10849,10907,10909,10967,-0.025862068965375,0.154237288135669,-0.020689655172271,0.148305084745828,-0.020689655172259,0.160169491525475,-0.015517241379155,0.154237288135635,-0.011864406779646,0.000000000000011,-0.000000000000035,-0.010344827586219,0.000000000000034,0.010344827586220,0.011864406779648,-0.000000000000012,2 -10850,10908,10910,10968,-0.025862068965364,0.166101694915317,-0.020689655172259,0.160169491525475,-0.020689655172248,0.172033898305126,-0.015517241379143,0.166101694915284,-0.011864406779650,0.000000000000011,-0.000000000000034,-0.010344827586220,0.000000000000032,0.010344827586221,0.011864406779652,-0.000000000000012,2 -10851,10909,10911,10969,-0.025862068965353,0.177966101694972,-0.020689655172248,0.172033898305126,-0.020689655172236,0.183898305084788,-0.015517241379131,0.177966101694942,-0.011864406779660,0.000000000000011,-0.000000000000032,-0.010344827586221,0.000000000000029,0.010344827586222,0.011864406779663,-0.000000000000012,2 -10852,10910,10912,10970,-0.025862068965342,0.189830508474625,-0.020689655172236,0.183898305084788,-0.020689655172225,0.195762711864435,-0.015517241379119,0.189830508474597,-0.011864406779646,0.000000000000011,-0.000000000000029,-0.010344827586222,0.000000000000028,0.010344827586223,0.011864406779648,-0.000000000000012,2 -10853,10911,10913,10971,-0.025862068965331,0.201694915254280,-0.020689655172225,0.195762711864435,-0.020689655172213,0.207627118644100,-0.015517241379107,0.201694915254254,-0.011864406779664,0.000000000000011,-0.000000000000028,-0.010344827586223,0.000000000000024,0.010344827586224,0.011864406779667,-0.000000000000012,2 -10854,10912,10914,10972,-0.025862068965320,0.213559322033937,-0.020689655172213,0.207627118644100,-0.020689655172202,0.219491525423751,-0.015517241379095,0.213559322033913,-0.011864406779650,0.000000000000011,-0.000000000000024,-0.010344827586224,0.000000000000023,0.010344827586225,0.011864406779652,-0.000000000000012,2 -10855,10913,10915,10973,-0.025862068965309,0.225423728813592,-0.020689655172202,0.219491525423751,-0.020689655172190,0.231355932203412,-0.015517241379083,0.225423728813571,-0.011864406779661,0.000000000000011,-0.000000000000023,-0.010344827586225,0.000000000000021,0.010344827586226,0.011864406779663,-0.000000000000012,2 -10856,10914,10916,10974,-0.025862068965298,0.237288135593251,-0.020689655172190,0.231355932203412,-0.020689655172179,0.243220338983070,-0.015517241379071,0.237288135593232,-0.011864406779657,0.000000000000011,-0.000000000000021,-0.010344827586226,0.000000000000019,0.010344827586227,0.011864406779659,-0.000000000000012,2 -10857,10915,10917,10975,-0.025862068965287,0.249152542372904,-0.020689655172179,0.243220338983070,-0.020689655172168,0.255084745762721,-0.015517241379060,0.249152542372887,-0.011864406779650,0.000000000000011,-0.000000000000019,-0.010344827586227,0.000000000000016,0.010344827586228,0.011864406779652,-0.000000000000012,2 -10858,10916,10918,10976,-0.025862068965276,0.261016949152557,-0.020689655172168,0.255084745762721,-0.020689655172156,0.266949152542377,-0.015517241379048,0.261016949152542,-0.011864406779655,0.000000000000011,-0.000000000000016,-0.010344827586228,0.000000000000014,0.010344827586229,0.011864406779658,-0.000000000000012,2 -10859,10917,10919,10977,-0.025862068965265,0.272881355932211,-0.020689655172156,0.266949152542377,-0.020689655172145,0.278813559322032,-0.015517241379036,0.272881355932198,-0.011864406779654,0.000000000000011,-0.000000000000014,-0.010344827586229,0.000000000000012,0.010344827586230,0.011864406779655,-0.000000000000012,2 -10860,10918,10920,10978,-0.025862068965254,0.284745762711870,-0.020689655172145,0.278813559322032,-0.020689655172133,0.290677966101698,-0.015517241379024,0.284745762711859,-0.011864406779665,0.000000000000011,-0.000000000000012,-0.010344827586230,0.000000000000009,0.010344827586231,0.011864406779668,-0.000000000000012,2 -10861,10919,10921,10979,-0.025862068965243,0.296610169491532,-0.020689655172133,0.290677966101698,-0.020689655172122,0.302542372881356,-0.015517241379012,0.296610169491523,-0.011864406779658,0.000000000000011,-0.000000000000009,-0.010344827586231,0.000000000000008,0.010344827586232,0.011864406779659,-0.000000000000012,2 -10862,10920,10922,10980,-0.025862068965232,0.308474576271190,-0.020689655172122,0.302542372881356,-0.020689655172110,0.314406779661017,-0.015517241379000,0.308474576271183,-0.011864406779659,0.000000000000011,-0.000000000000008,-0.010344827586232,0.000000000000006,0.010344827586233,0.011864406779662,-0.000000000000012,2 -10863,10921,10923,10981,-0.025862068965221,0.320338983050851,-0.020689655172110,0.314406779661017,-0.020689655172099,0.326271186440679,-0.015517241378988,0.320338983050846,-0.011864406779661,0.000000000000011,-0.000000000000006,-0.010344827586233,0.000000000000004,0.010344827586234,0.011864406779663,-0.000000000000012,2 -10864,10922,10924,10982,-0.025862068965211,0.332203389830509,-0.020689655172099,0.326271186440679,-0.020689655172088,0.338135593220336,-0.015517241378976,0.332203389830506,-0.011864406779656,0.000000000000011,-0.000000000000004,-0.010344827586234,0.000000000000002,0.010344827586235,0.011864406779658,-0.000000000000012,2 -7918,10865,10923,10983,-0.020689655172076,0.350000000000000,-0.025862068965200,0.344067796610168,-0.020689655172088,0.338135593220336,-0.015517241378964,0.344067796610167,-0.000000000000000,0.010344827586236,-0.011864406779663,0.000000000000011,-0.000000000000002,-0.010344827586235,0.011864406779665,-0.000000000000012,2 -8939,10866,10926,10984,-0.010344827586573,-0.350000000000000,-0.015517241379656,-0.344067796610164,-0.010344827586561,-0.338135593220329,-0.005172413793478,-0.344067796610165,-0.000000000000000,-0.010344827586177,-0.011864406779671,0.000000000000012,0.000000000000002,0.010344827586178,0.011864406779669,-0.000000000000013,2 -10867,10925,10927,10985,-0.015517241379644,-0.332203389830496,-0.010344827586561,-0.338135593220329,-0.010344827586548,-0.326271186440666,-0.005172413793465,-0.332203389830499,-0.011864406779664,0.000000000000012,-0.000000000000002,-0.010344827586178,0.000000000000004,0.010344827586179,0.011864406779662,-0.000000000000013,2 -10868,10926,10928,10986,-0.015517241379632,-0.320338983050831,-0.010344827586548,-0.326271186440666,-0.010344827586536,-0.314406779661000,-0.005172413793452,-0.320338983050836,-0.011864406779667,0.000000000000012,-0.000000000000004,-0.010344827586179,0.000000000000006,0.010344827586180,0.011864406779665,-0.000000000000013,2 -10869,10927,10929,10987,-0.015517241379620,-0.308474576271162,-0.010344827586536,-0.314406779661000,-0.010344827586524,-0.302542372881331,-0.005172413793439,-0.308474576271169,-0.011864406779670,0.000000000000012,-0.000000000000006,-0.010344827586180,0.000000000000008,0.010344827586181,0.011864406779668,-0.000000000000013,2 -10870,10928,10930,10988,-0.015517241379608,-0.296610169491496,-0.010344827586524,-0.302542372881331,-0.010344827586511,-0.290677966101670,-0.005172413793427,-0.296610169491505,-0.011864406779662,0.000000000000012,-0.000000000000008,-0.010344827586181,0.000000000000009,0.010344827586182,0.011864406779661,-0.000000000000013,2 -10871,10929,10931,10989,-0.015517241379596,-0.284745762711827,-0.010344827586511,-0.290677966101670,-0.010344827586499,-0.278813559321994,-0.005172413793414,-0.284745762711838,-0.011864406779677,0.000000000000012,-0.000000000000009,-0.010344827586182,0.000000000000012,0.010344827586183,0.011864406779674,-0.000000000000013,2 -10872,10930,10932,10990,-0.015517241379584,-0.272881355932159,-0.010344827586499,-0.278813559321994,-0.010344827586486,-0.266949152542337,-0.005172413793401,-0.272881355932172,-0.011864406779658,0.000000000000012,-0.000000000000012,-0.010344827586183,0.000000000000013,0.010344827586184,0.011864406779657,-0.000000000000013,2 -10873,10931,10933,10991,-0.015517241379573,-0.261016949152497,-0.010344827586486,-0.266949152542337,-0.010344827586474,-0.255084745762672,-0.005172413793388,-0.261016949152512,-0.011864406779666,0.000000000000012,-0.000000000000013,-0.010344827586184,0.000000000000016,0.010344827586185,0.011864406779663,-0.000000000000013,2 -10874,10932,10934,10992,-0.015517241379561,-0.249152542372835,-0.010344827586474,-0.255084745762672,-0.010344827586461,-0.243220338983015,-0.005172413793375,-0.249152542372852,-0.011864406779658,0.000000000000012,-0.000000000000016,-0.010344827586185,0.000000000000019,0.010344827586186,0.011864406779656,-0.000000000000013,2 -10875,10933,10935,10993,-0.015517241379549,-0.237288135593173,-0.010344827586461,-0.243220338983015,-0.010344827586449,-0.231355932203351,-0.005172413793362,-0.237288135593193,-0.011864406779665,0.000000000000012,-0.000000000000019,-0.010344827586186,0.000000000000021,0.010344827586187,0.011864406779663,-0.000000000000013,2 -10876,10934,10936,10994,-0.015517241379537,-0.225423728813506,-0.010344827586449,-0.231355932203351,-0.010344827586437,-0.219491525423682,-0.005172413793349,-0.225423728813527,-0.011864406779670,0.000000000000012,-0.000000000000021,-0.010344827586187,0.000000000000023,0.010344827586188,0.011864406779668,-0.000000000000013,2 -10877,10935,10937,10995,-0.015517241379525,-0.213559322033843,-0.010344827586437,-0.219491525423682,-0.010344827586424,-0.207627118644027,-0.005172413793336,-0.213559322033866,-0.011864406779656,0.000000000000012,-0.000000000000023,-0.010344827586188,0.000000000000024,0.010344827586189,0.011864406779654,-0.000000000000013,2 -10878,10936,10938,10996,-0.015517241379513,-0.201694915254177,-0.010344827586424,-0.207627118644027,-0.010344827586412,-0.195762711864352,-0.005172413793323,-0.201694915254202,-0.011864406779676,0.000000000000012,-0.000000000000024,-0.010344827586189,0.000000000000028,0.010344827586190,0.011864406779673,-0.000000000000013,2 -10879,10937,10939,10997,-0.015517241379501,-0.189830508474512,-0.010344827586412,-0.195762711864352,-0.010344827586399,-0.183898305084700,-0.005172413793310,-0.189830508474540,-0.011864406779653,0.000000000000012,-0.000000000000028,-0.010344827586190,0.000000000000029,0.010344827586191,0.011864406779651,-0.000000000000013,2 -10880,10938,10940,10998,-0.015517241379489,-0.177966101694850,-0.010344827586399,-0.183898305084700,-0.010344827586387,-0.172033898305031,-0.005172413793297,-0.177966101694881,-0.011864406779671,0.000000000000012,-0.000000000000029,-0.010344827586191,0.000000000000032,0.010344827586192,0.011864406779668,-0.000000000000013,2 -10881,10939,10941,10999,-0.015517241379477,-0.166101694915186,-0.010344827586387,-0.172033898305031,-0.010344827586374,-0.160169491525374,-0.005172413793284,-0.166101694915219,-0.011864406779658,0.000000000000012,-0.000000000000032,-0.010344827586192,0.000000000000034,0.010344827586193,0.011864406779656,-0.000000000000013,2 -10882,10940,10942,11000,-0.015517241379465,-0.154237288135531,-0.010344827586374,-0.160169491525374,-0.010344827586362,-0.148305084745722,-0.005172413793271,-0.154237288135565,-0.011864406779653,0.000000000000012,-0.000000000000034,-0.010344827586193,0.000000000000035,0.010344827586194,0.011864406779651,-0.000000000000013,2 -10883,10941,10943,11001,-0.015517241379453,-0.142372881355872,-0.010344827586362,-0.148305084745722,-0.010344827586350,-0.136440677966058,-0.005172413793258,-0.142372881355909,-0.011864406779665,0.000000000000012,-0.000000000000035,-0.010344827586194,0.000000000000038,0.010344827586195,0.011864406779662,-0.000000000000013,2 -10884,10942,10944,11002,-0.015517241379441,-0.130508474576207,-0.010344827586350,-0.136440677966058,-0.010344827586337,-0.124576271186395,-0.005172413793246,-0.130508474576246,-0.011864406779665,0.000000000000012,-0.000000000000038,-0.010344827586195,0.000000000000040,0.010344827586196,0.011864406779663,-0.000000000000013,2 -10885,10943,10945,11003,-0.015517241379429,-0.118644067796542,-0.010344827586337,-0.124576271186395,-0.010344827586325,-0.112711864406730,-0.005172413793233,-0.118644067796583,-0.011864406779666,0.000000000000012,-0.000000000000040,-0.010344827586196,0.000000000000042,0.010344827586197,0.011864406779663,-0.000000000000013,2 -10886,10944,10946,11004,-0.015517241379417,-0.106779661016879,-0.010344827586325,-0.112711864406730,-0.010344827586312,-0.100847457627072,-0.005172413793220,-0.106779661016922,-0.011864406779660,0.000000000000012,-0.000000000000042,-0.010344827586197,0.000000000000044,0.010344827586198,0.011864406779658,-0.000000000000013,2 -10887,10945,10947,11005,-0.015517241379406,-0.094915254237217,-0.010344827586312,-0.100847457627072,-0.010344827586300,-0.088983050847407,-0.005172413793207,-0.094915254237262,-0.011864406779666,0.000000000000012,-0.000000000000044,-0.010344827586198,0.000000000000046,0.010344827586199,0.011864406779663,-0.000000000000013,2 -10888,10946,10948,11006,-0.015517241379394,-0.083050847457551,-0.010344827586300,-0.088983050847407,-0.010344827586287,-0.077118644067743,-0.005172413793194,-0.083050847457599,-0.011864406779666,0.000000000000012,-0.000000000000046,-0.010344827586199,0.000000000000049,0.010344827586200,0.011864406779663,-0.000000000000013,2 -10889,10947,10949,11007,-0.015517241379382,-0.071186440677889,-0.010344827586287,-0.077118644067743,-0.010344827586275,-0.065254237288084,-0.005172413793181,-0.071186440677939,-0.011864406779660,0.000000000000012,-0.000000000000049,-0.010344827586200,0.000000000000051,0.010344827586201,0.011864406779657,-0.000000000000013,2 -10890,10948,10950,11008,-0.015517241379370,-0.059322033898226,-0.010344827586275,-0.065254237288084,-0.010344827586263,-0.053389830508420,-0.005172413793168,-0.059322033898278,-0.011864406779666,0.000000000000012,-0.000000000000051,-0.010344827586201,0.000000000000053,0.010344827586202,0.011864406779663,-0.000000000000013,2 -10891,10949,10951,11009,-0.015517241379358,-0.047457627118562,-0.010344827586263,-0.053389830508420,-0.010344827586250,-0.041525423728758,-0.005172413793155,-0.047457627118616,-0.011864406779663,0.000000000000012,-0.000000000000053,-0.010344827586202,0.000000000000056,0.010344827586203,0.011864406779661,-0.000000000000013,2 -10892,10950,10952,11010,-0.015517241379346,-0.035593220338899,-0.010344827586250,-0.041525423728758,-0.010344827586238,-0.029661016949097,-0.005172413793142,-0.035593220338956,-0.011864406779662,0.000000000000012,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586204,0.011864406779660,-0.000000000000013,2 -10893,10951,10953,11011,-0.015517241379334,-0.023728813559235,-0.010344827586238,-0.029661016949097,-0.010344827586225,-0.017796610169433,-0.005172413793129,-0.023728813559294,-0.011864406779666,0.000000000000012,-0.000000000000058,-0.010344827586204,0.000000000000060,0.010344827586205,0.011864406779663,-0.000000000000013,2 -10894,10952,10954,11012,-0.015517241379322,-0.011864406779573,-0.010344827586225,-0.017796610169433,-0.010344827586213,-0.005932203389774,-0.005172413793116,-0.011864406779634,-0.011864406779660,0.000000000000012,-0.000000000000060,-0.010344827586205,0.000000000000062,0.010344827586206,0.011864406779658,-0.000000000000013,2 -10895,10953,10955,11013,-0.015517241379310,0.000000000000094,-0.010344827586213,-0.005932203389774,-0.010344827586201,0.005932203389899,-0.005172413793103,0.000000000000031,-0.011864406779673,0.000000000000012,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000013,2 -10896,10954,10956,11014,-0.015517241379298,0.011864406779757,-0.010344827586201,0.005932203389899,-0.010344827586188,0.017796610169553,-0.005172413793090,0.011864406779695,-0.011864406779653,0.000000000000012,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586208,0.011864406779655,-0.000000000000013,2 -10897,10955,10957,11015,-0.015517241379286,0.023728813559413,-0.010344827586188,0.017796610169553,-0.010344827586176,0.029661016949213,-0.005172413793078,0.023728813559353,-0.011864406779658,0.000000000000012,-0.000000000000060,-0.010344827586208,0.000000000000058,0.010344827586209,0.011864406779661,-0.000000000000013,2 -10898,10956,10958,11016,-0.015517241379274,0.035593220339069,-0.010344827586176,0.029661016949213,-0.010344827586163,0.041525423728869,-0.005172413793065,0.035593220339013,-0.011864406779655,0.000000000000012,-0.000000000000058,-0.010344827586209,0.000000000000056,0.010344827586210,0.011864406779658,-0.000000000000013,2 -10899,10957,10959,11017,-0.015517241379262,0.047457627118725,-0.010344827586163,0.041525423728869,-0.010344827586151,0.053389830508527,-0.005172413793052,0.047457627118671,-0.011864406779656,0.000000000000012,-0.000000000000056,-0.010344827586210,0.000000000000053,0.010344827586211,0.011864406779659,-0.000000000000013,2 -10900,10958,10960,11018,-0.015517241379250,0.059322033898383,-0.010344827586151,0.053389830508527,-0.010344827586138,0.065254237288186,-0.005172413793039,0.059322033898330,-0.011864406779658,0.000000000000012,-0.000000000000053,-0.010344827586211,0.000000000000051,0.010344827586212,0.011864406779661,-0.000000000000013,2 -10901,10959,10961,11019,-0.015517241379238,0.071186440678038,-0.010344827586138,0.065254237288186,-0.010344827586126,0.077118644067841,-0.005172413793026,0.071186440677989,-0.011864406779653,0.000000000000012,-0.000000000000051,-0.010344827586212,0.000000000000049,0.010344827586213,0.011864406779655,-0.000000000000013,2 -10902,10960,10962,11020,-0.015517241379227,0.083050847457694,-0.010344827586126,0.077118644067841,-0.010344827586113,0.088983050847500,-0.005172413793013,0.083050847457647,-0.011864406779658,0.000000000000012,-0.000000000000049,-0.010344827586213,0.000000000000046,0.010344827586214,0.011864406779661,-0.000000000000013,2 -10903,10961,10963,11021,-0.015517241379215,0.094915254237353,-0.010344827586113,0.088983050847500,-0.010344827586101,0.100847457627160,-0.005172413793000,0.094915254237307,-0.011864406779658,0.000000000000012,-0.000000000000046,-0.010344827586214,0.000000000000044,0.010344827586215,0.011864406779661,-0.000000000000013,2 -10904,10962,10964,11022,-0.015517241379203,0.106779661017008,-0.010344827586101,0.100847457627160,-0.010344827586089,0.112711864406814,-0.005172413792987,0.106779661016965,-0.011864406779653,0.000000000000012,-0.000000000000044,-0.010344827586215,0.000000000000042,0.010344827586216,0.011864406779656,-0.000000000000013,2 -10905,10963,10965,11023,-0.015517241379191,0.118644067796664,-0.010344827586089,0.112711864406814,-0.010344827586076,0.124576271186474,-0.005172413792974,0.118644067796624,-0.011864406779658,0.000000000000012,-0.000000000000042,-0.010344827586216,0.000000000000040,0.010344827586217,0.011864406779661,-0.000000000000013,2 -10906,10964,10966,11024,-0.015517241379179,0.130508474576323,-0.010344827586076,0.124576271186474,-0.010344827586064,0.136440677966134,-0.005172413792961,0.130508474576285,-0.011864406779659,0.000000000000012,-0.000000000000040,-0.010344827586217,0.000000000000038,0.010344827586218,0.011864406779661,-0.000000000000013,2 -10907,10965,10967,11025,-0.015517241379167,0.142372881355982,-0.010344827586064,0.136440677966134,-0.010344827586051,0.148305084745793,-0.005172413792948,0.142372881355945,-0.011864406779658,0.000000000000012,-0.000000000000038,-0.010344827586218,0.000000000000035,0.010344827586219,0.011864406779660,-0.000000000000013,2 -10908,10966,10968,11026,-0.015517241379155,0.154237288135635,-0.010344827586051,0.148305084745793,-0.010344827586039,0.160169491525441,-0.005172413792935,0.154237288135600,-0.011864406779648,0.000000000000012,-0.000000000000035,-0.010344827586219,0.000000000000034,0.010344827586220,0.011864406779649,-0.000000000000013,2 -10909,10967,10969,11027,-0.015517241379143,0.166101694915284,-0.010344827586039,0.160169491525441,-0.010344827586027,0.172033898305095,-0.005172413792922,0.166101694915252,-0.011864406779652,0.000000000000012,-0.000000000000034,-0.010344827586220,0.000000000000032,0.010344827586221,0.011864406779654,-0.000000000000013,2 -10910,10968,10970,11028,-0.015517241379131,0.177966101694942,-0.010344827586027,0.172033898305095,-0.010344827586014,0.183898305084759,-0.005172413792909,0.177966101694911,-0.011864406779663,0.000000000000012,-0.000000000000032,-0.010344827586221,0.000000000000029,0.010344827586222,0.011864406779665,-0.000000000000013,2 -10911,10969,10971,11029,-0.015517241379119,0.189830508474597,-0.010344827586014,0.183898305084759,-0.010344827586002,0.195762711864407,-0.005172413792897,0.189830508474569,-0.011864406779648,0.000000000000012,-0.000000000000029,-0.010344827586222,0.000000000000027,0.010344827586223,0.011864406779650,-0.000000000000013,2 -10912,10970,10972,11030,-0.015517241379107,0.201694915254254,-0.010344827586002,0.195762711864407,-0.010344827585989,0.207627118644076,-0.005172413792884,0.201694915254228,-0.011864406779667,0.000000000000012,-0.000000000000027,-0.010344827586223,0.000000000000024,0.010344827586224,0.011864406779670,-0.000000000000013,2 -10913,10971,10973,11031,-0.015517241379095,0.213559322033913,-0.010344827585989,0.207627118644076,-0.010344827585977,0.219491525423728,-0.005172413792871,0.213559322033890,-0.011864406779652,0.000000000000012,-0.000000000000024,-0.010344827586224,0.000000000000023,0.010344827586225,0.011864406779653,-0.000000000000013,2 -10914,10972,10974,11032,-0.015517241379083,0.225423728813571,-0.010344827585977,0.219491525423728,-0.010344827585964,0.231355932203392,-0.005172413792858,0.225423728813549,-0.011864406779663,0.000000000000012,-0.000000000000023,-0.010344827586225,0.000000000000021,0.010344827586226,0.011864406779665,-0.000000000000013,2 -10915,10973,10975,11033,-0.015517241379071,0.237288135593232,-0.010344827585964,0.231355932203392,-0.010344827585952,0.243220338983052,-0.005172413792845,0.237288135593212,-0.011864406779659,0.000000000000012,-0.000000000000021,-0.010344827586226,0.000000000000019,0.010344827586227,0.011864406779661,-0.000000000000013,2 -10916,10974,10976,11034,-0.015517241379060,0.249152542372887,-0.010344827585952,0.243220338983052,-0.010344827585940,0.255084745762705,-0.005172413792832,0.249152542372870,-0.011864406779652,0.000000000000012,-0.000000000000019,-0.010344827586227,0.000000000000016,0.010344827586228,0.011864406779654,-0.000000000000013,2 -10917,10975,10977,11035,-0.015517241379048,0.261016949152542,-0.010344827585940,0.255084745762705,-0.010344827585927,0.266949152542364,-0.005172413792819,0.261016949152527,-0.011864406779658,0.000000000000012,-0.000000000000016,-0.010344827586228,0.000000000000013,0.010344827586229,0.011864406779660,-0.000000000000013,2 -10918,10976,10978,11036,-0.015517241379036,0.272881355932198,-0.010344827585927,0.266949152542364,-0.010344827585915,0.278813559322019,-0.005172413792806,0.272881355932185,-0.011864406779655,0.000000000000012,-0.000000000000013,-0.010344827586229,0.000000000000012,0.010344827586230,0.011864406779656,-0.000000000000013,2 -10919,10977,10979,11037,-0.015517241379024,0.284745762711859,-0.010344827585915,0.278813559322019,-0.010344827585902,0.290677966101689,-0.005172413792793,0.284745762711848,-0.011864406779668,0.000000000000012,-0.000000000000012,-0.010344827586230,0.000000000000009,0.010344827586231,0.011864406779671,-0.000000000000013,2 -10920,10978,10980,11038,-0.015517241379012,0.296610169491523,-0.010344827585902,0.290677966101689,-0.010344827585890,0.302542372881348,-0.005172413792780,0.296610169491514,-0.011864406779659,0.000000000000012,-0.000000000000009,-0.010344827586231,0.000000000000008,0.010344827586232,0.011864406779660,-0.000000000000013,2 -10921,10979,10981,11039,-0.015517241379000,0.308474576271183,-0.010344827585890,0.302542372881348,-0.010344827585877,0.314406779661012,-0.005172413792767,0.308474576271176,-0.011864406779662,0.000000000000012,-0.000000000000008,-0.010344827586232,0.000000000000006,0.010344827586233,0.011864406779665,-0.000000000000013,2 -10922,10980,10982,11040,-0.015517241378988,0.320338983050846,-0.010344827585877,0.314406779661012,-0.010344827585865,0.326271186440675,-0.005172413792754,0.320338983050841,-0.011864406779663,0.000000000000012,-0.000000000000006,-0.010344827586233,0.000000000000004,0.010344827586234,0.011864406779664,-0.000000000000013,2 -10923,10981,10983,11041,-0.015517241378976,0.332203389830506,-0.010344827585865,0.326271186440675,-0.010344827585853,0.338135593220334,-0.005172413792741,0.332203389830503,-0.011864406779658,0.000000000000012,-0.000000000000004,-0.010344827586234,0.000000000000002,0.010344827586235,0.011864406779660,-0.000000000000013,2 -7904,10924,10982,11042,-0.010344827585840,0.350000000000000,-0.015517241378964,0.344067796610167,-0.010344827585853,0.338135593220334,-0.005172413792729,0.344067796610166,-0.000000000000000,0.010344827586236,-0.011864406779665,0.000000000000012,-0.000000000000002,-0.010344827586235,0.011864406779667,-0.000000000000013,2 -8940,10925,10985,11043,-0.000000000000381,-0.350000000000000,-0.005172413793478,-0.344067796610165,-0.000000000000368,-0.338135593220332,0.005172413792729,-0.344067796610166,-0.000000000000000,-0.010344827586207,-0.011864406779669,0.000000000000013,0.000000000000002,0.010344827586207,0.011864406779667,-0.000000000000013,2 -10926,10984,10986,11044,-0.005172413793465,-0.332203389830499,-0.000000000000368,-0.338135593220332,-0.000000000000355,-0.326271186440671,0.005172413792741,-0.332203389830503,-0.011864406779662,0.000000000000013,-0.000000000000002,-0.010344827586207,0.000000000000004,0.010344827586207,0.011864406779660,-0.000000000000013,2 -10927,10985,10987,11045,-0.005172413793452,-0.320338983050836,-0.000000000000355,-0.326271186440671,-0.000000000000343,-0.314406779661006,0.005172413792754,-0.320338983050841,-0.011864406779665,0.000000000000013,-0.000000000000004,-0.010344827586207,0.000000000000006,0.010344827586207,0.011864406779664,-0.000000000000013,2 -10928,10986,10988,11046,-0.005172413793439,-0.308474576271169,-0.000000000000343,-0.314406779661006,-0.000000000000330,-0.302542372881340,0.005172413792767,-0.308474576271176,-0.011864406779668,0.000000000000013,-0.000000000000006,-0.010344827586207,0.000000000000008,0.010344827586207,0.011864406779665,-0.000000000000013,2 -10929,10987,10989,11047,-0.005172413793427,-0.296610169491505,-0.000000000000330,-0.302542372881340,-0.000000000000317,-0.290677966101679,0.005172413792780,-0.296610169491514,-0.011864406779661,0.000000000000013,-0.000000000000008,-0.010344827586207,0.000000000000009,0.010344827586207,0.011864406779660,-0.000000000000013,2 -10930,10988,10990,11048,-0.005172413793414,-0.284745762711838,-0.000000000000317,-0.290677966101679,-0.000000000000304,-0.278813559322007,0.005172413792793,-0.284745762711848,-0.011864406779674,0.000000000000013,-0.000000000000009,-0.010344827586207,0.000000000000012,0.010344827586207,0.011864406779671,-0.000000000000013,2 -10931,10989,10991,11049,-0.005172413793401,-0.272881355932172,-0.000000000000304,-0.278813559322007,-0.000000000000291,-0.266949152542350,0.005172413792806,-0.272881355932185,-0.011864406779657,0.000000000000013,-0.000000000000012,-0.010344827586207,0.000000000000014,0.010344827586207,0.011864406779656,-0.000000000000013,2 -10932,10990,10992,11050,-0.005172413793388,-0.261016949152512,-0.000000000000291,-0.266949152542350,-0.000000000000278,-0.255084745762688,0.005172413792819,-0.261016949152527,-0.011864406779663,0.000000000000013,-0.000000000000014,-0.010344827586207,0.000000000000017,0.010344827586207,0.011864406779660,-0.000000000000013,2 -10933,10991,10993,11051,-0.005172413793375,-0.249152542372852,-0.000000000000278,-0.255084745762688,-0.000000000000265,-0.243220338983033,0.005172413792832,-0.249152542372869,-0.011864406779656,0.000000000000013,-0.000000000000017,-0.010344827586207,0.000000000000019,0.010344827586207,0.011864406779654,-0.000000000000013,2 -10934,10992,10994,11052,-0.005172413793362,-0.237288135593193,-0.000000000000265,-0.243220338983033,-0.000000000000252,-0.231355932203372,0.005172413792845,-0.237288135593212,-0.011864406779663,0.000000000000013,-0.000000000000019,-0.010344827586207,0.000000000000021,0.010344827586207,0.011864406779661,-0.000000000000013,2 -10935,10993,10995,11053,-0.005172413793349,-0.225423728813527,-0.000000000000252,-0.231355932203372,-0.000000000000239,-0.219491525423705,0.005172413792858,-0.225423728813549,-0.011864406779668,0.000000000000013,-0.000000000000021,-0.010344827586207,0.000000000000023,0.010344827586207,0.011864406779666,-0.000000000000013,2 -10936,10994,10996,11054,-0.005172413793336,-0.213559322033866,-0.000000000000239,-0.219491525423705,-0.000000000000226,-0.207627118644051,0.005172413792871,-0.213559322033890,-0.011864406779654,0.000000000000013,-0.000000000000023,-0.010344827586207,0.000000000000024,0.010344827586207,0.011864406779653,-0.000000000000013,2 -10937,10995,10997,11055,-0.005172413793323,-0.201694915254202,-0.000000000000226,-0.207627118644051,-0.000000000000213,-0.195762711864380,0.005172413792884,-0.201694915254228,-0.011864406779673,0.000000000000013,-0.000000000000024,-0.010344827586207,0.000000000000028,0.010344827586207,0.011864406779670,-0.000000000000013,2 -10938,10996,10998,11056,-0.005172413793310,-0.189830508474540,-0.000000000000213,-0.195762711864380,-0.000000000000200,-0.183898305084730,0.005172413792897,-0.189830508474569,-0.011864406779651,0.000000000000013,-0.000000000000028,-0.010344827586207,0.000000000000029,0.010344827586207,0.011864406779649,-0.000000000000013,2 -10939,10997,10999,11057,-0.005172413793297,-0.177966101694881,-0.000000000000200,-0.183898305084730,-0.000000000000187,-0.172033898305063,0.005172413792909,-0.177966101694911,-0.011864406779668,0.000000000000013,-0.000000000000029,-0.010344827586207,0.000000000000032,0.010344827586207,0.011864406779666,-0.000000000000013,2 -10940,10998,11000,11058,-0.005172413793284,-0.166101694915219,-0.000000000000187,-0.172033898305063,-0.000000000000174,-0.160169491525408,0.005172413792922,-0.166101694915252,-0.011864406779656,0.000000000000013,-0.000000000000032,-0.010344827586207,0.000000000000034,0.010344827586207,0.011864406779654,-0.000000000000013,2 -10941,10999,11001,11059,-0.005172413793271,-0.154237288135565,-0.000000000000174,-0.160169491525408,-0.000000000000162,-0.148305084745757,0.005172413792935,-0.154237288135600,-0.011864406779651,0.000000000000013,-0.000000000000034,-0.010344827586207,0.000000000000035,0.010344827586207,0.011864406779649,-0.000000000000013,2 -10942,11000,11002,11060,-0.005172413793258,-0.142372881355909,-0.000000000000162,-0.148305084745757,-0.000000000000149,-0.136440677966096,0.005172413792948,-0.142372881355945,-0.011864406779662,0.000000000000013,-0.000000000000035,-0.010344827586207,0.000000000000038,0.010344827586207,0.011864406779660,-0.000000000000013,2 -10943,11001,11003,11061,-0.005172413793246,-0.130508474576246,-0.000000000000149,-0.136440677966096,-0.000000000000136,-0.124576271186434,0.005172413792961,-0.130508474576285,-0.011864406779663,0.000000000000013,-0.000000000000038,-0.010344827586207,0.000000000000039,0.010344827586207,0.011864406779661,-0.000000000000013,2 -10944,11002,11004,11062,-0.005172413793233,-0.118644067796583,-0.000000000000136,-0.124576271186434,-0.000000000000123,-0.112711864406772,0.005172413792974,-0.118644067796624,-0.011864406779663,0.000000000000013,-0.000000000000039,-0.010344827586207,0.000000000000042,0.010344827586207,0.011864406779661,-0.000000000000013,2 -10945,11003,11005,11063,-0.005172413793220,-0.106779661016922,-0.000000000000123,-0.112711864406772,-0.000000000000110,-0.100847457627116,0.005172413792987,-0.106779661016965,-0.011864406779658,0.000000000000013,-0.000000000000042,-0.010344827586207,0.000000000000044,0.010344827586207,0.011864406779656,-0.000000000000013,2 -10946,11004,11006,11064,-0.005172413793207,-0.094915254237262,-0.000000000000110,-0.100847457627116,-0.000000000000097,-0.088983050847454,0.005172413793000,-0.094915254237307,-0.011864406779663,0.000000000000013,-0.000000000000044,-0.010344827586207,0.000000000000046,0.010344827586207,0.011864406779661,-0.000000000000013,2 -10947,11005,11007,11065,-0.005172413793194,-0.083050847457599,-0.000000000000097,-0.088983050847454,-0.000000000000084,-0.077118644067792,0.005172413793013,-0.083050847457647,-0.011864406779663,0.000000000000013,-0.000000000000046,-0.010344827586207,0.000000000000049,0.010344827586207,0.011864406779661,-0.000000000000013,2 -10948,11006,11008,11066,-0.005172413793181,-0.071186440677939,-0.000000000000084,-0.077118644067792,-0.000000000000071,-0.065254237288135,0.005172413793026,-0.071186440677989,-0.011864406779657,0.000000000000013,-0.000000000000049,-0.010344827586207,0.000000000000051,0.010344827586207,0.011864406779655,-0.000000000000013,2 -10949,11007,11009,11067,-0.005172413793168,-0.059322033898278,-0.000000000000071,-0.065254237288135,-0.000000000000058,-0.053389830508473,0.005172413793039,-0.059322033898330,-0.011864406779663,0.000000000000013,-0.000000000000051,-0.010344827586207,0.000000000000053,0.010344827586207,0.011864406779661,-0.000000000000013,2 -10950,11008,11010,11068,-0.005172413793155,-0.047457627118616,-0.000000000000058,-0.053389830508473,-0.000000000000045,-0.041525423728814,0.005172413793052,-0.047457627118671,-0.011864406779661,0.000000000000013,-0.000000000000053,-0.010344827586207,0.000000000000056,0.010344827586207,0.011864406779659,-0.000000000000013,2 -10951,11009,11011,11069,-0.005172413793142,-0.035593220338956,-0.000000000000045,-0.041525423728814,-0.000000000000032,-0.029661016949155,0.005172413793065,-0.035593220339013,-0.011864406779660,0.000000000000013,-0.000000000000056,-0.010344827586207,0.000000000000058,0.010344827586207,0.011864406779658,-0.000000000000013,2 -10952,11010,11012,11070,-0.005172413793129,-0.023728813559294,-0.000000000000032,-0.029661016949155,-0.000000000000019,-0.017796610169493,0.005172413793078,-0.023728813559353,-0.011864406779663,0.000000000000013,-0.000000000000058,-0.010344827586207,0.000000000000060,0.010344827586207,0.011864406779661,-0.000000000000013,2 -10953,11011,11013,11071,-0.005172413793116,-0.011864406779634,-0.000000000000019,-0.017796610169493,-0.000000000000006,-0.005932203389836,0.005172413793090,-0.011864406779695,-0.011864406779658,0.000000000000013,-0.000000000000060,-0.010344827586207,0.000000000000062,0.010344827586207,0.011864406779655,-0.000000000000013,2 -10954,11012,11014,11072,-0.005172413793103,0.000000000000031,-0.000000000000006,-0.005932203389836,0.000000000000006,0.005932203389836,0.005172413793103,-0.000000000000031,-0.011864406779673,0.000000000000013,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000013,2 -10955,11013,11015,11073,-0.005172413793090,0.011864406779695,0.000000000000006,0.005932203389836,0.000000000000019,0.017796610169493,0.005172413793116,0.011864406779634,-0.011864406779655,0.000000000000013,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586207,0.011864406779658,-0.000000000000013,2 -10956,11014,11016,11074,-0.005172413793078,0.023728813559353,0.000000000000019,0.017796610169493,0.000000000000032,0.029661016949155,0.005172413793129,0.023728813559294,-0.011864406779661,0.000000000000013,-0.000000000000060,-0.010344827586207,0.000000000000058,0.010344827586207,0.011864406779663,-0.000000000000013,2 -10957,11015,11017,11075,-0.005172413793065,0.035593220339013,0.000000000000032,0.029661016949155,0.000000000000045,0.041525423728814,0.005172413793142,0.035593220338956,-0.011864406779658,0.000000000000013,-0.000000000000058,-0.010344827586207,0.000000000000056,0.010344827586207,0.011864406779660,-0.000000000000013,2 -10958,11016,11018,11076,-0.005172413793052,0.047457627118671,0.000000000000045,0.041525423728814,0.000000000000058,0.053389830508473,0.005172413793155,0.047457627118616,-0.011864406779659,0.000000000000013,-0.000000000000056,-0.010344827586207,0.000000000000053,0.010344827586207,0.011864406779661,-0.000000000000013,2 -10959,11017,11019,11077,-0.005172413793039,0.059322033898330,0.000000000000058,0.053389830508473,0.000000000000071,0.065254237288135,0.005172413793168,0.059322033898278,-0.011864406779661,0.000000000000013,-0.000000000000053,-0.010344827586207,0.000000000000051,0.010344827586207,0.011864406779663,-0.000000000000013,2 -10960,11018,11020,11078,-0.005172413793026,0.071186440677989,0.000000000000071,0.065254237288135,0.000000000000084,0.077118644067792,0.005172413793181,0.071186440677939,-0.011864406779655,0.000000000000013,-0.000000000000051,-0.010344827586207,0.000000000000049,0.010344827586207,0.011864406779657,-0.000000000000013,2 -10961,11019,11021,11079,-0.005172413793013,0.083050847457647,0.000000000000084,0.077118644067792,0.000000000000097,0.088983050847454,0.005172413793194,0.083050847457599,-0.011864406779661,0.000000000000013,-0.000000000000049,-0.010344827586207,0.000000000000046,0.010344827586207,0.011864406779663,-0.000000000000013,2 -10962,11020,11022,11080,-0.005172413793000,0.094915254237307,0.000000000000097,0.088983050847454,0.000000000000110,0.100847457627116,0.005172413793207,0.094915254237262,-0.011864406779661,0.000000000000013,-0.000000000000046,-0.010344827586207,0.000000000000044,0.010344827586207,0.011864406779663,-0.000000000000013,2 -10963,11021,11023,11081,-0.005172413792987,0.106779661016965,0.000000000000110,0.100847457627116,0.000000000000123,0.112711864406772,0.005172413793220,0.106779661016922,-0.011864406779656,0.000000000000013,-0.000000000000044,-0.010344827586207,0.000000000000042,0.010344827586207,0.011864406779658,-0.000000000000013,2 -10964,11022,11024,11082,-0.005172413792974,0.118644067796624,0.000000000000123,0.112711864406772,0.000000000000136,0.124576271186434,0.005172413793233,0.118644067796583,-0.011864406779661,0.000000000000013,-0.000000000000042,-0.010344827586207,0.000000000000039,0.010344827586207,0.011864406779663,-0.000000000000013,2 -10965,11023,11025,11083,-0.005172413792961,0.130508474576285,0.000000000000136,0.124576271186434,0.000000000000149,0.136440677966096,0.005172413793246,0.130508474576246,-0.011864406779661,0.000000000000013,-0.000000000000039,-0.010344827586207,0.000000000000038,0.010344827586207,0.011864406779663,-0.000000000000013,2 -10966,11024,11026,11084,-0.005172413792948,0.142372881355945,0.000000000000149,0.136440677966096,0.000000000000162,0.148305084745757,0.005172413793258,0.142372881355909,-0.011864406779660,0.000000000000013,-0.000000000000038,-0.010344827586207,0.000000000000035,0.010344827586207,0.011864406779662,-0.000000000000013,2 -10967,11025,11027,11085,-0.005172413792935,0.154237288135600,0.000000000000162,0.148305084745757,0.000000000000175,0.160169491525408,0.005172413793271,0.154237288135565,-0.011864406779649,0.000000000000013,-0.000000000000035,-0.010344827586207,0.000000000000034,0.010344827586207,0.011864406779651,-0.000000000000013,2 -10968,11026,11028,11086,-0.005172413792922,0.166101694915252,0.000000000000175,0.160169491525408,0.000000000000187,0.172033898305063,0.005172413793284,0.166101694915219,-0.011864406779654,0.000000000000013,-0.000000000000034,-0.010344827586207,0.000000000000032,0.010344827586207,0.011864406779656,-0.000000000000013,2 -10969,11027,11029,11087,-0.005172413792909,0.177966101694911,0.000000000000187,0.172033898305063,0.000000000000200,0.183898305084729,0.005172413793297,0.177966101694881,-0.011864406779665,0.000000000000013,-0.000000000000032,-0.010344827586207,0.000000000000029,0.010344827586207,0.011864406779668,-0.000000000000013,2 -10970,11028,11030,11088,-0.005172413792897,0.189830508474569,0.000000000000200,0.183898305084729,0.000000000000213,0.195762711864380,0.005172413793310,0.189830508474540,-0.011864406779650,0.000000000000013,-0.000000000000029,-0.010344827586207,0.000000000000028,0.010344827586207,0.011864406779651,-0.000000000000013,2 -10971,11029,11031,11089,-0.005172413792884,0.201694915254228,0.000000000000213,0.195762711864380,0.000000000000226,0.207627118644051,0.005172413793323,0.201694915254202,-0.011864406779670,0.000000000000013,-0.000000000000028,-0.010344827586207,0.000000000000024,0.010344827586207,0.011864406779673,-0.000000000000013,2 -10972,11030,11032,11090,-0.005172413792871,0.213559322033890,0.000000000000226,0.207627118644051,0.000000000000239,0.219491525423705,0.005172413793336,0.213559322033866,-0.011864406779653,0.000000000000013,-0.000000000000024,-0.010344827586207,0.000000000000023,0.010344827586207,0.011864406779654,-0.000000000000013,2 -10973,11031,11033,11091,-0.005172413792858,0.225423728813549,0.000000000000239,0.219491525423705,0.000000000000252,0.231355932203371,0.005172413793349,0.225423728813527,-0.011864406779665,0.000000000000013,-0.000000000000023,-0.010344827586207,0.000000000000020,0.010344827586207,0.011864406779668,-0.000000000000013,2 -10974,11032,11034,11092,-0.005172413792845,0.237288135593212,0.000000000000252,0.231355932203371,0.000000000000265,0.243220338983033,0.005172413793362,0.237288135593193,-0.011864406779661,0.000000000000013,-0.000000000000020,-0.010344827586207,0.000000000000019,0.010344827586207,0.011864406779663,-0.000000000000013,2 -10975,11033,11035,11093,-0.005172413792832,0.249152542372870,0.000000000000265,0.243220338983033,0.000000000000278,0.255084745762688,0.005172413793375,0.249152542372852,-0.011864406779654,0.000000000000013,-0.000000000000019,-0.010344827586207,0.000000000000016,0.010344827586207,0.011864406779656,-0.000000000000013,2 -10976,11034,11036,11094,-0.005172413792819,0.261016949152527,0.000000000000278,0.255084745762688,0.000000000000291,0.266949152542350,0.005172413793388,0.261016949152512,-0.011864406779660,0.000000000000013,-0.000000000000016,-0.010344827586207,0.000000000000014,0.010344827586207,0.011864406779663,-0.000000000000013,2 -10977,11035,11037,11095,-0.005172413792806,0.272881355932185,0.000000000000291,0.266949152542350,0.000000000000304,0.278813559322007,0.005172413793401,0.272881355932172,-0.011864406779656,0.000000000000013,-0.000000000000014,-0.010344827586207,0.000000000000012,0.010344827586207,0.011864406779657,-0.000000000000013,2 -10978,11036,11038,11096,-0.005172413792793,0.284745762711848,0.000000000000304,0.278813559322007,0.000000000000317,0.290677966101679,0.005172413793414,0.284745762711838,-0.011864406779671,0.000000000000013,-0.000000000000012,-0.010344827586207,0.000000000000009,0.010344827586207,0.011864406779674,-0.000000000000013,2 -10979,11037,11039,11097,-0.005172413792780,0.296610169491514,0.000000000000317,0.290677966101679,0.000000000000330,0.302542372881340,0.005172413793427,0.296610169491505,-0.011864406779660,0.000000000000013,-0.000000000000009,-0.010344827586207,0.000000000000008,0.010344827586207,0.011864406779661,-0.000000000000013,2 -10980,11038,11040,11098,-0.005172413792767,0.308474576271176,0.000000000000330,0.302542372881340,0.000000000000343,0.314406779661006,0.005172413793439,0.308474576271169,-0.011864406779665,0.000000000000013,-0.000000000000008,-0.010344827586207,0.000000000000006,0.010344827586207,0.011864406779668,-0.000000000000013,2 -10981,11039,11041,11099,-0.005172413792754,0.320338983050841,0.000000000000343,0.314406779661006,0.000000000000355,0.326271186440671,0.005172413793452,0.320338983050836,-0.011864406779664,0.000000000000013,-0.000000000000006,-0.010344827586207,0.000000000000004,0.010344827586207,0.011864406779665,-0.000000000000013,2 -10982,11040,11042,11100,-0.005172413792741,0.332203389830503,0.000000000000355,0.326271186440671,0.000000000000368,0.338135593220332,0.005172413793465,0.332203389830500,-0.011864406779660,0.000000000000013,-0.000000000000004,-0.010344827586207,0.000000000000002,0.010344827586207,0.011864406779662,-0.000000000000013,2 -7890,10983,11041,11101,0.000000000000381,0.350000000000000,-0.005172413792729,0.344067796610166,0.000000000000368,0.338135593220332,0.005172413793478,0.344067796610165,-0.000000000000000,0.010344827586207,-0.011864406779667,0.000000000000013,-0.000000000000002,-0.010344827586207,0.011864406779669,-0.000000000000013,2 -8941,10984,11044,11102,0.010344827585840,-0.350000000000000,0.005172413792729,-0.344067796610166,0.010344827585853,-0.338135593220334,0.015517241378964,-0.344067796610167,-0.000000000000000,-0.010344827586236,-0.011864406779667,0.000000000000013,0.000000000000002,0.010344827586235,0.011864406779665,-0.000000000000012,2 -10985,11043,11045,11103,0.005172413792741,-0.332203389830503,0.010344827585853,-0.338135593220334,0.010344827585865,-0.326271186440675,0.015517241378976,-0.332203389830506,-0.011864406779660,0.000000000000013,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586234,0.011864406779658,-0.000000000000012,2 -10986,11044,11046,11104,0.005172413792754,-0.320338983050841,0.010344827585865,-0.326271186440675,0.010344827585877,-0.314406779661012,0.015517241378988,-0.320338983050846,-0.011864406779664,0.000000000000013,-0.000000000000004,-0.010344827586234,0.000000000000005,0.010344827586233,0.011864406779663,-0.000000000000012,2 -10987,11045,11047,11105,0.005172413792767,-0.308474576271176,0.010344827585877,-0.314406779661012,0.010344827585890,-0.302542372881348,0.015517241379000,-0.308474576271183,-0.011864406779665,0.000000000000013,-0.000000000000005,-0.010344827586233,0.000000000000008,0.010344827586232,0.011864406779662,-0.000000000000012,2 -10988,11046,11048,11106,0.005172413792780,-0.296610169491514,0.010344827585890,-0.302542372881348,0.010344827585902,-0.290677966101689,0.015517241379012,-0.296610169491523,-0.011864406779660,0.000000000000013,-0.000000000000008,-0.010344827586232,0.000000000000009,0.010344827586231,0.011864406779659,-0.000000000000012,2 -10989,11047,11049,11107,0.005172413792793,-0.284745762711848,0.010344827585902,-0.290677966101689,0.010344827585915,-0.278813559322019,0.015517241379024,-0.284745762711859,-0.011864406779671,0.000000000000013,-0.000000000000009,-0.010344827586231,0.000000000000012,0.010344827586230,0.011864406779668,-0.000000000000012,2 -10990,11048,11050,11108,0.005172413792806,-0.272881355932185,0.010344827585915,-0.278813559322019,0.010344827585927,-0.266949152542364,0.015517241379036,-0.272881355932198,-0.011864406779656,0.000000000000013,-0.000000000000012,-0.010344827586230,0.000000000000014,0.010344827586229,0.011864406779655,-0.000000000000012,2 -10991,11049,11051,11109,0.005172413792819,-0.261016949152527,0.010344827585927,-0.266949152542364,0.010344827585940,-0.255084745762705,0.015517241379048,-0.261016949152542,-0.011864406779660,0.000000000000013,-0.000000000000014,-0.010344827586229,0.000000000000016,0.010344827586228,0.011864406779658,-0.000000000000012,2 -10992,11050,11052,11110,0.005172413792832,-0.249152542372869,0.010344827585940,-0.255084745762705,0.010344827585952,-0.243220338983052,0.015517241379060,-0.249152542372887,-0.011864406779654,0.000000000000013,-0.000000000000016,-0.010344827586228,0.000000000000019,0.010344827586227,0.011864406779652,-0.000000000000012,2 -10993,11051,11053,11111,0.005172413792845,-0.237288135593212,0.010344827585952,-0.243220338983052,0.010344827585964,-0.231355932203392,0.015517241379071,-0.237288135593232,-0.011864406779661,0.000000000000013,-0.000000000000019,-0.010344827586227,0.000000000000020,0.010344827586226,0.011864406779659,-0.000000000000012,2 -10994,11052,11054,11112,0.005172413792858,-0.225423728813549,0.010344827585964,-0.231355932203392,0.010344827585977,-0.219491525423728,0.015517241379083,-0.225423728813571,-0.011864406779666,0.000000000000013,-0.000000000000020,-0.010344827586226,0.000000000000023,0.010344827586225,0.011864406779663,-0.000000000000012,2 -10995,11053,11055,11113,0.005172413792871,-0.213559322033890,0.010344827585977,-0.219491525423728,0.010344827585989,-0.207627118644076,0.015517241379095,-0.213559322033914,-0.011864406779653,0.000000000000013,-0.000000000000023,-0.010344827586225,0.000000000000024,0.010344827586224,0.011864406779651,-0.000000000000012,2 -10996,11054,11056,11114,0.005172413792884,-0.201694915254228,0.010344827585989,-0.207627118644076,0.010344827586002,-0.195762711864407,0.015517241379107,-0.201694915254254,-0.011864406779670,0.000000000000013,-0.000000000000024,-0.010344827586224,0.000000000000028,0.010344827586223,0.011864406779667,-0.000000000000012,2 -10997,11055,11057,11115,0.005172413792897,-0.189830508474569,0.010344827586002,-0.195762711864407,0.010344827586014,-0.183898305084759,0.015517241379119,-0.189830508474597,-0.011864406779649,0.000000000000013,-0.000000000000028,-0.010344827586223,0.000000000000029,0.010344827586222,0.011864406779648,-0.000000000000012,2 -10998,11056,11058,11116,0.005172413792909,-0.177966101694911,0.010344827586014,-0.183898305084759,0.010344827586027,-0.172033898305095,0.015517241379131,-0.177966101694942,-0.011864406779666,0.000000000000013,-0.000000000000029,-0.010344827586222,0.000000000000032,0.010344827586221,0.011864406779663,-0.000000000000012,2 -10999,11057,11059,11117,0.005172413792922,-0.166101694915252,0.010344827586027,-0.172033898305095,0.010344827586039,-0.160169491525441,0.015517241379143,-0.166101694915284,-0.011864406779654,0.000000000000013,-0.000000000000032,-0.010344827586221,0.000000000000034,0.010344827586220,0.011864406779652,-0.000000000000012,2 -11000,11058,11060,11118,0.005172413792935,-0.154237288135600,0.010344827586039,-0.160169491525441,0.010344827586051,-0.148305084745793,0.015517241379155,-0.154237288135634,-0.011864406779649,0.000000000000013,-0.000000000000034,-0.010344827586220,0.000000000000035,0.010344827586219,0.011864406779648,-0.000000000000012,2 -11001,11059,11061,11119,0.005172413792948,-0.142372881355945,0.010344827586051,-0.148305084745793,0.010344827586064,-0.136440677966134,0.015517241379167,-0.142372881355982,-0.011864406779660,0.000000000000013,-0.000000000000035,-0.010344827586219,0.000000000000038,0.010344827586218,0.011864406779658,-0.000000000000012,2 -11002,11060,11062,11120,0.005172413792961,-0.130508474576285,0.010344827586064,-0.136440677966134,0.010344827586076,-0.124576271186474,0.015517241379179,-0.130508474576323,-0.011864406779661,0.000000000000013,-0.000000000000038,-0.010344827586218,0.000000000000039,0.010344827586217,0.011864406779659,-0.000000000000012,2 -11003,11061,11063,11121,0.005172413792974,-0.118644067796624,0.010344827586076,-0.124576271186474,0.010344827586089,-0.112711864406814,0.015517241379191,-0.118644067796664,-0.011864406779661,0.000000000000013,-0.000000000000039,-0.010344827586217,0.000000000000042,0.010344827586216,0.011864406779658,-0.000000000000012,2 -11004,11062,11064,11122,0.005172413792987,-0.106779661016965,0.010344827586089,-0.112711864406814,0.010344827586101,-0.100847457627160,0.015517241379203,-0.106779661017008,-0.011864406779656,0.000000000000013,-0.000000000000042,-0.010344827586216,0.000000000000044,0.010344827586215,0.011864406779654,-0.000000000000012,2 -11005,11063,11065,11123,0.005172413793000,-0.094915254237307,0.010344827586101,-0.100847457627160,0.010344827586114,-0.088983050847500,0.015517241379215,-0.094915254237353,-0.011864406779661,0.000000000000013,-0.000000000000044,-0.010344827586215,0.000000000000046,0.010344827586214,0.011864406779658,-0.000000000000012,2 -11006,11064,11066,11124,0.005172413793013,-0.083050847457647,0.010344827586114,-0.088983050847500,0.010344827586126,-0.077118644067841,0.015517241379227,-0.083050847457694,-0.011864406779661,0.000000000000013,-0.000000000000046,-0.010344827586214,0.000000000000049,0.010344827586213,0.011864406779658,-0.000000000000012,2 -11007,11065,11067,11125,0.005172413793026,-0.071186440677989,0.010344827586126,-0.077118644067841,0.010344827586138,-0.065254237288186,0.015517241379238,-0.071186440678038,-0.011864406779655,0.000000000000013,-0.000000000000049,-0.010344827586213,0.000000000000051,0.010344827586212,0.011864406779653,-0.000000000000012,2 -11008,11066,11068,11126,0.005172413793039,-0.059322033898330,0.010344827586138,-0.065254237288186,0.010344827586151,-0.053389830508527,0.015517241379250,-0.059322033898383,-0.011864406779661,0.000000000000013,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779658,-0.000000000000012,2 -11009,11067,11069,11127,0.005172413793052,-0.047457627118671,0.010344827586151,-0.053389830508527,0.010344827586163,-0.041525423728869,0.015517241379262,-0.047457627118725,-0.011864406779659,0.000000000000013,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779656,-0.000000000000012,2 -11010,11068,11070,11128,0.005172413793065,-0.035593220339013,0.010344827586163,-0.041525423728869,0.010344827586176,-0.029661016949213,0.015517241379274,-0.035593220339069,-0.011864406779658,0.000000000000013,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779655,-0.000000000000012,2 -11011,11069,11071,11129,0.005172413793078,-0.023728813559353,0.010344827586176,-0.029661016949213,0.010344827586188,-0.017796610169553,0.015517241379286,-0.023728813559413,-0.011864406779661,0.000000000000013,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586208,0.011864406779658,-0.000000000000012,2 -11012,11070,11072,11130,0.005172413793090,-0.011864406779695,0.010344827586188,-0.017796610169553,0.010344827586201,-0.005932203389899,0.015517241379298,-0.011864406779757,-0.011864406779655,0.000000000000013,-0.000000000000060,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779653,-0.000000000000012,2 -11013,11071,11073,11131,0.005172413793103,-0.000000000000031,0.010344827586201,-0.005932203389899,0.010344827586213,0.005932203389774,0.015517241379310,-0.000000000000094,-0.011864406779673,0.000000000000013,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000012,2 -11014,11072,11074,11132,0.005172413793116,0.011864406779634,0.010344827586213,0.005932203389774,0.010344827586225,0.017796610169433,0.015517241379322,0.011864406779573,-0.011864406779658,0.000000000000013,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586205,0.011864406779660,-0.000000000000012,2 -11015,11073,11075,11133,0.005172413793129,0.023728813559294,0.010344827586225,0.017796610169433,0.010344827586238,0.029661016949097,0.015517241379334,0.023728813559235,-0.011864406779663,0.000000000000013,-0.000000000000060,-0.010344827586205,0.000000000000058,0.010344827586204,0.011864406779666,-0.000000000000012,2 -11016,11074,11076,11134,0.005172413793142,0.035593220338956,0.010344827586238,0.029661016949097,0.010344827586250,0.041525423728758,0.015517241379346,0.035593220338899,-0.011864406779660,0.000000000000013,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779662,-0.000000000000012,2 -11017,11075,11077,11135,0.005172413793155,0.047457627118616,0.010344827586250,0.041525423728758,0.010344827586263,0.053389830508420,0.015517241379358,0.047457627118562,-0.011864406779661,0.000000000000013,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779663,-0.000000000000012,2 -11018,11076,11078,11136,0.005172413793168,0.059322033898278,0.010344827586263,0.053389830508420,0.010344827586275,0.065254237288084,0.015517241379370,0.059322033898226,-0.011864406779663,0.000000000000013,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779666,-0.000000000000012,2 -11019,11077,11079,11137,0.005172413793181,0.071186440677939,0.010344827586275,0.065254237288084,0.010344827586288,0.077118644067743,0.015517241379382,0.071186440677889,-0.011864406779657,0.000000000000013,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779660,-0.000000000000012,2 -11020,11078,11080,11138,0.005172413793194,0.083050847457599,0.010344827586288,0.077118644067743,0.010344827586300,0.088983050847407,0.015517241379394,0.083050847457551,-0.011864406779663,0.000000000000013,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779666,-0.000000000000012,2 -11021,11079,11081,11139,0.005172413793207,0.094915254237262,0.010344827586300,0.088983050847407,0.010344827586312,0.100847457627072,0.015517241379406,0.094915254237217,-0.011864406779663,0.000000000000013,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779666,-0.000000000000012,2 -11022,11080,11082,11140,0.005172413793220,0.106779661016922,0.010344827586312,0.100847457627072,0.010344827586325,0.112711864406730,0.015517241379417,0.106779661016879,-0.011864406779658,0.000000000000013,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779660,-0.000000000000012,2 -11023,11081,11083,11141,0.005172413793233,0.118644067796583,0.010344827586325,0.112711864406730,0.010344827586337,0.124576271186395,0.015517241379429,0.118644067796542,-0.011864406779663,0.000000000000013,-0.000000000000042,-0.010344827586197,0.000000000000039,0.010344827586196,0.011864406779666,-0.000000000000012,2 -11024,11082,11084,11142,0.005172413793246,0.130508474576246,0.010344827586337,0.124576271186395,0.010344827586350,0.136440677966058,0.015517241379441,0.130508474576207,-0.011864406779663,0.000000000000013,-0.000000000000039,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779665,-0.000000000000012,2 -11025,11083,11085,11143,0.005172413793258,0.142372881355909,0.010344827586350,0.136440677966058,0.010344827586362,0.148305084745722,0.015517241379453,0.142372881355872,-0.011864406779662,0.000000000000013,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779665,-0.000000000000012,2 -11026,11084,11086,11144,0.005172413793271,0.154237288135565,0.010344827586362,0.148305084745722,0.010344827586374,0.160169491525374,0.015517241379465,0.154237288135531,-0.011864406779651,0.000000000000013,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779653,-0.000000000000012,2 -11027,11085,11087,11145,0.005172413793284,0.166101694915219,0.010344827586374,0.160169491525374,0.010344827586387,0.172033898305031,0.015517241379477,0.166101694915186,-0.011864406779656,0.000000000000013,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779658,-0.000000000000012,2 -11028,11086,11088,11146,0.005172413793297,0.177966101694881,0.010344827586387,0.172033898305031,0.010344827586399,0.183898305084700,0.015517241379489,0.177966101694850,-0.011864406779668,0.000000000000013,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779671,-0.000000000000012,2 -11029,11087,11089,11147,0.005172413793310,0.189830508474540,0.010344827586399,0.183898305084700,0.010344827586412,0.195762711864352,0.015517241379501,0.189830508474512,-0.011864406779651,0.000000000000013,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779653,-0.000000000000012,2 -11030,11088,11090,11148,0.005172413793323,0.201694915254202,0.010344827586412,0.195762711864352,0.010344827586424,0.207627118644027,0.015517241379513,0.201694915254177,-0.011864406779673,0.000000000000013,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779676,-0.000000000000012,2 -11031,11089,11091,11149,0.005172413793336,0.213559322033866,0.010344827586424,0.207627118644027,0.010344827586437,0.219491525423682,0.015517241379525,0.213559322033843,-0.011864406779654,0.000000000000013,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779656,-0.000000000000012,2 -11032,11090,11092,11150,0.005172413793349,0.225423728813527,0.010344827586437,0.219491525423682,0.010344827586449,0.231355932203351,0.015517241379537,0.225423728813506,-0.011864406779668,0.000000000000013,-0.000000000000023,-0.010344827586188,0.000000000000020,0.010344827586187,0.011864406779670,-0.000000000000012,2 -11033,11091,11093,11151,0.005172413793362,0.237288135593193,0.010344827586449,0.231355932203351,0.010344827586461,0.243220338983015,0.015517241379549,0.237288135593173,-0.011864406779663,0.000000000000013,-0.000000000000020,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779664,-0.000000000000012,2 -11034,11092,11094,11152,0.005172413793375,0.249152542372852,0.010344827586461,0.243220338983015,0.010344827586474,0.255084745762672,0.015517241379561,0.249152542372835,-0.011864406779656,0.000000000000013,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779658,-0.000000000000012,2 -11035,11093,11095,11153,0.005172413793388,0.261016949152512,0.010344827586474,0.255084745762672,0.010344827586486,0.266949152542337,0.015517241379573,0.261016949152497,-0.011864406779663,0.000000000000013,-0.000000000000016,-0.010344827586185,0.000000000000013,0.010344827586184,0.011864406779666,-0.000000000000012,2 -11036,11094,11096,11154,0.005172413793401,0.272881355932172,0.010344827586486,0.266949152542337,0.010344827586499,0.278813559321994,0.015517241379584,0.272881355932159,-0.011864406779657,0.000000000000013,-0.000000000000013,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779658,-0.000000000000012,2 -11037,11095,11097,11155,0.005172413793414,0.284745762711838,0.010344827586499,0.278813559321994,0.010344827586511,0.290677966101670,0.015517241379596,0.284745762711827,-0.011864406779674,0.000000000000013,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779677,-0.000000000000012,2 -11038,11096,11098,11156,0.005172413793427,0.296610169491505,0.010344827586511,0.290677966101670,0.010344827586524,0.302542372881331,0.015517241379608,0.296610169491496,-0.011864406779661,0.000000000000013,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779662,-0.000000000000012,2 -11039,11097,11099,11157,0.005172413793439,0.308474576271169,0.010344827586524,0.302542372881331,0.010344827586536,0.314406779661000,0.015517241379620,0.308474576271162,-0.011864406779668,0.000000000000013,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779670,-0.000000000000012,2 -11040,11098,11100,11158,0.005172413793452,0.320338983050836,0.010344827586536,0.314406779661000,0.010344827586548,0.326271186440666,0.015517241379632,0.320338983050831,-0.011864406779665,0.000000000000013,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779667,-0.000000000000012,2 -11041,11099,11101,11159,0.005172413793465,0.332203389830500,0.010344827586548,0.326271186440666,0.010344827586561,0.338135593220330,0.015517241379644,0.332203389830496,-0.011864406779662,0.000000000000013,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779664,-0.000000000000012,2 -7876,11042,11100,11160,0.010344827586573,0.350000000000000,0.005172413793478,0.344067796610165,0.010344827586561,0.338135593220330,0.015517241379656,0.344067796610164,-0.000000000000000,0.010344827586177,-0.011864406779669,0.000000000000013,-0.000000000000002,-0.010344827586178,0.011864406779671,-0.000000000000012,2 -8942,11043,11103,11161,0.020689655172076,-0.350000000000000,0.015517241378964,-0.344067796610167,0.020689655172088,-0.338135593220336,0.025862068965200,-0.344067796610168,-0.000000000000000,-0.010344827586236,-0.011864406779665,0.000000000000012,0.000000000000002,0.010344827586235,0.011864406779663,-0.000000000000011,2 -11044,11102,11104,11162,0.015517241378976,-0.332203389830506,0.020689655172088,-0.338135593220336,0.020689655172099,-0.326271186440679,0.025862068965211,-0.332203389830509,-0.011864406779658,0.000000000000012,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586234,0.011864406779656,-0.000000000000011,2 -11045,11103,11105,11163,0.015517241378988,-0.320338983050846,0.020689655172099,-0.326271186440679,0.020689655172110,-0.314406779661017,0.025862068965222,-0.320338983050851,-0.011864406779663,0.000000000000012,-0.000000000000004,-0.010344827586234,0.000000000000006,0.010344827586233,0.011864406779661,-0.000000000000011,2 -11046,11104,11106,11164,0.015517241379000,-0.308474576271183,0.020689655172110,-0.314406779661017,0.020689655172122,-0.302542372881356,0.025862068965232,-0.308474576271190,-0.011864406779662,0.000000000000012,-0.000000000000006,-0.010344827586233,0.000000000000008,0.010344827586232,0.011864406779659,-0.000000000000011,2 -11047,11105,11107,11165,0.015517241379012,-0.296610169491523,0.020689655172122,-0.302542372881356,0.020689655172133,-0.290677966101698,0.025862068965243,-0.296610169491532,-0.011864406779659,0.000000000000012,-0.000000000000008,-0.010344827586232,0.000000000000009,0.010344827586231,0.011864406779658,-0.000000000000011,2 -11048,11106,11108,11166,0.015517241379024,-0.284745762711859,0.020689655172133,-0.290677966101698,0.020689655172145,-0.278813559322032,0.025862068965254,-0.284745762711870,-0.011864406779668,0.000000000000012,-0.000000000000009,-0.010344827586231,0.000000000000012,0.010344827586230,0.011864406779665,-0.000000000000011,2 -11049,11107,11109,11167,0.015517241379036,-0.272881355932198,0.020689655172145,-0.278813559322032,0.020689655172156,-0.266949152542377,0.025862068965265,-0.272881355932211,-0.011864406779655,0.000000000000012,-0.000000000000012,-0.010344827586230,0.000000000000013,0.010344827586229,0.011864406779654,-0.000000000000011,2 -11050,11108,11110,11168,0.015517241379048,-0.261016949152542,0.020689655172156,-0.266949152542377,0.020689655172168,-0.255084745762721,0.025862068965276,-0.261016949152557,-0.011864406779658,0.000000000000012,-0.000000000000013,-0.010344827586229,0.000000000000016,0.010344827586228,0.011864406779655,-0.000000000000011,2 -11051,11109,11111,11169,0.015517241379060,-0.249152542372887,0.020689655172168,-0.255084745762721,0.020689655172179,-0.243220338983070,0.025862068965287,-0.249152542372904,-0.011864406779652,0.000000000000012,-0.000000000000016,-0.010344827586228,0.000000000000019,0.010344827586227,0.011864406779650,-0.000000000000011,2 -11052,11110,11112,11170,0.015517241379071,-0.237288135593232,0.020689655172179,-0.243220338983070,0.020689655172190,-0.231355932203412,0.025862068965298,-0.237288135593251,-0.011864406779659,0.000000000000012,-0.000000000000019,-0.010344827586227,0.000000000000021,0.010344827586226,0.011864406779657,-0.000000000000011,2 -11053,11111,11113,11171,0.015517241379083,-0.225423728813571,0.020689655172190,-0.231355932203412,0.020689655172202,-0.219491525423751,0.025862068965309,-0.225423728813592,-0.011864406779663,0.000000000000012,-0.000000000000021,-0.010344827586226,0.000000000000023,0.010344827586225,0.011864406779661,-0.000000000000011,2 -11054,11112,11114,11172,0.015517241379095,-0.213559322033914,0.020689655172202,-0.219491525423751,0.020689655172213,-0.207627118644100,0.025862068965320,-0.213559322033937,-0.011864406779651,0.000000000000012,-0.000000000000023,-0.010344827586225,0.000000000000024,0.010344827586224,0.011864406779650,-0.000000000000011,2 -11055,11113,11115,11173,0.015517241379107,-0.201694915254254,0.020689655172213,-0.207627118644100,0.020689655172225,-0.195762711864435,0.025862068965331,-0.201694915254280,-0.011864406779667,0.000000000000012,-0.000000000000024,-0.010344827586224,0.000000000000027,0.010344827586223,0.011864406779664,-0.000000000000011,2 -11056,11114,11116,11174,0.015517241379119,-0.189830508474597,0.020689655172225,-0.195762711864435,0.020689655172236,-0.183898305084788,0.025862068965342,-0.189830508474625,-0.011864406779648,0.000000000000012,-0.000000000000027,-0.010344827586223,0.000000000000029,0.010344827586222,0.011864406779646,-0.000000000000011,2 -11057,11115,11117,11175,0.015517241379131,-0.177966101694942,0.020689655172236,-0.183898305084788,0.020689655172248,-0.172033898305126,0.025862068965353,-0.177966101694972,-0.011864406779663,0.000000000000012,-0.000000000000029,-0.010344827586222,0.000000000000032,0.010344827586221,0.011864406779660,-0.000000000000011,2 -11058,11116,11118,11176,0.015517241379143,-0.166101694915284,0.020689655172248,-0.172033898305126,0.020689655172259,-0.160169491525475,0.025862068965364,-0.166101694915317,-0.011864406779652,0.000000000000012,-0.000000000000032,-0.010344827586221,0.000000000000034,0.010344827586220,0.011864406779650,-0.000000000000011,2 -11059,11117,11119,11177,0.015517241379155,-0.154237288135634,0.020689655172259,-0.160169491525475,0.020689655172271,-0.148305084745828,0.025862068965375,-0.154237288135669,-0.011864406779648,0.000000000000012,-0.000000000000034,-0.010344827586220,0.000000000000035,0.010344827586219,0.011864406779646,-0.000000000000011,2 -11060,11118,11120,11178,0.015517241379167,-0.142372881355982,0.020689655172271,-0.148305084745828,0.020689655172282,-0.136440677966172,0.025862068965386,-0.142372881356018,-0.011864406779658,0.000000000000012,-0.000000000000035,-0.010344827586219,0.000000000000038,0.010344827586218,0.011864406779655,-0.000000000000011,2 -11061,11119,11121,11179,0.015517241379179,-0.130508474576323,0.020689655172282,-0.136440677966172,0.020689655172293,-0.124576271186513,0.025862068965396,-0.130508474576362,-0.011864406779659,0.000000000000012,-0.000000000000038,-0.010344827586218,0.000000000000039,0.010344827586217,0.011864406779658,-0.000000000000011,2 -11062,11120,11122,11180,0.015517241379191,-0.118644067796664,0.020689655172293,-0.124576271186513,0.020689655172305,-0.112711864406856,0.025862068965407,-0.118644067796705,-0.011864406779658,0.000000000000012,-0.000000000000039,-0.010344827586217,0.000000000000042,0.010344827586216,0.011864406779656,-0.000000000000011,2 -11063,11121,11123,11181,0.015517241379203,-0.106779661017008,0.020689655172305,-0.112711864406856,0.020689655172316,-0.100847457627204,0.025862068965418,-0.106779661017051,-0.011864406779654,0.000000000000012,-0.000000000000042,-0.010344827586216,0.000000000000044,0.010344827586215,0.011864406779651,-0.000000000000011,2 -11064,11122,11124,11182,0.015517241379215,-0.094915254237353,0.020689655172316,-0.100847457627204,0.020689655172328,-0.088983050847547,0.025862068965429,-0.094915254237398,-0.011864406779658,0.000000000000012,-0.000000000000044,-0.010344827586215,0.000000000000046,0.010344827586214,0.011864406779656,-0.000000000000011,2 -11065,11123,11125,11183,0.015517241379227,-0.083050847457694,0.020689655172328,-0.088983050847547,0.020689655172339,-0.077118644067890,0.025862068965440,-0.083050847457742,-0.011864406779658,0.000000000000012,-0.000000000000046,-0.010344827586214,0.000000000000049,0.010344827586213,0.011864406779656,-0.000000000000011,2 -11066,11124,11126,11184,0.015517241379238,-0.071186440678038,0.020689655172339,-0.077118644067890,0.020689655172351,-0.065254237288237,0.025862068965451,-0.071186440678088,-0.011864406779653,0.000000000000012,-0.000000000000049,-0.010344827586213,0.000000000000051,0.010344827586212,0.011864406779651,-0.000000000000011,2 -11067,11125,11127,11185,0.015517241379250,-0.059322033898383,0.020689655172351,-0.065254237288237,0.020689655172362,-0.053389830508580,0.025862068965462,-0.059322033898435,-0.011864406779658,0.000000000000012,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779656,-0.000000000000011,2 -11068,11126,11128,11186,0.015517241379262,-0.047457627118725,0.020689655172362,-0.053389830508580,0.020689655172373,-0.041525423728925,0.025862068965473,-0.047457627118780,-0.011864406779656,0.000000000000012,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779654,-0.000000000000011,2 -11069,11127,11129,11187,0.015517241379274,-0.035593220339069,0.020689655172373,-0.041525423728925,0.020689655172385,-0.029661016949271,0.025862068965484,-0.035593220339126,-0.011864406779655,0.000000000000012,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779653,-0.000000000000011,2 -11070,11128,11130,11188,0.015517241379286,-0.023728813559413,0.020689655172385,-0.029661016949271,0.020689655172396,-0.017796610169613,0.025862068965495,-0.023728813559472,-0.011864406779658,0.000000000000012,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586208,0.011864406779656,-0.000000000000011,2 -11071,11129,11131,11189,0.015517241379298,-0.011864406779757,0.020689655172396,-0.017796610169613,0.020689655172408,-0.005932203389961,0.025862068965506,-0.011864406779818,-0.011864406779653,0.000000000000012,-0.000000000000060,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779651,-0.000000000000011,2 -11072,11130,11132,11190,0.015517241379310,-0.000000000000094,0.020689655172408,-0.005932203389961,0.020689655172419,0.005932203389712,0.025862068965517,-0.000000000000156,-0.011864406779673,0.000000000000012,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000011,2 -11073,11131,11133,11191,0.015517241379322,0.011864406779573,0.020689655172419,0.005932203389712,0.020689655172431,0.017796610169372,0.025862068965528,0.011864406779511,-0.011864406779660,0.000000000000012,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586205,0.011864406779662,-0.000000000000011,2 -11074,11132,11134,11192,0.015517241379334,0.023728813559235,0.020689655172431,0.017796610169372,0.020689655172442,0.029661016949039,0.025862068965539,0.023728813559176,-0.011864406779666,0.000000000000012,-0.000000000000060,-0.010344827586205,0.000000000000058,0.010344827586204,0.011864406779668,-0.000000000000011,2 -11075,11133,11135,11193,0.015517241379346,0.035593220338899,0.020689655172442,0.029661016949039,0.020689655172453,0.041525423728702,0.025862068965550,0.035593220338842,-0.011864406779662,0.000000000000012,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779664,-0.000000000000011,2 -11076,11134,11136,11194,0.015517241379358,0.047457627118562,0.020689655172453,0.041525423728702,0.020689655172465,0.053389830508367,0.025862068965561,0.047457627118507,-0.011864406779663,0.000000000000012,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779665,-0.000000000000011,2 -11077,11135,11137,11195,0.015517241379370,0.059322033898226,0.020689655172465,0.053389830508367,0.020689655172476,0.065254237288033,0.025862068965571,0.059322033898174,-0.011864406779666,0.000000000000012,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779668,-0.000000000000011,2 -11078,11136,11138,11196,0.015517241379382,0.071186440677889,0.020689655172476,0.065254237288033,0.020689655172488,0.077118644067694,0.025862068965582,0.071186440677839,-0.011864406779660,0.000000000000012,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779662,-0.000000000000011,2 -11079,11137,11139,11197,0.015517241379394,0.083050847457551,0.020689655172488,0.077118644067694,0.020689655172499,0.088983050847361,0.025862068965593,0.083050847457504,-0.011864406779666,0.000000000000012,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779668,-0.000000000000011,2 -11080,11138,11140,11198,0.015517241379406,0.094915254237217,0.020689655172499,0.088983050847361,0.020689655172511,0.100847457627028,0.025862068965604,0.094915254237172,-0.011864406779666,0.000000000000012,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779668,-0.000000000000011,2 -11081,11139,11141,11199,0.015517241379417,0.106779661016879,0.020689655172511,0.100847457627028,0.020689655172522,0.112711864406688,0.025862068965615,0.106779661016837,-0.011864406779660,0.000000000000012,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779662,-0.000000000000011,2 -11082,11140,11142,11200,0.015517241379429,0.118644067796542,0.020689655172522,0.112711864406688,0.020689655172533,0.124576271186355,0.025862068965626,0.118644067796501,-0.011864406779666,0.000000000000012,-0.000000000000042,-0.010344827586197,0.000000000000039,0.010344827586196,0.011864406779668,-0.000000000000011,2 -11083,11141,11143,11201,0.015517241379441,0.130508474576207,0.020689655172533,0.124576271186355,0.020689655172545,0.136440677966021,0.025862068965637,0.130508474576169,-0.011864406779665,0.000000000000012,-0.000000000000039,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779666,-0.000000000000011,2 -11084,11142,11144,11202,0.015517241379453,0.142372881355872,0.020689655172545,0.136440677966021,0.020689655172556,0.148305084745687,0.025862068965648,0.142372881355835,-0.011864406779665,0.000000000000012,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779667,-0.000000000000011,2 -11085,11143,11145,11203,0.015517241379465,0.154237288135531,0.020689655172556,0.148305084745687,0.020689655172568,0.160169491525340,0.025862068965659,0.154237288135496,-0.011864406779653,0.000000000000012,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779654,-0.000000000000011,2 -11086,11144,11146,11204,0.015517241379477,0.166101694915186,0.020689655172568,0.160169491525340,0.020689655172579,0.172033898304999,0.025862068965670,0.166101694915153,-0.011864406779658,0.000000000000012,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779660,-0.000000000000011,2 -11087,11145,11147,11205,0.015517241379489,0.177966101694850,0.020689655172579,0.172033898304999,0.020689655172591,0.183898305084671,0.025862068965681,0.177966101694820,-0.011864406779671,0.000000000000012,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779674,-0.000000000000011,2 -11088,11146,11148,11206,0.015517241379501,0.189830508474512,0.020689655172591,0.183898305084671,0.020689655172602,0.195762711864325,0.025862068965692,0.189830508474484,-0.011864406779653,0.000000000000012,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779654,-0.000000000000011,2 -11089,11147,11149,11207,0.015517241379513,0.201694915254177,0.020689655172602,0.195762711864325,0.020689655172614,0.207627118644003,0.025862068965703,0.201694915254151,-0.011864406779676,0.000000000000012,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779679,-0.000000000000011,2 -11090,11148,11150,11208,0.015517241379525,0.213559322033843,0.020689655172614,0.207627118644003,0.020689655172625,0.219491525423659,0.025862068965714,0.213559322033819,-0.011864406779656,0.000000000000012,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779657,-0.000000000000011,2 -11091,11149,11151,11209,0.015517241379537,0.225423728813506,0.020689655172625,0.219491525423659,0.020689655172636,0.231355932203331,0.025862068965725,0.225423728813484,-0.011864406779670,0.000000000000012,-0.000000000000023,-0.010344827586188,0.000000000000021,0.010344827586187,0.011864406779673,-0.000000000000011,2 -11092,11150,11152,11210,0.015517241379549,0.237288135593173,0.020689655172636,0.231355932203331,0.020689655172648,0.243220338982996,0.025862068965735,0.237288135593153,-0.011864406779664,0.000000000000012,-0.000000000000021,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779666,-0.000000000000011,2 -11093,11151,11153,11211,0.015517241379561,0.249152542372835,0.020689655172648,0.243220338982996,0.020689655172659,0.255084745762656,0.025862068965746,0.249152542372817,-0.011864406779658,0.000000000000012,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779661,-0.000000000000011,2 -11094,11152,11154,11212,0.015517241379573,0.261016949152497,0.020689655172659,0.255084745762656,0.020689655172671,0.266949152542323,0.025862068965757,0.261016949152482,-0.011864406779666,0.000000000000012,-0.000000000000016,-0.010344827586185,0.000000000000014,0.010344827586184,0.011864406779669,-0.000000000000011,2 -11095,11153,11155,11213,0.015517241379584,0.272881355932159,0.020689655172671,0.266949152542323,0.020689655172682,0.278813559321982,0.025862068965768,0.272881355932146,-0.011864406779658,0.000000000000012,-0.000000000000014,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779660,-0.000000000000011,2 -11096,11154,11156,11214,0.015517241379596,0.284745762711827,0.020689655172682,0.278813559321982,0.020689655172694,0.290677966101661,0.025862068965779,0.284745762711816,-0.011864406779677,0.000000000000012,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779680,-0.000000000000011,2 -11097,11155,11157,11215,0.015517241379608,0.296610169491496,0.020689655172694,0.290677966101661,0.020689655172705,0.302542372881323,0.025862068965790,0.296610169491488,-0.011864406779662,0.000000000000012,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779663,-0.000000000000011,2 -11098,11156,11158,11216,0.015517241379620,0.308474576271162,0.020689655172705,0.302542372881323,0.020689655172716,0.314406779660995,0.025862068965801,0.308474576271155,-0.011864406779670,0.000000000000012,-0.000000000000008,-0.010344827586181,0.000000000000005,0.010344827586180,0.011864406779673,-0.000000000000011,2 -11099,11157,11159,11217,0.015517241379632,0.320338983050831,0.020689655172716,0.314406779660995,0.020689655172728,0.326271186440662,0.025862068965812,0.320338983050826,-0.011864406779667,0.000000000000012,-0.000000000000005,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779668,-0.000000000000011,2 -11100,11158,11160,11218,0.015517241379644,0.332203389830496,0.020689655172728,0.326271186440662,0.020689655172739,0.338135593220327,0.025862068965823,0.332203389830493,-0.011864406779664,0.000000000000012,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779666,-0.000000000000011,2 -7862,11101,11159,11219,0.020689655172751,0.350000000000000,0.015517241379656,0.344067796610164,0.020689655172739,0.338135593220327,0.025862068965834,0.344067796610163,-0.000000000000000,0.010344827586177,-0.011864406779671,0.000000000000012,-0.000000000000002,-0.010344827586178,0.011864406779674,-0.000000000000011,2 -8943,11102,11162,11220,0.031034482758311,-0.350000000000000,0.025862068965200,-0.344067796610168,0.031034482758321,-0.338135593220338,0.036206896551432,-0.344067796610170,-0.000000000000000,-0.010344827586233,-0.011864406779663,0.000000000000011,0.000000000000002,0.010344827586232,0.011864406779661,-0.000000000000010,2 -11103,11161,11163,11221,0.025862068965211,-0.332203389830509,0.031034482758321,-0.338135593220338,0.031034482758332,-0.326271186440683,0.036206896551442,-0.332203389830512,-0.011864406779656,0.000000000000011,-0.000000000000002,-0.010344827586232,0.000000000000004,0.010344827586231,0.011864406779654,-0.000000000000010,2 -11104,11162,11164,11222,0.025862068965222,-0.320338983050851,0.031034482758332,-0.326271186440683,0.031034482758342,-0.314406779661023,0.036206896551452,-0.320338983050856,-0.011864406779661,0.000000000000011,-0.000000000000004,-0.010344827586231,0.000000000000006,0.010344827586230,0.011864406779660,-0.000000000000010,2 -11105,11163,11165,11223,0.025862068965232,-0.308474576271190,0.031034482758342,-0.314406779661023,0.031034482758353,-0.302542372881365,0.036206896551462,-0.308474576271197,-0.011864406779659,0.000000000000011,-0.000000000000006,-0.010344827586230,0.000000000000008,0.010344827586229,0.011864406779657,-0.000000000000010,2 -11106,11164,11166,11224,0.025862068965243,-0.296610169491532,0.031034482758353,-0.302542372881365,0.031034482758363,-0.290677966101707,0.036206896551472,-0.296610169491540,-0.011864406779658,0.000000000000011,-0.000000000000008,-0.010344827586229,0.000000000000009,0.010344827586228,0.011864406779657,-0.000000000000010,2 -11107,11165,11167,11225,0.025862068965254,-0.284745762711870,0.031034482758363,-0.290677966101707,0.031034482758374,-0.278813559322044,0.036206896551482,-0.284745762711881,-0.011864406779665,0.000000000000011,-0.000000000000009,-0.010344827586228,0.000000000000012,0.010344827586228,0.011864406779662,-0.000000000000010,2 -11108,11166,11168,11226,0.025862068965265,-0.272881355932211,0.031034482758374,-0.278813559322044,0.031034482758384,-0.266949152542391,0.036206896551492,-0.272881355932224,-0.011864406779654,0.000000000000011,-0.000000000000012,-0.010344827586228,0.000000000000013,0.010344827586227,0.011864406779653,-0.000000000000010,2 -11109,11167,11169,11227,0.025862068965276,-0.261016949152557,0.031034482758384,-0.266949152542391,0.031034482758395,-0.255084745762737,0.036206896551502,-0.261016949152571,-0.011864406779655,0.000000000000011,-0.000000000000013,-0.010344827586227,0.000000000000016,0.010344827586226,0.011864406779652,-0.000000000000010,2 -11110,11168,11170,11228,0.025862068965287,-0.249152542372904,0.031034482758395,-0.255084745762737,0.031034482758405,-0.243220338983089,0.036206896551512,-0.249152542372922,-0.011864406779650,0.000000000000011,-0.000000000000016,-0.010344827586226,0.000000000000019,0.010344827586225,0.011864406779647,-0.000000000000010,2 -11111,11169,11171,11229,0.025862068965298,-0.237288135593251,0.031034482758405,-0.243220338983089,0.031034482758415,-0.231355932203433,0.036206896551522,-0.237288135593271,-0.011864406779657,0.000000000000011,-0.000000000000019,-0.010344827586225,0.000000000000020,0.010344827586224,0.011864406779655,-0.000000000000010,2 -11112,11170,11172,11230,0.025862068965309,-0.225423728813592,0.031034482758415,-0.231355932203433,0.031034482758426,-0.219491525423774,0.036206896551532,-0.225423728813614,-0.011864406779661,0.000000000000011,-0.000000000000020,-0.010344827586224,0.000000000000023,0.010344827586223,0.011864406779658,-0.000000000000010,2 -11113,11171,11173,11231,0.025862068965320,-0.213559322033937,0.031034482758426,-0.219491525423774,0.031034482758436,-0.207627118644124,0.036206896551542,-0.213559322033961,-0.011864406779650,0.000000000000011,-0.000000000000023,-0.010344827586223,0.000000000000024,0.010344827586222,0.011864406779649,-0.000000000000010,2 -11114,11172,11174,11232,0.025862068965331,-0.201694915254280,0.031034482758436,-0.207627118644124,0.031034482758447,-0.195762711864462,0.036206896551552,-0.201694915254306,-0.011864406779664,0.000000000000011,-0.000000000000024,-0.010344827586222,0.000000000000027,0.010344827586221,0.011864406779661,-0.000000000000010,2 -11115,11173,11175,11233,0.025862068965342,-0.189830508474625,0.031034482758447,-0.195762711864462,0.031034482758457,-0.183898305084817,0.036206896551562,-0.189830508474654,-0.011864406779646,0.000000000000011,-0.000000000000027,-0.010344827586221,0.000000000000029,0.010344827586220,0.011864406779645,-0.000000000000010,2 -11116,11174,11176,11234,0.025862068965353,-0.177966101694972,0.031034482758457,-0.183898305084817,0.031034482758468,-0.172033898305158,0.036206896551572,-0.177966101695003,-0.011864406779660,0.000000000000011,-0.000000000000029,-0.010344827586220,0.000000000000032,0.010344827586219,0.011864406779657,-0.000000000000010,2 -11117,11175,11177,11235,0.025862068965364,-0.166101694915317,0.031034482758468,-0.172033898305158,0.031034482758478,-0.160169491525509,0.036206896551582,-0.166101694915350,-0.011864406779650,0.000000000000011,-0.000000000000032,-0.010344827586219,0.000000000000034,0.010344827586218,0.011864406779648,-0.000000000000010,2 -11118,11176,11178,11236,0.025862068965375,-0.154237288135669,0.031034482758478,-0.160169491525509,0.031034482758489,-0.148305084745864,0.036206896551592,-0.154237288135704,-0.011864406779646,0.000000000000011,-0.000000000000034,-0.010344827586218,0.000000000000035,0.010344827586217,0.011864406779645,-0.000000000000010,2 -11119,11177,11179,11237,0.025862068965386,-0.142372881356018,0.031034482758489,-0.148305084745864,0.031034482758499,-0.136440677966210,0.036206896551602,-0.142372881356055,-0.011864406779655,0.000000000000011,-0.000000000000035,-0.010344827586217,0.000000000000038,0.010344827586216,0.011864406779653,-0.000000000000010,2 -11120,11178,11180,11238,0.025862068965396,-0.130508474576362,0.031034482758499,-0.136440677966210,0.031034482758510,-0.124576271186553,0.036206896551612,-0.130508474576400,-0.011864406779658,0.000000000000011,-0.000000000000038,-0.010344827586216,0.000000000000040,0.010344827586215,0.011864406779656,-0.000000000000010,2 -11121,11179,11181,11239,0.025862068965407,-0.118644067796705,0.031034482758510,-0.124576271186553,0.031034482758520,-0.112711864406898,0.036206896551622,-0.118644067796746,-0.011864406779656,0.000000000000011,-0.000000000000040,-0.010344827586215,0.000000000000042,0.010344827586215,0.011864406779654,-0.000000000000010,2 -11122,11180,11182,11240,0.025862068965418,-0.106779661017051,0.031034482758520,-0.112711864406898,0.031034482758531,-0.100847457627248,0.036206896551632,-0.106779661017094,-0.011864406779651,0.000000000000011,-0.000000000000042,-0.010344827586215,0.000000000000044,0.010344827586214,0.011864406779649,-0.000000000000010,2 -11123,11181,11183,11241,0.025862068965429,-0.094915254237398,0.031034482758531,-0.100847457627248,0.031034482758541,-0.088983050847593,0.036206896551643,-0.094915254237443,-0.011864406779656,0.000000000000011,-0.000000000000044,-0.010344827586214,0.000000000000046,0.010344827586213,0.011864406779653,-0.000000000000010,2 -11124,11182,11184,11242,0.025862068965440,-0.083050847457742,0.031034482758541,-0.088983050847593,0.031034482758552,-0.077118644067938,0.036206896551653,-0.083050847457790,-0.011864406779656,0.000000000000011,-0.000000000000046,-0.010344827586213,0.000000000000049,0.010344827586212,0.011864406779653,-0.000000000000010,2 -11125,11183,11185,11243,0.025862068965451,-0.071186440678088,0.031034482758552,-0.077118644067938,0.031034482758562,-0.065254237288288,0.036206896551663,-0.071186440678138,-0.011864406779651,0.000000000000011,-0.000000000000049,-0.010344827586212,0.000000000000051,0.010344827586211,0.011864406779649,-0.000000000000010,2 -11126,11184,11186,11244,0.025862068965462,-0.059322033898435,0.031034482758562,-0.065254237288288,0.031034482758573,-0.053389830508633,0.036206896551673,-0.059322033898487,-0.011864406779656,0.000000000000011,-0.000000000000051,-0.010344827586211,0.000000000000053,0.010344827586210,0.011864406779653,-0.000000000000010,2 -11127,11185,11187,11245,0.025862068965473,-0.047457627118780,0.031034482758573,-0.053389830508633,0.031034482758583,-0.041525423728981,0.036206896551683,-0.047457627118834,-0.011864406779654,0.000000000000011,-0.000000000000053,-0.010344827586210,0.000000000000056,0.010344827586209,0.011864406779652,-0.000000000000010,2 -11128,11186,11188,11246,0.025862068965484,-0.035593220339126,0.031034482758583,-0.041525423728981,0.031034482758593,-0.029661016949328,0.036206896551693,-0.035593220339183,-0.011864406779653,0.000000000000011,-0.000000000000056,-0.010344827586209,0.000000000000058,0.010344827586208,0.011864406779651,-0.000000000000010,2 -11129,11187,11189,11247,0.025862068965495,-0.023728813559472,0.031034482758593,-0.029661016949328,0.031034482758604,-0.017796610169674,0.036206896551703,-0.023728813559531,-0.011864406779656,0.000000000000011,-0.000000000000058,-0.010344827586208,0.000000000000060,0.010344827586207,0.011864406779653,-0.000000000000010,2 -11130,11188,11190,11248,0.025862068965506,-0.011864406779818,0.031034482758604,-0.017796610169674,0.031034482758614,-0.005932203390023,0.036206896551713,-0.011864406779879,-0.011864406779651,0.000000000000011,-0.000000000000060,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779649,-0.000000000000010,2 -11131,11189,11191,11249,0.025862068965517,-0.000000000000156,0.031034482758614,-0.005932203390023,0.031034482758625,0.005932203389649,0.036206896551723,-0.000000000000218,-0.011864406779673,0.000000000000011,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586205,0.011864406779673,-0.000000000000010,2 -11132,11190,11192,11250,0.025862068965528,0.011864406779511,0.031034482758625,0.005932203389649,0.031034482758635,0.017796610169312,0.036206896551733,0.011864406779450,-0.011864406779662,0.000000000000011,-0.000000000000062,-0.010344827586205,0.000000000000060,0.010344827586204,0.011864406779664,-0.000000000000010,2 -11133,11191,11193,11251,0.025862068965539,0.023728813559176,0.031034482758635,0.017796610169312,0.031034482758646,0.029661016948981,0.036206896551743,0.023728813559117,-0.011864406779668,0.000000000000011,-0.000000000000060,-0.010344827586204,0.000000000000058,0.010344827586204,0.011864406779671,-0.000000000000010,2 -11134,11192,11194,11252,0.025862068965550,0.035593220338842,0.031034482758646,0.029661016948981,0.031034482758656,0.041525423728647,0.036206896551753,0.035593220338786,-0.011864406779664,0.000000000000011,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779666,-0.000000000000010,2 -11135,11193,11195,11253,0.025862068965561,0.047457627118507,0.031034482758656,0.041525423728647,0.031034482758667,0.053389830508313,0.036206896551763,0.047457627118453,-0.011864406779665,0.000000000000011,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779668,-0.000000000000010,2 -11136,11194,11196,11254,0.025862068965571,0.059322033898174,0.031034482758667,0.053389830508313,0.031034482758677,0.065254237287983,0.036206896551773,0.059322033898122,-0.011864406779668,0.000000000000011,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779671,-0.000000000000010,2 -11137,11195,11197,11255,0.025862068965582,0.071186440677839,0.031034482758677,0.065254237287983,0.031034482758688,0.077118644067645,0.036206896551783,0.071186440677789,-0.011864406779662,0.000000000000011,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779664,-0.000000000000010,2 -11138,11196,11198,11256,0.025862068965593,0.083050847457504,0.031034482758688,0.077118644067645,0.031034482758698,0.088983050847314,0.036206896551793,0.083050847457456,-0.011864406779668,0.000000000000011,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779671,-0.000000000000010,2 -11139,11197,11199,11257,0.025862068965604,0.094915254237172,0.031034482758698,0.088983050847314,0.031034482758709,0.100847457626984,0.036206896551803,0.094915254237126,-0.011864406779668,0.000000000000011,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779670,-0.000000000000010,2 -11140,11198,11200,11258,0.025862068965615,0.106779661016837,0.031034482758709,0.100847457626984,0.031034482758719,0.112711864406646,0.036206896551813,0.106779661016794,-0.011864406779662,0.000000000000011,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779664,-0.000000000000010,2 -11141,11199,11201,11259,0.025862068965626,0.118644067796501,0.031034482758719,0.112711864406646,0.031034482758730,0.124576271186316,0.036206896551823,0.118644067796461,-0.011864406779668,0.000000000000011,-0.000000000000042,-0.010344827586197,0.000000000000040,0.010344827586196,0.011864406779670,-0.000000000000010,2 -11142,11200,11202,11260,0.025862068965637,0.130508474576169,0.031034482758730,0.124576271186316,0.031034482758740,0.136440677965983,0.036206896551833,0.130508474576130,-0.011864406779666,0.000000000000011,-0.000000000000040,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779668,-0.000000000000010,2 -11143,11201,11203,11261,0.025862068965648,0.142372881355835,0.031034482758740,0.136440677965983,0.031034482758751,0.148305084745651,0.036206896551843,0.142372881355799,-0.011864406779667,0.000000000000011,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779669,-0.000000000000010,2 -11144,11202,11204,11262,0.025862068965659,0.154237288135496,0.031034482758751,0.148305084745651,0.031034482758761,0.160169491525306,0.036206896551853,0.154237288135461,-0.011864406779654,0.000000000000011,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779656,-0.000000000000010,2 -11145,11203,11205,11263,0.025862068965670,0.166101694915153,0.031034482758761,0.160169491525306,0.031034482758772,0.172033898304967,0.036206896551863,0.166101694915120,-0.011864406779660,0.000000000000011,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779662,-0.000000000000010,2 -11146,11204,11206,11264,0.025862068965681,0.177966101694820,0.031034482758772,0.172033898304967,0.031034482758782,0.183898305084642,0.036206896551873,0.177966101694790,-0.011864406779674,0.000000000000011,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779676,-0.000000000000010,2 -11147,11205,11207,11265,0.025862068965692,0.189830508474484,0.031034482758782,0.183898305084642,0.031034482758793,0.195762711864297,0.036206896551883,0.189830508474456,-0.011864406779654,0.000000000000011,-0.000000000000029,-0.010344827586191,0.000000000000028,0.010344827586191,0.011864406779656,-0.000000000000010,2 -11148,11206,11208,11266,0.025862068965703,0.201694915254151,0.031034482758793,0.195762711864297,0.031034482758803,0.207627118643978,0.036206896551893,0.201694915254125,-0.011864406779679,0.000000000000011,-0.000000000000028,-0.010344827586191,0.000000000000024,0.010344827586190,0.011864406779682,-0.000000000000010,2 -11149,11207,11209,11267,0.025862068965714,0.213559322033819,0.031034482758803,0.207627118643978,0.031034482758813,0.219491525423636,0.036206896551903,0.213559322033795,-0.011864406779657,0.000000000000011,-0.000000000000024,-0.010344827586190,0.000000000000023,0.010344827586189,0.011864406779659,-0.000000000000010,2 -11150,11208,11210,11268,0.025862068965725,0.225423728813484,0.031034482758813,0.219491525423636,0.031034482758824,0.231355932203310,0.036206896551913,0.225423728813462,-0.011864406779673,0.000000000000011,-0.000000000000023,-0.010344827586189,0.000000000000020,0.010344827586188,0.011864406779675,-0.000000000000010,2 -11151,11209,11211,11269,0.025862068965735,0.237288135593153,0.031034482758824,0.231355932203310,0.031034482758834,0.243220338982977,0.036206896551923,0.237288135593134,-0.011864406779666,0.000000000000011,-0.000000000000020,-0.010344827586188,0.000000000000019,0.010344827586187,0.011864406779668,-0.000000000000010,2 -11152,11210,11212,11270,0.025862068965746,0.249152542372817,0.031034482758834,0.243220338982977,0.031034482758845,0.255084745762639,0.036206896551933,0.249152542372800,-0.011864406779661,0.000000000000011,-0.000000000000019,-0.010344827586187,0.000000000000016,0.010344827586186,0.011864406779663,-0.000000000000010,2 -11153,11211,11213,11271,0.025862068965757,0.261016949152482,0.031034482758845,0.255084745762639,0.031034482758855,0.266949152542310,0.036206896551943,0.261016949152467,-0.011864406779669,0.000000000000011,-0.000000000000016,-0.010344827586186,0.000000000000014,0.010344827586185,0.011864406779672,-0.000000000000010,2 -11154,11212,11214,11272,0.025862068965768,0.272881355932146,0.031034482758855,0.266949152542310,0.031034482758866,0.278813559321970,0.036206896551953,0.272881355932133,-0.011864406779660,0.000000000000011,-0.000000000000014,-0.010344827586185,0.000000000000012,0.010344827586184,0.011864406779661,-0.000000000000010,2 -11155,11213,11215,11273,0.025862068965779,0.284745762711816,0.031034482758866,0.278813559321970,0.031034482758876,0.290677966101652,0.036206896551963,0.284745762711805,-0.011864406779680,0.000000000000011,-0.000000000000012,-0.010344827586184,0.000000000000009,0.010344827586183,0.011864406779683,-0.000000000000010,2 -11156,11214,11216,11274,0.025862068965790,0.296610169491488,0.031034482758876,0.290677966101652,0.031034482758887,0.302542372881315,0.036206896551973,0.296610169491479,-0.011864406779663,0.000000000000011,-0.000000000000009,-0.010344827586183,0.000000000000008,0.010344827586182,0.011864406779663,-0.000000000000010,2 -11157,11215,11217,11275,0.025862068965801,0.308474576271155,0.031034482758887,0.302542372881315,0.031034482758897,0.314406779660989,0.036206896551983,0.308474576271148,-0.011864406779673,0.000000000000011,-0.000000000000008,-0.010344827586182,0.000000000000006,0.010344827586181,0.011864406779676,-0.000000000000010,2 -11158,11216,11218,11276,0.025862068965812,0.320338983050826,0.031034482758897,0.314406779660989,0.031034482758908,0.326271186440658,0.036206896551993,0.320338983050821,-0.011864406779668,0.000000000000011,-0.000000000000006,-0.010344827586181,0.000000000000004,0.010344827586180,0.011864406779669,-0.000000000000010,2 -11159,11217,11219,11277,0.025862068965823,0.332203389830493,0.031034482758908,0.326271186440658,0.031034482758918,0.338135593220325,0.036206896552003,0.332203389830490,-0.011864406779666,0.000000000000011,-0.000000000000004,-0.010344827586180,0.000000000000002,0.010344827586179,0.011864406779668,-0.000000000000010,2 -7848,11160,11218,11278,0.031034482758929,0.350000000000000,0.025862068965834,0.344067796610163,0.031034482758918,0.338135593220325,0.036206896552013,0.344067796610162,-0.000000000000000,0.010344827586179,-0.011864406779674,0.000000000000011,-0.000000000000002,-0.010344827586179,0.011864406779676,-0.000000000000010,2 -8944,11161,11221,11279,0.041379310344544,-0.350000000000000,0.036206896551432,-0.344067796610170,0.041379310344553,-0.338135593220340,0.046551724137665,-0.344067796610171,-0.000000000000000,-0.010344827586233,-0.011864406779661,0.000000000000010,0.000000000000002,0.010344827586232,0.011864406779659,-0.000000000000009,2 -11162,11220,11222,11280,0.036206896551442,-0.332203389830512,0.041379310344553,-0.338135593220340,0.041379310344563,-0.326271186440688,0.046551724137674,-0.332203389830515,-0.011864406779654,0.000000000000010,-0.000000000000002,-0.010344827586232,0.000000000000004,0.010344827586231,0.011864406779651,-0.000000000000009,2 -11163,11221,11223,11281,0.036206896551452,-0.320338983050856,0.041379310344563,-0.326271186440688,0.041379310344572,-0.314406779661028,0.046551724137683,-0.320338983050861,-0.011864406779660,0.000000000000010,-0.000000000000004,-0.010344827586231,0.000000000000006,0.010344827586230,0.011864406779658,-0.000000000000009,2 -11164,11222,11224,11282,0.036206896551462,-0.308474576271197,0.041379310344572,-0.314406779661028,0.041379310344582,-0.302542372881373,0.046551724137692,-0.308474576271204,-0.011864406779657,0.000000000000010,-0.000000000000006,-0.010344827586230,0.000000000000008,0.010344827586229,0.011864406779654,-0.000000000000009,2 -11165,11223,11225,11283,0.036206896551472,-0.296610169491540,0.041379310344582,-0.302542372881373,0.041379310344592,-0.290677966101717,0.046551724137701,-0.296610169491549,-0.011864406779657,0.000000000000010,-0.000000000000008,-0.010344827586229,0.000000000000009,0.010344827586229,0.011864406779656,-0.000000000000009,2 -11166,11224,11226,11284,0.036206896551482,-0.284745762711881,0.041379310344592,-0.290677966101717,0.041379310344601,-0.278813559322056,0.046551724137710,-0.284745762711892,-0.011864406779662,0.000000000000010,-0.000000000000009,-0.010344827586229,0.000000000000012,0.010344827586228,0.011864406779659,-0.000000000000009,2 -11167,11225,11227,11285,0.036206896551492,-0.272881355932224,0.041379310344601,-0.278813559322056,0.041379310344611,-0.266949152542404,0.046551724137720,-0.272881355932237,-0.011864406779653,0.000000000000010,-0.000000000000012,-0.010344827586228,0.000000000000013,0.010344827586227,0.011864406779651,-0.000000000000009,2 -11168,11226,11228,11286,0.036206896551502,-0.261016949152571,0.041379310344611,-0.266949152542404,0.041379310344620,-0.255084745762754,0.046551724137729,-0.261016949152586,-0.011864406779652,0.000000000000010,-0.000000000000013,-0.010344827586227,0.000000000000017,0.010344827586226,0.011864406779649,-0.000000000000009,2 -11169,11227,11229,11287,0.036206896551512,-0.249152542372922,0.041379310344620,-0.255084745762754,0.041379310344630,-0.243220338983108,0.046551724137738,-0.249152542372940,-0.011864406779647,0.000000000000010,-0.000000000000017,-0.010344827586226,0.000000000000019,0.010344827586225,0.011864406779645,-0.000000000000009,2 -11170,11228,11230,11288,0.036206896551522,-0.237288135593271,0.041379310344630,-0.243220338983108,0.041379310344639,-0.231355932203453,0.046551724137747,-0.237288135593290,-0.011864406779655,0.000000000000010,-0.000000000000019,-0.010344827586225,0.000000000000020,0.010344827586224,0.011864406779653,-0.000000000000009,2 -11171,11229,11231,11289,0.036206896551532,-0.225423728813614,0.041379310344639,-0.231355932203453,0.041379310344649,-0.219491525423797,0.046551724137756,-0.225423728813636,-0.011864406779658,0.000000000000010,-0.000000000000020,-0.010344827586224,0.000000000000023,0.010344827586223,0.011864406779656,-0.000000000000009,2 -11172,11230,11232,11290,0.036206896551542,-0.213559322033961,0.041379310344649,-0.219491525423797,0.041379310344659,-0.207627118644149,0.046551724137765,-0.213559322033984,-0.011864406779649,0.000000000000010,-0.000000000000023,-0.010344827586223,0.000000000000024,0.010344827586222,0.011864406779647,-0.000000000000009,2 -11173,11231,11233,11291,0.036206896551552,-0.201694915254306,0.041379310344659,-0.207627118644149,0.041379310344668,-0.195762711864490,0.046551724137774,-0.201694915254332,-0.011864406779661,0.000000000000010,-0.000000000000024,-0.010344827586222,0.000000000000027,0.010344827586222,0.011864406779658,-0.000000000000009,2 -11174,11232,11234,11292,0.036206896551562,-0.189830508474654,0.041379310344668,-0.195762711864490,0.041379310344678,-0.183898305084846,0.046551724137784,-0.189830508474682,-0.011864406779645,0.000000000000010,-0.000000000000027,-0.010344827586222,0.000000000000029,0.010344827586221,0.011864406779643,-0.000000000000009,2 -11175,11233,11235,11293,0.036206896551572,-0.177966101695003,0.041379310344678,-0.183898305084846,0.041379310344687,-0.172033898305190,0.046551724137793,-0.177966101695033,-0.011864406779657,0.000000000000010,-0.000000000000029,-0.010344827586221,0.000000000000032,0.010344827586220,0.011864406779654,-0.000000000000009,2 -11176,11234,11236,11294,0.036206896551582,-0.166101694915350,0.041379310344687,-0.172033898305190,0.041379310344697,-0.160169491525543,0.046551724137802,-0.166101694915383,-0.011864406779648,0.000000000000010,-0.000000000000032,-0.010344827586220,0.000000000000034,0.010344827586219,0.011864406779646,-0.000000000000009,2 -11177,11235,11237,11295,0.036206896551592,-0.154237288135704,0.041379310344697,-0.160169491525543,0.041379310344707,-0.148305084745899,0.046551724137811,-0.154237288135738,-0.011864406779645,0.000000000000010,-0.000000000000034,-0.010344827586219,0.000000000000035,0.010344827586218,0.011864406779643,-0.000000000000009,2 -11178,11236,11238,11296,0.036206896551602,-0.142372881356055,0.041379310344707,-0.148305084745899,0.041379310344716,-0.136440677966247,0.046551724137820,-0.142372881356092,-0.011864406779653,0.000000000000010,-0.000000000000035,-0.010344827586218,0.000000000000038,0.010344827586217,0.011864406779651,-0.000000000000009,2 -11179,11237,11239,11297,0.036206896551612,-0.130508474576400,0.041379310344716,-0.136440677966247,0.041379310344726,-0.124576271186592,0.046551724137829,-0.130508474576439,-0.011864406779656,0.000000000000010,-0.000000000000038,-0.010344827586217,0.000000000000040,0.010344827586216,0.011864406779654,-0.000000000000009,2 -11180,11238,11240,11298,0.036206896551622,-0.118644067796746,0.041379310344726,-0.124576271186592,0.041379310344735,-0.112711864406940,0.046551724137838,-0.118644067796787,-0.011864406779654,0.000000000000010,-0.000000000000040,-0.010344827586216,0.000000000000042,0.010344827586215,0.011864406779651,-0.000000000000009,2 -11181,11239,11241,11299,0.036206896551632,-0.106779661017094,0.041379310344735,-0.112711864406940,0.041379310344745,-0.100847457627292,0.046551724137848,-0.106779661017137,-0.011864406779649,0.000000000000010,-0.000000000000042,-0.010344827586215,0.000000000000044,0.010344827586215,0.011864406779647,-0.000000000000009,2 -11182,11240,11242,11300,0.036206896551643,-0.094915254237443,0.041379310344745,-0.100847457627292,0.041379310344754,-0.088983050847639,0.046551724137857,-0.094915254237488,-0.011864406779653,0.000000000000010,-0.000000000000044,-0.010344827586215,0.000000000000046,0.010344827586214,0.011864406779651,-0.000000000000009,2 -11183,11241,11243,11301,0.036206896551653,-0.083050847457790,0.041379310344754,-0.088983050847639,0.041379310344764,-0.077118644067987,0.046551724137866,-0.083050847457837,-0.011864406779653,0.000000000000010,-0.000000000000046,-0.010344827586214,0.000000000000049,0.010344827586213,0.011864406779651,-0.000000000000009,2 -11184,11242,11244,11302,0.036206896551663,-0.071186440678138,0.041379310344764,-0.077118644067987,0.041379310344774,-0.065254237288339,0.046551724137875,-0.071186440678188,-0.011864406779649,0.000000000000010,-0.000000000000049,-0.010344827586213,0.000000000000051,0.010344827586212,0.011864406779647,-0.000000000000009,2 -11185,11243,11245,11303,0.036206896551673,-0.059322033898487,0.041379310344774,-0.065254237288339,0.041379310344783,-0.053389830508687,0.046551724137884,-0.059322033898539,-0.011864406779653,0.000000000000010,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779651,-0.000000000000009,2 -11186,11244,11246,11304,0.036206896551683,-0.047457627118834,0.041379310344783,-0.053389830508687,0.041379310344793,-0.041525423729036,0.046551724137893,-0.047457627118889,-0.011864406779652,0.000000000000010,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779649,-0.000000000000009,2 -11187,11245,11247,11305,0.036206896551693,-0.035593220339183,0.041379310344793,-0.041525423729036,0.041379310344802,-0.029661016949386,0.046551724137902,-0.035593220339240,-0.011864406779651,0.000000000000010,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779649,-0.000000000000009,2 -11188,11246,11248,11306,0.036206896551703,-0.023728813559531,0.041379310344802,-0.029661016949386,0.041379310344812,-0.017796610169734,0.046551724137912,-0.023728813559590,-0.011864406779653,0.000000000000010,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586209,0.011864406779651,-0.000000000000009,2 -11189,11247,11249,11307,0.036206896551713,-0.011864406779879,0.041379310344812,-0.017796610169734,0.041379310344821,-0.005932203390086,0.046551724137921,-0.011864406779941,-0.011864406779649,0.000000000000010,-0.000000000000060,-0.010344827586209,0.000000000000062,0.010344827586208,0.011864406779647,-0.000000000000009,2 -11190,11248,11250,11308,0.036206896551723,-0.000000000000218,0.041379310344821,-0.005932203390086,0.041379310344831,0.005932203389587,0.046551724137930,-0.000000000000281,-0.011864406779673,0.000000000000010,-0.000000000000062,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779673,-0.000000000000009,2 -11191,11249,11251,11309,0.036206896551733,0.011864406779450,0.041379310344831,0.005932203389587,0.041379310344841,0.017796610169252,0.046551724137939,0.011864406779389,-0.011864406779664,0.000000000000010,-0.000000000000062,-0.010344827586207,0.000000000000060,0.010344827586206,0.011864406779666,-0.000000000000009,2 -11192,11250,11252,11310,0.036206896551743,0.023728813559117,0.041379310344841,0.017796610169252,0.041379310344850,0.029661016948923,0.046551724137948,0.023728813559058,-0.011864406779671,0.000000000000010,-0.000000000000060,-0.010344827586206,0.000000000000058,0.010344827586205,0.011864406779673,-0.000000000000009,2 -11193,11251,11253,11311,0.036206896551753,0.035593220338786,0.041379310344850,0.029661016948923,0.041379310344860,0.041525423728591,0.046551724137957,0.035593220338729,-0.011864406779666,0.000000000000010,-0.000000000000058,-0.010344827586205,0.000000000000056,0.010344827586204,0.011864406779669,-0.000000000000009,2 -11194,11252,11254,11312,0.036206896551763,0.047457627118453,0.041379310344860,0.041525423728591,0.041379310344869,0.053389830508260,0.046551724137966,0.047457627118398,-0.011864406779668,0.000000000000010,-0.000000000000056,-0.010344827586204,0.000000000000053,0.010344827586203,0.011864406779670,-0.000000000000009,2 -11195,11253,11255,11313,0.036206896551773,0.059322033898122,0.041379310344869,0.053389830508260,0.041379310344879,0.065254237287932,0.046551724137976,0.059322033898070,-0.011864406779671,0.000000000000010,-0.000000000000053,-0.010344827586203,0.000000000000051,0.010344827586202,0.011864406779673,-0.000000000000009,2 -11196,11254,11256,11314,0.036206896551783,0.071186440677789,0.041379310344879,0.065254237287932,0.041379310344888,0.077118644067596,0.046551724137985,0.071186440677739,-0.011864406779664,0.000000000000010,-0.000000000000051,-0.010344827586202,0.000000000000049,0.010344827586202,0.011864406779666,-0.000000000000009,2 -11197,11255,11257,11315,0.036206896551793,0.083050847457456,0.041379310344888,0.077118644067596,0.041379310344898,0.088983050847268,0.046551724137994,0.083050847457408,-0.011864406779671,0.000000000000010,-0.000000000000049,-0.010344827586202,0.000000000000046,0.010344827586201,0.011864406779673,-0.000000000000009,2 -11198,11256,11258,11316,0.036206896551803,0.094915254237126,0.041379310344898,0.088983050847268,0.041379310344908,0.100847457626940,0.046551724138003,0.094915254237081,-0.011864406779670,0.000000000000010,-0.000000000000046,-0.010344827586201,0.000000000000044,0.010344827586200,0.011864406779673,-0.000000000000009,2 -11199,11257,11259,11317,0.036206896551813,0.106779661016794,0.041379310344908,0.100847457626940,0.041379310344917,0.112711864406604,0.046551724138012,0.106779661016751,-0.011864406779664,0.000000000000010,-0.000000000000044,-0.010344827586200,0.000000000000042,0.010344827586199,0.011864406779666,-0.000000000000009,2 -11200,11258,11260,11318,0.036206896551823,0.118644067796461,0.041379310344917,0.112711864406604,0.041379310344927,0.124576271186276,0.046551724138021,0.118644067796420,-0.011864406779670,0.000000000000010,-0.000000000000042,-0.010344827586199,0.000000000000039,0.010344827586198,0.011864406779673,-0.000000000000009,2 -11201,11259,11261,11319,0.036206896551833,0.130508474576130,0.041379310344927,0.124576271186276,0.041379310344936,0.136440677965945,0.046551724138030,0.130508474576091,-0.011864406779668,0.000000000000010,-0.000000000000039,-0.010344827586198,0.000000000000038,0.010344827586197,0.011864406779670,-0.000000000000009,2 -11202,11260,11262,11320,0.036206896551843,0.142372881355799,0.041379310344936,0.136440677965945,0.041379310344946,0.148305084745616,0.046551724138039,0.142372881355762,-0.011864406779669,0.000000000000010,-0.000000000000038,-0.010344827586197,0.000000000000035,0.010344827586196,0.011864406779672,-0.000000000000009,2 -11203,11261,11263,11321,0.036206896551853,0.154237288135461,0.041379310344946,0.148305084745616,0.041379310344955,0.160169491525272,0.046551724138049,0.154237288135427,-0.011864406779656,0.000000000000010,-0.000000000000035,-0.010344827586196,0.000000000000034,0.010344827586195,0.011864406779657,-0.000000000000009,2 -11204,11262,11264,11322,0.036206896551863,0.166101694915120,0.041379310344955,0.160169491525272,0.041379310344965,0.172033898304935,0.046551724138058,0.166101694915087,-0.011864406779662,0.000000000000010,-0.000000000000034,-0.010344827586195,0.000000000000032,0.010344827586195,0.011864406779664,-0.000000000000009,2 -11205,11263,11265,11323,0.036206896551873,0.177966101694790,0.041379310344965,0.172033898304935,0.041379310344975,0.183898305084613,0.046551724138067,0.177966101694759,-0.011864406779676,0.000000000000010,-0.000000000000032,-0.010344827586195,0.000000000000029,0.010344827586194,0.011864406779679,-0.000000000000009,2 -11206,11264,11266,11324,0.036206896551883,0.189830508474456,0.041379310344975,0.183898305084613,0.041379310344984,0.195762711864270,0.046551724138076,0.189830508474428,-0.011864406779656,0.000000000000010,-0.000000000000029,-0.010344827586194,0.000000000000027,0.010344827586193,0.011864406779657,-0.000000000000009,2 -11207,11265,11267,11325,0.036206896551893,0.201694915254125,0.041379310344984,0.195762711864270,0.041379310344994,0.207627118643954,0.046551724138085,0.201694915254099,-0.011864406779682,0.000000000000010,-0.000000000000027,-0.010344827586193,0.000000000000024,0.010344827586192,0.011864406779685,-0.000000000000009,2 -11208,11266,11268,11326,0.036206896551903,0.213559322033795,0.041379310344994,0.207627118643954,0.041379310345003,0.219491525423613,0.046551724138094,0.213559322033772,-0.011864406779659,0.000000000000010,-0.000000000000024,-0.010344827586192,0.000000000000023,0.010344827586191,0.011864406779660,-0.000000000000009,2 -11209,11267,11269,11327,0.036206896551913,0.225423728813462,0.041379310345003,0.219491525423613,0.041379310345013,0.231355932203290,0.046551724138103,0.225423728813441,-0.011864406779675,0.000000000000010,-0.000000000000023,-0.010344827586191,0.000000000000020,0.010344827586190,0.011864406779678,-0.000000000000009,2 -11210,11268,11270,11328,0.036206896551923,0.237288135593134,0.041379310345013,0.231355932203290,0.041379310345023,0.243220338982959,0.046551724138113,0.237288135593114,-0.011864406779668,0.000000000000010,-0.000000000000020,-0.010344827586190,0.000000000000019,0.010344827586189,0.011864406779670,-0.000000000000009,2 -11211,11269,11271,11329,0.036206896551933,0.249152542372800,0.041379310345023,0.243220338982959,0.041379310345032,0.255084745762623,0.046551724138122,0.249152542372782,-0.011864406779663,0.000000000000010,-0.000000000000019,-0.010344827586189,0.000000000000017,0.010344827586188,0.011864406779665,-0.000000000000009,2 -11212,11270,11272,11330,0.036206896551943,0.261016949152467,0.041379310345032,0.255084745762623,0.041379310345042,0.266949152542296,0.046551724138131,0.261016949152452,-0.011864406779672,0.000000000000010,-0.000000000000017,-0.010344827586188,0.000000000000014,0.010344827586188,0.011864406779675,-0.000000000000009,2 -11213,11271,11273,11331,0.036206896551953,0.272881355932133,0.041379310345042,0.266949152542296,0.041379310345051,0.278813559321957,0.046551724138140,0.272881355932120,-0.011864406779661,0.000000000000010,-0.000000000000014,-0.010344827586188,0.000000000000012,0.010344827586187,0.011864406779662,-0.000000000000009,2 -11214,11272,11274,11332,0.036206896551963,0.284745762711805,0.041379310345051,0.278813559321957,0.041379310345061,0.290677966101642,0.046551724138149,0.284745762711794,-0.011864406779683,0.000000000000010,-0.000000000000012,-0.010344827586187,0.000000000000009,0.010344827586186,0.011864406779686,-0.000000000000009,2 -11215,11273,11275,11333,0.036206896551973,0.296610169491479,0.041379310345061,0.290677966101642,0.041379310345070,0.302542372881306,0.046551724138158,0.296610169491470,-0.011864406779663,0.000000000000010,-0.000000000000009,-0.010344827586186,0.000000000000008,0.010344827586185,0.011864406779664,-0.000000000000009,2 -11216,11274,11276,11334,0.036206896551983,0.308474576271148,0.041379310345070,0.302542372881306,0.041379310345080,0.314406779660983,0.046551724138167,0.308474576271141,-0.011864406779676,0.000000000000010,-0.000000000000008,-0.010344827586185,0.000000000000006,0.010344827586184,0.011864406779679,-0.000000000000009,2 -11217,11275,11277,11335,0.036206896551993,0.320338983050821,0.041379310345080,0.314406779660983,0.041379310345090,0.326271186440654,0.046551724138177,0.320338983050816,-0.011864406779669,0.000000000000010,-0.000000000000006,-0.010344827586184,0.000000000000004,0.010344827586183,0.011864406779671,-0.000000000000009,2 -11218,11276,11278,11336,0.036206896552003,0.332203389830490,0.041379310345090,0.326271186440654,0.041379310345099,0.338135593220323,0.046551724138186,0.332203389830487,-0.011864406779668,0.000000000000010,-0.000000000000004,-0.010344827586183,0.000000000000002,0.010344827586182,0.011864406779671,-0.000000000000009,2 -7834,11219,11277,11337,0.041379310345109,0.350000000000000,0.036206896552013,0.344067796610162,0.041379310345099,0.338135593220323,0.046551724138195,0.344067796610161,-0.000000000000000,0.010344827586182,-0.011864406779676,0.000000000000010,-0.000000000000002,-0.010344827586182,0.011864406779678,-0.000000000000009,2 -8945,11220,11280,11338,0.051724137930777,-0.350000000000000,0.046551724137665,-0.344067796610171,0.051724137930785,-0.338135593220342,0.056896551723897,-0.344067796610172,-0.000000000000000,-0.010344827586233,-0.011864406779659,0.000000000000009,0.000000000000002,0.010344827586232,0.011864406779657,-0.000000000000008,2 -11221,11279,11281,11339,0.046551724137674,-0.332203389830515,0.051724137930785,-0.338135593220342,0.051724137930794,-0.326271186440692,0.056896551723905,-0.332203389830519,-0.011864406779651,0.000000000000009,-0.000000000000002,-0.010344827586232,0.000000000000004,0.010344827586231,0.011864406779650,-0.000000000000008,2 -11222,11280,11282,11340,0.046551724137683,-0.320338983050861,0.051724137930794,-0.326271186440692,0.051724137930803,-0.314406779661034,0.056896551723914,-0.320338983050865,-0.011864406779658,0.000000000000009,-0.000000000000004,-0.010344827586231,0.000000000000006,0.010344827586230,0.011864406779657,-0.000000000000008,2 -11223,11281,11283,11341,0.046551724137692,-0.308474576271204,0.051724137930803,-0.314406779661034,0.051724137930811,-0.302542372881381,0.056896551723922,-0.308474576271211,-0.011864406779654,0.000000000000009,-0.000000000000006,-0.010344827586230,0.000000000000008,0.010344827586229,0.011864406779651,-0.000000000000008,2 -11224,11282,11284,11342,0.046551724137701,-0.296610169491549,0.051724137930811,-0.302542372881381,0.051724137930820,-0.290677966101726,0.056896551723930,-0.296610169491558,-0.011864406779656,0.000000000000009,-0.000000000000008,-0.010344827586229,0.000000000000009,0.010344827586228,0.011864406779655,-0.000000000000008,2 -11225,11283,11285,11343,0.046551724137710,-0.284745762711892,0.051724137930820,-0.290677966101726,0.051724137930829,-0.278813559322069,0.056896551723938,-0.284745762711903,-0.011864406779659,0.000000000000009,-0.000000000000009,-0.010344827586228,0.000000000000012,0.010344827586227,0.011864406779656,-0.000000000000008,2 -11226,11284,11286,11344,0.046551724137720,-0.272881355932237,0.051724137930829,-0.278813559322069,0.051724137930837,-0.266949152542418,0.056896551723946,-0.272881355932250,-0.011864406779651,0.000000000000009,-0.000000000000012,-0.010344827586227,0.000000000000014,0.010344827586226,0.011864406779650,-0.000000000000008,2 -11227,11285,11287,11345,0.046551724137729,-0.261016949152586,0.051724137930837,-0.266949152542418,0.051724137930846,-0.255084745762770,0.056896551723955,-0.261016949152601,-0.011864406779649,0.000000000000009,-0.000000000000014,-0.010344827586226,0.000000000000016,0.010344827586225,0.011864406779646,-0.000000000000008,2 -11228,11286,11288,11346,0.046551724137738,-0.249152542372940,0.051724137930846,-0.255084745762770,0.051724137930855,-0.243220338983126,0.056896551723963,-0.249152542372957,-0.011864406779645,0.000000000000009,-0.000000000000016,-0.010344827586225,0.000000000000019,0.010344827586224,0.011864406779643,-0.000000000000008,2 -11229,11287,11289,11347,0.046551724137747,-0.237288135593290,0.051724137930855,-0.243220338983126,0.051724137930863,-0.231355932203474,0.056896551723971,-0.237288135593310,-0.011864406779653,0.000000000000009,-0.000000000000019,-0.010344827586224,0.000000000000021,0.010344827586223,0.011864406779651,-0.000000000000008,2 -11230,11288,11290,11348,0.046551724137756,-0.225423728813636,0.051724137930863,-0.231355932203474,0.051724137930872,-0.219491525423819,0.056896551723979,-0.225423728813658,-0.011864406779656,0.000000000000009,-0.000000000000021,-0.010344827586223,0.000000000000023,0.010344827586223,0.011864406779653,-0.000000000000008,2 -11231,11289,11291,11349,0.046551724137765,-0.213559322033984,0.051724137930872,-0.219491525423819,0.051724137930881,-0.207627118644173,0.056896551723987,-0.213559322034008,-0.011864406779647,0.000000000000009,-0.000000000000023,-0.010344827586223,0.000000000000024,0.010344827586222,0.011864406779646,-0.000000000000008,2 -11232,11290,11292,11350,0.046551724137774,-0.201694915254332,0.051724137930881,-0.207627118644173,0.051724137930889,-0.195762711864517,0.056896551723996,-0.201694915254358,-0.011864406779658,0.000000000000009,-0.000000000000024,-0.010344827586222,0.000000000000028,0.010344827586221,0.011864406779654,-0.000000000000008,2 -11233,11291,11293,11351,0.046551724137784,-0.189830508474682,0.051724137930889,-0.195762711864517,0.051724137930898,-0.183898305084875,0.056896551724004,-0.189830508474710,-0.011864406779643,0.000000000000009,-0.000000000000028,-0.010344827586221,0.000000000000029,0.010344827586220,0.011864406779641,-0.000000000000008,2 -11234,11292,11294,11352,0.046551724137793,-0.177966101695033,0.051724137930898,-0.183898305084875,0.051724137930907,-0.172033898305222,0.056896551724012,-0.177966101695064,-0.011864406779654,0.000000000000009,-0.000000000000029,-0.010344827586220,0.000000000000032,0.010344827586219,0.011864406779652,-0.000000000000008,2 -11235,11293,11295,11353,0.046551724137802,-0.166101694915383,0.051724137930907,-0.172033898305222,0.051724137930915,-0.160169491525577,0.056896551724020,-0.166101694915416,-0.011864406779646,0.000000000000009,-0.000000000000032,-0.010344827586219,0.000000000000034,0.010344827586218,0.011864406779644,-0.000000000000008,2 -11236,11294,11296,11354,0.046551724137811,-0.154237288135738,0.051724137930915,-0.160169491525577,0.051724137930924,-0.148305084745935,0.056896551724028,-0.154237288135773,-0.011864406779643,0.000000000000009,-0.000000000000034,-0.010344827586218,0.000000000000035,0.010344827586217,0.011864406779641,-0.000000000000008,2 -11237,11295,11297,11355,0.046551724137820,-0.142372881356092,0.051724137930924,-0.148305084745935,0.051724137930933,-0.136440677966285,0.056896551724037,-0.142372881356128,-0.011864406779651,0.000000000000009,-0.000000000000035,-0.010344827586217,0.000000000000038,0.010344827586216,0.011864406779648,-0.000000000000008,2 -11238,11296,11298,11356,0.046551724137829,-0.130508474576439,0.051724137930933,-0.136440677966285,0.051724137930941,-0.124576271186632,0.056896551724045,-0.130508474576478,-0.011864406779654,0.000000000000009,-0.000000000000038,-0.010344827586216,0.000000000000039,0.010344827586215,0.011864406779653,-0.000000000000008,2 -11239,11297,11299,11357,0.046551724137838,-0.118644067796787,0.051724137930941,-0.124576271186632,0.051724137930950,-0.112711864406982,0.056896551724053,-0.118644067796827,-0.011864406779651,0.000000000000009,-0.000000000000039,-0.010344827586215,0.000000000000042,0.010344827586214,0.011864406779649,-0.000000000000008,2 -11240,11298,11300,11358,0.046551724137848,-0.106779661017137,0.051724137930950,-0.112711864406982,0.051724137930959,-0.100847457627336,0.056896551724061,-0.106779661017180,-0.011864406779647,0.000000000000009,-0.000000000000042,-0.010344827586214,0.000000000000044,0.010344827586213,0.011864406779645,-0.000000000000008,2 -11241,11299,11301,11359,0.046551724137857,-0.094915254237488,0.051724137930959,-0.100847457627336,0.051724137930967,-0.088983050847686,0.056896551724069,-0.094915254237533,-0.011864406779651,0.000000000000009,-0.000000000000044,-0.010344827586213,0.000000000000046,0.010344827586212,0.011864406779649,-0.000000000000008,2 -11242,11300,11302,11360,0.046551724137866,-0.083050847457837,0.051724137930967,-0.088983050847686,0.051724137930976,-0.077118644068036,0.056896551724078,-0.083050847457885,-0.011864406779651,0.000000000000009,-0.000000000000046,-0.010344827586212,0.000000000000049,0.010344827586211,0.011864406779649,-0.000000000000008,2 -11243,11301,11303,11361,0.046551724137875,-0.071186440678188,0.051724137930976,-0.077118644068036,0.051724137930985,-0.065254237288390,0.056896551724086,-0.071186440678238,-0.011864406779647,0.000000000000009,-0.000000000000049,-0.010344827586211,0.000000000000051,0.010344827586210,0.011864406779645,-0.000000000000008,2 -11244,11302,11304,11362,0.046551724137884,-0.059322033898539,0.051724137930985,-0.065254237288390,0.051724137930993,-0.053389830508740,0.056896551724094,-0.059322033898591,-0.011864406779651,0.000000000000009,-0.000000000000051,-0.010344827586210,0.000000000000053,0.010344827586209,0.011864406779649,-0.000000000000008,2 -11245,11303,11305,11363,0.046551724137893,-0.047457627118889,0.051724137930993,-0.053389830508740,0.051724137931002,-0.041525423729092,0.056896551724102,-0.047457627118943,-0.011864406779649,0.000000000000009,-0.000000000000053,-0.010344827586209,0.000000000000056,0.010344827586208,0.011864406779647,-0.000000000000008,2 -11246,11304,11306,11364,0.046551724137902,-0.035593220339240,0.051724137931002,-0.041525423729092,0.051724137931011,-0.029661016949444,0.056896551724110,-0.035593220339296,-0.011864406779649,0.000000000000009,-0.000000000000056,-0.010344827586208,0.000000000000058,0.010344827586207,0.011864406779647,-0.000000000000008,2 -11247,11305,11307,11365,0.046551724137912,-0.023728813559590,0.051724137931011,-0.029661016949444,0.051724137931019,-0.017796610169794,0.056896551724119,-0.023728813559649,-0.011864406779651,0.000000000000009,-0.000000000000058,-0.010344827586207,0.000000000000060,0.010344827586207,0.011864406779649,-0.000000000000008,2 -11248,11306,11308,11366,0.046551724137921,-0.011864406779941,0.051724137931019,-0.017796610169794,0.051724137931028,-0.005932203390148,0.056896551724127,-0.011864406780002,-0.011864406779647,0.000000000000009,-0.000000000000060,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779645,-0.000000000000008,2 -11249,11307,11309,11367,0.046551724137930,-0.000000000000281,0.051724137931028,-0.005932203390148,0.051724137931037,0.005932203389525,0.056896551724135,-0.000000000000343,-0.011864406779673,0.000000000000009,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586205,0.011864406779673,-0.000000000000008,2 -11250,11308,11310,11368,0.046551724137939,0.011864406779389,0.051724137931037,0.005932203389525,0.051724137931045,0.017796610169191,0.056896551724143,0.011864406779327,-0.011864406779666,0.000000000000009,-0.000000000000062,-0.010344827586205,0.000000000000060,0.010344827586204,0.011864406779668,-0.000000000000008,2 -11251,11309,11311,11369,0.046551724137948,0.023728813559058,0.051724137931045,0.017796610169191,0.051724137931054,0.029661016948866,0.056896551724151,0.023728813558999,-0.011864406779673,0.000000000000009,-0.000000000000060,-0.010344827586204,0.000000000000058,0.010344827586203,0.011864406779675,-0.000000000000008,2 -11252,11310,11312,11370,0.046551724137957,0.035593220338729,0.051724137931054,0.029661016948866,0.051724137931063,0.041525423728535,0.056896551724160,0.035593220338672,-0.011864406779669,0.000000000000009,-0.000000000000058,-0.010344827586203,0.000000000000056,0.010344827586202,0.011864406779671,-0.000000000000008,2 -11253,11311,11313,11371,0.046551724137966,0.047457627118398,0.051724137931063,0.041525423728535,0.051724137931071,0.053389830508206,0.056896551724168,0.047457627118344,-0.011864406779670,0.000000000000009,-0.000000000000056,-0.010344827586202,0.000000000000053,0.010344827586201,0.011864406779672,-0.000000000000008,2 -11254,11312,11314,11372,0.046551724137976,0.059322033898070,0.051724137931071,0.053389830508206,0.051724137931080,0.065254237287881,0.056896551724176,0.059322033898017,-0.011864406779673,0.000000000000009,-0.000000000000053,-0.010344827586201,0.000000000000051,0.010344827586200,0.011864406779675,-0.000000000000008,2 -11255,11313,11315,11373,0.046551724137985,0.071186440677739,0.051724137931080,0.065254237287881,0.051724137931089,0.077118644067547,0.056896551724184,0.071186440677689,-0.011864406779666,0.000000000000009,-0.000000000000051,-0.010344827586200,0.000000000000049,0.010344827586199,0.011864406779668,-0.000000000000008,2 -11256,11314,11316,11374,0.046551724137994,0.083050847457408,0.051724137931089,0.077118644067547,0.051724137931097,0.088983050847222,0.056896551724192,0.083050847457361,-0.011864406779673,0.000000000000009,-0.000000000000049,-0.010344827586199,0.000000000000046,0.010344827586198,0.011864406779675,-0.000000000000008,2 -11257,11315,11317,11375,0.046551724138003,0.094915254237081,0.051724137931097,0.088983050847222,0.051724137931106,0.100847457626896,0.056896551724201,0.094915254237036,-0.011864406779673,0.000000000000009,-0.000000000000046,-0.010344827586198,0.000000000000044,0.010344827586197,0.011864406779675,-0.000000000000008,2 -11258,11316,11318,11376,0.046551724138012,0.106779661016751,0.051724137931106,0.100847457626896,0.051724137931115,0.112711864406563,0.056896551724209,0.106779661016708,-0.011864406779666,0.000000000000009,-0.000000000000044,-0.010344827586197,0.000000000000042,0.010344827586196,0.011864406779668,-0.000000000000008,2 -11259,11317,11319,11377,0.046551724138021,0.118644067796420,0.051724137931115,0.112711864406563,0.051724137931123,0.124576271186237,0.056896551724217,0.118644067796379,-0.011864406779673,0.000000000000009,-0.000000000000042,-0.010344827586196,0.000000000000039,0.010344827586195,0.011864406779675,-0.000000000000008,2 -11260,11318,11320,11378,0.046551724138030,0.130508474576091,0.051724137931123,0.124576271186237,0.051724137931132,0.136440677965907,0.056896551724225,0.130508474576053,-0.011864406779670,0.000000000000009,-0.000000000000039,-0.010344827586195,0.000000000000038,0.010344827586194,0.011864406779671,-0.000000000000008,2 -11261,11319,11321,11379,0.046551724138039,0.142372881355762,0.051724137931132,0.136440677965907,0.051724137931141,0.148305084745580,0.056896551724233,0.142372881355726,-0.011864406779672,0.000000000000009,-0.000000000000038,-0.010344827586194,0.000000000000035,0.010344827586193,0.011864406779674,-0.000000000000008,2 -11262,11320,11322,11380,0.046551724138049,0.154237288135427,0.051724137931141,0.148305084745580,0.051724137931149,0.160169491525239,0.056896551724242,0.154237288135392,-0.011864406779657,0.000000000000009,-0.000000000000035,-0.010344827586193,0.000000000000034,0.010344827586192,0.011864406779659,-0.000000000000008,2 -11263,11321,11323,11381,0.046551724138058,0.166101694915087,0.051724137931149,0.160169491525239,0.051724137931158,0.172033898304904,0.056896551724250,0.166101694915055,-0.011864406779664,0.000000000000009,-0.000000000000034,-0.010344827586192,0.000000000000032,0.010344827586191,0.011864406779666,-0.000000000000008,2 -11264,11322,11324,11382,0.046551724138067,0.177966101694759,0.051724137931158,0.172033898304904,0.051724137931167,0.183898305084584,0.056896551724258,0.177966101694729,-0.011864406779679,0.000000000000009,-0.000000000000032,-0.010344827586191,0.000000000000029,0.010344827586191,0.011864406779682,-0.000000000000008,2 -11265,11323,11325,11383,0.046551724138076,0.189830508474428,0.051724137931167,0.183898305084584,0.051724137931175,0.195762711864243,0.056896551724266,0.189830508474399,-0.011864406779657,0.000000000000009,-0.000000000000029,-0.010344827586191,0.000000000000028,0.010344827586190,0.011864406779659,-0.000000000000008,2 -11266,11324,11326,11384,0.046551724138085,0.201694915254099,0.051724137931175,0.195762711864243,0.051724137931184,0.207627118643929,0.056896551724274,0.201694915254073,-0.011864406779685,0.000000000000009,-0.000000000000028,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779689,-0.000000000000008,2 -11267,11325,11327,11385,0.046551724138094,0.213559322033772,0.051724137931184,0.207627118643929,0.051724137931193,0.219491525423590,0.056896551724283,0.213559322033748,-0.011864406779660,0.000000000000009,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779661,-0.000000000000008,2 -11268,11326,11328,11386,0.046551724138103,0.225423728813441,0.051724137931193,0.219491525423590,0.051724137931201,0.231355932203269,0.056896551724291,0.225423728813419,-0.011864406779678,0.000000000000009,-0.000000000000023,-0.010344827586188,0.000000000000021,0.010344827586187,0.011864406779680,-0.000000000000008,2 -11269,11327,11329,11387,0.046551724138113,0.237288135593114,0.051724137931201,0.231355932203269,0.051724137931210,0.243220338982940,0.056896551724299,0.237288135593095,-0.011864406779670,0.000000000000009,-0.000000000000021,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779672,-0.000000000000008,2 -11270,11328,11330,11388,0.046551724138122,0.249152542372782,0.051724137931210,0.243220338982940,0.051724137931219,0.255084745762606,0.056896551724307,0.249152542372765,-0.011864406779665,0.000000000000009,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779667,-0.000000000000008,2 -11271,11329,11331,11389,0.046551724138131,0.261016949152452,0.051724137931219,0.255084745762606,0.051724137931227,0.266949152542282,0.056896551724315,0.261016949152437,-0.011864406779675,0.000000000000009,-0.000000000000016,-0.010344827586185,0.000000000000013,0.010344827586184,0.011864406779677,-0.000000000000008,2 -11272,11330,11332,11390,0.046551724138140,0.272881355932120,0.051724137931227,0.266949152542282,0.051724137931236,0.278813559321945,0.056896551724324,0.272881355932107,-0.011864406779662,0.000000000000009,-0.000000000000013,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779663,-0.000000000000008,2 -11273,11331,11333,11391,0.046551724138149,0.284745762711794,0.051724137931236,0.278813559321945,0.051724137931245,0.290677966101633,0.056896551724332,0.284745762711784,-0.011864406779686,0.000000000000009,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779689,-0.000000000000008,2 -11274,11332,11334,11392,0.046551724138158,0.296610169491470,0.051724137931245,0.290677966101633,0.051724137931253,0.302542372881298,0.056896551724340,0.296610169491461,-0.011864406779664,0.000000000000009,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779665,-0.000000000000008,2 -11275,11333,11335,11393,0.046551724138167,0.308474576271141,0.051724137931253,0.302542372881298,0.051724137931262,0.314406779660978,0.056896551724348,0.308474576271134,-0.011864406779679,0.000000000000009,-0.000000000000008,-0.010344827586181,0.000000000000005,0.010344827586180,0.011864406779681,-0.000000000000008,2 -11276,11334,11336,11394,0.046551724138177,0.320338983050816,0.051724137931262,0.314406779660978,0.051724137931271,0.326271186440649,0.056896551724356,0.320338983050811,-0.011864406779671,0.000000000000009,-0.000000000000005,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779672,-0.000000000000008,2 -11277,11335,11337,11395,0.046551724138186,0.332203389830487,0.051724137931271,0.326271186440649,0.051724137931279,0.338135593220321,0.056896551724365,0.332203389830484,-0.011864406779671,0.000000000000009,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779673,-0.000000000000008,2 -7820,11278,11336,11396,0.051724137931288,0.350000000000000,0.046551724138195,0.344067796610161,0.051724137931279,0.338135593220321,0.056896551724373,0.344067796610160,-0.000000000000000,0.010344827586177,-0.011864406779678,0.000000000000009,-0.000000000000002,-0.010344827586178,0.011864406779680,-0.000000000000008,2 -8946,11279,11339,11397,0.062068965517010,-0.350000000000000,0.056896551723897,-0.344067796610172,0.062068965517018,-0.338135593220344,0.067241379310131,-0.344067796610173,-0.000000000000000,-0.010344827586235,-0.011864406779657,0.000000000000008,0.000000000000002,0.010344827586234,0.011864406779655,-0.000000000000007,2 -11280,11338,11340,11398,0.056896551723905,-0.332203389830519,0.062068965517018,-0.338135593220344,0.062068965517026,-0.326271186440696,0.067241379310138,-0.332203389830522,-0.011864406779650,0.000000000000008,-0.000000000000002,-0.010344827586234,0.000000000000004,0.010344827586233,0.011864406779647,-0.000000000000007,2 -11281,11339,11341,11399,0.056896551723914,-0.320338983050865,0.062068965517026,-0.326271186440696,0.062068965517033,-0.314406779661040,0.067241379310146,-0.320338983050870,-0.011864406779657,0.000000000000008,-0.000000000000004,-0.010344827586233,0.000000000000006,0.010344827586232,0.011864406779656,-0.000000000000007,2 -11282,11340,11342,11400,0.056896551723922,-0.308474576271211,0.062068965517033,-0.314406779661040,0.062068965517041,-0.302542372881390,0.067241379310153,-0.308474576271218,-0.011864406779651,0.000000000000008,-0.000000000000006,-0.010344827586232,0.000000000000008,0.010344827586231,0.011864406779649,-0.000000000000007,2 -11283,11341,11343,11401,0.056896551723930,-0.296610169491558,0.062068965517041,-0.302542372881390,0.062068965517049,-0.290677966101735,0.067241379310160,-0.296610169491567,-0.011864406779655,0.000000000000008,-0.000000000000008,-0.010344827586231,0.000000000000009,0.010344827586230,0.011864406779654,-0.000000000000007,2 -11284,11342,11344,11402,0.056896551723938,-0.284745762711903,0.062068965517049,-0.290677966101735,0.062068965517057,-0.278813559322081,0.067241379310167,-0.284745762711913,-0.011864406779656,0.000000000000008,-0.000000000000009,-0.010344827586230,0.000000000000012,0.010344827586229,0.011864406779653,-0.000000000000007,2 -11285,11343,11345,11403,0.056896551723946,-0.272881355932250,0.062068965517057,-0.278813559322081,0.062068965517064,-0.266949152542431,0.067241379310175,-0.272881355932263,-0.011864406779650,0.000000000000008,-0.000000000000012,-0.010344827586229,0.000000000000014,0.010344827586228,0.011864406779649,-0.000000000000007,2 -11286,11344,11346,11404,0.056896551723955,-0.261016949152601,0.062068965517064,-0.266949152542431,0.062068965517072,-0.255084745762787,0.067241379310182,-0.261016949152616,-0.011864406779646,0.000000000000008,-0.000000000000014,-0.010344827586228,0.000000000000016,0.010344827586227,0.011864406779643,-0.000000000000007,2 -11287,11345,11347,11405,0.056896551723963,-0.249152542372957,0.062068965517072,-0.255084745762787,0.062068965517080,-0.243220338983145,0.067241379310189,-0.249152542372974,-0.011864406779643,0.000000000000008,-0.000000000000016,-0.010344827586227,0.000000000000018,0.010344827586226,0.011864406779641,-0.000000000000007,2 -11288,11346,11348,11406,0.056896551723971,-0.237288135593310,0.062068965517080,-0.243220338983145,0.062068965517087,-0.231355932203494,0.067241379310196,-0.237288135593329,-0.011864406779651,0.000000000000008,-0.000000000000018,-0.010344827586226,0.000000000000020,0.010344827586225,0.011864406779650,-0.000000000000007,2 -11289,11347,11349,11407,0.056896551723979,-0.225423728813658,0.062068965517087,-0.231355932203494,0.062068965517095,-0.219491525423842,0.067241379310204,-0.225423728813679,-0.011864406779653,0.000000000000008,-0.000000000000020,-0.010344827586225,0.000000000000023,0.010344827586224,0.011864406779651,-0.000000000000007,2 -11290,11348,11350,11408,0.056896551723987,-0.213559322034008,0.062068965517095,-0.219491525423842,0.062068965517103,-0.207627118644197,0.067241379310211,-0.213559322034032,-0.011864406779646,0.000000000000008,-0.000000000000023,-0.010344827586224,0.000000000000024,0.010344827586223,0.011864406779644,-0.000000000000007,2 -11291,11349,11351,11409,0.056896551723996,-0.201694915254358,0.062068965517103,-0.207627118644197,0.062068965517111,-0.195762711864544,0.067241379310218,-0.201694915254384,-0.011864406779654,0.000000000000008,-0.000000000000024,-0.010344827586223,0.000000000000027,0.010344827586222,0.011864406779651,-0.000000000000007,2 -11292,11350,11352,11410,0.056896551724004,-0.189830508474710,0.062068965517111,-0.195762711864544,0.062068965517118,-0.183898305084904,0.067241379310225,-0.189830508474738,-0.011864406779641,0.000000000000008,-0.000000000000027,-0.010344827586222,0.000000000000029,0.010344827586221,0.011864406779640,-0.000000000000007,2 -11293,11351,11353,11411,0.056896551724012,-0.177966101695064,0.062068965517118,-0.183898305084904,0.062068965517126,-0.172033898305254,0.067241379310232,-0.177966101695094,-0.011864406779652,0.000000000000008,-0.000000000000029,-0.010344827586221,0.000000000000032,0.010344827586220,0.011864406779649,-0.000000000000007,2 -11294,11352,11354,11412,0.056896551724020,-0.166101694915416,0.062068965517126,-0.172033898305254,0.062068965517134,-0.160169491525610,0.067241379310240,-0.166101694915448,-0.011864406779644,0.000000000000008,-0.000000000000032,-0.010344827586220,0.000000000000034,0.010344827586219,0.011864406779642,-0.000000000000007,2 -11295,11353,11355,11413,0.056896551724028,-0.154237288135773,0.062068965517134,-0.160169491525610,0.062068965517141,-0.148305084745970,0.067241379310247,-0.154237288135808,-0.011864406779641,0.000000000000008,-0.000000000000034,-0.010344827586219,0.000000000000035,0.010344827586218,0.011864406779640,-0.000000000000007,2 -11296,11354,11356,11414,0.056896551724037,-0.142372881356128,0.062068965517141,-0.148305084745970,0.062068965517149,-0.136440677966323,0.067241379310254,-0.142372881356165,-0.011864406779648,0.000000000000008,-0.000000000000035,-0.010344827586218,0.000000000000038,0.010344827586217,0.011864406779646,-0.000000000000007,2 -11297,11355,11357,11415,0.056896551724045,-0.130508474576478,0.062068965517149,-0.136440677966323,0.062068965517157,-0.124576271186671,0.067241379310261,-0.130508474576516,-0.011864406779653,0.000000000000008,-0.000000000000038,-0.010344827586217,0.000000000000039,0.010344827586216,0.011864406779651,-0.000000000000007,2 -11298,11356,11358,11416,0.056896551724053,-0.118644067796827,0.062068965517157,-0.124576271186671,0.062068965517165,-0.112711864407024,0.067241379310269,-0.118644067796868,-0.011864406779649,0.000000000000008,-0.000000000000039,-0.010344827586216,0.000000000000042,0.010344827586215,0.011864406779646,-0.000000000000007,2 -11299,11357,11359,11417,0.056896551724061,-0.106779661017180,0.062068965517165,-0.112711864407024,0.062068965517172,-0.100847457627380,0.067241379310276,-0.106779661017223,-0.011864406779645,0.000000000000008,-0.000000000000042,-0.010344827586215,0.000000000000044,0.010344827586214,0.011864406779643,-0.000000000000007,2 -11300,11358,11360,11418,0.056896551724069,-0.094915254237533,0.062068965517172,-0.100847457627380,0.062068965517180,-0.088983050847732,0.067241379310283,-0.094915254237579,-0.011864406779649,0.000000000000008,-0.000000000000044,-0.010344827586214,0.000000000000046,0.010344827586213,0.011864406779646,-0.000000000000007,2 -11301,11359,11361,11419,0.056896551724078,-0.083050847457885,0.062068965517180,-0.088983050847732,0.062068965517188,-0.077118644068085,0.067241379310290,-0.083050847457933,-0.011864406779649,0.000000000000008,-0.000000000000046,-0.010344827586213,0.000000000000049,0.010344827586212,0.011864406779646,-0.000000000000007,2 -11302,11360,11362,11420,0.056896551724086,-0.071186440678238,0.062068965517188,-0.077118644068085,0.062068965517195,-0.065254237288441,0.067241379310298,-0.071186440678288,-0.011864406779645,0.000000000000008,-0.000000000000049,-0.010344827586212,0.000000000000051,0.010344827586211,0.011864406779643,-0.000000000000007,2 -11303,11361,11363,11421,0.056896551724094,-0.059322033898591,0.062068965517195,-0.065254237288441,0.062068965517203,-0.053389830508794,0.067241379310305,-0.059322033898643,-0.011864406779649,0.000000000000008,-0.000000000000051,-0.010344827586211,0.000000000000053,0.010344827586210,0.011864406779646,-0.000000000000007,2 -11304,11362,11364,11422,0.056896551724102,-0.047457627118943,0.062068965517203,-0.053389830508794,0.062068965517211,-0.041525423729148,0.067241379310312,-0.047457627118998,-0.011864406779647,0.000000000000008,-0.000000000000053,-0.010344827586210,0.000000000000056,0.010344827586209,0.011864406779645,-0.000000000000007,2 -11305,11363,11365,11423,0.056896551724110,-0.035593220339296,0.062068965517211,-0.041525423729148,0.062068965517219,-0.029661016949502,0.067241379310319,-0.035593220339353,-0.011864406779647,0.000000000000008,-0.000000000000056,-0.010344827586209,0.000000000000058,0.010344827586208,0.011864406779644,-0.000000000000007,2 -11306,11364,11366,11424,0.056896551724119,-0.023728813559649,0.062068965517219,-0.029661016949502,0.062068965517226,-0.017796610169855,0.067241379310326,-0.023728813559708,-0.011864406779649,0.000000000000008,-0.000000000000058,-0.010344827586208,0.000000000000060,0.010344827586207,0.011864406779646,-0.000000000000007,2 -11307,11365,11367,11425,0.056896551724127,-0.011864406780002,0.062068965517226,-0.017796610169855,0.062068965517234,-0.005932203390211,0.067241379310334,-0.011864406780063,-0.011864406779645,0.000000000000008,-0.000000000000060,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779643,-0.000000000000007,2 -11308,11366,11368,11426,0.056896551724135,-0.000000000000343,0.062068965517234,-0.005932203390211,0.062068965517242,0.005932203389462,0.067241379310341,-0.000000000000405,-0.011864406779673,0.000000000000008,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586205,0.011864406779673,-0.000000000000007,2 -11309,11367,11369,11427,0.056896551724143,0.011864406779327,0.062068965517242,0.005932203389462,0.062068965517249,0.017796610169131,0.067241379310348,0.011864406779266,-0.011864406779668,0.000000000000008,-0.000000000000062,-0.010344827586205,0.000000000000060,0.010344827586204,0.011864406779670,-0.000000000000007,2 -11310,11368,11370,11428,0.056896551724151,0.023728813558999,0.062068965517249,0.017796610169131,0.062068965517257,0.029661016948808,0.067241379310355,0.023728813558940,-0.011864406779675,0.000000000000008,-0.000000000000060,-0.010344827586204,0.000000000000058,0.010344827586204,0.011864406779678,-0.000000000000007,2 -11311,11369,11371,11429,0.056896551724160,0.035593220338672,0.062068965517257,0.029661016948808,0.062068965517265,0.041525423728480,0.067241379310363,0.035593220338615,-0.011864406779671,0.000000000000008,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779673,-0.000000000000007,2 -11312,11370,11372,11430,0.056896551724168,0.047457627118344,0.062068965517265,0.041525423728480,0.062068965517273,0.053389830508153,0.067241379310370,0.047457627118289,-0.011864406779672,0.000000000000008,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779675,-0.000000000000007,2 -11313,11371,11373,11431,0.056896551724176,0.059322033898017,0.062068965517273,0.053389830508153,0.062068965517280,0.065254237287830,0.067241379310377,0.059322033897965,-0.011864406779675,0.000000000000008,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779678,-0.000000000000007,2 -11314,11372,11374,11432,0.056896551724184,0.071186440677689,0.062068965517280,0.065254237287830,0.062068965517288,0.077118644067499,0.067241379310384,0.071186440677639,-0.011864406779668,0.000000000000008,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779670,-0.000000000000007,2 -11315,11373,11375,11433,0.056896551724192,0.083050847457361,0.062068965517288,0.077118644067499,0.062068965517296,0.088983050847175,0.067241379310392,0.083050847457313,-0.011864406779675,0.000000000000008,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779678,-0.000000000000007,2 -11316,11374,11376,11434,0.056896551724201,0.094915254237036,0.062068965517296,0.088983050847175,0.062068965517303,0.100847457626852,0.067241379310399,0.094915254236991,-0.011864406779675,0.000000000000008,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779678,-0.000000000000007,2 -11317,11375,11377,11435,0.056896551724209,0.106779661016708,0.062068965517303,0.100847457626852,0.062068965517311,0.112711864406521,0.067241379310406,0.106779661016665,-0.011864406779668,0.000000000000008,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779670,-0.000000000000007,2 -11318,11376,11378,11436,0.056896551724217,0.118644067796379,0.062068965517311,0.112711864406521,0.062068965517319,0.124576271186197,0.067241379310413,0.118644067796339,-0.011864406779675,0.000000000000008,-0.000000000000042,-0.010344827586197,0.000000000000040,0.010344827586196,0.011864406779678,-0.000000000000007,2 -11319,11377,11379,11437,0.056896551724225,0.130508474576053,0.062068965517319,0.124576271186197,0.062068965517327,0.136440677965870,0.067241379310420,0.130508474576014,-0.011864406779671,0.000000000000008,-0.000000000000040,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779673,-0.000000000000007,2 -11320,11378,11380,11438,0.056896551724233,0.142372881355726,0.062068965517327,0.136440677965870,0.062068965517334,0.148305084745545,0.067241379310428,0.142372881355689,-0.011864406779674,0.000000000000008,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779677,-0.000000000000007,2 -11321,11379,11381,11439,0.056896551724242,0.154237288135392,0.062068965517334,0.148305084745545,0.062068965517342,0.160169491525205,0.067241379310435,0.154237288135358,-0.011864406779659,0.000000000000008,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779661,-0.000000000000007,2 -11322,11380,11382,11440,0.056896551724250,0.166101694915055,0.062068965517342,0.160169491525205,0.062068965517350,0.172033898304872,0.067241379310442,0.166101694915022,-0.011864406779666,0.000000000000008,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779668,-0.000000000000007,2 -11323,11381,11383,11441,0.056896551724258,0.177966101694729,0.062068965517350,0.172033898304872,0.062068965517358,0.183898305084555,0.067241379310449,0.177966101694698,-0.011864406779682,0.000000000000008,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779685,-0.000000000000007,2 -11324,11382,11384,11442,0.056896551724266,0.189830508474399,0.062068965517358,0.183898305084555,0.062068965517365,0.195762711864215,0.067241379310457,0.189830508474371,-0.011864406779659,0.000000000000008,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779661,-0.000000000000007,2 -11325,11383,11385,11443,0.056896551724274,0.201694915254073,0.062068965517365,0.195762711864215,0.062068965517373,0.207627118643905,0.067241379310464,0.201694915254047,-0.011864406779689,0.000000000000008,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779691,-0.000000000000007,2 -11326,11384,11386,11444,0.056896551724283,0.213559322033748,0.062068965517373,0.207627118643905,0.062068965517381,0.219491525423567,0.067241379310471,0.213559322033724,-0.011864406779661,0.000000000000008,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779663,-0.000000000000007,2 -11327,11385,11387,11445,0.056896551724291,0.225423728813419,0.062068965517381,0.219491525423567,0.062068965517388,0.231355932203249,0.067241379310478,0.225423728813397,-0.011864406779680,0.000000000000008,-0.000000000000023,-0.010344827586188,0.000000000000020,0.010344827586187,0.011864406779683,-0.000000000000007,2 -11328,11386,11388,11446,0.056896551724299,0.237288135593095,0.062068965517388,0.231355932203249,0.062068965517396,0.243220338982922,0.067241379310485,0.237288135593075,-0.011864406779672,0.000000000000008,-0.000000000000020,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779674,-0.000000000000007,2 -11329,11387,11389,11447,0.056896551724307,0.249152542372765,0.062068965517396,0.243220338982922,0.062068965517404,0.255084745762590,0.067241379310493,0.249152542372747,-0.011864406779667,0.000000000000008,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779670,-0.000000000000007,2 -11330,11388,11390,11448,0.056896551724315,0.261016949152437,0.062068965517404,0.255084745762590,0.062068965517411,0.266949152542269,0.067241379310500,0.261016949152422,-0.011864406779677,0.000000000000008,-0.000000000000016,-0.010344827586185,0.000000000000013,0.010344827586184,0.011864406779680,-0.000000000000007,2 -11331,11389,11391,11449,0.056896551724324,0.272881355932107,0.062068965517411,0.266949152542269,0.062068965517419,0.278813559321933,0.067241379310507,0.272881355932094,-0.011864406779663,0.000000000000008,-0.000000000000013,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779664,-0.000000000000007,2 -11332,11390,11392,11450,0.056896551724332,0.284745762711784,0.062068965517419,0.278813559321933,0.062068965517427,0.290677966101624,0.067241379310514,0.284745762711773,-0.011864406779689,0.000000000000008,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779693,-0.000000000000007,2 -11333,11391,11393,11451,0.056896551724340,0.296610169491461,0.062068965517427,0.290677966101624,0.062068965517435,0.302542372881289,0.067241379310522,0.296610169491452,-0.011864406779665,0.000000000000008,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779666,-0.000000000000007,2 -11334,11392,11394,11452,0.056896551724348,0.308474576271134,0.062068965517435,0.302542372881289,0.062068965517442,0.314406779660972,0.067241379310529,0.308474576271127,-0.011864406779681,0.000000000000008,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779684,-0.000000000000007,2 -11335,11393,11395,11453,0.056896551724356,0.320338983050811,0.062068965517442,0.314406779660972,0.062068965517450,0.326271186440645,0.067241379310536,0.320338983050806,-0.011864406779672,0.000000000000008,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779674,-0.000000000000007,2 -11336,11394,11396,11454,0.056896551724365,0.332203389830484,0.062068965517450,0.326271186440645,0.062068965517458,0.338135593220319,0.067241379310543,0.332203389830480,-0.011864406779673,0.000000000000008,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779675,-0.000000000000007,2 -7806,11337,11395,11455,0.062068965517465,0.350000000000000,0.056896551724373,0.344067796610160,0.062068965517458,0.338135593220319,0.067241379310551,0.344067796610159,-0.000000000000000,0.010344827586177,-0.011864406779680,0.000000000000008,-0.000000000000002,-0.010344827586178,0.011864406779682,-0.000000000000007,2 -8947,11338,11398,11456,0.072413793103246,-0.350000000000000,0.067241379310131,-0.344067796610173,0.072413793103253,-0.338135593220346,0.077586206896367,-0.344067796610174,-0.000000000000000,-0.010344827586237,-0.011864406779655,0.000000000000007,0.000000000000002,0.010344827586236,0.011864406779652,-0.000000000000006,2 -11339,11397,11399,11457,0.067241379310138,-0.332203389830522,0.072413793103253,-0.338135593220346,0.072413793103259,-0.326271186440700,0.077586206896374,-0.332203389830525,-0.011864406779647,0.000000000000007,-0.000000000000002,-0.010344827586236,0.000000000000004,0.010344827586235,0.011864406779645,-0.000000000000006,2 -11340,11398,11400,11458,0.067241379310146,-0.320338983050870,0.072413793103259,-0.326271186440700,0.072413793103266,-0.314406779661045,0.077586206896380,-0.320338983050875,-0.011864406779656,0.000000000000007,-0.000000000000004,-0.010344827586235,0.000000000000006,0.010344827586234,0.011864406779654,-0.000000000000006,2 -11341,11399,11401,11459,0.067241379310153,-0.308474576271218,0.072413793103266,-0.314406779661045,0.072413793103273,-0.302542372881398,0.077586206896386,-0.308474576271225,-0.011864406779649,0.000000000000007,-0.000000000000006,-0.010344827586234,0.000000000000008,0.010344827586233,0.011864406779646,-0.000000000000006,2 -11342,11400,11402,11460,0.067241379310160,-0.296610169491567,0.072413793103273,-0.302542372881398,0.072413793103280,-0.290677966101744,0.077586206896392,-0.296610169491576,-0.011864406779654,0.000000000000007,-0.000000000000008,-0.010344827586233,0.000000000000009,0.010344827586232,0.011864406779653,-0.000000000000006,2 -11343,11401,11403,11461,0.067241379310167,-0.284745762711913,0.072413793103280,-0.290677966101744,0.072413793103286,-0.278813559322093,0.077586206896398,-0.284745762711924,-0.011864406779653,0.000000000000007,-0.000000000000009,-0.010344827586232,0.000000000000012,0.010344827586231,0.011864406779650,-0.000000000000006,2 -11344,11402,11404,11462,0.067241379310175,-0.272881355932263,0.072413793103286,-0.278813559322093,0.072413793103293,-0.266949152542445,0.077586206896405,-0.272881355932275,-0.011864406779649,0.000000000000007,-0.000000000000012,-0.010344827586231,0.000000000000013,0.010344827586230,0.011864406779648,-0.000000000000006,2 -11345,11403,11405,11463,0.067241379310182,-0.261016949152616,0.072413793103293,-0.266949152542445,0.072413793103300,-0.255084745762803,0.077586206896411,-0.261016949152631,-0.011864406779643,0.000000000000007,-0.000000000000013,-0.010344827586230,0.000000000000016,0.010344827586229,0.011864406779641,-0.000000000000006,2 -11346,11404,11406,11464,0.067241379310189,-0.249152542372974,0.072413793103300,-0.255084745762803,0.072413793103306,-0.243220338983163,0.077586206896417,-0.249152542372992,-0.011864406779641,0.000000000000007,-0.000000000000016,-0.010344827586229,0.000000000000019,0.010344827586228,0.011864406779638,-0.000000000000006,2 -11347,11405,11407,11465,0.067241379310196,-0.237288135593329,0.072413793103306,-0.243220338983163,0.072413793103313,-0.231355932203515,0.077586206896423,-0.237288135593349,-0.011864406779650,0.000000000000007,-0.000000000000019,-0.010344827586228,0.000000000000020,0.010344827586227,0.011864406779648,-0.000000000000006,2 -11348,11406,11408,11466,0.067241379310204,-0.225423728813679,0.072413793103313,-0.231355932203515,0.072413793103320,-0.219491525423865,0.077586206896430,-0.225423728813701,-0.011864406779651,0.000000000000007,-0.000000000000020,-0.010344827586227,0.000000000000023,0.010344827586226,0.011864406779648,-0.000000000000006,2 -11349,11407,11409,11467,0.067241379310211,-0.213559322034032,0.072413793103320,-0.219491525423865,0.072413793103327,-0.207627118644222,0.077586206896436,-0.213559322034055,-0.011864406779644,0.000000000000007,-0.000000000000023,-0.010344827586226,0.000000000000024,0.010344827586225,0.011864406779643,-0.000000000000006,2 -11350,11408,11410,11468,0.067241379310218,-0.201694915254384,0.072413793103327,-0.207627118644222,0.072413793103333,-0.195762711864572,0.077586206896442,-0.201694915254410,-0.011864406779651,0.000000000000007,-0.000000000000024,-0.010344827586225,0.000000000000027,0.010344827586224,0.011864406779648,-0.000000000000006,2 -11351,11409,11411,11469,0.067241379310225,-0.189830508474738,0.072413793103333,-0.195762711864572,0.072413793103340,-0.183898305084933,0.077586206896448,-0.189830508474767,-0.011864406779640,0.000000000000007,-0.000000000000027,-0.010344827586224,0.000000000000029,0.010344827586223,0.011864406779638,-0.000000000000006,2 -11352,11410,11412,11470,0.067241379310232,-0.177966101695094,0.072413793103340,-0.183898305084933,0.072413793103347,-0.172033898305286,0.077586206896454,-0.177966101695125,-0.011864406779649,0.000000000000007,-0.000000000000029,-0.010344827586223,0.000000000000032,0.010344827586222,0.011864406779646,-0.000000000000006,2 -11353,11411,11413,11471,0.067241379310240,-0.166101694915448,0.072413793103347,-0.172033898305286,0.072413793103354,-0.160169491525644,0.077586206896461,-0.166101694915481,-0.011864406779642,0.000000000000007,-0.000000000000032,-0.010344827586222,0.000000000000034,0.010344827586221,0.011864406779640,-0.000000000000006,2 -11354,11412,11414,11472,0.067241379310247,-0.154237288135808,0.072413793103354,-0.160169491525644,0.072413793103360,-0.148305084746005,0.077586206896467,-0.154237288135842,-0.011864406779640,0.000000000000007,-0.000000000000034,-0.010344827586221,0.000000000000035,0.010344827586220,0.011864406779638,-0.000000000000006,2 -11355,11413,11415,11473,0.067241379310254,-0.142372881356165,0.072413793103360,-0.148305084746005,0.072413793103367,-0.136440677966361,0.077586206896473,-0.142372881356201,-0.011864406779646,0.000000000000007,-0.000000000000035,-0.010344827586220,0.000000000000038,0.010344827586219,0.011864406779644,-0.000000000000006,2 -11356,11414,11416,11474,0.067241379310261,-0.130508474576516,0.072413793103367,-0.136440677966361,0.072413793103374,-0.124576271186711,0.077586206896479,-0.130508474576555,-0.011864406779651,0.000000000000007,-0.000000000000038,-0.010344827586219,0.000000000000039,0.010344827586218,0.011864406779649,-0.000000000000006,2 -11357,11415,11417,11475,0.067241379310269,-0.118644067796868,0.072413793103374,-0.124576271186711,0.072413793103380,-0.112711864407066,0.077586206896486,-0.118644067796909,-0.011864406779646,0.000000000000007,-0.000000000000039,-0.010344827586218,0.000000000000042,0.010344827586217,0.011864406779644,-0.000000000000006,2 -11358,11416,11418,11476,0.067241379310276,-0.106779661017223,0.072413793103380,-0.112711864407066,0.072413793103387,-0.100847457627424,0.077586206896492,-0.106779661017266,-0.011864406779643,0.000000000000007,-0.000000000000042,-0.010344827586217,0.000000000000044,0.010344827586216,0.011864406779641,-0.000000000000006,2 -11359,11417,11419,11477,0.067241379310283,-0.094915254237579,0.072413793103387,-0.100847457627424,0.072413793103394,-0.088983050847779,0.077586206896498,-0.094915254237624,-0.011864406779646,0.000000000000007,-0.000000000000044,-0.010344827586216,0.000000000000046,0.010344827586215,0.011864406779644,-0.000000000000006,2 -11360,11418,11420,11478,0.067241379310290,-0.083050847457933,0.072413793103394,-0.088983050847779,0.072413793103401,-0.077118644068134,0.077586206896504,-0.083050847457980,-0.011864406779646,0.000000000000007,-0.000000000000046,-0.010344827586215,0.000000000000049,0.010344827586214,0.011864406779644,-0.000000000000006,2 -11361,11419,11421,11479,0.067241379310298,-0.071186440678288,0.072413793103401,-0.077118644068134,0.072413793103407,-0.065254237288492,0.077586206896511,-0.071186440678338,-0.011864406779643,0.000000000000007,-0.000000000000049,-0.010344827586214,0.000000000000051,0.010344827586212,0.011864406779641,-0.000000000000006,2 -11362,11420,11422,11480,0.067241379310305,-0.059322033898643,0.072413793103407,-0.065254237288492,0.072413793103414,-0.053389830508847,0.077586206896517,-0.059322033898695,-0.011864406779646,0.000000000000007,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779644,-0.000000000000006,2 -11363,11421,11423,11481,0.067241379310312,-0.047457627118998,0.072413793103414,-0.053389830508847,0.072413793103421,-0.041525423729203,0.077586206896523,-0.047457627119052,-0.011864406779645,0.000000000000007,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779643,-0.000000000000006,2 -11364,11422,11424,11482,0.067241379310319,-0.035593220339353,0.072413793103421,-0.041525423729203,0.072413793103428,-0.029661016949560,0.077586206896529,-0.035593220339410,-0.011864406779644,0.000000000000007,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779642,-0.000000000000006,2 -11365,11423,11425,11483,0.067241379310326,-0.023728813559708,0.072413793103428,-0.029661016949560,0.072413793103434,-0.017796610169915,0.077586206896535,-0.023728813559767,-0.011864406779646,0.000000000000007,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586208,0.011864406779644,-0.000000000000006,2 -11366,11424,11426,11484,0.067241379310334,-0.011864406780063,0.072413793103434,-0.017796610169915,0.072413793103441,-0.005932203390273,0.077586206896542,-0.011864406780125,-0.011864406779643,0.000000000000007,-0.000000000000060,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779641,-0.000000000000006,2 -11367,11425,11427,11485,0.067241379310341,-0.000000000000405,0.072413793103441,-0.005932203390273,0.072413793103448,0.005932203389400,0.077586206896548,-0.000000000000468,-0.011864406779673,0.000000000000007,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000006,2 -11368,11426,11428,11486,0.067241379310348,0.011864406779266,0.072413793103448,0.005932203389400,0.072413793103454,0.017796610169071,0.077586206896554,0.011864406779205,-0.011864406779670,0.000000000000007,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586206,0.011864406779672,-0.000000000000006,2 -11369,11427,11429,11487,0.067241379310355,0.023728813558940,0.072413793103454,0.017796610169071,0.072413793103461,0.029661016948750,0.077586206896560,0.023728813558881,-0.011864406779678,0.000000000000007,-0.000000000000060,-0.010344827586206,0.000000000000058,0.010344827586204,0.011864406779680,-0.000000000000006,2 -11370,11428,11430,11488,0.067241379310363,0.035593220338615,0.072413793103461,0.029661016948750,0.072413793103468,0.041525423728424,0.077586206896567,0.035593220338559,-0.011864406779673,0.000000000000007,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779675,-0.000000000000006,2 -11371,11429,11431,11489,0.067241379310370,0.047457627118289,0.072413793103468,0.041525423728424,0.072413793103475,0.053389830508100,0.077586206896573,0.047457627118235,-0.011864406779675,0.000000000000007,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779677,-0.000000000000006,2 -11372,11430,11432,11490,0.067241379310377,0.059322033897965,0.072413793103475,0.053389830508100,0.072413793103481,0.065254237287779,0.077586206896579,0.059322033897913,-0.011864406779678,0.000000000000007,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779680,-0.000000000000006,2 -11373,11431,11433,11491,0.067241379310384,0.071186440677639,0.072413793103481,0.065254237287779,0.072413793103488,0.077118644067450,0.077586206896585,0.071186440677589,-0.011864406779670,0.000000000000007,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779672,-0.000000000000006,2 -11374,11432,11434,11492,0.067241379310392,0.083050847457313,0.072413793103488,0.077118644067450,0.072413793103495,0.088983050847129,0.077586206896591,0.083050847457265,-0.011864406779678,0.000000000000007,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779680,-0.000000000000006,2 -11375,11433,11435,11493,0.067241379310399,0.094915254236991,0.072413793103495,0.088983050847129,0.072413793103502,0.100847457626808,0.077586206896598,0.094915254236946,-0.011864406779678,0.000000000000007,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779680,-0.000000000000006,2 -11376,11434,11436,11494,0.067241379310406,0.106779661016665,0.072413793103502,0.100847457626808,0.072413793103508,0.112711864406479,0.077586206896604,0.106779661016622,-0.011864406779670,0.000000000000007,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779672,-0.000000000000006,2 -11377,11435,11437,11495,0.067241379310413,0.118644067796339,0.072413793103508,0.112711864406479,0.072413793103515,0.124576271186158,0.077586206896610,0.118644067796298,-0.011864406779678,0.000000000000007,-0.000000000000042,-0.010344827586197,0.000000000000039,0.010344827586196,0.011864406779680,-0.000000000000006,2 -11378,11436,11438,11496,0.067241379310420,0.130508474576014,0.072413793103515,0.124576271186158,0.072413793103522,0.136440677965832,0.077586206896616,0.130508474575975,-0.011864406779673,0.000000000000007,-0.000000000000039,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779675,-0.000000000000006,2 -11379,11437,11439,11497,0.067241379310428,0.142372881355689,0.072413793103522,0.136440677965832,0.072413793103528,0.148305084745510,0.077586206896623,0.142372881355652,-0.011864406779677,0.000000000000007,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779679,-0.000000000000006,2 -11380,11438,11440,11498,0.067241379310435,0.154237288135358,0.072413793103528,0.148305084745510,0.072413793103535,0.160169491525171,0.077586206896629,0.154237288135323,-0.011864406779661,0.000000000000007,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779662,-0.000000000000006,2 -11381,11439,11441,11499,0.067241379310442,0.166101694915022,0.072413793103535,0.160169491525171,0.072413793103542,0.172033898304840,0.077586206896635,0.166101694914989,-0.011864406779668,0.000000000000007,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779670,-0.000000000000006,2 -11382,11440,11442,11500,0.067241379310449,0.177966101694698,0.072413793103542,0.172033898304840,0.072413793103549,0.183898305084526,0.077586206896641,0.177966101694668,-0.011864406779685,0.000000000000007,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779688,-0.000000000000006,2 -11383,11441,11443,11501,0.067241379310457,0.189830508474371,0.072413793103549,0.183898305084526,0.072413793103555,0.195762711864188,0.077586206896647,0.189830508474343,-0.011864406779661,0.000000000000007,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779662,-0.000000000000006,2 -11384,11442,11444,11502,0.067241379310464,0.201694915254047,0.072413793103555,0.195762711864188,0.072413793103562,0.207627118643881,0.077586206896654,0.201694915254021,-0.011864406779691,0.000000000000007,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779695,-0.000000000000006,2 -11385,11443,11445,11503,0.067241379310471,0.213559322033724,0.072413793103562,0.207627118643881,0.072413793103569,0.219491525423544,0.077586206896660,0.213559322033701,-0.011864406779663,0.000000000000007,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779664,-0.000000000000006,2 -11386,11444,11446,11504,0.067241379310478,0.225423728813397,0.072413793103569,0.219491525423544,0.072413793103576,0.231355932203228,0.077586206896666,0.225423728813375,-0.011864406779683,0.000000000000007,-0.000000000000023,-0.010344827586188,0.000000000000021,0.010344827586187,0.011864406779685,-0.000000000000006,2 -11387,11445,11447,11505,0.067241379310485,0.237288135593075,0.072413793103576,0.231355932203228,0.072413793103582,0.243220338982903,0.077586206896672,0.237288135593056,-0.011864406779674,0.000000000000007,-0.000000000000021,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779676,-0.000000000000006,2 -11388,11446,11448,11506,0.067241379310493,0.249152542372747,0.072413793103582,0.243220338982903,0.072413793103589,0.255084745762574,0.077586206896679,0.249152542372730,-0.011864406779670,0.000000000000007,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779672,-0.000000000000006,2 -11389,11447,11449,11507,0.067241379310500,0.261016949152422,0.072413793103589,0.255084745762574,0.072413793103596,0.266949152542255,0.077586206896685,0.261016949152407,-0.011864406779680,0.000000000000007,-0.000000000000016,-0.010344827586185,0.000000000000014,0.010344827586184,0.011864406779683,-0.000000000000006,2 -11390,11448,11450,11508,0.067241379310507,0.272881355932094,0.072413793103596,0.266949152542255,0.072413793103602,0.278813559321920,0.077586206896691,0.272881355932081,-0.011864406779664,0.000000000000007,-0.000000000000014,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779665,-0.000000000000006,2 -11391,11449,11451,11509,0.067241379310514,0.284745762711773,0.072413793103602,0.278813559321920,0.072413793103609,0.290677966101614,0.077586206896697,0.284745762711762,-0.011864406779693,0.000000000000007,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779696,-0.000000000000006,2 -11392,11450,11452,11510,0.067241379310522,0.296610169491452,0.072413793103609,0.290677966101614,0.072413793103616,0.302542372881281,0.077586206896704,0.296610169491443,-0.011864406779666,0.000000000000007,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779667,-0.000000000000006,2 -11393,11451,11453,11511,0.067241379310529,0.308474576271127,0.072413793103616,0.302542372881281,0.072413793103623,0.314406779660967,0.077586206896710,0.308474576271120,-0.011864406779684,0.000000000000007,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779687,-0.000000000000006,2 -11394,11452,11454,11512,0.067241379310536,0.320338983050806,0.072413793103623,0.314406779660967,0.072413793103629,0.326271186440641,0.077586206896716,0.320338983050801,-0.011864406779674,0.000000000000007,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779675,-0.000000000000006,2 -11395,11453,11455,11513,0.067241379310543,0.332203389830480,0.072413793103629,0.326271186440641,0.072413793103636,0.338135593220317,0.077586206896722,0.332203389830477,-0.011864406779675,0.000000000000007,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779677,-0.000000000000006,2 -7792,11396,11454,11514,0.072413793103643,0.350000000000000,0.067241379310551,0.344067796610159,0.072413793103636,0.338135593220317,0.077586206896728,0.344067796610158,-0.000000000000000,0.010344827586177,-0.011864406779682,0.000000000000007,-0.000000000000002,-0.010344827586178,0.011864406779684,-0.000000000000006,2 -8948,11397,11457,11515,0.082758620689482,-0.350000000000000,0.077586206896367,-0.344067796610174,0.082758620689488,-0.338135593220349,0.087931034482602,-0.344067796610175,-0.000000000000000,-0.010344827586236,-0.011864406779652,0.000000000000006,0.000000000000002,0.010344827586235,0.011864406779650,-0.000000000000005,2 -11398,11456,11458,11516,0.077586206896374,-0.332203389830525,0.082758620689488,-0.338135593220349,0.082758620689493,-0.326271186440705,0.087931034482608,-0.332203389830528,-0.011864406779645,0.000000000000006,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586234,0.011864406779643,-0.000000000000005,2 -11399,11457,11459,11517,0.077586206896380,-0.320338983050875,0.082758620689493,-0.326271186440705,0.082758620689499,-0.314406779661051,0.087931034482613,-0.320338983050880,-0.011864406779654,0.000000000000006,-0.000000000000004,-0.010344827586234,0.000000000000006,0.010344827586233,0.011864406779653,-0.000000000000005,2 -11400,11458,11460,11518,0.077586206896386,-0.308474576271225,0.082758620689499,-0.314406779661051,0.082758620689505,-0.302542372881407,0.087931034482618,-0.308474576271232,-0.011864406779646,0.000000000000006,-0.000000000000006,-0.010344827586233,0.000000000000008,0.010344827586232,0.011864406779643,-0.000000000000005,2 -11401,11459,11461,11519,0.077586206896392,-0.296610169491576,0.082758620689505,-0.302542372881407,0.082758620689511,-0.290677966101754,0.087931034482623,-0.296610169491585,-0.011864406779653,0.000000000000006,-0.000000000000008,-0.010344827586232,0.000000000000009,0.010344827586231,0.011864406779652,-0.000000000000005,2 -11402,11460,11462,11520,0.077586206896398,-0.284745762711924,0.082758620689511,-0.290677966101754,0.082758620689516,-0.278813559322105,0.087931034482629,-0.284745762711935,-0.011864406779650,0.000000000000006,-0.000000000000009,-0.010344827586231,0.000000000000012,0.010344827586230,0.011864406779647,-0.000000000000005,2 -11403,11461,11463,11521,0.077586206896405,-0.272881355932275,0.082758620689516,-0.278813559322105,0.082758620689522,-0.266949152542458,0.087931034482634,-0.272881355932288,-0.011864406779648,0.000000000000006,-0.000000000000012,-0.010344827586230,0.000000000000013,0.010344827586229,0.011864406779647,-0.000000000000005,2 -11404,11462,11464,11522,0.077586206896411,-0.261016949152631,0.082758620689522,-0.266949152542458,0.082758620689528,-0.255084745762819,0.087931034482639,-0.261016949152646,-0.011864406779641,0.000000000000006,-0.000000000000013,-0.010344827586229,0.000000000000016,0.010344827586228,0.011864406779638,-0.000000000000005,2 -11405,11463,11465,11523,0.077586206896417,-0.249152542372992,0.082758620689528,-0.255084745762819,0.082758620689534,-0.243220338983182,0.087931034482644,-0.249152542373009,-0.011864406779638,0.000000000000006,-0.000000000000016,-0.010344827586228,0.000000000000019,0.010344827586227,0.011864406779636,-0.000000000000005,2 -11406,11464,11466,11524,0.077586206896423,-0.237288135593349,0.082758620689534,-0.243220338983182,0.082758620689539,-0.231355932203535,0.087931034482650,-0.237288135593368,-0.011864406779648,0.000000000000006,-0.000000000000019,-0.010344827586227,0.000000000000021,0.010344827586226,0.011864406779646,-0.000000000000005,2 -11407,11465,11467,11525,0.077586206896430,-0.225423728813701,0.082758620689539,-0.231355932203535,0.082758620689545,-0.219491525423888,0.087931034482655,-0.225423728813722,-0.011864406779648,0.000000000000006,-0.000000000000021,-0.010344827586226,0.000000000000023,0.010344827586225,0.011864406779646,-0.000000000000005,2 -11408,11466,11468,11526,0.077586206896436,-0.213559322034055,0.082758620689545,-0.219491525423888,0.082758620689551,-0.207627118644246,0.087931034482660,-0.213559322034079,-0.011864406779643,0.000000000000006,-0.000000000000023,-0.010344827586225,0.000000000000024,0.010344827586224,0.011864406779641,-0.000000000000005,2 -11409,11467,11469,11527,0.077586206896442,-0.201694915254410,0.082758620689551,-0.207627118644246,0.082758620689557,-0.195762711864599,0.087931034482665,-0.201694915254436,-0.011864406779648,0.000000000000006,-0.000000000000024,-0.010344827586224,0.000000000000027,0.010344827586223,0.011864406779645,-0.000000000000005,2 -11410,11468,11470,11528,0.077586206896448,-0.189830508474767,0.082758620689557,-0.195762711864599,0.082758620689562,-0.183898305084962,0.087931034482670,-0.189830508474795,-0.011864406779638,0.000000000000006,-0.000000000000027,-0.010344827586223,0.000000000000029,0.010344827586222,0.011864406779636,-0.000000000000005,2 -11411,11469,11471,11529,0.077586206896454,-0.177966101695125,0.082758620689562,-0.183898305084962,0.082758620689568,-0.172033898305317,0.087931034482676,-0.177966101695155,-0.011864406779646,0.000000000000006,-0.000000000000029,-0.010344827586222,0.000000000000032,0.010344827586221,0.011864406779643,-0.000000000000005,2 -11412,11470,11472,11530,0.077586206896461,-0.166101694915481,0.082758620689568,-0.172033898305317,0.082758620689574,-0.160169491525678,0.087931034482681,-0.166101694915514,-0.011864406779640,0.000000000000006,-0.000000000000032,-0.010344827586221,0.000000000000034,0.010344827586220,0.011864406779638,-0.000000000000005,2 -11413,11471,11473,11531,0.077586206896467,-0.154237288135842,0.082758620689574,-0.160169491525678,0.082758620689579,-0.148305084746041,0.087931034482686,-0.154237288135877,-0.011864406779638,0.000000000000006,-0.000000000000034,-0.010344827586220,0.000000000000035,0.010344827586219,0.011864406779636,-0.000000000000005,2 -11414,11472,11474,11532,0.077586206896473,-0.142372881356201,0.082758620689579,-0.148305084746041,0.082758620689585,-0.136440677966399,0.087931034482691,-0.142372881356238,-0.011864406779644,0.000000000000006,-0.000000000000035,-0.010344827586219,0.000000000000038,0.010344827586218,0.011864406779641,-0.000000000000005,2 -11415,11473,11475,11533,0.077586206896479,-0.130508474576555,0.082758620689585,-0.136440677966399,0.082758620689591,-0.124576271186750,0.087931034482697,-0.130508474576594,-0.011864406779649,0.000000000000006,-0.000000000000038,-0.010344827586218,0.000000000000040,0.010344827586217,0.011864406779648,-0.000000000000005,2 -11416,11474,11476,11534,0.077586206896486,-0.118644067796909,0.082758620689591,-0.124576271186750,0.082758620689597,-0.112711864407108,0.087931034482702,-0.118644067796949,-0.011864406779644,0.000000000000006,-0.000000000000040,-0.010344827586217,0.000000000000042,0.010344827586216,0.011864406779641,-0.000000000000005,2 -11417,11475,11477,11535,0.077586206896492,-0.106779661017266,0.082758620689597,-0.112711864407108,0.082758620689602,-0.100847457627468,0.087931034482707,-0.106779661017309,-0.011864406779641,0.000000000000006,-0.000000000000042,-0.010344827586216,0.000000000000044,0.010344827586215,0.011864406779639,-0.000000000000005,2 -11418,11476,11478,11536,0.077586206896498,-0.094915254237624,0.082758620689602,-0.100847457627468,0.082758620689608,-0.088983050847825,0.087931034482712,-0.094915254237669,-0.011864406779644,0.000000000000006,-0.000000000000044,-0.010344827586215,0.000000000000046,0.010344827586214,0.011864406779641,-0.000000000000005,2 -11419,11477,11479,11537,0.077586206896504,-0.083050847457980,0.082758620689608,-0.088983050847825,0.082758620689614,-0.077118644068183,0.087931034482718,-0.083050847458028,-0.011864406779644,0.000000000000006,-0.000000000000046,-0.010344827586214,0.000000000000049,0.010344827586213,0.011864406779641,-0.000000000000005,2 -11420,11478,11480,11538,0.077586206896511,-0.071186440678338,0.082758620689614,-0.077118644068183,0.082758620689620,-0.065254237288543,0.087931034482723,-0.071186440678388,-0.011864406779641,0.000000000000006,-0.000000000000049,-0.010344827586213,0.000000000000051,0.010344827586212,0.011864406779639,-0.000000000000005,2 -11421,11479,11481,11539,0.077586206896517,-0.059322033898695,0.082758620689620,-0.065254237288543,0.082758620689625,-0.053389830508900,0.087931034482728,-0.059322033898748,-0.011864406779644,0.000000000000006,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779641,-0.000000000000005,2 -11422,11480,11482,11540,0.077586206896523,-0.047457627119052,0.082758620689625,-0.053389830508900,0.082758620689631,-0.041525423729259,0.087931034482733,-0.047457627119107,-0.011864406779643,0.000000000000006,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779640,-0.000000000000005,2 -11423,11481,11483,11541,0.077586206896529,-0.035593220339410,0.082758620689631,-0.041525423729259,0.082758620689637,-0.029661016949618,0.087931034482739,-0.035593220339467,-0.011864406779642,0.000000000000006,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779640,-0.000000000000005,2 -11424,11482,11484,11542,0.077586206896535,-0.023728813559767,0.082758620689637,-0.029661016949618,0.082758620689642,-0.017796610169975,0.087931034482744,-0.023728813559826,-0.011864406779644,0.000000000000006,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586208,0.011864406779641,-0.000000000000005,2 -11425,11483,11485,11543,0.077586206896542,-0.011864406780125,0.082758620689642,-0.017796610169975,0.082758620689648,-0.005932203390335,0.087931034482749,-0.011864406780186,-0.011864406779641,0.000000000000006,-0.000000000000060,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779639,-0.000000000000005,2 -11426,11484,11486,11544,0.077586206896548,-0.000000000000468,0.082758620689648,-0.005932203390335,0.082758620689654,0.005932203389338,0.087931034482754,-0.000000000000530,-0.011864406779673,0.000000000000006,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000005,2 -11427,11485,11487,11545,0.077586206896554,0.011864406779205,0.082758620689654,0.005932203389338,0.082758620689660,0.017796610169010,0.087931034482760,0.011864406779143,-0.011864406779672,0.000000000000006,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586205,0.011864406779674,-0.000000000000005,2 -11428,11486,11488,11546,0.077586206896560,0.023728813558881,0.082758620689660,0.017796610169010,0.082758620689665,0.029661016948692,0.087931034482765,0.023728813558822,-0.011864406779680,0.000000000000006,-0.000000000000060,-0.010344827586205,0.000000000000058,0.010344827586204,0.011864406779683,-0.000000000000005,2 -11429,11487,11489,11547,0.077586206896567,0.035593220338559,0.082758620689665,0.029661016948692,0.082758620689671,0.041525423728368,0.087931034482770,0.035593220338502,-0.011864406779675,0.000000000000006,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779678,-0.000000000000005,2 -11430,11488,11490,11548,0.077586206896573,0.047457627118235,0.082758620689671,0.041525423728368,0.082758620689677,0.053389830508046,0.087931034482775,0.047457627118180,-0.011864406779677,0.000000000000006,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779679,-0.000000000000005,2 -11431,11489,11491,11549,0.077586206896579,0.059322033897913,0.082758620689677,0.053389830508046,0.082758620689683,0.065254237287728,0.087931034482780,0.059322033897861,-0.011864406779680,0.000000000000006,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779683,-0.000000000000005,2 -11432,11490,11492,11550,0.077586206896585,0.071186440677589,0.082758620689683,0.065254237287728,0.082758620689688,0.077118644067401,0.087931034482786,0.071186440677539,-0.011864406779672,0.000000000000006,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779674,-0.000000000000005,2 -11433,11491,11493,11551,0.077586206896591,0.083050847457265,0.082758620689688,0.077118644067401,0.082758620689694,0.088983050847082,0.087931034482791,0.083050847457218,-0.011864406779680,0.000000000000006,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779683,-0.000000000000005,2 -11434,11492,11494,11552,0.077586206896598,0.094915254236946,0.082758620689694,0.088983050847082,0.082758620689700,0.100847457626764,0.087931034482796,0.094915254236900,-0.011864406779680,0.000000000000006,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779683,-0.000000000000005,2 -11435,11493,11495,11553,0.077586206896604,0.106779661016622,0.082758620689700,0.100847457626764,0.082758620689706,0.112711864406437,0.087931034482801,0.106779661016579,-0.011864406779672,0.000000000000006,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779674,-0.000000000000005,2 -11436,11494,11496,11554,0.077586206896610,0.118644067796298,0.082758620689706,0.112711864406437,0.082758620689711,0.124576271186118,0.087931034482807,0.118644067796257,-0.011864406779680,0.000000000000006,-0.000000000000042,-0.010344827586197,0.000000000000040,0.010344827586196,0.011864406779683,-0.000000000000005,2 -11437,11495,11497,11555,0.077586206896616,0.130508474575975,0.082758620689711,0.124576271186118,0.082758620689717,0.136440677965794,0.087931034482812,0.130508474575937,-0.011864406779675,0.000000000000006,-0.000000000000040,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779677,-0.000000000000005,2 -11438,11496,11498,11556,0.077586206896623,0.142372881355652,0.082758620689717,0.136440677965794,0.082758620689723,0.148305084745474,0.087931034482817,0.142372881355616,-0.011864406779679,0.000000000000006,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779681,-0.000000000000005,2 -11439,11497,11499,11557,0.077586206896629,0.154237288135323,0.082758620689723,0.148305084745474,0.082758620689728,0.160169491525137,0.087931034482822,0.154237288135288,-0.011864406779662,0.000000000000006,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779664,-0.000000000000005,2 -11440,11498,11500,11558,0.077586206896635,0.166101694914989,0.082758620689728,0.160169491525137,0.082758620689734,0.172033898304808,0.087931034482828,0.166101694914956,-0.011864406779670,0.000000000000006,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779672,-0.000000000000005,2 -11441,11499,11501,11559,0.077586206896641,0.177966101694668,0.082758620689734,0.172033898304808,0.082758620689740,0.183898305084497,0.087931034482833,0.177966101694637,-0.011864406779688,0.000000000000006,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779690,-0.000000000000005,2 -11442,11500,11502,11560,0.077586206896647,0.189830508474343,0.082758620689740,0.183898305084497,0.082758620689746,0.195762711864160,0.087931034482838,0.189830508474314,-0.011864406779662,0.000000000000006,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779664,-0.000000000000005,2 -11443,11501,11503,11561,0.077586206896654,0.201694915254021,0.082758620689746,0.195762711864160,0.082758620689751,0.207627118643856,0.087931034482843,0.201694915253995,-0.011864406779695,0.000000000000006,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779698,-0.000000000000005,2 -11444,11502,11504,11562,0.077586206896660,0.213559322033701,0.082758620689751,0.207627118643856,0.082758620689757,0.219491525423522,0.087931034482849,0.213559322033677,-0.011864406779664,0.000000000000006,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779666,-0.000000000000005,2 -11445,11503,11505,11563,0.077586206896666,0.225423728813375,0.082758620689757,0.219491525423522,0.082758620689763,0.231355932203208,0.087931034482854,0.225423728813354,-0.011864406779685,0.000000000000006,-0.000000000000023,-0.010344827586188,0.000000000000021,0.010344827586187,0.011864406779687,-0.000000000000005,2 -11446,11504,11506,11564,0.077586206896672,0.237288135593056,0.082758620689763,0.231355932203208,0.082758620689769,0.243220338982884,0.087931034482859,0.237288135593036,-0.011864406779676,0.000000000000006,-0.000000000000021,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779678,-0.000000000000005,2 -11447,11505,11507,11565,0.077586206896679,0.249152542372730,0.082758620689769,0.243220338982884,0.082758620689774,0.255084745762557,0.087931034482864,0.249152542372712,-0.011864406779672,0.000000000000006,-0.000000000000019,-0.010344827586186,0.000000000000017,0.010344827586185,0.011864406779674,-0.000000000000005,2 -11448,11506,11508,11566,0.077586206896685,0.261016949152407,0.082758620689774,0.255084745762557,0.082758620689780,0.266949152542242,0.087931034482870,0.261016949152392,-0.011864406779683,0.000000000000006,-0.000000000000017,-0.010344827586185,0.000000000000013,0.010344827586184,0.011864406779686,-0.000000000000005,2 -11449,11507,11509,11567,0.077586206896691,0.272881355932081,0.082758620689780,0.266949152542242,0.082758620689786,0.278813559321908,0.087931034482875,0.272881355932069,-0.011864406779665,0.000000000000006,-0.000000000000013,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779667,-0.000000000000005,2 -11450,11508,11510,11568,0.077586206896697,0.284745762711762,0.082758620689786,0.278813559321908,0.082758620689792,0.290677966101605,0.087931034482880,0.284745762711751,-0.011864406779696,0.000000000000006,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779699,-0.000000000000005,2 -11451,11509,11511,11569,0.077586206896704,0.296610169491443,0.082758620689792,0.290677966101605,0.082758620689797,0.302542372881273,0.087931034482885,0.296610169491435,-0.011864406779667,0.000000000000006,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779668,-0.000000000000005,2 -11452,11510,11512,11570,0.077586206896710,0.308474576271120,0.082758620689797,0.302542372881273,0.082758620689803,0.314406779660961,0.087931034482890,0.308474576271113,-0.011864406779687,0.000000000000006,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779690,-0.000000000000005,2 -11453,11511,11513,11571,0.077586206896716,0.320338983050801,0.082758620689803,0.314406779660961,0.082758620689809,0.326271186440637,0.087931034482896,0.320338983050796,-0.011864406779675,0.000000000000006,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779676,-0.000000000000005,2 -11454,11512,11514,11572,0.077586206896722,0.332203389830477,0.082758620689809,0.326271186440637,0.082758620689814,0.338135593220315,0.087931034482901,0.332203389830474,-0.011864406779677,0.000000000000006,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779679,-0.000000000000005,2 -7778,11455,11513,11573,0.082758620689820,0.350000000000000,0.077586206896728,0.344067796610158,0.082758620689814,0.338135593220315,0.087931034482906,0.344067796610157,-0.000000000000000,0.010344827586177,-0.011864406779684,0.000000000000006,-0.000000000000002,-0.010344827586178,0.011864406779686,-0.000000000000005,2 -8949,11456,11516,11574,0.093103448275718,-0.350000000000000,0.087931034482602,-0.344067796610175,0.093103448275722,-0.338135593220351,0.098275862068838,-0.344067796610176,-0.000000000000000,-0.010344827586236,-0.011864406779650,0.000000000000005,0.000000000000002,0.010344827586235,0.011864406779648,-0.000000000000004,2 -11457,11515,11517,11575,0.087931034482608,-0.332203389830528,0.093103448275722,-0.338135593220351,0.093103448275727,-0.326271186440709,0.098275862068842,-0.332203389830531,-0.011864406779643,0.000000000000005,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586234,0.011864406779641,-0.000000000000004,2 -11458,11516,11518,11576,0.087931034482613,-0.320338983050880,0.093103448275727,-0.326271186440709,0.093103448275732,-0.314406779661057,0.098275862068846,-0.320338983050885,-0.011864406779653,0.000000000000005,-0.000000000000004,-0.010344827586234,0.000000000000005,0.010344827586233,0.011864406779652,-0.000000000000004,2 -11459,11517,11519,11577,0.087931034482618,-0.308474576271232,0.093103448275732,-0.314406779661057,0.093103448275737,-0.302542372881415,0.098275862068851,-0.308474576271239,-0.011864406779643,0.000000000000005,-0.000000000000005,-0.010344827586233,0.000000000000008,0.010344827586232,0.011864406779640,-0.000000000000004,2 -11460,11518,11520,11578,0.087931034482623,-0.296610169491585,0.093103448275737,-0.302542372881415,0.093103448275741,-0.290677966101763,0.098275862068855,-0.296610169491593,-0.011864406779652,0.000000000000005,-0.000000000000008,-0.010344827586232,0.000000000000009,0.010344827586231,0.011864406779651,-0.000000000000004,2 -11461,11519,11521,11579,0.087931034482629,-0.284745762711935,0.093103448275741,-0.290677966101763,0.093103448275746,-0.278813559322118,0.098275862068859,-0.284745762711946,-0.011864406779647,0.000000000000005,-0.000000000000009,-0.010344827586231,0.000000000000012,0.010344827586230,0.011864406779644,-0.000000000000004,2 -11462,11520,11522,11580,0.087931034482634,-0.272881355932288,0.093103448275746,-0.278813559322118,0.093103448275751,-0.266949152542472,0.098275862068863,-0.272881355932301,-0.011864406779647,0.000000000000005,-0.000000000000012,-0.010344827586230,0.000000000000014,0.010344827586229,0.011864406779645,-0.000000000000004,2 -11463,11521,11523,11581,0.087931034482639,-0.261016949152646,0.093103448275751,-0.266949152542472,0.093103448275756,-0.255084745762836,0.098275862068868,-0.261016949152661,-0.011864406779638,0.000000000000005,-0.000000000000014,-0.010344827586229,0.000000000000016,0.010344827586228,0.011864406779635,-0.000000000000004,2 -11464,11522,11524,11582,0.087931034482644,-0.249152542373009,0.093103448275756,-0.255084745762836,0.093103448275760,-0.243220338983201,0.098275862068872,-0.249152542373027,-0.011864406779636,0.000000000000005,-0.000000000000016,-0.010344827586228,0.000000000000019,0.010344827586227,0.011864406779634,-0.000000000000004,2 -11465,11523,11525,11583,0.087931034482650,-0.237288135593368,0.093103448275760,-0.243220338983201,0.093103448275765,-0.231355932203556,0.098275862068876,-0.237288135593388,-0.011864406779646,0.000000000000005,-0.000000000000019,-0.010344827586227,0.000000000000021,0.010344827586226,0.011864406779644,-0.000000000000004,2 -11466,11524,11526,11584,0.087931034482655,-0.225423728813722,0.093103448275765,-0.231355932203556,0.093103448275770,-0.219491525423911,0.098275862068880,-0.225423728813744,-0.011864406779646,0.000000000000005,-0.000000000000021,-0.010344827586226,0.000000000000023,0.010344827586225,0.011864406779644,-0.000000000000004,2 -11467,11525,11527,11585,0.087931034482660,-0.213559322034079,0.093103448275770,-0.219491525423911,0.093103448275775,-0.207627118644270,0.098275862068885,-0.213559322034102,-0.011864406779641,0.000000000000005,-0.000000000000023,-0.010344827586225,0.000000000000024,0.010344827586224,0.011864406779640,-0.000000000000004,2 -11468,11526,11528,11586,0.087931034482665,-0.201694915254436,0.093103448275775,-0.207627118644270,0.093103448275779,-0.195762711864627,0.098275862068889,-0.201694915254461,-0.011864406779645,0.000000000000005,-0.000000000000024,-0.010344827586224,0.000000000000027,0.010344827586223,0.011864406779642,-0.000000000000004,2 -11469,11527,11529,11587,0.087931034482670,-0.189830508474795,0.093103448275779,-0.195762711864627,0.093103448275784,-0.183898305084991,0.098275862068893,-0.189830508474823,-0.011864406779636,0.000000000000005,-0.000000000000027,-0.010344827586223,0.000000000000029,0.010344827586222,0.011864406779635,-0.000000000000004,2 -11470,11528,11530,11588,0.087931034482676,-0.177966101695155,0.093103448275784,-0.183898305084991,0.093103448275789,-0.172033898305349,0.098275862068897,-0.177966101695185,-0.011864406779643,0.000000000000005,-0.000000000000029,-0.010344827586222,0.000000000000032,0.010344827586221,0.011864406779641,-0.000000000000004,2 -11471,11529,11531,11589,0.087931034482681,-0.166101694915514,0.093103448275789,-0.172033898305349,0.093103448275794,-0.160169491525712,0.098275862068902,-0.166101694915547,-0.011864406779638,0.000000000000005,-0.000000000000032,-0.010344827586221,0.000000000000034,0.010344827586220,0.011864406779636,-0.000000000000004,2 -11472,11530,11532,11590,0.087931034482686,-0.154237288135877,0.093103448275794,-0.160169491525712,0.093103448275798,-0.148305084746076,0.098275862068906,-0.154237288135911,-0.011864406779636,0.000000000000005,-0.000000000000034,-0.010344827586220,0.000000000000035,0.010344827586219,0.011864406779635,-0.000000000000004,2 -11473,11531,11533,11591,0.087931034482691,-0.142372881356238,0.093103448275798,-0.148305084746076,0.093103448275803,-0.136440677966436,0.098275862068910,-0.142372881356275,-0.011864406779641,0.000000000000005,-0.000000000000035,-0.010344827586219,0.000000000000038,0.010344827586218,0.011864406779639,-0.000000000000004,2 -11474,11532,11534,11592,0.087931034482697,-0.130508474576594,0.093103448275803,-0.136440677966436,0.093103448275808,-0.124576271186790,0.098275862068914,-0.130508474576632,-0.011864406779648,0.000000000000005,-0.000000000000038,-0.010344827586218,0.000000000000039,0.010344827586217,0.011864406779646,-0.000000000000004,2 -11475,11533,11535,11593,0.087931034482702,-0.118644067796949,0.093103448275808,-0.124576271186790,0.093103448275813,-0.112711864407150,0.098275862068918,-0.118644067796990,-0.011864406779641,0.000000000000005,-0.000000000000039,-0.010344827586217,0.000000000000042,0.010344827586216,0.011864406779639,-0.000000000000004,2 -11476,11534,11536,11594,0.087931034482707,-0.106779661017309,0.093103448275813,-0.112711864407150,0.093103448275817,-0.100847457627512,0.098275862068923,-0.106779661017352,-0.011864406779639,0.000000000000005,-0.000000000000042,-0.010344827586216,0.000000000000044,0.010344827586215,0.011864406779637,-0.000000000000004,2 -11477,11535,11537,11595,0.087931034482712,-0.094915254237669,0.093103448275817,-0.100847457627512,0.093103448275822,-0.088983050847872,0.098275862068927,-0.094915254237714,-0.011864406779641,0.000000000000005,-0.000000000000044,-0.010344827586215,0.000000000000046,0.010344827586214,0.011864406779639,-0.000000000000004,2 -11478,11536,11538,11596,0.087931034482718,-0.083050847458028,0.093103448275822,-0.088983050847872,0.093103448275827,-0.077118644068232,0.098275862068931,-0.083050847458076,-0.011864406779641,0.000000000000005,-0.000000000000046,-0.010344827586214,0.000000000000049,0.010344827586213,0.011864406779639,-0.000000000000004,2 -11479,11537,11539,11597,0.087931034482723,-0.071186440678388,0.093103448275827,-0.077118644068232,0.093103448275832,-0.065254237288594,0.098275862068935,-0.071186440678438,-0.011864406779639,0.000000000000005,-0.000000000000049,-0.010344827586213,0.000000000000051,0.010344827586212,0.011864406779637,-0.000000000000004,2 -11480,11538,11540,11598,0.087931034482728,-0.059322033898748,0.093103448275832,-0.065254237288594,0.093103448275836,-0.053389830508954,0.098275862068940,-0.059322033898800,-0.011864406779641,0.000000000000005,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779639,-0.000000000000004,2 -11481,11539,11541,11599,0.087931034482733,-0.047457627119107,0.093103448275836,-0.053389830508954,0.093103448275841,-0.041525423729314,0.098275862068944,-0.047457627119161,-0.011864406779640,0.000000000000005,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779638,-0.000000000000004,2 -11482,11540,11542,11600,0.087931034482739,-0.035593220339467,0.093103448275841,-0.041525423729314,0.093103448275846,-0.029661016949676,0.098275862068948,-0.035593220339523,-0.011864406779640,0.000000000000005,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779638,-0.000000000000004,2 -11483,11541,11543,11601,0.087931034482744,-0.023728813559826,0.093103448275846,-0.029661016949676,0.093103448275851,-0.017796610170036,0.098275862068952,-0.023728813559885,-0.011864406779641,0.000000000000005,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586208,0.011864406779639,-0.000000000000004,2 -11484,11542,11544,11602,0.087931034482749,-0.011864406780186,0.093103448275851,-0.017796610170036,0.093103448275855,-0.005932203390398,0.098275862068957,-0.011864406780247,-0.011864406779639,0.000000000000005,-0.000000000000060,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779637,-0.000000000000004,2 -11485,11543,11545,11603,0.087931034482754,-0.000000000000530,0.093103448275855,-0.005932203390398,0.093103448275860,0.005932203389275,0.098275862068961,-0.000000000000592,-0.011864406779673,0.000000000000005,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000004,2 -11486,11544,11546,11604,0.087931034482760,0.011864406779143,0.093103448275860,0.005932203389275,0.093103448275865,0.017796610168950,0.098275862068965,0.011864406779082,-0.011864406779674,0.000000000000005,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586205,0.011864406779676,-0.000000000000004,2 -11487,11545,11547,11605,0.087931034482765,0.023728813558822,0.093103448275865,0.017796610168950,0.093103448275869,0.029661016948634,0.098275862068969,0.023728813558763,-0.011864406779683,0.000000000000005,-0.000000000000060,-0.010344827586205,0.000000000000058,0.010344827586204,0.011864406779685,-0.000000000000004,2 -11488,11546,11548,11606,0.087931034482770,0.035593220338502,0.093103448275869,0.029661016948634,0.093103448275874,0.041525423728313,0.098275862068974,0.035593220338445,-0.011864406779678,0.000000000000005,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779680,-0.000000000000004,2 -11489,11547,11549,11607,0.087931034482775,0.047457627118180,0.093103448275874,0.041525423728313,0.093103448275879,0.053389830507993,0.098275862068978,0.047457627118126,-0.011864406779679,0.000000000000005,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779681,-0.000000000000004,2 -11490,11548,11550,11608,0.087931034482780,0.059322033897861,0.093103448275879,0.053389830507993,0.093103448275884,0.065254237287677,0.098275862068982,0.059322033897809,-0.011864406779683,0.000000000000005,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779685,-0.000000000000004,2 -11491,11549,11551,11609,0.087931034482786,0.071186440677539,0.093103448275884,0.065254237287677,0.093103448275888,0.077118644067352,0.098275862068986,0.071186440677489,-0.011864406779674,0.000000000000005,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779676,-0.000000000000004,2 -11492,11550,11552,11610,0.087931034482791,0.083050847457218,0.093103448275888,0.077118644067352,0.093103448275893,0.088983050847036,0.098275862068991,0.083050847457170,-0.011864406779683,0.000000000000005,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779685,-0.000000000000004,2 -11493,11551,11553,11611,0.087931034482796,0.094915254236900,0.093103448275893,0.088983050847036,0.093103448275898,0.100847457626720,0.098275862068995,0.094915254236855,-0.011864406779683,0.000000000000005,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779685,-0.000000000000004,2 -11494,11552,11554,11612,0.087931034482801,0.106779661016579,0.093103448275898,0.100847457626720,0.093103448275903,0.112711864406395,0.098275862068999,0.106779661016536,-0.011864406779674,0.000000000000005,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779676,-0.000000000000004,2 -11495,11553,11555,11613,0.087931034482807,0.118644067796257,0.093103448275903,0.112711864406395,0.093103448275907,0.124576271186079,0.098275862069003,0.118644067796216,-0.011864406779683,0.000000000000005,-0.000000000000042,-0.010344827586197,0.000000000000039,0.010344827586196,0.011864406779685,-0.000000000000004,2 -11496,11554,11556,11614,0.087931034482812,0.130508474575937,0.093103448275907,0.124576271186079,0.093103448275912,0.136440677965756,0.098275862069008,0.130508474575898,-0.011864406779677,0.000000000000005,-0.000000000000039,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779678,-0.000000000000004,2 -11497,11555,11557,11615,0.087931034482817,0.142372881355616,0.093103448275912,0.136440677965756,0.093103448275917,0.148305084745439,0.098275862069012,0.142372881355579,-0.011864406779681,0.000000000000005,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779684,-0.000000000000004,2 -11498,11556,11558,11616,0.087931034482822,0.154237288135288,0.093103448275917,0.148305084745439,0.093103448275922,0.160169491525103,0.098275862069016,0.154237288135254,-0.011864406779664,0.000000000000005,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779666,-0.000000000000004,2 -11499,11557,11559,11617,0.087931034482828,0.166101694914956,0.093103448275922,0.160169491525103,0.093103448275926,0.172033898304776,0.098275862069020,0.166101694914923,-0.011864406779672,0.000000000000005,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779674,-0.000000000000004,2 -11500,11558,11560,11618,0.087931034482833,0.177966101694637,0.093103448275926,0.172033898304776,0.093103448275931,0.183898305084468,0.098275862069025,0.177966101694607,-0.011864406779690,0.000000000000005,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779693,-0.000000000000004,2 -11501,11559,11561,11619,0.087931034482838,0.189830508474314,0.093103448275931,0.183898305084468,0.093103448275936,0.195762711864133,0.098275862069029,0.189830508474286,-0.011864406779664,0.000000000000005,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779666,-0.000000000000004,2 -11502,11560,11562,11620,0.087931034482843,0.201694915253995,0.093103448275936,0.195762711864133,0.093103448275941,0.207627118643832,0.098275862069033,0.201694915253969,-0.011864406779698,0.000000000000005,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779701,-0.000000000000004,2 -11503,11561,11563,11621,0.087931034482849,0.213559322033677,0.093103448275941,0.207627118643832,0.093103448275945,0.219491525423499,0.098275862069037,0.213559322033654,-0.011864406779666,0.000000000000005,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779667,-0.000000000000004,2 -11504,11562,11564,11622,0.087931034482854,0.225423728813354,0.093103448275945,0.219491525423499,0.093103448275950,0.231355932203187,0.098275862069042,0.225423728813332,-0.011864406779687,0.000000000000005,-0.000000000000023,-0.010344827586188,0.000000000000020,0.010344827586187,0.011864406779690,-0.000000000000004,2 -11505,11563,11565,11623,0.087931034482859,0.237288135593036,0.093103448275950,0.231355932203187,0.093103448275955,0.243220338982866,0.098275862069046,0.237288135593017,-0.011864406779678,0.000000000000005,-0.000000000000020,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779679,-0.000000000000004,2 -11506,11564,11566,11624,0.087931034482864,0.249152542372712,0.093103448275955,0.243220338982866,0.093103448275960,0.255084745762541,0.098275862069050,0.249152542372695,-0.011864406779674,0.000000000000005,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779676,-0.000000000000004,2 -11507,11565,11567,11625,0.087931034482870,0.261016949152392,0.093103448275960,0.255084745762541,0.093103448275964,0.266949152542228,0.098275862069054,0.261016949152377,-0.011864406779686,0.000000000000005,-0.000000000000016,-0.010344827586185,0.000000000000014,0.010344827586184,0.011864406779689,-0.000000000000004,2 -11508,11566,11568,11626,0.087931034482875,0.272881355932069,0.093103448275964,0.266949152542228,0.093103448275969,0.278813559321896,0.098275862069059,0.272881355932056,-0.011864406779667,0.000000000000005,-0.000000000000014,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779668,-0.000000000000004,2 -11509,11567,11569,11627,0.087931034482880,0.284745762711751,0.093103448275969,0.278813559321896,0.093103448275974,0.290677966101596,0.098275862069063,0.284745762711740,-0.011864406779699,0.000000000000005,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779702,-0.000000000000004,2 -11510,11568,11570,11628,0.087931034482885,0.296610169491435,0.093103448275974,0.290677966101596,0.093103448275979,0.302542372881264,0.098275862069067,0.296610169491426,-0.011864406779668,0.000000000000005,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779669,-0.000000000000004,2 -11511,11569,11571,11629,0.087931034482890,0.308474576271113,0.093103448275979,0.302542372881264,0.093103448275983,0.314406779660955,0.098275862069071,0.308474576271106,-0.011864406779690,0.000000000000005,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779692,-0.000000000000004,2 -11512,11570,11572,11630,0.087931034482896,0.320338983050796,0.093103448275983,0.314406779660955,0.093103448275988,0.326271186440633,0.098275862069076,0.320338983050791,-0.011864406779676,0.000000000000005,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779678,-0.000000000000004,2 -11513,11571,11573,11631,0.087931034482901,0.332203389830474,0.093103448275988,0.326271186440633,0.093103448275993,0.338135593220313,0.098275862069080,0.332203389830471,-0.011864406779679,0.000000000000005,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779681,-0.000000000000004,2 -7764,11514,11572,11632,0.093103448275998,0.350000000000000,0.087931034482906,0.344067796610157,0.093103448275993,0.338135593220313,0.098275862069084,0.344067796610156,-0.000000000000000,0.010344827586177,-0.011864406779686,0.000000000000005,-0.000000000000002,-0.010344827586178,0.011864406779688,-0.000000000000004,2 -8950,11515,11575,11633,0.103448275861948,-0.350000000000000,0.098275862068838,-0.344067796610176,0.103448275861951,-0.338135593220353,0.108620689655061,-0.344067796610177,-0.000000000000000,-0.010344827586224,-0.011864406779648,0.000000000000004,0.000000000000002,0.010344827586223,0.011864406779646,-0.000000000000003,2 -11516,11574,11576,11634,0.098275862068842,-0.332203389830531,0.103448275861951,-0.338135593220353,0.103448275861955,-0.326271186440713,0.108620689655065,-0.332203389830535,-0.011864406779641,0.000000000000004,-0.000000000000002,-0.010344827586223,0.000000000000004,0.010344827586222,0.011864406779639,-0.000000000000003,2 -11517,11575,11577,11635,0.098275862068846,-0.320338983050885,0.103448275861955,-0.326271186440713,0.103448275861959,-0.314406779661062,0.108620689655068,-0.320338983050890,-0.011864406779652,0.000000000000004,-0.000000000000004,-0.010344827586222,0.000000000000006,0.010344827586221,0.011864406779650,-0.000000000000003,2 -11518,11576,11578,11636,0.098275862068851,-0.308474576271239,0.103448275861959,-0.314406779661062,0.103448275861963,-0.302542372881423,0.108620689655071,-0.308474576271246,-0.011864406779640,0.000000000000004,-0.000000000000006,-0.010344827586221,0.000000000000008,0.010344827586220,0.011864406779638,-0.000000000000003,2 -11519,11577,11579,11637,0.098275862068855,-0.296610169491593,0.103448275861963,-0.302542372881423,0.103448275861967,-0.290677966101772,0.108620689655075,-0.296610169491602,-0.011864406779651,0.000000000000004,-0.000000000000008,-0.010344827586220,0.000000000000009,0.010344827586220,0.011864406779650,-0.000000000000003,2 -11520,11578,11580,11638,0.098275862068859,-0.284745762711946,0.103448275861967,-0.290677966101772,0.103448275861971,-0.278813559322130,0.108620689655078,-0.284745762711957,-0.011864406779644,0.000000000000004,-0.000000000000009,-0.010344827586220,0.000000000000012,0.010344827586219,0.011864406779641,-0.000000000000003,2 -11521,11579,11581,11639,0.098275862068863,-0.272881355932301,0.103448275861971,-0.278813559322130,0.103448275861975,-0.266949152542486,0.108620689655082,-0.272881355932314,-0.011864406779645,0.000000000000004,-0.000000000000012,-0.010344827586219,0.000000000000013,0.010344827586218,0.011864406779644,-0.000000000000004,2 -11522,11580,11582,11640,0.098275862068868,-0.261016949152661,0.103448275861975,-0.266949152542486,0.103448275861978,-0.255084745762852,0.108620689655085,-0.261016949152676,-0.011864406779635,0.000000000000004,-0.000000000000013,-0.010344827586218,0.000000000000017,0.010344827586217,0.011864406779632,-0.000000000000003,2 -11523,11581,11583,11641,0.098275862068872,-0.249152542373027,0.103448275861978,-0.255084745762852,0.103448275861982,-0.243220338983219,0.108620689655089,-0.249152542373045,-0.011864406779634,0.000000000000004,-0.000000000000017,-0.010344827586217,0.000000000000019,0.010344827586217,0.011864406779631,-0.000000000000003,2 -11524,11582,11584,11642,0.098275862068876,-0.237288135593388,0.103448275861982,-0.243220338983219,0.103448275861986,-0.231355932203576,0.108620689655092,-0.237288135593408,-0.011864406779644,0.000000000000004,-0.000000000000019,-0.010344827586217,0.000000000000020,0.010344827586216,0.011864406779642,-0.000000000000003,2 -11525,11583,11585,11643,0.098275862068880,-0.225423728813744,0.103448275861986,-0.231355932203576,0.103448275861990,-0.219491525423934,0.108620689655096,-0.225423728813766,-0.011864406779644,0.000000000000004,-0.000000000000020,-0.010344827586216,0.000000000000023,0.010344827586215,0.011864406779641,-0.000000000000003,2 -11526,11584,11586,11644,0.098275862068885,-0.213559322034102,0.103448275861990,-0.219491525423934,0.103448275861994,-0.207627118644295,0.108620689655099,-0.213559322034126,-0.011864406779640,0.000000000000004,-0.000000000000023,-0.010344827586215,0.000000000000024,0.010344827586214,0.011864406779639,-0.000000000000003,2 -11527,11585,11587,11645,0.098275862068889,-0.201694915254461,0.103448275861994,-0.207627118644295,0.103448275861998,-0.195762711864654,0.108620689655103,-0.201694915254487,-0.011864406779642,0.000000000000004,-0.000000000000024,-0.010344827586214,0.000000000000027,0.010344827586213,0.011864406779639,-0.000000000000003,2 -11528,11586,11588,11646,0.098275862068893,-0.189830508474823,0.103448275861998,-0.195762711864654,0.103448275862001,-0.183898305085020,0.108620689655106,-0.189830508474851,-0.011864406779635,0.000000000000004,-0.000000000000027,-0.010344827586213,0.000000000000029,0.010344827586213,0.011864406779633,-0.000000000000003,2 -11529,11587,11589,11647,0.098275862068897,-0.177966101695185,0.103448275862001,-0.183898305085020,0.103448275862005,-0.172033898305381,0.108620689655110,-0.177966101695216,-0.011864406779641,0.000000000000004,-0.000000000000029,-0.010344827586213,0.000000000000032,0.010344827586212,0.011864406779638,-0.000000000000004,2 -11530,11588,11590,11648,0.098275862068902,-0.166101694915547,0.103448275862005,-0.172033898305381,0.103448275862009,-0.160169491525746,0.108620689655113,-0.166101694915580,-0.011864406779636,0.000000000000004,-0.000000000000032,-0.010344827586212,0.000000000000034,0.010344827586211,0.011864406779635,-0.000000000000003,2 -11531,11589,11591,11649,0.098275862068906,-0.154237288135911,0.103448275862009,-0.160169491525746,0.103448275862013,-0.148305084746112,0.108620689655116,-0.154237288135946,-0.011864406779635,0.000000000000004,-0.000000000000034,-0.010344827586211,0.000000000000035,0.010344827586210,0.011864406779633,-0.000000000000003,2 -11532,11590,11592,11650,0.098275862068910,-0.142372881356275,0.103448275862013,-0.148305084746112,0.103448275862017,-0.136440677966474,0.108620689655120,-0.142372881356311,-0.011864406779639,0.000000000000004,-0.000000000000035,-0.010344827586210,0.000000000000038,0.010344827586210,0.011864406779636,-0.000000000000003,2 -11533,11591,11593,11651,0.098275862068914,-0.130508474576632,0.103448275862017,-0.136440677966474,0.103448275862021,-0.124576271186829,0.108620689655123,-0.130508474576671,-0.011864406779646,0.000000000000004,-0.000000000000038,-0.010344827586210,0.000000000000039,0.010344827586209,0.011864406779644,-0.000000000000003,2 -11534,11592,11594,11652,0.098275862068918,-0.118644067796990,0.103448275862021,-0.124576271186829,0.103448275862025,-0.112711864407192,0.108620689655127,-0.118644067797031,-0.011864406779639,0.000000000000004,-0.000000000000039,-0.010344827586209,0.000000000000042,0.010344827586208,0.011864406779636,-0.000000000000003,2 -11535,11593,11595,11653,0.098275862068923,-0.106779661017352,0.103448275862025,-0.112711864407192,0.103448275862028,-0.100847457627556,0.108620689655130,-0.106779661017395,-0.011864406779637,0.000000000000004,-0.000000000000042,-0.010344827586208,0.000000000000044,0.010344827586207,0.011864406779635,-0.000000000000003,2 -11536,11594,11596,11654,0.098275862068927,-0.094915254237714,0.103448275862028,-0.100847457627556,0.103448275862032,-0.088983050847918,0.108620689655134,-0.094915254237759,-0.011864406779639,0.000000000000004,-0.000000000000044,-0.010344827586207,0.000000000000046,0.010344827586206,0.011864406779636,-0.000000000000003,2 -11537,11595,11597,11655,0.098275862068931,-0.083050847458076,0.103448275862032,-0.088983050847918,0.103448275862036,-0.077118644068281,0.108620689655137,-0.083050847458123,-0.011864406779639,0.000000000000004,-0.000000000000046,-0.010344827586206,0.000000000000049,0.010344827586206,0.011864406779636,-0.000000000000004,2 -11538,11596,11598,11656,0.098275862068935,-0.071186440678438,0.103448275862036,-0.077118644068281,0.103448275862040,-0.065254237288645,0.108620689655141,-0.071186440678488,-0.011864406779637,0.000000000000004,-0.000000000000049,-0.010344827586206,0.000000000000051,0.010344827586205,0.011864406779635,-0.000000000000003,2 -11539,11597,11599,11657,0.098275862068940,-0.059322033898800,0.103448275862040,-0.065254237288645,0.103448275862044,-0.053389830509007,0.108620689655144,-0.059322033898852,-0.011864406779639,0.000000000000004,-0.000000000000051,-0.010344827586205,0.000000000000053,0.010344827586204,0.011864406779636,-0.000000000000003,2 -11540,11598,11600,11658,0.098275862068944,-0.047457627119161,0.103448275862044,-0.053389830509007,0.103448275862048,-0.041525423729370,0.108620689655148,-0.047457627119216,-0.011864406779638,0.000000000000004,-0.000000000000053,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779636,-0.000000000000003,2 -11541,11599,11601,11659,0.098275862068948,-0.035593220339523,0.103448275862048,-0.041525423729370,0.103448275862052,-0.029661016949733,0.108620689655151,-0.035593220339580,-0.011864406779638,0.000000000000004,-0.000000000000056,-0.010344827586203,0.000000000000058,0.010344827586202,0.011864406779636,-0.000000000000003,2 -11542,11600,11602,11660,0.098275862068952,-0.023728813559885,0.103448275862052,-0.029661016949733,0.103448275862055,-0.017796610170096,0.108620689655155,-0.023728813559944,-0.011864406779639,0.000000000000004,-0.000000000000058,-0.010344827586202,0.000000000000060,0.010344827586202,0.011864406779636,-0.000000000000003,2 -11543,11601,11603,11661,0.098275862068957,-0.011864406780247,0.103448275862055,-0.017796610170096,0.103448275862059,-0.005932203390460,0.108620689655158,-0.011864406780309,-0.011864406779637,0.000000000000004,-0.000000000000060,-0.010344827586202,0.000000000000062,0.010344827586201,0.011864406779635,-0.000000000000003,2 -11544,11602,11604,11662,0.098275862068961,-0.000000000000592,0.103448275862059,-0.005932203390460,0.103448275862063,0.005932203389213,0.108620689655161,-0.000000000000655,-0.011864406779673,0.000000000000004,-0.000000000000062,-0.010344827586201,0.000000000000062,0.010344827586200,0.011864406779673,-0.000000000000003,2 -11545,11603,11605,11663,0.098275862068965,0.011864406779082,0.103448275862063,0.005932203389213,0.103448275862067,0.017796610168890,0.108620689655165,0.011864406779021,-0.011864406779676,0.000000000000004,-0.000000000000062,-0.010344827586200,0.000000000000060,0.010344827586199,0.011864406779678,-0.000000000000003,2 -11546,11604,11606,11664,0.098275862068969,0.023728813558763,0.103448275862067,0.017796610168890,0.103448275862071,0.029661016948576,0.108620689655168,0.023728813558704,-0.011864406779685,0.000000000000004,-0.000000000000060,-0.010344827586199,0.000000000000058,0.010344827586199,0.011864406779688,-0.000000000000004,2 -11547,11605,11607,11665,0.098275862068974,0.035593220338445,0.103448275862071,0.029661016948576,0.103448275862075,0.041525423728257,0.108620689655172,0.035593220338388,-0.011864406779680,0.000000000000004,-0.000000000000058,-0.010344827586199,0.000000000000056,0.010344827586198,0.011864406779682,-0.000000000000003,2 -11548,11606,11608,11666,0.098275862068978,0.047457627118126,0.103448275862075,0.041525423728257,0.103448275862079,0.053389830507940,0.108620689655175,0.047457627118071,-0.011864406779681,0.000000000000004,-0.000000000000056,-0.010344827586198,0.000000000000053,0.010344827586197,0.011864406779684,-0.000000000000003,2 -11549,11607,11609,11667,0.098275862068982,0.059322033897809,0.103448275862079,0.053389830507940,0.103448275862082,0.065254237287626,0.108620689655179,0.059322033897757,-0.011864406779685,0.000000000000004,-0.000000000000053,-0.010344827586197,0.000000000000051,0.010344827586196,0.011864406779688,-0.000000000000003,2 -11550,11608,11610,11668,0.098275862068986,0.071186440677489,0.103448275862082,0.065254237287626,0.103448275862086,0.077118644067303,0.108620689655182,0.071186440677440,-0.011864406779676,0.000000000000004,-0.000000000000051,-0.010344827586196,0.000000000000049,0.010344827586195,0.011864406779678,-0.000000000000003,2 -11551,11609,11611,11669,0.098275862068991,0.083050847457170,0.103448275862086,0.077118644067303,0.103448275862090,0.088983050846989,0.108620689655186,0.083050847457122,-0.011864406779685,0.000000000000004,-0.000000000000049,-0.010344827586195,0.000000000000046,0.010344827586195,0.011864406779688,-0.000000000000003,2 -11552,11610,11612,11670,0.098275862068995,0.094915254236855,0.103448275862090,0.088983050846989,0.103448275862094,0.100847457626676,0.108620689655189,0.094915254236810,-0.011864406779685,0.000000000000004,-0.000000000000046,-0.010344827586195,0.000000000000044,0.010344827586194,0.011864406779687,-0.000000000000003,2 -11553,11611,11613,11671,0.098275862068999,0.106779661016536,0.103448275862094,0.100847457626676,0.103448275862098,0.112711864406353,0.108620689655193,0.106779661016493,-0.011864406779676,0.000000000000004,-0.000000000000044,-0.010344827586194,0.000000000000042,0.010344827586193,0.011864406779678,-0.000000000000003,2 -11554,11612,11614,11672,0.098275862069003,0.118644067796216,0.103448275862098,0.112711864406353,0.103448275862102,0.124576271186039,0.108620689655196,0.118644067796176,-0.011864406779685,0.000000000000004,-0.000000000000042,-0.010344827586193,0.000000000000040,0.010344827586192,0.011864406779688,-0.000000000000004,2 -11555,11613,11615,11673,0.098275862069008,0.130508474575898,0.103448275862102,0.124576271186039,0.103448275862106,0.136440677965718,0.108620689655200,0.130508474575860,-0.011864406779678,0.000000000000004,-0.000000000000040,-0.010344827586192,0.000000000000038,0.010344827586192,0.011864406779680,-0.000000000000003,2 -11556,11614,11616,11674,0.098275862069012,0.142372881355579,0.103448275862106,0.136440677965718,0.103448275862109,0.148305084745403,0.108620689655203,0.142372881355543,-0.011864406779684,0.000000000000004,-0.000000000000038,-0.010344827586192,0.000000000000035,0.010344827586191,0.011864406779686,-0.000000000000003,2 -11557,11615,11617,11675,0.098275862069016,0.154237288135254,0.103448275862109,0.148305084745403,0.103448275862113,0.160169491525070,0.108620689655206,0.154237288135219,-0.011864406779666,0.000000000000004,-0.000000000000035,-0.010344827586191,0.000000000000034,0.010344827586190,0.011864406779667,-0.000000000000003,2 -11558,11616,11618,11676,0.098275862069020,0.166101694914923,0.103448275862113,0.160169491525070,0.103448275862117,0.172033898304744,0.108620689655210,0.166101694914891,-0.011864406779674,0.000000000000004,-0.000000000000034,-0.010344827586190,0.000000000000032,0.010344827586189,0.011864406779676,-0.000000000000003,2 -11559,11617,11619,11677,0.098275862069025,0.177966101694607,0.103448275862117,0.172033898304744,0.103448275862121,0.183898305084439,0.108620689655213,0.177966101694576,-0.011864406779693,0.000000000000004,-0.000000000000032,-0.010344827586189,0.000000000000029,0.010344827586188,0.011864406779696,-0.000000000000003,2 -11560,11618,11620,11678,0.098275862069029,0.189830508474286,0.103448275862121,0.183898305084439,0.103448275862125,0.195762711864105,0.108620689655217,0.189830508474258,-0.011864406779666,0.000000000000004,-0.000000000000029,-0.010344827586188,0.000000000000027,0.010344827586188,0.011864406779667,-0.000000000000003,2 -11561,11619,11621,11679,0.098275862069033,0.201694915253969,0.103448275862125,0.195762711864105,0.103448275862129,0.207627118643808,0.108620689655220,0.201694915253944,-0.011864406779701,0.000000000000004,-0.000000000000027,-0.010344827586188,0.000000000000024,0.010344827586187,0.011864406779704,-0.000000000000003,2 -11562,11620,11622,11680,0.098275862069037,0.213559322033654,0.103448275862129,0.207627118643808,0.103448275862132,0.219491525423476,0.108620689655224,0.213559322033630,-0.011864406779667,0.000000000000004,-0.000000000000024,-0.010344827586187,0.000000000000023,0.010344827586186,0.011864406779669,-0.000000000000004,2 -11563,11621,11623,11681,0.098275862069042,0.225423728813332,0.103448275862132,0.219491525423476,0.103448275862136,0.231355932203167,0.108620689655227,0.225423728813310,-0.011864406779690,0.000000000000004,-0.000000000000023,-0.010344827586186,0.000000000000020,0.010344827586185,0.011864406779692,-0.000000000000003,2 -11564,11622,11624,11682,0.098275862069046,0.237288135593017,0.103448275862136,0.231355932203167,0.103448275862140,0.243220338982847,0.108620689655231,0.237288135592997,-0.011864406779679,0.000000000000004,-0.000000000000020,-0.010344827586185,0.000000000000019,0.010344827586184,0.011864406779681,-0.000000000000003,2 -11565,11623,11625,11683,0.098275862069050,0.249152542372695,0.103448275862140,0.243220338982847,0.103448275862144,0.255084745762525,0.108620689655234,0.249152542372677,-0.011864406779676,0.000000000000004,-0.000000000000019,-0.010344827586184,0.000000000000016,0.010344827586184,0.011864406779679,-0.000000000000003,2 -11566,11624,11626,11684,0.098275862069054,0.261016949152377,0.103448275862144,0.255084745762525,0.103448275862148,0.266949152542215,0.108620689655238,0.261016949152362,-0.011864406779689,0.000000000000004,-0.000000000000016,-0.010344827586184,0.000000000000014,0.010344827586183,0.011864406779692,-0.000000000000003,2 -11567,11625,11627,11685,0.098275862069059,0.272881355932056,0.103448275862148,0.266949152542215,0.103448275862152,0.278813559321883,0.108620689655241,0.272881355932043,-0.011864406779668,0.000000000000004,-0.000000000000014,-0.010344827586183,0.000000000000012,0.010344827586182,0.011864406779669,-0.000000000000003,2 -11568,11626,11628,11686,0.098275862069063,0.284745762711740,0.103448275862152,0.278813559321883,0.103448275862156,0.290677966101586,0.108620689655244,0.284745762711729,-0.011864406779702,0.000000000000004,-0.000000000000012,-0.010344827586182,0.000000000000009,0.010344827586181,0.011864406779705,-0.000000000000003,2 -11569,11627,11629,11687,0.098275862069067,0.296610169491426,0.103448275862156,0.290677966101586,0.103448275862159,0.302542372881256,0.108620689655248,0.296610169491417,-0.011864406779669,0.000000000000004,-0.000000000000009,-0.010344827586181,0.000000000000008,0.010344827586181,0.011864406779670,-0.000000000000003,2 -11570,11628,11630,11688,0.098275862069071,0.308474576271106,0.103448275862159,0.302542372881256,0.103448275862163,0.314406779660950,0.108620689655251,0.308474576271099,-0.011864406779692,0.000000000000004,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779695,-0.000000000000004,2 -11571,11629,11631,11689,0.098275862069076,0.320338983050791,0.103448275862163,0.314406779660950,0.103448275862167,0.326271186440628,0.108620689655255,0.320338983050786,-0.011864406779678,0.000000000000004,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779679,-0.000000000000003,2 -11572,11630,11632,11690,0.098275862069080,0.332203389830471,0.103448275862167,0.326271186440628,0.103448275862171,0.338135593220310,0.108620689655258,0.332203389830468,-0.011864406779681,0.000000000000004,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779683,-0.000000000000003,2 -7750,11573,11631,11691,0.103448275862175,0.350000000000000,0.098275862069084,0.344067796610156,0.103448275862171,0.338135593220310,0.108620689655262,0.344067796610155,-0.000000000000000,0.010344827586177,-0.011864406779688,0.000000000000004,-0.000000000000002,-0.010344827586178,0.011864406779691,-0.000000000000003,2 -8951,11574,11634,11692,0.113793103448176,-0.350000000000000,0.108620689655061,-0.344067796610177,0.113793103448179,-0.338135593220355,0.118965517241293,-0.344067796610178,-0.000000000000000,-0.010344827586232,-0.011864406779646,0.000000000000003,0.000000000000002,0.010344827586231,0.011864406779644,-0.000000000000002,2 -11575,11633,11635,11693,0.108620689655065,-0.332203389830535,0.113793103448179,-0.338135593220355,0.113793103448182,-0.326271186440717,0.118965517241296,-0.332203389830538,-0.011864406779639,0.000000000000003,-0.000000000000002,-0.010344827586231,0.000000000000004,0.010344827586230,0.011864406779637,-0.000000000000003,2 -11576,11634,11636,11694,0.108620689655068,-0.320338983050890,0.113793103448182,-0.326271186440717,0.113793103448185,-0.314406779661068,0.118965517241298,-0.320338983050895,-0.011864406779650,0.000000000000003,-0.000000000000004,-0.010344827586230,0.000000000000006,0.010344827586230,0.011864406779649,-0.000000000000003,2 -11577,11635,11637,11695,0.108620689655071,-0.308474576271246,0.113793103448185,-0.314406779661068,0.113793103448188,-0.302542372881432,0.118965517241301,-0.308474576271253,-0.011864406779638,0.000000000000003,-0.000000000000006,-0.010344827586230,0.000000000000008,0.010344827586229,0.011864406779635,-0.000000000000002,2 -11578,11636,11638,11696,0.108620689655075,-0.296610169491602,0.113793103448188,-0.302542372881432,0.113793103448191,-0.290677966101782,0.118965517241303,-0.296610169491611,-0.011864406779650,0.000000000000003,-0.000000000000008,-0.010344827586229,0.000000000000009,0.010344827586228,0.011864406779650,-0.000000000000003,2 -11579,11637,11639,11697,0.108620689655078,-0.284745762711957,0.113793103448191,-0.290677966101782,0.113793103448194,-0.278813559322143,0.118965517241306,-0.284745762711967,-0.011864406779641,0.000000000000003,-0.000000000000009,-0.010344827586228,0.000000000000012,0.010344827586227,0.011864406779637,-0.000000000000003,2 -11580,11638,11640,11698,0.108620689655082,-0.272881355932314,0.113793103448194,-0.278813559322143,0.113793103448197,-0.266949152542499,0.118965517241308,-0.272881355932327,-0.011864406779644,0.000000000000004,-0.000000000000012,-0.010344827586227,0.000000000000013,0.010344827586226,0.011864406779643,-0.000000000000002,2 -11581,11639,11641,11699,0.108620689655085,-0.261016949152676,0.113793103448197,-0.266949152542499,0.113793103448200,-0.255084745762868,0.118965517241311,-0.261016949152691,-0.011864406779632,0.000000000000003,-0.000000000000013,-0.010344827586226,0.000000000000016,0.010344827586225,0.011864406779629,-0.000000000000003,2 -11582,11640,11642,11700,0.108620689655089,-0.249152542373045,0.113793103448200,-0.255084745762868,0.113793103448203,-0.243220338983238,0.118965517241313,-0.249152542373062,-0.011864406779631,0.000000000000003,-0.000000000000016,-0.010344827586225,0.000000000000018,0.010344827586224,0.011864406779629,-0.000000000000003,2 -11583,11641,11643,11701,0.108620689655092,-0.237288135593408,0.113793103448203,-0.243220338983238,0.113793103448206,-0.231355932203597,0.118965517241316,-0.237288135593427,-0.011864406779642,0.000000000000003,-0.000000000000018,-0.010344827586224,0.000000000000020,0.010344827586223,0.011864406779640,-0.000000000000003,2 -11584,11642,11644,11702,0.108620689655096,-0.225423728813766,0.113793103448206,-0.231355932203597,0.113793103448209,-0.219491525423957,0.118965517241319,-0.225423728813788,-0.011864406779641,0.000000000000003,-0.000000000000020,-0.010344827586223,0.000000000000023,0.010344827586223,0.011864406779638,-0.000000000000003,2 -11585,11643,11645,11703,0.108620689655099,-0.213559322034126,0.113793103448209,-0.219491525423957,0.113793103448212,-0.207627118644319,0.118965517241321,-0.213559322034150,-0.011864406779639,0.000000000000003,-0.000000000000023,-0.010344827586223,0.000000000000024,0.010344827586222,0.011864406779637,-0.000000000000003,2 -11586,11644,11646,11704,0.108620689655103,-0.201694915254487,0.113793103448212,-0.207627118644319,0.113793103448215,-0.195762711864682,0.118965517241324,-0.201694915254513,-0.011864406779639,0.000000000000003,-0.000000000000024,-0.010344827586222,0.000000000000028,0.010344827586221,0.011864406779636,-0.000000000000002,2 -11587,11645,11647,11705,0.108620689655106,-0.189830508474851,0.113793103448215,-0.195762711864682,0.113793103448218,-0.183898305085049,0.118965517241326,-0.189830508474879,-0.011864406779633,0.000000000000003,-0.000000000000028,-0.010344827586221,0.000000000000029,0.010344827586220,0.011864406779632,-0.000000000000003,2 -11588,11646,11648,11706,0.108620689655110,-0.177966101695216,0.113793103448218,-0.183898305085049,0.113793103448221,-0.172033898305413,0.118965517241329,-0.177966101695246,-0.011864406779638,0.000000000000004,-0.000000000000029,-0.010344827586220,0.000000000000032,0.010344827586219,0.011864406779635,-0.000000000000003,2 -11589,11647,11649,11707,0.108620689655113,-0.166101694915580,0.113793103448221,-0.172033898305413,0.113793103448224,-0.160169491525779,0.118965517241331,-0.166101694915613,-0.011864406779635,0.000000000000003,-0.000000000000032,-0.010344827586219,0.000000000000034,0.010344827586218,0.011864406779633,-0.000000000000002,2 -11590,11648,11650,11708,0.108620689655116,-0.154237288135946,0.113793103448224,-0.160169491525779,0.113793103448227,-0.148305084746147,0.118965517241334,-0.154237288135981,-0.011864406779633,0.000000000000003,-0.000000000000034,-0.010344827586218,0.000000000000035,0.010344827586217,0.011864406779631,-0.000000000000003,2 -11591,11649,11651,11709,0.108620689655120,-0.142372881356311,0.113793103448227,-0.148305084746147,0.113793103448230,-0.136440677966512,0.118965517241337,-0.142372881356348,-0.011864406779636,0.000000000000003,-0.000000000000035,-0.010344827586217,0.000000000000038,0.010344827586216,0.011864406779634,-0.000000000000002,2 -11592,11650,11652,11710,0.108620689655123,-0.130508474576671,0.113793103448230,-0.136440677966512,0.113793103448233,-0.124576271186869,0.118965517241339,-0.130508474576710,-0.011864406779644,0.000000000000003,-0.000000000000038,-0.010344827586216,0.000000000000039,0.010344827586215,0.011864406779642,-0.000000000000003,2 -11593,11651,11653,11711,0.108620689655127,-0.118644067797031,0.113793103448233,-0.124576271186869,0.113793103448236,-0.112711864407234,0.118965517241342,-0.118644067797071,-0.011864406779636,0.000000000000003,-0.000000000000039,-0.010344827586215,0.000000000000042,0.010344827586214,0.011864406779634,-0.000000000000003,2 -11594,11652,11654,11712,0.108620689655130,-0.106779661017395,0.113793103448236,-0.112711864407234,0.113793103448239,-0.100847457627600,0.118965517241344,-0.106779661017438,-0.011864406779635,0.000000000000003,-0.000000000000042,-0.010344827586214,0.000000000000044,0.010344827586214,0.011864406779633,-0.000000000000003,2 -11595,11653,11655,11713,0.108620689655134,-0.094915254237759,0.113793103448239,-0.100847457627600,0.113793103448242,-0.088983050847964,0.118965517241347,-0.094915254237805,-0.011864406779636,0.000000000000003,-0.000000000000044,-0.010344827586214,0.000000000000046,0.010344827586213,0.011864406779634,-0.000000000000003,2 -11596,11654,11656,11714,0.108620689655137,-0.083050847458123,0.113793103448242,-0.088983050847964,0.113793103448245,-0.077118644068329,0.118965517241349,-0.083050847458171,-0.011864406779636,0.000000000000004,-0.000000000000046,-0.010344827586213,0.000000000000049,0.010344827586212,0.011864406779634,-0.000000000000003,2 -11597,11655,11657,11715,0.108620689655141,-0.071186440678488,0.113793103448245,-0.077118644068329,0.113793103448248,-0.065254237288696,0.118965517241352,-0.071186440678537,-0.011864406779635,0.000000000000003,-0.000000000000049,-0.010344827586212,0.000000000000051,0.010344827586211,0.011864406779633,-0.000000000000002,2 -11598,11656,11658,11716,0.108620689655144,-0.059322033898852,0.113793103448248,-0.065254237288696,0.113793103448251,-0.053389830509060,0.118965517241354,-0.059322033898904,-0.011864406779636,0.000000000000003,-0.000000000000051,-0.010344827586211,0.000000000000053,0.010344827586210,0.011864406779634,-0.000000000000003,2 -11599,11657,11659,11717,0.108620689655148,-0.047457627119216,0.113793103448251,-0.053389830509060,0.113793103448254,-0.041525423729426,0.118965517241357,-0.047457627119270,-0.011864406779636,0.000000000000003,-0.000000000000053,-0.010344827586210,0.000000000000056,0.010344827586209,0.011864406779634,-0.000000000000002,2 -11600,11658,11660,11718,0.108620689655151,-0.035593220339580,0.113793103448254,-0.041525423729426,0.113793103448257,-0.029661016949791,0.118965517241360,-0.035593220339637,-0.011864406779636,0.000000000000003,-0.000000000000056,-0.010344827586209,0.000000000000058,0.010344827586208,0.011864406779633,-0.000000000000003,2 -11601,11659,11661,11719,0.108620689655155,-0.023728813559944,0.113793103448257,-0.029661016949791,0.113793103448260,-0.017796610170156,0.118965517241362,-0.023728813560003,-0.011864406779636,0.000000000000003,-0.000000000000058,-0.010344827586208,0.000000000000060,0.010344827586207,0.011864406779634,-0.000000000000003,2 -11602,11660,11662,11720,0.108620689655158,-0.011864406780309,0.113793103448260,-0.017796610170156,0.113793103448263,-0.005932203390522,0.118965517241365,-0.011864406780370,-0.011864406779635,0.000000000000003,-0.000000000000060,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779633,-0.000000000000002,2 -11603,11661,11663,11721,0.108620689655161,-0.000000000000655,0.113793103448263,-0.005932203390522,0.113793103448266,0.005932203389150,0.118965517241367,-0.000000000000717,-0.011864406779673,0.000000000000003,-0.000000000000062,-0.010344827586206,0.000000000000062,0.010344827586205,0.011864406779673,-0.000000000000003,2 -11604,11662,11664,11722,0.108620689655165,0.011864406779021,0.113793103448266,0.005932203389150,0.113793103448269,0.017796610168830,0.118965517241370,0.011864406778959,-0.011864406779678,0.000000000000003,-0.000000000000062,-0.010344827586205,0.000000000000060,0.010344827586205,0.011864406779680,-0.000000000000002,2 -11605,11663,11665,11723,0.108620689655168,0.023728813558704,0.113793103448269,0.017796610168830,0.113793103448272,0.029661016948518,0.118965517241372,0.023728813558644,-0.011864406779688,0.000000000000004,-0.000000000000060,-0.010344827586205,0.000000000000058,0.010344827586204,0.011864406779690,-0.000000000000003,2 -11606,11664,11666,11724,0.108620689655172,0.035593220338388,0.113793103448272,0.029661016948518,0.113793103448275,0.041525423728201,0.118965517241375,0.035593220338332,-0.011864406779682,0.000000000000003,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779684,-0.000000000000003,2 -11607,11665,11667,11725,0.108620689655175,0.047457627118071,0.113793103448275,0.041525423728201,0.113793103448278,0.053389830507886,0.118965517241378,0.047457627118017,-0.011864406779684,0.000000000000003,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779686,-0.000000000000003,2 -11608,11666,11668,11726,0.108620689655179,0.059322033897757,0.113793103448278,0.053389830507886,0.113793103448281,0.065254237287575,0.118965517241380,0.059322033897705,-0.011864406779688,0.000000000000003,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779690,-0.000000000000002,2 -11609,11667,11669,11727,0.108620689655182,0.071186440677440,0.113793103448281,0.065254237287575,0.113793103448284,0.077118644067254,0.118965517241383,0.071186440677390,-0.011864406779678,0.000000000000003,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779680,-0.000000000000003,2 -11610,11668,11670,11728,0.108620689655186,0.083050847457122,0.113793103448284,0.077118644067254,0.113793103448287,0.088983050846943,0.118965517241385,0.083050847457075,-0.011864406779688,0.000000000000003,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779690,-0.000000000000002,2 -11611,11669,11671,11729,0.108620689655189,0.094915254236810,0.113793103448287,0.088983050846943,0.113793103448290,0.100847457626632,0.118965517241388,0.094915254236765,-0.011864406779687,0.000000000000003,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779690,-0.000000000000003,2 -11612,11670,11672,11730,0.108620689655193,0.106779661016493,0.113793103448290,0.100847457626632,0.113793103448293,0.112711864406311,0.118965517241390,0.106779661016450,-0.011864406779678,0.000000000000003,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779680,-0.000000000000002,2 -11613,11671,11673,11731,0.108620689655196,0.118644067796176,0.113793103448293,0.112711864406311,0.113793103448296,0.124576271186000,0.118965517241393,0.118644067796135,-0.011864406779688,0.000000000000004,-0.000000000000042,-0.010344827586197,0.000000000000040,0.010344827586196,0.011864406779690,-0.000000000000003,2 -11614,11672,11674,11732,0.108620689655200,0.130508474575860,0.113793103448296,0.124576271186000,0.113793103448299,0.136440677965681,0.118965517241396,0.130508474575821,-0.011864406779680,0.000000000000003,-0.000000000000040,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779682,-0.000000000000003,2 -11615,11673,11675,11733,0.108620689655203,0.142372881355543,0.113793103448299,0.136440677965681,0.113793103448302,0.148305084745368,0.118965517241398,0.142372881355506,-0.011864406779686,0.000000000000003,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586195,0.011864406779688,-0.000000000000003,2 -11616,11674,11676,11734,0.108620689655206,0.154237288135219,0.113793103448302,0.148305084745368,0.113793103448305,0.160169491525036,0.118965517241401,0.154237288135185,-0.011864406779667,0.000000000000003,-0.000000000000035,-0.010344827586195,0.000000000000034,0.010344827586194,0.011864406779669,-0.000000000000003,2 -11617,11675,11677,11735,0.108620689655210,0.166101694914891,0.113793103448305,0.160169491525036,0.113793103448308,0.172033898304713,0.118965517241403,0.166101694914858,-0.011864406779676,0.000000000000003,-0.000000000000034,-0.010344827586194,0.000000000000032,0.010344827586193,0.011864406779678,-0.000000000000003,2 -11618,11676,11678,11736,0.108620689655213,0.177966101694576,0.113793103448308,0.172033898304713,0.113793103448311,0.183898305084410,0.118965517241406,0.177966101694546,-0.011864406779696,0.000000000000003,-0.000000000000032,-0.010344827586193,0.000000000000029,0.010344827586192,0.011864406779699,-0.000000000000003,2 -11619,11677,11679,11737,0.108620689655217,0.189830508474258,0.113793103448311,0.183898305084410,0.113793103448314,0.195762711864078,0.118965517241408,0.189830508474230,-0.011864406779667,0.000000000000003,-0.000000000000029,-0.010344827586192,0.000000000000027,0.010344827586191,0.011864406779669,-0.000000000000002,2 -11620,11678,11680,11738,0.108620689655220,0.201694915253944,0.113793103448314,0.195762711864078,0.113793103448317,0.207627118643783,0.118965517241411,0.201694915253918,-0.011864406779704,0.000000000000003,-0.000000000000027,-0.010344827586191,0.000000000000024,0.010344827586190,0.011864406779707,-0.000000000000003,2 -11621,11679,11681,11739,0.108620689655224,0.213559322033630,0.113793103448317,0.207627118643783,0.113793103448320,0.219491525423453,0.118965517241413,0.213559322033606,-0.011864406779669,0.000000000000004,-0.000000000000024,-0.010344827586190,0.000000000000023,0.010344827586189,0.011864406779670,-0.000000000000003,2 -11622,11680,11682,11740,0.108620689655227,0.225423728813310,0.113793103448320,0.219491525423453,0.113793103448323,0.231355932203146,0.118965517241416,0.225423728813289,-0.011864406779692,0.000000000000003,-0.000000000000023,-0.010344827586189,0.000000000000021,0.010344827586188,0.011864406779695,-0.000000000000003,2 -11623,11681,11683,11741,0.108620689655231,0.237288135592997,0.113793103448323,0.231355932203146,0.113793103448326,0.243220338982828,0.118965517241419,0.237288135592978,-0.011864406779681,0.000000000000003,-0.000000000000021,-0.010344827586188,0.000000000000019,0.010344827586187,0.011864406779683,-0.000000000000002,2 -11624,11682,11684,11742,0.108620689655234,0.249152542372677,0.113793103448326,0.243220338982828,0.113793103448329,0.255084745762508,0.118965517241421,0.249152542372660,-0.011864406779679,0.000000000000003,-0.000000000000019,-0.010344827586187,0.000000000000016,0.010344827586187,0.011864406779681,-0.000000000000003,2 -11625,11683,11685,11743,0.108620689655238,0.261016949152362,0.113793103448329,0.255084745762508,0.113793103448332,0.266949152542201,0.118965517241424,0.261016949152347,-0.011864406779692,0.000000000000003,-0.000000000000016,-0.010344827586187,0.000000000000013,0.010344827586186,0.011864406779694,-0.000000000000003,2 -11626,11684,11686,11744,0.108620689655241,0.272881355932043,0.113793103448332,0.266949152542201,0.113793103448335,0.278813559321871,0.118965517241426,0.272881355932030,-0.011864406779669,0.000000000000003,-0.000000000000013,-0.010344827586186,0.000000000000012,0.010344827586185,0.011864406779670,-0.000000000000002,2 -11627,11685,11687,11745,0.108620689655244,0.284745762711729,0.113793103448335,0.278813559321871,0.113793103448338,0.290677966101577,0.118965517241429,0.284745762711719,-0.011864406779705,0.000000000000003,-0.000000000000012,-0.010344827586185,0.000000000000009,0.010344827586184,0.011864406779708,-0.000000000000003,2 -11628,11686,11688,11746,0.108620689655248,0.296610169491417,0.113793103448338,0.290677966101577,0.113793103448341,0.302542372881248,0.118965517241431,0.296610169491408,-0.011864406779670,0.000000000000003,-0.000000000000009,-0.010344827586184,0.000000000000008,0.010344827586183,0.011864406779671,-0.000000000000003,2 -11629,11687,11689,11747,0.108620689655251,0.308474576271099,0.113793103448341,0.302542372881248,0.113793103448344,0.314406779660944,0.118965517241434,0.308474576271092,-0.011864406779695,0.000000000000004,-0.000000000000008,-0.010344827586183,0.000000000000006,0.010344827586182,0.011864406779698,-0.000000000000002,2 -11630,11688,11690,11748,0.108620689655255,0.320338983050786,0.113793103448344,0.314406779660944,0.113793103448347,0.326271186440624,0.118965517241437,0.320338983050782,-0.011864406779679,0.000000000000003,-0.000000000000006,-0.010344827586182,0.000000000000004,0.010344827586181,0.011864406779681,-0.000000000000003,2 -11631,11689,11691,11749,0.108620689655258,0.332203389830468,0.113793103448347,0.326271186440624,0.113793103448350,0.338135593220308,0.118965517241439,0.332203389830465,-0.011864406779683,0.000000000000003,-0.000000000000004,-0.010344827586181,0.000000000000002,0.010344827586180,0.011864406779685,-0.000000000000003,2 -7736,11632,11690,11750,0.113793103448353,0.350000000000000,0.108620689655262,0.344067796610155,0.113793103448350,0.338135593220308,0.118965517241442,0.344067796610154,-0.000000000000000,0.010344827586179,-0.011864406779691,0.000000000000003,-0.000000000000002,-0.010344827586180,0.011864406779693,-0.000000000000003,2 -8952,11633,11693,11751,0.124137931034410,-0.350000000000000,0.118965517241293,-0.344067796610178,0.124137931034412,-0.338135593220357,0.129310344827529,-0.344067796610179,-0.000000000000000,-0.010344827586236,-0.011864406779644,0.000000000000002,0.000000000000002,0.010344827586235,0.011864406779642,-0.000000000000002,2 -11634,11692,11694,11752,0.118965517241296,-0.332203389830538,0.124137931034412,-0.338135593220357,0.124137931034414,-0.326271186440722,0.129310344827531,-0.332203389830541,-0.011864406779637,0.000000000000003,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586235,0.011864406779635,-0.000000000000002,2 -11635,11693,11695,11753,0.118965517241298,-0.320338983050895,0.124137931034414,-0.326271186440722,0.124137931034416,-0.314406779661073,0.129310344827532,-0.320338983050900,-0.011864406779649,0.000000000000003,-0.000000000000004,-0.010344827586235,0.000000000000006,0.010344827586234,0.011864406779647,-0.000000000000002,2 -11636,11694,11696,11754,0.118965517241301,-0.308474576271253,0.124137931034416,-0.314406779661073,0.124137931034419,-0.302542372881440,0.129310344827534,-0.308474576271260,-0.011864406779635,0.000000000000002,-0.000000000000006,-0.010344827586234,0.000000000000008,0.010344827586233,0.011864406779632,-0.000000000000002,2 -11637,11695,11697,11755,0.118965517241303,-0.296610169491611,0.124137931034419,-0.302542372881440,0.124137931034421,-0.290677966101791,0.129310344827536,-0.296610169491620,-0.011864406779650,0.000000000000003,-0.000000000000008,-0.010344827586233,0.000000000000009,0.010344827586232,0.011864406779649,-0.000000000000002,2 -11638,11696,11698,11756,0.118965517241306,-0.284745762711967,0.124137931034421,-0.290677966101791,0.124137931034423,-0.278813559322155,0.129310344827538,-0.284745762711978,-0.011864406779637,0.000000000000003,-0.000000000000009,-0.010344827586232,0.000000000000012,0.010344827586232,0.011864406779634,-0.000000000000002,2 -11639,11697,11699,11757,0.118965517241308,-0.272881355932327,0.124137931034423,-0.278813559322155,0.124137931034425,-0.266949152542513,0.129310344827540,-0.272881355932340,-0.011864406779643,0.000000000000002,-0.000000000000012,-0.010344827586232,0.000000000000013,0.010344827586231,0.011864406779642,-0.000000000000002,2 -11640,11698,11700,11758,0.118965517241311,-0.261016949152691,0.124137931034425,-0.266949152542513,0.124137931034427,-0.255084745762885,0.129310344827541,-0.261016949152706,-0.011864406779629,0.000000000000003,-0.000000000000013,-0.010344827586231,0.000000000000016,0.010344827586230,0.011864406779626,-0.000000000000002,2 -11641,11699,11701,11759,0.118965517241313,-0.249152542373062,0.124137931034427,-0.255084745762885,0.124137931034429,-0.243220338983257,0.129310344827543,-0.249152542373079,-0.011864406779629,0.000000000000003,-0.000000000000016,-0.010344827586230,0.000000000000019,0.010344827586229,0.011864406779627,-0.000000000000002,2 -11642,11700,11702,11760,0.118965517241316,-0.237288135593427,0.124137931034429,-0.243220338983257,0.124137931034432,-0.231355932203617,0.129310344827545,-0.237288135593447,-0.011864406779640,0.000000000000003,-0.000000000000019,-0.010344827586229,0.000000000000021,0.010344827586229,0.011864406779638,-0.000000000000002,2 -11643,11701,11703,11761,0.118965517241319,-0.225423728813788,0.124137931034432,-0.231355932203617,0.124137931034434,-0.219491525423980,0.129310344827547,-0.225423728813809,-0.011864406779638,0.000000000000003,-0.000000000000021,-0.010344827586229,0.000000000000023,0.010344827586228,0.011864406779636,-0.000000000000002,2 -11644,11702,11704,11762,0.118965517241321,-0.213559322034150,0.124137931034434,-0.219491525423980,0.124137931034436,-0.207627118644343,0.129310344827549,-0.213559322034173,-0.011864406779637,0.000000000000003,-0.000000000000023,-0.010344827586228,0.000000000000024,0.010344827586227,0.011864406779636,-0.000000000000002,2 -11645,11703,11705,11763,0.118965517241324,-0.201694915254513,0.124137931034436,-0.207627118644343,0.124137931034438,-0.195762711864709,0.129310344827550,-0.201694915254539,-0.011864406779636,0.000000000000002,-0.000000000000024,-0.010344827586227,0.000000000000028,0.010344827586226,0.011864406779633,-0.000000000000002,2 -11646,11704,11706,11764,0.118965517241326,-0.189830508474879,0.124137931034438,-0.195762711864709,0.124137931034440,-0.183898305085078,0.129310344827552,-0.189830508474908,-0.011864406779632,0.000000000000003,-0.000000000000028,-0.010344827586226,0.000000000000029,0.010344827586226,0.011864406779630,-0.000000000000002,2 -11647,11705,11707,11765,0.118965517241329,-0.177966101695246,0.124137931034440,-0.183898305085078,0.124137931034443,-0.172033898305445,0.129310344827554,-0.177966101695277,-0.011864406779635,0.000000000000003,-0.000000000000029,-0.010344827586226,0.000000000000032,0.010344827586225,0.011864406779632,-0.000000000000002,2 -11648,11706,11708,11766,0.118965517241331,-0.166101694915613,0.124137931034443,-0.172033898305445,0.124137931034445,-0.160169491525813,0.129310344827556,-0.166101694915645,-0.011864406779633,0.000000000000002,-0.000000000000032,-0.010344827586225,0.000000000000034,0.010344827586224,0.011864406779630,-0.000000000000002,2 -11649,11707,11709,11767,0.118965517241334,-0.154237288135981,0.124137931034445,-0.160169491525813,0.124137931034447,-0.148305084746183,0.129310344827558,-0.154237288136015,-0.011864406779631,0.000000000000003,-0.000000000000034,-0.010344827586224,0.000000000000035,0.010344827586223,0.011864406779630,-0.000000000000002,2 -11650,11708,11710,11768,0.118965517241337,-0.142372881356348,0.124137931034447,-0.148305084746183,0.124137931034449,-0.136440677966550,0.129310344827559,-0.142372881356384,-0.011864406779634,0.000000000000002,-0.000000000000035,-0.010344827586223,0.000000000000038,0.010344827586222,0.011864406779632,-0.000000000000002,2 -11651,11709,11711,11769,0.118965517241339,-0.130508474576710,0.124137931034449,-0.136440677966550,0.124137931034451,-0.124576271186908,0.129310344827561,-0.130508474576748,-0.011864406779642,0.000000000000003,-0.000000000000038,-0.010344827586222,0.000000000000039,0.010344827586222,0.011864406779641,-0.000000000000002,2 -11652,11710,11712,11770,0.118965517241342,-0.118644067797071,0.124137931034451,-0.124576271186908,0.124137931034454,-0.112711864407275,0.129310344827563,-0.118644067797112,-0.011864406779634,0.000000000000003,-0.000000000000039,-0.010344827586222,0.000000000000042,0.010344827586221,0.011864406779631,-0.000000000000002,2 -11653,11711,11713,11771,0.118965517241344,-0.106779661017438,0.124137931034454,-0.112711864407275,0.124137931034456,-0.100847457627644,0.129310344827565,-0.106779661017481,-0.011864406779633,0.000000000000003,-0.000000000000042,-0.010344827586221,0.000000000000044,0.010344827586220,0.011864406779631,-0.000000000000002,2 -11654,11712,11714,11772,0.118965517241347,-0.094915254237805,0.124137931034456,-0.100847457627644,0.124137931034458,-0.088983050848011,0.129310344827567,-0.094915254237850,-0.011864406779634,0.000000000000003,-0.000000000000044,-0.010344827586220,0.000000000000046,0.010344827586219,0.011864406779632,-0.000000000000002,2 -11655,11713,11715,11773,0.118965517241349,-0.083050847458171,0.124137931034458,-0.088983050848011,0.124137931034460,-0.077118644068378,0.129310344827568,-0.083050847458218,-0.011864406779634,0.000000000000003,-0.000000000000046,-0.010344827586219,0.000000000000049,0.010344827586219,0.011864406779631,-0.000000000000002,2 -11656,11714,11716,11774,0.118965517241352,-0.071186440678537,0.124137931034460,-0.077118644068378,0.124137931034462,-0.065254237288746,0.129310344827570,-0.071186440678587,-0.011864406779633,0.000000000000002,-0.000000000000049,-0.010344827586219,0.000000000000051,0.010344827586218,0.011864406779631,-0.000000000000002,2 -11657,11715,11717,11775,0.118965517241354,-0.059322033898904,0.124137931034462,-0.065254237288746,0.124137931034464,-0.053389830509114,0.129310344827572,-0.059322033898956,-0.011864406779634,0.000000000000003,-0.000000000000051,-0.010344827586218,0.000000000000053,0.010344827586217,0.011864406779632,-0.000000000000002,2 -11658,11716,11718,11776,0.118965517241357,-0.047457627119270,0.124137931034464,-0.053389830509114,0.124137931034467,-0.041525423729481,0.129310344827574,-0.047457627119325,-0.011864406779634,0.000000000000002,-0.000000000000053,-0.010344827586217,0.000000000000056,0.010344827586217,0.011864406779631,-0.000000000000002,2 -11659,11717,11719,11777,0.118965517241360,-0.035593220339637,0.124137931034467,-0.041525423729481,0.124137931034469,-0.029661016949849,0.129310344827576,-0.035593220339694,-0.011864406779633,0.000000000000003,-0.000000000000056,-0.010344827586217,0.000000000000058,0.010344827586216,0.011864406779631,-0.000000000000002,2 -11660,11718,11720,11778,0.118965517241362,-0.023728813560003,0.124137931034469,-0.029661016949849,0.124137931034471,-0.017796610170216,0.129310344827578,-0.023728813560062,-0.011864406779634,0.000000000000003,-0.000000000000058,-0.010344827586216,0.000000000000060,0.010344827586215,0.011864406779632,-0.000000000000002,2 -11661,11719,11721,11779,0.118965517241365,-0.011864406780370,0.124137931034471,-0.017796610170216,0.124137931034473,-0.005932203390585,0.129310344827579,-0.011864406780431,-0.011864406779633,0.000000000000002,-0.000000000000060,-0.010344827586215,0.000000000000062,0.010344827586214,0.011864406779631,-0.000000000000002,2 -11662,11720,11722,11780,0.118965517241367,-0.000000000000717,0.124137931034473,-0.005932203390585,0.124137931034475,0.005932203389088,0.129310344827581,-0.000000000000779,-0.011864406779673,0.000000000000003,-0.000000000000062,-0.010344827586214,0.000000000000062,0.010344827586214,0.011864406779673,-0.000000000000002,2 -11663,11721,11723,11781,0.118965517241370,0.011864406778959,0.124137931034475,0.005932203389088,0.124137931034478,0.017796610168769,0.129310344827583,0.011864406778898,-0.011864406779680,0.000000000000002,-0.000000000000062,-0.010344827586214,0.000000000000060,0.010344827586213,0.011864406779682,-0.000000000000002,2 -11664,11722,11724,11782,0.118965517241372,0.023728813558644,0.124137931034478,0.017796610168769,0.124137931034480,0.029661016948461,0.129310344827585,0.023728813558585,-0.011864406779690,0.000000000000003,-0.000000000000060,-0.010344827586213,0.000000000000058,0.010344827586212,0.011864406779692,-0.000000000000002,2 -11665,11723,11725,11783,0.118965517241375,0.035593220338332,0.124137931034480,0.029661016948461,0.124137931034482,0.041525423728146,0.129310344827587,0.035593220338275,-0.011864406779684,0.000000000000003,-0.000000000000058,-0.010344827586212,0.000000000000056,0.010344827586211,0.011864406779686,-0.000000000000002,2 -11666,11724,11726,11784,0.118965517241378,0.047457627118017,0.124137931034482,0.041525423728146,0.124137931034484,0.053389830507833,0.129310344827588,0.047457627117962,-0.011864406779686,0.000000000000003,-0.000000000000056,-0.010344827586211,0.000000000000053,0.010344827586210,0.011864406779688,-0.000000000000002,2 -11667,11725,11727,11785,0.118965517241380,0.059322033897705,0.124137931034484,0.053389830507833,0.124137931034486,0.065254237287524,0.129310344827590,0.059322033897652,-0.011864406779690,0.000000000000002,-0.000000000000053,-0.010344827586210,0.000000000000051,0.010344827586210,0.011864406779692,-0.000000000000002,2 -11668,11726,11728,11786,0.118965517241383,0.071186440677390,0.124137931034486,0.065254237287524,0.124137931034488,0.077118644067205,0.129310344827592,0.071186440677340,-0.011864406779680,0.000000000000003,-0.000000000000051,-0.010344827586210,0.000000000000049,0.010344827586209,0.011864406779682,-0.000000000000002,2 -11669,11727,11729,11787,0.118965517241385,0.083050847457075,0.124137931034488,0.077118644067205,0.124137931034491,0.088983050846897,0.129310344827594,0.083050847457027,-0.011864406779690,0.000000000000002,-0.000000000000049,-0.010344827586209,0.000000000000046,0.010344827586208,0.011864406779692,-0.000000000000002,2 -11670,11728,11730,11788,0.118965517241388,0.094915254236765,0.124137931034491,0.088983050846897,0.124137931034493,0.100847457626588,0.129310344827596,0.094915254236720,-0.011864406779690,0.000000000000003,-0.000000000000046,-0.010344827586208,0.000000000000044,0.010344827586208,0.011864406779692,-0.000000000000002,2 -11671,11729,11731,11789,0.118965517241390,0.106779661016450,0.124137931034493,0.100847457626588,0.124137931034495,0.112711864406269,0.129310344827597,0.106779661016407,-0.011864406779680,0.000000000000002,-0.000000000000044,-0.010344827586208,0.000000000000042,0.010344827586207,0.011864406779682,-0.000000000000002,2 -11672,11730,11732,11790,0.118965517241393,0.118644067796135,0.124137931034495,0.112711864406269,0.124137931034497,0.124576271185960,0.129310344827599,0.118644067796094,-0.011864406779690,0.000000000000003,-0.000000000000042,-0.010344827586207,0.000000000000039,0.010344827586206,0.011864406779692,-0.000000000000002,2 -11673,11731,11733,11791,0.118965517241396,0.130508474575821,0.124137931034497,0.124576271185960,0.124137931034499,0.136440677965643,0.129310344827601,0.130508474575782,-0.011864406779682,0.000000000000003,-0.000000000000039,-0.010344827586206,0.000000000000038,0.010344827586205,0.011864406779684,-0.000000000000002,2 -11674,11732,11734,11792,0.118965517241398,0.142372881355506,0.124137931034499,0.136440677965643,0.124137931034502,0.148305084745332,0.129310344827603,0.142372881355469,-0.011864406779688,0.000000000000003,-0.000000000000038,-0.010344827586205,0.000000000000035,0.010344827586204,0.011864406779691,-0.000000000000002,2 -11675,11733,11735,11793,0.118965517241401,0.154237288135185,0.124137931034502,0.148305084745332,0.124137931034504,0.160169491525002,0.129310344827605,0.154237288135150,-0.011864406779669,0.000000000000003,-0.000000000000035,-0.010344827586204,0.000000000000034,0.010344827586204,0.011864406779670,-0.000000000000002,2 -11676,11734,11736,11794,0.118965517241403,0.166101694914858,0.124137931034504,0.160169491525002,0.124137931034506,0.172033898304681,0.129310344827606,0.166101694914825,-0.011864406779678,0.000000000000003,-0.000000000000034,-0.010344827586204,0.000000000000032,0.010344827586203,0.011864406779680,-0.000000000000002,2 -11677,11735,11737,11795,0.118965517241406,0.177966101694546,0.124137931034506,0.172033898304681,0.124137931034508,0.183898305084381,0.129310344827608,0.177966101694515,-0.011864406779699,0.000000000000003,-0.000000000000032,-0.010344827586203,0.000000000000029,0.010344827586202,0.011864406779701,-0.000000000000002,2 -11678,11736,11738,11796,0.118965517241408,0.189830508474230,0.124137931034508,0.183898305084381,0.124137931034510,0.195762711864050,0.129310344827610,0.189830508474201,-0.011864406779669,0.000000000000002,-0.000000000000029,-0.010344827586202,0.000000000000027,0.010344827586201,0.011864406779671,-0.000000000000002,2 -11679,11737,11739,11797,0.118965517241411,0.201694915253918,0.124137931034510,0.195762711864050,0.124137931034512,0.207627118643759,0.129310344827612,0.201694915253892,-0.011864406779707,0.000000000000003,-0.000000000000027,-0.010344827586201,0.000000000000024,0.010344827586201,0.011864406779710,-0.000000000000002,2 -11680,11738,11740,11798,0.118965517241413,0.213559322033606,0.124137931034512,0.207627118643759,0.124137931034515,0.219491525423430,0.129310344827614,0.213559322033583,-0.011864406779670,0.000000000000003,-0.000000000000024,-0.010344827586201,0.000000000000023,0.010344827586200,0.011864406779672,-0.000000000000002,2 -11681,11739,11741,11799,0.118965517241416,0.225423728813289,0.124137931034515,0.219491525423430,0.124137931034517,0.231355932203126,0.129310344827615,0.225423728813267,-0.011864406779695,0.000000000000003,-0.000000000000023,-0.010344827586200,0.000000000000020,0.010344827586199,0.011864406779697,-0.000000000000002,2 -11682,11740,11742,11800,0.118965517241419,0.237288135592978,0.124137931034517,0.231355932203126,0.124137931034519,0.243220338982810,0.129310344827617,0.237288135592958,-0.011864406779683,0.000000000000002,-0.000000000000020,-0.010344827586199,0.000000000000019,0.010344827586198,0.011864406779685,-0.000000000000002,2 -11683,11741,11743,11801,0.118965517241421,0.249152542372660,0.124137931034519,0.243220338982810,0.124137931034521,0.255084745762492,0.129310344827619,0.249152542372642,-0.011864406779681,0.000000000000003,-0.000000000000019,-0.010344827586198,0.000000000000016,0.010344827586198,0.011864406779683,-0.000000000000002,2 -11684,11742,11744,11802,0.118965517241424,0.261016949152347,0.124137931034521,0.255084745762492,0.124137931034523,0.266949152542188,0.129310344827621,0.261016949152332,-0.011864406779694,0.000000000000003,-0.000000000000016,-0.010344827586198,0.000000000000013,0.010344827586197,0.011864406779697,-0.000000000000002,2 -11685,11743,11745,11803,0.118965517241426,0.272881355932030,0.124137931034523,0.266949152542188,0.124137931034526,0.278813559321859,0.129310344827623,0.272881355932017,-0.011864406779670,0.000000000000002,-0.000000000000013,-0.010344827586197,0.000000000000012,0.010344827586196,0.011864406779671,-0.000000000000002,2 -11686,11744,11746,11804,0.118965517241429,0.284745762711719,0.124137931034526,0.278813559321859,0.124137931034528,0.290677966101568,0.129310344827625,0.284745762711708,-0.011864406779708,0.000000000000003,-0.000000000000012,-0.010344827586196,0.000000000000009,0.010344827586195,0.011864406779711,-0.000000000000002,2 -11687,11745,11747,11805,0.118965517241431,0.296610169491408,0.124137931034528,0.290677966101568,0.124137931034530,0.302542372881239,0.129310344827626,0.296610169491399,-0.011864406779671,0.000000000000003,-0.000000000000009,-0.010344827586195,0.000000000000008,0.010344827586195,0.011864406779672,-0.000000000000002,2 -11688,11746,11748,11806,0.118965517241434,0.308474576271092,0.124137931034530,0.302542372881239,0.124137931034532,0.314406779660939,0.129310344827628,0.308474576271085,-0.011864406779698,0.000000000000002,-0.000000000000008,-0.010344827586195,0.000000000000006,0.010344827586194,0.011864406779701,-0.000000000000002,2 -11689,11747,11749,11807,0.118965517241437,0.320338983050782,0.124137931034532,0.314406779660939,0.124137931034534,0.326271186440620,0.129310344827630,0.320338983050777,-0.011864406779681,0.000000000000003,-0.000000000000006,-0.010344827586194,0.000000000000004,0.010344827586193,0.011864406779682,-0.000000000000002,2 -11690,11748,11750,11808,0.118965517241439,0.332203389830465,0.124137931034534,0.326271186440620,0.124137931034537,0.338135593220306,0.129310344827632,0.332203389830461,-0.011864406779685,0.000000000000003,-0.000000000000004,-0.010344827586193,0.000000000000002,0.010344827586192,0.011864406779687,-0.000000000000002,2 -7722,11691,11749,11809,0.124137931034539,0.350000000000000,0.118965517241442,0.344067796610154,0.124137931034537,0.338135593220306,0.129310344827634,0.344067796610153,-0.000000000000000,0.010344827586192,-0.011864406779693,0.000000000000003,-0.000000000000002,-0.010344827586192,0.011864406779695,-0.000000000000002,2 -8953,11692,11752,11810,0.134482758620646,-0.350000000000000,0.129310344827529,-0.344067796610179,0.134482758620647,-0.338135593220359,0.139655172413764,-0.344067796610180,-0.000000000000000,-0.010344827586236,-0.011864406779642,0.000000000000002,0.000000000000002,0.010344827586235,0.011864406779640,-0.000000000000001,2 -11693,11751,11753,11811,0.129310344827531,-0.332203389830541,0.134482758620647,-0.338135593220359,0.134482758620649,-0.326271186440726,0.139655172413765,-0.332203389830544,-0.011864406779635,0.000000000000002,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586234,0.011864406779632,-0.000000000000001,2 -11694,11752,11754,11812,0.129310344827532,-0.320338983050900,0.134482758620649,-0.326271186440726,0.134482758620650,-0.314406779661079,0.139655172413766,-0.320338983050905,-0.011864406779647,0.000000000000002,-0.000000000000004,-0.010344827586234,0.000000000000006,0.010344827586233,0.011864406779646,-0.000000000000001,2 -11695,11753,11755,11813,0.129310344827534,-0.308474576271260,0.134482758620650,-0.314406779661079,0.134482758620651,-0.302542372881448,0.139655172413767,-0.308474576271267,-0.011864406779632,0.000000000000002,-0.000000000000006,-0.010344827586233,0.000000000000008,0.010344827586232,0.011864406779629,-0.000000000000001,2 -11696,11754,11756,11814,0.129310344827536,-0.296610169491620,0.134482758620651,-0.302542372881448,0.134482758620652,-0.290677966101800,0.139655172413768,-0.296610169491629,-0.011864406779649,0.000000000000002,-0.000000000000008,-0.010344827586232,0.000000000000009,0.010344827586231,0.011864406779648,-0.000000000000001,2 -11697,11755,11757,11815,0.129310344827538,-0.284745762711978,0.134482758620652,-0.290677966101800,0.134482758620654,-0.278813559322167,0.139655172413768,-0.284745762711989,-0.011864406779634,0.000000000000002,-0.000000000000009,-0.010344827586231,0.000000000000012,0.010344827586230,0.011864406779632,-0.000000000000001,2 -11698,11756,11758,11816,0.129310344827540,-0.272881355932340,0.134482758620654,-0.278813559322167,0.134482758620655,-0.266949152542526,0.139655172413769,-0.272881355932353,-0.011864406779642,0.000000000000002,-0.000000000000012,-0.010344827586230,0.000000000000014,0.010344827586229,0.011864406779641,-0.000000000000001,2 -11699,11757,11759,11817,0.129310344827541,-0.261016949152706,0.134482758620655,-0.266949152542526,0.134482758620656,-0.255084745762901,0.139655172413770,-0.261016949152721,-0.011864406779626,0.000000000000002,-0.000000000000014,-0.010344827586229,0.000000000000016,0.010344827586228,0.011864406779624,-0.000000000000001,2 -11700,11758,11760,11818,0.129310344827543,-0.249152542373079,0.134482758620656,-0.255084745762901,0.134482758620658,-0.243220338983275,0.139655172413771,-0.249152542373097,-0.011864406779627,0.000000000000002,-0.000000000000016,-0.010344827586228,0.000000000000019,0.010344827586227,0.011864406779625,-0.000000000000001,2 -11701,11759,11761,11819,0.129310344827545,-0.237288135593447,0.134482758620658,-0.243220338983275,0.134482758620659,-0.231355932203638,0.139655172413772,-0.237288135593466,-0.011864406779638,0.000000000000002,-0.000000000000019,-0.010344827586227,0.000000000000020,0.010344827586226,0.011864406779637,-0.000000000000001,2 -11702,11760,11762,11820,0.129310344827547,-0.225423728813809,0.134482758620659,-0.231355932203638,0.134482758620660,-0.219491525424003,0.139655172413772,-0.225423728813831,-0.011864406779636,0.000000000000002,-0.000000000000020,-0.010344827586226,0.000000000000023,0.010344827586225,0.011864406779634,-0.000000000000001,2 -11703,11761,11763,11821,0.129310344827549,-0.213559322034173,0.134482758620660,-0.219491525424003,0.134482758620662,-0.207627118644368,0.139655172413773,-0.213559322034197,-0.011864406779636,0.000000000000002,-0.000000000000023,-0.010344827586225,0.000000000000024,0.010344827586224,0.011864406779634,-0.000000000000001,2 -11704,11762,11764,11822,0.129310344827550,-0.201694915254539,0.134482758620662,-0.207627118644368,0.134482758620663,-0.195762711864736,0.139655172413774,-0.201694915254565,-0.011864406779633,0.000000000000002,-0.000000000000024,-0.010344827586224,0.000000000000027,0.010344827586223,0.011864406779630,-0.000000000000001,2 -11705,11763,11765,11823,0.129310344827552,-0.189830508474908,0.134482758620663,-0.195762711864736,0.134482758620664,-0.183898305085107,0.139655172413775,-0.189830508474936,-0.011864406779630,0.000000000000002,-0.000000000000027,-0.010344827586223,0.000000000000029,0.010344827586222,0.011864406779628,-0.000000000000001,2 -11706,11764,11766,11824,0.129310344827554,-0.177966101695277,0.134482758620664,-0.183898305085107,0.134482758620665,-0.172033898305477,0.139655172413776,-0.177966101695307,-0.011864406779632,0.000000000000002,-0.000000000000029,-0.010344827586222,0.000000000000032,0.010344827586221,0.011864406779629,-0.000000000000001,2 -11707,11765,11767,11825,0.129310344827556,-0.166101694915645,0.134482758620665,-0.172033898305477,0.134482758620667,-0.160169491525847,0.139655172413776,-0.166101694915678,-0.011864406779630,0.000000000000002,-0.000000000000032,-0.010344827586221,0.000000000000034,0.010344827586220,0.011864406779629,-0.000000000000001,2 -11708,11766,11768,11826,0.129310344827558,-0.154237288136015,0.134482758620667,-0.160169491525847,0.134482758620668,-0.148305084746218,0.139655172413777,-0.154237288136050,-0.011864406779630,0.000000000000002,-0.000000000000034,-0.010344827586220,0.000000000000035,0.010344827586219,0.011864406779628,-0.000000000000001,2 -11709,11767,11769,11827,0.129310344827559,-0.142372881356384,0.134482758620668,-0.148305084746218,0.134482758620669,-0.136440677966587,0.139655172413778,-0.142372881356421,-0.011864406779632,0.000000000000002,-0.000000000000035,-0.010344827586219,0.000000000000038,0.010344827586218,0.011864406779629,-0.000000000000001,2 -11710,11768,11770,11828,0.129310344827561,-0.130508474576748,0.134482758620669,-0.136440677966587,0.134482758620671,-0.124576271186948,0.139655172413779,-0.130508474576787,-0.011864406779641,0.000000000000002,-0.000000000000038,-0.010344827586218,0.000000000000040,0.010344827586217,0.011864406779639,-0.000000000000001,2 -11711,11769,11771,11829,0.129310344827563,-0.118644067797112,0.134482758620671,-0.124576271186948,0.134482758620672,-0.112711864407317,0.139655172413780,-0.118644067797153,-0.011864406779631,0.000000000000002,-0.000000000000040,-0.010344827586217,0.000000000000042,0.010344827586216,0.011864406779629,-0.000000000000001,2 -11712,11770,11772,11830,0.129310344827565,-0.106779661017481,0.134482758620672,-0.112711864407317,0.134482758620673,-0.100847457627688,0.139655172413781,-0.106779661017524,-0.011864406779631,0.000000000000002,-0.000000000000042,-0.010344827586216,0.000000000000044,0.010344827586215,0.011864406779629,-0.000000000000001,2 -11713,11771,11773,11831,0.129310344827567,-0.094915254237850,0.134482758620673,-0.100847457627688,0.134482758620675,-0.088983050848057,0.139655172413781,-0.094915254237895,-0.011864406779632,0.000000000000002,-0.000000000000044,-0.010344827586215,0.000000000000046,0.010344827586214,0.011864406779629,-0.000000000000001,2 -11714,11772,11774,11832,0.129310344827568,-0.083050847458218,0.134482758620675,-0.088983050848057,0.134482758620676,-0.077118644068427,0.139655172413782,-0.083050847458266,-0.011864406779631,0.000000000000002,-0.000000000000046,-0.010344827586214,0.000000000000049,0.010344827586213,0.011864406779629,-0.000000000000001,2 -11715,11773,11775,11833,0.129310344827570,-0.071186440678587,0.134482758620676,-0.077118644068427,0.134482758620677,-0.065254237288797,0.139655172413783,-0.071186440678637,-0.011864406779631,0.000000000000002,-0.000000000000049,-0.010344827586213,0.000000000000051,0.010344827586212,0.011864406779629,-0.000000000000001,2 -11716,11774,11776,11834,0.129310344827572,-0.059322033898956,0.134482758620677,-0.065254237288797,0.134482758620679,-0.053389830509167,0.139655172413784,-0.059322033899008,-0.011864406779632,0.000000000000002,-0.000000000000051,-0.010344827586212,0.000000000000053,0.010344827586211,0.011864406779629,-0.000000000000001,2 -11717,11775,11777,11835,0.129310344827574,-0.047457627119325,0.134482758620679,-0.053389830509167,0.134482758620680,-0.041525423729537,0.139655172413785,-0.047457627119379,-0.011864406779631,0.000000000000002,-0.000000000000053,-0.010344827586211,0.000000000000056,0.010344827586210,0.011864406779629,-0.000000000000001,2 -11718,11776,11778,11836,0.129310344827576,-0.035593220339694,0.134482758620680,-0.041525423729537,0.134482758620681,-0.029661016949907,0.139655172413785,-0.035593220339750,-0.011864406779631,0.000000000000002,-0.000000000000056,-0.010344827586210,0.000000000000058,0.010344827586209,0.011864406779629,-0.000000000000001,2 -11719,11777,11779,11837,0.129310344827578,-0.023728813560062,0.134482758620681,-0.029661016949907,0.134482758620682,-0.017796610170277,0.139655172413786,-0.023728813560121,-0.011864406779632,0.000000000000002,-0.000000000000058,-0.010344827586209,0.000000000000060,0.010344827586208,0.011864406779629,-0.000000000000001,2 -11720,11778,11780,11838,0.129310344827579,-0.011864406780431,0.134482758620682,-0.017796610170277,0.134482758620684,-0.005932203390647,0.139655172413787,-0.011864406780493,-0.011864406779631,0.000000000000002,-0.000000000000060,-0.010344827586208,0.000000000000062,0.010344827586207,0.011864406779629,-0.000000000000001,2 -11721,11779,11781,11839,0.129310344827581,-0.000000000000779,0.134482758620684,-0.005932203390647,0.134482758620685,0.005932203389026,0.139655172413788,-0.000000000000842,-0.011864406779673,0.000000000000002,-0.000000000000062,-0.010344827586207,0.000000000000062,0.010344827586206,0.011864406779673,-0.000000000000001,2 -11722,11780,11782,11840,0.129310344827583,0.011864406778898,0.134482758620685,0.005932203389026,0.134482758620687,0.017796610168709,0.139655172413789,0.011864406778837,-0.011864406779682,0.000000000000002,-0.000000000000062,-0.010344827586206,0.000000000000060,0.010344827586205,0.011864406779684,-0.000000000000001,2 -11723,11781,11783,11841,0.129310344827585,0.023728813558585,0.134482758620687,0.017796610168709,0.134482758620688,0.029661016948403,0.139655172413789,0.023728813558526,-0.011864406779692,0.000000000000002,-0.000000000000060,-0.010344827586205,0.000000000000058,0.010344827586204,0.011864406779695,-0.000000000000001,2 -11724,11782,11784,11842,0.129310344827587,0.035593220338275,0.134482758620688,0.029661016948403,0.134482758620689,0.041525423728090,0.139655172413790,0.035593220338218,-0.011864406779686,0.000000000000002,-0.000000000000058,-0.010344827586204,0.000000000000056,0.010344827586203,0.011864406779689,-0.000000000000001,2 -11725,11783,11785,11843,0.129310344827588,0.047457627117962,0.134482758620689,0.041525423728090,0.134482758620690,0.053389830507780,0.139655172413791,0.047457627117908,-0.011864406779688,0.000000000000002,-0.000000000000056,-0.010344827586203,0.000000000000053,0.010344827586202,0.011864406779691,-0.000000000000001,2 -11726,11784,11786,11844,0.129310344827590,0.059322033897652,0.134482758620690,0.053389830507780,0.134482758620692,0.065254237287473,0.139655172413792,0.059322033897600,-0.011864406779692,0.000000000000002,-0.000000000000053,-0.010344827586202,0.000000000000051,0.010344827586201,0.011864406779695,-0.000000000000001,2 -11727,11785,11787,11845,0.129310344827592,0.071186440677340,0.134482758620692,0.065254237287473,0.134482758620693,0.077118644067156,0.139655172413793,0.071186440677290,-0.011864406779682,0.000000000000002,-0.000000000000051,-0.010344827586201,0.000000000000049,0.010344827586200,0.011864406779684,-0.000000000000001,2 -11728,11786,11788,11846,0.129310344827594,0.083050847457027,0.134482758620693,0.077118644067156,0.134482758620694,0.088983050846850,0.139655172413793,0.083050847456979,-0.011864406779692,0.000000000000002,-0.000000000000049,-0.010344827586200,0.000000000000046,0.010344827586199,0.011864406779695,-0.000000000000001,2 -11729,11787,11789,11847,0.129310344827596,0.094915254236720,0.134482758620694,0.088983050846850,0.134482758620696,0.100847457626544,0.139655172413794,0.094915254236674,-0.011864406779692,0.000000000000002,-0.000000000000046,-0.010344827586199,0.000000000000044,0.010344827586198,0.011864406779695,-0.000000000000001,2 -11730,11788,11790,11848,0.129310344827597,0.106779661016407,0.134482758620696,0.100847457626544,0.134482758620697,0.112711864406227,0.139655172413795,0.106779661016364,-0.011864406779682,0.000000000000002,-0.000000000000044,-0.010344827586198,0.000000000000042,0.010344827586197,0.011864406779684,-0.000000000000001,2 -11731,11789,11791,11849,0.129310344827599,0.118644067796094,0.134482758620697,0.112711864406227,0.134482758620698,0.124576271185921,0.139655172413796,0.118644067796054,-0.011864406779692,0.000000000000002,-0.000000000000042,-0.010344827586197,0.000000000000039,0.010344827586196,0.011864406779695,-0.000000000000001,2 -11732,11790,11792,11850,0.129310344827601,0.130508474575782,0.134482758620698,0.124576271185921,0.134482758620700,0.136440677965605,0.139655172413797,0.130508474575744,-0.011864406779684,0.000000000000002,-0.000000000000039,-0.010344827586196,0.000000000000038,0.010344827586195,0.011864406779685,-0.000000000000001,2 -11733,11791,11793,11851,0.129310344827603,0.142372881355469,0.134482758620700,0.136440677965605,0.134482758620701,0.148305084745297,0.139655172413798,0.142372881355433,-0.011864406779691,0.000000000000002,-0.000000000000038,-0.010344827586195,0.000000000000035,0.010344827586194,0.011864406779693,-0.000000000000001,2 -11734,11792,11794,11852,0.129310344827605,0.154237288135150,0.134482758620701,0.148305084745297,0.134482758620702,0.160169491524968,0.139655172413798,0.154237288135115,-0.011864406779670,0.000000000000002,-0.000000000000035,-0.010344827586194,0.000000000000034,0.010344827586193,0.011864406779672,-0.000000000000001,2 -11735,11793,11795,11853,0.129310344827606,0.166101694914825,0.134482758620702,0.160169491524968,0.134482758620703,0.172033898304649,0.139655172413799,0.166101694914792,-0.011864406779680,0.000000000000002,-0.000000000000034,-0.010344827586193,0.000000000000032,0.010344827586192,0.011864406779682,-0.000000000000001,2 -11736,11794,11796,11854,0.129310344827608,0.177966101694515,0.134482758620703,0.172033898304649,0.134482758620705,0.183898305084352,0.139655172413800,0.177966101694485,-0.011864406779701,0.000000000000002,-0.000000000000032,-0.010344827586192,0.000000000000029,0.010344827586191,0.011864406779704,-0.000000000000001,2 -11737,11795,11797,11855,0.129310344827610,0.189830508474201,0.134482758620705,0.183898305084352,0.134482758620706,0.195762711864023,0.139655172413801,0.189830508474173,-0.011864406779671,0.000000000000002,-0.000000000000029,-0.010344827586191,0.000000000000027,0.010344827586190,0.011864406779672,-0.000000000000001,2 -11738,11796,11798,11856,0.129310344827612,0.201694915253892,0.134482758620706,0.195762711864023,0.134482758620707,0.207627118643735,0.139655172413802,0.201694915253866,-0.011864406779710,0.000000000000002,-0.000000000000027,-0.010344827586190,0.000000000000024,0.010344827586189,0.011864406779713,-0.000000000000001,2 -11739,11797,11799,11857,0.129310344827614,0.213559322033583,0.134482758620707,0.207627118643735,0.134482758620709,0.219491525423407,0.139655172413802,0.213559322033559,-0.011864406779672,0.000000000000002,-0.000000000000024,-0.010344827586189,0.000000000000023,0.010344827586188,0.011864406779673,-0.000000000000001,2 -11740,11798,11800,11858,0.129310344827615,0.225423728813267,0.134482758620709,0.219491525423407,0.134482758620710,0.231355932203105,0.139655172413803,0.225423728813245,-0.011864406779697,0.000000000000002,-0.000000000000023,-0.010344827586188,0.000000000000020,0.010344827586187,0.011864406779700,-0.000000000000001,2 -11741,11799,11801,11859,0.129310344827617,0.237288135592958,0.134482758620710,0.231355932203105,0.134482758620711,0.243220338982791,0.139655172413804,0.237288135592938,-0.011864406779685,0.000000000000002,-0.000000000000020,-0.010344827586187,0.000000000000019,0.010344827586186,0.011864406779687,-0.000000000000001,2 -11742,11800,11802,11860,0.129310344827619,0.249152542372642,0.134482758620711,0.243220338982791,0.134482758620713,0.255084745762476,0.139655172413805,0.249152542372625,-0.011864406779683,0.000000000000002,-0.000000000000019,-0.010344827586186,0.000000000000016,0.010344827586185,0.011864406779686,-0.000000000000001,2 -11743,11801,11803,11861,0.129310344827621,0.261016949152332,0.134482758620713,0.255084745762476,0.134482758620714,0.266949152542174,0.139655172413806,0.261016949152318,-0.011864406779697,0.000000000000002,-0.000000000000016,-0.010344827586185,0.000000000000013,0.010344827586184,0.011864406779700,-0.000000000000001,2 -11744,11802,11804,11862,0.129310344827623,0.272881355932017,0.134482758620714,0.266949152542174,0.134482758620715,0.278813559321846,0.139655172413807,0.272881355932004,-0.011864406779671,0.000000000000002,-0.000000000000013,-0.010344827586184,0.000000000000012,0.010344827586183,0.011864406779672,-0.000000000000001,2 -11745,11803,11805,11863,0.129310344827625,0.284745762711708,0.134482758620715,0.278813559321846,0.134482758620717,0.290677966101559,0.139655172413807,0.284745762711697,-0.011864406779711,0.000000000000002,-0.000000000000012,-0.010344827586183,0.000000000000009,0.010344827586182,0.011864406779714,-0.000000000000001,2 -11746,11804,11806,11864,0.129310344827626,0.296610169491399,0.134482758620717,0.290677966101559,0.134482758620718,0.302542372881231,0.139655172413808,0.296610169491390,-0.011864406779672,0.000000000000002,-0.000000000000009,-0.010344827586182,0.000000000000008,0.010344827586181,0.011864406779673,-0.000000000000001,2 -11747,11805,11807,11865,0.129310344827628,0.308474576271085,0.134482758620718,0.302542372881231,0.134482758620719,0.314406779660933,0.139655172413809,0.308474576271078,-0.011864406779701,0.000000000000002,-0.000000000000008,-0.010344827586181,0.000000000000006,0.010344827586180,0.011864406779703,-0.000000000000001,2 -11748,11806,11808,11866,0.129310344827630,0.320338983050777,0.134482758620719,0.314406779660933,0.134482758620721,0.326271186440615,0.139655172413810,0.320338983050772,-0.011864406779682,0.000000000000002,-0.000000000000006,-0.010344827586180,0.000000000000004,0.010344827586179,0.011864406779683,-0.000000000000001,2 -11749,11807,11809,11867,0.129310344827632,0.332203389830461,0.134482758620721,0.326271186440615,0.134482758620722,0.338135593220304,0.139655172413811,0.332203389830458,-0.011864406779687,0.000000000000002,-0.000000000000004,-0.010344827586179,0.000000000000002,0.010344827586178,0.011864406779690,-0.000000000000001,2 -7708,11750,11808,11868,0.134482758620723,0.350000000000000,0.129310344827634,0.344067796610153,0.134482758620722,0.338135593220304,0.139655172413811,0.344067796610152,-0.000000000000000,0.010344827586177,-0.011864406779695,0.000000000000002,-0.000000000000002,-0.010344827586178,0.011864406779697,-0.000000000000001,2 -8954,10099,11751,11811,0.144827586206882,-0.350000000000000,0.150000000000000,-0.344067796610181,0.139655172413764,-0.344067796610180,0.144827586206882,-0.338135593220361,0.000000000000000,-0.010344827586236,0.011864406779637,0.000000000000000,-0.011864406779640,0.000000000000001,0.000000000000002,0.010344827586235,2 -10100,11752,11810,11812,0.150000000000000,-0.332203389830547,0.139655172413765,-0.332203389830544,0.144827586206882,-0.338135593220361,0.144827586206883,-0.326271186440730,0.011864406779630,0.000000000000000,-0.011864406779632,0.000000000000001,-0.000000000000002,-0.010344827586235,0.000000000000004,0.010344827586235,2 -10101,11753,11811,11813,0.150000000000000,-0.320338983050910,0.139655172413766,-0.320338983050905,0.144827586206883,-0.326271186440730,0.144827586206883,-0.314406779661085,0.011864406779645,0.000000000000000,-0.011864406779646,0.000000000000001,-0.000000000000004,-0.010344827586235,0.000000000000006,0.010344827586234,2 -10102,11754,11812,11814,0.150000000000000,-0.308474576271274,0.139655172413767,-0.308474576271267,0.144827586206883,-0.314406779661085,0.144827586206884,-0.302542372881457,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000006,-0.010344827586234,0.000000000000008,0.010344827586233,2 -10103,11755,11813,11815,0.150000000000000,-0.296610169491638,0.139655172413768,-0.296610169491629,0.144827586206884,-0.302542372881457,0.144827586206884,-0.290677966101810,0.011864406779647,0.000000000000000,-0.011864406779648,0.000000000000001,-0.000000000000008,-0.010344827586233,0.000000000000009,0.010344827586232,2 -10104,11756,11814,11816,0.150000000000000,-0.284745762712000,0.139655172413768,-0.284745762711989,0.144827586206884,-0.290677966101810,0.144827586206884,-0.278813559322180,0.011864406779628,0.000000000000000,-0.011864406779632,0.000000000000001,-0.000000000000009,-0.010344827586232,0.000000000000012,0.010344827586231,2 -10105,11757,11815,11817,0.150000000000000,-0.272881355932366,0.139655172413769,-0.272881355932353,0.144827586206884,-0.278813559322180,0.144827586206885,-0.266949152542540,0.011864406779640,0.000000000000000,-0.011864406779641,0.000000000000001,-0.000000000000012,-0.010344827586231,0.000000000000013,0.010344827586230,2 -10106,11758,11816,11818,0.150000000000000,-0.261016949152736,0.139655172413770,-0.261016949152721,0.144827586206885,-0.266949152542540,0.144827586206885,-0.255084745762917,0.011864406779621,0.000000000000000,-0.011864406779624,0.000000000000001,-0.000000000000013,-0.010344827586230,0.000000000000016,0.010344827586230,2 -10107,11759,11817,11819,0.150000000000000,-0.249152542373114,0.139655172413771,-0.249152542373097,0.144827586206885,-0.255084745762917,0.144827586206886,-0.243220338983294,0.011864406779622,0.000000000000000,-0.011864406779625,0.000000000000001,-0.000000000000016,-0.010344827586230,0.000000000000019,0.010344827586229,2 -10108,11760,11818,11820,0.150000000000000,-0.237288135593486,0.139655172413772,-0.237288135593466,0.144827586206886,-0.243220338983294,0.144827586206886,-0.231355932203658,0.011864406779635,0.000000000000000,-0.011864406779637,0.000000000000001,-0.000000000000019,-0.010344827586229,0.000000000000021,0.010344827586228,2 -10109,11761,11819,11821,0.150000000000000,-0.225423728813853,0.139655172413772,-0.225423728813831,0.144827586206886,-0.231355932203658,0.144827586206886,-0.219491525424026,0.011864406779631,0.000000000000000,-0.011864406779634,0.000000000000001,-0.000000000000021,-0.010344827586228,0.000000000000023,0.010344827586227,2 -10110,11762,11820,11822,0.150000000000000,-0.213559322034221,0.139655172413773,-0.213559322034197,0.144827586206886,-0.219491525424026,0.144827586206887,-0.207627118644392,0.011864406779633,0.000000000000000,-0.011864406779634,0.000000000000001,-0.000000000000023,-0.010344827586227,0.000000000000024,0.010344827586226,2 -10111,11763,11821,11823,0.150000000000000,-0.201694915254591,0.139655172413774,-0.201694915254565,0.144827586206887,-0.207627118644392,0.144827586206887,-0.195762711864764,0.011864406779627,0.000000000000000,-0.011864406779630,0.000000000000001,-0.000000000000024,-0.010344827586226,0.000000000000027,0.010344827586225,2 -10112,11764,11822,11824,0.150000000000000,-0.189830508474964,0.139655172413775,-0.189830508474936,0.144827586206887,-0.195762711864764,0.144827586206888,-0.183898305085136,0.011864406779627,0.000000000000000,-0.011864406779628,0.000000000000001,-0.000000000000027,-0.010344827586225,0.000000000000029,0.010344827586225,2 -10113,11765,11823,11825,0.150000000000000,-0.177966101695338,0.139655172413776,-0.177966101695307,0.144827586206888,-0.183898305085136,0.144827586206888,-0.172033898305508,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000029,-0.010344827586225,0.000000000000032,0.010344827586224,2 -10114,11766,11824,11826,0.150000000000000,-0.166101694915711,0.139655172413776,-0.166101694915678,0.144827586206888,-0.172033898305508,0.144827586206888,-0.160169491525881,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000032,-0.010344827586224,0.000000000000034,0.010344827586223,2 -10115,11767,11825,11827,0.150000000000000,-0.154237288136084,0.139655172413777,-0.154237288136050,0.144827586206888,-0.160169491525881,0.144827586206889,-0.148305084746253,0.011864406779627,0.000000000000000,-0.011864406779628,0.000000000000001,-0.000000000000034,-0.010344827586223,0.000000000000035,0.010344827586222,2 -10116,11768,11826,11828,0.150000000000000,-0.142372881356458,0.139655172413778,-0.142372881356421,0.144827586206889,-0.148305084746253,0.144827586206889,-0.136440677966625,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000035,-0.010344827586222,0.000000000000038,0.010344827586221,2 -10117,11769,11827,11829,0.150000000000000,-0.130508474576826,0.139655172413779,-0.130508474576787,0.144827586206889,-0.136440677966625,0.144827586206890,-0.124576271186987,0.011864406779637,0.000000000000000,-0.011864406779639,0.000000000000001,-0.000000000000038,-0.010344827586221,0.000000000000039,0.010344827586221,2 -10118,11770,11828,11830,0.150000000000000,-0.118644067797194,0.139655172413780,-0.118644067797153,0.144827586206890,-0.124576271186987,0.144827586206890,-0.112711864407359,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000039,-0.010344827586221,0.000000000000042,0.010344827586220,2 -10119,11771,11829,11831,0.150000000000000,-0.106779661017567,0.139655172413781,-0.106779661017524,0.144827586206890,-0.112711864407359,0.144827586206890,-0.100847457627732,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000042,-0.010344827586220,0.000000000000044,0.010344827586219,2 -10120,11772,11830,11832,0.150000000000000,-0.094915254237940,0.139655172413781,-0.094915254237895,0.144827586206890,-0.100847457627732,0.144827586206891,-0.088983050848104,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000044,-0.010344827586219,0.000000000000046,0.010344827586218,2 -10121,11773,11831,11833,0.150000000000000,-0.083050847458314,0.139655172413782,-0.083050847458266,0.144827586206891,-0.088983050848104,0.144827586206891,-0.077118644068476,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000046,-0.010344827586218,0.000000000000049,0.010344827586217,2 -10122,11774,11832,11834,0.150000000000000,-0.071186440678687,0.139655172413783,-0.071186440678637,0.144827586206891,-0.077118644068476,0.144827586206892,-0.065254237288848,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000049,-0.010344827586217,0.000000000000051,0.010344827586217,2 -10123,11775,11833,11835,0.150000000000000,-0.059322033899060,0.139655172413784,-0.059322033899008,0.144827586206892,-0.065254237288848,0.144827586206892,-0.053389830509221,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000051,-0.010344827586217,0.000000000000053,0.010344827586216,2 -10124,11776,11834,11836,0.150000000000000,-0.047457627119434,0.139655172413785,-0.047457627119379,0.144827586206892,-0.053389830509221,0.144827586206893,-0.041525423729593,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000053,-0.010344827586216,0.000000000000056,0.010344827586215,2 -10125,11777,11835,11837,0.150000000000000,-0.035593220339807,0.139655172413785,-0.035593220339750,0.144827586206893,-0.041525423729593,0.144827586206893,-0.029661016949965,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000056,-0.010344827586215,0.000000000000058,0.010344827586214,2 -10126,11778,11836,11838,0.150000000000000,-0.023728813560181,0.139655172413786,-0.023728813560121,0.144827586206893,-0.029661016949965,0.144827586206893,-0.017796610170337,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000058,-0.010344827586214,0.000000000000060,0.010344827586213,2 -10127,11779,11837,11839,0.150000000000000,-0.011864406780554,0.139655172413787,-0.011864406780493,0.144827586206893,-0.017796610170337,0.144827586206894,-0.005932203390709,0.011864406779627,0.000000000000000,-0.011864406779629,0.000000000000001,-0.000000000000060,-0.010344827586213,0.000000000000062,0.010344827586213,2 -10128,11780,11838,11840,0.150000000000000,-0.000000000000904,0.139655172413788,-0.000000000000842,0.144827586206894,-0.005932203390709,0.144827586206894,0.005932203388963,0.011864406779673,0.000000000000000,-0.011864406779673,0.000000000000001,-0.000000000000062,-0.010344827586213,0.000000000000062,0.010344827586212,2 -10129,11781,11839,11841,0.150000000000000,0.011864406778775,0.139655172413789,0.011864406778837,0.144827586206894,0.005932203388963,0.144827586206895,0.017796610168649,0.011864406779686,0.000000000000000,-0.011864406779684,0.000000000000001,-0.000000000000062,-0.010344827586212,0.000000000000060,0.010344827586211,2 -10130,11782,11840,11842,0.150000000000000,0.023728813558467,0.139655172413789,0.023728813558526,0.144827586206895,0.017796610168649,0.144827586206895,0.029661016948345,0.011864406779697,0.000000000000000,-0.011864406779695,0.000000000000001,-0.000000000000060,-0.010344827586211,0.000000000000058,0.010344827586210,2 -10131,11783,11841,11843,0.150000000000000,0.035593220338161,0.139655172413790,0.035593220338218,0.144827586206895,0.029661016948345,0.144827586206895,0.041525423728034,0.011864406779691,0.000000000000000,-0.011864406779689,0.000000000000001,-0.000000000000058,-0.010344827586210,0.000000000000056,0.010344827586209,2 -10132,11784,11842,11844,0.150000000000000,0.047457627117853,0.139655172413791,0.047457627117908,0.144827586206895,0.041525423728034,0.144827586206896,0.053389830507726,0.011864406779693,0.000000000000000,-0.011864406779691,0.000000000000001,-0.000000000000056,-0.010344827586209,0.000000000000053,0.010344827586208,2 -10133,11785,11843,11845,0.150000000000000,0.059322033897548,0.139655172413792,0.059322033897600,0.144827586206896,0.053389830507726,0.144827586206896,0.065254237287422,0.011864406779697,0.000000000000000,-0.011864406779695,0.000000000000001,-0.000000000000053,-0.010344827586208,0.000000000000051,0.010344827586208,2 -10134,11786,11844,11846,0.150000000000000,0.071186440677240,0.139655172413793,0.071186440677290,0.144827586206896,0.065254237287422,0.144827586206897,0.077118644067108,0.011864406779686,0.000000000000000,-0.011864406779684,0.000000000000001,-0.000000000000051,-0.010344827586208,0.000000000000049,0.010344827586207,2 -10135,11787,11845,11847,0.150000000000000,0.083050847456932,0.139655172413793,0.083050847456979,0.144827586206897,0.077118644067108,0.144827586206897,0.088983050846804,0.011864406779697,0.000000000000000,-0.011864406779695,0.000000000000001,-0.000000000000049,-0.010344827586207,0.000000000000046,0.010344827586206,2 -10136,11788,11846,11848,0.150000000000000,0.094915254236629,0.139655172413794,0.094915254236674,0.144827586206897,0.088983050846804,0.144827586206897,0.100847457626500,0.011864406779697,0.000000000000000,-0.011864406779695,0.000000000000001,-0.000000000000046,-0.010344827586206,0.000000000000044,0.010344827586205,2 -10137,11789,11847,11849,0.150000000000000,0.106779661016321,0.139655172413795,0.106779661016364,0.144827586206897,0.100847457626500,0.144827586206898,0.112711864406185,0.011864406779686,0.000000000000000,-0.011864406779684,0.000000000000001,-0.000000000000044,-0.010344827586205,0.000000000000042,0.010344827586204,2 -10138,11790,11848,11850,0.150000000000000,0.118644067796013,0.139655172413796,0.118644067796054,0.144827586206898,0.112711864406185,0.144827586206898,0.124576271185881,0.011864406779697,0.000000000000000,-0.011864406779695,0.000000000000001,-0.000000000000042,-0.010344827586204,0.000000000000040,0.010344827586204,2 -10139,11791,11849,11851,0.150000000000000,0.130508474575705,0.139655172413797,0.130508474575744,0.144827586206898,0.124576271185881,0.144827586206899,0.136440677965567,0.011864406779687,0.000000000000000,-0.011864406779685,0.000000000000001,-0.000000000000040,-0.010344827586204,0.000000000000038,0.010344827586203,2 -10140,11792,11850,11852,0.150000000000000,0.142372881355396,0.139655172413798,0.142372881355433,0.144827586206899,0.136440677965567,0.144827586206899,0.148305084745261,0.011864406779695,0.000000000000000,-0.011864406779693,0.000000000000001,-0.000000000000038,-0.010344827586203,0.000000000000035,0.010344827586202,2 -10141,11793,11851,11853,0.150000000000000,0.154237288135081,0.139655172413798,0.154237288135115,0.144827586206899,0.148305084745261,0.144827586206899,0.160169491524935,0.011864406779674,0.000000000000000,-0.011864406779672,0.000000000000001,-0.000000000000035,-0.010344827586202,0.000000000000034,0.010344827586201,2 -10142,11794,11852,11854,0.150000000000000,0.166101694914759,0.139655172413799,0.166101694914792,0.144827586206899,0.160169491524935,0.144827586206900,0.172033898304617,0.011864406779684,0.000000000000000,-0.011864406779682,0.000000000000001,-0.000000000000034,-0.010344827586201,0.000000000000032,0.010344827586200,2 -10143,11795,11853,11855,0.150000000000000,0.177966101694455,0.139655172413800,0.177966101694485,0.144827586206900,0.172033898304617,0.144827586206900,0.183898305084323,0.011864406779707,0.000000000000000,-0.011864406779704,0.000000000000001,-0.000000000000032,-0.010344827586200,0.000000000000029,0.010344827586200,2 -10144,11796,11854,11856,0.150000000000000,0.189830508474145,0.139655172413801,0.189830508474173,0.144827586206900,0.183898305084323,0.144827586206901,0.195762711863996,0.011864406779674,0.000000000000000,-0.011864406779672,0.000000000000001,-0.000000000000029,-0.010344827586200,0.000000000000027,0.010344827586199,2 -10145,11797,11855,11857,0.150000000000000,0.201694915253840,0.139655172413802,0.201694915253866,0.144827586206901,0.195762711863996,0.144827586206901,0.207627118643710,0.011864406779716,0.000000000000000,-0.011864406779713,0.000000000000001,-0.000000000000027,-0.010344827586199,0.000000000000024,0.010344827586198,2 -10146,11798,11856,11858,0.150000000000000,0.213559322033535,0.139655172413802,0.213559322033559,0.144827586206901,0.207627118643710,0.144827586206901,0.219491525423384,0.011864406779674,0.000000000000000,-0.011864406779673,0.000000000000001,-0.000000000000024,-0.010344827586198,0.000000000000023,0.010344827586197,2 -10147,11799,11857,11859,0.150000000000000,0.225423728813224,0.139655172413803,0.225423728813245,0.144827586206901,0.219491525423384,0.144827586206902,0.231355932203085,0.011864406779702,0.000000000000000,-0.011864406779700,0.000000000000001,-0.000000000000023,-0.010344827586197,0.000000000000021,0.010344827586196,2 -10148,11800,11858,11860,0.150000000000000,0.237288135592919,0.139655172413804,0.237288135592938,0.144827586206902,0.231355932203085,0.144827586206902,0.243220338982773,0.011864406779689,0.000000000000000,-0.011864406779687,0.000000000000001,-0.000000000000021,-0.010344827586196,0.000000000000019,0.010344827586195,2 -10149,11801,11859,11861,0.150000000000000,0.249152542372607,0.139655172413805,0.249152542372625,0.144827586206902,0.243220338982773,0.144827586206903,0.255084745762459,0.011864406779688,0.000000000000000,-0.011864406779686,0.000000000000001,-0.000000000000019,-0.010344827586195,0.000000000000016,0.010344827586195,2 -10150,11802,11860,11862,0.150000000000000,0.261016949152303,0.139655172413806,0.261016949152318,0.144827586206903,0.255084745762459,0.144827586206903,0.266949152542161,0.011864406779703,0.000000000000000,-0.011864406779700,0.000000000000001,-0.000000000000016,-0.010344827586195,0.000000000000014,0.010344827586194,2 -10151,11803,11861,11863,0.150000000000000,0.272881355931991,0.139655172413807,0.272881355932004,0.144827586206903,0.266949152542161,0.144827586206904,0.278813559321834,0.011864406779674,0.000000000000000,-0.011864406779672,0.000000000000001,-0.000000000000014,-0.010344827586194,0.000000000000012,0.010344827586193,2 -10152,11804,11862,11864,0.150000000000000,0.284745762711686,0.139655172413807,0.284745762711697,0.144827586206904,0.278813559321834,0.144827586206904,0.290677966101549,0.011864406779717,0.000000000000000,-0.011864406779714,0.000000000000001,-0.000000000000012,-0.010344827586193,0.000000000000009,0.010344827586192,2 -10153,11805,11863,11865,0.150000000000000,0.296610169491382,0.139655172413808,0.296610169491390,0.144827586206904,0.290677966101549,0.144827586206904,0.302542372881223,0.011864406779674,0.000000000000000,-0.011864406779673,0.000000000000001,-0.000000000000009,-0.010344827586192,0.000000000000008,0.010344827586191,2 -10154,11806,11864,11866,0.150000000000000,0.308474576271071,0.139655172413809,0.308474576271078,0.144827586206904,0.302542372881223,0.144827586206905,0.314406779660927,0.011864406779706,0.000000000000000,-0.011864406779703,0.000000000000001,-0.000000000000008,-0.010344827586191,0.000000000000005,0.010344827586191,2 -10155,11807,11865,11867,0.150000000000000,0.320338983050767,0.139655172413810,0.320338983050772,0.144827586206905,0.314406779660927,0.144827586206905,0.326271186440611,0.011864406779685,0.000000000000000,-0.011864406779683,0.000000000000001,-0.000000000000005,-0.010344827586191,0.000000000000004,0.010344827586190,2 -10156,11808,11866,11868,0.150000000000000,0.332203389830455,0.139655172413811,0.332203389830458,0.144827586206905,0.326271186440611,0.144827586206906,0.338135593220302,0.011864406779692,0.000000000000000,-0.011864406779690,0.000000000000001,-0.000000000000004,-0.010344827586190,0.000000000000002,0.010344827586189,2 -7694,10157,11809,11867,0.144827586206906,0.350000000000000,0.150000000000000,0.344067796610150,0.139655172413811,0.344067796610152,0.144827586206906,0.338135593220302,-0.000000000000000,0.010344827586188,0.011864406779699,-0.000000000000000,-0.011864406779697,0.000000000000001,-0.000000000000002,-0.010344827586189,2 diff --git a/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.geo b/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.geo index 3bf455eb..3bb978a3 100644 --- a/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.geo +++ b/examples_hpc/sym_hohlraum/mesh/sym_hohlraum.geo @@ -1,5 +1,6 @@ -n_recombine = 15; -n_recombine_coarse = 15; +n_recombine = 20; +n_recombine_coarse = n_recombine /2 ; +n_prog = 1.05; cl_fine = 0.1; @@ -324,9 +325,9 @@ Curve Loop(29) = {19, 20, 21, 22}; //+ Plane Surface(29) = {29}; //+ -Physical Curve("void", 87) = {71, 72, 73, 74, 8, 52, 3, 79, 80, 82, 84, 86, 1, 35, 5, 69,29, 30, 31, 28}; +Physical Curve("void", 87) = {71, 72, 73, 74, 8, 52, 3, 79, 80, 82, 84, 86, 1, 35, 5, 69}; //+ -// Physical Curve("inflow", 88) = {}; +Physical Curve("inflow", 88) = {29, 30, 31, 28}; //+ Transfinite Surface {4}; //+ @@ -388,15 +389,15 @@ Transfinite Surface {29}; //+ Transfinite Curve {44, 43, 41, 61} = n_recombine Using Progression 1; // + all vertical -Transfinite Curve {71, 65, 56, 57, 58, 84, 72, 66, 45, 19, 21, 40, 59, 82, 73, 67, 55, 54, 60, 80} = n_recombine_coarse *2 Using Progression 1; +Transfinite Curve {71, 65, 56, 57, 58, 84, 72, 66, 45, 19, 21, 40, 59, 82, 73, 67, 55, 54, 60, 80} = n_recombine_coarse * 8 Using Progression 1; //+ horizontal wide -Transfinite Curve {35, 34, 46, 22, 20, 42, 53, 52} = n_recombine_coarse * 4 Using Progression 1; +Transfinite Curve {35, 34, 46, 22, 20, 42, 53, 52} = n_recombine_coarse * 16 Using Progression 1; //+ horizontal small -Transfinite Curve {28, 47, 62, 63, 50, 31, 30, 38, 68, 64, 33, 29} = n_recombine_coarse Using Progression 1; +Transfinite Curve {28, 47, 62, 63, 50, 31, 30, 38, 68, 64, 33, 29} = n_recombine_coarse * 4 Using Progression 1; //+ inlets -Transfinite Curve {69, 32, 10, 13, 48, 86, 79, 51, 17, 15, 37, 74} = n_recombine / 3 Using Progression 1; +Transfinite Curve {69, 32, 10, 13, 48, 86, 79, 51, 17, 15, 37, 74} = n_recombine_coarse Using Progression 1; //+ upper and lower bound -Transfinite Curve {5, 70, 77, 76, 75, 8, 3, 78, 81, 83, 85, 1} = n_recombine_coarse / 2 Using Progression 1; +Transfinite Curve {5, 70, 77, 76, 75, 8, 3, 78, 81, 83, 85, 1} = n_recombine_coarse Using Progression 1; Recombine Surface "*"; // Define meshing options diff --git a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg index c6a67356..7063255b 100644 --- a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg +++ b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg @@ -26,31 +26,27 @@ N_SAMPLING_PTS_LINE_GREEN = 100 % % ---- Solver specifications ---- % -SPHERICAL_BASIS = SPHERICAL_HARMONICS -% -CFL_NUMBER = 0.2 +CFL_NUMBER = 0.7 TIME_FINAL = 2 SOLVER = SN_SOLVER -RECONS_ORDER = 1 -%RK_STAGES = 1 +RECONS_ORDER = 2 +TIME_INTEGRATION_ORDER = 2 % % ---- Boundary Conditions ---- % -BC_NEUMANN = ( void ) +BC_NEUMANN = ( void, inflow ) % % ---- Quadrature ---- % QUAD_TYPE = LEBEDEV -QUAD_ORDER = 19 +QUAD_ORDER = 9 % % ----- Output ---- % VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 1 -SCREEN_OUTPUT = (ITER, WALL_TIME, MASS, RMS_FLUX ) -% VAR_ABSORPTION_GREEN, CUR_OUTFLOW, TOTAL_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE) -SCREEN_OUTPUT_FREQUENCY = 1 -HISTORY_OUTPUT = (ITER, WALL_TIME, MASS, RMS_FLUX ) -%VAR_ABSORPTION_GREEN, VAR_ABSORPTION_GREEN_LINE, CUR_OUTFLOW, TOTAL_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE) +VOLUME_OUTPUT_FREQUENCY = 20 +SCREEN_OUTPUT = ( ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, VAR_ABSORPTION_GREEN) +SCREEN_OUTPUT_FREQUENCY = 20 +HISTORY_OUTPUT = ( ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, VAR_ABSORPTION_GREEN) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 6cb20531..6f82b537 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -298,7 +298,7 @@ void Mesh::ComputeSlopes( unsigned nq, VectorVector& psiDerX, VectorVector& psiD psiDerX[idx_cell][idx_sys] = 0.0; psiDerY[idx_cell][idx_sys] = 0.0; if( _cellBoundaryTypes[idx_cell] != 2 ) continue; // skip ghost cells - // compute derivative by summing over cell boundary + // compute derivative by summing over cell boundary using Green Gauss Theorem for( unsigned idx_nbr = 0; idx_nbr < _cellNeighbors[idx_cell].size(); ++idx_nbr ) { psiDerX[idx_cell][idx_sys] += 0.5 * ( psi[idx_cell][idx_sys] + psi[_cellNeighbors[idx_cell][idx_nbr]][idx_sys] ) * _cellNormals[idx_cell][idx_nbr][0]; @@ -333,14 +333,18 @@ void Mesh::ComputeLimiter( double const eps = 1e-10; #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _numCells; idx_cell++ ) { - for( unsigned idx_sys = 0; idx_sys < nSys; idx_sys++ ) { - double r = 0.0; - if( _cellBoundaryTypes[idx_cell] != 2 ) { + if( _cellBoundaryTypes[idx_cell] != 2 ) { + for( unsigned idx_sys = 0; idx_sys < nSys; idx_sys++ ) { limiter[idx_cell][idx_sys] = 0.0; // turn to first order on boundaries - continue; // skip computation } + continue; // skip computation + } + + for( unsigned idx_sys = 0; idx_sys < nSys; idx_sys++ ) { + double r = 0.0; double minSol = sol[idx_cell][idx_sys]; double maxSol = sol[idx_cell][idx_sys]; + Vector localLimiter( _numNodesPerCell, 0.0 ); for( unsigned idx_nbr = 0; idx_nbr < _cellNeighbors[idx_cell].size(); idx_nbr++ ) { // Compute ptswise max and minimum solultion values of current and neighbor cells @@ -352,12 +356,13 @@ void Mesh::ComputeLimiter( minSol = sol[glob_nbr][idx_sys]; } } + for( unsigned idx_nbr = 0; idx_nbr < _cellNeighbors[idx_cell].size(); idx_nbr++ ) { // Compute value at interface midpoint, called gaussPt double gaussPt = 0.0; // gauss point is at cell vertex - gaussPt = solDx[idx_cell][idx_sys] * ( _nodes[_cells[idx_cell][idx_nbr]][0] - _cellMidPoints[idx_cell][0] ) + - solDy[idx_cell][idx_sys] * ( _nodes[_cells[idx_cell][idx_nbr]][1] - _cellMidPoints[idx_cell][1] ); + gaussPt = 0.5 * ( solDx[idx_cell][idx_sys] * ( _nodes[_cells[idx_cell][idx_nbr]][0] - _cellMidPoints[idx_cell][0] ) + + solDy[idx_cell][idx_sys] * ( _nodes[_cells[idx_cell][idx_nbr]][1] - _cellMidPoints[idx_cell][1] ) ); // Compute limiter input if( std::abs( gaussPt ) > eps ) { From 5e56dec72f94c79f8280295bb0519f16e4322c29 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 27 Feb 2024 16:08:55 -0500 Subject: [PATCH 096/155] temporarily changed mesh resolution --- src/common/io.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/common/io.cpp b/src/common/io.cpp index 1c21b568..61224c62 100644 --- a/src/common/io.cpp +++ b/src/common/io.cpp @@ -345,7 +345,7 @@ void LoadConnectivityFromFile( const std::string inputFile, for( unsigned j = 0; j < correctedNodesPerCell; ++j ) { std::getline( iss, line, ',' ); std::istringstream converter( line ); - converter >> std::fixed >> setprecision( 15 ) >> cellNeighbors[i][j]; + converter >> std::fixed >> setprecision( 12 ) >> cellNeighbors[i][j]; } // Load cellInterfaceMidPoints @@ -355,8 +355,8 @@ void LoadConnectivityFromFile( const std::string inputFile, for( unsigned k = 0; k < nDim; ++k ) { std::getline( iss, line, ',' ); std::istringstream converter( line ); - converter >> std::fixed >> setprecision( 15 ) >> cellInterfaceMidPoints[i][j][k]; // Replace with appropriate member of Vector - // std::cout << std::fixed << setprecision( 15 ) << cellInterfaceMidPoints[i][j][k] << std::endl; + converter >> std::fixed >> setprecision( 12 ) >> cellInterfaceMidPoints[i][j][k]; // Replace with appropriate member of Vector + // std::cout << std::fixed << setprecision( 12 ) << cellInterfaceMidPoints[i][j][k] << std::endl; } } // Load cellNormals @@ -366,7 +366,7 @@ void LoadConnectivityFromFile( const std::string inputFile, for( unsigned k = 0; k < nDim; ++k ) { std::getline( iss, line, ',' ); std::istringstream converter( line ); - converter >> std::fixed >> setprecision( 15 ) >> cellNormals[i][j][k]; // Replace with appropriate member of Vector + converter >> std::fixed >> setprecision( 12 ) >> cellNormals[i][j][k]; // Replace with appropriate member of Vector } } // Load cellBoundaryTypes @@ -393,7 +393,7 @@ void WriteConnecitivityToFile( const std::string outputFile, // cellBoundaryTypes (1 element), (tranlated from BOUNDARY_TYPE to unsigned) std::ofstream outFile( outputFile ); - outFile << std::fixed << setprecision( 15 ); + outFile << std::fixed << setprecision( 12 ); // const std::size_t bufferSize = 10000; // Adjust as needed // outFile.rdbuf()->pubsetbuf( 0, bufferSize ); if( outFile.is_open() ) { From c3bbc7c9488d01a64f591a0136d36cdbc31255d8 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 27 Feb 2024 16:39:29 -0500 Subject: [PATCH 097/155] added quarterhohlraum --- include/common/globalconstants.hpp | 2 + src/common/config.cpp | 61 ++++++++++++++++++++++++++++++ src/problems/problembase.cpp | 8 ++++ 3 files changed, 71 insertions(+) diff --git a/include/common/globalconstants.hpp b/include/common/globalconstants.hpp index 807af135..8ec78634 100644 --- a/include/common/globalconstants.hpp +++ b/include/common/globalconstants.hpp @@ -104,6 +104,7 @@ enum PROBLEM_NAME { PROBLEM_Meltingcube1D, PROBLEM_Hohlraum, PROBLEM_SymmetricHohlraum, + PROBLEM_QuarterHohlraum, PROBLEM_Lattice }; @@ -120,6 +121,7 @@ inline std::map Problem_Map{ { "LINESOURCE", PROBLEM_ { "MELTINGCUBE_1D", PROBLEM_Meltingcube1D }, { "HOHLRAUM", PROBLEM_Hohlraum }, { "SYMMETRIC_HOHLRAUM", PROBLEM_SymmetricHohlraum }, + { "QUARTER_HOHLRAUM", PROBLEM_QuarterHohlraum }, { "LATTICE", PROBLEM_Lattice } }; // Kernel name diff --git a/src/common/config.cpp b/src/common/config.cpp index bd7823d3..03dd1ddc 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -777,6 +777,36 @@ void Config::SetPostprocessing() { it = std::find( legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput] ); + if( it == legalOutputs.end() ) { + std::string foundKey = findKey( ScalarOutput_Map, _screenOutput[idx_screenOutput] ); + ErrorMessages::Error( + "HERE Illegal output field <" + foundKey + + "> for option SCREEN_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, \n" + "TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, CUR_OUTFLOW, \n " + "TOTAL_OUTFLOW, MAX_OUTFLOW, VAR_ABSORPTION_GREEN \n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + case PROBLEM_QuarterHohlraum: + legalOutputs = { ITER, + WALL_TIME, + MASS, + RMS_FLUX, + VTK_OUTPUT, + CSV_OUTPUT, + CUR_OUTFLOW, + TOTAL_OUTFLOW, + MAX_OUTFLOW, + TOTAL_PARTICLE_ABSORPTION_CENTER, + TOTAL_PARTICLE_ABSORPTION_VERTICAL, + TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, + PROBE_MOMENT_TIME_TRACE, + VAR_ABSORPTION_GREEN }; + + it = std::find( legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput] ); + if( it == legalOutputs.end() ) { std::string foundKey = findKey( ScalarOutput_Map, _screenOutput[idx_screenOutput] ); ErrorMessages::Error( @@ -906,6 +936,37 @@ void Config::SetPostprocessing() { it = std::find( legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput] ); + if( it == legalOutputs.end() ) { + std::string foundKey = findKey( ScalarOutput_Map, _historyOutput[idx_screenOutput] ); + ErrorMessages::Error( + "Illegal output field <" + foundKey + + "> for option HISTORY_OUTPUT for this test case.\n" + "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, \n " + "TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL,PROBE_MOMENT_TIME_TRACE, CUR_OUTFLOW, \n" + "TOTAL_OUTFLOW, MAX_OUTFLOW , VAR_ABSORPTION_GREEN, VAR_ABSORPTION_GREEN_LINE \n" + "Please check your .cfg file.", + CURRENT_FUNCTION ); + } + break; + case PROBLEM_QuarterHohlraum: + legalOutputs = { ITER, + WALL_TIME, + MASS, + RMS_FLUX, + VTK_OUTPUT, + CSV_OUTPUT, + CUR_OUTFLOW, + TOTAL_OUTFLOW, + MAX_OUTFLOW, + TOTAL_PARTICLE_ABSORPTION_CENTER, + TOTAL_PARTICLE_ABSORPTION_VERTICAL, + TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, + PROBE_MOMENT_TIME_TRACE, + VAR_ABSORPTION_GREEN, + VAR_ABSORPTION_GREEN_LINE }; + + it = std::find( legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput] ); + if( it == legalOutputs.end() ) { std::string foundKey = findKey( ScalarOutput_Map, _historyOutput[idx_screenOutput] ); ErrorMessages::Error( diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index 078421f6..d934a310 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -12,6 +12,7 @@ #include "problems/radiationctimage.hpp" #include "problems/starmapvalidation.hpp" #include "problems/symmetrichohlraum.hpp" +#include "problems/quarterhohlraum.hpp" #include "quadratures/quadraturebase.hpp" #include "toolboxes/errormessages.hpp" @@ -103,6 +104,13 @@ ProblemBase* ProblemBase::Create( Config* settings, Mesh* mesh, QuadratureBase* else return new SymmetricHohlraum( settings, mesh, quad ); } break; + case PROBLEM_QuarterHohlraum: { + if( settings->GetIsMomentSolver() ) + return new QuarterHohlraum_Moment( settings, mesh, quad ); + else + return new QuarterHohlraum( settings, mesh, quad ); + + } break; case PROBLEM_Lattice: { if( settings->GetIsMomentSolver() ) return new Lattice_Moment( settings, mesh, quad ); From dd06ca9b968fe7b04abfe3d27def284f9f744b56 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 27 Feb 2024 16:40:28 -0500 Subject: [PATCH 098/155] added quarterhohlraum cfg and mesh files --- .../mesh/quarter_sym_hohlraum.geo | 142 ++++++++++++++++++ .../quarter_hohlraum/quarter_hohlraum.cfg | 52 +++++++ src/problems/problembase.cpp | 1 - 3 files changed, 194 insertions(+), 1 deletion(-) create mode 100644 examples_hpc/quarter_hohlraum/mesh/quarter_sym_hohlraum.geo create mode 100644 examples_hpc/quarter_hohlraum/quarter_hohlraum.cfg diff --git a/examples_hpc/quarter_hohlraum/mesh/quarter_sym_hohlraum.geo b/examples_hpc/quarter_hohlraum/mesh/quarter_sym_hohlraum.geo new file mode 100644 index 00000000..8b9f4d1a --- /dev/null +++ b/examples_hpc/quarter_hohlraum/mesh/quarter_sym_hohlraum.geo @@ -0,0 +1,142 @@ +cl_fine = 0.01; +cl_finer = 0.005; + +// Outer points +Point(1) = {0.65, 0.65, 0, cl_fine}; +Point(2) = {0., 0.65, 0, cl_fine}; +Point(3) = {0.65, 0., 0, cl_fine}; +Point(4) = {0., 0., 0, cl_fine}; + +// Geometry features +// Black +Point(6) = {0.65, 0.6, 0, cl_fine}; + +Point(13) = {0.65, 0.4, 0, cl_fine}; +Point(14) = {0.6, 0.4, 0, cl_fine}; +Point(15) = {0.6, 0.0, 0, cl_fine}; + + +// Green (and blue) + +Point(19) = {0.2, 0.4, 0, cl_finer}; +Point(20) = {0, 0.4, 0, cl_finer}; +Point(21) = {0.2, 0, 0, cl_finer}; + +Point(22) = {0.15, 0.35, 0, cl_finer}; +Point(23) = {0.0, 0.35, 0, cl_finer}; +Point(24) = {0.15, 0.0, 0, cl_finer}; + + + +// Helper points and lines +Point(27) = {0.6, 0.6, 0, cl_fine}; + + + +Point(44) = { cl_fine, 0.6 , 0, cl_finer*2}; +Point(45) = { 0, 0.6 , 0, cl_finer*2}; +Point(46) = {cl_fine, 0.6 - cl_fine, 0, cl_finer*2}; +Point(47) = {0, 0.6 - cl_fine, 0, cl_finer*2}; + +Point(52) = {0.4 + cl_fine, cl_fine, 0, cl_finer*2}; +Point(53) = {0.4 - cl_fine, cl_fine, 0, cl_finer*2}; +Point(54) = {0.4 + cl_fine, 0, 0, cl_finer*2}; +Point(55) = {0.4 - cl_fine, 0, 0, cl_finer*2}; + +//+ +Line(1) = {2, 1}; +//+ +Line(2) = {1, 6}; +//+ +Line(3) = {6, 13}; +//+ +Line(4) = {13, 3}; +//+ +Line(5) = {3, 15}; +//+ +Line(6) = {54, 55}; +//+ +Line(7) = {55, 21}; +//+ +Line(8) = {21, 24}; +//+ +Line(9) = {24, 4}; +//+ +Line(10) = {4, 23}; +//+ +Line(11) = {23, 20}; +//+ +Line(12) = {20, 47}; +//+ +Line(13) = {47, 45}; +//+ +Line(14) = {45, 2}; + + +Line(15) = {24, 22}; +//+ +Line(16) = {22, 23}; +//+ +Line(17) = {20, 19}; +//+ +Line(18) = {19, 21}; +//+ +Line(19) = {55, 53}; +//+ +Line(20) = {53, 52}; +//+ +Line(21) = {52, 54}; +//+ +Line(22) = {47, 46}; +//+ +Line(23) = {46, 44}; +//+ +Line(24) = {44, 45}; +//+ +Line(25) = {44, 27}; +//+ +Line(26) = {27, 6}; +//+ +Line(27) = {27, 14}; +//+ +Line(28) = {14, 13}; +//+ +Line(29) = {54, 15}; +//+ +Physical Curve("inflow", 60) = {3}; +//+ +Physical Curve("void", 60) += {1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12,13,14, 29}; +//+//+ +Line(30) = {14, 15}; +//+ +Curve Loop(1) = {10, -16, -15, 9}; +//+ +Plane Surface(1) = {1}; +//+ +Curve Loop(2) = {18, 8, 15, 16, 11, 17}; +//+ +Plane Surface(2) = {2}; +//+ +Curve Loop(3) = {7, -18, -17, 12, 22, 23, 25, 27, 30, -29, -21, -20, -19}; +//+ +Plane Surface(3) = {3}; +//+ +Curve Loop(4) = {23, 24, -13, 22}; +//+ +Plane Surface(4) = {4}; +//+ +Curve Loop(5) = {21, 6, 19, 20}; +//+ +Plane Surface(5) = {5}; +//+ +Curve Loop(6) = {5, -30, 28, 4}; +//+ +Plane Surface(6) = {6}; +//+ +Curve Loop(7) = {28, -3, -26, 27}; +//+ +Plane Surface(7) = {7}; +//+ +Curve Loop(8) = {26, -2, -1, -14, -24, 25}; +//+ +Plane Surface(8) = {8}; diff --git a/examples_hpc/quarter_hohlraum/quarter_hohlraum.cfg b/examples_hpc/quarter_hohlraum/quarter_hohlraum.cfg new file mode 100644 index 00000000..e712c231 --- /dev/null +++ b/examples_hpc/quarter_hohlraum/quarter_hohlraum.cfg @@ -0,0 +1,52 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Hohlraum Benchmarking File MN % +% Author % +% Date 27.04.2022 % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% ---- File specifications ---- +% +OUTPUT_DIR = result +% Output file +OUTPUT_FILE = quarter_hohlraum_point01 +% Log directory +LOG_DIR = result/logs +% Log file +LOG_FILE = quarter_hohlraum_point01 +% Mesh File +MESH_FILE = mesh/quarter_hohlraum_point01.su2 +% +% ---- Problem specifications ---- +% +PROBLEM = QUARTER_HOHLRAUM +SPATIAL_DIM = 3 +% +% ---- Design Parameters --- +N_SAMPLING_PTS_LINE_GREEN = 10 +% +% ---- Solver specifications ---- +% +CFL_NUMBER = 0.7 +TIME_FINAL = 2 +SOLVER = SN_SOLVER +RECONS_ORDER = 2 +TIME_INTEGRATION_ORDER = 2 +% +% ---- Boundary Conditions ---- +% +BC_NEUMANN = ( void, inflow ) +% +% ---- Quadrature ---- +% +QUAD_TYPE = LEBEDEV +QUAD_ORDER = 9 +% +% ----- Output ---- +% +VOLUME_OUTPUT = (MINIMAL) +VOLUME_OUTPUT_FREQUENCY = 20 +SCREEN_OUTPUT = ( ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, VAR_ABSORPTION_GREEN) +SCREEN_OUTPUT_FREQUENCY = 20 +HISTORY_OUTPUT = ( ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, VAR_ABSORPTION_GREEN) +HISTORY_OUTPUT_FREQUENCY = 1 + diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index d934a310..f78ad032 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -109,7 +109,6 @@ ProblemBase* ProblemBase::Create( Config* settings, Mesh* mesh, QuadratureBase* return new QuarterHohlraum_Moment( settings, mesh, quad ); else return new QuarterHohlraum( settings, mesh, quad ); - } break; case PROBLEM_Lattice: { if( settings->GetIsMomentSolver() ) From 577730397546453b9e5bc9be024c2bce9c6ddf19 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 27 Feb 2024 18:26:07 -0500 Subject: [PATCH 099/155] added quarter hohlraum for high res simulation speedup --- .../quarter_hohlraum/quarter_hohlraum.cfg | 2 +- examples_hpc/sym_hohlraum/sym_hohlraum.cfg | 6 ++-- src/common/config.cpp | 22 ++++++++++++- src/main.cpp | 3 +- src/problems/problembase.cpp | 2 +- src/problems/symmetrichohlraum.cpp | 21 ++++++------ src/solvers/solverbase.cpp | 33 ++++++++++++------- 7 files changed, 61 insertions(+), 28 deletions(-) diff --git a/examples_hpc/quarter_hohlraum/quarter_hohlraum.cfg b/examples_hpc/quarter_hohlraum/quarter_hohlraum.cfg index e712c231..3a8f74cb 100644 --- a/examples_hpc/quarter_hohlraum/quarter_hohlraum.cfg +++ b/examples_hpc/quarter_hohlraum/quarter_hohlraum.cfg @@ -22,7 +22,7 @@ PROBLEM = QUARTER_HOHLRAUM SPATIAL_DIM = 3 % % ---- Design Parameters --- -N_SAMPLING_PTS_LINE_GREEN = 10 +N_SAMPLING_PTS_LINE_GREEN = 100 % % ---- Solver specifications ---- % diff --git a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg index 7063255b..a363f9f1 100644 --- a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg +++ b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg @@ -8,13 +8,13 @@ % OUTPUT_DIR = result % Output file -OUTPUT_FILE = symmetric_hohlraum +OUTPUT_FILE = sym_hohlraum_v2_point01_ % Log directory LOG_DIR = result/logs % Log file -LOG_FILE = symmetric_hohlraum +LOG_FILE = sym_hohlraum_v2_point01_ % Mesh File -MESH_FILE = mesh/sym_hohlraum.su2 +MESH_FILE = mesh/sym_hohlraum_v2_point01.su2 % % ---- Problem specifications ---- % diff --git a/src/common/config.cpp b/src/common/config.cpp index 03dd1ddc..8db5f793 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -863,6 +863,17 @@ void Config::SetPostprocessing() { for( unsigned i = 0; i < 4; i++ ) _screenOutput.push_back( PROBE_MOMENT_TIME_TRACE ); } } + if( _problemName == PROBLEM_QuarterHohlraum ) { + std::vector::iterator it; + + it = find( _screenOutput.begin(), _screenOutput.end(), PROBE_MOMENT_TIME_TRACE ); + + if( it != _screenOutput.end() ) { + _screenOutput.erase( it ); + _nScreenOutput += 1; // extend the screen output by the number of probing points + for( unsigned i = 0; i < 2; i++ ) _screenOutput.push_back( PROBE_MOMENT_TIME_TRACE ); + } + } } // History Output Postprocessing @@ -948,7 +959,7 @@ void Config::SetPostprocessing() { CURRENT_FUNCTION ); } break; - case PROBLEM_QuarterHohlraum: + case PROBLEM_QuarterHohlraum: legalOutputs = { ITER, WALL_TIME, MASS, @@ -1023,6 +1034,15 @@ void Config::SetPostprocessing() { for( unsigned i = 0; i < 12; i++ ) _historyOutput.push_back( PROBE_MOMENT_TIME_TRACE ); } } + if( _problemName == PROBLEM_QuarterHohlraum ) { + std::vector::iterator it; + it = find( _historyOutput.begin(), _historyOutput.end(), PROBE_MOMENT_TIME_TRACE ); + if( it != _historyOutput.end() ) { + _historyOutput.erase( it ); + _nHistoryOutput += 5; // extend the screen output by the number of probing points + for( unsigned i = 0; i < 6; i++ ) _historyOutput.push_back( PROBE_MOMENT_TIME_TRACE ); + } + } } // Mesh postprocessing diff --git a/src/main.cpp b/src/main.cpp index 50c653f9..c935cc31 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4,8 +4,8 @@ * @version: 0.1 */ -#include #include +#include #include "common/config.hpp" #include "common/io.hpp" @@ -46,6 +46,7 @@ int main( int argc, char** argv ) { else { // Build solver SolverBase* solver = SolverBase::Create( config ); + std::cout << "here\n"; // Run solver and export solver->Solve(); diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index f78ad032..03a24d43 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -9,10 +9,10 @@ #include "problems/linesource.hpp" #include "problems/meltingcube.hpp" #include "problems/phantomimage.hpp" +#include "problems/quarterhohlraum.hpp" #include "problems/radiationctimage.hpp" #include "problems/starmapvalidation.hpp" #include "problems/symmetrichohlraum.hpp" -#include "problems/quarterhohlraum.hpp" #include "quadratures/quadraturebase.hpp" #include "toolboxes/errormessages.hpp" diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 4a328236..665bc06e 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -185,18 +185,18 @@ void SymmetricHohlraum::ComputeTotalAbsorptionHohlraum( double dT ) { } void SymmetricHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { - bool green1, green2, green3, green4; double a_g = 0.0; _varAbsorptionHohlraumGreen = 0.0; - double x, y; unsigned nCells = _mesh->GetNumCells(); auto cellMids = _mesh->GetCellMidPoints(); std::vector areas = _mesh->GetCellAreas(); +#pragma omp parallel reduction( + : a_g ) for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { - x = cellMids[idx_cell][0]; - y = cellMids[idx_cell][1]; + double x = cellMids[idx_cell][0]; + double y = cellMids[idx_cell][1]; + bool green1, green2, green3, green4; green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) @@ -207,9 +207,12 @@ void SymmetricHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { a_g += ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * scalarFlux[idx_cell] * areas[idx_cell]; } } + +#pragma omp parallel reduction( + : _varAbsorptionHohlraumGreen ) for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { - x = cellMids[idx_cell][0]; - y = cellMids[idx_cell][1]; + double x = cellMids[idx_cell][0]; + double y = cellMids[idx_cell][1]; + bool green1, green2, green3, green4; green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) @@ -249,11 +252,9 @@ void SymmetricHohlraum::SetProbingCellsLineGreen() { unsigned nHorizontalProbingCells = (unsigned)std::ceil( _nProbingCellsLineGreen / 2 * ( horizontalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); - unsigned nVerticalProbingCells = - (unsigned)std::ceil( _nProbingCellsLineGreen / 2 * ( verticalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); + unsigned nVerticalProbingCells = _nProbingCellsLineGreen - nHorizontalProbingCells; - _nProbingCellsLineGreen = 2 * nVerticalProbingCells + 2 * nHorizontalProbingCells; - _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); + _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); // printf( "here" ); diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index c37e19b9..c07f92fc 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -44,7 +44,6 @@ SolverBase::SolverBase( Config* settings ) { // set time step or energy step _dT = ComputeTimeStep( _settings->GetCFL() ); - if( _settings->GetIsCSD() ) { // carefull: This gets overwritten by almost all subsolvers double minE = 5e-5; // 2.231461e-01; // 5e-5; @@ -66,7 +65,8 @@ SolverBase::SolverBase( Config* settings ) { // setup problem and store frequently used params _problem = ProblemBase::Create( _settings, _mesh, _quadrature ); - _sol = _problem->SetupIC(); + + _sol = _problem->SetupIC(); _solNew = _sol; // setup temporary sol variable if( !_settings->GetIsCSD() ) { @@ -87,7 +87,6 @@ SolverBase::SolverBase( Config* settings ) { // initialize Helper Variables _scalarFluxNew = Vector( _nCells, 0 ); _scalarFlux = Vector( _nCells, 0 ); - // write density _density = _problem->GetDensity( _mesh->GetCellMidPoints() ); } @@ -119,7 +118,6 @@ SolverBase* SolverBase::Create( Config* settings ) { void SolverBase::Solve() { // --- Preprocessing --- - PrepareVolumeOutput(); DrawPreSolverOutput(); @@ -262,10 +260,12 @@ void SolverBase::PrepareScreenOutput() { _screenOutputFieldNames[idx_field] = "Probe 1 u_0"; idx_field++; _screenOutputFieldNames[idx_field] = "Probe 2 u_0"; - idx_field++; - _screenOutputFieldNames[idx_field] = "Probe 3 u_0"; - idx_field++; - _screenOutputFieldNames[idx_field] = "Probe 4 u_0"; + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + idx_field++; + _screenOutputFieldNames[idx_field] = "Probe 3 u_0"; + idx_field++; + _screenOutputFieldNames[idx_field] = "Probe 4 u_0"; + } break; case VAR_ABSORPTION_GREEN: _screenOutputFieldNames[idx_field] = "Var. absorption green"; break; default: ErrorMessages::Error( "Screen output field not defined!", CURRENT_FUNCTION ); break; @@ -274,6 +274,7 @@ void SolverBase::PrepareScreenOutput() { } void SolverBase::WriteScalarOutput( unsigned idx_iter ) { + unsigned n_probes = 4; unsigned nFields = (unsigned)_settings->GetNScreenOutput(); const VectorVector probingMoments = _problem->GetCurrentProbeMoment(); @@ -310,7 +311,9 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumVertical(); break; case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumHorizontal(); break; case PROBE_MOMENT_TIME_TRACE: - for( unsigned i = 0; i < 4; i++ ) { + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) n_probes = 4; + if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; + for( unsigned i = 0; i < n_probes; i++ ) { _screenOutputFields[idx_field] = probingMoments[i][0]; idx_field++; } @@ -359,7 +362,9 @@ void SolverBase::WriteScalarOutput( unsigned idx_iter ) { case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumVertical(); break; case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFields[idx_field] = _problem->GetTotalAbsorptionHohlraumHorizontal(); break; case PROBE_MOMENT_TIME_TRACE: - for( unsigned i = 0; i < 4; i++ ) { + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) n_probes = 4; + if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; + for( unsigned i = 0; i < n_probes; i++ ) { for( unsigned j = 0; j < 3; j++ ) { _historyOutputFields[idx_field] = probingMoments[i][j]; idx_field++; @@ -443,6 +448,8 @@ void SolverBase::PrintScreenOutput( unsigned idx_iter ) { } void SolverBase::PrepareHistoryOutput() { + unsigned n_probes = 4; + unsigned nFields = (unsigned)_settings->GetNHistoryOutput(); _historyOutputFieldNames.resize( nFields ); @@ -470,7 +477,9 @@ void SolverBase::PrepareHistoryOutput() { case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_vertical_wall"; break; case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_horizontal_wall"; break; case PROBE_MOMENT_TIME_TRACE: - for( unsigned i = 0; i < 4; i++ ) { + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) n_probes = 4; + if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; + for( unsigned i = 0; i < n_probes; i++ ) { for( unsigned j = 0; j < 3; j++ ) { _historyOutputFieldNames[idx_field] = "Probe " + std::to_string( i ) + " u_" + std::to_string( j ); idx_field++; @@ -480,6 +489,8 @@ void SolverBase::PrepareHistoryOutput() { break; case VAR_ABSORPTION_GREEN: _historyOutputFieldNames[idx_field] = "Var. absorption green"; break; case VAR_ABSORPTION_GREEN_LINE: + std::cout << "here\n"; + for( unsigned i = 0; i < _settings->GetNumProbingCellsLineHohlraum(); i++ ) { _historyOutputFieldNames[idx_field] = "Probe Green Line " + std::to_string( i ); idx_field++; From 548ff16c3ba80460e15aa4a8506814ec500c8aa4 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Tue, 27 Feb 2024 18:39:34 -0500 Subject: [PATCH 100/155] added meshing functionality --- .../mesh/make_quarterHohlraum_mesh.sh | 17 +++++++++++++++++ .../mesh/quarter_sym_hohlraum.geo | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 examples_hpc/quarter_hohlraum/mesh/make_quarterHohlraum_mesh.sh diff --git a/examples_hpc/quarter_hohlraum/mesh/make_quarterHohlraum_mesh.sh b/examples_hpc/quarter_hohlraum/mesh/make_quarterHohlraum_mesh.sh new file mode 100644 index 00000000..20d048a4 --- /dev/null +++ b/examples_hpc/quarter_hohlraum/mesh/make_quarterHohlraum_mesh.sh @@ -0,0 +1,17 @@ +#rm lattice_n20.su2 lattice_n20.con +#rm lattice_n40.su2 lattice_n40.con +#rm lattice_n80.su2 lattice_n80.con +rm quarter_sym_hohlraum_p02.su2 quarter_sym_hohlraum_p02.con +rm quarter_sym_hohlraum_p01.su2 quarter_sym_hohlraum_p01.con +rm quarter_sym_hohlraum_p005.su2 quarter_sym_hohlraum_p005.con +rm quarter_sym_hohlraum_p0025.su2 quarter_sym_hohlraum_p0025.con +rm quarter_sym_hohlraum_p00125.su2 quarter_sym_hohlraum_p00125.con +rm quarter_sym_hohlraum_p00075.su2 quarter_sym_hohlraum_p00075.con + + +gmsh quarter_sym_hohlraum_p02.geo -2 -format su2 -save_all -o quarter_sym_hohlraum_p02.su2 +gmsh quarter_sym_hohlraum_p01.geo -2 -format su2 -save_all -o quarter_sym_hohlraum_p01.su2 +gmsh quarter_sym_hohlraum_p005.geo -2 -format su2 -save_all -o quarter_sym_hohlraum_p005.su2 +gmsh quarter_sym_hohlraum_p0025.geo -2 -format su2 -save_all -o quarter_sym_hohlraum_p0025.su2 +gmsh quarter_sym_hohlraum_p00125.geo -2 -format su2 -save_all -o quarter_sym_hohlraum_p00125.su2 +gmsh quarter_sym_hohlraum_p00075.geo -2 -format su2 -save_all -o quarter_sym_hohlraum_p00075.su2 diff --git a/examples_hpc/quarter_hohlraum/mesh/quarter_sym_hohlraum.geo b/examples_hpc/quarter_hohlraum/mesh/quarter_sym_hohlraum.geo index 8b9f4d1a..3703e04d 100644 --- a/examples_hpc/quarter_hohlraum/mesh/quarter_sym_hohlraum.geo +++ b/examples_hpc/quarter_hohlraum/mesh/quarter_sym_hohlraum.geo @@ -1,5 +1,5 @@ cl_fine = 0.01; -cl_finer = 0.005; +cl_finer = cl_fine / 3; // Outer points Point(1) = {0.65, 0.65, 0, cl_fine}; From 57bc65e2031fe6c0fe2af7b62f96e936fd2a690d Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 27 Feb 2024 19:37:34 -0500 Subject: [PATCH 101/155] added quarter hohlraum --- include/problems/quarterhohlraum.hpp | 82 ++++++ src/problems/quarterhohlraum.cpp | 426 +++++++++++++++++++++++++++ 2 files changed, 508 insertions(+) create mode 100644 include/problems/quarterhohlraum.hpp create mode 100644 src/problems/quarterhohlraum.cpp diff --git a/include/problems/quarterhohlraum.hpp b/include/problems/quarterhohlraum.hpp new file mode 100644 index 00000000..e456c337 --- /dev/null +++ b/include/problems/quarterhohlraum.hpp @@ -0,0 +1,82 @@ +#ifndef QUARTER_HOHLRAUM_H +#define QUARTER_HOHLRAUM_H + +#include "problems/problembase.hpp" + +class QuarterHohlraum : public ProblemBase +{ + private: + QuarterHohlraum() = delete; + + std::vector linspace2D( const std::vector& start, const std::vector& end, unsigned num_points ); + + protected: + Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ + Vector _sigmaT; /*!< @brief Vector of total crosssections */ + + std::vector _cornerUpperLeftGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ + std::vector _cornerLowerLeftGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ + std::vector _cornerUpperRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ + std::vector _cornerLowerRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ + double _thicknessGreen; /*!< @brief thickness of the green area */ + + void SetGhostCells() override; /*!< @brief Sets vector of ghost cells for boundary conditions */ + + void SetProbingCellsLineGreen(); /*!< @brief Sets cell ids for probing cells on the green line of the hohlraum */ + + double _curAbsorptionHohlraumCenter; /*!< @brief Absorption of particles at Hohlraum center at current time step */ + double _curAbsorptionHohlraumVertical; /*!< @brief Absorption of particles at Hohlraum vertical walls at current time step */ + double _curAbsorptionHohlraumHorizontal; /*!< @brief Absorption of particles at Hohlraum horizontal walls at current time step */ + double _totalAbsorptionHohlraumCenter; /*!< @brief Absorption of particles at Hohlraum center integrated until current time step */ + double _totalAbsorptionHohlraumVertical; /*!< @brief Absorption of particles at Hohlraum vertical walls integrated until current time step */ + double _totalAbsorptionHohlraumHorizontal; /*!< @brief Absorption of particles at Hohlraum horizontal walls integrated until current time step */ + double _varAbsorptionHohlraumGreen; /*!< @brief Absorption of particles at Hohlraum green center cells integrated at current time step */ + std::vector _probingCells; /*!< @brief Indices of cells that contain a probing sensor */ + VectorVector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ + unsigned _nProbingCellsLineGreen; /*!< @brief Number of sampling cells that contain a probing sensor for the sliding window */ + std::vector _probingCellsLineGreen; /*!< @brief Indices of cells that contain a probing sensor for the sliding window */ + std::vector _absorptionValsIntegrated; /*!< @brief Avg Absorption value at the sampleing points of lineGreen */ + std::vector _varAbsorptionValsIntegrated; /*!< @brief Var in Avg Absorption value at the sampleing points of lineGreen */ + + public: + QuarterHohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ); + virtual ~QuarterHohlraum(); + virtual std::vector GetExternalSource( const Vector& energies ) override; + virtual VectorVector SetupIC() override; + VectorVector GetScatteringXS( const Vector& energies ) override final; + VectorVector GetTotalXS( const Vector& energies ) override final; + const Vector& GetGhostCellValue( int idx_cell, const Vector& cell_sol ) override final; + + void ComputeCurrentAbsorptionHohlraum( const Vector& scalarFlux ) override; /*!< @brief Computes Problemspecific Scalar QOI */ + void ComputeTotalAbsorptionHohlraum( double dT ) override; /*!< @brief Computes Problemspecific Scalar QOI */ + void ComputeCurrentProbeMoment( const VectorVector& solution ) override; /*!< @brief Computes Problemspecific Scalar QOI */ + void ComputeVarAbsorptionGreen( const Vector& scalarFlux ) override; /*!< @brief Computes Problemspecific Scalar QOI */ + void ComputeQOIsGreenProbingLine( const Vector& scalarFlux ) override; + + double GetCurAbsorptionHohlraumCenter() override { return _curAbsorptionHohlraumCenter; }; + double GetCurAbsorptionHohlraumVertical() override { return _curAbsorptionHohlraumVertical; }; + double GetCurAbsorptionHohlraumHorizontal() override { return _curAbsorptionHohlraumHorizontal; }; + double GetTotalAbsorptionHohlraumCenter() override { return _totalAbsorptionHohlraumCenter; }; + double GetTotalAbsorptionHohlraumVertical() override { return _totalAbsorptionHohlraumVertical; }; + double GetTotalAbsorptionHohlraumHorizontal() override { return _totalAbsorptionHohlraumHorizontal; }; + double GetVarAbsorptionHohlraumGreen() override { return _varAbsorptionHohlraumGreen; }; + const VectorVector& GetCurrentProbeMoment() const override { return _probingMoments; }; + virtual const std::vector& GetCurrentProbeValuesGreenLine() const override { return _absorptionValsIntegrated; }; + virtual const std::vector& GetCurrentVarProbeValuesGreenLine() const override { return _varAbsorptionValsIntegrated; }; +}; + +class QuarterHohlraum_Moment : public QuarterHohlraum +{ + private: + QuarterHohlraum_Moment() = delete; + // TODO void SetGhostCells() override final; /*!< @brief Sets vector of ghost cells for boundary conditions */ + + public: + QuarterHohlraum_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ); + ~QuarterHohlraum_Moment(); + std::vector GetExternalSource( const Vector& energies ) override final; + VectorVector SetupIC() override final; + void ComputeCurrentProbeMoment( const VectorVector& solution ) override final; /*!< @brief Computes Problemspecific Scalar QOI */ +}; + +#endif // QUARTER_HOHLRAUM_H diff --git a/src/problems/quarterhohlraum.cpp b/src/problems/quarterhohlraum.cpp new file mode 100644 index 00000000..9a0cc7d6 --- /dev/null +++ b/src/problems/quarterhohlraum.cpp @@ -0,0 +1,426 @@ +#include "common/config.hpp" +#include "common/io.hpp" +#include "common/mesh.hpp" +#include "problems/quarterhohlraum.hpp" +#include "quadratures/qgausslegendretensorized.hpp" +#include "quadratures/quadraturebase.hpp" +#include "solvers/csdpn_starmap_constants.hpp" +#include "toolboxes/errormessages.hpp" +#include "toolboxes/interpolation.hpp" +#include "toolboxes/textprocessingtoolbox.hpp" +#include "velocitybasis/sphericalbase.hpp" +#include "velocitybasis/sphericalharmonics.hpp" + +QuarterHohlraum::QuarterHohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { + _sigmaS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default + _sigmaT = Vector( _mesh->GetNumCells(), 0.1 ); // white area default + + // Geometry of the green capsule + _thicknessGreen = 0.05; + _cornerUpperLeftGreen = { 0., 0.4 - _thicknessGreen / 2.0 }; + _cornerLowerLeftGreen = { 0., +_thicknessGreen / 2.0 }; + _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; + _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, 0. + _thicknessGreen / 2.0 }; + + _curAbsorptionHohlraumCenter = 0.0; + _curAbsorptionHohlraumVertical = 0.0; + _curAbsorptionHohlraumHorizontal = 0.0; + _totalAbsorptionHohlraumCenter = 0.0; + _totalAbsorptionHohlraumVertical = 0.0; + _totalAbsorptionHohlraumHorizontal = 0.0; + _varAbsorptionHohlraumGreen = 0.0; + _probingCells = { + _mesh->GetCellOfKoordinate( 0.4, 0. ), + _mesh->GetCellOfKoordinate( 0., 0.6 ), + }; + _probingMoments = VectorVector( 2, Vector( 3, 0.0 ) ); + _nProbingCellsLineGreen = _settings->GetNumProbingCellsLineHohlraum(); + SetProbingCellsLineGreen(); + _absorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); + _varAbsorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); + +#pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { + // Assumption: Domain size is 1.3x1.3 + double x = _mesh->GetCellMidPoints()[idx_cell][0]; + double y = _mesh->GetCellMidPoints()[idx_cell][1]; + + // red area left + if( x < -0.6 && y > -0.4 && y < 0.4 ) { + _sigmaS[idx_cell] = 95.0; + _sigmaT[idx_cell] = 100.0; + } + // red area right + if( x > 0.6 && y > -0.4 && y < 0.4 ) { + _sigmaS[idx_cell] = 95.0; + _sigmaT[idx_cell] = 100.0; + } + // green area 1 (lower boundary) + if( x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35 ) { + _sigmaS[idx_cell] = 90.0; + _sigmaT[idx_cell] = 100.0; + } + // green area 2 (upper boundary) + if( x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35 ) { + _sigmaS[idx_cell] = 90.0; + _sigmaT[idx_cell] = 100.0; + } + // green area 3 (left boundary) + if( x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35 ) { + _sigmaS[idx_cell] = 90.0; + _sigmaT[idx_cell] = 100.0; + } + // green area 4 (right boundary) + if( x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4 ) { + _sigmaS[idx_cell] = 90.0; + _sigmaT[idx_cell] = 100.0; + } + // blue checkered area + if( x > -0.15 && x < 0.15 && y > -0.35 && y < 0.35 ) { + _sigmaS[idx_cell] = 50.0; + _sigmaT[idx_cell] = 100.0; + } + // black area (upper and lower boundary) + if( y > 0.6 || y < -0.6 ) { + _sigmaS[idx_cell] = 0.0; + _sigmaT[idx_cell] = 100.0; + } + } + SetGhostCells(); +} + +QuarterHohlraum::~QuarterHohlraum() {} + +std::vector QuarterHohlraum::GetExternalSource( const Vector& /* energies */ ) { + VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); + return std::vector( 1u, Q ); +} + +VectorVector QuarterHohlraum::SetupIC() { + VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-10 ) ); + VectorVector cellMids = _mesh->GetCellMidPoints(); + + for( unsigned j = 0; j < cellMids.size(); ++j ) { + psi[j] = 0.0; // zero initial condition + } + return psi; +} + +void QuarterHohlraum::SetGhostCells() { + // Loop over all cells. If its a Dirichlet boundary, add cell to dict with {cell_idx, boundary_value} + auto cellBoundaries = _mesh->GetBoundaryTypes(); + std::map ghostCellMap; + + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector vq = quad->GetPoints(); + unsigned nq = quad->GetNq(); + + Vector left_inflow( nq, 0.0 ); + Vector right_inflow( nq, 0.0 ); + Vector vertical_flow( nq, 0.0 ); + + for( unsigned idx_q = 0; idx_q < nq; idx_q++ ) { + if( vq[idx_q][0] > 0.0 ) left_inflow[idx_q] = 1.0; + if( vq[idx_q][0] < 0.0 ) right_inflow[idx_q] = 1.0; + } + + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { + if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { + double x = _mesh->GetCellMidPoints()[idx_cell][0]; + double y = _mesh->GetCellMidPoints()[idx_cell][1]; + if( y < 0.01 ) + ghostCellMap.insert( { idx_cell, vertical_flow } ); + else if( y > 0.6 ) + ghostCellMap.insert( { idx_cell, vertical_flow } ); + else if( x < 0.01 ) + ghostCellMap.insert( { idx_cell, vertical_flow } ); + else if( x > 0.6 ) + ghostCellMap.insert( { idx_cell, right_inflow } ); + } + } + _ghostCells = ghostCellMap; + + delete quad; +} + +const Vector& QuarterHohlraum::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { + if( _mesh->GetCellMidPoints()[idx_cell][0] < 0.01 || _mesh->GetCellMidPoints()[idx_cell][1] < 0.01 ) return cell_sol; + return _ghostCells[idx_cell]; +} + +VectorVector QuarterHohlraum::GetScatteringXS( const Vector& /* energies */ ) { return VectorVector( 1u, _sigmaS ); } + +VectorVector QuarterHohlraum::GetTotalXS( const Vector& /* energies */ ) { return VectorVector( 1u, _sigmaT ); } + +void QuarterHohlraum::ComputeCurrentAbsorptionHohlraum( const Vector& scalarFlux ) { + _curAbsorptionHohlraumCenter = 0.0; // Green and blue areas of symmetric hohlraum + _curAbsorptionHohlraumVertical = 0.0; // Red areas of symmetric hohlraum + _curAbsorptionHohlraumHorizontal = 0.0; // Black areas of symmetric hohlraum + + unsigned nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + std::vector areas = _mesh->GetCellAreas(); + + for( unsigned idx_cell = 0; idx_cell < nCells; idx_cell++ ) { + double x = _mesh->GetCellMidPoints()[idx_cell][0]; + double y = _mesh->GetCellMidPoints()[idx_cell][1]; + + if( x > -0.2 && x < 0.2 && y > -0.35 && y < 0.35 ) { + _curAbsorptionHohlraumCenter += scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * areas[idx_cell]; + } + if( ( x < -0.6 && y > -0.4 && y < 0.4 ) || ( x > 0.6 && y > -0.4 && y < 0.4 ) ) { + _curAbsorptionHohlraumVertical += scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * areas[idx_cell]; + } + if( y > 0.6 || y < -0.6 ) { + _curAbsorptionHohlraumHorizontal += scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * areas[idx_cell]; + } + } +} + +void QuarterHohlraum::ComputeTotalAbsorptionHohlraum( double dT ) { + _totalAbsorptionHohlraumCenter += _curAbsorptionHohlraumCenter * dT; + _totalAbsorptionHohlraumVertical += _curAbsorptionHohlraumVertical * dT; + _totalAbsorptionHohlraumHorizontal += _curAbsorptionHohlraumHorizontal * dT; +} + +void QuarterHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { + double a_g = 0.0; + _varAbsorptionHohlraumGreen = 0.0; + + unsigned nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + std::vector areas = _mesh->GetCellAreas(); + +#pragma omp parallel reduction( + : a_g ) + for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { + double x = cellMids[idx_cell][0]; + double y = cellMids[idx_cell][1]; + bool green1, green2, green3, green4; + + green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) + green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) + green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) + green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) + + if( green1 || green2 || green3 || green4 ) { + a_g += ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * scalarFlux[idx_cell] * areas[idx_cell]; + } + } + +#pragma omp parallel reduction( + : _varAbsorptionHohlraumGreen ) + for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { + double x = cellMids[idx_cell][0]; + double y = cellMids[idx_cell][1]; + bool green1, green2, green3, green4; + + green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) + green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) + green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) + green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) + + if( green1 || green2 || green3 || green4 ) { + _varAbsorptionHohlraumGreen += ( a_g - scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) * + ( a_g - scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) * areas[idx_cell]; + } + } +} + +void QuarterHohlraum::ComputeCurrentProbeMoment( const VectorVector& solution ) { + const VectorVector& quadPoints = _quad->GetPoints(); + const Vector& weights = _quad->GetWeights(); + unsigned nq = _quad->GetNq(); + + for( unsigned idx_cell = 0; idx_cell < 4; idx_cell++ ) { // Loop over probing cells + _probingMoments[idx_cell][0] = blaze::dot( solution[_probingCells[idx_cell]], weights ); + _probingMoments[idx_cell][1] = 0.0; + _probingMoments[idx_cell][2] = 0.0; + + for( unsigned idx_quad = 0; idx_quad < nq; idx_quad++ ) { + _probingMoments[idx_cell][1] += quadPoints[idx_quad][0] * solution[_probingCells[idx_cell]][idx_quad] * weights[idx_quad]; + _probingMoments[idx_cell][2] += quadPoints[idx_quad][2] * solution[_probingCells[idx_cell]][idx_quad] * weights[idx_quad]; + } + } +} + +void QuarterHohlraum::SetProbingCellsLineGreen() { + + double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); + double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); + + // double dx = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); + + unsigned nHorizontalProbingCells = + (unsigned)std::ceil( _nProbingCellsLineGreen * ( horizontalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); + unsigned nVerticalProbingCells = _nProbingCellsLineGreen - nHorizontalProbingCells; + + _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); + + // printf( "here" ); + + // Sample points on each side of the rectangle + std::vector side3 = linspace2D( _cornerLowerRightGreen, _cornerUpperRightGreen, nVerticalProbingCells ); + std::vector side4 = linspace2D( _cornerUpperRightGreen, _cornerUpperLeftGreen, nHorizontalProbingCells ); + + // printf( "here" ); + // Combine the points from each side + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side3.begin(), side3.end() ); + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side4.begin(), side4.end() ); +} + +void QuarterHohlraum::ComputeQOIsGreenProbingLine( const Vector& scalarFlux ) { + + double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); + double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); + + double dl = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); + double area = dl * _thicknessGreen; + double a_g = 0; + double l_max = _nProbingCellsLineGreen * dl; + + for( unsigned i = 0; i < _nProbingCellsLineGreen; i++ ) { // Loop over probing cells + _absorptionValsIntegrated[i] = + ( _sigmaT[_probingCellsLineGreen[i]] - _sigmaS[_probingCellsLineGreen[i]] ) * scalarFlux[_probingCellsLineGreen[i]] * area; + a_g += _absorptionValsIntegrated[i] / (double)_nProbingCellsLineGreen; + } + for( unsigned i = 0; i < _nProbingCellsLineGreen; i++ ) { // Loop over probing cells + _varAbsorptionValsIntegrated[i] = dl / l_max * ( a_g - _absorptionValsIntegrated[i] ) * ( a_g - _absorptionValsIntegrated[i] ); + } +} + +std::vector QuarterHohlraum::linspace2D( const std::vector& start, const std::vector& end, unsigned num_points ) { + std::vector result; + result.resize( num_points ); + double stepX = ( end[0] - start[0] ) / ( num_points - 1 ); + double stepY = ( end[1] - start[1] ) / ( num_points - 1 ); + + for( unsigned i = 0; i < num_points; ++i ) { + double x = start[0] + i * stepX; + double y = start[1] + i * stepY; + + result[i] = _mesh->GetCellOfKoordinate( x, y ); + } + + return result; +} +// -------------- Moment Symmetric Hohlraum --------------- + +QuarterHohlraum_Moment::QuarterHohlraum_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : QuarterHohlraum( settings, mesh, quad ) {} + +QuarterHohlraum_Moment::~QuarterHohlraum_Moment() {} + +std::vector QuarterHohlraum_Moment::GetExternalSource( const Vector& /* energies */ ) { + // In case of PN, spherical basis is per default SPHERICAL_HARMONICS + + double integrationFactor = ( 4 * M_PI ); + if( _settings->GetDim() == 2 ) { + integrationFactor = M_PI; + } + SphericalBase* tempBase = SphericalBase::Create( _settings ); + unsigned ntotalEquations = tempBase->GetBasisSize(); + + VectorVector Q( _mesh->GetNumCells(), Vector( ntotalEquations, 0.0 ) ); // zero could lead to problems? + VectorVector cellMids = _mesh->GetCellMidPoints(); + + Vector uIC( ntotalEquations, 0 ); + + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS || _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS_ROTATED ) { + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector quadPointsSphere = quad->GetPointsSphere(); + Vector w = quad->GetWeights(); + + double my, phi; + VectorVector moments = VectorVector( quad->GetNq(), Vector( tempBase->GetBasisSize(), 0.0 ) ); + + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + my = quadPointsSphere[idx_quad][0]; + phi = quadPointsSphere[idx_quad][1]; + moments[idx_quad] = tempBase->ComputeSphericalBasis( my, phi ); + } + // Integrate <1*m> to get factors for monomial basis in isotropic scattering + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + uIC += w[idx_quad] * moments[idx_quad]; + } + delete quad; + } + double kinetic_density = 0.0; //_settings->GetSourceMagnitude(); + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( cellMids[j][0] < 0.05 ) { + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS || _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS_ROTATED ) { + Q[j] = kinetic_density * uIC / uIC[0] / integrationFactor; // Remember scaling + } + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + Q[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) + } + } + } + delete tempBase; // Only temporally needed + return std::vector( 1u, Q ); +} + +VectorVector QuarterHohlraum_Moment::SetupIC() { + double integrationFactor = ( 4 * M_PI ); + if( _settings->GetDim() == 2 ) { + integrationFactor = M_PI; + } + // In case of PN, spherical basis is per default SPHERICAL_HARMONICS + SphericalBase* tempBase = SphericalBase::Create( _settings ); + unsigned ntotalEquations = tempBase->GetBasisSize(); + + VectorVector initialSolution( _mesh->GetNumCells(), Vector( ntotalEquations, 0 ) ); // zero could lead to problems? + VectorVector cellMids = _mesh->GetCellMidPoints(); + + Vector tempIC( ntotalEquations, 0 ); + + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS || _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS_ROTATED ) { + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector quadPointsSphere = quad->GetPointsSphere(); + Vector w = quad->GetWeights(); + + double my, phi; + VectorVector moments = VectorVector( quad->GetNq(), Vector( tempBase->GetBasisSize(), 0.0 ) ); + + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + my = quadPointsSphere[idx_quad][0]; + phi = quadPointsSphere[idx_quad][1]; + moments[idx_quad] = tempBase->ComputeSphericalBasis( my, phi ); + } + // Integrate <1*m> to get factors for monomial basis in isotropic scattering + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + tempIC += w[idx_quad] * moments[idx_quad]; + } + delete quad; + } + // Initial condition is dirac impulse at (x,y) = (0,0) ==> constant in angle ==> all moments - exept first - are zero. + double kinetic_density = 1e-4; + // std::vector _boundaryCells; + for( unsigned j = 0; j < cellMids.size(); ++j ) { + + // boundary condition: Source on left side + if( cellMids[j][0] < 0.0 && ( cellMids[j][1] > 0.0 && cellMids[j][1] < 1.3 ) ) { // test case uses ghost cells + kinetic_density = _settings->GetSourceMagnitude(); + _mesh->SetBoundaryType( j, DIRICHLET ); + } + else { + kinetic_density = 1e-4; + } + + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS || _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS_ROTATED ) { + initialSolution[j] = kinetic_density * tempIC / tempIC[0] / integrationFactor; // Remember scaling + } + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + initialSolution[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) + } + } + delete tempBase; // Only temporally needed + return initialSolution; +} + +void QuarterHohlraum_Moment::ComputeCurrentProbeMoment( const VectorVector& solution ) { + for( unsigned idx_cell = 0; idx_cell < 4; idx_cell++ ) { // Loop over probing cells + _probingMoments[idx_cell][0] = solution[_probingCells[idx_cell]][0]; + if( _probingMoments[idx_cell].size() > 1 ) { + _probingMoments[idx_cell][1] = solution[_probingCells[idx_cell]][1]; + _probingMoments[idx_cell][2] = solution[_probingCells[idx_cell]][2]; + } + } +} \ No newline at end of file From 3346237a57397e6b12af80ff5cd0624a5fa6bb34 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Wed, 28 Feb 2024 18:22:24 -0500 Subject: [PATCH 102/155] reflecting boundary conditions for quarter hohlraum --- .../quarter_hohlraum/quarter_hohlraum.cfg | 8 +- include/problems/quarterhohlraum.hpp | 4 + src/problems/quarterhohlraum.cpp | 92 ++++++++++++++++--- src/solvers/solverbase.cpp | 2 - 4 files changed, 88 insertions(+), 18 deletions(-) diff --git a/examples_hpc/quarter_hohlraum/quarter_hohlraum.cfg b/examples_hpc/quarter_hohlraum/quarter_hohlraum.cfg index 3a8f74cb..aac2a2b1 100644 --- a/examples_hpc/quarter_hohlraum/quarter_hohlraum.cfg +++ b/examples_hpc/quarter_hohlraum/quarter_hohlraum.cfg @@ -19,7 +19,7 @@ MESH_FILE = mesh/quarter_hohlraum_point01.su2 % ---- Problem specifications ---- % PROBLEM = QUARTER_HOHLRAUM -SPATIAL_DIM = 3 +SPATIAL_DIM = 2 % % ---- Design Parameters --- N_SAMPLING_PTS_LINE_GREEN = 100 @@ -38,13 +38,13 @@ BC_NEUMANN = ( void, inflow ) % % ---- Quadrature ---- % -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 9 +QUAD_TYPE = GAUSS_LEGENDRE_TENSORIZED_2D +QUAD_ORDER = 4 % % ----- Output ---- % VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 20 +VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = ( ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, VAR_ABSORPTION_GREEN) SCREEN_OUTPUT_FREQUENCY = 20 HISTORY_OUTPUT = ( ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, VAR_ABSORPTION_GREEN) diff --git a/include/problems/quarterhohlraum.hpp b/include/problems/quarterhohlraum.hpp index e456c337..6f89a404 100644 --- a/include/problems/quarterhohlraum.hpp +++ b/include/problems/quarterhohlraum.hpp @@ -9,6 +9,10 @@ class QuarterHohlraum : public ProblemBase QuarterHohlraum() = delete; std::vector linspace2D( const std::vector& start, const std::vector& end, unsigned num_points ); + std::map _ghostCellsReflectingX; /*!< map that indicates if a ghostcell has a fixed value or is a mirroring boundary */ + std::map _ghostCellsReflectingY; /*!< map that indicates if a ghostcell has a fixed value or is a mirroring boundary */ + std::map _quadratureXReflection; /*!< map that gives a Reflection against the x axis for the velocity ordinates */ + std::map _quadratureYReflection; /*!< map that gives a Reflection against the x axis for the velocity ordinates */ protected: Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ diff --git a/src/problems/quarterhohlraum.cpp b/src/problems/quarterhohlraum.cpp index 9a0cc7d6..1faf4d1e 100644 --- a/src/problems/quarterhohlraum.cpp +++ b/src/problems/quarterhohlraum.cpp @@ -1,7 +1,7 @@ +#include "problems/quarterhohlraum.hpp" #include "common/config.hpp" #include "common/io.hpp" #include "common/mesh.hpp" -#include "problems/quarterhohlraum.hpp" #include "quadratures/qgausslegendretensorized.hpp" #include "quadratures/quadraturebase.hpp" #include "solvers/csdpn_starmap_constants.hpp" @@ -110,32 +110,91 @@ void QuarterHohlraum::SetGhostCells() { // Loop over all cells. If its a Dirichlet boundary, add cell to dict with {cell_idx, boundary_value} auto cellBoundaries = _mesh->GetBoundaryTypes(); std::map ghostCellMap; + std::map ghostCellReflMap; + + double tol = 1e-12; // For distance to boundary + + unsigned nGhostcells = 0; + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { + if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { + nGhostcells++; + } + } QuadratureBase* quad = QuadratureBase::Create( _settings ); VectorVector vq = quad->GetPoints(); unsigned nq = quad->GetNq(); - Vector left_inflow( nq, 0.0 ); + if( _settings->GetQuadName() != QUAD_GaussLegendreTensorized2D ) { + ErrorMessages::Error( "This simplified test case only works with symmetric quadrature orders. Use QUAD_GAUSS_LEGENDRE_TENSORIZED_2D", + CURRENT_FUNCTION ); + } + { // Create the symmetry maps for the quadratures + + for( unsigned idx_q = 0; idx_q < nq; idx_q++ ) { + for( unsigned idx_q2 = 0; idx_q2 < nq; idx_q2++ ) { + if( abs( vq[idx_q][0] + vq[idx_q2][0] ) + abs( vq[idx_q][1] - vq[idx_q2][1] ) < tol ) { + _quadratureYReflection[idx_q] = idx_q2; + break; + } + } + for( unsigned idx_q2 = 0; idx_q2 < nq; idx_q2++ ) { + if( abs( vq[idx_q][0] - vq[idx_q2][0] ) + abs( vq[idx_q][1] + vq[idx_q2][1] ) < tol ) { + _quadratureXReflection[idx_q] = idx_q2; + break; + } + } + } + } + if( _quadratureXReflection.size() != nq ) { + ErrorMessages::Error( "Problem with X symmetry of quadrature of this mesh", CURRENT_FUNCTION ); + } + if( _quadratureYReflection.size() != nq ) { + ErrorMessages::Error( "Problem with Y symmetry of quadrature of this mesh", CURRENT_FUNCTION ); + } + Vector right_inflow( nq, 0.0 ); Vector vertical_flow( nq, 0.0 ); for( unsigned idx_q = 0; idx_q < nq; idx_q++ ) { - if( vq[idx_q][0] > 0.0 ) left_inflow[idx_q] = 1.0; if( vq[idx_q][0] < 0.0 ) right_inflow[idx_q] = 1.0; } + auto nodes = _mesh->GetNodes(); + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { double x = _mesh->GetCellMidPoints()[idx_cell][0]; double y = _mesh->GetCellMidPoints()[idx_cell][1]; - if( y < 0.01 ) - ghostCellMap.insert( { idx_cell, vertical_flow } ); - else if( y > 0.6 ) - ghostCellMap.insert( { idx_cell, vertical_flow } ); - else if( x < 0.01 ) - ghostCellMap.insert( { idx_cell, vertical_flow } ); - else if( x > 0.6 ) - ghostCellMap.insert( { idx_cell, right_inflow } ); + + auto localCellNodes = _mesh->GetCells()[idx_cell]; + + _ghostCellsReflectingX[idx_cell] = false; + _ghostCellsReflectingY[idx_cell] = false; + for( unsigned idx_node = 0; idx_node < _mesh->GetNumNodesPerCell(); idx_node++ ) { // Check if corner node is in this cell + if( abs( nodes[localCellNodes[idx_node]][0] ) < tol ) { // close to 0 => left boundary + _ghostCellsReflectingY[idx_cell] = true; + ghostCellMap.insert( { idx_cell, vertical_flow } ); + break; + } + else if( abs( nodes[localCellNodes[idx_node]][0] ) > 0.65 - tol ) { // right boundary + ghostCellMap.insert( { idx_cell, right_inflow } ); + break; + } + else if( abs( nodes[localCellNodes[idx_node]][1] ) < tol ) { // lower boundary + _ghostCellsReflectingX[idx_cell] = true; + ghostCellMap.insert( { idx_cell, vertical_flow } ); + + break; + } + else if( abs( nodes[localCellNodes[idx_node]][1] ) > 0.65 - tol ) { // upper boundary + ghostCellMap.insert( { idx_cell, vertical_flow } ); + break; + } + else { + ErrorMessages::Error( " Problem with ghost cell setup and boundary of this mesh ", CURRENT_FUNCTION ); + } + } } } _ghostCells = ghostCellMap; @@ -144,7 +203,16 @@ void QuarterHohlraum::SetGhostCells() { } const Vector& QuarterHohlraum::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { - if( _mesh->GetCellMidPoints()[idx_cell][0] < 0.01 || _mesh->GetCellMidPoints()[idx_cell][1] < 0.01 ) return cell_sol; + if( _ghostCellsReflectingX[idx_cell] ) { + for( unsigned idx_sys = 0; idx_sys < cell_sol.size(); idx_sys++ ) { + _ghostCells[idx_cell][idx_sys] = cell_sol[_quadratureXReflection[idx_sys]]; + } + } + else if( _ghostCellsReflectingY[idx_cell] ) { + for( unsigned idx_sys = 0; idx_sys < cell_sol.size(); idx_sys++ ) { + _ghostCells[idx_cell][idx_sys] = cell_sol[_quadratureYReflection[idx_sys]]; + } + } return _ghostCells[idx_cell]; } diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index c07f92fc..46dd048d 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -489,8 +489,6 @@ void SolverBase::PrepareHistoryOutput() { break; case VAR_ABSORPTION_GREEN: _historyOutputFieldNames[idx_field] = "Var. absorption green"; break; case VAR_ABSORPTION_GREEN_LINE: - std::cout << "here\n"; - for( unsigned i = 0; i < _settings->GetNumProbingCellsLineHohlraum(); i++ ) { _historyOutputFieldNames[idx_field] = "Probe Green Line " + std::to_string( i ); idx_field++; From 4639f08192fbf531f2e84f3a15649b7f8e9a7737 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 29 Feb 2024 10:06:45 -0500 Subject: [PATCH 103/155] qois for quarter hohlraum --- include/problems/problembase.hpp | 4 +- include/problems/quarterhohlraum.hpp | 3 + src/problems/problembase.cpp | 4 +- src/problems/quarterhohlraum.cpp | 90 +++++++++++++++++++++++++++- src/problems/symmetrichohlraum.cpp | 6 +- src/solvers/solverbase.cpp | 2 +- 6 files changed, 99 insertions(+), 10 deletions(-) diff --git a/include/problems/problembase.hpp b/include/problems/problembase.hpp index 4dcb7666..d78f4495 100644 --- a/include/problems/problembase.hpp +++ b/include/problems/problembase.hpp @@ -158,8 +158,8 @@ class ProblemBase // Computer // Test case agnostic - void ComputeCurrentOutflow( const VectorVector& solution ); /*!< @brief Computes Problemspeagnostic Scalar QOI */ - void ComputeMaxOrdinatewiseOutflow( const VectorVector& solution ); /*!< @brief Computes Problemspeagnostic Scalar QOI */ + virtual void ComputeCurrentOutflow( const VectorVector& solution ); /*!< @brief Computes Problemspeagnostic Scalar QOI */ + virtual void ComputeMaxOrdinatewiseOutflow( const VectorVector& solution ); /*!< @brief Computes Problemspeagnostic Scalar QOI */ void ComputeTotalOutflow( double dT ); /*!< @brief Computes Problemspeagnostic Scalar QOI */ void ComputeMass( const Vector& scalarFlux ); /*!< @brief Computes Problemspeagnostic Scalar QOI */ void ComputeChangeRateFlux( const Vector& scalarFlux, const Vector& scalarFluxNew ); /*!< @brief Computes Problemspeagnostic Scalar QOI */ diff --git a/include/problems/quarterhohlraum.hpp b/include/problems/quarterhohlraum.hpp index 6f89a404..ee48b070 100644 --- a/include/problems/quarterhohlraum.hpp +++ b/include/problems/quarterhohlraum.hpp @@ -57,6 +57,9 @@ class QuarterHohlraum : public ProblemBase void ComputeVarAbsorptionGreen( const Vector& scalarFlux ) override; /*!< @brief Computes Problemspecific Scalar QOI */ void ComputeQOIsGreenProbingLine( const Vector& scalarFlux ) override; + void ComputeCurrentOutflow( const VectorVector& solution ) override; /*!< @brief Computes Problemspeagnostic Scalar QOI */ + void ComputeMaxOrdinatewiseOutflow( const VectorVector& solution ) override; /*!< @brief Computes Problemspeagnostic Scalar QOI */ + double GetCurAbsorptionHohlraumCenter() override { return _curAbsorptionHohlraumCenter; }; double GetCurAbsorptionHohlraumVertical() override { return _curAbsorptionHohlraumVertical; }; double GetCurAbsorptionHohlraumHorizontal() override { return _curAbsorptionHohlraumHorizontal; }; diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index 03a24d43..249ff13a 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -219,7 +219,7 @@ void ProblemBase::ComputeCurrentOutflow( const VectorVector& solution ) { // Iterate over face cell faces -#pragma omp parallel for reduction( + : _curScalarOutflow ) +#pragma omp parallel for default( shared ) reduction( + : _curScalarOutflow ) for( unsigned idx_nbr = 0; idx_nbr < neigbors[idx_cell].size(); ++idx_nbr ) { // Find face that points outward if( neigbors[idx_cell][idx_nbr] == nCells ) { @@ -246,7 +246,7 @@ void ProblemBase::ComputeMass( const Vector& scalarFlux ) { auto areas = _mesh->GetCellAreas(); unsigned nCells = _mesh->GetNumCells(); -#pragma omp parallel reduction( + : _mass ) +#pragma omp parallel for default( shared ) reduction( + : _mass ) for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { _mass += scalarFlux[idx_cell] * areas[idx_cell]; } diff --git a/src/problems/quarterhohlraum.cpp b/src/problems/quarterhohlraum.cpp index 1faf4d1e..d38f9a9d 100644 --- a/src/problems/quarterhohlraum.cpp +++ b/src/problems/quarterhohlraum.cpp @@ -229,6 +229,8 @@ void QuarterHohlraum::ComputeCurrentAbsorptionHohlraum( const Vector& scalarFlux auto cellMids = _mesh->GetCellMidPoints(); std::vector areas = _mesh->GetCellAreas(); +#pragma omp parallel for default( shared ) \ + reduction( + : _curAbsorptionHohlraumCenter, _curAbsorptionHohlraumVertical, _curAbsorptionHohlraumHorizontal ) for( unsigned idx_cell = 0; idx_cell < nCells; idx_cell++ ) { double x = _mesh->GetCellMidPoints()[idx_cell][0]; double y = _mesh->GetCellMidPoints()[idx_cell][1]; @@ -259,7 +261,7 @@ void QuarterHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { auto cellMids = _mesh->GetCellMidPoints(); std::vector areas = _mesh->GetCellAreas(); -#pragma omp parallel reduction( + : a_g ) +#pragma omp parallel default( shared ) reduction( + : a_g ) for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { double x = cellMids[idx_cell][0]; double y = cellMids[idx_cell][1]; @@ -275,7 +277,7 @@ void QuarterHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { } } -#pragma omp parallel reduction( + : _varAbsorptionHohlraumGreen ) +#pragma omp parallel default( shared ) reduction( + : _varAbsorptionHohlraumGreen ) for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { double x = cellMids[idx_cell][0]; double y = cellMids[idx_cell][1]; @@ -298,7 +300,7 @@ void QuarterHohlraum::ComputeCurrentProbeMoment( const VectorVector& solution ) const Vector& weights = _quad->GetWeights(); unsigned nq = _quad->GetNq(); - for( unsigned idx_cell = 0; idx_cell < 4; idx_cell++ ) { // Loop over probing cells + for( unsigned idx_cell = 0; idx_cell < 2; idx_cell++ ) { // Loop over probing cells _probingMoments[idx_cell][0] = blaze::dot( solution[_probingCells[idx_cell]], weights ); _probingMoments[idx_cell][1] = 0.0; _probingMoments[idx_cell][2] = 0.0; @@ -370,6 +372,88 @@ std::vector QuarterHohlraum::linspace2D( const std::vector& st return result; } + +void QuarterHohlraum::ComputeCurrentOutflow( const VectorVector& solution ) { + if( _settings->GetSolverName() == SN_SOLVER || _settings->GetSolverName() == CSD_SN_SOLVER ) { + + _curScalarOutflow = 0.0; + double transportDirection = 0.0; + + auto nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + auto areas = _mesh->GetCellAreas(); + auto neigbors = _mesh->GetNeighbours(); + auto normals = _mesh->GetNormals(); + + auto quadPoints = _quad->GetPoints(); + auto weights = _quad->GetWeights(); + auto nq = _quad->GetNq(); + + // Iterate over boundaries + for( std::map::iterator it = _ghostCells.begin(); it != _ghostCells.end(); ++it ) { + int idx_cell = it->first; // Get Boundary cell index + + // Iterate over face cell faces + if( !_ghostCellsReflectingX[idx_cell] && !_ghostCellsReflectingY[idx_cell] ) { + for( unsigned idx_nbr = 0; idx_nbr < neigbors[idx_cell].size(); ++idx_nbr ) { + // Find face that points outward + if( neigbors[idx_cell][idx_nbr] == nCells ) { + // Iterate over transport directions + for( unsigned idx_quad = 0; idx_quad < nq; ++idx_quad ) { + transportDirection = + normals[idx_cell][idx_nbr][0] * quadPoints[idx_quad][0] + normals[idx_cell][idx_nbr][1] * quadPoints[idx_quad][1]; + // Find outward facing transport directions + if( transportDirection > 0.0 ) { + _curScalarOutflow += transportDirection * solution[idx_cell][idx_quad] * weights[idx_quad]; // Integrate flux + } + } + } + } + } + } + } + // TODO define alternative for Moment solvers +} + +void QuarterHohlraum::ComputeMaxOrdinatewiseOutflow( const VectorVector& solution ) { + if( _settings->GetSolverName() == SN_SOLVER || _settings->GetSolverName() == CSD_SN_SOLVER ) { + double currOrdinatewiseOutflow = 0.0; + double transportDirection = 0.0; + + auto nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + auto areas = _mesh->GetCellAreas(); + auto neigbors = _mesh->GetNeighbours(); + auto normals = _mesh->GetNormals(); + + auto quadPoints = _quad->GetPoints(); + auto weights = _quad->GetWeights(); + auto nq = _quad->GetNq(); + + // Iterate over boundaries + for( std::map::iterator it = _ghostCells.begin(); it != _ghostCells.end(); ++it ) { + int idx_cell = it->first; // Get Boundary cell index + if( !_ghostCellsReflectingX[idx_cell] && !_ghostCellsReflectingY[idx_cell] ) { + for( unsigned idx_nbr = 0; idx_nbr < neigbors[idx_cell].size(); ++idx_nbr ) { + // Find face that points outward + if( neigbors[idx_cell][idx_nbr] == nCells ) { + // Iterate over transport directions + for( unsigned idx_quad = 0; idx_quad < nq; ++idx_quad ) { + transportDirection = + normals[idx_cell][idx_nbr][0] * quadPoints[idx_quad][0] + normals[idx_cell][idx_nbr][1] * quadPoints[idx_quad][1]; + // Find outward facing transport directions + if( transportDirection > 0.0 ) { + currOrdinatewiseOutflow = transportDirection / norm( normals[idx_cell][idx_nbr] ) * solution[idx_cell][idx_quad]; + if( currOrdinatewiseOutflow > _curMaxOrdinateOutflow ) _curMaxOrdinateOutflow = currOrdinatewiseOutflow; + } + } + } + } + } + } + } + // TODO define alternative for Moment solvers +} // -------------- Moment Symmetric Hohlraum --------------- QuarterHohlraum_Moment::QuarterHohlraum_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : QuarterHohlraum( settings, mesh, quad ) {} diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 665bc06e..79fbb272 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -162,6 +162,8 @@ void SymmetricHohlraum::ComputeCurrentAbsorptionHohlraum( const Vector& scalarFl auto cellMids = _mesh->GetCellMidPoints(); std::vector areas = _mesh->GetCellAreas(); +#pragma omp parallel for default( shared ) \ + reduction( + : _curAbsorptionHohlraumCenter, _curAbsorptionHohlraumVertical, _curAbsorptionHohlraumHorizontal ) for( unsigned idx_cell = 0; idx_cell < nCells; idx_cell++ ) { double x = _mesh->GetCellMidPoints()[idx_cell][0]; double y = _mesh->GetCellMidPoints()[idx_cell][1]; @@ -192,7 +194,7 @@ void SymmetricHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { auto cellMids = _mesh->GetCellMidPoints(); std::vector areas = _mesh->GetCellAreas(); -#pragma omp parallel reduction( + : a_g ) +#pragma omp parallel for default( shared ) reduction( + : a_g ) for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { double x = cellMids[idx_cell][0]; double y = cellMids[idx_cell][1]; @@ -208,7 +210,7 @@ void SymmetricHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { } } -#pragma omp parallel reduction( + : _varAbsorptionHohlraumGreen ) +#pragma omp parallel for default( shared ) reduction( + : _varAbsorptionHohlraumGreen ) for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { double x = cellMids[idx_cell][0]; double y = cellMids[idx_cell][1]; diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 46dd048d..4c471e4c 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -621,7 +621,7 @@ void SolverBase::IterPostprocessing( unsigned /*idx_iter*/ ) { _problem->ComputeTotalAbsorptionLattice( _dT ); _problem->ComputeMaxAbsorptionLattice( _scalarFlux ); } - if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum || _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { _problem->ComputeCurrentAbsorptionHohlraum( _scalarFlux ); // Unify _problem->ComputeTotalAbsorptionHohlraum( _dT ); // Unify and parallelize _problem->ComputeCurrentProbeMoment( _sol ); From 42efd7d122cda970bbd37e8d1bdcaaa653e5a176 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 29 Feb 2024 11:27:35 -0500 Subject: [PATCH 104/155] removed cout from main.cpp --- src/main.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index c935cc31..4390e03a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -46,8 +46,6 @@ int main( int argc, char** argv ) { else { // Build solver SolverBase* solver = SolverBase::Create( config ); - std::cout << "here\n"; - // Run solver and export solver->Solve(); solver->PrintVolumeOutput(); From 370eab616a1752c2ba9b4768ff18c4392a3b4b3f Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 29 Feb 2024 16:58:23 -0500 Subject: [PATCH 105/155] fix unit tests --- .../starmap_validation_2nd_reference.vtk | 1128 ++++++++--------- ...linesource_MN_MB_regularized_reference.vtk | 24 +- 2 files changed, 576 insertions(+), 576 deletions(-) diff --git a/tests/input/validation_tests/CSD_PN_solver/starmap_validation_2nd_reference.vtk b/tests/input/validation_tests/CSD_PN_solver/starmap_validation_2nd_reference.vtk index 12a22ea6..ec0ebce3 100644 --- a/tests/input/validation_tests/CSD_PN_solver/starmap_validation_2nd_reference.vtk +++ b/tests/input/validation_tests/CSD_PN_solver/starmap_validation_2nd_reference.vtk @@ -1737,100 +1737,100 @@ radiation%20flux%20density 1 900 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 0 2.5468307699e-06 -8.9182542944e-06 0.00016332556165 -0.00070975264151 -0.0006348471239 -0.0037141946205 0.0048007863367 -0.051599708446 -0.21506110092 -1.1911138074 -3.0142632337 -3.917151096 11.785621516 175.47733592 -175.47733589 11.785621498 -3.9171511046 -3.0142632411 -1.1911138091 -0.21506110142 -0.051599708395 0.004800786318 0.0037141946101 --0.00063484710541 -0.00070975262826 0.00016332556482 -8.9182540184e-06 2.5468304519e-06 0 0 -1.1215289827e-05 0.00018516630904 --0.00097360111714 -0.00025285926978 0.0067439436016 0.016899655087 0.0045177873567 -0.23333802652 -0.81870189558 -2.2182052342 3.0547707382 -263.37288455 3308.9464544 7663.4960206 7663.4960225 3308.946455 263.37288447 3.054770719 -2.2182052424 -0.81870189726 --0.23333802644 0.0045177874486 0.016899655231 0.0067439436213 -0.00025285925014 -0.00097360110382 0.00018516631171 -1.1215289724e-05 0 -0 0.00017377560427 -0.0013040240484 0.00020953250771 0.015040281105 0.034899809741 0.038696805025 0.095871479598 -0.35067613336 -2.6541473198 96.651937478 1710.7524515 13714.746033 22687.972329 18844.550079 18844.550074 22687.972328 13714.746032 -1710.7524508 96.651937403 2.6541473117 -0.35067613375 0.095871480663 0.03869680525 0.034899809774 0.01504028112 0.00020953252458 --0.0013040240379 0.00017377560574 0 0 -0.001397091902 0.00061649274307 0.025274836297 0.076477398907 0.11355494592 -0.2358791298 0.73346429658 17.329761605 365.90142863 5666.4751409 30015.322222 36808.779903 30695.371753 28571.196571 -28571.196572 30695.371731 36808.7799 30015.32222 5666.475139 365.90142844 17.329761597 0.73346429799 0.23587913066 -0.11355494601 0.07647739886 0.025274836298 0.00061649275394 -0.0013970918945 0 0 -0.0022298214331 0.026590664206 -0.12199828297 0.24174602925 0.75738234959 2.5875896345 34.380067669 705.25063397 11647.648989 45440.649764 51919.487632 -33143.215071 33144.211097 35894.005067 35894.005079 33144.211113 33143.215042 51919.487631 45440.649762 11647.648985 -705.2506337 34.380067664 2.5875896356 0.75738234989 0.24174602914 0.12199828296 0.026590664203 -0.0022298214284 0 -0 -0.0082790151714 0.047238978263 0.26027925315 0.81553090177 3.5483047097 42.814772587 935.98342386 18222.243906 -53094.06175 57202.149378 29964.705702 31003.924724 35412.676856 39245.507907 39245.507918 35412.676865 31003.924736 -29964.705679 57202.14938 53094.06175 18222.2439 935.98342354 42.814772576 3.5483047103 0.81553090239 0.26027925322 -0.047238978282 -0.0082790151904 0 0 -0.055659434177 -0.099402351834 0.22316985244 1.376151039 35.580622401 -937.26191203 22348.130358 56505.546517 60135.664595 31372.418106 28529.375614 34336.810805 36825.574923 36751.268864 -36751.268841 36825.574934 34336.810804 28529.375629 31372.418079 60135.664603 56505.546518 22348.130352 937.2619117 -35.580622391 1.3761510387 0.2231698527 -0.099402351881 -0.055659434219 0 0 -0.23414618353 -0.72929219161 --0.7977724533 15.705620353 700.31814838 18152.395524 56654.733153 60353.098293 32260.029271 25645.408245 33190.419566 -37225.757215 36984.861746 31816.061057 31816.061064 36984.861717 37225.757211 33190.419588 25645.408247 32260.029245 -60353.098307 56654.733153 18152.395518 700.31814809 15.705620344 -0.7977724535 -0.72929219163 -0.23414618348 0 -0 -0.77750550892 -2.8639452614 -1.2954039296 353.56942639 11591.785177 53618.870018 62343.551295 33133.189085 -22675.686415 30102.982924 37309.247293 37407.628627 32334.747328 31582.336345 31582.336336 32334.747319 37407.628604 -37309.247293 30102.982957 22675.686414 33133.189058 62343.551301 53618.870018 11591.785173 353.56942622 -1.2954039365 --2.863945263 -0.77750550868 0 0 -2.7325305329 -7.7923107411 88.614503045 5701.09871 45924.803877 -59273.140785 32659.991892 26250.698836 28202.045285 33998.561911 37699.818673 34031.626325 31954.390399 28615.480031 -28615.480037 31954.390384 34031.626325 37699.818664 33998.56191 28202.045322 26250.698837 32659.991858 59273.14079 -45924.803876 5701.0987081 88.614502981 -7.7923107463 -2.7325305338 0 0 -6.9008496706 -3.7543072234 -1717.2503983 29422.414456 53936.896548 34717.737734 27924.487392 28412.125457 34492.091619 36331.051325 31502.88427 -33075.297989 29398.889443 24628.088872 24628.088864 29398.889444 33075.297993 31502.884261 36331.05132 34492.091624 -28412.125478 27924.487391 34717.737709 53936.89655 29422.414455 1717.2503976 -3.754307239 -6.9008496728 0 -0 -8.7090701797 226.62466831 12310.925788 40074.756654 41684.558091 29600.227141 27911.500599 31517.613424 -35000.775882 34530.808603 31679.056669 26992.954231 26153.216557 26990.139657 26990.139643 26153.21654 26992.954238 -31679.056672 34530.808602 35000.775883 31517.613433 27911.500614 29600.227143 41684.558075 40074.756653 12310.925788 -226.62466827 -8.709070184 0 0 -2.0823544521 1858.5113263 24248.969775 40265.251186 30691.267401 -28562.612074 27947.841165 29790.730189 31047.221829 33110.317178 29051.494462 22591.754769 25199.253595 32270.5746 -32270.574589 25199.253589 22591.754764 29051.494475 33110.317183 31047.221824 29790.730192 27947.841164 28562.612076 -30691.267401 40265.251179 24248.969774 1858.5113271 -2.0823544595 0 0 15.897688962 6778.8519502 -22409.130199 30474.804282 31266.496739 28734.927318 25100.056528 24186.882319 29194.132489 27992.039542 27500.047839 -27441.40047 29961.883256 28686.090822 28686.090832 29961.88327 27441.400473 27500.047836 27992.039554 29194.132486 -24186.882311 25100.056523 28734.927323 31266.496736 30474.804276 22409.130199 6778.8519488 15.897688937 0 -0 15.466499186 7832.6429473 21233.182137 26534.503988 26652.333388 21447.852702 23434.456637 29547.148041 -27288.260108 26024.86582 26509.431264 34311.284053 34681.330746 32598.295611 32598.29559 34681.330752 34311.284064 -26509.431275 26024.86582 27288.260104 29547.148051 23434.45665 21447.852703 26652.333373 26534.503986 21233.182142 -7832.6429457 15.466499173 0 0 5.4992311548 2801.8050163 20873.66603 24994.025769 15325.39358 -14042.925979 21120.174928 31175.763759 34784.576744 26561.877873 27219.13617 30892.508874 40227.093795 46840.734859 -46840.734849 40227.093787 30892.508891 27219.136159 26561.877864 34784.576761 31175.763781 21120.174941 14042.92596 -15325.393565 24994.02578 20873.66603 2801.8050141 5.4992311352 0 0 -1.025178257 60.570644178 -2908.2414654 19072.261113 40778.05079 58328.147624 75065.867173 95583.92963 122314.52218 155557.36653 195873.28294 -238757.69518 291979.22234 328479.2529 328479.25291 291979.22235 238757.69518 195873.28294 155557.36654 122314.5222 -95583.929626 75065.867162 58328.147618 40778.050795 19072.261111 2908.2414639 60.570644108 -1.0251782566 0 -0 -0.055597642064 -0.3806351154 9.5050738576 217.81601771 1800.7571955 8113.6955888 17279.54434 28263.881534 -41777.161021 62992.5778 99555.919043 154466.84631 225865.63859 287261.67546 287261.67546 225865.63858 154466.84631 -99555.919038 62992.577794 41777.161015 28263.881532 17279.544341 8113.6955893 1800.7571949 217.81601763 9.5050738598 --0.38063511502 -0.055597642476 0 0 -0.0065988492621 0.14265709193 0.24407120403 0.62696506433 11.237812177 -140.85640415 721.32309779 2263.1744277 5103.3966382 10428.012213 21459.964165 43221.698532 81670.998413 130103.42089 -130103.42088 81670.998407 43221.698529 21459.964163 10428.012213 5103.3966379 2263.1744283 721.32309793 140.85640415 -11.237812178 0.62696506453 0.24407120473 0.14265709224 -0.0065988493238 0 0 -0.0001743721164 0.0062561768577 --0.0002867489426 0.017316111246 0.064647709797 0.54808742814 5.6103406617 34.033372179 145.87543023 501.28011162 1488.718844 -3870.1572357 8663.2891456 16582.006387 16582.006386 8663.2891449 3870.1572353 1488.718844 501.28011167 145.87543025 -34.033372182 5.6103406617 0.54808742808 0.064647709856 0.017316111296 -0.00028674892612 0.0062561768715 -0.00017437210773 0 -0 -2.7023837994e-05 -0.00024204439049 7.7334483385e-05 0.0042489642096 0.004377568249 0.011490542246 0.020113896743 0.085272548759 -0.92370820451 6.361892093 27.207955526 85.198890019 184.98883053 156.77899461 156.77899462 184.98883053 85.19889001 -27.207955522 6.3618920928 0.92370820445 0.085272548703 0.020113896742 0.011490542233 0.0043775682458 0.0042489642095 7.7334483209e-05 --0.00024204439034 -2.7023837946e-05 0 0 9.5332863554e-07 2.1085080316e-05 0.00012851699684 0.00020029789652 0.00032519335537 -0.00073461327144 -0.00195125841 -0.0085572079262 -0.0041848584489 -0.10433164665 -0.61283946469 -0.28098115745 0.68861528458 0.64805077778 -0.6480507778 0.68861528469 -0.28098115746 -0.61283946469 -0.10433164665 -0.0041848584637 -0.0085572079382 -0.0019512584128 0.00073461327155 -0.00032519335534 0.0002002978961 0.0001285169966 2.1085080252e-05 9.5332861829e-07 0 0 2.5304817384e-07 2.0717694893e-06 -3.3938164269e-06 7.9076591551e-06 3.6162544945e-05 -0.00013141997665 -0.0011924331736 -0.002189323327 -0.011448535848 -0.088159975452 -0.12508626218 --0.083131245561 -0.047940290494 -0.09495639512 -0.094956395174 -0.047940290484 -0.083131245554 -0.12508626217 -0.088159975449 -0.011448535849 --0.0021893233302 -0.0011924331751 -0.00013141997684 3.6162544991e-05 7.9076591688e-06 3.3938164263e-06 2.0717694869e-06 2.5304817283e-07 0 -0 4.682459939e-08 1.0463940505e-07 5.4764234646e-08 1.2842795174e-06 -2.2499792974e-06 -4.5064825951e-05 -0.00015209212539 -0.00017221961103 --0.0012586920774 -0.0058160188792 0.0022515524377 -0.0020417131155 -0.022799699379 -0.020126033787 -0.020126033792 -0.022799699386 -0.0020417131156 -0.0022515524381 -0.0058160188789 -0.0012586920773 -0.00017221961112 -0.00015209212562 -4.5064826008e-05 -2.2499793e-06 1.2842795201e-06 5.4764235433e-08 -1.0463940557e-07 4.6824599336e-08 0 0 -2.6969633284e-09 -8.7903327655e-09 4.0502167498e-08 9.7604180133e-08 -1.1621834924e-06 --4.6017575981e-06 -2.0852429196e-06 -1.9178868122e-05 -1.3627063212e-05 0.00066675095079 0.00067829438633 -0.00014430086242 -0.0013043628573 -4.5030193841e-05 --4.5030194089e-05 -0.0013043628583 -0.00014430086245 0.0006782943864 0.00066675095087 -1.362706317e-05 -1.917886812e-05 -2.0852429212e-06 -4.6017576094e-06 --1.1621834957e-06 9.7604180174e-08 4.0502167593e-08 -8.7903327082e-09 -2.6969633122e-09 0 0 1.5055976491e-11 1.6161429938e-09 -8.2662873393e-09 -3.1442320371e-08 -1.7259502711e-07 9.9334643764e-08 -7.5738506711e-08 2.203782e-07 3.0682135079e-05 8.6047299103e-05 -2.5694751363e-05 --5.8293936963e-05 1.9654997578e-05 2.5784861375e-05 2.5784861373e-05 1.9654997572e-05 -5.8293936971e-05 -2.5694751365e-05 8.6047299114e-05 3.0682135077e-05 -2.203782002e-07 -7.5738506546e-08 9.9334644005e-08 -1.7259502741e-07 -3.1442320478e-08 8.2662873176e-09 1.6161429927e-09 1.5055977559e-11 0 -0 3.717516529e-11 2.5209645723e-10 -1.1708878209e-09 -7.9657630197e-09 8.5040496616e-09 3.2322597657e-08 -6.2925157569e-09 3.775069008e-07 -3.3937689036e-06 -5.5519498428e-06 -9.2688325346e-06 -1.4683951631e-06 3.5619850377e-06 3.0574130461e-07 3.0574130584e-07 3.5619850378e-06 -1.4683951636e-06 --9.2688325356e-06 -5.5519498436e-06 3.393768902e-06 3.7750690085e-07 -6.2925157253e-09 3.2322597725e-08 8.5040497402e-09 -7.9657630281e-09 -1.1708878235e-09 -2.520964565e-10 3.7175165232e-11 0 0 -1.3254594065e-12 -4.2649280233e-11 -2.1136212298e-10 4.7327420798e-10 3.2356186765e-09 --2.1919948894e-09 -6.441695186e-09 1.0287603374e-09 -3.1928809876e-07 -7.286340607e-07 -2.2848287867e-08 2.3538943538e-07 -3.1826210578e-08 -3.1901325046e-08 --3.1901325044e-08 -3.1826210578e-08 2.3538943538e-07 -2.2848287886e-08 -7.2863406078e-07 -3.1928809873e-07 1.0287603328e-09 -6.4416951953e-09 -2.1919948953e-09 -3.2356186858e-09 4.7327421039e-10 -2.1136212265e-10 -4.264928026e-11 -1.3254594124e-12 0 0 0 0 +0 0 0 0 2.2568076404e-05 -0.00010201751006 0.00018242816647 0.00089553148092 -0.013843498727 +-0.030458232335 0.18607645408 -1.0167887599 -3.7338679426 8.5468797757 85.336877986 -31.570129731 -1558.2367538 -2256.5627929 +-2256.5627913 -1558.2367515 -31.570128961 85.336877636 8.5468797534 -3.7338679474 -1.0167887633 0.18607645431 -0.030458232104 +-0.013843498741 0.00089553148851 0.00018242816416 -0.00010201751033 2.2568076441e-05 0 0 -0.00011805976052 0.00030517216647 +0.0013685506781 -0.010354893485 -0.013156058908 0.15831109153 -1.1044772249 -4.3619171608 17.794355187 55.461160859 -360.76954163 +-2485.8208851 -2576.4864765 5956.4774019 5956.4774326 -2576.4864702 -2485.8208819 -360.76954195 55.461160762 17.794355135 +-4.361917162 -1.104477225 0.15831109165 -0.01315605898 -0.010354893469 0.0013685506852 0.00030517216388 -0.00011805976067 0 +0 0.00049201615971 0.0014610280715 -0.0099786108175 -0.012945841065 0.1958609879 -1.0040763382 -4.3667751265 32.058874425 +49.563556503 -939.47062852 -2638.9918995 7044.6021038 28076.568344 24147.573235 24147.573165 28076.56836 7044.6021042 +-2638.9918986 -939.47062531 49.563556534 32.058874367 -4.366775123 -1.0040763374 0.19586098802 -0.01294584104 -0.0099786108026 +0.0014610280726 0.00049201615729 0 0 0.00097425122658 -0.012884689894 -0.019085406353 0.21907545649 -1.4744312398 +-3.2577882068 39.485477074 60.909021424 -669.97846221 -2065.7368564 28207.360983 51894.371875 42393.306354 32405.60799 +32405.607993 42393.306208 51894.371879 28207.360972 -2065.736857 -669.97846051 60.909021436 39.485477069 -3.2577882086 +-1.4744312399 0.21907545644 -0.019085406318 -0.012884689879 0.00097425123253 0 0 -0.01811086123 -0.008730452979 +0.26532114304 -1.6657743448 -3.0120406834 48.054155443 73.062034224 -683.78935485 -1219.1859716 53416.639081 70201.808472 +35541.384142 28270.249927 32883.778783 32883.778796 28270.24997 35541.383956 70201.80848 53416.639066 -1219.1859719 +-683.78935475 73.06203419 48.054155426 -3.0120406856 -1.6657743426 0.26532114286 -0.0087304530666 -0.018110861196 0 +0 -0.020189399753 0.30644267457 -1.8670441419 -4.4260599916 50.694330275 78.034534621 -566.61766826 -707.71028427 +70016.750104 85097.031231 22241.032168 15525.061554 29182.959368 40137.642717 40137.642731 29182.959494 15525.061528 +22241.032067 85097.031266 70016.750093 -707.71028626 -566.61766842 78.034534583 50.694330213 -4.4260600086 -1.8670441391 +0.30644267477 -0.020189399636 0 0 0.41417239974 -2.3305579326 -6.1303213868 46.600039728 75.673703253 +-632.16355591 -472.12014519 79629.87295 88490.813619 16831.397131 4572.0516316 32671.655688 35818.003765 39625.584414 +39625.584393 35818.003812 32671.655741 4572.0515874 16831.397027 88490.813666 79629.872937 -472.12014585 -632.16355606 +75.673703218 46.600039649 -6.1303214069 -2.3305579299 0.41417239985 0 0 -2.606369472 -7.6019409566 +42.567083463 61.549312093 -810.58127765 -824.41136473 79769.134114 88262.355163 18550.592803 2741.377628 35034.963238 +39528.050617 42338.090876 29115.851479 29115.851461 42338.09077 39528.050714 35034.963262 2741.3775649 18550.592678 +88262.355231 79769.134099 -824.41136684 -810.58127762 61.549312141 42.567083412 -7.6019409703 -2.6063694685 0 +0 -8.4933555449 21.899610449 60.364253412 -856.57581616 -1367.4204828 70567.759951 88958.248418 21019.482498 +1883.5303138 32540.480448 36696.240718 45299.123101 36030.073261 25586.040771 25586.040818 36030.073273 45299.123012 +36696.240741 32540.480526 1883.530277 21019.482341 88958.248463 70567.759935 -1367.4204837 -856.57581344 60.364253411 +21.899610366 -8.493355551 0 0 12.257095038 86.437109006 -1069.5780908 -2295.5553358 52766.491349 +85017.097638 22012.649729 6200.5152628 29366.430291 33016.825219 45913.850404 37987.122878 31492.830435 24908.773769 +24908.773942 31492.830458 37987.122759 45913.850306 33016.825302 29366.430424 6200.515176 22012.649567 85017.097672 +52766.491328 -2295.555334 -1069.5780923 86.437108883 12.257094834 0 0 131.15436166 -375.06064282 +-2955.711193 26494.871733 70434.338894 34454.166146 10194.125454 24131.084634 31065.579087 44827.478124 39865.966644 +35959.550276 28785.234468 26101.99423 26101.994181 28785.234583 35959.550237 39865.966719 44827.478115 31065.579182 +24131.084752 10194.125372 34454.166031 70434.338917 26494.871716 -2955.7111964 -375.06063973 131.15436153 0 +0 -85.499901368 -2706.309438 5054.6103118 53893.640339 54038.313008 18094.362519 20786.494326 29829.609636 +42222.086709 37460.686462 33019.18672 23860.968338 25623.740986 29847.183963 29847.183455 25623.740854 23860.968594 +33019.186595 37460.686408 42222.086716 29829.609779 20786.494385 18094.362469 54038.312954 53893.64034 5054.610303 +-2706.3094311 -85.499899423 0 0 -2385.027149 -4601.3856957 28288.009671 54344.285278 32232.47291 +15101.129042 19423.093453 36747.570028 38764.408 36497.255621 23468.227973 16522.679173 22576.742531 36733.79045 +36733.79056 22576.74241 16522.678782 23468.227901 36497.255532 38764.407982 36747.569984 19423.093551 15101.128978 +32232.472939 54344.28521 28288.009687 -4601.3856841 -2385.0271481 0 0 -3186.9131616 1490.8408625 +28825.366743 40560.183664 33193.182844 24232.184135 21380.990293 24551.971566 31534.986348 30658.336704 28167.345903 +25500.094526 29192.99579 29178.051348 29178.051631 29192.995989 25500.094176 28167.34589 30658.336848 31534.986379 +24551.971428 21380.990231 24232.184177 33193.182837 40560.18366 28825.366712 1490.8408898 -3186.9131577 0 +0 -3660.171338 4898.6722411 25455.926416 34303.58518 26130.123181 16801.142722 24731.879257 30822.873837 +26339.371634 25279.455787 25930.408057 36536.443254 37414.793082 31219.61419 31219.614181 37414.792909 36536.443437 +25930.408235 25279.455757 26339.371444 30822.873974 24731.879426 16801.142566 26130.123016 34303.585296 25455.926691 +4898.6720628 -3660.1713387 0 0 -1935.4910526 -2576.8626219 25180.529203 36948.385284 11389.507995 +163.23268586 19273.884255 42518.836754 43285.643789 22610.422513 22394.488377 31904.390718 39314.497198 50118.706804 +50118.706679 39314.497179 31904.390901 22394.488332 22610.422431 43285.643986 42518.836948 19273.884172 163.23252359 +11389.508044 36948.385397 25180.529156 -2576.8626365 -1935.4910555 0 0 146.64201341 -1263.1907841 +-1374.929998 17048.058032 47641.756391 63324.082955 72943.537335 91962.79643 122172.89898 162169.76968 205982.26676 +243905.15652 296433.1212 338454.86539 338454.86549 296433.12129 243905.15651 205982.26677 162169.76977 122172.899 +91962.79627 72943.537307 63324.083069 47641.756437 17048.057966 -1374.9300117 -1263.1907805 146.64201632 0 +0 6.1416212848 38.955424067 -71.051616989 -577.19767787 -889.02082511 7021.2173155 16838.000344 25903.578833 +37472.186037 59090.463736 100963.82372 161754.47624 234275.08653 290724.63324 290724.63321 234275.08653 161754.47623 +100963.8237 59090.463695 37472.186007 25903.578859 16838.000357 7021.2173038 -889.02084238 -577.19767486 -71.051617531 +38.955424239 6.1416211506 0 0 -0.35057653018 3.8174392822 12.952293977 -64.013523319 -299.42269211 +-745.48259493 -1074.6989439 36.758927488 2532.9619526 7759.5922695 18929.684255 42304.35182 80407.631664 123753.76926 +123753.76925 80407.631655 42304.351811 18929.684245 7759.5922684 2532.9619584 36.758934316 -1074.698946 -745.48259511 +-299.42269218 -64.013522184 12.952294499 3.8174392827 -0.35057653678 0 0 -0.0049571370167 -0.13553127412 +-0.50004327395 1.5253689509 8.9514014807 -62.91769676 -225.89325318 -388.44560513 -678.61687724 -1256.8662632 -2160.7837756 +-1696.564338 473.19137679 7968.099291 7968.0992937 473.19137433 -1696.5643368 -2160.7837741 -1256.8662627 -678.61687774 +-388.4456053 -225.89325334 -62.917696525 8.9514014813 1.5253688858 -0.50004328807 -0.1355312742 -0.004957136799 0 +0 -0.0013239369352 0.0059359944883 0.00086463001 -0.095397423762 0.78908781354 1.0397948201 7.3041034341 -11.341664131 +-111.46433931 -397.41703572 -812.89901446 -1911.4158242 -3007.8931946 -3748.1442079 -3748.1442092 -3007.8931932 -1911.4158241 +-812.89901406 -397.41703556 -111.46433933 -11.341664101 7.3041034577 1.0397948262 0.7890878184 -0.095397418595 0.00086462998675 +0.0059359945247 -0.0013239369197 0 0 -8.1144671192e-05 0.0025621684923 0.0037809636048 -0.011694498333 -0.019575062239 +-0.029632277805 0.94833563513 2.0205142334 3.7190769024 -2.5095627576 -51.375923862 -359.54498947 -718.64683934 -649.42774235 +-649.42774259 -718.64683895 -359.54498951 -51.375923874 -2.5095627669 3.7190769071 2.0205142361 0.94833563883 -0.029632278516 +-0.019575061772 -0.011694498256 0.0037809635503 0.0025621684839 -8.1144673476e-05 0 0 3.9847231497e-05 1.2300978306e-05 +-0.00057500710043 0.0010557027713 -0.001224925473 -0.00042900687386 -0.020327635492 0.10421013582 0.29747689774 0.3772652858 3.3338836959 +34.226978385 82.689230275 76.446861012 76.446861081 82.68923024 34.2269784 3.3338836964 0.3772652851 0.29747689636 +0.10421013538 -0.020327635476 -0.0004290068916 -0.0012249253792 0.0010557027631 -0.00057500709375 1.2300978499e-05 3.9847231395e-05 0 +0 1.8056362869e-06 -2.5650094164e-05 -7.1768692217e-05 0.00020610547479 0.00032201178159 0.0004341364346 -0.0021258900611 -0.032532344085 +-0.045664255562 -0.033725022873 1.537971042 16.759786545 21.418572699 21.075576518 21.075576509 21.418572684 16.759786546 +1.5379710426 -0.033725022811 -0.045664255635 -0.032532344126 -0.0021258900647 0.00043413644383 0.00032201177855 0.00020610547324 -7.1768690959e-05 +-2.5650094198e-05 1.8056362969e-06 0 0 -5.9240595619e-07 3.3957252267e-07 1.8613734302e-05 8.2416743578e-06 -9.075574717e-05 +-0.00031521864939 -0.00022396906559 -0.0027272638744 0.0011872857007 -0.0054627958346 0.041761088997 0.4802738394 -1.4902621126 -0.65900482857 +-0.65900483163 -1.4902621119 0.4802738388 0.041761088957 -0.0054627958379 0.0011872857107 -0.002727263876 -0.00022396906644 -0.00031521864866 +-9.075574609e-05 8.2416741776e-06 1.8613734055e-05 3.3957251688e-07 -5.9240595879e-07 0 0 1.2047986144e-08 1.2331321352e-07 +7.7326603227e-07 -2.9074134909e-06 -1.5960694654e-05 -4.5810948632e-05 4.1421013737e-05 0.00063316442011 0.00080532042205 0.00050151454824 -0.020752314287 +-0.42327347944 -0.30787248997 -0.38985223697 -0.38985223652 -0.30787248983 -0.42327347918 -0.020752314288 0.0005015145455 0.00080532042336 +0.00063316442035 4.1421013627e-05 -4.5810948707e-05 -1.5960694459e-05 -2.9074134754e-06 7.7326601718e-07 1.233132141e-07 1.2047986198e-08 0 +0 8.7182086289e-10 -3.0103913381e-09 -2.4028176114e-07 -5.2402671438e-07 9.2680524996e-07 1.1107458236e-05 1.6171111618e-05 4.1963075912e-05 +-3.7285320287e-05 0.00013595713946 -0.0014760150951 -0.030133275918 0.024939706099 0.0058086789124 0.0058086790116 0.024939706088 -0.030133275889 +-0.001476015095 0.00013595713957 -3.7285320459e-05 4.1963075913e-05 1.6171111648e-05 1.110745822e-05 9.268052442e-07 -5.240267086e-07 -2.4028175874e-07 +-3.0103913637e-09 8.7182086398e-10 0 0 -7.4747866702e-11 -7.9952163914e-10 5.1184232427e-10 5.7162822375e-08 2.560487307e-07 +1.3022909737e-06 1.400776772e-07 -4.9269991277e-06 -8.0546056205e-06 -3.8816794387e-05 6.0845929589e-05 0.0051672214701 0.0039922890945 0.0043015884222 +0.0043015884175 0.0039922890965 0.0051672214672 6.0845929527e-05 -3.8816794391e-05 -8.0546056311e-06 -4.9269991255e-06 1.4007768295e-07 1.3022909805e-06 +2.5604872951e-07 5.7162822015e-08 5.1184232215e-10 -7.9952163729e-10 -7.4747866741e-11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -1839,100 +1839,100 @@ dose 1 900 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 0 2.0095368158e-08 -4.8571156731e-08 1.3225750204e-06 -4.4950996357e-06 -1.0437168852e-05 -2.2449679306e-05 3.5593550125e-05 -0.00058123109145 -0.0022750336567 -0.011993345677 -0.036456531684 -0.047061637911 0.082891426363 1.4673523699 -1.4673523696 0.082891426142 -0.04706163803 -0.03645653177 -0.011993345695 -0.0022750336616 -0.00058123109076 3.5593549917e-05 2.2449679517e-05 --1.0437168514e-05 -4.4950994792e-06 1.3225750495e-06 -4.8571157016e-08 2.0095365928e-08 0 0 -6.7430737513e-08 1.5016284444e-06 --6.3560380675e-06 -8.6242825443e-06 5.3717379565e-05 0.00025425950845 0.00024477726782 -0.0028208916266 -0.012482011299 -0.035711009263 -0.025569351659 -2.1622585994 29.319687672 84.114675937 84.114675948 29.319687677 2.1622585985 -0.025569351979 -0.035711009375 -0.012482011325 --0.0028208916223 0.00024477726897 0.00025425951018 5.3717380181e-05 -8.6242821831e-06 -6.3560379195e-06 1.5016284647e-06 -6.7430740427e-08 0 -0 1.371010445e-06 -9.0838897185e-06 -7.6689270448e-06 0.00013611194253 0.00053142414438 0.00084707921898 0.0015161322233 -0.0034347697153 -0.0063403273479 0.80175383637 15.2762266 129.46739477 298.71727811 356.83349469 356.83349466 298.71727811 129.46739476 -15.276226593 0.80175383551 0.0063403272511 -0.0034347697028 0.0015161322374 0.00084707922274 0.00053142414537 0.0001361119431 -7.668926731e-06 --9.0838896104e-06 1.3710104523e-06 0 0 -1.0190579776e-05 -8.4682500279e-06 0.0002357171755 0.0010803268012 0.0023079511102 -0.0036676460337 0.0079979834603 0.15595898652 3.2763249697 52.600812068 316.93010005 608.0956571 741.8555978 772.00816493 -772.00816485 741.85559756 608.09565703 316.93010001 52.600812049 3.2763249681 0.15595898647 0.0079979834886 0.0036676460473 -0.0023079511118 0.0010803268013 0.0002357171758 -8.4682498471e-06 -1.019057971e-05 0 0 -3.6779396915e-05 0.00021594201411 -0.0015654741194 0.0040820183021 0.010650065895 0.032550811296 0.32510203086 6.5177397505 110.34293891 546.71892025 1012.1279554 -1203.0696733 1277.0383617 1326.3853782 1326.3853782 1277.0383615 1203.069673 1012.1279553 546.71892018 110.34293887 -6.517739748 0.32510203087 0.032550811314 0.010650065899 0.0040820183012 0.0015654741192 0.00021594201416 -3.6779396867e-05 0 -0 -0.00012931817449 0.00053226206632 0.0040242556697 0.013250471274 0.048451592355 0.4464230148 8.8041195813 172.00654129 -723.18685248 1280.0275616 1475.7227235 1602.4004378 1749.0650028 1894.7109886 1894.7109888 1749.0650029 1602.4004377 -1475.7227232 1280.0275615 723.1868524 172.00654123 8.8041195785 0.44642301472 0.048451592362 0.013250471277 0.0040242556703 -0.00053226206623 -0.00012931817471 0 0 -0.00065329001325 -0.0013044860705 0.003888500452 0.027314284161 0.37165824292 -8.8736582058 209.35222278 822.58796721 1468.0089111 1746.398167 1915.9164593 2087.0178079 2302.2784925 2467.9471088 -2467.947109 2302.2784926 2087.0178078 1915.9164592 1746.3981667 1468.0089111 822.58796715 209.35222272 8.8736582028 -0.37165824284 0.027314284167 0.0038885004558 -0.0013044860715 -0.00065329001398 0 0 -0.0027275432302 -0.010887215201 --0.014049338555 0.14849717793 6.5247145598 171.48445175 825.33505229 1515.8719816 1876.1805666 2026.0119278 2253.4323507 -2552.6046585 2826.4560857 3037.9998785 3037.9998784 2826.4560856 2552.6046586 2253.4323508 2026.0119276 1876.1805664 -1515.8719816 825.33505223 171.48445169 6.5247145572 0.14849717786 -0.01404933856 -0.010887215202 -0.0027275432302 0 -0 -0.0095383588732 -0.044635997784 -0.058294574108 3.12715921 109.49173137 726.36201872 1490.7995197 1894.462944 -2055.8890311 2316.0075818 2674.8735774 3065.965398 3356.8300995 3669.6722916 3669.6722911 3356.8300992 3065.9653978 -2674.8735775 2316.007582 2055.8890309 1894.4629437 1490.7995197 726.36201865 109.49173133 3.1271592084 -0.058294574173 --0.044635997791 -0.0095383588689 0 0 -0.028550594327 -0.12858622934 0.61613476489 52.720085178 550.61529913 -1303.6067064 1796.4128313 2064.3886185 2307.167787 2704.2399471 3188.1718859 3594.967085 4008.1674152 4540.8120079 -4540.8120079 4008.1674151 3594.9670848 3188.1718858 2704.2399471 2307.1677871 2064.3886183 1796.412831 1303.6067064 -550.61529907 52.720085159 0.61613476425 -0.1285862294 -0.028550594329 0 0 -0.074892549094 -0.17064172145 -15.117032219 312.08667463 1034.6619845 1559.0804936 1967.0709893 2233.8059055 2604.7357632 3147.6437467 3681.1184045 -4207.2738262 4726.4550428 5915.8903398 5915.8903393 4726.4550428 4207.2738263 3681.1184043 3147.6437467 2604.7357632 -2233.8059054 1967.070989 1559.0804933 1034.6619845 312.0866746 15.117032212 -0.17064172162 -0.074892549114 0 -0 -0.11086244717 1.747755323 117.56012715 634.16021048 1314.3934019 1675.289164 2059.9161675 2465.2709852 -2987.0025502 3516.1381536 4171.8361973 4829.4870039 5830.7463052 8045.218422 8045.2184216 5830.7463047 4829.4870042 -4171.8361977 3516.1381537 2987.00255 2465.2709852 2059.9161674 1675.2891638 1314.3934018 634.16021044 117.56012714 -1.7477553225 -0.11086244723 0 0 -0.07364439431 16.683770707 293.74965024 859.9258432 1363.7039398 -1754.632618 2153.1720359 2637.7364199 3161.355063 3827.0309415 4576.5947711 5729.4174645 7019.9849042 10894.664053 -10894.664053 7019.9849038 5729.417464 4576.5947715 3827.0309417 3161.355063 2637.7364198 2153.1720358 1754.6326179 -1363.7039397 859.9258431 293.74965027 16.683770714 -0.073644394415 0 0 0.08807575664 63.482085729 -381.65173861 860.63115411 1316.0613595 1769.3391513 2177.1853927 2683.7690728 3371.8328105 4323.6467483 5661.5524184 -7887.2343775 10808.805642 13119.905903 13119.905904 10808.805642 7887.2343781 5661.5524185 4323.6467487 3371.8328107 -2683.7690726 2177.1853924 1769.3391512 1316.0613593 860.631154 381.65173862 63.482085719 0.088075756359 0 -0 0.095945558771 72.827694615 376.43912283 790.04516502 1199.5727464 1575.8402265 1997.4440723 2631.2415567 -3305.3150272 4300.5573399 5673.0873741 7882.2569707 10821.698272 13063.54571 13063.545711 10821.698272 7882.2569708 -5673.0873741 4300.5573401 3305.3150276 2631.241557 1997.4440722 1575.8402262 1199.5727462 790.04516506 376.43912285 -72.827694591 0.095945558613 0 0 0.034531134244 25.310361705 279.25744319 677.57967252 1035.0834446 -1346.0663951 1777.8483812 2342.1781256 3120.6990177 3756.2849107 4681.2709403 5908.0405888 7534.2235617 11285.04711 -11285.04711 7534.2235616 5908.0405889 4681.27094 3756.2849109 3120.6990181 2342.1781258 1777.8483811 1346.0663948 -1035.0834446 677.57967259 279.25744316 25.310361685 0.034531134089 0 0 -0.0011471126809 0.091609475329 -5.4625648357 47.344088943 149.77871107 303.75895628 508.95939404 779.63030702 1144.1674593 1637.5951738 2402.4866409 -3442.0987151 4891.1027992 7725.5115902 7725.51159 4891.1027992 3442.0987151 2402.4866409 1637.5951737 1144.1674593 -779.63030698 508.95939401 303.75895627 149.77871107 47.344088936 5.4625648328 0.091609475186 -0.0011471126774 0 -0 -0.00011497389371 -0.00089205353104 0.021114618078 0.42768457551 4.1533177141 22.909329072 65.014280203 138.40822864 -243.1797857 419.43307449 742.74603268 1287.5928631 2132.7501028 3394.8412883 3394.8412882 2132.7501028 1287.5928631 -742.74603263 419.43307446 243.17978568 138.40822864 65.014280206 22.909329072 4.153317713 0.42768457536 0.021114618103 --0.00089205353066 -0.000114973895 0 0 -1.5155667517e-05 0.00029861904232 0.00071130531642 0.0012678381538 0.023123231808 -0.30784565163 1.9378243925 7.2993626307 19.969425105 47.807909983 110.2597297 243.95826782 498.96720844 916.70335687 -916.70335683 498.9672084 243.9582678 110.2597297 47.807909985 19.969425104 7.2993626322 1.9378243927 0.30784565162 -0.023123231811 0.0012678381547 0.00071130531853 0.00029861904296 -1.5155667627e-05 0 0 -7.707296814e-07 8.3552584157e-06 --3.7458989877e-06 8.6443625528e-05 0.00027392061534 0.0015796445961 0.013012450041 0.086042233776 0.41900559717 1.678731245 5.617980354 -15.983777362 38.166913036 70.221547004 70.221547003 38.166913033 15.98377736 5.6179803539 1.6787312452 0.41900559719 -0.086042233776 0.013012450041 0.0015796445961 0.00027392061551 8.6443625681e-05 -3.7458989557e-06 8.3552584427e-06 -7.7072966631e-07 0 -0 -7.5376290288e-08 -4.7534347654e-07 7.0317798081e-07 1.4600337137e-05 1.6224983705e-05 5.2705789727e-05 0.00011050496026 0.00015566902677 -0.0019396838196 0.017019882787 0.073677926834 0.25239212534 0.5931132246 0.48081886081 0.48081886085 0.59311322462 0.25239212532 -0.073677926823 0.017019882786 0.001939683819 0.00015566902656 0.00011050496028 5.2705789655e-05 1.6224983692e-05 1.4600337133e-05 7.0317797885e-07 --4.7534347661e-07 -7.5376290158e-08 0 0 -1.0145209485e-09 4.4254937155e-08 3.2243358585e-07 7.0610548809e-07 1.174392025e-06 -4.2398773143e-06 -5.5409175827e-06 -5.4568486782e-05 -1.2943034045e-05 -0.0005461391306 -0.003293486536 -0.0017121885332 0.0034735440912 0.00121518913 -0.0012151891301 0.0034735440916 -0.0017121885331 -0.0032934865359 -0.0005461391306 -1.2943034136e-05 -5.4568486857e-05 -5.5409175962e-06 4.2398773162e-06 -1.1743920255e-06 7.0610548719e-07 3.2243358524e-07 4.4254937009e-08 -1.0145209782e-09 0 0 7.0118640924e-10 6.8875269365e-09 -7.444734652e-09 2.3877759521e-08 1.5662245776e-07 -2.6809297987e-07 -4.8796987703e-06 -8.3083019791e-06 -3.5205467821e-05 -0.00031884986118 -0.00040930941666 --0.00023274989684 -0.00026753383251 -0.00054168259204 -0.00054168259236 -0.00026753383244 -0.00023274989681 -0.00040930941664 -0.00031884986118 -3.5205467828e-05 --8.3083019934e-06 -4.8796987773e-06 -2.6809298049e-07 1.5662245796e-07 2.3877759585e-08 7.4447346545e-09 6.8875269285e-09 7.0118640649e-10 0 -0 7.4065499265e-11 8.0987925177e-11 6.2135105461e-11 5.3525486323e-09 -9.1449480932e-10 -1.5355495453e-07 -5.2814882648e-07 -4.7151850004e-07 --4.5352246575e-06 -1.4287373989e-05 1.5888712354e-05 -3.9599769662e-06 -9.6956221454e-05 -6.2243944241e-05 -6.2243944258e-05 -9.6956221473e-05 -3.9599769665e-06 -1.5888712356e-05 -1.4287373989e-05 -4.5352246565e-06 -4.7151850032e-07 -5.2814882742e-07 -1.535549548e-07 -9.1449482519e-10 5.3525486434e-09 6.2135108294e-11 -8.0987926412e-11 7.4065499136e-11 0 0 -5.917339194e-12 -2.0492406985e-11 1.6652105004e-10 4.3310637905e-10 -3.9634787005e-09 --1.6488521929e-08 -1.0548443811e-09 -5.7381937624e-08 -1.0302514459e-07 2.5782409586e-06 2.2797646621e-06 -1.4096776788e-06 -3.5378695956e-06 3.2026803454e-07 -3.2026803397e-07 -3.5378695981e-06 -1.409677679e-06 2.2797646623e-06 2.5782409589e-06 -1.0302514441e-07 -5.7381937622e-08 -1.0548443825e-09 -1.6488521976e-08 --3.9634787121e-09 4.331063791e-10 1.6652105023e-10 -2.0492406838e-11 -5.9173391617e-12 0 0 1.3265954696e-13 5.079133602e-12 -2.1203835901e-11 -1.1691765796e-10 -5.8096319529e-10 6.0720365018e-10 3.2728975977e-10 -5.8860185939e-10 9.2353820645e-08 2.5753439354e-07 -1.6663292795e-07 --2.4760119714e-07 8.7623563261e-08 8.3256198552e-08 8.3256198549e-08 8.7623563251e-08 -2.4760119717e-07 -1.6663292797e-07 2.5753439357e-07 9.2353820632e-08 --5.8860185847e-10 3.2728976089e-10 6.0720365169e-10 -5.8096319603e-10 -1.169176583e-10 2.1203835843e-11 5.0791335999e-12 1.3265954902e-13 0 -0 6.9441170589e-14 3.9891641787e-13 -3.5678908874e-12 -2.1005283549e-11 3.6252131435e-11 1.107500315e-10 -1.2748303781e-10 7.1340977782e-10 -9.4888121401e-09 -1.8871834322e-08 -2.7575879855e-08 -1.0388633299e-09 1.0202926784e-08 -1.9102382917e-11 -1.9102380785e-11 1.0202926784e-08 -1.0388633308e-09 --2.7575879858e-08 -1.8871834324e-08 9.4888121361e-09 7.1340977786e-10 -1.2748303781e-10 1.1075003176e-10 3.6252131672e-11 -2.1005283568e-11 -3.5678908917e-12 -3.9891641646e-13 6.9441170472e-14 0 0 -2.181790553e-15 -8.3913872679e-14 -3.906149685e-13 1.639396893e-12 8.4572409594e-12 --1.1115087139e-11 -2.6476509502e-11 9.0169945342e-13 -8.7427955189e-10 -1.7943114264e-09 5.9843020105e-11 5.8029311169e-10 -9.2167369114e-11 -8.5181645904e-11 --8.51816459e-11 -9.2167369113e-11 5.8029311171e-10 5.9843020063e-11 -1.7943114266e-09 -8.7427955179e-10 9.0169941641e-13 -2.6476509558e-11 -1.1115087167e-11 -8.4572409857e-12 1.6393968994e-12 -3.9061496793e-13 -8.3913872747e-14 -2.1817905626e-15 0 0 0 0 +0 0 0 0 1.3881440982e-07 -6.7751819017e-07 8.0216606475e-07 9.1920752444e-06 -0.00011027106153 +-0.00041203630445 0.001534665403 -0.0063937454548 -0.046709595764 0.028322070659 0.93904843605 1.1726400741 -11.700065278 -29.626505313 +-29.626505288 -11.70006528 1.1726400737 0.9390484312 0.02832207029 -0.046709595875 -0.0063937454814 0.001534665412 -0.00041203630249 +-0.00011027106166 9.1920752278e-06 8.0216604288e-07 -6.7751819218e-07 1.3881440999e-07 0 0 -8.303422915e-07 1.4715673074e-06 +1.6401800913e-05 -7.2201341714e-05 -0.00024563716734 0.0012517843379 -0.0076382221136 -0.055557901203 0.087362945242 0.63914401843 -2.095761361 +-26.038034168 -49.938514395 7.3389733621 7.3389736038 -49.938514293 -26.038034123 -2.0957613655 0.63914401776 0.08736294472 +-0.055557901219 -0.0076382221131 0.0012517843377 -0.00024563716819 -7.2201341376e-05 1.6401800958e-05 1.471567284e-06 -8.3034229249e-07 0 +0 3.1191650698e-06 1.677660466e-05 -6.4728431633e-05 -0.00018170121894 0.0016699945343 -0.0064717113559 -0.053610198296 0.19966992194 +0.68507602294 -7.2040763979 -32.716201599 18.250405612 252.09568705 354.25747217 354.25747196 252.09568733 18.250405679 +-32.716201598 -7.2040763708 0.68507602333 0.19966992149 -0.053610198274 -0.0064717113487 0.0016699945345 -0.00018170121824 -6.4728431464e-05 +1.6776604647e-05 3.1191650479e-06 0 0 1.2921527816e-05 -9.0382545008e-05 -0.00026615422937 0.0020082719498 -0.0098211544485 +-0.04262437001 0.28324558186 0.931548173 -4.7937647766 -28.821547248 197.29552781 625.28933084 855.2033123 850.06167941 +850.06167851 855.20331125 625.28933089 197.29552776 -28.821547226 -4.7937647594 0.9315481732 0.28324558184 -0.042624370019 +-0.0098211544469 0.0020082719468 -0.00026615422828 -9.0382544929e-05 1.2921527899e-05 0 0 -0.00015810620027 -0.00026434549803 +0.0023421573301 -0.011137722031 -0.041920296056 0.37099853203 1.1822551894 -4.8224147439 -18.729728769 454.19204756 1131.1277021 +1347.3055424 1320.0570718 1309.3211168 1309.3211158 1320.0570703 1347.305541 1131.127702 454.19204732 -18.729728763 +-4.8224147414 1.1822551886 0.37099853177 -0.041920296067 -0.011137722016 0.0023421573247 -0.00026434549882 -0.00015810619968 0 +0 -0.00042697429149 0.0030728419147 -0.012256035993 -0.05992274138 0.39023512482 1.31501188 -3.6726957541 -13.020206567 +657.4173683 1546.613843 1671.3999296 1600.7015324 1752.6776382 1980.7717366 1980.7717382 1752.6776392 1600.7015312 +1671.3999288 1546.6138432 657.41736785 -13.020206586 -3.6726957529 1.3150118794 0.39023512398 -0.05992274155 -0.012256035972 +0.0030728419151 -0.00042697428953 0 0 0.0039759860788 -0.015544792958 -0.080879649752 0.31761118534 1.2668294838 +-3.8388082948 -10.573968129 792.98901963 1774.5779486 1925.5668636 1742.1742314 1921.374068 2250.0832554 2417.6709541 +2417.6709539 2250.0832553 1921.3740679 1742.17423 1925.5668629 1774.5779488 792.98901905 -10.573968139 -3.8388082948 +1.2668294831 0.31761118431 -0.080879649946 -0.015544792926 0.0039759860845 0 0 -0.015388086452 -0.1019259393 +0.24932588823 1.0067650858 -5.725599808 -14.79493362 794.93882518 1845.3495087 2019.5550603 1989.4068533 2068.7025378 +2486.3463222 2956.6604738 3094.4828663 3094.4828656 2956.660473 2486.3463229 2068.7025373 1989.4068517 2019.5550598 +1845.349509 794.9388246 -14.794933635 -5.7255998042 1.0067650857 0.24932588754 -0.1019259394 -0.01538808642 0 +0 -0.10408763843 0.046789429122 0.84293423978 -6.2185573243 -21.367872364 665.49497993 1784.2683691 2042.9289536 +2064.8780703 2040.7413137 2519.316221 3194.5717552 3444.7145015 3573.8895237 3573.8895241 3444.7145003 3194.571756 +2519.3162207 2040.7413131 2064.8780689 2042.9289527 1784.2683692 665.4949794 -21.367872372 -6.2185573003 0.84293423895 +0.04678942834 -0.10408763848 0 0 -0.014907445457 0.90993808052 -8.1093681523 -33.420142885 449.17197255 +1548.791965 1981.7530918 2086.6012173 2055.5863424 2609.9593972 3399.6464693 3840.0485449 4022.667731 4463.562384 +4463.5623833 4022.6677305 3840.0485445 3399.6464701 2609.9593969 2055.5863427 2086.6012151 1981.7530905 1548.7919651 +449.17197218 -33.420142856 -8.1093681662 0.9099380779 -0.014907447172 0 0 1.4272508598 -1.6416334885 +-35.125315947 178.68374905 1136.7992674 1789.6283538 1858.8468008 2014.3078891 2475.9271543 3403.6413185 3864.0840637 +4202.7037184 4736.2174396 5891.312566 5891.3125677 4736.2174408 4202.7037176 3864.0840657 3403.6413202 2475.9271551 +2014.3078886 1858.8467982 1789.6283527 1136.7992672 178.68374884 -35.125315964 -1.6416334671 1.4272508558 0 +0 1.4968155606 -29.262520232 -4.9935425803 635.37122901 1507.942292 1775.585496 1881.1430596 2389.3533929 +3056.8311303 3716.3387893 4266.0390773 4981.4107991 5695.5740951 8098.2357282 8098.2357247 5695.5740965 4981.4108006 +4266.0390732 3716.3387903 3056.8311327 2389.3533946 1881.1430596 1775.5854946 1507.9422915 635.37122861 -4.9935425525 +-29.262520136 1.4968155744 0 0 -17.551083771 -71.816103391 215.00585137 956.42276531 1548.639522 +1820.4892327 2060.1286524 2667.8101385 3115.1056916 3877.030735 4657.1245848 5638.040048 7242.7252978 10748.904369 +10748.904371 7242.7252941 5638.0400441 4657.1245828 3877.0307337 3115.1056928 2667.8101394 2060.1286537 1820.4892324 +1548.6395219 956.42276452 215.00585165 -71.816103233 -17.551083748 0 0 -36.818594968 -50.228424167 +340.62111849 953.16381023 1480.5511309 1866.3899418 2147.8033106 2729.1586666 3221.662709 4309.3485515 5719.2701681 +7944.0931721 10655.704172 12790.059984 12790.05999 10655.70417 7944.0931697 5719.2701683 4309.3485529 3221.6627058 +2729.1586663 2147.8033127 1866.3899411 1480.5511295 953.16380926 340.62111865 -50.228423877 -36.818594936 0 +0 -40.857636136 -11.685602189 351.17023146 878.77633002 1250.8837019 1580.9149257 1938.2824822 2639.9836796 +3264.4404459 4327.2568568 5596.239953 7930.2526109 10749.447652 12995.848552 12995.848552 10749.447652 7930.2526141 +5596.2399533 4327.2568585 3264.4404476 2639.9836792 1938.2824815 1580.9149217 1250.8837027 878.7763316 351.17023238 +-11.685603574 -40.857636021 0 0 -14.505172321 -57.032496025 216.18368472 760.97102543 1123.898259 +1277.6050644 1671.843678 2450.7579729 3234.6126766 3862.6379955 4799.1161046 5862.093365 7711.0911107 11169.278479 +11169.278478 7711.0911091 5862.093365 4799.1161059 3862.6379973 3234.6126796 2450.7579717 1671.8436766 1277.605065 +1123.8982599 760.97102511 216.18368393 -57.032496129 -14.50517227 0 0 0.55987499076 -2.048812192 +-6.1770471805 25.867669488 148.14741984 319.6374393 520.46110908 787.04126924 1150.6384425 1649.1583956 2490.9248591 +3626.4739933 5059.7025816 8017.8259966 8017.8259966 5059.7025818 3626.4739933 2490.9248591 1649.1583956 1150.6384423 +787.04126898 520.46110918 319.63743967 148.14741979 25.867669304 -6.1770472086 -2.0488121856 0.55987500052 0 +0 0.0064539050011 0.079161912627 0.0044717242345 -1.0816908193 -4.0176998969 11.214185992 51.154018075 113.28613862 +206.87304273 378.52203371 722.41077872 1293.3280998 2165.090889 3299.0541732 3299.0541728 2165.0908889 1293.3280997 +722.4107785 378.52203356 206.87304268 113.28613872 51.154018055 11.214185944 -4.0176999257 -1.0816908064 0.0044717226982 +0.079161912886 0.0064539046475 0 0 -0.00067434444515 0.0041986793944 0.02768319707 -0.051682162003 -0.74212181253 +-2.506959315 -5.4738817627 -5.0874332324 1.7603081771 25.49731661 76.961054721 209.20649946 435.3999804 783.28532067 +783.28532059 435.39998036 209.20649942 76.961054714 25.497316623 1.7603081942 -5.0874332239 -5.4738817698 -2.5069593155 +-0.7421218122 -0.051682159574 0.027683198648 0.0041986793901 -0.00067434445891 0 0 -1.7363335376e-05 -0.00040078786163 +-0.0012382363029 0.0029160728878 0.018611146788 -0.089526045699 -0.6741519043 -1.4371513513 -2.9647336446 -6.0151544934 -12.683351755 +-18.694893122 -35.190739904 -15.161080112 -15.161080078 -35.190739915 -18.694893113 -12.683351749 -6.0151544911 -2.9647336453 +-1.4371513515 -0.67415190484 -0.089526045161 0.018611146791 0.0029160726611 -0.0012382363215 -0.00040078786183 -1.7363334683e-05 0 +0 -5.2359544042e-06 1.5506479143e-05 6.2124070433e-05 -0.00031040907678 0.0013342976479 0.0018053078381 0.018786493604 -0.0074460490226 +-0.24903385366 -1.2647218199 -3.465907101 -10.721490214 -21.162068323 -21.571156932 -21.571156939 -21.162068315 -10.721490213 +-3.4659071 -1.2647218194 -0.24903385362 -0.0074460489347 0.018786493648 0.0018053078374 0.0013342976434 -0.0003104090675 6.2124069569e-05 +1.5506479258e-05 -5.2359543726e-06 0 0 -2.5928160086e-07 5.8795516611e-06 1.1879506554e-05 -3.142869591e-05 -2.7354570848e-05 +-8.0767169814e-05 0.0024489263812 0.0071996311109 0.012451458555 0.0042167923766 -0.12101345677 -1.2166845391 -2.4287225472 -1.6236857276 +-1.62368573 -2.4287225452 -1.2166845392 -0.12101345682 0.004216792332 0.012451458574 0.0071996311173 0.0024489263904 -8.0767172745e-05 +-2.7354569992e-05 -3.1428695658e-05 1.1879506363e-05 5.879551651e-06 -2.5928160493e-07 0 0 9.8644146367e-08 -2.826304494e-09 +-2.2046136755e-06 2.2965206594e-06 4.4373396976e-06 1.5675190618e-05 -5.4211763732e-05 0.00016694299719 0.00013870338712 0.0015284791815 0.010623896307 +0.16214504396 0.51114693192 0.40109080976 0.40109081008 0.51114693162 0.16214504403 0.010623896312 0.0015284791777 0.00013870338221 +0.00016694299651 -5.4211763607e-05 1.567519065e-05 4.437339811e-06 2.2965206488e-06 -2.2046136453e-06 -2.8263041084e-09 9.8644146361e-08 0 +0 2.3571876968e-09 -4.8781677371e-08 -1.4473662941e-07 5.7289411958e-07 7.3937216232e-07 -3.0027861894e-07 -8.9474767163e-06 -9.9228028207e-05 +-0.00016803659549 -9.9140735451e-05 0.0035755493683 0.056427567758 0.073855852983 0.064070642222 0.064070642243 0.073855852922 0.056427567767 +0.0035755493705 -9.914073523e-05 -0.00016803659582 -9.9228028301e-05 -8.9474767258e-06 -3.0027857993e-07 7.3937215024e-07 5.7289411491e-07 -1.4473662657e-07 +-4.8781677473e-08 2.3571877094e-09 0 0 -1.022078352e-09 9.100652424e-10 4.5589370635e-08 2.325945172e-08 -3.1455936266e-07 +-1.3899715557e-06 -8.042740613e-07 -4.4946670932e-06 1.2433592581e-05 -1.095289873e-05 8.5867018678e-05 -2.1961676598e-05 -0.0073285931783 -0.0047754790421 +-0.0047754790522 -0.0073285931744 -2.1961679398e-05 8.5867018542e-05 -1.0952898728e-05 1.2433592621e-05 -4.4946670947e-06 -8.0427406496e-07 -1.3899715543e-06 +-3.1455935944e-07 2.3259451179e-08 4.5589370057e-08 9.1006523367e-10 -1.0220783564e-09 0 0 2.5795033938e-11 2.4164205867e-10 +9.9575975719e-10 -9.2308934938e-09 -3.81571578e-08 -1.0398099709e-07 1.9985781588e-07 1.6290624227e-06 2.7701447848e-06 2.586052411e-06 -4.5609207366e-05 +-0.0013743143114 -0.00092128642449 -0.0012992539629 -0.0012992539619 -0.00092128642421 -0.0013743143107 -4.5609207392e-05 2.5860524052e-06 2.7701447884e-06 +1.6290624233e-06 1.9985781559e-07 -1.0398099745e-07 -3.8157157379e-08 -9.2308934392e-09 9.9575973197e-10 2.4164205954e-10 2.5795034033e-11 0 +0 1.543571098e-12 -7.599254369e-12 -4.4333001003e-10 -9.6199183449e-10 2.6580613419e-09 3.2997567979e-08 4.8828338402e-08 1.0565150791e-07 +-1.1437123381e-07 3.9816146639e-07 -3.9164743341e-06 -6.3001750663e-05 8.3119683135e-05 5.9991027678e-05 5.9991027935e-05 8.3119683113e-05 -6.3001750572e-05 +-3.9164743334e-06 3.9816146674e-07 -1.1437123435e-07 1.0565150802e-07 4.8828338518e-08 3.2997567953e-08 2.6580613337e-09 -9.6199182428e-10 -4.4333000599e-10 +-7.5992544115e-12 1.5435710999e-12 0 0 -1.2105767171e-13 -1.5467693877e-12 8.369145531e-13 1.1611418389e-10 5.3189868219e-10 +2.6959883472e-09 -4.2323656177e-10 -1.5819815361e-08 -2.923419514e-08 -1.691598566e-07 -1.5737066522e-07 1.4149117538e-05 1.2151803095e-05 1.3602340096e-05 +1.3602340085e-05 1.2151803102e-05 1.4149117531e-05 -1.5737066515e-07 -1.6915985659e-07 -2.9234195158e-08 -1.5819815377e-08 -4.2323655277e-10 2.695988362e-09 +5.3189868033e-10 1.1611418325e-10 8.3691454903e-13 -1.5467693843e-12 -1.2105767178e-13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -1941,100 +1941,100 @@ normalized%20dose 1 900 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 0 1.5316701434e-12 -3.7020964239e-12 1.0080674587e-10 -3.4261675872e-10 -7.9552162401e-10 -1.7111158776e-09 2.7129424848e-09 -4.430146799e-08 -1.7340319918e-07 -9.1413351315e-07 -2.77871899e-06 -3.5870408106e-06 6.3179893946e-06 0.00011184168397 -0.00011184168395 6.3179893778e-06 -3.5870408197e-06 -2.7787189966e-06 -9.1413351452e-07 -1.7340319955e-07 -4.4301467937e-08 2.712942469e-09 1.7111158937e-09 --7.9552159824e-10 -3.4261674679e-10 1.0080674809e-10 -3.7020964456e-12 1.5316699734e-12 0 0 -5.1395747808e-12 1.1445420838e-10 --4.8445759549e-10 -6.5734332297e-10 4.0943418311e-09 1.9379674694e-08 1.8656937756e-08 -2.1500852575e-07 -9.5137963567e-07 -2.7218952272e-06 -1.9488974879e-06 -0.00016480747767 0.0022347483195 0.0064112255491 0.00641122555 0.0022347483199 0.0001648074776 -1.9488975123e-06 -2.7218952358e-06 -9.5137963764e-07 --2.1500852543e-07 1.8656937843e-08 1.9379674826e-08 4.0943418781e-09 -6.5734329544e-10 -4.844575842e-10 1.1445420993e-10 -5.1395750029e-12 0 -0 1.0449849679e-10 -6.9237460883e-10 -5.8452607059e-10 1.0374460268e-08 4.0505179553e-08 6.4564427912e-08 1.1555968727e-07 -2.617983498e-07 -4.8326012352e-07 6.1109724582e-05 0.0011643548903 0.009868012447 0.022768248514 0.027197869961 0.027197869959 0.022768248514 0.0098680124461 -0.0011643548898 6.1109724517e-05 4.8326011614e-07 -2.6179834884e-07 1.1555968834e-07 6.4564428199e-08 4.0505179628e-08 1.0374460312e-08 -5.8452604667e-10 --6.9237460059e-10 1.0449849734e-10 0 0 -7.767265901e-10 -6.4545051539e-10 1.7966376986e-08 8.2342572354e-08 1.7591216942e-07 -2.7954819649e-07 6.0960676994e-07 1.1887203129e-05 0.00024972168196 0.0040092369908 0.024156430874 0.046349086764 0.056544277314 0.058842507755 -0.058842507749 0.056544277296 0.046349086759 0.024156430871 0.0040092369894 0.00024972168184 1.1887203125e-05 6.096067721e-07 2.7954819753e-07 -1.7591216954e-07 8.2342572361e-08 1.7966377008e-08 -6.4545050161e-10 -7.7672658513e-10 0 0 -2.8033277969e-09 1.6459113022e-08 -1.1932052949e-07 3.1113167517e-07 8.1174864919e-07 2.4810247522e-06 2.4779295921e-05 0.00049678250728 0.0084103452961 0.04167094827 0.077144452313 -0.091698041284 0.097335939066 0.10109717157 0.10109717157 0.097335939056 0.091698041261 0.077144452308 0.041670948265 0.008410345293 -0.00049678250709 2.4779295922e-05 2.4810247536e-06 8.1174864944e-07 3.111316751e-07 1.1932052948e-07 1.6459113025e-08 -2.8033277933e-09 0 -0 -9.8566388683e-09 4.0569046013e-08 3.0672900393e-07 1.0099517001e-06 3.6929832202e-06 3.4026388455e-05 0.00067105051251 0.013110348698 -0.055121344447 0.09756377606 0.11247967282 0.12213505566 0.13331383742 0.14441498303 0.14441498305 0.13331383743 0.12213505565 -0.11247967279 0.097563776056 0.055121344442 0.013110348693 0.0006710505123 3.4026388449e-05 3.6929832207e-06 1.0099517004e-06 3.0672900397e-07 -4.0569046006e-08 -9.8566388855e-09 0 0 -4.9793803248e-08 -9.9428005052e-08 2.9638173325e-07 2.0818963459e-06 2.8327813144e-05 -0.00067635075056 0.015956838738 0.062697703261 0.11189172558 0.13311057105 0.14603126526 0.15907262012 0.17547980216 0.18810707384 -0.18810707386 0.17547980217 0.15907262011 0.14603126525 0.13311057103 0.11189172558 0.062697703257 0.015956838733 0.00067635075033 -2.8327813138e-05 2.0818963463e-06 2.9638173353e-07 -9.9428005126e-08 -4.9793803304e-08 0 0 -2.0789350549e-07 -8.2982418321e-07 --1.0708414113e-06 1.1318463639e-05 0.00049731412766 0.013070555002 0.062907086248 0.11553985163 0.14300259318 0.15442274835 0.17175674636 -0.19455967726 0.21543264916 0.23155652949 0.23155652948 0.21543264915 0.19455967727 0.17175674637 0.15442274833 0.14300259316 -0.11553985163 0.062907086243 0.013070554998 0.00049731412746 1.1318463634e-05 -1.0708414117e-06 -8.2982418327e-07 -2.0789350549e-07 0 -0 -7.2701427455e-07 -3.4021583774e-06 -4.4432158685e-06 0.00023835225898 0.0083454662076 0.055363355805 0.11362882711 0.14439607706 -0.15669998292 0.17652623416 0.20387902146 0.23368806303 0.2558577877 0.27970263799 0.27970263795 0.25585778767 0.23368806302 -0.20387902146 0.17652623417 0.1566999829 0.14439607704 0.11362882711 0.0553633558 0.0083454662047 0.00023835225886 -4.4432158735e-06 --3.402158378e-06 -7.2701427421e-07 0 0 -2.1761279795e-06 -9.800849966e-06 4.6961828032e-05 0.0040183279942 0.041967930497 -0.099360979869 0.1369226917 0.15734782197 0.17585246448 0.20611732789 0.24300264873 0.27400860275 0.30550275622 0.34610095842 -0.34610095842 0.30550275622 0.27400860273 0.24300264873 0.20611732788 0.17585246449 0.15734782196 0.13692269168 0.099360979868 -0.041967930493 0.0040183279928 4.6961827984e-05 -9.800849971e-06 -2.1761279796e-06 0 0 -5.7083144985e-06 -1.3006322049e-05 -0.0011522210852 0.023787264703 0.07886199734 0.11883320695 0.14993026654 0.17026081755 0.19853311313 0.23991359158 0.28057506138 -0.32067865858 0.36025068146 0.45090950978 0.45090950975 0.36025068146 0.32067865859 0.28057506137 0.23991359158 0.19853311313 -0.17026081755 0.14993026652 0.11883320694 0.078861997338 0.023787264701 0.0011522210847 -1.3006322062e-05 -5.7083145e-06 0 -0 -8.4499422465e-06 0.00013321401355 0.0089604398084 0.048335728556 0.10018314243 0.12769063865 0.15700693149 0.18790309954 -0.22766951012 0.26800025695 0.31797760043 0.3681037836 0.44441982646 0.6132070215 0.61320702146 0.44441982642 0.36810378362 -0.31797760046 0.26800025696 0.22766951011 0.18790309955 0.15700693148 0.12769063864 0.10018314242 0.048335728553 0.008960439808 -0.00013321401352 -8.4499422513e-06 0 0 -5.6131800675e-06 0.001271637985 0.022389615625 0.065543598366 0.10394159453 -0.13373820138 0.16411489927 0.20104842512 0.24095866891 0.29169652354 0.34882832273 0.43669653626 0.53506366245 0.83039193516 -0.83039193516 0.53506366242 0.43669653622 0.34882832277 0.29169652356 0.24095866891 0.20104842512 0.16411489926 0.13373820137 -0.10394159452 0.065543598358 0.022389615627 0.0012716379855 -5.6131800754e-06 0 0 6.7131393534e-06 0.0048386083095 -0.029089517973 0.065597357205 0.10031027426 0.13485913422 0.16594519873 0.20455703664 0.25700129521 0.32954860956 0.43152385845 -0.60116546833 0.82384780199 0.99999999993 1 0.823847802 0.60116546838 0.43152385846 0.32954860959 0.25700129522 -0.20455703663 0.16594519871 0.13485913421 0.10031027424 0.065597357197 0.029089517973 0.0048386083087 6.713139332e-06 0 -0 7.3129761348e-06 0.0055509311687 0.028692212092 0.060217288963 0.091431505314 0.12011063478 0.15224530471 0.20055338627 -0.25193130585 0.32778873349 0.43240305345 0.60078609009 0.824830479 0.99570422267 0.9957042227 0.824830479 0.6007860901 -0.43240305346 0.3277887335 0.25193130589 0.2005533863 0.15224530471 0.12011063476 0.091431505297 0.060217288966 0.028692212093 -0.0055509311668 7.3129761228e-06 0 0 2.6319650839e-06 0.0019291572584 0.021285018751 0.051645162508 0.078894121054 -0.10259725983 0.13550770822 0.17852095455 0.23785986275 0.28630425691 0.35680674651 0.4503112013 0.57425896318 0.8601469547 -0.86014695469 0.57425896317 0.45031120131 0.35680674649 0.28630425693 0.23785986278 0.17852095456 0.13550770821 0.10259725981 -0.078894121047 0.051645162513 0.021285018749 0.0019291572569 2.631965072e-06 0 0 -8.743299603e-08 6.9824795998e-06 -0.00041635701319 0.0036085692449 0.011416142171 0.023152525521 0.038792914961 0.059423467874 0.087208511068 0.1248176005 0.18311767313 -0.2623569666 0.37280014314 0.58883894797 0.58883894795 0.37280014314 0.26235696659 0.18311767313 0.12481760049 0.087208511068 -0.059423467871 0.038792914958 0.023152525519 0.011416142171 0.0036085692443 0.00041635701297 6.9824795889e-06 -8.7432995769e-08 0 -0 -8.7633169438e-09 -6.7992372623e-08 1.6093574323e-06 3.259814351e-05 0.00031656612055 0.0017461504098 0.0049553922625 0.010549483331 -0.018535177575 0.031969213617 0.056612146313 0.09814040379 0.16255833833 0.25875500274 0.25875500273 0.16255833832 0.098140403786 -0.05661214631 0.031969213614 0.018535177573 0.010549483331 0.0049553922627 0.0017461504098 0.00031656612046 3.2598143499e-05 1.6093574342e-06 --6.7992372594e-08 -8.7633170416e-09 0 0 -1.1551658699e-09 2.2760760976e-08 5.421573307e-08 9.6634698678e-08 1.7624540889e-06 -2.346401368e-05 0.00014770108922 0.0005563578492 0.0015220707565 0.0036439217119 0.0084040030855 0.018594513528 0.038031309986 0.069871183798 -0.069871183796 0.038031309983 0.018594513526 0.0084040030852 0.003643921712 0.0015220707564 0.00055635784931 0.00014770108923 2.346401368e-05 -1.7624540892e-06 9.6634698752e-08 5.4215733231e-08 2.2760761025e-08 -1.1551658783e-09 0 0 -5.8745061665e-11 6.3683828806e-10 --2.8551264124e-10 6.588738224e-09 2.0878245418e-08 1.2040060406e-07 9.9180970776e-07 6.558144121e-06 3.193663127e-05 0.00012795299427 0.00042820279314 -0.001218284451 0.0029090843573 0.0053522904444 0.0053522904443 0.0029090843571 0.0012182844509 0.00042820279313 0.00012795299428 3.1936631272e-05 -6.558144121e-06 9.9180970776e-07 1.2040060406e-07 2.0878245432e-08 6.5887382357e-09 -2.8551263881e-10 6.3683829012e-10 -5.8745060515e-11 0 -0 -5.7451852808e-12 -3.6230707751e-11 5.3596267072e-11 1.1128385556e-09 1.2366692127e-09 4.0172383942e-09 8.422694573e-09 1.186510238e-08 -1.4784281486e-07 1.2972564675e-06 5.6157359184e-06 1.9237342644e-05 4.5207124877e-05 3.6648041862e-05 3.6648041865e-05 4.5207124878e-05 1.9237342642e-05 -5.6157359176e-06 1.2972564674e-06 1.4784281481e-07 1.1865102364e-08 8.4226945747e-09 4.0172383886e-09 1.2366692117e-09 1.1128385553e-09 5.3596266922e-11 --3.6230707756e-11 -5.7451852709e-12 0 0 -7.7326846389e-14 3.3731139139e-12 2.4575906885e-11 5.3819401849e-11 8.9512229242e-11 -3.2316369837e-10 -4.2232906418e-10 -4.1592132733e-09 -9.8651881644e-10 -4.1626756669e-08 -2.5102973756e-07 -1.3050311074e-07 2.6475373501e-07 9.2621786989e-08 -9.2621786997e-08 2.6475373504e-07 -1.3050311074e-07 -2.5102973755e-07 -4.1626756669e-08 -9.8651882341e-10 -4.159213279e-09 -4.223290652e-10 3.2316369851e-10 -8.9512229281e-11 5.381940178e-11 2.4575906838e-11 3.3731139027e-12 -7.7326848655e-14 0 0 5.3444469369e-14 5.2496770836e-13 -5.6743811322e-13 1.8199642357e-12 1.1937772946e-11 -2.04340627e-11 -3.7193092739e-10 -6.332592657e-10 -2.6833628288e-09 -2.430275518e-08 -3.1197587821e-08 --1.7740210832e-08 -2.0391444455e-08 -4.1287079037e-08 -4.1287079062e-08 -2.039144445e-08 -1.774021083e-08 -3.119758782e-08 -2.430275518e-08 -2.6833628293e-09 --6.3325926679e-10 -3.7193092792e-10 -2.0434062747e-11 1.1937772961e-11 1.8199642405e-12 5.6743811341e-13 5.2496770775e-13 5.3444469159e-14 0 -0 5.6452767119e-15 6.1729044223e-15 4.7359413942e-15 4.0797157169e-13 -6.9702848174e-14 -1.1703967669e-11 -4.025553463e-11 -3.5939167817e-11 --3.4567509024e-10 -1.0889844861e-09 1.2110385905e-09 -3.0182967736e-10 -7.390008904e-09 -4.7442370924e-09 -4.7442370937e-09 -7.3900089055e-09 -3.0182967739e-10 -1.2110385907e-09 -1.0889844861e-09 -3.4567509017e-10 -3.5939167838e-11 -4.0255534701e-11 -1.170396769e-11 -6.9702849384e-14 4.0797157254e-13 4.7359416102e-15 -6.1729045164e-15 5.6452767021e-15 0 0 -4.5101994154e-16 -1.5619324661e-15 1.2692244232e-14 3.3011393695e-14 -3.0209657976e-13 --1.2567561116e-12 -8.0400300792e-14 -4.373654662e-12 -7.8525825823e-12 1.9651367757e-10 1.7376379668e-10 -1.0744571563e-10 -2.6965662874e-10 2.4410848437e-11 -2.4410848394e-11 -2.6965662893e-10 -1.0744571564e-10 1.737637967e-10 1.9651367759e-10 -7.8525825685e-12 -4.3736546618e-12 -8.0400300902e-14 -1.2567561152e-12 --3.0209658064e-13 3.3011393698e-14 1.2692244246e-14 -1.5619324549e-15 -4.5101993907e-16 0 0 1.0111318475e-17 3.8713186199e-16 -1.61615762e-15 -8.9114707686e-15 -4.4281048929e-14 4.6281097944e-14 2.4946044747e-14 -4.4863268356e-14 7.0392136436e-12 1.9629286629e-11 -1.2700771573e-11 --1.8872177814e-11 6.6786731474e-12 6.3457923524e-12 6.3457923521e-12 6.6786731467e-12 -1.8872177817e-11 -1.2700771574e-11 1.9629286631e-11 7.0392136426e-12 --4.4863268285e-14 2.4946044832e-14 4.6281098059e-14 -4.4281048985e-14 -8.9114707947e-15 1.6161576155e-15 3.8713186183e-16 1.0111318632e-17 0 -0 5.2928101081e-18 3.0405432842e-17 -2.7194485337e-16 -1.6010239481e-15 2.763139591e-15 8.4413739172e-15 -9.7167646432e-15 5.4376135242e-14 -7.2323781963e-13 -1.4384123224e-12 -2.1018351851e-12 -7.918222413e-14 7.7766767978e-13 -1.4559847499e-15 -1.4559845874e-15 7.7766767981e-13 -7.9182224199e-14 --2.1018351853e-12 -1.4384123226e-12 7.2323781932e-13 5.4376135244e-14 -9.7167646432e-15 8.4413739369e-15 2.7631396091e-15 -1.6010239495e-15 -2.719448537e-16 -3.0405432735e-17 5.2928100992e-18 0 0 -1.6629620433e-19 -6.395920313e-18 -2.9772695882e-17 1.2495492765e-16 6.4461140354e-16 --8.4719259575e-16 -2.0180411121e-15 6.8727585395e-17 -6.6637638887e-14 -1.367625225e-13 4.5612385135e-15 4.4229975117e-14 -7.0250022969e-15 -6.4925500628e-15 --6.4925500625e-15 -7.0250022969e-15 4.4229975119e-14 4.5612385103e-15 -1.3676252251e-13 -6.6637638879e-14 6.8727582574e-17 -2.0180411164e-15 -8.4719259784e-16 -6.4461140554e-16 1.2495492813e-16 -2.9772695839e-17 -6.3959203182e-18 -1.6629620506e-19 0 0 0 0 +0 0 0 0 1.0681442559e-11 -5.2133432261e-11 6.1724793231e-11 7.0730858454e-10 -8.4850989984e-09 +-3.1705225157e-08 1.1808889561e-07 -4.9198368457e-07 -3.5941936054e-06 2.1793167676e-06 7.2257569968e-05 9.0231897469e-05 -0.00090029252268 -0.0022796899482 +-0.0022796899463 -0.00090029252284 9.0231897436e-05 7.2257569594e-05 2.1793167392e-06 -3.594193614e-06 -4.9198368662e-07 1.180888963e-07 -3.1705225006e-08 +-8.4850990079e-09 7.0730858326e-10 6.1724791549e-11 -5.2133432415e-11 1.0681442572e-11 0 0 -6.3892887653e-11 1.1323364546e-10 +1.2620800287e-09 -5.5557235393e-09 -1.8901202669e-08 9.6321862545e-08 -5.8774323838e-07 -4.2750499115e-06 6.7223732941e-06 4.9180629942e-05 -0.00016126391074 +-0.0020035655281 -0.0038426513047 0.00056471675032 0.00056471676892 -0.0038426512968 -0.0020035655247 -0.00016126391109 4.9180629891e-05 6.7223732539e-06 +-4.2750499127e-06 -5.8774323834e-07 9.632186253e-08 -1.8901202734e-08 -5.5557235132e-09 1.2620800321e-09 1.1323364366e-10 -6.3892887729e-11 0 +0 2.4001242068e-10 1.2909202961e-09 -4.9807006732e-09 -1.3981481718e-08 1.2850215418e-07 -4.979829774e-07 -4.1251787508e-06 1.5364131179e-05 +5.2714989729e-05 -0.000554336746 -0.0025174348153 0.0014043258152 0.01939817058 0.027259279819 0.027259279803 0.019398170602 0.0014043258203 +-0.0025174348152 -0.00055433674391 5.2714989758e-05 1.5364131145e-05 -4.1251787491e-06 -4.9798297684e-07 1.2850215419e-07 -1.3981481664e-08 -4.9807006602e-09 +1.290920295e-09 2.40012419e-10 0 0 9.9428119406e-10 -6.9547243987e-09 -2.0479942368e-08 1.5453180619e-07 -7.5571475068e-07 +-3.2798450858e-06 2.1795081769e-05 7.1680442355e-05 -0.00036886893205 -0.0022177503171 0.015181427132 0.048114544297 0.065805884769 0.065410248203 +0.065410248134 0.065805884688 0.0481145443 0.015181427128 -0.0022177503154 -0.00036886893073 7.168044237e-05 2.1795081768e-05 -3.2798450865e-06 +-7.5571475056e-07 1.5453180596e-07 -2.0479942284e-08 -6.9547243926e-09 9.942812004e-10 0 0 -1.216590049e-08 -2.0340764743e-08 +1.8022350142e-07 -8.5702153162e-07 -3.2256682499e-06 2.8547465026e-05 9.0971757994e-05 -0.0003710734797 -0.0014412086055 0.034949010504 0.087037618019 +0.10367199471 0.10157528895 0.10074918244 0.10074918237 0.10157528883 0.10367199461 0.087037618012 0.034949010485 -0.001441208605 +-0.00037107347951 9.0971757933e-05 2.8547465006e-05 -3.2256682508e-06 -8.5702153049e-07 1.8022350101e-07 -2.0340764803e-08 -1.2165900444e-08 0 +0 -3.2854668148e-08 2.3644796277e-07 -9.4307316243e-07 -4.6109141038e-06 3.0027675627e-05 0.0001011870733 -0.00028260530579 -0.001001874292 +0.050586721264 0.11900829998 0.12861029604 0.12317022055 0.13486442468 0.15241572943 0.15241572955 0.13486442475 0.12317022045 +0.12861029598 0.11900829999 0.050586721229 -0.0010018742934 -0.0002826053057 0.00010118707325 3.0027675562e-05 -4.6109141168e-06 -9.4307316086e-07 +2.364479628e-07 -3.2854667997e-08 0 0 3.0594278341e-07 -1.1961352808e-06 -6.2234989449e-06 2.4439434183e-05 9.7479551156e-05 +-0.00029538727536 -0.00081364199396 0.061018641179 0.13654960209 0.14816784421 0.13405621221 0.14784521843 0.17313861779 0.1860340973 +0.18603409729 0.17313861779 0.14784521843 0.1340562121 0.14816784415 0.13654960211 0.061018641135 -0.00081364199467 -0.00029538727536 +9.7479551104e-05 2.4439434103e-05 -6.2234989598e-06 -1.1961352784e-06 3.0594278385e-07 0 0 -1.1840770835e-06 -7.8429614574e-06 +1.9185041071e-05 7.7468207001e-05 -0.00044057144749 -0.0011384353673 0.061168674133 0.14199530729 0.15540001503 0.15308018136 0.1591817979 +0.19131850546 0.22750807398 0.23811318313 0.23811318308 0.22750807391 0.19131850551 0.15918179786 0.15308018124 0.15540001499 +0.14199530731 0.061168674089 -0.0011384353685 -0.0004405714472 7.7468206995e-05 1.9185041018e-05 -7.8429614653e-06 -1.1840770811e-06 0 +0 -8.0092991245e-06 3.6003365947e-06 6.4861808476e-05 -0.00047850336969 -0.0016442075543 0.051208274493 0.13729525717 0.15719858117 +0.15888751412 0.15703024743 0.19385546168 0.24581478788 0.26506268426 0.2750023986 0.27500239863 0.26506268417 0.24581478794 +0.19385546166 0.15703024738 0.15888751401 0.15719858111 0.13729525717 0.051208274452 -0.0016442075549 -0.00047850336785 6.4861808412e-05 +3.6003365345e-06 -8.0092991285e-06 0 0 -1.1470928887e-06 7.0017596532e-05 -0.00062399681865 -0.0025716014426 0.034562727531 +0.11917590135 0.1524912424 0.16055905922 0.15817253749 0.20083024103 0.26159480511 0.29548270969 0.30953482682 0.34346063406 +0.34346063402 0.30953482678 0.29548270966 0.26159480517 0.20083024101 0.15817253752 0.16055905905 0.1524912423 0.11917590136 +0.034562727503 -0.0025716014404 -0.00062399681973 7.001759633e-05 -1.1470930207e-06 0 0 0.00010982359898 -0.00012631983836 +-0.0027028105018 0.013749294502 0.087474031634 0.13770769539 0.14303389219 0.15499625753 0.19051677498 0.26190219937 0.29733218636 +0.32338817288 0.36444079973 0.45332265472 0.45332265485 0.36444079983 0.32338817282 0.29733218652 0.2619021995 0.19051677504 +0.1549962575 0.143033892 0.13770769531 0.087474031621 0.013749294486 -0.0027028105031 -0.00012631983672 0.00010982359868 0 +0 0.0001151764392 -0.0022516821518 -0.00038424136448 0.048890322664 0.11603261503 0.13662713049 0.14474953691 0.18385512753 +0.23521597055 0.28596353476 0.32826167989 0.38330785244 0.43826103945 0.62314020478 0.62314020452 0.43826103956 0.38330785255 +0.32826167957 0.28596353484 0.23521597073 0.18385512766 0.14474953691 0.13662713038 0.11603261499 0.048890322633 -0.00038424136234 +-0.0022516821444 0.00011517644026 0 0 -0.0013505146432 -0.0055260803558 0.016544194902 0.073594483767 0.11916417122 +0.14008236749 0.15852205757 0.20528171961 0.23970006107 0.29832840229 0.35835479046 0.43383392976 0.557310688 0.82710292644 +0.82710292657 0.55731068772 0.43383392946 0.35835479031 0.29832840219 0.23970006116 0.20528171967 0.15852205768 0.14008236747 +0.11916417121 0.073594483706 0.016544194924 -0.0055260803436 -0.0013505146415 0 0 -0.0028331043425 -0.0038649591802 +0.026209994455 0.073343714833 0.11392492956 0.14361431917 0.16526841644 0.21000234464 0.2478993731 0.33159424213 0.44008439658 +0.6112792974 0.81993139031 0.9841650534 0.98416505385 0.81993139018 0.61127929722 0.44008439659 0.33159424223 0.24789937285 +0.21000234462 0.16526841661 0.14361431911 0.11392492945 0.073343714758 0.026209994467 -0.0038649591579 -0.00283310434 0 +0 -0.0031438990668 -0.00089917962205 0.027021723903 0.067619773075 0.096252560722 0.12164768767 0.14914628117 0.203140539 +0.25119101941 0.33297224413 0.4306175107 0.61021429875 0.8271447308 0.99999999997 1 0.8271447308 0.61021429899 +0.43061751072 0.33297224426 0.25119101954 0.20314053897 0.14914628112 0.12164768736 0.096252560783 0.067619773197 0.027021723974 +-0.00089917972855 -0.003143899058 0 0 -0.0011161389164 -0.0043885165171 0.01663482641 0.058554931782 0.086481329362 +0.09830870676 0.12864444143 0.18858006563 0.24889584267 0.29722091481 0.36928070417 0.45107430588 0.59335033643 0.8594497261 +0.85944972606 0.59335033631 0.45107430588 0.36928070427 0.29722091495 0.2488958429 0.18858006554 0.12864444133 0.098308706805 +0.086481329434 0.058554931758 0.016634826349 -0.0043885165251 -0.0011161389125 0 0 4.3081064581e-05 -0.00015765128254 +-0.0004753092617 0.0019904563664 0.011399595744 0.024595349662 0.040048259026 0.060560975767 0.08853892363 0.12689886228 0.19167081311 +0.27904864994 0.38933222108 0.61695286494 0.61695286494 0.38933222109 0.27904864993 0.19167081312 0.12689886228 0.08853892362 +0.060560975747 0.040048259034 0.024595349691 0.01139959574 0.0019904563523 -0.00047530926386 -0.00015765128205 4.3081065332e-05 0 +0 4.9661282025e-07 6.0913231105e-06 3.4408866928e-07 -8.3233566084e-05 -0.00030915256366 0.00086290525369 0.0039361814559 0.0087171020932 +0.015918394393 0.029126380797 0.055587811432 0.099518557375 0.16659865497 0.25385446437 0.25385446433 0.16659865497 0.099518557367 +0.055587811415 0.029126380785 0.01591839439 0.0087171021013 0.0039361814544 0.00086290525004 -0.00030915256588 -8.3233565089e-05 3.4408855107e-07 +6.0913231304e-06 4.9661279304e-07 0 0 -5.1889220042e-08 3.2307851061e-07 2.1301569466e-06 -3.9768208898e-06 -5.7104529154e-05 +-0.00019290462681 -0.00042120233555 -0.00039146602947 0.00013545157671 0.0019619585829 0.0059219722676 0.016097948404 0.033503005106 0.060271964353 +0.060271964346 0.033503005103 0.016097948401 0.0059219722671 0.001961958584 0.00013545157803 -0.00039146602882 -0.0004212023361 -0.00019290462684 +-5.7104529128e-05 -3.9768207029e-06 2.130157068e-06 3.2307851028e-07 -5.18892211e-08 0 0 -1.3360678455e-09 -3.0839683921e-08 +-9.5279373098e-08 2.2438495463e-07 1.4320840008e-06 -6.88881879e-06 -5.1874404475e-05 -0.00011058541853 -0.00022812928549 -0.00046285199994 -0.00097595410596 +-0.0014385280843 -0.0027078447215 -0.0011666094793 -0.0011666094767 -0.0027078447224 -0.0014385280836 -0.00097595410552 -0.00046285199977 -0.00022812928554 +-0.00011058541854 -5.1874404517e-05 -6.8888187487e-06 1.432084001e-06 2.2438493719e-07 -9.5279374525e-08 -3.0839683936e-08 -1.3360677922e-09 0 +0 -4.0289438455e-10 1.1931871228e-09 4.7803012003e-09 -2.3885248857e-08 1.026710678e-07 1.3891419485e-07 1.4455765261e-06 -5.7295597072e-07 +-1.9162569698e-05 -9.7317371379e-05 -0.00026669340498 -0.00082499347163 -0.0016283714171 -0.001659849824 -0.0016598498245 -0.0016283714164 -0.00082499347155 +-0.0002666934049 -9.7317371339e-05 -1.9162569694e-05 -5.7295596396e-07 1.4455765295e-06 1.389141948e-07 1.0267106746e-07 -2.3885248143e-08 4.7803011338e-09 +1.1931871317e-09 -4.0289438212e-10 0 0 -1.9951109758e-11 4.5241768073e-10 9.1410010715e-10 -2.4183642787e-09 -2.1048699312e-09 +-6.214843878e-09 1.8843912896e-07 5.5399469161e-07 9.5811046925e-07 3.2447226202e-07 -9.3117010627e-06 -9.3621015528e-05 -0.00018688449142 -0.00012493880035 +-0.00012493880053 -0.00018688449126 -9.3621015533e-05 -9.311701066e-06 3.2447225859e-07 9.5811047075e-07 5.539946921e-07 1.8843912966e-07 -6.2148441035e-09 +-2.1048698653e-09 -2.4183642593e-09 9.1410009248e-10 4.5241767995e-10 -1.9951110071e-11 0 0 7.5904352048e-12 -2.1747748772e-13 +-1.6963984049e-10 1.7671186688e-10 3.4144285998e-10 1.2061690743e-09 -4.1714677972e-09 1.2845871243e-08 1.0672899624e-08 1.176128804e-07 8.174838499e-07 +1.2476680019e-05 3.9331554986e-05 3.0862995067e-05 3.0862995092e-05 3.9331554963e-05 1.2476680024e-05 8.174838503e-07 1.1761288011e-07 1.0672899245e-08 +1.284587119e-08 -4.1714677875e-09 1.2061690768e-09 3.4144286871e-10 1.7671186607e-10 -1.6963983817e-10 -2.1747745805e-13 7.5904352044e-12 0 +0 1.8138005281e-13 -3.7536354148e-12 -1.1137143437e-11 4.4082855942e-11 5.6892950033e-11 -2.3105733937e-11 -6.8848730272e-10 -7.63536354e-09 +-1.2930021061e-08 -7.6286465676e-09 2.7513011974e-07 4.3419687088e-06 5.6830342926e-06 4.9300853242e-06 4.9300853258e-06 5.6830342878e-06 4.3419687095e-06 +2.7513011991e-07 -7.6286465506e-09 -1.2930021087e-08 -7.6353635472e-09 -6.8848730345e-10 -2.3105730936e-11 5.6892949104e-11 4.4082855583e-11 -1.1137143218e-11 +-3.7536354226e-12 1.8138005378e-13 0 0 -7.864652684e-14 7.0027381339e-14 3.5079949148e-12 1.7897601397e-12 -2.4204603601e-11 +-1.0695504415e-10 -6.1886998611e-11 -3.4585406833e-10 9.567357246e-10 -8.4279981305e-10 6.6072652611e-09 -1.6898993944e-09 -5.6391801958e-07 -3.6746188777e-07 +-3.6746188854e-07 -5.6391801928e-07 -1.6898996098e-09 6.6072652506e-09 -8.427998129e-10 9.5673572766e-10 -3.4585406844e-10 -6.1886998892e-11 -1.0695504405e-10 +-2.4204603353e-11 1.789760098e-12 3.5079948703e-12 7.0027380668e-14 -7.8646527183e-14 0 0 1.9848672316e-15 1.8593788447e-14 +7.6621372832e-14 -7.1029555759e-13 -2.9361036062e-12 -8.0010933238e-12 1.5378589176e-11 1.253525244e-10 2.131561301e-10 1.9899065464e-10 -3.5095213047e-09 +-1.05750256e-07 -7.0890824927e-08 -9.9974538616e-08 -9.9974538539e-08 -7.0890824905e-08 -1.0575025595e-07 -3.5095213067e-09 1.9899065419e-10 2.1315613038e-10 +1.2535252445e-10 1.5378589154e-11 -8.0010933515e-12 -2.9361035738e-12 -7.102955534e-13 7.6621370892e-14 1.8593788514e-14 1.9848672389e-15 0 +0 1.187741679e-16 -5.8474476203e-16 -3.4113202247e-14 -7.402301055e-14 2.0453157262e-13 2.5390852969e-12 3.7572258714e-12 8.1296352053e-12 +-8.8005976181e-12 3.063758898e-11 -3.0136349453e-10 -4.8478366311e-09 6.3958642485e-09 4.6161685739e-09 4.6161685937e-09 6.3958642469e-09 -4.847836624e-09 +-3.0136349448e-10 3.0637589007e-11 -8.8005976593e-12 8.1296352137e-12 3.7572258804e-12 2.5390852948e-12 2.0453157199e-13 -7.4023009765e-14 -3.4113201936e-14 +-5.847447653e-16 1.1877416805e-16 0 0 -9.3151032984e-18 -1.1902026878e-16 6.4398607735e-17 8.9347135297e-15 4.0928353393e-14 +2.0744996653e-13 -3.2567058632e-14 -1.2172976083e-12 -2.2495026025e-12 -1.3016453364e-11 -1.2109302797e-11 1.0887413377e-09 9.3505268598e-10 1.0466680987e-09 +1.0466680979e-09 9.3505268649e-10 1.0887413372e-09 -1.2109302792e-11 -1.3016453363e-11 -2.2495026039e-12 -1.2172976095e-12 -3.2567057939e-14 2.0744996767e-13 +4.092835325e-14 8.9347134806e-15 6.4398607422e-17 -1.1902026852e-16 -9.3151033031e-18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -2055,100 +2055,100 @@ radiation%20flux%20density 1 961 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 6.3670769248e-07 -1.5928558811e-06 3.8601826839e-05 -0.00013660676997 -0.00033614994135 0.00076983687416 -0.0021287452393 -0.011699730527 -0.066665202341 -0.35154372707 -1.0513442603 -1.7328535824 1.9671176049 46.815739358 87.738667952 -46.815739347 1.9671175983 -1.7328535864 -1.0513442625 -0.35154372763 -0.066665202454 -0.011699730519 0.002128745232 0.00076983687618 --0.00033614993342 -0.00013660676586 3.8601827699e-05 -1.5928558916e-06 6.3670761298e-07 -2.1671147642e-06 4.1894898921e-05 -0.00015850687519 -0.00044322186669 -0.0012866211416 0.0066807365462 0.0074831058501 -0.068904790319 -0.32967518287 -1.1107705095 -0.84220288427 64.874060241 895.04695233 -2789.9263581 3919.4866787 2789.9263587 895.04695247 64.87406021 -0.84220289339 -1.1107705126 -0.32967518338 -0.068904790267 -0.0074831059019 0.0066807365892 0.0012866211594 -0.00044322185435 -0.00015850687033 4.1894899606e-05 -2.1671148181e-06 4.0640078612e-05 -0.00023907435623 --0.0004707315872 0.0035058383063 0.014107793794 0.024310053363 0.038996431767 -0.12090622323 0.31285781609 24.067294417 452.06023861 -3922.981535 9993.7594252 13126.241221 13254.023049 13126.24122 9993.759425 3922.9815346 452.06023842 24.067294394 -0.31285781355 -0.12090622302 0.038996432148 0.024310053469 0.014107793816 0.0035058383228 -0.00047073157635 -0.00023907435253 4.0640079005e-05 --0.00030582907443 -0.00047771190077 0.0061992093749 0.029250512204 0.059993108917 0.10575767262 0.27597792775 4.452105312 96.383665354 -1532.9206636 9372.300438 20562.400152 25976.717504 25199.772683 23707.873324 25199.772676 25976.717498 20562.400151 -9372.3004368 1532.920663 96.383665304 4.4521053106 0.27597792864 0.10575767292 0.059993108941 0.029250512201 0.0061992093846 --0.00047771189316 -0.00030582907218 -0.00090672833377 0.0058950609035 0.043620069053 0.11637413686 0.29729018092 0.92360151496 9.4842501825 -189.42348189 3184.0327033 15780.168831 33260.48369 37971.701207 33447.894456 32076.196122 32232.600822 32076.196124 -33447.894447 37971.701198 33260.483688 15780.168828 3184.0327021 189.42348181 9.4842501822 0.92360151555 0.29729018098 -0.11637413681 0.043620069053 0.0058950609084 -0.00090672833072 -0.0026272091511 0.015830201466 0.11402679465 0.35988861678 1.3407409976 -12.42701232 253.94146344 4974.4645079 20917.30132 41846.12747 46131.748119 36507.833282 33176.006937 35924.100232 -37569.756493 35924.100244 33176.006939 36507.833272 46131.748113 41846.127469 20917.301317 4974.4645063 253.94146336 -12.427012318 1.3407409979 0.35988861693 0.11402679467 0.015830201467 -0.0026272091547 -0.015984612337 -0.02902545573 0.10782143301 -0.66878276159 10.330152263 254.80140293 6066.0476167 24502.976051 46989.379192 50451.073457 36767.1622 30958.704211 -34394.746827 37058.757138 37998.388383 37058.75714 34394.746835 30958.704212 36767.162192 50451.073453 46989.379193 -24502.976048 6066.0476149 254.80140284 10.330152261 0.66878276175 0.10782143308 -0.029025455752 -0.015984612352 -0.072451404426 --0.27962504029 -0.35082428607 4.1267921978 188.24513554 4956.3890517 24523.130237 48965.377081 52313.584669 37353.380054 -29684.405383 33320.5908 36343.251172 35594.441648 34283.664957 35594.441639 36343.251166 33320.590808 29684.405386 -37353.380044 52313.584668 48965.377082 24523.130234 4956.38905 188.24513547 4.1267921956 -0.35082428608 -0.2796250403 --0.072451404424 -0.25291292311 -1.1512222864 -1.421603459 91.79546759 3165.3445929 21015.842217 47692.387497 53121.142957 -37105.500766 27671.026714 31562.014507 36283.263175 35988.248729 33179.501619 31699.198701 33179.501609 35988.248713 -36283.263174 31562.014521 27671.026716 37105.500756 53121.142955 47692.387498 21015.842214 3165.3445918 91.795467544 --1.4216034612 -1.1512222867 -0.25291292304 -0.87750901046 -3.5415730111 19.165710778 1535.4968089 15892.814298 42602.149964 -51973.888497 38596.857777 27565.404905 28744.819134 34777.6527 36612.08023 33932.09817 31121.738526 30098.908187 -31121.738519 33932.098158 36612.080221 34777.652706 28744.819151 27565.404908 38596.857764 51973.888492 42602.149964 -15892.814296 1535.4968083 19.165710759 -3.541573013 -0.87750901062 -2.4083450509 -5.294999542 448.57957084 9232.3445169 -33746.303398 48463.144736 38643.839451 28811.825894 29339.240299 33255.937535 34883.079045 34077.406814 32115.051039 -28649.212186 26621.784451 28649.212182 32115.051036 34077.406811 34883.079039 33255.937544 29339.240315 28811.825891 -38643.839437 48463.144731 33746.303397 9232.3445159 448.57957064 -5.294999548 -2.4083450517 -3.9024799626 51.81511031 -3562.7616368 20881.336824 41279.656437 39984.854879 30038.488217 28941.431718 32355.651596 35088.681857 33510.950216 -30812.54829 28905.089555 26792.583632 25809.114259 26792.583623 28905.089554 30812.548291 33510.950214 35088.681857 -32355.651604 28941.431729 30038.488214 39984.854869 41279.656433 20881.336823 3562.7616367 51.815110295 -3.9024799642 --2.6978561579 518.58614249 9661.2578893 29224.975851 38178.958333 32634.666177 28505.545245 29291.921344 31839.085331 -33422.280873 32092.919228 27578.815033 25234.294788 27653.296102 29630.357122 27653.29609 25234.294783 27578.815037 -32092.919233 33422.280873 31839.085333 29291.921351 28505.545249 32634.666174 38178.958327 29224.975849 9661.2578894 -518.58614269 -2.6978561609 3.4538336274 2162.7946527 13823.865812 29349.53886 33174.454902 29813.825883 27586.359271 -26756.37755 28554.741706 30335.927759 29413.474755 26646.174385 26298.573023 29029.450568 30478.332711 29029.45057 -26298.573024 26646.174387 29413.474762 30335.927762 28554.741703 26756.377547 27586.359271 29813.825884 33174.454898 -29349.538857 13823.865812 2162.7946526 3.4538336194 7.841047037 3660.7147714 14563.451808 25162.905151 28732.034599 -27025.402537 24679.323296 25567.135881 27554.105739 27624.82449 27006.596116 28940.540907 31598.974631 31481.900109 -30642.193214 31481.900111 31598.97464 28940.540912 27006.596121 27624.824491 27554.105738 25567.135884 24679.3233 -27025.402534 28732.034593 25162.905151 14563.451809 3660.7147707 7.8410470275 5.2414325852 2663.8534235 13185.324033 -23408.844481 23376.564181 19367.126412 20011.352561 26319.385841 30698.937163 28664.895136 26578.827782 29733.09009 -35028.054367 38586.863753 39719.515227 38586.863745 35028.054374 29733.090097 26578.827779 28664.895137 30698.937174 -26319.385856 20011.352563 19367.1264 23376.564176 23408.844485 13185.324033 2663.8534225 5.241432577 1.1185132244 -716.71242835 6661.0707891 16962.048594 25042.432813 32118.629493 42139.278926 55736.433873 70964.698079 84804.585834 -101302.91588 123185.65579 150464.13005 176881.57597 187659.99388 176881.57597 150464.13005 123185.65579 101302.91587 -84804.58584 70964.698092 55736.433877 42139.27892 32118.629484 25042.432813 16962.048596 6661.0707881 716.71242778 -1.1185132197 -0.27019397476 14.777308291 744.48413708 5551.9559174 15467.221279 27255.1628 39696.813681 54048.305669 -71984.873592 95660.406885 128494.78658 172163.43587 227767.3506 283396.44732 307870.46418 283396.44732 227767.3506 -172163.43587 128494.78658 95660.406886 71984.873593 54048.305665 39696.813677 27255.162799 15467.221279 5551.9559166 -744.48413669 14.777308273 -0.27019397477 -0.015549122832 -0.0750436287 2.3777917595 57.048031958 507.60949761 2516.6367501 -6563.8548576 12131.98085 19351.903405 30075.286918 48609.118305 79676.107012 126306.29546 181225.43334 208682.54817 -181225.43333 126306.29546 79676.107009 48609.118302 30075.286915 19351.903403 12131.98085 6563.854858 2516.6367501 -507.60949745 57.048031939 2.3777917604 -0.075043628645 -0.01554912295 -0.0016933053446 0.035535011852 0.09817443097 0.22201640767 -2.9866852657 38.176737867 217.08448251 756.03530958 1886.6199671 4044.6410983 8469.4938334 17510.134694 34356.535832 -59254.928708 73342.713636 59254.928705 34356.535829 17510.134693 8469.493833 4044.6410982 1886.6199672 756.03530978 -217.08448254 38.176737868 2.9866852658 0.22201640791 0.098174431228 0.03553501192 -0.0016933053579 -5.0348988599e-05 0.0014531841282 -0.001451179502 0.0053389152492 0.022647588376 0.15715081211 1.5475081322 9.9372748216 45.229445791 163.61028554 505.89220082 -1367.8207313 3200.9085255 6396.7658394 8369.3926906 6396.7658391 3200.9085252 1367.8207312 505.89220082 163.61028555 -45.229445796 9.9372748224 1.5475081322 0.15715081211 0.022647588402 0.0053389152656 0.0014511795096 0.0014531841339 -5.034898642e-05 --6.5176273396e-06 -6.1757454883e-05 -3.7769574871e-06 0.0011637783966 0.0022880059276 0.0042319792805 0.0075969484627 0.023719494791 0.24905967172 -1.7942709481 8.2131691268 27.878256231 67.64883867 85.776122801 78.713522696 85.776122804 67.648838668 27.878256227 -8.213169126 1.794270948 0.24905967169 0.023719494774 0.0075969484585 0.0042319792764 0.0022880059267 0.0011637783964 -3.7769575706e-06 --6.1757454854e-05 -6.5176273319e-06 3.0159420234e-07 6.0908066537e-06 3.8766915768e-05 8.5029092236e-05 0.000142390364 0.00024113729878 -0.00063512457221 --0.0034725557092 -0.0065949813875 -0.052031254099 -0.23260433724 -0.27550953247 0.069140647768 0.29844234419 0.27654719132 0.29844234421 -0.069140647799 -0.27550953247 -0.23260433724 -0.052031254104 -0.0065949813953 -0.0034725557141 -0.0006351245733 0.00024113729876 0.0001423903639 -8.5029092073e-05 3.876691569e-05 6.0908066325e-06 3.0159419778e-07 7.4968193307e-08 6.1907041689e-07 1.406247389e-06 3.1601298335e-06 1.077612608e-05 --3.5643059239e-05 -0.00038025252539 -0.00092651705924 -0.0037671927159 -0.026670805564 -0.054202676017 -0.052001917104 -0.038978237137 -0.046455604695 --0.057541214468 -0.046455604709 -0.038978237135 -0.052001917101 -0.054202676015 -0.026670805564 -0.0037671927169 -0.00092651706051 -0.00038025252589 --3.5643059288e-05 1.0776126095e-05 3.1601298376e-06 1.4062473885e-06 6.1907041615e-07 7.4968193043e-08 1.1031909015e-08 3.4994177087e-08 4.7778868607e-08 -3.6928752493e-07 -5.0756977304e-07 -1.3269686585e-05 -5.0960987965e-05 -8.6393961865e-05 -0.00036592940495 -0.0016053967673 -0.00055485527609 0.00018595821152 --0.0065725190536 -0.011068781554 -0.010085531992 -0.011068781557 -0.0065725190555 0.00018595821162 -0.00055485527588 -0.0016053967671 -0.00036592940493 --8.6393961945e-05 -5.0960988039e-05 -1.3269686603e-05 -5.0756977386e-07 3.6928752582e-07 4.7778868973e-08 3.4994177223e-08 1.1031909006e-08 -6.7047683799e-10 --2.4640242809e-09 1.0398566266e-08 2.873257865e-08 -3.1715416494e-07 -1.4593003685e-06 -1.6658510952e-06 -5.279867837e-06 -4.7585451391e-07 0.00019246333044 -0.00035134947122 0.0001125012089 -0.00037182566479 -0.00032598829806 -9.6226662954e-06 -0.00032598829836 -0.00037182566504 0.0001125012089 0.00035134947125 -0.00019246333047 -4.7585450333e-07 -5.2798678369e-06 -1.6658510983e-06 -1.4593003721e-06 -3.1715416585e-07 2.8732578652e-08 1.0398566299e-08 -2.4640242625e-09 --6.7047683366e-10 1.3057785445e-11 4.8011764821e-10 2.2409097424e-09 -8.078170968e-09 -5.0874765211e-08 -8.1084340078e-09 1.2406554738e-08 1.2896351958e-07 -8.6684472707e-06 2.8642813311e-05 1.1382941341e-05 -2.3681479006e-05 -9.1363373775e-06 1.2326896324e-05 1.304530134e-05 1.2326896322e-05 -9.1363373812e-06 --2.3681479009e-05 1.1382941343e-05 2.8642813312e-05 8.6684472699e-06 1.289635197e-07 1.2406554865e-08 -8.1084339855e-09 -5.0874765294e-08 -8.0781710029e-09 -2.2409097358e-09 4.8011764799e-10 1.3057785698e-11 8.9624264708e-12 6.132422072e-11 -2.9320069173e-10 -2.2186846889e-09 1.0617948816e-09 1.0467567776e-08 -4.3490979562e-09 9.1450362549e-08 8.6325411649e-07 -8.0152577467e-07 -3.8930661815e-06 -2.6311716376e-06 5.7428827485e-07 9.5099970168e-07 1.3691999009e-07 -9.50999702e-07 5.7428827476e-07 -2.6311716379e-06 -3.893066182e-06 -8.0152577528e-07 8.6325411611e-07 9.1450362566e-08 4.3490979773e-09 1.0467567814e-08 -1.0617949021e-09 -2.218684691e-09 -2.9320069248e-10 6.1324220515e-11 8.9624264549e-12 -3.3136485162e-13 -1.099368491e-11 -6.3502850803e-11 6.5478021251e-11 -9.2722322111e-10 2.6090594677e-10 -2.1584225188e-09 -1.3532337121e-09 -7.9564834605e-08 -2.6198053986e-07 -1.8787058714e-07 5.3135286877e-08 5.0890806199e-08 --1.5931883906e-08 -1.5950662523e-08 -1.5931883905e-08 5.0890806202e-08 5.3135286875e-08 -1.8787058717e-07 -2.6198053988e-07 -7.95648346e-08 -1.3532337156e-09 --2.1584225227e-09 2.6090594763e-10 9.2722322404e-10 6.5478021935e-11 -6.3502850727e-11 -1.0993684918e-11 -3.3136485311e-13 +0 0 0 5.642019101e-06 -1.9862358413e-05 2.0102664103e-05 0.00026948991185 -0.0032369918115 -0.011075432766 +0.038904555435 -0.20767807646 -1.1876641756 1.2032529583 23.47093944 13.441687064 -397.45172087 -953.69988667 -1128.281396 +-953.69988569 -397.45172011 13.441687169 23.470939347 1.2032529515 -1.1876641777 -0.20767807726 0.038904555552 -0.011075432711 +-0.003236991813 0.00026948991317 2.0102663459e-05 -1.9862358471e-05 5.6420191103e-06 -2.387292103e-05 2.6915743072e-05 0.00043853337524 -0.0019770957899 +-0.0091147299097 0.025213325389 -0.19763697791 -1.5742766729 2.170445331 19.51713197 -52.856155751 -698.20591963 -1663.0285613 +-108.70215532 1849.9573126 -108.70214507 -1663.0285581 -698.20591879 -52.85615595 19.517131926 2.1704453155 -1.574276674 +-0.19763697777 0.025213325455 -0.0091147299252 -0.0019770957828 0.00043853337574 2.6915742333e-05 -2.3872921056e-05 9.3489099795e-05 0.0005350391593 +-0.0017109649753 -0.0079776986723 0.039851048611 -0.16576507943 -1.5792543995 5.5564262283 23.763717239 -204.16288899 -970.94272719 +389.75494438 7514.7157714 13901.033126 15052.025309 13901.033122 7514.715778 389.75494542 -970.94272628 -204.16288822 +23.763717218 5.5564262143 -1.5792543984 -0.16576507919 0.039851048632 -0.0079776986566 -0.0017109649702 0.00053503915828 9.3489099156e-05 +0.00036656684657 -0.002489348609 -0.010121919748 0.044266399563 -0.26811015911 -1.3851086992 7.7142093506 32.021649449 -131.86175247 +-906.40559765 5640.7903996 21126.835766 32352.212169 31755.763981 28276.590596 31755.763931 32352.212138 21126.835764 +5640.7903979 -906.40559657 -131.86175204 32.021649437 7.7142093501 -1.3851086995 -0.26811015913 0.044266399571 -0.010121919732 +-0.0024893486042 0.00036656684745 -0.0042841525009 -0.0096879382191 0.056155148454 -0.30011578791 -1.4832927029 10.077473828 39.335969634 +-127.58320553 -628.01119182 12365.434448 37440.01792 46461.231368 39524.828074 33988.235763 32644.693391 33988.235742 +39524.828003 46461.231322 37440.017915 12365.434444 -628.01119143 -127.58320551 39.335969619 10.077473823 -1.4832927029 +-0.30011578741 0.056155148399 -0.0096879382273 -0.0042841524908 -0.0095750652457 0.064852990152 -0.32600269432 -1.9233893338 10.397613814 +43.442744914 -91.866735994 -471.26381829 16851.516123 51827.808611 57739.127738 35877.321584 27129.913748 32618.657699 +36510.710757 32618.657748 27129.913737 35877.321508 57739.12772 51827.808614 16851.51612 -471.26381881 -91.866736055 +43.442744884 10.397613794 -1.9233893369 -0.32600269365 0.064852990217 -0.0095750652079 0.098495749998 -0.40753306451 -2.5053701967 +8.5441535519 42.135503316 -106.94024694 -398.21670869 19470.856213 59357.431597 65108.998021 32185.37804 18752.45026 +28299.420094 36191.047566 39881.613564 36191.047608 28299.420144 18752.450231 32185.377987 65108.998013 59357.431603 +19470.856209 -398.21670894 -106.94024701 42.135503268 8.5441535237 -2.5053702003 -0.40753306372 0.098495750054 -0.54804926807 +-3.0311739904 6.6260657968 36.146528474 -156.68955564 -547.87062376 19460.109762 61797.31052 68733.408634 31653.545295 +14794.947407 27951.680294 37588.950237 36724.382634 34370.717937 36724.382609 37588.950259 27951.680326 14794.94736 +31653.545234 68733.408628 61797.31053 19460.109758 -547.87062433 -156.68955565 36.146528449 6.6260657762 -3.0311739922 +-0.54804926717 -2.7749312542 0.79948611882 29.307251592 -173.0237918 -743.25706613 16891.336706 59617.68278 69502.305048 +32428.990194 13928.995298 26753.265508 39139.594418 40798.834464 33267.514097 27350.946133 33267.514081 40798.834442 +39139.594432 26753.265524 13928.995262 32428.990132 69502.305034 59617.682783 16891.336702 -743.25706565 -173.02379112 +29.307251555 0.79948609414 -2.7749312549 0.94093487316 28.025114737 -225.21927949 -1040.3362473 12061.734929 51745.982114 +66638.938934 34547.723977 14617.489591 24201.816568 37041.849197 41474.084275 37702.287419 29504.429559 25247.407325 +29504.429623 37702.287376 41474.084205 37041.849219 24201.816632 14617.489554 34547.723887 66638.938909 51745.982113 +12061.734924 -1040.3362466 -225.21927992 28.025114633 0.94093482083 35.852864173 -36.303019281 -1078.4782044 5043.5067785 +36850.03666 60668.023507 37919.509742 15634.59377 22690.902319 34569.07818 40906.030098 39931.622551 33556.184514 +27822.208226 25505.38403 27822.208291 33556.184509 39931.622505 40906.030111 34569.078256 22690.902383 15634.593717 +37919.509661 60668.023487 36850.036657 5043.5067732 -1078.4782049 -36.303018619 35.852864092 11.413615072 -758.92890513 +-245.61774049 20621.852798 51215.290994 44255.295142 20882.287111 21235.328513 31812.090016 38893.957595 38793.329488 +33176.417995 28557.373517 27589.538412 27974.588957 27589.538268 28557.373567 33176.418036 38793.329459 38893.957605 +31812.090107 21235.328572 20882.287064 44255.295092 51215.290981 20621.852791 -245.61774104 -758.92890218 11.413615528 +-617.63176259 -2444.555546 6508.7312122 35395.1364 48627.177884 29866.56937 18351.269835 26696.691861 36890.918593 +38736.109198 32611.339194 24217.765551 22146.032757 28695.364482 33290.487107 28695.36432 22146.03266 24217.765468 +32611.339109 38736.10916 36890.918615 26696.691925 18351.269846 29866.569335 48627.177861 35395.136385 6508.7312187 +-2444.5555407 -617.63176187 -1392.9850776 -2170.6212859 13500.707895 38004.461339 40082.531174 26189.742233 20034.349231 +25525.906335 32899.733985 34363.746668 29697.79155 23414.586894 23448.128005 29420.39503 32955.920997 29420.395147 +23448.127839 23414.586687 29697.791543 34363.746686 32899.733943 25525.906298 20034.349234 26189.742233 40082.531161 +38004.461317 13500.707901 -2170.621275 -1392.9850765 -1711.7711249 -114.39284901 15167.701566 32286.265501 33546.768717 +25089.15822 21786.549101 25371.928738 28312.300846 28453.037618 27508.886613 29033.572935 32161.081663 31751.363602 +30198.832837 31751.363677 32161.081628 29033.572935 27508.886683 28453.037607 28312.300806 25371.928765 21786.5491 +25089.158149 33546.768702 32286.26559 15167.701589 -114.39288597 -1711.7711241 -1398.9155977 -818.46319287 13239.56631 +30472.106521 27192.90041 13621.001646 15242.53473 29336.868526 35741.681503 29378.723431 24053.693684 29191.432602 +36292.531063 39516.902818 40669.160464 39516.902737 36292.531107 29191.432726 24053.693689 29378.723405 35741.681588 +29336.86863 15242.534672 13621.001538 27192.900438 30472.106635 13239.566318 -818.463242 -1398.9155986 -447.21225981 +-1407.2256113 4991.3864499 19450.51063 28256.926925 30629.645007 38926.184308 56674.763694 74985.043987 87559.68374 +103289.23683 126046.57559 152889.29141 181080.29765 194286.78609 181080.29766 152889.29147 126046.57563 103289.23683 +87559.683797 74985.044051 56674.763674 38926.184268 30629.645019 28256.926961 19450.510627 4991.3864319 -1407.2256141 +-447.21225981 38.195908674 -267.86293132 -667.55424374 3756.2196847 15805.89898 29274.508959 40031.709487 51911.978235 +69377.865069 95226.329608 132051.58098 178151.43081 234091.96012 289971.92659 314589.74933 289971.92663 234091.96014 +178151.4308 132051.58098 95226.329618 69377.865034 51911.978199 40031.709509 29274.508992 15805.898972 3756.2196655 +-667.55424636 -267.86292969 38.195909367 1.4477611886 12.140977026 -3.8316149155 -174.82763105 -457.4136796 1271.8228008 +5509.7590301 10425.90979 16486.371438 26713.800999 46685.890995 80988.084008 129685.38656 182290.28017 207239.20124 +182290.28016 129685.38656 80988.083997 46685.890977 26713.800982 16486.37144 10425.909801 5509.75903 1271.8227935 +-457.4136829 -174.82763002 -3.8316148775 12.140977034 1.4477611534 -0.088883416798 0.83159358523 4.0335396779 -12.508975916 +-88.239861249 -274.71789558 -527.24812218 -413.06971867 375.66459944 2089.2677704 5817.9066215 14344.171991 30372.152631 +53150.672898 65860.934273 53150.672893 30372.152626 14344.171986 5817.9066192 2089.2677716 375.66460241 -413.06971758 +-527.24812275 -274.71789558 -88.239860999 -12.508975522 4.0335398049 0.83159358374 -0.088883418394 -0.001570268488 -0.033969088396 +-0.15719348089 0.2326982208 2.7926152054 -13.034353161 -70.116762921 -154.59410475 -297.46712145 -611.09112886 -1156.9915222 +-1645.4157381 -1535.670495 421.31331634 2109.9775419 421.31331641 -1535.6704949 -1645.4157372 -1156.9915216 -611.09112882 +-297.46712162 -154.59410482 -70.116762894 -13.0343531 2.7926151917 0.23269820228 -0.15719348444 -0.03396908835 -0.0015702684297 +-0.00035127040159 0.0017732703435 0.0032859391488 -0.02561158212 0.1656052073 0.44491882341 2.3156504029 -0.26717770697 -29.266603077 +-126.91796522 -316.0503842 -783.808938 -1499.3752119 -2031.027996 -2198.7859755 -2031.027996 -1499.3752114 -783.80893788 +-316.05038406 -126.91796519 -29.266603072 -0.26717769218 2.315650411 0.44491882607 0.16560520994 -0.025611580828 0.0032859391364 +0.0017732703539 -0.00035127039829 -1.0324359924e-05 0.00063329300772 0.0014451064937 -0.0018582097643 -0.0078596958185 -0.012715318098 0.22448667874 +0.76318309222 1.5353195423 0.4710640821 -12.543584409 -93.340012813 -240.31890504 -302.2346226 -286.49044071 -302.23462256 +-240.31890496 -93.340012823 -12.543584415 0.47106408041 1.5353195437 0.7631830937 0.22448667949 -0.01271531814 -0.0078596956609 +-0.001858209759 0.0014451064797 0.00063329300508 -1.032436052e-05 1.0413216946e-05 7.0759379817e-06 -0.00016503122712 0.00015375811336 8.9723638677e-05 +-0.00022444603266 -0.0056120989981 0.012306066545 0.080872608478 0.14883822628 1.3038487502 13.964654917 38.773641976 50.407560126 +48.76121878 50.407560128 38.773641967 13.964654921 1.3038487503 0.14883822576 0.080872607996 0.012306066429 -0.005612098997 +-0.0002244460121 8.9723658914e-05 0.00015375811289 -0.0001650312251 7.0759379982e-06 1.0413216923e-05 3.0330758268e-07 -6.0243228276e-06 -1.9616369889e-05 +4.0298047809e-05 0.00011140079589 8.7543454907e-05 -0.00055773533538 -0.0094023667715 -0.019934144455 -0.020916197142 0.38513607806 4.7049481288 +9.2920927427 10.086220569 10.208285842 10.086220562 9.2920927391 4.704948129 0.38513607823 -0.020916197143 -0.019934144482 +-0.0094023667834 -0.00055773533399 8.7543456908e-05 0.00011140079497 4.0298047628e-05 -1.9616369646e-05 -6.0243228357e-06 3.0330758454e-07 -1.4508949251e-07 +-2.9368058463e-08 4.9624715176e-06 6.1803153002e-06 -2.5345545239e-05 -0.00011693650996 -0.00013589441247 -0.00056916187654 -2.5373332895e-05 -0.00074216879091 +0.0040118733559 0.019502283668 -0.43528356065 -0.71174791702 -0.52442853342 -0.71174791747 -0.43528356053 0.019502283573 0.0040118733442 +-0.00074216878959 -2.5373330405e-05 -0.00056916187712 -0.00013589441254 -0.00011693650948 -2.5345544962e-05 6.1803151937e-06 4.9624714509e-06 -2.9368060402e-08 +-1.4508949315e-07 3.2299517517e-09 3.3305657298e-08 1.6332177333e-07 -7.2461398354e-07 -4.6163324022e-06 -1.243434495e-05 5.7221587395e-06 0.00018317990534 +0.00036079064945 0.00035137669737 -0.0053977144237 -0.11890877119 -0.18408488481 -0.16674408548 -0.19202177889 -0.16674408531 -0.1840848847 +-0.11890877111 -0.0053977144245 0.00035137669699 0.00036079064979 0.00018317990538 5.722158697e-06 -1.2434344926e-05 -4.6163323497e-06 -7.2461398139e-07 +1.6332177029e-07 3.3305657451e-08 3.2299517655e-09 1.9926824905e-10 -7.5320999527e-10 -6.0894957948e-08 -1.7665845271e-07 1.7899752216e-07 3.3981507975e-06 +7.1802346262e-06 1.333681652e-05 -2.0759622808e-06 1.2950104792e-05 -0.0003295072051 -0.0065953059034 0.00099148518619 0.0097605656319 0.0050551336909 +0.0097605656535 0.00099148519065 -0.0065953058969 -0.00032950720508 1.2950104773e-05 -2.0759623256e-06 1.333681653e-05 7.1802346328e-06 3.3981507934e-06 +1.7899752178e-07 -1.7665845075e-07 -6.0894957355e-08 -7.5321000093e-10 1.9926824931e-10 -1.8686966676e-11 -2.1856737646e-10 -7.1919828719e-11 1.4418666175e-08 +7.8302888268e-08 3.8958492609e-07 3.6059216272e-07 -1.1967303626e-06 -3.245401187e-06 -1.1717850002e-05 5.5072838006e-06 0.0013070168499 0.0022898776412 +0.0020734693792 0.0021507942099 0.0020734693785 0.0022898776409 0.0013070168492 5.5072837842e-06 -1.1717850005e-05 -3.2454011892e-06 -1.1967303606e-06 +3.6059216586e-07 3.895849275e-07 7.8302887881e-08 1.4418666084e-08 -7.1919828786e-11 -2.1856737601e-10 -1.8686966685e-11 dose 1 961 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -2163,100 +2163,100 @@ dose 1 961 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 5.0238420394e-09 -7.1189471434e-09 3.1850096591e-07 -7.9313115383e-07 -3.7330671219e-06 3.0031276134e-06 -1.4510807358e-05 -0.00013640938533 -0.00071406618705 -0.0035670948333 -0.01211246934 -0.020879542399 0.008957447113 0.38756094906 0.73367618487 -0.38756094894 0.008957447028 -0.02087954245 -0.012112469366 -0.0035670948391 -0.0007140661881 -0.00013640938521 1.4510807359e-05 3.0031277509e-06 --3.7330669983e-06 -7.9313110743e-07 3.1850097312e-07 -7.1189477721e-09 5.0238414819e-09 -1.1833842339e-08 3.5143047957e-07 -8.9510143987e-07 -4.5382113068e-06 -7.5402071333e-06 7.9997349617e-05 0.00013927000143 -0.00078043797502 -0.0045397919186 -0.015615349974 -0.027432559571 0.51329276954 7.8794440149 -28.746151851 42.791014156 28.746151855 7.8794440158 0.51329276917 -0.027432559705 -0.015615350014 -0.004539791925 -0.00078043797355 -0.00013927000215 7.9997350341e-05 7.5402075012e-06 -4.5382111331e-06 -8.9510139057e-07 3.514304833e-07 -1.1833843625e-08 3.2589492687e-07 -1.5696703917e-06 --5.4018065966e-06 2.8365673717e-05 0.00017815729598 0.00042162006284 0.00071556205465 -0.0011236879627 -0.0030993363234 0.18997528579 4.0041750189 -36.720077654 114.91665479 192.2462841 220.47408531 192.2462841 114.91665478 36.720077649 4.0041750169 0.18997528552 --0.0030993363498 -0.0011236879547 0.00071556205981 0.00042162006462 0.00017815729662 2.8365674067e-05 -5.4018064491e-06 -1.5696703585e-06 3.2589492797e-07 --2.2048923326e-06 -6.5929272692e-06 5.2624027177e-05 0.00036112174805 0.0010139534996 0.0018385251268 0.0035072102341 0.040509583121 0.85879737845 -14.1713078 96.40222314 267.44234463 444.53398194 542.35363388 564.42082978 542.35363379 444.53398186 267.4423446 -96.402223123 14.171307795 0.85879737802 0.040509583124 0.003507210249 0.0018385251318 0.0010139535004 0.00036112174837 5.2624027402e-05 --6.5929271789e-06 -2.2048923145e-06 -1.1742494173e-05 4.0125946849e-05 0.00050216626474 0.0017408840995 0.0045300905272 0.012294118584 0.092329617914 -1.7516996878 30.073240654 178.23474905 482.09444694 785.05584646 957.51482246 1029.3218756 1049.1967715 1029.3218755 -957.51482227 785.05584633 482.09444689 178.23474902 30.073240643 1.7516996872 0.092329617931 0.012294118593 0.0045300905282 -0.0017408840994 0.00050216626484 4.0125946935e-05 -1.1742494144e-05 -4.152439285e-05 0.00014552662726 0.0015844834674 0.0057305548412 0.019108536957 -0.13451887109 2.4020488596 46.913375663 253.01351811 665.06906831 1078.6492902 1323.3301975 1457.8933689 1561.7999328 -1610.5481834 1561.7999329 1457.8933688 1323.3301973 1078.6492901 665.06906825 253.01351806 46.913375648 2.4020488588 -0.13451887107 0.01910853696 0.005730554842 0.0015844834675 0.0001455266272 -4.1524392895e-05 -0.00019565204693 -0.00038870804799 0.0017851330294 -0.012119377889 0.11516864768 2.435047764 56.869105895 303.18771271 796.44756803 1304.4053731 1604.5162279 1770.2643571 -1935.1904353 2103.5003982 2181.3290488 2103.5003983 1935.1904353 1770.264357 1604.5162277 1304.405373 796.44756798 -303.18771267 56.869105878 2.4350477632 0.11516864766 0.012119377892 0.0017851330302 -0.0003887080485 -0.00019565204717 -0.00084520831085 --0.0038931336287 -0.0055881348437 0.041412655997 1.7680460662 46.813620689 303.76134626 843.28680597 1420.6623566 1779.1498931 -1985.4397262 2202.2428191 2442.0892612 2658.6703914 2752.9734937 2658.6703914 2442.0892612 2202.2428191 1985.4397261 -1779.149893 1420.6623566 843.28680594 303.76134621 46.813620673 1.7680460655 0.04141265598 -0.0055881348443 -0.0038931336294 --0.00084520831105 -0.0030664755259 -0.016947278772 -0.031966781412 0.80082811881 29.82302558 253.4657291 803.49526061 1431.6173744 -1835.6011308 2068.5222768 2317.5813594 2636.7189961 2950.4640604 3222.7395888 3353.8360849 3222.7395886 2950.4640603 -2636.7189962 2317.5813595 2068.5222767 1835.6011307 1431.6173743 803.49526057 253.46572906 29.823025569 0.80082811838 --0.031966781431 -0.016947278773 -0.0030664755248 -0.0095222383001 -0.05282779508 0.096154490914 14.101271145 178.98856872 672.51893892 -1329.295269 1811.5159784 2080.4770951 2345.8260868 2720.8232481 3130.9944866 3506.4824994 3893.8704536 4105.2421496 -3893.8704533 3506.4824992 3130.9944865 2720.8232481 2345.8260868 2080.477095 1811.5159782 1329.2952689 672.51893888 -178.98856869 14.101271139 0.096154490721 -0.052827795098 -0.0095222382994 -0.025860785855 -0.10066777355 3.8584847583 95.134981699 -487.52101087 1111.9911209 1656.5427551 2015.4195862 2302.5245186 2690.946811 3180.2934961 3667.8828004 4134.2158423 -4797.8312014 5228.3511737 4797.8312013 4134.2158423 3667.8828003 3180.293496 2690.946811 2302.5245185 2015.4195859 -1656.5427549 1111.9911208 487.52101083 95.134981684 3.8584847563 -0.10066777362 -0.025860785861 -0.046438749067 0.34783965131 -33.563568242 269.73101112 823.8255679 1395.856261 1815.3392036 2181.5160119 2572.703801 3063.8800534 3629.1841255 -4222.428858 4898.4905445 6129.5775275 6980.5543807 6129.5775271 4898.4905445 4222.4288581 3629.1841256 3063.8800534 -2572.703801 2181.5160117 1815.3392034 1395.8562609 823.82556783 269.7310111 33.563568239 0.34783965113 -0.046438749087 --0.046126710371 4.5617547972 107.43532586 476.34895777 1043.0458489 1527.0047809 1910.7524963 2329.0239021 2812.8412545 -3372.881677 4022.9000158 4826.8338592 5852.4089195 7947.6534212 9469.9412375 7947.6534208 5852.4089192 4826.8338594 -4022.9000162 3372.8816771 2812.8412545 2329.023902 1910.7524962 1527.0047808 1043.0458488 476.34895774 107.43532586 -4.5617547987 -0.046126710412 0.0036078405825 20.04507195 188.89181132 598.98959654 1100.0805741 1550.9342671 1963.5822995 -2412.9657303 2963.6733415 3670.9663908 4597.2062198 5963.6997579 7861.360597 10460.840126 12007.284979 10460.840126 -7861.360597 5963.6997581 4597.2062201 3670.966391 2963.6733415 2412.9657302 1963.5822993 1550.934267 1100.080574 -598.9895965 188.89181133 20.045071949 0.003607840486 0.046005328853 34.123450415 223.60016045 602.19179514 1041.5776063 -1465.2033709 1879.9522107 2372.4100236 2998.0396168 3825.3379815 4989.7109702 6776.0327852 9349.9988154 11953.488882 -13091.725807 11953.488882 9349.9988156 6776.0327854 4989.7109704 3825.3379818 2998.039617 2372.4100236 1879.9522105 -1465.2033707 1041.5776062 602.19179513 223.60016044 34.123450406 0.046005328743 0.032619173254 24.567133253 188.45865559 -530.83035089 925.57025715 1289.1407032 1674.2997688 2187.178034 2849.8584318 3620.7140739 4602.8001412 6036.1639684 -8036.5548482 10676.128663 12174.29641 10676.128663 8036.5548482 6036.1639684 4602.8001413 3620.7140742 2849.8584321 -2187.178034 1674.2997686 1289.1407029 925.5702571 530.83035091 188.45865557 24.567133242 0.032619173175 0.0083460053909 -6.3588388004 77.530494802 252.41094237 477.4464793 708.67187677 984.15828166 1352.154052 1846.6687274 2414.6866404 -3119.4094164 4108.4742213 5443.8664162 7858.9712652 9505.2793499 7858.9712651 5443.8664162 4108.4742212 3119.4094164 -2414.6866405 1846.6687275 1352.154052 984.15828155 708.67187668 477.44647929 252.41094238 77.530494788 6.3588387954 -0.0083460053528 -0.00031552164364 0.022363833806 1.3935992189 13.313863243 50.425950576 120.15007854 225.1604899 373.00305248 -576.34644516 861.09387331 1300.5652305 1968.731063 2938.3861201 4536.0514451 5560.1764392 4536.051445 2938.38612 -1968.7310629 1300.5652304 861.09387328 576.34644514 373.00305246 225.16048989 120.15007853 50.425950574 13.31386324 -1.3935992181 0.022363833771 -0.00031552164311 -3.2532390308e-05 -0.00018089101249 0.0053081222265 0.11269458427 1.1513483399 6.8484039173 -22.54231983 53.164923967 102.21420052 182.59754882 330.06168671 596.13922334 1040.8171106 1735.8154891 2155.7723225 -1735.815489 1040.8171105 596.13922331 330.06168669 182.59754881 102.21420051 53.164923967 22.54231983 6.8484039171 -1.1513483396 0.11269458423 0.0053081222334 -0.00018089101258 -3.2532390656e-05 -3.9815992997e-06 7.2761975885e-05 0.00025363342954 0.00051546029918 -0.0061878585506 0.083205612161 0.5650655347 2.3340604268 6.9434588916 17.468767983 41.341087821 93.95493881 199.26904167 -381.01475634 493.46245193 381.01475632 199.26904165 93.954938804 41.341087821 17.468767983 6.9434588918 2.3340604272 -0.56506553475 0.083205612161 0.0061878585518 0.0005154603 0.00025363343025 7.2761976028e-05 -3.9815993233e-06 -2.1152649292e-07 1.7584522419e-06 -1.2092984831e-06 2.4500310414e-05 9.7797390427e-05 0.00048062399623 0.0036888263468 0.024830214451 0.12678579595 0.5291741022 1.8468523522 -5.481956942 13.749048937 27.365598031 35.351182932 27.36559803 13.749048936 5.4819569415 1.8468523522 0.52917410224 -0.12678579595 0.024830214451 0.0036888263468 0.00048062399624 9.7797390505e-05 2.4500310459e-05 1.2092984973e-06 1.7584522524e-06 -2.1152648912e-07 --1.9097702809e-08 -1.2686983766e-07 1.4863075682e-07 4.0830135479e-06 8.1764545888e-06 1.8586260693e-05 4.047742743e-05 5.1516145665e-05 0.00050696033139 -0.0046001211105 0.021714545989 0.080266094277 0.21181667637 0.26965520466 0.24101702498 0.26965520467 0.21181667637 0.080266094268 -0.021714545986 0.0046001211101 0.00050696033113 5.1516145596e-05 4.0477427414e-05 1.8586260672e-05 8.1764545844e-06 4.083013546e-06 1.4863075612e-07 --1.2686983768e-07 -1.9097702784e-08 -7.8333634821e-11 1.2707282388e-08 9.5255196147e-08 2.6496539203e-07 5.1524943258e-07 1.3256997043e-06 -1.6122080046e-06 --1.8324351279e-05 -2.7756322657e-05 -0.00022828437341 -0.0011419462361 -0.0014119335957 0.00031526795719 0.00096987919917 0.00033675326892 0.00096987919923 -0.0003152679573 -0.0014119335956 -0.0011419462361 -0.00022828437344 -2.7756322704e-05 -1.8324351306e-05 -1.6122080094e-06 1.3256997048e-06 5.1524943255e-07 -2.6496539167e-07 9.5255195957e-08 1.2707282341e-08 -7.8333642941e-11 1.9381297713e-10 1.9359416926e-09 3.6188461548e-09 9.1842944778e-09 4.6234567776e-08 --6.6484992863e-08 -1.4573738828e-06 -3.546917019e-06 -1.2130128239e-05 -9.3219481913e-05 -0.00018163948487 -0.00015753264453 -0.00015029998194 -0.00024210414756 --0.00030196326822 -0.00024210414763 -0.00015029998192 -0.00015753264452 -0.00018163948486 -9.3219481913e-05 -1.2130128245e-05 -3.5469170246e-06 -1.457373885e-06 --6.6484993038e-08 4.623456784e-08 9.1842944978e-09 3.6188461544e-09 1.9359416901e-09 1.9381297641e-10 1.7037040018e-11 3.2160919566e-11 7.2287918423e-11 -1.5035777917e-09 2.2692037539e-10 -4.3730362491e-08 -1.7481178683e-07 -2.6452602713e-07 -1.2917875599e-06 -4.0868457081e-06 1.6148359965e-06 3.1997055928e-06 --2.6465936424e-05 -4.0604441814e-05 -3.0961838108e-05 -4.0604441824e-05 -2.6465936429e-05 3.1997055933e-06 1.6148359972e-06 -4.0868457077e-06 -1.2917875597e-06 --2.6452602744e-07 -1.7481178714e-07 -4.3730362578e-08 2.269203713e-10 1.5035777953e-09 7.2287919524e-11 3.2160919887e-11 1.7037039994e-11 -1.4461699118e-12 --5.2994882575e-12 4.307790314e-11 1.2597840176e-10 -1.0570632937e-09 -5.1064400436e-09 -4.152218225e-09 -1.4674523526e-08 -1.7160465856e-08 7.0627600705e-07 -1.2372267716e-06 1.1396321454e-07 -1.2768812271e-06 -7.6168044982e-07 2.017621164e-07 -7.6168045058e-07 -1.2768812278e-06 1.1396321454e-07 1.2372267717e-06 -7.0627600718e-07 -1.7160465813e-08 -1.4674523525e-08 -4.1522182365e-09 -5.1064400581e-09 -1.0570632968e-09 1.2597840172e-10 4.3077903208e-11 -5.2994882126e-12 --1.4461699032e-12 5.0525179387e-14 1.4200376844e-12 5.7784987584e-12 -3.0071749123e-11 -1.7065850134e-10 4.3310654456e-11 2.2944010091e-10 8.1153660096e-11 -2.5491860176e-08 8.5126298001e-08 1.1113437853e-08 -1.1071221707e-07 -3.7703392606e-08 4.5265896553e-08 4.1618548084e-08 4.5265896551e-08 -3.7703392615e-08 --1.1071221708e-07 1.1113437856e-08 8.5126298005e-08 2.5491860172e-08 8.1153660615e-11 2.2944010163e-10 4.3310654772e-11 -1.7065850156e-10 -3.0071749229e-11 -5.7784987418e-12 1.420037684e-12 5.0525179873e-14 1.6814845009e-14 9.5565481307e-14 -9.1087582767e-13 -5.8310981281e-12 6.3358714346e-12 3.6086079188e-11 --1.3581150739e-11 1.4008798249e-10 2.3322110164e-09 -3.0129032899e-09 -1.2045545646e-08 -6.9936517633e-09 2.4130472991e-09 2.5016188464e-09 -5.2142013876e-11 -2.5016188471e-09 2.413047299e-09 -6.9936517643e-09 -1.2045545647e-08 -3.0129032916e-09 2.3322110154e-09 1.4008798247e-10 -1.3581150696e-11 3.6086079312e-11 -6.3358714971e-12 -5.8310981322e-12 -9.1087582898e-13 9.5565480906e-14 1.6814844977e-14 -5.4544763826e-16 -2.1523915808e-14 -1.1863221029e-13 3.1219548113e-13 -2.5241594631e-12 -6.6446154496e-13 -9.3978991603e-12 -6.3937025121e-12 -2.1834446311e-10 -6.6714774457e-10 -4.3361710158e-10 1.6003403295e-10 1.2203143564e-10 --4.4337253755e-11 -4.2590822951e-11 -4.4337253753e-11 1.2203143565e-10 1.6003403294e-10 -4.3361710164e-10 -6.671477446e-10 -2.1834446309e-10 -6.3937025354e-12 --9.3978991812e-12 -6.6446154525e-13 2.5241594713e-12 3.1219548287e-13 -1.1863221017e-13 -2.1523915827e-14 -5.4544764066e-16 +0 0 0 3.4703602455e-08 -1.3467594509e-07 3.1161968644e-08 2.4985603273e-06 -2.5269746572e-05 -0.0001305768415 +0.00028065727465 -0.0012147700129 -0.013275835305 -0.0045968812762 0.24184262668 0.52792212753 -2.6318563009 -10.331642648 -14.81325265 +-10.331642642 -2.6318563015 0.52792212621 0.24184262537 -0.0045968813963 -0.013275835339 -0.0012147700174 0.00028065727739 -0.00013057684104 +-2.5269746607e-05 2.4985603177e-06 3.1161962677e-08 -1.3467594555e-07 3.4703602496e-08 -1.7288197042e-07 2.5630308892e-08 4.4995040238e-06 -1.1451324873e-05 +-0.00010472937384 0.00012095995114 -0.0013159521693 -0.017013800842 -0.005324574295 0.17702985964 -0.12231170895 -6.5055267546 -21.625993441 +-20.981527906 -11.143765909 -20.981527814 -21.625993406 -6.505526746 -0.12231171155 0.17702985922 -0.0053245744638 -0.01701380085 +-0.0013159521665 0.00012095995134 -0.000104729374 -1.1451324787e-05 4.4995040232e-06 2.5630302327e-08 -1.7288197063e-07 5.7220569457e-07 5.1342486865e-06 +-7.5196146879e-06 -7.5557297843e-05 0.00029261370158 -0.00094889241275 -0.016617086857 0.020715900082 0.22913774723 -1.4481233528 -10.344223835 +-10.649897879 48.592386024 140.93840455 180.79822278 140.93840465 48.592386147 -10.649897852 -10.344223829 -1.4481233463 +0.22913774708 0.020715899972 -0.016617086849 -0.00094889241117 0.00029261370166 -7.555729753e-05 -7.5196146437e-06 5.1342486715e-06 5.7220568886e-07 +4.0101732215e-06 -1.4391311865e-05 -0.00010112215034 0.00037392201745 -0.0015811472958 -0.01431181032 0.045134825549 0.34021336963 -0.74436766467 +-10.0335781 32.138425641 202.02976567 437.70968395 577.90453773 602.15957551 577.90453726 437.70968379 202.02976568 +32.138425641 -10.033578083 -0.74436766034 0.34021336957 0.04513482555 -0.01431181032 -0.001581147296 0.0003739220172 -0.00010112215001 +-1.4391311834e-05 4.0101732367e-06 -3.6296168113e-05 -0.00012497817887 0.00043031876442 -0.0017633617451 -0.015217725146 0.069158177879 0.44846873332 +-0.60634144991 -6.8535900291 100.46175169 438.44843256 825.25452578 1036.9638143 1083.6607951 1079.6913976 1083.660794 +1036.9638134 825.25452543 438.44843247 100.46175164 -6.8535900226 -0.60634144944 0.44846873306 0.069158177809 -0.015217725146 +-0.0017633617433 0.00043031876316 -0.00012497817888 -3.6296167945e-05 -0.00014627012294 0.00055585398122 -0.0017763455615 -0.020243585518 0.06931359134 +0.50858131021 -0.20110753814 -5.083265469 155.21125456 659.87338252 1200.8333806 1437.6336766 1505.1854462 1590.7068909 +1645.0464269 1590.7068909 1505.1854454 1437.6336758 1200.8333803 659.8733824 155.21125444 -5.0832654729 -0.20110753829 +0.50858130976 0.069313591087 -0.020243585553 -0.0017763455578 0.00055585398176 -0.0001462701223 0.00088725294683 -0.0022307348139 -0.026401909197 +0.041138189554 0.47868826314 -0.21668295154 -4.1926150745 191.43053729 802.9910325 1476.0440059 1721.4387169 1733.9124403 +1881.2091235 2100.3008961 2199.2213457 2100.3008966 1881.2091234 1733.9124395 1721.4387162 1476.0440057 802.99103229 +191.43053714 -4.1926150767 -0.21668295209 0.47868826246 0.04113818921 -0.026401909232 -0.0022307348041 0.00088725294875 -0.0028530250932 +-0.032220708158 0.012743876555 0.3732056274 -0.78359851327 -5.7731280597 191.43277878 855.67584634 1608.1178843 1927.2766815 +1931.4626215 2054.6492898 2403.6160298 2679.7243874 2756.07691 2679.724387 2403.6160298 2054.6492895 1931.4626205 +1927.2766808 1608.1178842 855.67584612 191.43277863 -5.7731280628 -0.78359851277 0.37320562691 0.012743876316 -0.032220708167 +-0.002853025084 -0.029868931221 -0.043653058765 0.25928090446 -1.0298830276 -8.0763161027 155.90164353 807.47681014 1616.8714141 +1993.1778982 2028.6453244 2154.5417314 2567.234209 3020.5732632 3267.4368413 3334.1861949 3267.4368408 3020.573263 +2567.2342092 2154.5417307 2028.6453234 1993.1778976 1616.8714139 807.47680989 155.9016434 -8.0763160978 -1.029883022 +0.25928090385 -0.043653058992 -0.029868931226 -0.029748770972 0.20943310644 -1.5774266007 -11.72628353 97.041349993 660.52276128 +1495.0771015 1973.887908 2062.4986459 2192.7912809 2642.4158503 3238.3957476 3625.5006332 3876.2085351 4018.7259538 +3876.2085346 3625.5006328 3238.3957478 2642.4158502 2192.7912804 2062.4986448 1973.8879069 1495.077101 660.52276108 +97.041349913 -11.726283521 -1.5774266053 0.20943310515 -0.029748771414 0.35308585358 0.17016200158 -10.991594877 25.507230517 +432.80871152 1231.0978897 1794.7550528 1985.3772498 2158.1056508 2636.2785531 3319.3328122 3826.6206991 4200.4093585 +4778.4400301 5177.4374752 4778.4400306 4200.4093584 3826.6206995 3319.3328132 2636.2785537 2158.1056504 1985.3772481 +1794.7550516 1231.0978893 432.80871134 25.507230464 -10.99159488 0.17016200487 0.35308585217 0.73101660511 -6.995021825 +-17.755753062 193.48402988 864.69913436 1552.4888523 1826.3009275 2035.9127856 2484.1048917 3163.1845981 3812.5258122 +4328.5594146 4903.976513 6105.3349572 6994.7741467 6105.3349574 4903.9765139 4328.5594143 3812.5258123 3163.1845996 +2484.1048927 2035.9127853 1826.3009263 1552.4888515 864.69913405 193.48402973 -17.75575303 -6.9950217933 0.73101660756 +-4.0135670526 -29.283222958 27.233421292 450.45157578 1162.0939521 1663.1641357 1884.3366102 2249.6088109 2807.2750883 +3441.3265865 4129.1332966 4885.6536273 5889.43756 7946.3598725 9423.5700482 7946.3598715 5889.4375588 4885.6536252 +4129.133295 3441.3265874 2807.2750899 2249.6088118 1884.3366101 1663.1641351 1162.0939516 450.45157556 27.233421433 +-29.283222886 -4.0135670434 -13.592419685 -44.103551574 108.39561058 616.30338635 1234.6943071 1679.0174569 1973.7027844 +2401.225192 2933.4343014 3630.7869218 4640.6935098 5989.6319933 7870.1406724 10359.348456 11769.482179 10359.348456 +7870.1406695 5989.6319912 4640.6935094 3630.7869213 2933.4343011 2401.225193 1973.702785 1679.0174562 1234.6943063 +616.30338602 108.3956108 -44.103551448 -13.592419671 -19.419057776 -34.897564365 157.4693309 630.93287255 1140.8437433 +1544.6849251 1883.3476651 2363.8070347 2963.8113753 3780.6771408 4988.0288823 6797.463976 9319.8744017 11797.76509 +12892.95427 11797.765091 9319.8744015 6797.4639763 4988.0288832 3780.6771412 2963.8113747 2363.8070349 1883.3476643 +1544.6849237 1140.8437433 630.93287297 157.4693309 -34.897564602 -19.419057739 -13.840702114 -31.020226668 124.65895449 +551.77531791 1003.6323291 1308.3254878 1617.1615376 2175.2169532 2897.4486938 3672.2369937 4646.3127275 6046.9255084 +8063.2211847 10656.416448 12082.563515 10656.416448 8063.2211851 6046.9255096 4646.3127287 3672.2369958 2897.4486945 +2175.2169523 1617.1615362 1308.3254873 1003.6323298 551.77531826 124.65895415 -31.020226998 -13.840702073 -3.4863243325 +-18.256651387 37.73133233 249.21133311 514.72109344 717.32204564 947.3868227 1357.5260073 1905.7625903 2474.2618775 +3200.4593387 4194.6520805 5564.8402626 7989.4745419 9593.5522375 7989.4745414 5564.8402623 4194.6520808 3200.4593395 +2474.2618787 1905.7625907 1357.5260066 947.38682262 717.3220461 514.72109353 249.21133278 37.731332101 -18.256651396 +-3.4863243175 0.14158222394 -0.3508303459 -2.0355564339 4.6533508031 42.228924654 118.74533631 225.61668811 367.98563375 +564.45972327 846.29797863 1310.2540168 2033.2844327 3036.1488909 4635.4184101 5658.4400848 4635.4184101 3036.1488909 +2033.2844326 1310.2540167 846.29797854 564.45972318 367.98563374 225.61668821 118.74533637 42.228924591 4.653350753 +-2.0355564397 -0.35083034189 0.14158222629 0.001444890139 0.022285038144 0.028878878331 -0.275304515 -1.4732986727 0.98685124187 +13.596840747 38.469710424 79.208014073 153.16317531 300.84779594 575.47660817 1025.7563672 1670.7075908 2041.1697468 +1670.7075907 1025.7563671 575.47660808 300.84779585 153.16317526 79.208014095 38.469710446 13.596840729 0.98685122278 +-1.473298676 -0.27530451115 0.028878878406 0.022285038116 0.0014448900471 -0.00017292694513 0.00077654593806 0.0075607130751 -0.005580282087 +-0.19306918871 -0.82999900662 -2.1861297569 -3.1681545627 -1.9322525128 4.5694341622 20.93996627 63.697327325 147.68021171 +292.08337026 384.06212027 292.08337024 147.68021169 63.697327317 20.939966274 4.5694341703 -1.9322525066 -3.1681545625 +-2.1861297588 -0.82999900651 -0.19306918808 -0.0055802811465 0.0075607134638 0.00077654593367 -0.0001729269484 -5.6498224451e-06 -0.00010197016807 +-0.00039034840375 0.00035738789464 0.0056377770618 -0.016943823356 -0.18577153714 -0.52499070277 -1.1645912246 -2.6234109529 -5.8572837923 +-11.391410548 -21.442297891 -23.271261318 -18.366118515 -23.271261312 -21.442297889 -11.391410544 -5.8572837899 -2.6234109524 +-1.1645912248 -0.5249907029 -0.18577153713 -0.016943823222 0.0056377770071 0.00035738783542 -0.00039034840862 -0.00010197016791 -5.6498222639e-06 +-1.3738090013e-06 3.9726986997e-06 2.3847401948e-05 -6.6958548925e-05 0.00024127632608 0.00075787093632 0.0057399901633 0.0052472505183 -0.059207203255 +-0.37427185567 -1.2118563963 -3.8812738277 -8.8822414058 -11.696408382 -11.597421332 -11.696408382 -8.882241403 -3.8812738272 +-1.211856396 -0.37427185553 -0.059207203216 0.0052472505552 0.0057399901757 0.00075787093451 0.00024127632755 -6.6958546806e-05 2.384740171e-05 +3.9726987327e-06 -1.3738089944e-06 -4.0159363624e-08 1.4290219755e-06 3.8879045588e-06 -4.864320593e-06 -1.30123516e-05 -2.2002302586e-05 0.00058240565957 +0.0024403221814 0.0049891840125 0.004583858375 -0.026161072227 -0.2912322639 -0.74302877762 -0.7850426333 -0.61129745943 -0.78504263337 +-0.74302877719 -0.29123226391 -0.026161072249 0.0045838583665 0.0049891840176 0.0024403221851 0.00058240566117 -2.2002303069e-05 -1.3012351298e-05 +-4.8643205728e-06 3.8879045162e-06 1.4290219721e-06 -4.0159364642e-08 2.5250333516e-08 1.234833805e-08 -6.0023957169e-07 1.3001611852e-07 2.0115316597e-06 +5.1379059647e-06 -1.1946082112e-05 1.1389321336e-06 9.595440154e-06 0.00035000130942 0.0039071960304 0.058193014348 0.20089384915 0.26254105922 +0.23258072607 0.26254105922 0.20089384909 0.05819301437 0.0039071960313 0.00035000130721 9.5954386487e-06 1.1389319686e-06 -1.1946082066e-05 +5.1379060078e-06 2.0115316813e-06 1.3001612296e-07 -6.0023956337e-07 1.2348338122e-08 2.5250333518e-08 3.3377733619e-10 -1.1634125696e-08 -3.6754717727e-08 +1.2425157813e-07 2.5524159274e-07 -3.1635934373e-07 -2.860500238e-06 -2.836861152e-05 -6.4831424552e-05 -6.6424159272e-05 0.0008878306882 0.015016755617 +0.030733216472 0.031455605746 0.029647581593 0.031455605735 0.030733216459 0.015016755619 0.00088783068878 -6.6424159289e-05 -6.4831424649e-05 +-2.8368611547e-05 -2.8605002313e-06 -3.1635933586e-07 2.5524158922e-07 1.2425157739e-07 -3.6754717188e-08 -1.1634125722e-08 3.3377733823e-10 -2.4907082951e-10 +3.8855995757e-11 1.1934209423e-08 1.5153422155e-08 -8.4671990558e-08 -4.616672683e-07 -5.2459219954e-07 -8.6750522899e-07 3.0845331739e-06 1.7092227618e-06 +7.9727412481e-06 -0.00033900454416 -0.0024115388977 -0.003581153152 -0.0030373665048 -0.0035811531532 -0.0024115388972 -0.00033900454475 7.9727412065e-06 +1.7092227716e-06 3.0845331846e-06 -8.6750523017e-07 -5.2459220028e-07 -4.6166726714e-07 -8.4671989769e-08 1.5153421882e-08 1.1934209271e-08 3.8855992704e-11 +-2.490708306e-10 6.834651259e-12 6.5345352334e-11 1.9661813786e-10 -2.4101138953e-09 -1.1422995447e-08 -2.6620631392e-08 4.4425681292e-08 4.9585002123e-07 +1.0976218704e-06 1.4099968571e-06 -1.1635366956e-05 -0.00037171043593 -0.00056887070085 -0.00051935741915 -0.00061963146731 -0.00051935741877 -0.0005688707006 +-0.00037171043576 -1.1635366963e-05 1.4099968565e-06 1.0976218714e-06 4.9585002137e-07 4.4425681154e-08 -2.6620631385e-08 -1.1422995327e-08 -2.4101138844e-09 +1.9661813278e-10 6.5345352565e-11 6.8346512833e-12 3.5562835657e-13 -1.9308775826e-12 -1.1290977981e-10 -3.2209268652e-10 5.8602059337e-10 9.7208790876e-09 +2.1024664542e-08 3.4559198598e-08 -1.34434341e-08 2.1349045208e-08 -9.6121084738e-07 -1.3231619531e-05 1.1604713276e-05 4.2216213501e-05 3.6796683949e-05 +4.2216213559e-05 1.1604713293e-05 -1.323161951e-05 -9.612108471e-07 2.134904516e-08 -1.3443434216e-08 3.4559198653e-08 2.102466457e-08 9.7208790822e-09 +5.8602059326e-10 -3.2209268312e-10 -1.1290977881e-10 -1.9308775919e-12 3.5562835704e-13 -3.0264417929e-14 -4.1695676486e-13 -1.7746370866e-13 2.9237774611e-11 +1.6200321652e-10 8.0697175735e-10 5.6818794636e-10 -4.0607629806e-09 -1.1263502625e-08 -4.9598512935e-08 -8.1632630454e-08 3.4979367182e-06 6.5752301583e-06 +6.4385357978e-06 6.8011700453e-06 6.4385357968e-06 6.5752301581e-06 3.4979367163e-06 -8.1632630436e-08 -4.9598512937e-08 -1.1263502634e-08 -4.0607629823e-09 +5.681879523e-10 8.0697176057e-10 1.620032159e-10 2.923777445e-11 -1.7746370882e-13 -4.1695676402e-13 -3.0264417944e-14 normalized%20dose 1 961 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -2271,97 +2271,97 @@ normalized%20dose 1 961 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 3.8291753584e-13 -5.4260657014e-13 2.4276162362e-11 -6.0452503212e-11 -2.8453459568e-10 2.288985634e-10 -1.1060145906e-09 -1.0397131376e-08 -5.4426166792e-08 -2.7188417808e-07 -9.2321312579e-07 -1.5914399502e-06 6.82737146e-07 2.9539918341e-05 5.592084198e-05 -2.9539918332e-05 6.8273713952e-07 -1.5914399541e-06 -9.2321312777e-07 -2.7188417852e-07 -5.4426166872e-08 -1.0397131367e-08 1.1060145907e-09 2.2889857387e-10 --2.8453458626e-10 -6.0452499676e-11 2.4276162912e-11 -5.4260661806e-13 3.8291749335e-13 -9.0197615936e-13 2.678605183e-11 -6.8224684414e-11 -3.4590273283e-10 -5.7471503136e-10 6.0974026947e-09 1.0615167703e-08 -5.9485028376e-08 -3.4602320715e-07 -1.1902028938e-06 -2.0909113046e-06 3.9123205096e-05 0.00060057168644 -0.0021910333855 0.0032615336168 0.0021910333858 0.0006005716865 3.9123205068e-05 -2.0909113148e-06 -1.1902028969e-06 -3.4602320764e-07 -5.9485028264e-08 -1.0615167758e-08 6.0974027499e-09 5.747150594e-10 -3.4590271959e-10 -6.8224680656e-11 2.6786052115e-11 -9.0197625737e-13 2.4839730501e-11 -1.1964036961e-10 --4.1172601663e-10 2.1620333197e-09 1.3579159582e-08 3.2135905998e-08 5.4540181908e-08 -8.5647562632e-08 -2.3623159693e-07 1.4479927461e-05 0.00030519845554 -0.0027988064794 0.0087589541895 0.014653023086 0.016804547755 0.014653023085 0.0087589541893 0.002798806479 0.00030519845539 1.447992744e-05 --2.3623159894e-07 -8.5647562023e-08 5.4540182302e-08 3.2135906133e-08 1.3579159631e-08 2.1620333464e-09 -4.1172600538e-10 -1.1964036708e-10 2.4839730585e-11 --1.6805702333e-10 -5.0251330438e-10 4.0110064478e-09 2.7524720884e-08 7.7283595398e-08 1.4013249334e-07 2.673197704e-07 3.087642809e-06 6.5457586717e-05 -0.0010801379144 0.0073477831199 0.020384471244 0.03388240626 0.041338225886 0.043020188856 0.041338225879 0.033882406254 0.020384471241 -0.0073477831186 0.001080137914 6.5457586683e-05 3.0876428092e-06 2.6731977154e-07 1.4013249372e-07 7.7283595459e-08 2.7524720909e-08 4.0110064649e-09 --5.025132975e-10 -1.6805702195e-10 -8.9501359675e-10 3.0584020298e-09 3.8275142245e-08 1.326902885e-07 3.4528376653e-07 9.3705844183e-07 7.03736891e-06 -0.00013351465327 0.0022921841721 0.01358506306 0.036745267112 0.059837002809 0.072981836107 0.078454973925 0.079969839661 0.078454973918 -0.072981836093 0.059837002799 0.036745267108 0.013585063057 0.0022921841713 0.00013351465323 7.0373689113e-06 9.3705844253e-07 3.4528376661e-07 -1.3269028849e-07 3.8275142253e-08 3.0584020363e-09 -8.950135946e-10 -3.1649916663e-09 1.1092048092e-08 1.2076942311e-07 4.3678322717e-07 1.4564538112e-06 -1.0253036269e-05 0.00018308430541 0.0035757402534 0.019284705237 0.050691603518 0.082214712365 0.10086430552 0.11112071836 0.11904048277 -0.12275607731 0.11904048278 0.11112071835 0.1008643055 0.082214712356 0.050691603514 0.019284705234 0.0035757402522 0.00018308430536 -1.0253036268e-05 1.4564538114e-06 4.3678322724e-07 1.2076942312e-07 1.1092048088e-08 -3.1649916697e-09 -1.4912610529e-08 -2.9627350289e-08 1.3606294454e-07 -9.237396958e-07 8.7781611025e-06 0.00018559948384 0.0043345665974 0.023108985302 0.060705280497 0.099421854284 0.1222963213 0.13492965346 -0.14750032884 0.16032892412 0.16626102845 0.16032892413 0.14750032884 0.13492965345 0.12229632128 0.099421854276 0.060705280493 -0.023108985299 0.0043345665961 0.00018559948378 8.7781611012e-06 9.2373969606e-07 1.360629446e-07 -2.9627350328e-08 -1.4912610547e-08 -6.4421827184e-08 --2.9673487425e-07 -4.2592796659e-07 3.1564750768e-06 0.0001347605752 0.0035681369234 0.023152707685 0.064275369969 0.10828296841 0.13560690954 -0.15133033275 0.16785507725 0.18613618718 0.20264401366 0.20983180167 0.20264401367 0.18613618718 0.16785507725 0.15133033274 -0.13560690953 0.10828296841 0.064275369967 0.023152707681 0.0035681369221 0.00013476057514 3.1564750755e-06 -4.2592796664e-07 -2.967348743e-07 --6.44218272e-08 -2.3372694501e-07 -1.2917225852e-06 -2.4365099601e-06 6.1039166336e-05 0.0022731127645 0.019319172786 0.061242456041 0.10911796051 -0.1399096262 0.15766288965 0.17664618758 0.20097087703 0.22488454429 0.24563740108 0.25562958373 0.24563740106 0.22488454428 -0.20097087703 0.17664618758 0.15766288964 0.13990962618 0.10911796051 0.061242456037 0.019319172783 0.0022731127637 6.1039166303e-05 --2.4365099616e-06 -1.2917225852e-06 -2.3372694493e-07 -7.2578556352e-07 -4.0265376494e-06 7.3289009551e-06 0.0010747997163 0.01364251924 0.051259433095 -0.10131896362 0.13807385446 0.15857408661 0.17879900236 0.20738130806 0.23864458399 0.26726430242 0.29679103508 0.31290179819 -0.29679103506 0.26726430241 0.23864458398 0.20738130806 0.17879900236 0.1585740866 0.13807385445 0.10131896361 0.051259433091 -0.013642519237 0.001074799716 7.3289009404e-06 -4.0265376507e-06 -7.2578556346e-07 -1.9711106195e-06 -7.6729036233e-06 0.00029409393531 0.0072511939027 -0.037158880134 0.084756028665 0.12626178627 0.15361539944 0.17549855428 0.20510412427 0.24240215739 0.27956624286 0.31511017475 -0.36569097647 0.39850523409 0.36569097646 0.31511017475 0.27956624285 0.24240215739 0.20510412427 0.17549855428 0.15361539943 -0.12626178625 0.084756028659 0.037158880131 0.0072511939016 0.00029409393516 -7.6729036283e-06 -1.9711106199e-06 -3.5395641863e-06 2.6512358689e-05 -0.0025582171463 0.020558913538 0.062792033258 0.10639224635 0.13836526091 0.16627527878 0.19609163509 0.23352911795 0.27661662758 -0.321833776 0.37336323753 0.4671967598 0.53205826562 0.46719675977 0.37336323752 0.32183377601 0.27661662759 0.23352911795 -0.19609163508 0.16627527877 0.13836526089 0.10639224633 0.062792033253 0.020558913537 0.002558217146 2.6512358676e-05 -3.5395641878e-06 --3.5157805785e-06 0.00034769721905 0.0081887268581 0.036307345589 0.079501015971 0.11638839425 0.1456376677 0.17751833885 0.21439492593 -0.25708123988 0.30662567591 0.36790156075 0.44607095219 0.60577061139 0.72179947832 0.60577061136 0.44607095217 0.36790156077 -0.30662567594 0.25708123989 0.21439492592 0.17751833885 0.14563766769 0.11638839424 0.079501015964 0.036307345587 0.0081887268586 -0.00034769721917 -3.5157805817e-06 2.7498982148e-07 0.0015278365634 0.014397344973 0.045655022292 0.083848206089 0.1182123011 0.1496643584 -0.18391638994 0.22589135647 0.2798012743 0.35039932857 0.45455354644 0.59919336726 0.79732584988 0.91519596756 0.7973258499 -0.59919336726 0.45455354646 0.35039932859 0.27980127432 0.22589135647 0.18391638993 0.14966435839 0.11821230109 0.083848206081 -0.045655022289 0.014397344974 0.0015278365634 2.7498981413e-07 3.5065288721e-06 0.0026008913984 0.017042817386 0.045899094058 0.079389106435 -0.11167788714 0.14329006811 0.18082523159 0.22851075599 0.29156748603 0.38031606374 0.51646961758 0.71265745985 0.9110956259 -0.99785211133 0.91109562593 0.71265745987 0.5164696176 0.38031606375 0.29156748605 0.22851075601 0.18082523159 0.1432900681 -0.11167788713 0.079389106426 0.045899094057 0.017042817386 0.0026008913977 3.5065288637e-06 2.4862353047e-06 0.0018725083421 0.014364329818 -0.040459920579 0.07054701946 0.098258380247 0.12761522689 0.16670683844 0.21721637736 0.27597103975 0.35082569759 0.46007677284 -0.61254668339 0.81373515489 0.92792558869 0.81373515489 0.61254668339 0.46007677284 0.35082569759 0.27597103977 0.21721637738 -0.16670683845 0.12761522688 0.09825838023 0.070547019456 0.04045992058 0.014364329816 0.0018725083412 2.4862352987e-06 6.3613302196e-07 -0.00048467106752 0.0059093788756 0.019238776879 0.036390998744 0.054015012145 0.075012602135 0.1030612614 0.14075319906 0.18404755781 -0.23776156926 0.31314814688 0.41493181855 0.59901125225 0.72449295133 0.59901125224 0.41493181855 0.31314814688 0.23776156926 -0.18404755782 0.14075319907 0.1030612614 0.075012602126 0.054015012138 0.036390998744 0.01923877688 0.0059093788745 0.00048467106713 -6.3613301906e-07 -2.4049078243e-08 1.7045727285e-06 0.00010622021446 0.0010147834398 0.0038434689199 0.0091578460555 0.017161745788 0.028430314607 -0.043929159962 0.065632625689 0.09912915839 0.15005679746 0.22396396296 0.34573810805 0.42379697535 0.34573810804 0.22396396296 -0.15005679745 0.099129158386 0.065632625687 0.04392915996 0.028430314606 0.017161745788 0.0091578460551 0.0038434689198 0.0010147834396 -0.0001062202144 1.7045727259e-06 -2.4049078203e-08 -2.4796207034e-09 -1.3787523615e-08 4.0458538843e-07 8.5895878435e-06 8.7755838212e-05 0.00052198574953 -0.0017181769438 0.0040522336329 0.0077907723777 0.013917595915 0.025157321182 0.045437766679 0.079331141408 0.13230395871 0.16431309327 -0.13230395871 0.079331141404 0.045437766677 0.02515732118 0.013917595914 0.0077907723773 0.0040522336329 0.0017181769438 0.00052198574951 -8.7755838187e-05 8.5895878412e-06 4.0458538895e-07 -1.3787523622e-08 -2.47962073e-09 -3.0347773289e-10 5.5459220832e-09 1.9331954923e-08 3.9288414333e-08 -4.7163894281e-07 6.3419366547e-06 4.3069328303e-05 0.00017790222306 0.00052923084526 0.0013314705235 0.0031510201462 0.0071612509643 0.015188298081 -0.029040967147 0.037611737121 0.029040967145 0.015188298079 0.0071612509639 0.0031510201462 0.0013314705235 0.00052923084528 0.00017790222309 -4.3069328306e-05 6.3419366547e-06 4.7163894291e-07 3.9288414395e-08 1.9331954977e-08 5.5459220941e-09 -3.0347773469e-10 -1.6122561736e-11 1.3402933334e-10 -9.2172801535e-11 1.8674151014e-09 7.4541228527e-09 3.6633189272e-08 2.811625612e-07 1.8925604064e-06 9.6636208271e-06 4.0333681206e-05 0.00014076719495 -0.00041783508067 0.0010479533189 0.0020858074921 0.0026944692431 0.002085807492 0.0010479533189 0.00041783508064 0.00014076719495 4.0333681209e-05 -9.6636208275e-06 1.8925604064e-06 2.811625612e-07 3.6633189273e-08 7.4541228586e-09 1.8674151048e-09 9.2172802619e-11 1.3402933414e-10 -1.6122561447e-11 --1.4556280318e-12 -9.670026491e-12 1.132864503e-11 3.1120753286e-10 6.2320984985e-10 1.4166458836e-09 3.0851919003e-09 3.9265636538e-09 3.8640546287e-08 -3.5062150171e-07 1.6550839729e-06 6.1178864286e-06 1.6144679536e-05 2.0553135565e-05 1.8370331825e-05 2.0553135566e-05 1.6144679536e-05 6.1178864279e-06 -1.6550839727e-06 3.5062150167e-07 3.8640546268e-08 3.9265636485e-09 3.0851918992e-09 1.416645882e-09 6.2320984952e-10 3.1120753272e-10 1.1328644977e-11 --9.6700264931e-12 -1.4556280299e-12 -5.9705942551e-15 9.685498113e-13 7.2603566551e-12 2.0195677771e-11 3.9272342068e-11 1.0104490946e-10 -1.2288258897e-10 --1.3966831326e-09 -2.1155885461e-09 -1.7399848373e-08 -8.7039209307e-08 -1.0761766174e-07 2.4029742247e-08 7.3924249628e-08 2.5667353972e-08 7.3924249632e-08 -2.4029742256e-08 -1.0761766174e-07 -8.7039209305e-08 -1.7399848375e-08 -2.1155885496e-09 -1.3966831347e-09 -1.2288258934e-10 1.010449095e-10 3.9272342066e-11 -2.0195677743e-11 7.2603566406e-12 9.6854980774e-13 -5.970594874e-15 1.477243652e-14 1.4755758972e-13 2.7582866685e-13 7.0002746549e-13 3.5240014763e-12 --5.0674900679e-12 -1.110811231e-10 -2.7034622388e-10 -9.2455908813e-10 -7.1051943963e-09 -1.3844572224e-08 -1.2007147435e-08 -1.1455873467e-08 -1.8453192372e-08 --2.3015658071e-08 -1.8453192378e-08 -1.1455873466e-08 -1.2007147434e-08 -1.3844572224e-08 -7.1051943963e-09 -9.2455908852e-10 -2.7034622431e-10 -1.1108112327e-10 --5.0674900813e-12 3.5240014812e-12 7.0002746702e-13 2.7582866682e-13 1.4755758953e-13 1.4772436465e-14 1.2985641926e-15 2.4513071816e-15 5.5097893956e-15 -1.1460278775e-13 1.7295884364e-14 -3.3331308021e-12 -1.3324164678e-11 -2.0162189352e-11 -9.8460123826e-11 -3.1149962034e-10 1.2308289467e-10 2.4388174855e-10 --2.0172352314e-09 -3.0948729442e-09 -2.3599131223e-09 -3.0948729449e-09 -2.0172352319e-09 2.4388174859e-10 1.2308289472e-10 -3.1149962031e-10 -9.8460123809e-11 --2.0162189376e-11 -1.3324164702e-11 -3.3331308087e-12 1.7295884052e-14 1.1460278802e-13 5.5097894795e-15 2.4513072061e-15 1.2985641907e-15 -1.1022715577e-16 --4.039273068e-16 3.283400312e-15 9.6020811945e-15 -8.056942644e-14 -3.8921316058e-13 -3.1648231742e-13 -1.1184930466e-12 -1.3079717173e-12 5.3832398814e-11 -9.4301497326e-11 8.6862829176e-12 -9.7323962259e-11 -5.8055328701e-11 1.5378320384e-11 -5.805532876e-11 -9.732396231e-11 8.6862829176e-12 9.4301497337e-11 -5.3832398824e-11 -1.307971714e-12 -1.1184930465e-12 -3.164823183e-13 -3.8921316169e-13 -8.0569426681e-14 9.6020811914e-15 3.2834003172e-15 -4.0392730338e-16 --1.1022715511e-16 3.8510321457e-18 1.0823535586e-16 4.4043751537e-16 -2.2920704875e-15 -1.3007601014e-14 3.301140631e-15 1.7487937991e-14 6.1855367475e-15 -1.9429910825e-12 6.4883314424e-12 8.4706688708e-13 -8.4384916991e-12 -2.8737548028e-12 3.4501692987e-12 3.1721681838e-12 3.4501692985e-12 -2.8737548036e-12 --8.4384917001e-12 8.4706688732e-13 6.4883314427e-12 1.9429910822e-12 6.185536787e-15 1.7487938046e-14 3.3011406551e-15 -1.300760103e-14 -2.2920704956e-15 -4.404375141e-16 1.0823535582e-16 3.8510321828e-18 1.2816284759e-18 7.2840066082e-18 -6.942700918e-17 -4.4444664242e-16 4.8292049354e-16 2.750483079e-15 --1.0351561085e-15 1.0677514268e-14 1.7776126089e-13 -2.2964366603e-13 -9.1811219787e-13 -5.330565489e-13 1.8392260712e-13 1.9067353567e-13 -3.9742673656e-15 -1.9067353572e-13 1.8392260711e-13 -5.3305654897e-13 -9.1811219798e-13 -2.2964366616e-13 1.7776126082e-13 1.0677514267e-14 -1.0351561051e-15 2.7504830884e-15 -4.8292049831e-16 -4.4444664273e-16 -6.942700928e-17 7.2840065776e-18 1.2816284735e-18 -4.1574051082e-20 -1.6405541293e-18 -9.0421540488e-18 2.3795557941e-17 -1.923915828e-16 -5.0645298053e-17 -7.1630842696e-16 -4.8732838167e-16 -1.6642227825e-14 -5.0850040346e-14 -3.3050320996e-14 1.2197803408e-14 9.3012432049e-15 --3.3793880899e-15 -3.2462750313e-15 -3.3793880898e-15 9.3012432055e-15 1.2197803407e-14 -3.3050321001e-14 -5.0850040348e-14 -1.6642227824e-14 -4.8732838345e-16 --7.1630842855e-16 -5.0645298075e-17 1.9239158342e-16 2.3795558073e-17 -9.0421540393e-18 -1.6405541308e-18 -4.1574051265e-20 +0 0 0 2.6703606399e-12 -1.0362997425e-11 2.3978402425e-12 1.9225834444e-10 -1.9444476035e-09 -1.0047581039e-08 +2.1595917613e-08 -9.3473697239e-08 -1.0215443225e-06 -3.5371920946e-07 1.8609221684e-05 4.0622366859e-05 -0.0002025151563 -0.00079499561772 -0.0011398449736 +-0.00079499561728 -0.00020251515635 4.0622366757e-05 1.8609221583e-05 -3.537192187e-07 -1.0215443252e-06 -9.3473697579e-08 2.1595917824e-08 -1.0047581003e-08 +-1.9444476062e-09 1.922583437e-10 2.3978397833e-12 -1.0362997461e-11 2.670360643e-12 -1.3302861273e-11 1.9721920265e-12 3.4622625877e-10 -8.8115253321e-10 +-8.0586791555e-09 9.3075839302e-09 -1.0125942635e-07 -1.3091719847e-06 -4.0971347685e-07 1.36220316e-05 -9.4115985164e-06 -0.00050058499285 -0.0016640693645 +-0.0016144792563 -0.00085748659381 -0.0016144792493 -0.0016640693617 -0.00050058499219 -9.4115987165e-06 1.3622031567e-05 -4.0971348984e-07 -1.3091719853e-06 +-1.0125942613e-07 9.3075839454e-09 -8.058679168e-09 -8.8115252657e-10 3.4622625873e-10 1.9721915213e-12 -1.3302861289e-11 4.4029883256e-11 3.9506836863e-10 +-5.7861667575e-10 -5.8139564754e-09 2.2515936563e-08 -7.3015040837e-08 -1.278645776e-06 1.5940398196e-06 1.7631611073e-05 -0.00011142968826 -0.00079596371051 +-0.00081948460973 0.0037390698906 0.010844878961 0.013911998285 0.010844878969 0.0037390699001 -0.00081948460767 -0.00079596371008 -0.00011142968775 +1.7631611061e-05 1.5940398111e-06 -1.2786457754e-06 -7.3015040715e-08 2.2515936569e-08 -5.8139564513e-09 -5.7861667236e-10 3.9506836748e-10 4.4029882816e-11 +3.0857340369e-10 -1.107377622e-09 -7.7811117858e-09 2.8772420358e-08 -1.2166556801e-07 -1.1012601649e-06 3.4730187388e-06 2.6178619138e-05 -5.7277342197e-05 +-0.00077206025136 0.0024729763133 0.015545715607 0.033680731365 0.044468395843 0.04633476399 0.044468395807 0.033680731353 0.015545715608 +0.0024729763133 -0.00077206025008 -5.7277341864e-05 2.6178619134e-05 3.4730187389e-06 -1.1012601649e-06 -1.2166556802e-07 2.8772420339e-08 -7.7811117604e-09 +-1.1073776196e-09 3.0857340485e-10 -2.792904824e-09 -9.6167771093e-09 3.3112017479e-08 -1.3568654159e-07 -1.1709681815e-06 5.3215592349e-06 3.4508614926e-05 +-4.6656549395e-05 -0.00052736764372 0.0077302956623 0.033737576334 0.063501396039 0.07979192818 0.08338515109 0.083079715287 0.083385151006 +0.079791928107 0.063501396012 0.033737576327 0.0077302956585 -0.00052736764322 -4.6656549359e-05 3.4508614905e-05 5.3215592296e-06 -1.1709681815e-06 +-1.3568654145e-07 3.3112017383e-08 -9.6167771099e-09 -2.792904811e-09 -1.1255142159e-08 4.2771657348e-08 -1.3668561574e-07 -1.5576963241e-06 5.3335179354e-06 +3.9134136426e-05 -1.5474752367e-05 -0.00039114532988 0.011943141222 0.050775705785 0.092401306135 0.11062253233 0.11582048222 0.12240115637 +0.12658245595 0.12240115638 0.11582048216 0.11062253226 0.092401306118 0.050775705776 0.011943141213 -0.00039114533018 -1.5474752378e-05 +3.9134136391e-05 5.333517916e-06 -1.5576963268e-06 -1.3668561546e-07 4.2771657389e-08 -1.125514211e-08 6.8272028815e-08 -1.716498007e-07 -2.0315648563e-06 +3.1654869929e-06 3.6833936715e-05 -1.6673243818e-05 -0.00032261187545 0.014730129897 0.06178827256 0.11357811688 0.13246066311 0.13342048681 +0.14475462036 0.1616132173 0.16922491339 0.16161321734 0.14475462036 0.13342048674 0.13246066306 0.11357811687 0.061788272544 +0.014730129885 -0.00032261187562 -1.6673243861e-05 3.6833936663e-05 3.1654869664e-06 -2.0315648591e-06 -1.7164979994e-07 6.8272028963e-08 -2.1953357503e-07 +-2.4793077596e-06 9.806113471e-07 2.8717295828e-05 -6.0296063787e-05 -0.00044422863474 0.014730302374 0.065842245153 0.1237408914 0.14829941067 +0.14862150892 0.1581004335 0.18495260392 0.20619849305 0.2120736402 0.20619849302 0.18495260391 0.15810043348 0.14862150884 +0.14829941062 0.12374089139 0.065842245136 0.014730302363 -0.00044422863498 -6.0296063748e-05 2.8717295789e-05 9.8061132864e-07 -2.4793077602e-06 +-2.1953357432e-07 -2.298344052e-06 -3.3590002677e-06 1.9951056171e-05 -7.9247078286e-05 -0.00062145354113 0.011996265031 0.062133442607 0.12441445494 +0.1533703544 0.15609948948 0.16578692209 0.19754263823 0.23242601289 0.25142158499 0.25655779086 0.25142158495 0.23242601288 +0.19754263824 0.16578692203 0.1560994894 0.15337035435 0.12441445492 0.062133442587 0.01199626502 -0.00062145354075 -7.9247077857e-05 +1.9951056125e-05 -3.3590002851e-06 -2.2983440524e-06 -2.2890980033e-06 1.6115385278e-05 -0.00012137926926 -0.00090230995562 0.0074671037911 0.050825673955 +0.11504266885 0.15188603499 0.158704423 0.16873013502 0.20332768881 0.24918694109 0.27897375216 0.29826513594 0.30923151633 +0.2982651359 0.27897375214 0.24918694111 0.20332768881 0.16873013498 0.15870442292 0.15188603491 0.11504266882 0.050825673939 +0.007467103785 -0.0009023099549 -0.00012137926961 1.6115385179e-05 -2.2890980373e-06 2.7169126522e-05 1.3093566065e-05 -0.00084577739058 0.0019627214348 +0.033303613056 0.094730088976 0.13810218283 0.15277011284 0.16606115731 0.20285543822 0.25541485797 0.29444946851 0.32321162728 +0.36768972883 0.39839164441 0.36768972887 0.32321162727 0.29444946854 0.25541485805 0.20285543827 0.16606115728 0.15277011271 +0.13810218274 0.094730088948 0.033303613042 0.0019627214307 -0.00084577739081 1.3093566317e-05 2.7169126414e-05 5.6250009545e-05 -0.00053825048799 +-0.0013662634641 0.014888141325 0.066536565957 0.11946036814 0.14052956374 0.15665870354 0.19114603265 0.24339961992 0.2933649001 +0.33307247289 0.37734946613 0.46979117467 0.53823142972 0.46979117469 0.37734946619 0.33307247286 0.29336490011 0.24339962003 +0.19114603273 0.15665870351 0.14052956365 0.11946036808 0.066536565933 0.014888141313 -0.0013662634617 -0.00053825048554 5.6250009734e-05 +-0.00030883455101 -0.0022532751779 0.0020955477576 0.034661189992 0.089420398169 0.12797657106 0.14499527312 0.1731021104 0.21601321969 +0.26480199217 0.31772710185 0.37593956314 0.45317837741 0.61145371467 0.72512156558 0.61145371459 0.45317837732 0.37593956297 +0.31772710173 0.26480199223 0.21601321981 0.17310211048 0.14499527311 0.12797657101 0.089420398134 0.034661189975 0.0020955477685 +-0.0022532751723 -0.0003088345503 -0.0010459047464 -0.0033936646304 0.0083407874554 0.047423096989 0.095006824844 0.12919644686 0.15187179017 +0.18476863457 0.2257208746 0.27938051965 0.35709045786 0.46088810355 0.60558882637 0.79712751453 0.90563399006 0.79712751458 +0.60558882615 0.46088810339 0.35709045783 0.27938051961 0.22572087458 0.18476863464 0.15187179022 0.12919644681 0.095006824781 +0.047423096964 0.0083407874725 -0.0033936646208 -0.0010459047454 -0.0014942508523 -0.0026852855529 0.012116894889 0.048548801567 0.087785244547 +0.11885987428 0.14491917611 0.18188939531 0.22805831904 0.29091421969 0.38381709838 0.52304887586 0.71714242931 0.90781029362 +0.9920825268 0.90781029371 0.7171424293 0.52304887588 0.38381709845 0.29091421972 0.22805831899 0.18188939533 0.14491917605 +0.11885987418 0.087785244547 0.048548801599 0.012116894889 -0.0026852855711 -0.0014942508495 -0.0010650094958 -0.0023869335306 0.0095922135434 +0.042457813793 0.077227148735 0.10067257113 0.12443677926 0.16737783181 0.22295186668 0.28257000526 0.35752284345 0.46529670487 +0.62044591797 0.81998619833 0.92972486303 0.81998619829 0.62044591799 0.46529670496 0.35752284355 0.28257000541 0.22295186674 +0.16737783174 0.12443677915 0.1006725711 0.077227148793 0.042457813819 0.0095922135174 -0.002386933556 -0.0010650094926 -0.00026826446295 +-0.0014048064129 0.0029033373372 0.019176226324 0.039606578314 0.055196245382 0.072899189221 0.10445843546 0.14664395192 0.19038863585 +0.24626782359 0.32276861827 0.42820137833 0.61477128714 0.73820129551 0.6147712871 0.42820137831 0.3227686183 0.24626782365 +0.19038863594 0.14664395195 0.10445843541 0.072899189215 0.055196245417 0.039606578321 0.019176226299 0.0029033373196 -0.0014048064136 +-0.0002682644618 1.089441935e-05 -2.6995570508e-05 -0.00015663128311 0.00035806440683 0.0032494164951 0.0091371745241 0.01736067385 0.028315629586 +0.043433848971 0.065120640274 0.1008209669 0.15645645796 0.23362452084 0.35668455134 0.43540366465 0.35668455133 0.23362452084 +0.15645645796 0.1008209669 0.065120640268 0.043433848965 0.028315629584 0.017360673857 0.0091371745288 0.0032494164903 0.00035806440297 +-0.00015663128356 -2.6995570199e-05 1.0894419531e-05 1.1118090005e-07 1.7147813053e-06 2.2221618092e-06 -2.118403534e-05 -0.00011336686995 7.5935883517e-05 +0.0010462449368 0.002960153796 0.0060948705085 0.011785546337 0.02314953077 0.044281572369 0.078929541464 0.1285570222 0.15706321435 +0.12855702219 0.078929541459 0.044281572363 0.023149530763 0.011785546334 0.0060948705101 0.0029601537977 0.0010462449354 7.5935882049e-05 +-0.0001133668702 -2.1184035043e-05 2.222161815e-06 1.7147813032e-06 1.1118089299e-07 -1.3306321972e-08 5.9753384701e-08 5.8177910005e-07 -4.2938959042e-07 +-1.4856220272e-05 -6.3866472688e-05 -0.00016821754641 -0.00024378204701 -0.0001486822892 0.00035160721855 0.0016112811862 0.0049013596203 0.011363645176 +0.022475128814 0.029552677436 0.022475128813 0.011363645174 0.0049013596197 0.0016112811865 0.00035160721917 -0.00014868228872 -0.000243782047 +-0.00016821754655 -6.386647268e-05 -1.4856220223e-05 -4.2938951805e-07 5.8177912996e-07 5.9753384364e-08 -1.3306322223e-08 -4.3474055752e-10 -7.846364757e-09 +-3.0036392174e-08 2.750015847e-08 4.3381369359e-07 -1.3037873816e-06 -1.4294683136e-05 -4.0396800613e-05 -8.9612557423e-05 -0.00020186530663 -0.00045070422056 +-0.00087654226672 -0.0016499344236 -0.0017906688605 -0.0014132296511 -0.00179066886 -0.0016499344235 -0.0008765422664 -0.00045070422038 -0.00020186530659 +-8.9612557437e-05 -4.0396800624e-05 -1.4294683135e-05 -1.3037873713e-06 4.3381368938e-07 2.7500153913e-08 -3.0036392549e-08 -7.8463647447e-09 -4.3474054358e-10 +-1.0571137358e-10 3.0568982731e-10 1.8350015278e-09 -5.152302957e-09 1.8565646184e-08 5.8316387212e-08 4.416787515e-07 4.0376359398e-07 -4.5558551269e-06 +-2.8799339586e-05 -9.3249501289e-05 -0.0002986548983 -0.00068346759891 -0.0009000111332 -0.00089239431234 -0.00090001113319 -0.0006834675987 -0.00029865489826 +-9.3249501262e-05 -2.8799339576e-05 -4.5558551239e-06 4.0376359682e-07 4.4167875246e-07 5.8316387073e-08 1.8565646297e-08 -5.152302794e-09 1.8350015095e-09 +3.0568982985e-10 -1.0571137305e-10 -3.0901686383e-12 1.0995988217e-10 2.9916511747e-10 -3.7429803629e-10 -1.0012698707e-09 -1.6930254687e-09 4.4814746589e-08 +1.87777056e-07 3.8390598293e-07 3.5271712782e-07 -2.0130330176e-06 -2.2409638181e-05 -5.7174317986e-05 -6.0407185429e-05 -4.7037902679e-05 -6.0407185434e-05 +-5.7174317952e-05 -2.2409638181e-05 -2.0130330192e-06 3.5271712717e-07 3.8390598332e-07 1.8777705629e-07 4.4814746711e-08 -1.6930255059e-09 -1.0012698475e-09 +-3.7429803474e-10 2.991651142e-10 1.0995988191e-10 -3.0901687166e-12 1.9429538144e-12 9.5017558877e-13 -4.6187024208e-11 1.0004434723e-11 1.5478263321e-10 +3.9534978759e-10 -9.1922293988e-10 8.7638150681e-11 7.3834656625e-10 2.6931778099e-08 3.0064955087e-07 4.4778156743e-06 1.5458309501e-05 2.0201917417e-05 +1.7896540202e-05 2.0201917417e-05 1.5458309496e-05 4.477815676e-06 3.0064955094e-07 2.6931777929e-08 7.3834645042e-10 8.7638137982e-11 -9.1922293628e-10 +3.9534979091e-10 1.5478263487e-10 1.0004435065e-11 -4.6187023568e-11 9.5017559437e-13 1.9429538145e-12 2.5683381493e-14 -8.9521862687e-13 -2.8281891389e-12 +9.56086689e-12 1.9640240629e-11 -2.4343107914e-11 -2.2010876985e-10 -2.1828979774e-09 -4.9886257363e-09 -5.1111829293e-09 6.8316484655e-08 1.1555040486e-06 +2.3648487706e-06 2.4204349273e-06 2.2813117184e-06 2.4204349264e-06 2.3648487696e-06 1.1555040488e-06 6.83164847e-08 -5.1111829306e-09 -4.9886257437e-09 +-2.1828979795e-09 -2.2010876933e-10 -2.4343107308e-11 1.9640240358e-11 9.5608668333e-12 -2.8281890975e-12 -8.9521862884e-13 2.568338165e-14 -1.9165414902e-14 +2.9898775444e-15 9.1830936435e-13 1.1660202174e-12 -6.5153106562e-12 -3.552421117e-11 -4.0366136727e-11 -6.6752488343e-11 2.3734757769e-10 1.3152067407e-10 +6.1348369951e-10 -2.608560286e-08 -1.8556224998e-07 -2.7556131772e-07 -2.3371821337e-07 -2.7556131782e-07 -1.8556224994e-07 -2.6085602905e-08 6.1348369631e-10 +1.3152067483e-10 2.3734757851e-10 -6.6752488434e-11 -4.0366136784e-11 -3.5524211081e-11 -6.5153105954e-12 1.1660201965e-12 9.183093526e-13 2.9898773095e-15 +-1.9165414986e-14 5.2591034987e-16 5.0281712711e-15 1.5129303568e-14 -1.8545259939e-13 -8.7897265043e-13 -2.0483950151e-12 3.4184517551e-12 3.8154493663e-11 +8.4459423023e-11 1.0849594403e-10 -8.953141389e-10 -2.8602244358e-08 -4.3773263328e-08 -3.996333268e-08 -4.7679184997e-08 -3.9963332651e-08 -4.3773263309e-08 +-2.8602244345e-08 -8.9531413949e-10 1.0849594398e-10 8.4459423095e-11 3.8154493674e-11 3.4184517445e-12 -2.0483950146e-12 -8.7897264125e-13 -1.8545259855e-13 +1.5129303176e-14 5.0281712889e-15 5.2591035175e-16 2.7364766151e-17 -1.4857649155e-16 -8.6881421675e-15 -2.4784275165e-14 4.5092907248e-14 7.4799879735e-13 +1.617798519e-12 2.6592491024e-12 -1.0344406559e-12 1.6427588489e-12 -7.3962915428e-11 -1.0181420227e-09 8.929554103e-10 3.2484384018e-09 2.8314183411e-09 +3.2484384063e-09 8.9295541163e-10 -1.018142021e-09 -7.3962915406e-11 1.6427588452e-12 -1.0344406648e-12 2.6592491066e-12 1.6177985212e-12 7.4799879694e-13 +4.5092907239e-14 -2.4784274903e-14 -8.6881420906e-15 -1.4857649227e-16 2.7364766187e-17 -2.3287758246e-18 -3.208384302e-17 -1.3655415262e-17 2.2497780344e-15 +1.2465766731e-14 6.2094579981e-14 4.3720726975e-14 -3.1246616674e-13 -8.667000527e-13 -3.8164889915e-12 -6.28143904e-12 2.6915800874e-10 5.0594850593e-10 +4.9543019618e-10 5.2333404917e-10 4.9543019611e-10 5.0594850592e-10 2.691580086e-10 -6.2814390386e-12 -3.8164889917e-12 -8.6670005336e-13 -3.1246616687e-13 +4.3720727432e-14 6.2094580229e-14 1.2465766683e-14 2.249778022e-15 -1.3655415274e-17 -3.2083842955e-17 -2.3287758258e-18 diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk b/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk index 9f61e411..f4efb5c9 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk +++ b/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -0.11046737879 0.11046737879 0.11046737879 0.11046737879 12.544927279 0.1104673788 0.11046737879 10.586595377 0.11046737879 -0.11046737879 16.931619852 11.83485416 17.294799352 9.7425659218 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 13.637619295 0.1104673788 0.11046737879 11.223551678 0.11046737879 +0.11046737879 16.525081829 12.708711518 17.63059118 10.120590102 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.1104673788 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.1104673788 0.11046737879 17.190896458 -16.558005479 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.1104673788 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.1104673788 0.11046737879 17.582754992 +16.404109051 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 -0.11046737879 0.11046737879 0.11046737878 1.3342623197 1.4127050777 0.11046737877 0.11046737879 3.4519360793 2.2314017638 -1.1431732275 1.4432975056 0.11046737879 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.11046737879 0.1104673788 +0.11046737879 0.11046737879 0.11046737878 0.93749224063 0.96203549935 0.11046737877 0.11046737879 3.0217423313 1.4419902513 +0.79711985228 0.93982624564 0.11046737879 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737878 0.1104673788 0.1104673788 0.1104673788 0.1104673788 -0.1104673788 0.11046737879 2.8657703139 1.6461753789 0.11046737879 0.1104673788 +0.1104673788 0.11046737879 2.5363422795 1.0988490607 0.11046737879 0.1104673788 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -0.11046737879 0.11046737879 0.11046737879 0.11046737879 16.993830285 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 17.035634263 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.31443320228 2.0919006009 -0.28258502025 0.1104673788 0.32750699527 2.3294796617 0.11046737879 2.640159261 0.33260573325 0.11046737879 3.199005968 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 8.4016234841 9.0725712446 8.8209835185 8.1818387439 0.1104673788 -0.1104673788 0.1104673788 0.1104673788 0.77876111888 0.53465425579 0.41760897881 0.66152796581 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.24830485577 2.0311007219 +0.22490945771 0.1104673788 0.25239539889 2.2693063957 0.11046737879 2.5703216918 0.2486938566 0.11046737879 3.2545176736 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 8.4522490207 9.2180290841 8.9465270198 8.2179500987 0.1104673788 +0.1104673788 0.1104673788 0.1104673788 0.6927223693 0.37677195328 0.30814371516 0.59564235893 From a48185cd5e1519b8cfa2cc7868b7b74950c864b1 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Thu, 29 Feb 2024 21:25:32 -0500 Subject: [PATCH 106/155] started hohlraum design params --- include/problems/symmetrichohlraum.hpp | 23 ++++++++++++++++++----- src/problems/symmetrichohlraum.cpp | 22 ++++++++++++++++++---- 2 files changed, 36 insertions(+), 9 deletions(-) diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp index ed2e751c..8115c6a8 100644 --- a/include/problems/symmetrichohlraum.hpp +++ b/include/problems/symmetrichohlraum.hpp @@ -14,11 +14,24 @@ class SymmetricHohlraum : public ProblemBase Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ Vector _sigmaT; /*!< @brief Vector of total crosssections */ - std::vector _cornerUpperLeftGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ - std::vector _cornerLowerLeftGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ - std::vector _cornerUpperRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ - std::vector _cornerLowerRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ - double _thicknessGreen; /*!< @brief thickness of the green area */ + std::vector _cornerUpperLeftGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) relative to the green center */ + std::vector _cornerLowerLeftGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) relative to the green center */ + std::vector + _cornerUpperRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) relative to the green center */ + std::vector + _cornerLowerRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) relative to the green center */ + + double _widthGreen; /*!< @brief width of the green area */ + double _heightGreen; /*!< @brief height of the green area */ + double _thicknessGreen; /*!< @brief thickness of the green area */ + std::vector _centerGreen; /*!< @brief Center of the Hohlraum */ + + double _redLeftTop; /*!< @brief y coord of the top of the left red area */ + double _redLeftBottom; /*!< @brief y coord of the bottom of the left red area */ + double _redRightTop; /*!< @brief y coord of the top of the right red area */ + double _redRightBottom; /*!< @brief y coord of the bottom of the right red area */ + double _thicknessRedLeft; /*!< @brief thickness of the left red area */ + double _thicknessRedRight; /*!< @brief thickness of the right red area */ void SetGhostCells() override; /*!< @brief Sets vector of ghost cells for boundary conditions */ diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 79fbb272..5b50c219 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -15,13 +15,27 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _sigmaS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default _sigmaT = Vector( _mesh->GetNumCells(), 0.1 ); // white area default - // Geometry of the green capsule - _thicknessGreen = 0.05; + // Design parameters defining the hohlraum geometry + + // Red + _redLeftTop = 0.4; + _redLeftBottom = -0.4; + _redRightTop = 0.4; + _redRightBottom = -0.4; + _thicknessRedLeft = 0.05; + _thicknessRedRight = 0.05; + // Green + _widthGreen = 0.4; + _heightGreen = 0.8; + _thicknessGreen = 0.05; + _centerGreen = { 0.0, 0.0 }; + _cornerUpperLeftGreen = { -0.2 + _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; _cornerLowerLeftGreen = { -0.2 + _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; + // QOIS _curAbsorptionHohlraumCenter = 0.0; _curAbsorptionHohlraumVertical = 0.0; _curAbsorptionHohlraumHorizontal = 0.0; @@ -49,12 +63,12 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa double y = _mesh->GetCellMidPoints()[idx_cell][1]; // red area left - if( x < -0.6 && y > -0.4 && y < 0.4 ) { + if( x < -0.65 + _thicknessRedLeft && y > _redLeftBottom && y < _redLeftTop ) { _sigmaS[idx_cell] = 95.0; _sigmaT[idx_cell] = 100.0; } // red area right - if( x > 0.6 && y > -0.4 && y < 0.4 ) { + if( x > 0.65 - _thicknessRedRight && y > _redRightBottom && y < _redRightTop ) { _sigmaS[idx_cell] = 95.0; _sigmaT[idx_cell] = 100.0; } From 5af1b34d2fbfd210e42367dbaa355d87cdf89b3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= <35609777+ScSteffen@users.noreply.github.com> Date: Thu, 29 Feb 2024 23:10:48 -0500 Subject: [PATCH 107/155] accelerated sn solver by 25% through memory access optimization in Flux update (#45) --- include/fluxes/numericalflux.hpp | 12 ++++ include/fluxes/upwindflux.hpp | 12 ++++ src/fluxes/upwindflux.cpp | 14 +++++ src/solvers/snsolver.cpp | 94 +++++++++++++++----------------- 4 files changed, 82 insertions(+), 50 deletions(-) diff --git a/include/fluxes/numericalflux.hpp b/include/fluxes/numericalflux.hpp index 407b37cf..02811a60 100644 --- a/include/fluxes/numericalflux.hpp +++ b/include/fluxes/numericalflux.hpp @@ -21,6 +21,18 @@ class NumericalFluxBase */ virtual double Flux( const Vector& Omega, double psiL, double psiR, const Vector& n ) const = 0; + /** + * @brief Flux computes flux on edge for fixed ordinate at a given edge using x and y axis + * @param quadPts ordinates for flux computation + * @param psiL left solution state + * @param psiR right solution state + * @param n scaled normal vector of given edge + * @param n_sys number of quadpts + * @param numerical flux value + */ + virtual void Flux( const VectorVector& quadPts, const Vector& psiL, const Vector& psiR, Vector& flux, const Vector& n, unsigned n_sys ) = 0; + + /** * @brief Flux computes flux on edge for fixed ordinate at a given edge (in XZ plane) * @param Omega fixed ordinate for flux computation diff --git a/include/fluxes/upwindflux.hpp b/include/fluxes/upwindflux.hpp index 1cb39e60..69ce8feb 100644 --- a/include/fluxes/upwindflux.hpp +++ b/include/fluxes/upwindflux.hpp @@ -25,6 +25,18 @@ class UpwindFlux : public NumericalFluxBase * @return numerical flux value */ double Flux( const Vector& Omega, double psiL, double psiR, const Vector& n ) const override; + + /** + * @brief Flux computes flux on edge for fixed ordinate at a given edge using x and y axis + * @param quadPts ordinates for flux computation + * @param psiL left solution state + * @param psiR right solution state + * @param n scaled normal vector of given edge + * @param n_sys number of quadpts + * @param flux numerical flux value + */ + void Flux( const VectorVector& quadPts, const Vector& psiL, const Vector& psiR, Vector& flux, const Vector& n, unsigned n_sys ) override; + /** * @brief FluxXZ computes flux on edge for fixed ordinate at a given edge using x and z axis * @param Omega fixed ordinate for flux computation diff --git a/src/fluxes/upwindflux.cpp b/src/fluxes/upwindflux.cpp index 45ed825e..dd061103 100644 --- a/src/fluxes/upwindflux.cpp +++ b/src/fluxes/upwindflux.cpp @@ -13,6 +13,20 @@ double UpwindFlux::Flux( const Vector& Omega, double psiL, double psiR, const Ve } } +void UpwindFlux::Flux( const VectorVector& quadPts, const Vector& psiL, const Vector& psiR, Vector& flux, const Vector& n, unsigned n_sys ) { + double inner; // Only use x and y axis in 2d case, minus because y axis is flipped for some reason + + for (unsigned idx_q = 0; idx_q < n_sys; idx_q++){ + inner = quadPts[idx_q][0] * n[0] + quadPts[idx_q][1] * n[1]; + if( inner > 0 ) { + flux[idx_q]+= inner * psiL[idx_q]; + } + else { + flux[idx_q] += inner * psiR[idx_q]; + } + } +} + double UpwindFlux::FluxXZ( const Vector& Omega, double psiL, double psiR, const Vector& n ) const { double inner = Omega[0] * n[0] + Omega[2] * n[1]; // Only use x and z axis in 2d case if( inner > 0 ) { diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index c6bb3baa..29b40545 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -116,68 +116,62 @@ void SNSolver::FluxUpdatePseudo2D() { double solR; // Dirichlet cells stay at IC, farfield assumption if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; - // Loop over all ordinates - for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { // Reset temporary variable - _solNew[idx_cell][idx_quad] = 0.0; + _solNew[idx_cell]*= 0.0; //blaze op + // Loop over all neighbor cells (edges) of cell j and compute numerical // fluxes for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { // store flux contribution on psiNew_sigmaS to save memory if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { - _solNew[idx_cell][idx_quad] += _g->Flux( _quadPoints[idx_quad], - _sol[idx_cell][idx_quad], - _problem->GetGhostCellValue( idx_cell, _sol[idx_cell] )[idx_quad], - _normals[idx_cell][idx_nbr] ); + _g->Flux( _quadPoints, _sol[idx_cell], _problem->GetGhostCellValue( idx_cell, _sol[idx_cell] ), + _solNew[idx_cell], + _normals[idx_cell][idx_nbr], _nq ); } else { - unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell // first order solver - _solNew[idx_cell][idx_quad] += - _g->Flux( _quadPoints[idx_quad], _sol[idx_cell][idx_quad], _sol[nbr_glob][idx_quad], _normals[idx_cell][idx_nbr] ); + _g->Flux( _quadPoints, _sol[idx_cell], _sol[ _neighbors[idx_cell][idx_nbr]], _solNew[idx_cell],_normals[idx_cell][idx_nbr], _nq ); } } - } + } } else if( _reconsOrder == 2 ) { // Loop over all spatial cells #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - double solL; - double solR; + Vector solL; + Vector solR; // Dirichlet cells stay at IC, farfield assumption if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // Loop over all ordinates - for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { - // Reset temporary variable - _solNew[idx_cell][idx_quad] = 0.0; + _solNew[idx_cell] *= 0.0; // blaze operation // Loop over all neighbor cells (edges) of cell j and compute numerical // fluxes - for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { - // store flux contribution on psiNew_sigmaS to save memory - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { - _solNew[idx_cell][idx_quad] += _g->Flux( _quadPoints[idx_quad], - _sol[idx_cell][idx_quad], - _problem->GetGhostCellValue( idx_cell, _sol[idx_cell] )[idx_quad], - _normals[idx_cell][idx_nbr] ); - } - else { - unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell + for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { + // store flux contribution on psiNew_sigmaS to save memory + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { + _g->Flux( _quadPoints, _sol[idx_cell], _problem->GetGhostCellValue( idx_cell, _sol[idx_cell] ), + _solNew[idx_cell], + _normals[idx_cell][idx_nbr], _nq ); + } + else { + unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell - // left status of interface - solL = _sol[idx_cell][idx_quad] + - _limiter[idx_cell][idx_quad] * - ( _solDx[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + - _solDy[idx_cell][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); - solR = _sol[nbr_glob][idx_quad] + - _limiter[nbr_glob][idx_quad] * - ( _solDx[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + - _solDy[nbr_glob][idx_quad] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); + // left status of interface + solL = _sol[idx_cell] + + _limiter[idx_cell] * + (_solDx[idx_cell] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + + _solDy[idx_cell] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); + - // flux evaluation - _solNew[idx_cell][idx_quad] += _g->Flux( _quadPoints[idx_quad], solL, solR, _normals[idx_cell][idx_nbr] ); - } + solR = _sol[nbr_glob] + + _limiter[nbr_glob] * + ( _solDx[nbr_glob]* ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + + _solDy[nbr_glob] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); + + // flux evaluation + _g->Flux( _quadPoints, solL, solR, _solNew[idx_cell], _normals[idx_cell][idx_nbr], _nq ); } } } @@ -191,19 +185,19 @@ void SNSolver::FVMUpdate( unsigned idx_iter ) { // Dirichlet cells stay at IC, farfield assumption if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // loop over all ordinates - for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { + //for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { // time update angular flux with numerical flux and total scattering cross // section - _solNew[idx_cell][idx_quad] = _sol[idx_cell][idx_quad] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_quad] - - _dT * _sigmaT[0][idx_cell] * _sol[idx_cell][idx_quad]; - } + _solNew[idx_cell] = _sol[idx_cell] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell] - + _dT * _sigmaT[0][idx_cell] * _sol[idx_cell]; + //} // compute scattering effects _solNew[idx_cell] += _dT * _sigmaS[0][idx_cell] * _scatteringKernel * _sol[idx_cell]; // multiply scattering matrix with psi // Source Term - if( _Q[0][idx_cell].size() == 1u ) // isotropic source - _solNew[idx_cell] += _dT * _Q[0][idx_cell][0]; - else - _solNew[idx_cell] += _dT * _Q[0][idx_cell]; + //if( _Q[0][idx_cell].size() == 1u ) // isotropic source + _solNew[idx_cell] += _dT * _Q[0][idx_cell][0]; + //else + // _solNew[idx_cell] += _dT * _Q[0][idx_cell]; } } else { @@ -212,12 +206,12 @@ void SNSolver::FVMUpdate( unsigned idx_iter ) { // Dirichlet cells stay at IC, farfield assumption if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // loop over all ordinates - for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { + //for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { // time update angular flux with numerical flux and total scattering cross // section - _solNew[idx_cell][idx_quad] = _sol[idx_cell][idx_quad] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell][idx_quad] - - _dT * _sigmaT[idx_iter][idx_cell] * _sol[idx_cell][idx_quad]; - } + _solNew[idx_cell] = _sol[idx_cell] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell] - + _dT * _sigmaT[idx_iter][idx_cell] * _sol[idx_cell]; + // } // compute scattering effects _solNew[idx_cell] += _dT * _sigmaS[idx_iter][idx_cell] * _scatteringKernel * _sol[idx_cell]; // multiply scattering matrix with psi From 77e7bde0b8fe029e4e25bd37d07d0d7d1eb405c6 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Fri, 1 Mar 2024 16:10:45 -0500 Subject: [PATCH 108/155] added half lattice benchmark --- include/common/globalconstants.hpp | 6 ++- include/problems/quarterhohlraum.hpp | 2 +- src/common/config.cpp | 69 +++------------------------- src/problems/problembase.cpp | 8 +++- src/solvers/solverbase.cpp | 2 +- 5 files changed, 20 insertions(+), 67 deletions(-) diff --git a/include/common/globalconstants.hpp b/include/common/globalconstants.hpp index 8ec78634..6487c85b 100644 --- a/include/common/globalconstants.hpp +++ b/include/common/globalconstants.hpp @@ -105,7 +105,8 @@ enum PROBLEM_NAME { PROBLEM_Hohlraum, PROBLEM_SymmetricHohlraum, PROBLEM_QuarterHohlraum, - PROBLEM_Lattice + PROBLEM_Lattice, + PROBLEM_HalfLattice }; inline std::map Problem_Map{ { "LINESOURCE", PROBLEM_Linesource }, @@ -122,7 +123,8 @@ inline std::map Problem_Map{ { "LINESOURCE", PROBLEM_ { "HOHLRAUM", PROBLEM_Hohlraum }, { "SYMMETRIC_HOHLRAUM", PROBLEM_SymmetricHohlraum }, { "QUARTER_HOHLRAUM", PROBLEM_QuarterHohlraum }, - { "LATTICE", PROBLEM_Lattice } }; + { "LATTICE", PROBLEM_Lattice }, + { "HALF_LATTICE", PROBLEM_HalfLattice } }; // Kernel name enum KERNEL_NAME { KERNEL_Isotropic, KERNEL_Isotropic1D }; diff --git a/include/problems/quarterhohlraum.hpp b/include/problems/quarterhohlraum.hpp index ee48b070..416e43c8 100644 --- a/include/problems/quarterhohlraum.hpp +++ b/include/problems/quarterhohlraum.hpp @@ -12,7 +12,7 @@ class QuarterHohlraum : public ProblemBase std::map _ghostCellsReflectingX; /*!< map that indicates if a ghostcell has a fixed value or is a mirroring boundary */ std::map _ghostCellsReflectingY; /*!< map that indicates if a ghostcell has a fixed value or is a mirroring boundary */ std::map _quadratureXReflection; /*!< map that gives a Reflection against the x axis for the velocity ordinates */ - std::map _quadratureYReflection; /*!< map that gives a Reflection against the x axis for the velocity ordinates */ + std::map _quadratureYReflection; /*!< map that gives a Reflection against the y axis for the velocity ordinates */ protected: Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ diff --git a/src/common/config.cpp b/src/common/config.cpp index 8db5f793..73c04200 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -734,6 +734,7 @@ void Config::SetPostprocessing() { std::vector legalOutputs; std::vector::iterator it; switch( _problemName ) { + case PROBLEM_HalfLattice: case PROBLEM_Lattice: legalOutputs = { ITER, WALL_TIME, @@ -759,6 +760,7 @@ void Config::SetPostprocessing() { CURRENT_FUNCTION ); } break; + case PROBLEM_QuarterHohlraum: case PROBLEM_SymmetricHohlraum: legalOutputs = { ITER, WALL_TIME, @@ -789,36 +791,7 @@ void Config::SetPostprocessing() { CURRENT_FUNCTION ); } break; - case PROBLEM_QuarterHohlraum: - legalOutputs = { ITER, - WALL_TIME, - MASS, - RMS_FLUX, - VTK_OUTPUT, - CSV_OUTPUT, - CUR_OUTFLOW, - TOTAL_OUTFLOW, - MAX_OUTFLOW, - TOTAL_PARTICLE_ABSORPTION_CENTER, - TOTAL_PARTICLE_ABSORPTION_VERTICAL, - TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, - PROBE_MOMENT_TIME_TRACE, - VAR_ABSORPTION_GREEN }; - it = std::find( legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput] ); - - if( it == legalOutputs.end() ) { - std::string foundKey = findKey( ScalarOutput_Map, _screenOutput[idx_screenOutput] ); - ErrorMessages::Error( - "HERE Illegal output field <" + foundKey + - "> for option SCREEN_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, \n" - "TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, CUR_OUTFLOW, \n " - "TOTAL_OUTFLOW, MAX_OUTFLOW, VAR_ABSORPTION_GREEN \n" - "Please check your .cfg file.", - CURRENT_FUNCTION ); - } - break; default: legalOutputs = { ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW }; it = std::find( legalOutputs.begin(), legalOutputs.end(), _screenOutput[idx_screenOutput] ); @@ -881,10 +854,10 @@ void Config::SetPostprocessing() { // Check for doublicates in HISTORY OUTPUT std::map dublicate_map; - for( unsigned short idx_screenOutput = 0; idx_screenOutput < _nHistoryOutput; idx_screenOutput++ ) { - std::map::iterator it = dublicate_map.find( _historyOutput[idx_screenOutput] ); + for( unsigned idx_historyOutput = 0; idx_historyOutput < _nHistoryOutput; idx_historyOutput++ ) { + std::map::iterator it = dublicate_map.find( _historyOutput[idx_historyOutput] ); if( it == dublicate_map.end() ) { - dublicate_map.insert( std::pair( _historyOutput[idx_screenOutput], 0 ) ); + dublicate_map.insert( std::pair( _historyOutput[idx_historyOutput], 0 ) ); } else { it->second++; @@ -903,6 +876,7 @@ void Config::SetPostprocessing() { std::vector::iterator it; switch( _problemName ) { + case PROBLEM_HalfLattice: case PROBLEM_Lattice: legalOutputs = { ITER, WALL_TIME, @@ -928,6 +902,7 @@ void Config::SetPostprocessing() { CURRENT_FUNCTION ); } break; + case PROBLEM_QuarterHohlraum: case PROBLEM_SymmetricHohlraum: legalOutputs = { ITER, WALL_TIME, @@ -959,37 +934,7 @@ void Config::SetPostprocessing() { CURRENT_FUNCTION ); } break; - case PROBLEM_QuarterHohlraum: - legalOutputs = { ITER, - WALL_TIME, - MASS, - RMS_FLUX, - VTK_OUTPUT, - CSV_OUTPUT, - CUR_OUTFLOW, - TOTAL_OUTFLOW, - MAX_OUTFLOW, - TOTAL_PARTICLE_ABSORPTION_CENTER, - TOTAL_PARTICLE_ABSORPTION_VERTICAL, - TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, - PROBE_MOMENT_TIME_TRACE, - VAR_ABSORPTION_GREEN, - VAR_ABSORPTION_GREEN_LINE }; - - it = std::find( legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput] ); - if( it == legalOutputs.end() ) { - std::string foundKey = findKey( ScalarOutput_Map, _historyOutput[idx_screenOutput] ); - ErrorMessages::Error( - "Illegal output field <" + foundKey + - "> for option HISTORY_OUTPUT for this test case.\n" - "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, \n " - "TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL,PROBE_MOMENT_TIME_TRACE, CUR_OUTFLOW, \n" - "TOTAL_OUTFLOW, MAX_OUTFLOW , VAR_ABSORPTION_GREEN, VAR_ABSORPTION_GREEN_LINE \n" - "Please check your .cfg file.", - CURRENT_FUNCTION ); - } - break; default: legalOutputs = { ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW }; it = std::find( legalOutputs.begin(), legalOutputs.end(), _historyOutput[idx_screenOutput] ); diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index 249ff13a..537fa322 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -4,6 +4,7 @@ #include "common/mesh.hpp" #include "problems/aircavity1d.hpp" #include "problems/checkerboard.hpp" +#include "problems/halflattice.hpp" #include "problems/hohlraum.hpp" #include "problems/lattice.hpp" #include "problems/linesource.hpp" @@ -116,6 +117,12 @@ ProblemBase* ProblemBase::Create( Config* settings, Mesh* mesh, QuadratureBase* else return new Lattice_SN( settings, mesh, quad ); } break; + case PROBLEM_HalfLattice: { + if( settings->GetIsMomentSolver() ) + return new HalfLattice_Moment( settings, mesh, quad ); + else + return new HalfLattice_SN( settings, mesh, quad ); + } break; default: ErrorMessages::Error( "No valid physical problem chosen. Please check your config file", CURRENT_FUNCTION ); return nullptr; } @@ -219,7 +226,6 @@ void ProblemBase::ComputeCurrentOutflow( const VectorVector& solution ) { // Iterate over face cell faces -#pragma omp parallel for default( shared ) reduction( + : _curScalarOutflow ) for( unsigned idx_nbr = 0; idx_nbr < neigbors[idx_cell].size(); ++idx_nbr ) { // Find face that points outward if( neigbors[idx_cell][idx_nbr] == nCells ) { diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 4c471e4c..67f38e86 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -616,7 +616,7 @@ void SolverBase::IterPostprocessing( unsigned /*idx_iter*/ ) { _problem->ComputeTotalOutflow( _dT ); _problem->ComputeMaxOrdinatewiseOutflow( _sol ); - if( _settings->GetProblemName() == PROBLEM_Lattice ) { + if( _settings->GetProblemName() == PROBLEM_Lattice || _settings->GetProblemName() == PROBLEM_HalfLattice ) { _problem->ComputeCurrentAbsorptionLattice( _scalarFlux ); _problem->ComputeTotalAbsorptionLattice( _dT ); _problem->ComputeMaxAbsorptionLattice( _scalarFlux ); From e2e1541af6b139dc4c9aeed5d7fc7359c7807a02 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Fri, 1 Mar 2024 16:12:42 -0500 Subject: [PATCH 109/155] added half lattice bench --- include/problems/halflattice.hpp | 84 ++++++ src/problems/halflattice.cpp | 458 +++++++++++++++++++++++++++++++ 2 files changed, 542 insertions(+) create mode 100644 include/problems/halflattice.hpp create mode 100644 src/problems/halflattice.cpp diff --git a/include/problems/halflattice.hpp b/include/problems/halflattice.hpp new file mode 100644 index 00000000..d15b0eb0 --- /dev/null +++ b/include/problems/halflattice.hpp @@ -0,0 +1,84 @@ +#ifndef HALFLATTICE_H +#define HALFLATTICE_H + +#include "problembase.hpp" + +class SphericalBase; + +class HalfLattice_SN : public ProblemBase +{ + private: + HalfLattice_SN() = delete; + + Vector _sigmaS; /*!< @brief Vector of scattering crosssections */ + Vector _sigmaT; /*!< @brief Vector of total crosssections */ + + std::map _ghostCellsReflectingY; /*!< map that indicates if a ghostcell has a fixed value or is a mirroring boundary */ + std::map _quadratureYReflection; /*!< map that gives a Reflection against the y axis for the velocity ordinates */ + + // Lattice QOIS + double _curAbsorptionLattice; /*!< @brief Absorption of particles at Lattice checkerboard regions at current time step */ + double _totalAbsorptionLattice; /*!< @brief Absorption of particles at Lattice checkerboard regions integrated until current time step */ + double _curMaxAbsorptionLattice; /*!< @brief Maximum pointwise absorption of particles at Lattice checkerboard regions until current time step */ + + bool IsAbsorption( const Vector& pos ) const; /*!< @return True if pos is in absorption region, False otherwise */ + bool IsSource( const Vector& pos ) const; /*!< @return True if pos is in source region, False otherwise */ + + protected: + void SetGhostCells() override; /*!< @brief Sets vector of ghost cells for boundary conditions */ + unsigned GetBlockID( const Vector& pos ) const; /*!< @brief Returns checkerboard field id (0-48, row major) of the Lattice test case */ + + public: + HalfLattice_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ); + virtual ~HalfLattice_SN(); + + virtual VectorVector GetScatteringXS( const Vector& energies ) override; + virtual VectorVector GetTotalXS( const Vector& energies ) override; + virtual std::vector GetExternalSource( const Vector& energies ) override; + virtual VectorVector SetupIC() override; + + const Vector& GetGhostCellValue( int idx_cell, const Vector& cell_sol ) override final; + + void ComputeCurrentOutflow( const VectorVector& solution ) override; /*!< @brief Computes Problemspeagnostic Scalar QOI */ + void ComputeMaxOrdinatewiseOutflow( const VectorVector& solution ) override; /*!< @brief Computes Problemspeagnostic Scalar QOI */ + + double GetCurAbsorptionLattice() override final; + double GetTotalAbsorptionLattice() override final; + double GetMaxAbsorptionLattice() override final; + void ComputeTotalAbsorptionLattice( double dT ) override; + void ComputeCurrentAbsorptionLattice( const Vector& scalarFlux ) override; + void ComputeMaxAbsorptionLattice( const Vector& scalarFlux ) override; +}; + +class HalfLattice_Moment : public ProblemBase +{ + private: + Vector _sigmaS; /*!< @brief Vector of scattering crosssections len: numCells */ + Vector _sigmaT; /*!< @brief Vector of total crosssections. len: numCells*/ + + HalfLattice_Moment() = delete; + + bool isAbsorption( const Vector& pos ) const; /*!< @return True if pos is in absorption region, False otherwise */ + bool isSource( const Vector& pos ) const; /*!< @return True if pos is in source region, False otherwise */ + + /*! + * @brief Gets the global index for given order l of Legendre polynomials and given + * order k of Legendre functions. + * Note: This is code doubling from PNSolver::GlobalIndex + * @param l order of Legendre polynomial + * @param k order of Legendre function + * @returns globalIndex + */ + int GlobalIndex( int l, int k ) const; + + public: + HalfLattice_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ); + virtual ~HalfLattice_Moment(); + + virtual VectorVector GetScatteringXS( const Vector& energies ) override; + virtual VectorVector GetTotalXS( const Vector& energies ) override; + virtual std::vector GetExternalSource( const Vector& energies ) override; + virtual VectorVector SetupIC() override; +}; + +#endif // HALFLATTICE_H diff --git a/src/problems/halflattice.cpp b/src/problems/halflattice.cpp new file mode 100644 index 00000000..c4279d18 --- /dev/null +++ b/src/problems/halflattice.cpp @@ -0,0 +1,458 @@ +#include "problems/halflattice.hpp" +#include "common/config.hpp" +#include "common/mesh.hpp" +#include "quadratures/quadraturebase.hpp" +#include "toolboxes/textprocessingtoolbox.hpp" +#include "velocitybasis/sphericalbase.hpp" +#include "velocitybasis/sphericalharmonics.hpp" + +// ---- Checkerboard Sn ---- +// Constructor for Ckeckerboard case with Sn +HalfLattice_SN::HalfLattice_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { + + // Initialise scattering crosssections to 1 and absorption cross sections to 0 + _sigmaS = Vector( _mesh->GetNumCells(), 1. ); + _sigmaT = Vector( _mesh->GetNumCells(), 1. ); + + // Initialize Quantities of interest + _curAbsorptionLattice = 0.0; + _curMaxAbsorptionLattice = 0.0; + _totalAbsorptionLattice = 0.0; + + if( _settings->GetNLatticeAbsIndividual() == 49 && _settings->GetNLatticeScatterIndividual() == 49 ) { // Individual values set + auto log = spdlog::get( "event" ); + log->info( "| " ); + log->info( "| Lattice test case WITH individual scattering and absorption values for each block. " ); + + auto cellMids = _mesh->GetCellMidPoints(); + + std::vector scatteringValues = _settings->GetLatticeScatterIndividual(); + std::vector absorptionValues = _settings->GetLatticeAbsorptionIndividual(); + + for( unsigned j = 0; j < cellMids.size(); ++j ) { + _sigmaS[j] = scatteringValues[GetBlockID( cellMids[j] )]; + _sigmaT[j] = absorptionValues[GetBlockID( cellMids[j] )] + scatteringValues[GetBlockID( cellMids[j] )]; + } + } + else { + auto log = spdlog::get( "event" ); + log->info( "| " ); + log->info( "| Lattice test case WITHOUT individual scattering and absorption values for each block. " ); + // For absorption cells: set scattering XS to 0 and absorption to 10 + auto cellMids = _mesh->GetCellMidPoints(); + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( IsAbsorption( cellMids[j] ) ) { + _sigmaS[j] = 0.0; + _sigmaT[j] = _settings->GetLatticeAbsBlue(); + } + else if( !IsSource( cellMids[j] ) ) { // White block + _sigmaS[j] = _settings->GetLatticeScatterWhite(); + _sigmaT[j] = _settings->GetLatticeScatterWhite(); + } + } + } + + SetGhostCells(); +} + +HalfLattice_SN::~HalfLattice_SN() {} + +VectorVector HalfLattice_SN::GetScatteringXS( const Vector& /*energies */ ) { return VectorVector( 1u, _sigmaS ); } + +VectorVector HalfLattice_SN::GetTotalXS( const Vector& /*energies */ ) { return VectorVector( 1u, _sigmaT ); } + +std::vector HalfLattice_SN::GetExternalSource( const Vector& /*energies*/ ) { + VectorVector Q( _mesh->GetNumCells(), Vector( 1u, 0.0 ) ); + auto cellMids = _mesh->GetCellMidPoints(); + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( IsSource( cellMids[j] ) ) Q[j] = _settings->GetSourceMagnitude(); // isotropic source + } + return std::vector( 1u, Q ); +} + +VectorVector HalfLattice_SN::SetupIC() { + VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-10 ) ); + return psi; +} + +bool HalfLattice_SN::IsAbsorption( const Vector& pos ) const { + // Check whether pos is inside absorbing squares + double xy_corrector = -3.5; + std::vector lbounds{ 1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector }; + std::vector ubounds{ 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector }; + for( unsigned k = 0; k < lbounds.size(); ++k ) { + for( unsigned l = 0; l < lbounds.size(); ++l ) { + if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; + if( pos[0] >= lbounds[k] && pos[0] <= ubounds[k] && pos[1] >= lbounds[l] && pos[1] <= ubounds[l] ) { + return true; + } + } + } + return false; +} + +unsigned HalfLattice_SN::GetBlockID( const Vector& pos ) const { + double xy_corrector = 3.5; + int block_x = int( pos[0] + xy_corrector ); + int block_y = int( pos[1] + xy_corrector ); + return (unsigned)( block_y * 7 + block_x ); +} + +bool HalfLattice_SN::IsSource( const Vector& pos ) const { + // Check whether pos is part of source region + if( pos[0] >= 3 - 3.5 && pos[0] <= 4 - 3.5 && pos[1] >= 3 - 3.5 && pos[1] <= 4 - 3.5 ) + return true; + else + return false; +} + +void HalfLattice_SN::SetGhostCells() { + // Loop over all cells. If its a Dirichlet boundary, add cell to dict with {cell_idx, boundary_value} + auto cellBoundaries = _mesh->GetBoundaryTypes(); + std::map ghostCellMap; + std::map ghostCellReflMap; + + double tol = 1e-12; // For distance to boundary + + unsigned nGhostcells = 0; + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { + if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { + nGhostcells++; + } + } + + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector vq = quad->GetPoints(); + unsigned nq = quad->GetNq(); + + if( _settings->GetQuadName() != QUAD_GaussLegendreTensorized2D ) { + ErrorMessages::Error( "This simplified test case only works with symmetric quadrature orders. Use QUAD_GAUSS_LEGENDRE_TENSORIZED_2D", + CURRENT_FUNCTION ); + } + { // Create the symmetry maps for the quadratures + + for( unsigned idx_q = 0; idx_q < nq; idx_q++ ) { + for( unsigned idx_q2 = 0; idx_q2 < nq; idx_q2++ ) { + if( abs( vq[idx_q][0] + vq[idx_q2][0] ) + abs( vq[idx_q][1] - vq[idx_q2][1] ) < tol ) { + _quadratureYReflection[idx_q] = idx_q2; + break; + } + } + } + } + + if( _quadratureYReflection.size() != nq ) { + ErrorMessages::Error( "Problem with Y symmetry of quadrature of this mesh", CURRENT_FUNCTION ); + } + + Vector right_inflow( nq, 0.0 ); + Vector vertical_flow( nq, 0.0 ); + + for( unsigned idx_q = 0; idx_q < nq; idx_q++ ) { + if( vq[idx_q][0] < 0.0 ) right_inflow[idx_q] = 1.0; + } + + auto nodes = _mesh->GetNodes(); + + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { + if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { + double x = _mesh->GetCellMidPoints()[idx_cell][0]; + double y = _mesh->GetCellMidPoints()[idx_cell][1]; + + auto localCellNodes = _mesh->GetCells()[idx_cell]; + + _ghostCellsReflectingY[idx_cell] = false; + for( unsigned idx_node = 0; idx_node < _mesh->GetNumNodesPerCell(); idx_node++ ) { // Check if corner node is in this cell + if( abs( nodes[localCellNodes[idx_node]][1] ) < -3.5 + tol || abs( nodes[localCellNodes[idx_node]][1] ) > 3.5 - tol ) { + // upper and lower boundary + ghostCellMap.insert( { idx_cell, vertical_flow } ); + break; + } + else if( abs( nodes[localCellNodes[idx_node]][0] ) < tol ) { // close to 0 => left boundary + _ghostCellsReflectingY[idx_cell] = true; + ghostCellMap.insert( { idx_cell, vertical_flow } ); + break; + } + else { // right boundary + ghostCellMap.insert( { idx_cell, vertical_flow } ); + break; + } + } + } + } + _ghostCells = ghostCellMap; + + delete quad; +} + +const Vector& HalfLattice_SN::GetGhostCellValue( int idx_cell, const Vector& cell_sol ) { + if( _ghostCellsReflectingY[idx_cell] ) { + for( unsigned idx_sys = 0; idx_sys < cell_sol.size(); idx_sys++ ) { + _ghostCells[idx_cell][idx_sys] = cell_sol[_quadratureYReflection[idx_sys]]; + } + } + return _ghostCells[idx_cell]; +} + +// QOI getter +double HalfLattice_SN::GetCurAbsorptionLattice() { return _curAbsorptionLattice; } +double HalfLattice_SN::GetTotalAbsorptionLattice() { return _totalAbsorptionLattice; } +double HalfLattice_SN::GetMaxAbsorptionLattice() { return _curMaxAbsorptionLattice; } +// QOI setter +void HalfLattice_SN::ComputeTotalAbsorptionLattice( double dT ) { _totalAbsorptionLattice += _curAbsorptionLattice * dT; } + +void HalfLattice_SN::ComputeCurrentAbsorptionLattice( const Vector& scalarFlux ) { + _curAbsorptionLattice = 0.0; + unsigned nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + std::vector areas = _mesh->GetCellAreas(); + + for( unsigned idx_cell = 0; idx_cell < nCells; idx_cell++ ) { + if( IsAbsorption( cellMids[idx_cell] ) ) { + _curAbsorptionLattice += scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * areas[idx_cell]; + } + } +} +// TODO all absorption qois can be refactored in one function +void HalfLattice_SN::ComputeMaxAbsorptionLattice( const Vector& scalarFlux ) { + unsigned nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + std::vector areas = _mesh->GetCellAreas(); + + for( unsigned idx_cell = 0; idx_cell < nCells; idx_cell++ ) { + if( IsAbsorption( cellMids[idx_cell] ) ) { + if( _curMaxAbsorptionLattice < scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) + _curMaxAbsorptionLattice = scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ); + } + } +} + +void HalfLattice_SN::ComputeMaxOrdinatewiseOutflow( const VectorVector& solution ) { + if( _settings->GetSolverName() == SN_SOLVER || _settings->GetSolverName() == CSD_SN_SOLVER ) { + double currOrdinatewiseOutflow = 0.0; + double transportDirection = 0.0; + + auto nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + auto areas = _mesh->GetCellAreas(); + auto neigbors = _mesh->GetNeighbours(); + auto normals = _mesh->GetNormals(); + + auto quadPoints = _quad->GetPoints(); + auto weights = _quad->GetWeights(); + auto nq = _quad->GetNq(); + + // Iterate over boundaries + for( std::map::iterator it = _ghostCells.begin(); it != _ghostCells.end(); ++it ) { + int idx_cell = it->first; // Get Boundary cell index + + if( !_ghostCellsReflectingY[idx_cell] ) { // Only work on non-reflecting boundaries + for( unsigned idx_nbr = 0; idx_nbr < neigbors[idx_cell].size(); ++idx_nbr ) { + // Find face that points outward + if( neigbors[idx_cell][idx_nbr] == nCells ) { + // Iterate over transport directions + for( unsigned idx_quad = 0; idx_quad < nq; ++idx_quad ) { + transportDirection = + normals[idx_cell][idx_nbr][0] * quadPoints[idx_quad][0] + normals[idx_cell][idx_nbr][1] * quadPoints[idx_quad][1]; + // Find outward facing transport directions + if( transportDirection > 0.0 ) { + + currOrdinatewiseOutflow = transportDirection / norm( normals[idx_cell][idx_nbr] ) * solution[idx_cell][idx_quad]; + + if( currOrdinatewiseOutflow > _curMaxOrdinateOutflow ) _curMaxOrdinateOutflow = currOrdinatewiseOutflow; + } + } + } + } + } + } + } + // TODO define alternative for Moment solvers +} + +void HalfLattice_SN::ComputeCurrentOutflow( const VectorVector& solution ) { + if( _settings->GetSolverName() == SN_SOLVER || _settings->GetSolverName() == CSD_SN_SOLVER ) { + + _curScalarOutflow = 0.0; + double transportDirection = 0.0; + + auto nCells = _mesh->GetNumCells(); + auto cellMids = _mesh->GetCellMidPoints(); + auto areas = _mesh->GetCellAreas(); + auto neigbors = _mesh->GetNeighbours(); + auto normals = _mesh->GetNormals(); + + auto quadPoints = _quad->GetPoints(); + auto weights = _quad->GetWeights(); + auto nq = _quad->GetNq(); + + // Iterate over boundaries + for( std::map::iterator it = _ghostCells.begin(); it != _ghostCells.end(); ++it ) { + int idx_cell = it->first; // Get Boundary cell index + + // Iterate over face cell faces + if( !_ghostCellsReflectingY[idx_cell] ) { // Only work on non-reflecting boundaries + for( unsigned idx_nbr = 0; idx_nbr < neigbors[idx_cell].size(); ++idx_nbr ) { + // Find face that points outward + if( neigbors[idx_cell][idx_nbr] == nCells ) { + // Iterate over transport directions + for( unsigned idx_quad = 0; idx_quad < nq; ++idx_quad ) { + transportDirection = + normals[idx_cell][idx_nbr][0] * quadPoints[idx_quad][0] + normals[idx_cell][idx_nbr][1] * quadPoints[idx_quad][1]; + // Find outward facing transport directions + if( transportDirection > 0.0 ) { + _curScalarOutflow += transportDirection * solution[idx_cell][idx_quad] * weights[idx_quad]; // Integrate flux + } + } + } + } + } + } + } + // TODO define alternative for Moment solvers +} + +// ---- Checkerboard Moments ---- + +// Constructor for checkerboard case with Pn +HalfLattice_Moment::HalfLattice_Moment( Config* settings, Mesh* mesh, QuadratureBase* quad ) : ProblemBase( settings, mesh, quad ) { + + // Initialise crosssections = 1 (scattering) + _sigmaS = Vector( _mesh->GetNumCells(), 1.0 ); + _sigmaT = Vector( _mesh->GetNumCells(), 1.0 ); + + // for absorption regions change crosssections to all absorption + auto cellMids = _mesh->GetCellMidPoints(); + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( isAbsorption( cellMids[j] ) ) { + _sigmaS[j] = 0.0; + _sigmaT[j] = 10.0; + } + } +} + +HalfLattice_Moment::~HalfLattice_Moment() {} + +VectorVector HalfLattice_Moment::GetScatteringXS( const Vector& /*energies*/ ) { return VectorVector( 1u, _sigmaS ); } + +VectorVector HalfLattice_Moment::GetTotalXS( const Vector& /*energies*/ ) { return VectorVector( 1u, _sigmaT ); } + +std::vector HalfLattice_Moment::GetExternalSource( const Vector& /*energies*/ ) { + // In case of PN, spherical basis is per default SPHERICAL_HARMONICS + + double integrationFactor = ( 4 * M_PI ); + if( _settings->GetDim() == 2 ) { + integrationFactor = M_PI; + } + SphericalBase* tempBase = SphericalBase::Create( _settings ); + unsigned ntotalEquations = tempBase->GetBasisSize(); + + VectorVector Q( _mesh->GetNumCells(), Vector( ntotalEquations, 0.0 ) ); // zero could lead to problems? + VectorVector cellMids = _mesh->GetCellMidPoints(); + + Vector uIC( ntotalEquations, 0 ); + + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector quadPointsSphere = quad->GetPointsSphere(); + Vector w = quad->GetWeights(); + + double my, phi; + VectorVector moments = VectorVector( quad->GetNq(), Vector( tempBase->GetBasisSize(), 0.0 ) ); + + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + my = quadPointsSphere[idx_quad][0]; + phi = quadPointsSphere[idx_quad][1]; + moments[idx_quad] = tempBase->ComputeSphericalBasis( my, phi ); + } + // Integrate <1*m> to get factors for monomial basis in isotropic scattering + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + uIC += w[idx_quad] * moments[idx_quad]; + } + delete quad; + } + double kinetic_density = _settings->GetSourceMagnitude(); + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( isSource( cellMids[j] ) ) { + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { + Q[j] = kinetic_density * uIC / uIC[0] / integrationFactor; // Remember scaling + } + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + Q[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) + } + } + } + delete tempBase; // Only temporally needed + return std::vector( 1u, Q ); +} + +VectorVector HalfLattice_Moment::SetupIC() { + double integrationFactor = ( 4 * M_PI ); + if( _settings->GetDim() == 2 ) { + integrationFactor = M_PI; + } + // In case of PN, spherical basis is per default SPHERICAL_HARMONICS + SphericalBase* tempBase = SphericalBase::Create( _settings ); + unsigned ntotalEquations = tempBase->GetBasisSize(); + + VectorVector initialSolution( _mesh->GetNumCells(), Vector( ntotalEquations, 0 ) ); // zero could lead to problems? + VectorVector cellMids = _mesh->GetCellMidPoints(); + + Vector tempIC( ntotalEquations, 0 ); + + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { + QuadratureBase* quad = QuadratureBase::Create( _settings ); + VectorVector quadPointsSphere = quad->GetPointsSphere(); + Vector w = quad->GetWeights(); + + double my, phi; + VectorVector moments = VectorVector( quad->GetNq(), Vector( tempBase->GetBasisSize(), 0.0 ) ); + + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + my = quadPointsSphere[idx_quad][0]; + phi = quadPointsSphere[idx_quad][1]; + moments[idx_quad] = tempBase->ComputeSphericalBasis( my, phi ); + } + // Integrate <1*m> to get factors for monomial basis in isotropic scattering + for( unsigned idx_quad = 0; idx_quad < quad->GetNq(); idx_quad++ ) { + tempIC += w[idx_quad] * moments[idx_quad]; + } + delete quad; + } + // Initial condition is dirac impulse at (x,y) = (0,0) ==> constant in angle ==> all moments - exept first - are zero. + double kinetic_density = 1e-4; + for( unsigned j = 0; j < cellMids.size(); ++j ) { + if( _settings->GetSphericalBasisName() == SPHERICAL_MONOMIALS ) { + initialSolution[j] = kinetic_density * tempIC / tempIC[0] / integrationFactor; // Remember scaling + } + if( _settings->GetSphericalBasisName() == SPHERICAL_HARMONICS ) { + initialSolution[j][0] = kinetic_density / integrationFactor; // first bassis function is 1/ ( 4 * M_PI ) + } + } + delete tempBase; // Only temporally needed + return initialSolution; +} + +bool HalfLattice_Moment::isAbsorption( const Vector& pos ) const { + // Check whether pos is in absorption region + double xy_corrector = -3.5; + std::vector lbounds{ 1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector }; + std::vector ubounds{ 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector }; + for( unsigned k = 0; k < lbounds.size(); ++k ) { + for( unsigned l = 0; l < lbounds.size(); ++l ) { + if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; + if( pos[0] >= lbounds[k] && pos[0] <= ubounds[k] && pos[1] >= lbounds[l] && pos[1] <= ubounds[l] ) { + return true; + } + } + } + return false; +} + +bool HalfLattice_Moment::isSource( const Vector& pos ) const { + // Check whether pos is in source region + if( pos[0] >= 3 - 3.5 && pos[0] <= 4 - 3.5 && pos[1] >= 3 - 3.5 && pos[1] <= 4 - 3.5 ) + return true; + else + return false; +} From 3fa7048fd88043c1f28b969cf0b725027199d5dc Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Mon, 4 Mar 2024 13:16:32 -0500 Subject: [PATCH 110/155] updates upwind flux --- src/fluxes/upwindflux.cpp | 9 +++------ src/solvers/snsolver.cpp | 2 +- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/src/fluxes/upwindflux.cpp b/src/fluxes/upwindflux.cpp index dd061103..8f3e9041 100644 --- a/src/fluxes/upwindflux.cpp +++ b/src/fluxes/upwindflux.cpp @@ -18,12 +18,9 @@ void UpwindFlux::Flux( const VectorVector& quadPts, const Vector& psiL, const Ve for (unsigned idx_q = 0; idx_q < n_sys; idx_q++){ inner = quadPts[idx_q][0] * n[0] + quadPts[idx_q][1] * n[1]; - if( inner > 0 ) { - flux[idx_q]+= inner * psiL[idx_q]; - } - else { - flux[idx_q] += inner * psiR[idx_q]; - } + + flux[idx_q] += (inner > 0) ? inner * psiL[idx_q] : inner * psiR[idx_q]; + } } diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index 29b40545..a5c5e801 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -188,7 +188,7 @@ void SNSolver::FVMUpdate( unsigned idx_iter ) { //for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { // time update angular flux with numerical flux and total scattering cross // section - _solNew[idx_cell] = _sol[idx_cell] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell] - + _solNew[idx_cell] = _sol[idx_cell] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell] - _dT * _sigmaT[0][idx_cell] * _sol[idx_cell]; //} // compute scattering effects From 7ee9d64d41a6aa8d8b85413318a353618786aabd Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 4 Mar 2024 17:20:08 -0500 Subject: [PATCH 111/155] fix logger unit test --- .../output/validate_logger_csv_reference | 6 +++--- .../validation_tests/output/validate_logger_reference | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/input/validation_tests/output/validate_logger_csv_reference b/tests/input/validation_tests/output/validate_logger_csv_reference index 2c11f3e4..5a55ece5 100644 --- a/tests/input/validation_tests/output/validate_logger_csv_reference +++ b/tests/input/validation_tests/output/validate_logger_csv_reference @@ -1,3 +1,3 @@ -2024-02-13 13:11:25.839143 ,Iter,Mass,RMS_flux,VTK_out,CSV_out -2024-02-13 13:11:25.841971 ,0.000000,1.4451E-01,4.0368E+00,0.0000E+00,1.0000E+00 -2024-02-13 13:11:25.844514 ,1.000000,1.4451E-01,2.0608E+00,1.0000E+00,1.0000E+00 +2024-03-04 17:18:45.114752 ,Iter,Mass,RMS_flux,VTK_out,CSV_out +2024-03-04 17:18:45.130741 ,0.000000,1.445122E-01,4.036831E+00,0.000000E+00,1.000000E+00 +2024-03-04 17:18:45.149479 ,1.000000,1.445122E-01,2.060778E+00,1.000000E+00,1.000000E+00 diff --git a/tests/input/validation_tests/output/validate_logger_reference b/tests/input/validation_tests/output/validate_logger_reference index 34f6e369..41321e47 100644 --- a/tests/input/validation_tests/output/validate_logger_reference +++ b/tests/input/validation_tests/output/validate_logger_reference @@ -14,10 +14,10 @@ 2024-02-07 09:35:33.199069 | | The simulation will run for 2 iterations. 2024-02-07 09:35:33.199074 | | The spatial grid contains 96 cells. 2024-02-07 09:35:33.199079 | | The velocity grid contains 86 points. -2024-02-07 09:35:33.199083 | --------------------------------------------------------------------------------------- -2024-02-07 09:35:33.199086 | | Iter | Mass | RMS flux | VTK out | CSV out | -2024-02-07 09:35:33.199090 | --------------------------------------------------------------------------------------- -2024-02-13 13:11:25.841863 | | 0 | 1.4451E-01 | 4.0368E00 | no | yes | -2024-02-13 13:11:25.844409 | | 1 | 1.4451E-01 | 2.0608E00 | yes | yes | +024-03-04 17:18:45.114744 | --------------------------------------------------------------------------------------- +2024-03-04 17:18:45.114746 | | Iter | Mass | RMS flux | VTK out | CSV out | +2024-03-04 17:18:45.114749 | --------------------------------------------------------------------------------------- +2024-03-04 17:18:45.130644 | | 0 | 1.445122E-01 | 4.036831E00 | no | yes | +2024-03-04 17:18:45.149408 | | 1 | 1.445122E-01 | 2.060778E00 | yes | yes | 2024-02-07 09:35:33.205929 | -------------------------------------------------------------- 2024-02-07 09:35:33.205948 | --------------------------- Solver Finished ---------------------------- From 14442721e63cfa4ee908bf380bc9804cc523e407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= <35609777+ScSteffen@users.noreply.github.com> Date: Thu, 4 Apr 2024 15:16:13 -0400 Subject: [PATCH 112/155] Fixed Bug in 2nd order HPC SN solver (#47) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix for unit tests? * started hpc sn solver * continue mem opt * continue hpc sn solver * continue hpc solver * order 1 solver accellerated' * lattice qois updated * clean up of hpc examples * started 2nd order solver * added half lattice and 2nd order * 2nd order solver ready with venkat limiter * fix output bug * added 2nd order in time (inefficiently) * bugfixing 2nd order * changed initial condiiton to 0 * arrg * linesource 1st order paralelized * compartmentalize fvm update and fluxes (10% performance loss) * fixed lattice * started 2nd order flux * restore bs limiter * fixed 2nd order lattice * temp comment out hohlraum specific stuff * fixed hohlraum 2nd order with all QOIS --------- Co-authored-by: Steffen Schotthöfer --- .github/workflows/c-cpp.yml | 2 + examples_hpc/lattice/lattice_S19_n10.cfg | 48 - examples_hpc/lattice/lattice_S19_n20.cfg | 48 - examples_hpc/lattice/lattice_S19_n40.cfg | 48 - examples_hpc/lattice/lattice_S19_n80.cfg | 48 - examples_hpc/lattice/lattice_S29_n20.cfg | 48 - examples_hpc/lattice/lattice_S29_n40.cfg | 48 - examples_hpc/lattice/lattice_S29_n80.cfg | 48 - examples_hpc/lattice/lattice_S3_n20.cfg | 48 - examples_hpc/lattice/lattice_S41_n20.cfg | 48 - examples_hpc/lattice/lattice_S41_n40.cfg | 48 - examples_hpc/lattice/lattice_S41_n80.cfg | 48 - examples_hpc/lattice/lattice_S53_n20.cfg | 48 - examples_hpc/lattice/lattice_S53_n40.cfg | 48 - examples_hpc/lattice/lattice_S53_n80.cfg | 48 - examples_hpc/lattice/lattice_S65_n20.cfg | 48 - examples_hpc/lattice/lattice_S65_n40.cfg | 48 - examples_hpc/lattice/lattice_S65_n80.cfg | 48 - examples_hpc/lattice/lattice_S9_n20.cfg | 48 - .../lattice/mesh/lattice_rectangular_n20.geo | 1193 ---------------- .../lattice/mesh/lattice_rectangular_n40.geo | 1193 ---------------- .../lattice/mesh/lattice_rectangular_n80.geo | 1193 ---------------- .../lattice/mesh/make_lattice_mesh.sh | 9 - examples_hpc/lattice/run_all.sh | 18 - examples_hpc/sym_hohlraum/sym_hohlraum.cfg | 15 +- include/common/config.hpp | 61 +- include/common/linalg.hpp | 35 + include/problems/lattice.hpp | 4 +- include/solvers/snsolver_hpc.hpp | 214 +++ include/solvers/solverbase.hpp | 4 +- include/toolboxes/reconstructor.hpp | 2 +- src/common/config.cpp | 21 +- src/common/io.cpp | 1 + src/common/mesh.cpp | 28 +- src/fluxes/upwindflux.cpp | 11 +- src/main.cpp | 21 +- src/problems/halflattice.cpp | 3 +- src/problems/lattice.cpp | 20 +- src/problems/linesource.cpp | 2 +- .../qgausslegendretensorized2D.cpp | 2 +- src/solvers/snsolver.cpp | 89 +- src/solvers/snsolver_hpc.cpp | 1262 +++++++++++++++++ src/solvers/solverbase.cpp | 13 +- src/toolboxes/reconstructor.cpp | 2 +- 44 files changed, 1689 insertions(+), 4593 deletions(-) delete mode 100644 examples_hpc/lattice/lattice_S19_n10.cfg delete mode 100644 examples_hpc/lattice/lattice_S19_n20.cfg delete mode 100644 examples_hpc/lattice/lattice_S19_n40.cfg delete mode 100644 examples_hpc/lattice/lattice_S19_n80.cfg delete mode 100644 examples_hpc/lattice/lattice_S29_n20.cfg delete mode 100644 examples_hpc/lattice/lattice_S29_n40.cfg delete mode 100644 examples_hpc/lattice/lattice_S29_n80.cfg delete mode 100644 examples_hpc/lattice/lattice_S3_n20.cfg delete mode 100644 examples_hpc/lattice/lattice_S41_n20.cfg delete mode 100644 examples_hpc/lattice/lattice_S41_n40.cfg delete mode 100644 examples_hpc/lattice/lattice_S41_n80.cfg delete mode 100644 examples_hpc/lattice/lattice_S53_n20.cfg delete mode 100644 examples_hpc/lattice/lattice_S53_n40.cfg delete mode 100644 examples_hpc/lattice/lattice_S53_n80.cfg delete mode 100644 examples_hpc/lattice/lattice_S65_n20.cfg delete mode 100644 examples_hpc/lattice/lattice_S65_n40.cfg delete mode 100644 examples_hpc/lattice/lattice_S65_n80.cfg delete mode 100644 examples_hpc/lattice/lattice_S9_n20.cfg delete mode 100644 examples_hpc/lattice/mesh/lattice_rectangular_n20.geo delete mode 100644 examples_hpc/lattice/mesh/lattice_rectangular_n40.geo delete mode 100644 examples_hpc/lattice/mesh/lattice_rectangular_n80.geo delete mode 100644 examples_hpc/lattice/mesh/make_lattice_mesh.sh delete mode 100644 examples_hpc/lattice/run_all.sh create mode 100644 include/common/linalg.hpp create mode 100644 include/solvers/snsolver_hpc.hpp create mode 100644 src/solvers/snsolver_hpc.cpp diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index c7c66e71..b300b81a 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -28,6 +28,8 @@ jobs: - name: Run unit tests run: | cd build + ./unit_tests + OMP_NUM_THREADS=1 ./unit_tests -r junit > unit_tests_report.xml - name: Code coverage diff --git a/examples_hpc/lattice/lattice_S19_n10.cfg b/examples_hpc/lattice/lattice_S19_n10.cfg deleted file mode 100644 index 1cdc14f0..00000000 --- a/examples_hpc/lattice/lattice_S19_n10.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.1024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_19_n10 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_19_n10 -MESH_FILE = mesh/lattice_n10.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 19 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S19_n20.cfg b/examples_hpc/lattice/lattice_S19_n20.cfg deleted file mode 100644 index 8b115f7b..00000000 --- a/examples_hpc/lattice/lattice_S19_n20.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.2024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_19_n20 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_19_n20 -MESH_FILE = mesh/lattice_n20.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 19 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S19_n40.cfg b/examples_hpc/lattice/lattice_S19_n40.cfg deleted file mode 100644 index e168fd3a..00000000 --- a/examples_hpc/lattice/lattice_S19_n40.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.2024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_19_n40 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_19_n40 -MESH_FILE = mesh/lattice_n40.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 19 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S19_n80.cfg b/examples_hpc/lattice/lattice_S19_n80.cfg deleted file mode 100644 index d6afd57a..00000000 --- a/examples_hpc/lattice/lattice_S19_n80.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.8024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_19_n80 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_19_n80 -MESH_FILE = mesh/lattice_n80.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 19 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S29_n20.cfg b/examples_hpc/lattice/lattice_S29_n20.cfg deleted file mode 100644 index 57ba1dea..00000000 --- a/examples_hpc/lattice/lattice_S29_n20.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.2024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_29_n20 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_29_n20 -MESH_FILE = mesh/lattice_n20.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 29 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S29_n40.cfg b/examples_hpc/lattice/lattice_S29_n40.cfg deleted file mode 100644 index 5bc3ce55..00000000 --- a/examples_hpc/lattice/lattice_S29_n40.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.4024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_29_n40 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_29_n40 -MESH_FILE = mesh/lattice_n40.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 29 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S29_n80.cfg b/examples_hpc/lattice/lattice_S29_n80.cfg deleted file mode 100644 index 756fcfa8..00000000 --- a/examples_hpc/lattice/lattice_S29_n80.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.8024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_29_n80 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_29_n80 -MESH_FILE = mesh/lattice_n80.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 29 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S3_n20.cfg b/examples_hpc/lattice/lattice_S3_n20.cfg deleted file mode 100644 index 169d6f20..00000000 --- a/examples_hpc/lattice/lattice_S3_n20.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.2024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_3_n20 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_3_n20 -MESH_FILE = mesh/lattice_n20.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 3 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S41_n20.cfg b/examples_hpc/lattice/lattice_S41_n20.cfg deleted file mode 100644 index 2829042f..00000000 --- a/examples_hpc/lattice/lattice_S41_n20.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.2024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_41_n20 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_41_n20 -MESH_FILE = mesh/lattice_n20.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 41 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S41_n40.cfg b/examples_hpc/lattice/lattice_S41_n40.cfg deleted file mode 100644 index 258e5c5f..00000000 --- a/examples_hpc/lattice/lattice_S41_n40.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.4024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_41_n40 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_41_n40 -MESH_FILE = mesh/lattice_n40.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 41 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S41_n80.cfg b/examples_hpc/lattice/lattice_S41_n80.cfg deleted file mode 100644 index dbb614b6..00000000 --- a/examples_hpc/lattice/lattice_S41_n80.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.8024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_41_n80 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_41_n80 -MESH_FILE = mesh/lattice_n80.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 41 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S53_n20.cfg b/examples_hpc/lattice/lattice_S53_n20.cfg deleted file mode 100644 index 3b91b11e..00000000 --- a/examples_hpc/lattice/lattice_S53_n20.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.2024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_53_n20 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_53_n20 -MESH_FILE = mesh/lattice_n20.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 53 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S53_n40.cfg b/examples_hpc/lattice/lattice_S53_n40.cfg deleted file mode 100644 index d2d4ad5d..00000000 --- a/examples_hpc/lattice/lattice_S53_n40.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.4024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_53_n40 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_53_n40 -MESH_FILE = mesh/lattice_n40.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 53 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S53_n80.cfg b/examples_hpc/lattice/lattice_S53_n80.cfg deleted file mode 100644 index 4cf390dc..00000000 --- a/examples_hpc/lattice/lattice_S53_n80.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.8024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_53_n80 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_53_n80 -MESH_FILE = mesh/lattice_n80.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 53 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S65_n20.cfg b/examples_hpc/lattice/lattice_S65_n20.cfg deleted file mode 100644 index b3613d0e..00000000 --- a/examples_hpc/lattice/lattice_S65_n20.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.2024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_65_n20 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_65_n20 -MESH_FILE = mesh/lattice_n20.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 65 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S65_n40.cfg b/examples_hpc/lattice/lattice_S65_n40.cfg deleted file mode 100644 index aa2645b4..00000000 --- a/examples_hpc/lattice/lattice_S65_n40.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.4024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_65_n40 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_65_n40 -MESH_FILE = mesh/lattice_n40.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 65 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S65_n80.cfg b/examples_hpc/lattice/lattice_S65_n80.cfg deleted file mode 100644 index adc3cf68..00000000 --- a/examples_hpc/lattice/lattice_S65_n80.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.8024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_65_n80 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_65_n80 -MESH_FILE = mesh/lattice_n80.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 65 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/lattice_S9_n20.cfg b/examples_hpc/lattice/lattice_S9_n20.cfg deleted file mode 100644 index 895b733f..00000000 --- a/examples_hpc/lattice/lattice_S9_n20.cfg +++ /dev/null @@ -1,48 +0,0 @@ -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Lattice Benchmarking File SN % -% Author % -% Date 08.01.2024 % -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% -% -% ----IO specification ---- -% -OUTPUT_DIR = result -OUTPUT_FILE = lattice_quad_order_9_n20 -LOG_DIR = result/logs -LOG_FILE = lattice_quad_order_9_n20 -MESH_FILE = mesh/lattice_n20.su2 -% -% --- Problem definition --- -% -PROBLEM = LATTICE -TIME_FINAL = 2.8 -SPATIAL_DIM = 3 -SOURCE_MAGNITUDE = 1.0 -% -% ---- Solver specifications ---- -% -% Solver type -SOLVER = SN_SOLVER -% CFL number -CFL_NUMBER = 0.9 -% Reconstruction order -RECONS_ORDER = 2 -% -% ---- Boundary Conditions ---- -% -BC_NEUMANN = ( void ) -% -% ----- Quadrature Specification --- -% -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 9 -% -% ----- Output ---- -% -VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 0 -SCREEN_OUTPUT = (ITER, MASS,RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION ) -SCREEN_OUTPUT_FREQUENCY = 100 -HISTORY_OUTPUT = (ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, MAX_PARTICLE_ABSORPTION) -HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/examples_hpc/lattice/mesh/lattice_rectangular_n20.geo b/examples_hpc/lattice/mesh/lattice_rectangular_n20.geo deleted file mode 100644 index 9721aecd..00000000 --- a/examples_hpc/lattice/mesh/lattice_rectangular_n20.geo +++ /dev/null @@ -1,1193 +0,0 @@ -cl_fine = 0.1; -n_recombine = 20; -n_prog = 1.1; -Point(1) = {-3.5, -3.5, 0, cl_fine}; -Point(2) = {3.5, -3.5, 0, cl_fine}; -Point(3) = {-3.5, 3.5, 0, cl_fine}; -Point(4) = {3.5, 3.5, 0, cl_fine}; - -// Inner grid -Point(5) = { -2.5, -2.5, 0, cl_fine }; -Point(6) = { -2.5, -2.0, 0, cl_fine }; -Point(7) = { -2.5, -1.5, 0, cl_fine }; -Point(8) = { -2.5, -1.0, 0, cl_fine }; -Point(9) = { -2.5, -0.5, 0, cl_fine }; -Point(10) = { -2.5, 0.0, 0, cl_fine }; -Point(11) = { -2.5, 0.5, 0, cl_fine }; -Point(12) = { -2.5, 1.0, 0, cl_fine }; -Point(13) = { -2.5, 1.5, 0, cl_fine }; -Point(14) = { -2.5, 2.0, 0, cl_fine }; -Point(15) = { -2.5, 2.5, 0, cl_fine }; -Point(16) = { -2.0, -2.5, 0, cl_fine }; -Point(17) = { -2.0, -2.0, 0, cl_fine }; -Point(18) = { -2.0, -1.5, 0, cl_fine }; -Point(19) = { -2.0, -1.0, 0, cl_fine }; -Point(20) = { -2.0, -0.5, 0, cl_fine }; -Point(21) = { -2.0, 0.0, 0, cl_fine }; -Point(22) = { -2.0, 0.5, 0, cl_fine }; -Point(23) = { -2.0, 1.0, 0, cl_fine }; -Point(24) = { -2.0, 1.5, 0, cl_fine }; -Point(25) = { -2.0, 2.0, 0, cl_fine }; -Point(26) = { -2.0, 2.5, 0, cl_fine }; -Point(27) = { -1.5, -2.5, 0, cl_fine }; -Point(28) = { -1.5, -2.0, 0, cl_fine }; -Point(29) = { -1.5, -1.5, 0, cl_fine }; -Point(30) = { -1.5, -1.0, 0, cl_fine }; -Point(31) = { -1.5, -0.5, 0, cl_fine }; -Point(32) = { -1.5, 0.0, 0, cl_fine }; -Point(33) = { -1.5, 0.5, 0, cl_fine }; -Point(34) = { -1.5, 1.0, 0, cl_fine }; -Point(35) = { -1.5, 1.5, 0, cl_fine }; -Point(36) = { -1.5, 2.0, 0, cl_fine }; -Point(37) = { -1.5, 2.5, 0, cl_fine }; -Point(38) = { -1.0, -2.5, 0, cl_fine }; -Point(39) = { -1.0, -2.0, 0, cl_fine }; -Point(40) = { -1.0, -1.5, 0, cl_fine }; -Point(41) = { -1.0, -1.0, 0, cl_fine }; -Point(42) = { -1.0, -0.5, 0, cl_fine }; -Point(43) = { -1.0, 0.0, 0, cl_fine }; -Point(44) = { -1.0, 0.5, 0, cl_fine }; -Point(45) = { -1.0, 1.0, 0, cl_fine }; -Point(46) = { -1.0, 1.5, 0, cl_fine }; -Point(47) = { -1.0, 2.0, 0, cl_fine }; -Point(48) = { -1.0, 2.5, 0, cl_fine }; -Point(49) = { -0.5, -2.5, 0, cl_fine }; -Point(50) = { -0.5, -2.0, 0, cl_fine }; -Point(51) = { -0.5, -1.5, 0, cl_fine }; -Point(52) = { -0.5, -1.0, 0, cl_fine }; -Point(53) = { -0.5, -0.5, 0, cl_fine }; -Point(54) = { -0.5, 0.0, 0, cl_fine }; -Point(55) = { -0.5, 0.5, 0, cl_fine }; -Point(56) = { -0.5, 1.0, 0, cl_fine }; -Point(57) = { -0.5, 1.5, 0, cl_fine }; -Point(58) = { -0.5, 2.0, 0, cl_fine }; -Point(59) = { -0.5, 2.5, 0, cl_fine }; -Point(60) = { 0.0, -2.5, 0, cl_fine }; -Point(61) = { 0.0, -2.0, 0, cl_fine }; -Point(62) = { 0.0, -1.5, 0, cl_fine }; -Point(63) = { 0.0, -1.0, 0, cl_fine }; -Point(64) = { 0.0, -0.5, 0, cl_fine }; -Point(65) = { 0.0, 0.0, 0, cl_fine }; -Point(66) = { 0.0, 0.5, 0, cl_fine }; -Point(67) = { 0.0, 1.0, 0, cl_fine }; -Point(68) = { 0.0, 1.5, 0, cl_fine }; -Point(69) = { 0.0, 2.0, 0, cl_fine }; -Point(70) = { 0.0, 2.5, 0, cl_fine }; -Point(71) = { 0.5, -2.5, 0, cl_fine }; -Point(72) = { 0.5, -2.0, 0, cl_fine }; -Point(73) = { 0.5, -1.5, 0, cl_fine }; -Point(74) = { 0.5, -1.0, 0, cl_fine }; -Point(75) = { 0.5, -0.5, 0, cl_fine }; -Point(76) = { 0.5, 0.0, 0, cl_fine }; -Point(77) = { 0.5, 0.5, 0, cl_fine }; -Point(78) = { 0.5, 1.0, 0, cl_fine }; -Point(79) = { 0.5, 1.5, 0, cl_fine }; -Point(80) = { 0.5, 2.0, 0, cl_fine }; -Point(81) = { 0.5, 2.5, 0, cl_fine }; -Point(82) = { 1.0, -2.5, 0, cl_fine }; -Point(83) = { 1.0, -2.0, 0, cl_fine }; -Point(84) = { 1.0, -1.5, 0, cl_fine }; -Point(85) = { 1.0, -1.0, 0, cl_fine }; -Point(86) = { 1.0, -0.5, 0, cl_fine }; -Point(87) = { 1.0, 0.0, 0, cl_fine }; -Point(88) = { 1.0, 0.5, 0, cl_fine }; -Point(89) = { 1.0, 1.0, 0, cl_fine }; -Point(90) = { 1.0, 1.5, 0, cl_fine }; -Point(91) = { 1.0, 2.0, 0, cl_fine }; -Point(92) = { 1.0, 2.5, 0, cl_fine }; -Point(93) = { 1.5, -2.5, 0, cl_fine }; -Point(94) = { 1.5, -2.0, 0, cl_fine }; -Point(95) = { 1.5, -1.5, 0, cl_fine }; -Point(96) = { 1.5, -1.0, 0, cl_fine }; -Point(97) = { 1.5, -0.5, 0, cl_fine }; -Point(98) = { 1.5, 0.0, 0, cl_fine }; -Point(99) = { 1.5, 0.5, 0, cl_fine }; -Point(100) = { 1.5, 1.0, 0, cl_fine }; -Point(101) = { 1.5, 1.5, 0, cl_fine }; -Point(102) = { 1.5, 2.0, 0, cl_fine }; -Point(103) = { 1.5, 2.5, 0, cl_fine }; -Point(104) = { 2.0, -2.5, 0, cl_fine }; -Point(105) = { 2.0, -2.0, 0, cl_fine }; -Point(106) = { 2.0, -1.5, 0, cl_fine }; -Point(107) = { 2.0, -1.0, 0, cl_fine }; -Point(108) = { 2.0, -0.5, 0, cl_fine }; -Point(109) = { 2.0, 0.0, 0, cl_fine }; -Point(110) = { 2.0, 0.5, 0, cl_fine }; -Point(111) = { 2.0, 1.0, 0, cl_fine }; -Point(112) = { 2.0, 1.5, 0, cl_fine }; -Point(113) = { 2.0, 2.0, 0, cl_fine }; -Point(114) = { 2.0, 2.5, 0, cl_fine }; -Point(115) = { 2.5, -2.5, 0, cl_fine }; -Point(116) = { 2.5, -2.0, 0, cl_fine }; -Point(117) = { 2.5, -1.5, 0, cl_fine }; -Point(118) = { 2.5, -1.0, 0, cl_fine }; -Point(119) = { 2.5, -0.5, 0, cl_fine }; -Point(120) = { 2.5, 0.0, 0, cl_fine }; -Point(121) = { 2.5, 0.5, 0, cl_fine }; -Point(122) = { 2.5, 1.0, 0, cl_fine }; -Point(123) = { 2.5, 1.5, 0, cl_fine }; -Point(124) = { 2.5, 2.0, 0, cl_fine }; -Point(125) = { 2.5, 2.5, 0, cl_fine }; - -// helper boundary points -Point(126) = { -2.5, -3.5, 0, cl_fine }; -Point(127) = { -2.0, -3.5, 0, cl_fine }; -Point(128) = { -1.5, -3.5, 0, cl_fine }; -Point(129) = { -1.0, -3.5, 0, cl_fine }; -Point(130) = { -0.5, -3.5, 0, cl_fine }; -Point(131) = { 0.0, -3.5, 0, cl_fine }; -Point(132) = { 0.5, -3.5, 0, cl_fine }; -Point(133) = { 1.0, -3.5, 0, cl_fine }; -Point(134) = { 1.5, -3.5, 0, cl_fine }; -Point(135) = { 2.0, -3.5, 0, cl_fine }; -Point(136) = { 2.5, -3.5, 0, cl_fine }; -Point(137) = { -2.5, 3.5, 0, cl_fine }; -Point(138) = { -2.0, 3.5, 0, cl_fine }; -Point(139) = { -1.5, 3.5, 0, cl_fine }; -Point(140) = { -1.0, 3.5, 0, cl_fine }; -Point(141) = { -0.5, 3.5, 0, cl_fine }; -Point(142) = { 0.0, 3.5, 0, cl_fine }; -Point(143) = { 0.5, 3.5, 0, cl_fine }; -Point(144) = { 1.0, 3.5, 0, cl_fine }; -Point(145) = { 1.5, 3.5, 0, cl_fine }; -Point(146) = { 2.0, 3.5, 0, cl_fine }; -Point(147) = { 2.5, 3.5, 0, cl_fine }; -Point(148) = { -3.5, -2.5, 0, cl_fine }; -Point(149) = { -3.5, -2.0, 0, cl_fine }; -Point(150) = { -3.5, -1.5, 0, cl_fine }; -Point(151) = { -3.5, -1.0, 0, cl_fine }; -Point(152) = { -3.5, -0.5, 0, cl_fine }; -Point(153) = { -3.5, 0.0, 0, cl_fine }; -Point(154) = { -3.5, 0.5, 0, cl_fine }; -Point(155) = { -3.5, 1.0, 0, cl_fine }; -Point(156) = { -3.5, 1.5, 0, cl_fine }; -Point(157) = { -3.5, 2.0, 0, cl_fine }; -Point(158) = { -3.5, 2.5, 0, cl_fine }; -Point(159) = { 3.5, -2.5, 0, cl_fine }; -Point(160) = { 3.5, -2.0, 0, cl_fine }; -Point(161) = { 3.5, -1.5, 0, cl_fine }; -Point(162) = { 3.5, -1.0, 0, cl_fine }; -Point(163) = { 3.5, -0.5, 0, cl_fine }; -Point(164) = { 3.5, 0.0, 0, cl_fine }; -Point(165) = { 3.5, 0.5, 0, cl_fine }; -Point(166) = { 3.5, 1.0, 0, cl_fine }; -Point(167) = { 3.5, 1.5, 0, cl_fine }; -Point(168) = { 3.5, 2.0, 0, cl_fine }; -Point(169) = { 3.5, 2.5, 0, cl_fine }; - -// Horizontal and vertical lines in inner grid -Line(5) = { 5, 16}; -Line(6) = { 6, 17}; -Line(7) = { 7, 18}; -Line(8) = { 8, 19}; -Line(9) = { 9, 20}; -Line(10) = { 10, 21}; -Line(11) = { 11, 22}; -Line(12) = { 12, 23}; -Line(13) = { 13, 24}; -Line(14) = { 14, 25}; -Line(15) = { 15, 26}; -Line(16) = { 27, 16}; -Line(17) = { 28, 17}; -Line(18) = { 29, 18}; -Line(19) = { 30, 19}; -Line(20) = { 31, 20}; -Line(21) = { 32, 21}; -Line(22) = { 33, 22}; -Line(23) = { 34, 23}; -Line(24) = { 35, 24}; -Line(25) = { 36, 25}; -Line(26) = { 37, 26}; -Line(27) = { 27, 38}; -Line(28) = { 28, 39}; -Line(29) = { 29, 40}; -Line(30) = { 30, 41}; -Line(31) = { 31, 42}; -Line(32) = { 32, 43}; -Line(33) = { 33, 44}; -Line(34) = { 34, 45}; -Line(35) = { 35, 46}; -Line(36) = { 36, 47}; -Line(37) = { 37, 48}; -Line(38) = { 49, 38}; -Line(39) = { 50, 39}; -Line(40) = { 51, 40}; -Line(41) = { 52, 41}; -Line(42) = { 53, 42}; -Line(43) = { 54, 43}; -Line(44) = { 55, 44}; -Line(45) = { 56, 45}; -Line(46) = { 57, 46}; -Line(47) = { 58, 47}; -Line(48) = { 59, 48}; -Line(49) = { 49, 60}; -Line(50) = { 50, 61}; -Line(51) = { 51, 62}; -Line(52) = { 52, 63}; -Line(53) = { 53, 64}; -Line(54) = { 54, 65}; -Line(55) = { 55, 66}; -Line(56) = { 56, 67}; -Line(57) = { 57, 68}; -Line(58) = { 58, 69}; -Line(59) = { 59, 70}; -Line(60) = { 71, 60}; -Line(61) = { 72, 61}; -Line(62) = { 73, 62}; -Line(63) = { 74, 63}; -Line(64) = { 75, 64}; -Line(65) = { 76, 65}; -Line(66) = { 77, 66}; -Line(67) = { 78, 67}; -Line(68) = { 79, 68}; -Line(69) = { 80, 69}; -Line(70) = { 81, 70}; -Line(71) = { 71, 82}; -Line(72) = { 72, 83}; -Line(73) = { 73, 84}; -Line(74) = { 74, 85}; -Line(75) = { 75, 86}; -Line(76) = { 76, 87}; -Line(77) = { 77, 88}; -Line(78) = { 78, 89}; -Line(79) = { 79, 90}; -Line(80) = { 80, 91}; -Line(81) = { 81, 92}; -Line(82) = { 93, 82}; -Line(83) = { 94, 83}; -Line(84) = { 95, 84}; -Line(85) = { 96, 85}; -Line(86) = { 97, 86}; -Line(87) = { 98, 87}; -Line(88) = { 99, 88}; -Line(89) = { 100, 89}; -Line(90) = { 101, 90}; -Line(91) = { 102, 91}; -Line(92) = { 103, 92}; -Line(93) = { 93, 104}; -Line(94) = { 94, 105}; -Line(95) = { 95, 106}; -Line(96) = { 96, 107}; -Line(97) = { 97, 108}; -Line(98) = { 98, 109}; -Line(99) = { 99, 110}; -Line(100) = { 100, 111}; -Line(101) = { 101, 112}; -Line(102) = { 102, 113}; -Line(103) = { 103, 114}; -Line(104) = { 115, 104}; -Line(105) = { 116, 105}; -Line(106) = { 117, 106}; -Line(107) = { 118, 107}; -Line(108) = { 119, 108}; -Line(109) = { 120, 109}; -Line(110) = { 121, 110}; -Line(111) = { 122, 111}; -Line(112) = { 123, 112}; -Line(113) = { 124, 113}; -Line(114) = { 125, 114}; -Line(126) = { 5, 6}; -Line(127) = { 7, 6}; -Line(128) = { 7, 8}; -Line(129) = { 9, 8}; -Line(130) = { 9, 10}; -Line(131) = { 11, 10}; -Line(132) = { 11, 12}; -Line(133) = { 13, 12}; -Line(134) = { 13, 14}; -Line(135) = { 15, 14}; -Line(136) = { 16, 17}; -Line(137) = { 18, 17}; -Line(138) = { 18, 19}; -Line(139) = { 20, 19}; -Line(140) = { 20, 21}; -Line(141) = { 22, 21}; -Line(142) = { 22, 23}; -Line(143) = { 24, 23}; -Line(144) = { 24, 25}; -Line(145) = { 26, 25}; - -Line(146) = { 27, 28}; -Line(147) = { 29, 28}; -Line(148) = { 29, 30}; -Line(149) = { 31, 30}; -Line(150) = { 31, 32}; -Line(151) = { 33, 32}; -Line(152) = { 33, 34}; -Line(153) = { 35, 34}; -Line(154) = { 35, 36}; -Line(155) = { 37, 36}; - -Line(156) = { 38, 39}; -Line(157) = { 40, 39}; -Line(158) = { 40, 41}; -Line(159) = { 42, 41}; -Line(160) = { 42, 43}; -Line(161) = { 44, 43}; -Line(162) = { 44, 45}; -Line(163) = { 46, 45}; -Line(164) = { 46, 47}; -Line(165) = { 48, 47}; - -Line(166) = { 49, 50}; -Line(167) = { 51, 50}; -Line(168) = { 51, 52}; -Line(169) = { 53, 52}; -Line(170) = { 53, 54}; -Line(171) = { 55, 54}; -Line(172) = { 55, 56}; -Line(173) = { 57, 56}; -Line(174) = { 57, 58}; -Line(175) = { 59, 58}; - -Line(176) = { 60, 61}; -Line(177) = { 62, 61}; -Line(178) = { 62, 63}; -Line(179) = { 64, 63}; -Line(180) = { 64, 65}; -Line(181) = { 66, 65}; -Line(182) = { 66, 67}; -Line(183) = { 68, 67}; -Line(184) = { 68, 69}; -Line(185) = { 70, 69}; - -Line(186) = { 71, 72}; -Line(187) = { 73, 72}; -Line(188) = { 73, 74}; -Line(189) = { 75, 74}; -Line(190) = { 75, 76}; -Line(191) = { 77, 76}; -Line(192) = { 77, 78}; -Line(193) = { 79, 78}; -Line(194) = { 79, 80}; -Line(195) = { 81, 80}; - -Line(196) = { 82, 83}; -Line(197) = { 84, 83}; -Line(198) = { 84, 85}; -Line(199) = { 86, 85}; -Line(200) = { 86, 87}; -Line(201) = { 88, 87}; -Line(202) = { 88, 89}; -Line(203) = { 90, 89}; -Line(204) = { 90, 91}; -Line(205) = { 92, 91}; - -Line(206) = { 93, 94}; -Line(207) = { 95, 94}; -Line(208) = { 95, 96}; -Line(209) = { 97, 96}; -Line(210) = { 97, 98}; -Line(211) = { 99, 98}; -Line(212) = { 99, 100}; -Line(213) = { 101, 100}; -Line(214) = { 101, 102}; -Line(215) = { 103, 102}; - - -Line(216) = { 104, 105}; -Line(217) = { 106, 105}; -Line(218) = { 106, 107}; -Line(219) = { 108, 107}; -Line(220) = { 108, 109}; -Line(221) = { 110, 109}; -Line(222) = { 110, 111}; -Line(223) = { 112, 111}; -Line(224) = { 112, 113}; -Line(225) = { 114, 113}; - - -Line(226) = { 115, 116}; -Line(227) = { 117, 116}; -Line(228) = { 117, 118}; -Line(229) = { 119, 118}; -Line(230) = { 119, 120}; -Line(231) = { 121, 120}; -Line(232) = { 121, 122}; -Line(233) = { 123, 122}; -Line(234) = { 123, 124}; -Line(235) = { 125, 124}; - - -// Define inner surfaces -//+ -Curve Loop(1) = { 5, 136, -6, -126}; -Plane Surface(1) ={1}; -Curve Loop(2) = { 6, -137, -7, 127}; -Plane Surface(2) ={2}; -Curve Loop(3) = { 7, 138, -8, -128}; -Plane Surface(3) ={3}; -Curve Loop(4) = { 8, -139, -9, 129}; -Plane Surface(4) ={4}; -Curve Loop(5) = { 9, 140, -10, -130}; -Plane Surface(5) ={5}; -Curve Loop(6) = { 10, -141, -11, 131}; -Plane Surface(6) ={6}; -Curve Loop(7) = { 11, 142, -12, -132}; -Plane Surface(7) ={7}; -Curve Loop(8) = { 12, -143, -13, 133}; -Plane Surface(8) ={8}; -Curve Loop(9) = { 13, 144, -14, -134}; -Plane Surface(9) ={9}; -Curve Loop(10) = { 14, -145, -15, 135}; -Plane Surface(10) ={10}; -Curve Loop(11) = { -16, 146, 17, -136}; -Plane Surface(11) ={11}; -Curve Loop(12) = { -17, -147, 18, 137}; -Plane Surface(12) ={12}; -Curve Loop(13) = { -18, 148, 19, -138}; -Plane Surface(13) ={13}; -Curve Loop(14) = { -19, -149, 20, 139}; -Plane Surface(14) ={14}; -Curve Loop(15) = { -20, 150, 21, -140}; -Plane Surface(15) ={15}; -Curve Loop(16) = { -21, -151, 22, 141}; -Plane Surface(16) ={16}; -Curve Loop(17) = { -22, 152, 23, -142}; -Plane Surface(17) ={17}; -Curve Loop(18) = { -23, -153, 24, 143}; -Plane Surface(18) ={18}; -Curve Loop(19) = {-24, 154, 25, -144}; -Plane Surface(19) ={19}; -Curve Loop(20) = { -25, -155, 26, 145}; -Plane Surface(20) ={20}; -Curve Loop(21) = { 27, 156, -28, -146}; -Plane Surface(21) ={21}; -Curve Loop(22) = { 28, -157, -29, 147}; -Plane Surface(22) ={22}; -Curve Loop(23) = { 29, 158, -30, -148}; -Plane Surface(23) ={23}; -Curve Loop(24) = { 30, -159, -31, 149}; -Plane Surface(24) ={24}; -Curve Loop(25) = { 31, 160, -32, -150}; -Plane Surface(25) ={25}; -Curve Loop(26) = { 32, -161, -33, 151}; -Plane Surface(26) ={26}; -Curve Loop(27) = { 33, 162, -34, -152}; -Plane Surface(27) ={27}; -Curve Loop(28) = { 34, -163, -35, 153}; -Plane Surface(28) ={28}; -Curve Loop(29) = { 35, 164, -36, -154}; -Plane Surface(29) ={29}; -Curve Loop(30) = { 36, -165, -37, 155}; -Plane Surface(30) ={30}; -Curve Loop(31) = { -38, 166, 39, -156}; -Plane Surface(31) ={31}; -Curve Loop(32) = { -39, -167, 40, 157}; -Plane Surface(32) ={32}; -Curve Loop(33) = { -40, 168, 41, -158}; -Plane Surface(33) ={33}; -Curve Loop(34) = { -41, -169, 42, 159}; -Plane Surface(34) ={34}; -Curve Loop(35) = { -42, 170, 43, -160}; -Plane Surface(35) ={35}; -Curve Loop(36) = { -43, -171, 44, 161}; -Plane Surface(36) ={36}; -Curve Loop(37) = { -44, 172, 45, -162}; -Plane Surface(37) ={37}; -Curve Loop(38) = { -45, -173, 46, 163}; -Plane Surface(38) ={38}; -Curve Loop(39) = { -46, 174, 47, -164}; -Plane Surface(39) ={39}; -Curve Loop(40) = { -47, -175, 48, 165}; -Plane Surface(40) ={40}; -Curve Loop(41) = { 49, 176, -50, -166}; -Plane Surface(41) ={41}; -Curve Loop(42) = { 50, -177, -51, 167}; -Plane Surface(42) ={42}; -Curve Loop(43) = { 51, 178, -52, -168}; -Plane Surface(43) ={43}; -Curve Loop(44) = { 52, -179, -53, 169}; -Plane Surface(44) ={44}; -Curve Loop(45) = { 53, 180, -54, -170}; -Plane Surface(45) ={45}; -Curve Loop(46) = { 54, -181, -55, 171}; -Plane Surface(46) ={46}; -Curve Loop(47) = { 55, 182, -56, -172}; -Plane Surface(47) ={47}; -Curve Loop(48) = { 56, -183, -57, 173}; -Plane Surface(48) ={48}; -Curve Loop(49) = { 57, 184, -58, -174}; -Plane Surface(49) ={49}; -Curve Loop(50) = { 58, -185, -59, 175}; -Plane Surface(50) ={50}; -Curve Loop(51) = { -60, 186, 61, -176}; -Plane Surface(51) ={51}; -Curve Loop(52) = { -61, -187, 62, 177}; -Plane Surface(52) ={52}; -Curve Loop(53) = { -62, 188, 63, -178}; -Plane Surface(53) ={53}; -Curve Loop(54) = { -63, -189, 64, 179}; -Plane Surface(54) ={54}; -Curve Loop(55) = { -64, 190, 65, -180}; -Plane Surface(55) ={55}; -Curve Loop(56) = { -65, -191, 66, 181}; -Plane Surface(56) ={56}; -Curve Loop(57) = { -66, 192, 67, -182}; -Plane Surface(57) ={57}; -Curve Loop(58) = { -67, -193, 68, 183}; -Plane Surface(58) ={58}; -Curve Loop(59) = { -68, 194, 69, -184}; -Plane Surface(59) ={59}; -Curve Loop(60) = { -69, -195, 70, 185}; -Plane Surface(60) ={60}; -Curve Loop(61) = { 71, 196, -72, -186}; -Plane Surface(61) ={61}; -Curve Loop(62) = { 72, -197, -73, 187}; -Plane Surface(62) ={62}; -Curve Loop(63) = { 73, 198, -74, -188}; -Plane Surface(63) ={63}; -Curve Loop(64) = { 74, -199, -75, 189}; -Plane Surface(64) ={64}; -Curve Loop(65) = { 75, 200, -76, -190}; -Plane Surface(65) ={65}; -Curve Loop(66) = { 76, -201, -77, 191}; -Plane Surface(66) ={66}; -Curve Loop(67) = { 77, 202, -78, -192}; -Plane Surface(67) ={67}; -Curve Loop(68) = { 78, -203, -79, 193}; -Plane Surface(68) ={68}; -Curve Loop(69) = { 79, 204, -80, -194}; -Plane Surface(69) ={69}; -Curve Loop(70) = { 80, -205, -81, 195}; -Plane Surface(70) ={70}; -Curve Loop(71) = { -82, 206, 83, -196}; -Plane Surface(71) ={71}; -Curve Loop(72) = { -83, -207, 84, 197}; -Plane Surface(72) ={72}; -Curve Loop(73) = { -84, 208, 85, -198}; -Plane Surface(73) ={73}; -Curve Loop(74) = { -85, -209, 86, 199}; -Plane Surface(74) ={74}; -Curve Loop(75) = { -86, 210, 87, -200}; -Plane Surface(75) ={75}; -Curve Loop(76) = { -87, -211, 88, 201}; -Plane Surface(76) ={76}; -Curve Loop(77) = { -88, 212, 89, -202}; -Plane Surface(77) ={77}; -Curve Loop(78) = { -89, -213, 90, 203}; -Plane Surface(78) ={78}; -Curve Loop(79) = { -90, 214, 91, -204}; -Plane Surface(79) ={79}; -Curve Loop(80) = { -91, -215, 92, 205}; -Plane Surface(80) ={80}; -Curve Loop(81) = { 93, 216, -94, -206}; -Plane Surface(81) ={81}; -Curve Loop(82) = { 94, -217, -95, 207}; -Plane Surface(82) ={82}; -Curve Loop(83) = { 95, 218, -96, -208}; -Plane Surface(83) ={83}; -Curve Loop(84) = { 96, -219, -97, 209}; -Plane Surface(84) ={84}; -Curve Loop(85) = { 97, 220, -98, -210}; -Plane Surface(85) ={85}; -Curve Loop(86) = { 98, -221, -99, 211}; -Plane Surface(86) ={86}; -Curve Loop(87) = { 99, 222, -100, -212}; -Plane Surface(87) ={87}; -Curve Loop(88) = { 100, -223, -101, 213}; -Plane Surface(88) ={88}; -Curve Loop(89) = { 101, 224, -102, -214}; -Plane Surface(89) ={89}; -Curve Loop(90) = { 102, -225, -103, 215}; -Plane Surface(90) ={90}; -Curve Loop(91) = { -104, 226, 105, -216}; -Plane Surface(91) ={91}; -Curve Loop(92) = { -105, -227, 106, 217}; -Plane Surface(92) ={92}; -Curve Loop(93) = { -106, 228, 107, -218}; -Plane Surface(93) ={93}; -Curve Loop(94) = { -107, -229, 108, 219}; -Plane Surface(94) ={94}; -Curve Loop(95) = { -108, 230, 109, -220}; -Plane Surface(95) ={95}; -Curve Loop(96) = { -109, -231, 110, 221}; -Plane Surface(96) ={96}; -Curve Loop(97) = { -110, 232, 111, -222}; -Plane Surface(97) ={97}; -Curve Loop(98) = { -111, -233, 112, 223}; -Plane Surface(98) ={98}; -Curve Loop(99) = { -112, 234, 113, -224}; -Plane Surface(99) ={99}; -Curve Loop(100) = { -113, -235, 114, 225}; -Plane Surface(100) ={100}; - - -// "Outside area" -//Curve Loop(101) = {1, 2, 3, 4}; -//+ -//Curve Loop(102) = {5, -16, 27, -38, 49, -60, 71, -82, 93, -104, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 114, -103, 92, -81, 70, -59, 48, -37, 26, -15, -135, -134, -133, -132, -131, -130, -129, -128, -127, -126}; -//+ -//Plane Surface(101) = {101, 102}; - -//+ -Transfinite Surface {1}; -Transfinite Surface {2}; -Transfinite Surface {3}; -Transfinite Surface {4}; -Transfinite Surface {5}; -Transfinite Surface {6}; -Transfinite Surface {7}; -Transfinite Surface {8}; -Transfinite Surface {9}; -Transfinite Surface {10}; -Transfinite Surface {11}; -Transfinite Surface {12}; -Transfinite Surface {13}; -Transfinite Surface {14}; -Transfinite Surface {15}; -Transfinite Surface {16}; -Transfinite Surface {17}; -Transfinite Surface {18}; -Transfinite Surface {19}; -Transfinite Surface {20}; -Transfinite Surface {21}; -Transfinite Surface {22}; -Transfinite Surface {23}; -Transfinite Surface {24}; -Transfinite Surface {25}; -Transfinite Surface {26}; -Transfinite Surface {27}; -Transfinite Surface {28}; -Transfinite Surface {29}; -Transfinite Surface {30}; -Transfinite Surface {31}; -Transfinite Surface {32}; -Transfinite Surface {33}; -Transfinite Surface {34}; -Transfinite Surface {35}; -Transfinite Surface {36}; -Transfinite Surface {37}; -Transfinite Surface {38}; -Transfinite Surface {39}; -Transfinite Surface {40}; -Transfinite Surface {41}; -Transfinite Surface {42}; -Transfinite Surface {43}; -Transfinite Surface {44}; -Transfinite Surface {45}; -Transfinite Surface {46}; -Transfinite Surface {47}; -Transfinite Surface {48}; -Transfinite Surface {49}; -Transfinite Surface {50}; -Transfinite Surface {51}; -Transfinite Surface {52}; -Transfinite Surface {53}; -Transfinite Surface {54}; -Transfinite Surface {55}; -Transfinite Surface {56}; -Transfinite Surface {57}; -Transfinite Surface {58}; -Transfinite Surface {59}; -Transfinite Surface {60}; -Transfinite Surface {61}; -Transfinite Surface {62}; -Transfinite Surface {63}; -Transfinite Surface {64}; -Transfinite Surface {65}; -Transfinite Surface {66}; -Transfinite Surface {67}; -Transfinite Surface {68}; -Transfinite Surface {69}; -Transfinite Surface {70}; -Transfinite Surface {71}; -Transfinite Surface {72}; -Transfinite Surface {73}; -Transfinite Surface {74}; -Transfinite Surface {75}; -Transfinite Surface {76}; -Transfinite Surface {77}; -Transfinite Surface {78}; -Transfinite Surface {79}; -Transfinite Surface {80}; -Transfinite Surface {81}; -Transfinite Surface {82}; -Transfinite Surface {83}; -Transfinite Surface {84}; -Transfinite Surface {85}; -Transfinite Surface {86}; -Transfinite Surface {87}; -Transfinite Surface {88}; -Transfinite Surface {89}; -Transfinite Surface {90}; -Transfinite Surface {91}; -Transfinite Surface {92}; -Transfinite Surface {93}; -Transfinite Surface {94}; -Transfinite Surface {95}; -Transfinite Surface {96}; -Transfinite Surface {97}; -Transfinite Surface {98}; -Transfinite Surface {99}; -Transfinite Surface {100}; -//+ -Transfinite Curve {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103} = n_recombine Using Progression n_prog; -// add outer perimeter with half as many cells and no Progression -Transfinite Curve {104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15} = n_recombine / 4 Using Progression 1; -//+ -Transfinite Curve { 127, 137, 147, 157, 167, 177, 187, 197, 207, 217, 227, 128, 138, 148, 158, 168, 178, 188, 198, 208, 218, 228, 129, 139, 149, 159, 169, 179, 189, 199, 209, 219, 229, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 231, 132, 142, 152, 162, 172, 182, 192, 202, 212, 222, 232, 133, 143, 153, 163, 173, 183, 193, 203, 213, 223, 233, 134, 144, 154, 164, 174, 184, 194, 204, 214, 224, 234} = n_recombine Using Progression n_prog; -// add outer perimeter with half as many cells and no Progression -Transfinite Curve {126, 136, 146, 156, 166, 176, 186, 196, 206, 216, 226, 135, 145, 155, 165, 175, 185, 195, 205, 215, 225, 235} = n_recombine / 4 Using Progression 1; -//+ -Line(236) = {1, 126}; -//+ -Line(237) = {126, 127}; -//+ -Line(238) = {127, 128}; -//+ -Line(239) = {128, 129}; -//+ -Line(240) = {129, 130}; -//+ -Line(241) = {130, 131}; -//+ -Line(242) = {131, 132}; -//+ -Line(243) = {132, 133}; -//+ -Line(244) = {133, 134}; -//+ -Line(245) = {134, 135}; -//+ -Line(246) = {135, 136}; -//+ -Line(247) = {136, 2}; -//+ -Line(248) = {2, 159}; -//+ -Line(249) = {159, 160}; -//+ -Line(250) = {160, 161}; -//+ -Line(251) = {161, 162}; -//+ -Line(252) = {162, 163}; -//+ -Line(253) = {163, 164}; -//+ -Line(254) = {164, 165}; -//+ -Line(255) = {165, 166}; -//+ -Line(256) = {166, 167}; -//+ -Line(257) = {167, 168}; -//+ -Line(258) = {168, 169}; -//+ -Line(259) = {169, 4}; -//+ -Line(260) = {4, 147}; -//+ -Line(261) = {147, 146}; -//+ -Line(262) = {146, 145}; -//+ -Line(263) = {145, 144}; -//+ -Line(264) = {144, 143}; -//+ -Line(265) = {143, 142}; -//+ -Line(266) = {142, 141}; -//+ -Line(267) = {141, 140}; -//+ -Line(268) = {140, 139}; -//+ -Line(269) = {139, 138}; -//+ -Line(270) = {138, 137}; -//+ -Line(271) = {137, 3}; -//+ -Line(272) = {3, 158}; -//+ -Line(273) = {158, 157}; -//+ -Line(274) = {157, 156}; -//+ -Line(275) = {156, 155}; -//+ -Line(276) = {155, 154}; -//+ -Line(277) = {154, 153}; -//+ -Line(278) = {153, 152}; -//+ -Line(279) = {152, 151}; -//+ -Line(280) = {151, 150}; -//+ -Line(281) = {150, 149}; -//+ -Line(282) = {149, 148}; -//+ -Line(283) = {148, 1}; -//+ -Line(284) = {126, 5}; -//+ -Line(285) = {127, 16}; -//+ -Line(286) = {128, 27}; -//+ -Line(287) = {129, 38}; -//+ -Line(288) = {130, 49}; -//+ -Line(289) = {131, 60}; -//+ -Line(290) = {132, 71}; -//+ -Line(291) = {133, 82}; -//+ -Line(292) = {134, 93}; -//+ -Line(293) = {135, 104}; -//+ -Line(294) = {136, 115}; -//+ -Line(295) = {159, 115}; -//+ -Line(296) = {160, 116}; -//+ -Line(297) = {161, 117}; -//+ -Line(298) = {162, 118}; -//+ -Line(299) = {163, 119}; -//+ -Line(300) = {164, 120}; -//+ -Line(301) = {165, 121}; -//+ -Line(302) = {166, 122}; -//+ -Line(303) = {167, 123}; -//+ -Line(304) = {168, 124}; -//+ -Line(305) = {169, 125}; -//+ -Line(306) = {147, 125}; -//+ -Line(307) = {146, 114}; -//+ -Line(308) = {145, 103}; -//+ -Line(309) = {144, 92}; -//+ -Line(310) = {143, 81}; -//+ -Line(311) = {142, 70}; -//+ -Line(312) = {141, 59}; -//+ -Line(313) = {140, 48}; -//+ -Line(314) = {139, 37}; -//+ -Line(315) = {138, 26}; -//+ -Line(316) = {137, 15}; -//+ -Line(317) = {158, 15}; -//+ -Line(318) = {157, 14}; -//+ -Line(319) = {156, 13}; -//+ -Line(320) = {155, 12}; -//+ -Line(321) = {154, 11}; -//+ -Line(322) = {153, 10}; -//+ -Line(323) = {152, 9}; -//+ -Line(324) = {151, 8}; -//+ -Line(325) = {150, 7}; -//+ -Line(326) = {149, 6}; -//+ -Line(327) = {148, 5}; -//+ -Curve Loop(103) = {236, 284, -327, 283}; -//+ -Plane Surface(102) = {103}; -//+ -Curve Loop(104) = {237, 285, -5, -284}; -//+ -Plane Surface(103) = {104}; -//+ -Curve Loop(105) = {238, 286, 16, -285}; -//+ -Plane Surface(104) = {105}; -//+ -Curve Loop(106) = {239, 287, -27, -286}; -//+ -Plane Surface(105) = {106}; -//+ -Curve Loop(107) = {240, 288, 38, -287}; -//+ -Plane Surface(106) = {107}; -//+ -Curve Loop(108) = {241, 289, -49, -288}; -//+ -Plane Surface(107) = {108}; -//+ -Curve Loop(109) = {242, 290, 60, -289}; -//+ -Plane Surface(108) = {109}; -//+ -Curve Loop(110) = {243, 291, -71, -290}; -//+ -Plane Surface(109) = {110}; -//+ -Curve Loop(111) = {244, 292, 82, -291}; -//+ -Plane Surface(110) = {111}; -//+ -Curve Loop(112) = {245, 293, -93, -292}; -//+ -Plane Surface(111) = {112}; -//+ -Curve Loop(113) = {246, 294, 104, -293}; -//+ -Plane Surface(112) = {113}; -//+ -Curve Loop(114) = {247, 248, 295, -294}; -//+ -Plane Surface(113) = {114}; -//+ -Curve Loop(115) = {249, 296, -226, -295}; -//+ -Plane Surface(114) = {115}; -//+ -Curve Loop(116) = {250, 297, 227, -296}; -//+ -Plane Surface(115) = {116}; -//+ -Curve Loop(117) = {251, 298, -228, -297}; -//+ -Plane Surface(116) = {117}; -//+ -Curve Loop(118) = {252, 299, 229, -298}; -//+ -Plane Surface(117) = {118}; -//+ -Curve Loop(119) = {253, 300, -230, -299}; -//+ -Plane Surface(118) = {119}; -//+ -Curve Loop(120) = {254, 301, 231, -300}; -//+ -Plane Surface(119) = {120}; -//+ -Curve Loop(121) = {255, 302, -232, -301}; -//+ -Plane Surface(120) = {121}; -//+ -Curve Loop(122) = {256, 303, 233, -302}; -//+ -Plane Surface(121) = {122}; -//+ -Curve Loop(123) = {257, 304, -234, -303}; -//+ -Plane Surface(122) = {123}; -//+ -Curve Loop(124) = {258, 305, 235, -304}; -//+ -Plane Surface(123) = {124}; -//+ -Curve Loop(125) = {259, 260, 306, -305}; -//+ -Plane Surface(124) = {125}; -//+ -Curve Loop(126) = {261, 307, -114, -306}; -//+ -Plane Surface(125) = {126}; -//+ -Curve Loop(127) = {262, 308, 103, -307}; -//+ -Plane Surface(126) = {127}; -//+ -Curve Loop(128) = {263, 309, -92, -308}; -//+ -Plane Surface(127) = {128}; -//+ -Curve Loop(129) = {264, 310, 81, -309}; -//+ -Plane Surface(128) = {129}; -//+ -Curve Loop(130) = {265, 311, -70, -310}; -//+ -Plane Surface(129) = {130}; -//+ -Curve Loop(131) = {266, 312, 59, -311}; -//+ -Plane Surface(130) = {131}; -//+ -Curve Loop(132) = {267, 313, -48, -312}; -//+ -Plane Surface(131) = {132}; -//+ -Curve Loop(133) = {268, 314, 37, -313}; -//+ -Plane Surface(132) = {133}; -//+ -Curve Loop(134) = {269, 315, -26, -314}; -//+ -Plane Surface(133) = {134}; -//+ -Curve Loop(135) = {270, 316, 15, -315}; -//+ -Plane Surface(134) = {135}; -//+ -Curve Loop(136) = {271, 272, 317, -316}; -//+ -Plane Surface(135) = {136}; -//+ -Curve Loop(137) = {273, 318, -135, -317}; -//+ -Plane Surface(136) = {137}; -//+ -Curve Loop(138) = {274, 319, 134, -318}; -//+ -Plane Surface(137) = {138}; -//+ -Curve Loop(139) = {275, 320, -133, -319}; -//+ -Plane Surface(138) = {139}; -//+ -Curve Loop(140) = {276, 321, 132, -320}; -//+ -Plane Surface(139) = {140}; -//+ -Curve Loop(141) = {277, 322, -131, -321}; -//+ -Plane Surface(140) = {141}; -//+ -Curve Loop(142) = {278, 323, 130, -322}; -//+ -Plane Surface(141) = {142}; -//+ -Curve Loop(143) = {279, 324, -129, -323}; -//+ -Plane Surface(142) = {143}; -//+ -Curve Loop(144) = {280, 325, 128, -324}; -//+ -Plane Surface(143) = {144}; -//+ -Curve Loop(145) = {281, 326, -127, -325}; -//+ -Plane Surface(144) = {145}; -//+ -Curve Loop(146) = {282, 327, 126, -326}; -//+ -Plane Surface(145) = {146}; -//+ -//+ -Transfinite Surface {102}; -//+ -Transfinite Surface {103}; -//+ -Transfinite Surface {104}; -//+ -Transfinite Surface {105}; -//+ -Transfinite Surface {106}; -//+ -Transfinite Surface {107}; -//+ -Transfinite Surface {108}; -//+ -Transfinite Surface {109}; -//+ -Transfinite Surface {110}; -//+ -Transfinite Surface {111}; -//+ -Transfinite Surface {112}; -//+ -Transfinite Surface {113}; -//+ -Transfinite Surface {114}; -//+ -Transfinite Surface {115}; -//+ -Transfinite Surface {116}; -//+ -Transfinite Surface {117}; -//+ -Transfinite Surface {118}; -//+ -Transfinite Surface {119}; -//+ -Transfinite Surface {120}; -//+ -Transfinite Surface {121}; -//+ -Transfinite Surface {122}; -//+ -Transfinite Surface {123}; -//+ -Transfinite Surface {124}; -//+ -Transfinite Surface {125}; -//+ -Transfinite Surface {126}; -//+ -Transfinite Surface {127}; -//+ -Transfinite Surface {128}; -//+ -Transfinite Surface {129}; -//+ -Transfinite Surface {130}; -//+ -Transfinite Surface {131}; -//+ -Transfinite Surface {132}; -//+ -Transfinite Surface {133}; -//+ -Transfinite Surface {134}; -//+ -Transfinite Surface {135}; -//+ -Transfinite Surface {136}; -//+ -Transfinite Surface {137}; -//+ -Transfinite Surface {138}; -//+ -Transfinite Surface {139}; -//+ -Transfinite Surface {140}; -//+ -Transfinite Surface {141}; -//+ -Transfinite Surface {142}; -//+ -Transfinite Surface {143}; -//+ -Transfinite Surface {144}; -//+ -Transfinite Surface {145}; -//+ -Transfinite Curve { 238, 239, 240, 241, 242, 243, 244, 245, 250, 251, 252, 253, 254, 255, 256, 257, 262, 263, 264, 265, 266, 267, 268, 269, 274, 275, 276, 277, 278, 279, 280, 281} = n_recombine Using Progression 1; -Transfinite Curve {237,246,249, 258,261,270,273,282} = n_recombine / 4 Using Progression 1; - - -Physical Curve("void",328) = {236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283}; - -Recombine Surface "*"; -// Define meshing options -//Mesh.Algorithm = 6; // Specify meshing algorithm (e.g., Delaunay) -//Mesh.ElementOrder = 1; // Specify element order -// Generate the mesh -//Mesh 2; \ No newline at end of file diff --git a/examples_hpc/lattice/mesh/lattice_rectangular_n40.geo b/examples_hpc/lattice/mesh/lattice_rectangular_n40.geo deleted file mode 100644 index ccc4e41f..00000000 --- a/examples_hpc/lattice/mesh/lattice_rectangular_n40.geo +++ /dev/null @@ -1,1193 +0,0 @@ -cl_fine = 0.1; -n_recombine = 40; -n_prog = 1.1; -Point(1) = {-3.5, -3.5, 0, cl_fine}; -Point(2) = {3.5, -3.5, 0, cl_fine}; -Point(3) = {-3.5, 3.5, 0, cl_fine}; -Point(4) = {3.5, 3.5, 0, cl_fine}; - -// Inner grid -Point(5) = { -2.5, -2.5, 0, cl_fine }; -Point(6) = { -2.5, -2.0, 0, cl_fine }; -Point(7) = { -2.5, -1.5, 0, cl_fine }; -Point(8) = { -2.5, -1.0, 0, cl_fine }; -Point(9) = { -2.5, -0.5, 0, cl_fine }; -Point(10) = { -2.5, 0.0, 0, cl_fine }; -Point(11) = { -2.5, 0.5, 0, cl_fine }; -Point(12) = { -2.5, 1.0, 0, cl_fine }; -Point(13) = { -2.5, 1.5, 0, cl_fine }; -Point(14) = { -2.5, 2.0, 0, cl_fine }; -Point(15) = { -2.5, 2.5, 0, cl_fine }; -Point(16) = { -2.0, -2.5, 0, cl_fine }; -Point(17) = { -2.0, -2.0, 0, cl_fine }; -Point(18) = { -2.0, -1.5, 0, cl_fine }; -Point(19) = { -2.0, -1.0, 0, cl_fine }; -Point(20) = { -2.0, -0.5, 0, cl_fine }; -Point(21) = { -2.0, 0.0, 0, cl_fine }; -Point(22) = { -2.0, 0.5, 0, cl_fine }; -Point(23) = { -2.0, 1.0, 0, cl_fine }; -Point(24) = { -2.0, 1.5, 0, cl_fine }; -Point(25) = { -2.0, 2.0, 0, cl_fine }; -Point(26) = { -2.0, 2.5, 0, cl_fine }; -Point(27) = { -1.5, -2.5, 0, cl_fine }; -Point(28) = { -1.5, -2.0, 0, cl_fine }; -Point(29) = { -1.5, -1.5, 0, cl_fine }; -Point(30) = { -1.5, -1.0, 0, cl_fine }; -Point(31) = { -1.5, -0.5, 0, cl_fine }; -Point(32) = { -1.5, 0.0, 0, cl_fine }; -Point(33) = { -1.5, 0.5, 0, cl_fine }; -Point(34) = { -1.5, 1.0, 0, cl_fine }; -Point(35) = { -1.5, 1.5, 0, cl_fine }; -Point(36) = { -1.5, 2.0, 0, cl_fine }; -Point(37) = { -1.5, 2.5, 0, cl_fine }; -Point(38) = { -1.0, -2.5, 0, cl_fine }; -Point(39) = { -1.0, -2.0, 0, cl_fine }; -Point(40) = { -1.0, -1.5, 0, cl_fine }; -Point(41) = { -1.0, -1.0, 0, cl_fine }; -Point(42) = { -1.0, -0.5, 0, cl_fine }; -Point(43) = { -1.0, 0.0, 0, cl_fine }; -Point(44) = { -1.0, 0.5, 0, cl_fine }; -Point(45) = { -1.0, 1.0, 0, cl_fine }; -Point(46) = { -1.0, 1.5, 0, cl_fine }; -Point(47) = { -1.0, 2.0, 0, cl_fine }; -Point(48) = { -1.0, 2.5, 0, cl_fine }; -Point(49) = { -0.5, -2.5, 0, cl_fine }; -Point(50) = { -0.5, -2.0, 0, cl_fine }; -Point(51) = { -0.5, -1.5, 0, cl_fine }; -Point(52) = { -0.5, -1.0, 0, cl_fine }; -Point(53) = { -0.5, -0.5, 0, cl_fine }; -Point(54) = { -0.5, 0.0, 0, cl_fine }; -Point(55) = { -0.5, 0.5, 0, cl_fine }; -Point(56) = { -0.5, 1.0, 0, cl_fine }; -Point(57) = { -0.5, 1.5, 0, cl_fine }; -Point(58) = { -0.5, 2.0, 0, cl_fine }; -Point(59) = { -0.5, 2.5, 0, cl_fine }; -Point(60) = { 0.0, -2.5, 0, cl_fine }; -Point(61) = { 0.0, -2.0, 0, cl_fine }; -Point(62) = { 0.0, -1.5, 0, cl_fine }; -Point(63) = { 0.0, -1.0, 0, cl_fine }; -Point(64) = { 0.0, -0.5, 0, cl_fine }; -Point(65) = { 0.0, 0.0, 0, cl_fine }; -Point(66) = { 0.0, 0.5, 0, cl_fine }; -Point(67) = { 0.0, 1.0, 0, cl_fine }; -Point(68) = { 0.0, 1.5, 0, cl_fine }; -Point(69) = { 0.0, 2.0, 0, cl_fine }; -Point(70) = { 0.0, 2.5, 0, cl_fine }; -Point(71) = { 0.5, -2.5, 0, cl_fine }; -Point(72) = { 0.5, -2.0, 0, cl_fine }; -Point(73) = { 0.5, -1.5, 0, cl_fine }; -Point(74) = { 0.5, -1.0, 0, cl_fine }; -Point(75) = { 0.5, -0.5, 0, cl_fine }; -Point(76) = { 0.5, 0.0, 0, cl_fine }; -Point(77) = { 0.5, 0.5, 0, cl_fine }; -Point(78) = { 0.5, 1.0, 0, cl_fine }; -Point(79) = { 0.5, 1.5, 0, cl_fine }; -Point(80) = { 0.5, 2.0, 0, cl_fine }; -Point(81) = { 0.5, 2.5, 0, cl_fine }; -Point(82) = { 1.0, -2.5, 0, cl_fine }; -Point(83) = { 1.0, -2.0, 0, cl_fine }; -Point(84) = { 1.0, -1.5, 0, cl_fine }; -Point(85) = { 1.0, -1.0, 0, cl_fine }; -Point(86) = { 1.0, -0.5, 0, cl_fine }; -Point(87) = { 1.0, 0.0, 0, cl_fine }; -Point(88) = { 1.0, 0.5, 0, cl_fine }; -Point(89) = { 1.0, 1.0, 0, cl_fine }; -Point(90) = { 1.0, 1.5, 0, cl_fine }; -Point(91) = { 1.0, 2.0, 0, cl_fine }; -Point(92) = { 1.0, 2.5, 0, cl_fine }; -Point(93) = { 1.5, -2.5, 0, cl_fine }; -Point(94) = { 1.5, -2.0, 0, cl_fine }; -Point(95) = { 1.5, -1.5, 0, cl_fine }; -Point(96) = { 1.5, -1.0, 0, cl_fine }; -Point(97) = { 1.5, -0.5, 0, cl_fine }; -Point(98) = { 1.5, 0.0, 0, cl_fine }; -Point(99) = { 1.5, 0.5, 0, cl_fine }; -Point(100) = { 1.5, 1.0, 0, cl_fine }; -Point(101) = { 1.5, 1.5, 0, cl_fine }; -Point(102) = { 1.5, 2.0, 0, cl_fine }; -Point(103) = { 1.5, 2.5, 0, cl_fine }; -Point(104) = { 2.0, -2.5, 0, cl_fine }; -Point(105) = { 2.0, -2.0, 0, cl_fine }; -Point(106) = { 2.0, -1.5, 0, cl_fine }; -Point(107) = { 2.0, -1.0, 0, cl_fine }; -Point(108) = { 2.0, -0.5, 0, cl_fine }; -Point(109) = { 2.0, 0.0, 0, cl_fine }; -Point(110) = { 2.0, 0.5, 0, cl_fine }; -Point(111) = { 2.0, 1.0, 0, cl_fine }; -Point(112) = { 2.0, 1.5, 0, cl_fine }; -Point(113) = { 2.0, 2.0, 0, cl_fine }; -Point(114) = { 2.0, 2.5, 0, cl_fine }; -Point(115) = { 2.5, -2.5, 0, cl_fine }; -Point(116) = { 2.5, -2.0, 0, cl_fine }; -Point(117) = { 2.5, -1.5, 0, cl_fine }; -Point(118) = { 2.5, -1.0, 0, cl_fine }; -Point(119) = { 2.5, -0.5, 0, cl_fine }; -Point(120) = { 2.5, 0.0, 0, cl_fine }; -Point(121) = { 2.5, 0.5, 0, cl_fine }; -Point(122) = { 2.5, 1.0, 0, cl_fine }; -Point(123) = { 2.5, 1.5, 0, cl_fine }; -Point(124) = { 2.5, 2.0, 0, cl_fine }; -Point(125) = { 2.5, 2.5, 0, cl_fine }; - -// helper boundary points -Point(126) = { -2.5, -3.5, 0, cl_fine }; -Point(127) = { -2.0, -3.5, 0, cl_fine }; -Point(128) = { -1.5, -3.5, 0, cl_fine }; -Point(129) = { -1.0, -3.5, 0, cl_fine }; -Point(130) = { -0.5, -3.5, 0, cl_fine }; -Point(131) = { 0.0, -3.5, 0, cl_fine }; -Point(132) = { 0.5, -3.5, 0, cl_fine }; -Point(133) = { 1.0, -3.5, 0, cl_fine }; -Point(134) = { 1.5, -3.5, 0, cl_fine }; -Point(135) = { 2.0, -3.5, 0, cl_fine }; -Point(136) = { 2.5, -3.5, 0, cl_fine }; -Point(137) = { -2.5, 3.5, 0, cl_fine }; -Point(138) = { -2.0, 3.5, 0, cl_fine }; -Point(139) = { -1.5, 3.5, 0, cl_fine }; -Point(140) = { -1.0, 3.5, 0, cl_fine }; -Point(141) = { -0.5, 3.5, 0, cl_fine }; -Point(142) = { 0.0, 3.5, 0, cl_fine }; -Point(143) = { 0.5, 3.5, 0, cl_fine }; -Point(144) = { 1.0, 3.5, 0, cl_fine }; -Point(145) = { 1.5, 3.5, 0, cl_fine }; -Point(146) = { 2.0, 3.5, 0, cl_fine }; -Point(147) = { 2.5, 3.5, 0, cl_fine }; -Point(148) = { -3.5, -2.5, 0, cl_fine }; -Point(149) = { -3.5, -2.0, 0, cl_fine }; -Point(150) = { -3.5, -1.5, 0, cl_fine }; -Point(151) = { -3.5, -1.0, 0, cl_fine }; -Point(152) = { -3.5, -0.5, 0, cl_fine }; -Point(153) = { -3.5, 0.0, 0, cl_fine }; -Point(154) = { -3.5, 0.5, 0, cl_fine }; -Point(155) = { -3.5, 1.0, 0, cl_fine }; -Point(156) = { -3.5, 1.5, 0, cl_fine }; -Point(157) = { -3.5, 2.0, 0, cl_fine }; -Point(158) = { -3.5, 2.5, 0, cl_fine }; -Point(159) = { 3.5, -2.5, 0, cl_fine }; -Point(160) = { 3.5, -2.0, 0, cl_fine }; -Point(161) = { 3.5, -1.5, 0, cl_fine }; -Point(162) = { 3.5, -1.0, 0, cl_fine }; -Point(163) = { 3.5, -0.5, 0, cl_fine }; -Point(164) = { 3.5, 0.0, 0, cl_fine }; -Point(165) = { 3.5, 0.5, 0, cl_fine }; -Point(166) = { 3.5, 1.0, 0, cl_fine }; -Point(167) = { 3.5, 1.5, 0, cl_fine }; -Point(168) = { 3.5, 2.0, 0, cl_fine }; -Point(169) = { 3.5, 2.5, 0, cl_fine }; - -// Horizontal and vertical lines in inner grid -Line(5) = { 5, 16}; -Line(6) = { 6, 17}; -Line(7) = { 7, 18}; -Line(8) = { 8, 19}; -Line(9) = { 9, 20}; -Line(10) = { 10, 21}; -Line(11) = { 11, 22}; -Line(12) = { 12, 23}; -Line(13) = { 13, 24}; -Line(14) = { 14, 25}; -Line(15) = { 15, 26}; -Line(16) = { 27, 16}; -Line(17) = { 28, 17}; -Line(18) = { 29, 18}; -Line(19) = { 30, 19}; -Line(20) = { 31, 20}; -Line(21) = { 32, 21}; -Line(22) = { 33, 22}; -Line(23) = { 34, 23}; -Line(24) = { 35, 24}; -Line(25) = { 36, 25}; -Line(26) = { 37, 26}; -Line(27) = { 27, 38}; -Line(28) = { 28, 39}; -Line(29) = { 29, 40}; -Line(30) = { 30, 41}; -Line(31) = { 31, 42}; -Line(32) = { 32, 43}; -Line(33) = { 33, 44}; -Line(34) = { 34, 45}; -Line(35) = { 35, 46}; -Line(36) = { 36, 47}; -Line(37) = { 37, 48}; -Line(38) = { 49, 38}; -Line(39) = { 50, 39}; -Line(40) = { 51, 40}; -Line(41) = { 52, 41}; -Line(42) = { 53, 42}; -Line(43) = { 54, 43}; -Line(44) = { 55, 44}; -Line(45) = { 56, 45}; -Line(46) = { 57, 46}; -Line(47) = { 58, 47}; -Line(48) = { 59, 48}; -Line(49) = { 49, 60}; -Line(50) = { 50, 61}; -Line(51) = { 51, 62}; -Line(52) = { 52, 63}; -Line(53) = { 53, 64}; -Line(54) = { 54, 65}; -Line(55) = { 55, 66}; -Line(56) = { 56, 67}; -Line(57) = { 57, 68}; -Line(58) = { 58, 69}; -Line(59) = { 59, 70}; -Line(60) = { 71, 60}; -Line(61) = { 72, 61}; -Line(62) = { 73, 62}; -Line(63) = { 74, 63}; -Line(64) = { 75, 64}; -Line(65) = { 76, 65}; -Line(66) = { 77, 66}; -Line(67) = { 78, 67}; -Line(68) = { 79, 68}; -Line(69) = { 80, 69}; -Line(70) = { 81, 70}; -Line(71) = { 71, 82}; -Line(72) = { 72, 83}; -Line(73) = { 73, 84}; -Line(74) = { 74, 85}; -Line(75) = { 75, 86}; -Line(76) = { 76, 87}; -Line(77) = { 77, 88}; -Line(78) = { 78, 89}; -Line(79) = { 79, 90}; -Line(80) = { 80, 91}; -Line(81) = { 81, 92}; -Line(82) = { 93, 82}; -Line(83) = { 94, 83}; -Line(84) = { 95, 84}; -Line(85) = { 96, 85}; -Line(86) = { 97, 86}; -Line(87) = { 98, 87}; -Line(88) = { 99, 88}; -Line(89) = { 100, 89}; -Line(90) = { 101, 90}; -Line(91) = { 102, 91}; -Line(92) = { 103, 92}; -Line(93) = { 93, 104}; -Line(94) = { 94, 105}; -Line(95) = { 95, 106}; -Line(96) = { 96, 107}; -Line(97) = { 97, 108}; -Line(98) = { 98, 109}; -Line(99) = { 99, 110}; -Line(100) = { 100, 111}; -Line(101) = { 101, 112}; -Line(102) = { 102, 113}; -Line(103) = { 103, 114}; -Line(104) = { 115, 104}; -Line(105) = { 116, 105}; -Line(106) = { 117, 106}; -Line(107) = { 118, 107}; -Line(108) = { 119, 108}; -Line(109) = { 120, 109}; -Line(110) = { 121, 110}; -Line(111) = { 122, 111}; -Line(112) = { 123, 112}; -Line(113) = { 124, 113}; -Line(114) = { 125, 114}; -Line(126) = { 5, 6}; -Line(127) = { 7, 6}; -Line(128) = { 7, 8}; -Line(129) = { 9, 8}; -Line(130) = { 9, 10}; -Line(131) = { 11, 10}; -Line(132) = { 11, 12}; -Line(133) = { 13, 12}; -Line(134) = { 13, 14}; -Line(135) = { 15, 14}; -Line(136) = { 16, 17}; -Line(137) = { 18, 17}; -Line(138) = { 18, 19}; -Line(139) = { 20, 19}; -Line(140) = { 20, 21}; -Line(141) = { 22, 21}; -Line(142) = { 22, 23}; -Line(143) = { 24, 23}; -Line(144) = { 24, 25}; -Line(145) = { 26, 25}; - -Line(146) = { 27, 28}; -Line(147) = { 29, 28}; -Line(148) = { 29, 30}; -Line(149) = { 31, 30}; -Line(150) = { 31, 32}; -Line(151) = { 33, 32}; -Line(152) = { 33, 34}; -Line(153) = { 35, 34}; -Line(154) = { 35, 36}; -Line(155) = { 37, 36}; - -Line(156) = { 38, 39}; -Line(157) = { 40, 39}; -Line(158) = { 40, 41}; -Line(159) = { 42, 41}; -Line(160) = { 42, 43}; -Line(161) = { 44, 43}; -Line(162) = { 44, 45}; -Line(163) = { 46, 45}; -Line(164) = { 46, 47}; -Line(165) = { 48, 47}; - -Line(166) = { 49, 50}; -Line(167) = { 51, 50}; -Line(168) = { 51, 52}; -Line(169) = { 53, 52}; -Line(170) = { 53, 54}; -Line(171) = { 55, 54}; -Line(172) = { 55, 56}; -Line(173) = { 57, 56}; -Line(174) = { 57, 58}; -Line(175) = { 59, 58}; - -Line(176) = { 60, 61}; -Line(177) = { 62, 61}; -Line(178) = { 62, 63}; -Line(179) = { 64, 63}; -Line(180) = { 64, 65}; -Line(181) = { 66, 65}; -Line(182) = { 66, 67}; -Line(183) = { 68, 67}; -Line(184) = { 68, 69}; -Line(185) = { 70, 69}; - -Line(186) = { 71, 72}; -Line(187) = { 73, 72}; -Line(188) = { 73, 74}; -Line(189) = { 75, 74}; -Line(190) = { 75, 76}; -Line(191) = { 77, 76}; -Line(192) = { 77, 78}; -Line(193) = { 79, 78}; -Line(194) = { 79, 80}; -Line(195) = { 81, 80}; - -Line(196) = { 82, 83}; -Line(197) = { 84, 83}; -Line(198) = { 84, 85}; -Line(199) = { 86, 85}; -Line(200) = { 86, 87}; -Line(201) = { 88, 87}; -Line(202) = { 88, 89}; -Line(203) = { 90, 89}; -Line(204) = { 90, 91}; -Line(205) = { 92, 91}; - -Line(206) = { 93, 94}; -Line(207) = { 95, 94}; -Line(208) = { 95, 96}; -Line(209) = { 97, 96}; -Line(210) = { 97, 98}; -Line(211) = { 99, 98}; -Line(212) = { 99, 100}; -Line(213) = { 101, 100}; -Line(214) = { 101, 102}; -Line(215) = { 103, 102}; - - -Line(216) = { 104, 105}; -Line(217) = { 106, 105}; -Line(218) = { 106, 107}; -Line(219) = { 108, 107}; -Line(220) = { 108, 109}; -Line(221) = { 110, 109}; -Line(222) = { 110, 111}; -Line(223) = { 112, 111}; -Line(224) = { 112, 113}; -Line(225) = { 114, 113}; - - -Line(226) = { 115, 116}; -Line(227) = { 117, 116}; -Line(228) = { 117, 118}; -Line(229) = { 119, 118}; -Line(230) = { 119, 120}; -Line(231) = { 121, 120}; -Line(232) = { 121, 122}; -Line(233) = { 123, 122}; -Line(234) = { 123, 124}; -Line(235) = { 125, 124}; - - -// Define inner surfaces -//+ -Curve Loop(1) = { 5, 136, -6, -126}; -Plane Surface(1) ={1}; -Curve Loop(2) = { 6, -137, -7, 127}; -Plane Surface(2) ={2}; -Curve Loop(3) = { 7, 138, -8, -128}; -Plane Surface(3) ={3}; -Curve Loop(4) = { 8, -139, -9, 129}; -Plane Surface(4) ={4}; -Curve Loop(5) = { 9, 140, -10, -130}; -Plane Surface(5) ={5}; -Curve Loop(6) = { 10, -141, -11, 131}; -Plane Surface(6) ={6}; -Curve Loop(7) = { 11, 142, -12, -132}; -Plane Surface(7) ={7}; -Curve Loop(8) = { 12, -143, -13, 133}; -Plane Surface(8) ={8}; -Curve Loop(9) = { 13, 144, -14, -134}; -Plane Surface(9) ={9}; -Curve Loop(10) = { 14, -145, -15, 135}; -Plane Surface(10) ={10}; -Curve Loop(11) = { -16, 146, 17, -136}; -Plane Surface(11) ={11}; -Curve Loop(12) = { -17, -147, 18, 137}; -Plane Surface(12) ={12}; -Curve Loop(13) = { -18, 148, 19, -138}; -Plane Surface(13) ={13}; -Curve Loop(14) = { -19, -149, 20, 139}; -Plane Surface(14) ={14}; -Curve Loop(15) = { -20, 150, 21, -140}; -Plane Surface(15) ={15}; -Curve Loop(16) = { -21, -151, 22, 141}; -Plane Surface(16) ={16}; -Curve Loop(17) = { -22, 152, 23, -142}; -Plane Surface(17) ={17}; -Curve Loop(18) = { -23, -153, 24, 143}; -Plane Surface(18) ={18}; -Curve Loop(19) = {-24, 154, 25, -144}; -Plane Surface(19) ={19}; -Curve Loop(20) = { -25, -155, 26, 145}; -Plane Surface(20) ={20}; -Curve Loop(21) = { 27, 156, -28, -146}; -Plane Surface(21) ={21}; -Curve Loop(22) = { 28, -157, -29, 147}; -Plane Surface(22) ={22}; -Curve Loop(23) = { 29, 158, -30, -148}; -Plane Surface(23) ={23}; -Curve Loop(24) = { 30, -159, -31, 149}; -Plane Surface(24) ={24}; -Curve Loop(25) = { 31, 160, -32, -150}; -Plane Surface(25) ={25}; -Curve Loop(26) = { 32, -161, -33, 151}; -Plane Surface(26) ={26}; -Curve Loop(27) = { 33, 162, -34, -152}; -Plane Surface(27) ={27}; -Curve Loop(28) = { 34, -163, -35, 153}; -Plane Surface(28) ={28}; -Curve Loop(29) = { 35, 164, -36, -154}; -Plane Surface(29) ={29}; -Curve Loop(30) = { 36, -165, -37, 155}; -Plane Surface(30) ={30}; -Curve Loop(31) = { -38, 166, 39, -156}; -Plane Surface(31) ={31}; -Curve Loop(32) = { -39, -167, 40, 157}; -Plane Surface(32) ={32}; -Curve Loop(33) = { -40, 168, 41, -158}; -Plane Surface(33) ={33}; -Curve Loop(34) = { -41, -169, 42, 159}; -Plane Surface(34) ={34}; -Curve Loop(35) = { -42, 170, 43, -160}; -Plane Surface(35) ={35}; -Curve Loop(36) = { -43, -171, 44, 161}; -Plane Surface(36) ={36}; -Curve Loop(37) = { -44, 172, 45, -162}; -Plane Surface(37) ={37}; -Curve Loop(38) = { -45, -173, 46, 163}; -Plane Surface(38) ={38}; -Curve Loop(39) = { -46, 174, 47, -164}; -Plane Surface(39) ={39}; -Curve Loop(40) = { -47, -175, 48, 165}; -Plane Surface(40) ={40}; -Curve Loop(41) = { 49, 176, -50, -166}; -Plane Surface(41) ={41}; -Curve Loop(42) = { 50, -177, -51, 167}; -Plane Surface(42) ={42}; -Curve Loop(43) = { 51, 178, -52, -168}; -Plane Surface(43) ={43}; -Curve Loop(44) = { 52, -179, -53, 169}; -Plane Surface(44) ={44}; -Curve Loop(45) = { 53, 180, -54, -170}; -Plane Surface(45) ={45}; -Curve Loop(46) = { 54, -181, -55, 171}; -Plane Surface(46) ={46}; -Curve Loop(47) = { 55, 182, -56, -172}; -Plane Surface(47) ={47}; -Curve Loop(48) = { 56, -183, -57, 173}; -Plane Surface(48) ={48}; -Curve Loop(49) = { 57, 184, -58, -174}; -Plane Surface(49) ={49}; -Curve Loop(50) = { 58, -185, -59, 175}; -Plane Surface(50) ={50}; -Curve Loop(51) = { -60, 186, 61, -176}; -Plane Surface(51) ={51}; -Curve Loop(52) = { -61, -187, 62, 177}; -Plane Surface(52) ={52}; -Curve Loop(53) = { -62, 188, 63, -178}; -Plane Surface(53) ={53}; -Curve Loop(54) = { -63, -189, 64, 179}; -Plane Surface(54) ={54}; -Curve Loop(55) = { -64, 190, 65, -180}; -Plane Surface(55) ={55}; -Curve Loop(56) = { -65, -191, 66, 181}; -Plane Surface(56) ={56}; -Curve Loop(57) = { -66, 192, 67, -182}; -Plane Surface(57) ={57}; -Curve Loop(58) = { -67, -193, 68, 183}; -Plane Surface(58) ={58}; -Curve Loop(59) = { -68, 194, 69, -184}; -Plane Surface(59) ={59}; -Curve Loop(60) = { -69, -195, 70, 185}; -Plane Surface(60) ={60}; -Curve Loop(61) = { 71, 196, -72, -186}; -Plane Surface(61) ={61}; -Curve Loop(62) = { 72, -197, -73, 187}; -Plane Surface(62) ={62}; -Curve Loop(63) = { 73, 198, -74, -188}; -Plane Surface(63) ={63}; -Curve Loop(64) = { 74, -199, -75, 189}; -Plane Surface(64) ={64}; -Curve Loop(65) = { 75, 200, -76, -190}; -Plane Surface(65) ={65}; -Curve Loop(66) = { 76, -201, -77, 191}; -Plane Surface(66) ={66}; -Curve Loop(67) = { 77, 202, -78, -192}; -Plane Surface(67) ={67}; -Curve Loop(68) = { 78, -203, -79, 193}; -Plane Surface(68) ={68}; -Curve Loop(69) = { 79, 204, -80, -194}; -Plane Surface(69) ={69}; -Curve Loop(70) = { 80, -205, -81, 195}; -Plane Surface(70) ={70}; -Curve Loop(71) = { -82, 206, 83, -196}; -Plane Surface(71) ={71}; -Curve Loop(72) = { -83, -207, 84, 197}; -Plane Surface(72) ={72}; -Curve Loop(73) = { -84, 208, 85, -198}; -Plane Surface(73) ={73}; -Curve Loop(74) = { -85, -209, 86, 199}; -Plane Surface(74) ={74}; -Curve Loop(75) = { -86, 210, 87, -200}; -Plane Surface(75) ={75}; -Curve Loop(76) = { -87, -211, 88, 201}; -Plane Surface(76) ={76}; -Curve Loop(77) = { -88, 212, 89, -202}; -Plane Surface(77) ={77}; -Curve Loop(78) = { -89, -213, 90, 203}; -Plane Surface(78) ={78}; -Curve Loop(79) = { -90, 214, 91, -204}; -Plane Surface(79) ={79}; -Curve Loop(80) = { -91, -215, 92, 205}; -Plane Surface(80) ={80}; -Curve Loop(81) = { 93, 216, -94, -206}; -Plane Surface(81) ={81}; -Curve Loop(82) = { 94, -217, -95, 207}; -Plane Surface(82) ={82}; -Curve Loop(83) = { 95, 218, -96, -208}; -Plane Surface(83) ={83}; -Curve Loop(84) = { 96, -219, -97, 209}; -Plane Surface(84) ={84}; -Curve Loop(85) = { 97, 220, -98, -210}; -Plane Surface(85) ={85}; -Curve Loop(86) = { 98, -221, -99, 211}; -Plane Surface(86) ={86}; -Curve Loop(87) = { 99, 222, -100, -212}; -Plane Surface(87) ={87}; -Curve Loop(88) = { 100, -223, -101, 213}; -Plane Surface(88) ={88}; -Curve Loop(89) = { 101, 224, -102, -214}; -Plane Surface(89) ={89}; -Curve Loop(90) = { 102, -225, -103, 215}; -Plane Surface(90) ={90}; -Curve Loop(91) = { -104, 226, 105, -216}; -Plane Surface(91) ={91}; -Curve Loop(92) = { -105, -227, 106, 217}; -Plane Surface(92) ={92}; -Curve Loop(93) = { -106, 228, 107, -218}; -Plane Surface(93) ={93}; -Curve Loop(94) = { -107, -229, 108, 219}; -Plane Surface(94) ={94}; -Curve Loop(95) = { -108, 230, 109, -220}; -Plane Surface(95) ={95}; -Curve Loop(96) = { -109, -231, 110, 221}; -Plane Surface(96) ={96}; -Curve Loop(97) = { -110, 232, 111, -222}; -Plane Surface(97) ={97}; -Curve Loop(98) = { -111, -233, 112, 223}; -Plane Surface(98) ={98}; -Curve Loop(99) = { -112, 234, 113, -224}; -Plane Surface(99) ={99}; -Curve Loop(100) = { -113, -235, 114, 225}; -Plane Surface(100) ={100}; - - -// "Outside area" -//Curve Loop(101) = {1, 2, 3, 4}; -//+ -//Curve Loop(102) = {5, -16, 27, -38, 49, -60, 71, -82, 93, -104, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 114, -103, 92, -81, 70, -59, 48, -37, 26, -15, -135, -134, -133, -132, -131, -130, -129, -128, -127, -126}; -//+ -//Plane Surface(101) = {101, 102}; - -//+ -Transfinite Surface {1}; -Transfinite Surface {2}; -Transfinite Surface {3}; -Transfinite Surface {4}; -Transfinite Surface {5}; -Transfinite Surface {6}; -Transfinite Surface {7}; -Transfinite Surface {8}; -Transfinite Surface {9}; -Transfinite Surface {10}; -Transfinite Surface {11}; -Transfinite Surface {12}; -Transfinite Surface {13}; -Transfinite Surface {14}; -Transfinite Surface {15}; -Transfinite Surface {16}; -Transfinite Surface {17}; -Transfinite Surface {18}; -Transfinite Surface {19}; -Transfinite Surface {20}; -Transfinite Surface {21}; -Transfinite Surface {22}; -Transfinite Surface {23}; -Transfinite Surface {24}; -Transfinite Surface {25}; -Transfinite Surface {26}; -Transfinite Surface {27}; -Transfinite Surface {28}; -Transfinite Surface {29}; -Transfinite Surface {30}; -Transfinite Surface {31}; -Transfinite Surface {32}; -Transfinite Surface {33}; -Transfinite Surface {34}; -Transfinite Surface {35}; -Transfinite Surface {36}; -Transfinite Surface {37}; -Transfinite Surface {38}; -Transfinite Surface {39}; -Transfinite Surface {40}; -Transfinite Surface {41}; -Transfinite Surface {42}; -Transfinite Surface {43}; -Transfinite Surface {44}; -Transfinite Surface {45}; -Transfinite Surface {46}; -Transfinite Surface {47}; -Transfinite Surface {48}; -Transfinite Surface {49}; -Transfinite Surface {50}; -Transfinite Surface {51}; -Transfinite Surface {52}; -Transfinite Surface {53}; -Transfinite Surface {54}; -Transfinite Surface {55}; -Transfinite Surface {56}; -Transfinite Surface {57}; -Transfinite Surface {58}; -Transfinite Surface {59}; -Transfinite Surface {60}; -Transfinite Surface {61}; -Transfinite Surface {62}; -Transfinite Surface {63}; -Transfinite Surface {64}; -Transfinite Surface {65}; -Transfinite Surface {66}; -Transfinite Surface {67}; -Transfinite Surface {68}; -Transfinite Surface {69}; -Transfinite Surface {70}; -Transfinite Surface {71}; -Transfinite Surface {72}; -Transfinite Surface {73}; -Transfinite Surface {74}; -Transfinite Surface {75}; -Transfinite Surface {76}; -Transfinite Surface {77}; -Transfinite Surface {78}; -Transfinite Surface {79}; -Transfinite Surface {80}; -Transfinite Surface {81}; -Transfinite Surface {82}; -Transfinite Surface {83}; -Transfinite Surface {84}; -Transfinite Surface {85}; -Transfinite Surface {86}; -Transfinite Surface {87}; -Transfinite Surface {88}; -Transfinite Surface {89}; -Transfinite Surface {90}; -Transfinite Surface {91}; -Transfinite Surface {92}; -Transfinite Surface {93}; -Transfinite Surface {94}; -Transfinite Surface {95}; -Transfinite Surface {96}; -Transfinite Surface {97}; -Transfinite Surface {98}; -Transfinite Surface {99}; -Transfinite Surface {100}; -//+ -Transfinite Curve {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103} = n_recombine Using Progression n_prog; -// add outer perimeter with half as many cells and no Progression -Transfinite Curve {104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15} = n_recombine / 4 Using Progression 1; -//+ -Transfinite Curve { 127, 137, 147, 157, 167, 177, 187, 197, 207, 217, 227, 128, 138, 148, 158, 168, 178, 188, 198, 208, 218, 228, 129, 139, 149, 159, 169, 179, 189, 199, 209, 219, 229, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 231, 132, 142, 152, 162, 172, 182, 192, 202, 212, 222, 232, 133, 143, 153, 163, 173, 183, 193, 203, 213, 223, 233, 134, 144, 154, 164, 174, 184, 194, 204, 214, 224, 234} = n_recombine Using Progression n_prog; -// add outer perimeter with half as many cells and no Progression -Transfinite Curve {126, 136, 146, 156, 166, 176, 186, 196, 206, 216, 226, 135, 145, 155, 165, 175, 185, 195, 205, 215, 225, 235} = n_recombine / 4 Using Progression 1; -//+ -Line(236) = {1, 126}; -//+ -Line(237) = {126, 127}; -//+ -Line(238) = {127, 128}; -//+ -Line(239) = {128, 129}; -//+ -Line(240) = {129, 130}; -//+ -Line(241) = {130, 131}; -//+ -Line(242) = {131, 132}; -//+ -Line(243) = {132, 133}; -//+ -Line(244) = {133, 134}; -//+ -Line(245) = {134, 135}; -//+ -Line(246) = {135, 136}; -//+ -Line(247) = {136, 2}; -//+ -Line(248) = {2, 159}; -//+ -Line(249) = {159, 160}; -//+ -Line(250) = {160, 161}; -//+ -Line(251) = {161, 162}; -//+ -Line(252) = {162, 163}; -//+ -Line(253) = {163, 164}; -//+ -Line(254) = {164, 165}; -//+ -Line(255) = {165, 166}; -//+ -Line(256) = {166, 167}; -//+ -Line(257) = {167, 168}; -//+ -Line(258) = {168, 169}; -//+ -Line(259) = {169, 4}; -//+ -Line(260) = {4, 147}; -//+ -Line(261) = {147, 146}; -//+ -Line(262) = {146, 145}; -//+ -Line(263) = {145, 144}; -//+ -Line(264) = {144, 143}; -//+ -Line(265) = {143, 142}; -//+ -Line(266) = {142, 141}; -//+ -Line(267) = {141, 140}; -//+ -Line(268) = {140, 139}; -//+ -Line(269) = {139, 138}; -//+ -Line(270) = {138, 137}; -//+ -Line(271) = {137, 3}; -//+ -Line(272) = {3, 158}; -//+ -Line(273) = {158, 157}; -//+ -Line(274) = {157, 156}; -//+ -Line(275) = {156, 155}; -//+ -Line(276) = {155, 154}; -//+ -Line(277) = {154, 153}; -//+ -Line(278) = {153, 152}; -//+ -Line(279) = {152, 151}; -//+ -Line(280) = {151, 150}; -//+ -Line(281) = {150, 149}; -//+ -Line(282) = {149, 148}; -//+ -Line(283) = {148, 1}; -//+ -Line(284) = {126, 5}; -//+ -Line(285) = {127, 16}; -//+ -Line(286) = {128, 27}; -//+ -Line(287) = {129, 38}; -//+ -Line(288) = {130, 49}; -//+ -Line(289) = {131, 60}; -//+ -Line(290) = {132, 71}; -//+ -Line(291) = {133, 82}; -//+ -Line(292) = {134, 93}; -//+ -Line(293) = {135, 104}; -//+ -Line(294) = {136, 115}; -//+ -Line(295) = {159, 115}; -//+ -Line(296) = {160, 116}; -//+ -Line(297) = {161, 117}; -//+ -Line(298) = {162, 118}; -//+ -Line(299) = {163, 119}; -//+ -Line(300) = {164, 120}; -//+ -Line(301) = {165, 121}; -//+ -Line(302) = {166, 122}; -//+ -Line(303) = {167, 123}; -//+ -Line(304) = {168, 124}; -//+ -Line(305) = {169, 125}; -//+ -Line(306) = {147, 125}; -//+ -Line(307) = {146, 114}; -//+ -Line(308) = {145, 103}; -//+ -Line(309) = {144, 92}; -//+ -Line(310) = {143, 81}; -//+ -Line(311) = {142, 70}; -//+ -Line(312) = {141, 59}; -//+ -Line(313) = {140, 48}; -//+ -Line(314) = {139, 37}; -//+ -Line(315) = {138, 26}; -//+ -Line(316) = {137, 15}; -//+ -Line(317) = {158, 15}; -//+ -Line(318) = {157, 14}; -//+ -Line(319) = {156, 13}; -//+ -Line(320) = {155, 12}; -//+ -Line(321) = {154, 11}; -//+ -Line(322) = {153, 10}; -//+ -Line(323) = {152, 9}; -//+ -Line(324) = {151, 8}; -//+ -Line(325) = {150, 7}; -//+ -Line(326) = {149, 6}; -//+ -Line(327) = {148, 5}; -//+ -Curve Loop(103) = {236, 284, -327, 283}; -//+ -Plane Surface(102) = {103}; -//+ -Curve Loop(104) = {237, 285, -5, -284}; -//+ -Plane Surface(103) = {104}; -//+ -Curve Loop(105) = {238, 286, 16, -285}; -//+ -Plane Surface(104) = {105}; -//+ -Curve Loop(106) = {239, 287, -27, -286}; -//+ -Plane Surface(105) = {106}; -//+ -Curve Loop(107) = {240, 288, 38, -287}; -//+ -Plane Surface(106) = {107}; -//+ -Curve Loop(108) = {241, 289, -49, -288}; -//+ -Plane Surface(107) = {108}; -//+ -Curve Loop(109) = {242, 290, 60, -289}; -//+ -Plane Surface(108) = {109}; -//+ -Curve Loop(110) = {243, 291, -71, -290}; -//+ -Plane Surface(109) = {110}; -//+ -Curve Loop(111) = {244, 292, 82, -291}; -//+ -Plane Surface(110) = {111}; -//+ -Curve Loop(112) = {245, 293, -93, -292}; -//+ -Plane Surface(111) = {112}; -//+ -Curve Loop(113) = {246, 294, 104, -293}; -//+ -Plane Surface(112) = {113}; -//+ -Curve Loop(114) = {247, 248, 295, -294}; -//+ -Plane Surface(113) = {114}; -//+ -Curve Loop(115) = {249, 296, -226, -295}; -//+ -Plane Surface(114) = {115}; -//+ -Curve Loop(116) = {250, 297, 227, -296}; -//+ -Plane Surface(115) = {116}; -//+ -Curve Loop(117) = {251, 298, -228, -297}; -//+ -Plane Surface(116) = {117}; -//+ -Curve Loop(118) = {252, 299, 229, -298}; -//+ -Plane Surface(117) = {118}; -//+ -Curve Loop(119) = {253, 300, -230, -299}; -//+ -Plane Surface(118) = {119}; -//+ -Curve Loop(120) = {254, 301, 231, -300}; -//+ -Plane Surface(119) = {120}; -//+ -Curve Loop(121) = {255, 302, -232, -301}; -//+ -Plane Surface(120) = {121}; -//+ -Curve Loop(122) = {256, 303, 233, -302}; -//+ -Plane Surface(121) = {122}; -//+ -Curve Loop(123) = {257, 304, -234, -303}; -//+ -Plane Surface(122) = {123}; -//+ -Curve Loop(124) = {258, 305, 235, -304}; -//+ -Plane Surface(123) = {124}; -//+ -Curve Loop(125) = {259, 260, 306, -305}; -//+ -Plane Surface(124) = {125}; -//+ -Curve Loop(126) = {261, 307, -114, -306}; -//+ -Plane Surface(125) = {126}; -//+ -Curve Loop(127) = {262, 308, 103, -307}; -//+ -Plane Surface(126) = {127}; -//+ -Curve Loop(128) = {263, 309, -92, -308}; -//+ -Plane Surface(127) = {128}; -//+ -Curve Loop(129) = {264, 310, 81, -309}; -//+ -Plane Surface(128) = {129}; -//+ -Curve Loop(130) = {265, 311, -70, -310}; -//+ -Plane Surface(129) = {130}; -//+ -Curve Loop(131) = {266, 312, 59, -311}; -//+ -Plane Surface(130) = {131}; -//+ -Curve Loop(132) = {267, 313, -48, -312}; -//+ -Plane Surface(131) = {132}; -//+ -Curve Loop(133) = {268, 314, 37, -313}; -//+ -Plane Surface(132) = {133}; -//+ -Curve Loop(134) = {269, 315, -26, -314}; -//+ -Plane Surface(133) = {134}; -//+ -Curve Loop(135) = {270, 316, 15, -315}; -//+ -Plane Surface(134) = {135}; -//+ -Curve Loop(136) = {271, 272, 317, -316}; -//+ -Plane Surface(135) = {136}; -//+ -Curve Loop(137) = {273, 318, -135, -317}; -//+ -Plane Surface(136) = {137}; -//+ -Curve Loop(138) = {274, 319, 134, -318}; -//+ -Plane Surface(137) = {138}; -//+ -Curve Loop(139) = {275, 320, -133, -319}; -//+ -Plane Surface(138) = {139}; -//+ -Curve Loop(140) = {276, 321, 132, -320}; -//+ -Plane Surface(139) = {140}; -//+ -Curve Loop(141) = {277, 322, -131, -321}; -//+ -Plane Surface(140) = {141}; -//+ -Curve Loop(142) = {278, 323, 130, -322}; -//+ -Plane Surface(141) = {142}; -//+ -Curve Loop(143) = {279, 324, -129, -323}; -//+ -Plane Surface(142) = {143}; -//+ -Curve Loop(144) = {280, 325, 128, -324}; -//+ -Plane Surface(143) = {144}; -//+ -Curve Loop(145) = {281, 326, -127, -325}; -//+ -Plane Surface(144) = {145}; -//+ -Curve Loop(146) = {282, 327, 126, -326}; -//+ -Plane Surface(145) = {146}; -//+ -//+ -Transfinite Surface {102}; -//+ -Transfinite Surface {103}; -//+ -Transfinite Surface {104}; -//+ -Transfinite Surface {105}; -//+ -Transfinite Surface {106}; -//+ -Transfinite Surface {107}; -//+ -Transfinite Surface {108}; -//+ -Transfinite Surface {109}; -//+ -Transfinite Surface {110}; -//+ -Transfinite Surface {111}; -//+ -Transfinite Surface {112}; -//+ -Transfinite Surface {113}; -//+ -Transfinite Surface {114}; -//+ -Transfinite Surface {115}; -//+ -Transfinite Surface {116}; -//+ -Transfinite Surface {117}; -//+ -Transfinite Surface {118}; -//+ -Transfinite Surface {119}; -//+ -Transfinite Surface {120}; -//+ -Transfinite Surface {121}; -//+ -Transfinite Surface {122}; -//+ -Transfinite Surface {123}; -//+ -Transfinite Surface {124}; -//+ -Transfinite Surface {125}; -//+ -Transfinite Surface {126}; -//+ -Transfinite Surface {127}; -//+ -Transfinite Surface {128}; -//+ -Transfinite Surface {129}; -//+ -Transfinite Surface {130}; -//+ -Transfinite Surface {131}; -//+ -Transfinite Surface {132}; -//+ -Transfinite Surface {133}; -//+ -Transfinite Surface {134}; -//+ -Transfinite Surface {135}; -//+ -Transfinite Surface {136}; -//+ -Transfinite Surface {137}; -//+ -Transfinite Surface {138}; -//+ -Transfinite Surface {139}; -//+ -Transfinite Surface {140}; -//+ -Transfinite Surface {141}; -//+ -Transfinite Surface {142}; -//+ -Transfinite Surface {143}; -//+ -Transfinite Surface {144}; -//+ -Transfinite Surface {145}; -//+ -Transfinite Curve { 238, 239, 240, 241, 242, 243, 244, 245, 250, 251, 252, 253, 254, 255, 256, 257, 262, 263, 264, 265, 266, 267, 268, 269, 274, 275, 276, 277, 278, 279, 280, 281} = n_recombine Using Progression 1; -Transfinite Curve {237,246,249, 258,261,270,273,282} = n_recombine / 4 Using Progression 1; - - -Physical Curve("void",328) = {236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283}; - -Recombine Surface "*"; -// Define meshing options -//Mesh.Algorithm = 6; // Specify meshing algorithm (e.g., Delaunay) -//Mesh.ElementOrder = 1; // Specify element order -// Generate the mesh -//Mesh 2; \ No newline at end of file diff --git a/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo b/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo deleted file mode 100644 index 19e33600..00000000 --- a/examples_hpc/lattice/mesh/lattice_rectangular_n80.geo +++ /dev/null @@ -1,1193 +0,0 @@ -cl_fine = 0.1; -n_recombine = 80; -n_prog = 1.05; -Point(1) = {-3.5, -3.5, 0, cl_fine}; -Point(2) = {3.5, -3.5, 0, cl_fine}; -Point(3) = {-3.5, 3.5, 0, cl_fine}; -Point(4) = {3.5, 3.5, 0, cl_fine}; - -// Inner grid -Point(5) = { -2.5, -2.5, 0, cl_fine }; -Point(6) = { -2.5, -2.0, 0, cl_fine }; -Point(7) = { -2.5, -1.5, 0, cl_fine }; -Point(8) = { -2.5, -1.0, 0, cl_fine }; -Point(9) = { -2.5, -0.5, 0, cl_fine }; -Point(10) = { -2.5, 0.0, 0, cl_fine }; -Point(11) = { -2.5, 0.5, 0, cl_fine }; -Point(12) = { -2.5, 1.0, 0, cl_fine }; -Point(13) = { -2.5, 1.5, 0, cl_fine }; -Point(14) = { -2.5, 2.0, 0, cl_fine }; -Point(15) = { -2.5, 2.5, 0, cl_fine }; -Point(16) = { -2.0, -2.5, 0, cl_fine }; -Point(17) = { -2.0, -2.0, 0, cl_fine }; -Point(18) = { -2.0, -1.5, 0, cl_fine }; -Point(19) = { -2.0, -1.0, 0, cl_fine }; -Point(20) = { -2.0, -0.5, 0, cl_fine }; -Point(21) = { -2.0, 0.0, 0, cl_fine }; -Point(22) = { -2.0, 0.5, 0, cl_fine }; -Point(23) = { -2.0, 1.0, 0, cl_fine }; -Point(24) = { -2.0, 1.5, 0, cl_fine }; -Point(25) = { -2.0, 2.0, 0, cl_fine }; -Point(26) = { -2.0, 2.5, 0, cl_fine }; -Point(27) = { -1.5, -2.5, 0, cl_fine }; -Point(28) = { -1.5, -2.0, 0, cl_fine }; -Point(29) = { -1.5, -1.5, 0, cl_fine }; -Point(30) = { -1.5, -1.0, 0, cl_fine }; -Point(31) = { -1.5, -0.5, 0, cl_fine }; -Point(32) = { -1.5, 0.0, 0, cl_fine }; -Point(33) = { -1.5, 0.5, 0, cl_fine }; -Point(34) = { -1.5, 1.0, 0, cl_fine }; -Point(35) = { -1.5, 1.5, 0, cl_fine }; -Point(36) = { -1.5, 2.0, 0, cl_fine }; -Point(37) = { -1.5, 2.5, 0, cl_fine }; -Point(38) = { -1.0, -2.5, 0, cl_fine }; -Point(39) = { -1.0, -2.0, 0, cl_fine }; -Point(40) = { -1.0, -1.5, 0, cl_fine }; -Point(41) = { -1.0, -1.0, 0, cl_fine }; -Point(42) = { -1.0, -0.5, 0, cl_fine }; -Point(43) = { -1.0, 0.0, 0, cl_fine }; -Point(44) = { -1.0, 0.5, 0, cl_fine }; -Point(45) = { -1.0, 1.0, 0, cl_fine }; -Point(46) = { -1.0, 1.5, 0, cl_fine }; -Point(47) = { -1.0, 2.0, 0, cl_fine }; -Point(48) = { -1.0, 2.5, 0, cl_fine }; -Point(49) = { -0.5, -2.5, 0, cl_fine }; -Point(50) = { -0.5, -2.0, 0, cl_fine }; -Point(51) = { -0.5, -1.5, 0, cl_fine }; -Point(52) = { -0.5, -1.0, 0, cl_fine }; -Point(53) = { -0.5, -0.5, 0, cl_fine }; -Point(54) = { -0.5, 0.0, 0, cl_fine }; -Point(55) = { -0.5, 0.5, 0, cl_fine }; -Point(56) = { -0.5, 1.0, 0, cl_fine }; -Point(57) = { -0.5, 1.5, 0, cl_fine }; -Point(58) = { -0.5, 2.0, 0, cl_fine }; -Point(59) = { -0.5, 2.5, 0, cl_fine }; -Point(60) = { 0.0, -2.5, 0, cl_fine }; -Point(61) = { 0.0, -2.0, 0, cl_fine }; -Point(62) = { 0.0, -1.5, 0, cl_fine }; -Point(63) = { 0.0, -1.0, 0, cl_fine }; -Point(64) = { 0.0, -0.5, 0, cl_fine }; -Point(65) = { 0.0, 0.0, 0, cl_fine }; -Point(66) = { 0.0, 0.5, 0, cl_fine }; -Point(67) = { 0.0, 1.0, 0, cl_fine }; -Point(68) = { 0.0, 1.5, 0, cl_fine }; -Point(69) = { 0.0, 2.0, 0, cl_fine }; -Point(70) = { 0.0, 2.5, 0, cl_fine }; -Point(71) = { 0.5, -2.5, 0, cl_fine }; -Point(72) = { 0.5, -2.0, 0, cl_fine }; -Point(73) = { 0.5, -1.5, 0, cl_fine }; -Point(74) = { 0.5, -1.0, 0, cl_fine }; -Point(75) = { 0.5, -0.5, 0, cl_fine }; -Point(76) = { 0.5, 0.0, 0, cl_fine }; -Point(77) = { 0.5, 0.5, 0, cl_fine }; -Point(78) = { 0.5, 1.0, 0, cl_fine }; -Point(79) = { 0.5, 1.5, 0, cl_fine }; -Point(80) = { 0.5, 2.0, 0, cl_fine }; -Point(81) = { 0.5, 2.5, 0, cl_fine }; -Point(82) = { 1.0, -2.5, 0, cl_fine }; -Point(83) = { 1.0, -2.0, 0, cl_fine }; -Point(84) = { 1.0, -1.5, 0, cl_fine }; -Point(85) = { 1.0, -1.0, 0, cl_fine }; -Point(86) = { 1.0, -0.5, 0, cl_fine }; -Point(87) = { 1.0, 0.0, 0, cl_fine }; -Point(88) = { 1.0, 0.5, 0, cl_fine }; -Point(89) = { 1.0, 1.0, 0, cl_fine }; -Point(90) = { 1.0, 1.5, 0, cl_fine }; -Point(91) = { 1.0, 2.0, 0, cl_fine }; -Point(92) = { 1.0, 2.5, 0, cl_fine }; -Point(93) = { 1.5, -2.5, 0, cl_fine }; -Point(94) = { 1.5, -2.0, 0, cl_fine }; -Point(95) = { 1.5, -1.5, 0, cl_fine }; -Point(96) = { 1.5, -1.0, 0, cl_fine }; -Point(97) = { 1.5, -0.5, 0, cl_fine }; -Point(98) = { 1.5, 0.0, 0, cl_fine }; -Point(99) = { 1.5, 0.5, 0, cl_fine }; -Point(100) = { 1.5, 1.0, 0, cl_fine }; -Point(101) = { 1.5, 1.5, 0, cl_fine }; -Point(102) = { 1.5, 2.0, 0, cl_fine }; -Point(103) = { 1.5, 2.5, 0, cl_fine }; -Point(104) = { 2.0, -2.5, 0, cl_fine }; -Point(105) = { 2.0, -2.0, 0, cl_fine }; -Point(106) = { 2.0, -1.5, 0, cl_fine }; -Point(107) = { 2.0, -1.0, 0, cl_fine }; -Point(108) = { 2.0, -0.5, 0, cl_fine }; -Point(109) = { 2.0, 0.0, 0, cl_fine }; -Point(110) = { 2.0, 0.5, 0, cl_fine }; -Point(111) = { 2.0, 1.0, 0, cl_fine }; -Point(112) = { 2.0, 1.5, 0, cl_fine }; -Point(113) = { 2.0, 2.0, 0, cl_fine }; -Point(114) = { 2.0, 2.5, 0, cl_fine }; -Point(115) = { 2.5, -2.5, 0, cl_fine }; -Point(116) = { 2.5, -2.0, 0, cl_fine }; -Point(117) = { 2.5, -1.5, 0, cl_fine }; -Point(118) = { 2.5, -1.0, 0, cl_fine }; -Point(119) = { 2.5, -0.5, 0, cl_fine }; -Point(120) = { 2.5, 0.0, 0, cl_fine }; -Point(121) = { 2.5, 0.5, 0, cl_fine }; -Point(122) = { 2.5, 1.0, 0, cl_fine }; -Point(123) = { 2.5, 1.5, 0, cl_fine }; -Point(124) = { 2.5, 2.0, 0, cl_fine }; -Point(125) = { 2.5, 2.5, 0, cl_fine }; - -// helper boundary points -Point(126) = { -2.5, -3.5, 0, cl_fine }; -Point(127) = { -2.0, -3.5, 0, cl_fine }; -Point(128) = { -1.5, -3.5, 0, cl_fine }; -Point(129) = { -1.0, -3.5, 0, cl_fine }; -Point(130) = { -0.5, -3.5, 0, cl_fine }; -Point(131) = { 0.0, -3.5, 0, cl_fine }; -Point(132) = { 0.5, -3.5, 0, cl_fine }; -Point(133) = { 1.0, -3.5, 0, cl_fine }; -Point(134) = { 1.5, -3.5, 0, cl_fine }; -Point(135) = { 2.0, -3.5, 0, cl_fine }; -Point(136) = { 2.5, -3.5, 0, cl_fine }; -Point(137) = { -2.5, 3.5, 0, cl_fine }; -Point(138) = { -2.0, 3.5, 0, cl_fine }; -Point(139) = { -1.5, 3.5, 0, cl_fine }; -Point(140) = { -1.0, 3.5, 0, cl_fine }; -Point(141) = { -0.5, 3.5, 0, cl_fine }; -Point(142) = { 0.0, 3.5, 0, cl_fine }; -Point(143) = { 0.5, 3.5, 0, cl_fine }; -Point(144) = { 1.0, 3.5, 0, cl_fine }; -Point(145) = { 1.5, 3.5, 0, cl_fine }; -Point(146) = { 2.0, 3.5, 0, cl_fine }; -Point(147) = { 2.5, 3.5, 0, cl_fine }; -Point(148) = { -3.5, -2.5, 0, cl_fine }; -Point(149) = { -3.5, -2.0, 0, cl_fine }; -Point(150) = { -3.5, -1.5, 0, cl_fine }; -Point(151) = { -3.5, -1.0, 0, cl_fine }; -Point(152) = { -3.5, -0.5, 0, cl_fine }; -Point(153) = { -3.5, 0.0, 0, cl_fine }; -Point(154) = { -3.5, 0.5, 0, cl_fine }; -Point(155) = { -3.5, 1.0, 0, cl_fine }; -Point(156) = { -3.5, 1.5, 0, cl_fine }; -Point(157) = { -3.5, 2.0, 0, cl_fine }; -Point(158) = { -3.5, 2.5, 0, cl_fine }; -Point(159) = { 3.5, -2.5, 0, cl_fine }; -Point(160) = { 3.5, -2.0, 0, cl_fine }; -Point(161) = { 3.5, -1.5, 0, cl_fine }; -Point(162) = { 3.5, -1.0, 0, cl_fine }; -Point(163) = { 3.5, -0.5, 0, cl_fine }; -Point(164) = { 3.5, 0.0, 0, cl_fine }; -Point(165) = { 3.5, 0.5, 0, cl_fine }; -Point(166) = { 3.5, 1.0, 0, cl_fine }; -Point(167) = { 3.5, 1.5, 0, cl_fine }; -Point(168) = { 3.5, 2.0, 0, cl_fine }; -Point(169) = { 3.5, 2.5, 0, cl_fine }; - -// Horizontal and vertical lines in inner grid -Line(5) = { 5, 16}; -Line(6) = { 6, 17}; -Line(7) = { 7, 18}; -Line(8) = { 8, 19}; -Line(9) = { 9, 20}; -Line(10) = { 10, 21}; -Line(11) = { 11, 22}; -Line(12) = { 12, 23}; -Line(13) = { 13, 24}; -Line(14) = { 14, 25}; -Line(15) = { 15, 26}; -Line(16) = { 27, 16}; -Line(17) = { 28, 17}; -Line(18) = { 29, 18}; -Line(19) = { 30, 19}; -Line(20) = { 31, 20}; -Line(21) = { 32, 21}; -Line(22) = { 33, 22}; -Line(23) = { 34, 23}; -Line(24) = { 35, 24}; -Line(25) = { 36, 25}; -Line(26) = { 37, 26}; -Line(27) = { 27, 38}; -Line(28) = { 28, 39}; -Line(29) = { 29, 40}; -Line(30) = { 30, 41}; -Line(31) = { 31, 42}; -Line(32) = { 32, 43}; -Line(33) = { 33, 44}; -Line(34) = { 34, 45}; -Line(35) = { 35, 46}; -Line(36) = { 36, 47}; -Line(37) = { 37, 48}; -Line(38) = { 49, 38}; -Line(39) = { 50, 39}; -Line(40) = { 51, 40}; -Line(41) = { 52, 41}; -Line(42) = { 53, 42}; -Line(43) = { 54, 43}; -Line(44) = { 55, 44}; -Line(45) = { 56, 45}; -Line(46) = { 57, 46}; -Line(47) = { 58, 47}; -Line(48) = { 59, 48}; -Line(49) = { 49, 60}; -Line(50) = { 50, 61}; -Line(51) = { 51, 62}; -Line(52) = { 52, 63}; -Line(53) = { 53, 64}; -Line(54) = { 54, 65}; -Line(55) = { 55, 66}; -Line(56) = { 56, 67}; -Line(57) = { 57, 68}; -Line(58) = { 58, 69}; -Line(59) = { 59, 70}; -Line(60) = { 71, 60}; -Line(61) = { 72, 61}; -Line(62) = { 73, 62}; -Line(63) = { 74, 63}; -Line(64) = { 75, 64}; -Line(65) = { 76, 65}; -Line(66) = { 77, 66}; -Line(67) = { 78, 67}; -Line(68) = { 79, 68}; -Line(69) = { 80, 69}; -Line(70) = { 81, 70}; -Line(71) = { 71, 82}; -Line(72) = { 72, 83}; -Line(73) = { 73, 84}; -Line(74) = { 74, 85}; -Line(75) = { 75, 86}; -Line(76) = { 76, 87}; -Line(77) = { 77, 88}; -Line(78) = { 78, 89}; -Line(79) = { 79, 90}; -Line(80) = { 80, 91}; -Line(81) = { 81, 92}; -Line(82) = { 93, 82}; -Line(83) = { 94, 83}; -Line(84) = { 95, 84}; -Line(85) = { 96, 85}; -Line(86) = { 97, 86}; -Line(87) = { 98, 87}; -Line(88) = { 99, 88}; -Line(89) = { 100, 89}; -Line(90) = { 101, 90}; -Line(91) = { 102, 91}; -Line(92) = { 103, 92}; -Line(93) = { 93, 104}; -Line(94) = { 94, 105}; -Line(95) = { 95, 106}; -Line(96) = { 96, 107}; -Line(97) = { 97, 108}; -Line(98) = { 98, 109}; -Line(99) = { 99, 110}; -Line(100) = { 100, 111}; -Line(101) = { 101, 112}; -Line(102) = { 102, 113}; -Line(103) = { 103, 114}; -Line(104) = { 115, 104}; -Line(105) = { 116, 105}; -Line(106) = { 117, 106}; -Line(107) = { 118, 107}; -Line(108) = { 119, 108}; -Line(109) = { 120, 109}; -Line(110) = { 121, 110}; -Line(111) = { 122, 111}; -Line(112) = { 123, 112}; -Line(113) = { 124, 113}; -Line(114) = { 125, 114}; -Line(126) = { 5, 6}; -Line(127) = { 7, 6}; -Line(128) = { 7, 8}; -Line(129) = { 9, 8}; -Line(130) = { 9, 10}; -Line(131) = { 11, 10}; -Line(132) = { 11, 12}; -Line(133) = { 13, 12}; -Line(134) = { 13, 14}; -Line(135) = { 15, 14}; -Line(136) = { 16, 17}; -Line(137) = { 18, 17}; -Line(138) = { 18, 19}; -Line(139) = { 20, 19}; -Line(140) = { 20, 21}; -Line(141) = { 22, 21}; -Line(142) = { 22, 23}; -Line(143) = { 24, 23}; -Line(144) = { 24, 25}; -Line(145) = { 26, 25}; - -Line(146) = { 27, 28}; -Line(147) = { 29, 28}; -Line(148) = { 29, 30}; -Line(149) = { 31, 30}; -Line(150) = { 31, 32}; -Line(151) = { 33, 32}; -Line(152) = { 33, 34}; -Line(153) = { 35, 34}; -Line(154) = { 35, 36}; -Line(155) = { 37, 36}; - -Line(156) = { 38, 39}; -Line(157) = { 40, 39}; -Line(158) = { 40, 41}; -Line(159) = { 42, 41}; -Line(160) = { 42, 43}; -Line(161) = { 44, 43}; -Line(162) = { 44, 45}; -Line(163) = { 46, 45}; -Line(164) = { 46, 47}; -Line(165) = { 48, 47}; - -Line(166) = { 49, 50}; -Line(167) = { 51, 50}; -Line(168) = { 51, 52}; -Line(169) = { 53, 52}; -Line(170) = { 53, 54}; -Line(171) = { 55, 54}; -Line(172) = { 55, 56}; -Line(173) = { 57, 56}; -Line(174) = { 57, 58}; -Line(175) = { 59, 58}; - -Line(176) = { 60, 61}; -Line(177) = { 62, 61}; -Line(178) = { 62, 63}; -Line(179) = { 64, 63}; -Line(180) = { 64, 65}; -Line(181) = { 66, 65}; -Line(182) = { 66, 67}; -Line(183) = { 68, 67}; -Line(184) = { 68, 69}; -Line(185) = { 70, 69}; - -Line(186) = { 71, 72}; -Line(187) = { 73, 72}; -Line(188) = { 73, 74}; -Line(189) = { 75, 74}; -Line(190) = { 75, 76}; -Line(191) = { 77, 76}; -Line(192) = { 77, 78}; -Line(193) = { 79, 78}; -Line(194) = { 79, 80}; -Line(195) = { 81, 80}; - -Line(196) = { 82, 83}; -Line(197) = { 84, 83}; -Line(198) = { 84, 85}; -Line(199) = { 86, 85}; -Line(200) = { 86, 87}; -Line(201) = { 88, 87}; -Line(202) = { 88, 89}; -Line(203) = { 90, 89}; -Line(204) = { 90, 91}; -Line(205) = { 92, 91}; - -Line(206) = { 93, 94}; -Line(207) = { 95, 94}; -Line(208) = { 95, 96}; -Line(209) = { 97, 96}; -Line(210) = { 97, 98}; -Line(211) = { 99, 98}; -Line(212) = { 99, 100}; -Line(213) = { 101, 100}; -Line(214) = { 101, 102}; -Line(215) = { 103, 102}; - - -Line(216) = { 104, 105}; -Line(217) = { 106, 105}; -Line(218) = { 106, 107}; -Line(219) = { 108, 107}; -Line(220) = { 108, 109}; -Line(221) = { 110, 109}; -Line(222) = { 110, 111}; -Line(223) = { 112, 111}; -Line(224) = { 112, 113}; -Line(225) = { 114, 113}; - - -Line(226) = { 115, 116}; -Line(227) = { 117, 116}; -Line(228) = { 117, 118}; -Line(229) = { 119, 118}; -Line(230) = { 119, 120}; -Line(231) = { 121, 120}; -Line(232) = { 121, 122}; -Line(233) = { 123, 122}; -Line(234) = { 123, 124}; -Line(235) = { 125, 124}; - - -// Define inner surfaces -//+ -Curve Loop(1) = { 5, 136, -6, -126}; -Plane Surface(1) ={1}; -Curve Loop(2) = { 6, -137, -7, 127}; -Plane Surface(2) ={2}; -Curve Loop(3) = { 7, 138, -8, -128}; -Plane Surface(3) ={3}; -Curve Loop(4) = { 8, -139, -9, 129}; -Plane Surface(4) ={4}; -Curve Loop(5) = { 9, 140, -10, -130}; -Plane Surface(5) ={5}; -Curve Loop(6) = { 10, -141, -11, 131}; -Plane Surface(6) ={6}; -Curve Loop(7) = { 11, 142, -12, -132}; -Plane Surface(7) ={7}; -Curve Loop(8) = { 12, -143, -13, 133}; -Plane Surface(8) ={8}; -Curve Loop(9) = { 13, 144, -14, -134}; -Plane Surface(9) ={9}; -Curve Loop(10) = { 14, -145, -15, 135}; -Plane Surface(10) ={10}; -Curve Loop(11) = { -16, 146, 17, -136}; -Plane Surface(11) ={11}; -Curve Loop(12) = { -17, -147, 18, 137}; -Plane Surface(12) ={12}; -Curve Loop(13) = { -18, 148, 19, -138}; -Plane Surface(13) ={13}; -Curve Loop(14) = { -19, -149, 20, 139}; -Plane Surface(14) ={14}; -Curve Loop(15) = { -20, 150, 21, -140}; -Plane Surface(15) ={15}; -Curve Loop(16) = { -21, -151, 22, 141}; -Plane Surface(16) ={16}; -Curve Loop(17) = { -22, 152, 23, -142}; -Plane Surface(17) ={17}; -Curve Loop(18) = { -23, -153, 24, 143}; -Plane Surface(18) ={18}; -Curve Loop(19) = {-24, 154, 25, -144}; -Plane Surface(19) ={19}; -Curve Loop(20) = { -25, -155, 26, 145}; -Plane Surface(20) ={20}; -Curve Loop(21) = { 27, 156, -28, -146}; -Plane Surface(21) ={21}; -Curve Loop(22) = { 28, -157, -29, 147}; -Plane Surface(22) ={22}; -Curve Loop(23) = { 29, 158, -30, -148}; -Plane Surface(23) ={23}; -Curve Loop(24) = { 30, -159, -31, 149}; -Plane Surface(24) ={24}; -Curve Loop(25) = { 31, 160, -32, -150}; -Plane Surface(25) ={25}; -Curve Loop(26) = { 32, -161, -33, 151}; -Plane Surface(26) ={26}; -Curve Loop(27) = { 33, 162, -34, -152}; -Plane Surface(27) ={27}; -Curve Loop(28) = { 34, -163, -35, 153}; -Plane Surface(28) ={28}; -Curve Loop(29) = { 35, 164, -36, -154}; -Plane Surface(29) ={29}; -Curve Loop(30) = { 36, -165, -37, 155}; -Plane Surface(30) ={30}; -Curve Loop(31) = { -38, 166, 39, -156}; -Plane Surface(31) ={31}; -Curve Loop(32) = { -39, -167, 40, 157}; -Plane Surface(32) ={32}; -Curve Loop(33) = { -40, 168, 41, -158}; -Plane Surface(33) ={33}; -Curve Loop(34) = { -41, -169, 42, 159}; -Plane Surface(34) ={34}; -Curve Loop(35) = { -42, 170, 43, -160}; -Plane Surface(35) ={35}; -Curve Loop(36) = { -43, -171, 44, 161}; -Plane Surface(36) ={36}; -Curve Loop(37) = { -44, 172, 45, -162}; -Plane Surface(37) ={37}; -Curve Loop(38) = { -45, -173, 46, 163}; -Plane Surface(38) ={38}; -Curve Loop(39) = { -46, 174, 47, -164}; -Plane Surface(39) ={39}; -Curve Loop(40) = { -47, -175, 48, 165}; -Plane Surface(40) ={40}; -Curve Loop(41) = { 49, 176, -50, -166}; -Plane Surface(41) ={41}; -Curve Loop(42) = { 50, -177, -51, 167}; -Plane Surface(42) ={42}; -Curve Loop(43) = { 51, 178, -52, -168}; -Plane Surface(43) ={43}; -Curve Loop(44) = { 52, -179, -53, 169}; -Plane Surface(44) ={44}; -Curve Loop(45) = { 53, 180, -54, -170}; -Plane Surface(45) ={45}; -Curve Loop(46) = { 54, -181, -55, 171}; -Plane Surface(46) ={46}; -Curve Loop(47) = { 55, 182, -56, -172}; -Plane Surface(47) ={47}; -Curve Loop(48) = { 56, -183, -57, 173}; -Plane Surface(48) ={48}; -Curve Loop(49) = { 57, 184, -58, -174}; -Plane Surface(49) ={49}; -Curve Loop(50) = { 58, -185, -59, 175}; -Plane Surface(50) ={50}; -Curve Loop(51) = { -60, 186, 61, -176}; -Plane Surface(51) ={51}; -Curve Loop(52) = { -61, -187, 62, 177}; -Plane Surface(52) ={52}; -Curve Loop(53) = { -62, 188, 63, -178}; -Plane Surface(53) ={53}; -Curve Loop(54) = { -63, -189, 64, 179}; -Plane Surface(54) ={54}; -Curve Loop(55) = { -64, 190, 65, -180}; -Plane Surface(55) ={55}; -Curve Loop(56) = { -65, -191, 66, 181}; -Plane Surface(56) ={56}; -Curve Loop(57) = { -66, 192, 67, -182}; -Plane Surface(57) ={57}; -Curve Loop(58) = { -67, -193, 68, 183}; -Plane Surface(58) ={58}; -Curve Loop(59) = { -68, 194, 69, -184}; -Plane Surface(59) ={59}; -Curve Loop(60) = { -69, -195, 70, 185}; -Plane Surface(60) ={60}; -Curve Loop(61) = { 71, 196, -72, -186}; -Plane Surface(61) ={61}; -Curve Loop(62) = { 72, -197, -73, 187}; -Plane Surface(62) ={62}; -Curve Loop(63) = { 73, 198, -74, -188}; -Plane Surface(63) ={63}; -Curve Loop(64) = { 74, -199, -75, 189}; -Plane Surface(64) ={64}; -Curve Loop(65) = { 75, 200, -76, -190}; -Plane Surface(65) ={65}; -Curve Loop(66) = { 76, -201, -77, 191}; -Plane Surface(66) ={66}; -Curve Loop(67) = { 77, 202, -78, -192}; -Plane Surface(67) ={67}; -Curve Loop(68) = { 78, -203, -79, 193}; -Plane Surface(68) ={68}; -Curve Loop(69) = { 79, 204, -80, -194}; -Plane Surface(69) ={69}; -Curve Loop(70) = { 80, -205, -81, 195}; -Plane Surface(70) ={70}; -Curve Loop(71) = { -82, 206, 83, -196}; -Plane Surface(71) ={71}; -Curve Loop(72) = { -83, -207, 84, 197}; -Plane Surface(72) ={72}; -Curve Loop(73) = { -84, 208, 85, -198}; -Plane Surface(73) ={73}; -Curve Loop(74) = { -85, -209, 86, 199}; -Plane Surface(74) ={74}; -Curve Loop(75) = { -86, 210, 87, -200}; -Plane Surface(75) ={75}; -Curve Loop(76) = { -87, -211, 88, 201}; -Plane Surface(76) ={76}; -Curve Loop(77) = { -88, 212, 89, -202}; -Plane Surface(77) ={77}; -Curve Loop(78) = { -89, -213, 90, 203}; -Plane Surface(78) ={78}; -Curve Loop(79) = { -90, 214, 91, -204}; -Plane Surface(79) ={79}; -Curve Loop(80) = { -91, -215, 92, 205}; -Plane Surface(80) ={80}; -Curve Loop(81) = { 93, 216, -94, -206}; -Plane Surface(81) ={81}; -Curve Loop(82) = { 94, -217, -95, 207}; -Plane Surface(82) ={82}; -Curve Loop(83) = { 95, 218, -96, -208}; -Plane Surface(83) ={83}; -Curve Loop(84) = { 96, -219, -97, 209}; -Plane Surface(84) ={84}; -Curve Loop(85) = { 97, 220, -98, -210}; -Plane Surface(85) ={85}; -Curve Loop(86) = { 98, -221, -99, 211}; -Plane Surface(86) ={86}; -Curve Loop(87) = { 99, 222, -100, -212}; -Plane Surface(87) ={87}; -Curve Loop(88) = { 100, -223, -101, 213}; -Plane Surface(88) ={88}; -Curve Loop(89) = { 101, 224, -102, -214}; -Plane Surface(89) ={89}; -Curve Loop(90) = { 102, -225, -103, 215}; -Plane Surface(90) ={90}; -Curve Loop(91) = { -104, 226, 105, -216}; -Plane Surface(91) ={91}; -Curve Loop(92) = { -105, -227, 106, 217}; -Plane Surface(92) ={92}; -Curve Loop(93) = { -106, 228, 107, -218}; -Plane Surface(93) ={93}; -Curve Loop(94) = { -107, -229, 108, 219}; -Plane Surface(94) ={94}; -Curve Loop(95) = { -108, 230, 109, -220}; -Plane Surface(95) ={95}; -Curve Loop(96) = { -109, -231, 110, 221}; -Plane Surface(96) ={96}; -Curve Loop(97) = { -110, 232, 111, -222}; -Plane Surface(97) ={97}; -Curve Loop(98) = { -111, -233, 112, 223}; -Plane Surface(98) ={98}; -Curve Loop(99) = { -112, 234, 113, -224}; -Plane Surface(99) ={99}; -Curve Loop(100) = { -113, -235, 114, 225}; -Plane Surface(100) ={100}; - - -// "Outside area" -//Curve Loop(101) = {1, 2, 3, 4}; -//+ -//Curve Loop(102) = {5, -16, 27, -38, 49, -60, 71, -82, 93, -104, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 114, -103, 92, -81, 70, -59, 48, -37, 26, -15, -135, -134, -133, -132, -131, -130, -129, -128, -127, -126}; -//+ -//Plane Surface(101) = {101, 102}; - -//+ -Transfinite Surface {1}; -Transfinite Surface {2}; -Transfinite Surface {3}; -Transfinite Surface {4}; -Transfinite Surface {5}; -Transfinite Surface {6}; -Transfinite Surface {7}; -Transfinite Surface {8}; -Transfinite Surface {9}; -Transfinite Surface {10}; -Transfinite Surface {11}; -Transfinite Surface {12}; -Transfinite Surface {13}; -Transfinite Surface {14}; -Transfinite Surface {15}; -Transfinite Surface {16}; -Transfinite Surface {17}; -Transfinite Surface {18}; -Transfinite Surface {19}; -Transfinite Surface {20}; -Transfinite Surface {21}; -Transfinite Surface {22}; -Transfinite Surface {23}; -Transfinite Surface {24}; -Transfinite Surface {25}; -Transfinite Surface {26}; -Transfinite Surface {27}; -Transfinite Surface {28}; -Transfinite Surface {29}; -Transfinite Surface {30}; -Transfinite Surface {31}; -Transfinite Surface {32}; -Transfinite Surface {33}; -Transfinite Surface {34}; -Transfinite Surface {35}; -Transfinite Surface {36}; -Transfinite Surface {37}; -Transfinite Surface {38}; -Transfinite Surface {39}; -Transfinite Surface {40}; -Transfinite Surface {41}; -Transfinite Surface {42}; -Transfinite Surface {43}; -Transfinite Surface {44}; -Transfinite Surface {45}; -Transfinite Surface {46}; -Transfinite Surface {47}; -Transfinite Surface {48}; -Transfinite Surface {49}; -Transfinite Surface {50}; -Transfinite Surface {51}; -Transfinite Surface {52}; -Transfinite Surface {53}; -Transfinite Surface {54}; -Transfinite Surface {55}; -Transfinite Surface {56}; -Transfinite Surface {57}; -Transfinite Surface {58}; -Transfinite Surface {59}; -Transfinite Surface {60}; -Transfinite Surface {61}; -Transfinite Surface {62}; -Transfinite Surface {63}; -Transfinite Surface {64}; -Transfinite Surface {65}; -Transfinite Surface {66}; -Transfinite Surface {67}; -Transfinite Surface {68}; -Transfinite Surface {69}; -Transfinite Surface {70}; -Transfinite Surface {71}; -Transfinite Surface {72}; -Transfinite Surface {73}; -Transfinite Surface {74}; -Transfinite Surface {75}; -Transfinite Surface {76}; -Transfinite Surface {77}; -Transfinite Surface {78}; -Transfinite Surface {79}; -Transfinite Surface {80}; -Transfinite Surface {81}; -Transfinite Surface {82}; -Transfinite Surface {83}; -Transfinite Surface {84}; -Transfinite Surface {85}; -Transfinite Surface {86}; -Transfinite Surface {87}; -Transfinite Surface {88}; -Transfinite Surface {89}; -Transfinite Surface {90}; -Transfinite Surface {91}; -Transfinite Surface {92}; -Transfinite Surface {93}; -Transfinite Surface {94}; -Transfinite Surface {95}; -Transfinite Surface {96}; -Transfinite Surface {97}; -Transfinite Surface {98}; -Transfinite Surface {99}; -Transfinite Surface {100}; -//+ -Transfinite Curve {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103} = n_recombine Using Progression n_prog; -// add outer perimeter with half as many cells and no Progression -Transfinite Curve {104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15} = n_recombine / 4 Using Progression 1; -//+ -Transfinite Curve { 127, 137, 147, 157, 167, 177, 187, 197, 207, 217, 227, 128, 138, 148, 158, 168, 178, 188, 198, 208, 218, 228, 129, 139, 149, 159, 169, 179, 189, 199, 209, 219, 229, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 131, 141, 151, 161, 171, 181, 191, 201, 211, 221, 231, 132, 142, 152, 162, 172, 182, 192, 202, 212, 222, 232, 133, 143, 153, 163, 173, 183, 193, 203, 213, 223, 233, 134, 144, 154, 164, 174, 184, 194, 204, 214, 224, 234} = n_recombine Using Progression n_prog; -// add outer perimeter with half as many cells and no Progression -Transfinite Curve {126, 136, 146, 156, 166, 176, 186, 196, 206, 216, 226, 135, 145, 155, 165, 175, 185, 195, 205, 215, 225, 235} = n_recombine / 4 Using Progression 1; -//+ -Line(236) = {1, 126}; -//+ -Line(237) = {126, 127}; -//+ -Line(238) = {127, 128}; -//+ -Line(239) = {128, 129}; -//+ -Line(240) = {129, 130}; -//+ -Line(241) = {130, 131}; -//+ -Line(242) = {131, 132}; -//+ -Line(243) = {132, 133}; -//+ -Line(244) = {133, 134}; -//+ -Line(245) = {134, 135}; -//+ -Line(246) = {135, 136}; -//+ -Line(247) = {136, 2}; -//+ -Line(248) = {2, 159}; -//+ -Line(249) = {159, 160}; -//+ -Line(250) = {160, 161}; -//+ -Line(251) = {161, 162}; -//+ -Line(252) = {162, 163}; -//+ -Line(253) = {163, 164}; -//+ -Line(254) = {164, 165}; -//+ -Line(255) = {165, 166}; -//+ -Line(256) = {166, 167}; -//+ -Line(257) = {167, 168}; -//+ -Line(258) = {168, 169}; -//+ -Line(259) = {169, 4}; -//+ -Line(260) = {4, 147}; -//+ -Line(261) = {147, 146}; -//+ -Line(262) = {146, 145}; -//+ -Line(263) = {145, 144}; -//+ -Line(264) = {144, 143}; -//+ -Line(265) = {143, 142}; -//+ -Line(266) = {142, 141}; -//+ -Line(267) = {141, 140}; -//+ -Line(268) = {140, 139}; -//+ -Line(269) = {139, 138}; -//+ -Line(270) = {138, 137}; -//+ -Line(271) = {137, 3}; -//+ -Line(272) = {3, 158}; -//+ -Line(273) = {158, 157}; -//+ -Line(274) = {157, 156}; -//+ -Line(275) = {156, 155}; -//+ -Line(276) = {155, 154}; -//+ -Line(277) = {154, 153}; -//+ -Line(278) = {153, 152}; -//+ -Line(279) = {152, 151}; -//+ -Line(280) = {151, 150}; -//+ -Line(281) = {150, 149}; -//+ -Line(282) = {149, 148}; -//+ -Line(283) = {148, 1}; -//+ -Line(284) = {126, 5}; -//+ -Line(285) = {127, 16}; -//+ -Line(286) = {128, 27}; -//+ -Line(287) = {129, 38}; -//+ -Line(288) = {130, 49}; -//+ -Line(289) = {131, 60}; -//+ -Line(290) = {132, 71}; -//+ -Line(291) = {133, 82}; -//+ -Line(292) = {134, 93}; -//+ -Line(293) = {135, 104}; -//+ -Line(294) = {136, 115}; -//+ -Line(295) = {159, 115}; -//+ -Line(296) = {160, 116}; -//+ -Line(297) = {161, 117}; -//+ -Line(298) = {162, 118}; -//+ -Line(299) = {163, 119}; -//+ -Line(300) = {164, 120}; -//+ -Line(301) = {165, 121}; -//+ -Line(302) = {166, 122}; -//+ -Line(303) = {167, 123}; -//+ -Line(304) = {168, 124}; -//+ -Line(305) = {169, 125}; -//+ -Line(306) = {147, 125}; -//+ -Line(307) = {146, 114}; -//+ -Line(308) = {145, 103}; -//+ -Line(309) = {144, 92}; -//+ -Line(310) = {143, 81}; -//+ -Line(311) = {142, 70}; -//+ -Line(312) = {141, 59}; -//+ -Line(313) = {140, 48}; -//+ -Line(314) = {139, 37}; -//+ -Line(315) = {138, 26}; -//+ -Line(316) = {137, 15}; -//+ -Line(317) = {158, 15}; -//+ -Line(318) = {157, 14}; -//+ -Line(319) = {156, 13}; -//+ -Line(320) = {155, 12}; -//+ -Line(321) = {154, 11}; -//+ -Line(322) = {153, 10}; -//+ -Line(323) = {152, 9}; -//+ -Line(324) = {151, 8}; -//+ -Line(325) = {150, 7}; -//+ -Line(326) = {149, 6}; -//+ -Line(327) = {148, 5}; -//+ -Curve Loop(103) = {236, 284, -327, 283}; -//+ -Plane Surface(102) = {103}; -//+ -Curve Loop(104) = {237, 285, -5, -284}; -//+ -Plane Surface(103) = {104}; -//+ -Curve Loop(105) = {238, 286, 16, -285}; -//+ -Plane Surface(104) = {105}; -//+ -Curve Loop(106) = {239, 287, -27, -286}; -//+ -Plane Surface(105) = {106}; -//+ -Curve Loop(107) = {240, 288, 38, -287}; -//+ -Plane Surface(106) = {107}; -//+ -Curve Loop(108) = {241, 289, -49, -288}; -//+ -Plane Surface(107) = {108}; -//+ -Curve Loop(109) = {242, 290, 60, -289}; -//+ -Plane Surface(108) = {109}; -//+ -Curve Loop(110) = {243, 291, -71, -290}; -//+ -Plane Surface(109) = {110}; -//+ -Curve Loop(111) = {244, 292, 82, -291}; -//+ -Plane Surface(110) = {111}; -//+ -Curve Loop(112) = {245, 293, -93, -292}; -//+ -Plane Surface(111) = {112}; -//+ -Curve Loop(113) = {246, 294, 104, -293}; -//+ -Plane Surface(112) = {113}; -//+ -Curve Loop(114) = {247, 248, 295, -294}; -//+ -Plane Surface(113) = {114}; -//+ -Curve Loop(115) = {249, 296, -226, -295}; -//+ -Plane Surface(114) = {115}; -//+ -Curve Loop(116) = {250, 297, 227, -296}; -//+ -Plane Surface(115) = {116}; -//+ -Curve Loop(117) = {251, 298, -228, -297}; -//+ -Plane Surface(116) = {117}; -//+ -Curve Loop(118) = {252, 299, 229, -298}; -//+ -Plane Surface(117) = {118}; -//+ -Curve Loop(119) = {253, 300, -230, -299}; -//+ -Plane Surface(118) = {119}; -//+ -Curve Loop(120) = {254, 301, 231, -300}; -//+ -Plane Surface(119) = {120}; -//+ -Curve Loop(121) = {255, 302, -232, -301}; -//+ -Plane Surface(120) = {121}; -//+ -Curve Loop(122) = {256, 303, 233, -302}; -//+ -Plane Surface(121) = {122}; -//+ -Curve Loop(123) = {257, 304, -234, -303}; -//+ -Plane Surface(122) = {123}; -//+ -Curve Loop(124) = {258, 305, 235, -304}; -//+ -Plane Surface(123) = {124}; -//+ -Curve Loop(125) = {259, 260, 306, -305}; -//+ -Plane Surface(124) = {125}; -//+ -Curve Loop(126) = {261, 307, -114, -306}; -//+ -Plane Surface(125) = {126}; -//+ -Curve Loop(127) = {262, 308, 103, -307}; -//+ -Plane Surface(126) = {127}; -//+ -Curve Loop(128) = {263, 309, -92, -308}; -//+ -Plane Surface(127) = {128}; -//+ -Curve Loop(129) = {264, 310, 81, -309}; -//+ -Plane Surface(128) = {129}; -//+ -Curve Loop(130) = {265, 311, -70, -310}; -//+ -Plane Surface(129) = {130}; -//+ -Curve Loop(131) = {266, 312, 59, -311}; -//+ -Plane Surface(130) = {131}; -//+ -Curve Loop(132) = {267, 313, -48, -312}; -//+ -Plane Surface(131) = {132}; -//+ -Curve Loop(133) = {268, 314, 37, -313}; -//+ -Plane Surface(132) = {133}; -//+ -Curve Loop(134) = {269, 315, -26, -314}; -//+ -Plane Surface(133) = {134}; -//+ -Curve Loop(135) = {270, 316, 15, -315}; -//+ -Plane Surface(134) = {135}; -//+ -Curve Loop(136) = {271, 272, 317, -316}; -//+ -Plane Surface(135) = {136}; -//+ -Curve Loop(137) = {273, 318, -135, -317}; -//+ -Plane Surface(136) = {137}; -//+ -Curve Loop(138) = {274, 319, 134, -318}; -//+ -Plane Surface(137) = {138}; -//+ -Curve Loop(139) = {275, 320, -133, -319}; -//+ -Plane Surface(138) = {139}; -//+ -Curve Loop(140) = {276, 321, 132, -320}; -//+ -Plane Surface(139) = {140}; -//+ -Curve Loop(141) = {277, 322, -131, -321}; -//+ -Plane Surface(140) = {141}; -//+ -Curve Loop(142) = {278, 323, 130, -322}; -//+ -Plane Surface(141) = {142}; -//+ -Curve Loop(143) = {279, 324, -129, -323}; -//+ -Plane Surface(142) = {143}; -//+ -Curve Loop(144) = {280, 325, 128, -324}; -//+ -Plane Surface(143) = {144}; -//+ -Curve Loop(145) = {281, 326, -127, -325}; -//+ -Plane Surface(144) = {145}; -//+ -Curve Loop(146) = {282, 327, 126, -326}; -//+ -Plane Surface(145) = {146}; -//+ -//+ -Transfinite Surface {102}; -//+ -Transfinite Surface {103}; -//+ -Transfinite Surface {104}; -//+ -Transfinite Surface {105}; -//+ -Transfinite Surface {106}; -//+ -Transfinite Surface {107}; -//+ -Transfinite Surface {108}; -//+ -Transfinite Surface {109}; -//+ -Transfinite Surface {110}; -//+ -Transfinite Surface {111}; -//+ -Transfinite Surface {112}; -//+ -Transfinite Surface {113}; -//+ -Transfinite Surface {114}; -//+ -Transfinite Surface {115}; -//+ -Transfinite Surface {116}; -//+ -Transfinite Surface {117}; -//+ -Transfinite Surface {118}; -//+ -Transfinite Surface {119}; -//+ -Transfinite Surface {120}; -//+ -Transfinite Surface {121}; -//+ -Transfinite Surface {122}; -//+ -Transfinite Surface {123}; -//+ -Transfinite Surface {124}; -//+ -Transfinite Surface {125}; -//+ -Transfinite Surface {126}; -//+ -Transfinite Surface {127}; -//+ -Transfinite Surface {128}; -//+ -Transfinite Surface {129}; -//+ -Transfinite Surface {130}; -//+ -Transfinite Surface {131}; -//+ -Transfinite Surface {132}; -//+ -Transfinite Surface {133}; -//+ -Transfinite Surface {134}; -//+ -Transfinite Surface {135}; -//+ -Transfinite Surface {136}; -//+ -Transfinite Surface {137}; -//+ -Transfinite Surface {138}; -//+ -Transfinite Surface {139}; -//+ -Transfinite Surface {140}; -//+ -Transfinite Surface {141}; -//+ -Transfinite Surface {142}; -//+ -Transfinite Surface {143}; -//+ -Transfinite Surface {144}; -//+ -Transfinite Surface {145}; -//+ -Transfinite Curve { 238, 239, 240, 241, 242, 243, 244, 245, 250, 251, 252, 253, 254, 255, 256, 257, 262, 263, 264, 265, 266, 267, 268, 269, 274, 275, 276, 277, 278, 279, 280, 281} = n_recombine Using Progression 1; -Transfinite Curve {237,246,249, 258,261,270,273,282} = n_recombine / 4 Using Progression 1; - - -Physical Curve("void",328) = {236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283}; - -Recombine Surface "*"; -// Define meshing options -//Mesh.Algorithm = 6; // Specify meshing algorithm (e.g., Delaunay) -//Mesh.ElementOrder = 1; // Specify element order -// Generate the mesh -//Mesh 2; \ No newline at end of file diff --git a/examples_hpc/lattice/mesh/make_lattice_mesh.sh b/examples_hpc/lattice/mesh/make_lattice_mesh.sh deleted file mode 100644 index e9bb36e4..00000000 --- a/examples_hpc/lattice/mesh/make_lattice_mesh.sh +++ /dev/null @@ -1,9 +0,0 @@ -#rm lattice_n20.su2 lattice_n20.con -#rm lattice_n40.su2 lattice_n40.con -#rm lattice_n80.su2 lattice_n80.con -rm lattice_n160.su2 lattice_n160.con - -#gmsh lattice_rectangular_n20.geo -2 -format su2 -save_all -o lattice_n20.su2 -#gmsh lattice_rectangular_n40.geo -2 -format su2 -save_all -o lattice_n40.su2 -#gmsh lattice_rectangular_n80.geo -2 -format su2 -save_all -o lattice_n80.su2 -gmsh lattice_rectangular_n160.geo -2 -format su2 -save_all -o lattice_n160.su2 diff --git a/examples_hpc/lattice/run_all.sh b/examples_hpc/lattice/run_all.sh deleted file mode 100644 index b3c665e7..00000000 --- a/examples_hpc/lattice/run_all.sh +++ /dev/null @@ -1,18 +0,0 @@ -#../../build/KiT-RT lattice_S19_n20.cfg -#../../build/KiT-RT lattice_S29_n20.cfg -#../../build/KiT-RT lattice_S41_n20.cfg -#../../build/KiT-RT lattice_S53_n20.cfg -#../../build/KiT-RT lattice_S65_n20.cfg - - -../../build_singularity/KiT-RT lattice_S19_n40.cfg -../../build_singularity/KiT-RT lattice_S29_n40.cfg -../../build_singularity/KiT-RT lattice_S41_n40.cfg -../../build_singularity/KiT-RT lattice_S53_n40.cfg -../../build_singularity/KiT-RT lattice_S65_n40.cfg - -../../build_singularity/KiT-RT lattice_S19_n80.cfg -../../build_singularity/KiT-RT lattice_S29_n80.cfg -../../build_singularity/KiT-RT lattice_S41_n80.cfg -../../build_singularity/KiT-RT lattice_S53_n80.cfg -../../build_singularity/KiT-RT lattice_S65_n80.cfg \ No newline at end of file diff --git a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg index a363f9f1..18092af8 100644 --- a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg +++ b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg @@ -19,18 +19,19 @@ MESH_FILE = mesh/sym_hohlraum_v2_point01.su2 % ---- Problem specifications ---- % PROBLEM = SYMMETRIC_HOHLRAUM -SPATIAL_DIM = 3 +SPATIAL_DIM = 2 % % ---- Design Parameters --- N_SAMPLING_PTS_LINE_GREEN = 100 % % ---- Solver specifications ---- % +HPC_SOLVER = NO CFL_NUMBER = 0.7 TIME_FINAL = 2 SOLVER = SN_SOLVER RECONS_ORDER = 2 -TIME_INTEGRATION_ORDER = 2 +TIME_INTEGRATION_ORDER = 1 % % ---- Boundary Conditions ---- % @@ -38,15 +39,15 @@ BC_NEUMANN = ( void, inflow ) % % ---- Quadrature ---- % -QUAD_TYPE = LEBEDEV -QUAD_ORDER = 9 +QUAD_TYPE = GAUSS_LEGENDRE_TENSORIZED_2D +QUAD_ORDER = 10 % % ----- Output ---- % VOLUME_OUTPUT = (MINIMAL) -VOLUME_OUTPUT_FREQUENCY = 20 +VOLUME_OUTPUT_FREQUENCY = 0 SCREEN_OUTPUT = ( ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, VAR_ABSORPTION_GREEN) -SCREEN_OUTPUT_FREQUENCY = 20 -HISTORY_OUTPUT = ( ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, VAR_ABSORPTION_GREEN) +SCREEN_OUTPUT_FREQUENCY = 1 +HISTORY_OUTPUT = ( ITER, WALL_TIME, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, MAX_OUTFLOW, TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, VAR_ABSORPTION_GREEN, VAR_ABSORPTION_GREEN_LINE) HISTORY_OUTPUT_FREQUENCY = 1 diff --git a/include/common/config.hpp b/include/common/config.hpp index 9c9ca887..52d8c8cb 100644 --- a/include/common/config.hpp +++ b/include/common/config.hpp @@ -48,9 +48,9 @@ class Config // std::vector _1dIntegrationBounds; /*!< @brief Quadrature Order*/ // Mesh - unsigned _nCells; /*!< @brief Number of cells in the mesh */ - unsigned short _dim; /*!< @brief spatial dimensionality of the mesh/test case */ - bool _forcedConnectivityWrite; /*!< @brief If true, the meshconnectivity is always computed and written to .con file */ + unsigned _nCells; /*!< @brief Number of cells in the mesh */ + unsigned short _dim; /*!< @brief spatial dimensionality of the mesh/test case */ + bool _forcedConnectivityWrite = false; /*!< @brief If true, the meshconnectivity is always computed and written to .con file */ // Boundary Conditions /*!< @brief List of all Pairs (marker, BOUNDARY_TYPE), e.g. (farfield,DIRICHLET). @@ -62,6 +62,7 @@ class Config std::vector _MarkerNeumann; /*!< @brief Neumann BC markers. */ // Solver + bool _HPC; /* Triggers better performinc solvers */ double _CFL; /*!< @brief CFL Number for Solver*/ double _tEnd; /*!< @brief Final Time for Simulation */ PROBLEM_NAME _problemName; /*!< @brief Name of predefined Problem */ @@ -304,12 +305,14 @@ class Config bool inline GetForcedConnectivity() const { return _forcedConnectivityWrite; } // Solver Structure + bool inline GetHPC() const { return _HPC; } + double inline GetCFL() const { return _CFL; } bool inline GetCleanFluxMat() const { return _cleanFluxMat; } ENTROPY_NAME inline GetEntropyName() const { return _entropyName; } unsigned short inline GetMaxMomentDegree() const { return _maxMomentDegree; } PROBLEM_NAME inline GetProblemName() const { return _problemName; } - unsigned inline GetReconsOrder() { return _reconsOrder; } + unsigned inline GetSpatialOrder() { return _reconsOrder; } SOLVER_NAME inline GetSolverName() const { return _solverName; } double inline GetTEnd() const { return _tEnd; } bool inline GetSNAllGaussPts() const { return _allGaussPts; } @@ -330,7 +333,7 @@ class Config std::vector inline GetLatticeScatterIndividual() const { return _dsgnScatterIndividual; } unsigned short inline GetNLatticeScatterIndividual() const { return _nDsgnScatterIndividual; } // Hohlraum - unsigned short inline GetNumProbingCellsLineHohlraum() const{ return _nProbingCellsLineGreenHohlraum; } + unsigned short inline GetNumProbingCellsLineHohlraum() const { return _nProbingCellsLineGreenHohlraum; } // Optimizer double inline GetNewtonOptimizerEpsilon() const { return _optimizerEpsilon; } @@ -343,9 +346,9 @@ class Config double inline GetEntropyDynamicAnsatz() const { return _entropyDynamicClosure; } // Neural Closure - unsigned short inline GetModelMK() const{ return _neuralModel; } - unsigned short inline GetNeuralModelGamma() const{ return _neuralGamma; } - bool inline GetEnforceNeuralRotationalSymmetry()const { return _enforceNeuralRotationalSymmetry; } + unsigned short inline GetModelMK() const { return _neuralModel; } + unsigned short inline GetNeuralModelGamma() const { return _neuralGamma; } + bool inline GetEnforceNeuralRotationalSymmetry() const { return _enforceNeuralRotationalSymmetry; } // Boundary Conditions BOUNDARY_TYPE GetBoundaryType( std::string nameMarker ) const; /*!< @brief Get Boundary Type of given marker */ @@ -356,30 +359,30 @@ class Config // Basis name SPHERICAL_BASIS_NAME inline GetSphericalBasisName() const { return _sphericalBasisName; } // Output Structure - std::vector inline GetVolumeOutput() const{ return _volumeOutput; } - unsigned short inline GetNVolumeOutput() const{ return _nVolumeOutput; } - unsigned short inline GetVolumeOutputFrequency() const{ return _volumeOutputFrequency; } + std::vector inline GetVolumeOutput() const { return _volumeOutput; } + unsigned short inline GetNVolumeOutput() const { return _nVolumeOutput; } + unsigned short inline GetVolumeOutputFrequency() const { return _volumeOutputFrequency; } - std::vector inline GetScreenOutput()const { return _screenOutput; } - unsigned short inline GetNScreenOutput() const{ return _nScreenOutput; } - unsigned short inline GetScreenOutputFrequency() const{ return _screenOutputFrequency; } + std::vector inline GetScreenOutput() const { return _screenOutput; } + unsigned short inline GetNScreenOutput() const { return _nScreenOutput; } + unsigned short inline GetScreenOutputFrequency() const { return _screenOutputFrequency; } - std::vector inline GetHistoryOutput() const{ return _historyOutput; } - unsigned short inline GetNHistoryOutput() const{ return _nHistoryOutput; } - unsigned short inline GetHistoryOutputFrequency() const{ return _historyOutputFrequency; } + std::vector inline GetHistoryOutput() const { return _historyOutput; } + unsigned short inline GetNHistoryOutput() const { return _nHistoryOutput; } + unsigned short inline GetHistoryOutputFrequency() const { return _historyOutputFrequency; } // Data generator - bool inline GetDataGeneratorMode()const { return _dataGeneratorMode; } - SAMPLER_NAME inline GetSamplerName() const{ return _sampler; } - unsigned long inline GetTrainingDataSetSize() const{ return _tainingSetSize; } - bool inline GetSizeByDimension() const{ return _sizeByDimension; } - unsigned long inline GetMaxValFirstMoment()const { return _maxValFirstMoment; } // Deprecated - double GetRealizableSetEpsilonU0() const{ return _RealizableSetEpsilonU0; } - double GetRealizableSetEpsilonU1() const{ return _RealizableSetEpsilonU1; } - bool inline GetNormalizedSampling() const{ return _normalizedSampling; } - bool inline GetAlphaSampling() const{ return _alphaSampling; } - bool inline GetUniformSamlping() const{ return _sampleUniform; } - double inline GetAlphaSamplingBound()const { return _alphaBound; } + bool inline GetDataGeneratorMode() const { return _dataGeneratorMode; } + SAMPLER_NAME inline GetSamplerName() const { return _sampler; } + unsigned long inline GetTrainingDataSetSize() const { return _tainingSetSize; } + bool inline GetSizeByDimension() const { return _sizeByDimension; } + unsigned long inline GetMaxValFirstMoment() const { return _maxValFirstMoment; } // Deprecated + double GetRealizableSetEpsilonU0() const { return _RealizableSetEpsilonU0; } + double GetRealizableSetEpsilonU1() const { return _RealizableSetEpsilonU1; } + bool inline GetNormalizedSampling() const { return _normalizedSampling; } + bool inline GetAlphaSampling() const { return _alphaSampling; } + bool inline GetUniformSamlping() const { return _sampleUniform; } + double inline GetAlphaSamplingBound() const { return _alphaBound; } double inline GetMinimalEVBound() const { return _minEVAlphaSampling; } // double inline GetMinimalSamplingVelocity() { return _minSamplingVelocity; } double inline GetMaximalSamplingVelocity() const { return _maxSamplingVelocity; } @@ -387,7 +390,7 @@ class Config double inline GetMaximalSamplingTemperature() const { return _maxSamplingTemperature; } unsigned short inline GetNSamplingTemperatures() const { return _nTemperatures; } bool inline GetIsMomentSolver() const { return _isMomentSolver; } - unsigned short inline GetRKStages() const { return _rungeKuttaStages; } + unsigned short inline GetTemporalOrder() const { return _rungeKuttaStages; } // ---- Setters for option structure // This section is dangerous diff --git a/include/common/linalg.hpp b/include/common/linalg.hpp new file mode 100644 index 00000000..6cf1e877 --- /dev/null +++ b/include/common/linalg.hpp @@ -0,0 +1,35 @@ +/* set of linear algebra functions*/ +#include +#include + +namespace LinAlg { + +inline double dot( std::vector& vec1, std::vector& vec2, unsigned len ) { + double result = 0.0; + for( unsigned i = 0; i < len; i++ ) { + result += vec1[i] * vec2[i]; + } + return result; +} + +inline double l2_norm( std::vector& vec1, unsigned len ) { + double result = 0.0; + for( unsigned i = 0; i < len; i++ ) { + result += vec1[i] * vec1[i]; + } + return sqrt( result ); +} + +inline double mat_vec( std::vector& mat, std::vector& vec1, std::vector& vec2, unsigned n_row, unsigned n_col ) { + /* dim(mat)=n_row x n_col + dim(vec1)=n_row + dim(vec2)=n_col + */ + for( unsigned i = 0; i < n_row; i++ ) { + for( unsigned j = 0; j < n_col; j++ ) { + vec2[j] += mat[i * n_col + j] * vec1[i]; + } + } +} + +} // namespace LinAlg \ No newline at end of file diff --git a/include/problems/lattice.hpp b/include/problems/lattice.hpp index 91554038..e2cd95b6 100644 --- a/include/problems/lattice.hpp +++ b/include/problems/lattice.hpp @@ -21,6 +21,8 @@ class Lattice_SN : public ProblemBase bool IsAbsorption( const Vector& pos ) const; /*!< @return True if pos is in absorption region, False otherwise */ bool IsSource( const Vector& pos ) const; /*!< @return True if pos is in source region, False otherwise */ + bool IsAbsorption( double x, double y ) const; /*!< @return True if pos is in absorption region, False otherwise */ + protected: void SetGhostCells() override; /*!< @brief Sets vector of ghost cells for boundary conditions */ unsigned GetBlockID( const Vector& pos ) const; /*!< @brief Returns checkerboard field id (0-48, row major) of the Lattice test case */ @@ -48,7 +50,7 @@ class Lattice_Moment : public ProblemBase { private: Vector _sigmaS; /*!< @brief Vector of scattering crosssections len: numCells */ - Vector _sigmaT; /*!< @brief Vector of total crosssections. len: numCells*/ + Vector _sigmaT; /*!< @brief Vector of total crosssections. len: numCells*/ Lattice_Moment() = delete; diff --git a/include/solvers/snsolver_hpc.hpp b/include/solvers/snsolver_hpc.hpp new file mode 100644 index 00000000..6521265e --- /dev/null +++ b/include/solvers/snsolver_hpc.hpp @@ -0,0 +1,214 @@ +#ifndef SNSOLVERHPC_H +#define SNSOLVERHPC_H + +// include Matrix, Vector definitions +#include "common/globalconstants.hpp" +#include "common/typedef.hpp" + +// externals +#include "spdlog/spdlog.h" + +// Forward Declarations +class Config; +class Mesh; +class ProblemBase; + +/*! @brief Base class for all solvers. */ +class SNSolverHPC +{ + + private: + double _currTime; /*!< @brief wall-time after current iteration */ + Config* _settings; /*!< @brief config class for global information */ + Mesh* _mesh; + ProblemBase* _problem; + + // Time + unsigned _nIter; /*!< @brief number of time steps, for non CSD, this equals _nEnergies, for _csd, _maxIter =_nEnergies-1*/ + double _dT; /*!< @brief energy/time step size */ + + // Mesh related members, memory optimized + unsigned _nCells; /*!< @brief number of spatial cells */ + unsigned _nSys; /*!< @brief number of equations in the transport system, i.e. num quad pts */ + unsigned _nq; /*!< @brief number of quadrature points */ + unsigned _nDim; + unsigned _nNbr; + unsigned _nNodes; + + std::vector _areas; /*!< @brief surface area of all spatial cells, + dim(_areas) = _NCells */ + std::vector _normals; /*!< @brief edge normals multiplied by edge length, + dim(_normals) = (_NCells,nEdgesPerCell,spatialDim) */ + std::vector _neighbors; /*!< @brief edge neighbor cell ids, dim(_neighbors) = (_NCells,nEdgesPerCell) */ + std::vector _cellMidPoints; /*!< @brief dim _nCells x _dim */ + + std::vector _interfaceMidPoints; /*!< @brief dim: _nCells x _nEdgesPerCell x _dim */ + std::vector _cellBoundaryTypes; /*!< @brief dim: _nCells x _nEdgesPerCell x _dim */ + std::map> _ghostCells; /*!< @brief Vector of ghost cells for boundary conditions. CAN BE MORE EFFICIENT */ + std::vector _relativeInterfaceMidPt; /*!< @brief dim _nCells * _nNbr * _nDim */ + std::vector _relativeCellVertices; /*!< @brief dim _nCells * _nNbr * _nDim */ + + std::map _ghostCellsReflectingY; /*!< map that indicates if a ghostcell has a fixed value or is a mirroring boundary */ + std::vector _quadratureYReflection; /*!< map that gives a Reflection against the y axis for the velocity ordinates */ + + unsigned _temporalOrder; /*!< @brief temporal order (current: 1 & 2) */ + unsigned _spatialOrder; /*!< @brief spatial order (current: 1 & 2) */ + std::vector _solDx; /*!< @brief dim = _nCells x _nSys x _dim*/ + std::vector _limiter; /*!< @brief dim = _nCells x _nSys */ + + // Scattering, absorption and source + std::vector _sigmaS; /*!< @brief dim: _nCells */ + std::vector _sigmaT; /*!< @brief dim: _nCells */ + std::vector _source; /*!< @brief dim: _nCells x _nSys */ + std::vector _scatteringKernel; /*!< @brief dim: _nSys x _nSys */ + + // quadrature related numbers + std::vector _quadPts; /*!< @brief dim: _nSys x _dim*/ + std::vector _quadWeights; /*!< @brief dim: _nSys*/ + + // Solution related members + std::vector _sol; /*!< @brief dim = _nCells x _nSys */ + std::vector _flux; /*!< @brief dim = _nCells x _nSys */ + + // Output related members + std::vector _scalarFlux; /*!< @brief dim = _nCells */ + + // QOIS + double _mass; + double _rmsFlux; + double _curAbsorptionLattice; /*!< @brief Absorption of particles at Lattice checkerboard regions at current time step */ + double _totalAbsorptionLattice; /*!< @brief Absorption of particles at Lattice checkerboard regions integrated until current time step */ + double _curMaxAbsorptionLattice; /*!< @brief Maximum pointwise absorption of particles at Lattice checkerboard regions until current time step */ + double _curScalarOutflow; /*!< @brief Outflow over whole boundary at current time step */ + double _totalScalarOutflow; /*!< @brief Outflow over whole boundary integrated until current time step */ + double _curMaxOrdinateOutflow; /*!< @brief Maximum ordinate-wise ouftlow over boundary over all time steps */ + std::vector _localMaxOrdinateOutflow; /*!< @brief Maximum ordinate-wise ouftlow over boundary over all time steps */ + + // Hohlraum QOIS + double _totalAbsorptionHohlraumCenter; + double _totalAbsorptionHohlraumVertical; + double _totalAbsorptionHohlraumHorizontal; + double _curAbsorptionHohlraumCenter; + double _curAbsorptionHohlraumVertical; + double _curAbsorptionHohlraumHorizontal; + double _varAbsorptionHohlraumGreen; + std::vector _probingCellsHohlraum; /*!< @brief Indices of cells that contain a probing sensor */ + std::vector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ + + unsigned _nProbingCellsLineGreen; /*!< @brief Number of sampling cells that contain a probing sensor for the sliding window */ + std::vector _probingCellsLineGreen; /*!< @brief Indices of cells that contain a probing sensor for the sliding window */ + std::vector _absorptionValsIntegrated; /*!< @brief Avg Absorption value at the sampleing points of lineGreen */ + std::vector _varAbsorptionValsIntegrated; /*!< @brief Var in Avg Absorption value at the sampleing points of lineGreen */ + + // Design parameters + std::vector _cornerUpperLeftGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) relative to the green center */ + std::vector _cornerLowerLeftGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) relative to the green center */ + std::vector + _cornerUpperRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) relative to the green center */ + std::vector + _cornerLowerRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) relative to the green center */ + + double _widthGreen; /*!< @brief width of the green area */ + double _heightGreen; /*!< @brief height of the green area */ + double _thicknessGreen; /*!< @brief thickness of the green area */ + std::vector _centerGreen; /*!< @brief Center of the Hohlraum */ + + double _redLeftTop; /*!< @brief y coord of the top of the left red area */ + double _redLeftBottom; /*!< @brief y coord of the bottom of the left red area */ + double _redRightTop; /*!< @brief y coord of the top of the right red area */ + double _redRightBottom; /*!< @brief y coord of the bottom of the right red area */ + double _thicknessRedLeft; /*!< @brief thickness of the left red area */ + double _thicknessRedRight; /*!< @brief thickness of the right red area */ + + // Output + std::vector>> _outputFields; /*!< @brief Solver Output: dimensions + (GroupID,FieldID,CellID).*/ + std::vector> _outputFieldNames; /*!< @brief Names of the outputFields: dimensions + (GroupID,FieldID) */ + + std::vector _screenOutputFields; /*!< @brief Solver Output: dimensions (FieldID). */ + std::vector _screenOutputFieldNames; /*!< @brief Names of the outputFields: dimensions (FieldID) */ + + std::vector _historyOutputFields; /*!< @brief Solver Output: dimensions (FieldID). */ + std::vector _historyOutputFieldNames; /*!< @brief Names of the outputFields: dimensions (FieldID) */ + + // ---- Member functions ---- + + // Solver + void FluxOrder1(); + void FluxOrder2(); + + void FVMUpdate(); + + /*! @brief Computes the finite Volume update step for the current iteration + @param idx_iter current (peudo) time iteration */ + void RKUpdate( std::vector& sol0, std::vector& sol_rk ); + + void SetGhostCells(); /*!< @brief Sets vector of ghost cells for + + // Helper + /*! @brief ComputeTimeStep calculates the maximal stable time step using the + cfl number + @param cfl Courant-Friedrichs-Levy condition number */ + double ComputeTimeStep( double cfl ) const; + + // IO + /*! @brief Initializes the output groups and fields of this solver and names + * the fields */ + void PrepareVolumeOutput(); + /*! @brief Function that prepares VTK export and csv export of the current + solver iteration + @param idx_iter current (pseudo) time iteration */ + void WriteVolumeOutput( unsigned idx_iter ); + /*! @brief Save Output solution at given energy (pseudo time) to VTK file. + Write frequency is given by option VOLUME_OUTPUT_FREQUENCY. Always prints + last iteration without iteration affix. + @param idx_iter current (pseudo) time iteration */ + void PrintVolumeOutput( int idx_iter ) const; + /*! @brief Initialized the output fields and their Names for the screenoutput + */ + void PrepareScreenOutput(); + + /*! @brief Function that writes screen and history output fields + @param idx_iter current (pseudo) time iteration */ + void WriteScalarOutput( unsigned idx_iter ); + /*! @brief Prints ScreenOutputFields to Screen and to logger. Write frequency + is given by option SCREEN_OUTPUT_FREQUENCY. Always prints last iteration. + @param idx_iter current (pseudo) time iteration */ + void PrintScreenOutput( unsigned idx_iter ); + /*! @brief Initialized the historyOutputFields and their Names for history + output. Write frequency is given by option HISTORY_OUTPUT_FREQUENCY. Always + prints last iteration. */ + void PrepareHistoryOutput(); + /*! @brief Prints HistoryOutputFields to logger + @param idx_iter current (pseudo) time iteration */ + void PrintHistoryOutput( unsigned idx_iter ); + /*! @brief Pre Solver Screen and Logger Output */ + void DrawPreSolverOutput(); + /*! @brief Post Solver Screen and Logger Output */ + void DrawPostSolverOutput(); + + // Helper + unsigned Idx2D( unsigned idx1, unsigned idx2, unsigned len2 ); + unsigned Idx3D( unsigned idx1, unsigned idx2, unsigned idx3, unsigned len2, unsigned len3 ); + bool IsAbsorptionLattice( double x, double y ) const; + + void SetProbingCellsLineGreen(); + void ComputeQOIsGreenProbingLine(); + std::vector linspace2D( const std::vector& start, const std::vector& end, unsigned num_points ); + + public: + /*! @brief Solver constructor + * @param settings config class that stores all needed config information */ + SNSolverHPC( Config* settings ); + + ~SNSolverHPC(); + + /*! @brief Solve functions runs main iteration loop. Components of the solve + * loop are pure and subclassed by the child solvers. */ + void Solve(); + + /*! @brief Save Output solution to VTK file */ + void PrintVolumeOutput() const; // Only for debugging purposes. +}; +#endif // SNSOLVERHPC_H diff --git a/include/solvers/solverbase.hpp b/include/solvers/solverbase.hpp index 47d53861..8b6e7551 100644 --- a/include/solvers/solverbase.hpp +++ b/include/solvers/solverbase.hpp @@ -75,7 +75,7 @@ class SolverBase // _nCells x nSys. nSys depents on the solver (either moments or quadpts) VectorVector _solDx; /*!< @brief solution gradient in x direction*/ VectorVector _solDy; /*!< @brief solution gradient in y direction*/ - VectorVector _limiter; /*! < @brief slope limiter at cell and system pt */ + VectorVector _limiter; /*!< @brief slope limiter at cell and system pt */ // Output related members std::vector>> _outputFields; /*!< @brief Solver Output: dimensions @@ -108,7 +108,7 @@ class SolverBase virtual void FVMUpdate( unsigned idx_iter ) = 0; /*! @brief Computes the finite Volume update step for the current iteration @param idx_iter current (peudo) time iteration */ - virtual void RKUpdate( VectorVector sol0, VectorVector sol_rk ); + virtual void RKUpdate( VectorVector& sol0, VectorVector& sol_rk ); // Helper /*! @brief ComputeTimeStep calculates the maximal stable time step using the diff --git a/include/toolboxes/reconstructor.hpp b/include/toolboxes/reconstructor.hpp index 4f88d629..ee126369 100644 --- a/include/toolboxes/reconstructor.hpp +++ b/include/toolboxes/reconstructor.hpp @@ -27,7 +27,7 @@ class Reconstructor virtual ~Reconstructor() {} static Reconstructor* Create( Config* settings ); - unsigned inline GetReconsOrder() { return _reconsOrder; } + unsigned inline GetSpatialOrder() { return _reconsOrder; } /*! Method 1: structured developing * @brief Slope of angular flux psi inside a given cell diff --git a/src/common/config.cpp b/src/common/config.cpp index 73c04200..50124351 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -231,6 +231,9 @@ void Config::SetConfigOptions() { AddUnsignedShortOption( "QUAD_ORDER", _quadOrder, 1 ); // Solver related options + /*! @brief HPC_SOLVER \n DESCRIPTION: If true, the SN Solver uses hpc implementation. \n DEFAULT false \ingroup Config */ + AddBoolOption( "HPC_SOLVER", _HPC, false ); + /*! @brief MAX_MOMENT_ORDER \n: DESCRIPTON: Specifies the maximal order of Moments for PN and SN Solver */ AddUnsignedShortOption( "MAX_MOMENT_SOLVER", _maxMomentDegree, 1 ); /*! @brief CFL \n DESCRIPTION: CFL number \n DEFAULT 1.0 @ingroup Config.*/ @@ -252,7 +255,7 @@ void Config::SetConfigOptions() { /*! @brief Runge Kutta Staes \n DESCRIPTION: Sets number of Runge Kutta Stages for time integration \n DEFAULT 1 \ingroup Config */ AddUnsignedShortOption( "TIME_INTEGRATION_ORDER", _rungeKuttaStages, 1 ); - // Problem Relateed Options + // Problem Related Options /*! @brief MaterialDir \n DESCRIPTION: Relative Path to the data directory (used in the ICRU database class), starting from the directory of the * cfg file . \n DEFAULT "../data/material/" \ingroup Config */ AddStringOption( "DATA_DIR", _dataDir, string( "../data/" ) ); @@ -578,7 +581,7 @@ void Config::SetPostprocessing() { ErrorMessages::Error( "CSD_MN_SOLVER only works with Spherical Harmonics currently.", CURRENT_FUNCTION ); } - if( GetReconsOrder() > 2 ) { + if( GetSpatialOrder() > 2 ) { ErrorMessages::Error( "Solvers only work with 1st and 2nd order spatial fluxes.", CURRENT_FUNCTION ); } @@ -626,10 +629,10 @@ void Config::SetPostprocessing() { for( unsigned short idx_volOutput = 0; idx_volOutput < _nVolumeOutput; idx_volOutput++ ) { switch( _solverName ) { case SN_SOLVER: - if( _problemName == PROBLEM_SymmetricHohlraum ) + if( _problemName == PROBLEM_Linesource ) supportedGroups = { MINIMAL, ANALYTIC }; else - supportedGroups = { MINIMAL, ANALYTIC }; + supportedGroups = { MINIMAL }; if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { ErrorMessages::Error( "SN_SOLVER only supports volume output MINIMAL and ANALYTIC.\nPlease check your .cfg file.", @@ -988,6 +991,16 @@ void Config::SetPostprocessing() { for( unsigned i = 0; i < 6; i++ ) _historyOutput.push_back( PROBE_MOMENT_TIME_TRACE ); } } + + if( _problemName == PROBLEM_SymmetricHohlraum ) { + std::vector::iterator it; + it = find( _historyOutput.begin(), _historyOutput.end(), VAR_ABSORPTION_GREEN_LINE ); + if( it != _historyOutput.end() ) { + _historyOutput.erase( it ); + _nHistoryOutput += _nProbingCellsLineGreenHohlraum - 1; // extend the screen output by the number of probing points + for( unsigned i = 0; i < _nProbingCellsLineGreenHohlraum; i++ ) _historyOutput.push_back( VAR_ABSORPTION_GREEN_LINE ); + } + } } // Mesh postprocessing diff --git a/src/common/io.cpp b/src/common/io.cpp index 61224c62..1debf80d 100644 --- a/src/common/io.cpp +++ b/src/common/io.cpp @@ -336,6 +336,7 @@ void LoadConnectivityFromFile( const std::string inputFile, unsigned correctedNodesPerCell = nNodesPerCell; if( count < nNodesPerCell + nNodesPerCell * nDim * 2 + 1 ) { correctedNodesPerCell = nNodesPerCell - 1; + ErrorMessages::Error( "Error opening connectivity file.", CURRENT_FUNCTION ); } std::istringstream iss( line ); diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 6f82b537..7cf3f8e8 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -191,18 +191,20 @@ void Mesh::ComputeConnectivity() { unsigned IDj = neighborsFlat[i]; if( IDi == IDj ) continue; // avoid self assignment if( IDj == _ghostCellID ) { // cell is boundary cell - if( std::find( _cellNeighbors[IDi].begin(), _cellNeighbors[IDi].end(), _ghostCellID ) == _cellNeighbors[IDi].end() ) { - _cellNeighbors[IDi].push_back( _ghostCellID ); - _cellNormals[IDi].push_back( normalsFlat[i] ); - _cellInterfaceMidPoints[IDi].push_back( interfaceMidFlat[i] ); - } + // if( std::find( _cellNeighbors[IDi].begin(), _cellNeighbors[IDi].end(), _ghostCellID ) == _cellNeighbors[IDi].end() ) { + _cellNeighbors[IDi].push_back( _ghostCellID ); + _cellNormals[IDi].push_back( normalsFlat[i] ); + _cellInterfaceMidPoints[IDi].push_back( interfaceMidFlat[i] ); + // temp++; + // } + // std::cout << temp << "\n"; } else { // normal cell neighbor - if( std::find( _cellNeighbors[IDi].begin(), _cellNeighbors[IDi].end(), IDj ) == _cellNeighbors[IDi].end() ) { - _cellNeighbors[IDi].push_back( neighborsFlat[i] ); - _cellNormals[IDi].push_back( normalsFlat[i] ); - _cellInterfaceMidPoints[IDi].push_back( interfaceMidFlat[i] ); - } + // if( std::find( _cellNeighbors[IDi].begin(), _cellNeighbors[IDi].end(), IDj ) == _cellNeighbors[IDi].end() ) { + _cellNeighbors[IDi].push_back( neighborsFlat[i] ); + _cellNormals[IDi].push_back( normalsFlat[i] ); + _cellInterfaceMidPoints[IDi].push_back( interfaceMidFlat[i] ); + //} } } @@ -361,15 +363,15 @@ void Mesh::ComputeLimiter( // Compute value at interface midpoint, called gaussPt double gaussPt = 0.0; // gauss point is at cell vertex - gaussPt = 0.5 * ( solDx[idx_cell][idx_sys] * ( _nodes[_cells[idx_cell][idx_nbr]][0] - _cellMidPoints[idx_cell][0] ) + - solDy[idx_cell][idx_sys] * ( _nodes[_cells[idx_cell][idx_nbr]][1] - _cellMidPoints[idx_cell][1] ) ); + gaussPt = ( solDx[idx_cell][idx_sys] * ( _nodes[_cells[idx_cell][idx_nbr]][0] - _cellMidPoints[idx_cell][0] ) + + solDy[idx_cell][idx_sys] * ( _nodes[_cells[idx_cell][idx_nbr]][1] - _cellMidPoints[idx_cell][1] ) ); // Compute limiter input if( std::abs( gaussPt ) > eps ) { if( gaussPt > 0.0 ) { r = ( maxSol - sol[idx_cell][idx_sys] ) / gaussPt; } - else if( gaussPt < 0.0 ) { + else { r = ( minSol - sol[idx_cell][idx_sys] ) / gaussPt; } } diff --git a/src/fluxes/upwindflux.cpp b/src/fluxes/upwindflux.cpp index 8f3e9041..2caac866 100644 --- a/src/fluxes/upwindflux.cpp +++ b/src/fluxes/upwindflux.cpp @@ -14,14 +14,13 @@ double UpwindFlux::Flux( const Vector& Omega, double psiL, double psiR, const Ve } void UpwindFlux::Flux( const VectorVector& quadPts, const Vector& psiL, const Vector& psiR, Vector& flux, const Vector& n, unsigned n_sys ) { - double inner; // Only use x and y axis in 2d case, minus because y axis is flipped for some reason + double inner; // Only use x and y axis in 2d case, minus because y axis is flipped for some reason - for (unsigned idx_q = 0; idx_q < n_sys; idx_q++){ - inner = quadPts[idx_q][0] * n[0] + quadPts[idx_q][1] * n[1]; + for( unsigned idx_q = 0; idx_q < n_sys; idx_q++ ) { + inner = quadPts[idx_q][0] * n[0] + quadPts[idx_q][1] * n[1]; - flux[idx_q] += (inner > 0) ? inner * psiL[idx_q] : inner * psiR[idx_q]; - - } + flux[idx_q] += ( inner > 0 ) ? inner * psiL[idx_q] : inner * psiR[idx_q]; + } } double UpwindFlux::FluxXZ( const Vector& Omega, double psiL, double psiR, const Vector& n ) const { diff --git a/src/main.cpp b/src/main.cpp index 4390e03a..57e1f389 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -10,7 +10,7 @@ #include "common/config.hpp" #include "common/io.hpp" #include "solvers/solverbase.hpp" - +#include "solvers/snsolver_hpc.hpp" #include "datagenerator/datageneratorbase.hpp" #ifdef BUILD_GUI @@ -45,11 +45,20 @@ int main( int argc, char** argv ) { } else { // Build solver - SolverBase* solver = SolverBase::Create( config ); - // Run solver and export - solver->Solve(); - solver->PrintVolumeOutput(); - delete solver; + if (config->GetHPC()){ + SNSolverHPC* solver = new SNSolverHPC( config ); + // Run solver and export + solver->Solve(); + solver->PrintVolumeOutput(); + delete solver; + } + else{ + SolverBase* solver = SolverBase::Create( config ); + // Run solver and export + solver->Solve(); + solver->PrintVolumeOutput(); + delete solver; + } } delete config; diff --git a/src/problems/halflattice.cpp b/src/problems/halflattice.cpp index c4279d18..ba994093 100644 --- a/src/problems/halflattice.cpp +++ b/src/problems/halflattice.cpp @@ -71,7 +71,7 @@ std::vector HalfLattice_SN::GetExternalSource( const Vector& /*ene } VectorVector HalfLattice_SN::SetupIC() { - VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-10 ) ); + VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-15 ) ); return psi; } @@ -198,6 +198,7 @@ const Vector& HalfLattice_SN::GetGhostCellValue( int idx_cell, const Vector& cel double HalfLattice_SN::GetCurAbsorptionLattice() { return _curAbsorptionLattice; } double HalfLattice_SN::GetTotalAbsorptionLattice() { return _totalAbsorptionLattice; } double HalfLattice_SN::GetMaxAbsorptionLattice() { return _curMaxAbsorptionLattice; } + // QOI setter void HalfLattice_SN::ComputeTotalAbsorptionLattice( double dT ) { _totalAbsorptionLattice += _curAbsorptionLattice * dT; } diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index 769e1b3a..4c258c5b 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -71,7 +71,7 @@ std::vector Lattice_SN::GetExternalSource( const Vector& /*energie } VectorVector Lattice_SN::SetupIC() { - VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-10 ) ); + VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-15 ) ); return psi; } @@ -91,6 +91,22 @@ bool Lattice_SN::IsAbsorption( const Vector& pos ) const { return false; } +bool Lattice_SN::IsAbsorption( double x, double y ) const { + // Check whether pos is inside absorbing squares + double xy_corrector = -3.5; + std::vector lbounds{ 1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector }; + std::vector ubounds{ 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector }; + for( unsigned k = 0; k < lbounds.size(); ++k ) { + for( unsigned l = 0; l < lbounds.size(); ++l ) { + if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; + if( x >= lbounds[k] && x <= ubounds[k] && y >= lbounds[l] && y <= ubounds[l] ) { + return true; + } + } + } + return false; +} + unsigned Lattice_SN::GetBlockID( const Vector& pos ) const { double xy_corrector = 3.5; int block_x = int( pos[0] + xy_corrector ); @@ -119,7 +135,7 @@ void Lattice_SN::SetGhostCells() { for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { - ghostCellMap.insert( { idx_cell, void_ghostcell } ); + ghostCellMap[idx_cell] = void_ghostcell; } } _ghostCells = ghostCellMap; diff --git a/src/problems/linesource.cpp b/src/problems/linesource.cpp index 94d70b61..8fc22ac9 100644 --- a/src/problems/linesource.cpp +++ b/src/problems/linesource.cpp @@ -129,7 +129,7 @@ VectorVector LineSource_SN::SetupIC() { for( unsigned j = 0; j < cellMids.size(); ++j ) { double x = cellMids[j][0]; double y = cellMids[j][1]; - psi[j] = Vector( _settings->GetNQuadPoints(), 1.0 / ( 4.0 * M_PI * t ) * std::exp( -( x * x + y * y ) / ( 4 * t ) ) ) / ( 4 * M_PI ); + psi[j] = Vector( _settings->GetNQuadPoints(), 10.0 / ( 4.0 * M_PI * t ) * std::exp( -( x * x + y * y ) / ( 4 * t ) ) ) / ( 4 * M_PI ); } return psi; } diff --git a/src/quadratures/qgausslegendretensorized2D.cpp b/src/quadratures/qgausslegendretensorized2D.cpp index 5f26bfd6..b1fc62cf 100644 --- a/src/quadratures/qgausslegendretensorized2D.cpp +++ b/src/quadratures/qgausslegendretensorized2D.cpp @@ -58,7 +58,7 @@ void QGaussLegendreTensorized2D::SetPointsAndWeights() { } unsigned range = std::floor( _order / 2.0 ); // comment (steffen): Only half of the points, due to projection - double normalizationFactor = .5; + double normalizationFactor = 2; // resize points and weights _pointsKarth.resize( _nq ); diff --git a/src/solvers/snsolver.cpp b/src/solvers/snsolver.cpp index a5c5e801..527e48cb 100644 --- a/src/solvers/snsolver.cpp +++ b/src/solvers/snsolver.cpp @@ -112,28 +112,28 @@ void SNSolver::FluxUpdatePseudo2D() { // Loop over all spatial cells #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - double solL; - double solR; // Dirichlet cells stay at IC, farfield assumption if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; - // Reset temporary variable - _solNew[idx_cell]*= 0.0; //blaze op + // Reset temporary variable + _solNew[idx_cell] *= 0.0; // blaze op - // Loop over all neighbor cells (edges) of cell j and compute numerical - // fluxes - for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { - // store flux contribution on psiNew_sigmaS to save memory - if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { - _g->Flux( _quadPoints, _sol[idx_cell], _problem->GetGhostCellValue( idx_cell, _sol[idx_cell] ), - _solNew[idx_cell], - _normals[idx_cell][idx_nbr], _nq ); - } - else { - // first order solver - _g->Flux( _quadPoints, _sol[idx_cell], _sol[ _neighbors[idx_cell][idx_nbr]], _solNew[idx_cell],_normals[idx_cell][idx_nbr], _nq ); - } + // Loop over all neighbor cells (edges) of cell j and compute numerical + // fluxes + for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { + // store flux contribution on psiNew_sigmaS to save memory + if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { + _g->Flux( _quadPoints, + _sol[idx_cell], + _problem->GetGhostCellValue( idx_cell, _sol[idx_cell] ), + _solNew[idx_cell], + _normals[idx_cell][idx_nbr], + _nq ); + } + else { + // first order solver + _g->Flux( _quadPoints, _sol[idx_cell], _sol[_neighbors[idx_cell][idx_nbr]], _solNew[idx_cell], _normals[idx_cell][idx_nbr], _nq ); } - + } } } else if( _reconsOrder == 2 ) { @@ -145,30 +145,30 @@ void SNSolver::FluxUpdatePseudo2D() { // Dirichlet cells stay at IC, farfield assumption if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // Loop over all ordinates - _solNew[idx_cell] *= 0.0; // blaze operation - // Loop over all neighbor cells (edges) of cell j and compute numerical - // fluxes + _solNew[idx_cell] *= 0.0; // blaze operation + // Loop over all neighbor cells (edges) of cell j and compute numerical + // fluxes for( unsigned idx_nbr = 0; idx_nbr < _neighbors[idx_cell].size(); ++idx_nbr ) { // store flux contribution on psiNew_sigmaS to save memory if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[idx_cell][idx_nbr] == _nCells ) { - _g->Flux( _quadPoints, _sol[idx_cell], _problem->GetGhostCellValue( idx_cell, _sol[idx_cell] ), - _solNew[idx_cell], - _normals[idx_cell][idx_nbr], _nq ); + _g->Flux( _quadPoints, + _sol[idx_cell], + _problem->GetGhostCellValue( idx_cell, _sol[idx_cell] ), + _solNew[idx_cell], + _normals[idx_cell][idx_nbr], + _nq ); } else { unsigned int nbr_glob = _neighbors[idx_cell][idx_nbr]; // global idx of neighbor cell // left status of interface - solL = _sol[idx_cell] + - _limiter[idx_cell] * - (_solDx[idx_cell] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + - _solDy[idx_cell] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); - + solL = _sol[idx_cell] + + _limiter[idx_cell] * ( _solDx[idx_cell] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[idx_cell][0] ) + + _solDy[idx_cell] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[idx_cell][1] ) ); solR = _sol[nbr_glob] + - _limiter[nbr_glob] * - ( _solDx[nbr_glob]* ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + - _solDy[nbr_glob] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); + _limiter[nbr_glob] * ( _solDx[nbr_glob] * ( _interfaceMidPoints[idx_cell][idx_nbr][0] - _cellMidPoints[nbr_glob][0] ) + + _solDy[nbr_glob] * ( _interfaceMidPoints[idx_cell][idx_nbr][1] - _cellMidPoints[nbr_glob][1] ) ); // flux evaluation _g->Flux( _quadPoints, solL, solR, _solNew[idx_cell], _normals[idx_cell][idx_nbr], _nq ); @@ -185,19 +185,19 @@ void SNSolver::FVMUpdate( unsigned idx_iter ) { // Dirichlet cells stay at IC, farfield assumption if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // loop over all ordinates - //for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { - // time update angular flux with numerical flux and total scattering cross - // section - _solNew[idx_cell] = _sol[idx_cell] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell] - - _dT * _sigmaT[0][idx_cell] * _sol[idx_cell]; + // for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { + // time update angular flux with numerical flux and total scattering cross + // section + + _solNew[idx_cell] = _sol[idx_cell] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell] - _dT * _sigmaT[0][idx_cell] * _sol[idx_cell]; //} // compute scattering effects _solNew[idx_cell] += _dT * _sigmaS[0][idx_cell] * _scatteringKernel * _sol[idx_cell]; // multiply scattering matrix with psi // Source Term - //if( _Q[0][idx_cell].size() == 1u ) // isotropic source + // if( _Q[0][idx_cell].size() == 1u ) // isotropic source _solNew[idx_cell] += _dT * _Q[0][idx_cell][0]; - //else - // _solNew[idx_cell] += _dT * _Q[0][idx_cell]; + // else + // _solNew[idx_cell] += _dT * _Q[0][idx_cell]; } } else { @@ -206,11 +206,10 @@ void SNSolver::FVMUpdate( unsigned idx_iter ) { // Dirichlet cells stay at IC, farfield assumption if( _boundaryCells[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) continue; // loop over all ordinates - //for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { - // time update angular flux with numerical flux and total scattering cross - // section - _solNew[idx_cell] = _sol[idx_cell] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell] - - _dT * _sigmaT[idx_iter][idx_cell] * _sol[idx_cell]; + // for( unsigned idx_quad = 0; idx_quad < _nq; ++idx_quad ) { + // time update angular flux with numerical flux and total scattering cross + // section + _solNew[idx_cell] = _sol[idx_cell] - ( _dT / _areas[idx_cell] ) * _solNew[idx_cell] - _dT * _sigmaT[idx_iter][idx_cell] * _sol[idx_cell]; // } // compute scattering effects _solNew[idx_cell] += _dT * _sigmaS[idx_iter][idx_cell] * _scatteringKernel * _sol[idx_cell]; // multiply scattering matrix with psi diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp new file mode 100644 index 00000000..ef9a7f63 --- /dev/null +++ b/src/solvers/snsolver_hpc.cpp @@ -0,0 +1,1262 @@ +#include "solvers/snsolver_hpc.hpp" +#include "common/config.hpp" +#include "common/io.hpp" +#include "common/mesh.hpp" +#include "kernels/scatteringkernelbase.hpp" +#include "problems/problembase.hpp" +#include "quadratures/quadraturebase.hpp" +#include "toolboxes/textprocessingtoolbox.hpp" + +SNSolverHPC::SNSolverHPC( Config* settings ) { + _settings = settings; + _currTime = 0.0; + + // Create Mesh + _mesh = LoadSU2MeshFromFile( settings ); + _settings->SetNCells( _mesh->GetNumCells() ); + auto quad = QuadratureBase::Create( settings ); + _settings->SetNQuadPoints( quad->GetNq() ); + + _problem = ProblemBase::Create( _settings, _mesh, quad ); + + _nCells = _mesh->GetNumCells(); + _nNbr = _mesh->GetNumNodesPerCell(); + _nDim = _mesh->GetDim(); + _nNodes = _mesh->GetNumNodes(); + + _nq = quad->GetNq(); + _nSys = _nq; + + _spatialOrder = _settings->GetSpatialOrder(); + _temporalOrder = _settings->GetTemporalOrder(); + + _areas = std::vector( _nCells ); + _normals = std::vector( _nCells * _nNbr * _nDim ); + _neighbors = std::vector( _nCells * _nNbr ); + _cellMidPoints = std::vector( _nCells * _nDim ); + _interfaceMidPoints = std::vector( _nCells * _nNbr * _nDim ); + _cellBoundaryTypes = std::vector( _nCells ); + _relativeInterfaceMidPt = std::vector( _nCells * _nNbr * _nDim ); + _relativeCellVertices = std::vector( _nCells * _nNbr * _nDim ); + + // Slope + _solDx = std::vector( _nCells * _nSys * _nDim ); + _limiter = std::vector( _nCells * _nSys ); + + // Physics + _sigmaS = std::vector( _nCells ); + _sigmaT = std::vector( _nCells ); + _source = std::vector( _nCells * _nSys ); + _scatteringKernel = std::vector( _nSys * _nSys ); + + // Quadrature + _quadPts = std::vector( _nSys * _nDim ); + _quadWeights = std::vector( _nSys ); + _scatteringKernel = std::vector( _nSys * _nSys ); + _quadratureYReflection = std::vector( _nSys ); + + // Solution + _sol = std::vector( _nCells * _nSys ); + _flux = std::vector( _nCells * _nSys ); + + _scalarFlux = std::vector( _nCells ); + _localMaxOrdinateOutflow = std::vector( _nCells ); + + auto areas = _mesh->GetCellAreas(); + auto neighbors = _mesh->GetNeighbours(); + auto normals = _mesh->GetNormals(); + auto cellMidPts = _mesh->GetCellMidPoints(); + auto interfaceMidPts = _mesh->GetInterfaceMidPoints(); + auto boundaryTypes = _mesh->GetBoundaryTypes(); + auto nodes = _mesh->GetNodes(); + auto cells = _mesh->GetCells(); + + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + _areas[idx_cell] = areas[idx_cell]; + } + + _dT = ComputeTimeStep( _settings->GetCFL() ); + _nIter = unsigned( _settings->GetTEnd() / _dT ) + 1; + + auto quadPoints = quad->GetPoints(); + auto quadWeights = quad->GetWeights(); + + auto initialCondition = _problem->SetupIC(); + auto sigmaT = _problem->GetTotalXS( Vector( _nIter, 0.0 ) ); + auto sigmaS = _problem->GetScatteringXS( Vector( _nIter, 0.0 ) ); + auto source = _problem->GetExternalSource( Vector( _nIter, 0.0 ) ); + + // Copy to everything to solver + _mass = 0; + + ScatteringKernel* k = ScatteringKernel::CreateScatteringKernel( settings->GetKernelName(), quad ); + auto scatteringKernel = k->GetScatteringKernel(); + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + for( unsigned idx_dim = 0; idx_dim < _nDim; idx_dim++ ) { + _quadPts[Idx2D( idx_sys, idx_dim, _nDim )] = quadPoints[idx_sys][idx_dim]; + } + _quadWeights[idx_sys] = quadWeights[idx_sys]; + + for( unsigned idx_sys2 = 0; idx_sys2 < _nSys; idx_sys2++ ) { + _scatteringKernel[Idx2D( idx_sys, idx_sys2, _nSys )] = scatteringKernel( idx_sys, idx_sys2 ); + } + } + + // #pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + _cellBoundaryTypes[idx_cell] = boundaryTypes[idx_cell]; + + for( unsigned idx_dim = 0; idx_dim < _nDim; idx_dim++ ) { + _cellMidPoints[Idx2D( idx_cell, idx_dim, _nDim )] = cellMidPts[idx_cell][idx_dim]; + } + + for( unsigned idx_nbr = 0; idx_nbr < _nNbr; idx_nbr++ ) { + + _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )] = neighbors[idx_cell][idx_nbr]; + + for( unsigned idx_dim = 0; idx_dim < _nDim; idx_dim++ ) { + _normals[Idx3D( idx_cell, idx_nbr, idx_dim, _nNbr, _nDim )] = normals[idx_cell][idx_nbr][idx_dim]; + _interfaceMidPoints[Idx3D( idx_cell, idx_nbr, idx_dim, _nNbr, _nDim )] = interfaceMidPts[idx_cell][idx_nbr][idx_dim]; + _relativeInterfaceMidPt[Idx3D( idx_cell, idx_nbr, idx_dim, _nNbr, _nDim )] = + _interfaceMidPoints[Idx3D( idx_cell, idx_nbr, idx_dim, _nNbr, _nDim )] - _cellMidPoints[Idx2D( idx_cell, idx_dim, _nDim )]; + _relativeCellVertices[Idx3D( idx_cell, idx_nbr, idx_dim, _nNbr, _nDim )] = + nodes[cells[idx_cell][idx_nbr]][idx_dim] - cellMidPts[idx_cell][idx_dim]; + } + } + + _sigmaS[idx_cell] = sigmaS[0][idx_cell]; + _sigmaT[idx_cell] = sigmaT[0][idx_cell]; + _scalarFlux[idx_cell] = 0; + + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + _source[Idx2D( idx_cell, idx_sys, _nSys )] = source[0][idx_cell][0]; // CAREFUL HERE hardcoded to isotropic source + _sol[Idx2D( idx_cell, idx_sys, _nSys )] = initialCondition[idx_cell][idx_sys]; + + _scalarFlux[idx_cell] += _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; + } + _mass += _scalarFlux[idx_cell] * _areas[idx_cell]; + } + + SetGhostCells(); // ONLY FOR LATTICE AND HALF LATTICE + + PrepareScreenOutput(); // Screen Output + PrepareHistoryOutput(); // History Output + + delete quad; + delete k; + + // Initialiye QOIS + _mass = 0; + _rmsFlux = 0; + + // Lattice + _curAbsorptionLattice = 0; + _totalAbsorptionLattice = 0; + _curMaxAbsorptionLattice = 0; + _curScalarOutflow = 0; + _totalScalarOutflow = 0; + _curMaxOrdinateOutflow = 0; + + // Hohlraum + _totalAbsorptionHohlraumCenter = 0; + _totalAbsorptionHohlraumVertical = 0; + _totalAbsorptionHohlraumHorizontal = 0; + _curAbsorptionHohlraumCenter = 0; + _curAbsorptionHohlraumVertical = 0; + _curAbsorptionHohlraumHorizontal = 0; + _varAbsorptionHohlraumGreen = 0; + + _probingCellsHohlraum = { + _mesh->GetCellOfKoordinate( -0.4, 0. ), + _mesh->GetCellOfKoordinate( 0.4, 0. ), + _mesh->GetCellOfKoordinate( 0., -0.6 ), + _mesh->GetCellOfKoordinate( 0., 0.6 ), + }; + _probingMoments = std::vector( 12, 0. ); + + // Red + _redLeftTop = 0.4; + _redLeftBottom = -0.4; + _redRightTop = 0.4; + _redRightBottom = -0.4; + _thicknessRedLeft = 0.05; + _thicknessRedRight = 0.05; + // Green + _widthGreen = 0.4; + _heightGreen = 0.8; + _thicknessGreen = 0.05; + _centerGreen = { 0.0, 0.0 }; + + _cornerUpperLeftGreen = { -0.2 + _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; + _cornerLowerLeftGreen = { -0.2 + _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; + _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; + _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; + + std::cout << "Solver initialized!" << std::endl; + + _nProbingCellsLineGreen = _settings->GetNumProbingCellsLineHohlraum(); + SetProbingCellsLineGreen(); + std::cout << "Probing cells initialized!" << std::endl; + + _absorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); + _varAbsorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); +} + +SNSolverHPC::~SNSolverHPC() { + delete _mesh; + delete _problem; +} + +void SNSolverHPC::Solve() { + + // --- Preprocessing --- + PrepareVolumeOutput(); + + DrawPreSolverOutput(); + + // Create Backup solution for Runge Kutta + // std::vector solRK0 = _sol; + + auto start = std::chrono::high_resolution_clock::now(); // Start timing + + std::chrono::duration duration; + // Loop over energies (pseudo-time of continuous slowing down approach) + for( unsigned iter = 0; iter < _nIter; iter++ ) { + if( iter == _nIter - 1 ) { // last iteration + _dT = _settings->GetTEnd() - iter * _dT; + // if( _temporalOrder == 2 ) _dT /= 2.0; + } + if( _temporalOrder == 2 ) { + std::vector solRK0( _sol ); + ( _spatialOrder == 2 ) ? FluxOrder2() : FluxOrder1(); + FVMUpdate(); + ( _spatialOrder == 2 ) ? FluxOrder2() : FluxOrder1(); + FVMUpdate(); +#pragma omp parallel for + for( unsigned i = 0; i < _nCells; ++i ) { + _sol[i] = 0.5 * ( solRK0[i] + _sol[i] ); // Solution averaging with HEUN + } + } + else { + ( _spatialOrder == 2 ) ? FluxOrder2() : FluxOrder1(); + FVMUpdate(); + } + + // --- Wall time measurement + duration = std::chrono::high_resolution_clock::now() - start; + _currTime = std::chrono::duration_cast>( duration ).count(); + + // --- Runge Kutta Timestep --- + // if( _temporalOrder == 2 ) RKUpdate( solRK0, _sol ); + // --- Write Output --- + WriteVolumeOutput( iter ); + WriteScalarOutput( iter ); + + // --- Update Scalar Fluxes + + // --- Print Output --- + PrintScreenOutput( iter ); + PrintHistoryOutput( iter ); + PrintVolumeOutput( iter ); + } + + // --- Postprocessing --- + + DrawPostSolverOutput(); +} + +void SNSolverHPC::RKUpdate( std::vector& sol_0, std::vector& sol_rk ) { +#pragma omp parallel for + for( unsigned i = 0; i < _nCells * _nSys; ++i ) { + _sol[i] = 0.5 * ( sol_0[i] + sol_rk[i] ); + } +} + +void SNSolverHPC::PrintVolumeOutput() const { ExportVTK( _settings->GetOutputFile(), _outputFields, _outputFieldNames, _mesh ); } + +void SNSolverHPC::PrintVolumeOutput( int idx_iter ) const { + if( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) { + ExportVTK( _settings->GetOutputFile() + "_" + std::to_string( idx_iter ), _outputFields, _outputFieldNames, _mesh ); // slow + } + if( idx_iter == (int)_nIter - 1 ) { // Last iteration write without suffix. + ExportVTK( _settings->GetOutputFile(), _outputFields, _outputFieldNames, _mesh ); + } +} + +void SNSolverHPC::FluxOrder2() { + + double const eps = 1e-10; + +#pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { // Second order information for Flux + unsigned idx_nbr_glob = 0; + if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NONE ) { // skip ghost cells + + // #pragma omp simd + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + double r; + _limiter[Idx2D( idx_cell, idx_sys, _nSys )] = 1.; // limiter should be zero at boundary + _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] = 0.; + _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] = 0.; + + double minSol = _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + double maxSol = minSol; + double solInterfaceAvg = 0.0; + double gaussPoint = 0; + for( unsigned idx_nbr = 0; idx_nbr < _nNbr; ++idx_nbr ) { // Compute slopes and mininum and maximum + idx_nbr_glob = _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )]; + + // Slopes + solInterfaceAvg = 0.5 * ( _sol[Idx2D( idx_cell, idx_sys, _nSys )] + _sol[Idx2D( idx_nbr_glob, idx_sys, _nSys )] ); + _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] += solInterfaceAvg * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )]; + _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] += solInterfaceAvg * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; + + // Compute ptswise max and minimum solultion values of current and neighbor cells + maxSol = std::max( _sol[Idx2D( idx_nbr_glob, idx_sys, _nSys )], maxSol ); + minSol = std::min( _sol[Idx2D( idx_nbr_glob, idx_sys, _nSys )], minSol ); + } + _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] /= _areas[idx_cell]; + _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] /= _areas[idx_cell]; + + for( unsigned idx_nbr = 0; idx_nbr < _nNbr; idx_nbr++ ) { // Compute limiter, see https://arxiv.org/pdf/1710.07187.pdf + + // Compute test value at cell vertex, called gaussPt + gaussPoint = + _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] * _relativeCellVertices[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + + _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] * _relativeCellVertices[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; + + // BARTH-JESPERSEN LIMITER + r = ( gaussPoint > 0 ) ? std::min( ( maxSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )] ) / ( gaussPoint + eps ), 1.0 ) + : std::min( ( minSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )] ) / ( gaussPoint - eps ), 1.0 ); + + r = ( std::abs( gaussPoint ) < eps ) ? 1 : r; + + _limiter[Idx2D( idx_cell, idx_sys, _nSys )] = std::min( r, _limiter[Idx2D( idx_cell, idx_sys, _nSys )] ); + + // VENKATAKRISHNAN LIMITER + // double delta1Max = maxSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + // double delta1Min = minSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + // + // r = ( gaussPoint > 0 ) ? ( ( delta1Max * delta1Max + _areas[idx_cell] ) * gaussPoint + 2 * gaussPoint * gaussPoint * delta1Max + // ) / + // ( delta1Max * delta1Max + 2 * gaussPoint * gaussPoint + delta1Max * gaussPoint + _areas[idx_cell] ) + // / ( gaussPoint + eps ) + // : ( ( delta1Min * delta1Min + _areas[idx_cell] ) * gaussPoint + 2 * gaussPoint * gaussPoint * delta1Min ) + // / + // ( delta1Min * delta1Min + 2 * gaussPoint * gaussPoint + delta1Min * gaussPoint + _areas[idx_cell] ) + // / ( gaussPoint - eps ); + // + // r = ( std::abs( gaussPoint ) < eps ) ? 1 : r; + // + //_limiter[Idx2D( idx_cell, idx_sys, _nSys )] = std::min( r, _limiter[Idx2D( idx_cell, idx_sys, _nSys )] ); + } + } + } + else { +#pragma omp simd + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + _limiter[Idx2D( idx_cell, idx_sys, _nSys )] = 0.; // limiter should be zero at boundary + _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] = 0.; + _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] = 0.; + } + } + } + +#pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + +#pragma omp simd + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + _flux[Idx2D( idx_cell, idx_sys, _nSys )] = 0.; + } + + // Fluxes + for( unsigned idx_nbr = 0; idx_nbr < _nNbr; ++idx_nbr ) { + if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )] == _nCells ) { +#pragma omp simd + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; + if( localInner > 0 ) { + _flux[Idx2D( idx_cell, idx_sys, _nSys )] += localInner * _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + } + else { + double ghostCellValue = ( _ghostCellsReflectingY[idx_cell] ) + ? 0.0 * _sol[Idx2D( idx_cell, _quadratureYReflection[idx_sys], _nSys )] // Relecting boundary + : _ghostCells[idx_cell][idx_sys]; // fixed boundary + _flux[Idx2D( idx_cell, idx_sys, _nSys )] += localInner * ghostCellValue; + } + } + } + else { +// Second order +#pragma omp simd + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + // store flux contribution on psiNew_sigmaS to save memory + unsigned idx_nbr_glob = _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )]; // global idx of neighbor cell + double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; + + _flux[Idx2D( idx_cell, idx_sys, _nSys )] += + ( localInner > 0 ) ? localInner * ( _sol[Idx2D( idx_cell, idx_sys, _nSys )] + + _limiter[Idx2D( idx_cell, idx_sys, _nSys )] * + ( _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] * + _relativeInterfaceMidPt[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + + _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] * + _relativeInterfaceMidPt[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )] ) ) + : localInner * ( _sol[Idx2D( idx_nbr_glob, idx_sys, _nSys )] + + _limiter[Idx2D( idx_nbr_glob, idx_sys, _nSys )] * + ( _solDx[Idx3D( idx_nbr_glob, idx_sys, 0, _nSys, _nDim )] * + ( _interfaceMidPoints[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] - + _cellMidPoints[Idx2D( idx_nbr_glob, 0, _nDim )] ) + + _solDx[Idx3D( idx_nbr_glob, idx_sys, 1, _nSys, _nDim )] * + ( _interfaceMidPoints[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )] - + _cellMidPoints[Idx2D( idx_nbr_glob, 1, _nDim )] ) ) ); + } + } + } + } +} + +void SNSolverHPC::FluxOrder1() { + +#pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + +#pragma omp simd + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + _flux[Idx2D( idx_cell, idx_sys, _nSys )] = 0.0; // Reset temporary variable + } + + // Fluxes + for( unsigned idx_nbr = 0; idx_nbr < _nNbr; ++idx_nbr ) { + if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )] == _nCells ) { +#pragma omp simd + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; + if( localInner > 0 ) { + _flux[Idx2D( idx_cell, idx_sys, _nSys )] += localInner * _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + } + else { + double ghostCellValue = ( _ghostCellsReflectingY[idx_cell] ) + ? _sol[Idx2D( idx_cell, _quadratureYReflection[idx_sys], _nSys )] // Relecting boundary + : _ghostCells[idx_cell][idx_sys]; // fixed boundary + _flux[Idx2D( idx_cell, idx_sys, _nSys )] += localInner * ghostCellValue; + } + } + } + else { + unsigned nbr_glob = _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )]; // global idx of neighbor cell +#pragma omp simd + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + + double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; + + _flux[Idx2D( idx_cell, idx_sys, _nSys )] += ( localInner > 0 ) ? localInner * _sol[Idx2D( idx_cell, idx_sys, _nSys )] + : localInner * _sol[Idx2D( nbr_glob, idx_sys, _nSys )]; + } + } + } + } +} + +void SNSolverHPC::FVMUpdate() { + _mass = 0.0; + _rmsFlux = 0.0; + _curAbsorptionLattice = 0.0; + _curScalarOutflow = 0.0; + _curAbsorptionHohlraumCenter = 0.0; // Green and blue areas of symmetric hohlraum + _curAbsorptionHohlraumVertical = 0.0; // Red areas of symmetric hohlraum + _curAbsorptionHohlraumHorizontal = 0.0; // Black areas of symmetric hohlraum + _varAbsorptionHohlraumGreen = 0.0; + double a_g = 0.0; + +#pragma omp parallel for reduction( + : _mass, \ + _rmsFlux, \ + _curAbsorptionLattice, \ + _curScalarOutflow, \ + _curAbsorptionHohlraumCenter, \ + _curAbsorptionHohlraumVertical, \ + _curAbsorptionHohlraumHorizontal, \ + a_g ) reduction( max : _curMaxOrdinateOutflow, _curMaxAbsorptionLattice ) + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + +#pragma omp simd + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + // Upate + _sol[Idx2D( idx_cell, idx_sys, _nSys )] = + ( 1 - _dT * _sigmaT[idx_cell] ) * _sol[Idx2D( idx_cell, idx_sys, _nSys )] - + _dT / _areas[idx_cell] * _flux[Idx2D( idx_cell, idx_sys, _nSys )] + + _dT * ( _sigmaS[idx_cell] * _scalarFlux[idx_cell] / ( 4 * M_PI ) + _source[Idx2D( idx_cell, idx_sys, _nSys )] ); + } + + // --- Iter Postprocessing --- + + double localScalarFlux = 0; + +#pragma omp simd reduction( + : localScalarFlux ) + for( unsigned idx_sys = 0; idx_sys < _nSys; ++idx_sys ) { + _sol[Idx2D( idx_cell, idx_sys, _nSys )] = std::max( _sol[Idx2D( idx_cell, idx_sys, _nSys )], 0.0 ); + localScalarFlux += _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; + } + + _mass += localScalarFlux * _areas[idx_cell]; + _rmsFlux += ( localScalarFlux - _scalarFlux[idx_cell] ) * ( localScalarFlux - _scalarFlux[idx_cell] ); + _scalarFlux[idx_cell] = localScalarFlux; // set flux + + if( _settings->GetProblemName() == PROBLEM_Lattice || _settings->GetProblemName() == PROBLEM_HalfLattice ) { + if( IsAbsorptionLattice( _cellMidPoints[Idx2D( idx_cell, 0, _nDim )], _cellMidPoints[Idx2D( idx_cell, 1, _nDim )] ) ) { + double sigmaAPsi = _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ); + _curAbsorptionLattice += sigmaAPsi * _areas[idx_cell]; + _curMaxAbsorptionLattice = ( _curMaxAbsorptionLattice < sigmaAPsi ) ? sigmaAPsi : _curMaxAbsorptionLattice; + } + } + + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum || _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { + + double x = _cellMidPoints[Idx2D( idx_cell, 0, _nDim )]; + double y = _cellMidPoints[Idx2D( idx_cell, 1, _nDim )]; + + if( x > -0.2 && x < 0.2 && y > -0.35 && y < 0.35 ) { + _curAbsorptionHohlraumCenter += _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _areas[idx_cell]; + } + if( ( x < -0.6 && y > -0.4 && y < 0.4 ) || ( x > 0.6 && y > -0.4 && y < 0.4 ) ) { + _curAbsorptionHohlraumVertical += _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _areas[idx_cell]; + } + if( y > 0.6 || y < -0.6 ) { + _curAbsorptionHohlraumHorizontal += _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _areas[idx_cell]; + } + + // Variation in absorption of center (part 1) + bool green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) + bool green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) + bool green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) + bool green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) + + if( green1 || green2 || green3 || green4 ) { + a_g += ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _scalarFlux[idx_cell] * _areas[idx_cell]; + } + } + + // Outflow + if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN && !_ghostCellsReflectingY[idx_cell] ) { + // Iterate over face cell faces + double currOrdinatewiseOutflow = 0.0; + + for( unsigned idx_nbr = 0; idx_nbr < _nNbr; ++idx_nbr ) { + // Find face that points outward + if( _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )] == _nCells ) { +#pragma omp simd reduction( + : _curScalarOutflow ) reduction( max : _curMaxOrdinateOutflow ) + for( unsigned idx_sys = 0; idx_sys < _nSys; ++idx_sys ) { + double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; + // Find outward facing transport directions + + if( localInner > 0.0 ) { + _curScalarOutflow += localInner * _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; // Integrate flux + + currOrdinatewiseOutflow = + _sol[Idx2D( idx_cell, idx_sys, _nSys )] * localInner / + sqrt( ( + _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + + _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )] ) ); + + _curMaxOrdinateOutflow = + ( currOrdinatewiseOutflow > _curMaxOrdinateOutflow ) ? currOrdinatewiseOutflow : _curMaxOrdinateOutflow; + } + } + } + } + } + } + // Variation absorption (part II) + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum || _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { +#pragma omp parallel for reduction( + : _varAbsorptionHohlraumGreen ) + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + double x = _cellMidPoints[Idx2D( idx_cell, 0, _nDim )]; + double y = _cellMidPoints[Idx2D( idx_cell, 1, _nDim )]; + bool green1, green2, green3, green4; + + green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) + green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) + green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) + green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) + + if( green1 || green2 || green3 || green4 ) { + _varAbsorptionHohlraumGreen += ( a_g - _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) * + ( a_g - _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) * _areas[idx_cell]; + } + } +// Probes value moments +#pragma omp parallel for + for( unsigned idx_probe = 0; idx_probe < 4; idx_probe++ ) { // Loop over probing cells + _probingMoments[Idx2D( idx_probe, 0, 3 )] = _scalarFlux[_probingCellsHohlraum[idx_probe]]; + _probingMoments[Idx2D( idx_probe, 1, 3 )] = 0.0; + _probingMoments[Idx2D( idx_probe, 2, 3 )] = 0.0; + + // for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + // _probingMoments[Idx2D( idx_probe, 1, 3 )] += + // _quadPts[Idx2D( idx_sys, 0, _nDim )] * _sol[Idx2D( _probingCellsHohlraum[idx_probe], idx_sys, _nSys )] * _quadWeights[idx_sys]; + // _probingMoments[Idx2D( idx_probe, 2, 3 )] += + // _quadPts[Idx2D( idx_sys, 1, _nDim )] * _sol[Idx2D( _probingCellsHohlraum[idx_probe], idx_sys, _nSys )] * _quadWeights[idx_sys]; + // } + } + + // probe values green + ComputeQOIsGreenProbingLine(); + } + + _rmsFlux = sqrt( _rmsFlux ); + _totalScalarOutflow += _curScalarOutflow * _dT; + _totalAbsorptionLattice += _curAbsorptionLattice * _dT; + + _totalAbsorptionHohlraumCenter += _curAbsorptionHohlraumCenter * _dT; + _totalAbsorptionHohlraumVertical += _curAbsorptionHohlraumVertical * _dT; + _totalAbsorptionHohlraumHorizontal += _curAbsorptionHohlraumHorizontal * _dT; +} + +bool SNSolverHPC::IsAbsorptionLattice( double x, double y ) const { + // Check whether pos is inside absorbing squares + double xy_corrector = -3.5; + std::vector lbounds{ 1 + xy_corrector, 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector }; + std::vector ubounds{ 2 + xy_corrector, 3 + xy_corrector, 4 + xy_corrector, 5 + xy_corrector, 6 + xy_corrector }; + for( unsigned k = 0; k < lbounds.size(); ++k ) { + for( unsigned l = 0; l < lbounds.size(); ++l ) { + if( ( l + k ) % 2 == 1 || ( k == 2 && l == 2 ) || ( k == 2 && l == 4 ) ) continue; + if( x >= lbounds[k] && x <= ubounds[k] && y >= lbounds[l] && y <= ubounds[l] ) { + return true; + } + } + } + return false; +} + +// --- Helper --- +double SNSolverHPC::ComputeTimeStep( double cfl ) const { + // for pseudo 1D, set timestep to dx + double dx, dy; + switch( _settings->GetProblemName() ) { + case PROBLEM_Checkerboard1D: + dx = 7.0 / (double)_nCells; + dy = 0.3; + return cfl * ( dx * dy ) / ( dx + dy ); + break; + case PROBLEM_Linesource1D: // Fallthrough + case PROBLEM_Meltingcube1D: // Fallthrough + case PROBLEM_Aircavity1D: + dx = 3.0 / (double)_nCells; + dy = 0.3; + return cfl * ( dx * dy ) / ( dx + dy ); + break; + default: break; // 2d as normal + } + // 2D case + double charSize = __DBL_MAX__; // minimum char size of all mesh cells in the mesh + for( unsigned j = 0; j < _nCells; j++ ) { + double currCharSize = sqrt( _areas[j] ); + if( currCharSize < charSize ) { + charSize = currCharSize; + } + } + auto log = spdlog::get( "event" ); + std::string line = "| Smallest characteristic length of a grid cell in this mesh: " + std::to_string( charSize ); + log->info( line ); + line = "| Corresponding maximal time-step: " + std::to_string( cfl * charSize ); + log->info( line ); + return cfl * charSize; +} + +// --- IO ---- +void SNSolverHPC::PrepareScreenOutput() { + unsigned nFields = (unsigned)_settings->GetNScreenOutput(); + + _screenOutputFieldNames.resize( nFields ); + _screenOutputFields.resize( nFields ); + + // Prepare all output Fields ==> Specified in option SCREEN_OUTPUT + for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { + // Prepare all Output Fields per group + + // Different procedure, depending on the Group... + switch( _settings->GetScreenOutput()[idx_field] ) { + case MASS: _screenOutputFieldNames[idx_field] = "Mass"; break; + case ITER: _screenOutputFieldNames[idx_field] = "Iter"; break; + case WALL_TIME: _screenOutputFieldNames[idx_field] = "Wall time [s]"; break; + case RMS_FLUX: _screenOutputFieldNames[idx_field] = "RMS flux"; break; + case VTK_OUTPUT: _screenOutputFieldNames[idx_field] = "VTK out"; break; + case CSV_OUTPUT: _screenOutputFieldNames[idx_field] = "CSV out"; break; + case CUR_OUTFLOW: _screenOutputFieldNames[idx_field] = "Cur. outflow"; break; + case TOTAL_OUTFLOW: _screenOutputFieldNames[idx_field] = "Tot. outflow"; break; + case MAX_OUTFLOW: _screenOutputFieldNames[idx_field] = "Max outflow"; break; + case CUR_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Cur. absorption"; break; + case TOTAL_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Tot. absorption"; break; + case MAX_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Max absorption"; break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFieldNames[idx_field] = "Tot. abs. center"; break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFieldNames[idx_field] = "Tot. abs. vertical wall"; break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFieldNames[idx_field] = "Tot. abs. horizontal wall"; break; + case PROBE_MOMENT_TIME_TRACE: + _screenOutputFieldNames[idx_field] = "Probe 1 u_0"; + idx_field++; + _screenOutputFieldNames[idx_field] = "Probe 2 u_0"; + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + idx_field++; + _screenOutputFieldNames[idx_field] = "Probe 3 u_0"; + idx_field++; + _screenOutputFieldNames[idx_field] = "Probe 4 u_0"; + } + break; + case VAR_ABSORPTION_GREEN: _screenOutputFieldNames[idx_field] = "Var. absorption green"; break; + default: ErrorMessages::Error( "Screen output field not defined!", CURRENT_FUNCTION ); break; + } + } +} + +void SNSolverHPC::WriteScalarOutput( unsigned idx_iter ) { + unsigned n_probes = 4; + + unsigned nFields = (unsigned)_settings->GetNScreenOutput(); + const VectorVector probingMoments = _problem->GetCurrentProbeMoment(); + // -- Screen Output + for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { + // Prepare all Output Fields per group + // Different procedure, depending on the Group... + switch( _settings->GetScreenOutput()[idx_field] ) { + case MASS: _screenOutputFields[idx_field] = _mass; break; + case ITER: _screenOutputFields[idx_field] = idx_iter; break; + case WALL_TIME: _screenOutputFields[idx_field] = _currTime; break; + case RMS_FLUX: _screenOutputFields[idx_field] = _rmsFlux; break; + case VTK_OUTPUT: + _screenOutputFields[idx_field] = 0; + if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || + ( idx_iter == _nIter - 1 ) /* need sol at last iteration */ ) { + _screenOutputFields[idx_field] = 1; + } + break; + case CSV_OUTPUT: + _screenOutputFields[idx_field] = 0; + if( ( _settings->GetHistoryOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) || + ( idx_iter == _nIter - 1 ) /* need sol at last iteration */ ) { + _screenOutputFields[idx_field] = 1; + } + break; + case CUR_OUTFLOW: _screenOutputFields[idx_field] = _curScalarOutflow; break; + case TOTAL_OUTFLOW: _screenOutputFields[idx_field] = _totalScalarOutflow; break; + case MAX_OUTFLOW: _screenOutputFields[idx_field] = _curMaxOrdinateOutflow; break; + case CUR_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _curAbsorptionLattice; break; + case TOTAL_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _totalAbsorptionLattice; break; + case MAX_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _curMaxAbsorptionLattice; break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _screenOutputFields[idx_field] = _totalAbsorptionHohlraumCenter; break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _screenOutputFields[idx_field] = _totalAbsorptionHohlraumVertical; break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _screenOutputFields[idx_field] = _totalAbsorptionHohlraumHorizontal; break; + case PROBE_MOMENT_TIME_TRACE: + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) n_probes = 4; + if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; + for( unsigned i = 0; i < n_probes; i++ ) { + _screenOutputFields[idx_field] = _probingMoments[Idx2D( i, 0, 3 )]; + idx_field++; + } + idx_field--; + break; + case VAR_ABSORPTION_GREEN: _screenOutputFields[idx_field] = _varAbsorptionHohlraumGreen; break; + default: ErrorMessages::Error( "Screen output group not defined!", CURRENT_FUNCTION ); break; + } + } + + // --- History output --- + nFields = (unsigned)_settings->GetNHistoryOutput(); + + std::vector screenOutputFields = _settings->GetScreenOutput(); + for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { + + // Prepare all Output Fields per group + // Different procedure, depending on the Group... + switch( _settings->GetHistoryOutput()[idx_field] ) { + case MASS: _historyOutputFields[idx_field] = _mass; break; + case ITER: _historyOutputFields[idx_field] = idx_iter; break; + case WALL_TIME: _historyOutputFields[idx_field] = _currTime; break; + case RMS_FLUX: _historyOutputFields[idx_field] = _rmsFlux; break; + case VTK_OUTPUT: + _historyOutputFields[idx_field] = 0; + if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || + ( idx_iter == _nIter - 1 ) /* need sol at last iteration */ ) { + _historyOutputFields[idx_field] = 1; + } + break; + + case CSV_OUTPUT: + _historyOutputFields[idx_field] = 0; + if( ( _settings->GetHistoryOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) || + ( idx_iter == _nIter - 1 ) /* need sol at last iteration */ ) { + _historyOutputFields[idx_field] = 1; + } + break; + case CUR_OUTFLOW: _historyOutputFields[idx_field] = _curScalarOutflow; break; + case TOTAL_OUTFLOW: _historyOutputFields[idx_field] = _totalScalarOutflow; break; + case MAX_OUTFLOW: _historyOutputFields[idx_field] = _curMaxOrdinateOutflow; break; + case CUR_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _curAbsorptionLattice; break; + case TOTAL_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _totalAbsorptionLattice; break; + case MAX_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _curMaxAbsorptionLattice; break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _historyOutputFields[idx_field] = _totalAbsorptionHohlraumCenter; break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFields[idx_field] = _totalAbsorptionHohlraumVertical; break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFields[idx_field] = _totalAbsorptionHohlraumHorizontal; break; + case PROBE_MOMENT_TIME_TRACE: + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) n_probes = 4; + if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; + for( unsigned i = 0; i < n_probes; i++ ) { + for( unsigned j = 0; j < 3; j++ ) { + _screenOutputFields[idx_field] = _probingMoments[Idx2D( i, j, 3 )]; + idx_field++; + } + } + idx_field--; + break; + case VAR_ABSORPTION_GREEN: _historyOutputFields[idx_field] = _varAbsorptionHohlraumGreen; break; + case VAR_ABSORPTION_GREEN_LINE: + for( unsigned i = 0; i < _settings->GetNumProbingCellsLineHohlraum(); i++ ) { + _historyOutputFieldNames[idx_field] = _varAbsorptionValsIntegrated[i]; + idx_field++; + } + idx_field--; + break; + default: ErrorMessages::Error( "History output group not defined!", CURRENT_FUNCTION ); break; + } + } +} + +void SNSolverHPC::PrintScreenOutput( unsigned idx_iter ) { + auto log = spdlog::get( "event" ); + + unsigned strLen = 15; // max width of one column + char paddingChar = ' '; + + // assemble the line to print + std::string lineToPrint = "| "; + std::string tmp; + for( unsigned idx_field = 0; idx_field < _settings->GetNScreenOutput(); idx_field++ ) { + tmp = std::to_string( _screenOutputFields[idx_field] ); + + // Format outputs correctly + std::vector integerFields = { ITER }; + std::vector scientificFields = { RMS_FLUX, + MASS, + WALL_TIME, + CUR_OUTFLOW, + TOTAL_OUTFLOW, + MAX_OUTFLOW, + CUR_PARTICLE_ABSORPTION, + TOTAL_PARTICLE_ABSORPTION, + MAX_PARTICLE_ABSORPTION, + TOTAL_PARTICLE_ABSORPTION_CENTER, + TOTAL_PARTICLE_ABSORPTION_VERTICAL, + TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, + PROBE_MOMENT_TIME_TRACE, + VAR_ABSORPTION_GREEN, + VAR_ABSORPTION_GREEN_LINE }; + std::vector booleanFields = { VTK_OUTPUT, CSV_OUTPUT }; + + if( !( integerFields.end() == std::find( integerFields.begin(), integerFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { + tmp = std::to_string( (int)_screenOutputFields[idx_field] ); + } + else if( !( booleanFields.end() == std::find( booleanFields.begin(), booleanFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { + tmp = "no"; + if( (bool)_screenOutputFields[idx_field] ) tmp = "yes"; + } + else if( !( scientificFields.end() == + std::find( scientificFields.begin(), scientificFields.end(), _settings->GetScreenOutput()[idx_field] ) ) ) { + + std::stringstream ss; + ss << TextProcessingToolbox::DoubleToScientificNotation( _screenOutputFields[idx_field] ); + tmp = ss.str(); + tmp.erase( std::remove( tmp.begin(), tmp.end(), '+' ), tmp.end() ); // removing the '+' sign + } + + if( strLen > tmp.size() ) // Padding + tmp.insert( 0, strLen - tmp.size(), paddingChar ); + else if( strLen < tmp.size() ) // Cutting + tmp.resize( strLen ); + + lineToPrint += tmp + " |"; + } + if( _settings->GetScreenOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetScreenOutputFrequency() == 0 ) { + log->info( lineToPrint ); + } + else if( idx_iter == _nIter - 1 ) { // Always print last iteration + log->info( lineToPrint ); + } +} + +void SNSolverHPC::PrepareHistoryOutput() { + unsigned n_probes = 4; + + unsigned nFields = (unsigned)_settings->GetNHistoryOutput(); + + _historyOutputFieldNames.resize( nFields ); + _historyOutputFields.resize( nFields ); + + // Prepare all output Fields ==> Specified in option SCREEN_OUTPUT + for( unsigned idx_field = 0; idx_field < nFields; idx_field++ ) { + // Prepare all Output Fields per group + + // Different procedure, depending on the Group... + switch( _settings->GetHistoryOutput()[idx_field] ) { + case MASS: _historyOutputFieldNames[idx_field] = "Mass"; break; + case ITER: _historyOutputFieldNames[idx_field] = "Iter"; break; + case WALL_TIME: _historyOutputFieldNames[idx_field] = "Wall_time_[s]"; break; + case RMS_FLUX: _historyOutputFieldNames[idx_field] = "RMS_flux"; break; + case VTK_OUTPUT: _historyOutputFieldNames[idx_field] = "VTK_out"; break; + case CSV_OUTPUT: _historyOutputFieldNames[idx_field] = "CSV_out"; break; + case CUR_OUTFLOW: _historyOutputFieldNames[idx_field] = "Cur_outflow"; break; + case TOTAL_OUTFLOW: _historyOutputFieldNames[idx_field] = "Total_outflow"; break; + case MAX_OUTFLOW: _historyOutputFieldNames[idx_field] = "Max_outflow"; break; + case CUR_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Cur_absorption"; break; + case TOTAL_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Total_absorption"; break; + case MAX_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Max_absorption"; break; + case TOTAL_PARTICLE_ABSORPTION_CENTER: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_center"; break; + case TOTAL_PARTICLE_ABSORPTION_VERTICAL: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_vertical_wall"; break; + case TOTAL_PARTICLE_ABSORPTION_HORIZONTAL: _historyOutputFieldNames[idx_field] = "Cumulated_absorption_horizontal_wall"; break; + case PROBE_MOMENT_TIME_TRACE: + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) n_probes = 4; + if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; + for( unsigned i = 0; i < n_probes; i++ ) { + for( unsigned j = 0; j < 3; j++ ) { + _historyOutputFieldNames[idx_field] = "Probe " + std::to_string( i ) + " u_" + std::to_string( j ); + idx_field++; + } + } + idx_field--; + break; + case VAR_ABSORPTION_GREEN: _historyOutputFieldNames[idx_field] = "Var. absorption green"; break; + case VAR_ABSORPTION_GREEN_LINE: + for( unsigned i = 0; i < _settings->GetNumProbingCellsLineHohlraum(); i++ ) { + _historyOutputFieldNames[idx_field] = "Probe Green Line " + std::to_string( i ); + idx_field++; + } + idx_field--; + break; + default: ErrorMessages::Error( "History output field not defined!", CURRENT_FUNCTION ); break; + } + } +} + +void SNSolverHPC::PrintHistoryOutput( unsigned idx_iter ) { + + auto log = spdlog::get( "tabular" ); + + // assemble the line to print + std::string lineToPrint = ""; + std::string tmp; + for( int idx_field = 0; idx_field < _settings->GetNHistoryOutput() - 1; idx_field++ ) { + if( idx_field == 0 ) { + tmp = std::to_string( _historyOutputFields[idx_field] ); // Iteration count + } + else { + tmp = TextProcessingToolbox::DoubleToScientificNotation( _historyOutputFields[idx_field] ); + } + lineToPrint += tmp + ","; + } + tmp = TextProcessingToolbox::DoubleToScientificNotation( _historyOutputFields[_settings->GetNScreenOutput() - 1] ); + lineToPrint += tmp; // Last element without comma + + if( _settings->GetHistoryOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetHistoryOutputFrequency() == 0 ) { + log->info( lineToPrint ); + } + else if( idx_iter == _nIter - 1 ) { // Always print last iteration + log->info( lineToPrint ); + } +} + +void SNSolverHPC::DrawPreSolverOutput() { + + // Logger + auto log = spdlog::get( "event" ); + auto logCSV = spdlog::get( "tabular" ); + + std::string hLine = "--"; + + unsigned strLen = 15; // max width of one column + char paddingChar = ' '; + + // Assemble Header for Screen Output + std::string lineToPrint = "| "; + std::string tmpLine = "-----------------"; + for( unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++ ) { + std::string tmp = _screenOutputFieldNames[idxFields]; + + if( strLen > tmp.size() ) // Padding + tmp.insert( 0, strLen - tmp.size(), paddingChar ); + else if( strLen < tmp.size() ) // Cutting + tmp.resize( strLen ); + + lineToPrint += tmp + " |"; + hLine += tmpLine; + } + log->info( "---------------------------- Solver Starts -----------------------------" ); + log->info( "| The simulation will run for {} iterations.", _nIter ); + log->info( "| The spatial grid contains {} cells.", _nCells ); + if( _settings->GetSolverName() != PN_SOLVER && _settings->GetSolverName() != CSD_PN_SOLVER ) { + log->info( "| The velocity grid contains {} points.", _nq ); + } + log->info( hLine ); + log->info( lineToPrint ); + log->info( hLine ); + + std::string lineToPrintCSV = ""; + for( int idxFields = 0; idxFields < _settings->GetNHistoryOutput() - 1; idxFields++ ) { + std::string tmp = _historyOutputFieldNames[idxFields]; + lineToPrintCSV += tmp + ","; + } + lineToPrintCSV += _historyOutputFieldNames[_settings->GetNHistoryOutput() - 1]; + logCSV->info( lineToPrintCSV ); +} + +void SNSolverHPC::DrawPostSolverOutput() { + + // Logger + auto log = spdlog::get( "event" ); + + std::string hLine = "--"; + + unsigned strLen = 10; // max width of one column + char paddingChar = ' '; + + // Assemble Header for Screen Output + std::string lineToPrint = "| "; + std::string tmpLine = "------------"; + for( unsigned idxFields = 0; idxFields < _settings->GetNScreenOutput(); idxFields++ ) { + std::string tmp = _screenOutputFieldNames[idxFields]; + + if( strLen > tmp.size() ) // Padding + tmp.insert( 0, strLen - tmp.size(), paddingChar ); + else if( strLen < tmp.size() ) // Cutting + tmp.resize( strLen ); + + lineToPrint += tmp + " |"; + hLine += tmpLine; + } + log->info( hLine ); +#ifndef BUILD_TESTING + log->info( "| The volume output files have been stored at " + _settings->GetOutputFile() ); + log->info( "| The log files have been stored at " + _settings->GetLogDir() + _settings->GetLogFile() ); +#endif + log->info( "--------------------------- Solver Finished ----------------------------" ); +} + +unsigned SNSolverHPC::Idx2D( unsigned idx1, unsigned idx2, unsigned len2 ) { return idx1 * len2 + idx2; } + +unsigned SNSolverHPC::Idx3D( unsigned idx1, unsigned idx2, unsigned idx3, unsigned len2, unsigned len3 ) { + return ( idx1 * len2 + idx2 ) * len3 + idx3; +} + +void SNSolverHPC::WriteVolumeOutput( unsigned idx_iter ) { + unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); + if( ( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) || + ( idx_iter == _nIter - 1 ) /* need sol at last iteration */ ) { + for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { + switch( _settings->GetVolumeOutput()[idx_group] ) { + case MINIMAL: + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + _outputFields[idx_group][0][idx_cell] = _scalarFlux[idx_cell]; + } + break; + + default: ErrorMessages::Error( "Volume Output Group not defined for HPC SN Solver!", CURRENT_FUNCTION ); break; + } + } + } +} + +void SNSolverHPC::PrepareVolumeOutput() { + unsigned nGroups = (unsigned)_settings->GetNVolumeOutput(); + + _outputFieldNames.resize( nGroups ); + _outputFields.resize( nGroups ); + + // Prepare all OutputGroups ==> Specified in option VOLUME_OUTPUT + for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { + // Prepare all Output Fields per group + + // Different procedure, depending on the Group... + switch( _settings->GetVolumeOutput()[idx_group] ) { + case MINIMAL: + // Currently only one entry ==> rad flux + _outputFields[idx_group].resize( 1 ); + _outputFieldNames[idx_group].resize( 1 ); + + _outputFields[idx_group][0].resize( _nCells ); + _outputFieldNames[idx_group][0] = "scalar flux"; + break; + + default: ErrorMessages::Error( "Volume Output Group not defined for HPC SN Solver!", CURRENT_FUNCTION ); break; + } + } +} + +void SNSolverHPC::SetGhostCells() { + if( _settings->GetProblemName() == PROBLEM_Lattice ) { + std::vector void_flow( _nSys, 0.0 ); + + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { + _ghostCells[idx_cell] = void_flow; + _ghostCellsReflectingY[idx_cell] = false; + } + } + } + else if( _settings->GetProblemName() == PROBLEM_HalfLattice ) { // HALF LATTICE NOT WORKING + + double tol = 1e-12; // For distance to boundary + + if( _settings->GetQuadName() != QUAD_GaussLegendreTensorized2D ) { + ErrorMessages::Error( "This simplified test case only works with symmetric quadrature orders. Use QUAD_GAUSS_LEGENDRE_TENSORIZED_2D", + CURRENT_FUNCTION ); + } + + { // Create the symmetry maps for the quadratures + for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { + for( unsigned idx_q2 = 0; idx_q2 < _nSys; idx_q2++ ) { + if( abs( _quadPts[Idx2D( idx_q, 0, _nDim )] + _quadPts[Idx2D( idx_q2, 0, _nDim )] ) + + abs( _quadPts[Idx2D( idx_q, 1, _nDim )] - _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < + tol ) { + _quadratureYReflection[idx_q] = idx_q2; + break; + } + } + } + } + + if( _quadratureYReflection.size() != _nSys ) { + ErrorMessages::Error( "Problem with Y symmetry of quadrature of this mesh", CURRENT_FUNCTION ); + } + + auto nodes = _mesh->GetNodes(); + auto cellNodes = _mesh->GetCells(); + + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + if( _cellBoundaryTypes[idx_cell] != BOUNDARY_TYPE::NONE ) { + + _ghostCellsReflectingY[idx_cell] = false; + for( unsigned idx_node = 0; idx_node < _nNbr; idx_node++ ) { // Check if corner node is in this cell + if( abs( nodes[cellNodes[idx_cell][idx_node]][1] ) < -3.5 + tol || abs( nodes[cellNodes[idx_cell][idx_node]][1] ) > 3.5 - tol ) { + // upper and lower boundary + _ghostCells.insert( { idx_cell, std::vector( _nSys, 1e-15 ) } ); + break; + } + else if( abs( nodes[cellNodes[idx_cell][idx_node]][0] ) < tol ) { // close to 0 => left boundary + _ghostCellsReflectingY[idx_cell] = true; + // _ghostCells.insert( { idx_cell, std::vector( _nSys ) } ); + break; + } + else { // right boundary + _ghostCells.insert( { idx_cell, std::vector( _nSys, 1e-15 ) } ); + break; + } + } + } + } + } + + else if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + std::vector left_inflow( _nSys, 0.0 ); + std::vector right_inflow( _nSys, 0.0 ); + std::vector vertical_flow( _nSys, 0.0 ); + + for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { + if( _quadPts[Idx2D( idx_q, 0, _nDim )] > 0.0 ) left_inflow[idx_q] = 1.0; + if( _quadPts[Idx2D( idx_q, 1, _nDim )] < 0.0 ) right_inflow[idx_q] = 1.0; + } + + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + + _ghostCellsReflectingY[idx_cell] = false; + + if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { + if( _cellMidPoints[Idx2D( idx_cell, 1, _nDim )] < -0.6 ) + _ghostCells[idx_cell] = vertical_flow; + else if( _cellMidPoints[Idx2D( idx_cell, 1, _nDim )] > 0.6 ) + _ghostCells[idx_cell] = vertical_flow; + else if( _cellMidPoints[Idx2D( idx_cell, 0, _nDim )] < -0.6 ) + _ghostCells[idx_cell] = left_inflow; + else if( _cellMidPoints[Idx2D( idx_cell, 0, _nDim )] > 0.6 ) + _ghostCells[idx_cell] = right_inflow; + } + } + } +} + +void SNSolverHPC::SetProbingCellsLineGreen() { + std::cout << "SetProbingCellsLineGreen" << std::endl; + + double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); + double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); + + // double dx = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); + + unsigned nHorizontalProbingCells = + (unsigned)std::ceil( _nProbingCellsLineGreen / 2 * ( horizontalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); + unsigned nVerticalProbingCells = _nProbingCellsLineGreen - nHorizontalProbingCells; + + _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); + + // printf( "here" ); + + // Sample points on each side of the rectangle + std::vector side1 = linspace2D( _cornerUpperLeftGreen, _cornerLowerLeftGreen, nVerticalProbingCells ); + std::vector side2 = linspace2D( _cornerLowerLeftGreen, _cornerLowerRightGreen, nHorizontalProbingCells ); + std::vector side3 = linspace2D( _cornerLowerRightGreen, _cornerUpperRightGreen, nVerticalProbingCells ); + std::vector side4 = linspace2D( _cornerUpperRightGreen, _cornerUpperLeftGreen, nHorizontalProbingCells ); + + // printf( "here" ); + // Combine the points from each side + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side1.begin(), side1.end() ); + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side2.begin(), side2.end() ); + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side3.begin(), side3.end() ); + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side4.begin(), side4.end() ); +} + +void SNSolverHPC::ComputeQOIsGreenProbingLine() { + std::cout << "ComputeQOIsGreenProbingLine" << std::endl; + double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); + double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); + + double dl = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); + double area = dl * _thicknessGreen; + double a_g = 0; + double l_max = _nProbingCellsLineGreen * dl; + + for( unsigned i = 0; i < _nProbingCellsLineGreen; i++ ) { // Loop over probing cells + _absorptionValsIntegrated[i] = + ( _sigmaT[_probingCellsLineGreen[i]] - _sigmaS[_probingCellsLineGreen[i]] ) * _scalarFlux[_probingCellsLineGreen[i]] * area; + a_g += _absorptionValsIntegrated[i] / (double)_nProbingCellsLineGreen; + } + for( unsigned i = 0; i < _nProbingCellsLineGreen; i++ ) { // Loop over probing cells + _varAbsorptionValsIntegrated[i] = dl / l_max * ( a_g - _absorptionValsIntegrated[i] ) * ( a_g - _absorptionValsIntegrated[i] ); + } +} + +std::vector SNSolverHPC::linspace2D( const std::vector& start, const std::vector& end, unsigned num_points ) { + /** + * Generate a 2D linspace based on the start and end points with a specified number of points. + * + * @param start vector of starting x and y coordinates + * @param end vector of ending x and y coordinates + * @param num_points number of points to generate + * + * @return vector of unsigned integers representing the result + */ + + std::vector result; + result.resize( num_points ); + double stepX = ( end[0] - start[0] ) / ( num_points - 1 ); + double stepY = ( end[1] - start[1] ) / ( num_points - 1 ); + + for( unsigned i = 0; i < num_points; ++i ) { + double x = start[0] + i * stepX; + double y = start[1] + i * stepY; + + result[i] = _mesh->GetCellOfKoordinate( x, y ); + } + + return result; +} diff --git a/src/solvers/solverbase.cpp b/src/solvers/solverbase.cpp index 67f38e86..fbae12f6 100644 --- a/src/solvers/solverbase.cpp +++ b/src/solvers/solverbase.cpp @@ -37,7 +37,7 @@ SolverBase::SolverBase( Config* settings ) { // build slope related params _reconstructor = new Reconstructor( settings ); // Not used! - _reconsOrder = _reconstructor->GetReconsOrder(); + _reconsOrder = _reconstructor->GetSpatialOrder(); _interfaceMidPoints = _mesh->GetInterfaceMidPoints(); _cellMidPoints = _mesh->GetCellMidPoints(); @@ -61,6 +61,9 @@ SolverBase::SolverBase( Config* settings ) { if( _settings->GetIsCSD() ) { _nIter = _nEnergies - 1; // Since CSD does not go the last energy step } + else { + _nIter++; + } // setup problem and store frequently used params @@ -124,7 +127,7 @@ void SolverBase::Solve() { // Preprocessing before first pseudo time step SolverPreprocessing(); - unsigned rkStages = _settings->GetRKStages(); + unsigned rkStages = _settings->GetTemporalOrder(); // Create Backup solution for Runge Kutta VectorVector solRK0 = _sol; @@ -132,6 +135,10 @@ void SolverBase::Solve() { std::chrono::duration duration; // Loop over energies (pseudo-time of continuous slowing down approach) for( unsigned iter = 0; iter < _nIter; iter++ ) { + if( iter == _nIter - 1 ) { // last iteration + _dT = _settings->GetTEnd() - iter * _dT; + } + if( rkStages == 2 ) solRK0 = _sol; for( unsigned rkStep = 0; rkStep < rkStages; ++rkStep ) { @@ -175,7 +182,7 @@ void SolverBase::Solve() { DrawPostSolverOutput(); } -void SolverBase::RKUpdate( VectorVector sol_0, VectorVector sol_rk ) { +void SolverBase::RKUpdate( VectorVector& sol_0, VectorVector& sol_rk ) { #pragma omp parallel for for( unsigned i = 0; i < _nCells; ++i ) { _sol[i] = 0.5 * ( sol_0[i] + sol_rk[i] ); diff --git a/src/toolboxes/reconstructor.cpp b/src/toolboxes/reconstructor.cpp index 196e3443..f1d556b8 100644 --- a/src/toolboxes/reconstructor.cpp +++ b/src/toolboxes/reconstructor.cpp @@ -1,7 +1,7 @@ #include "toolboxes/reconstructor.hpp" #include "common/config.hpp" -Reconstructor::Reconstructor( Config* settings ) { _reconsOrder = settings->GetReconsOrder(); } +Reconstructor::Reconstructor( Config* settings ) { _reconsOrder = settings->GetSpatialOrder(); } double FortSign( double a, double b ) { if( b > 0.0 ) return std::fabs( a ); From 19cf20b6f90d598162f0a3711d65613f343fd200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= <35609777+ScSteffen@users.noreply.github.com> Date: Thu, 4 Apr 2024 17:45:28 -0400 Subject: [PATCH 113/155] Memory optimization solver (#46) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix for unit tests? * started hpc sn solver * continue mem opt * continue hpc sn solver * continue hpc solver * order 1 solver accellerated' * lattice qois updated * clean up of hpc examples * started 2nd order solver * added half lattice and 2nd order * 2nd order solver ready with venkat limiter * fix output bug * added 2nd order in time (inefficiently) * bugfixing 2nd order * changed initial condiiton to 0 --------- Co-authored-by: Steffen Schotthöfer From 4271d1676ab58c2aa7e2b856eea675bbd53e5f01 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Fri, 5 Apr 2024 09:10:36 -0400 Subject: [PATCH 114/155] fixed small debug verbosity bugs --- src/solvers/snsolver_hpc.cpp | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index ef9a7f63..0d02c762 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -166,12 +166,18 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { _curAbsorptionHohlraumHorizontal = 0; _varAbsorptionHohlraumGreen = 0; - _probingCellsHohlraum = { - _mesh->GetCellOfKoordinate( -0.4, 0. ), - _mesh->GetCellOfKoordinate( 0.4, 0. ), - _mesh->GetCellOfKoordinate( 0., -0.6 ), - _mesh->GetCellOfKoordinate( 0., 0.6 ), - }; + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + _probingCellsHohlraum = { + _mesh->GetCellOfKoordinate( -0.4, 0. ), + _mesh->GetCellOfKoordinate( 0.4, 0. ), + _mesh->GetCellOfKoordinate( 0., -0.6 ), + _mesh->GetCellOfKoordinate( 0., 0.6 ), + }; + } + else { + _probingCellsHohlraum = std::vector( 4, 0. ); + } + _probingMoments = std::vector( 12, 0. ); // Red @@ -195,8 +201,9 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { std::cout << "Solver initialized!" << std::endl; _nProbingCellsLineGreen = _settings->GetNumProbingCellsLineHohlraum(); - SetProbingCellsLineGreen(); - std::cout << "Probing cells initialized!" << std::endl; + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + SetProbingCellsLineGreen(); + } _absorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); _varAbsorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); From 28dd91116b2cb197d6363e5c2a54ee8225062178 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Fri, 5 Apr 2024 09:39:27 -0400 Subject: [PATCH 115/155] fix unit tests --- src/problems/linesource.cpp | 2 +- .../qgausslegendretensorized2D.cpp | 2 +- src/solvers/snsolver_hpc.cpp | 2 +- .../starmap_validation_2nd_reference.vtk | 1128 ++++++++--------- ...linesource_MN_MB_regularized_reference.vtk | 24 +- tests/test_cases.cpp | 6 +- 6 files changed, 583 insertions(+), 581 deletions(-) diff --git a/src/problems/linesource.cpp b/src/problems/linesource.cpp index 8fc22ac9..94d70b61 100644 --- a/src/problems/linesource.cpp +++ b/src/problems/linesource.cpp @@ -129,7 +129,7 @@ VectorVector LineSource_SN::SetupIC() { for( unsigned j = 0; j < cellMids.size(); ++j ) { double x = cellMids[j][0]; double y = cellMids[j][1]; - psi[j] = Vector( _settings->GetNQuadPoints(), 10.0 / ( 4.0 * M_PI * t ) * std::exp( -( x * x + y * y ) / ( 4 * t ) ) ) / ( 4 * M_PI ); + psi[j] = Vector( _settings->GetNQuadPoints(), 1.0 / ( 4.0 * M_PI * t ) * std::exp( -( x * x + y * y ) / ( 4 * t ) ) ) / ( 4 * M_PI ); } return psi; } diff --git a/src/quadratures/qgausslegendretensorized2D.cpp b/src/quadratures/qgausslegendretensorized2D.cpp index b1fc62cf..618be423 100644 --- a/src/quadratures/qgausslegendretensorized2D.cpp +++ b/src/quadratures/qgausslegendretensorized2D.cpp @@ -58,7 +58,7 @@ void QGaussLegendreTensorized2D::SetPointsAndWeights() { } unsigned range = std::floor( _order / 2.0 ); // comment (steffen): Only half of the points, due to projection - double normalizationFactor = 2; + double normalizationFactor = 0.5; // resize points and weights _pointsKarth.resize( _nq ); diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 0d02c762..6c7b2b5a 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -95,7 +95,7 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { for( unsigned idx_dim = 0; idx_dim < _nDim; idx_dim++ ) { _quadPts[Idx2D( idx_sys, idx_dim, _nDim )] = quadPoints[idx_sys][idx_dim]; } - _quadWeights[idx_sys] = quadWeights[idx_sys]; + _quadWeights[idx_sys] = 4.0 * quadWeights[idx_sys]; // Rescaling of quadweights TODO: Check if this needs general refactoring for( unsigned idx_sys2 = 0; idx_sys2 < _nSys; idx_sys2++ ) { _scatteringKernel[Idx2D( idx_sys, idx_sys2, _nSys )] = scatteringKernel( idx_sys, idx_sys2 ); diff --git a/tests/input/validation_tests/CSD_PN_solver/starmap_validation_2nd_reference.vtk b/tests/input/validation_tests/CSD_PN_solver/starmap_validation_2nd_reference.vtk index ec0ebce3..4d20ea98 100644 --- a/tests/input/validation_tests/CSD_PN_solver/starmap_validation_2nd_reference.vtk +++ b/tests/input/validation_tests/CSD_PN_solver/starmap_validation_2nd_reference.vtk @@ -1737,100 +1737,100 @@ radiation%20flux%20density 1 900 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 0 2.2568076404e-05 -0.00010201751006 0.00018242816647 0.00089553148092 -0.013843498727 --0.030458232335 0.18607645408 -1.0167887599 -3.7338679426 8.5468797757 85.336877986 -31.570129731 -1558.2367538 -2256.5627929 --2256.5627913 -1558.2367515 -31.570128961 85.336877636 8.5468797534 -3.7338679474 -1.0167887633 0.18607645431 -0.030458232104 --0.013843498741 0.00089553148851 0.00018242816416 -0.00010201751033 2.2568076441e-05 0 0 -0.00011805976052 0.00030517216647 -0.0013685506781 -0.010354893485 -0.013156058908 0.15831109153 -1.1044772249 -4.3619171608 17.794355187 55.461160859 -360.76954163 --2485.8208851 -2576.4864765 5956.4774019 5956.4774326 -2576.4864702 -2485.8208819 -360.76954195 55.461160762 17.794355135 --4.361917162 -1.104477225 0.15831109165 -0.01315605898 -0.010354893469 0.0013685506852 0.00030517216388 -0.00011805976067 0 -0 0.00049201615971 0.0014610280715 -0.0099786108175 -0.012945841065 0.1958609879 -1.0040763382 -4.3667751265 32.058874425 -49.563556503 -939.47062852 -2638.9918995 7044.6021038 28076.568344 24147.573235 24147.573165 28076.56836 7044.6021042 --2638.9918986 -939.47062531 49.563556534 32.058874367 -4.366775123 -1.0040763374 0.19586098802 -0.01294584104 -0.0099786108026 -0.0014610280726 0.00049201615729 0 0 0.00097425122658 -0.012884689894 -0.019085406353 0.21907545649 -1.4744312398 --3.2577882068 39.485477074 60.909021424 -669.97846221 -2065.7368564 28207.360983 51894.371875 42393.306354 32405.60799 -32405.607993 42393.306208 51894.371879 28207.360972 -2065.736857 -669.97846051 60.909021436 39.485477069 -3.2577882086 --1.4744312399 0.21907545644 -0.019085406318 -0.012884689879 0.00097425123253 0 0 -0.01811086123 -0.008730452979 -0.26532114304 -1.6657743448 -3.0120406834 48.054155443 73.062034224 -683.78935485 -1219.1859716 53416.639081 70201.808472 -35541.384142 28270.249927 32883.778783 32883.778796 28270.24997 35541.383956 70201.80848 53416.639066 -1219.1859719 --683.78935475 73.06203419 48.054155426 -3.0120406856 -1.6657743426 0.26532114286 -0.0087304530666 -0.018110861196 0 -0 -0.020189399753 0.30644267457 -1.8670441419 -4.4260599916 50.694330275 78.034534621 -566.61766826 -707.71028427 -70016.750104 85097.031231 22241.032168 15525.061554 29182.959368 40137.642717 40137.642731 29182.959494 15525.061528 -22241.032067 85097.031266 70016.750093 -707.71028626 -566.61766842 78.034534583 50.694330213 -4.4260600086 -1.8670441391 -0.30644267477 -0.020189399636 0 0 0.41417239974 -2.3305579326 -6.1303213868 46.600039728 75.673703253 --632.16355591 -472.12014519 79629.87295 88490.813619 16831.397131 4572.0516316 32671.655688 35818.003765 39625.584414 -39625.584393 35818.003812 32671.655741 4572.0515874 16831.397027 88490.813666 79629.872937 -472.12014585 -632.16355606 -75.673703218 46.600039649 -6.1303214069 -2.3305579299 0.41417239985 0 0 -2.606369472 -7.6019409566 -42.567083463 61.549312093 -810.58127765 -824.41136473 79769.134114 88262.355163 18550.592803 2741.377628 35034.963238 -39528.050617 42338.090876 29115.851479 29115.851461 42338.09077 39528.050714 35034.963262 2741.3775649 18550.592678 -88262.355231 79769.134099 -824.41136684 -810.58127762 61.549312141 42.567083412 -7.6019409703 -2.6063694685 0 -0 -8.4933555449 21.899610449 60.364253412 -856.57581616 -1367.4204828 70567.759951 88958.248418 21019.482498 -1883.5303138 32540.480448 36696.240718 45299.123101 36030.073261 25586.040771 25586.040818 36030.073273 45299.123012 -36696.240741 32540.480526 1883.530277 21019.482341 88958.248463 70567.759935 -1367.4204837 -856.57581344 60.364253411 -21.899610366 -8.493355551 0 0 12.257095038 86.437109006 -1069.5780908 -2295.5553358 52766.491349 -85017.097638 22012.649729 6200.5152628 29366.430291 33016.825219 45913.850404 37987.122878 31492.830435 24908.773769 -24908.773942 31492.830458 37987.122759 45913.850306 33016.825302 29366.430424 6200.515176 22012.649567 85017.097672 -52766.491328 -2295.555334 -1069.5780923 86.437108883 12.257094834 0 0 131.15436166 -375.06064282 --2955.711193 26494.871733 70434.338894 34454.166146 10194.125454 24131.084634 31065.579087 44827.478124 39865.966644 -35959.550276 28785.234468 26101.99423 26101.994181 28785.234583 35959.550237 39865.966719 44827.478115 31065.579182 -24131.084752 10194.125372 34454.166031 70434.338917 26494.871716 -2955.7111964 -375.06063973 131.15436153 0 -0 -85.499901368 -2706.309438 5054.6103118 53893.640339 54038.313008 18094.362519 20786.494326 29829.609636 -42222.086709 37460.686462 33019.18672 23860.968338 25623.740986 29847.183963 29847.183455 25623.740854 23860.968594 -33019.186595 37460.686408 42222.086716 29829.609779 20786.494385 18094.362469 54038.312954 53893.64034 5054.610303 --2706.3094311 -85.499899423 0 0 -2385.027149 -4601.3856957 28288.009671 54344.285278 32232.47291 -15101.129042 19423.093453 36747.570028 38764.408 36497.255621 23468.227973 16522.679173 22576.742531 36733.79045 -36733.79056 22576.74241 16522.678782 23468.227901 36497.255532 38764.407982 36747.569984 19423.093551 15101.128978 -32232.472939 54344.28521 28288.009687 -4601.3856841 -2385.0271481 0 0 -3186.9131616 1490.8408625 -28825.366743 40560.183664 33193.182844 24232.184135 21380.990293 24551.971566 31534.986348 30658.336704 28167.345903 -25500.094526 29192.99579 29178.051348 29178.051631 29192.995989 25500.094176 28167.34589 30658.336848 31534.986379 -24551.971428 21380.990231 24232.184177 33193.182837 40560.18366 28825.366712 1490.8408898 -3186.9131577 0 -0 -3660.171338 4898.6722411 25455.926416 34303.58518 26130.123181 16801.142722 24731.879257 30822.873837 -26339.371634 25279.455787 25930.408057 36536.443254 37414.793082 31219.61419 31219.614181 37414.792909 36536.443437 -25930.408235 25279.455757 26339.371444 30822.873974 24731.879426 16801.142566 26130.123016 34303.585296 25455.926691 -4898.6720628 -3660.1713387 0 0 -1935.4910526 -2576.8626219 25180.529203 36948.385284 11389.507995 -163.23268586 19273.884255 42518.836754 43285.643789 22610.422513 22394.488377 31904.390718 39314.497198 50118.706804 -50118.706679 39314.497179 31904.390901 22394.488332 22610.422431 43285.643986 42518.836948 19273.884172 163.23252359 -11389.508044 36948.385397 25180.529156 -2576.8626365 -1935.4910555 0 0 146.64201341 -1263.1907841 --1374.929998 17048.058032 47641.756391 63324.082955 72943.537335 91962.79643 122172.89898 162169.76968 205982.26676 -243905.15652 296433.1212 338454.86539 338454.86549 296433.12129 243905.15651 205982.26677 162169.76977 122172.899 -91962.79627 72943.537307 63324.083069 47641.756437 17048.057966 -1374.9300117 -1263.1907805 146.64201632 0 -0 6.1416212848 38.955424067 -71.051616989 -577.19767787 -889.02082511 7021.2173155 16838.000344 25903.578833 -37472.186037 59090.463736 100963.82372 161754.47624 234275.08653 290724.63324 290724.63321 234275.08653 161754.47623 -100963.8237 59090.463695 37472.186007 25903.578859 16838.000357 7021.2173038 -889.02084238 -577.19767486 -71.051617531 -38.955424239 6.1416211506 0 0 -0.35057653018 3.8174392822 12.952293977 -64.013523319 -299.42269211 --745.48259493 -1074.6989439 36.758927488 2532.9619526 7759.5922695 18929.684255 42304.35182 80407.631664 123753.76926 -123753.76925 80407.631655 42304.351811 18929.684245 7759.5922684 2532.9619584 36.758934316 -1074.698946 -745.48259511 --299.42269218 -64.013522184 12.952294499 3.8174392827 -0.35057653678 0 0 -0.0049571370167 -0.13553127412 --0.50004327395 1.5253689509 8.9514014807 -62.91769676 -225.89325318 -388.44560513 -678.61687724 -1256.8662632 -2160.7837756 --1696.564338 473.19137679 7968.099291 7968.0992937 473.19137433 -1696.5643368 -2160.7837741 -1256.8662627 -678.61687774 --388.4456053 -225.89325334 -62.917696525 8.9514014813 1.5253688858 -0.50004328807 -0.1355312742 -0.004957136799 0 -0 -0.0013239369352 0.0059359944883 0.00086463001 -0.095397423762 0.78908781354 1.0397948201 7.3041034341 -11.341664131 --111.46433931 -397.41703572 -812.89901446 -1911.4158242 -3007.8931946 -3748.1442079 -3748.1442092 -3007.8931932 -1911.4158241 --812.89901406 -397.41703556 -111.46433933 -11.341664101 7.3041034577 1.0397948262 0.7890878184 -0.095397418595 0.00086462998675 -0.0059359945247 -0.0013239369197 0 0 -8.1144671192e-05 0.0025621684923 0.0037809636048 -0.011694498333 -0.019575062239 --0.029632277805 0.94833563513 2.0205142334 3.7190769024 -2.5095627576 -51.375923862 -359.54498947 -718.64683934 -649.42774235 --649.42774259 -718.64683895 -359.54498951 -51.375923874 -2.5095627669 3.7190769071 2.0205142361 0.94833563883 -0.029632278516 --0.019575061772 -0.011694498256 0.0037809635503 0.0025621684839 -8.1144673476e-05 0 0 3.9847231497e-05 1.2300978306e-05 --0.00057500710043 0.0010557027713 -0.001224925473 -0.00042900687386 -0.020327635492 0.10421013582 0.29747689774 0.3772652858 3.3338836959 -34.226978385 82.689230275 76.446861012 76.446861081 82.68923024 34.2269784 3.3338836964 0.3772652851 0.29747689636 -0.10421013538 -0.020327635476 -0.0004290068916 -0.0012249253792 0.0010557027631 -0.00057500709375 1.2300978499e-05 3.9847231395e-05 0 -0 1.8056362869e-06 -2.5650094164e-05 -7.1768692217e-05 0.00020610547479 0.00032201178159 0.0004341364346 -0.0021258900611 -0.032532344085 --0.045664255562 -0.033725022873 1.537971042 16.759786545 21.418572699 21.075576518 21.075576509 21.418572684 16.759786546 -1.5379710426 -0.033725022811 -0.045664255635 -0.032532344126 -0.0021258900647 0.00043413644383 0.00032201177855 0.00020610547324 -7.1768690959e-05 --2.5650094198e-05 1.8056362969e-06 0 0 -5.9240595619e-07 3.3957252267e-07 1.8613734302e-05 8.2416743578e-06 -9.075574717e-05 --0.00031521864939 -0.00022396906559 -0.0027272638744 0.0011872857007 -0.0054627958346 0.041761088997 0.4802738394 -1.4902621126 -0.65900482857 --0.65900483163 -1.4902621119 0.4802738388 0.041761088957 -0.0054627958379 0.0011872857107 -0.002727263876 -0.00022396906644 -0.00031521864866 --9.075574609e-05 8.2416741776e-06 1.8613734055e-05 3.3957251688e-07 -5.9240595879e-07 0 0 1.2047986144e-08 1.2331321352e-07 -7.7326603227e-07 -2.9074134909e-06 -1.5960694654e-05 -4.5810948632e-05 4.1421013737e-05 0.00063316442011 0.00080532042205 0.00050151454824 -0.020752314287 --0.42327347944 -0.30787248997 -0.38985223697 -0.38985223652 -0.30787248983 -0.42327347918 -0.020752314288 0.0005015145455 0.00080532042336 -0.00063316442035 4.1421013627e-05 -4.5810948707e-05 -1.5960694459e-05 -2.9074134754e-06 7.7326601718e-07 1.233132141e-07 1.2047986198e-08 0 -0 8.7182086289e-10 -3.0103913381e-09 -2.4028176114e-07 -5.2402671438e-07 9.2680524996e-07 1.1107458236e-05 1.6171111618e-05 4.1963075912e-05 --3.7285320287e-05 0.00013595713946 -0.0014760150951 -0.030133275918 0.024939706099 0.0058086789124 0.0058086790116 0.024939706088 -0.030133275889 --0.001476015095 0.00013595713957 -3.7285320459e-05 4.1963075913e-05 1.6171111648e-05 1.110745822e-05 9.268052442e-07 -5.240267086e-07 -2.4028175874e-07 --3.0103913637e-09 8.7182086398e-10 0 0 -7.4747866702e-11 -7.9952163914e-10 5.1184232427e-10 5.7162822375e-08 2.560487307e-07 -1.3022909737e-06 1.400776772e-07 -4.9269991277e-06 -8.0546056205e-06 -3.8816794387e-05 6.0845929589e-05 0.0051672214701 0.0039922890945 0.0043015884222 -0.0043015884175 0.0039922890965 0.0051672214672 6.0845929527e-05 -3.8816794391e-05 -8.0546056311e-06 -4.9269991255e-06 1.4007768295e-07 1.3022909805e-06 -2.5604872951e-07 5.7162822015e-08 5.1184232215e-10 -7.9952163729e-10 -7.4747866741e-11 0 0 0 0 +0 0 0 0 2.5468307699e-06 -8.9182542944e-06 0.00016332556165 -0.00070975264151 -0.0006348471239 +0.0037141946206 0.0048007863367 -0.051599708446 -0.21506110092 -1.1911138074 -3.0142632337 -3.917151096 11.785621516 175.47733592 +175.47733589 11.785621498 -3.9171511046 -3.0142632411 -1.1911138091 -0.21506110142 -0.051599708395 0.004800786318 0.0037141946101 +-0.00063484710541 -0.00070975262826 0.00016332556482 -8.9182540184e-06 2.5468304519e-06 0 0 -1.1215289827e-05 0.00018516630904 +-0.00097360111714 -0.00025285926978 0.0067439436016 0.016899655087 0.0045177873567 -0.23333802652 -0.81870189558 -2.2182052342 3.0547707382 +263.37288455 3308.9464544 7663.4960206 7663.4960225 3308.946455 263.37288447 3.054770719 -2.2182052424 -0.81870189726 +-0.23333802644 0.0045177874486 0.016899655231 0.0067439436213 -0.00025285925014 -0.00097360110382 0.00018516631171 -1.1215289724e-05 0 +0 0.00017377560427 -0.0013040240484 0.00020953250771 0.015040281105 0.034899809741 0.038696805025 0.095871479598 -0.35067613336 +2.6541473198 96.651937478 1710.7524515 13714.746033 22687.972329 18844.550079 18844.550074 22687.972328 13714.746032 +1710.7524508 96.651937403 2.6541473117 -0.35067613375 0.095871480663 0.03869680525 0.034899809774 0.01504028112 0.00020953252458 +-0.0013040240379 0.00017377560574 0 0 -0.001397091902 0.00061649274307 0.025274836297 0.076477398907 0.11355494592 +0.2358791298 0.73346429658 17.329761605 365.90142863 5666.4751409 30015.322222 36808.779903 30695.371753 28571.196571 +28571.196572 30695.371731 36808.7799 30015.32222 5666.475139 365.90142844 17.329761597 0.73346429799 0.23587913066 +0.11355494601 0.07647739886 0.025274836298 0.00061649275394 -0.0013970918945 0 0 -0.0022298214331 0.026590664206 +0.12199828297 0.24174602925 0.75738234959 2.5875896345 34.380067669 705.25063397 11647.648989 45440.649764 51919.487632 +33143.215071 33144.211097 35894.005067 35894.005079 33144.211113 33143.215042 51919.487631 45440.649762 11647.648985 +705.2506337 34.380067664 2.5875896356 0.75738234989 0.24174602914 0.12199828296 0.026590664203 -0.0022298214284 0 +0 -0.0082790151714 0.047238978263 0.26027925315 0.81553090177 3.5483047097 42.814772587 935.98342386 18222.243906 +53094.06175 57202.149378 29964.705702 31003.924724 35412.676856 39245.507907 39245.507918 35412.676865 31003.924736 +29964.705679 57202.14938 53094.06175 18222.2439 935.98342354 42.814772576 3.5483047103 0.81553090239 0.26027925322 +0.047238978282 -0.0082790151904 0 0 -0.055659434177 -0.099402351834 0.22316985244 1.376151039 35.580622401 +937.26191203 22348.130358 56505.546517 60135.664595 31372.418106 28529.375614 34336.810805 36825.574923 36751.268864 +36751.268841 36825.574934 34336.810804 28529.375629 31372.418079 60135.664603 56505.546518 22348.130352 937.2619117 +35.580622391 1.3761510387 0.2231698527 -0.099402351881 -0.055659434219 0 0 -0.23414618353 -0.72929219161 +-0.7977724533 15.705620353 700.31814838 18152.395524 56654.733153 60353.098293 32260.029271 25645.408245 33190.419566 +37225.757215 36984.861746 31816.061057 31816.061064 36984.861717 37225.757211 33190.419588 25645.408247 32260.029245 +60353.098307 56654.733153 18152.395518 700.31814809 15.705620344 -0.7977724535 -0.72929219163 -0.23414618348 0 +0 -0.77750550892 -2.8639452614 -1.2954039296 353.56942639 11591.785177 53618.870018 62343.551295 33133.189085 +22675.686415 30102.982924 37309.247293 37407.628627 32334.747328 31582.336345 31582.336336 32334.747319 37407.628604 +37309.247293 30102.982957 22675.686414 33133.189058 62343.551301 53618.870018 11591.785173 353.56942622 -1.2954039365 +-2.863945263 -0.77750550868 0 0 -2.7325305329 -7.7923107411 88.614503045 5701.09871 45924.803877 +59273.140785 32659.991892 26250.698836 28202.045285 33998.561911 37699.818673 34031.626325 31954.390399 28615.480031 +28615.480037 31954.390384 34031.626325 37699.818664 33998.56191 28202.045322 26250.698837 32659.991858 59273.14079 +45924.803876 5701.0987081 88.614502981 -7.7923107463 -2.7325305338 0 0 -6.9008496706 -3.7543072234 +1717.2503983 29422.414456 53936.896548 34717.737734 27924.487392 28412.125457 34492.091619 36331.051325 31502.88427 +33075.297989 29398.889443 24628.088872 24628.088864 29398.889444 33075.297993 31502.884261 36331.05132 34492.091624 +28412.125478 27924.487391 34717.737709 53936.89655 29422.414455 1717.2503976 -3.754307239 -6.9008496728 0 +0 -8.7090701797 226.62466831 12310.925788 40074.756654 41684.558091 29600.227141 27911.500599 31517.613424 +35000.775882 34530.808603 31679.056669 26992.954231 26153.216557 26990.139657 26990.139643 26153.21654 26992.954238 +31679.056672 34530.808602 35000.775883 31517.613433 27911.500614 29600.227143 41684.558075 40074.756653 12310.925788 +226.62466827 -8.709070184 0 0 -2.0823544521 1858.5113263 24248.969775 40265.251186 30691.267401 +28562.612074 27947.841165 29790.730189 31047.221829 33110.317178 29051.494462 22591.754769 25199.253595 32270.5746 +32270.574589 25199.253589 22591.754764 29051.494475 33110.317183 31047.221824 29790.730192 27947.841164 28562.612076 +30691.267401 40265.251179 24248.969774 1858.5113271 -2.0823544595 0 0 15.897688962 6778.8519502 +22409.130199 30474.804282 31266.496739 28734.927318 25100.056528 24186.882319 29194.132489 27992.039542 27500.047839 +27441.40047 29961.883256 28686.090822 28686.090832 29961.88327 27441.400473 27500.047836 27992.039554 29194.132486 +24186.882311 25100.056523 28734.927323 31266.496736 30474.804276 22409.130199 6778.8519488 15.897688937 0 +0 15.466499186 7832.6429473 21233.182137 26534.503988 26652.333388 21447.852702 23434.456637 29547.148041 +27288.260108 26024.86582 26509.431264 34311.284053 34681.330746 32598.295611 32598.29559 34681.330752 34311.284064 +26509.431275 26024.86582 27288.260104 29547.148051 23434.45665 21447.852703 26652.333373 26534.503986 21233.182142 +7832.6429457 15.466499173 0 0 5.4992311548 2801.8050163 20873.66603 24994.025769 15325.39358 +14042.925979 21120.174928 31175.763759 34784.576744 26561.877873 27219.13617 30892.508874 40227.093795 46840.734859 +46840.734849 40227.093787 30892.508891 27219.136159 26561.877864 34784.576761 31175.763781 21120.174941 14042.92596 +15325.393565 24994.02578 20873.66603 2801.8050141 5.4992311352 0 0 -1.025178257 60.570644178 +2908.2414654 19072.261113 40778.05079 58328.147624 75065.867173 95583.92963 122314.52218 155557.36653 195873.28294 +238757.69518 291979.22234 328479.2529 328479.25291 291979.22235 238757.69518 195873.28294 155557.36654 122314.5222 +95583.929626 75065.867162 58328.147618 40778.050795 19072.261111 2908.2414639 60.570644108 -1.0251782566 0 +0 -0.055597642064 -0.3806351154 9.5050738576 217.81601771 1800.7571955 8113.6955888 17279.54434 28263.881534 +41777.161021 62992.5778 99555.919043 154466.84631 225865.63859 287261.67546 287261.67546 225865.63858 154466.84631 +99555.919038 62992.577794 41777.161015 28263.881532 17279.544341 8113.6955893 1800.7571949 217.81601763 9.5050738598 +-0.38063511502 -0.055597642476 0 0 -0.0065988492621 0.14265709193 0.24407120403 0.62696506433 11.237812177 +140.85640415 721.32309779 2263.1744277 5103.3966382 10428.012213 21459.964165 43221.698532 81670.998413 130103.42089 +130103.42088 81670.998407 43221.698529 21459.964163 10428.012213 5103.3966379 2263.1744283 721.32309793 140.85640415 +11.237812178 0.62696506453 0.24407120473 0.14265709224 -0.0065988493238 0 0 -0.0001743721164 0.0062561768577 +-0.00028674894259 0.017316111246 0.064647709797 0.54808742814 5.6103406617 34.033372179 145.87543023 501.28011162 1488.718844 +3870.1572357 8663.2891456 16582.006387 16582.006386 8663.2891449 3870.1572353 1488.718844 501.28011167 145.87543025 +34.033372182 5.6103406617 0.54808742808 0.064647709856 0.017316111296 -0.00028674892612 0.0062561768715 -0.00017437210773 0 +0 -2.7023837994e-05 -0.00024204439049 7.7334483385e-05 0.0042489642096 0.004377568249 0.011490542246 0.020113896743 0.085272548759 +0.92370820451 6.361892093 27.207955526 85.198890019 184.98883053 156.77899461 156.77899462 184.98883053 85.19889001 +27.207955522 6.3618920928 0.92370820445 0.085272548703 0.020113896742 0.011490542233 0.0043775682458 0.0042489642095 7.7334483209e-05 +-0.00024204439034 -2.7023837946e-05 0 0 9.5332863554e-07 2.1085080316e-05 0.00012851699684 0.00020029789652 0.00032519335537 +0.00073461327144 -0.00195125841 -0.0085572079262 -0.0041848584489 -0.10433164665 -0.61283946469 -0.28098115745 0.68861528458 0.64805077778 +0.6480507778 0.68861528469 -0.28098115746 -0.61283946469 -0.10433164665 -0.0041848584637 -0.0085572079382 -0.0019512584128 0.00073461327155 +0.00032519335534 0.0002002978961 0.0001285169966 2.1085080252e-05 9.5332861829e-07 0 0 2.5304817384e-07 2.0717694893e-06 +3.3938164269e-06 7.9076591551e-06 3.6162544945e-05 -0.00013141997665 -0.0011924331736 -0.002189323327 -0.011448535848 -0.088159975452 -0.12508626218 +-0.083131245561 -0.047940290494 -0.09495639512 -0.094956395174 -0.047940290484 -0.083131245554 -0.12508626217 -0.088159975449 -0.011448535849 +-0.0021893233302 -0.0011924331751 -0.00013141997684 3.6162544991e-05 7.9076591688e-06 3.3938164263e-06 2.0717694869e-06 2.5304817283e-07 0 +0 4.682459939e-08 1.0463940505e-07 5.4764234646e-08 1.2842795174e-06 -2.2499792974e-06 -4.5064825951e-05 -0.00015209212539 -0.00017221961103 +-0.0012586920774 -0.0058160188792 0.0022515524377 -0.0020417131155 -0.022799699379 -0.020126033787 -0.020126033792 -0.022799699386 -0.0020417131156 +0.0022515524381 -0.0058160188789 -0.0012586920773 -0.00017221961112 -0.00015209212562 -4.5064826008e-05 -2.2499793e-06 1.2842795201e-06 5.4764235433e-08 +1.0463940557e-07 4.6824599336e-08 0 0 -2.6969633284e-09 -8.7903327655e-09 4.0502167498e-08 9.7604180133e-08 -1.1621834924e-06 +-4.6017575981e-06 -2.0852429196e-06 -1.9178868122e-05 -1.3627063212e-05 0.00066675095079 0.00067829438633 -0.00014430086242 -0.0013043628573 -4.5030193841e-05 +-4.5030194089e-05 -0.0013043628583 -0.00014430086245 0.0006782943864 0.00066675095087 -1.362706317e-05 -1.917886812e-05 -2.0852429212e-06 -4.6017576094e-06 +-1.1621834957e-06 9.7604180174e-08 4.0502167593e-08 -8.7903327082e-09 -2.6969633122e-09 0 0 1.5055976491e-11 1.6161429938e-09 +8.2662873393e-09 -3.1442320371e-08 -1.7259502711e-07 9.9334643764e-08 -7.5738506711e-08 2.203782e-07 3.0682135079e-05 8.6047299103e-05 -2.5694751363e-05 +-5.8293936963e-05 1.9654997578e-05 2.5784861375e-05 2.5784861373e-05 1.9654997572e-05 -5.8293936971e-05 -2.5694751365e-05 8.6047299114e-05 3.0682135077e-05 +2.203782002e-07 -7.5738506546e-08 9.9334644004e-08 -1.7259502741e-07 -3.1442320478e-08 8.2662873176e-09 1.6161429927e-09 1.5055977559e-11 0 +0 3.717516529e-11 2.5209645723e-10 -1.1708878209e-09 -7.9657630197e-09 8.5040496616e-09 3.2322597657e-08 -6.2925157569e-09 3.775069008e-07 +3.3937689036e-06 -5.5519498428e-06 -9.2688325346e-06 -1.4683951631e-06 3.5619850377e-06 3.0574130461e-07 3.0574130584e-07 3.5619850378e-06 -1.4683951636e-06 +-9.2688325356e-06 -5.5519498436e-06 3.393768902e-06 3.7750690085e-07 -6.2925157253e-09 3.2322597725e-08 8.5040497402e-09 -7.9657630281e-09 -1.1708878235e-09 +2.520964565e-10 3.7175165232e-11 0 0 -1.3254594065e-12 -4.2649280233e-11 -2.1136212298e-10 4.7327420798e-10 3.2356186765e-09 +-2.1919948894e-09 -6.441695186e-09 1.0287603374e-09 -3.1928809876e-07 -7.286340607e-07 -2.2848287867e-08 2.3538943538e-07 -3.1826210578e-08 -3.1901325046e-08 +-3.1901325044e-08 -3.1826210578e-08 2.3538943538e-07 -2.2848287886e-08 -7.2863406078e-07 -3.1928809873e-07 1.0287603329e-09 -6.4416951953e-09 -2.1919948953e-09 +3.2356186858e-09 4.7327421039e-10 -2.1136212265e-10 -4.264928026e-11 -1.3254594124e-12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -1839,100 +1839,100 @@ dose 1 900 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 0 1.3881440982e-07 -6.7751819017e-07 8.0216606475e-07 9.1920752444e-06 -0.00011027106153 --0.00041203630445 0.001534665403 -0.0063937454548 -0.046709595764 0.028322070659 0.93904843605 1.1726400741 -11.700065278 -29.626505313 --29.626505288 -11.70006528 1.1726400737 0.9390484312 0.02832207029 -0.046709595875 -0.0063937454814 0.001534665412 -0.00041203630249 --0.00011027106166 9.1920752278e-06 8.0216604288e-07 -6.7751819218e-07 1.3881440999e-07 0 0 -8.303422915e-07 1.4715673074e-06 -1.6401800913e-05 -7.2201341714e-05 -0.00024563716734 0.0012517843379 -0.0076382221136 -0.055557901203 0.087362945242 0.63914401843 -2.095761361 --26.038034168 -49.938514395 7.3389733621 7.3389736038 -49.938514293 -26.038034123 -2.0957613655 0.63914401776 0.08736294472 --0.055557901219 -0.0076382221131 0.0012517843377 -0.00024563716819 -7.2201341376e-05 1.6401800958e-05 1.471567284e-06 -8.3034229249e-07 0 -0 3.1191650698e-06 1.677660466e-05 -6.4728431633e-05 -0.00018170121894 0.0016699945343 -0.0064717113559 -0.053610198296 0.19966992194 -0.68507602294 -7.2040763979 -32.716201599 18.250405612 252.09568705 354.25747217 354.25747196 252.09568733 18.250405679 --32.716201598 -7.2040763708 0.68507602333 0.19966992149 -0.053610198274 -0.0064717113487 0.0016699945345 -0.00018170121824 -6.4728431464e-05 -1.6776604647e-05 3.1191650479e-06 0 0 1.2921527816e-05 -9.0382545008e-05 -0.00026615422937 0.0020082719498 -0.0098211544485 --0.04262437001 0.28324558186 0.931548173 -4.7937647766 -28.821547248 197.29552781 625.28933084 855.2033123 850.06167941 -850.06167851 855.20331125 625.28933089 197.29552776 -28.821547226 -4.7937647594 0.9315481732 0.28324558184 -0.042624370019 --0.0098211544469 0.0020082719468 -0.00026615422828 -9.0382544929e-05 1.2921527899e-05 0 0 -0.00015810620027 -0.00026434549803 -0.0023421573301 -0.011137722031 -0.041920296056 0.37099853203 1.1822551894 -4.8224147439 -18.729728769 454.19204756 1131.1277021 -1347.3055424 1320.0570718 1309.3211168 1309.3211158 1320.0570703 1347.305541 1131.127702 454.19204732 -18.729728763 --4.8224147414 1.1822551886 0.37099853177 -0.041920296067 -0.011137722016 0.0023421573247 -0.00026434549882 -0.00015810619968 0 -0 -0.00042697429149 0.0030728419147 -0.012256035993 -0.05992274138 0.39023512482 1.31501188 -3.6726957541 -13.020206567 -657.4173683 1546.613843 1671.3999296 1600.7015324 1752.6776382 1980.7717366 1980.7717382 1752.6776392 1600.7015312 -1671.3999288 1546.6138432 657.41736785 -13.020206586 -3.6726957529 1.3150118794 0.39023512398 -0.05992274155 -0.012256035972 -0.0030728419151 -0.00042697428953 0 0 0.0039759860788 -0.015544792958 -0.080879649752 0.31761118534 1.2668294838 --3.8388082948 -10.573968129 792.98901963 1774.5779486 1925.5668636 1742.1742314 1921.374068 2250.0832554 2417.6709541 -2417.6709539 2250.0832553 1921.3740679 1742.17423 1925.5668629 1774.5779488 792.98901905 -10.573968139 -3.8388082948 -1.2668294831 0.31761118431 -0.080879649946 -0.015544792926 0.0039759860845 0 0 -0.015388086452 -0.1019259393 -0.24932588823 1.0067650858 -5.725599808 -14.79493362 794.93882518 1845.3495087 2019.5550603 1989.4068533 2068.7025378 -2486.3463222 2956.6604738 3094.4828663 3094.4828656 2956.660473 2486.3463229 2068.7025373 1989.4068517 2019.5550598 -1845.349509 794.9388246 -14.794933635 -5.7255998042 1.0067650857 0.24932588754 -0.1019259394 -0.01538808642 0 -0 -0.10408763843 0.046789429122 0.84293423978 -6.2185573243 -21.367872364 665.49497993 1784.2683691 2042.9289536 -2064.8780703 2040.7413137 2519.316221 3194.5717552 3444.7145015 3573.8895237 3573.8895241 3444.7145003 3194.571756 -2519.3162207 2040.7413131 2064.8780689 2042.9289527 1784.2683692 665.4949794 -21.367872372 -6.2185573003 0.84293423895 -0.04678942834 -0.10408763848 0 0 -0.014907445457 0.90993808052 -8.1093681523 -33.420142885 449.17197255 -1548.791965 1981.7530918 2086.6012173 2055.5863424 2609.9593972 3399.6464693 3840.0485449 4022.667731 4463.562384 -4463.5623833 4022.6677305 3840.0485445 3399.6464701 2609.9593969 2055.5863427 2086.6012151 1981.7530905 1548.7919651 -449.17197218 -33.420142856 -8.1093681662 0.9099380779 -0.014907447172 0 0 1.4272508598 -1.6416334885 --35.125315947 178.68374905 1136.7992674 1789.6283538 1858.8468008 2014.3078891 2475.9271543 3403.6413185 3864.0840637 -4202.7037184 4736.2174396 5891.312566 5891.3125677 4736.2174408 4202.7037176 3864.0840657 3403.6413202 2475.9271551 -2014.3078886 1858.8467982 1789.6283527 1136.7992672 178.68374884 -35.125315964 -1.6416334671 1.4272508558 0 -0 1.4968155606 -29.262520232 -4.9935425803 635.37122901 1507.942292 1775.585496 1881.1430596 2389.3533929 -3056.8311303 3716.3387893 4266.0390773 4981.4107991 5695.5740951 8098.2357282 8098.2357247 5695.5740965 4981.4108006 -4266.0390732 3716.3387903 3056.8311327 2389.3533946 1881.1430596 1775.5854946 1507.9422915 635.37122861 -4.9935425525 --29.262520136 1.4968155744 0 0 -17.551083771 -71.816103391 215.00585137 956.42276531 1548.639522 -1820.4892327 2060.1286524 2667.8101385 3115.1056916 3877.030735 4657.1245848 5638.040048 7242.7252978 10748.904369 -10748.904371 7242.7252941 5638.0400441 4657.1245828 3877.0307337 3115.1056928 2667.8101394 2060.1286537 1820.4892324 -1548.6395219 956.42276452 215.00585165 -71.816103233 -17.551083748 0 0 -36.818594968 -50.228424167 -340.62111849 953.16381023 1480.5511309 1866.3899418 2147.8033106 2729.1586666 3221.662709 4309.3485515 5719.2701681 -7944.0931721 10655.704172 12790.059984 12790.05999 10655.70417 7944.0931697 5719.2701683 4309.3485529 3221.6627058 -2729.1586663 2147.8033127 1866.3899411 1480.5511295 953.16380926 340.62111865 -50.228423877 -36.818594936 0 -0 -40.857636136 -11.685602189 351.17023146 878.77633002 1250.8837019 1580.9149257 1938.2824822 2639.9836796 -3264.4404459 4327.2568568 5596.239953 7930.2526109 10749.447652 12995.848552 12995.848552 10749.447652 7930.2526141 -5596.2399533 4327.2568585 3264.4404476 2639.9836792 1938.2824815 1580.9149217 1250.8837027 878.7763316 351.17023238 --11.685603574 -40.857636021 0 0 -14.505172321 -57.032496025 216.18368472 760.97102543 1123.898259 -1277.6050644 1671.843678 2450.7579729 3234.6126766 3862.6379955 4799.1161046 5862.093365 7711.0911107 11169.278479 -11169.278478 7711.0911091 5862.093365 4799.1161059 3862.6379973 3234.6126796 2450.7579717 1671.8436766 1277.605065 -1123.8982599 760.97102511 216.18368393 -57.032496129 -14.50517227 0 0 0.55987499076 -2.048812192 --6.1770471805 25.867669488 148.14741984 319.6374393 520.46110908 787.04126924 1150.6384425 1649.1583956 2490.9248591 -3626.4739933 5059.7025816 8017.8259966 8017.8259966 5059.7025818 3626.4739933 2490.9248591 1649.1583956 1150.6384423 -787.04126898 520.46110918 319.63743967 148.14741979 25.867669304 -6.1770472086 -2.0488121856 0.55987500052 0 -0 0.0064539050011 0.079161912627 0.0044717242345 -1.0816908193 -4.0176998969 11.214185992 51.154018075 113.28613862 -206.87304273 378.52203371 722.41077872 1293.3280998 2165.090889 3299.0541732 3299.0541728 2165.0908889 1293.3280997 -722.4107785 378.52203356 206.87304268 113.28613872 51.154018055 11.214185944 -4.0176999257 -1.0816908064 0.0044717226982 -0.079161912886 0.0064539046475 0 0 -0.00067434444515 0.0041986793944 0.02768319707 -0.051682162003 -0.74212181253 --2.506959315 -5.4738817627 -5.0874332324 1.7603081771 25.49731661 76.961054721 209.20649946 435.3999804 783.28532067 -783.28532059 435.39998036 209.20649942 76.961054714 25.497316623 1.7603081942 -5.0874332239 -5.4738817698 -2.5069593155 --0.7421218122 -0.051682159574 0.027683198648 0.0041986793901 -0.00067434445891 0 0 -1.7363335376e-05 -0.00040078786163 --0.0012382363029 0.0029160728878 0.018611146788 -0.089526045699 -0.6741519043 -1.4371513513 -2.9647336446 -6.0151544934 -12.683351755 --18.694893122 -35.190739904 -15.161080112 -15.161080078 -35.190739915 -18.694893113 -12.683351749 -6.0151544911 -2.9647336453 --1.4371513515 -0.67415190484 -0.089526045161 0.018611146791 0.0029160726611 -0.0012382363215 -0.00040078786183 -1.7363334683e-05 0 -0 -5.2359544042e-06 1.5506479143e-05 6.2124070433e-05 -0.00031040907678 0.0013342976479 0.0018053078381 0.018786493604 -0.0074460490226 --0.24903385366 -1.2647218199 -3.465907101 -10.721490214 -21.162068323 -21.571156932 -21.571156939 -21.162068315 -10.721490213 --3.4659071 -1.2647218194 -0.24903385362 -0.0074460489347 0.018786493648 0.0018053078374 0.0013342976434 -0.0003104090675 6.2124069569e-05 -1.5506479258e-05 -5.2359543726e-06 0 0 -2.5928160086e-07 5.8795516611e-06 1.1879506554e-05 -3.142869591e-05 -2.7354570848e-05 --8.0767169814e-05 0.0024489263812 0.0071996311109 0.012451458555 0.0042167923766 -0.12101345677 -1.2166845391 -2.4287225472 -1.6236857276 --1.62368573 -2.4287225452 -1.2166845392 -0.12101345682 0.004216792332 0.012451458574 0.0071996311173 0.0024489263904 -8.0767172745e-05 --2.7354569992e-05 -3.1428695658e-05 1.1879506363e-05 5.879551651e-06 -2.5928160493e-07 0 0 9.8644146367e-08 -2.826304494e-09 --2.2046136755e-06 2.2965206594e-06 4.4373396976e-06 1.5675190618e-05 -5.4211763732e-05 0.00016694299719 0.00013870338712 0.0015284791815 0.010623896307 -0.16214504396 0.51114693192 0.40109080976 0.40109081008 0.51114693162 0.16214504403 0.010623896312 0.0015284791777 0.00013870338221 -0.00016694299651 -5.4211763607e-05 1.567519065e-05 4.437339811e-06 2.2965206488e-06 -2.2046136453e-06 -2.8263041084e-09 9.8644146361e-08 0 -0 2.3571876968e-09 -4.8781677371e-08 -1.4473662941e-07 5.7289411958e-07 7.3937216232e-07 -3.0027861894e-07 -8.9474767163e-06 -9.9228028207e-05 --0.00016803659549 -9.9140735451e-05 0.0035755493683 0.056427567758 0.073855852983 0.064070642222 0.064070642243 0.073855852922 0.056427567767 -0.0035755493705 -9.914073523e-05 -0.00016803659582 -9.9228028301e-05 -8.9474767258e-06 -3.0027857993e-07 7.3937215024e-07 5.7289411491e-07 -1.4473662657e-07 --4.8781677473e-08 2.3571877094e-09 0 0 -1.022078352e-09 9.100652424e-10 4.5589370635e-08 2.325945172e-08 -3.1455936266e-07 --1.3899715557e-06 -8.042740613e-07 -4.4946670932e-06 1.2433592581e-05 -1.095289873e-05 8.5867018678e-05 -2.1961676598e-05 -0.0073285931783 -0.0047754790421 --0.0047754790522 -0.0073285931744 -2.1961679398e-05 8.5867018542e-05 -1.0952898728e-05 1.2433592621e-05 -4.4946670947e-06 -8.0427406496e-07 -1.3899715543e-06 --3.1455935944e-07 2.3259451179e-08 4.5589370057e-08 9.1006523367e-10 -1.0220783564e-09 0 0 2.5795033938e-11 2.4164205867e-10 -9.9575975719e-10 -9.2308934938e-09 -3.81571578e-08 -1.0398099709e-07 1.9985781588e-07 1.6290624227e-06 2.7701447848e-06 2.586052411e-06 -4.5609207366e-05 --0.0013743143114 -0.00092128642449 -0.0012992539629 -0.0012992539619 -0.00092128642421 -0.0013743143107 -4.5609207392e-05 2.5860524052e-06 2.7701447884e-06 -1.6290624233e-06 1.9985781559e-07 -1.0398099745e-07 -3.8157157379e-08 -9.2308934392e-09 9.9575973197e-10 2.4164205954e-10 2.5795034033e-11 0 -0 1.543571098e-12 -7.599254369e-12 -4.4333001003e-10 -9.6199183449e-10 2.6580613419e-09 3.2997567979e-08 4.8828338402e-08 1.0565150791e-07 --1.1437123381e-07 3.9816146639e-07 -3.9164743341e-06 -6.3001750663e-05 8.3119683135e-05 5.9991027678e-05 5.9991027935e-05 8.3119683113e-05 -6.3001750572e-05 --3.9164743334e-06 3.9816146674e-07 -1.1437123435e-07 1.0565150802e-07 4.8828338518e-08 3.2997567953e-08 2.6580613337e-09 -9.6199182428e-10 -4.4333000599e-10 --7.5992544115e-12 1.5435710999e-12 0 0 -1.2105767171e-13 -1.5467693877e-12 8.369145531e-13 1.1611418389e-10 5.3189868219e-10 -2.6959883472e-09 -4.2323656177e-10 -1.5819815361e-08 -2.923419514e-08 -1.691598566e-07 -1.5737066522e-07 1.4149117538e-05 1.2151803095e-05 1.3602340096e-05 -1.3602340085e-05 1.2151803102e-05 1.4149117531e-05 -1.5737066515e-07 -1.6915985659e-07 -2.9234195158e-08 -1.5819815377e-08 -4.2323655277e-10 2.695988362e-09 -5.3189868033e-10 1.1611418325e-10 8.3691454903e-13 -1.5467693843e-12 -1.2105767178e-13 0 0 0 0 +0 0 0 0 2.0095368158e-08 -4.8571156731e-08 1.3225750204e-06 -4.4950996357e-06 -1.0437168852e-05 +2.2449679306e-05 3.5593550125e-05 -0.00058123109145 -0.0022750336567 -0.011993345677 -0.036456531684 -0.047061637911 0.082891426363 1.4673523699 +1.4673523696 0.082891426142 -0.04706163803 -0.03645653177 -0.011993345695 -0.0022750336616 -0.00058123109076 3.5593549917e-05 2.2449679517e-05 +-1.0437168514e-05 -4.4950994792e-06 1.3225750495e-06 -4.8571157016e-08 2.0095365928e-08 0 0 -6.7430737513e-08 1.5016284444e-06 +-6.3560380675e-06 -8.6242825443e-06 5.3717379565e-05 0.00025425950845 0.00024477726782 -0.0028208916266 -0.012482011299 -0.035711009263 -0.025569351659 +2.1622585994 29.319687672 84.114675937 84.114675948 29.319687677 2.1622585985 -0.025569351979 -0.035711009375 -0.012482011325 +-0.0028208916223 0.00024477726897 0.00025425951018 5.3717380181e-05 -8.624282183e-06 -6.3560379195e-06 1.5016284647e-06 -6.7430740427e-08 0 +0 1.371010445e-06 -9.0838897185e-06 -7.6689270448e-06 0.00013611194253 0.00053142414438 0.00084707921898 0.0015161322233 -0.0034347697153 +0.0063403273479 0.80175383637 15.2762266 129.46739477 298.71727811 356.83349469 356.83349466 298.71727811 129.46739476 +15.276226593 0.80175383551 0.0063403272511 -0.0034347697028 0.0015161322374 0.00084707922274 0.00053142414537 0.0001361119431 -7.668926731e-06 +-9.0838896104e-06 1.3710104523e-06 0 0 -1.0190579776e-05 -8.4682500279e-06 0.0002357171755 0.0010803268012 0.0023079511102 +0.0036676460337 0.0079979834603 0.15595898652 3.2763249697 52.600812068 316.93010005 608.0956571 741.8555978 772.00816493 +772.00816485 741.85559756 608.09565703 316.93010001 52.600812049 3.2763249681 0.15595898647 0.0079979834886 0.0036676460473 +0.0023079511118 0.0010803268013 0.0002357171758 -8.4682498471e-06 -1.019057971e-05 0 0 -3.6779396915e-05 0.00021594201411 +0.0015654741194 0.0040820183021 0.010650065895 0.032550811296 0.32510203086 6.5177397505 110.34293891 546.71892025 1012.1279554 +1203.0696733 1277.0383617 1326.3853782 1326.3853782 1277.0383615 1203.069673 1012.1279553 546.71892018 110.34293887 +6.517739748 0.32510203087 0.032550811314 0.010650065899 0.0040820183012 0.0015654741192 0.00021594201416 -3.6779396867e-05 0 +0 -0.00012931817449 0.00053226206632 0.0040242556697 0.013250471274 0.048451592355 0.4464230148 8.8041195813 172.00654129 +723.18685248 1280.0275616 1475.7227235 1602.4004378 1749.0650028 1894.7109886 1894.7109888 1749.0650029 1602.4004377 +1475.7227232 1280.0275615 723.1868524 172.00654123 8.8041195785 0.44642301472 0.048451592362 0.013250471277 0.0040242556703 +0.00053226206623 -0.00012931817471 0 0 -0.00065329001325 -0.0013044860705 0.003888500452 0.027314284161 0.37165824292 +8.8736582058 209.35222278 822.58796721 1468.0089111 1746.398167 1915.9164593 2087.0178079 2302.2784925 2467.9471088 +2467.947109 2302.2784926 2087.0178078 1915.9164592 1746.3981667 1468.0089111 822.58796715 209.35222272 8.8736582028 +0.37165824284 0.027314284167 0.0038885004558 -0.0013044860715 -0.00065329001398 0 0 -0.0027275432302 -0.010887215201 +-0.014049338555 0.14849717793 6.5247145598 171.48445175 825.33505229 1515.8719816 1876.1805666 2026.0119278 2253.4323507 +2552.6046585 2826.4560857 3037.9998785 3037.9998784 2826.4560856 2552.6046586 2253.4323508 2026.0119276 1876.1805664 +1515.8719816 825.33505223 171.48445169 6.5247145572 0.14849717786 -0.01404933856 -0.010887215202 -0.0027275432302 0 +0 -0.0095383588732 -0.044635997784 -0.058294574108 3.12715921 109.49173137 726.36201872 1490.7995197 1894.462944 +2055.8890311 2316.0075818 2674.8735774 3065.965398 3356.8300995 3669.6722916 3669.6722911 3356.8300992 3065.9653978 +2674.8735775 2316.007582 2055.8890309 1894.4629437 1490.7995197 726.36201865 109.49173133 3.1271592084 -0.058294574173 +-0.044635997791 -0.0095383588689 0 0 -0.028550594327 -0.12858622934 0.61613476489 52.720085178 550.61529913 +1303.6067064 1796.4128313 2064.3886185 2307.167787 2704.2399471 3188.1718859 3594.967085 4008.1674152 4540.8120079 +4540.8120079 4008.1674151 3594.9670848 3188.1718858 2704.2399471 2307.1677871 2064.3886183 1796.412831 1303.6067064 +550.61529907 52.720085159 0.61613476425 -0.1285862294 -0.028550594329 0 0 -0.074892549094 -0.17064172145 +15.117032219 312.08667463 1034.6619845 1559.0804936 1967.0709893 2233.8059055 2604.7357632 3147.6437467 3681.1184045 +4207.2738262 4726.4550428 5915.8903398 5915.8903393 4726.4550428 4207.2738263 3681.1184043 3147.6437467 2604.7357632 +2233.8059054 1967.070989 1559.0804933 1034.6619845 312.0866746 15.117032212 -0.17064172162 -0.074892549114 0 +0 -0.11086244717 1.747755323 117.56012715 634.16021048 1314.3934019 1675.289164 2059.9161675 2465.2709852 +2987.0025502 3516.1381536 4171.8361973 4829.4870039 5830.7463052 8045.218422 8045.2184216 5830.7463047 4829.4870042 +4171.8361977 3516.1381537 2987.00255 2465.2709852 2059.9161674 1675.2891638 1314.3934018 634.16021044 117.56012714 +1.7477553225 -0.11086244724 0 0 -0.07364439431 16.683770707 293.74965024 859.9258432 1363.7039398 +1754.632618 2153.1720359 2637.7364199 3161.355063 3827.0309415 4576.5947711 5729.4174645 7019.9849042 10894.664053 +10894.664053 7019.9849038 5729.417464 4576.5947715 3827.0309417 3161.355063 2637.7364198 2153.1720358 1754.6326179 +1363.7039397 859.9258431 293.74965027 16.683770714 -0.073644394415 0 0 0.08807575664 63.482085729 +381.65173861 860.63115411 1316.0613595 1769.3391513 2177.1853927 2683.7690728 3371.8328105 4323.6467483 5661.5524184 +7887.2343775 10808.805642 13119.905903 13119.905904 10808.805642 7887.2343781 5661.5524185 4323.6467487 3371.8328107 +2683.7690726 2177.1853924 1769.3391512 1316.0613593 860.631154 381.65173862 63.482085719 0.088075756359 0 +0 0.095945558771 72.827694615 376.43912283 790.04516502 1199.5727464 1575.8402265 1997.4440723 2631.2415567 +3305.3150272 4300.5573399 5673.0873741 7882.2569707 10821.698272 13063.54571 13063.545711 10821.698272 7882.2569708 +5673.0873741 4300.5573401 3305.3150276 2631.241557 1997.4440722 1575.8402262 1199.5727462 790.04516506 376.43912285 +72.827694591 0.095945558613 0 0 0.034531134244 25.310361705 279.25744319 677.57967252 1035.0834446 +1346.0663951 1777.8483812 2342.1781256 3120.6990177 3756.2849107 4681.2709403 5908.0405888 7534.2235617 11285.04711 +11285.04711 7534.2235616 5908.0405889 4681.27094 3756.2849109 3120.6990181 2342.1781258 1777.8483811 1346.0663948 +1035.0834446 677.57967259 279.25744316 25.310361685 0.034531134089 0 0 -0.0011471126809 0.091609475329 +5.4625648357 47.344088943 149.77871107 303.75895628 508.95939404 779.63030702 1144.1674593 1637.5951738 2402.4866409 +3442.0987151 4891.1027992 7725.5115902 7725.51159 4891.1027992 3442.0987151 2402.4866409 1637.5951737 1144.1674593 +779.63030698 508.95939401 303.75895627 149.77871107 47.344088936 5.4625648328 0.091609475186 -0.0011471126774 0 +0 -0.00011497389371 -0.00089205353104 0.021114618078 0.42768457551 4.1533177141 22.909329072 65.014280203 138.40822864 +243.1797857 419.43307449 742.74603268 1287.5928631 2132.7501028 3394.8412883 3394.8412882 2132.7501028 1287.5928631 +742.74603263 419.43307446 243.17978568 138.40822864 65.014280206 22.909329072 4.153317713 0.42768457536 0.021114618103 +-0.00089205353066 -0.000114973895 0 0 -1.5155667517e-05 0.00029861904232 0.00071130531642 0.0012678381538 0.023123231808 +0.30784565163 1.9378243925 7.2993626307 19.969425105 47.807909983 110.2597297 243.95826782 498.96720844 916.70335687 +916.70335683 498.9672084 243.9582678 110.2597297 47.807909985 19.969425104 7.2993626322 1.9378243927 0.30784565162 +0.023123231811 0.0012678381547 0.00071130531853 0.00029861904296 -1.5155667627e-05 0 0 -7.707296814e-07 8.3552584157e-06 +-3.7458989877e-06 8.6443625528e-05 0.00027392061534 0.0015796445961 0.013012450041 0.086042233776 0.41900559717 1.678731245 5.617980354 +15.983777362 38.166913036 70.221547004 70.221547003 38.166913033 15.98377736 5.6179803539 1.6787312452 0.41900559719 +0.086042233776 0.013012450041 0.0015796445961 0.00027392061551 8.6443625681e-05 -3.7458989557e-06 8.3552584427e-06 -7.7072966631e-07 0 +0 -7.5376290288e-08 -4.7534347654e-07 7.0317798081e-07 1.4600337137e-05 1.6224983705e-05 5.2705789727e-05 0.00011050496026 0.00015566902677 +0.0019396838196 0.017019882787 0.073677926834 0.25239212534 0.5931132246 0.48081886081 0.48081886085 0.59311322462 0.25239212532 +0.073677926823 0.017019882786 0.001939683819 0.00015566902656 0.00011050496028 5.2705789655e-05 1.6224983692e-05 1.4600337133e-05 7.0317797885e-07 +-4.7534347661e-07 -7.5376290158e-08 0 0 -1.0145209485e-09 4.4254937155e-08 3.2243358585e-07 7.0610548809e-07 1.174392025e-06 +4.2398773143e-06 -5.5409175827e-06 -5.4568486782e-05 -1.2943034045e-05 -0.0005461391306 -0.003293486536 -0.0017121885332 0.0034735440912 0.00121518913 +0.0012151891301 0.0034735440916 -0.0017121885331 -0.0032934865359 -0.0005461391306 -1.2943034136e-05 -5.4568486857e-05 -5.5409175962e-06 4.2398773162e-06 +1.1743920255e-06 7.0610548719e-07 3.2243358524e-07 4.4254937009e-08 -1.0145209782e-09 0 0 7.0118640924e-10 6.8875269365e-09 +7.444734652e-09 2.3877759521e-08 1.5662245776e-07 -2.6809297987e-07 -4.8796987703e-06 -8.3083019791e-06 -3.5205467821e-05 -0.00031884986118 -0.00040930941666 +-0.00023274989684 -0.00026753383251 -0.00054168259204 -0.00054168259236 -0.00026753383244 -0.00023274989681 -0.00040930941664 -0.00031884986118 -3.5205467828e-05 +-8.3083019934e-06 -4.8796987773e-06 -2.6809298049e-07 1.5662245796e-07 2.3877759585e-08 7.4447346545e-09 6.8875269285e-09 7.0118640649e-10 0 +0 7.4065499265e-11 8.0987925177e-11 6.2135105461e-11 5.3525486323e-09 -9.1449480932e-10 -1.5355495453e-07 -5.2814882648e-07 -4.7151850004e-07 +-4.5352246575e-06 -1.4287373989e-05 1.5888712354e-05 -3.9599769662e-06 -9.6956221454e-05 -6.2243944241e-05 -6.2243944258e-05 -9.6956221473e-05 -3.9599769665e-06 +1.5888712356e-05 -1.4287373989e-05 -4.5352246565e-06 -4.7151850032e-07 -5.2814882742e-07 -1.535549548e-07 -9.1449482519e-10 5.3525486434e-09 6.2135108294e-11 +8.0987926412e-11 7.4065499136e-11 0 0 -5.917339194e-12 -2.0492406985e-11 1.6652105004e-10 4.3310637905e-10 -3.9634787005e-09 +-1.6488521929e-08 -1.0548443811e-09 -5.7381937624e-08 -1.0302514459e-07 2.5782409586e-06 2.2797646621e-06 -1.4096776788e-06 -3.5378695956e-06 3.2026803454e-07 +3.2026803397e-07 -3.5378695981e-06 -1.409677679e-06 2.2797646623e-06 2.5782409589e-06 -1.0302514441e-07 -5.7381937622e-08 -1.0548443825e-09 -1.6488521976e-08 +-3.9634787121e-09 4.331063791e-10 1.6652105023e-10 -2.0492406838e-11 -5.9173391617e-12 0 0 1.3265954696e-13 5.079133602e-12 +2.1203835901e-11 -1.1691765796e-10 -5.8096319529e-10 6.0720365018e-10 3.2728975977e-10 -5.8860185939e-10 9.2353820645e-08 2.5753439354e-07 -1.6663292795e-07 +-2.4760119714e-07 8.7623563261e-08 8.3256198552e-08 8.3256198549e-08 8.7623563251e-08 -2.4760119717e-07 -1.6663292797e-07 2.5753439357e-07 9.2353820632e-08 +-5.8860185847e-10 3.2728976088e-10 6.0720365169e-10 -5.8096319603e-10 -1.169176583e-10 2.1203835843e-11 5.0791335999e-12 1.3265954902e-13 0 +0 6.9441170589e-14 3.9891641787e-13 -3.5678908874e-12 -2.1005283549e-11 3.6252131435e-11 1.107500315e-10 -1.2748303781e-10 7.1340977782e-10 +9.4888121401e-09 -1.8871834322e-08 -2.7575879855e-08 -1.0388633299e-09 1.0202926784e-08 -1.9102382917e-11 -1.9102380785e-11 1.0202926784e-08 -1.0388633308e-09 +-2.7575879858e-08 -1.8871834324e-08 9.4888121361e-09 7.1340977786e-10 -1.2748303781e-10 1.1075003176e-10 3.6252131672e-11 -2.1005283568e-11 -3.5678908917e-12 +3.9891641646e-13 6.9441170472e-14 0 0 -2.181790553e-15 -8.3913872679e-14 -3.906149685e-13 1.639396893e-12 8.4572409594e-12 +-1.1115087139e-11 -2.6476509502e-11 9.0169945342e-13 -8.7427955189e-10 -1.7943114264e-09 5.9843020105e-11 5.8029311169e-10 -9.2167369114e-11 -8.5181645904e-11 +-8.51816459e-11 -9.2167369113e-11 5.8029311171e-10 5.9843020063e-11 -1.7943114266e-09 -8.7427955179e-10 9.0169941642e-13 -2.6476509558e-11 -1.1115087167e-11 +8.4572409857e-12 1.6393968994e-12 -3.9061496793e-13 -8.3913872747e-14 -2.1817905626e-15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -1941,100 +1941,100 @@ normalized%20dose 1 900 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 0 1.0681442559e-11 -5.2133432261e-11 6.1724793231e-11 7.0730858454e-10 -8.4850989984e-09 --3.1705225157e-08 1.1808889561e-07 -4.9198368457e-07 -3.5941936054e-06 2.1793167676e-06 7.2257569968e-05 9.0231897469e-05 -0.00090029252268 -0.0022796899482 --0.0022796899463 -0.00090029252284 9.0231897436e-05 7.2257569594e-05 2.1793167392e-06 -3.594193614e-06 -4.9198368662e-07 1.180888963e-07 -3.1705225006e-08 --8.4850990079e-09 7.0730858326e-10 6.1724791549e-11 -5.2133432415e-11 1.0681442572e-11 0 0 -6.3892887653e-11 1.1323364546e-10 -1.2620800287e-09 -5.5557235393e-09 -1.8901202669e-08 9.6321862545e-08 -5.8774323838e-07 -4.2750499115e-06 6.7223732941e-06 4.9180629942e-05 -0.00016126391074 --0.0020035655281 -0.0038426513047 0.00056471675032 0.00056471676892 -0.0038426512968 -0.0020035655247 -0.00016126391109 4.9180629891e-05 6.7223732539e-06 --4.2750499127e-06 -5.8774323834e-07 9.632186253e-08 -1.8901202734e-08 -5.5557235132e-09 1.2620800321e-09 1.1323364366e-10 -6.3892887729e-11 0 -0 2.4001242068e-10 1.2909202961e-09 -4.9807006732e-09 -1.3981481718e-08 1.2850215418e-07 -4.979829774e-07 -4.1251787508e-06 1.5364131179e-05 -5.2714989729e-05 -0.000554336746 -0.0025174348153 0.0014043258152 0.01939817058 0.027259279819 0.027259279803 0.019398170602 0.0014043258203 --0.0025174348152 -0.00055433674391 5.2714989758e-05 1.5364131145e-05 -4.1251787491e-06 -4.9798297684e-07 1.2850215419e-07 -1.3981481664e-08 -4.9807006602e-09 -1.290920295e-09 2.40012419e-10 0 0 9.9428119406e-10 -6.9547243987e-09 -2.0479942368e-08 1.5453180619e-07 -7.5571475068e-07 --3.2798450858e-06 2.1795081769e-05 7.1680442355e-05 -0.00036886893205 -0.0022177503171 0.015181427132 0.048114544297 0.065805884769 0.065410248203 -0.065410248134 0.065805884688 0.0481145443 0.015181427128 -0.0022177503154 -0.00036886893073 7.168044237e-05 2.1795081768e-05 -3.2798450865e-06 --7.5571475056e-07 1.5453180596e-07 -2.0479942284e-08 -6.9547243926e-09 9.942812004e-10 0 0 -1.216590049e-08 -2.0340764743e-08 -1.8022350142e-07 -8.5702153162e-07 -3.2256682499e-06 2.8547465026e-05 9.0971757994e-05 -0.0003710734797 -0.0014412086055 0.034949010504 0.087037618019 -0.10367199471 0.10157528895 0.10074918244 0.10074918237 0.10157528883 0.10367199461 0.087037618012 0.034949010485 -0.001441208605 --0.00037107347951 9.0971757933e-05 2.8547465006e-05 -3.2256682508e-06 -8.5702153049e-07 1.8022350101e-07 -2.0340764803e-08 -1.2165900444e-08 0 -0 -3.2854668148e-08 2.3644796277e-07 -9.4307316243e-07 -4.6109141038e-06 3.0027675627e-05 0.0001011870733 -0.00028260530579 -0.001001874292 -0.050586721264 0.11900829998 0.12861029604 0.12317022055 0.13486442468 0.15241572943 0.15241572955 0.13486442475 0.12317022045 -0.12861029598 0.11900829999 0.050586721229 -0.0010018742934 -0.0002826053057 0.00010118707325 3.0027675562e-05 -4.6109141168e-06 -9.4307316086e-07 -2.364479628e-07 -3.2854667997e-08 0 0 3.0594278341e-07 -1.1961352808e-06 -6.2234989449e-06 2.4439434183e-05 9.7479551156e-05 --0.00029538727536 -0.00081364199396 0.061018641179 0.13654960209 0.14816784421 0.13405621221 0.14784521843 0.17313861779 0.1860340973 -0.18603409729 0.17313861779 0.14784521843 0.1340562121 0.14816784415 0.13654960211 0.061018641135 -0.00081364199467 -0.00029538727536 -9.7479551104e-05 2.4439434103e-05 -6.2234989598e-06 -1.1961352784e-06 3.0594278385e-07 0 0 -1.1840770835e-06 -7.8429614574e-06 -1.9185041071e-05 7.7468207001e-05 -0.00044057144749 -0.0011384353673 0.061168674133 0.14199530729 0.15540001503 0.15308018136 0.1591817979 -0.19131850546 0.22750807398 0.23811318313 0.23811318308 0.22750807391 0.19131850551 0.15918179786 0.15308018124 0.15540001499 -0.14199530731 0.061168674089 -0.0011384353685 -0.0004405714472 7.7468206995e-05 1.9185041018e-05 -7.8429614653e-06 -1.1840770811e-06 0 -0 -8.0092991245e-06 3.6003365947e-06 6.4861808476e-05 -0.00047850336969 -0.0016442075543 0.051208274493 0.13729525717 0.15719858117 -0.15888751412 0.15703024743 0.19385546168 0.24581478788 0.26506268426 0.2750023986 0.27500239863 0.26506268417 0.24581478794 -0.19385546166 0.15703024738 0.15888751401 0.15719858111 0.13729525717 0.051208274452 -0.0016442075549 -0.00047850336785 6.4861808412e-05 -3.6003365345e-06 -8.0092991285e-06 0 0 -1.1470928887e-06 7.0017596532e-05 -0.00062399681865 -0.0025716014426 0.034562727531 -0.11917590135 0.1524912424 0.16055905922 0.15817253749 0.20083024103 0.26159480511 0.29548270969 0.30953482682 0.34346063406 -0.34346063402 0.30953482678 0.29548270966 0.26159480517 0.20083024101 0.15817253752 0.16055905905 0.1524912423 0.11917590136 -0.034562727503 -0.0025716014404 -0.00062399681973 7.001759633e-05 -1.1470930207e-06 0 0 0.00010982359898 -0.00012631983836 --0.0027028105018 0.013749294502 0.087474031634 0.13770769539 0.14303389219 0.15499625753 0.19051677498 0.26190219937 0.29733218636 -0.32338817288 0.36444079973 0.45332265472 0.45332265485 0.36444079983 0.32338817282 0.29733218652 0.2619021995 0.19051677504 -0.1549962575 0.143033892 0.13770769531 0.087474031621 0.013749294486 -0.0027028105031 -0.00012631983672 0.00010982359868 0 -0 0.0001151764392 -0.0022516821518 -0.00038424136448 0.048890322664 0.11603261503 0.13662713049 0.14474953691 0.18385512753 -0.23521597055 0.28596353476 0.32826167989 0.38330785244 0.43826103945 0.62314020478 0.62314020452 0.43826103956 0.38330785255 -0.32826167957 0.28596353484 0.23521597073 0.18385512766 0.14474953691 0.13662713038 0.11603261499 0.048890322633 -0.00038424136234 --0.0022516821444 0.00011517644026 0 0 -0.0013505146432 -0.0055260803558 0.016544194902 0.073594483767 0.11916417122 -0.14008236749 0.15852205757 0.20528171961 0.23970006107 0.29832840229 0.35835479046 0.43383392976 0.557310688 0.82710292644 -0.82710292657 0.55731068772 0.43383392946 0.35835479031 0.29832840219 0.23970006116 0.20528171967 0.15852205768 0.14008236747 -0.11916417121 0.073594483706 0.016544194924 -0.0055260803436 -0.0013505146415 0 0 -0.0028331043425 -0.0038649591802 -0.026209994455 0.073343714833 0.11392492956 0.14361431917 0.16526841644 0.21000234464 0.2478993731 0.33159424213 0.44008439658 -0.6112792974 0.81993139031 0.9841650534 0.98416505385 0.81993139018 0.61127929722 0.44008439659 0.33159424223 0.24789937285 -0.21000234462 0.16526841661 0.14361431911 0.11392492945 0.073343714758 0.026209994467 -0.0038649591579 -0.00283310434 0 -0 -0.0031438990668 -0.00089917962205 0.027021723903 0.067619773075 0.096252560722 0.12164768767 0.14914628117 0.203140539 -0.25119101941 0.33297224413 0.4306175107 0.61021429875 0.8271447308 0.99999999997 1 0.8271447308 0.61021429899 -0.43061751072 0.33297224426 0.25119101954 0.20314053897 0.14914628112 0.12164768736 0.096252560783 0.067619773197 0.027021723974 --0.00089917972855 -0.003143899058 0 0 -0.0011161389164 -0.0043885165171 0.01663482641 0.058554931782 0.086481329362 -0.09830870676 0.12864444143 0.18858006563 0.24889584267 0.29722091481 0.36928070417 0.45107430588 0.59335033643 0.8594497261 -0.85944972606 0.59335033631 0.45107430588 0.36928070427 0.29722091495 0.2488958429 0.18858006554 0.12864444133 0.098308706805 -0.086481329434 0.058554931758 0.016634826349 -0.0043885165251 -0.0011161389125 0 0 4.3081064581e-05 -0.00015765128254 --0.0004753092617 0.0019904563664 0.011399595744 0.024595349662 0.040048259026 0.060560975767 0.08853892363 0.12689886228 0.19167081311 -0.27904864994 0.38933222108 0.61695286494 0.61695286494 0.38933222109 0.27904864993 0.19167081312 0.12689886228 0.08853892362 -0.060560975747 0.040048259034 0.024595349691 0.01139959574 0.0019904563523 -0.00047530926386 -0.00015765128205 4.3081065332e-05 0 -0 4.9661282025e-07 6.0913231105e-06 3.4408866928e-07 -8.3233566084e-05 -0.00030915256366 0.00086290525369 0.0039361814559 0.0087171020932 -0.015918394393 0.029126380797 0.055587811432 0.099518557375 0.16659865497 0.25385446437 0.25385446433 0.16659865497 0.099518557367 -0.055587811415 0.029126380785 0.01591839439 0.0087171021013 0.0039361814544 0.00086290525004 -0.00030915256588 -8.3233565089e-05 3.4408855107e-07 -6.0913231304e-06 4.9661279304e-07 0 0 -5.1889220042e-08 3.2307851061e-07 2.1301569466e-06 -3.9768208898e-06 -5.7104529154e-05 --0.00019290462681 -0.00042120233555 -0.00039146602947 0.00013545157671 0.0019619585829 0.0059219722676 0.016097948404 0.033503005106 0.060271964353 -0.060271964346 0.033503005103 0.016097948401 0.0059219722671 0.001961958584 0.00013545157803 -0.00039146602882 -0.0004212023361 -0.00019290462684 --5.7104529128e-05 -3.9768207029e-06 2.130157068e-06 3.2307851028e-07 -5.18892211e-08 0 0 -1.3360678455e-09 -3.0839683921e-08 --9.5279373098e-08 2.2438495463e-07 1.4320840008e-06 -6.88881879e-06 -5.1874404475e-05 -0.00011058541853 -0.00022812928549 -0.00046285199994 -0.00097595410596 --0.0014385280843 -0.0027078447215 -0.0011666094793 -0.0011666094767 -0.0027078447224 -0.0014385280836 -0.00097595410552 -0.00046285199977 -0.00022812928554 --0.00011058541854 -5.1874404517e-05 -6.8888187487e-06 1.432084001e-06 2.2438493719e-07 -9.5279374525e-08 -3.0839683936e-08 -1.3360677922e-09 0 -0 -4.0289438455e-10 1.1931871228e-09 4.7803012003e-09 -2.3885248857e-08 1.026710678e-07 1.3891419485e-07 1.4455765261e-06 -5.7295597072e-07 --1.9162569698e-05 -9.7317371379e-05 -0.00026669340498 -0.00082499347163 -0.0016283714171 -0.001659849824 -0.0016598498245 -0.0016283714164 -0.00082499347155 --0.0002666934049 -9.7317371339e-05 -1.9162569694e-05 -5.7295596396e-07 1.4455765295e-06 1.389141948e-07 1.0267106746e-07 -2.3885248143e-08 4.7803011338e-09 -1.1931871317e-09 -4.0289438212e-10 0 0 -1.9951109758e-11 4.5241768073e-10 9.1410010715e-10 -2.4183642787e-09 -2.1048699312e-09 --6.214843878e-09 1.8843912896e-07 5.5399469161e-07 9.5811046925e-07 3.2447226202e-07 -9.3117010627e-06 -9.3621015528e-05 -0.00018688449142 -0.00012493880035 --0.00012493880053 -0.00018688449126 -9.3621015533e-05 -9.311701066e-06 3.2447225859e-07 9.5811047075e-07 5.539946921e-07 1.8843912966e-07 -6.2148441035e-09 --2.1048698653e-09 -2.4183642593e-09 9.1410009248e-10 4.5241767995e-10 -1.9951110071e-11 0 0 7.5904352048e-12 -2.1747748772e-13 --1.6963984049e-10 1.7671186688e-10 3.4144285998e-10 1.2061690743e-09 -4.1714677972e-09 1.2845871243e-08 1.0672899624e-08 1.176128804e-07 8.174838499e-07 -1.2476680019e-05 3.9331554986e-05 3.0862995067e-05 3.0862995092e-05 3.9331554963e-05 1.2476680024e-05 8.174838503e-07 1.1761288011e-07 1.0672899245e-08 -1.284587119e-08 -4.1714677875e-09 1.2061690768e-09 3.4144286871e-10 1.7671186607e-10 -1.6963983817e-10 -2.1747745805e-13 7.5904352044e-12 0 -0 1.8138005281e-13 -3.7536354148e-12 -1.1137143437e-11 4.4082855942e-11 5.6892950033e-11 -2.3105733937e-11 -6.8848730272e-10 -7.63536354e-09 --1.2930021061e-08 -7.6286465676e-09 2.7513011974e-07 4.3419687088e-06 5.6830342926e-06 4.9300853242e-06 4.9300853258e-06 5.6830342878e-06 4.3419687095e-06 -2.7513011991e-07 -7.6286465506e-09 -1.2930021087e-08 -7.6353635472e-09 -6.8848730345e-10 -2.3105730936e-11 5.6892949104e-11 4.4082855583e-11 -1.1137143218e-11 --3.7536354226e-12 1.8138005378e-13 0 0 -7.864652684e-14 7.0027381339e-14 3.5079949148e-12 1.7897601397e-12 -2.4204603601e-11 --1.0695504415e-10 -6.1886998611e-11 -3.4585406833e-10 9.567357246e-10 -8.4279981305e-10 6.6072652611e-09 -1.6898993944e-09 -5.6391801958e-07 -3.6746188777e-07 --3.6746188854e-07 -5.6391801928e-07 -1.6898996098e-09 6.6072652506e-09 -8.427998129e-10 9.5673572766e-10 -3.4585406844e-10 -6.1886998892e-11 -1.0695504405e-10 --2.4204603353e-11 1.789760098e-12 3.5079948703e-12 7.0027380668e-14 -7.8646527183e-14 0 0 1.9848672316e-15 1.8593788447e-14 -7.6621372832e-14 -7.1029555759e-13 -2.9361036062e-12 -8.0010933238e-12 1.5378589176e-11 1.253525244e-10 2.131561301e-10 1.9899065464e-10 -3.5095213047e-09 --1.05750256e-07 -7.0890824927e-08 -9.9974538616e-08 -9.9974538539e-08 -7.0890824905e-08 -1.0575025595e-07 -3.5095213067e-09 1.9899065419e-10 2.1315613038e-10 -1.2535252445e-10 1.5378589154e-11 -8.0010933515e-12 -2.9361035738e-12 -7.102955534e-13 7.6621370892e-14 1.8593788514e-14 1.9848672389e-15 0 -0 1.187741679e-16 -5.8474476203e-16 -3.4113202247e-14 -7.402301055e-14 2.0453157262e-13 2.5390852969e-12 3.7572258714e-12 8.1296352053e-12 --8.8005976181e-12 3.063758898e-11 -3.0136349453e-10 -4.8478366311e-09 6.3958642485e-09 4.6161685739e-09 4.6161685937e-09 6.3958642469e-09 -4.847836624e-09 --3.0136349448e-10 3.0637589007e-11 -8.8005976593e-12 8.1296352137e-12 3.7572258804e-12 2.5390852948e-12 2.0453157199e-13 -7.4023009765e-14 -3.4113201936e-14 --5.847447653e-16 1.1877416805e-16 0 0 -9.3151032984e-18 -1.1902026878e-16 6.4398607735e-17 8.9347135297e-15 4.0928353393e-14 -2.0744996653e-13 -3.2567058632e-14 -1.2172976083e-12 -2.2495026025e-12 -1.3016453364e-11 -1.2109302797e-11 1.0887413377e-09 9.3505268598e-10 1.0466680987e-09 -1.0466680979e-09 9.3505268649e-10 1.0887413372e-09 -1.2109302792e-11 -1.3016453363e-11 -2.2495026039e-12 -1.2172976095e-12 -3.2567057939e-14 2.0744996767e-13 -4.092835325e-14 8.9347134806e-15 6.4398607422e-17 -1.1902026852e-16 -9.3151033031e-18 0 0 0 0 +0 0 0 0 1.5316701434e-12 -3.7020964239e-12 1.0080674587e-10 -3.4261675872e-10 -7.9552162401e-10 +1.7111158776e-09 2.7129424848e-09 -4.430146799e-08 -1.7340319918e-07 -9.1413351315e-07 -2.77871899e-06 -3.5870408106e-06 6.3179893946e-06 0.00011184168397 +0.00011184168395 6.3179893778e-06 -3.5870408197e-06 -2.7787189966e-06 -9.1413351452e-07 -1.7340319955e-07 -4.4301467937e-08 2.7129424689e-09 1.7111158937e-09 +-7.9552159824e-10 -3.4261674679e-10 1.0080674809e-10 -3.7020964456e-12 1.5316699734e-12 0 0 -5.1395747808e-12 1.1445420838e-10 +-4.8445759549e-10 -6.5734332297e-10 4.0943418311e-09 1.9379674694e-08 1.8656937756e-08 -2.1500852575e-07 -9.5137963567e-07 -2.7218952272e-06 -1.9488974879e-06 +0.00016480747767 0.0022347483195 0.0064112255491 0.00641122555 0.0022347483199 0.0001648074776 -1.9488975123e-06 -2.7218952358e-06 -9.5137963764e-07 +-2.1500852543e-07 1.8656937843e-08 1.9379674826e-08 4.0943418781e-09 -6.5734329544e-10 -4.844575842e-10 1.1445420993e-10 -5.1395750029e-12 0 +0 1.0449849679e-10 -6.9237460883e-10 -5.8452607059e-10 1.0374460268e-08 4.0505179553e-08 6.4564427912e-08 1.1555968727e-07 -2.617983498e-07 +4.8326012352e-07 6.1109724582e-05 0.0011643548903 0.009868012447 0.022768248514 0.027197869961 0.027197869959 0.022768248514 0.0098680124461 +0.0011643548898 6.1109724517e-05 4.8326011614e-07 -2.6179834884e-07 1.1555968834e-07 6.4564428199e-08 4.0505179628e-08 1.0374460312e-08 -5.8452604667e-10 +-6.9237460059e-10 1.0449849734e-10 0 0 -7.767265901e-10 -6.4545051539e-10 1.7966376986e-08 8.2342572354e-08 1.7591216942e-07 +2.7954819649e-07 6.0960676994e-07 1.1887203129e-05 0.00024972168196 0.0040092369908 0.024156430874 0.046349086764 0.056544277314 0.058842507755 +0.058842507749 0.056544277296 0.046349086759 0.024156430871 0.0040092369894 0.00024972168184 1.1887203125e-05 6.096067721e-07 2.7954819753e-07 +1.7591216954e-07 8.2342572361e-08 1.7966377008e-08 -6.4545050161e-10 -7.7672658513e-10 0 0 -2.8033277969e-09 1.6459113022e-08 +1.1932052949e-07 3.1113167517e-07 8.1174864919e-07 2.4810247522e-06 2.4779295921e-05 0.00049678250728 0.0084103452961 0.04167094827 0.077144452313 +0.091698041284 0.097335939066 0.10109717157 0.10109717157 0.097335939056 0.091698041261 0.077144452308 0.041670948265 0.008410345293 +0.00049678250709 2.4779295922e-05 2.4810247536e-06 8.1174864944e-07 3.111316751e-07 1.1932052948e-07 1.6459113025e-08 -2.8033277933e-09 0 +0 -9.8566388683e-09 4.0569046013e-08 3.0672900393e-07 1.0099517001e-06 3.6929832202e-06 3.4026388455e-05 0.00067105051251 0.013110348698 +0.055121344447 0.09756377606 0.11247967282 0.12213505566 0.13331383742 0.14441498303 0.14441498305 0.13331383743 0.12213505565 +0.11247967279 0.097563776056 0.055121344442 0.013110348693 0.0006710505123 3.4026388449e-05 3.6929832207e-06 1.0099517004e-06 3.0672900397e-07 +4.0569046006e-08 -9.8566388855e-09 0 0 -4.9793803248e-08 -9.9428005052e-08 2.9638173325e-07 2.0818963459e-06 2.8327813144e-05 +0.00067635075056 0.015956838738 0.062697703261 0.11189172558 0.13311057105 0.14603126526 0.15907262012 0.17547980216 0.18810707384 +0.18810707386 0.17547980217 0.15907262011 0.14603126525 0.13311057103 0.11189172558 0.062697703257 0.015956838733 0.00067635075033 +2.8327813138e-05 2.0818963463e-06 2.9638173353e-07 -9.9428005126e-08 -4.9793803304e-08 0 0 -2.0789350549e-07 -8.2982418321e-07 +-1.0708414113e-06 1.1318463639e-05 0.00049731412766 0.013070555002 0.062907086248 0.11553985163 0.14300259318 0.15442274835 0.17175674636 +0.19455967726 0.21543264916 0.23155652949 0.23155652948 0.21543264915 0.19455967727 0.17175674637 0.15442274833 0.14300259316 +0.11553985163 0.062907086243 0.013070554998 0.00049731412746 1.1318463634e-05 -1.0708414117e-06 -8.2982418327e-07 -2.0789350549e-07 0 +0 -7.2701427455e-07 -3.4021583774e-06 -4.4432158685e-06 0.00023835225898 0.0083454662076 0.055363355805 0.11362882711 0.14439607706 +0.15669998292 0.17652623416 0.20387902146 0.23368806303 0.2558577877 0.27970263799 0.27970263795 0.25585778767 0.23368806302 +0.20387902146 0.17652623417 0.1566999829 0.14439607704 0.11362882711 0.0553633558 0.0083454662047 0.00023835225886 -4.4432158735e-06 +-3.402158378e-06 -7.2701427421e-07 0 0 -2.1761279795e-06 -9.800849966e-06 4.6961828032e-05 0.0040183279942 0.041967930497 +0.099360979869 0.1369226917 0.15734782197 0.17585246448 0.20611732789 0.24300264873 0.27400860275 0.30550275622 0.34610095842 +0.34610095842 0.30550275622 0.27400860273 0.24300264873 0.20611732788 0.17585246449 0.15734782196 0.13692269168 0.099360979868 +0.041967930493 0.0040183279928 4.6961827984e-05 -9.800849971e-06 -2.1761279796e-06 0 0 -5.7083144985e-06 -1.3006322049e-05 +0.0011522210852 0.023787264703 0.07886199734 0.11883320695 0.14993026654 0.17026081755 0.19853311313 0.23991359158 0.28057506138 +0.32067865858 0.36025068146 0.45090950978 0.45090950975 0.36025068146 0.32067865859 0.28057506137 0.23991359158 0.19853311313 +0.17026081755 0.14993026652 0.11883320694 0.078861997338 0.023787264701 0.0011522210847 -1.3006322062e-05 -5.7083145e-06 0 +0 -8.4499422465e-06 0.00013321401355 0.0089604398084 0.048335728556 0.10018314243 0.12769063865 0.15700693149 0.18790309954 +0.22766951012 0.26800025695 0.31797760043 0.3681037836 0.44441982646 0.6132070215 0.61320702146 0.44441982642 0.36810378362 +0.31797760046 0.26800025696 0.22766951011 0.18790309955 0.15700693148 0.12769063864 0.10018314242 0.048335728553 0.008960439808 +0.00013321401352 -8.4499422513e-06 0 0 -5.6131800675e-06 0.001271637985 0.022389615625 0.065543598366 0.10394159453 +0.13373820138 0.16411489927 0.20104842512 0.24095866891 0.29169652354 0.34882832273 0.43669653626 0.53506366245 0.83039193516 +0.83039193516 0.53506366242 0.43669653622 0.34882832277 0.29169652356 0.24095866891 0.20104842512 0.16411489926 0.13373820137 +0.10394159452 0.065543598358 0.022389615627 0.0012716379855 -5.6131800754e-06 0 0 6.7131393534e-06 0.0048386083095 +0.029089517973 0.065597357205 0.10031027426 0.13485913422 0.16594519873 0.20455703664 0.25700129521 0.32954860956 0.43152385845 +0.60116546833 0.82384780199 0.99999999993 1 0.823847802 0.60116546838 0.43152385846 0.32954860959 0.25700129522 +0.20455703663 0.16594519871 0.13485913421 0.10031027424 0.065597357197 0.029089517973 0.0048386083087 6.713139332e-06 0 +0 7.3129761348e-06 0.0055509311687 0.028692212092 0.060217288963 0.091431505314 0.12011063478 0.15224530471 0.20055338627 +0.25193130585 0.32778873349 0.43240305345 0.60078609009 0.824830479 0.99570422267 0.9957042227 0.824830479 0.6007860901 +0.43240305346 0.3277887335 0.25193130589 0.2005533863 0.15224530471 0.12011063476 0.091431505297 0.060217288966 0.028692212093 +0.0055509311668 7.3129761228e-06 0 0 2.6319650839e-06 0.0019291572584 0.021285018751 0.051645162508 0.078894121054 +0.10259725983 0.13550770822 0.17852095455 0.23785986275 0.28630425691 0.35680674651 0.4503112013 0.57425896318 0.8601469547 +0.86014695469 0.57425896317 0.45031120131 0.35680674649 0.28630425693 0.23785986278 0.17852095456 0.13550770821 0.10259725981 +0.078894121047 0.051645162513 0.021285018749 0.0019291572569 2.631965072e-06 0 0 -8.743299603e-08 6.9824795998e-06 +0.00041635701319 0.0036085692449 0.011416142171 0.023152525521 0.038792914961 0.059423467874 0.087208511068 0.1248176005 0.18311767313 +0.2623569666 0.37280014314 0.58883894797 0.58883894795 0.37280014314 0.26235696659 0.18311767313 0.12481760049 0.087208511068 +0.059423467871 0.038792914958 0.023152525519 0.011416142171 0.0036085692443 0.00041635701297 6.9824795889e-06 -8.7432995769e-08 0 +0 -8.7633169438e-09 -6.7992372623e-08 1.6093574323e-06 3.259814351e-05 0.00031656612055 0.0017461504098 0.0049553922625 0.010549483331 +0.018535177575 0.031969213617 0.056612146313 0.09814040379 0.16255833833 0.25875500274 0.25875500273 0.16255833832 0.098140403786 +0.05661214631 0.031969213614 0.018535177573 0.010549483331 0.0049553922627 0.0017461504098 0.00031656612046 3.2598143499e-05 1.6093574342e-06 +-6.7992372594e-08 -8.7633170416e-09 0 0 -1.1551658699e-09 2.2760760976e-08 5.421573307e-08 9.6634698678e-08 1.7624540889e-06 +2.346401368e-05 0.00014770108922 0.0005563578492 0.0015220707565 0.0036439217119 0.0084040030855 0.018594513528 0.038031309986 0.069871183798 +0.069871183796 0.038031309983 0.018594513526 0.0084040030852 0.003643921712 0.0015220707564 0.00055635784931 0.00014770108923 2.346401368e-05 +1.7624540892e-06 9.6634698752e-08 5.4215733231e-08 2.2760761025e-08 -1.1551658783e-09 0 0 -5.8745061665e-11 6.3683828806e-10 +-2.8551264124e-10 6.588738224e-09 2.0878245418e-08 1.2040060406e-07 9.9180970776e-07 6.558144121e-06 3.193663127e-05 0.00012795299427 0.00042820279314 +0.001218284451 0.0029090843573 0.0053522904444 0.0053522904443 0.0029090843571 0.0012182844509 0.00042820279313 0.00012795299428 3.1936631272e-05 +6.558144121e-06 9.9180970776e-07 1.2040060406e-07 2.0878245432e-08 6.5887382357e-09 -2.8551263881e-10 6.3683829012e-10 -5.8745060515e-11 0 +0 -5.7451852808e-12 -3.6230707751e-11 5.3596267072e-11 1.1128385556e-09 1.2366692127e-09 4.0172383942e-09 8.422694573e-09 1.186510238e-08 +1.4784281486e-07 1.2972564675e-06 5.6157359184e-06 1.9237342644e-05 4.5207124877e-05 3.6648041862e-05 3.6648041865e-05 4.5207124878e-05 1.9237342642e-05 +5.6157359176e-06 1.2972564674e-06 1.4784281481e-07 1.1865102364e-08 8.4226945747e-09 4.0172383886e-09 1.2366692117e-09 1.1128385553e-09 5.3596266922e-11 +-3.6230707756e-11 -5.7451852709e-12 0 0 -7.7326846389e-14 3.3731139139e-12 2.4575906885e-11 5.3819401849e-11 8.9512229242e-11 +3.2316369837e-10 -4.2232906418e-10 -4.1592132733e-09 -9.8651881644e-10 -4.1626756669e-08 -2.5102973756e-07 -1.3050311074e-07 2.6475373501e-07 9.2621786989e-08 +9.2621786997e-08 2.6475373504e-07 -1.3050311074e-07 -2.5102973755e-07 -4.1626756669e-08 -9.8651882341e-10 -4.159213279e-09 -4.223290652e-10 3.2316369851e-10 +8.9512229281e-11 5.381940178e-11 2.4575906838e-11 3.3731139027e-12 -7.7326848655e-14 0 0 5.3444469369e-14 5.2496770836e-13 +5.6743811322e-13 1.8199642357e-12 1.1937772946e-11 -2.04340627e-11 -3.7193092739e-10 -6.332592657e-10 -2.6833628288e-09 -2.430275518e-08 -3.1197587821e-08 +-1.7740210832e-08 -2.0391444455e-08 -4.1287079037e-08 -4.1287079062e-08 -2.039144445e-08 -1.774021083e-08 -3.119758782e-08 -2.430275518e-08 -2.6833628293e-09 +-6.3325926679e-10 -3.7193092792e-10 -2.0434062747e-11 1.1937772961e-11 1.8199642405e-12 5.6743811341e-13 5.2496770775e-13 5.3444469159e-14 0 +0 5.6452767119e-15 6.1729044223e-15 4.7359413942e-15 4.0797157169e-13 -6.9702848175e-14 -1.1703967669e-11 -4.025553463e-11 -3.5939167817e-11 +-3.4567509024e-10 -1.0889844861e-09 1.2110385905e-09 -3.0182967736e-10 -7.390008904e-09 -4.7442370924e-09 -4.7442370937e-09 -7.3900089055e-09 -3.0182967739e-10 +1.2110385907e-09 -1.0889844861e-09 -3.4567509017e-10 -3.5939167838e-11 -4.0255534701e-11 -1.170396769e-11 -6.9702849384e-14 4.0797157254e-13 4.7359416102e-15 +6.1729045164e-15 5.6452767021e-15 0 0 -4.5101994154e-16 -1.5619324661e-15 1.2692244232e-14 3.3011393694e-14 -3.0209657976e-13 +-1.2567561116e-12 -8.0400300793e-14 -4.373654662e-12 -7.8525825823e-12 1.9651367757e-10 1.7376379668e-10 -1.0744571563e-10 -2.6965662874e-10 2.4410848437e-11 +2.4410848394e-11 -2.6965662893e-10 -1.0744571564e-10 1.737637967e-10 1.9651367759e-10 -7.8525825685e-12 -4.3736546618e-12 -8.0400300902e-14 -1.2567561152e-12 +-3.0209658064e-13 3.3011393698e-14 1.2692244246e-14 -1.5619324549e-15 -4.5101993907e-16 0 0 1.0111318475e-17 3.8713186199e-16 +1.61615762e-15 -8.9114707686e-15 -4.4281048929e-14 4.6281097944e-14 2.4946044747e-14 -4.4863268356e-14 7.0392136436e-12 1.9629286629e-11 -1.2700771573e-11 +-1.8872177814e-11 6.6786731474e-12 6.3457923524e-12 6.3457923521e-12 6.6786731467e-12 -1.8872177817e-11 -1.2700771574e-11 1.9629286631e-11 7.0392136426e-12 +-4.4863268285e-14 2.4946044832e-14 4.6281098059e-14 -4.4281048985e-14 -8.9114707947e-15 1.6161576155e-15 3.8713186183e-16 1.0111318632e-17 0 +0 5.2928101081e-18 3.0405432842e-17 -2.7194485337e-16 -1.6010239481e-15 2.763139591e-15 8.4413739172e-15 -9.7167646432e-15 5.4376135242e-14 +7.2323781963e-13 -1.4384123224e-12 -2.1018351851e-12 -7.918222413e-14 7.7766767978e-13 -1.4559847499e-15 -1.4559845874e-15 7.7766767981e-13 -7.9182224199e-14 +-2.1018351853e-12 -1.4384123226e-12 7.2323781932e-13 5.4376135244e-14 -9.7167646432e-15 8.4413739369e-15 2.7631396091e-15 -1.6010239495e-15 -2.719448537e-16 +3.0405432735e-17 5.2928100992e-18 0 0 -1.6629620433e-19 -6.395920313e-18 -2.9772695882e-17 1.2495492765e-16 6.4461140354e-16 +-8.4719259575e-16 -2.0180411121e-15 6.8727585395e-17 -6.6637638887e-14 -1.367625225e-13 4.5612385135e-15 4.4229975117e-14 -7.0250022969e-15 -6.4925500628e-15 +-6.4925500625e-15 -7.0250022969e-15 4.4229975119e-14 4.5612385103e-15 -1.3676252251e-13 -6.6637638879e-14 6.8727582575e-17 -2.0180411164e-15 -8.4719259784e-16 +6.4461140554e-16 1.2495492813e-16 -2.9772695839e-17 -6.3959203182e-18 -1.6629620506e-19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -2055,100 +2055,100 @@ radiation%20flux%20density 1 961 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 5.642019101e-06 -1.9862358413e-05 2.0102664103e-05 0.00026948991185 -0.0032369918115 -0.011075432766 -0.038904555435 -0.20767807646 -1.1876641756 1.2032529583 23.47093944 13.441687064 -397.45172087 -953.69988667 -1128.281396 --953.69988569 -397.45172011 13.441687169 23.470939347 1.2032529515 -1.1876641777 -0.20767807726 0.038904555552 -0.011075432711 --0.003236991813 0.00026948991317 2.0102663459e-05 -1.9862358471e-05 5.6420191103e-06 -2.387292103e-05 2.6915743072e-05 0.00043853337524 -0.0019770957899 --0.0091147299097 0.025213325389 -0.19763697791 -1.5742766729 2.170445331 19.51713197 -52.856155751 -698.20591963 -1663.0285613 --108.70215532 1849.9573126 -108.70214507 -1663.0285581 -698.20591879 -52.85615595 19.517131926 2.1704453155 -1.574276674 --0.19763697777 0.025213325455 -0.0091147299252 -0.0019770957828 0.00043853337574 2.6915742333e-05 -2.3872921056e-05 9.3489099795e-05 0.0005350391593 --0.0017109649753 -0.0079776986723 0.039851048611 -0.16576507943 -1.5792543995 5.5564262283 23.763717239 -204.16288899 -970.94272719 -389.75494438 7514.7157714 13901.033126 15052.025309 13901.033122 7514.715778 389.75494542 -970.94272628 -204.16288822 -23.763717218 5.5564262143 -1.5792543984 -0.16576507919 0.039851048632 -0.0079776986566 -0.0017109649702 0.00053503915828 9.3489099156e-05 -0.00036656684657 -0.002489348609 -0.010121919748 0.044266399563 -0.26811015911 -1.3851086992 7.7142093506 32.021649449 -131.86175247 --906.40559765 5640.7903996 21126.835766 32352.212169 31755.763981 28276.590596 31755.763931 32352.212138 21126.835764 -5640.7903979 -906.40559657 -131.86175204 32.021649437 7.7142093501 -1.3851086995 -0.26811015913 0.044266399571 -0.010121919732 --0.0024893486042 0.00036656684745 -0.0042841525009 -0.0096879382191 0.056155148454 -0.30011578791 -1.4832927029 10.077473828 39.335969634 --127.58320553 -628.01119182 12365.434448 37440.01792 46461.231368 39524.828074 33988.235763 32644.693391 33988.235742 -39524.828003 46461.231322 37440.017915 12365.434444 -628.01119143 -127.58320551 39.335969619 10.077473823 -1.4832927029 --0.30011578741 0.056155148399 -0.0096879382273 -0.0042841524908 -0.0095750652457 0.064852990152 -0.32600269432 -1.9233893338 10.397613814 -43.442744914 -91.866735994 -471.26381829 16851.516123 51827.808611 57739.127738 35877.321584 27129.913748 32618.657699 -36510.710757 32618.657748 27129.913737 35877.321508 57739.12772 51827.808614 16851.51612 -471.26381881 -91.866736055 -43.442744884 10.397613794 -1.9233893369 -0.32600269365 0.064852990217 -0.0095750652079 0.098495749998 -0.40753306451 -2.5053701967 -8.5441535519 42.135503316 -106.94024694 -398.21670869 19470.856213 59357.431597 65108.998021 32185.37804 18752.45026 -28299.420094 36191.047566 39881.613564 36191.047608 28299.420144 18752.450231 32185.377987 65108.998013 59357.431603 -19470.856209 -398.21670894 -106.94024701 42.135503268 8.5441535237 -2.5053702003 -0.40753306372 0.098495750054 -0.54804926807 --3.0311739904 6.6260657968 36.146528474 -156.68955564 -547.87062376 19460.109762 61797.31052 68733.408634 31653.545295 -14794.947407 27951.680294 37588.950237 36724.382634 34370.717937 36724.382609 37588.950259 27951.680326 14794.94736 -31653.545234 68733.408628 61797.31053 19460.109758 -547.87062433 -156.68955565 36.146528449 6.6260657762 -3.0311739922 --0.54804926717 -2.7749312542 0.79948611882 29.307251592 -173.0237918 -743.25706613 16891.336706 59617.68278 69502.305048 -32428.990194 13928.995298 26753.265508 39139.594418 40798.834464 33267.514097 27350.946133 33267.514081 40798.834442 -39139.594432 26753.265524 13928.995262 32428.990132 69502.305034 59617.682783 16891.336702 -743.25706565 -173.02379112 -29.307251555 0.79948609414 -2.7749312549 0.94093487316 28.025114737 -225.21927949 -1040.3362473 12061.734929 51745.982114 -66638.938934 34547.723977 14617.489591 24201.816568 37041.849197 41474.084275 37702.287419 29504.429559 25247.407325 -29504.429623 37702.287376 41474.084205 37041.849219 24201.816632 14617.489554 34547.723887 66638.938909 51745.982113 -12061.734924 -1040.3362466 -225.21927992 28.025114633 0.94093482083 35.852864173 -36.303019281 -1078.4782044 5043.5067785 -36850.03666 60668.023507 37919.509742 15634.59377 22690.902319 34569.07818 40906.030098 39931.622551 33556.184514 -27822.208226 25505.38403 27822.208291 33556.184509 39931.622505 40906.030111 34569.078256 22690.902383 15634.593717 -37919.509661 60668.023487 36850.036657 5043.5067732 -1078.4782049 -36.303018619 35.852864092 11.413615072 -758.92890513 --245.61774049 20621.852798 51215.290994 44255.295142 20882.287111 21235.328513 31812.090016 38893.957595 38793.329488 -33176.417995 28557.373517 27589.538412 27974.588957 27589.538268 28557.373567 33176.418036 38793.329459 38893.957605 -31812.090107 21235.328572 20882.287064 44255.295092 51215.290981 20621.852791 -245.61774104 -758.92890218 11.413615528 --617.63176259 -2444.555546 6508.7312122 35395.1364 48627.177884 29866.56937 18351.269835 26696.691861 36890.918593 -38736.109198 32611.339194 24217.765551 22146.032757 28695.364482 33290.487107 28695.36432 22146.03266 24217.765468 -32611.339109 38736.10916 36890.918615 26696.691925 18351.269846 29866.569335 48627.177861 35395.136385 6508.7312187 --2444.5555407 -617.63176187 -1392.9850776 -2170.6212859 13500.707895 38004.461339 40082.531174 26189.742233 20034.349231 -25525.906335 32899.733985 34363.746668 29697.79155 23414.586894 23448.128005 29420.39503 32955.920997 29420.395147 -23448.127839 23414.586687 29697.791543 34363.746686 32899.733943 25525.906298 20034.349234 26189.742233 40082.531161 -38004.461317 13500.707901 -2170.621275 -1392.9850765 -1711.7711249 -114.39284901 15167.701566 32286.265501 33546.768717 -25089.15822 21786.549101 25371.928738 28312.300846 28453.037618 27508.886613 29033.572935 32161.081663 31751.363602 -30198.832837 31751.363677 32161.081628 29033.572935 27508.886683 28453.037607 28312.300806 25371.928765 21786.5491 -25089.158149 33546.768702 32286.26559 15167.701589 -114.39288597 -1711.7711241 -1398.9155977 -818.46319287 13239.56631 -30472.106521 27192.90041 13621.001646 15242.53473 29336.868526 35741.681503 29378.723431 24053.693684 29191.432602 -36292.531063 39516.902818 40669.160464 39516.902737 36292.531107 29191.432726 24053.693689 29378.723405 35741.681588 -29336.86863 15242.534672 13621.001538 27192.900438 30472.106635 13239.566318 -818.463242 -1398.9155986 -447.21225981 --1407.2256113 4991.3864499 19450.51063 28256.926925 30629.645007 38926.184308 56674.763694 74985.043987 87559.68374 -103289.23683 126046.57559 152889.29141 181080.29765 194286.78609 181080.29766 152889.29147 126046.57563 103289.23683 -87559.683797 74985.044051 56674.763674 38926.184268 30629.645019 28256.926961 19450.510627 4991.3864319 -1407.2256141 --447.21225981 38.195908674 -267.86293132 -667.55424374 3756.2196847 15805.89898 29274.508959 40031.709487 51911.978235 -69377.865069 95226.329608 132051.58098 178151.43081 234091.96012 289971.92659 314589.74933 289971.92663 234091.96014 -178151.4308 132051.58098 95226.329618 69377.865034 51911.978199 40031.709509 29274.508992 15805.898972 3756.2196655 --667.55424636 -267.86292969 38.195909367 1.4477611886 12.140977026 -3.8316149155 -174.82763105 -457.4136796 1271.8228008 -5509.7590301 10425.90979 16486.371438 26713.800999 46685.890995 80988.084008 129685.38656 182290.28017 207239.20124 -182290.28016 129685.38656 80988.083997 46685.890977 26713.800982 16486.37144 10425.909801 5509.75903 1271.8227935 --457.4136829 -174.82763002 -3.8316148775 12.140977034 1.4477611534 -0.088883416798 0.83159358523 4.0335396779 -12.508975916 --88.239861249 -274.71789558 -527.24812218 -413.06971867 375.66459944 2089.2677704 5817.9066215 14344.171991 30372.152631 -53150.672898 65860.934273 53150.672893 30372.152626 14344.171986 5817.9066192 2089.2677716 375.66460241 -413.06971758 --527.24812275 -274.71789558 -88.239860999 -12.508975522 4.0335398049 0.83159358374 -0.088883418394 -0.001570268488 -0.033969088396 --0.15719348089 0.2326982208 2.7926152054 -13.034353161 -70.116762921 -154.59410475 -297.46712145 -611.09112886 -1156.9915222 --1645.4157381 -1535.670495 421.31331634 2109.9775419 421.31331641 -1535.6704949 -1645.4157372 -1156.9915216 -611.09112882 --297.46712162 -154.59410482 -70.116762894 -13.0343531 2.7926151917 0.23269820228 -0.15719348444 -0.03396908835 -0.0015702684297 --0.00035127040159 0.0017732703435 0.0032859391488 -0.02561158212 0.1656052073 0.44491882341 2.3156504029 -0.26717770697 -29.266603077 --126.91796522 -316.0503842 -783.808938 -1499.3752119 -2031.027996 -2198.7859755 -2031.027996 -1499.3752114 -783.80893788 --316.05038406 -126.91796519 -29.266603072 -0.26717769218 2.315650411 0.44491882607 0.16560520994 -0.025611580828 0.0032859391364 -0.0017732703539 -0.00035127039829 -1.0324359924e-05 0.00063329300772 0.0014451064937 -0.0018582097643 -0.0078596958185 -0.012715318098 0.22448667874 -0.76318309222 1.5353195423 0.4710640821 -12.543584409 -93.340012813 -240.31890504 -302.2346226 -286.49044071 -302.23462256 --240.31890496 -93.340012823 -12.543584415 0.47106408041 1.5353195437 0.7631830937 0.22448667949 -0.01271531814 -0.0078596956609 --0.001858209759 0.0014451064797 0.00063329300508 -1.032436052e-05 1.0413216946e-05 7.0759379817e-06 -0.00016503122712 0.00015375811336 8.9723638677e-05 --0.00022444603266 -0.0056120989981 0.012306066545 0.080872608478 0.14883822628 1.3038487502 13.964654917 38.773641976 50.407560126 -48.76121878 50.407560128 38.773641967 13.964654921 1.3038487503 0.14883822576 0.080872607996 0.012306066429 -0.005612098997 --0.0002244460121 8.9723658914e-05 0.00015375811289 -0.0001650312251 7.0759379982e-06 1.0413216923e-05 3.0330758268e-07 -6.0243228276e-06 -1.9616369889e-05 -4.0298047809e-05 0.00011140079589 8.7543454907e-05 -0.00055773533538 -0.0094023667715 -0.019934144455 -0.020916197142 0.38513607806 4.7049481288 -9.2920927427 10.086220569 10.208285842 10.086220562 9.2920927391 4.704948129 0.38513607823 -0.020916197143 -0.019934144482 --0.0094023667834 -0.00055773533399 8.7543456908e-05 0.00011140079497 4.0298047628e-05 -1.9616369646e-05 -6.0243228357e-06 3.0330758454e-07 -1.4508949251e-07 --2.9368058463e-08 4.9624715176e-06 6.1803153002e-06 -2.5345545239e-05 -0.00011693650996 -0.00013589441247 -0.00056916187654 -2.5373332895e-05 -0.00074216879091 -0.0040118733559 0.019502283668 -0.43528356065 -0.71174791702 -0.52442853342 -0.71174791747 -0.43528356053 0.019502283573 0.0040118733442 --0.00074216878959 -2.5373330405e-05 -0.00056916187712 -0.00013589441254 -0.00011693650948 -2.5345544962e-05 6.1803151937e-06 4.9624714509e-06 -2.9368060402e-08 --1.4508949315e-07 3.2299517517e-09 3.3305657298e-08 1.6332177333e-07 -7.2461398354e-07 -4.6163324022e-06 -1.243434495e-05 5.7221587395e-06 0.00018317990534 -0.00036079064945 0.00035137669737 -0.0053977144237 -0.11890877119 -0.18408488481 -0.16674408548 -0.19202177889 -0.16674408531 -0.1840848847 --0.11890877111 -0.0053977144245 0.00035137669699 0.00036079064979 0.00018317990538 5.722158697e-06 -1.2434344926e-05 -4.6163323497e-06 -7.2461398139e-07 -1.6332177029e-07 3.3305657451e-08 3.2299517655e-09 1.9926824905e-10 -7.5320999527e-10 -6.0894957948e-08 -1.7665845271e-07 1.7899752216e-07 3.3981507975e-06 -7.1802346262e-06 1.333681652e-05 -2.0759622808e-06 1.2950104792e-05 -0.0003295072051 -0.0065953059034 0.00099148518619 0.0097605656319 0.0050551336909 -0.0097605656535 0.00099148519065 -0.0065953058969 -0.00032950720508 1.2950104773e-05 -2.0759623256e-06 1.333681653e-05 7.1802346328e-06 3.3981507934e-06 -1.7899752178e-07 -1.7665845075e-07 -6.0894957355e-08 -7.5321000093e-10 1.9926824931e-10 -1.8686966676e-11 -2.1856737646e-10 -7.1919828719e-11 1.4418666175e-08 -7.8302888268e-08 3.8958492609e-07 3.6059216272e-07 -1.1967303626e-06 -3.245401187e-06 -1.1717850002e-05 5.5072838006e-06 0.0013070168499 0.0022898776412 -0.0020734693792 0.0021507942099 0.0020734693785 0.0022898776409 0.0013070168492 5.5072837842e-06 -1.1717850005e-05 -3.2454011892e-06 -1.1967303606e-06 -3.6059216586e-07 3.895849275e-07 7.8302887881e-08 1.4418666084e-08 -7.1919828786e-11 -2.1856737601e-10 -1.8686966685e-11 +0 0 0 6.3670769249e-07 -1.5928558811e-06 3.8601826839e-05 -0.00013660676997 -0.00033614994135 0.00076983687416 +0.0021287452393 -0.011699730527 -0.066665202341 -0.35154372707 -1.0513442603 -1.7328535824 1.9671176049 46.815739358 87.738667952 +46.815739347 1.9671175983 -1.7328535864 -1.0513442625 -0.35154372763 -0.066665202454 -0.011699730519 0.002128745232 0.00076983687618 +-0.00033614993342 -0.00013660676586 3.8601827699e-05 -1.5928558916e-06 6.3670761297e-07 -2.1671147642e-06 4.1894898921e-05 -0.00015850687519 -0.0004432218667 +0.0012866211416 0.0066807365462 0.0074831058501 -0.068904790319 -0.32967518287 -1.1107705095 -0.84220288427 64.874060241 895.04695233 +2789.9263581 3919.4866787 2789.9263587 895.04695247 64.87406021 -0.84220289339 -1.1107705126 -0.32967518338 -0.068904790267 +0.0074831059019 0.0066807365892 0.0012866211594 -0.00044322185435 -0.00015850687033 4.1894899606e-05 -2.1671148181e-06 4.0640078612e-05 -0.00023907435623 +-0.0004707315872 0.0035058383063 0.014107793794 0.024310053363 0.038996431767 -0.12090622323 0.31285781609 24.067294417 452.06023861 +3922.981535 9993.7594252 13126.241221 13254.023049 13126.24122 9993.759425 3922.9815346 452.06023842 24.067294394 +0.31285781355 -0.12090622302 0.038996432148 0.024310053469 0.014107793816 0.0035058383228 -0.00047073157635 -0.00023907435253 4.0640079005e-05 +-0.00030582907443 -0.00047771190077 0.0061992093749 0.029250512204 0.059993108917 0.10575767262 0.27597792775 4.452105312 96.383665354 +1532.9206636 9372.300438 20562.400152 25976.717504 25199.772683 23707.873324 25199.772676 25976.717498 20562.400151 +9372.3004368 1532.920663 96.383665304 4.4521053106 0.27597792864 0.10575767292 0.059993108941 0.029250512201 0.0061992093846 +-0.00047771189316 -0.00030582907218 -0.00090672833377 0.0058950609035 0.043620069053 0.11637413686 0.29729018092 0.92360151496 9.4842501825 +189.42348189 3184.0327033 15780.168831 33260.48369 37971.701207 33447.894456 32076.196122 32232.600822 32076.196124 +33447.894447 37971.701198 33260.483688 15780.168828 3184.0327021 189.42348181 9.4842501822 0.92360151555 0.29729018098 +0.11637413681 0.043620069053 0.0058950609084 -0.00090672833072 -0.0026272091511 0.015830201466 0.11402679465 0.35988861678 1.3407409976 +12.42701232 253.94146344 4974.4645079 20917.30132 41846.12747 46131.748119 36507.833282 33176.006937 35924.100232 +37569.756493 35924.100244 33176.006939 36507.833272 46131.748113 41846.127469 20917.301317 4974.4645063 253.94146336 +12.427012318 1.3407409979 0.35988861693 0.11402679467 0.015830201467 -0.0026272091547 -0.015984612337 -0.02902545573 0.10782143301 +0.66878276159 10.330152263 254.80140293 6066.0476167 24502.976051 46989.379192 50451.073457 36767.1622 30958.704211 +34394.746827 37058.757138 37998.388383 37058.75714 34394.746835 30958.704212 36767.162192 50451.073453 46989.379193 +24502.976048 6066.0476149 254.80140284 10.330152261 0.66878276175 0.10782143308 -0.029025455752 -0.015984612352 -0.072451404426 +-0.27962504029 -0.35082428607 4.1267921978 188.24513554 4956.3890517 24523.130237 48965.377081 52313.584669 37353.380054 +29684.405383 33320.5908 36343.251172 35594.441648 34283.664957 35594.441639 36343.251166 33320.590808 29684.405386 +37353.380044 52313.584668 48965.377082 24523.130234 4956.38905 188.24513547 4.1267921956 -0.35082428608 -0.2796250403 +-0.072451404424 -0.25291292311 -1.1512222864 -1.421603459 91.79546759 3165.3445929 21015.842217 47692.387497 53121.142957 +37105.500766 27671.026714 31562.014507 36283.263175 35988.248729 33179.501619 31699.198701 33179.501609 35988.248713 +36283.263174 31562.014521 27671.026716 37105.500756 53121.142955 47692.387498 21015.842214 3165.3445918 91.795467544 +-1.4216034612 -1.1512222867 -0.25291292304 -0.87750901046 -3.5415730111 19.165710778 1535.4968089 15892.814298 42602.149964 +51973.888497 38596.857777 27565.404905 28744.819134 34777.6527 36612.08023 33932.09817 31121.738526 30098.908187 +31121.738519 33932.098158 36612.080221 34777.652706 28744.819151 27565.404908 38596.857764 51973.888492 42602.149964 +15892.814296 1535.4968083 19.165710759 -3.541573013 -0.87750901062 -2.4083450509 -5.294999542 448.57957084 9232.3445169 +33746.303398 48463.144736 38643.839451 28811.825894 29339.240299 33255.937535 34883.079045 34077.406814 32115.051039 +28649.212186 26621.784451 28649.212182 32115.051036 34077.406811 34883.079039 33255.937544 29339.240315 28811.825891 +38643.839437 48463.144731 33746.303397 9232.3445159 448.57957064 -5.294999548 -2.4083450517 -3.9024799626 51.81511031 +3562.7616368 20881.336824 41279.656437 39984.854879 30038.488217 28941.431718 32355.651596 35088.681857 33510.950216 +30812.54829 28905.089555 26792.583632 25809.114259 26792.583623 28905.089554 30812.548291 33510.950214 35088.681857 +32355.651604 28941.431729 30038.488214 39984.854869 41279.656433 20881.336823 3562.7616367 51.815110295 -3.9024799642 +-2.6978561579 518.58614249 9661.2578893 29224.975851 38178.958333 32634.666177 28505.545245 29291.921344 31839.085331 +33422.280873 32092.919228 27578.815033 25234.294788 27653.296102 29630.357122 27653.29609 25234.294783 27578.815037 +32092.919233 33422.280873 31839.085333 29291.921351 28505.545249 32634.666174 38178.958327 29224.975849 9661.2578894 +518.58614269 -2.6978561609 3.4538336274 2162.7946527 13823.865812 29349.53886 33174.454902 29813.825883 27586.359271 +26756.37755 28554.741706 30335.927759 29413.474755 26646.174385 26298.573023 29029.450568 30478.332711 29029.45057 +26298.573024 26646.174387 29413.474762 30335.927762 28554.741703 26756.377547 27586.359271 29813.825884 33174.454898 +29349.538857 13823.865812 2162.7946526 3.4538336194 7.841047037 3660.7147714 14563.451808 25162.905151 28732.034599 +27025.402537 24679.323296 25567.135881 27554.105739 27624.82449 27006.596116 28940.540907 31598.974631 31481.900109 +30642.193214 31481.900111 31598.97464 28940.540912 27006.596121 27624.824491 27554.105738 25567.135884 24679.3233 +27025.402534 28732.034593 25162.905151 14563.451809 3660.7147707 7.8410470275 5.2414325852 2663.8534235 13185.324033 +23408.844481 23376.564181 19367.126412 20011.352561 26319.385841 30698.937163 28664.895136 26578.827782 29733.09009 +35028.054367 38586.863753 39719.515227 38586.863745 35028.054374 29733.090097 26578.827779 28664.895137 30698.937174 +26319.385856 20011.352563 19367.1264 23376.564176 23408.844485 13185.324033 2663.8534225 5.241432577 1.1185132244 +716.71242835 6661.0707891 16962.048594 25042.432813 32118.629493 42139.278926 55736.433873 70964.698079 84804.585834 +101302.91588 123185.65579 150464.13005 176881.57597 187659.99388 176881.57597 150464.13005 123185.65579 101302.91587 +84804.58584 70964.698092 55736.433877 42139.27892 32118.629484 25042.432813 16962.048596 6661.0707881 716.71242778 +1.1185132197 -0.27019397476 14.777308291 744.48413708 5551.9559174 15467.221279 27255.1628 39696.813681 54048.305669 +71984.873592 95660.406885 128494.78658 172163.43587 227767.3506 283396.44732 307870.46418 283396.44732 227767.3506 +172163.43587 128494.78658 95660.406886 71984.873593 54048.305665 39696.813677 27255.162799 15467.221279 5551.9559166 +744.48413669 14.777308273 -0.27019397477 -0.015549122832 -0.0750436287 2.3777917595 57.048031958 507.60949761 2516.6367501 +6563.8548576 12131.98085 19351.903405 30075.286918 48609.118305 79676.107012 126306.29546 181225.43334 208682.54817 +181225.43333 126306.29546 79676.107009 48609.118302 30075.286915 19351.903403 12131.98085 6563.854858 2516.6367501 +507.60949745 57.048031939 2.3777917604 -0.075043628645 -0.01554912295 -0.0016933053446 0.035535011852 0.09817443097 0.22201640767 +2.9866852657 38.176737867 217.08448251 756.03530958 1886.6199671 4044.6410983 8469.4938334 17510.134694 34356.535832 +59254.928708 73342.713636 59254.928705 34356.535829 17510.134693 8469.493833 4044.6410982 1886.6199672 756.03530978 +217.08448254 38.176737868 2.9866852658 0.22201640791 0.098174431228 0.03553501192 -0.0016933053579 -5.0348988599e-05 0.0014531841282 +0.001451179502 0.0053389152492 0.022647588376 0.15715081211 1.5475081322 9.9372748216 45.229445791 163.61028554 505.89220082 +1367.8207313 3200.9085255 6396.7658394 8369.3926906 6396.7658391 3200.9085252 1367.8207312 505.89220082 163.61028555 +45.229445796 9.9372748224 1.5475081322 0.15715081211 0.022647588402 0.0053389152656 0.0014511795096 0.0014531841339 -5.034898642e-05 +-6.5176273396e-06 -6.1757454883e-05 -3.776957487e-06 0.0011637783966 0.0022880059276 0.0042319792805 0.0075969484627 0.023719494791 0.24905967172 +1.7942709481 8.2131691268 27.878256231 67.64883867 85.776122801 78.713522696 85.776122804 67.648838668 27.878256227 +8.213169126 1.794270948 0.24905967169 0.023719494774 0.0075969484585 0.0042319792764 0.0022880059267 0.0011637783964 -3.7769575706e-06 +-6.1757454854e-05 -6.517627332e-06 3.0159420234e-07 6.0908066537e-06 3.8766915768e-05 8.5029092236e-05 0.000142390364 0.00024113729878 -0.00063512457221 +-0.0034725557092 -0.0065949813875 -0.052031254099 -0.23260433724 -0.27550953247 0.069140647768 0.29844234419 0.27654719132 0.29844234421 +0.069140647799 -0.27550953247 -0.23260433724 -0.052031254104 -0.0065949813953 -0.0034725557141 -0.0006351245733 0.00024113729876 0.0001423903639 +8.5029092073e-05 3.876691569e-05 6.0908066325e-06 3.0159419778e-07 7.4968193307e-08 6.1907041689e-07 1.406247389e-06 3.1601298335e-06 1.077612608e-05 +-3.5643059239e-05 -0.00038025252539 -0.00092651705924 -0.0037671927159 -0.026670805564 -0.054202676017 -0.052001917104 -0.038978237137 -0.046455604695 +-0.057541214468 -0.046455604709 -0.038978237135 -0.052001917101 -0.054202676015 -0.026670805564 -0.0037671927169 -0.00092651706051 -0.00038025252589 +-3.5643059288e-05 1.0776126095e-05 3.1601298376e-06 1.4062473885e-06 6.1907041615e-07 7.4968193043e-08 1.1031909015e-08 3.4994177087e-08 4.7778868607e-08 +3.6928752493e-07 -5.0756977304e-07 -1.3269686585e-05 -5.0960987965e-05 -8.6393961865e-05 -0.00036592940495 -0.0016053967673 -0.00055485527609 0.00018595821152 +-0.0065725190536 -0.011068781554 -0.010085531992 -0.011068781557 -0.0065725190555 0.00018595821162 -0.00055485527588 -0.0016053967671 -0.00036592940493 +-8.6393961945e-05 -5.0960988039e-05 -1.3269686603e-05 -5.0756977386e-07 3.6928752582e-07 4.7778868973e-08 3.4994177223e-08 1.1031909006e-08 -6.7047683799e-10 +-2.4640242809e-09 1.0398566266e-08 2.873257865e-08 -3.1715416494e-07 -1.4593003685e-06 -1.6658510952e-06 -5.279867837e-06 -4.758545139e-07 0.00019246333044 +0.00035134947122 0.0001125012089 -0.00037182566479 -0.00032598829806 -9.6226662954e-06 -0.00032598829836 -0.00037182566504 0.0001125012089 0.00035134947125 +0.00019246333047 -4.7585450333e-07 -5.2798678369e-06 -1.6658510983e-06 -1.4593003721e-06 -3.1715416585e-07 2.8732578652e-08 1.0398566299e-08 -2.4640242625e-09 +-6.7047683366e-10 1.3057785445e-11 4.8011764821e-10 2.2409097424e-09 -8.078170968e-09 -5.0874765211e-08 -8.1084340078e-09 1.2406554738e-08 1.2896351958e-07 +8.6684472707e-06 2.8642813311e-05 1.1382941341e-05 -2.3681479006e-05 -9.1363373775e-06 1.2326896324e-05 1.304530134e-05 1.2326896322e-05 -9.1363373812e-06 +-2.3681479009e-05 1.1382941343e-05 2.8642813312e-05 8.6684472699e-06 1.289635197e-07 1.2406554865e-08 -8.1084339855e-09 -5.0874765294e-08 -8.0781710029e-09 +2.2409097358e-09 4.8011764799e-10 1.3057785698e-11 8.9624264708e-12 6.1324220719e-11 -2.9320069173e-10 -2.2186846889e-09 1.0617948816e-09 1.0467567776e-08 +4.3490979562e-09 9.1450362549e-08 8.6325411649e-07 -8.0152577467e-07 -3.8930661815e-06 -2.6311716376e-06 5.7428827485e-07 9.5099970168e-07 1.3691999009e-07 +9.50999702e-07 5.7428827476e-07 -2.6311716379e-06 -3.893066182e-06 -8.0152577528e-07 8.6325411611e-07 9.1450362566e-08 4.3490979773e-09 1.0467567814e-08 +1.0617949021e-09 -2.218684691e-09 -2.9320069248e-10 6.1324220515e-11 8.9624264549e-12 -3.3136485162e-13 -1.099368491e-11 -6.3502850803e-11 6.5478021252e-11 +9.2722322111e-10 2.6090594677e-10 -2.1584225188e-09 -1.3532337121e-09 -7.9564834605e-08 -2.6198053986e-07 -1.8787058714e-07 5.3135286877e-08 5.0890806199e-08 +-1.5931883906e-08 -1.5950662523e-08 -1.5931883905e-08 5.0890806202e-08 5.3135286875e-08 -1.8787058717e-07 -2.6198053988e-07 -7.95648346e-08 -1.3532337156e-09 +-2.1584225227e-09 2.6090594763e-10 9.2722322404e-10 6.5478021935e-11 -6.3502850727e-11 -1.0993684918e-11 -3.3136485311e-13 dose 1 961 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -2163,100 +2163,100 @@ dose 1 961 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 3.4703602455e-08 -1.3467594509e-07 3.1161968644e-08 2.4985603273e-06 -2.5269746572e-05 -0.0001305768415 -0.00028065727465 -0.0012147700129 -0.013275835305 -0.0045968812762 0.24184262668 0.52792212753 -2.6318563009 -10.331642648 -14.81325265 --10.331642642 -2.6318563015 0.52792212621 0.24184262537 -0.0045968813963 -0.013275835339 -0.0012147700174 0.00028065727739 -0.00013057684104 --2.5269746607e-05 2.4985603177e-06 3.1161962677e-08 -1.3467594555e-07 3.4703602496e-08 -1.7288197042e-07 2.5630308892e-08 4.4995040238e-06 -1.1451324873e-05 --0.00010472937384 0.00012095995114 -0.0013159521693 -0.017013800842 -0.005324574295 0.17702985964 -0.12231170895 -6.5055267546 -21.625993441 --20.981527906 -11.143765909 -20.981527814 -21.625993406 -6.505526746 -0.12231171155 0.17702985922 -0.0053245744638 -0.01701380085 --0.0013159521665 0.00012095995134 -0.000104729374 -1.1451324787e-05 4.4995040232e-06 2.5630302327e-08 -1.7288197063e-07 5.7220569457e-07 5.1342486865e-06 --7.5196146879e-06 -7.5557297843e-05 0.00029261370158 -0.00094889241275 -0.016617086857 0.020715900082 0.22913774723 -1.4481233528 -10.344223835 --10.649897879 48.592386024 140.93840455 180.79822278 140.93840465 48.592386147 -10.649897852 -10.344223829 -1.4481233463 -0.22913774708 0.020715899972 -0.016617086849 -0.00094889241117 0.00029261370166 -7.555729753e-05 -7.5196146437e-06 5.1342486715e-06 5.7220568886e-07 -4.0101732215e-06 -1.4391311865e-05 -0.00010112215034 0.00037392201745 -0.0015811472958 -0.01431181032 0.045134825549 0.34021336963 -0.74436766467 --10.0335781 32.138425641 202.02976567 437.70968395 577.90453773 602.15957551 577.90453726 437.70968379 202.02976568 -32.138425641 -10.033578083 -0.74436766034 0.34021336957 0.04513482555 -0.01431181032 -0.001581147296 0.0003739220172 -0.00010112215001 --1.4391311834e-05 4.0101732367e-06 -3.6296168113e-05 -0.00012497817887 0.00043031876442 -0.0017633617451 -0.015217725146 0.069158177879 0.44846873332 --0.60634144991 -6.8535900291 100.46175169 438.44843256 825.25452578 1036.9638143 1083.6607951 1079.6913976 1083.660794 -1036.9638134 825.25452543 438.44843247 100.46175164 -6.8535900226 -0.60634144944 0.44846873306 0.069158177809 -0.015217725146 --0.0017633617433 0.00043031876316 -0.00012497817888 -3.6296167945e-05 -0.00014627012294 0.00055585398122 -0.0017763455615 -0.020243585518 0.06931359134 -0.50858131021 -0.20110753814 -5.083265469 155.21125456 659.87338252 1200.8333806 1437.6336766 1505.1854462 1590.7068909 -1645.0464269 1590.7068909 1505.1854454 1437.6336758 1200.8333803 659.8733824 155.21125444 -5.0832654729 -0.20110753829 -0.50858130976 0.069313591087 -0.020243585553 -0.0017763455578 0.00055585398176 -0.0001462701223 0.00088725294683 -0.0022307348139 -0.026401909197 -0.041138189554 0.47868826314 -0.21668295154 -4.1926150745 191.43053729 802.9910325 1476.0440059 1721.4387169 1733.9124403 -1881.2091235 2100.3008961 2199.2213457 2100.3008966 1881.2091234 1733.9124395 1721.4387162 1476.0440057 802.99103229 -191.43053714 -4.1926150767 -0.21668295209 0.47868826246 0.04113818921 -0.026401909232 -0.0022307348041 0.00088725294875 -0.0028530250932 --0.032220708158 0.012743876555 0.3732056274 -0.78359851327 -5.7731280597 191.43277878 855.67584634 1608.1178843 1927.2766815 -1931.4626215 2054.6492898 2403.6160298 2679.7243874 2756.07691 2679.724387 2403.6160298 2054.6492895 1931.4626205 -1927.2766808 1608.1178842 855.67584612 191.43277863 -5.7731280628 -0.78359851277 0.37320562691 0.012743876316 -0.032220708167 --0.002853025084 -0.029868931221 -0.043653058765 0.25928090446 -1.0298830276 -8.0763161027 155.90164353 807.47681014 1616.8714141 -1993.1778982 2028.6453244 2154.5417314 2567.234209 3020.5732632 3267.4368413 3334.1861949 3267.4368408 3020.573263 -2567.2342092 2154.5417307 2028.6453234 1993.1778976 1616.8714139 807.47680989 155.9016434 -8.0763160978 -1.029883022 -0.25928090385 -0.043653058992 -0.029868931226 -0.029748770972 0.20943310644 -1.5774266007 -11.72628353 97.041349993 660.52276128 -1495.0771015 1973.887908 2062.4986459 2192.7912809 2642.4158503 3238.3957476 3625.5006332 3876.2085351 4018.7259538 -3876.2085346 3625.5006328 3238.3957478 2642.4158502 2192.7912804 2062.4986448 1973.8879069 1495.077101 660.52276108 -97.041349913 -11.726283521 -1.5774266053 0.20943310515 -0.029748771414 0.35308585358 0.17016200158 -10.991594877 25.507230517 -432.80871152 1231.0978897 1794.7550528 1985.3772498 2158.1056508 2636.2785531 3319.3328122 3826.6206991 4200.4093585 -4778.4400301 5177.4374752 4778.4400306 4200.4093584 3826.6206995 3319.3328132 2636.2785537 2158.1056504 1985.3772481 -1794.7550516 1231.0978893 432.80871134 25.507230464 -10.99159488 0.17016200487 0.35308585217 0.73101660511 -6.995021825 --17.755753062 193.48402988 864.69913436 1552.4888523 1826.3009275 2035.9127856 2484.1048917 3163.1845981 3812.5258122 -4328.5594146 4903.976513 6105.3349572 6994.7741467 6105.3349574 4903.9765139 4328.5594143 3812.5258123 3163.1845996 -2484.1048927 2035.9127853 1826.3009263 1552.4888515 864.69913405 193.48402973 -17.75575303 -6.9950217933 0.73101660756 --4.0135670526 -29.283222958 27.233421292 450.45157578 1162.0939521 1663.1641357 1884.3366102 2249.6088109 2807.2750883 -3441.3265865 4129.1332966 4885.6536273 5889.43756 7946.3598725 9423.5700482 7946.3598715 5889.4375588 4885.6536252 -4129.133295 3441.3265874 2807.2750899 2249.6088118 1884.3366101 1663.1641351 1162.0939516 450.45157556 27.233421433 --29.283222886 -4.0135670434 -13.592419685 -44.103551574 108.39561058 616.30338635 1234.6943071 1679.0174569 1973.7027844 -2401.225192 2933.4343014 3630.7869218 4640.6935098 5989.6319933 7870.1406724 10359.348456 11769.482179 10359.348456 -7870.1406695 5989.6319912 4640.6935094 3630.7869213 2933.4343011 2401.225193 1973.702785 1679.0174562 1234.6943063 -616.30338602 108.3956108 -44.103551448 -13.592419671 -19.419057776 -34.897564365 157.4693309 630.93287255 1140.8437433 -1544.6849251 1883.3476651 2363.8070347 2963.8113753 3780.6771408 4988.0288823 6797.463976 9319.8744017 11797.76509 -12892.95427 11797.765091 9319.8744015 6797.4639763 4988.0288832 3780.6771412 2963.8113747 2363.8070349 1883.3476643 -1544.6849237 1140.8437433 630.93287297 157.4693309 -34.897564602 -19.419057739 -13.840702114 -31.020226668 124.65895449 -551.77531791 1003.6323291 1308.3254878 1617.1615376 2175.2169532 2897.4486938 3672.2369937 4646.3127275 6046.9255084 -8063.2211847 10656.416448 12082.563515 10656.416448 8063.2211851 6046.9255096 4646.3127287 3672.2369958 2897.4486945 -2175.2169523 1617.1615362 1308.3254873 1003.6323298 551.77531826 124.65895415 -31.020226998 -13.840702073 -3.4863243325 --18.256651387 37.73133233 249.21133311 514.72109344 717.32204564 947.3868227 1357.5260073 1905.7625903 2474.2618775 -3200.4593387 4194.6520805 5564.8402626 7989.4745419 9593.5522375 7989.4745414 5564.8402623 4194.6520808 3200.4593395 -2474.2618787 1905.7625907 1357.5260066 947.38682262 717.3220461 514.72109353 249.21133278 37.731332101 -18.256651396 --3.4863243175 0.14158222394 -0.3508303459 -2.0355564339 4.6533508031 42.228924654 118.74533631 225.61668811 367.98563375 -564.45972327 846.29797863 1310.2540168 2033.2844327 3036.1488909 4635.4184101 5658.4400848 4635.4184101 3036.1488909 -2033.2844326 1310.2540167 846.29797854 564.45972318 367.98563374 225.61668821 118.74533637 42.228924591 4.653350753 --2.0355564397 -0.35083034189 0.14158222629 0.001444890139 0.022285038144 0.028878878331 -0.275304515 -1.4732986727 0.98685124187 -13.596840747 38.469710424 79.208014073 153.16317531 300.84779594 575.47660817 1025.7563672 1670.7075908 2041.1697468 -1670.7075907 1025.7563671 575.47660808 300.84779585 153.16317526 79.208014095 38.469710446 13.596840729 0.98685122278 --1.473298676 -0.27530451115 0.028878878406 0.022285038116 0.0014448900471 -0.00017292694513 0.00077654593806 0.0075607130751 -0.005580282087 --0.19306918871 -0.82999900662 -2.1861297569 -3.1681545627 -1.9322525128 4.5694341622 20.93996627 63.697327325 147.68021171 -292.08337026 384.06212027 292.08337024 147.68021169 63.697327317 20.939966274 4.5694341703 -1.9322525066 -3.1681545625 --2.1861297588 -0.82999900651 -0.19306918808 -0.0055802811465 0.0075607134638 0.00077654593367 -0.0001729269484 -5.6498224451e-06 -0.00010197016807 --0.00039034840375 0.00035738789464 0.0056377770618 -0.016943823356 -0.18577153714 -0.52499070277 -1.1645912246 -2.6234109529 -5.8572837923 --11.391410548 -21.442297891 -23.271261318 -18.366118515 -23.271261312 -21.442297889 -11.391410544 -5.8572837899 -2.6234109524 --1.1645912248 -0.5249907029 -0.18577153713 -0.016943823222 0.0056377770071 0.00035738783542 -0.00039034840862 -0.00010197016791 -5.6498222639e-06 --1.3738090013e-06 3.9726986997e-06 2.3847401948e-05 -6.6958548925e-05 0.00024127632608 0.00075787093632 0.0057399901633 0.0052472505183 -0.059207203255 --0.37427185567 -1.2118563963 -3.8812738277 -8.8822414058 -11.696408382 -11.597421332 -11.696408382 -8.882241403 -3.8812738272 --1.211856396 -0.37427185553 -0.059207203216 0.0052472505552 0.0057399901757 0.00075787093451 0.00024127632755 -6.6958546806e-05 2.384740171e-05 -3.9726987327e-06 -1.3738089944e-06 -4.0159363624e-08 1.4290219755e-06 3.8879045588e-06 -4.864320593e-06 -1.30123516e-05 -2.2002302586e-05 0.00058240565957 -0.0024403221814 0.0049891840125 0.004583858375 -0.026161072227 -0.2912322639 -0.74302877762 -0.7850426333 -0.61129745943 -0.78504263337 --0.74302877719 -0.29123226391 -0.026161072249 0.0045838583665 0.0049891840176 0.0024403221851 0.00058240566117 -2.2002303069e-05 -1.3012351298e-05 --4.8643205728e-06 3.8879045162e-06 1.4290219721e-06 -4.0159364642e-08 2.5250333516e-08 1.234833805e-08 -6.0023957169e-07 1.3001611852e-07 2.0115316597e-06 -5.1379059647e-06 -1.1946082112e-05 1.1389321336e-06 9.595440154e-06 0.00035000130942 0.0039071960304 0.058193014348 0.20089384915 0.26254105922 -0.23258072607 0.26254105922 0.20089384909 0.05819301437 0.0039071960313 0.00035000130721 9.5954386487e-06 1.1389319686e-06 -1.1946082066e-05 -5.1379060078e-06 2.0115316813e-06 1.3001612296e-07 -6.0023956337e-07 1.2348338122e-08 2.5250333518e-08 3.3377733619e-10 -1.1634125696e-08 -3.6754717727e-08 -1.2425157813e-07 2.5524159274e-07 -3.1635934373e-07 -2.860500238e-06 -2.836861152e-05 -6.4831424552e-05 -6.6424159272e-05 0.0008878306882 0.015016755617 -0.030733216472 0.031455605746 0.029647581593 0.031455605735 0.030733216459 0.015016755619 0.00088783068878 -6.6424159289e-05 -6.4831424649e-05 --2.8368611547e-05 -2.8605002313e-06 -3.1635933586e-07 2.5524158922e-07 1.2425157739e-07 -3.6754717188e-08 -1.1634125722e-08 3.3377733823e-10 -2.4907082951e-10 -3.8855995757e-11 1.1934209423e-08 1.5153422155e-08 -8.4671990558e-08 -4.616672683e-07 -5.2459219954e-07 -8.6750522899e-07 3.0845331739e-06 1.7092227618e-06 -7.9727412481e-06 -0.00033900454416 -0.0024115388977 -0.003581153152 -0.0030373665048 -0.0035811531532 -0.0024115388972 -0.00033900454475 7.9727412065e-06 -1.7092227716e-06 3.0845331846e-06 -8.6750523017e-07 -5.2459220028e-07 -4.6166726714e-07 -8.4671989769e-08 1.5153421882e-08 1.1934209271e-08 3.8855992704e-11 --2.490708306e-10 6.834651259e-12 6.5345352334e-11 1.9661813786e-10 -2.4101138953e-09 -1.1422995447e-08 -2.6620631392e-08 4.4425681292e-08 4.9585002123e-07 -1.0976218704e-06 1.4099968571e-06 -1.1635366956e-05 -0.00037171043593 -0.00056887070085 -0.00051935741915 -0.00061963146731 -0.00051935741877 -0.0005688707006 --0.00037171043576 -1.1635366963e-05 1.4099968565e-06 1.0976218714e-06 4.9585002137e-07 4.4425681154e-08 -2.6620631385e-08 -1.1422995327e-08 -2.4101138844e-09 -1.9661813278e-10 6.5345352565e-11 6.8346512833e-12 3.5562835657e-13 -1.9308775826e-12 -1.1290977981e-10 -3.2209268652e-10 5.8602059337e-10 9.7208790876e-09 -2.1024664542e-08 3.4559198598e-08 -1.34434341e-08 2.1349045208e-08 -9.6121084738e-07 -1.3231619531e-05 1.1604713276e-05 4.2216213501e-05 3.6796683949e-05 -4.2216213559e-05 1.1604713293e-05 -1.323161951e-05 -9.612108471e-07 2.134904516e-08 -1.3443434216e-08 3.4559198653e-08 2.102466457e-08 9.7208790822e-09 -5.8602059326e-10 -3.2209268312e-10 -1.1290977881e-10 -1.9308775919e-12 3.5562835704e-13 -3.0264417929e-14 -4.1695676486e-13 -1.7746370866e-13 2.9237774611e-11 -1.6200321652e-10 8.0697175735e-10 5.6818794636e-10 -4.0607629806e-09 -1.1263502625e-08 -4.9598512935e-08 -8.1632630454e-08 3.4979367182e-06 6.5752301583e-06 -6.4385357978e-06 6.8011700453e-06 6.4385357968e-06 6.5752301581e-06 3.4979367163e-06 -8.1632630436e-08 -4.9598512937e-08 -1.1263502634e-08 -4.0607629823e-09 -5.681879523e-10 8.0697176057e-10 1.620032159e-10 2.923777445e-11 -1.7746370882e-13 -4.1695676402e-13 -3.0264417944e-14 +0 0 0 5.0238420394e-09 -7.1189471434e-09 3.1850096591e-07 -7.9313115383e-07 -3.7330671219e-06 3.0031276134e-06 +1.4510807358e-05 -0.00013640938533 -0.00071406618705 -0.0035670948333 -0.01211246934 -0.020879542399 0.008957447113 0.38756094906 0.73367618487 +0.38756094894 0.008957447028 -0.02087954245 -0.012112469366 -0.0035670948391 -0.0007140661881 -0.00013640938521 1.4510807359e-05 3.0031277509e-06 +-3.7330669983e-06 -7.9313110743e-07 3.1850097312e-07 -7.1189477721e-09 5.0238414819e-09 -1.1833842339e-08 3.5143047957e-07 -8.9510143987e-07 -4.5382113068e-06 +7.5402071333e-06 7.9997349617e-05 0.00013927000143 -0.00078043797502 -0.0045397919186 -0.015615349974 -0.027432559571 0.51329276954 7.8794440149 +28.746151851 42.791014156 28.746151855 7.8794440158 0.51329276917 -0.027432559705 -0.015615350014 -0.004539791925 -0.00078043797355 +0.00013927000215 7.9997350341e-05 7.5402075012e-06 -4.5382111331e-06 -8.9510139057e-07 3.514304833e-07 -1.1833843625e-08 3.2589492687e-07 -1.5696703917e-06 +-5.4018065966e-06 2.8365673717e-05 0.00017815729598 0.00042162006284 0.00071556205465 -0.0011236879627 -0.0030993363234 0.18997528579 4.0041750189 +36.720077654 114.91665479 192.2462841 220.47408531 192.2462841 114.91665478 36.720077649 4.0041750169 0.18997528552 +-0.0030993363498 -0.0011236879547 0.00071556205981 0.00042162006462 0.00017815729662 2.8365674067e-05 -5.401806449e-06 -1.5696703585e-06 3.2589492797e-07 +-2.2048923326e-06 -6.5929272692e-06 5.2624027177e-05 0.00036112174805 0.0010139534996 0.0018385251268 0.0035072102341 0.040509583121 0.85879737845 +14.1713078 96.40222314 267.44234463 444.53398194 542.35363388 564.42082978 542.35363379 444.53398186 267.4423446 +96.402223123 14.171307795 0.85879737802 0.040509583124 0.003507210249 0.0018385251318 0.0010139535004 0.00036112174837 5.2624027402e-05 +-6.5929271789e-06 -2.2048923145e-06 -1.1742494173e-05 4.0125946849e-05 0.00050216626474 0.0017408840995 0.0045300905272 0.012294118584 0.092329617914 +1.7516996878 30.073240654 178.23474905 482.09444694 785.05584646 957.51482246 1029.3218756 1049.1967715 1029.3218755 +957.51482227 785.05584633 482.09444689 178.23474902 30.073240643 1.7516996872 0.092329617931 0.012294118593 0.0045300905282 +0.0017408840994 0.00050216626484 4.0125946935e-05 -1.1742494144e-05 -4.152439285e-05 0.00014552662726 0.0015844834674 0.0057305548412 0.019108536957 +0.13451887109 2.4020488596 46.913375663 253.01351811 665.06906831 1078.6492902 1323.3301975 1457.8933689 1561.7999328 +1610.5481834 1561.7999329 1457.8933688 1323.3301973 1078.6492901 665.06906825 253.01351806 46.913375648 2.4020488588 +0.13451887107 0.01910853696 0.005730554842 0.0015844834675 0.0001455266272 -4.1524392895e-05 -0.00019565204693 -0.00038870804799 0.0017851330294 +0.012119377889 0.11516864768 2.435047764 56.869105895 303.18771271 796.44756803 1304.4053731 1604.5162279 1770.2643571 +1935.1904353 2103.5003982 2181.3290488 2103.5003983 1935.1904353 1770.264357 1604.5162277 1304.405373 796.44756798 +303.18771267 56.869105878 2.4350477632 0.11516864766 0.012119377892 0.0017851330302 -0.0003887080485 -0.00019565204717 -0.00084520831085 +-0.0038931336287 -0.0055881348437 0.041412655997 1.7680460662 46.813620689 303.76134626 843.28680597 1420.6623566 1779.1498931 +1985.4397262 2202.2428191 2442.0892612 2658.6703914 2752.9734937 2658.6703914 2442.0892612 2202.2428191 1985.4397261 +1779.149893 1420.6623566 843.28680594 303.76134621 46.813620673 1.7680460655 0.04141265598 -0.0055881348443 -0.0038931336294 +-0.00084520831105 -0.0030664755259 -0.016947278772 -0.031966781412 0.80082811881 29.82302558 253.4657291 803.49526061 1431.6173744 +1835.6011308 2068.5222768 2317.5813594 2636.7189961 2950.4640604 3222.7395888 3353.8360849 3222.7395886 2950.4640603 +2636.7189962 2317.5813595 2068.5222767 1835.6011307 1431.6173743 803.49526057 253.46572906 29.823025569 0.80082811838 +-0.031966781431 -0.016947278773 -0.0030664755248 -0.0095222383001 -0.05282779508 0.096154490915 14.101271145 178.98856872 672.51893892 +1329.295269 1811.5159784 2080.4770951 2345.8260868 2720.8232481 3130.9944866 3506.4824994 3893.8704536 4105.2421496 +3893.8704533 3506.4824992 3130.9944865 2720.8232481 2345.8260868 2080.477095 1811.5159782 1329.2952689 672.51893888 +178.98856869 14.101271139 0.096154490721 -0.052827795098 -0.0095222382994 -0.025860785855 -0.10066777355 3.8584847583 95.134981699 +487.52101087 1111.9911209 1656.5427551 2015.4195862 2302.5245186 2690.946811 3180.2934961 3667.8828004 4134.2158423 +4797.8312014 5228.3511737 4797.8312013 4134.2158423 3667.8828003 3180.293496 2690.946811 2302.5245185 2015.4195859 +1656.5427549 1111.9911208 487.52101083 95.134981684 3.8584847563 -0.10066777362 -0.025860785861 -0.046438749067 0.34783965131 +33.563568242 269.73101112 823.8255679 1395.856261 1815.3392036 2181.5160119 2572.703801 3063.8800534 3629.1841255 +4222.428858 4898.4905445 6129.5775275 6980.5543807 6129.5775271 4898.4905445 4222.4288581 3629.1841256 3063.8800534 +2572.703801 2181.5160117 1815.3392034 1395.8562609 823.82556783 269.7310111 33.563568239 0.34783965113 -0.046438749087 +-0.046126710371 4.5617547972 107.43532586 476.34895777 1043.0458489 1527.0047809 1910.7524963 2329.0239021 2812.8412545 +3372.881677 4022.9000158 4826.8338592 5852.4089195 7947.6534212 9469.9412375 7947.6534208 5852.4089192 4826.8338594 +4022.9000162 3372.8816771 2812.8412545 2329.023902 1910.7524962 1527.0047808 1043.0458488 476.34895774 107.43532586 +4.5617547987 -0.046126710412 0.0036078405825 20.04507195 188.89181132 598.98959654 1100.0805741 1550.9342671 1963.5822995 +2412.9657303 2963.6733415 3670.9663908 4597.2062198 5963.6997579 7861.360597 10460.840126 12007.284979 10460.840126 +7861.360597 5963.6997581 4597.2062201 3670.966391 2963.6733415 2412.9657302 1963.5822993 1550.934267 1100.080574 +598.9895965 188.89181133 20.045071949 0.003607840486 0.046005328853 34.123450415 223.60016045 602.19179514 1041.5776063 +1465.2033709 1879.9522107 2372.4100236 2998.0396168 3825.3379815 4989.7109702 6776.0327852 9349.9988154 11953.488882 +13091.725807 11953.488882 9349.9988156 6776.0327854 4989.7109704 3825.3379818 2998.039617 2372.4100236 1879.9522105 +1465.2033707 1041.5776062 602.19179513 223.60016044 34.123450406 0.046005328743 0.032619173254 24.567133253 188.45865559 +530.83035089 925.57025715 1289.1407032 1674.2997688 2187.178034 2849.8584318 3620.7140739 4602.8001412 6036.1639684 +8036.5548482 10676.128663 12174.29641 10676.128663 8036.5548482 6036.1639684 4602.8001413 3620.7140742 2849.8584321 +2187.178034 1674.2997686 1289.1407029 925.5702571 530.83035091 188.45865557 24.567133242 0.032619173175 0.0083460053909 +6.3588388004 77.530494802 252.41094237 477.4464793 708.67187677 984.15828166 1352.154052 1846.6687274 2414.6866404 +3119.4094164 4108.4742213 5443.8664162 7858.9712652 9505.2793499 7858.9712651 5443.8664162 4108.4742212 3119.4094164 +2414.6866405 1846.6687275 1352.154052 984.15828155 708.67187668 477.44647929 252.41094238 77.530494788 6.3588387954 +0.0083460053528 -0.00031552164364 0.022363833806 1.3935992189 13.313863243 50.425950576 120.15007854 225.1604899 373.00305248 +576.34644516 861.09387331 1300.5652305 1968.731063 2938.3861201 4536.0514451 5560.1764392 4536.051445 2938.38612 +1968.7310629 1300.5652304 861.09387328 576.34644514 373.00305246 225.16048989 120.15007853 50.425950574 13.31386324 +1.3935992181 0.022363833771 -0.00031552164311 -3.2532390308e-05 -0.00018089101249 0.0053081222265 0.11269458427 1.1513483399 6.8484039173 +22.54231983 53.164923967 102.21420052 182.59754882 330.06168671 596.13922334 1040.8171106 1735.8154891 2155.7723225 +1735.815489 1040.8171105 596.13922331 330.06168669 182.59754881 102.21420051 53.164923967 22.54231983 6.8484039171 +1.1513483396 0.11269458423 0.0053081222334 -0.00018089101258 -3.2532390656e-05 -3.9815992997e-06 7.2761975885e-05 0.00025363342954 0.00051546029918 +0.0061878585506 0.083205612161 0.5650655347 2.3340604268 6.9434588916 17.468767983 41.341087821 93.95493881 199.26904167 +381.01475634 493.46245193 381.01475632 199.26904165 93.954938804 41.341087821 17.468767983 6.9434588918 2.3340604272 +0.56506553475 0.083205612161 0.0061878585518 0.0005154603 0.00025363343025 7.2761976028e-05 -3.9815993233e-06 -2.1152649292e-07 1.7584522419e-06 +1.2092984831e-06 2.4500310414e-05 9.7797390427e-05 0.00048062399623 0.0036888263468 0.024830214451 0.12678579595 0.5291741022 1.8468523522 +5.481956942 13.749048937 27.365598031 35.351182932 27.36559803 13.749048936 5.4819569415 1.8468523522 0.52917410224 +0.12678579595 0.024830214451 0.0036888263468 0.00048062399624 9.7797390505e-05 2.4500310459e-05 1.2092984973e-06 1.7584522524e-06 -2.1152648912e-07 +-1.9097702809e-08 -1.2686983766e-07 1.4863075682e-07 4.0830135479e-06 8.1764545888e-06 1.8586260693e-05 4.047742743e-05 5.1516145665e-05 0.00050696033139 +0.0046001211105 0.021714545989 0.080266094277 0.21181667637 0.26965520466 0.24101702498 0.26965520467 0.21181667637 0.080266094268 +0.021714545986 0.0046001211101 0.00050696033113 5.1516145596e-05 4.0477427414e-05 1.8586260672e-05 8.1764545844e-06 4.083013546e-06 1.4863075612e-07 +-1.2686983768e-07 -1.9097702784e-08 -7.8333634819e-11 1.2707282388e-08 9.5255196147e-08 2.6496539203e-07 5.1524943258e-07 1.3256997043e-06 -1.6122080046e-06 +-1.8324351279e-05 -2.7756322657e-05 -0.00022828437341 -0.0011419462361 -0.0014119335957 0.00031526795719 0.00096987919917 0.00033675326892 0.00096987919923 +0.0003152679573 -0.0014119335956 -0.0011419462361 -0.00022828437344 -2.7756322704e-05 -1.8324351306e-05 -1.6122080094e-06 1.3256997048e-06 5.1524943255e-07 +2.6496539167e-07 9.5255195957e-08 1.2707282341e-08 -7.833364294e-11 1.9381297713e-10 1.9359416926e-09 3.6188461548e-09 9.1842944778e-09 4.6234567776e-08 +-6.6484992863e-08 -1.4573738828e-06 -3.546917019e-06 -1.2130128239e-05 -9.3219481913e-05 -0.00018163948487 -0.00015753264453 -0.00015029998194 -0.00024210414756 +-0.00030196326822 -0.00024210414763 -0.00015029998192 -0.00015753264452 -0.00018163948486 -9.3219481913e-05 -1.2130128245e-05 -3.5469170246e-06 -1.457373885e-06 +-6.6484993038e-08 4.623456784e-08 9.1842944978e-09 3.6188461544e-09 1.9359416901e-09 1.9381297641e-10 1.7037040018e-11 3.2160919566e-11 7.2287918423e-11 +1.5035777917e-09 2.2692037538e-10 -4.3730362491e-08 -1.7481178683e-07 -2.6452602713e-07 -1.2917875599e-06 -4.0868457081e-06 1.6148359965e-06 3.1997055928e-06 +-2.6465936424e-05 -4.0604441814e-05 -3.0961838108e-05 -4.0604441824e-05 -2.6465936429e-05 3.1997055933e-06 1.6148359972e-06 -4.0868457077e-06 -1.2917875597e-06 +-2.6452602744e-07 -1.7481178714e-07 -4.3730362578e-08 2.269203713e-10 1.5035777953e-09 7.2287919524e-11 3.2160919887e-11 1.7037039994e-11 -1.4461699118e-12 +-5.2994882575e-12 4.307790314e-11 1.2597840176e-10 -1.0570632937e-09 -5.1064400436e-09 -4.152218225e-09 -1.4674523526e-08 -1.7160465856e-08 7.0627600705e-07 +1.2372267716e-06 1.1396321454e-07 -1.2768812271e-06 -7.6168044982e-07 2.017621164e-07 -7.6168045058e-07 -1.2768812278e-06 1.1396321454e-07 1.2372267717e-06 +7.0627600718e-07 -1.7160465813e-08 -1.4674523525e-08 -4.1522182365e-09 -5.1064400581e-09 -1.0570632968e-09 1.2597840172e-10 4.3077903208e-11 -5.2994882126e-12 +-1.4461699032e-12 5.0525179387e-14 1.4200376844e-12 5.7784987584e-12 -3.0071749123e-11 -1.7065850134e-10 4.3310654456e-11 2.2944010091e-10 8.1153660096e-11 +2.5491860176e-08 8.5126298001e-08 1.1113437853e-08 -1.1071221707e-07 -3.7703392606e-08 4.5265896553e-08 4.1618548084e-08 4.5265896551e-08 -3.7703392615e-08 +-1.1071221708e-07 1.1113437856e-08 8.5126298005e-08 2.5491860172e-08 8.1153660615e-11 2.2944010163e-10 4.3310654772e-11 -1.7065850156e-10 -3.0071749229e-11 +5.7784987418e-12 1.420037684e-12 5.0525179873e-14 1.6814845009e-14 9.5565481307e-14 -9.1087582767e-13 -5.8310981281e-12 6.3358714346e-12 3.6086079188e-11 +-1.3581150739e-11 1.4008798249e-10 2.3322110164e-09 -3.0129032899e-09 -1.2045545646e-08 -6.9936517633e-09 2.4130472991e-09 2.5016188464e-09 -5.2142013876e-11 +2.5016188471e-09 2.413047299e-09 -6.9936517643e-09 -1.2045545647e-08 -3.0129032916e-09 2.3322110154e-09 1.4008798247e-10 -1.3581150696e-11 3.6086079312e-11 +6.3358714971e-12 -5.8310981322e-12 -9.1087582898e-13 9.5565480906e-14 1.6814844977e-14 -5.4544763826e-16 -2.1523915808e-14 -1.1863221029e-13 3.1219548113e-13 +2.5241594631e-12 -6.6446154496e-13 -9.3978991603e-12 -6.3937025121e-12 -2.1834446311e-10 -6.6714774457e-10 -4.3361710158e-10 1.6003403295e-10 1.2203143564e-10 +-4.4337253755e-11 -4.2590822951e-11 -4.4337253753e-11 1.2203143565e-10 1.6003403294e-10 -4.3361710164e-10 -6.671477446e-10 -2.1834446309e-10 -6.3937025354e-12 +-9.3978991811e-12 -6.6446154525e-13 2.5241594713e-12 3.1219548287e-13 -1.1863221017e-13 -2.1523915827e-14 -5.4544764066e-16 normalized%20dose 1 961 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -2271,97 +2271,97 @@ normalized%20dose 1 961 double 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 2.6703606399e-12 -1.0362997425e-11 2.3978402425e-12 1.9225834444e-10 -1.9444476035e-09 -1.0047581039e-08 -2.1595917613e-08 -9.3473697239e-08 -1.0215443225e-06 -3.5371920946e-07 1.8609221684e-05 4.0622366859e-05 -0.0002025151563 -0.00079499561772 -0.0011398449736 --0.00079499561728 -0.00020251515635 4.0622366757e-05 1.8609221583e-05 -3.537192187e-07 -1.0215443252e-06 -9.3473697579e-08 2.1595917824e-08 -1.0047581003e-08 --1.9444476062e-09 1.922583437e-10 2.3978397833e-12 -1.0362997461e-11 2.670360643e-12 -1.3302861273e-11 1.9721920265e-12 3.4622625877e-10 -8.8115253321e-10 --8.0586791555e-09 9.3075839302e-09 -1.0125942635e-07 -1.3091719847e-06 -4.0971347685e-07 1.36220316e-05 -9.4115985164e-06 -0.00050058499285 -0.0016640693645 --0.0016144792563 -0.00085748659381 -0.0016144792493 -0.0016640693617 -0.00050058499219 -9.4115987165e-06 1.3622031567e-05 -4.0971348984e-07 -1.3091719853e-06 --1.0125942613e-07 9.3075839454e-09 -8.058679168e-09 -8.8115252657e-10 3.4622625873e-10 1.9721915213e-12 -1.3302861289e-11 4.4029883256e-11 3.9506836863e-10 --5.7861667575e-10 -5.8139564754e-09 2.2515936563e-08 -7.3015040837e-08 -1.278645776e-06 1.5940398196e-06 1.7631611073e-05 -0.00011142968826 -0.00079596371051 --0.00081948460973 0.0037390698906 0.010844878961 0.013911998285 0.010844878969 0.0037390699001 -0.00081948460767 -0.00079596371008 -0.00011142968775 -1.7631611061e-05 1.5940398111e-06 -1.2786457754e-06 -7.3015040715e-08 2.2515936569e-08 -5.8139564513e-09 -5.7861667236e-10 3.9506836748e-10 4.4029882816e-11 -3.0857340369e-10 -1.107377622e-09 -7.7811117858e-09 2.8772420358e-08 -1.2166556801e-07 -1.1012601649e-06 3.4730187388e-06 2.6178619138e-05 -5.7277342197e-05 --0.00077206025136 0.0024729763133 0.015545715607 0.033680731365 0.044468395843 0.04633476399 0.044468395807 0.033680731353 0.015545715608 -0.0024729763133 -0.00077206025008 -5.7277341864e-05 2.6178619134e-05 3.4730187389e-06 -1.1012601649e-06 -1.2166556802e-07 2.8772420339e-08 -7.7811117604e-09 --1.1073776196e-09 3.0857340485e-10 -2.792904824e-09 -9.6167771093e-09 3.3112017479e-08 -1.3568654159e-07 -1.1709681815e-06 5.3215592349e-06 3.4508614926e-05 --4.6656549395e-05 -0.00052736764372 0.0077302956623 0.033737576334 0.063501396039 0.07979192818 0.08338515109 0.083079715287 0.083385151006 -0.079791928107 0.063501396012 0.033737576327 0.0077302956585 -0.00052736764322 -4.6656549359e-05 3.4508614905e-05 5.3215592296e-06 -1.1709681815e-06 --1.3568654145e-07 3.3112017383e-08 -9.6167771099e-09 -2.792904811e-09 -1.1255142159e-08 4.2771657348e-08 -1.3668561574e-07 -1.5576963241e-06 5.3335179354e-06 -3.9134136426e-05 -1.5474752367e-05 -0.00039114532988 0.011943141222 0.050775705785 0.092401306135 0.11062253233 0.11582048222 0.12240115637 -0.12658245595 0.12240115638 0.11582048216 0.11062253226 0.092401306118 0.050775705776 0.011943141213 -0.00039114533018 -1.5474752378e-05 -3.9134136391e-05 5.333517916e-06 -1.5576963268e-06 -1.3668561546e-07 4.2771657389e-08 -1.125514211e-08 6.8272028815e-08 -1.716498007e-07 -2.0315648563e-06 -3.1654869929e-06 3.6833936715e-05 -1.6673243818e-05 -0.00032261187545 0.014730129897 0.06178827256 0.11357811688 0.13246066311 0.13342048681 -0.14475462036 0.1616132173 0.16922491339 0.16161321734 0.14475462036 0.13342048674 0.13246066306 0.11357811687 0.061788272544 -0.014730129885 -0.00032261187562 -1.6673243861e-05 3.6833936663e-05 3.1654869664e-06 -2.0315648591e-06 -1.7164979994e-07 6.8272028963e-08 -2.1953357503e-07 --2.4793077596e-06 9.806113471e-07 2.8717295828e-05 -6.0296063787e-05 -0.00044422863474 0.014730302374 0.065842245153 0.1237408914 0.14829941067 -0.14862150892 0.1581004335 0.18495260392 0.20619849305 0.2120736402 0.20619849302 0.18495260391 0.15810043348 0.14862150884 -0.14829941062 0.12374089139 0.065842245136 0.014730302363 -0.00044422863498 -6.0296063748e-05 2.8717295789e-05 9.8061132864e-07 -2.4793077602e-06 --2.1953357432e-07 -2.298344052e-06 -3.3590002677e-06 1.9951056171e-05 -7.9247078286e-05 -0.00062145354113 0.011996265031 0.062133442607 0.12441445494 -0.1533703544 0.15609948948 0.16578692209 0.19754263823 0.23242601289 0.25142158499 0.25655779086 0.25142158495 0.23242601288 -0.19754263824 0.16578692203 0.1560994894 0.15337035435 0.12441445492 0.062133442587 0.01199626502 -0.00062145354075 -7.9247077857e-05 -1.9951056125e-05 -3.3590002851e-06 -2.2983440524e-06 -2.2890980033e-06 1.6115385278e-05 -0.00012137926926 -0.00090230995562 0.0074671037911 0.050825673955 -0.11504266885 0.15188603499 0.158704423 0.16873013502 0.20332768881 0.24918694109 0.27897375216 0.29826513594 0.30923151633 -0.2982651359 0.27897375214 0.24918694111 0.20332768881 0.16873013498 0.15870442292 0.15188603491 0.11504266882 0.050825673939 -0.007467103785 -0.0009023099549 -0.00012137926961 1.6115385179e-05 -2.2890980373e-06 2.7169126522e-05 1.3093566065e-05 -0.00084577739058 0.0019627214348 -0.033303613056 0.094730088976 0.13810218283 0.15277011284 0.16606115731 0.20285543822 0.25541485797 0.29444946851 0.32321162728 -0.36768972883 0.39839164441 0.36768972887 0.32321162727 0.29444946854 0.25541485805 0.20285543827 0.16606115728 0.15277011271 -0.13810218274 0.094730088948 0.033303613042 0.0019627214307 -0.00084577739081 1.3093566317e-05 2.7169126414e-05 5.6250009545e-05 -0.00053825048799 --0.0013662634641 0.014888141325 0.066536565957 0.11946036814 0.14052956374 0.15665870354 0.19114603265 0.24339961992 0.2933649001 -0.33307247289 0.37734946613 0.46979117467 0.53823142972 0.46979117469 0.37734946619 0.33307247286 0.29336490011 0.24339962003 -0.19114603273 0.15665870351 0.14052956365 0.11946036808 0.066536565933 0.014888141313 -0.0013662634617 -0.00053825048554 5.6250009734e-05 --0.00030883455101 -0.0022532751779 0.0020955477576 0.034661189992 0.089420398169 0.12797657106 0.14499527312 0.1731021104 0.21601321969 -0.26480199217 0.31772710185 0.37593956314 0.45317837741 0.61145371467 0.72512156558 0.61145371459 0.45317837732 0.37593956297 -0.31772710173 0.26480199223 0.21601321981 0.17310211048 0.14499527311 0.12797657101 0.089420398134 0.034661189975 0.0020955477685 --0.0022532751723 -0.0003088345503 -0.0010459047464 -0.0033936646304 0.0083407874554 0.047423096989 0.095006824844 0.12919644686 0.15187179017 -0.18476863457 0.2257208746 0.27938051965 0.35709045786 0.46088810355 0.60558882637 0.79712751453 0.90563399006 0.79712751458 -0.60558882615 0.46088810339 0.35709045783 0.27938051961 0.22572087458 0.18476863464 0.15187179022 0.12919644681 0.095006824781 -0.047423096964 0.0083407874725 -0.0033936646208 -0.0010459047454 -0.0014942508523 -0.0026852855529 0.012116894889 0.048548801567 0.087785244547 -0.11885987428 0.14491917611 0.18188939531 0.22805831904 0.29091421969 0.38381709838 0.52304887586 0.71714242931 0.90781029362 -0.9920825268 0.90781029371 0.7171424293 0.52304887588 0.38381709845 0.29091421972 0.22805831899 0.18188939533 0.14491917605 -0.11885987418 0.087785244547 0.048548801599 0.012116894889 -0.0026852855711 -0.0014942508495 -0.0010650094958 -0.0023869335306 0.0095922135434 -0.042457813793 0.077227148735 0.10067257113 0.12443677926 0.16737783181 0.22295186668 0.28257000526 0.35752284345 0.46529670487 -0.62044591797 0.81998619833 0.92972486303 0.81998619829 0.62044591799 0.46529670496 0.35752284355 0.28257000541 0.22295186674 -0.16737783174 0.12443677915 0.1006725711 0.077227148793 0.042457813819 0.0095922135174 -0.002386933556 -0.0010650094926 -0.00026826446295 --0.0014048064129 0.0029033373372 0.019176226324 0.039606578314 0.055196245382 0.072899189221 0.10445843546 0.14664395192 0.19038863585 -0.24626782359 0.32276861827 0.42820137833 0.61477128714 0.73820129551 0.6147712871 0.42820137831 0.3227686183 0.24626782365 -0.19038863594 0.14664395195 0.10445843541 0.072899189215 0.055196245417 0.039606578321 0.019176226299 0.0029033373196 -0.0014048064136 --0.0002682644618 1.089441935e-05 -2.6995570508e-05 -0.00015663128311 0.00035806440683 0.0032494164951 0.0091371745241 0.01736067385 0.028315629586 -0.043433848971 0.065120640274 0.1008209669 0.15645645796 0.23362452084 0.35668455134 0.43540366465 0.35668455133 0.23362452084 -0.15645645796 0.1008209669 0.065120640268 0.043433848965 0.028315629584 0.017360673857 0.0091371745288 0.0032494164903 0.00035806440297 --0.00015663128356 -2.6995570199e-05 1.0894419531e-05 1.1118090005e-07 1.7147813053e-06 2.2221618092e-06 -2.118403534e-05 -0.00011336686995 7.5935883517e-05 -0.0010462449368 0.002960153796 0.0060948705085 0.011785546337 0.02314953077 0.044281572369 0.078929541464 0.1285570222 0.15706321435 -0.12855702219 0.078929541459 0.044281572363 0.023149530763 0.011785546334 0.0060948705101 0.0029601537977 0.0010462449354 7.5935882049e-05 --0.0001133668702 -2.1184035043e-05 2.222161815e-06 1.7147813032e-06 1.1118089299e-07 -1.3306321972e-08 5.9753384701e-08 5.8177910005e-07 -4.2938959042e-07 --1.4856220272e-05 -6.3866472688e-05 -0.00016821754641 -0.00024378204701 -0.0001486822892 0.00035160721855 0.0016112811862 0.0049013596203 0.011363645176 -0.022475128814 0.029552677436 0.022475128813 0.011363645174 0.0049013596197 0.0016112811865 0.00035160721917 -0.00014868228872 -0.000243782047 --0.00016821754655 -6.386647268e-05 -1.4856220223e-05 -4.2938951805e-07 5.8177912996e-07 5.9753384364e-08 -1.3306322223e-08 -4.3474055752e-10 -7.846364757e-09 --3.0036392174e-08 2.750015847e-08 4.3381369359e-07 -1.3037873816e-06 -1.4294683136e-05 -4.0396800613e-05 -8.9612557423e-05 -0.00020186530663 -0.00045070422056 --0.00087654226672 -0.0016499344236 -0.0017906688605 -0.0014132296511 -0.00179066886 -0.0016499344235 -0.0008765422664 -0.00045070422038 -0.00020186530659 --8.9612557437e-05 -4.0396800624e-05 -1.4294683135e-05 -1.3037873713e-06 4.3381368938e-07 2.7500153913e-08 -3.0036392549e-08 -7.8463647447e-09 -4.3474054358e-10 --1.0571137358e-10 3.0568982731e-10 1.8350015278e-09 -5.152302957e-09 1.8565646184e-08 5.8316387212e-08 4.416787515e-07 4.0376359398e-07 -4.5558551269e-06 --2.8799339586e-05 -9.3249501289e-05 -0.0002986548983 -0.00068346759891 -0.0009000111332 -0.00089239431234 -0.00090001113319 -0.0006834675987 -0.00029865489826 --9.3249501262e-05 -2.8799339576e-05 -4.5558551239e-06 4.0376359682e-07 4.4167875246e-07 5.8316387073e-08 1.8565646297e-08 -5.152302794e-09 1.8350015095e-09 -3.0568982985e-10 -1.0571137305e-10 -3.0901686383e-12 1.0995988217e-10 2.9916511747e-10 -3.7429803629e-10 -1.0012698707e-09 -1.6930254687e-09 4.4814746589e-08 -1.87777056e-07 3.8390598293e-07 3.5271712782e-07 -2.0130330176e-06 -2.2409638181e-05 -5.7174317986e-05 -6.0407185429e-05 -4.7037902679e-05 -6.0407185434e-05 --5.7174317952e-05 -2.2409638181e-05 -2.0130330192e-06 3.5271712717e-07 3.8390598332e-07 1.8777705629e-07 4.4814746711e-08 -1.6930255059e-09 -1.0012698475e-09 --3.7429803474e-10 2.991651142e-10 1.0995988191e-10 -3.0901687166e-12 1.9429538144e-12 9.5017558877e-13 -4.6187024208e-11 1.0004434723e-11 1.5478263321e-10 -3.9534978759e-10 -9.1922293988e-10 8.7638150681e-11 7.3834656625e-10 2.6931778099e-08 3.0064955087e-07 4.4778156743e-06 1.5458309501e-05 2.0201917417e-05 -1.7896540202e-05 2.0201917417e-05 1.5458309496e-05 4.477815676e-06 3.0064955094e-07 2.6931777929e-08 7.3834645042e-10 8.7638137982e-11 -9.1922293628e-10 -3.9534979091e-10 1.5478263487e-10 1.0004435065e-11 -4.6187023568e-11 9.5017559437e-13 1.9429538145e-12 2.5683381493e-14 -8.9521862687e-13 -2.8281891389e-12 -9.56086689e-12 1.9640240629e-11 -2.4343107914e-11 -2.2010876985e-10 -2.1828979774e-09 -4.9886257363e-09 -5.1111829293e-09 6.8316484655e-08 1.1555040486e-06 -2.3648487706e-06 2.4204349273e-06 2.2813117184e-06 2.4204349264e-06 2.3648487696e-06 1.1555040488e-06 6.83164847e-08 -5.1111829306e-09 -4.9886257437e-09 --2.1828979795e-09 -2.2010876933e-10 -2.4343107308e-11 1.9640240358e-11 9.5608668333e-12 -2.8281890975e-12 -8.9521862884e-13 2.568338165e-14 -1.9165414902e-14 -2.9898775444e-15 9.1830936435e-13 1.1660202174e-12 -6.5153106562e-12 -3.552421117e-11 -4.0366136727e-11 -6.6752488343e-11 2.3734757769e-10 1.3152067407e-10 -6.1348369951e-10 -2.608560286e-08 -1.8556224998e-07 -2.7556131772e-07 -2.3371821337e-07 -2.7556131782e-07 -1.8556224994e-07 -2.6085602905e-08 6.1348369631e-10 -1.3152067483e-10 2.3734757851e-10 -6.6752488434e-11 -4.0366136784e-11 -3.5524211081e-11 -6.5153105954e-12 1.1660201965e-12 9.183093526e-13 2.9898773095e-15 --1.9165414986e-14 5.2591034987e-16 5.0281712711e-15 1.5129303568e-14 -1.8545259939e-13 -8.7897265043e-13 -2.0483950151e-12 3.4184517551e-12 3.8154493663e-11 -8.4459423023e-11 1.0849594403e-10 -8.953141389e-10 -2.8602244358e-08 -4.3773263328e-08 -3.996333268e-08 -4.7679184997e-08 -3.9963332651e-08 -4.3773263309e-08 --2.8602244345e-08 -8.9531413949e-10 1.0849594398e-10 8.4459423095e-11 3.8154493674e-11 3.4184517445e-12 -2.0483950146e-12 -8.7897264125e-13 -1.8545259855e-13 -1.5129303176e-14 5.0281712889e-15 5.2591035175e-16 2.7364766151e-17 -1.4857649155e-16 -8.6881421675e-15 -2.4784275165e-14 4.5092907248e-14 7.4799879735e-13 -1.617798519e-12 2.6592491024e-12 -1.0344406559e-12 1.6427588489e-12 -7.3962915428e-11 -1.0181420227e-09 8.929554103e-10 3.2484384018e-09 2.8314183411e-09 -3.2484384063e-09 8.9295541163e-10 -1.018142021e-09 -7.3962915406e-11 1.6427588452e-12 -1.0344406648e-12 2.6592491066e-12 1.6177985212e-12 7.4799879694e-13 -4.5092907239e-14 -2.4784274903e-14 -8.6881420906e-15 -1.4857649227e-16 2.7364766187e-17 -2.3287758246e-18 -3.208384302e-17 -1.3655415262e-17 2.2497780344e-15 -1.2465766731e-14 6.2094579981e-14 4.3720726975e-14 -3.1246616674e-13 -8.667000527e-13 -3.8164889915e-12 -6.28143904e-12 2.6915800874e-10 5.0594850593e-10 -4.9543019618e-10 5.2333404917e-10 4.9543019611e-10 5.0594850592e-10 2.691580086e-10 -6.2814390386e-12 -3.8164889917e-12 -8.6670005336e-13 -3.1246616687e-13 -4.3720727432e-14 6.2094580229e-14 1.2465766683e-14 2.249778022e-15 -1.3655415274e-17 -3.2083842955e-17 -2.3287758258e-18 +0 0 0 3.8291753584e-13 -5.4260657014e-13 2.4276162362e-11 -6.0452503212e-11 -2.8453459568e-10 2.288985634e-10 +1.1060145906e-09 -1.0397131376e-08 -5.4426166792e-08 -2.7188417808e-07 -9.2321312579e-07 -1.5914399502e-06 6.82737146e-07 2.9539918341e-05 5.592084198e-05 +2.9539918332e-05 6.8273713952e-07 -1.5914399541e-06 -9.2321312777e-07 -2.7188417852e-07 -5.4426166872e-08 -1.0397131367e-08 1.1060145907e-09 2.2889857387e-10 +-2.8453458626e-10 -6.0452499676e-11 2.4276162912e-11 -5.4260661806e-13 3.8291749335e-13 -9.0197615935e-13 2.678605183e-11 -6.8224684414e-11 -3.4590273283e-10 +5.7471503136e-10 6.0974026947e-09 1.0615167703e-08 -5.9485028376e-08 -3.4602320715e-07 -1.1902028938e-06 -2.0909113046e-06 3.9123205096e-05 0.00060057168644 +0.0021910333855 0.0032615336168 0.0021910333858 0.0006005716865 3.9123205068e-05 -2.0909113148e-06 -1.1902028969e-06 -3.4602320764e-07 -5.9485028264e-08 +1.0615167758e-08 6.0974027499e-09 5.747150594e-10 -3.4590271959e-10 -6.8224680656e-11 2.6786052115e-11 -9.0197625737e-13 2.4839730501e-11 -1.1964036961e-10 +-4.1172601663e-10 2.1620333197e-09 1.3579159582e-08 3.2135905998e-08 5.4540181908e-08 -8.5647562632e-08 -2.3623159693e-07 1.4479927461e-05 0.00030519845554 +0.0027988064794 0.0087589541895 0.014653023086 0.016804547755 0.014653023085 0.0087589541893 0.002798806479 0.00030519845539 1.447992744e-05 +-2.3623159894e-07 -8.5647562023e-08 5.4540182302e-08 3.2135906133e-08 1.3579159631e-08 2.1620333464e-09 -4.1172600538e-10 -1.1964036708e-10 2.4839730585e-11 +-1.6805702333e-10 -5.0251330438e-10 4.0110064478e-09 2.7524720884e-08 7.7283595398e-08 1.4013249334e-07 2.673197704e-07 3.087642809e-06 6.5457586717e-05 +0.0010801379144 0.0073477831199 0.020384471244 0.03388240626 0.041338225886 0.043020188856 0.041338225879 0.033882406254 0.020384471241 +0.0073477831186 0.001080137914 6.5457586683e-05 3.0876428092e-06 2.6731977154e-07 1.4013249372e-07 7.728359546e-08 2.7524720909e-08 4.0110064649e-09 +-5.025132975e-10 -1.6805702195e-10 -8.9501359675e-10 3.0584020298e-09 3.8275142245e-08 1.326902885e-07 3.4528376653e-07 9.3705844183e-07 7.03736891e-06 +0.00013351465327 0.0022921841721 0.01358506306 0.036745267112 0.059837002809 0.072981836107 0.078454973925 0.079969839661 0.078454973918 +0.072981836093 0.059837002799 0.036745267108 0.013585063057 0.0022921841713 0.00013351465323 7.0373689113e-06 9.3705844253e-07 3.4528376661e-07 +1.3269028849e-07 3.8275142253e-08 3.0584020363e-09 -8.950135946e-10 -3.1649916663e-09 1.1092048092e-08 1.2076942311e-07 4.3678322717e-07 1.4564538112e-06 +1.0253036269e-05 0.00018308430541 0.0035757402534 0.019284705237 0.050691603518 0.082214712365 0.10086430552 0.11112071836 0.11904048277 +0.12275607731 0.11904048278 0.11112071835 0.1008643055 0.082214712356 0.050691603514 0.019284705234 0.0035757402522 0.00018308430536 +1.0253036268e-05 1.4564538114e-06 4.3678322724e-07 1.2076942312e-07 1.1092048088e-08 -3.1649916697e-09 -1.4912610529e-08 -2.9627350289e-08 1.3606294454e-07 +9.237396958e-07 8.7781611025e-06 0.00018559948384 0.0043345665974 0.023108985302 0.060705280497 0.099421854284 0.1222963213 0.13492965346 +0.14750032884 0.16032892412 0.16626102845 0.16032892413 0.14750032884 0.13492965345 0.12229632128 0.099421854276 0.060705280493 +0.023108985299 0.0043345665961 0.00018559948378 8.7781611012e-06 9.2373969606e-07 1.360629446e-07 -2.9627350328e-08 -1.4912610547e-08 -6.4421827184e-08 +-2.9673487425e-07 -4.2592796659e-07 3.1564750768e-06 0.0001347605752 0.0035681369234 0.023152707685 0.064275369969 0.10828296841 0.13560690954 +0.15133033275 0.16785507725 0.18613618718 0.20264401366 0.20983180167 0.20264401367 0.18613618718 0.16785507725 0.15133033274 +0.13560690953 0.10828296841 0.064275369967 0.023152707681 0.0035681369221 0.00013476057514 3.1564750755e-06 -4.2592796664e-07 -2.967348743e-07 +-6.44218272e-08 -2.3372694501e-07 -1.2917225852e-06 -2.4365099601e-06 6.1039166336e-05 0.0022731127645 0.019319172786 0.061242456041 0.10911796051 +0.1399096262 0.15766288965 0.17664618758 0.20097087703 0.22488454429 0.24563740108 0.25562958373 0.24563740106 0.22488454428 +0.20097087703 0.17664618758 0.15766288964 0.13990962618 0.10911796051 0.061242456037 0.019319172783 0.0022731127637 6.1039166303e-05 +-2.4365099616e-06 -1.2917225852e-06 -2.3372694493e-07 -7.2578556351e-07 -4.0265376494e-06 7.3289009551e-06 0.0010747997163 0.01364251924 0.051259433095 +0.10131896362 0.13807385446 0.15857408661 0.17879900236 0.20738130806 0.23864458399 0.26726430242 0.29679103508 0.31290179819 +0.29679103506 0.26726430241 0.23864458398 0.20738130806 0.17879900236 0.1585740866 0.13807385445 0.10131896361 0.051259433091 +0.013642519237 0.001074799716 7.3289009404e-06 -4.0265376507e-06 -7.2578556346e-07 -1.9711106195e-06 -7.6729036233e-06 0.00029409393531 0.0072511939027 +0.037158880134 0.084756028665 0.12626178627 0.15361539944 0.17549855428 0.20510412427 0.24240215739 0.27956624286 0.31511017475 +0.36569097647 0.39850523409 0.36569097646 0.31511017475 0.27956624285 0.24240215739 0.20510412427 0.17549855428 0.15361539943 +0.12626178625 0.084756028659 0.037158880131 0.0072511939016 0.00029409393516 -7.6729036283e-06 -1.9711106199e-06 -3.5395641863e-06 2.6512358689e-05 +0.0025582171463 0.020558913538 0.062792033258 0.10639224635 0.13836526091 0.16627527878 0.19609163509 0.23352911795 0.27661662758 +0.321833776 0.37336323753 0.4671967598 0.53205826562 0.46719675977 0.37336323752 0.32183377601 0.27661662759 0.23352911795 +0.19609163508 0.16627527877 0.13836526089 0.10639224633 0.062792033253 0.020558913537 0.002558217146 2.6512358676e-05 -3.5395641878e-06 +-3.5157805785e-06 0.00034769721905 0.0081887268581 0.036307345589 0.079501015971 0.11638839425 0.1456376677 0.17751833885 0.21439492593 +0.25708123988 0.30662567591 0.36790156075 0.44607095219 0.60577061139 0.72179947832 0.60577061136 0.44607095217 0.36790156077 +0.30662567594 0.25708123989 0.21439492592 0.17751833885 0.14563766769 0.11638839424 0.079501015964 0.036307345587 0.0081887268586 +0.00034769721917 -3.5157805817e-06 2.7498982148e-07 0.0015278365634 0.014397344973 0.045655022292 0.083848206089 0.1182123011 0.1496643584 +0.18391638994 0.22589135647 0.2798012743 0.35039932857 0.45455354644 0.59919336726 0.79732584988 0.91519596756 0.7973258499 +0.59919336726 0.45455354646 0.35039932859 0.27980127432 0.22589135647 0.18391638993 0.14966435839 0.11821230109 0.083848206081 +0.045655022289 0.014397344974 0.0015278365634 2.7498981413e-07 3.5065288721e-06 0.0026008913984 0.017042817386 0.045899094058 0.079389106435 +0.11167788714 0.14329006811 0.18082523159 0.22851075599 0.29156748603 0.38031606374 0.51646961758 0.71265745985 0.9110956259 +0.99785211133 0.91109562593 0.71265745987 0.5164696176 0.38031606375 0.29156748605 0.22851075601 0.18082523159 0.1432900681 +0.11167788713 0.079389106426 0.045899094057 0.017042817386 0.0026008913977 3.5065288637e-06 2.4862353047e-06 0.0018725083421 0.014364329818 +0.040459920579 0.07054701946 0.098258380247 0.12761522689 0.16670683844 0.21721637736 0.27597103975 0.35082569759 0.46007677284 +0.61254668339 0.81373515489 0.92792558869 0.81373515489 0.61254668339 0.46007677284 0.35082569759 0.27597103977 0.21721637738 +0.16670683845 0.12761522688 0.09825838023 0.070547019456 0.04045992058 0.014364329816 0.0018725083412 2.4862352987e-06 6.3613302196e-07 +0.00048467106752 0.0059093788756 0.019238776879 0.036390998744 0.054015012145 0.075012602135 0.1030612614 0.14075319906 0.18404755781 +0.23776156926 0.31314814688 0.41493181855 0.59901125225 0.72449295133 0.59901125224 0.41493181855 0.31314814688 0.23776156926 +0.18404755782 0.14075319907 0.1030612614 0.075012602126 0.054015012138 0.036390998744 0.01923877688 0.0059093788745 0.00048467106713 +6.3613301906e-07 -2.4049078243e-08 1.7045727285e-06 0.00010622021446 0.0010147834398 0.0038434689199 0.0091578460555 0.017161745788 0.028430314607 +0.043929159962 0.065632625689 0.09912915839 0.15005679746 0.22396396296 0.34573810805 0.42379697535 0.34573810804 0.22396396296 +0.15005679745 0.099129158386 0.065632625687 0.04392915996 0.028430314606 0.017161745788 0.0091578460551 0.0038434689198 0.0010147834396 +0.0001062202144 1.7045727259e-06 -2.4049078203e-08 -2.4796207034e-09 -1.3787523615e-08 4.0458538843e-07 8.5895878435e-06 8.7755838212e-05 0.00052198574953 +0.0017181769438 0.0040522336329 0.0077907723777 0.013917595915 0.025157321182 0.045437766679 0.079331141408 0.13230395871 0.16431309327 +0.13230395871 0.079331141404 0.045437766677 0.02515732118 0.013917595914 0.0077907723773 0.0040522336329 0.0017181769438 0.00052198574951 +8.7755838187e-05 8.5895878412e-06 4.0458538895e-07 -1.3787523622e-08 -2.47962073e-09 -3.0347773289e-10 5.5459220832e-09 1.9331954923e-08 3.9288414333e-08 +4.7163894281e-07 6.3419366547e-06 4.3069328303e-05 0.00017790222306 0.00052923084526 0.0013314705235 0.0031510201462 0.0071612509643 0.015188298081 +0.029040967147 0.037611737121 0.029040967145 0.015188298079 0.0071612509639 0.0031510201462 0.0013314705235 0.00052923084528 0.00017790222309 +4.3069328306e-05 6.3419366547e-06 4.7163894291e-07 3.9288414395e-08 1.9331954977e-08 5.5459220941e-09 -3.0347773469e-10 -1.6122561736e-11 1.3402933334e-10 +9.2172801535e-11 1.8674151014e-09 7.4541228527e-09 3.6633189272e-08 2.811625612e-07 1.8925604064e-06 9.6636208271e-06 4.0333681206e-05 0.00014076719495 +0.00041783508067 0.0010479533189 0.0020858074921 0.0026944692431 0.002085807492 0.0010479533189 0.00041783508064 0.00014076719495 4.0333681209e-05 +9.6636208275e-06 1.8925604064e-06 2.811625612e-07 3.6633189273e-08 7.4541228586e-09 1.8674151048e-09 9.2172802619e-11 1.3402933414e-10 -1.6122561447e-11 +-1.4556280318e-12 -9.670026491e-12 1.132864503e-11 3.1120753286e-10 6.2320984985e-10 1.4166458836e-09 3.0851919003e-09 3.9265636538e-09 3.8640546287e-08 +3.5062150171e-07 1.6550839729e-06 6.1178864286e-06 1.6144679536e-05 2.0553135565e-05 1.8370331825e-05 2.0553135566e-05 1.6144679536e-05 6.1178864279e-06 +1.6550839727e-06 3.5062150167e-07 3.8640546268e-08 3.9265636485e-09 3.0851918992e-09 1.416645882e-09 6.2320984952e-10 3.1120753272e-10 1.1328644977e-11 +-9.6700264931e-12 -1.4556280299e-12 -5.970594255e-15 9.685498113e-13 7.2603566551e-12 2.0195677771e-11 3.9272342068e-11 1.0104490946e-10 -1.2288258897e-10 +-1.3966831326e-09 -2.1155885461e-09 -1.7399848374e-08 -8.7039209307e-08 -1.0761766174e-07 2.4029742247e-08 7.3924249628e-08 2.5667353972e-08 7.3924249632e-08 +2.4029742256e-08 -1.0761766174e-07 -8.7039209305e-08 -1.7399848375e-08 -2.1155885496e-09 -1.3966831347e-09 -1.2288258934e-10 1.010449095e-10 3.9272342066e-11 +2.0195677743e-11 7.2603566406e-12 9.6854980774e-13 -5.970594874e-15 1.477243652e-14 1.4755758972e-13 2.7582866685e-13 7.0002746549e-13 3.5240014763e-12 +-5.0674900679e-12 -1.110811231e-10 -2.7034622388e-10 -9.2455908813e-10 -7.1051943963e-09 -1.3844572224e-08 -1.2007147435e-08 -1.1455873467e-08 -1.8453192372e-08 +-2.3015658071e-08 -1.8453192378e-08 -1.1455873466e-08 -1.2007147434e-08 -1.3844572224e-08 -7.1051943963e-09 -9.2455908852e-10 -2.7034622431e-10 -1.1108112327e-10 +-5.0674900813e-12 3.5240014812e-12 7.0002746702e-13 2.7582866682e-13 1.4755758953e-13 1.4772436465e-14 1.2985641926e-15 2.4513071816e-15 5.5097893956e-15 +1.1460278775e-13 1.7295884364e-14 -3.3331308021e-12 -1.3324164678e-11 -2.0162189352e-11 -9.8460123826e-11 -3.1149962034e-10 1.2308289467e-10 2.4388174855e-10 +-2.0172352314e-09 -3.0948729442e-09 -2.3599131223e-09 -3.0948729449e-09 -2.0172352319e-09 2.4388174859e-10 1.2308289472e-10 -3.1149962031e-10 -9.8460123809e-11 +-2.0162189376e-11 -1.3324164702e-11 -3.3331308087e-12 1.7295884052e-14 1.1460278802e-13 5.5097894795e-15 2.4513072061e-15 1.2985641907e-15 -1.1022715577e-16 +-4.039273068e-16 3.283400312e-15 9.6020811945e-15 -8.056942644e-14 -3.8921316058e-13 -3.1648231742e-13 -1.1184930466e-12 -1.3079717173e-12 5.3832398814e-11 +9.4301497326e-11 8.6862829176e-12 -9.7323962259e-11 -5.8055328701e-11 1.5378320384e-11 -5.805532876e-11 -9.732396231e-11 8.6862829176e-12 9.4301497337e-11 +5.3832398824e-11 -1.307971714e-12 -1.1184930465e-12 -3.164823183e-13 -3.8921316169e-13 -8.0569426681e-14 9.6020811914e-15 3.2834003172e-15 -4.0392730338e-16 +-1.1022715511e-16 3.8510321458e-18 1.0823535585e-16 4.4043751537e-16 -2.2920704875e-15 -1.3007601014e-14 3.301140631e-15 1.7487937991e-14 6.1855367475e-15 +1.9429910825e-12 6.4883314424e-12 8.4706688708e-13 -8.4384916991e-12 -2.8737548028e-12 3.4501692987e-12 3.1721681838e-12 3.4501692985e-12 -2.8737548036e-12 +-8.4384917001e-12 8.4706688732e-13 6.4883314427e-12 1.9429910822e-12 6.185536787e-15 1.7487938046e-14 3.3011406551e-15 -1.300760103e-14 -2.2920704956e-15 +4.404375141e-16 1.0823535582e-16 3.8510321828e-18 1.2816284759e-18 7.2840066082e-18 -6.942700918e-17 -4.4444664242e-16 4.8292049354e-16 2.750483079e-15 +-1.0351561085e-15 1.0677514268e-14 1.7776126089e-13 -2.2964366603e-13 -9.1811219787e-13 -5.330565489e-13 1.8392260712e-13 1.9067353567e-13 -3.9742673656e-15 +1.9067353572e-13 1.8392260711e-13 -5.3305654897e-13 -9.1811219798e-13 -2.2964366616e-13 1.7776126082e-13 1.0677514267e-14 -1.0351561051e-15 2.7504830884e-15 +4.8292049831e-16 -4.4444664273e-16 -6.942700928e-17 7.2840065776e-18 1.2816284735e-18 -4.1574051082e-20 -1.6405541293e-18 -9.0421540488e-18 2.3795557941e-17 +1.923915828e-16 -5.0645298053e-17 -7.1630842696e-16 -4.8732838167e-16 -1.6642227825e-14 -5.0850040346e-14 -3.3050320996e-14 1.2197803408e-14 9.3012432049e-15 +-3.3793880899e-15 -3.2462750313e-15 -3.3793880898e-15 9.3012432055e-15 1.2197803407e-14 -3.3050321001e-14 -5.0850040348e-14 -1.6642227824e-14 -4.8732838345e-16 +-7.1630842855e-16 -5.0645298075e-17 1.9239158342e-16 2.3795558073e-17 -9.0421540393e-18 -1.6405541308e-18 -4.1574051264e-20 diff --git a/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk b/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk index f4efb5c9..9f61e411 100644 --- a/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk +++ b/tests/input/validation_tests/MN_solver/linesource_MN_MB_regularized_reference.vtk @@ -172,24 +172,24 @@ CELL_TYPES 96 CELL_DATA 96 FIELD FieldData 1 radiation%20flux%20density 1 96 double -0.11046737879 0.11046737879 0.11046737879 0.11046737879 13.637619295 0.1104673788 0.11046737879 11.223551678 0.11046737879 -0.11046737879 16.525081829 12.708711518 17.63059118 10.120590102 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 12.544927279 0.1104673788 0.11046737879 10.586595377 0.11046737879 +0.11046737879 16.931619852 11.83485416 17.294799352 9.7425659218 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.1104673788 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.1104673788 0.11046737879 17.582754992 -16.404109051 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.1104673788 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.1104673788 0.11046737879 17.190896458 +16.558005479 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 -0.11046737879 0.11046737879 0.11046737878 0.93749224063 0.96203549935 0.11046737877 0.11046737879 3.0217423313 1.4419902513 -0.79711985228 0.93982624564 0.11046737879 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.11046737879 0.1104673788 +0.11046737879 0.11046737879 0.11046737878 1.3342623197 1.4127050777 0.11046737877 0.11046737879 3.4519360793 2.2314017638 +1.1431732275 1.4432975056 0.11046737879 0.11046737879 0.1104673788 0.1104673788 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737878 0.1104673788 0.1104673788 0.1104673788 0.1104673788 -0.1104673788 0.11046737879 2.5363422795 1.0988490607 0.11046737879 0.1104673788 +0.1104673788 0.11046737879 2.8657703139 1.6461753789 0.11046737879 0.1104673788 POINT_DATA 61 FIELD FieldData 1 radiation%20flux%20density 1 61 double -0.11046737879 0.11046737879 0.11046737879 0.11046737879 17.035634263 0.11046737879 0.11046737879 0.11046737879 0.11046737879 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 16.993830285 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.24830485577 2.0311007219 -0.22490945771 0.1104673788 0.25239539889 2.2693063957 0.11046737879 2.5703216918 0.2486938566 0.11046737879 3.2545176736 -0.11046737879 0.11046737879 0.11046737879 0.11046737879 8.4522490207 9.2180290841 8.9465270198 8.2179500987 0.1104673788 -0.1104673788 0.1104673788 0.1104673788 0.6927223693 0.37677195328 0.30814371516 0.59564235893 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.11046737879 0.1104673788 0.11046737879 0.31443320228 2.0919006009 +0.28258502025 0.1104673788 0.32750699527 2.3294796617 0.11046737879 2.640159261 0.33260573325 0.11046737879 3.199005968 +0.11046737879 0.11046737879 0.11046737879 0.11046737879 8.4016234841 9.0725712446 8.8209835185 8.1818387439 0.1104673788 +0.1104673788 0.1104673788 0.1104673788 0.77876111888 0.53465425579 0.41760897881 0.66152796581 diff --git a/tests/test_cases.cpp b/tests/test_cases.cpp index 20bace8c..37329c85 100644 --- a/tests/test_cases.cpp +++ b/tests/test_cases.cpp @@ -280,7 +280,7 @@ TEST_CASE( "CSD_PN_SOLVER", "[validation_tests]" ) { std::string config_file_name = std::string( TESTS_PATH ) + csd_sn_fileDir + "starmap_validation.cfg"; Config* config = new Config( config_file_name ); - + config->SetForcedConnectivity( true ); SolverBase* solver = SolverBase::Create( config ); solver->Solve(); solver->PrintVolumeOutput(); @@ -299,7 +299,9 @@ TEST_CASE( "CSD_PN_SOLVER", "[validation_tests]" ) { std::string config_file_name = std::string( TESTS_PATH ) + csd_sn_fileDir + "starmap_validation_2nd_order.cfg"; - Config* config = new Config( config_file_name ); + Config* config = new Config( config_file_name ); + config->SetForcedConnectivity( true ); + SolverBase* solver = SolverBase::Create( config ); solver->Solve(); solver->PrintVolumeOutput(); From 521d36650c645ade25d892b98b583176fc33b110 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Fri, 5 Apr 2024 11:28:17 -0400 Subject: [PATCH 116/155] fix screen output test --- tests/input/validation_tests/output/validate_logger_reference | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/input/validation_tests/output/validate_logger_reference b/tests/input/validation_tests/output/validate_logger_reference index 41321e47..6ed27af3 100644 --- a/tests/input/validation_tests/output/validate_logger_reference +++ b/tests/input/validation_tests/output/validate_logger_reference @@ -18,6 +18,6 @@ 2024-03-04 17:18:45.114746 | | Iter | Mass | RMS flux | VTK out | CSV out | 2024-03-04 17:18:45.114749 | --------------------------------------------------------------------------------------- 2024-03-04 17:18:45.130644 | | 0 | 1.445122E-01 | 4.036831E00 | no | yes | -2024-03-04 17:18:45.149408 | | 1 | 1.445122E-01 | 2.060778E00 | yes | yes | +2024-03-04 17:18:45.149408 | | 1 | 1.445122E-01 | 2.060778E00 | no | yes | 2024-02-07 09:35:33.205929 | -------------------------------------------------------------- 2024-02-07 09:35:33.205948 | --------------------------- Solver Finished ---------------------------- From a56feb62f56527db046e434db3f2e6f2ed74e399 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 8 Apr 2024 08:33:46 -0400 Subject: [PATCH 117/155] fixed screen output test - accounting for extra time step to fill up to t_f --- tests/input/validation_tests/output/validate_logger_reference | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/input/validation_tests/output/validate_logger_reference b/tests/input/validation_tests/output/validate_logger_reference index 6ed27af3..508f0fa0 100644 --- a/tests/input/validation_tests/output/validate_logger_reference +++ b/tests/input/validation_tests/output/validate_logger_reference @@ -19,5 +19,6 @@ 2024-03-04 17:18:45.114749 | --------------------------------------------------------------------------------------- 2024-03-04 17:18:45.130644 | | 0 | 1.445122E-01 | 4.036831E00 | no | yes | 2024-03-04 17:18:45.149408 | | 1 | 1.445122E-01 | 2.060778E00 | no | yes | +2024-04-05 15:46:04.700176 | | 2 | 1.445122E-01 | 9.482228E-01 | yes | yes | 2024-02-07 09:35:33.205929 | -------------------------------------------------------------- 2024-02-07 09:35:33.205948 | --------------------------- Solver Finished ---------------------------- From c61900aa46d6ceaeec6f640783e417f82974f793 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 8 Apr 2024 08:52:53 -0400 Subject: [PATCH 118/155] fixes csv logger test case --- .../input/validation_tests/output/validate_logger_csv_reference | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/input/validation_tests/output/validate_logger_csv_reference b/tests/input/validation_tests/output/validate_logger_csv_reference index 5a55ece5..dd53d940 100644 --- a/tests/input/validation_tests/output/validate_logger_csv_reference +++ b/tests/input/validation_tests/output/validate_logger_csv_reference @@ -1,3 +1,3 @@ 2024-03-04 17:18:45.114752 ,Iter,Mass,RMS_flux,VTK_out,CSV_out 2024-03-04 17:18:45.130741 ,0.000000,1.445122E-01,4.036831E+00,0.000000E+00,1.000000E+00 -2024-03-04 17:18:45.149479 ,1.000000,1.445122E-01,2.060778E+00,1.000000E+00,1.000000E+00 +2024-04-08 12:51:40.528143 ,1.000000,1.445122E-01,2.060778E+00,0.000000E+00,1.000000E+00 \ No newline at end of file From e601c55ed05faaf12e4be95ce9362b78aa166382 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 8 Apr 2024 09:21:16 -0400 Subject: [PATCH 119/155] fixed logger output now? --- .../output/validate_logger_csv_reference | 7 +-- .../output/validate_logger_reference | 48 +++++++++---------- 2 files changed, 28 insertions(+), 27 deletions(-) diff --git a/tests/input/validation_tests/output/validate_logger_csv_reference b/tests/input/validation_tests/output/validate_logger_csv_reference index dd53d940..83464ca2 100644 --- a/tests/input/validation_tests/output/validate_logger_csv_reference +++ b/tests/input/validation_tests/output/validate_logger_csv_reference @@ -1,3 +1,4 @@ -2024-03-04 17:18:45.114752 ,Iter,Mass,RMS_flux,VTK_out,CSV_out -2024-03-04 17:18:45.130741 ,0.000000,1.445122E-01,4.036831E+00,0.000000E+00,1.000000E+00 -2024-04-08 12:51:40.528143 ,1.000000,1.445122E-01,2.060778E+00,0.000000E+00,1.000000E+00 \ No newline at end of file +2024-04-08 09:19:48.003397 ,Iter,Mass,RMS_flux,VTK_out,CSV_out +2024-04-08 09:19:48.006116 ,0.000000,1.445122E-01,4.036831E+00,0.000000E+00,1.000000E+00 +2024-04-08 09:19:48.008803 ,1.000000,1.445122E-01,2.060778E+00,0.000000E+00,1.000000E+00 +2024-04-08 09:19:48.011360 ,2.000000,1.445122E-01,9.482228E-01,1.000000E+00,1.000000E+00 diff --git a/tests/input/validation_tests/output/validate_logger_reference b/tests/input/validation_tests/output/validate_logger_reference index 508f0fa0..02f1cfa1 100644 --- a/tests/input/validation_tests/output/validate_logger_reference +++ b/tests/input/validation_tests/output/validate_logger_reference @@ -1,24 +1,24 @@ -2024-02-07 09:35:33.188474 | | Importing mesh. This may take a while for large meshes. -2024-02-07 09:35:33.188904 | | Mesh imported. -2024-02-07 09:35:33.188965 | | Compute cell areas... -2024-02-07 09:35:33.189012 | | Compute cell midpoints... -2024-02-07 09:35:33.189068 | | Compute mesh connectivity... -2024-02-07 09:35:33.189211 | | ...sort cells... -2024-02-07 09:35:33.189254 | | ...connect cells to nodes... -2024-02-07 09:35:33.189427 | | ...determine neighbors of cells... -2024-02-07 09:35:33.194739 | | Save mesh connectivity to file /__w/KiT-RT/KiT-RT/tests/input/mesh_files/linesource.con -2024-02-07 09:35:33.196688 | | Compute boundary... -2024-02-07 09:35:33.197246 | | Smallest characteristic length of a grid cell in this mesh: 0.104859 -2024-02-07 09:35:33.197254 | | Corresponding maximal time-step: 0.073401 -2024-02-07 09:35:33.199058 | ---------------------------- Solver Starts ----------------------------- -2024-02-07 09:35:33.199069 | | The simulation will run for 2 iterations. -2024-02-07 09:35:33.199074 | | The spatial grid contains 96 cells. -2024-02-07 09:35:33.199079 | | The velocity grid contains 86 points. -024-03-04 17:18:45.114744 | --------------------------------------------------------------------------------------- -2024-03-04 17:18:45.114746 | | Iter | Mass | RMS flux | VTK out | CSV out | -2024-03-04 17:18:45.114749 | --------------------------------------------------------------------------------------- -2024-03-04 17:18:45.130644 | | 0 | 1.445122E-01 | 4.036831E00 | no | yes | -2024-03-04 17:18:45.149408 | | 1 | 1.445122E-01 | 2.060778E00 | no | yes | -2024-04-05 15:46:04.700176 | | 2 | 1.445122E-01 | 9.482228E-01 | yes | yes | -2024-02-07 09:35:33.205929 | -------------------------------------------------------------- -2024-02-07 09:35:33.205948 | --------------------------- Solver Finished ---------------------------- +2024-04-08 09:19:47.996177 | | Importing mesh. This may take a while for large meshes. +2024-04-08 09:19:47.996589 | | Mesh imported. +2024-04-08 09:19:47.996656 | | Compute cell areas... +2024-04-08 09:19:47.997087 | | Compute cell midpoints... +2024-04-08 09:19:47.997145 | | Compute mesh connectivity... +2024-04-08 09:19:47.997286 | | ...sort cells... +2024-04-08 09:19:47.997330 | | ...connect cells to nodes... +2024-04-08 09:19:47.997489 | | ...determine neighbors of cells... +2024-04-08 09:19:47.998946 | | Save mesh connectivity to file /home/8v5/Projects/KiT-RT/tests/input/mesh_files/linesource.con +2024-04-08 09:19:48.000973 | | Compute boundary... +2024-04-08 09:19:48.001486 | | Smallest characteristic length of a grid cell in this mesh: 0.104859 +2024-04-08 09:19:48.001495 | | Corresponding maximal time-step: 0.073401 +2024-04-08 09:19:48.003357 | ---------------------------- Solver Starts ----------------------------- +2024-04-08 09:19:48.003368 | | The simulation will run for 2 iterations. +2024-04-08 09:19:48.003374 | | The spatial grid contains 96 cells. +2024-04-08 09:19:48.003380 | | The velocity grid contains 86 points. +2024-04-08 09:19:48.003384 | --------------------------------------------------------------------------------------- +2024-04-08 09:19:48.003388 | | Iter | Mass | RMS flux | VTK out | CSV out | +2024-04-08 09:19:48.003392 | --------------------------------------------------------------------------------------- +2024-04-08 09:19:48.006008 | | 0 | 1.445122E-01 | 4.036831E00 | no | yes | +2024-04-08 09:19:48.008673 | | 1 | 1.445122E-01 | 2.060778E00 | no | yes | +2024-04-08 09:19:48.011253 | | 2 | 1.445122E-01 | 9.482228E-01 | yes | yes | +2024-04-08 09:19:48.012887 | -------------------------------------------------------------- +2024-04-08 09:19:48.012894 | --------------------------- Solver Finished ---------------------------- From 320f36c7a5dbca0bfb037cd14f5ba25cab878230 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 8 Apr 2024 09:44:32 -0400 Subject: [PATCH 120/155] another logger fix --- tests/input/validation_tests/output/validate_logger_reference | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/input/validation_tests/output/validate_logger_reference b/tests/input/validation_tests/output/validate_logger_reference index 02f1cfa1..f71c71f6 100644 --- a/tests/input/validation_tests/output/validate_logger_reference +++ b/tests/input/validation_tests/output/validate_logger_reference @@ -6,7 +6,7 @@ 2024-04-08 09:19:47.997286 | | ...sort cells... 2024-04-08 09:19:47.997330 | | ...connect cells to nodes... 2024-04-08 09:19:47.997489 | | ...determine neighbors of cells... -2024-04-08 09:19:47.998946 | | Save mesh connectivity to file /home/8v5/Projects/KiT-RT/tests/input/mesh_files/linesource.con +2024-04-08 13:39:15.091176 | | Save mesh connectivity to file /__w/KiT-RT/KiT-RT/tests/input/mesh_files/linesource.con 2024-04-08 09:19:48.000973 | | Compute boundary... 2024-04-08 09:19:48.001486 | | Smallest characteristic length of a grid cell in this mesh: 0.104859 2024-04-08 09:19:48.001495 | | Corresponding maximal time-step: 0.073401 From f3cbccee66b947639b449de732f3ba298bc7ca60 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Mon, 8 Apr 2024 14:52:19 -0400 Subject: [PATCH 121/155] added container builder --- tools/singularity/build_container.sh | 1 + 1 file changed, 1 insertion(+) create mode 100644 tools/singularity/build_container.sh diff --git a/tools/singularity/build_container.sh b/tools/singularity/build_container.sh new file mode 100644 index 00000000..699aef11 --- /dev/null +++ b/tools/singularity/build_container.sh @@ -0,0 +1 @@ +singularity build kit_rt.sif kit_rt.def From ec09ef6db9dacb9f45ffee75c70f62f67b91a8f7 Mon Sep 17 00:00:00 2001 From: Steffen Date: Tue, 9 Apr 2024 09:29:16 -0400 Subject: [PATCH 122/155] remove debug output --- src/solvers/snsolver_hpc.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 6c7b2b5a..eabb3f5d 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -1223,7 +1223,6 @@ void SNSolverHPC::SetProbingCellsLineGreen() { } void SNSolverHPC::ComputeQOIsGreenProbingLine() { - std::cout << "ComputeQOIsGreenProbingLine" << std::endl; double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); From b231dae085a20af11599d379e528a7c819d63342 Mon Sep 17 00:00:00 2001 From: Steffen Date: Tue, 9 Apr 2024 10:14:19 -0400 Subject: [PATCH 123/155] rename sy hohlruam cfg --- examples_hpc/sym_hohlraum/sym_hohlraum.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg index 18092af8..71d78b1f 100644 --- a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg +++ b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg @@ -8,13 +8,13 @@ % OUTPUT_DIR = result % Output file -OUTPUT_FILE = sym_hohlraum_v2_point01_ +OUTPUT_FILE = sym_hohlraum % Log directory LOG_DIR = result/logs % Log file -LOG_FILE = sym_hohlraum_v2_point01_ +LOG_FILE = sym_hohlraum % Mesh File -MESH_FILE = mesh/sym_hohlraum_v2_point01.su2 +MESH_FILE = mesh/sym_hohlraum_n20.su2 % % ---- Problem specifications ---- % From 6a1e4dffe2442f981aeecc665e47bc5d4f6cbe92 Mon Sep 17 00:00:00 2001 From: ScSteffen Date: Tue, 9 Apr 2024 10:14:22 -0400 Subject: [PATCH 124/155] prepared for 2nd order in time --- examples_hpc/sym_hohlraum/sym_hohlraum.cfg | 2 +- include/solvers/snsolver_hpc.hpp | 2 + src/solvers/snsolver_hpc.cpp | 53 +++++++++++----------- 3 files changed, 30 insertions(+), 27 deletions(-) diff --git a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg index 18092af8..b4bda8ac 100644 --- a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg +++ b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg @@ -26,7 +26,7 @@ N_SAMPLING_PTS_LINE_GREEN = 100 % % ---- Solver specifications ---- % -HPC_SOLVER = NO +HPC_SOLVER = YES CFL_NUMBER = 0.7 TIME_FINAL = 2 SOLVER = SN_SOLVER diff --git a/include/solvers/snsolver_hpc.hpp b/include/solvers/snsolver_hpc.hpp index 6521265e..9c8637bd 100644 --- a/include/solvers/snsolver_hpc.hpp +++ b/include/solvers/snsolver_hpc.hpp @@ -140,6 +140,8 @@ class SNSolverHPC void FVMUpdate(); + void IterPostprocessing(); + /*! @brief Computes the finite Volume update step for the current iteration @param idx_iter current (peudo) time iteration */ void RKUpdate( std::vector& sol0, std::vector& sol_rk ); diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 6c7b2b5a..13d3a8ce 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -170,8 +170,8 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { _probingCellsHohlraum = { _mesh->GetCellOfKoordinate( -0.4, 0. ), _mesh->GetCellOfKoordinate( 0.4, 0. ), - _mesh->GetCellOfKoordinate( 0., -0.6 ), - _mesh->GetCellOfKoordinate( 0., 0.6 ), + _mesh->GetCellOfKoordinate( 0., -0.5 ), + _mesh->GetCellOfKoordinate( 0., 0.5 ), }; } else { @@ -243,10 +243,12 @@ void SNSolverHPC::Solve() { for( unsigned i = 0; i < _nCells; ++i ) { _sol[i] = 0.5 * ( solRK0[i] + _sol[i] ); // Solution averaging with HEUN } + IterPostprocessing(); } else { ( _spatialOrder == 2 ) ? FluxOrder2() : FluxOrder1(); FVMUpdate(); + IterPostprocessing(); } // --- Wall time measurement @@ -254,7 +256,6 @@ void SNSolverHPC::Solve() { _currTime = std::chrono::duration_cast>( duration ).count(); // --- Runge Kutta Timestep --- - // if( _temporalOrder == 2 ) RKUpdate( solRK0, _sol ); // --- Write Output --- WriteVolumeOutput( iter ); WriteScalarOutput( iter ); @@ -470,24 +471,10 @@ void SNSolverHPC::FluxOrder1() { } void SNSolverHPC::FVMUpdate() { - _mass = 0.0; - _rmsFlux = 0.0; - _curAbsorptionLattice = 0.0; - _curScalarOutflow = 0.0; - _curAbsorptionHohlraumCenter = 0.0; // Green and blue areas of symmetric hohlraum - _curAbsorptionHohlraumVertical = 0.0; // Red areas of symmetric hohlraum - _curAbsorptionHohlraumHorizontal = 0.0; // Black areas of symmetric hohlraum - _varAbsorptionHohlraumGreen = 0.0; - double a_g = 0.0; + _mass = 0.0; + _rmsFlux = 0.0; -#pragma omp parallel for reduction( + : _mass, \ - _rmsFlux, \ - _curAbsorptionLattice, \ - _curScalarOutflow, \ - _curAbsorptionHohlraumCenter, \ - _curAbsorptionHohlraumVertical, \ - _curAbsorptionHohlraumHorizontal, \ - a_g ) reduction( max : _curMaxOrdinateOutflow, _curMaxAbsorptionLattice ) +#pragma omp parallel for reduction( + : _mass, _rmsFlux ) for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { #pragma omp simd @@ -498,9 +485,6 @@ void SNSolverHPC::FVMUpdate() { _dT / _areas[idx_cell] * _flux[Idx2D( idx_cell, idx_sys, _nSys )] + _dT * ( _sigmaS[idx_cell] * _scalarFlux[idx_cell] / ( 4 * M_PI ) + _source[Idx2D( idx_cell, idx_sys, _nSys )] ); } - - // --- Iter Postprocessing --- - double localScalarFlux = 0; #pragma omp simd reduction( + : localScalarFlux ) @@ -508,10 +492,29 @@ void SNSolverHPC::FVMUpdate() { _sol[Idx2D( idx_cell, idx_sys, _nSys )] = std::max( _sol[Idx2D( idx_cell, idx_sys, _nSys )], 0.0 ); localScalarFlux += _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; } - _mass += localScalarFlux * _areas[idx_cell]; _rmsFlux += ( localScalarFlux - _scalarFlux[idx_cell] ) * ( localScalarFlux - _scalarFlux[idx_cell] ); _scalarFlux[idx_cell] = localScalarFlux; // set flux + } +} + +void SNSolverHPC::IterPostprocessing() { + + _curAbsorptionLattice = 0.0; + _curScalarOutflow = 0.0; + _curAbsorptionHohlraumCenter = 0.0; // Green and blue areas of symmetric hohlraum + _curAbsorptionHohlraumVertical = 0.0; // Red areas of symmetric hohlraum + _curAbsorptionHohlraumHorizontal = 0.0; // Black areas of symmetric hohlraum + _varAbsorptionHohlraumGreen = 0.0; + double a_g = 0.0; + +#pragma omp parallel for reduction( + : _curAbsorptionLattice, \ + _curScalarOutflow, \ + _curAbsorptionHohlraumCenter, \ + _curAbsorptionHohlraumVertical, \ + _curAbsorptionHohlraumHorizontal, \ + a_g ) reduction( max : _curMaxOrdinateOutflow, _curMaxAbsorptionLattice ) + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { if( _settings->GetProblemName() == PROBLEM_Lattice || _settings->GetProblemName() == PROBLEM_HalfLattice ) { if( IsAbsorptionLattice( _cellMidPoints[Idx2D( idx_cell, 0, _nDim )], _cellMidPoints[Idx2D( idx_cell, 1, _nDim )] ) ) { @@ -623,7 +626,6 @@ void SNSolverHPC::FVMUpdate() { _totalAbsorptionHohlraumVertical += _curAbsorptionHohlraumVertical * _dT; _totalAbsorptionHohlraumHorizontal += _curAbsorptionHohlraumHorizontal * _dT; } - bool SNSolverHPC::IsAbsorptionLattice( double x, double y ) const { // Check whether pos is inside absorbing squares double xy_corrector = -3.5; @@ -1223,7 +1225,6 @@ void SNSolverHPC::SetProbingCellsLineGreen() { } void SNSolverHPC::ComputeQOIsGreenProbingLine() { - std::cout << "ComputeQOIsGreenProbingLine" << std::endl; double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); From cc090c2947a9bbcbca128c201774b5ac0d0892b5 Mon Sep 17 00:00:00 2001 From: Steffen Date: Tue, 9 Apr 2024 12:24:17 -0400 Subject: [PATCH 125/155] updated hohlraum qois --- examples_hpc/sym_hohlraum/sym_hohlraum.cfg | 6 +- src/common/mesh.cpp | 1 + src/solvers/snsolver_hpc.cpp | 68 +++++++++++----------- 3 files changed, 38 insertions(+), 37 deletions(-) diff --git a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg index 63afbadf..0ba5ff55 100644 --- a/examples_hpc/sym_hohlraum/sym_hohlraum.cfg +++ b/examples_hpc/sym_hohlraum/sym_hohlraum.cfg @@ -27,11 +27,11 @@ N_SAMPLING_PTS_LINE_GREEN = 100 % ---- Solver specifications ---- % HPC_SOLVER = YES -CFL_NUMBER = 0.7 -TIME_FINAL = 2 +CFL_NUMBER = 0.5 +TIME_FINAL = 1 SOLVER = SN_SOLVER RECONS_ORDER = 2 -TIME_INTEGRATION_ORDER = 1 +TIME_INTEGRATION_ORDER = 2 % % ---- Boundary Conditions ---- % diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 7cf3f8e8..eba8069d 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -418,6 +418,7 @@ void Mesh::ComputeLimiter1D( unsigned nSys, const VectorVector& sol, VectorVecto void Mesh::ComputeBounds() { _bounds = std::vector( _dim, std::make_pair( std::numeric_limits::infinity(), -std::numeric_limits::infinity() ) ); +#pragma omp parallel for for( unsigned i = 0; i < _numNodes; ++i ) { for( unsigned j = 0; j < _dim; ++j ) { if( _nodes[i][j] < _bounds[j].first ) _bounds[j].first = _nodes[i][j]; diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 13d3a8ce..420e9277 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -174,11 +174,19 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { _mesh->GetCellOfKoordinate( 0., 0.5 ), }; } + else if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { + _probingCellsHohlraum = { + _mesh->GetCellOfKoordinate( 0.4, 0. ), + _mesh->GetCellOfKoordinate( 0., 0.5 ), + }; + } else { _probingCellsHohlraum = std::vector( 4, 0. ); } - - _probingMoments = std::vector( 12, 0. ); + unsigned n_probes = 4; + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) n_probes = 4; + if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; + _probingMoments = std::vector( n_probes * 3, 0. ); // Red _redLeftTop = 0.4; @@ -198,8 +206,6 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; - std::cout << "Solver initialized!" << std::endl; - _nProbingCellsLineGreen = _settings->GetNumProbingCellsLineHohlraum(); if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { SetProbingCellsLineGreen(); @@ -599,19 +605,21 @@ void SNSolverHPC::IterPostprocessing() { ( a_g - _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) * _areas[idx_cell]; } } -// Probes value moments + // Probes value moments + unsigned n_probes = 4; + if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; #pragma omp parallel for - for( unsigned idx_probe = 0; idx_probe < 4; idx_probe++ ) { // Loop over probing cells + for( unsigned idx_probe = 0; idx_probe < n_probes; idx_probe++ ) { // Loop over probing cells _probingMoments[Idx2D( idx_probe, 0, 3 )] = _scalarFlux[_probingCellsHohlraum[idx_probe]]; _probingMoments[Idx2D( idx_probe, 1, 3 )] = 0.0; _probingMoments[Idx2D( idx_probe, 2, 3 )] = 0.0; - // for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { - // _probingMoments[Idx2D( idx_probe, 1, 3 )] += - // _quadPts[Idx2D( idx_sys, 0, _nDim )] * _sol[Idx2D( _probingCellsHohlraum[idx_probe], idx_sys, _nSys )] * _quadWeights[idx_sys]; - // _probingMoments[Idx2D( idx_probe, 2, 3 )] += - // _quadPts[Idx2D( idx_sys, 1, _nDim )] * _sol[Idx2D( _probingCellsHohlraum[idx_probe], idx_sys, _nSys )] * _quadWeights[idx_sys]; - // } + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + _probingMoments[Idx2D( idx_probe, 1, 3 )] += + _quadPts[Idx2D( idx_sys, 0, _nDim )] * _sol[Idx2D( _probingCellsHohlraum[idx_probe], idx_sys, _nSys )] * _quadWeights[idx_sys]; + _probingMoments[Idx2D( idx_probe, 2, 3 )] += + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _sol[Idx2D( _probingCellsHohlraum[idx_probe], idx_sys, _nSys )] * _quadWeights[idx_sys]; + } } // probe values green @@ -815,7 +823,7 @@ void SNSolverHPC::WriteScalarOutput( unsigned idx_iter ) { if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; for( unsigned i = 0; i < n_probes; i++ ) { for( unsigned j = 0; j < 3; j++ ) { - _screenOutputFields[idx_field] = _probingMoments[Idx2D( i, j, 3 )]; + _historyOutputFields[idx_field] = _probingMoments[Idx2D( i, j, 3 )]; idx_field++; } } @@ -1165,38 +1173,30 @@ void SNSolverHPC::SetGhostCells() { } } } - else if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { - std::vector left_inflow( _nSys, 0.0 ); - std::vector right_inflow( _nSys, 0.0 ); - std::vector vertical_flow( _nSys, 0.0 ); - - for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { - if( _quadPts[Idx2D( idx_q, 0, _nDim )] > 0.0 ) left_inflow[idx_q] = 1.0; - if( _quadPts[Idx2D( idx_q, 1, _nDim )] < 0.0 ) right_inflow[idx_q] = 1.0; - } for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - _ghostCellsReflectingY[idx_cell] = false; - if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { - if( _cellMidPoints[Idx2D( idx_cell, 1, _nDim )] < -0.6 ) - _ghostCells[idx_cell] = vertical_flow; - else if( _cellMidPoints[Idx2D( idx_cell, 1, _nDim )] > 0.6 ) - _ghostCells[idx_cell] = vertical_flow; - else if( _cellMidPoints[Idx2D( idx_cell, 0, _nDim )] < -0.6 ) - _ghostCells[idx_cell] = left_inflow; - else if( _cellMidPoints[Idx2D( idx_cell, 0, _nDim )] > 0.6 ) - _ghostCells[idx_cell] = right_inflow; + _ghostCellsReflectingY[idx_cell] = false; + _ghostCells[idx_cell] = std::vector( _nSys, 0.0 ); + + if( _cellMidPoints[Idx2D( idx_cell, 0, _nDim )] < -0.64 ) { + for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { + if( _quadPts[Idx2D( idx_q, 0, _nDim )] > 0.0 ) _ghostCells[idx_cell][idx_q] = 1.0; + } + } + else if( _cellMidPoints[Idx2D( idx_cell, 0, _nDim )] > 0.64 ) { + for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { + if( _quadPts[Idx2D( idx_q, 0, _nDim )] < 0.0 ) _ghostCells[idx_cell][idx_q] = 1.0; + } + } } } } } void SNSolverHPC::SetProbingCellsLineGreen() { - std::cout << "SetProbingCellsLineGreen" << std::endl; - double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); From 6883136464ee1071588f567bf5ae06e5597363be Mon Sep 17 00:00:00 2001 From: Steffen Date: Tue, 9 Apr 2024 12:27:15 -0400 Subject: [PATCH 126/155] added singularity install script kitrt --- tools/singularity/install_kitrt_singularity.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 tools/singularity/install_kitrt_singularity.sh diff --git a/tools/singularity/install_kitrt_singularity.sh b/tools/singularity/install_kitrt_singularity.sh new file mode 100755 index 00000000..6c8299d1 --- /dev/null +++ b/tools/singularity/install_kitrt_singularity.sh @@ -0,0 +1,4 @@ +cd ../../ +cd build_singularity +cmake ../ +make -j \ No newline at end of file From 2fed9ac7bcc8b07f244f595b643c7aa24f8d0c2c Mon Sep 17 00:00:00 2001 From: Steffen Date: Tue, 9 Apr 2024 13:24:10 -0400 Subject: [PATCH 127/155] changed flux limiter to venkatakrishnan --- src/solvers/snsolver_hpc.cpp | 80 ++++++++++++++++++++---------------- 1 file changed, 45 insertions(+), 35 deletions(-) diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 420e9277..19abb1bb 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -95,7 +95,7 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { for( unsigned idx_dim = 0; idx_dim < _nDim; idx_dim++ ) { _quadPts[Idx2D( idx_sys, idx_dim, _nDim )] = quadPoints[idx_sys][idx_dim]; } - _quadWeights[idx_sys] = 4.0 * quadWeights[idx_sys]; // Rescaling of quadweights TODO: Check if this needs general refactoring + _quadWeights[idx_sys] = 2.0 * quadWeights[idx_sys]; // Rescaling of quadweights TODO: Check if this needs general refactoring for( unsigned idx_sys2 = 0; idx_sys2 < _nSys; idx_sys2++ ) { _scatteringKernel[Idx2D( idx_sys, idx_sys2, _nSys )] = scatteringKernel( idx_sys, idx_sys2 ); @@ -302,35 +302,49 @@ void SNSolverHPC::FluxOrder2() { double const eps = 1e-10; #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { // Second order information for Flux - unsigned idx_nbr_glob = 0; + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { // Compute Slopes if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NONE ) { // skip ghost cells - - // #pragma omp simd +#pragma omp simd for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { - double r; - _limiter[Idx2D( idx_cell, idx_sys, _nSys )] = 1.; // limiter should be zero at boundary + + _limiter[Idx2D( idx_cell, idx_sys, _nSys )] = 1.; // limiter should be zero at boundary + _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] = 0.; _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] = 0.; - double minSol = _sol[Idx2D( idx_cell, idx_sys, _nSys )]; - double maxSol = minSol; double solInterfaceAvg = 0.0; - double gaussPoint = 0; for( unsigned idx_nbr = 0; idx_nbr < _nNbr; ++idx_nbr ) { // Compute slopes and mininum and maximum - idx_nbr_glob = _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )]; + unsigned idx_nbr_glob = _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )]; // Slopes solInterfaceAvg = 0.5 * ( _sol[Idx2D( idx_cell, idx_sys, _nSys )] + _sol[Idx2D( idx_nbr_glob, idx_sys, _nSys )] ); _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] += solInterfaceAvg * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )]; _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] += solInterfaceAvg * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; + } + + _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] /= _areas[idx_cell]; + _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] /= _areas[idx_cell]; + } + } + } +#pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { // Compute Limiter + if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NONE ) { // skip ghost cells +#pragma omp simd + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + + double gaussPoint = 0; + double r = 0; + double minSol = _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + double maxSol = _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + + for( unsigned idx_nbr = 0; idx_nbr < _nNbr; ++idx_nbr ) { // Compute slopes and mininum and maximum + unsigned idx_nbr_glob = _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )]; // Compute ptswise max and minimum solultion values of current and neighbor cells maxSol = std::max( _sol[Idx2D( idx_nbr_glob, idx_sys, _nSys )], maxSol ); minSol = std::min( _sol[Idx2D( idx_nbr_glob, idx_sys, _nSys )], minSol ); } - _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] /= _areas[idx_cell]; - _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] /= _areas[idx_cell]; for( unsigned idx_nbr = 0; idx_nbr < _nNbr; idx_nbr++ ) { // Compute limiter, see https://arxiv.org/pdf/1710.07187.pdf @@ -340,29 +354,26 @@ void SNSolverHPC::FluxOrder2() { _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] * _relativeCellVertices[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; // BARTH-JESPERSEN LIMITER - r = ( gaussPoint > 0 ) ? std::min( ( maxSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )] ) / ( gaussPoint + eps ), 1.0 ) - : std::min( ( minSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )] ) / ( gaussPoint - eps ), 1.0 ); + // r = ( gaussPoint > 0 ) ? std::min( ( maxSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )] ) / ( gaussPoint + eps ), 1.0 ) + // : std::min( ( minSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )] ) / ( gaussPoint - eps ), 1.0 ); + // + // r = ( std::abs( gaussPoint ) < eps ) ? 1 : r; + //_limiter[Idx2D( idx_cell, idx_sys, _nSys )] = std::min( r, _limiter[Idx2D( idx_cell, idx_sys, _nSys )] ); + + // VENKATAKRISHNAN LIMITER + double delta1Max = maxSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + double delta1Min = minSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + + r = ( gaussPoint > 0 ) ? ( ( delta1Max * delta1Max + _areas[idx_cell] ) * gaussPoint + 2 * gaussPoint * gaussPoint * delta1Max ) / + ( delta1Max * delta1Max + 2 * gaussPoint * gaussPoint + delta1Max * gaussPoint + _areas[idx_cell] ) / + ( gaussPoint + eps ) + : ( ( delta1Min * delta1Min + _areas[idx_cell] ) * gaussPoint + 2 * gaussPoint * gaussPoint * delta1Min ) / + ( delta1Min * delta1Min + 2 * gaussPoint * gaussPoint + delta1Min * gaussPoint + _areas[idx_cell] ) / + ( gaussPoint - eps ); r = ( std::abs( gaussPoint ) < eps ) ? 1 : r; _limiter[Idx2D( idx_cell, idx_sys, _nSys )] = std::min( r, _limiter[Idx2D( idx_cell, idx_sys, _nSys )] ); - - // VENKATAKRISHNAN LIMITER - // double delta1Max = maxSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )]; - // double delta1Min = minSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )]; - // - // r = ( gaussPoint > 0 ) ? ( ( delta1Max * delta1Max + _areas[idx_cell] ) * gaussPoint + 2 * gaussPoint * gaussPoint * delta1Max - // ) / - // ( delta1Max * delta1Max + 2 * gaussPoint * gaussPoint + delta1Max * gaussPoint + _areas[idx_cell] ) - // / ( gaussPoint + eps ) - // : ( ( delta1Min * delta1Min + _areas[idx_cell] ) * gaussPoint + 2 * gaussPoint * gaussPoint * delta1Min ) - // / - // ( delta1Min * delta1Min + 2 * gaussPoint * gaussPoint + delta1Min * gaussPoint + _areas[idx_cell] ) - // / ( gaussPoint - eps ); - // - // r = ( std::abs( gaussPoint ) < eps ) ? 1 : r; - // - //_limiter[Idx2D( idx_cell, idx_sys, _nSys )] = std::min( r, _limiter[Idx2D( idx_cell, idx_sys, _nSys )] ); } } } @@ -377,8 +388,7 @@ void SNSolverHPC::FluxOrder2() { } #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { // Compute Flux #pragma omp simd for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { _flux[Idx2D( idx_cell, idx_sys, _nSys )] = 0.; @@ -489,7 +499,7 @@ void SNSolverHPC::FVMUpdate() { _sol[Idx2D( idx_cell, idx_sys, _nSys )] = ( 1 - _dT * _sigmaT[idx_cell] ) * _sol[Idx2D( idx_cell, idx_sys, _nSys )] - _dT / _areas[idx_cell] * _flux[Idx2D( idx_cell, idx_sys, _nSys )] + - _dT * ( _sigmaS[idx_cell] * _scalarFlux[idx_cell] / ( 4 * M_PI ) + _source[Idx2D( idx_cell, idx_sys, _nSys )] ); + _dT * ( _sigmaS[idx_cell] * _scalarFlux[idx_cell] / ( 2 * M_PI ) + _source[Idx2D( idx_cell, idx_sys, _nSys )] ); } double localScalarFlux = 0; From c5ea287fb32cf2bf231bd3f8c6992cc835a0930a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Wed, 10 Apr 2024 11:42:54 -0400 Subject: [PATCH 128/155] quarter hohlraum now works --- include/solvers/snsolver_hpc.hpp | 2 + src/problems/halflattice.cpp | 2 +- src/problems/lattice.cpp | 2 +- src/problems/quarterhohlraum.cpp | 4 +- src/problems/symmetrichohlraum.cpp | 12 +- src/solvers/snsolver_hpc.cpp | 329 ++++++++++++++++++++--------- 6 files changed, 246 insertions(+), 105 deletions(-) diff --git a/include/solvers/snsolver_hpc.hpp b/include/solvers/snsolver_hpc.hpp index 9c8637bd..8b39a71d 100644 --- a/include/solvers/snsolver_hpc.hpp +++ b/include/solvers/snsolver_hpc.hpp @@ -49,7 +49,9 @@ class SNSolverHPC std::vector _relativeCellVertices; /*!< @brief dim _nCells * _nNbr * _nDim */ std::map _ghostCellsReflectingY; /*!< map that indicates if a ghostcell has a fixed value or is a mirroring boundary */ + std::map _ghostCellsReflectingX; /*!< map that indicates if a ghostcell has a fixed value or is a mirroring boundary */ std::vector _quadratureYReflection; /*!< map that gives a Reflection against the y axis for the velocity ordinates */ + std::vector _quadratureXReflection; /*!< map that gives a Reflection against the y axis for the velocity ordinates */ unsigned _temporalOrder; /*!< @brief temporal order (current: 1 & 2) */ unsigned _spatialOrder; /*!< @brief spatial order (current: 1 & 2) */ diff --git a/src/problems/halflattice.cpp b/src/problems/halflattice.cpp index ba994093..7ce48361 100644 --- a/src/problems/halflattice.cpp +++ b/src/problems/halflattice.cpp @@ -71,7 +71,7 @@ std::vector HalfLattice_SN::GetExternalSource( const Vector& /*ene } VectorVector HalfLattice_SN::SetupIC() { - VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-15 ) ); + VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 0.0 ) ); return psi; } diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index 4c258c5b..e7745cc9 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -71,7 +71,7 @@ std::vector Lattice_SN::GetExternalSource( const Vector& /*energie } VectorVector Lattice_SN::SetupIC() { - VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-15 ) ); + VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 0.0 ) ); return psi; } diff --git a/src/problems/quarterhohlraum.cpp b/src/problems/quarterhohlraum.cpp index d38f9a9d..cc1c5657 100644 --- a/src/problems/quarterhohlraum.cpp +++ b/src/problems/quarterhohlraum.cpp @@ -31,7 +31,7 @@ QuarterHohlraum::QuarterHohlraum( Config* settings, Mesh* mesh, QuadratureBase* _varAbsorptionHohlraumGreen = 0.0; _probingCells = { _mesh->GetCellOfKoordinate( 0.4, 0. ), - _mesh->GetCellOfKoordinate( 0., 0.6 ), + _mesh->GetCellOfKoordinate( 0., 0.5 ), }; _probingMoments = VectorVector( 2, Vector( 3, 0.0 ) ); _nProbingCellsLineGreen = _settings->GetNumProbingCellsLineHohlraum(); @@ -97,7 +97,7 @@ std::vector QuarterHohlraum::GetExternalSource( const Vector& /* e } VectorVector QuarterHohlraum::SetupIC() { - VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-10 ) ); + VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 0.0 ) ); VectorVector cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 5b50c219..3511d950 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -47,8 +47,8 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _probingCells = { _mesh->GetCellOfKoordinate( -0.4, 0. ), _mesh->GetCellOfKoordinate( 0.4, 0. ), - _mesh->GetCellOfKoordinate( 0., -0.6 ), - _mesh->GetCellOfKoordinate( 0., 0.6 ), + _mesh->GetCellOfKoordinate( 0., -0.5 ), + _mesh->GetCellOfKoordinate( 0., 0.5 ), }; _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); _nProbingCellsLineGreen = _settings->GetNumProbingCellsLineHohlraum(); @@ -77,7 +77,11 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _sigmaS[idx_cell] = 90.0; _sigmaT[idx_cell] = 100.0; } - // green area 2 (upper boundary) + _cornerUpperLeftGreen = { 0., 0.4 - _thicknessGreen / 2.0 }; + _cornerLowerLeftGreen = { 0., +_thicknessGreen / 2.0 }; + _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; + _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, 0. + _thicknessGreen / 2.0 }; + if( x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35 ) { _sigmaS[idx_cell] = 90.0; _sigmaT[idx_cell] = 100.0; @@ -114,7 +118,7 @@ std::vector SymmetricHohlraum::GetExternalSource( const Vector& /* } VectorVector SymmetricHohlraum::SetupIC() { - VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 1e-10 ) ); + VectorVector psi( _mesh->GetNumCells(), Vector( _settings->GetNQuadPoints(), 0.0 ) ); VectorVector cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 19abb1bb..e3c49579 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -54,6 +54,7 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { _quadWeights = std::vector( _nSys ); _scatteringKernel = std::vector( _nSys * _nSys ); _quadratureYReflection = std::vector( _nSys ); + _quadratureXReflection = std::vector( _nSys ); // Solution _sol = std::vector( _nCells * _nSys ); @@ -91,6 +92,8 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { ScatteringKernel* k = ScatteringKernel::CreateScatteringKernel( settings->GetKernelName(), quad ); auto scatteringKernel = k->GetScatteringKernel(); + +#pragma omp parallel for for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { for( unsigned idx_dim = 0; idx_dim < _nDim; idx_dim++ ) { _quadPts[Idx2D( idx_sys, idx_dim, _nDim )] = quadPoints[idx_sys][idx_dim]; @@ -102,7 +105,7 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { } } - // #pragma omp parallel for +#pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { _cellBoundaryTypes[idx_cell] = boundaryTypes[idx_cell]; @@ -137,7 +140,7 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { _mass += _scalarFlux[idx_cell] * _areas[idx_cell]; } - SetGhostCells(); // ONLY FOR LATTICE AND HALF LATTICE + SetGhostCells(); PrepareScreenOutput(); // Screen Output PrepareHistoryOutput(); // History Output @@ -150,69 +153,79 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { _rmsFlux = 0; // Lattice - _curAbsorptionLattice = 0; - _totalAbsorptionLattice = 0; - _curMaxAbsorptionLattice = 0; - _curScalarOutflow = 0; - _totalScalarOutflow = 0; - _curMaxOrdinateOutflow = 0; - - // Hohlraum - _totalAbsorptionHohlraumCenter = 0; - _totalAbsorptionHohlraumVertical = 0; - _totalAbsorptionHohlraumHorizontal = 0; - _curAbsorptionHohlraumCenter = 0; - _curAbsorptionHohlraumVertical = 0; - _curAbsorptionHohlraumHorizontal = 0; - _varAbsorptionHohlraumGreen = 0; - - if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { - _probingCellsHohlraum = { - _mesh->GetCellOfKoordinate( -0.4, 0. ), - _mesh->GetCellOfKoordinate( 0.4, 0. ), - _mesh->GetCellOfKoordinate( 0., -0.5 ), - _mesh->GetCellOfKoordinate( 0., 0.5 ), - }; - } - else if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { - _probingCellsHohlraum = { - _mesh->GetCellOfKoordinate( 0.4, 0. ), - _mesh->GetCellOfKoordinate( 0., 0.5 ), - }; - } - else { - _probingCellsHohlraum = std::vector( 4, 0. ); - } - unsigned n_probes = 4; - if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) n_probes = 4; - if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; - _probingMoments = std::vector( n_probes * 3, 0. ); - - // Red - _redLeftTop = 0.4; - _redLeftBottom = -0.4; - _redRightTop = 0.4; - _redRightBottom = -0.4; - _thicknessRedLeft = 0.05; - _thicknessRedRight = 0.05; - // Green - _widthGreen = 0.4; - _heightGreen = 0.8; - _thicknessGreen = 0.05; - _centerGreen = { 0.0, 0.0 }; - - _cornerUpperLeftGreen = { -0.2 + _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; - _cornerLowerLeftGreen = { -0.2 + _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; - _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; - _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; - - _nProbingCellsLineGreen = _settings->GetNumProbingCellsLineHohlraum(); - if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { - SetProbingCellsLineGreen(); + { + _curAbsorptionLattice = 0; + _totalAbsorptionLattice = 0; + _curMaxAbsorptionLattice = 0; + _curScalarOutflow = 0; + _totalScalarOutflow = 0; + _curMaxOrdinateOutflow = 0; } + // Hohlraum + { + _totalAbsorptionHohlraumCenter = 0; + _totalAbsorptionHohlraumVertical = 0; + _totalAbsorptionHohlraumHorizontal = 0; + _curAbsorptionHohlraumCenter = 0; + _curAbsorptionHohlraumVertical = 0; + _curAbsorptionHohlraumHorizontal = 0; + _varAbsorptionHohlraumGreen = 0; + + unsigned n_probes = 4; + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) n_probes = 4; + if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; - _absorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); - _varAbsorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); + _probingCellsHohlraum = std::vector( n_probes, 0. ); + _probingMoments = std::vector( n_probes * 3, 0. ); + + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + _probingCellsHohlraum = { + _mesh->GetCellOfKoordinate( -0.4, 0. ), + _mesh->GetCellOfKoordinate( 0.4, 0. ), + _mesh->GetCellOfKoordinate( 0., -0.5 ), + _mesh->GetCellOfKoordinate( 0., 0.5 ), + }; + } + else if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { + _probingCellsHohlraum = { + _mesh->GetCellOfKoordinate( 0.4, 0. ), + _mesh->GetCellOfKoordinate( 0., 0.5 ), + }; + } + + // Red + _redLeftTop = 0.4; + _redLeftBottom = -0.4; + _redRightTop = 0.4; + _redRightBottom = -0.4; + _thicknessRedLeft = 0.05; + _thicknessRedRight = 0.05; + // Green + _widthGreen = 0.4; + _heightGreen = 0.8; + _thicknessGreen = 0.05; + _centerGreen = { 0.0, 0.0 }; + + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + _cornerUpperLeftGreen = { -0.2 + _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; + _cornerLowerLeftGreen = { -0.2 + _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; + _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; + _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; + } + else { + _cornerUpperLeftGreen = { 0., 0.4 - _thicknessGreen / 2.0 }; + _cornerLowerLeftGreen = { 0., +_thicknessGreen / 2.0 }; + _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; + _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, 0. + _thicknessGreen / 2.0 }; + } + + _nProbingCellsLineGreen = _settings->GetNumProbingCellsLineHohlraum(); + + SetProbingCellsLineGreen(); // ONLY FOR HOHLRAUM + + _absorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); + _varAbsorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); + } } SNSolverHPC::~SNSolverHPC() { @@ -406,8 +419,10 @@ void SNSolverHPC::FluxOrder2() { } else { double ghostCellValue = ( _ghostCellsReflectingY[idx_cell] ) - ? 0.0 * _sol[Idx2D( idx_cell, _quadratureYReflection[idx_sys], _nSys )] // Relecting boundary - : _ghostCells[idx_cell][idx_sys]; // fixed boundary + ? _sol[Idx2D( idx_cell, _quadratureYReflection[idx_sys], _nSys )] // Relecting boundary Y + : ( _ghostCellsReflectingX[idx_cell] ) + ? _sol[Idx2D( idx_cell, _quadratureXReflection[idx_sys], _nSys )] // Relecting boundary X + : _ghostCells[idx_cell][idx_sys]; // fixed boundary _flux[Idx2D( idx_cell, idx_sys, _nSys )] += localInner * ghostCellValue; } } @@ -464,7 +479,9 @@ void SNSolverHPC::FluxOrder1() { } else { double ghostCellValue = ( _ghostCellsReflectingY[idx_cell] ) - ? _sol[Idx2D( idx_cell, _quadratureYReflection[idx_sys], _nSys )] // Relecting boundary + ? _sol[Idx2D( idx_cell, _quadratureYReflection[idx_sys], _nSys )] // Relecting boundary Y + : ( _ghostCellsReflectingX[idx_cell] ) + ? _sol[Idx2D( idx_cell, _quadratureXReflection[idx_sys], _nSys )] // Relecting boundary X : _ghostCells[idx_cell][idx_sys]; // fixed boundary _flux[Idx2D( idx_cell, idx_sys, _nSys )] += localInner * ghostCellValue; } @@ -567,7 +584,7 @@ void SNSolverHPC::IterPostprocessing() { } // Outflow - if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN && !_ghostCellsReflectingY[idx_cell] ) { + if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN && !_ghostCellsReflectingY[idx_cell] && !_ghostCellsReflectingX[idx_cell] ) { // Iterate over face cell faces double currOrdinatewiseOutflow = 0.0; @@ -1123,11 +1140,12 @@ void SNSolverHPC::PrepareVolumeOutput() { void SNSolverHPC::SetGhostCells() { if( _settings->GetProblemName() == PROBLEM_Lattice ) { std::vector void_flow( _nSys, 0.0 ); - +#pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { _ghostCells[idx_cell] = void_flow; _ghostCellsReflectingY[idx_cell] = false; + _ghostCellsReflectingX[idx_cell] = false; } } } @@ -1160,23 +1178,24 @@ void SNSolverHPC::SetGhostCells() { auto nodes = _mesh->GetNodes(); auto cellNodes = _mesh->GetCells(); +#pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { if( _cellBoundaryTypes[idx_cell] != BOUNDARY_TYPE::NONE ) { - _ghostCellsReflectingY[idx_cell] = false; + _ghostCellsReflectingX[idx_cell] = false; for( unsigned idx_node = 0; idx_node < _nNbr; idx_node++ ) { // Check if corner node is in this cell if( abs( nodes[cellNodes[idx_cell][idx_node]][1] ) < -3.5 + tol || abs( nodes[cellNodes[idx_cell][idx_node]][1] ) > 3.5 - tol ) { // upper and lower boundary - _ghostCells.insert( { idx_cell, std::vector( _nSys, 1e-15 ) } ); + _ghostCells.insert( { idx_cell, std::vector( _nSys, 0.0 ) } ); break; } else if( abs( nodes[cellNodes[idx_cell][idx_node]][0] ) < tol ) { // close to 0 => left boundary _ghostCellsReflectingY[idx_cell] = true; - // _ghostCells.insert( { idx_cell, std::vector( _nSys ) } ); + _ghostCells.insert( { idx_cell, std::vector( _nSys, -1.0 ) } ); break; } else { // right boundary - _ghostCells.insert( { idx_cell, std::vector( _nSys, 1e-15 ) } ); + _ghostCells.insert( { idx_cell, std::vector( _nSys, 0.0 ) } ); break; } } @@ -1185,20 +1204,116 @@ void SNSolverHPC::SetGhostCells() { } else if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + auto nodes = _mesh->GetNodes(); + double tol = 1e-12; // For distance to boundary + +#pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { _ghostCellsReflectingY[idx_cell] = false; + _ghostCellsReflectingX[idx_cell] = false; _ghostCells[idx_cell] = std::vector( _nSys, 0.0 ); - if( _cellMidPoints[Idx2D( idx_cell, 0, _nDim )] < -0.64 ) { - for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { - if( _quadPts[Idx2D( idx_q, 0, _nDim )] > 0.0 ) _ghostCells[idx_cell][idx_q] = 1.0; + auto localCellNodes = _mesh->GetCells()[idx_cell]; + + for( unsigned idx_node = 0; idx_node < _mesh->GetNumNodesPerCell(); idx_node++ ) { // Check if corner node is in this cell + if( abs( nodes[localCellNodes[idx_node]][0] ) < -0.65 + tol ) { // close to 0 => left boundary + for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { + if( _quadPts[Idx2D( idx_q, 0, _nDim )] > 0.0 ) _ghostCells[idx_cell][idx_q] = 1.0; + } + break; + } + else if( abs( nodes[localCellNodes[idx_node]][0] ) > 0.65 - tol ) { // right boundary + for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { + if( _quadPts[Idx2D( idx_q, 0, _nDim )] < 0.0 ) _ghostCells[idx_cell][idx_q] = 1.0; + } + break; + } + else if( abs( nodes[localCellNodes[idx_node]][1] ) < -0.65 + tol ) { // lower boundary + + break; + } + else if( abs( nodes[localCellNodes[idx_node]][1] ) > 0.65 - tol ) { // upper boundary + break; + } + else { + ErrorMessages::Error( " Problem with ghost cell setup and boundary of this mesh ", CURRENT_FUNCTION ); + } + } + } + } + } + else if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { + + double tol = 1e-12; // For distance to boundary + + if( _settings->GetQuadName() != QUAD_GaussLegendreTensorized2D ) { + ErrorMessages::Error( "This simplified test case only works with symmetric quadrature orders. Use QUAD_GAUSS_LEGENDRE_TENSORIZED_2D", + CURRENT_FUNCTION ); + } + + { // Create the symmetry maps for the quadratures + + for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { + for( unsigned idx_q2 = 0; idx_q2 < _nSys; idx_q2++ ) { + if( abs( _quadPts[Idx2D( idx_q, 0, _nDim )] + _quadPts[Idx2D( idx_q2, 0, _nDim )] ) + + abs( _quadPts[Idx2D( idx_q, 1, _nDim )] - _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < + tol ) { + _quadratureYReflection[idx_q] = idx_q2; + break; + } + } + for( unsigned idx_q2 = 0; idx_q2 < _nSys; idx_q2++ ) { + if( abs( _quadPts[Idx2D( idx_q, 0, _nDim )] - _quadPts[Idx2D( idx_q2, 0, _nDim )] ) + + abs( _quadPts[Idx2D( idx_q, 1, _nDim )] * _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < + tol ) { + _quadratureXReflection[idx_q] = idx_q2; + break; } } - else if( _cellMidPoints[Idx2D( idx_cell, 0, _nDim )] > 0.64 ) { - for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { - if( _quadPts[Idx2D( idx_q, 0, _nDim )] < 0.0 ) _ghostCells[idx_cell][idx_q] = 1.0; + } + } + if( _quadratureXReflection.size() != _nSys ) { + ErrorMessages::Error( "Problem with X symmetry of quadrature of this mesh", CURRENT_FUNCTION ); + } + if( _quadratureYReflection.size() != _nSys ) { + ErrorMessages::Error( "Problem with Y symmetry of quadrature of this mesh", CURRENT_FUNCTION ); + } + + auto nodes = _mesh->GetNodes(); + +#pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { + + if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { + + auto localCellNodes = _mesh->GetCells()[idx_cell]; + + _ghostCellsReflectingX[idx_cell] = false; + _ghostCellsReflectingY[idx_cell] = false; + _ghostCells[idx_cell] = std::vector( _nSys, 0.0 ); + + for( unsigned idx_node = 0; idx_node < _mesh->GetNumNodesPerCell(); idx_node++ ) { // Check if corner node is in this cell + if( abs( nodes[localCellNodes[idx_node]][0] ) < tol ) { // close to 0 => left boundary + _ghostCellsReflectingY[idx_cell] = true; + break; + } + else if( abs( nodes[localCellNodes[idx_node]][0] ) > 0.65 - tol ) { // right boundary + for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { + if( _quadPts[Idx2D( idx_q, 0, _nDim )] < 0.0 ) _ghostCells[idx_cell][idx_q] = 1.0; + } + break; + } + else if( abs( nodes[localCellNodes[idx_node]][1] ) < tol ) { // lower boundary + _ghostCellsReflectingX[idx_cell] = true; + break; + } + else if( abs( nodes[localCellNodes[idx_node]][1] ) > 0.65 - tol ) { // upper boundary + break; + } + else { + ErrorMessages::Error( " Problem with ghost cell setup and boundary of this mesh ", CURRENT_FUNCTION ); } } } @@ -1207,31 +1322,51 @@ void SNSolverHPC::SetGhostCells() { } void SNSolverHPC::SetProbingCellsLineGreen() { - double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); - double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); - // double dx = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); + if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { + double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); + double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); + + // double dx = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); - unsigned nHorizontalProbingCells = - (unsigned)std::ceil( _nProbingCellsLineGreen / 2 * ( horizontalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); - unsigned nVerticalProbingCells = _nProbingCellsLineGreen - nHorizontalProbingCells; + unsigned nHorizontalProbingCells = + (unsigned)std::ceil( _nProbingCellsLineGreen * ( horizontalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); + unsigned nVerticalProbingCells = _nProbingCellsLineGreen - nHorizontalProbingCells; - _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); + _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); - // printf( "here" ); + // Sample points on each side of the rectangle + std::vector side3 = linspace2D( _cornerLowerRightGreen, _cornerUpperRightGreen, nVerticalProbingCells ); + std::vector side4 = linspace2D( _cornerUpperRightGreen, _cornerUpperLeftGreen, nHorizontalProbingCells ); - // Sample points on each side of the rectangle - std::vector side1 = linspace2D( _cornerUpperLeftGreen, _cornerLowerLeftGreen, nVerticalProbingCells ); - std::vector side2 = linspace2D( _cornerLowerLeftGreen, _cornerLowerRightGreen, nHorizontalProbingCells ); - std::vector side3 = linspace2D( _cornerLowerRightGreen, _cornerUpperRightGreen, nVerticalProbingCells ); - std::vector side4 = linspace2D( _cornerUpperRightGreen, _cornerUpperLeftGreen, nHorizontalProbingCells ); + // Combine the points from each side + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side3.begin(), side3.end() ); + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side4.begin(), side4.end() ); + } + else if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); + double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); + + // double dx = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); + + unsigned nHorizontalProbingCells = + (unsigned)std::ceil( _nProbingCellsLineGreen / 2 * ( horizontalLineWidth / ( horizontalLineWidth + verticalLineWidth ) ) ); + unsigned nVerticalProbingCells = _nProbingCellsLineGreen - nHorizontalProbingCells; - // printf( "here" ); - // Combine the points from each side - _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side1.begin(), side1.end() ); - _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side2.begin(), side2.end() ); - _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side3.begin(), side3.end() ); - _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side4.begin(), side4.end() ); + _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); + + // Sample points on each side of the rectangle + std::vector side1 = linspace2D( _cornerUpperLeftGreen, _cornerLowerLeftGreen, nVerticalProbingCells ); + std::vector side2 = linspace2D( _cornerLowerLeftGreen, _cornerLowerRightGreen, nHorizontalProbingCells ); + std::vector side3 = linspace2D( _cornerLowerRightGreen, _cornerUpperRightGreen, nVerticalProbingCells ); + std::vector side4 = linspace2D( _cornerUpperRightGreen, _cornerUpperLeftGreen, nHorizontalProbingCells ); + + // Combine the points from each side + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side1.begin(), side1.end() ); + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side2.begin(), side2.end() ); + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side3.begin(), side3.end() ); + _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side4.begin(), side4.end() ); + } } void SNSolverHPC::ComputeQOIsGreenProbingLine() { From 6a3b40158746656198966089b9ccda980f64a727 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Wed, 10 Apr 2024 13:29:48 -0400 Subject: [PATCH 129/155] fix segfaults --- src/common/config.cpp | 2 +- src/problems/halflattice.cpp | 2 -- src/problems/quarterhohlraum.cpp | 9 +++++---- src/solvers/snsolver_hpc.cpp | 5 ++--- 4 files changed, 8 insertions(+), 10 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 50124351..15441d95 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -992,7 +992,7 @@ void Config::SetPostprocessing() { } } - if( _problemName == PROBLEM_SymmetricHohlraum ) { + if( _problemName == PROBLEM_SymmetricHohlraum || _problemName == PROBLEM_QuarterHohlraum ) { std::vector::iterator it; it = find( _historyOutput.begin(), _historyOutput.end(), VAR_ABSORPTION_GREEN_LINE ); if( it != _historyOutput.end() ) { diff --git a/src/problems/halflattice.cpp b/src/problems/halflattice.cpp index 7ce48361..91434d45 100644 --- a/src/problems/halflattice.cpp +++ b/src/problems/halflattice.cpp @@ -156,8 +156,6 @@ void HalfLattice_SN::SetGhostCells() { for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { - double x = _mesh->GetCellMidPoints()[idx_cell][0]; - double y = _mesh->GetCellMidPoints()[idx_cell][1]; auto localCellNodes = _mesh->GetCells()[idx_cell]; diff --git a/src/problems/quarterhohlraum.cpp b/src/problems/quarterhohlraum.cpp index cc1c5657..48844139 100644 --- a/src/problems/quarterhohlraum.cpp +++ b/src/problems/quarterhohlraum.cpp @@ -164,8 +164,6 @@ void QuarterHohlraum::SetGhostCells() { for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { - double x = _mesh->GetCellMidPoints()[idx_cell][0]; - double y = _mesh->GetCellMidPoints()[idx_cell][1]; auto localCellNodes = _mesh->GetCells()[idx_cell]; @@ -191,8 +189,11 @@ void QuarterHohlraum::SetGhostCells() { ghostCellMap.insert( { idx_cell, vertical_flow } ); break; } - else { - ErrorMessages::Error( " Problem with ghost cell setup and boundary of this mesh ", CURRENT_FUNCTION ); + else if( idx_node == _mesh->GetNumNodesPerCell() - 1 ) { + ErrorMessages::Error( " Problem with ghost cell setup and boundary of this mesh at cell " + std::to_string( idx_cell ) + + " with node coordinates " + std::to_string( _mesh->GetNodes()[localCellNodes[idx_node]][0] ) + "," + + std::to_string( _mesh->GetNodes()[localCellNodes[idx_node]][1] ), + CURRENT_FUNCTION ); } } } diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index e3c49579..7b7ed8d1 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -1231,13 +1231,12 @@ void SNSolverHPC::SetGhostCells() { break; } else if( abs( nodes[localCellNodes[idx_node]][1] ) < -0.65 + tol ) { // lower boundary - break; } else if( abs( nodes[localCellNodes[idx_node]][1] ) > 0.65 - tol ) { // upper boundary break; } - else { + else if( idx_node == _mesh->GetNumNodesPerCell() - 1 ) { ErrorMessages::Error( " Problem with ghost cell setup and boundary of this mesh ", CURRENT_FUNCTION ); } } @@ -1312,7 +1311,7 @@ void SNSolverHPC::SetGhostCells() { else if( abs( nodes[localCellNodes[idx_node]][1] ) > 0.65 - tol ) { // upper boundary break; } - else { + else if( idx_node == _mesh->GetNumNodesPerCell() - 1 ) { ErrorMessages::Error( " Problem with ghost cell setup and boundary of this mesh ", CURRENT_FUNCTION ); } } From b5a278601983fb3692a2c08de02d6e7b5b0055c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Wed, 10 Apr 2024 14:18:31 -0400 Subject: [PATCH 130/155] fix race condition --- src/solvers/snsolver_hpc.cpp | 49 +++++++++++++++++++----------------- 1 file changed, 26 insertions(+), 23 deletions(-) diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 7b7ed8d1..fc9cf31c 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -142,7 +142,8 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { SetGhostCells(); - PrepareScreenOutput(); // Screen Output + PrepareScreenOutput(); // Screen Output + PrepareHistoryOutput(); // History Output delete quad; @@ -1140,7 +1141,7 @@ void SNSolverHPC::PrepareVolumeOutput() { void SNSolverHPC::SetGhostCells() { if( _settings->GetProblemName() == PROBLEM_Lattice ) { std::vector void_flow( _nSys, 0.0 ); -#pragma omp parallel for + // #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { _ghostCells[idx_cell] = void_flow; @@ -1178,7 +1179,7 @@ void SNSolverHPC::SetGhostCells() { auto nodes = _mesh->GetNodes(); auto cellNodes = _mesh->GetCells(); -#pragma omp parallel for + // #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { if( _cellBoundaryTypes[idx_cell] != BOUNDARY_TYPE::NONE ) { _ghostCellsReflectingY[idx_cell] = false; @@ -1207,7 +1208,7 @@ void SNSolverHPC::SetGhostCells() { auto nodes = _mesh->GetNodes(); double tol = 1e-12; // For distance to boundary -#pragma omp parallel for + // #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { @@ -1252,27 +1253,27 @@ void SNSolverHPC::SetGhostCells() { CURRENT_FUNCTION ); } - { // Create the symmetry maps for the quadratures - - for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { - for( unsigned idx_q2 = 0; idx_q2 < _nSys; idx_q2++ ) { - if( abs( _quadPts[Idx2D( idx_q, 0, _nDim )] + _quadPts[Idx2D( idx_q2, 0, _nDim )] ) + - abs( _quadPts[Idx2D( idx_q, 1, _nDim )] - _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < - tol ) { - _quadratureYReflection[idx_q] = idx_q2; - break; - } + // Create the symmetry maps for the quadratures + std::cout << " Setting up symmetry maps " << std::endl; + for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { + for( unsigned idx_q2 = 0; idx_q2 < _nSys; idx_q2++ ) { + if( abs( _quadPts[Idx2D( idx_q, 0, _nDim )] + _quadPts[Idx2D( idx_q2, 0, _nDim )] ) + + abs( _quadPts[Idx2D( idx_q, 1, _nDim )] - _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < + tol ) { + _quadratureYReflection[idx_q] = idx_q2; + break; } - for( unsigned idx_q2 = 0; idx_q2 < _nSys; idx_q2++ ) { - if( abs( _quadPts[Idx2D( idx_q, 0, _nDim )] - _quadPts[Idx2D( idx_q2, 0, _nDim )] ) + - abs( _quadPts[Idx2D( idx_q, 1, _nDim )] * _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < - tol ) { - _quadratureXReflection[idx_q] = idx_q2; - break; - } + } + for( unsigned idx_q2 = 0; idx_q2 < _nSys; idx_q2++ ) { + if( abs( _quadPts[Idx2D( idx_q, 0, _nDim )] - _quadPts[Idx2D( idx_q2, 0, _nDim )] ) + + abs( _quadPts[Idx2D( idx_q, 1, _nDim )] * _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < + tol ) { + _quadratureXReflection[idx_q] = idx_q2; + break; } } } + if( _quadratureXReflection.size() != _nSys ) { ErrorMessages::Error( "Problem with X symmetry of quadrature of this mesh", CURRENT_FUNCTION ); } @@ -1282,7 +1283,7 @@ void SNSolverHPC::SetGhostCells() { auto nodes = _mesh->GetNodes(); -#pragma omp parallel for + // #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { @@ -1300,7 +1301,9 @@ void SNSolverHPC::SetGhostCells() { } else if( abs( nodes[localCellNodes[idx_node]][0] ) > 0.65 - tol ) { // right boundary for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { - if( _quadPts[Idx2D( idx_q, 0, _nDim )] < 0.0 ) _ghostCells[idx_cell][idx_q] = 1.0; + if( _quadPts[Idx2D( idx_q, 0, _nDim )] < 0.0 ) { + _ghostCells[idx_cell][idx_q] = 1.0; + } } break; } From f9226b940bf15e5fcf8e06a5f65bbca28b2e634b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Wed, 10 Apr 2024 16:17:42 -0400 Subject: [PATCH 131/155] added variable green region to hozhlraum --- include/common/config.hpp | 5 ++++ src/common/config.cpp | 2 ++ src/problems/symmetrichohlraum.cpp | 47 +++++++++++++++--------------- src/solvers/snsolver_hpc.cpp | 36 +++++++++++++---------- 4 files changed, 52 insertions(+), 38 deletions(-) diff --git a/include/common/config.hpp b/include/common/config.hpp index 52d8c8cb..0b50b79c 100644 --- a/include/common/config.hpp +++ b/include/common/config.hpp @@ -102,6 +102,9 @@ class Config // Hohlraum unsigned short _nProbingCellsLineGreenHohlraum; /*!< @brief Number SamplingPoints for Hohlraum Green region sampling.*/ + double _posCenterXHohlraum; /*!< @brief Center of the Hohlraum Green region. */ + double _posCenterYHohlraum; /*!< @brief Center of the Hohlraum Green region. */ + // CSD double _maxEnergyCSD; /*!< @brief Maximum energy for CSD simulation */ @@ -334,6 +337,8 @@ class Config unsigned short inline GetNLatticeScatterIndividual() const { return _nDsgnScatterIndividual; } // Hohlraum unsigned short inline GetNumProbingCellsLineHohlraum() const { return _nProbingCellsLineGreenHohlraum; } + double inline GetPosXCenterGreenHohlraum() const { return _posCenterXHohlraum; } + double inline GetPosYCenterGreenHohlraum() const { return _posCenterYHohlraum; } // Optimizer double inline GetNewtonOptimizerEpsilon() const { return _optimizerEpsilon; } diff --git a/src/common/config.cpp b/src/common/config.cpp index 15441d95..deba51a8 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -298,6 +298,8 @@ void Config::SetConfigOptions() { // Hohlraum related options AddUnsignedShortOption( "N_SAMPLING_PTS_LINE_GREEN", _nProbingCellsLineGreenHohlraum, 4 ); + AddDoubleOption( "POS_CENTER_X", _posCenterXHohlraum, 0.0 ); + AddDoubleOption( "POS_CENTER_Y", _posCenterYHohlraum, 0.0 ); // Entropy related options /*! @brief Entropy Functional \n DESCRIPTION: Entropy functional used for the MN_Solver \n DEFAULT QUADRTATIC @ingroup Config. */ diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 3511d950..f26817db 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -28,12 +28,12 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _widthGreen = 0.4; _heightGreen = 0.8; _thicknessGreen = 0.05; - _centerGreen = { 0.0, 0.0 }; + _centerGreen = { _settings->GetPosXCenterGreenHohlraum(), _settings->GetPosYCenterGreenHohlraum() }; - _cornerUpperLeftGreen = { -0.2 + _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; - _cornerLowerLeftGreen = { -0.2 + _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; - _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; - _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; + _cornerUpperLeftGreen = { _centerGreen[0] - _widthGreen / 2.0, _centerGreen[1] + _heightGreen / 2.0 }; + _cornerLowerLeftGreen = { _centerGreen[0] - _widthGreen / 2.0, _centerGreen[1] - _heightGreen / 2.0 }; + _cornerUpperRightGreen = { _centerGreen[0] + _widthGreen / 2.0, _centerGreen[1] + _heightGreen / 2.0 }; + _cornerLowerRightGreen = { _centerGreen[0] + _widthGreen / 2.0, _centerGreen[1] - _heightGreen / 2.0 }; // QOIS _curAbsorptionHohlraumCenter = 0.0; @@ -50,8 +50,10 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _mesh->GetCellOfKoordinate( 0., -0.5 ), _mesh->GetCellOfKoordinate( 0., 0.5 ), }; + _probingMoments = VectorVector( 4, Vector( 3, 0.0 ) ); _nProbingCellsLineGreen = _settings->GetNumProbingCellsLineHohlraum(); + SetProbingCellsLineGreen(); _absorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); _varAbsorptionValsIntegrated = std::vector( _nProbingCellsLineGreen, 0.0 ); @@ -73,31 +75,27 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _sigmaT[idx_cell] = 100.0; } // green area 1 (lower boundary) - if( x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35 ) { + if( x > -0.2 + _centerGreen[0] && x < -0.15 + _centerGreen[0] && y > -0.35 + _centerGreen[1] && y < 0.35 + _centerGreen[1] ) { _sigmaS[idx_cell] = 90.0; _sigmaT[idx_cell] = 100.0; } - _cornerUpperLeftGreen = { 0., 0.4 - _thicknessGreen / 2.0 }; - _cornerLowerLeftGreen = { 0., +_thicknessGreen / 2.0 }; - _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; - _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, 0. + _thicknessGreen / 2.0 }; - - if( x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35 ) { + // green area 2 (upper boundary) + if( x > 0.15 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > -0.35 + _centerGreen[1] && y < 0.35 + _centerGreen[1] ) { _sigmaS[idx_cell] = 90.0; _sigmaT[idx_cell] = 100.0; } // green area 3 (left boundary) - if( x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35 ) { + if( x > -0.2 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > -0.4 + _centerGreen[1] && y < -0.35 + _centerGreen[1] ) { _sigmaS[idx_cell] = 90.0; _sigmaT[idx_cell] = 100.0; } // green area 4 (right boundary) - if( x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4 ) { + if( x > -0.2 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > 0.35 + _centerGreen[1] && y < 0.4 + _centerGreen[1] ) { _sigmaS[idx_cell] = 90.0; _sigmaT[idx_cell] = 100.0; } // blue checkered area - if( x > -0.15 && x < 0.15 && y > -0.35 && y < 0.35 ) { + if( x > -0.15 + _centerGreen[0] && x < 0.15 + _centerGreen[0] && y > -0.35 + _centerGreen[1] && y < 0.35 + _centerGreen[1] ) { _sigmaS[idx_cell] = 50.0; _sigmaT[idx_cell] = 100.0; } @@ -265,7 +263,7 @@ void SymmetricHohlraum::ComputeCurrentProbeMoment( const VectorVector& solution void SymmetricHohlraum::SetProbingCellsLineGreen() { - double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); + double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] - _thicknessGreen ); double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); // double dx = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); @@ -276,13 +274,16 @@ void SymmetricHohlraum::SetProbingCellsLineGreen() { _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); - // printf( "here" ); + std::vector p1 = { _cornerUpperLeftGreen[0] + _thicknessGreen / 2.0, _cornerUpperLeftGreen[1] - _thicknessGreen / 2.0 }; + std::vector p2 = { _cornerLowerLeftGreen[0] + _thicknessGreen / 2.0, _cornerLowerLeftGreen[1] + _thicknessGreen / 2.0 }; + std::vector p3 = { _cornerUpperRightGreen[0] - _thicknessGreen / 2.0, _cornerUpperRightGreen[1] - _thicknessGreen / 2.0 }; + std::vector p4 = { _cornerLowerRightGreen[0] - _thicknessGreen / 2.0, _cornerLowerRightGreen[1] + _thicknessGreen / 2.0 }; // Sample points on each side of the rectangle - std::vector side1 = linspace2D( _cornerUpperLeftGreen, _cornerLowerLeftGreen, nVerticalProbingCells ); - std::vector side2 = linspace2D( _cornerLowerLeftGreen, _cornerLowerRightGreen, nHorizontalProbingCells ); - std::vector side3 = linspace2D( _cornerLowerRightGreen, _cornerUpperRightGreen, nVerticalProbingCells ); - std::vector side4 = linspace2D( _cornerUpperRightGreen, _cornerUpperLeftGreen, nHorizontalProbingCells ); + std::vector side1 = linspace2D( p1, p2, nVerticalProbingCells ); + std::vector side2 = linspace2D( p2, p3, nHorizontalProbingCells ); + std::vector side3 = linspace2D( p3, p4, nVerticalProbingCells ); + std::vector side4 = linspace2D( p4, p1, nHorizontalProbingCells ); // printf( "here" ); // Combine the points from each side @@ -294,8 +295,8 @@ void SymmetricHohlraum::SetProbingCellsLineGreen() { void SymmetricHohlraum::ComputeQOIsGreenProbingLine( const Vector& scalarFlux ) { - double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); - double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); + double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] - _thicknessGreen ); + double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] - _thicknessGreen ); double dl = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); double area = dl * _thicknessGreen; diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index fc9cf31c..32f863e9 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -205,15 +205,16 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { _widthGreen = 0.4; _heightGreen = 0.8; _thicknessGreen = 0.05; - _centerGreen = { 0.0, 0.0 }; if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { - _cornerUpperLeftGreen = { -0.2 + _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; - _cornerLowerLeftGreen = { -0.2 + _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; - _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; - _cornerLowerRightGreen = { 0.2 - _thicknessGreen / 2.0, -0.4 + _thicknessGreen / 2.0 }; + _centerGreen = { _settings->GetPosXCenterGreenHohlraum(), _settings->GetPosYCenterGreenHohlraum() }; + _cornerUpperLeftGreen = { -0.2 + _centerGreen[0], 0.4 + _centerGreen[1] }; + _cornerLowerLeftGreen = { -0.2 + _centerGreen[0], -0.4 + _centerGreen[1] }; + _cornerUpperRightGreen = { 0.2 + _centerGreen[0], 0.4 + _centerGreen[1] }; + _cornerLowerRightGreen = { 0.2 + _centerGreen[0], -0.4 + _centerGreen[1] }; } else { + _centerGreen = { 0.0, 0.0 }; _cornerUpperLeftGreen = { 0., 0.4 - _thicknessGreen / 2.0 }; _cornerLowerLeftGreen = { 0., +_thicknessGreen / 2.0 }; _cornerUpperRightGreen = { 0.2 - _thicknessGreen / 2.0, 0.4 - _thicknessGreen / 2.0 }; @@ -1219,22 +1220,22 @@ void SNSolverHPC::SetGhostCells() { auto localCellNodes = _mesh->GetCells()[idx_cell]; for( unsigned idx_node = 0; idx_node < _mesh->GetNumNodesPerCell(); idx_node++ ) { // Check if corner node is in this cell - if( abs( nodes[localCellNodes[idx_node]][0] ) < -0.65 + tol ) { // close to 0 => left boundary + if( nodes[localCellNodes[idx_node]][0] < -0.65 + tol ) { // close to 0 => left boundary for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { if( _quadPts[Idx2D( idx_q, 0, _nDim )] > 0.0 ) _ghostCells[idx_cell][idx_q] = 1.0; } break; } - else if( abs( nodes[localCellNodes[idx_node]][0] ) > 0.65 - tol ) { // right boundary + else if( nodes[localCellNodes[idx_node]][0] > 0.65 - tol ) { // right boundary for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { if( _quadPts[Idx2D( idx_q, 0, _nDim )] < 0.0 ) _ghostCells[idx_cell][idx_q] = 1.0; } break; } - else if( abs( nodes[localCellNodes[idx_node]][1] ) < -0.65 + tol ) { // lower boundary + else if( nodes[localCellNodes[idx_node]][1] < -0.65 + tol ) { // lower boundary break; } - else if( abs( nodes[localCellNodes[idx_node]][1] ) > 0.65 - tol ) { // upper boundary + else if( nodes[localCellNodes[idx_node]][1] > 0.65 - tol ) { // upper boundary break; } else if( idx_node == _mesh->GetNumNodesPerCell() - 1 ) { @@ -1357,11 +1358,16 @@ void SNSolverHPC::SetProbingCellsLineGreen() { _probingCellsLineGreen = std::vector( _nProbingCellsLineGreen ); + std::vector p1 = { _cornerUpperLeftGreen[0] + _thicknessGreen / 2.0, _cornerUpperLeftGreen[1] - _thicknessGreen / 2.0 }; + std::vector p2 = { _cornerLowerLeftGreen[0] + _thicknessGreen / 2.0, _cornerLowerLeftGreen[1] + _thicknessGreen / 2.0 }; + std::vector p3 = { _cornerUpperRightGreen[0] - _thicknessGreen / 2.0, _cornerUpperRightGreen[1] - _thicknessGreen / 2.0 }; + std::vector p4 = { _cornerLowerRightGreen[0] - _thicknessGreen / 2.0, _cornerLowerRightGreen[1] + _thicknessGreen / 2.0 }; + // Sample points on each side of the rectangle - std::vector side1 = linspace2D( _cornerUpperLeftGreen, _cornerLowerLeftGreen, nVerticalProbingCells ); - std::vector side2 = linspace2D( _cornerLowerLeftGreen, _cornerLowerRightGreen, nHorizontalProbingCells ); - std::vector side3 = linspace2D( _cornerLowerRightGreen, _cornerUpperRightGreen, nVerticalProbingCells ); - std::vector side4 = linspace2D( _cornerUpperRightGreen, _cornerUpperLeftGreen, nHorizontalProbingCells ); + std::vector side1 = linspace2D( p1, p2, nVerticalProbingCells ); + std::vector side2 = linspace2D( p2, p3, nHorizontalProbingCells ); + std::vector side3 = linspace2D( p3, p4, nVerticalProbingCells ); + std::vector side4 = linspace2D( p4, p1, nHorizontalProbingCells ); // Combine the points from each side _probingCellsLineGreen.insert( _probingCellsLineGreen.end(), side1.begin(), side1.end() ); @@ -1372,8 +1378,8 @@ void SNSolverHPC::SetProbingCellsLineGreen() { } void SNSolverHPC::ComputeQOIsGreenProbingLine() { - double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] ); - double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] ); + double verticalLineWidth = std::abs( _cornerUpperLeftGreen[1] - _cornerLowerLeftGreen[1] - _thicknessGreen ); + double horizontalLineWidth = std::abs( _cornerUpperLeftGreen[0] - _cornerUpperRightGreen[0] - _thicknessGreen ); double dl = 2 * ( horizontalLineWidth + verticalLineWidth ) / ( (double)_nProbingCellsLineGreen ); double area = dl * _thicknessGreen; From 92cc249a56c05fee8ec5706dfbd4b5395e70742c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= Date: Wed, 10 Apr 2024 16:51:58 -0400 Subject: [PATCH 132/155] variable red absorption region --- include/common/config.hpp | 8 ++++++++ src/common/config.cpp | 4 ++++ src/problems/symmetrichohlraum.cpp | 8 ++++---- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/include/common/config.hpp b/include/common/config.hpp index 0b50b79c..d9d1c3fe 100644 --- a/include/common/config.hpp +++ b/include/common/config.hpp @@ -104,6 +104,10 @@ class Config unsigned short _nProbingCellsLineGreenHohlraum; /*!< @brief Number SamplingPoints for Hohlraum Green region sampling.*/ double _posCenterXHohlraum; /*!< @brief Center of the Hohlraum Green region. */ double _posCenterYHohlraum; /*!< @brief Center of the Hohlraum Green region. */ + double _posRedRightTop; /*!< @brief y coord of the top of the right red area */ + double _posRedLeftTop; /*!< @brief y coord of the top of the left red area */ + double _posRedRightBottom; /*!< @brief y coord of the bottom of the right red area */ + double _posRedLeftBottom; /*!< @brief y coord of the bottom of the left red area */ // CSD double _maxEnergyCSD; /*!< @brief Maximum energy for CSD simulation */ @@ -339,6 +343,10 @@ class Config unsigned short inline GetNumProbingCellsLineHohlraum() const { return _nProbingCellsLineGreenHohlraum; } double inline GetPosXCenterGreenHohlraum() const { return _posCenterXHohlraum; } double inline GetPosYCenterGreenHohlraum() const { return _posCenterYHohlraum; } + double inline GetPosRedRightTopHohlraum() const { return _posRedRightTop; } + double inline GetPosRedRightBottomHohlraum() const { return _posRedRightBottom; } + double inline GetPosRedLeftTopHohlraum() const { return _posRedLeftTop; } + double inline GetPosRedLeftBottomHohlraum() const { return _posRedLeftBottom; } // Optimizer double inline GetNewtonOptimizerEpsilon() const { return _optimizerEpsilon; } diff --git a/src/common/config.cpp b/src/common/config.cpp index deba51a8..6b4271b4 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -300,6 +300,10 @@ void Config::SetConfigOptions() { AddUnsignedShortOption( "N_SAMPLING_PTS_LINE_GREEN", _nProbingCellsLineGreenHohlraum, 4 ); AddDoubleOption( "POS_CENTER_X", _posCenterXHohlraum, 0.0 ); AddDoubleOption( "POS_CENTER_Y", _posCenterYHohlraum, 0.0 ); + AddDoubleOption( "POS_RED_RIGHT_TOP", _posRedRightTop, 0.4 ); + AddDoubleOption( "POS_RED_RIGHT_BOTTOM", _posRedRightBottom, -0.4 ); + AddDoubleOption( "POS_RED_LEFT_TOP", _posRedLeftTop, 0.4 ); + AddDoubleOption( "POS_RED_LEFT_BOTTOM", _posRedLeftBottom, -0.4 ); // Entropy related options /*! @brief Entropy Functional \n DESCRIPTION: Entropy functional used for the MN_Solver \n DEFAULT QUADRTATIC @ingroup Config. */ diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index f26817db..27ffcef1 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -18,10 +18,10 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa // Design parameters defining the hohlraum geometry // Red - _redLeftTop = 0.4; - _redLeftBottom = -0.4; - _redRightTop = 0.4; - _redRightBottom = -0.4; + _redLeftTop = _settings->GetPosRedLeftTopHohlraum(); + _redLeftBottom = _settings->GetPosRedLeftBottomHohlraum(); + _redRightTop = _settings->GetPosRedRightTopHohlraum(); + _redRightBottom = _settings->GetPosRedRightBottomHohlraum(); _thicknessRedLeft = 0.05; _thicknessRedRight = 0.05; // Green From f013929838487e8860a8747cbdc16e25bf3246f8 Mon Sep 17 00:00:00 2001 From: Steffen Date: Mon, 15 Apr 2024 09:19:44 -0400 Subject: [PATCH 133/155] fixed bug in boundary condition quarter hohlraum --- src/solvers/snsolver_hpc.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 32f863e9..848de6b3 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -1256,29 +1256,32 @@ void SNSolverHPC::SetGhostCells() { // Create the symmetry maps for the quadratures std::cout << " Setting up symmetry maps " << std::endl; + unsigned filled_X_reflection = 0; + unsigned filled_Y_reflection = 0; for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { for( unsigned idx_q2 = 0; idx_q2 < _nSys; idx_q2++ ) { if( abs( _quadPts[Idx2D( idx_q, 0, _nDim )] + _quadPts[Idx2D( idx_q2, 0, _nDim )] ) + abs( _quadPts[Idx2D( idx_q, 1, _nDim )] - _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < tol ) { _quadratureYReflection[idx_q] = idx_q2; + filled_Y_reflection++; break; } } for( unsigned idx_q2 = 0; idx_q2 < _nSys; idx_q2++ ) { if( abs( _quadPts[Idx2D( idx_q, 0, _nDim )] - _quadPts[Idx2D( idx_q2, 0, _nDim )] ) + - abs( _quadPts[Idx2D( idx_q, 1, _nDim )] * _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < + abs( _quadPts[Idx2D( idx_q, 1, _nDim )] + _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < tol ) { _quadratureXReflection[idx_q] = idx_q2; + filled_X_reflection++; break; } } } - - if( _quadratureXReflection.size() != _nSys ) { + if( filled_X_reflection != _nSys ) { ErrorMessages::Error( "Problem with X symmetry of quadrature of this mesh", CURRENT_FUNCTION ); } - if( _quadratureYReflection.size() != _nSys ) { + if( filled_Y_reflection != _nSys ) { ErrorMessages::Error( "Problem with Y symmetry of quadrature of this mesh", CURRENT_FUNCTION ); } From fa59949975ad337ab7bfc9c871c86177b03624b3 Mon Sep 17 00:00:00 2001 From: Steffen Date: Thu, 2 May 2024 16:15:50 -0400 Subject: [PATCH 134/155] fixed vtk memory leak --- src/common/io.cpp | 26 ++++++++++++++------------ src/solvers/snsolver_hpc.cpp | 6 +++--- 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/src/common/io.cpp b/src/common/io.cpp index 1debf80d..39fcac9d 100644 --- a/src/common/io.cpp +++ b/src/common/io.cpp @@ -78,16 +78,19 @@ void ExportVTK( const std::string fileName, } } vtkCellArraySP cellArray = vtkCellArraySP::New(); - for( unsigned i = 0; i < numCells; ++i ) { - if( numNodesPerCell == 3 ) { - auto tri = vtkTriangleSP::New(); + if( numNodesPerCell == 3 ) { + auto tri = vtkTriangleSP::New(); + for( unsigned i = 0; i < numCells; ++i ) { for( unsigned j = 0; j < numNodesPerCell; ++j ) { tri->GetPointIds()->SetId( j, cells[i][j] ); } cellArray->InsertNextCell( tri ); } - if( numNodesPerCell == 4 ) { - auto quad = vtkQuad::New(); + } + + if( numNodesPerCell == 4 ) { + auto quad = vtkQuad::New(); + for( unsigned i = 0; i < numCells; ++i ) { for( unsigned j = 0; j < numNodesPerCell; ++j ) { quad->GetPointIds()->SetId( j, cells[i][j] ); } @@ -102,11 +105,12 @@ void ExportVTK( const std::string fileName, } // Write the output + auto cellData = vtkDoubleArraySP::New(); + for( unsigned idx_group = 0; idx_group < outputFields.size(); idx_group++ ) { for( unsigned idx_field = 0; idx_field < outputFields[idx_group].size(); idx_field++ ) { // Loop over all output fields - - auto cellData = vtkDoubleArraySP::New(); + cellData = vtkDoubleArraySP::New(); cellData->SetName( outputFieldNames[idx_group][idx_field].c_str() ); for( unsigned idx_cell = 0; idx_cell < numCells; idx_cell++ ) { @@ -125,14 +129,12 @@ void ExportVTK( const std::string fileName, converter->PassCellDataOn(); converter->Update(); - auto conv_grid = converter->GetOutput(); - - writer->SetInputData( conv_grid ); + writer->SetInputData( converter->GetOutput() ); writer->Write(); - // auto log = spdlog::get( "event" ); - // log->info( "Result successfully exported to '{0}'!", fileNameWithExt ); + // auto log = spdlog::get( "event" ); + // log->info( "Result successfully exported to '{0}'!", fileNameWithExt ); } // MPI_Barrier( MPI_COMM_WORLD ); } diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 848de6b3..66df56be 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -1102,9 +1102,9 @@ void SNSolverHPC::WriteVolumeOutput( unsigned idx_iter ) { for( unsigned idx_group = 0; idx_group < nGroups; idx_group++ ) { switch( _settings->GetVolumeOutput()[idx_group] ) { case MINIMAL: - for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { - _outputFields[idx_group][0][idx_cell] = _scalarFlux[idx_cell]; - } + // for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + _outputFields[idx_group][0] = _scalarFlux; //[idx_cell]; + //} break; default: ErrorMessages::Error( "Volume Output Group not defined for HPC SN Solver!", CURRENT_FUNCTION ); break; From 96eb92f85baf5c7799977c0aa1763d83f16a0863 Mon Sep 17 00:00:00 2001 From: Steffen Date: Thu, 23 May 2024 14:51:34 -0400 Subject: [PATCH 135/155] updated hohlraum design params --- include/common/config.hpp | 4 ++ include/problems/symmetrichohlraum.hpp | 4 +- include/solvers/snsolver_hpc.hpp | 10 +---- src/common/config.cpp | 3 +- src/problems/symmetrichohlraum.cpp | 45 +++++++++++++------- src/solvers/snsolver_hpc.cpp | 59 +++++++++++++++----------- 6 files changed, 72 insertions(+), 53 deletions(-) diff --git a/include/common/config.hpp b/include/common/config.hpp index d9d1c3fe..9865e67b 100644 --- a/include/common/config.hpp +++ b/include/common/config.hpp @@ -108,6 +108,8 @@ class Config double _posRedLeftTop; /*!< @brief y coord of the top of the left red area */ double _posRedRightBottom; /*!< @brief y coord of the bottom of the right red area */ double _posRedLeftBottom; /*!< @brief y coord of the bottom of the left red area */ + double _posRedLeftBorder; /*!< @brief pos of the inner border of the left red area */ + double _posRedRightBorder; /*!< @brief pos of the inner border of the right red area */ // CSD double _maxEnergyCSD; /*!< @brief Maximum energy for CSD simulation */ @@ -347,6 +349,8 @@ class Config double inline GetPosRedRightBottomHohlraum() const { return _posRedRightBottom; } double inline GetPosRedLeftTopHohlraum() const { return _posRedLeftTop; } double inline GetPosRedLeftBottomHohlraum() const { return _posRedLeftBottom; } + double inline GetPosRedLeftBorderHohlraum() const { return _posRedLeftBorder; } + double inline GetPosRedRightBorderHohlraum() const { return _posRedRightBorder; } // Optimizer double inline GetNewtonOptimizerEpsilon() const { return _optimizerEpsilon; } diff --git a/include/problems/symmetrichohlraum.hpp b/include/problems/symmetrichohlraum.hpp index 8115c6a8..ca9e1e8d 100644 --- a/include/problems/symmetrichohlraum.hpp +++ b/include/problems/symmetrichohlraum.hpp @@ -30,8 +30,8 @@ class SymmetricHohlraum : public ProblemBase double _redLeftBottom; /*!< @brief y coord of the bottom of the left red area */ double _redRightTop; /*!< @brief y coord of the top of the right red area */ double _redRightBottom; /*!< @brief y coord of the bottom of the right red area */ - double _thicknessRedLeft; /*!< @brief thickness of the left red area */ - double _thicknessRedRight; /*!< @brief thickness of the right red area */ + double _posRedLeftBorder; /*!< @brief thickness of the left red area */ + double _posRedRightBorder; /*!< @brief thickness of the right red area */ void SetGhostCells() override; /*!< @brief Sets vector of ghost cells for boundary conditions */ diff --git a/include/solvers/snsolver_hpc.hpp b/include/solvers/snsolver_hpc.hpp index 8b39a71d..735c78e8 100644 --- a/include/solvers/snsolver_hpc.hpp +++ b/include/solvers/snsolver_hpc.hpp @@ -96,6 +96,7 @@ class SNSolverHPC double _varAbsorptionHohlraumGreen; std::vector _probingCellsHohlraum; /*!< @brief Indices of cells that contain a probing sensor */ std::vector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ + unsigned _probingMomentsTimeIntervals; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ unsigned _nProbingCellsLineGreen; /*!< @brief Number of sampling cells that contain a probing sensor for the sliding window */ std::vector _probingCellsLineGreen; /*!< @brief Indices of cells that contain a probing sensor for the sliding window */ @@ -110,18 +111,9 @@ class SNSolverHPC std::vector _cornerLowerRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) relative to the green center */ - double _widthGreen; /*!< @brief width of the green area */ - double _heightGreen; /*!< @brief height of the green area */ double _thicknessGreen; /*!< @brief thickness of the green area */ std::vector _centerGreen; /*!< @brief Center of the Hohlraum */ - double _redLeftTop; /*!< @brief y coord of the top of the left red area */ - double _redLeftBottom; /*!< @brief y coord of the bottom of the left red area */ - double _redRightTop; /*!< @brief y coord of the top of the right red area */ - double _redRightBottom; /*!< @brief y coord of the bottom of the right red area */ - double _thicknessRedLeft; /*!< @brief thickness of the left red area */ - double _thicknessRedRight; /*!< @brief thickness of the right red area */ - // Output std::vector>> _outputFields; /*!< @brief Solver Output: dimensions (GroupID,FieldID,CellID).*/ diff --git a/src/common/config.cpp b/src/common/config.cpp index 6b4271b4..6b7de210 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -304,7 +304,8 @@ void Config::SetConfigOptions() { AddDoubleOption( "POS_RED_RIGHT_BOTTOM", _posRedRightBottom, -0.4 ); AddDoubleOption( "POS_RED_LEFT_TOP", _posRedLeftTop, 0.4 ); AddDoubleOption( "POS_RED_LEFT_BOTTOM", _posRedLeftBottom, -0.4 ); - + AddDoubleOption( "WIDTH_RED_LEFT", _posRedLeftBorder, -0.65 ); + AddDoubleOption( "WIDTH_RED_RIGHT", _posRedRightBorder, 0.65 ); // Entropy related options /*! @brief Entropy Functional \n DESCRIPTION: Entropy functional used for the MN_Solver \n DEFAULT QUADRTATIC @ingroup Config. */ AddEnumOption( "ENTROPY_FUNCTIONAL", _entropyName, Entropy_Map, QUADRATIC ); diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 27ffcef1..92d0c3b4 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -22,8 +22,9 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _redLeftBottom = _settings->GetPosRedLeftBottomHohlraum(); _redRightTop = _settings->GetPosRedRightTopHohlraum(); _redRightBottom = _settings->GetPosRedRightBottomHohlraum(); - _thicknessRedLeft = 0.05; - _thicknessRedRight = 0.05; + _posRedLeftBorder = _settings->GetPosRedLeftBorderHohlraum(); + _posRedRightBorder = _settings->GetPosRedRightBorderHohlraum(); + // Green _widthGreen = 0.4; _heightGreen = 0.8; @@ -65,12 +66,12 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa double y = _mesh->GetCellMidPoints()[idx_cell][1]; // red area left - if( x < -0.65 + _thicknessRedLeft && y > _redLeftBottom && y < _redLeftTop ) { + if( x < _posRedLeftBorder && y > _redLeftBottom && y < _redLeftTop ) { _sigmaS[idx_cell] = 95.0; _sigmaT[idx_cell] = 100.0; } // red area right - if( x > 0.65 - _thicknessRedRight && y > _redRightBottom && y < _redRightTop ) { + if( x > _posRedRightBorder && y > _redRightBottom && y < _redRightTop ) { _sigmaS[idx_cell] = 95.0; _sigmaT[idx_cell] = 100.0; } @@ -214,12 +215,18 @@ void SymmetricHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { double x = cellMids[idx_cell][0]; double y = cellMids[idx_cell][1]; - bool green1, green2, green3, green4; - - green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) - green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) - green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) - green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) + // green area 1 (lower boundary) + bool green1 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < -0.15 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); + // green area 2 (upper boundary) + bool green2 = x > 0.15 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); + // green area 3 (left boundary) + bool green3 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.4 + _settings->GetPosYCenterGreenHohlraum() && y < -0.35 + _settings->GetPosYCenterGreenHohlraum(); + // green area 4 (right boundary) + bool green4 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > 0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.4 + _settings->GetPosYCenterGreenHohlraum(); if( green1 || green2 || green3 || green4 ) { a_g += ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * scalarFlux[idx_cell] * areas[idx_cell]; @@ -230,12 +237,18 @@ void SymmetricHohlraum::ComputeVarAbsorptionGreen( const Vector& scalarFlux ) { for( unsigned idx_cell = 0; idx_cell < nCells; ++idx_cell ) { double x = cellMids[idx_cell][0]; double y = cellMids[idx_cell][1]; - bool green1, green2, green3, green4; - - green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) - green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) - green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) - green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) + // green area 1 (lower boundary) + bool green1 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < -0.15 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); + // green area 2 (upper boundary) + bool green2 = x > 0.15 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); + // green area 3 (left boundary) + bool green3 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.4 + _settings->GetPosYCenterGreenHohlraum() && y < -0.35 + _settings->GetPosYCenterGreenHohlraum(); + // green area 4 (right boundary) + bool green4 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > 0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.4 + _settings->GetPosYCenterGreenHohlraum(); if( green1 || green2 || green3 || green4 ) { _varAbsorptionHohlraumGreen += ( a_g - scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) * diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 66df56be..d251f796 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -175,9 +175,9 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { unsigned n_probes = 4; if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) n_probes = 4; if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; - - _probingCellsHohlraum = std::vector( n_probes, 0. ); - _probingMoments = std::vector( n_probes * 3, 0. ); + _probingMomentsTimeIntervals = 10; + _probingCellsHohlraum = std::vector( n_probes, 0. ); + _probingMoments = std::vector( n_probes * 3, 0. ); // 10 time horizons if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { _probingCellsHohlraum = { @@ -194,16 +194,7 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { }; } - // Red - _redLeftTop = 0.4; - _redLeftBottom = -0.4; - _redRightTop = 0.4; - _redRightBottom = -0.4; - _thicknessRedLeft = 0.05; - _thicknessRedRight = 0.05; // Green - _widthGreen = 0.4; - _heightGreen = 0.8; _thicknessGreen = 0.05; if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { @@ -564,10 +555,14 @@ void SNSolverHPC::IterPostprocessing() { double x = _cellMidPoints[Idx2D( idx_cell, 0, _nDim )]; double y = _cellMidPoints[Idx2D( idx_cell, 1, _nDim )]; - if( x > -0.2 && x < 0.2 && y > -0.35 && y < 0.35 ) { + if( x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum() ) { _curAbsorptionHohlraumCenter += _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _areas[idx_cell]; } - if( ( x < -0.6 && y > -0.4 && y < 0.4 ) || ( x > 0.6 && y > -0.4 && y < 0.4 ) ) { + if( ( x < _settings->GetPosRedLeftBorderHohlraum() && y > _settings->GetPosRedLeftBottomHohlraum() && + y < _settings->GetPosRedLeftTopHohlraum() ) || + ( x > _settings->GetPosRedRightBorderHohlraum() && y > _settings->GetPosRedLeftBottomHohlraum() && + y < _settings->GetPosRedRightTopHohlraum() ) ) { _curAbsorptionHohlraumVertical += _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _areas[idx_cell]; } if( y > 0.6 || y < -0.6 ) { @@ -575,11 +570,18 @@ void SNSolverHPC::IterPostprocessing() { } // Variation in absorption of center (part 1) - bool green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) - bool green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) - bool green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) - bool green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) - + // green area 1 (lower boundary) + bool green1 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < -0.15 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); + // green area 2 (upper boundary) + bool green2 = x > 0.15 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); + // green area 3 (left boundary) + bool green3 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.4 + _settings->GetPosYCenterGreenHohlraum() && y < -0.35 + _settings->GetPosYCenterGreenHohlraum(); + // green area 4 (right boundary) + bool green4 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > 0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.4 + _settings->GetPosYCenterGreenHohlraum(); if( green1 || green2 || green3 || green4 ) { a_g += ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _scalarFlux[idx_cell] * _areas[idx_cell]; } @@ -622,13 +624,19 @@ void SNSolverHPC::IterPostprocessing() { for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { double x = _cellMidPoints[Idx2D( idx_cell, 0, _nDim )]; double y = _cellMidPoints[Idx2D( idx_cell, 1, _nDim )]; - bool green1, green2, green3, green4; - - green1 = x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35; // green area 1 (lower boundary) - green2 = x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35; // green area 2 (upper boundary) - green3 = x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35; // green area 3 (left boundary) - green4 = x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4; // green area 4 (right boundary) + // green area 1 (lower boundary) + bool green1 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < -0.15 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); + // green area 2 (upper boundary) + bool green2 = x > 0.15 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); + // green area 3 (left boundary) + bool green3 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.4 + _settings->GetPosYCenterGreenHohlraum() && y < -0.35 + _settings->GetPosYCenterGreenHohlraum(); + // green area 4 (right boundary) + bool green4 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > 0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.4 + _settings->GetPosYCenterGreenHohlraum(); if( green1 || green2 || green3 || green4 ) { _varAbsorptionHohlraumGreen += ( a_g - _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) * ( a_g - _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) * _areas[idx_cell]; @@ -663,6 +671,7 @@ void SNSolverHPC::IterPostprocessing() { _totalAbsorptionHohlraumVertical += _curAbsorptionHohlraumVertical * _dT; _totalAbsorptionHohlraumHorizontal += _curAbsorptionHohlraumHorizontal * _dT; } + bool SNSolverHPC::IsAbsorptionLattice( double x, double y ) const { // Check whether pos is inside absorbing squares double xy_corrector = -3.5; From a0fe9fd6b3e79aad55d638e93f4851e2b0d54b5a Mon Sep 17 00:00:00 2001 From: Steffen Date: Thu, 23 May 2024 14:56:43 -0400 Subject: [PATCH 136/155] update options --- src/common/config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 6b7de210..0db14e7e 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -304,8 +304,8 @@ void Config::SetConfigOptions() { AddDoubleOption( "POS_RED_RIGHT_BOTTOM", _posRedRightBottom, -0.4 ); AddDoubleOption( "POS_RED_LEFT_TOP", _posRedLeftTop, 0.4 ); AddDoubleOption( "POS_RED_LEFT_BOTTOM", _posRedLeftBottom, -0.4 ); - AddDoubleOption( "WIDTH_RED_LEFT", _posRedLeftBorder, -0.65 ); - AddDoubleOption( "WIDTH_RED_RIGHT", _posRedRightBorder, 0.65 ); + AddDoubleOption( "POS_BORDER_RED_LEFT", _posRedLeftBorder, -0.65 ); + AddDoubleOption( "POS_BORDER_RED_RIGHT", _posRedRightBorder, 0.65 ); // Entropy related options /*! @brief Entropy Functional \n DESCRIPTION: Entropy functional used for the MN_Solver \n DEFAULT QUADRTATIC @ingroup Config. */ AddEnumOption( "ENTROPY_FUNCTIONAL", _entropyName, Entropy_Map, QUADRATIC ); From ae7561eb4dd3da28e8e0878c76874659092f67d3 Mon Sep 17 00:00:00 2001 From: Steffen Date: Thu, 23 May 2024 15:37:30 -0400 Subject: [PATCH 137/155] comment unused var out --- src/solvers/snsolver_hpc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index d251f796..98483113 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -175,9 +175,9 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { unsigned n_probes = 4; if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) n_probes = 4; if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; - _probingMomentsTimeIntervals = 10; - _probingCellsHohlraum = std::vector( n_probes, 0. ); - _probingMoments = std::vector( n_probes * 3, 0. ); // 10 time horizons + //_probingMomentsTimeIntervals = 10; + _probingCellsHohlraum = std::vector( n_probes, 0. ); + _probingMoments = std::vector( n_probes * 3, 0. ); // 10 time horizons if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { _probingCellsHohlraum = { From 7b5fac37bff82c67116072dbe709a1c883245928 Mon Sep 17 00:00:00 2001 From: Steffen Date: Fri, 31 May 2024 14:21:37 -0400 Subject: [PATCH 138/155] added lattice qois according to testbed v2 --- include/common/globalconstants.hpp | 8 ++ include/solvers/snsolver_hpc.hpp | 12 ++- src/common/config.cpp | 8 ++ src/solvers/snsolver_hpc.cpp | 134 +++++++++++++++++++++++++++-- 4 files changed, 154 insertions(+), 8 deletions(-) diff --git a/include/common/globalconstants.hpp b/include/common/globalconstants.hpp index 6487c85b..826bd338 100644 --- a/include/common/globalconstants.hpp +++ b/include/common/globalconstants.hpp @@ -182,6 +182,10 @@ enum SCALAR_OUTPUT { CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, + CUR_OUTFLOW_P1, + TOTAL_OUTFLOW_P1, + CUR_OUTFLOW_P2, + TOTAL_OUTFLOW_P2, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, @@ -202,6 +206,10 @@ inline std::map ScalarOutput_Map{ { "ITER", ITER }, { "CSV_OUTPUT", CSV_OUTPUT }, { "CUR_OUTFLOW", CUR_OUTFLOW }, { "TOTAL_OUTFLOW", TOTAL_OUTFLOW }, + { "CUR_OUTFLOW_P1", CUR_OUTFLOW_P1 }, + { "TOTAL_OUTFLOW_P1", TOTAL_OUTFLOW_P1 }, + { "CUR_OUTFLOW_P2", CUR_OUTFLOW_P2 }, + { "TOTAL_OUTFLOW_P2", TOTAL_OUTFLOW_P2 }, { "MAX_OUTFLOW", MAX_OUTFLOW }, { "CUR_PARTICLE_ABSORPTION", CUR_PARTICLE_ABSORPTION }, { "TOTAL_PARTICLE_ABSORPTION", TOTAL_PARTICLE_ABSORPTION }, diff --git a/include/solvers/snsolver_hpc.hpp b/include/solvers/snsolver_hpc.hpp index 735c78e8..fb9c7d5f 100644 --- a/include/solvers/snsolver_hpc.hpp +++ b/include/solvers/snsolver_hpc.hpp @@ -75,7 +75,7 @@ class SNSolverHPC // Output related members std::vector _scalarFlux; /*!< @brief dim = _nCells */ - // QOIS + // Lattice QOIS double _mass; double _rmsFlux; double _curAbsorptionLattice; /*!< @brief Absorption of particles at Lattice checkerboard regions at current time step */ @@ -85,6 +85,15 @@ class SNSolverHPC double _totalScalarOutflow; /*!< @brief Outflow over whole boundary integrated until current time step */ double _curMaxOrdinateOutflow; /*!< @brief Maximum ordinate-wise ouftlow over boundary over all time steps */ std::vector _localMaxOrdinateOutflow; /*!< @brief Maximum ordinate-wise ouftlow over boundary over all time steps */ + double _curScalarOutflowPeri1; /*!< @brief Outflow over whole boundary at current time step */ + double _totalScalarOutflowPeri1; /*!< @brief Outflow over whole boundary integrated until current time step */ + double _curScalarOutflowPeri2; /*!< @brief Outflow over whole boundary at current time step */ + double _totalScalarOutflowPeri2; /*!< @brief Outflow over whole boundary integrated until current time step */ + // helper + std::map> _cellsLatticePerimeter1; + std::map> _cellsLatticePerimeter2; + std::vector _isPerimeterLatticeCell1; + std::vector _isPerimeterLatticeCell2; // Hohlraum QOIS double _totalAbsorptionHohlraumCenter; @@ -188,6 +197,7 @@ class SNSolverHPC unsigned Idx2D( unsigned idx1, unsigned idx2, unsigned len2 ); unsigned Idx3D( unsigned idx1, unsigned idx2, unsigned idx3, unsigned len2, unsigned len3 ); bool IsAbsorptionLattice( double x, double y ) const; + void ComputeCellsPerimeterLattice(); void SetProbingCellsLineGreen(); void ComputeQOIsGreenProbingLine(); diff --git a/src/common/config.cpp b/src/common/config.cpp index 0db14e7e..afd9de96 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -754,6 +754,10 @@ void Config::SetPostprocessing() { CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, + CUR_OUTFLOW_P1, + TOTAL_OUTFLOW_P1, + CUR_OUTFLOW_P2, + TOTAL_OUTFLOW_P2, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, @@ -896,6 +900,10 @@ void Config::SetPostprocessing() { CSV_OUTPUT, CUR_OUTFLOW, TOTAL_OUTFLOW, + CUR_OUTFLOW_P1, + TOTAL_OUTFLOW_P1, + CUR_OUTFLOW_P2, + TOTAL_OUTFLOW_P2, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 98483113..72326501 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -161,6 +161,11 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { _curScalarOutflow = 0; _totalScalarOutflow = 0; _curMaxOrdinateOutflow = 0; + _curScalarOutflowPeri1 = 0; + _totalScalarOutflowPeri1 = 0; + _curScalarOutflowPeri2 = 0; + _totalScalarOutflowPeri2 = 0; + ComputeCellsPerimeterLattice(); } // Hohlraum { @@ -233,9 +238,6 @@ void SNSolverHPC::Solve() { DrawPreSolverOutput(); - // Create Backup solution for Runge Kutta - // std::vector solRK0 = _sol; - auto start = std::chrono::high_resolution_clock::now(); // Start timing std::chrono::duration duration; @@ -255,14 +257,12 @@ void SNSolverHPC::Solve() { for( unsigned i = 0; i < _nCells; ++i ) { _sol[i] = 0.5 * ( solRK0[i] + _sol[i] ); // Solution averaging with HEUN } - IterPostprocessing(); } else { ( _spatialOrder == 2 ) ? FluxOrder2() : FluxOrder1(); FVMUpdate(); - IterPostprocessing(); } - + IterPostprocessing(); // --- Wall time measurement duration = std::chrono::high_resolution_clock::now() - start; _currTime = std::chrono::duration_cast>( duration ).count(); @@ -528,6 +528,8 @@ void SNSolverHPC::IterPostprocessing() { _curAbsorptionLattice = 0.0; _curScalarOutflow = 0.0; + _curScalarOutflowPeri1 = 0.0; + _curScalarOutflowPeri2 = 0.0; _curAbsorptionHohlraumCenter = 0.0; // Green and blue areas of symmetric hohlraum _curAbsorptionHohlraumVertical = 0.0; // Red areas of symmetric hohlraum _curAbsorptionHohlraumHorizontal = 0.0; // Black areas of symmetric hohlraum @@ -536,6 +538,8 @@ void SNSolverHPC::IterPostprocessing() { #pragma omp parallel for reduction( + : _curAbsorptionLattice, \ _curScalarOutflow, \ + _curScalarOutflowPeri1, \ + _curScalarOutflowPeri2, \ _curAbsorptionHohlraumCenter, \ _curAbsorptionHohlraumVertical, \ _curAbsorptionHohlraumHorizontal, \ @@ -587,7 +591,44 @@ void SNSolverHPC::IterPostprocessing() { } } - // Outflow + if( _settings->GetProblemName() == PROBLEM_Lattice || _settings->GetProblemName() == PROBLEM_HalfLattice ) { + // Outflow out of inner and middle perimeter + if( _isPerimeterLatticeCell1[idx_cell] ) { // inner + for( unsigned idx_nbr_helper = 0; idx_nbr_helper < _cellsLatticePerimeter1[idx_cell].size(); ++idx_nbr_helper ) { +#pragma omp simd reduction( + : _curScalarOutflowPeri1 ) + for( unsigned idx_sys = 0; idx_sys < _nSys; ++idx_sys ) { + double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * + _normals[Idx3D( idx_cell, _cellsLatticePerimeter1[idx_cell][idx_nbr_helper], 0, _nNbr, _nDim )] + + _quadPts[Idx2D( idx_sys, 1, _nDim )] * + _normals[Idx3D( idx_cell, _cellsLatticePerimeter1[idx_cell][idx_nbr_helper], 1, _nNbr, _nDim )]; + // Find outward facing transport directions + + if( localInner > 0.0 ) { + _curScalarOutflowPeri1 += + localInner * _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; // Integrate flux + } + } + } + } + if( _isPerimeterLatticeCell2[idx_cell] ) { // middle + for( unsigned idx_nbr_helper = 0; idx_nbr_helper < _cellsLatticePerimeter2[idx_cell].size(); ++idx_nbr_helper ) { +#pragma omp simd reduction( + : _curScalarOutflowPeri2 ) + for( unsigned idx_sys = 0; idx_sys < _nSys; ++idx_sys ) { + double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * + _normals[Idx3D( idx_cell, _cellsLatticePerimeter2[idx_cell][idx_nbr_helper], 0, _nNbr, _nDim )] + + _quadPts[Idx2D( idx_sys, 1, _nDim )] * + _normals[Idx3D( idx_cell, _cellsLatticePerimeter2[idx_cell][idx_nbr_helper], 1, _nNbr, _nDim )]; + // Find outward facing transport directions + + if( localInner > 0.0 ) { + _curScalarOutflowPeri2 += + localInner * _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; // Integrate flux + } + } + } + } + } + // Outflow out of domain if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN && !_ghostCellsReflectingY[idx_cell] && !_ghostCellsReflectingX[idx_cell] ) { // Iterate over face cell faces double currOrdinatewiseOutflow = 0.0; @@ -664,7 +705,20 @@ void SNSolverHPC::IterPostprocessing() { } _rmsFlux = sqrt( _rmsFlux ); + if( _settings->GetProblemName() == PROBLEM_HalfLattice ) { + _curScalarOutflow *= 2.0; + _curScalarOutflowPeri1 *= 2.0; + _curScalarOutflowPeri2 *= 2.0; + _curAbsorptionLattice *= 2.0; + } + if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { + _curAbsorptionHohlraumCenter *= 4.0; + _curAbsorptionHohlraumVertical *= 4.0; // red area + _curAbsorptionHohlraumHorizontal *= 4.0; // black area + } _totalScalarOutflow += _curScalarOutflow * _dT; + _totalScalarOutflowPeri1 += _curScalarOutflowPeri1 * _dT; + _totalScalarOutflowPeri2 += _curScalarOutflowPeri2 * _dT; _totalAbsorptionLattice += _curAbsorptionLattice * _dT; _totalAbsorptionHohlraumCenter += _curAbsorptionHohlraumCenter * _dT; @@ -744,6 +798,10 @@ void SNSolverHPC::PrepareScreenOutput() { case CSV_OUTPUT: _screenOutputFieldNames[idx_field] = "CSV out"; break; case CUR_OUTFLOW: _screenOutputFieldNames[idx_field] = "Cur. outflow"; break; case TOTAL_OUTFLOW: _screenOutputFieldNames[idx_field] = "Tot. outflow"; break; + case CUR_OUTFLOW_P1: _screenOutputFieldNames[idx_field] = "Cur. outflow P1"; break; + case TOTAL_OUTFLOW_P1: _screenOutputFieldNames[idx_field] = "Tot. outflow P1"; break; + case CUR_OUTFLOW_P2: _screenOutputFieldNames[idx_field] = "Cur. outflow P2"; break; + case TOTAL_OUTFLOW_P2: _screenOutputFieldNames[idx_field] = "Tot. outflow P2"; break; case MAX_OUTFLOW: _screenOutputFieldNames[idx_field] = "Max outflow"; break; case CUR_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Cur. absorption"; break; case TOTAL_PARTICLE_ABSORPTION: _screenOutputFieldNames[idx_field] = "Tot. absorption"; break; @@ -798,6 +856,10 @@ void SNSolverHPC::WriteScalarOutput( unsigned idx_iter ) { break; case CUR_OUTFLOW: _screenOutputFields[idx_field] = _curScalarOutflow; break; case TOTAL_OUTFLOW: _screenOutputFields[idx_field] = _totalScalarOutflow; break; + case CUR_OUTFLOW_P1: _screenOutputFields[idx_field] = _curScalarOutflowPeri1; break; + case TOTAL_OUTFLOW_P1: _screenOutputFields[idx_field] = _totalScalarOutflowPeri1; break; + case CUR_OUTFLOW_P2: _screenOutputFields[idx_field] = _curScalarOutflowPeri2; break; + case TOTAL_OUTFLOW_P2: _screenOutputFields[idx_field] = _totalScalarOutflowPeri2; break; case MAX_OUTFLOW: _screenOutputFields[idx_field] = _curMaxOrdinateOutflow; break; case CUR_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _curAbsorptionLattice; break; case TOTAL_PARTICLE_ABSORPTION: _screenOutputFields[idx_field] = _totalAbsorptionLattice; break; @@ -849,6 +911,10 @@ void SNSolverHPC::WriteScalarOutput( unsigned idx_iter ) { break; case CUR_OUTFLOW: _historyOutputFields[idx_field] = _curScalarOutflow; break; case TOTAL_OUTFLOW: _historyOutputFields[idx_field] = _totalScalarOutflow; break; + case CUR_OUTFLOW_P1: _historyOutputFields[idx_field] = _curScalarOutflowPeri1; break; + case TOTAL_OUTFLOW_P1: _historyOutputFields[idx_field] = _totalScalarOutflowPeri1; break; + case CUR_OUTFLOW_P2: _historyOutputFields[idx_field] = _curScalarOutflowPeri2; break; + case TOTAL_OUTFLOW_P2: _historyOutputFields[idx_field] = _totalScalarOutflowPeri2; break; case MAX_OUTFLOW: _historyOutputFields[idx_field] = _curMaxOrdinateOutflow; break; case CUR_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _curAbsorptionLattice; break; case TOTAL_PARTICLE_ABSORPTION: _historyOutputFields[idx_field] = _totalAbsorptionLattice; break; @@ -899,6 +965,10 @@ void SNSolverHPC::PrintScreenOutput( unsigned idx_iter ) { WALL_TIME, CUR_OUTFLOW, TOTAL_OUTFLOW, + CUR_OUTFLOW_P1, + TOTAL_OUTFLOW_P1, + CUR_OUTFLOW_P2, + TOTAL_OUTFLOW_P2, MAX_OUTFLOW, CUR_PARTICLE_ABSORPTION, TOTAL_PARTICLE_ABSORPTION, @@ -964,6 +1034,10 @@ void SNSolverHPC::PrepareHistoryOutput() { case CSV_OUTPUT: _historyOutputFieldNames[idx_field] = "CSV_out"; break; case CUR_OUTFLOW: _historyOutputFieldNames[idx_field] = "Cur_outflow"; break; case TOTAL_OUTFLOW: _historyOutputFieldNames[idx_field] = "Total_outflow"; break; + case CUR_OUTFLOW_P1: _historyOutputFieldNames[idx_field] = "Cur_outflow_P1"; break; + case TOTAL_OUTFLOW_P1: _historyOutputFieldNames[idx_field] = "Total_outflow_P1"; break; + case CUR_OUTFLOW_P2: _historyOutputFieldNames[idx_field] = "Cur_outflow_P2"; break; + case TOTAL_OUTFLOW_P2: _historyOutputFieldNames[idx_field] = "Total_outflow_P2"; break; case MAX_OUTFLOW: _historyOutputFieldNames[idx_field] = "Max_outflow"; break; case CUR_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Cur_absorption"; break; case TOTAL_PARTICLE_ABSORPTION: _historyOutputFieldNames[idx_field] = "Total_absorption"; break; @@ -1433,3 +1507,49 @@ std::vector SNSolverHPC::linspace2D( const std::vector& start, return result; } + +void SNSolverHPC::ComputeCellsPerimeterLattice() { + double l_1 = 1.5; // perimeter 1 + double l_2 = 2.5; // perimeter 2 + auto nodes = _mesh->GetNodes(); + auto cells = _mesh->GetCells(); + auto cellMids = _mesh->GetCellMidPoints(); + auto normals = _mesh->GetNormals(); + auto neigbors = _mesh->GetNeighbours(); + + _isPerimeterLatticeCell1.resize( _mesh->GetNumCells(), false ); + _isPerimeterLatticeCell2.resize( _mesh->GetNumCells(), false ); + + for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); ++idx_cell ) { + if( abs( cellMids[idx_cell][0] ) < l_1 && abs( cellMids[idx_cell][1] ) < l_1 ) { + // Cell is within perimeter + for( unsigned idx_nbr = 0; idx_nbr < _mesh->GetNumNodesPerCell(); ++idx_nbr ) { + if( neigbors[idx_cell][idx_nbr] == _mesh->GetNumCells() ) { + continue; // Skip boundary - ghost cells + } + + if( abs( ( cellMids[neigbors[idx_cell][idx_nbr]][0] ) > l_1 && abs( cellMids[idx_cell][0] ) < l_1 ) || + abs( ( cellMids[neigbors[idx_cell][idx_nbr]][1] ) > l_1 && abs( cellMids[idx_cell][1] ) < l_1 ) ) { + // neighbor is outside perimeter + _cellsLatticePerimeter1[idx_cell].push_back( idx_nbr ); + _isPerimeterLatticeCell1[idx_cell] = true; + } + } + } + if( abs( cellMids[idx_cell][0] ) < l_2 && abs( cellMids[idx_cell][1] ) < l_2 && abs( cellMids[idx_cell][0] ) > l_1 && + abs( cellMids[idx_cell][1] ) > l_1 ) { + // Cell is within perimeter + for( unsigned idx_nbr = 0; idx_nbr < _mesh->GetNumNodesPerCell(); ++idx_nbr ) { + if( neigbors[idx_cell][idx_nbr] == _mesh->GetNumCells() ) { + continue; // Skip boundary - ghost cells + } + if( abs( ( cellMids[neigbors[idx_cell][idx_nbr]][0] ) > l_2 && abs( cellMids[idx_cell][0] ) < l_2 ) || + abs( ( cellMids[neigbors[idx_cell][idx_nbr]][1] ) > l_2 && abs( cellMids[idx_cell][1] ) < l_2 ) ) { + // neighbor is outside perimeter + _cellsLatticePerimeter2[idx_cell].push_back( idx_nbr ); + _isPerimeterLatticeCell2[idx_cell] = true; + } + } + } + } +} \ No newline at end of file From e3df2dc1d1a7f004504318d00df4e11e32e3fbb6 Mon Sep 17 00:00:00 2001 From: Steffen Date: Mon, 3 Jun 2024 16:01:01 -0400 Subject: [PATCH 139/155] updated quarter hohlraum test case --- include/problems/quarterhohlraum.hpp | 2 ++ src/problems/quarterhohlraum.cpp | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/problems/quarterhohlraum.hpp b/include/problems/quarterhohlraum.hpp index 416e43c8..0a43b473 100644 --- a/include/problems/quarterhohlraum.hpp +++ b/include/problems/quarterhohlraum.hpp @@ -23,6 +23,8 @@ class QuarterHohlraum : public ProblemBase std::vector _cornerUpperRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ std::vector _cornerLowerRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ double _thicknessGreen; /*!< @brief thickness of the green area */ + double _redRightTopX; /*!< @brief x coord of the right top corner of the red area */ + double _posRedRightBorder; /*!< @brief x coord of the left border of the right red area */ void SetGhostCells() override; /*!< @brief Sets vector of ghost cells for boundary conditions */ diff --git a/src/problems/quarterhohlraum.cpp b/src/problems/quarterhohlraum.cpp index 48844139..27d69008 100644 --- a/src/problems/quarterhohlraum.cpp +++ b/src/problems/quarterhohlraum.cpp @@ -15,6 +15,10 @@ QuarterHohlraum::QuarterHohlraum( Config* settings, Mesh* mesh, QuadratureBase* _sigmaS = Vector( _mesh->GetNumCells(), 0.1 ); // white area default _sigmaT = Vector( _mesh->GetNumCells(), 0.1 ); // white area default + // Geometry of the red barrier + _redRightTop = _settings->GetPosRedRightTopHohlraum(); + _posRedRightBorder = _settings->GetPosRedRightBorderHohlraum(); + // Geometry of the green capsule _thicknessGreen = 0.05; _cornerUpperLeftGreen = { 0., 0.4 - _thicknessGreen / 2.0 }; @@ -51,7 +55,7 @@ QuarterHohlraum::QuarterHohlraum( Config* settings, Mesh* mesh, QuadratureBase* _sigmaT[idx_cell] = 100.0; } // red area right - if( x > 0.6 && y > -0.4 && y < 0.4 ) { + if( x > _posRedRightBorder && y > -0.4 && y < _redRightTop ) { _sigmaS[idx_cell] = 95.0; _sigmaT[idx_cell] = 100.0; } From 4a75efc46ec97b15fd9912b8b6c290874598e730 Mon Sep 17 00:00:00 2001 From: Steffen Date: Mon, 3 Jun 2024 16:05:12 -0400 Subject: [PATCH 140/155] bugfix --- include/problems/quarterhohlraum.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/problems/quarterhohlraum.hpp b/include/problems/quarterhohlraum.hpp index 0a43b473..73a71807 100644 --- a/include/problems/quarterhohlraum.hpp +++ b/include/problems/quarterhohlraum.hpp @@ -23,7 +23,7 @@ class QuarterHohlraum : public ProblemBase std::vector _cornerUpperRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ std::vector _cornerLowerRightGreen; /*!< @brief Coord of corner of the green area (minus thickness/2 of it) */ double _thicknessGreen; /*!< @brief thickness of the green area */ - double _redRightTopX; /*!< @brief x coord of the right top corner of the red area */ + double _redRightTop; /*!< @brief x coord of the right top corner of the red area */ double _posRedRightBorder; /*!< @brief x coord of the left border of the right red area */ void SetGhostCells() override; /*!< @brief Sets vector of ghost cells for boundary conditions */ From 756453a9b824ad2ecd7d91eefb0014c623688088 Mon Sep 17 00:00:00 2001 From: Steffen Date: Fri, 7 Jun 2024 10:03:41 -0400 Subject: [PATCH 141/155] parallel conmat (experimental) --- src/common/mesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index eba8069d..2659c031 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -86,7 +86,7 @@ void Mesh::ComputeConnectivity() { log->info( "| ...connect cells to nodes..." ); blaze::CompressedMatrix connMat( _numCells, _numNodes ); - // #pragma omp parallel for +#pragma omp parallel for for( unsigned i = mpiCellStart; i < mpiCellEnd; ++i ) { for( auto j : _cells[i] ) connMat.set( i, j, true ); } From 1b7efb3c7f15d5277a6216baadfa067d6d44c511 Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Mon, 10 Jun 2024 21:29:15 -0400 Subject: [PATCH 142/155] parallel mesh connectivity gives segfault --- src/common/mesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 2659c031..7928a222 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -86,7 +86,7 @@ void Mesh::ComputeConnectivity() { log->info( "| ...connect cells to nodes..." ); blaze::CompressedMatrix connMat( _numCells, _numNodes ); -#pragma omp parallel for +//#pragma omp parallel for for( unsigned i = mpiCellStart; i < mpiCellEnd; ++i ) { for( auto j : _cells[i] ) connMat.set( i, j, true ); } From 0fc96b5360e658ffeb18034512877e812816e628 Mon Sep 17 00:00:00 2001 From: Steffen Date: Wed, 12 Jun 2024 17:33:35 -0400 Subject: [PATCH 143/155] mesh connectivity accelerated - experimental --- src/common/mesh.cpp | 115 ++++++++++++++++++++++++++---- src/problems/radiationctimage.cpp | 4 +- 2 files changed, 103 insertions(+), 16 deletions(-) diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 7928a222..5ef41a0b 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -1,10 +1,13 @@ #include "common/mesh.hpp" #include "common/config.hpp" #include "common/io.hpp" +#include #include #include #include +#include #include +#include Mesh::Mesh( const Config* settings, std::vector nodes, @@ -49,6 +52,7 @@ Mesh::Mesh( const Config* settings, } log->info( "| Compute boundary..." ); ComputeBounds(); + log->info( "| Mesh created." ); } Mesh::~Mesh() {} @@ -68,6 +72,85 @@ void Mesh::ComputeConnectivity() { std::vector normalsFlatPart( _numNodesPerCell * chunkSize, Vector( _dim, -1.0 ) ); std::vector interfaceMidFlatPart( _numNodesPerCell * chunkSize, Vector( _dim, -1.0 ) ); + // ++++++ + std::vector> neighbors( _numCells ); + std::vector> normals( _numCells ); + std::vector> interfaceMid( _numCells ); + + std::map, std::vector> edge_to_cells; + // Step 1: Build a mapping from edges to cells + log->info( "| ...map edges to cells..." ); + + for( unsigned i = 0; i < _numCells; ++i ) { + const auto& cell = _cells[i]; + for( unsigned j = 0; j < _numNodesPerCell; ++j ) { + unsigned v1 = cell[j]; + unsigned v2 = cell[( j + 1 ) % _numNodesPerCell]; + std::pair edge = std::minmax( v1, v2 ); + edge_to_cells[edge].push_back( i ); + } + } + + // Step 2: Determine neighbors + log->info( "| ...determine neighbors of cells..." ); + + for( const auto& item : edge_to_cells ) { + const auto& cell_list = item.second; + const auto& nodes_of_edge = item.first; + // std::cout << "nodes_of_edge: " << nodes_of_edge.first << " " << nodes_of_edge.second << std::endl; + if( cell_list.size() == 2 ) { + if( cell_list[0] == cell_list[1] ) { + ErrorMessages::Error( "Error", CURRENT_FUNCTION ); + } + unsigned cell1 = cell_list[0]; + unsigned cell2 = cell_list[1]; + + neighbors[cell1].push_back( cell2 ); + neighbors[cell2].push_back( cell1 ); + + normals[cell1].push_back( + ComputeOutwardFacingNormal( _nodes[nodes_of_edge.first], _nodes[nodes_of_edge.second], _cellMidPoints[cell1] ) ); + normals[cell2].push_back( + ComputeOutwardFacingNormal( _nodes[nodes_of_edge.first], _nodes[nodes_of_edge.second], _cellMidPoints[cell2] ) ); + interfaceMid[cell1].push_back( ComputeCellInterfaceMidpoints( _nodes[nodes_of_edge.first], _nodes[nodes_of_edge.second] ) ); + interfaceMid[cell2].push_back( ComputeCellInterfaceMidpoints( _nodes[nodes_of_edge.first], _nodes[nodes_of_edge.second] ) ); + } + else if( /* condition */ cell_list.size() == 1 ) { + + unsigned cell1 = cell_list[0]; + neighbors[cell1].push_back( _ghostCellID ); // neighbor must be a ghost cell + normals[cell1].push_back( + ComputeOutwardFacingNormal( _nodes[nodes_of_edge.first], _nodes[nodes_of_edge.second], _cellMidPoints[cell1] ) ); + interfaceMid[cell1].push_back( ComputeCellInterfaceMidpoints( _nodes[nodes_of_edge.first], _nodes[nodes_of_edge.second] ) ); + } + else { + ErrorMessages::Error( "More than 2 cells share an edge: " + std::to_string( cell_list.size() ), CURRENT_FUNCTION ); + } + } + // check for any unassigned faces + _cellNeighbors.resize( _numCells ); + for( unsigned i = 0; i < _numCells; ++i ) { + _cellNeighbors[i].resize( _numNodesPerCell ); + if( neighbors[i].size() != _numNodesPerCell ) { + ErrorMessages::Error( "Not " + std::to_string( _numNodesPerCell ) + " neighbors detected: " + std::to_string( i ), CURRENT_FUNCTION ); + } + if( normals[i].size() != _numNodesPerCell ) { + ErrorMessages::Error( "Not" + std::to_string( _numNodesPerCell ) + " normals detected: " + std::to_string( i ), CURRENT_FUNCTION ); + } + if( interfaceMid[i].size() != _numNodesPerCell ) { + ErrorMessages::Error( "Not" + std::to_string( _numNodesPerCell ) + " interfaceMid detected: " + std::to_string( i ), CURRENT_FUNCTION ); + } + for( unsigned j = 0; j < _numNodesPerCell; ++j ) { + if( neighbors[i][j] == -1 ) { + ErrorMessages::Error( "Face not assigned: " + std::to_string( i ) + " " + std::to_string( j ), CURRENT_FUNCTION ); + } + _cellNeighbors[i][j] = neighbors[i][j]; + } + } + _cellNormals = normals; + _cellInterfaceMidPoints = interfaceMid; + + /* // pre sort cells and boundaries; sorting is needed for std::set_intersection log->info( "| ...sort cells..." ); @@ -86,7 +169,7 @@ void Mesh::ComputeConnectivity() { log->info( "| ...connect cells to nodes..." ); blaze::CompressedMatrix connMat( _numCells, _numNodes ); -//#pragma omp parallel for + // #pragma omp parallel for for( unsigned i = mpiCellStart; i < mpiCellEnd; ++i ) { for( auto j : _cells[i] ) connMat.set( i, j, true ); } @@ -104,7 +187,8 @@ void Mesh::ComputeConnectivity() { else if( ctr == _numNodesPerCell ) break; else if( static_cast( blaze::dot( blaze::row( connMat, i ), blaze::row( connMat, j ) ) ) == - _numNodesPerBoundary ) { // in 2D cells are neighbors if they share two nodes std::vector* cellsJ = &sortedCells[j]; + _numNodesPerBoundary ) { // in 2D cells are neighbors if they share two nodes std::vector* cellsJ = + // &sortedCells[j]; // which are the two common nodes and which edge belongs to them? std::vector* cellsJ = &sortedCells[j]; std::vector commonElements; // vector of nodes that are shared by cells i and j @@ -139,8 +223,8 @@ void Mesh::ComputeConnectivity() { bNodes->begin(), bNodes->end(), std::back_inserter( commonElements ) ); // find common nodes of two cells - // _boundaries[k].second has all boundary nodes of boundary k. Therefore if all cell nodes lie on the boundary, the number of common - // nodes can be 3 for triangles, 4 for quadrangles etc + // _boundaries[k].second has all boundary nodes of boundary k. Therefore if all cell nodes lie on the boundary, the number of + // common nodes can be 3 for triangles, 4 for quadrangles etc if( commonElements.size() >= _numNodesPerBoundary && commonElements.size() <= _numNodesPerCell ) { unsigned pos0 = _numNodesPerCell * ( i - mpiCellStart ); unsigned pos = pos0; @@ -148,8 +232,8 @@ void Mesh::ComputeConnectivity() { pos++; } neighborsFlatPart[pos] = _ghostCellID; - normalsFlatPart[pos] = ComputeOutwardFacingNormal( _nodes[commonElements[0]], _nodes[commonElements[1]], _cellMidPoints[i] ); - interfaceMidFlatPart[pos] = ComputeCellInterfaceMidpoints( _nodes[commonElements[0]], _nodes[commonElements[1]] ); + normalsFlatPart[pos] = ComputeOutwardFacingNormal( _nodes[commonElements[0]], _nodes[commonElements[1]], +_cellMidPoints[i] ); interfaceMidFlatPart[pos] = ComputeCellInterfaceMidpoints( _nodes[commonElements[0]], _nodes[commonElements[1]] ); } } } @@ -207,7 +291,7 @@ void Mesh::ComputeConnectivity() { //} } } - +*/ // assign boundary types to all cells _cellBoundaryTypes.resize( _numCells, BOUNDARY_TYPE::NONE ); #pragma omp parallel for @@ -417,14 +501,15 @@ void Mesh::ComputeLimiter1D( unsigned nSys, const VectorVector& sol, VectorVecto // double LimiterBarthJespersen( double r ) { return std::min( r, 1.0 ); } void Mesh::ComputeBounds() { - _bounds = std::vector( _dim, std::make_pair( std::numeric_limits::infinity(), -std::numeric_limits::infinity() ) ); -#pragma omp parallel for - for( unsigned i = 0; i < _numNodes; ++i ) { - for( unsigned j = 0; j < _dim; ++j ) { - if( _nodes[i][j] < _bounds[j].first ) _bounds[j].first = _nodes[i][j]; - if( _nodes[i][j] > _bounds[j].second ) _bounds[j].second = _nodes[i][j]; - } - } + _bounds = std::vector( _dim, std::make_pair( 0.0, 1.0 ) ); // Currently not used + //_bounds = std::vector( _dim, std::make_pair( std::numeric_limits::infinity(), -std::numeric_limits::infinity() ) ); + // + // for( unsigned i = 0; i < _numNodes; ++i ) { + // for( unsigned j = 0; j < _dim; ++j ) { + // if( _nodes[i][j] < _bounds[j].first ) _bounds[j].first = _nodes[i][j]; + // if( _nodes[i][j] > _bounds[j].second ) _bounds[j].second = _nodes[i][j]; + // } + // } } const std::vector& Mesh::GetNodes() const { return _nodes; } diff --git a/src/problems/radiationctimage.cpp b/src/problems/radiationctimage.cpp index c9b90b1f..ed4da342 100644 --- a/src/problems/radiationctimage.cpp +++ b/src/problems/radiationctimage.cpp @@ -70,7 +70,9 @@ std::vector RadiationCTImage::GetDensity( const VectorVector& /*cellMidP ErrorMessages::Error( "Python API support is deprecated for KiT-RT. This function needs to be rewritten.\n Use a python script to first create " "the mesh, then call KiT-RT from Python. This is the recommended workflow for stability and performance.", CURRENT_FUNCTION ); - Matrix gsImage = Matrix( 0, 0 ); // createSU2MeshFromImage( imageFile, meshFile ); DEprecated + Matrix gsImage = Matrix( 0, 0 ); // createSU2MeshFromImage( imageFile, meshFile ); DEprecated + + ErrorMessages::Error( "GetBounds function currently deprecetaded", CURRENT_FUNCTION ); auto bounds = _mesh->GetBounds(); auto cellMidPoints = _mesh->GetCellMidPoints(); From 893c03c746faee24bb1a97bda0454dec78a04733 Mon Sep 17 00:00:00 2001 From: Steffen Date: Thu, 13 Jun 2024 13:53:13 -0400 Subject: [PATCH 144/155] accelerated solver startup --- src/common/mesh.cpp | 18 +++++++-- src/problems/problembase.cpp | 7 ++-- src/problems/quarterhohlraum.cpp | 69 +++++++++++++++----------------- src/solvers/snsolver_hpc.cpp | 59 +++++++++++++-------------- 4 files changed, 81 insertions(+), 72 deletions(-) diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 5ef41a0b..aee1e27e 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -533,13 +533,25 @@ double Mesh::GetDistanceToOrigin( unsigned idx_cell ) const { } unsigned Mesh::GetCellOfKoordinate( double x, double y ) const { + // Experimental parallel implementation + unsigned koordinate_cell_id = 0; + bool found = false; + +#pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _numCells; idx_cell++ ) { if( IsPointInsideCell( idx_cell, x, y ) ) { - return idx_cell; +#pragma omp critical + { + koordinate_cell_id = idx_cell; + found = true; + } } + // Check if cancellation has been requested + } + if( !found ) { + ErrorMessages::Error( "Probing point (" + std::to_string( x ) + "," + std::to_string( y ) + ") is not contained in mesh.", CURRENT_FUNCTION ); } - ErrorMessages::Error( "Probing point (" + std::to_string( x ) + "," + std::to_string( y ) + ") is not contained in mesh.", CURRENT_FUNCTION ); - return 0; + return koordinate_cell_id; } bool Mesh::IsPointInsideCell( unsigned idx_cell, double x, double y ) const { diff --git a/src/problems/problembase.cpp b/src/problems/problembase.cpp index 537fa322..4d56fd2b 100644 --- a/src/problems/problembase.cpp +++ b/src/problems/problembase.cpp @@ -151,15 +151,16 @@ void ProblemBase::SetGhostCells() { std::map ghostCellMap; Vector dummyGhostCell( 1, 0.0 ); - + // #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { // TODO: Refactor Boundary Conditions: We only have Ghost Cells with // Dirichlet conditions right now - ghostCellMap.insert( { idx_cell, dummyGhostCell } ); + // #pragma omp critical + { ghostCellMap.insert( { idx_cell, dummyGhostCell } ); } } - _ghostCells = ghostCellMap; } + _ghostCells = ghostCellMap; } const Vector& ProblemBase::GetGhostCellValue( int /*idx_cell*/, const Vector& cell_sol ) { return cell_sol; } diff --git a/src/problems/quarterhohlraum.cpp b/src/problems/quarterhohlraum.cpp index 27d69008..e8adc825 100644 --- a/src/problems/quarterhohlraum.cpp +++ b/src/problems/quarterhohlraum.cpp @@ -118,13 +118,6 @@ void QuarterHohlraum::SetGhostCells() { double tol = 1e-12; // For distance to boundary - unsigned nGhostcells = 0; - for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { - if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { - nGhostcells++; - } - } - QuadratureBase* quad = QuadratureBase::Create( _settings ); VectorVector vq = quad->GetPoints(); unsigned nq = quad->GetNq(); @@ -165,39 +158,41 @@ void QuarterHohlraum::SetGhostCells() { } auto nodes = _mesh->GetNodes(); - +#pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _mesh->GetNumCells(); idx_cell++ ) { if( cellBoundaries[idx_cell] == BOUNDARY_TYPE::NEUMANN || cellBoundaries[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { +#pragma omp critical + { + auto localCellNodes = _mesh->GetCells()[idx_cell]; + + _ghostCellsReflectingX[idx_cell] = false; + _ghostCellsReflectingY[idx_cell] = false; + for( unsigned idx_node = 0; idx_node < _mesh->GetNumNodesPerCell(); idx_node++ ) { // Check if corner node is in this cell + if( abs( nodes[localCellNodes[idx_node]][0] ) < tol ) { // close to 0 => left boundary + _ghostCellsReflectingY[idx_cell] = true; + ghostCellMap.insert( { idx_cell, vertical_flow } ); + break; + } + else if( abs( nodes[localCellNodes[idx_node]][0] ) > 0.65 - tol ) { // right boundary + ghostCellMap.insert( { idx_cell, right_inflow } ); + break; + } + else if( abs( nodes[localCellNodes[idx_node]][1] ) < tol ) { // lower boundary + _ghostCellsReflectingX[idx_cell] = true; + ghostCellMap.insert( { idx_cell, vertical_flow } ); - auto localCellNodes = _mesh->GetCells()[idx_cell]; - - _ghostCellsReflectingX[idx_cell] = false; - _ghostCellsReflectingY[idx_cell] = false; - for( unsigned idx_node = 0; idx_node < _mesh->GetNumNodesPerCell(); idx_node++ ) { // Check if corner node is in this cell - if( abs( nodes[localCellNodes[idx_node]][0] ) < tol ) { // close to 0 => left boundary - _ghostCellsReflectingY[idx_cell] = true; - ghostCellMap.insert( { idx_cell, vertical_flow } ); - break; - } - else if( abs( nodes[localCellNodes[idx_node]][0] ) > 0.65 - tol ) { // right boundary - ghostCellMap.insert( { idx_cell, right_inflow } ); - break; - } - else if( abs( nodes[localCellNodes[idx_node]][1] ) < tol ) { // lower boundary - _ghostCellsReflectingX[idx_cell] = true; - ghostCellMap.insert( { idx_cell, vertical_flow } ); - - break; - } - else if( abs( nodes[localCellNodes[idx_node]][1] ) > 0.65 - tol ) { // upper boundary - ghostCellMap.insert( { idx_cell, vertical_flow } ); - break; - } - else if( idx_node == _mesh->GetNumNodesPerCell() - 1 ) { - ErrorMessages::Error( " Problem with ghost cell setup and boundary of this mesh at cell " + std::to_string( idx_cell ) + - " with node coordinates " + std::to_string( _mesh->GetNodes()[localCellNodes[idx_node]][0] ) + "," + - std::to_string( _mesh->GetNodes()[localCellNodes[idx_node]][1] ), - CURRENT_FUNCTION ); + break; + } + else if( abs( nodes[localCellNodes[idx_node]][1] ) > 0.65 - tol ) { // upper boundary + ghostCellMap.insert( { idx_cell, vertical_flow } ); + break; + } + else if( idx_node == _mesh->GetNumNodesPerCell() - 1 ) { + ErrorMessages::Error( " Problem with ghost cell setup and boundary of this mesh at cell " + std::to_string( idx_cell ) + + " with node coordinates " + std::to_string( _mesh->GetNodes()[localCellNodes[idx_node]][0] ) + "," + + std::to_string( _mesh->GetNodes()[localCellNodes[idx_node]][1] ), + CURRENT_FUNCTION ); + } } } } diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 72326501..6fa86801 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -1370,39 +1370,40 @@ void SNSolverHPC::SetGhostCells() { auto nodes = _mesh->GetNodes(); - // #pragma omp parallel for +#pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { - - auto localCellNodes = _mesh->GetCells()[idx_cell]; - - _ghostCellsReflectingX[idx_cell] = false; - _ghostCellsReflectingY[idx_cell] = false; - _ghostCells[idx_cell] = std::vector( _nSys, 0.0 ); - - for( unsigned idx_node = 0; idx_node < _mesh->GetNumNodesPerCell(); idx_node++ ) { // Check if corner node is in this cell - if( abs( nodes[localCellNodes[idx_node]][0] ) < tol ) { // close to 0 => left boundary - _ghostCellsReflectingY[idx_cell] = true; - break; - } - else if( abs( nodes[localCellNodes[idx_node]][0] ) > 0.65 - tol ) { // right boundary - for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { - if( _quadPts[Idx2D( idx_q, 0, _nDim )] < 0.0 ) { - _ghostCells[idx_cell][idx_q] = 1.0; +#pragma omp critical + { + auto localCellNodes = _mesh->GetCells()[idx_cell]; + + _ghostCellsReflectingX[idx_cell] = false; + _ghostCellsReflectingY[idx_cell] = false; + _ghostCells[idx_cell] = std::vector( _nSys, 0.0 ); + + for( unsigned idx_node = 0; idx_node < _mesh->GetNumNodesPerCell(); idx_node++ ) { // Check if corner node is in this cell + if( abs( nodes[localCellNodes[idx_node]][0] ) < tol ) { // close to 0 => left boundary + _ghostCellsReflectingY[idx_cell] = true; + break; + } + else if( abs( nodes[localCellNodes[idx_node]][0] ) > 0.65 - tol ) { // right boundary + for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { + if( _quadPts[Idx2D( idx_q, 0, _nDim )] < 0.0 ) { + _ghostCells[idx_cell][idx_q] = 1.0; + } } + break; + } + else if( abs( nodes[localCellNodes[idx_node]][1] ) < tol ) { // lower boundary + _ghostCellsReflectingX[idx_cell] = true; + break; + } + else if( abs( nodes[localCellNodes[idx_node]][1] ) > 0.65 - tol ) { // upper boundary + break; + } + else if( idx_node == _mesh->GetNumNodesPerCell() - 1 ) { + ErrorMessages::Error( " Problem with ghost cell setup and boundary of this mesh ", CURRENT_FUNCTION ); } - break; - } - else if( abs( nodes[localCellNodes[idx_node]][1] ) < tol ) { // lower boundary - _ghostCellsReflectingX[idx_cell] = true; - break; - } - else if( abs( nodes[localCellNodes[idx_node]][1] ) > 0.65 - tol ) { // upper boundary - break; - } - else if( idx_node == _mesh->GetNumNodesPerCell() - 1 ) { - ErrorMessages::Error( " Problem with ghost cell setup and boundary of this mesh ", CURRENT_FUNCTION ); } } } From 64552d5bf6a0de7be27bebaeaed583289c8ff29e Mon Sep 17 00:00:00 2001 From: Steffen Schotthoefer Date: Tue, 18 Jun 2024 13:37:42 -0400 Subject: [PATCH 145/155] set forced connectivity wirte as an option --- include/common/config.hpp | 2 +- src/common/config.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/common/config.hpp b/include/common/config.hpp index 9865e67b..def3b509 100644 --- a/include/common/config.hpp +++ b/include/common/config.hpp @@ -50,7 +50,7 @@ class Config // Mesh unsigned _nCells; /*!< @brief Number of cells in the mesh */ unsigned short _dim; /*!< @brief spatial dimensionality of the mesh/test case */ - bool _forcedConnectivityWrite = false; /*!< @brief If true, the meshconnectivity is always computed and written to .con file */ + bool _forcedConnectivityWrite; /*!< @brief If true, the meshconnectivity is always computed and written to .con file */ // Boundary Conditions /*!< @brief List of all Pairs (marker, BOUNDARY_TYPE), e.g. (farfield,DIRICHLET). diff --git a/src/common/config.cpp b/src/common/config.cpp index afd9de96..d9cf7365 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -221,6 +221,8 @@ void Config::SetConfigOptions() { AddStringOption( "MESH_FILE", _meshFile, string( "mesh.su2" ) ); /*! @brief MESH_FILE \n DESCRIPTION: Name of mesh file \n DEFAULT "" \ingroup Config.*/ AddStringOption( "CT_FILE", _ctFile, string( "/home/pia/kitrt/examples/meshes/phantom.png" ) ); + /*! @brief FORCE_CONNECTIVITY_RECOMPUTE \n DESCRIPTION:If true, mesh recomputes connectivity instead of loading from file \n DEFAULT false \ingroup Config.*/ + AddBoolOption("FORCE_CONNECTIVITY_RECOMPUTE",_forcedConnectivityWrite, false); // Quadrature relatated options /*! @brief QUAD_TYPE \n DESCRIPTION: Type of Quadrature rule \n Options: see @link QUAD_NAME \endlink \n DEFAULT: QUAD_MonteCarlo From 93c8b80ed04f1096cc8598d2c0e3bd4bf89fd49f Mon Sep 17 00:00:00 2001 From: Steffen Date: Sun, 23 Jun 2024 09:27:24 -0400 Subject: [PATCH 146/155] does not write connectivity file anymore when forced connectivity is active --- src/common/mesh.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index aee1e27e..17b49014 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -37,8 +37,10 @@ Mesh::Mesh( const Config* settings, if( !std::filesystem::exists( connectivityFile ) || _settings->GetForcedConnectivity() ) { log->info( "| Compute mesh connectivity..." ); ComputeConnectivity(); // Computes _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes - log->info( "| Save mesh connectivity to file " + connectivityFile ); - WriteConnecitivityToFile( connectivityFile, _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes, _numCells, _dim ); + if( !_settings->GetForcedConnectivity() ) { + log->info( "| Save mesh connectivity to file " + connectivityFile ); + WriteConnecitivityToFile( connectivityFile, _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes, _numCells, _dim ); + } } else { // Resize the outer vector to have nCells elements From 40c15460a68733da920135193898c5a40550e047 Mon Sep 17 00:00:00 2001 From: Steffen Date: Wed, 26 Jun 2024 10:43:14 -0400 Subject: [PATCH 147/155] fixed bug in cell of coord identification --- include/common/mesh.hpp | 8 ++-- src/common/mesh.cpp | 78 +++++++++++++++++++++++++++--------- src/solvers/snsolver_hpc.cpp | 1 - 3 files changed, 65 insertions(+), 22 deletions(-) diff --git a/include/common/mesh.hpp b/include/common/mesh.hpp index 25dfe69c..8d99fc47 100644 --- a/include/common/mesh.hpp +++ b/include/common/mesh.hpp @@ -63,8 +63,6 @@ class Mesh Vector ComputeCellInterfaceMidpoints( const Vector& nodeA, const Vector& nodeB ); /*!< @brief compute the midpoint of the edge between nodeA and nodeB */ - bool IsPointInsideCell( unsigned idx_cell, double x, double y ) const; /*!< @brief Function to check if a point is inside a polygon (cell)*/ - public: Mesh() = delete; // no default constructor @@ -129,7 +127,7 @@ class Mesh /*! @brief Returns index of cell containing the coordinate (x,y) * @return cell_idx: unsigned */ - unsigned GetCellOfKoordinate( double x, double y ) const; + unsigned GetCellOfKoordinate( const double x, const double y ) const; /*! @brief ComputeSlopes calculates the slope in every cell into x and y direction using the divergence theorem. * @param nq is number of quadrature points @@ -157,6 +155,10 @@ class Mesh * @param psiDerX is slope in x direction (gets computed. Slope is stored here) * @param psi is solution for which slope is computed */ void ComputeSlopes1D( unsigned nq, VectorVector& psiDerX, const VectorVector& psi ) const; + + private: + bool isPointInTriangle( double x, double y, double x1, double y1, double x2, double y2, double x3, double y3 ) const; + bool IsPointInsideCell( unsigned idx_cell, double x, double y ) const; /*!< @brief Function to check if a point is inside a polygon (cell)*/ }; #endif // MESH_H diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index 17b49014..ed8cff2a 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -534,18 +534,20 @@ double Mesh::GetDistanceToOrigin( unsigned idx_cell ) const { return sqrt( distance ); } -unsigned Mesh::GetCellOfKoordinate( double x, double y ) const { +unsigned Mesh::GetCellOfKoordinate( const double x, const double y ) const { // Experimental parallel implementation - unsigned koordinate_cell_id = 0; + unsigned koordinate_cell_id = std::numeric_limits::max(); bool found = false; -#pragma omp parallel for + // #pragma omp parallel for shared( found ) for( unsigned idx_cell = 0; idx_cell < _numCells; idx_cell++ ) { if( IsPointInsideCell( idx_cell, x, y ) ) { -#pragma omp critical + // #pragma omp critical { - koordinate_cell_id = idx_cell; - found = true; + if( !found ) { + koordinate_cell_id = idx_cell; + found = true; + } } } // Check if cancellation has been requested @@ -558,17 +560,57 @@ unsigned Mesh::GetCellOfKoordinate( double x, double y ) const { bool Mesh::IsPointInsideCell( unsigned idx_cell, double x, double y ) const { bool inside = false; - for( unsigned i = 0, j = _numNodesPerCell - 1; i < _numNodesPerCell; j = i++ ) { - double xi = _nodes[_cells[idx_cell][i]][0]; - double yi = _nodes[_cells[idx_cell][i]][1]; - double xj = _nodes[_cells[idx_cell][j]][0]; - double yj = _nodes[_cells[idx_cell][j]][1]; - - bool intersect = ( ( yi > y ) != ( yj > y ) ) && ( x < ( xj - xi ) * ( y - yi ) / ( yj - yi ) + xi ); - - if( intersect ) { - inside = true; - } + if( _numNodesPerCell == 3 ) { + inside = isPointInTriangle( x, + y, + _nodes[_cells[idx_cell][0]][0], + _nodes[_cells[idx_cell][0]][1], + _nodes[_cells[idx_cell][1]][0], + _nodes[_cells[idx_cell][1]][1], + _nodes[_cells[idx_cell][2]][0], + _nodes[_cells[idx_cell][2]][1] ); + } + else if( _numNodesPerCell == 4 ) { // quadrilateral cell +> divide into 2 triangles + inside = isPointInTriangle( x, + y, + _nodes[_cells[idx_cell][0]][0], + _nodes[_cells[idx_cell][0]][1], + _nodes[_cells[idx_cell][1]][0], + _nodes[_cells[idx_cell][1]][1], + _nodes[_cells[idx_cell][2]][0], + _nodes[_cells[idx_cell][2]][1] ) || + isPointInTriangle( x, + y, + _nodes[_cells[idx_cell][0]][0], + _nodes[_cells[idx_cell][0]][1], + _nodes[_cells[idx_cell][2]][0], + _nodes[_cells[idx_cell][2]][1], + _nodes[_cells[idx_cell][3]][0], + _nodes[_cells[idx_cell][3]][1] ); + } + else { + ErrorMessages::Error( "Unsupported number of nodes per cell: " + std::to_string( _numNodesPerCell ), CURRENT_FUNCTION ); } + // if( inside ) { + // std::cout << "Cells: " << idx_cell << "pt: " << _cellMidPoints[idx_cell][0] << " " << _cellMidPoints[idx_cell][1] << " pt: " << x << " " << + // y + // << "\n"; + // } + return inside; -} \ No newline at end of file +} + +bool Mesh::isPointInTriangle( double x, double y, double x1, double y1, double x2, double y2, double x3, double y3 ) const { + // Calculate the area of the triangle + double d1, d2, d3; + bool hasNeg, hasPos; + + d1 = ( x - x2 ) * ( y1 - y2 ) - ( x1 - x2 ) * ( y - y2 ); + d2 = ( x - x3 ) * ( y2 - y3 ) - ( x2 - x3 ) * ( y - y3 ); + d3 = ( x - x1 ) * ( y3 - y1 ) - ( x3 - x1 ) * ( y - y1 ); + + hasNeg = ( d1 < 0 ) || ( d2 < 0 ) || ( d3 < 0 ); + hasPos = ( d1 > 0 ) || ( d2 > 0 ) || ( d3 > 0 ); + + return !( hasNeg && hasPos ); +} diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 6fa86801..11c1fe92 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -1338,7 +1338,6 @@ void SNSolverHPC::SetGhostCells() { } // Create the symmetry maps for the quadratures - std::cout << " Setting up symmetry maps " << std::endl; unsigned filled_X_reflection = 0; unsigned filled_Y_reflection = 0; for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { From 77dd9d2f8ca3873a729a4ab2477838c527a6a330 Mon Sep 17 00:00:00 2001 From: Steffen Date: Mon, 1 Jul 2024 16:54:38 -0400 Subject: [PATCH 148/155] added moment output for hpc sn solver --- include/common/config.hpp | 2 +- include/solvers/snsolver_hpc.hpp | 6 ++++-- src/common/config.cpp | 14 ++++++++----- src/main.cpp | 11 +++++------ src/solvers/snsolver_hpc.cpp | 34 ++++++++++++++++++++++++++++---- 5 files changed, 49 insertions(+), 18 deletions(-) diff --git a/include/common/config.hpp b/include/common/config.hpp index def3b509..6957abe0 100644 --- a/include/common/config.hpp +++ b/include/common/config.hpp @@ -62,7 +62,7 @@ class Config std::vector _MarkerNeumann; /*!< @brief Neumann BC markers. */ // Solver - bool _HPC; /* Triggers better performinc solvers */ + bool _HPC; /* Triggers usage of faster SN solvers */ double _CFL; /*!< @brief CFL Number for Solver*/ double _tEnd; /*!< @brief Final Time for Simulation */ PROBLEM_NAME _problemName; /*!< @brief Name of predefined Problem */ diff --git a/include/solvers/snsolver_hpc.hpp b/include/solvers/snsolver_hpc.hpp index fb9c7d5f..25872566 100644 --- a/include/solvers/snsolver_hpc.hpp +++ b/include/solvers/snsolver_hpc.hpp @@ -76,6 +76,8 @@ class SNSolverHPC std::vector _scalarFlux; /*!< @brief dim = _nCells */ // Lattice QOIS + unsigned _nOutputMoments; + double _mass; double _rmsFlux; double _curAbsorptionLattice; /*!< @brief Absorption of particles at Lattice checkerboard regions at current time step */ @@ -169,7 +171,7 @@ class SNSolverHPC Write frequency is given by option VOLUME_OUTPUT_FREQUENCY. Always prints last iteration without iteration affix. @param idx_iter current (pseudo) time iteration */ - void PrintVolumeOutput( int idx_iter ) const; + void PrintVolumeOutput( int idx_iter ); /*! @brief Initialized the output fields and their Names for the screenoutput */ void PrepareScreenOutput(); @@ -215,6 +217,6 @@ class SNSolverHPC void Solve(); /*! @brief Save Output solution to VTK file */ - void PrintVolumeOutput() const; // Only for debugging purposes. + void PrintVolumeOutput() const {}; // Only for debugging purposes. }; #endif // SNSOLVERHPC_H diff --git a/src/common/config.cpp b/src/common/config.cpp index d9cf7365..58ad8cd4 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -221,8 +221,9 @@ void Config::SetConfigOptions() { AddStringOption( "MESH_FILE", _meshFile, string( "mesh.su2" ) ); /*! @brief MESH_FILE \n DESCRIPTION: Name of mesh file \n DEFAULT "" \ingroup Config.*/ AddStringOption( "CT_FILE", _ctFile, string( "/home/pia/kitrt/examples/meshes/phantom.png" ) ); - /*! @brief FORCE_CONNECTIVITY_RECOMPUTE \n DESCRIPTION:If true, mesh recomputes connectivity instead of loading from file \n DEFAULT false \ingroup Config.*/ - AddBoolOption("FORCE_CONNECTIVITY_RECOMPUTE",_forcedConnectivityWrite, false); + /*! @brief FORCE_CONNECTIVITY_RECOMPUTE \n DESCRIPTION:If true, mesh recomputes connectivity instead of loading from file \n DEFAULT false + * \ingroup Config.*/ + AddBoolOption( "FORCE_CONNECTIVITY_RECOMPUTE", _forcedConnectivityWrite, false ); // Quadrature relatated options /*! @brief QUAD_TYPE \n DESCRIPTION: Type of Quadrature rule \n Options: see @link QUAD_NAME \endlink \n DEFAULT: QUAD_MonteCarlo @@ -640,12 +641,15 @@ void Config::SetPostprocessing() { case SN_SOLVER: if( _problemName == PROBLEM_Linesource ) supportedGroups = { MINIMAL, ANALYTIC }; - else + else { supportedGroups = { MINIMAL }; + if( _HPC ) supportedGroups = { MINIMAL, MOMENTS }; + } if( supportedGroups.end() == std::find( supportedGroups.begin(), supportedGroups.end(), _volumeOutput[idx_volOutput] ) ) { - ErrorMessages::Error( "SN_SOLVER only supports volume output MINIMAL and ANALYTIC.\nPlease check your .cfg file.", - CURRENT_FUNCTION ); + ErrorMessages::Error( + "SN_SOLVER only supports volume output MINIMAL and ANALYTIC (and experimentally MOMENTS).\nPlease check your .cfg file.", + CURRENT_FUNCTION ); } if( _volumeOutput[idx_volOutput] == ANALYTIC && _problemName != PROBLEM_Linesource ) { ErrorMessages::Error( "Analytical solution (VOLUME_OUTPUT=ANALYTIC) is only available for the PROBLEM=LINESOURCE.\nPlease " diff --git a/src/main.cpp b/src/main.cpp index 57e1f389..6ea6a411 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -9,9 +9,9 @@ #include "common/config.hpp" #include "common/io.hpp" -#include "solvers/solverbase.hpp" -#include "solvers/snsolver_hpc.hpp" #include "datagenerator/datageneratorbase.hpp" +#include "solvers/snsolver_hpc.hpp" +#include "solvers/solverbase.hpp" #ifdef BUILD_GUI #include @@ -45,14 +45,13 @@ int main( int argc, char** argv ) { } else { // Build solver - if (config->GetHPC()){ + if( config->GetHPC() ) { SNSolverHPC* solver = new SNSolverHPC( config ); // Run solver and export solver->Solve(); - solver->PrintVolumeOutput(); delete solver; - } - else{ + } + else { SolverBase* solver = SolverBase::Create( config ); // Run solver and export solver->Solve(); diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 11c1fe92..88a56d2b 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -11,6 +11,7 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { _settings = settings; _currTime = 0.0; + _nOutputMoments = 2; // Currently only u_1 (x direction) and u_1 (y direction) are supported // Create Mesh _mesh = LoadSU2MeshFromFile( settings ); _settings->SetNCells( _mesh->GetNumCells() ); @@ -269,7 +270,6 @@ void SNSolverHPC::Solve() { // --- Runge Kutta Timestep --- // --- Write Output --- - WriteVolumeOutput( iter ); WriteScalarOutput( iter ); // --- Update Scalar Fluxes @@ -292,13 +292,13 @@ void SNSolverHPC::RKUpdate( std::vector& sol_0, std::vector& sol } } -void SNSolverHPC::PrintVolumeOutput() const { ExportVTK( _settings->GetOutputFile(), _outputFields, _outputFieldNames, _mesh ); } - -void SNSolverHPC::PrintVolumeOutput( int idx_iter ) const { +void SNSolverHPC::PrintVolumeOutput( int idx_iter ) { if( _settings->GetVolumeOutputFrequency() != 0 && idx_iter % (unsigned)_settings->GetVolumeOutputFrequency() == 0 ) { + WriteVolumeOutput( idx_iter ); ExportVTK( _settings->GetOutputFile() + "_" + std::to_string( idx_iter ), _outputFields, _outputFieldNames, _mesh ); // slow } if( idx_iter == (int)_nIter - 1 ) { // Last iteration write without suffix. + WriteVolumeOutput( idx_iter ); ExportVTK( _settings->GetOutputFile(), _outputFields, _outputFieldNames, _mesh ); } } @@ -1190,6 +1190,22 @@ void SNSolverHPC::WriteVolumeOutput( unsigned idx_iter ) { //} break; + case MOMENTS: +#pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { + _outputFields[idx_group][0][idx_cell] = 0.0; + _outputFields[idx_group][1][idx_cell] = 0.0; + for( unsigned idx_moments = 0; idx_moments < _nOutputMoments; idx_moments++ ) { + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + _outputFields[idx_group][0][idx_cell] += + _quadPts[Idx2D( idx_sys, 0, _nDim )] * _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; + _outputFields[idx_group][1][idx_cell] += + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; + } + } + } + break; + default: ErrorMessages::Error( "Volume Output Group not defined for HPC SN Solver!", CURRENT_FUNCTION ); break; } } @@ -1216,6 +1232,16 @@ void SNSolverHPC::PrepareVolumeOutput() { _outputFields[idx_group][0].resize( _nCells ); _outputFieldNames[idx_group][0] = "scalar flux"; break; + case MOMENTS: + // As many entries as there are moments in the system + _outputFields[idx_group].resize( _nOutputMoments ); + _outputFieldNames[idx_group].resize( _nOutputMoments ); + + for( unsigned idx_moment = 0; idx_moment < _nOutputMoments; idx_moment++ ) { + _outputFieldNames[idx_group][idx_moment] = std::string( "u_" + std::to_string( idx_moment ) ); + _outputFields[idx_group][idx_moment].resize( _nCells ); + } + break; default: ErrorMessages::Error( "Volume Output Group not defined for HPC SN Solver!", CURRENT_FUNCTION ); break; } From 99afc447db56caac948470d3233d2e54e89bfe0a Mon Sep 17 00:00:00 2001 From: Steffen Date: Fri, 9 Aug 2024 13:36:07 -0400 Subject: [PATCH 149/155] fixed 2nd order solver --- src/solvers/snsolver_hpc.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 88a56d2b..e7815845 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -255,8 +255,12 @@ void SNSolverHPC::Solve() { ( _spatialOrder == 2 ) ? FluxOrder2() : FluxOrder1(); FVMUpdate(); #pragma omp parallel for - for( unsigned i = 0; i < _nCells; ++i ) { - _sol[i] = 0.5 * ( solRK0[i] + _sol[i] ); // Solution averaging with HEUN + for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { +#pragma omp simd + for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + _sol[Idx2D( idx_cell, idx_sys, _nSys )] = 0.5 * ( solRK0[Idx2D( idx_cell, idx_sys, _nSys )] + + _sol[Idx2D( idx_cell, idx_sys, _nSys )] ); // Solution averaging with HEUN + } } } else { From 7d6591c4f3ebea93ab6d97ef5108cfd7a74ad3a3 Mon Sep 17 00:00:00 2001 From: Steffen Date: Mon, 19 Aug 2024 14:51:04 -0400 Subject: [PATCH 150/155] fixed bug in absorption calculation of the hohlraum center capsule --- src/problems/symmetrichohlraum.cpp | 37 +++++++++++++++--------------- src/solvers/snsolver_hpc.cpp | 3 +-- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index 92d0c3b4..f291789f 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -75,27 +75,28 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _sigmaS[idx_cell] = 95.0; _sigmaT[idx_cell] = 100.0; } - // green area 1 (lower boundary) - if( x > -0.2 + _centerGreen[0] && x < -0.15 + _centerGreen[0] && y > -0.35 + _centerGreen[1] && y < 0.35 + _centerGreen[1] ) { - _sigmaS[idx_cell] = 90.0; - _sigmaT[idx_cell] = 100.0; - } - // green area 2 (upper boundary) - if( x > 0.15 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > -0.35 + _centerGreen[1] && y < 0.35 + _centerGreen[1] ) { - _sigmaS[idx_cell] = 90.0; - _sigmaT[idx_cell] = 100.0; - } - // green area 3 (left boundary) - if( x > -0.2 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > -0.4 + _centerGreen[1] && y < -0.35 + _centerGreen[1] ) { - _sigmaS[idx_cell] = 90.0; - _sigmaT[idx_cell] = 100.0; - } - // green area 4 (right boundary) - if( x > -0.2 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > 0.35 + _centerGreen[1] && y < 0.4 + _centerGreen[1] ) { + // green area 1 (including blue area) + if( x > -0.2 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > -0.4 + _centerGreen[1] && y < 0.4 + _centerGreen[1] ) { _sigmaS[idx_cell] = 90.0; _sigmaT[idx_cell] = 100.0; } - // blue checkered area + //// green area 2 (right boundary) + // if( x > 0.15 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > -0.35 + _centerGreen[1] && y < 0.35 + _centerGreen[1] ) { + // _sigmaS[idx_cell] = 90.0; + // _sigmaT[idx_cell] = 100.0; + // } + //// green area 3 (left boundary) + // if( x > -0.2 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > -0.4 + _centerGreen[1] && y < -0.35 + _centerGreen[1] ) { + // _sigmaS[idx_cell] = 90.0; + // _sigmaT[idx_cell] = 100.0; + // } + //// green area 4 (right boundary) + // if( x > -0.2 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > 0.35 + _centerGreen[1] && y < 0.4 + _centerGreen[1] ) { + // _sigmaS[idx_cell] = 90.0; + // _sigmaT[idx_cell] = 100.0; + // } + + // blue checkered area if( x > -0.15 + _centerGreen[0] && x < 0.15 + _centerGreen[0] && y > -0.35 + _centerGreen[1] && y < 0.35 + _centerGreen[1] ) { _sigmaS[idx_cell] = 50.0; _sigmaT[idx_cell] = 100.0; diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index e7815845..97e4295e 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -562,9 +562,8 @@ void SNSolverHPC::IterPostprocessing() { double x = _cellMidPoints[Idx2D( idx_cell, 0, _nDim )]; double y = _cellMidPoints[Idx2D( idx_cell, 1, _nDim )]; - if( x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && - y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum() ) { + y > -0.4 + _settings->GetPosYCenterGreenHohlraum() && y < 0.4 + _settings->GetPosYCenterGreenHohlraum() ) { _curAbsorptionHohlraumCenter += _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _areas[idx_cell]; } if( ( x < _settings->GetPosRedLeftBorderHohlraum() && y > _settings->GetPosRedLeftBottomHohlraum() && From 7d4efed09848d14a686a6557162d42bf333ef083 Mon Sep 17 00:00:00 2001 From: Steffen Date: Tue, 3 Sep 2024 15:12:42 -0400 Subject: [PATCH 151/155] added total absorption as output field --- src/common/config.cpp | 4 +++- src/solvers/snsolver_hpc.cpp | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 58ad8cd4..bd09d884 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -794,6 +794,7 @@ void Config::SetPostprocessing() { TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, + TOTAL_PARTICLE_ABSORPTION, PROBE_MOMENT_TIME_TRACE, VAR_ABSORPTION_GREEN }; @@ -802,7 +803,7 @@ void Config::SetPostprocessing() { if( it == legalOutputs.end() ) { std::string foundKey = findKey( ScalarOutput_Map, _screenOutput[idx_screenOutput] ); ErrorMessages::Error( - "HERE Illegal output field <" + foundKey + + "Illegal output field <" + foundKey + "> for option SCREEN_OUTPUT for this test case.\n" "Supported fields are: ITER, MASS, RMS_FLUX, VTK_OUTPUT, CSV_OUTPUT, TOTAL_PARTICLE_ABSORPTION_CENTER, \n" "TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, PROBE_MOMENT_TIME_TRACE, CUR_OUTFLOW, \n " @@ -940,6 +941,7 @@ void Config::SetPostprocessing() { TOTAL_PARTICLE_ABSORPTION_CENTER, TOTAL_PARTICLE_ABSORPTION_VERTICAL, TOTAL_PARTICLE_ABSORPTION_HORIZONTAL, + TOTAL_PARTICLE_ABSORPTION, PROBE_MOMENT_TIME_TRACE, VAR_ABSORPTION_GREEN, VAR_ABSORPTION_GREEN_LINE }; diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 97e4295e..9fef7890 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -552,8 +552,8 @@ void SNSolverHPC::IterPostprocessing() { if( _settings->GetProblemName() == PROBLEM_Lattice || _settings->GetProblemName() == PROBLEM_HalfLattice ) { if( IsAbsorptionLattice( _cellMidPoints[Idx2D( idx_cell, 0, _nDim )], _cellMidPoints[Idx2D( idx_cell, 1, _nDim )] ) ) { - double sigmaAPsi = _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ); - _curAbsorptionLattice += sigmaAPsi * _areas[idx_cell]; + double sigmaAPsi = _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _areas[idx_cell]; + _curAbsorptionLattice += sigmaAPsi; _curMaxAbsorptionLattice = ( _curMaxAbsorptionLattice < sigmaAPsi ) ? sigmaAPsi : _curMaxAbsorptionLattice; } } @@ -562,6 +562,8 @@ void SNSolverHPC::IterPostprocessing() { double x = _cellMidPoints[Idx2D( idx_cell, 0, _nDim )]; double y = _cellMidPoints[Idx2D( idx_cell, 1, _nDim )]; + + _curAbsorptionLattice += _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _areas[idx_cell]; if( x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && y > -0.4 + _settings->GetPosYCenterGreenHohlraum() && y < 0.4 + _settings->GetPosYCenterGreenHohlraum() ) { _curAbsorptionHohlraumCenter += _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _areas[idx_cell]; From ada0d55bad330fd0d73e6044fe65fee32504aa03 Mon Sep 17 00:00:00 2001 From: Steffen Date: Wed, 4 Sep 2024 14:54:57 -0400 Subject: [PATCH 152/155] fixed hohrlaum absorption coefficient --- src/problems/hohlraum.cpp | 2 +- src/problems/quarterhohlraum.cpp | 2 +- src/problems/symmetrichohlraum.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/problems/hohlraum.cpp b/src/problems/hohlraum.cpp index 19206993..b22d03fe 100644 --- a/src/problems/hohlraum.cpp +++ b/src/problems/hohlraum.cpp @@ -46,7 +46,7 @@ Hohlraum::Hohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ) : Probl } // blue area if( x > 1.25 || y < 0.05 || y > 1.25 ) { - _sigmaS[idx_cell] = 0.0; + _sigmaS[idx_cell] = 100.0; _sigmaT[idx_cell] = 100.0; } } diff --git a/src/problems/quarterhohlraum.cpp b/src/problems/quarterhohlraum.cpp index e8adc825..c14b73aa 100644 --- a/src/problems/quarterhohlraum.cpp +++ b/src/problems/quarterhohlraum.cpp @@ -86,7 +86,7 @@ QuarterHohlraum::QuarterHohlraum( Config* settings, Mesh* mesh, QuadratureBase* } // black area (upper and lower boundary) if( y > 0.6 || y < -0.6 ) { - _sigmaS[idx_cell] = 0.0; + _sigmaS[idx_cell] = 100.0; _sigmaT[idx_cell] = 100.0; } } diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index f291789f..d238ddfb 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -103,7 +103,7 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa } // black area (upper and lower boundary) if( y > 0.6 || y < -0.6 ) { - _sigmaS[idx_cell] = 0.0; + _sigmaS[idx_cell] = 100.0; _sigmaT[idx_cell] = 100.0; } } From 4837ccc81f63ecd737414e4aa0bd86cacfce8a0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schotth=C3=B6fer?= <35609777+ScSteffen@users.noreply.github.com> Date: Tue, 10 Sep 2024 12:39:33 -0400 Subject: [PATCH 153/155] Mpi sn solver (#49) * remove debugging output * fixed mpi bugs * fixed bug in logging mechanism * hohlraum outputs mpi parallelized * fixed output bug in hohlraum absorption * fix green domain * test ball probing moments * fixed parameter issue with hohlraum * fixed hohlraum parameters. Consitent with original crocett paper from 2019 * fixed issue when cell length is larger than ball * fixed indexing bug --- CMakeLists.txt | 12 +- include/common/mesh.hpp | 4 + include/solvers/snsolver_hpc.hpp | 12 +- src/common/config.cpp | 282 +++++++------ src/common/io.cpp | 23 +- src/common/mesh.cpp | 100 ++++- src/main.cpp | 14 +- src/problems/halflattice.cpp | 4 +- src/problems/hohlraum.cpp | 2 +- src/problems/lattice.cpp | 14 +- src/problems/quarterhohlraum.cpp | 32 +- src/problems/symmetrichohlraum.cpp | 23 +- src/solvers/snsolver_hpc.cpp | 631 +++++++++++++---------------- 13 files changed, 581 insertions(+), 572 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9bd46dec..9cae01d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,6 +8,7 @@ option( BUILD_DOC "builds Doxygen and Sphinx documentation" OFF ) option( BUILD_UNITY "enables unity build for faster compile times" ON ) option( BUILD_CODE_COV "enables compiler option required for code coverage analysis" OFF ) option( BUILD_ML "enables build with tensorflow backend access" OFF ) +option( BUILD_MPI "enables build with MPI access" OFF ) ################################################# @@ -31,6 +32,11 @@ set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH}) find_package( OpenMP REQUIRED ) +if( BUILD_MPI ) + find_package( MPI REQUIRED ) + include_directories( ${MPI_INCLUDE_PATH} ) +endif() + find_package( LAPACK REQUIRED ) include_directories( ${LAPACK_INCLUDE_DIR} ) @@ -55,7 +61,11 @@ include_directories( ${CMAKE_SOURCE_DIR}/ext/blaze ) include_directories( ${CMAKE_SOURCE_DIR}/ext/cpptoml/include ) include_directories( ${CMAKE_SOURCE_DIR}/ext/spdlog/include ) -set( CORE_LIBRARIES ${LAPACK_LIBRARIES} ${BLAS_LIBRARIES} ${VTK_LIBRARIES} OpenMP::OpenMP_CXX -lstdc++fs ) +if( BUILD_MPI ) + set( CORE_LIBRARIES ${LAPACK_LIBRARIES} ${BLAS_LIBRARIES} ${MPI_LIBRARIES} ${VTK_LIBRARIES} OpenMP::OpenMP_CXX -lstdc++fs ) +else() + set( CORE_LIBRARIES ${LAPACK_LIBRARIES} ${BLAS_LIBRARIES} ${VTK_LIBRARIES} OpenMP::OpenMP_CXX -lstdc++fs ) +endif() ################################################# diff --git a/include/common/mesh.hpp b/include/common/mesh.hpp index 8d99fc47..04c5ff7e 100644 --- a/include/common/mesh.hpp +++ b/include/common/mesh.hpp @@ -129,6 +129,10 @@ class Mesh * @return cell_idx: unsigned */ unsigned GetCellOfKoordinate( const double x, const double y ) const; + /*! @brief Returns index of cells contained in the ball around the coordinate (x,y) with radius r + * @return cell_idxs: std::vector */ + std::vector GetCellsofBall( const double x, const double y, const double r ) const; + /*! @brief ComputeSlopes calculates the slope in every cell into x and y direction using the divergence theorem. * @param nq is number of quadrature points * @param psiDerX is slope in x direction (gets computed. Slope is stored here) diff --git a/include/solvers/snsolver_hpc.hpp b/include/solvers/snsolver_hpc.hpp index 25872566..0046621e 100644 --- a/include/solvers/snsolver_hpc.hpp +++ b/include/solvers/snsolver_hpc.hpp @@ -18,6 +18,12 @@ class SNSolverHPC { private: + int _rank; + int _numProcs; + unsigned _localNSys; + unsigned _startSysIdx; + unsigned _endSysIdx; + double _currTime; /*!< @brief wall-time after current iteration */ Config* _settings; /*!< @brief config class for global information */ Mesh* _mesh; @@ -105,7 +111,7 @@ class SNSolverHPC double _curAbsorptionHohlraumVertical; double _curAbsorptionHohlraumHorizontal; double _varAbsorptionHohlraumGreen; - std::vector _probingCellsHohlraum; /*!< @brief Indices of cells that contain a probing sensor */ + std::vector< std::vector> _probingCellsHohlraum; /*!< @brief Indices of cells that contain a probing sensor */ std::vector _probingMoments; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ unsigned _probingMomentsTimeIntervals; /*!< @brief Solution Momnets at the probing cells that contain a probing sensor */ @@ -147,10 +153,6 @@ class SNSolverHPC void IterPostprocessing(); - /*! @brief Computes the finite Volume update step for the current iteration - @param idx_iter current (peudo) time iteration */ - void RKUpdate( std::vector& sol0, std::vector& sol_rk ); - void SetGhostCells(); /*!< @brief Sets vector of ghost cells for // Helper diff --git a/src/common/config.cpp b/src/common/config.cpp index bd09d884..1483ac77 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -5,7 +5,9 @@ * * Disclaimer: This class structure was copied and modifed with open source permission from SU2 v7.0.3 https://su2code.github.io/ */ - +#ifdef BUILD_MPI +#include +#endif #include "common/config.hpp" #include "common/globalconstants.hpp" #include "common/optionstructure.hpp" @@ -1204,159 +1206,169 @@ bool Config::TokenizeString( string& str, string& option_name, vector& o } void Config::InitLogger() { + int rank = 0; +#ifdef BUILD_MPI + MPI_Comm_rank( MPI_COMM_WORLD, &rank ); // Initialize MPI +#endif - // Declare Logger - spdlog::level::level_enum terminalLogLvl; - spdlog::level::level_enum fileLogLvl; + if( rank == 0 ) { - // Choose Logger + // Declare Logger + spdlog::level::level_enum terminalLogLvl; + spdlog::level::level_enum fileLogLvl; + + // Choose Logger #ifdef BUILD_TESTING - terminalLogLvl = spdlog::level::err; - fileLogLvl = spdlog::level::info; + terminalLogLvl = spdlog::level::err; + fileLogLvl = spdlog::level::info; #elif NDEBUG - terminalLogLvl = spdlog::level::info; - fileLogLvl = spdlog::level::info; + terminalLogLvl = spdlog::level::info; + fileLogLvl = spdlog::level::info; #else - terminalLogLvl = spdlog::level::debug; - fileLogLvl = spdlog::level::debug; + terminalLogLvl = spdlog::level::debug; + fileLogLvl = spdlog::level::debug; #endif - // create log dir if not existent - if( !std::filesystem::exists( _logDir ) ) { - std::filesystem::create_directory( _logDir ); - } - - if( !spdlog::get( "event" ) ) { - // create sinks if level is not off - std::vector sinks; - if( terminalLogLvl != spdlog::level::off ) { - // create spdlog terminal sink - auto terminalSink = std::make_shared(); - terminalSink->set_level( terminalLogLvl ); - terminalSink->set_pattern( "%v" ); - sinks.push_back( terminalSink ); + // create log dir if not existent + if( !std::filesystem::exists( _logDir ) ) { + std::filesystem::create_directory( _logDir ); } - if( fileLogLvl != spdlog::level::off ) { - // define filename on root - // int pe = 0; - // MPI_Comm_rank( MPI_COMM_WORLD, &pe ); - // char cfilename[1024]; - - // if( pe == 0 ) { - // get date and time - time_t now = time( nullptr ); - struct tm tstruct; - char buf[80]; - tstruct = *localtime( &now ); - strftime( buf, sizeof( buf ), "%Y-%m-%d_%X", &tstruct ); - - // set filename - std::string filepathStr; - if( _logFileName.compare( "use_date" ) == 0 ) { - _logFileName = buf; // set filename to date and time - filepathStr = _logDir + _logFileName; + + if( !spdlog::get( "event" ) ) { + // create sinks if level is not off + std::vector sinks; + if( terminalLogLvl != spdlog::level::off ) { + // create spdlog terminal sink + auto terminalSink = std::make_shared(); + terminalSink->set_level( terminalLogLvl ); + terminalSink->set_pattern( "%v" ); + sinks.push_back( terminalSink ); } - else { - std::filesystem::path filePath( _logDir + _logFileName ); - std::string baseFilename( _logDir + _logFileName ); - filepathStr = _logDir + _logFileName; - // Check if the file with the original name exists - if( std::filesystem::exists( filePath ) ) { - // Extract the stem and extension - std::string stem = filePath.stem().string(); - std::string extension = filePath.extension().string(); - - // Counter for incrementing the filename - int counter = 1; - - // Keep incrementing the counter until a unique filename is found - while( std::filesystem::exists( filePath ) ) { - stem = baseFilename + std::to_string( counter ); - filePath.replace_filename( stem + extension ); - counter++; + if( fileLogLvl != spdlog::level::off ) { + // define filename on root + // int pe = 0; + // MPI_Comm_rank( MPI_COMM_WORLD, &pe ); + // char cfilename[1024]; + + // if( pe == 0 ) { + // get date and time + time_t now = time( nullptr ); + struct tm tstruct; + char buf[80]; + tstruct = *localtime( &now ); + strftime( buf, sizeof( buf ), "%Y-%m-%d_%X", &tstruct ); + + // set filename + std::string filepathStr; + if( _logFileName.compare( "use_date" ) == 0 ) { + _logFileName = buf; // set filename to date and time + filepathStr = _logDir + _logFileName; + } + else { + std::filesystem::path filePath( _logDir + _logFileName ); + std::string baseFilename( _logDir + _logFileName ); + filepathStr = _logDir + _logFileName; + // Check if the file with the original name exists + if( std::filesystem::exists( filePath ) ) { + // Extract the stem and extension + std::string stem = filePath.stem().string(); + std::string extension = filePath.extension().string(); + + // Counter for incrementing the filename + int counter = 1; + + // Keep incrementing the counter until a unique filename is found + while( std::filesystem::exists( filePath ) ) { + stem = baseFilename + std::to_string( counter ); + filePath.replace_filename( stem + extension ); + counter++; + } } + filepathStr = filePath.string(); } - filepathStr = filePath.string(); + //} + // MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); + // MPI_Barrier( MPI_COMM_WORLD ); + + // create spdlog file sink + auto fileSink = std::make_shared( filepathStr ); + fileSink->set_level( fileLogLvl ); + fileSink->set_pattern( "%Y-%m-%d %H:%M:%S.%f | %v" ); + sinks.push_back( fileSink ); } - //} - // MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); - // MPI_Barrier( MPI_COMM_WORLD ); - - // create spdlog file sink - auto fileSink = std::make_shared( filepathStr ); - fileSink->set_level( fileLogLvl ); - fileSink->set_pattern( "%Y-%m-%d %H:%M:%S.%f | %v" ); - sinks.push_back( fileSink ); - } - // register all sinks - auto event_logger = std::make_shared( "event", begin( sinks ), end( sinks ) ); - spdlog::register_logger( event_logger ); - spdlog::flush_every( std::chrono::seconds( 5 ) ); - } + // register all sinks + auto event_logger = std::make_shared( "event", begin( sinks ), end( sinks ) ); + spdlog::register_logger( event_logger ); + spdlog::flush_every( std::chrono::seconds( 5 ) ); + } - if( !spdlog::get( "tabular" ) ) { - // create sinks if level is not off - std::vector sinks; - if( fileLogLvl != spdlog::level::off ) { - // define filename on root - // int pe = 0; - // MPI_Comm_rank( MPI_COMM_WORLD, &pe ); - // char cfilename[1024]; - - // if( pe == 0 ) { - // get date and time - time_t now = time( nullptr ); - struct tm tstruct; - char buf[80]; - tstruct = *localtime( &now ); - strftime( buf, sizeof( buf ), "%Y-%m-%d_%X.csv", &tstruct ); - - // set filename - // set filename - std::string filepathStr; - if( _logFileName.compare( "use_date" ) == 0 ) { - _logFileName = buf; // set filename to date and time - filepathStr = _logDir + _logFileName + ".csv"; - } - else { - std::filesystem::path filePath( _logDir + _logFileName + ".csv" ); - std::string baseFilename( _logDir + _logFileName ); - filepathStr = _logDir + _logFileName + ".csv"; - // Check if the file with the original name exists - if( std::filesystem::exists( filePath ) ) { - // Extract the stem and extension - std::string stem = filePath.stem().string(); - std::string extension = filePath.extension().string(); - - // Counter for incrementing the filename - int counter = 1; - - // Keep incrementing the counter until a unique filename is found - while( std::filesystem::exists( filePath ) ) { - stem = baseFilename + std::to_string( counter ); - filePath.replace_filename( stem + extension ); - counter++; + if( !spdlog::get( "tabular" ) ) { + // create sinks if level is not off + std::vector sinks; + if( fileLogLvl != spdlog::level::off ) { + // define filename on root + // int pe = 0; + // MPI_Comm_rank( MPI_COMM_WORLD, &pe ); + // char cfilename[1024]; + + // if( pe == 0 ) { + // get date and time + time_t now = time( nullptr ); + struct tm tstruct; + char buf[80]; + tstruct = *localtime( &now ); + strftime( buf, sizeof( buf ), "%Y-%m-%d_%X.csv", &tstruct ); + + // set filename + // set filename + std::string filepathStr; + if( _logFileName.compare( "use_date" ) == 0 ) { + _logFileName = buf; // set filename to date and time + filepathStr = _logDir + _logFileName + ".csv"; + } + else { + std::filesystem::path filePath( _logDir + _logFileName + ".csv" ); + std::string baseFilename( _logDir + _logFileName ); + filepathStr = _logDir + _logFileName + ".csv"; + // Check if the file with the original name exists + if( std::filesystem::exists( filePath ) ) { + // Extract the stem and extension + std::string stem = filePath.stem().string(); + std::string extension = filePath.extension().string(); + + // Counter for incrementing the filename + int counter = 1; + + // Keep incrementing the counter until a unique filename is found + while( std::filesystem::exists( filePath ) ) { + stem = baseFilename + std::to_string( counter ); + filePath.replace_filename( stem + extension ); + counter++; + } } + filepathStr = filePath.string(); } - filepathStr = filePath.string(); + //} + // MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); + // MPI_Barrier( MPI_COMM_WORLD ); + + // create spdlog file sink + auto fileSink = std::make_shared( filepathStr ); + fileSink->set_level( fileLogLvl ); + fileSink->set_pattern( "%Y-%m-%d %H:%M:%S.%f ,%v" ); + sinks.push_back( fileSink ); } - //} - // MPI_Bcast( &cfilename, sizeof( cfilename ), MPI_CHAR, 0, MPI_COMM_WORLD ); - // MPI_Barrier( MPI_COMM_WORLD ); - - // create spdlog file sink - auto fileSink = std::make_shared( filepathStr ); - fileSink->set_level( fileLogLvl ); - fileSink->set_pattern( "%Y-%m-%d %H:%M:%S.%f ,%v" ); - sinks.push_back( fileSink ); - } - // register all sinks - auto tabular_logger = std::make_shared( "tabular", begin( sinks ), end( sinks ) ); - spdlog::register_logger( tabular_logger ); - spdlog::flush_every( std::chrono::seconds( 5 ) ); + // register all sinks + auto tabular_logger = std::make_shared( "tabular", begin( sinks ), end( sinks ) ); + spdlog::register_logger( tabular_logger ); + spdlog::flush_every( std::chrono::seconds( 5 ) ); + } } +#ifdef BUILD_MPI + MPI_Barrier( MPI_COMM_WORLD ); +#endif } // Function to find the key for a given value in a map diff --git a/src/common/io.cpp b/src/common/io.cpp index 39fcac9d..b19ed8e4 100644 --- a/src/common/io.cpp +++ b/src/common/io.cpp @@ -14,10 +14,14 @@ #include #include #include + +#ifdef BUILD_MPI +#include +#endif + +#include #include #include -// #include -#include #include #include #include @@ -141,7 +145,7 @@ void ExportVTK( const std::string fileName, Mesh* LoadSU2MeshFromFile( const Config* settings ) { auto log = spdlog::get( "event" ); - log->info( "| Importing mesh. This may take a while for large meshes." ); + // log->info( "| Importing mesh. This may take a while for large meshes." ); unsigned dim; std::vector nodes; std::vector> cells; @@ -300,7 +304,7 @@ Mesh* LoadSU2MeshFromFile( const Config* settings ) { ErrorMessages::Error( "Cannot open mesh file '" + settings->GetMeshFile() + "!", CURRENT_FUNCTION ); } ifs.close(); - log->info( "| Mesh imported." ); + // log->info( "| Mesh imported." ); return new Mesh( settings, nodes, cells, boundaries ); } @@ -461,8 +465,11 @@ std::string ParseArguments( int argc, char* argv[] ) { void PrintLogHeader( std::string inputFile ) { int nprocs = 1; int rank = 0; - // MPI_Comm_size( MPI_COMM_WORLD, &nprocs ); - // MPI_Comm_rank( MPI_COMM_WORLD, &rank ); +#ifdef BUILD_MPI + // Initialize MPI + MPI_Comm_size( MPI_COMM_WORLD, &nprocs ); + MPI_Comm_rank( MPI_COMM_WORLD, &rank ); +#endif if( rank == 0 ) { auto log = spdlog::get( "event" ); @@ -498,7 +505,9 @@ void PrintLogHeader( std::string inputFile ) { } // log->info( "------------------------------------------------------------------------" ); } - // MPI_Barrier( MPI_COMM_WORLD ); +#ifdef BUILD_MPI + MPI_Barrier( MPI_COMM_WORLD ); +#endif } /* diff --git a/src/common/mesh.cpp b/src/common/mesh.cpp index ed8cff2a..8ff2f2d7 100644 --- a/src/common/mesh.cpp +++ b/src/common/mesh.cpp @@ -6,6 +6,9 @@ #include #include #include +#ifdef BUILD_MPI +#include +#endif #include #include @@ -23,10 +26,22 @@ Mesh::Mesh( const Config* settings, else { ErrorMessages::Error( "Unsupported mesh dimension!", CURRENT_FUNCTION ); } - auto log = spdlog::get( "event" ); - log->info( "| Compute cell areas..." ); + int nprocs = 1; + int rank = 0; +#ifdef BUILD_MPI + MPI_Comm_size( MPI_COMM_WORLD, &nprocs ); + MPI_Comm_rank( MPI_COMM_WORLD, &rank ); +#endif + if( rank == 0 ) { + + auto log = spdlog::get( "event" ); + log->info( "| Compute cell areas..." ); + } ComputeCellAreas(); - log->info( "| Compute cell midpoints..." ); + if( rank == 0 ) { + auto log = spdlog::get( "event" ); + log->info( "| Compute cell midpoints..." ); + } ComputeCellMidpoints(); // Connectivity @@ -35,11 +50,20 @@ Mesh::Mesh( const Config* settings, connectivityFile = connectivityFile.substr( 0, lastDotIndex ); connectivityFile += ".con"; if( !std::filesystem::exists( connectivityFile ) || _settings->GetForcedConnectivity() ) { - log->info( "| Compute mesh connectivity..." ); + if( rank == 0 ) { + auto log = spdlog::get( "event" ); + + log->info( "| Compute mesh connectivity..." ); + } ComputeConnectivity(); // Computes _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes if( !_settings->GetForcedConnectivity() ) { - log->info( "| Save mesh connectivity to file " + connectivityFile ); - WriteConnecitivityToFile( connectivityFile, _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes, _numCells, _dim ); + if( rank == 0 ) { + auto log = spdlog::get( "event" ); + + log->info( "| Save mesh connectivity to file " + connectivityFile ); + WriteConnecitivityToFile( + connectivityFile, _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes, _numCells, _dim ); + } } } else { @@ -48,19 +72,33 @@ Mesh::Mesh( const Config* settings, _cellInterfaceMidPoints.resize( _numCells ); _cellNormals.resize( _numCells ); _cellBoundaryTypes.resize( _numCells ); - log->info( "| Load mesh connectivity from file " + connectivityFile ); + if( rank == 0 ) { + auto log = spdlog::get( "event" ); + log->info( "| Load mesh connectivity from file " + connectivityFile ); + } LoadConnectivityFromFile( connectivityFile, _cellNeighbors, _cellInterfaceMidPoints, _cellNormals, _cellBoundaryTypes, _numCells, _numNodesPerCell, _dim ); } - log->info( "| Compute boundary..." ); + if( rank == 0 ) { + auto log = spdlog::get( "event" ); + log->info( "| Compute boundary..." ); + } ComputeBounds(); - log->info( "| Mesh created." ); + if( rank == 0 ) { + auto log = spdlog::get( "event" ); + log->info( "| Mesh created." ); + } } Mesh::~Mesh() {} void Mesh::ComputeConnectivity() { - auto log = spdlog::get( "event" ); + int nprocs = 1; + int rank = 0; +#ifdef BUILD_MPI + MPI_Comm_size( MPI_COMM_WORLD, &nprocs ); + MPI_Comm_rank( MPI_COMM_WORLD, &rank ); +#endif unsigned comm_size = 1; // No MPI implementation right now // determine number/chunk size and indices of cells treated by each mpi thread (deactivated for now) @@ -81,8 +119,10 @@ void Mesh::ComputeConnectivity() { std::map, std::vector> edge_to_cells; // Step 1: Build a mapping from edges to cells - log->info( "| ...map edges to cells..." ); - + if( rank == 0 ) { + auto log = spdlog::get( "event" ); + log->info( "| ...map edges to cells..." ); + } for( unsigned i = 0; i < _numCells; ++i ) { const auto& cell = _cells[i]; for( unsigned j = 0; j < _numNodesPerCell; ++j ) { @@ -94,7 +134,10 @@ void Mesh::ComputeConnectivity() { } // Step 2: Determine neighbors - log->info( "| ...determine neighbors of cells..." ); + if( rank == 0 ) { + auto log = spdlog::get( "event" ); + log->info( "| ...determine neighbors of cells..." ); + } for( const auto& item : edge_to_cells ) { const auto& cell_list = item.second; @@ -558,6 +601,37 @@ unsigned Mesh::GetCellOfKoordinate( const double x, const double y ) const { return koordinate_cell_id; } +std::vector Mesh::GetCellsofBall( const double x, const double y, const double r ) const { + std::vector cells_in_ball; + + // Experimental parallel implementation + // #pragma omp parallel for + for( unsigned idx_cell = 0; idx_cell < _numCells; idx_cell++ ) { + // Assume GetCellCenter returns the center coordinates of the cell + double cell_x = _cellMidPoints[idx_cell][0]; + double cell_y = _cellMidPoints[idx_cell][1]; + + // Calculate the distance from the cell center to the point (x, y) + double distance = std::sqrt( ( cell_x - x ) * ( cell_x - x ) + ( cell_y - y ) * ( cell_y - y ) ); + + if( distance <= r ) { + // #pragma omp critical + { cells_in_ball.push_back( idx_cell ); } + } + } + + if( cells_in_ball.empty() ) { // take the only cell that contains the point + std::cout << "No cells found within the ball centered at (" << x << "," << y << ") with radius " << r << "." << std::endl; + std::cout << "Taking the only cell that contains the point." << std::endl; + cells_in_ball.push_back( GetCellOfKoordinate( x, y ) ); + // ErrorMessages::Error( "No cells found within the ball centered at (" + std::to_string( x ) + "," + std::to_string( y ) + ") with radius " + + // std::to_string( r ) + ".", + // CURRENT_FUNCTION ); + } + + return cells_in_ball; +} + bool Mesh::IsPointInsideCell( unsigned idx_cell, double x, double y ) const { bool inside = false; if( _numNodesPerCell == 3 ) { diff --git a/src/main.cpp b/src/main.cpp index 6ea6a411..07cfcc1f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4,6 +4,9 @@ * @version: 0.1 */ +#ifdef BUILD_MPI +#include +#endif #include #include @@ -26,9 +29,11 @@ int main( int argc, char** argv ) { mw.show(); return app.exec(); #else - // wchar_t* program = Py_DecodeLocale( argv[0], NULL ); - // Py_SetProgramName( program ); - +// wchar_t* program = Py_DecodeLocale( argv[0], NULL ); +// Py_SetProgramName( program ); +#ifdef BUILD_MPI + MPI_Init( &argc, &argv ); +#endif std::string filename = ParseArguments( argc, argv ); // CD Load Settings from File @@ -61,6 +66,9 @@ int main( int argc, char** argv ) { } delete config; +#ifdef BUILD_MPI + MPI_Finalize(); +#endif return EXIT_SUCCESS; #endif diff --git a/src/problems/halflattice.cpp b/src/problems/halflattice.cpp index 91434d45..77a50d9a 100644 --- a/src/problems/halflattice.cpp +++ b/src/problems/halflattice.cpp @@ -36,8 +36,8 @@ HalfLattice_SN::HalfLattice_SN( Config* settings, Mesh* mesh, QuadratureBase* qu } else { auto log = spdlog::get( "event" ); - log->info( "| " ); - log->info( "| Lattice test case WITHOUT individual scattering and absorption values for each block. " ); + //log->info( "| " ); + //log->info( "| Lattice test case WITHOUT individual scattering and absorption values for each block. " ); // For absorption cells: set scattering XS to 0 and absorption to 10 auto cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { diff --git a/src/problems/hohlraum.cpp b/src/problems/hohlraum.cpp index b22d03fe..19206993 100644 --- a/src/problems/hohlraum.cpp +++ b/src/problems/hohlraum.cpp @@ -46,7 +46,7 @@ Hohlraum::Hohlraum( Config* settings, Mesh* mesh, QuadratureBase* quad ) : Probl } // blue area if( x > 1.25 || y < 0.05 || y > 1.25 ) { - _sigmaS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 0.0; _sigmaT[idx_cell] = 100.0; } } diff --git a/src/problems/lattice.cpp b/src/problems/lattice.cpp index e7745cc9..f742f296 100644 --- a/src/problems/lattice.cpp +++ b/src/problems/lattice.cpp @@ -20,9 +20,9 @@ Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ) : P _totalAbsorptionLattice = 0.0; if( _settings->GetNLatticeAbsIndividual() == 49 && _settings->GetNLatticeScatterIndividual() == 49 ) { // Individual values set - auto log = spdlog::get( "event" ); - log->info( "| " ); - log->info( "| Lattice test case WITH individual scattering and absorption values for each block. " ); + // auto log = spdlog::get( "event" ); + // log->info( "| " ); + // log->info( "| Lattice test case WITH individual scattering and absorption values for each block. " ); auto cellMids = _mesh->GetCellMidPoints(); @@ -35,10 +35,10 @@ Lattice_SN::Lattice_SN( Config* settings, Mesh* mesh, QuadratureBase* quad ) : P } } else { - auto log = spdlog::get( "event" ); - log->info( "| " ); - log->info( "| Lattice test case WITHOUT individual scattering and absorption values for each block. " ); - // For absorption cells: set scattering XS to 0 and absorption to 10 + // auto log = spdlog::get( "event" ); + // log->info( "| " ); + // log->info( "| Lattice test case WITHOUT individual scattering and absorption values for each block. " ); + // For absorption cells: set scattering XS to 0 and absorption to 10 auto cellMids = _mesh->GetCellMidPoints(); for( unsigned j = 0; j < cellMids.size(); ++j ) { if( IsAbsorption( cellMids[j] ) ) { diff --git a/src/problems/quarterhohlraum.cpp b/src/problems/quarterhohlraum.cpp index c14b73aa..094f785e 100644 --- a/src/problems/quarterhohlraum.cpp +++ b/src/problems/quarterhohlraum.cpp @@ -49,44 +49,24 @@ QuarterHohlraum::QuarterHohlraum( Config* settings, Mesh* mesh, QuadratureBase* double x = _mesh->GetCellMidPoints()[idx_cell][0]; double y = _mesh->GetCellMidPoints()[idx_cell][1]; - // red area left - if( x < -0.6 && y > -0.4 && y < 0.4 ) { - _sigmaS[idx_cell] = 95.0; - _sigmaT[idx_cell] = 100.0; - } // red area right - if( x > _posRedRightBorder && y > -0.4 && y < _redRightTop ) { + if( x > _posRedRightBorder && y < _redRightTop ) { _sigmaS[idx_cell] = 95.0; _sigmaT[idx_cell] = 100.0; } - // green area 1 (lower boundary) - if( x > -0.2 && x < -0.15 && y > -0.35 && y < 0.35 ) { - _sigmaS[idx_cell] = 90.0; - _sigmaT[idx_cell] = 100.0; - } - // green area 2 (upper boundary) - if( x > 0.15 && x < 0.2 && y > -0.35 && y < 0.35 ) { - _sigmaS[idx_cell] = 90.0; - _sigmaT[idx_cell] = 100.0; - } - // green area 3 (left boundary) - if( x > -0.2 && x < 0.2 && y > -0.4 && y < -0.35 ) { + // green and blue area + if( x > -0.2 && x < 0.2 && y > -0.4 && y < 0.4 ) { _sigmaS[idx_cell] = 90.0; _sigmaT[idx_cell] = 100.0; } - // green area 4 (right boundary) - if( x > -0.2 && x < 0.2 && y > 0.35 && y < 0.4 ) { - _sigmaS[idx_cell] = 90.0; - _sigmaT[idx_cell] = 100.0; - } - // blue checkered area + // blue checkered area (overwrites part of green n blue area) if( x > -0.15 && x < 0.15 && y > -0.35 && y < 0.35 ) { - _sigmaS[idx_cell] = 50.0; + _sigmaS[idx_cell] = 0.0; _sigmaT[idx_cell] = 100.0; } // black area (upper and lower boundary) if( y > 0.6 || y < -0.6 ) { - _sigmaS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 50.0; _sigmaT[idx_cell] = 100.0; } } diff --git a/src/problems/symmetrichohlraum.cpp b/src/problems/symmetrichohlraum.cpp index d238ddfb..73a65bc0 100644 --- a/src/problems/symmetrichohlraum.cpp +++ b/src/problems/symmetrichohlraum.cpp @@ -75,35 +75,20 @@ SymmetricHohlraum::SymmetricHohlraum( Config* settings, Mesh* mesh, QuadratureBa _sigmaS[idx_cell] = 95.0; _sigmaT[idx_cell] = 100.0; } + // green area 1 (including blue area) if( x > -0.2 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > -0.4 + _centerGreen[1] && y < 0.4 + _centerGreen[1] ) { _sigmaS[idx_cell] = 90.0; _sigmaT[idx_cell] = 100.0; } - //// green area 2 (right boundary) - // if( x > 0.15 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > -0.35 + _centerGreen[1] && y < 0.35 + _centerGreen[1] ) { - // _sigmaS[idx_cell] = 90.0; - // _sigmaT[idx_cell] = 100.0; - // } - //// green area 3 (left boundary) - // if( x > -0.2 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > -0.4 + _centerGreen[1] && y < -0.35 + _centerGreen[1] ) { - // _sigmaS[idx_cell] = 90.0; - // _sigmaT[idx_cell] = 100.0; - // } - //// green area 4 (right boundary) - // if( x > -0.2 + _centerGreen[0] && x < 0.2 + _centerGreen[0] && y > 0.35 + _centerGreen[1] && y < 0.4 + _centerGreen[1] ) { - // _sigmaS[idx_cell] = 90.0; - // _sigmaT[idx_cell] = 100.0; - // } - - // blue checkered area + // blue checkered area (overwrites part of green n blue area) if( x > -0.15 + _centerGreen[0] && x < 0.15 + _centerGreen[0] && y > -0.35 + _centerGreen[1] && y < 0.35 + _centerGreen[1] ) { - _sigmaS[idx_cell] = 50.0; + _sigmaS[idx_cell] = 0.0; _sigmaT[idx_cell] = 100.0; } // black area (upper and lower boundary) if( y > 0.6 || y < -0.6 ) { - _sigmaS[idx_cell] = 100.0; + _sigmaS[idx_cell] = 50.0; _sigmaT[idx_cell] = 100.0; } } diff --git a/src/solvers/snsolver_hpc.cpp b/src/solvers/snsolver_hpc.cpp index 9fef7890..d5816bb7 100644 --- a/src/solvers/snsolver_hpc.cpp +++ b/src/solvers/snsolver_hpc.cpp @@ -1,13 +1,26 @@ -#include "solvers/snsolver_hpc.hpp" +#ifdef BUILD_MPI +#include +#endif #include "common/config.hpp" #include "common/io.hpp" #include "common/mesh.hpp" #include "kernels/scatteringkernelbase.hpp" #include "problems/problembase.hpp" #include "quadratures/quadraturebase.hpp" +#include "solvers/snsolver_hpc.hpp" #include "toolboxes/textprocessingtoolbox.hpp" SNSolverHPC::SNSolverHPC( Config* settings ) { +#ifdef BUILD_MPI + // Initialize MPI + MPI_Comm_size( MPI_COMM_WORLD, &_numProcs ); + MPI_Comm_rank( MPI_COMM_WORLD, &_rank ); +#endif +#ifndef BUILD_MPI + _numProcs = 1; // default values + _rank = 0; +#endif + _settings = settings; _currTime = 0.0; @@ -18,15 +31,20 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { auto quad = QuadratureBase::Create( settings ); _settings->SetNQuadPoints( quad->GetNq() ); - _problem = ProblemBase::Create( _settings, _mesh, quad ); - _nCells = _mesh->GetNumCells(); _nNbr = _mesh->GetNumNodesPerCell(); _nDim = _mesh->GetDim(); _nNodes = _mesh->GetNumNodes(); - _nq = quad->GetNq(); - _nSys = _nq; + _nq = quad->GetNq(); + _nSys = _nq; + _localNSys = _nq / _numProcs; + _startSysIdx = _rank * _localNSys; + _endSysIdx = _rank * _localNSys + _localNSys; + if( _rank == _numProcs - 1 ) { + _localNSys += _nq % _numProcs; + _endSysIdx = _nSys; + } _spatialOrder = _settings->GetSpatialOrder(); _temporalOrder = _settings->GetTemporalOrder(); @@ -41,25 +59,21 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { _relativeCellVertices = std::vector( _nCells * _nNbr * _nDim ); // Slope - _solDx = std::vector( _nCells * _nSys * _nDim ); - _limiter = std::vector( _nCells * _nSys ); + _solDx = std::vector( _nCells * _localNSys * _nDim ); + _limiter = std::vector( _nCells * _localNSys ); // Physics - _sigmaS = std::vector( _nCells ); - _sigmaT = std::vector( _nCells ); - _source = std::vector( _nCells * _nSys ); - _scatteringKernel = std::vector( _nSys * _nSys ); + _sigmaS = std::vector( _nCells ); + _sigmaT = std::vector( _nCells ); + _source = std::vector( _nCells * _localNSys ); // Quadrature - _quadPts = std::vector( _nSys * _nDim ); - _quadWeights = std::vector( _nSys ); - _scatteringKernel = std::vector( _nSys * _nSys ); - _quadratureYReflection = std::vector( _nSys ); - _quadratureXReflection = std::vector( _nSys ); + _quadPts = std::vector( _localNSys * _nDim ); + _quadWeights = std::vector( _localNSys ); // Solution - _sol = std::vector( _nCells * _nSys ); - _flux = std::vector( _nCells * _nSys ); + _sol = std::vector( _nCells * _localNSys ); + _flux = std::vector( _nCells * _localNSys ); _scalarFlux = std::vector( _nCells ); _localMaxOrdinateOutflow = std::vector( _nCells ); @@ -83,27 +97,20 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { auto quadPoints = quad->GetPoints(); auto quadWeights = quad->GetWeights(); - auto initialCondition = _problem->SetupIC(); - auto sigmaT = _problem->GetTotalXS( Vector( _nIter, 0.0 ) ); - auto sigmaS = _problem->GetScatteringXS( Vector( _nIter, 0.0 ) ); - auto source = _problem->GetExternalSource( Vector( _nIter, 0.0 ) ); + _problem = ProblemBase::Create( _settings, _mesh, quad ); + auto sigmaT = _problem->GetTotalXS( Vector( _nIter, 0.0 ) ); + auto sigmaS = _problem->GetScatteringXS( Vector( _nIter, 0.0 ) ); + auto source = _problem->GetExternalSource( Vector( _nIter, 0.0 ) ); // Copy to everything to solver _mass = 0; - - ScatteringKernel* k = ScatteringKernel::CreateScatteringKernel( settings->GetKernelName(), quad ); - auto scatteringKernel = k->GetScatteringKernel(); - #pragma omp parallel for - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { for( unsigned idx_dim = 0; idx_dim < _nDim; idx_dim++ ) { - _quadPts[Idx2D( idx_sys, idx_dim, _nDim )] = quadPoints[idx_sys][idx_dim]; - } - _quadWeights[idx_sys] = 2.0 * quadWeights[idx_sys]; // Rescaling of quadweights TODO: Check if this needs general refactoring - - for( unsigned idx_sys2 = 0; idx_sys2 < _nSys; idx_sys2++ ) { - _scatteringKernel[Idx2D( idx_sys, idx_sys2, _nSys )] = scatteringKernel( idx_sys, idx_sys2 ); + _quadPts[Idx2D( idx_sys, idx_dim, _nDim )] = quadPoints[idx_sys + _startSysIdx][idx_dim]; } + _quadWeights[idx_sys] = + 2.0 * quadWeights[idx_sys + _startSysIdx]; // Rescaling of quadweights TODO: Check if this needs general refactoring } #pragma omp parallel for @@ -132,23 +139,26 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { _sigmaT[idx_cell] = sigmaT[0][idx_cell]; _scalarFlux[idx_cell] = 0; - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { - _source[Idx2D( idx_cell, idx_sys, _nSys )] = source[0][idx_cell][0]; // CAREFUL HERE hardcoded to isotropic source - _sol[Idx2D( idx_cell, idx_sys, _nSys )] = initialCondition[idx_cell][idx_sys]; + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { + _source[Idx2D( idx_cell, idx_sys, _localNSys )] = source[0][idx_cell][0]; // CAREFUL HERE hardcoded to isotropic source + _sol[Idx2D( idx_cell, idx_sys, _localNSys )] = 0.0; // initial condition is zero - _scalarFlux[idx_cell] += _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; + _scalarFlux[idx_cell] += _sol[Idx2D( idx_cell, idx_sys, _localNSys )] * _quadWeights[idx_sys]; } - _mass += _scalarFlux[idx_cell] * _areas[idx_cell]; + // _mass += _scalarFlux[idx_cell] * _areas[idx_cell]; } - +#ifdef BUILD_MPI + MPI_Barrier( MPI_COMM_WORLD ); +#endif SetGhostCells(); - - PrepareScreenOutput(); // Screen Output - - PrepareHistoryOutput(); // History Output - + if( _rank == 0 ) { + PrepareScreenOutput(); // Screen Output + PrepareHistoryOutput(); // History Output + } +#ifdef BUILD_MPI + MPI_Barrier( MPI_COMM_WORLD ); +#endif delete quad; - delete k; // Initialiye QOIS _mass = 0; @@ -182,21 +192,20 @@ SNSolverHPC::SNSolverHPC( Config* settings ) { if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) n_probes = 4; if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; //_probingMomentsTimeIntervals = 10; - _probingCellsHohlraum = std::vector( n_probes, 0. ); - _probingMoments = std::vector( n_probes * 3, 0. ); // 10 time horizons + _probingMoments = std::vector( n_probes * 3, 0. ); // 10 time horizons if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { _probingCellsHohlraum = { - _mesh->GetCellOfKoordinate( -0.4, 0. ), - _mesh->GetCellOfKoordinate( 0.4, 0. ), - _mesh->GetCellOfKoordinate( 0., -0.5 ), - _mesh->GetCellOfKoordinate( 0., 0.5 ), + _mesh->GetCellsofBall( -0.4, 0., 0.01 ), + _mesh->GetCellsofBall( 0.4, 0., 0.01 ), + _mesh->GetCellsofBall( 0., -0.5, 0.01 ), + _mesh->GetCellsofBall( 0., 0.5, 0.01 ), }; } else if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { _probingCellsHohlraum = { - _mesh->GetCellOfKoordinate( 0.4, 0. ), - _mesh->GetCellOfKoordinate( 0., 0.5 ), + _mesh->GetCellsofBall( 0.4, 0., 0.01 ), + _mesh->GetCellsofBall( 0., 0.5, 0.01 ), }; } @@ -235,9 +244,10 @@ SNSolverHPC::~SNSolverHPC() { void SNSolverHPC::Solve() { // --- Preprocessing --- - PrepareVolumeOutput(); - - DrawPreSolverOutput(); + if( _rank == 0 ) { + PrepareVolumeOutput(); + DrawPreSolverOutput(); + } auto start = std::chrono::high_resolution_clock::now(); // Start timing @@ -246,7 +256,6 @@ void SNSolverHPC::Solve() { for( unsigned iter = 0; iter < _nIter; iter++ ) { if( iter == _nIter - 1 ) { // last iteration _dT = _settings->GetTEnd() - iter * _dT; - // if( _temporalOrder == 2 ) _dT /= 2.0; } if( _temporalOrder == 2 ) { std::vector solRK0( _sol ); @@ -257,9 +266,10 @@ void SNSolverHPC::Solve() { #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { #pragma omp simd - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { - _sol[Idx2D( idx_cell, idx_sys, _nSys )] = 0.5 * ( solRK0[Idx2D( idx_cell, idx_sys, _nSys )] + - _sol[Idx2D( idx_cell, idx_sys, _nSys )] ); // Solution averaging with HEUN + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { + _sol[Idx2D( idx_cell, idx_sys, _localNSys )] = + 0.5 * ( solRK0[Idx2D( idx_cell, idx_sys, _localNSys )] + + _sol[Idx2D( idx_cell, idx_sys, _localNSys )] ); // Solution averaging with HEUN } } } @@ -272,27 +282,23 @@ void SNSolverHPC::Solve() { duration = std::chrono::high_resolution_clock::now() - start; _currTime = std::chrono::duration_cast>( duration ).count(); - // --- Runge Kutta Timestep --- // --- Write Output --- - WriteScalarOutput( iter ); + if( _rank == 0 ) { - // --- Update Scalar Fluxes + WriteScalarOutput( iter ); - // --- Print Output --- - PrintScreenOutput( iter ); - PrintHistoryOutput( iter ); - PrintVolumeOutput( iter ); + // --- Update Scalar Fluxes + + // --- Print Output --- + PrintScreenOutput( iter ); + PrintHistoryOutput( iter ); + PrintVolumeOutput( iter ); + } } // --- Postprocessing --- - - DrawPostSolverOutput(); -} - -void SNSolverHPC::RKUpdate( std::vector& sol_0, std::vector& sol_rk ) { -#pragma omp parallel for - for( unsigned i = 0; i < _nCells * _nSys; ++i ) { - _sol[i] = 0.5 * ( sol_0[i] + sol_rk[i] ); + if( _rank == 0 ) { + DrawPostSolverOutput(); } } @@ -315,25 +321,27 @@ void SNSolverHPC::FluxOrder2() { for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { // Compute Slopes if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NONE ) { // skip ghost cells #pragma omp simd - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { - _limiter[Idx2D( idx_cell, idx_sys, _nSys )] = 1.; // limiter should be zero at boundary + _limiter[Idx2D( idx_cell, idx_sys, _localNSys )] = 1.; // limiter should be zero at boundary - _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] = 0.; - _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] = 0.; + _solDx[Idx3D( idx_cell, idx_sys, 0, _localNSys, _nDim )] = 0.; + _solDx[Idx3D( idx_cell, idx_sys, 1, _localNSys, _nDim )] = 0.; double solInterfaceAvg = 0.0; for( unsigned idx_nbr = 0; idx_nbr < _nNbr; ++idx_nbr ) { // Compute slopes and mininum and maximum unsigned idx_nbr_glob = _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )]; // Slopes - solInterfaceAvg = 0.5 * ( _sol[Idx2D( idx_cell, idx_sys, _nSys )] + _sol[Idx2D( idx_nbr_glob, idx_sys, _nSys )] ); - _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] += solInterfaceAvg * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )]; - _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] += solInterfaceAvg * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; + solInterfaceAvg = 0.5 * ( _sol[Idx2D( idx_cell, idx_sys, _localNSys )] + _sol[Idx2D( idx_nbr_glob, idx_sys, _localNSys )] ); + _solDx[Idx3D( idx_cell, idx_sys, 0, _localNSys, _nDim )] += + solInterfaceAvg * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )]; + _solDx[Idx3D( idx_cell, idx_sys, 1, _localNSys, _nDim )] += + solInterfaceAvg * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; } - _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] /= _areas[idx_cell]; - _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] /= _areas[idx_cell]; + _solDx[Idx3D( idx_cell, idx_sys, 0, _localNSys, _nDim )] /= _areas[idx_cell]; + _solDx[Idx3D( idx_cell, idx_sys, 1, _localNSys, _nDim )] /= _areas[idx_cell]; } } } @@ -342,37 +350,38 @@ void SNSolverHPC::FluxOrder2() { if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NONE ) { // skip ghost cells #pragma omp simd - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { double gaussPoint = 0; double r = 0; - double minSol = _sol[Idx2D( idx_cell, idx_sys, _nSys )]; - double maxSol = _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + double minSol = _sol[Idx2D( idx_cell, idx_sys, _localNSys )]; + double maxSol = _sol[Idx2D( idx_cell, idx_sys, _localNSys )]; for( unsigned idx_nbr = 0; idx_nbr < _nNbr; ++idx_nbr ) { // Compute slopes and mininum and maximum unsigned idx_nbr_glob = _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )]; // Compute ptswise max and minimum solultion values of current and neighbor cells - maxSol = std::max( _sol[Idx2D( idx_nbr_glob, idx_sys, _nSys )], maxSol ); - minSol = std::min( _sol[Idx2D( idx_nbr_glob, idx_sys, _nSys )], minSol ); + maxSol = std::max( _sol[Idx2D( idx_nbr_glob, idx_sys, _localNSys )], maxSol ); + minSol = std::min( _sol[Idx2D( idx_nbr_glob, idx_sys, _localNSys )], minSol ); } for( unsigned idx_nbr = 0; idx_nbr < _nNbr; idx_nbr++ ) { // Compute limiter, see https://arxiv.org/pdf/1710.07187.pdf // Compute test value at cell vertex, called gaussPt gaussPoint = - _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] * _relativeCellVertices[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + - _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] * _relativeCellVertices[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; + _solDx[Idx3D( idx_cell, idx_sys, 0, _localNSys, _nDim )] * + _relativeCellVertices[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + + _solDx[Idx3D( idx_cell, idx_sys, 1, _localNSys, _nDim )] * _relativeCellVertices[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; // BARTH-JESPERSEN LIMITER - // r = ( gaussPoint > 0 ) ? std::min( ( maxSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )] ) / ( gaussPoint + eps ), 1.0 ) - // : std::min( ( minSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )] ) / ( gaussPoint - eps ), 1.0 ); + // r = ( gaussPoint > 0 ) ? std::min( ( maxSol - _sol[Idx2D( idx_cell, idx_sys, _localNSys )] ) / ( gaussPoint + eps ), 1.0 ) + // : std::min( ( minSol - _sol[Idx2D( idx_cell, idx_sys, _localNSys )] ) / ( gaussPoint - eps ), 1.0 ); // // r = ( std::abs( gaussPoint ) < eps ) ? 1 : r; - //_limiter[Idx2D( idx_cell, idx_sys, _nSys )] = std::min( r, _limiter[Idx2D( idx_cell, idx_sys, _nSys )] ); + //_limiter[Idx2D( idx_cell, idx_sys, _localNSys )] = std::min( r, _limiter[Idx2D( idx_cell, idx_sys, _localNSys )] ); // VENKATAKRISHNAN LIMITER - double delta1Max = maxSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )]; - double delta1Min = minSol - _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + double delta1Max = maxSol - _sol[Idx2D( idx_cell, idx_sys, _localNSys )]; + double delta1Min = minSol - _sol[Idx2D( idx_cell, idx_sys, _localNSys )]; r = ( gaussPoint > 0 ) ? ( ( delta1Max * delta1Max + _areas[idx_cell] ) * gaussPoint + 2 * gaussPoint * gaussPoint * delta1Max ) / ( delta1Max * delta1Max + 2 * gaussPoint * gaussPoint + delta1Max * gaussPoint + _areas[idx_cell] ) / @@ -383,16 +392,16 @@ void SNSolverHPC::FluxOrder2() { r = ( std::abs( gaussPoint ) < eps ) ? 1 : r; - _limiter[Idx2D( idx_cell, idx_sys, _nSys )] = std::min( r, _limiter[Idx2D( idx_cell, idx_sys, _nSys )] ); + _limiter[Idx2D( idx_cell, idx_sys, _localNSys )] = std::min( r, _limiter[Idx2D( idx_cell, idx_sys, _localNSys )] ); } } } else { #pragma omp simd - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { - _limiter[Idx2D( idx_cell, idx_sys, _nSys )] = 0.; // limiter should be zero at boundary - _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] = 0.; - _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] = 0.; + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { + _limiter[Idx2D( idx_cell, idx_sys, _localNSys )] = 0.; // limiter should be zero at boundary + _solDx[Idx3D( idx_cell, idx_sys, 0, _localNSys, _nDim )] = 0.; + _solDx[Idx3D( idx_cell, idx_sys, 1, _localNSys, _nDim )] = 0.; } } } @@ -400,52 +409,48 @@ void SNSolverHPC::FluxOrder2() { #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { // Compute Flux #pragma omp simd - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { - _flux[Idx2D( idx_cell, idx_sys, _nSys )] = 0.; + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { + _flux[Idx2D( idx_cell, idx_sys, _localNSys )] = 0.; } // Fluxes for( unsigned idx_nbr = 0; idx_nbr < _nNbr; ++idx_nbr ) { if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )] == _nCells ) { #pragma omp simd - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; if( localInner > 0 ) { - _flux[Idx2D( idx_cell, idx_sys, _nSys )] += localInner * _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + _flux[Idx2D( idx_cell, idx_sys, _localNSys )] += localInner * _sol[Idx2D( idx_cell, idx_sys, _localNSys )]; } else { - double ghostCellValue = ( _ghostCellsReflectingY[idx_cell] ) - ? _sol[Idx2D( idx_cell, _quadratureYReflection[idx_sys], _nSys )] // Relecting boundary Y - : ( _ghostCellsReflectingX[idx_cell] ) - ? _sol[Idx2D( idx_cell, _quadratureXReflection[idx_sys], _nSys )] // Relecting boundary X - : _ghostCells[idx_cell][idx_sys]; // fixed boundary - _flux[Idx2D( idx_cell, idx_sys, _nSys )] += localInner * ghostCellValue; + double ghostCellValue = _ghostCells[idx_cell][idx_sys]; // fixed boundary + _flux[Idx2D( idx_cell, idx_sys, _localNSys )] += localInner * ghostCellValue; } } } else { // Second order #pragma omp simd - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { // store flux contribution on psiNew_sigmaS to save memory unsigned idx_nbr_glob = _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )]; // global idx of neighbor cell double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; - _flux[Idx2D( idx_cell, idx_sys, _nSys )] += - ( localInner > 0 ) ? localInner * ( _sol[Idx2D( idx_cell, idx_sys, _nSys )] + - _limiter[Idx2D( idx_cell, idx_sys, _nSys )] * - ( _solDx[Idx3D( idx_cell, idx_sys, 0, _nSys, _nDim )] * + _flux[Idx2D( idx_cell, idx_sys, _localNSys )] += + ( localInner > 0 ) ? localInner * ( _sol[Idx2D( idx_cell, idx_sys, _localNSys )] + + _limiter[Idx2D( idx_cell, idx_sys, _localNSys )] * + ( _solDx[Idx3D( idx_cell, idx_sys, 0, _localNSys, _nDim )] * _relativeInterfaceMidPt[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + - _solDx[Idx3D( idx_cell, idx_sys, 1, _nSys, _nDim )] * + _solDx[Idx3D( idx_cell, idx_sys, 1, _localNSys, _nDim )] * _relativeInterfaceMidPt[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )] ) ) - : localInner * ( _sol[Idx2D( idx_nbr_glob, idx_sys, _nSys )] + - _limiter[Idx2D( idx_nbr_glob, idx_sys, _nSys )] * - ( _solDx[Idx3D( idx_nbr_glob, idx_sys, 0, _nSys, _nDim )] * + : localInner * ( _sol[Idx2D( idx_nbr_glob, idx_sys, _localNSys )] + + _limiter[Idx2D( idx_nbr_glob, idx_sys, _localNSys )] * + ( _solDx[Idx3D( idx_nbr_glob, idx_sys, 0, _localNSys, _nDim )] * ( _interfaceMidPoints[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] - _cellMidPoints[Idx2D( idx_nbr_glob, 0, _nDim )] ) + - _solDx[Idx3D( idx_nbr_glob, idx_sys, 1, _nSys, _nDim )] * + _solDx[Idx3D( idx_nbr_glob, idx_sys, 1, _localNSys, _nDim )] * ( _interfaceMidPoints[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )] - _cellMidPoints[Idx2D( idx_nbr_glob, 1, _nDim )] ) ) ); } @@ -460,40 +465,36 @@ void SNSolverHPC::FluxOrder1() { for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { #pragma omp simd - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { - _flux[Idx2D( idx_cell, idx_sys, _nSys )] = 0.0; // Reset temporary variable + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { + _flux[Idx2D( idx_cell, idx_sys, _localNSys )] = 0.0; // Reset temporary variable } // Fluxes for( unsigned idx_nbr = 0; idx_nbr < _nNbr; ++idx_nbr ) { if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN && _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )] == _nCells ) { #pragma omp simd - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; if( localInner > 0 ) { - _flux[Idx2D( idx_cell, idx_sys, _nSys )] += localInner * _sol[Idx2D( idx_cell, idx_sys, _nSys )]; + _flux[Idx2D( idx_cell, idx_sys, _localNSys )] += localInner * _sol[Idx2D( idx_cell, idx_sys, _localNSys )]; } else { - double ghostCellValue = ( _ghostCellsReflectingY[idx_cell] ) - ? _sol[Idx2D( idx_cell, _quadratureYReflection[idx_sys], _nSys )] // Relecting boundary Y - : ( _ghostCellsReflectingX[idx_cell] ) - ? _sol[Idx2D( idx_cell, _quadratureXReflection[idx_sys], _nSys )] // Relecting boundary X - : _ghostCells[idx_cell][idx_sys]; // fixed boundary - _flux[Idx2D( idx_cell, idx_sys, _nSys )] += localInner * ghostCellValue; + double ghostCellValue = _ghostCells[idx_cell][idx_sys]; // fixed boundary + _flux[Idx2D( idx_cell, idx_sys, _localNSys )] += localInner * ghostCellValue; } } } else { unsigned nbr_glob = _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )]; // global idx of neighbor cell #pragma omp simd - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; - _flux[Idx2D( idx_cell, idx_sys, _nSys )] += ( localInner > 0 ) ? localInner * _sol[Idx2D( idx_cell, idx_sys, _nSys )] - : localInner * _sol[Idx2D( nbr_glob, idx_sys, _nSys )]; + _flux[Idx2D( idx_cell, idx_sys, _localNSys )] += ( localInner > 0 ) ? localInner * _sol[Idx2D( idx_cell, idx_sys, _localNSys )] + : localInner * _sol[Idx2D( nbr_glob, idx_sys, _localNSys )]; } } } @@ -503,32 +504,43 @@ void SNSolverHPC::FluxOrder1() { void SNSolverHPC::FVMUpdate() { _mass = 0.0; _rmsFlux = 0.0; + std::vector temp_scalarFlux( _nCells ); // for MPI allreduce #pragma omp parallel for reduction( + : _mass, _rmsFlux ) for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { #pragma omp simd - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { - // Upate - _sol[Idx2D( idx_cell, idx_sys, _nSys )] = - ( 1 - _dT * _sigmaT[idx_cell] ) * _sol[Idx2D( idx_cell, idx_sys, _nSys )] - - _dT / _areas[idx_cell] * _flux[Idx2D( idx_cell, idx_sys, _nSys )] + - _dT * ( _sigmaS[idx_cell] * _scalarFlux[idx_cell] / ( 2 * M_PI ) + _source[Idx2D( idx_cell, idx_sys, _nSys )] ); + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { + // Update + _sol[Idx2D( idx_cell, idx_sys, _localNSys )] = + ( 1 - _dT * _sigmaT[idx_cell] ) * _sol[Idx2D( idx_cell, idx_sys, _localNSys )] - + _dT / _areas[idx_cell] * _flux[Idx2D( idx_cell, idx_sys, _localNSys )] + + _dT * ( _sigmaS[idx_cell] * _scalarFlux[idx_cell] / ( 2 * M_PI ) + _source[Idx2D( idx_cell, idx_sys, _localNSys )] ); } double localScalarFlux = 0; #pragma omp simd reduction( + : localScalarFlux ) - for( unsigned idx_sys = 0; idx_sys < _nSys; ++idx_sys ) { - _sol[Idx2D( idx_cell, idx_sys, _nSys )] = std::max( _sol[Idx2D( idx_cell, idx_sys, _nSys )], 0.0 ); - localScalarFlux += _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { + _sol[Idx2D( idx_cell, idx_sys, _localNSys )] = std::max( _sol[Idx2D( idx_cell, idx_sys, _localNSys )], 0.0 ); + localScalarFlux += _sol[Idx2D( idx_cell, idx_sys, _localNSys )] * _quadWeights[idx_sys]; } _mass += localScalarFlux * _areas[idx_cell]; _rmsFlux += ( localScalarFlux - _scalarFlux[idx_cell] ) * ( localScalarFlux - _scalarFlux[idx_cell] ); - _scalarFlux[idx_cell] = localScalarFlux; // set flux + temp_scalarFlux[idx_cell] = localScalarFlux; // set flux } +// MPI Allreduce: _scalarFlux +#ifdef BUILD_MPI + MPI_Barrier( MPI_COMM_WORLD ); + MPI_Allreduce( temp_scalarFlux.data(), _scalarFlux.data(), _nCells, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD ); + MPI_Barrier( MPI_COMM_WORLD ); +#endif +#ifndef BUILD_MPI + _scalarFlux = temp_scalarFlux; +#endif } void SNSolverHPC::IterPostprocessing() { + // ALREDUCE NEEDED _curAbsorptionLattice = 0.0; _curScalarOutflow = 0.0; @@ -562,7 +574,6 @@ void SNSolverHPC::IterPostprocessing() { double x = _cellMidPoints[Idx2D( idx_cell, 0, _nDim )]; double y = _cellMidPoints[Idx2D( idx_cell, 1, _nDim )]; - _curAbsorptionLattice += _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _areas[idx_cell]; if( x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && y > -0.4 + _settings->GetPosYCenterGreenHohlraum() && y < 0.4 + _settings->GetPosYCenterGreenHohlraum() ) { @@ -580,28 +591,28 @@ void SNSolverHPC::IterPostprocessing() { // Variation in absorption of center (part 1) // green area 1 (lower boundary) - bool green1 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < -0.15 + _settings->GetPosXCenterGreenHohlraum() && - y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); + bool green1 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.4 + _settings->GetPosYCenterGreenHohlraum() && y < -0.35 + _settings->GetPosYCenterGreenHohlraum(); // green area 2 (upper boundary) - bool green2 = x > 0.15 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && - y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); + bool green2 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > 0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.4 + _settings->GetPosYCenterGreenHohlraum(); // green area 3 (left boundary) - bool green3 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && - y > -0.4 + _settings->GetPosYCenterGreenHohlraum() && y < -0.35 + _settings->GetPosYCenterGreenHohlraum(); + bool green3 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < -0.15 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); // green area 4 (right boundary) - bool green4 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && - y > 0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.4 + _settings->GetPosYCenterGreenHohlraum(); + bool green4 = x > 0.15 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); if( green1 || green2 || green3 || green4 ) { a_g += ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) * _scalarFlux[idx_cell] * _areas[idx_cell]; } } - if( _settings->GetProblemName() == PROBLEM_Lattice || _settings->GetProblemName() == PROBLEM_HalfLattice ) { + if( _settings->GetProblemName() == PROBLEM_Lattice ) { // Outflow out of inner and middle perimeter if( _isPerimeterLatticeCell1[idx_cell] ) { // inner for( unsigned idx_nbr_helper = 0; idx_nbr_helper < _cellsLatticePerimeter1[idx_cell].size(); ++idx_nbr_helper ) { #pragma omp simd reduction( + : _curScalarOutflowPeri1 ) - for( unsigned idx_sys = 0; idx_sys < _nSys; ++idx_sys ) { + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * _normals[Idx3D( idx_cell, _cellsLatticePerimeter1[idx_cell][idx_nbr_helper], 0, _nNbr, _nDim )] + _quadPts[Idx2D( idx_sys, 1, _nDim )] * @@ -610,7 +621,7 @@ void SNSolverHPC::IterPostprocessing() { if( localInner > 0.0 ) { _curScalarOutflowPeri1 += - localInner * _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; // Integrate flux + localInner * _sol[Idx2D( idx_cell, idx_sys, _localNSys )] * _quadWeights[idx_sys]; // Integrate flux } } } @@ -618,7 +629,7 @@ void SNSolverHPC::IterPostprocessing() { if( _isPerimeterLatticeCell2[idx_cell] ) { // middle for( unsigned idx_nbr_helper = 0; idx_nbr_helper < _cellsLatticePerimeter2[idx_cell].size(); ++idx_nbr_helper ) { #pragma omp simd reduction( + : _curScalarOutflowPeri2 ) - for( unsigned idx_sys = 0; idx_sys < _nSys; ++idx_sys ) { + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * _normals[Idx3D( idx_cell, _cellsLatticePerimeter2[idx_cell][idx_nbr_helper], 0, _nNbr, _nDim )] + _quadPts[Idx2D( idx_sys, 1, _nDim )] * @@ -627,14 +638,14 @@ void SNSolverHPC::IterPostprocessing() { if( localInner > 0.0 ) { _curScalarOutflowPeri2 += - localInner * _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; // Integrate flux + localInner * _sol[Idx2D( idx_cell, idx_sys, _localNSys )] * _quadWeights[idx_sys]; // Integrate flux } } } } } // Outflow out of domain - if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN && !_ghostCellsReflectingY[idx_cell] && !_ghostCellsReflectingX[idx_cell] ) { + if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN ) { // Iterate over face cell faces double currOrdinatewiseOutflow = 0.0; @@ -642,16 +653,18 @@ void SNSolverHPC::IterPostprocessing() { // Find face that points outward if( _neighbors[Idx2D( idx_cell, idx_nbr, _nNbr )] == _nCells ) { #pragma omp simd reduction( + : _curScalarOutflow ) reduction( max : _curMaxOrdinateOutflow ) - for( unsigned idx_sys = 0; idx_sys < _nSys; ++idx_sys ) { + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { + double localInner = _quadPts[Idx2D( idx_sys, 0, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )]; // Find outward facing transport directions if( localInner > 0.0 ) { - _curScalarOutflow += localInner * _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; // Integrate flux + _curScalarOutflow += + localInner * _sol[Idx2D( idx_cell, idx_sys, _localNSys )] * _quadWeights[idx_sys]; // Integrate flux currOrdinatewiseOutflow = - _sol[Idx2D( idx_cell, idx_sys, _nSys )] * localInner / + _sol[Idx2D( idx_cell, idx_sys, _localNSys )] * localInner / sqrt( ( _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 0, _nNbr, _nDim )] + _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )] * _normals[Idx3D( idx_cell, idx_nbr, 1, _nNbr, _nDim )] ) ); @@ -664,71 +677,110 @@ void SNSolverHPC::IterPostprocessing() { } } } +// MPI Allreduce +#ifdef BUILD_MPI + double tmp_curScalarOutflow = 0.0; + double tmp_curScalarOutflowPeri1 = 0.0; + double tmp_curScalarOutflowPeri2 = 0.0; + double tmp_mass = 0.0; + double tmp_rmsFlux = 0.0; + MPI_Barrier( MPI_COMM_WORLD ); + MPI_Allreduce( &_curScalarOutflow, &tmp_curScalarOutflow, 1, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD ); + _curScalarOutflow = tmp_curScalarOutflow; + MPI_Barrier( MPI_COMM_WORLD ); + MPI_Allreduce( &_curScalarOutflowPeri1, &tmp_curScalarOutflowPeri1, 1, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD ); + _curScalarOutflowPeri1 = tmp_curScalarOutflowPeri1; + MPI_Barrier( MPI_COMM_WORLD ); + MPI_Allreduce( &_curScalarOutflowPeri2, &tmp_curScalarOutflowPeri2, 1, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD ); + _curScalarOutflowPeri2 = tmp_curScalarOutflowPeri2; + MPI_Barrier( MPI_COMM_WORLD ); + MPI_Allreduce( &_mass, &tmp_mass, 1, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD ); + _mass = tmp_mass; + MPI_Barrier( MPI_COMM_WORLD ); + MPI_Allreduce( &_rmsFlux, &tmp_rmsFlux, 1, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD ); + _rmsFlux = tmp_rmsFlux; + MPI_Barrier( MPI_COMM_WORLD ); +#endif // Variation absorption (part II) - if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum || _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { + if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { + unsigned n_probes = 4; + std::vector temp_probingMoments( 3 * n_probes ); // for MPI allreduce + #pragma omp parallel for reduction( + : _varAbsorptionHohlraumGreen ) for( unsigned idx_cell = 0; idx_cell < _nCells; ++idx_cell ) { double x = _cellMidPoints[Idx2D( idx_cell, 0, _nDim )]; double y = _cellMidPoints[Idx2D( idx_cell, 1, _nDim )]; // green area 1 (lower boundary) - bool green1 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < -0.15 + _settings->GetPosXCenterGreenHohlraum() && - y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); + bool green1 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.4 + _settings->GetPosYCenterGreenHohlraum() && y < -0.35 + _settings->GetPosYCenterGreenHohlraum(); // green area 2 (upper boundary) - bool green2 = x > 0.15 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && - y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); + bool green2 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > 0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.4 + _settings->GetPosYCenterGreenHohlraum(); // green area 3 (left boundary) - bool green3 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && - y > -0.4 + _settings->GetPosYCenterGreenHohlraum() && y < -0.35 + _settings->GetPosYCenterGreenHohlraum(); + bool green3 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < -0.15 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); // green area 4 (right boundary) - bool green4 = x > -0.2 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && - y > 0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.4 + _settings->GetPosYCenterGreenHohlraum(); + bool green4 = x > 0.15 + _settings->GetPosXCenterGreenHohlraum() && x < 0.2 + _settings->GetPosXCenterGreenHohlraum() && + y > -0.35 + _settings->GetPosYCenterGreenHohlraum() && y < 0.35 + _settings->GetPosYCenterGreenHohlraum(); if( green1 || green2 || green3 || green4 ) { _varAbsorptionHohlraumGreen += ( a_g - _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) * ( a_g - _scalarFlux[idx_cell] * ( _sigmaT[idx_cell] - _sigmaS[idx_cell] ) ) * _areas[idx_cell]; } } // Probes value moments - unsigned n_probes = 4; - if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) n_probes = 2; -#pragma omp parallel for + // #pragma omp parallel for for( unsigned idx_probe = 0; idx_probe < n_probes; idx_probe++ ) { // Loop over probing cells - _probingMoments[Idx2D( idx_probe, 0, 3 )] = _scalarFlux[_probingCellsHohlraum[idx_probe]]; - _probingMoments[Idx2D( idx_probe, 1, 3 )] = 0.0; - _probingMoments[Idx2D( idx_probe, 2, 3 )] = 0.0; - - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { - _probingMoments[Idx2D( idx_probe, 1, 3 )] += - _quadPts[Idx2D( idx_sys, 0, _nDim )] * _sol[Idx2D( _probingCellsHohlraum[idx_probe], idx_sys, _nSys )] * _quadWeights[idx_sys]; - _probingMoments[Idx2D( idx_probe, 2, 3 )] += - _quadPts[Idx2D( idx_sys, 1, _nDim )] * _sol[Idx2D( _probingCellsHohlraum[idx_probe], idx_sys, _nSys )] * _quadWeights[idx_sys]; + temp_probingMoments[Idx2D( idx_probe, 0, 3 )] = 0.0; + temp_probingMoments[Idx2D( idx_probe, 1, 3 )] = 0.0; + temp_probingMoments[Idx2D( idx_probe, 2, 3 )] = 0.0; + // for( unsigned idx_ball = 0; idx_ball < _probingCellsHohlraum[idx_probe].size(); idx_ball++ ) { + // std::cout << idx_ball << _areas[_probingCellsHohlraum[idx_probe][idx_ball]] / ( 0.01 * 0.01 * M_PI ) << std::endl; + //} + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { + for( unsigned idx_ball = 0; idx_ball < _probingCellsHohlraum[idx_probe].size(); idx_ball++ ) { + temp_probingMoments[Idx2D( idx_probe, 0, 3 )] += _sol[Idx2D( _probingCellsHohlraum[idx_probe][idx_ball], idx_sys, _localNSys )] * + _quadWeights[idx_sys] * _areas[_probingCellsHohlraum[idx_probe][idx_ball]] / + ( 0.01 * 0.01 * M_PI ); + temp_probingMoments[Idx2D( idx_probe, 1, 3 )] += + _quadPts[Idx2D( idx_sys, 0, _nDim )] * _sol[Idx2D( _probingCellsHohlraum[idx_probe][idx_ball], idx_sys, _localNSys )] * + _quadWeights[idx_sys] * _areas[_probingCellsHohlraum[idx_probe][idx_ball]] / ( 0.01 * 0.01 * M_PI ); + temp_probingMoments[Idx2D( idx_probe, 2, 3 )] += + _quadPts[Idx2D( idx_sys, 1, _nDim )] * _sol[Idx2D( _probingCellsHohlraum[idx_probe][idx_ball], idx_sys, _localNSys )] * + _quadWeights[idx_sys] * _areas[_probingCellsHohlraum[idx_probe][idx_ball]] / ( 0.01 * 0.01 * M_PI ); + } } } // probe values green ComputeQOIsGreenProbingLine(); +#ifdef BUILD_MPI + MPI_Barrier( MPI_COMM_WORLD ); + MPI_Allreduce( temp_probingMoments.data(), _probingMoments.data(), 3 * n_probes, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD ); + MPI_Barrier( MPI_COMM_WORLD ); +#endif +#ifndef BUILD_MPI + for( unsigned idx_probe = 0; idx_probe < n_probes; idx_probe++ ) { // Loop over probing cells + _probingMoments[Idx2D( idx_probe, 0, 3 )] = temp_probingMoments[Idx2D( idx_probe, 0, 3 )]; + _probingMoments[Idx2D( idx_probe, 1, 3 )] = temp_probingMoments[Idx2D( idx_probe, 1, 3 )]; + _probingMoments[Idx2D( idx_probe, 2, 3 )] = temp_probingMoments[Idx2D( idx_probe, 2, 3 )]; + } +#endif } - _rmsFlux = sqrt( _rmsFlux ); - if( _settings->GetProblemName() == PROBLEM_HalfLattice ) { - _curScalarOutflow *= 2.0; - _curScalarOutflowPeri1 *= 2.0; - _curScalarOutflowPeri2 *= 2.0; - _curAbsorptionLattice *= 2.0; - } - if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { - _curAbsorptionHohlraumCenter *= 4.0; - _curAbsorptionHohlraumVertical *= 4.0; // red area - _curAbsorptionHohlraumHorizontal *= 4.0; // black area + // Update time integral values on rank 0 + if( _rank == 0 ) { + _totalScalarOutflow += _curScalarOutflow * _dT; + _totalScalarOutflowPeri1 += _curScalarOutflowPeri1 * _dT; + _totalScalarOutflowPeri2 += _curScalarOutflowPeri2 * _dT; + _totalAbsorptionLattice += _curAbsorptionLattice * _dT; + + _totalAbsorptionHohlraumCenter += _curAbsorptionHohlraumCenter * _dT; + _totalAbsorptionHohlraumVertical += _curAbsorptionHohlraumVertical * _dT; + _totalAbsorptionHohlraumHorizontal += _curAbsorptionHohlraumHorizontal * _dT; + + _rmsFlux = sqrt( _rmsFlux ); } - _totalScalarOutflow += _curScalarOutflow * _dT; - _totalScalarOutflowPeri1 += _curScalarOutflowPeri1 * _dT; - _totalScalarOutflowPeri2 += _curScalarOutflowPeri2 * _dT; - _totalAbsorptionLattice += _curAbsorptionLattice * _dT; - - _totalAbsorptionHohlraumCenter += _curAbsorptionHohlraumCenter * _dT; - _totalAbsorptionHohlraumVertical += _curAbsorptionHohlraumVertical * _dT; - _totalAbsorptionHohlraumHorizontal += _curAbsorptionHohlraumHorizontal * _dT; } bool SNSolverHPC::IsAbsorptionLattice( double x, double y ) const { @@ -774,11 +826,13 @@ double SNSolverHPC::ComputeTimeStep( double cfl ) const { charSize = currCharSize; } } - auto log = spdlog::get( "event" ); - std::string line = "| Smallest characteristic length of a grid cell in this mesh: " + std::to_string( charSize ); - log->info( line ); - line = "| Corresponding maximal time-step: " + std::to_string( cfl * charSize ); - log->info( line ); + if( _rank == 0 ) { + auto log = spdlog::get( "event" ); + std::string line = "| Smallest characteristic length of a grid cell in this mesh: " + std::to_string( charSize ); + log->info( line ); + line = "| Corresponding maximal time-step: " + std::to_string( cfl * charSize ); + log->info( line ); + } return cfl * charSize; } @@ -1201,12 +1255,15 @@ void SNSolverHPC::WriteVolumeOutput( unsigned idx_iter ) { _outputFields[idx_group][0][idx_cell] = 0.0; _outputFields[idx_group][1][idx_cell] = 0.0; for( unsigned idx_moments = 0; idx_moments < _nOutputMoments; idx_moments++ ) { - for( unsigned idx_sys = 0; idx_sys < _nSys; idx_sys++ ) { - _outputFields[idx_group][0][idx_cell] += - _quadPts[Idx2D( idx_sys, 0, _nDim )] * _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; - _outputFields[idx_group][1][idx_cell] += - _quadPts[Idx2D( idx_sys, 1, _nDim )] * _sol[Idx2D( idx_cell, idx_sys, _nSys )] * _quadWeights[idx_sys]; - } + _outputFields[idx_group][0][idx_cell] = 0.0; + _outputFields[idx_group][1][idx_cell] = 0.0; + _outputFields[idx_group][2][idx_cell] = 0.0; + // for( unsigned idx_sys = _startSysIdx; idx_sys < _endSysIdx; idx_sys++ ) { // TODO + // _outputFields[idx_group][0][idx_cell] += + // _quadPts[Idx2D( idx_sys, 0, _nDim )] * _sol[Idx2D( idx_cell, idx_sys, _localNSys )] * _quadWeights[idx_sys]; + // _outputFields[idx_group][1][idx_cell] += + // _quadPts[Idx2D( idx_sys, 1, _nDim )] * _sol[Idx2D( idx_cell, idx_sys, _localNSys )] * _quadWeights[idx_sys]; + // } } } break; @@ -1255,68 +1312,15 @@ void SNSolverHPC::PrepareVolumeOutput() { void SNSolverHPC::SetGhostCells() { if( _settings->GetProblemName() == PROBLEM_Lattice ) { - std::vector void_flow( _nSys, 0.0 ); // #pragma omp parallel for for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { - _ghostCells[idx_cell] = void_flow; - _ghostCellsReflectingY[idx_cell] = false; - _ghostCellsReflectingX[idx_cell] = false; + _ghostCells[idx_cell] = std::vector( _localNSys, 0.0 ); } } } else if( _settings->GetProblemName() == PROBLEM_HalfLattice ) { // HALF LATTICE NOT WORKING - - double tol = 1e-12; // For distance to boundary - - if( _settings->GetQuadName() != QUAD_GaussLegendreTensorized2D ) { - ErrorMessages::Error( "This simplified test case only works with symmetric quadrature orders. Use QUAD_GAUSS_LEGENDRE_TENSORIZED_2D", - CURRENT_FUNCTION ); - } - - { // Create the symmetry maps for the quadratures - for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { - for( unsigned idx_q2 = 0; idx_q2 < _nSys; idx_q2++ ) { - if( abs( _quadPts[Idx2D( idx_q, 0, _nDim )] + _quadPts[Idx2D( idx_q2, 0, _nDim )] ) + - abs( _quadPts[Idx2D( idx_q, 1, _nDim )] - _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < - tol ) { - _quadratureYReflection[idx_q] = idx_q2; - break; - } - } - } - } - - if( _quadratureYReflection.size() != _nSys ) { - ErrorMessages::Error( "Problem with Y symmetry of quadrature of this mesh", CURRENT_FUNCTION ); - } - - auto nodes = _mesh->GetNodes(); - auto cellNodes = _mesh->GetCells(); - - // #pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - if( _cellBoundaryTypes[idx_cell] != BOUNDARY_TYPE::NONE ) { - _ghostCellsReflectingY[idx_cell] = false; - _ghostCellsReflectingX[idx_cell] = false; - for( unsigned idx_node = 0; idx_node < _nNbr; idx_node++ ) { // Check if corner node is in this cell - if( abs( nodes[cellNodes[idx_cell][idx_node]][1] ) < -3.5 + tol || abs( nodes[cellNodes[idx_cell][idx_node]][1] ) > 3.5 - tol ) { - // upper and lower boundary - _ghostCells.insert( { idx_cell, std::vector( _nSys, 0.0 ) } ); - break; - } - else if( abs( nodes[cellNodes[idx_cell][idx_node]][0] ) < tol ) { // close to 0 => left boundary - _ghostCellsReflectingY[idx_cell] = true; - _ghostCells.insert( { idx_cell, std::vector( _nSys, -1.0 ) } ); - break; - } - else { // right boundary - _ghostCells.insert( { idx_cell, std::vector( _nSys, 0.0 ) } ); - break; - } - } - } - } + ErrorMessages::Error( "Test case does not work with MPI", CURRENT_FUNCTION ); } else if( _settings->GetProblemName() == PROBLEM_SymmetricHohlraum ) { @@ -1327,22 +1331,20 @@ void SNSolverHPC::SetGhostCells() { for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { - _ghostCellsReflectingY[idx_cell] = false; - _ghostCellsReflectingX[idx_cell] = false; - _ghostCells[idx_cell] = std::vector( _nSys, 0.0 ); + _ghostCells[idx_cell] = std::vector( _localNSys, 0.0 ); auto localCellNodes = _mesh->GetCells()[idx_cell]; for( unsigned idx_node = 0; idx_node < _mesh->GetNumNodesPerCell(); idx_node++ ) { // Check if corner node is in this cell if( nodes[localCellNodes[idx_node]][0] < -0.65 + tol ) { // close to 0 => left boundary - for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { - if( _quadPts[Idx2D( idx_q, 0, _nDim )] > 0.0 ) _ghostCells[idx_cell][idx_q] = 1.0; + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { + if( _quadPts[Idx2D( idx_sys, 0, _nDim )] > 0.0 ) _ghostCells[idx_cell][idx_sys] = 1.0; } break; } else if( nodes[localCellNodes[idx_node]][0] > 0.65 - tol ) { // right boundary - for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { - if( _quadPts[Idx2D( idx_q, 0, _nDim )] < 0.0 ) _ghostCells[idx_cell][idx_q] = 1.0; + for( unsigned idx_sys = 0; idx_sys < _localNSys; idx_sys++ ) { + if( _quadPts[Idx2D( idx_sys, 0, _nDim )] < 0.0 ) _ghostCells[idx_cell][idx_sys] = 1.0; } break; } @@ -1360,84 +1362,7 @@ void SNSolverHPC::SetGhostCells() { } } else if( _settings->GetProblemName() == PROBLEM_QuarterHohlraum ) { - - double tol = 1e-12; // For distance to boundary - - if( _settings->GetQuadName() != QUAD_GaussLegendreTensorized2D ) { - ErrorMessages::Error( "This simplified test case only works with symmetric quadrature orders. Use QUAD_GAUSS_LEGENDRE_TENSORIZED_2D", - CURRENT_FUNCTION ); - } - - // Create the symmetry maps for the quadratures - unsigned filled_X_reflection = 0; - unsigned filled_Y_reflection = 0; - for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { - for( unsigned idx_q2 = 0; idx_q2 < _nSys; idx_q2++ ) { - if( abs( _quadPts[Idx2D( idx_q, 0, _nDim )] + _quadPts[Idx2D( idx_q2, 0, _nDim )] ) + - abs( _quadPts[Idx2D( idx_q, 1, _nDim )] - _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < - tol ) { - _quadratureYReflection[idx_q] = idx_q2; - filled_Y_reflection++; - break; - } - } - for( unsigned idx_q2 = 0; idx_q2 < _nSys; idx_q2++ ) { - if( abs( _quadPts[Idx2D( idx_q, 0, _nDim )] - _quadPts[Idx2D( idx_q2, 0, _nDim )] ) + - abs( _quadPts[Idx2D( idx_q, 1, _nDim )] + _quadPts[Idx2D( idx_q2, 1, _nDim )] ) < - tol ) { - _quadratureXReflection[idx_q] = idx_q2; - filled_X_reflection++; - break; - } - } - } - if( filled_X_reflection != _nSys ) { - ErrorMessages::Error( "Problem with X symmetry of quadrature of this mesh", CURRENT_FUNCTION ); - } - if( filled_Y_reflection != _nSys ) { - ErrorMessages::Error( "Problem with Y symmetry of quadrature of this mesh", CURRENT_FUNCTION ); - } - - auto nodes = _mesh->GetNodes(); - -#pragma omp parallel for - for( unsigned idx_cell = 0; idx_cell < _nCells; idx_cell++ ) { - if( _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::NEUMANN || _cellBoundaryTypes[idx_cell] == BOUNDARY_TYPE::DIRICHLET ) { -#pragma omp critical - { - auto localCellNodes = _mesh->GetCells()[idx_cell]; - - _ghostCellsReflectingX[idx_cell] = false; - _ghostCellsReflectingY[idx_cell] = false; - _ghostCells[idx_cell] = std::vector( _nSys, 0.0 ); - - for( unsigned idx_node = 0; idx_node < _mesh->GetNumNodesPerCell(); idx_node++ ) { // Check if corner node is in this cell - if( abs( nodes[localCellNodes[idx_node]][0] ) < tol ) { // close to 0 => left boundary - _ghostCellsReflectingY[idx_cell] = true; - break; - } - else if( abs( nodes[localCellNodes[idx_node]][0] ) > 0.65 - tol ) { // right boundary - for( unsigned idx_q = 0; idx_q < _nSys; idx_q++ ) { - if( _quadPts[Idx2D( idx_q, 0, _nDim )] < 0.0 ) { - _ghostCells[idx_cell][idx_q] = 1.0; - } - } - break; - } - else if( abs( nodes[localCellNodes[idx_node]][1] ) < tol ) { // lower boundary - _ghostCellsReflectingX[idx_cell] = true; - break; - } - else if( abs( nodes[localCellNodes[idx_node]][1] ) > 0.65 - tol ) { // upper boundary - break; - } - else if( idx_node == _mesh->GetNumNodesPerCell() - 1 ) { - ErrorMessages::Error( " Problem with ghost cell setup and boundary of this mesh ", CURRENT_FUNCTION ); - } - } - } - } - } + ErrorMessages::Error( "Test case does not work with MPI", CURRENT_FUNCTION ); } } From cb858497b30d8881ad588f4c34ad0a89a11cc3ca Mon Sep 17 00:00:00 2001 From: Steffen Date: Tue, 10 Sep 2024 13:38:11 -0400 Subject: [PATCH 154/155] fix reference file for screen output --- .../validation_tests/output/validate_logger_reference | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/tests/input/validation_tests/output/validate_logger_reference b/tests/input/validation_tests/output/validate_logger_reference index f71c71f6..fc643f99 100644 --- a/tests/input/validation_tests/output/validate_logger_reference +++ b/tests/input/validation_tests/output/validate_logger_reference @@ -1,14 +1,11 @@ -2024-04-08 09:19:47.996177 | | Importing mesh. This may take a while for large meshes. -2024-04-08 09:19:47.996589 | | Mesh imported. 2024-04-08 09:19:47.996656 | | Compute cell areas... 2024-04-08 09:19:47.997087 | | Compute cell midpoints... 2024-04-08 09:19:47.997145 | | Compute mesh connectivity... -2024-04-08 09:19:47.997286 | | ...sort cells... -2024-04-08 09:19:47.997330 | | ...connect cells to nodes... -2024-04-08 09:19:47.997489 | | ...determine neighbors of cells... -2024-04-08 13:39:15.091176 | | Save mesh connectivity to file /__w/KiT-RT/KiT-RT/tests/input/mesh_files/linesource.con +2024-09-10 13:35:36.114942 | | ...map edges to cells... +2024-09-10 13:35:36.115192 | | ...determine neighbors of cells... 2024-04-08 09:19:48.000973 | | Compute boundary... -2024-04-08 09:19:48.001486 | | Smallest characteristic length of a grid cell in this mesh: 0.104859 +2024-09-10 13:35:36.141905 | | Mesh created. +2024-09-10 13:35:36.142396 | | Smallest characteristic length of a grid cell in this mesh: 0.104859 2024-04-08 09:19:48.001495 | | Corresponding maximal time-step: 0.073401 2024-04-08 09:19:48.003357 | ---------------------------- Solver Starts ----------------------------- 2024-04-08 09:19:48.003368 | | The simulation will run for 2 iterations. From 873c5daa1cc582ef560be158ad6b9fd2dc219891 Mon Sep 17 00:00:00 2001 From: Steffen Date: Tue, 10 Sep 2024 14:04:12 -0400 Subject: [PATCH 155/155] remove meshing tests - not needed --- tests/test_mesh.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_mesh.cpp b/tests/test_mesh.cpp index 61242a6b..b561bfc1 100644 --- a/tests/test_mesh.cpp +++ b/tests/test_mesh.cpp @@ -99,7 +99,7 @@ TEST_CASE( "unit mesh tests", "[mesh]" ) { } REQUIRE( noUnassignedFaces ); } - + /* SECTION( "connectivity file is consistent with su2 file" ) { // Connectivity std::string connectivityFile = config->GetMeshFile(); @@ -157,6 +157,7 @@ TEST_CASE( "unit mesh tests", "[mesh]" ) { REQUIRE( boundaryOK ); } } + */ } TEST_CASE( "reconstruction tests", "[mesh]" ) {